search for: getlinesection

Displaying 5 results from an estimated 5 matches for "getlinesection".

2020 Nov 09
1
Fragmented DWARF
...ss DWARFObjInMemory {   const DWARFSection &getLocSection() const;   const DWARFSection &getLoclistsSection() const;   StringRef getArangesSection() const;   const DWARFSection &getFrameSection() const;   const DWARFSection &getEHFrameSection() const;   const DWARFSection &getLineSection() const;   StringRef getLineStrSection() const; } class DWARFUnit {   DWARFContext &Context;   /// Section containing this DWARFUnit.   const DWARFSection &InfoSection; } struct DWARFSection {   StringRef Data; }; DWARFSection references data that are loaded by Object file. DWARFSec...
2013 Feb 06
0
[LLVMdev] [llvm] r174463 - Initial support for DWARF CFI parsing and dumping in LLVM
...nst 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; >> virtual StringRef getRangeSection() = 0; >> @@ -132,11 +139,13 @@ private: >> class DWARFContextInMemory : public DWARFContext { >> virtual void anchor(); >> bool IsLittleEndian; >> +...
2020 Nov 05
3
Fragmented DWARF
Hi James, On 05.11.2020 17:59, James Henderson wrote: > (Resending with history trimmed to avoid it getting stuck in moderator > queue). > > Hi Alexey, > > Just an update - I identified the cause of the "Generated debug info > is broken" error message when I tried to build things locally: the > `outStreamer` instance is initialised with the host Triple,
2017 Jun 30
3
Building llvm with clang and lld on arm and the llvm arm backend relocation on position independent code
...hing and rebuilding and now I get this error. Did I miss anything? > > /home/yawmoo/Desktop/clfs/sources/llvm/tools/lld/ELF/InputFiles.cpp:82:23: error: > no matching constructor for initialization of 'llvm::DWARFDebugLine' > DwarfLine.reset(new DWARFDebugLine(&Dwarf.getLineSection().Relocs)); > ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > /home/yawmoo/Desktop/clfs/sources/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h:27:7: note: > candidate constructor (the implicit move constructor) not viable: no known > conversion from...
2017 Jun 28
2
Building llvm with clang and lld on arm and the llvm arm backend relocation on position independent code
The bottom of the bug has the revision numbers (e.g. D34035). That one corresponds to e.g. https://reviews.llvm.org/D34035 There's also https://reviews.llvm.org/D34634 which contains all of Peter's patches, but it's not going to rebase cleanly once the individual patches start going in. On 6/28/17, 10:56 AM, "Alessandro Pistocchi" <apukfreelance at gmail.com> wrote: