@@ -72,7 +72,7 @@ namespace IGC
72
72
uint32_t offset = 0 ;
73
73
74
74
// The location in the machine frame.
75
- const IGCLLVM ::DbgVariableIntrinsic* m_pDbgInst = nullptr ;
75
+ const llvm ::DbgVariableIntrinsic* m_pDbgInst = nullptr ;
76
76
77
77
// The variable to which this location entry corresponds.
78
78
const llvm::MDNode* Variable = nullptr ;
@@ -84,19 +84,19 @@ namespace IGC
84
84
85
85
DotDebugLocEntry () : m_pDbgInst(nullptr ), Variable(nullptr ) { }
86
86
DotDebugLocEntry (const llvm::MCSymbol* B, const llvm::MCSymbol* E,
87
- const IGCLLVM ::DbgVariableIntrinsic* pDbgInst,
87
+ const llvm ::DbgVariableIntrinsic* pDbgInst,
88
88
const llvm::MDNode* V)
89
89
: m_pDbgInst(pDbgInst), Variable(V) { }
90
90
DotDebugLocEntry (const uint64_t s, const uint64_t e,
91
- const IGCLLVM ::DbgVariableIntrinsic* pDbgInst,
91
+ const llvm ::DbgVariableIntrinsic* pDbgInst,
92
92
const llvm::MDNode* V)
93
93
: start(s), end(e), m_pDbgInst(pDbgInst), Variable(V) {}
94
94
95
95
// / \brief Empty entries are also used as a trigger to emit temp label. Such
96
96
// / labels are referenced is used to find debug_loc offset for a given DIE.
97
97
bool isEmpty () const { return start == 0 && end == 0 ; }
98
98
const llvm::MDNode* getVariable () const { return Variable; }
99
- const IGCLLVM ::DbgVariableIntrinsic* getDbgInst () const { return m_pDbgInst; }
99
+ const llvm ::DbgVariableIntrinsic* getDbgInst () const { return m_pDbgInst; }
100
100
uint64_t getStart () const { return start; }
101
101
uint64_t getEnd () const { return end; }
102
102
@@ -128,7 +128,7 @@ namespace IGC
128
128
// Corresponding Abstract variable, if any
129
129
DbgVariable* AbsVar = nullptr ;
130
130
// DBG_VALUE instruction of the variable
131
- const IGCLLVM ::DbgVariableIntrinsic* m_pDbgInst = nullptr ;
131
+ const llvm ::DbgVariableIntrinsic* m_pDbgInst = nullptr ;
132
132
133
133
public:
134
134
@@ -150,8 +150,8 @@ namespace IGC
150
150
llvm::StringRef getName () const { return Var->getName (); }
151
151
DbgVariable* getAbstractVariable () const { return AbsVar; }
152
152
153
- const IGCLLVM ::DbgVariableIntrinsic* getDbgInst () const { return m_pDbgInst; }
154
- void setDbgInst (const IGCLLVM ::DbgVariableIntrinsic* pInst) { m_pDbgInst = pInst; }
153
+ const llvm ::DbgVariableIntrinsic* getDbgInst () const { return m_pDbgInst; }
154
+ void setDbgInst (const llvm ::DbgVariableIntrinsic* pInst) { m_pDbgInst = pInst; }
155
155
156
156
// / If this type is derived from a base type then return base type size
157
157
// / even if it derived directly or indirectly from Composite Type
@@ -344,7 +344,7 @@ namespace IGC
344
344
// For each user variable, keep a list of DBG_VALUE instructions in order.
345
345
// The list can also contain normal instructions that clobber the previous
346
346
// DBG_VALUE.
347
- using InstructionsList = llvm::SmallVector<const IGCLLVM ::DbgVariableIntrinsic*, 4 >;
347
+ using InstructionsList = llvm::SmallVector<const llvm ::DbgVariableIntrinsic*, 4 >;
348
348
typedef llvm::DenseMap<const llvm::MDNode*, InstructionsList> DbgValueHistoryMap;
349
349
DbgValueHistoryMap DbgValues;
350
350
0 commit comments