/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFDataExtractor.h | 62 uint64_t getRelocatedValue(uint32_t Size, uint64_t *Off, 65 uint64_t getRelocatedValue(Cursor &C, uint32_t Size, 67 return getRelocatedValue(Size, &getOffset(C), SectionIndex, &getError(C)); 73 return getRelocatedValue(getAddressSize(), Off, SecIx); 76 return getRelocatedValue(getAddressSize(), &getOffset(C), SecIx,
|
/llvm-project/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFDataExtractor.cpp | 23 uint64_t Length = getRelocatedValue(C, 4); in getInitialLength() 26 Length = getRelocatedValue(C, 8); in getInitialLength() 48 uint64_t DWARFDataExtractor::getRelocatedValue(uint32_t Size, uint64_t *Off, in getRelocatedValue() function in DWARFDataExtractor 111 Result = SignExtend64<32>(getRelocatedValue(4, Offset)); in getEncodedPointer() 114 Result = getRelocatedValue(8, Offset); in getEncodedPointer()
|
H A D | DWARFDebugMacro.cpp | 181 Data.getRelocatedValue(M->Header.getOffsetByteSize(), &Offset); in parseImpl() 220 Data.getRelocatedValue(M->Header.getOffsetByteSize(), &Offset); in parseImpl()
|
H A D | DWARFFormValue.cpp | 243 Data.getRelocatedValue(Size, OffsetPtr, &Value.SectionIndex, &Err); in extractValue() 285 Value.uval = Data.getRelocatedValue(4, OffsetPtr, nullptr, &Err); in extractValue() 290 Value.uval = Data.getRelocatedValue(8, OffsetPtr, nullptr, &Err); in extractValue() 327 Value.uval = Data.getRelocatedValue(FP.getDwarfOffsetByteSize(), in extractValue()
|
H A D | DWARFDebugPubTable.cpp | 51 NewSet.Offset = SetData.getRelocatedValue(C, OffsetSize); in extract()
|
H A D | DWARFDebugFrame.cpp | 258 uint8_t Opcode = Data.getRelocatedValue(C, 1); in parse() 300 addInstruction(Opcode, Data.getRelocatedValue(C, 1)); in parse() 304 addInstruction(Opcode, Data.getRelocatedValue(C, 2)); in parse() 308 addInstruction(Opcode, Data.getRelocatedValue(C, 4)); in parse() 1101 uint64_t Id = Data.getRelocatedValue((IsDWARF64 && !IsEH) ? 8 : 4, &Offset, in parse()
|
H A D | DWARFAcceleratorTable.cpp | 183 uint64_t StringOffset = AccelSection.getRelocatedValue(4, DataOffset); in dumpName() 422 ? AccelSection.getRelocatedValue(4, &Offset, nullptr, &E) in readU32FromAccel() 748 return Section.AccelSection.getRelocatedValue(SectionOffsetSize, &Offset); in getCUOffset() 756 return Section.AccelSection.getRelocatedValue(SectionOffsetSize, &Offset); in getLocalTUOffset() 805 AS.getRelocatedValue(SectionOffsetSize, &StringOffsetOffset); in getNameTableEntry()
|
H A D | DWARFDebugAddr.cpp | 38 Addrs.push_back(Data.getRelocatedValue(AddrSize, OffsetPtr)); in extractAddresses()
|
H A D | DWARFUnit.cpp | 251 return DA.getRelocatedValue(ItemSize, &Offset); in getStringOffsetSectionItem() 267 AbbrOffset = debug_info.getRelocatedValue( in extract() 270 AbbrOffset = debug_info.getRelocatedValue( in extract()
|
H A D | DWARFDebugLine.cpp | 414 DebugLineData.getRelocatedValue(Cursor, sizeofPrologueLength()); in parse() 1163 uint16_t PCOffset = TableData.getRelocatedValue(Cursor, 2); in parse()
|
H A D | DWARFContext.cpp | 885 StrOffsetExt.getRelocatedValue(EntrySize, &Offset); in dumpStringOffsetsSection()
|
/llvm-project/llvm/unittests/DebugInfo/DWARF/ |
H A D | DWARFDataExtractorTest.cpp | 20 TEST(DWARFDataExtractorTest, getRelocatedValue) { in TEST() argument
|
/llvm-project/bolt/lib/Core/ |
H A D | Exceptions.cpp | 868 const uint64_t Id = Data.getRelocatedValue(4, &Offset, in parse()
|
/llvm-project/lld/ELF/ |
H A D | SyntheticSections.cpp | 2935 uint64_t strp = namesExtractor.getRelocatedValue(dwarfSize, &strOffset); in computeHdrAndAbbrevTable()
|