Home
last modified time | relevance | path

Searched refs:MInsn (Results 1 – 3 of 3) sorted by relevance

/external/llvm/lib/CodeGen/
DLexicalScopes.cpp63 for (const auto &MInsn : MBB) { in extractLexicalScopes() local
65 const MDLocation *MIDL = MInsn.getDebugLoc(); in extractLexicalScopes()
67 PrevMI = &MInsn; in extractLexicalScopes()
73 PrevMI = &MInsn; in extractLexicalScopes()
78 if (MInsn.isDebugValue()) in extractLexicalScopes()
91 RangeBeginMI = &MInsn; in extractLexicalScopes()
94 PrevMI = &MInsn; in extractLexicalScopes()
/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfDebug.h83 const MachineInstr *MInsn; /// DBG_VALUE instruction of the variable. variable
92 MInsn(nullptr), DD(DD) { in Var()
103 DotDebugLocOffset(~0U), MInsn(DbgValue), DD(DD) { in DbgVariable()
116 const MachineInstr *getMInsn() const { return MInsn; } in getMInsn()
120 assert( DotDebugLocOffset == ~0U && !MInsn && "not an MMI entry"); in addMMIEntry()
121 assert(V.DotDebugLocOffset == ~0U && !V.MInsn && "not an MMI entry"); in addMMIEntry()
DDwarfDebug.cpp903 const MachineInstr *MInsn = Ranges.front().first; in collectVariableInfo() local
904 assert(MInsn->isDebugValue() && "History must begin with debug value"); in collectVariableInfo()
906 ConcreteVariables.push_back(make_unique<DbgVariable>(MInsn, this)); in collectVariableInfo()