Displaying 3 results from an estimated 3 matches for "getinfosection".
2013 Feb 06
0
[LLVMdev] [llvm] r174463 - Initial support for DWARF CFI parsing and dumping in LLVM
...ier());
>>
>> virtual bool isLittleEndian() const = 0;
>> + virtual uint8_t getAddressSize() const = 0;
>> virtual const RelocAddrMap &infoRelocMap() const = 0;
>> virtual const RelocAddrMap &lineRelocMap() const = 0;
>> virtual StringRef getInfoSection() = 0;
>> virtual StringRef getAbbrevSection() = 0;
>> virtual StringRef getARangeSection() = 0;
>> + virtual StringRef getDebugFrameSection() = 0;
>> virtual StringRef getLineSection() = 0;
>> virtual StringRef getStringSection() = 0;
>> vir...
2012 Nov 06
2
[LLVMdev] [PATCH] basic reading reloc visitor for x86_64 ELF
...text.
unsigned getNumCompileUnits() {
if (CUs.empty())
@@ -70,6 +73,7 @@ public:
DILineInfoSpecifier Specifier = DILineInfoSpecifier());
bool isLittleEndian() const { return IsLittleEndian; }
+ const RelocAddrMap &relocMap() const { return RelocMap; }
virtual StringRef getInfoSection() = 0;
virtual StringRef getAbbrevSection() = 0;
@@ -108,8 +112,9 @@ public:
StringRef aRangeSection,
StringRef lineSection,
StringRef stringSection,
- StringRef rangeSection)
- : DWARFContext(isLitt...
2012 Nov 06
0
[LLVMdev] [PATCH] basic reading reloc visitor for x86_64 ELF
On Mon, Nov 5, 2012 at 5:17 PM, Eric Christopher <echristo at gmail.com> wrote:
> For llvm-dwarfdump we need to handle relocations inside the debug info
> sections in order to successfully dump the dwarf info including strings.
> Nick sent out a partial patch that did this not too long ago and I've taken
> it and gone in a bit of a different direction, but kept the same basic