search for: getcstr

Displaying 2 results from an estimated 2 matches for "getcstr".

Did you mean: getattr
2013 Feb 06
0
[LLVMdev] [llvm] r174463 - Initial support for DWARF CFI parsing and dumping in LLVM
...W64_CIE_ID) || Id == DW_CIE_ID); >> + >> + if (IsCIE) { >> + // Note: this is specifically DWARFv3 CIE header structure. It was >> + // changed in DWARFv4. >> + uint8_t Version = Data.getU8(&Offset); >> + const char *Augmentation = Data.getCStr(&Offset); >> + uint64_t CodeAlignmentFactor = Data.getULEB128(&Offset); >> + int64_t DataAlignmentFactor = Data.getSLEB128(&Offset); >> + uint64_t ReturnAddressRegister = Data.getULEB128(&Offset); >> + >> + CIE *NewCIE = new CIE(Data...
2018 Jan 17
6
Adding DWARF5 accelerator table support to llvm
Hello all, In <https://reviews.llvm.org/D41986#977215> it was brought up that there are at least two parties interested in having DWARF5 accelerator tables implemented, so I'm writing this email to see if there's anyone else interested in this topic, and to try to synchronize our efforts. Our interest for this stems from a desire to make dwarf parsing fast on non-apple targets