Searched refs:CUNode (Results 1 – 7 of 7) sorted by relevance
/external/llvm/lib/IR/ |
D | DIBuilder.cpp | 28 : M(m), VMContext(M.getContext()), CUNode(nullptr), in DIBuilder() 43 if (!CUNode) { in finalize() 49 CUNode->replaceEnumTypes(MDTuple::get(VMContext, AllEnumTypes)); in finalize() 62 CUNode->replaceRetainedTypes(MDTuple::get(VMContext, RetainValues)); in finalize() 86 CUNode->replaceGlobalVariables(MDTuple::get(VMContext, AllGVs)); in finalize() 89 CUNode->replaceImportedEntities(MDTuple::get( in finalize() 122 assert(!CUNode && "Can only make one compile unit per DIBuilder instance"); in createCompileUnit() 123 CUNode = DICompileUnit::getDistinct( in createCompileUnit() 130 NMD->addOperand(CUNode); in createCompileUnit() 131 trackIfUnresolved(CUNode); in createCompileUnit() [all …]
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfUnit.h | 71 const DICompileUnit *CUNode; 124 uint16_t getLanguage() const { return CUNode->getSourceLanguage(); } in getLanguage() 125 const DICompileUnit *getCUNode() const { return CUNode; } in getCUNode()
|
D | DwarfDebug.cpp | 479 for (DICompileUnit *CUNode : M->debug_compile_units()) { in beginModule() 480 DwarfCompileUnit &CU = constructDwarfCompileUnit(CUNode); in beginModule() 481 for (auto *IE : CUNode->getImportedEntities()) in beginModule() 483 for (auto *GV : CUNode->getGlobalVariables()) in beginModule() 485 for (auto *Ty : CUNode->getEnumTypes()) { in beginModule() 490 for (auto *Ty : CUNode->getRetainedTypes()) { in beginModule() 500 for (auto *IE : CUNode->getImportedEntities()) in beginModule() 594 auto *CUNode = cast<DICompileUnit>(P.first); in finalizeModuleInfo() local 596 if (CUNode->getMacros()) in finalizeModuleInfo() 1779 auto *CUNode = cast<DICompileUnit>(P.first); in emitDebugMacinfo() local [all …]
|
D | DwarfUnit.cpp | 68 : CUNode(Node), UnitDie(*DIE::get(DIEValueAllocator, UnitTag)), Asm(A), in DwarfUnit()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/ |
D | DwarfDebug.cpp | 623 DICompileUnit CUNode(CU_Nodes->getOperand(i)); in beginModule() local 624 CompileUnit *CU = constructCompileUnit(CUNode); in beginModule() 625 DIArray GVs = CUNode.getGlobalVariables(); in beginModule() 628 DIArray SPs = CUNode.getSubprograms(); in beginModule() 631 DIArray EnumTypes = CUNode.getEnumTypes(); in beginModule() 634 DIArray RetainedTypes = CUNode.getRetainedTypes(); in beginModule()
|
/external/llvm/include/llvm/IR/ |
D | DIBuilder.h | 38 DICompileUnit *CUNode; ///< The one compile unit created by this DIBuiler. variable
|
/external/clang/lib/CodeGen/ |
D | CodeGenModule.cpp | 4157 if (llvm::NamedMDNode *CUNode = TheModule.getNamedMetadata("llvm.dbg.cu")) { in EmitCoverageFile() local 4162 for (int i = 0, e = CUNode->getNumOperands(); i != e; ++i) { in EmitCoverageFile() 4163 llvm::MDNode *CU = CUNode->getOperand(i); in EmitCoverageFile()
|