Home
last modified time | relevance | path

Searched refs:CUNode (Results 1 – 6 of 6) sorted by relevance

/external/llvm/lib/IR/
DDIBuilder.cpp61 : M(m), VMContext(M.getContext()), CUNode(nullptr), in DIBuilder()
76 if (!CUNode) { in finalize()
82 CUNode->replaceEnumTypes(MDTuple::get(VMContext, AllEnumTypes)); in finalize()
95 CUNode->replaceRetainedTypes(MDTuple::get(VMContext, RetainValues)); in finalize()
99 CUNode->replaceSubprograms(SPs.get()); in finalize()
111 CUNode->replaceGlobalVariables(MDTuple::get(VMContext, AllGVs)); in finalize()
114 CUNode->replaceImportedEntities(MDTuple::get( in finalize()
147 assert(!CUNode && "Can only make one compile unit per DIBuilder instance"); in createCompileUnit()
148 CUNode = DICompileUnit::getDistinct( in createCompileUnit()
160 NMD->addOperand(CUNode); in createCompileUnit()
[all …]
/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfUnit.h74 const DICompileUnit *CUNode; variable
131 uint16_t getLanguage() const { return CUNode->getSourceLanguage(); } in getLanguage()
132 const DICompileUnit *getCUNode() const { return CUNode; } in getCUNode()
DDwarfDebug.cpp476 auto *CUNode = cast<DICompileUnit>(N); in beginModule() local
477 DwarfCompileUnit &CU = constructDwarfCompileUnit(CUNode); in beginModule()
478 for (auto *IE : CUNode->getImportedEntities()) in beginModule()
480 for (auto *GV : CUNode->getGlobalVariables()) in beginModule()
482 for (auto *SP : CUNode->getSubprograms()) in beginModule()
484 for (auto *Ty : CUNode->getEnumTypes()) { in beginModule()
489 for (auto *Ty : CUNode->getRetainedTypes()) { in beginModule()
499 for (auto *IE : CUNode->getImportedEntities()) in beginModule()
DDwarfUnit.cpp69 : UniqueID(UID), CUNode(Node), in DwarfUnit()
/external/llvm/include/llvm/IR/
DDIBuilder.h39 DICompileUnit *CUNode; ///< The one compile unit created by this DIBuiler. variable
/external/clang/lib/CodeGen/
DCodeGenModule.cpp3842 if (llvm::NamedMDNode *CUNode = TheModule.getNamedMetadata("llvm.dbg.cu")) { in EmitCoverageFile() local
3847 for (int i = 0, e = CUNode->getNumOperands(); i != e; ++i) { in EmitCoverageFile()
3848 llvm::MDNode *CU = CUNode->getOperand(i); in EmitCoverageFile()