Home
last modified time | relevance | path

Searched refs:getScopeNode (Results 1 – 13 of 13) sorted by relevance

/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfCompileUnit.cpp323 if (!Scope || !Scope->getScopeNode()) in constructScopeDIE()
326 auto *DS = Scope->getScopeNode(); in constructScopeDIE()
438 assert(Scope->getScopeNode()); in constructInlinedScopeDIE()
439 auto *DS = Scope->getScopeNode(); in constructInlinedScopeDIE()
592 assert(Scope && Scope->getScopeNode()); in constructSubprogramScopeDIE()
595 auto *Sub = cast<DISubprogram>(Scope->getScopeNode()); in constructSubprogramScopeDIE()
634 DIE *&AbsDef = DU->getAbstractSPDies()[Scope->getScopeNode()]; in constructAbstractSubprogramScopeDIE()
638 auto *SP = cast<DISubprogram>(Scope->getScopeNode()); in constructAbstractSubprogramScopeDIE()
DDwarfDebug.cpp359 assert(Scope && Scope->getScopeNode()); in constructAbstractSubprogramScopeDIE()
363 const MDNode *SP = Scope->getScopeNode(); in constructAbstractSubprogramScopeDIE()
735 ensureAbstractVariableIsCreatedIfScoped(Var, Scope->getScopeNode()); in collectVariableInfoFromMMITable()
909 ensureAbstractVariableIsCreatedIfScoped(IV, Scope.getScopeNode()); in createConcreteVariable()
1067 auto *SP = cast<DISubprogram>(FnScope->getScopeNode()); in beginFunction()
1115 SP = cast<DISubprogram>(FnScope->getScopeNode()); in endFunction()
1144 auto *SP = cast<DISubprogram>(AScope->getScopeNode()); in endFunction()
/external/llvm-project/llvm/lib/CodeGen/AsmPrinter/
DDbgEntityHistoryCalculator.cpp179 (Scope->getScopeNode() == Scope->getScopeNode()->getSubprogram()) && in trimLocationRanges()
180 (Scope->getScopeNode() == LocalVar->getScope())) in trimLocationRanges()
DDwarfCompileUnit.cpp474 if (!Scope || !Scope->getScopeNode()) in constructScopeDIE()
477 auto *DS = Scope->getScopeNode(); in constructScopeDIE()
606 assert(Scope->getScopeNode()); in constructInlinedScopeDIE()
607 auto *DS = Scope->getScopeNode(); in constructInlinedScopeDIE()
916 for (const auto *IE : ImportedEntities[Scope->getScopeNode()]) in createScopeChildrenDIE()
976 DIE *&AbsDef = getAbstractSPDies()[Scope->getScopeNode()]; in constructAbstractSubprogramScopeDIE()
980 auto *SP = cast<DISubprogram>(Scope->getScopeNode()); in constructAbstractSubprogramScopeDIE()
DDwarfDebug.cpp525 assert(Scope && Scope->getScopeNode()); in constructAbstractSubprogramScopeDIE()
529 auto *SP = cast<DISubprogram>(Scope->getScopeNode()); in constructAbstractSubprogramScopeDIE()
1511 ensureAbstractEntityIsCreatedIfScoped(TheCU, Var.first, Scope->getScopeNode()); in collectVariableInfoFromMFTable()
1731 ensureAbstractEntityIsCreatedIfScoped(TheCU, Node, Scope.getScopeNode()); in createConcreteEntity()
2054 assert(LScopes.empty() || SP == LScopes.getCurrentFunctionScope()->getScopeNode()); in beginFunctionImpl()
2093 assert(!FnScope || SP == FnScope->getScopeNode()); in endFunctionImpl()
2126 auto *SP = cast<DISubprogram>(AScope->getScopeNode()); in endFunctionImpl()
DCodeViewDebug.cpp2788 auto GI = ScopeGlobals.find(Scope.getScopeNode()); in collectLexicalBlockInfo()
2791 const DILexicalBlock *DILB = dyn_cast<DILexicalBlock>(Scope.getScopeNode()); in collectLexicalBlockInfo()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DDwarfCompileUnit.cpp425 if (!Scope || !Scope->getScopeNode()) in constructScopeDIE()
428 auto *DS = Scope->getScopeNode(); in constructScopeDIE()
533 assert(Scope->getScopeNode()); in constructInlinedScopeDIE()
534 auto *DS = Scope->getScopeNode(); in constructInlinedScopeDIE()
810 for (const auto *IE : ImportedEntities[Scope->getScopeNode()]) in createScopeChildrenDIE()
870 DIE *&AbsDef = getAbstractSPDies()[Scope->getScopeNode()]; in constructAbstractSubprogramScopeDIE()
874 auto *SP = cast<DISubprogram>(Scope->getScopeNode()); in constructAbstractSubprogramScopeDIE()
DDwarfDebug.cpp520 assert(Scope && Scope->getScopeNode()); in constructAbstractSubprogramScopeDIE()
524 auto *SP = cast<DISubprogram>(Scope->getScopeNode()); in constructAbstractSubprogramScopeDIE()
1325 ensureAbstractEntityIsCreatedIfScoped(TheCU, Var.first, Scope->getScopeNode()); in collectVariableInfoFromMFTable()
1534 ensureAbstractEntityIsCreatedIfScoped(TheCU, Node, Scope.getScopeNode()); in createConcreteEntity()
1827 assert(LScopes.empty() || SP == LScopes.getCurrentFunctionScope()->getScopeNode()); in beginFunctionImpl()
1869 assert(!FnScope || SP == FnScope->getScopeNode()); in endFunctionImpl()
1900 auto *SP = cast<DISubprogram>(AScope->getScopeNode()); in endFunctionImpl()
DCodeViewDebug.cpp2758 auto GI = ScopeGlobals.find(Scope.getScopeNode()); in collectLexicalBlockInfo()
2761 const DILexicalBlock *DILB = dyn_cast<DILexicalBlock>(Scope.getScopeNode()); in collectLexicalBlockInfo()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DLexicalScopes.h63 const DILocalScope *getScopeNode() const { return Desc; } in getScopeNode() function
/external/llvm/include/llvm/CodeGen/
DLexicalScopes.h62 const DILocalScope *getScopeNode() const { return Desc; } in getScopeNode() function
/external/llvm-project/llvm/include/llvm/CodeGen/
DLexicalScopes.h63 const DILocalScope *getScopeNode() const { return Desc; } in getScopeNode() function
/external/llvm-project/llvm/unittests/CodeGen/
DLexicalScopesTest.cpp145 EXPECT_EQ(FuncScope->getScopeNode(), OurFunc); in TEST_F()