From: Eric Christopher Date: Thu, 5 Dec 2013 00:36:17 +0000 (+0000) Subject: Remove special handling for DW_AT_ranges support by constructing the X-Git-Tag: android-x86-7.1-r4~67089 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=7eca7002f292e4a65c923a88d4e9b56215678b5b;p=android-x86%2Fexternal-llvm.git Remove special handling for DW_AT_ranges support by constructing the values with the correct behavior. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196441 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 3e4b38569d5..fc37a25fe73 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -465,12 +465,23 @@ bool DwarfDebug::isLexicalScopeDIENull(LexicalScope *Scope) { return !End; } +static void addSectionLabel(AsmPrinter *Asm, Unit *U, DIE *D, + dwarf::Attribute A, const MCSymbol *L, + const MCSymbol *Sec) { + if (Asm->MAI->doesDwarfUseRelocationsAcrossSections()) + U->addSectionLabel(D, A, L); + else + U->addSectionDelta(D, A, L, Sec); +} + void DwarfDebug::addScopeRangeList(CompileUnit *TheCU, DIE *ScopeDIE, const SmallVectorImpl &Range) { // Emit offset in .debug_range as a relocatable label. emitDIE will handle // emitting it appropriately. MCSymbol *RangeSym = Asm->GetTempSymbol("debug_ranges", GlobalRangeCount++); - TheCU->addSectionLabel(ScopeDIE, dwarf::DW_AT_ranges, RangeSym); + addSectionLabel(Asm, TheCU, ScopeDIE, dwarf::DW_AT_ranges, RangeSym, + DwarfDebugRangeSectionSym); + RangeSpanList List(RangeSym); for (SmallVectorImpl::const_iterator RI = Range.begin(), RE = Range.end(); @@ -724,15 +735,6 @@ unsigned DwarfDebug::getOrCreateSourceID(StringRef FileName, StringRef DirName, return SrcId; } -static void addSectionLabel(AsmPrinter *Asm, Unit *U, DIE *D, - dwarf::Attribute A, const MCSymbol *L, - const MCSymbol *Sec) { - if (Asm->MAI->doesDwarfUseRelocationsAcrossSections()) - U->addSectionLabel(D, A, L); - else - U->addSectionDelta(D, A, L, Sec); -} - void DwarfDebug::addGnuPubAttributes(Unit *U, DIE *D) const { if (!GenerateGnuPubSections) return; @@ -2086,16 +2088,6 @@ void DwarfDebug::emitDIE(DIE *Die, ArrayRef Abbrevs) { } break; } - case dwarf::DW_AT_ranges: { - // DW_AT_range Value encodes offset in debug_range section. - DIELabel *V = cast(Values[i]); - - if (Asm->MAI->doesDwarfUseRelocationsAcrossSections()) - Asm->EmitSectionOffset(V->getValue(), DwarfDebugRangeSectionSym); - else - Asm->EmitLabelDifference(V->getValue(), DwarfDebugRangeSectionSym, 4); - break; - } case dwarf::DW_AT_location: { if (DIELabel *L = dyn_cast(Values[i])) { if (Asm->MAI->doesDwarfUseRelocationsAcrossSections())