Displaying 7 results from an estimated 7 matches for "getdebugarang".
Did you mean:
getdebugaranges
2013 Feb 07
2
[LLVMdev] llvm-dwarfdump and eh_frame
Hi,
I noticed that llvm-dwarfdump does not show any information about the eh_frame section. While DWARFContext::getDebugAranges explicitly tries to parse it, it fails because the DWARFContextInMemory constructor does not check for that specific section name. A fix would be to check wether the name is "debug_frame" or "eh_frame". If this is correct, should I submit a smallish patch, or could somebody el...
2013 Feb 18
2
[LLVMdev] llvm-dwarfdump and eh_frame
...Feb 11, 2013, at 18:13, Eli Bendersky <eliben at google.com> wrote:
> On Thu, Feb 7, 2013 at 2:50 PM, Erik Verbruggen <erikjv at me.com> wrote:
>> Hi,
>>
>> I noticed that llvm-dwarfdump does not show any information about the eh_frame section. While DWARFContext::getDebugAranges explicitly tries to parse it, it fails because the DWARFContextInMemory constructor does not check for that specific section name. A fix would be to check wether the name is "debug_frame" or "eh_frame". If this is correct, should I submit a smallish patch, or could somebody el...
2014 Aug 13
2
[LLVMdev] Advice for setting debug locations
...s/kfischer/Documents/julia-debug/deps/llvm-svn/lib/DebugInfo/DWARFDebugInfoEntry.cpp:242
collectAddressRanges at
/Users/kfischer/Documents/julia-debug/deps/llvm-svn/lib/DebugInfo/DWARFUnit.cpp:302
generate at /Users/kfischer/Documents/julia-debug/deps/llvm-svn/lib/DebugInfo/DWARFDebugAranges.cpp:54
getDebugAranges at
/Users/kfischer/Documents/julia-debug/deps/llvm-svn/lib/DebugInfo/DWARFContext.cpp:270
getCompileUnitForAddress at
/Users/kfischer/Documents/julia-debug/deps/llvm-svn/lib/DebugInfo/DWARFContext.cpp:423
Can somebody tell me what the correct way to achieve this is?
[1] https://github.com/Julia...
2013 Feb 11
0
[LLVMdev] llvm-dwarfdump and eh_frame
On Thu, Feb 7, 2013 at 2:50 PM, Erik Verbruggen <erikjv at me.com> wrote:
> Hi,
>
> I noticed that llvm-dwarfdump does not show any information about the eh_frame section. While DWARFContext::getDebugAranges explicitly tries to parse it, it fails because the DWARFContextInMemory constructor does not check for that specific section name. A fix would be to check wether the name is "debug_frame" or "eh_frame". If this is correct, should I submit a smallish patch, or could somebody el...
2014 Aug 13
2
[LLVMdev] Advice for setting debug locations
...s/llvm-svn/lib/DebugInfo/DWARFDebugInfoEntry.cpp:242
>> collectAddressRanges at
>> /Users/kfischer/Documents/julia-debug/deps/llvm-svn/lib/DebugInfo/DWARFUnit.cpp:302
>> generate at /Users/kfischer/Documents/julia-debug/deps/llvm-svn/lib/DebugInfo/DWARFDebugAranges.cpp:54
>> getDebugAranges at
>> /Users/kfischer/Documents/julia-debug/deps/llvm-svn/lib/DebugInfo/DWARFContext.cpp:270
>> getCompileUnitForAddress at
>> /Users/kfischer/Documents/julia-debug/deps/llvm-svn/lib/DebugInfo/DWARFContext.cpp:423
>>
>> Can somebody tell me what the correct way to ac...
2014 Aug 13
2
[LLVMdev] Advice for setting debug locations
...bugInfoEntry.cpp:242
>>>> collectAddressRanges at
>>>> /Users/kfischer/Documents/julia-debug/deps/llvm-svn/lib/DebugInfo/DWARFUnit.cpp:302
>>>> generate at /Users/kfischer/Documents/julia-debug/deps/llvm-svn/lib/DebugInfo/DWARFDebugAranges.cpp:54
>>>> getDebugAranges at
>>>> /Users/kfischer/Documents/julia-debug/deps/llvm-svn/lib/DebugInfo/DWARFContext.cpp:270
>>>> getCompileUnitForAddress at
>>>> /Users/kfischer/Documents/julia-debug/deps/llvm-svn/lib/DebugInfo/DWARFContext.cpp:423
>>>>
>>>> Can som...
2013 Feb 06
0
[LLVMdev] [llvm] r174463 - Initial support for DWARF CFI parsing and dumping in LLVM
...t;DWARFDebugFrame> DebugFrame;
>>
>> SmallVector<DWARFCompileUnit, 1> DWOCUs;
>> OwningPtr<DWARFDebugAbbrev> AbbrevDWO;
>> @@ -84,6 +86,9 @@ public:
>> /// Get a pointer to the parsed DebugAranges object.
>> const DWARFDebugAranges *getDebugAranges();
>>
>> + /// Get a pointer to the parsed frame information object.
>> + const DWARFDebugFrame *getDebugFrame();
>> +
>> /// Get a pointer to a parsed line table corresponding to a compile unit.
>> const DWARFDebugLine::LineTable *
>> getLi...