diff options
author | Stuart Hastings <stuart@apple.com> | 2010-05-27 16:16:54 +0000 |
---|---|---|
committer | Stuart Hastings <stuart@apple.com> | 2010-05-27 16:16:54 +0000 |
commit | 8e99e50d08b646b0b742cda5612e8999abce6416 (patch) | |
tree | f476480469edc7e7f92285717ef73bce01b3f84f /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | |
parent | 7d6996dfaf3f4ecf6ae803e70fa8a30cfec690a0 (diff) | |
download | bcm5719-llvm-8e99e50d08b646b0b742cda5612e8999abce6416.tar.gz bcm5719-llvm-8e99e50d08b646b0b742cda5612e8999abce6416.zip |
Support for nested functions/classes in debug output. Radar 7424645.
llvm-svn: 104841
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 890507cf314..4d7743d0f6c 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -866,6 +866,10 @@ void DwarfDebug::addToContextOwner(DIE *Die, DIDescriptor Context) { } else if (Context.isNameSpace()) { DIE *ContextDIE = getOrCreateNameSpace(DINameSpace(Context)); ContextDIE->addChild(Die); + } else if (Context.isSubprogram()) { + DIE *ContextDIE = createSubprogramDIE(DISubprogram(Context), + /*MakeDecl=*/false); + ContextDIE->addChild(Die); } else if (DIE *ContextDIE = getCompileUnit(Context)->getDIE(Context)) ContextDIE->addChild(Die); else @@ -1055,6 +1059,10 @@ void DwarfDebug::constructTypeDIE(DIE &Buffer, DICompositeType CTy) { if (DIDescriptor(ContainingType).isCompositeType()) addDIEEntry(&Buffer, dwarf::DW_AT_containing_type, dwarf::DW_FORM_ref4, getOrCreateTypeDIE(DIType(ContainingType))); + else { + DIDescriptor Context = CTy.getContext(); + addToContextOwner(&Buffer, Context); + } break; } default: @@ -1329,6 +1337,9 @@ DIE *DwarfDebug::createSubprogramDIE(const DISubprogram &SP, bool MakeDecl) { // DW_TAG_inlined_subroutine may refer to this DIE. SPCU->insertDIE(SP, SPDie); + // Add to context owner. + addToContextOwner(SPDie, SP.getContext()); + return SPDie; } |