diff options
author | Eric Christopher <echristo@gmail.com> | 2013-10-05 00:27:02 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-10-05 00:27:02 +0000 |
commit | 9e429ae779a35d543ae303ddd8a94251d9969f0a (patch) | |
tree | 420c8911cdf6a08cc03bc9f0983c2136befedfcc /llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp | |
parent | 938d1d67e87f2a35e755beb3b48b4773237a32e4 (diff) | |
download | bcm5719-llvm-9e429ae779a35d543ae303ddd8a94251d9969f0a.tar.gz bcm5719-llvm-9e429ae779a35d543ae303ddd8a94251d9969f0a.zip |
Add a resolve method on CompileUnit that forwards to DwarfDebug.
llvm-svn: 192014
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp index 5e31cba1c7f..23e5641b911 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp @@ -807,7 +807,7 @@ DIE *CompileUnit::getOrCreateTypeDIE(const MDNode *TyNode) { addAccelType(Ty.getName(), std::make_pair(TyDIE, Flags)); } - addToContextOwner(TyDIE, DD->resolve(Ty.getContext())); + addToContextOwner(TyDIE, resolve(Ty.getContext())); return TyDIE; } @@ -872,7 +872,7 @@ void CompileUnit::addGlobalName(StringRef Name, DIE *Die) { /// addGlobalType - Add a new global type to the compile unit. /// void CompileUnit::addGlobalType(DIType Ty) { - DIScope Context = DD->resolve(Ty.getContext()); + DIScope Context = resolve(Ty.getContext()); if (!Ty.getName().empty() && !Ty.isForwardDecl() && (!Context || Context.isCompileUnit() || Context.isFile() || Context.isNameSpace())) @@ -937,7 +937,7 @@ void CompileUnit::constructTypeDIE(DIE &Buffer, DIDerivedType DTy) { if (Tag == dwarf::DW_TAG_ptr_to_member_type) addDIEEntry(&Buffer, dwarf::DW_AT_containing_type, dwarf::DW_FORM_ref4, - getOrCreateTypeDIE(DD->resolve(DTy.getClassType()))); + getOrCreateTypeDIE(resolve(DTy.getClassType()))); // Add source line info if available and TyDesc is not a forward declaration. if (!DTy.isForwardDecl()) addSourceLine(&Buffer, DTy); @@ -1113,7 +1113,7 @@ void CompileUnit::constructTypeDIE(DIE &Buffer, DICompositeType CTy) { if (CTy.isAppleBlockExtension()) addFlag(&Buffer, dwarf::DW_AT_APPLE_block); - DICompositeType ContainingType(DD->resolve(CTy.getContainingType())); + DICompositeType ContainingType(resolve(CTy.getContainingType())); if (DIDescriptor(ContainingType).isCompositeType()) addDIEEntry(&Buffer, dwarf::DW_AT_containing_type, dwarf::DW_FORM_ref4, getOrCreateTypeDIE(DIType(ContainingType))); @@ -1325,7 +1325,7 @@ DIE *CompileUnit::getOrCreateSubprogramDIE(DISubprogram SP) { addUInt(Block, 0, dwarf::DW_FORM_udata, SP.getVirtualIndex()); addBlock(SPDie, dwarf::DW_AT_vtable_elem_location, 0, Block); ContainingTypeMap.insert(std::make_pair(SPDie, - DD->resolve(SP.getContainingType()))); + resolve(SP.getContainingType()))); } if (!SP.isDefinition()) { @@ -1409,7 +1409,7 @@ void CompileUnit::createGlobalVariableDIE(const MDNode *N) { // We need the declaration DIE that is in the static member's class. // But that class might not exist in the DWARF yet. // Creating the class will create the static member decl DIE. - getOrCreateContextDIE(DD->resolve(SDMDecl.getContext())); + getOrCreateContextDIE(resolve(SDMDecl.getContext())); VariableDIE = getDIE(SDMDecl); assert(VariableDIE && "Static member decl has no context?"); IsStaticMember = true; |