<p dir="ltr"><br>
On Sep 19, 2014 6:03 PM, "Alexey Samsonov" <<a href="mailto:vonosmas@gmail.com">vonosmas@gmail.com</a>> wrote:<br>
><br>
> Thanks, this is awesome! Note that we might want to keep CU ranges emission, as it speeds up address symbolizing: it's far quicker to scan CU ranges and build address->CU relation, than load and parse all the .debug_line section.</p>
<p dir="ltr">Ah - no doubt. At only 0.5% (uncompressed and in an optimized (-O2) build (might be worse at -O0_ I'm gathering numbers for my gmlt improvements at -O0 next)) its probably worth it, but certainly something to weigh up if we ever go after it.</p>
<p dir="ltr">><br>
> On Fri, Sep 19, 2014 at 10:03 AM, David Blaikie <<a href="mailto:dblaikie@gmail.com">dblaikie@gmail.com</a>> wrote:<br>
>><br>
>> Author: dblaikie<br>
>> Date: Fri Sep 19 12:03:16 2014<br>
>> New Revision: 218129<br>
>><br>
>> URL: <a href="http://llvm.org/viewvc/llvm-project?rev=218129&view=rev">http://llvm.org/viewvc/llvm-project?rev=218129&view=rev</a><br>
>> Log:<br>
>> Omit DW_TAG_subprograms for subprograms without inlined subroutines when producing -gmlt data<br>
>><br>
>> To reduce the size of -gmlt data, skip the subprograms without any<br>
>> inlined subroutines. Since we've now got the ability to make these<br>
>> determinations in the backend (funnily enough - we added the flag so we<br>
>> wouldn't produce ranges under -gmlt, but with this change we use the<br>
>> flag, but go back to producing ranges under -gmlt).<br>
>><br>
>> Instead, just produce CU ranges to inform the consumer which parts of<br>
>> the code are described by this CU's line table. Tools could inspect the<br>
>> line table directly to compute the range, but the CU ranges only seem to<br>
>> be about 0.5% of object/executable size, so I'm not too worried about<br>
>> teaching llvm-symbolizer that trick just yet - it's certainly a possible<br>
>> piece of future work.<br>
>><br>
>> Update an llvm-symbolizer test just to demonstrate that this schema is<br>
>> acceptable there (if it wasn't, the compiler-rt tests would catch this,<br>
>> but good to have an in-llvm-tree test for llvm-symbolizer's behavior<br>
>> here)<br>
>><br>
>> Building the clang binary with -gmlt with this patch reduces the total<br>
>> size of object files by 5.1% (5.56% without ranges) without compression<br>
>> and the executable by 4.37% (4.75% without ranges).<br>
>><br>
>> Modified:<br>
>>     llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp<br>
>>     llvm/trunk/lib/CodeGen/AsmPrinter/DwarfUnit.cpp<br>
>>     llvm/trunk/test/DebugInfo/Inputs/dwarfdump-inl-test.elf-x86-64<br>
>>     llvm/trunk/test/DebugInfo/gmlt.ll<br>
>>     llvm/trunk/test/DebugInfo/llvm-symbolizer.test<br>
>><br>
>> Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp<br>
>> URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp?rev=218129&r1=218128&r2=218129&view=diff">http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp?rev=218129&r1=218128&r2=218129&view=diff</a><br>
>> ==============================================================================<br>
>> --- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp (original)<br>
>> +++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp Fri Sep 19 12:03:16 2014<br>
>> @@ -856,12 +856,14 @@ void DwarfDebug::finishSubprogramDefinit<br>
>>            // If this subprogram has an abstract definition, reference that<br>
>>            SPCU->addDIEEntry(*D, dwarf::DW_AT_abstract_origin, *AbsSPDIE);<br>
>>        } else {<br>
>> -        if (!D)<br>
>> +        if (!D && TheCU.getEmissionKind() != DIBuilder::LineTablesOnly)<br>
>>            // Lazily construct the subprogram if we didn't see either concrete or<br>
>> -          // inlined versions during codegen.<br>
>> +          // inlined versions during codegen. (except in -gmlt ^ where we want<br>
>> +          // to omit these entirely)<br>
>>            D = SPCU->getOrCreateSubprogramDIE(SP);<br>
>> -        // And attach the attributes<br>
>> -        SPCU->applySubprogramAttributesToDefinition(SP, *D);<br>
>> +        if (D)<br>
>> +          // And attach the attributes<br>
>> +          SPCU->applySubprogramAttributesToDefinition(SP, *D);<br>
>>        }<br>
>>      }<br>
>>    }<br>
>> @@ -1690,6 +1692,24 @@ void DwarfDebug::endFunction(const Machi<br>
>>    LexicalScope *FnScope = LScopes.getCurrentFunctionScope();<br>
>>    DwarfCompileUnit &TheCU = *SPMap.lookup(FnScope->getScopeNode());<br>
>><br>
>> +  // Add the range of this function to the list of ranges for the CU.<br>
>> +  TheCU.addRange(RangeSpan(FunctionBeginSym, FunctionEndSym));<br>
>> +<br>
>> +  // Under -gmlt, skip building the subprogram if there are no inlined<br>
>> +  // subroutines inside it.<br>
>> +  if (TheCU.getCUNode().getEmissionKind() == DIBuilder::LineTablesOnly &&<br>
>> +      LScopes.getAbstractScopesList().empty()) {<br>
>> +    assert(ScopeVariables.empty());<br>
>> +    assert(CurrentFnArguments.empty());<br>
>> +    assert(DbgValues.empty());<br>
>> +    assert(AbstractVariables.empty());<br>
>> +    LabelsBeforeInsn.clear();<br>
>> +    LabelsAfterInsn.clear();<br>
>> +    PrevLabel = nullptr;<br>
>> +    CurFn = nullptr;<br>
>> +    return;<br>
>> +  }<br>
>> +<br>
>>    // Construct abstract scopes.<br>
>>    for (LexicalScope *AScope : LScopes.getAbstractScopesList()) {<br>
>>      DISubprogram SP(AScope->getScopeNode());<br>
>> @@ -1710,10 +1730,6 @@ void DwarfDebug::endFunction(const Machi<br>
>>    if (!CurFn->getTarget().Options.DisableFramePointerElim(*CurFn))<br>
>>      TheCU.addFlag(CurFnDIE, dwarf::DW_AT_APPLE_omit_frame_ptr);<br>
>><br>
>> -  // Add the range of this function to the list of ranges for the CU.<br>
>> -  RangeSpan Span(FunctionBeginSym, FunctionEndSym);<br>
>> -  TheCU.addRange(std::move(Span));<br>
>> -<br>
>>    // Clear debug info<br>
>>    // Ownership of DbgVariables is a bit subtle - ScopeVariables owns all the<br>
>>    // DbgVariables except those that are also in AbstractVariables (since they<br>
>><br>
>> Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfUnit.cpp<br>
>> URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfUnit.cpp?rev=218129&r1=218128&r2=218129&view=diff">http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfUnit.cpp?rev=218129&r1=218128&r2=218129&view=diff</a><br>
>> ==============================================================================<br>
>> --- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfUnit.cpp (original)<br>
>> +++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfUnit.cpp Fri Sep 19 12:03:16 2014<br>
>> @@ -2049,23 +2049,20 @@ void DwarfUnit::emitHeader(const MCSymbo<br>
>>  }<br>
>><br>
>>  void DwarfCompileUnit::addRange(RangeSpan Range) {<br>
>> -  // Only add a range for this unit if we're emitting full debug.<br>
>> -  if (getCUNode().getEmissionKind() == DIBuilder::FullDebug) {<br>
>> -    bool SameAsPrevCU = this == DD->getPrevCU();<br>
>> -    DD->setPrevCU(this);<br>
>> -    // If we have no current ranges just add the range and return, otherwise,<br>
>> -    // check the current section and CU against the previous section and CU we<br>
>> -    // emitted into and the subprogram was contained within. If these are the<br>
>> -    // same then extend our current range, otherwise add this as a new range.<br>
>> -    if (CURanges.empty() || !SameAsPrevCU ||<br>
>> -        (&CURanges.back().getEnd()->getSection() !=<br>
>> -         &Range.getEnd()->getSection())) {<br>
>> -      CURanges.push_back(Range);<br>
>> -      return;<br>
>> -    }<br>
>> -<br>
>> -    CURanges.back().setEnd(Range.getEnd());<br>
>> +  bool SameAsPrevCU = this == DD->getPrevCU();<br>
>> +  DD->setPrevCU(this);<br>
>> +  // If we have no current ranges just add the range and return, otherwise,<br>
>> +  // check the current section and CU against the previous section and CU we<br>
>> +  // emitted into and the subprogram was contained within. If these are the<br>
>> +  // same then extend our current range, otherwise add this as a new range.<br>
>> +  if (CURanges.empty() || !SameAsPrevCU ||<br>
>> +      (&CURanges.back().getEnd()->getSection() !=<br>
>> +       &Range.getEnd()->getSection())) {<br>
>> +    CURanges.push_back(Range);<br>
>> +    return;<br>
>>    }<br>
>> +<br>
>> +  CURanges.back().setEnd(Range.getEnd());<br>
>>  }<br>
>><br>
>>  void DwarfCompileUnit::initStmtList(MCSymbol *DwarfLineSectionSym) {<br>
>><br>
>> Modified: llvm/trunk/test/DebugInfo/Inputs/dwarfdump-inl-test.elf-x86-64<br>
>> URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/Inputs/dwarfdump-inl-test.elf-x86-64?rev=218129&r1=218128&r2=218129&view=diff">http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/Inputs/dwarfdump-inl-test.elf-x86-64?rev=218129&r1=218128&r2=218129&view=diff</a><br>
>> ==============================================================================<br>
>> Binary files - no diff available.<br>
>><br>
>> Modified: llvm/trunk/test/DebugInfo/gmlt.ll<br>
>> URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/gmlt.ll?rev=218129&r1=218128&r2=218129&view=diff">http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/gmlt.ll?rev=218129&r1=218128&r2=218129&view=diff</a><br>
>> ==============================================================================<br>
>> --- llvm/trunk/test/DebugInfo/gmlt.ll (original)<br>
>> +++ llvm/trunk/test/DebugInfo/gmlt.ll Fri Sep 19 12:03:16 2014<br>
>> @@ -1,33 +1,72 @@<br>
>>  ; REQUIRES: object-emission<br>
>>  ; RUN: %llc_dwarf -O0 -filetype=obj < %s | llvm-dwarfdump - | FileCheck %s<br>
>><br>
>> -; Generated from the following source compiled with clang -gmlt:<br>
>> -; void f1(void) {}<br>
>> -; void f2(void) __attribute__((section("__TEXT,__bar"))) {}<br>
>> +; Generated from the following source compiled with clang++ -gmlt:<br>
>> +; void f1() {}<br>
>> +; void __attribute__((section("__TEXT,__bar"))) f2() {}<br>
>> +; void __attribute__((always_inline)) f3() { f1(); }<br>
>> +; void f4() { f3(); }<br>
>><br>
>>  ; Check that<br>
>> -;  * -gmlt ('Emission Kind' of 'LineTablesOnly' in the CU debug info metadata)<br>
>> -;    doesn't produce ranges.<br>
>> -;  * if no ranges are produced, no debug_ranges list (not even an empty one) is<br>
>> -;    emitted.<br>
>> -<br>
>> -; -gmlt means no DW_AT_ranges on the CU, even though there are parts of the CU<br>
>> -; in different sections and this would normally necessitate a DW_AT_ranges<br>
>> -; attribute on the CU.<br>
>> +;  * -gmlt includes no DW_TAG_subprograms for subprograms without inlined<br>
>> +;    subroutines.<br>
>> +;  * yet still produces DW_AT_ranges and a range list in debug_ranges that<br>
>> +;    describes those subprograms<br>
>> +<br>
>>  ; CHECK: DW_TAG_compile_unit<br>
>> -; CHECK-NOT: DW_AT_ranges<br>
>> +; CHECK:   DW_AT_ranges [DW_FORM_sec_offset] (0x00000000)<br>
>>  ; CHECK-NOT: {{DW_TAG|NULL}}<br>
>> +<br>
>> +<br>
>> +; FIXME: Emitting separate abstract definitions is inefficient when we could<br>
>> +; just attach the DW_AT_name to the inlined_subroutine directly. Except that<br>
>> +; would produce many string relocations. Implement string indexing in the<br>
>> +; skeleton CU to address the relocation problem, then remove abstract<br>
>> +; definitions from -gmlt here.<br>
>> +<br>
>> +; CHECK: [[F3_ABS_DEF:.*]]:  DW_TAG_subprogram<br>
>> +; CHECK-NEXT:     DW_AT_name {{.*}} "f3"<br>
>> +<br>
>> +; FIXME: We don't really need DW_AT_inline, consumers can ignore this due to<br>
>> +; the absence of high_pc/low_pc/ranges and know that they just need it for<br>
>> +; retrieving the name of a concrete inlined instance<br>
>> +<br>
>> +; CHECK-NEXT:     DW_AT_inline<br>
>> +; CHECK-NOT: {{DW_TAG|DW_AT|NULL}}<br>
>> +<br>
>>  ; Check that we only provide the minimal attributes on a subprogram to save space.<br>
>>  ; CHECK:   DW_TAG_subprogram<br>
>>  ; CHECK-NEXT:     DW_AT_low_pc<br>
>>  ; CHECK-NEXT:     DW_AT_high_pc<br>
>>  ; CHECK-NEXT:     DW_AT_name<br>
>> -; CHECK-NOT: DW_AT<br>
>> -; CHECK: {{DW_TAG|NULL}}<br>
>> +; CHECK-NOT: {{DW_TAG|DW_AT}}<br>
>> +; CHECK:     DW_TAG_inlined_subroutine<br>
>> +<br>
>> +; As mentioned above - replace DW_AT_abstract_origin with DW_AT_name to save<br>
>> +; space once we have support for string indexing in non-dwo sections<br>
>><br>
>> -; FIXME: We probably want to avoid printing out anything if the section isn't there.<br>
>> +; CHECK-NEXT:       DW_AT_abstract_origin {{.*}} {[[F3_ABS_DEF]]}<br>
>> +; CHECK-NEXT:       DW_AT_low_pc<br>
>> +; CHECK-NEXT:       DW_AT_high_pc<br>
>> +; CHECK-NEXT:       DW_AT_call_file<br>
>> +; CHECK-NEXT:       DW_AT_call_line<br>
>> +<br>
>> +; Make sure we don't have any other subprograms here (subprograms with no<br>
>> +; inlined subroutines are omitted by design to save space)<br>
>> +<br>
>> +; CHECK-NOT: {{DW_TAG|DW_AT}}<br>
>> +; CHECK: NULL<br>
>> +; CHECK-NOT: {{DW_TAG|DW_AT}}<br>
>> +; CHECK: NULL<br>
>> +<br>
>> +<br>
>> +; FIXME: llvm-dwarfdump should detect the relocations here and realize that the<br>
>> +; first two "end of list" are really just unrelocated values describing the two<br>
>> +; functions in the CU.<br>
>>  ; CHECK: .debug_ranges contents:<br>
>> -; CHECK-NOT: 00000000 <End of list><br>
>> +; CHECK: 00000000 <End of list><br>
>> +; CHECK: 00000010 <End of list><br>
>> +; CHECK: 00000020 <End of list><br>
>><br>
>>  ; Check that we don't emit any pubnames or pubtypes under -gmlt<br>
>>  ; CHECK: .debug_pubnames contents:<br>
>> @@ -37,33 +76,56 @@<br>
>>  ; CHECK-NOT: Offset<br>
>><br>
>>  ; Function Attrs: nounwind uwtable<br>
>> -define void @f1() #0 {<br>
>> +define void @_Z2f1v() #0 {<br>
>> +entry:<br>
>> +  ret void, !dbg !13<br>
>> +}<br>
>> +<br>
>> +; Function Attrs: nounwind uwtable<br>
>> +define void @_Z2f2v() #0 section "__TEXT,__bar" {<br>
>> +entry:<br>
>> +  ret void, !dbg !14<br>
>> +}<br>
>> +<br>
>> +; Function Attrs: alwaysinline nounwind uwtable<br>
>> +define void @_Z2f3v() #1 {<br>
>>  entry:<br>
>> -  ret void, !dbg !11<br>
>> +  call void @_Z2f1v(), !dbg !15<br>
>> +  ret void, !dbg !16<br>
>>  }<br>
>><br>
>>  ; Function Attrs: nounwind uwtable<br>
>> -define void @f2() #0 section "__TEXT,__bar" {<br>
>> +define void @_Z2f4v() #0 {<br>
>>  entry:<br>
>> -  ret void, !dbg !12<br>
>> +  call void @_Z2f1v() #2, !dbg !17<br>
>> +  ret void, !dbg !19<br>
>>  }<br>
>><br>
>>  attributes #0 = { nounwind uwtable "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }<br>
>> +attributes #1 = { alwaysinline nounwind uwtable "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }<br>
>> +attributes #2 = { nounwind }<br>
>><br>
>>  !<a href="http://llvm.dbg.cu">llvm.dbg.cu</a> = !{!0}<br>
>> -!llvm.module.flags = !{!8, !9}<br>
>> -!llvm.ident = !{!10}<br>
>> +!llvm.module.flags = !{!10, !11}<br>
>> +!llvm.ident = !{!12}<br>
>><br>
>> -!0 = metadata !{i32 786449, metadata !1, i32 12, metadata !"clang version 3.6.0 ", i1 false, metadata !"", i32 0, metadata !2, metadata !2, metadata !3, metadata !2, metadata !2, metadata !"", i32 2} ; [ DW_TAG_compile_unit ] [/tmp/dbginfo/cu-line-tables.c] [DW_LANG_C99]<br>
>> -!1 = metadata !{metadata !"cu-line-tables.c", metadata !"/tmp/dbginfo"}<br>
>> +!0 = metadata !{i32 786449, metadata !1, i32 4, metadata !"clang version 3.6.0 ", i1 false, metadata !"", i32 0, metadata !2, metadata !2, metadata !3, metadata !2, metadata !2, metadata !"", i32 2} ; [ DW_TAG_compile_unit ] [/tmp/dbginfo/gmlt.cpp] [DW_LANG_C_plus_plus]<br>
>> +!1 = metadata !{metadata !"gmlt.cpp", metadata !"/tmp/dbginfo"}<br>
>>  !2 = metadata !{}<br>
>> -!3 = metadata !{metadata !4, metadata !7}<br>
>> -!4 = metadata !{i32 786478, metadata !1, metadata !5, metadata !"f1", metadata !"f1", metadata !"", i32 1, metadata !6, i1 false, i1 true, i32 0, i32 0, null, i32 256, i1 false, void ()* @f1, null, null, metadata !2, i32 1} ; [ DW_TAG_subprogram ] [line 1] [def] [f1]<br>
>> -!5 = metadata !{i32 786473, metadata !1}          ; [ DW_TAG_file_type ] [/tmp/dbginfo/cu-line-tables.c]<br>
>> +!3 = metadata !{metadata !4, metadata !7, metadata !8, metadata !9}<br>
>> +!4 = metadata !{i32 786478, metadata !1, metadata !5, metadata !"f1", metadata !"f1", metadata !"", i32 1, metadata !6, i1 false, i1 true, i32 0, i32 0, null, i32 256, i1 false, void ()* @_Z2f1v, null, null, metadata !2, i32 1} ; [ DW_TAG_subprogram ] [line 1] [def] [f1]<br>
>> +!5 = metadata !{i32 786473, metadata !1}          ; [ DW_TAG_file_type ] [/tmp/dbginfo/gmlt.cpp]<br>
>>  !6 = metadata !{i32 786453, i32 0, null, metadata !"", i32 0, i64 0, i64 0, i64 0, i32 0, null, metadata !2, i32 0, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]<br>
>> -!7 = metadata !{i32 786478, metadata !1, metadata !5, metadata !"f2", metadata !"f2", metadata !"", i32 2, metadata !6, i1 false, i1 true, i32 0, i32 0, null, i32 256, i1 false, void ()* @f2, null, null, metadata !2, i32 2} ; [ DW_TAG_subprogram ] [line 2] [def] [f2]<br>
>> -!8 = metadata !{i32 2, metadata !"Dwarf Version", i32 4}<br>
>> -!9 = metadata !{i32 2, metadata !"Debug Info Version", i32 1}<br>
>> -!10 = metadata !{metadata !"clang version 3.6.0 "}<br>
>> -!11 = metadata !{i32 1, i32 16, metadata !4, null}<br>
>> -!12 = metadata !{i32 2, i32 48, metadata !7, null}<br>
>> +!7 = metadata !{i32 786478, metadata !1, metadata !5, metadata !"f2", metadata !"f2", metadata !"", i32 2, metadata !6, i1 false, i1 true, i32 0, i32 0, null, i32 256, i1 false, void ()* @_Z2f2v, null, null, metadata !2, i32 2} ; [ DW_TAG_subprogram ] [line 2] [def] [f2]<br>
>> +!8 = metadata !{i32 786478, metadata !1, metadata !5, metadata !"f3", metadata !"f3", metadata !"", i32 3, metadata !6, i1 false, i1 true, i32 0, i32 0, null, i32 256, i1 false, void ()* @_Z2f3v, null, null, metadata !2, i32 3} ; [ DW_TAG_subprogram ] [line 3] [def] [f3]<br>
>> +!9 = metadata !{i32 786478, metadata !1, metadata !5, metadata !"f4", metadata !"f4", metadata !"", i32 4, metadata !6, i1 false, i1 true, i32 0, i32 0, null, i32 256, i1 false, void ()* @_Z2f4v, null, null, metadata !2, i32 4} ; [ DW_TAG_subprogram ] [line 4] [def] [f4]<br>
>> +!10 = metadata !{i32 2, metadata !"Dwarf Version", i32 4}<br>
>> +!11 = metadata !{i32 2, metadata !"Debug Info Version", i32 1}<br>
>> +!12 = metadata !{metadata !"clang version 3.6.0 "}<br>
>> +!13 = metadata !{i32 1, i32 12, metadata !4, null}<br>
>> +!14 = metadata !{i32 2, i32 53, metadata !7, null}<br>
>> +!15 = metadata !{i32 3, i32 44, metadata !8, null}<br>
>> +!16 = metadata !{i32 3, i32 50, metadata !8, null}<br>
>> +!17 = metadata !{i32 3, i32 44, metadata !8, metadata !18}<br>
>> +!18 = metadata !{i32 4, i32 13, metadata !9, null}<br>
>> +!19 = metadata !{i32 4, i32 19, metadata !9, null}<br>
>><br>
>> Modified: llvm/trunk/test/DebugInfo/llvm-symbolizer.test<br>
>> URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/llvm-symbolizer.test?rev=218129&r1=218128&r2=218129&view=diff">http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/llvm-symbolizer.test?rev=218129&r1=218128&r2=218129&view=diff</a><br>
>> ==============================================================================<br>
>> --- llvm/trunk/test/DebugInfo/llvm-symbolizer.test (original)<br>
>> +++ llvm/trunk/test/DebugInfo/llvm-symbolizer.test Fri Sep 19 12:03:16 2014<br>
>> @@ -6,9 +6,9 @@ RUN: echo "%p/Inputs/dwarfdump-test.elf-<br>
>>  RUN: echo "%p/Inputs/dwarfdump-test2.elf-x86-64 0x4004e8" >> %t.input<br>
>>  RUN: echo "%p/Inputs/dwarfdump-test2.elf-x86-64 0x4004f4" >> %t.input<br>
>>  RUN: echo "%p/Inputs/dwarfdump-test4.elf-x86-64 0x62c" >> %t.input<br>
>> -RUN: echo "%p/Inputs/dwarfdump-inl-test.elf-x86-64 0x710" >> %t.input<br>
>> -RUN: echo "%p/Inputs/dwarfdump-inl-test.elf-x86-64 0x7d1" >> %t.input<br>
>> -RUN: echo "%p/Inputs/dwarfdump-inl-test.elf-x86-64 0x785" >> %t.input<br>
>> +RUN: echo "%p/Inputs/dwarfdump-inl-test.elf-x86-64 0x8dc" >> %t.input<br>
>> +RUN: echo "%p/Inputs/dwarfdump-inl-test.elf-x86-64 0xa05" >> %t.input<br>
>> +RUN: echo "%p/Inputs/dwarfdump-inl-test.elf-x86-64 0x987" >> %t.input<br>
>>  RUN: echo "%p/Inputs/dwarfdump-inl-test.high_pc.elf-x86-64 0x568" >> %t.input<br>
>>  RUN: echo "\"%p/Inputs/dwarfdump-test3.elf-x86-64 space\" 0x640" >> %t.input<br>
>>  RUN: echo "\"%p/Inputs/dwarfdump-test3.elf-x86-64 space\" 0x633" >> %t.input<br>
>><br>
>><br>
>> _______________________________________________<br>
>> llvm-commits mailing list<br>
>> <a href="mailto:llvm-commits@cs.uiuc.edu">llvm-commits@cs.uiuc.edu</a><br>
>> <a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits">http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits</a><br>
><br>
><br>
><br>
><br>
> -- <br>
> Alexey Samsonov<br>
> <a href="mailto:vonosmas@gmail.com">vonosmas@gmail.com</a></p>