Home
last modified time | relevance | path

Searched refs:getAddressSize (Results 1 – 25 of 37) sorted by relevance

12

/external/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDataExtractor.h45 Other.getAddressSize()), in DWARFDataExtractor()
73 return getRelocatedValue(getAddressSize(), Off, SecIx);
76 return getRelocatedValue(getAddressSize(), &getOffset(C), SecIx,
DDWARFDebugAddr.h88 uint8_t getAddressSize() const { return AddrSize; } in getAddressSize() function
DDWARFObject.h34 virtual uint8_t getAddressSize() const { llvm_unreachable("unimplemented"); } in getAddressSize() function
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLoc.cpp147 Loc.get()->Range->dump(OS, Data.getAddressSize(), RangeDumpOpts, &Obj); in dumpLocationList()
158 dumpExpression(OS, E.Loc, Data.isLittleEndian(), Data.getAddressSize(), in dumpLocationList()
227 } else if (Value0 == (Data.getAddressSize() == 4 ? -1U : -1ULL)) { in visitLocationList()
257 Value0 = Data.getAddressSize() == 4 ? -1U : -1ULL; in dumpRawEntry()
272 OS << '(' << format_hex(Value0, 2 + Data.getAddressSize() * 2) << ", " in dumpRawEntry()
273 << format_hex(Value1, 2 + Data.getAddressSize() * 2) << ')'; in dumpRawEntry()
360 unsigned FieldSize = 2 + 2 * Data.getAddressSize(); in dumpRawEntry()
DDWARFDataExtractor.cpp45 switch (getAddressSize()) { in getEncodedPointer()
49 Result = getUnsigned(Offset, getAddressSize()); in getEncodedPointer()
DDWARFDebugLine.cpp106 OS << format(" address_size: %u\n", getAddressSize()) in dump()
326 assert((DebugLineData.getAddressSize() == 0 || in parse()
327 DebugLineData.getAddressSize() == getAddressSize()) && in parse()
548 if (DebugLineData.getAddressSize() == 0) in parse()
549 DebugLineData.setAddressSize(Prologue.getAddressSize()); in parse()
551 assert(Prologue.getAddressSize() == 0 || in parse()
552 Prologue.getAddressSize() == DebugLineData.getAddressSize()); in parse()
611 uint8_t ExtractorAddressSize = DebugLineData.getAddressSize(); in parse()
DDWARFDebugFrame.cpp132 Data.isLittleEndian(), Data.getAddressSize()); in parse()
134 Extractor, Data.getAddressSize(), dwarf::DWARF_VERSION); in parse()
145 Data.isLittleEndian(), Data.getAddressSize()); in parse()
147 Extractor, Data.getAddressSize(), dwarf::DWARF_VERSION); in parse()
391 uint8_t AddressSize = Version < 4 ? Data.getAddressSize() : in parse()
DDWARFDebugRnglists.cpp74 if ((End - *OffsetPtr) < Data.getAddressSize()) in extract()
83 if ((End - *OffsetPtr) < unsigned(Data.getAddressSize() * 2)) in extract()
DDWARFDebugRangeList.cpp32 AddressSize = data.getAddressSize(); in extract()
/external/llvm-project/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLoc.cpp147 Loc.get()->Range->dump(OS, Data.getAddressSize(), RangeDumpOpts, &Obj); in dumpLocationList()
159 Data.getAddressSize(), MRI, U); in dumpLocationList()
225 } else if (Value0 == (Data.getAddressSize() == 4 ? -1U : -1ULL)) { in visitLocationList()
255 Value0 = Data.getAddressSize() == 4 ? -1U : -1ULL; in dumpRawEntry()
270 OS << '(' << format_hex(Value0, 2 + Data.getAddressSize() * 2) << ", " in dumpRawEntry()
271 << format_hex(Value1, 2 + Data.getAddressSize() * 2) << ')'; in dumpRawEntry()
358 unsigned FieldSize = 2 + 2 * Data.getAddressSize(); in dumpRawEntry()
DDWARFDataExtractor.cpp80 switch (getAddressSize()) { in getEncodedPointer()
84 Result = getUnsigned(Offset, getAddressSize()); in getEncodedPointer()
DDWARFDebugFrame.cpp147 Data.getAddressSize()); in parse()
152 DWARFExpression(Extractor, Data.getAddressSize()); in parse()
163 Data.getAddressSize()); in parse()
168 DWARFExpression(Extractor, Data.getAddressSize()); in parse()
442 uint8_t AddressSize = Version < 4 ? Data.getAddressSize() : in parse()
DDWARFDebugLine.cpp130 OS << format(" address_size: %u\n", getAddressSize()) in dump()
387 assert((!Cursor || DebugLineData.getAddressSize() == 0 || in parse()
388 DebugLineData.getAddressSize() == getAddressSize()) && in parse()
773 if (TableData.getAddressSize() == 0) in parse()
774 TableData.setAddressSize(Prologue.getAddressSize()); in parse()
776 assert(Prologue.getAddressSize() == 0 || in parse()
777 Prologue.getAddressSize() == TableData.getAddressSize()); in parse()
864 uint8_t ExtractorAddressSize = TableData.getAddressSize(); in parse()
DDWARFDebugRangeList.cpp32 AddressSize = data.getAddressSize(); in extract()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDataExtractor.h45 return getRelocatedValue(getAddressSize(), Off, SecIx);
48 return getRelocatedValue(getAddressSize(), &getOffset(C), SecIx,
DDWARFObject.h34 virtual uint8_t getAddressSize() const { llvm_unreachable("unimplemented"); } in getAddressSize() function
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugRangeList.cpp26 AddressSize = data.getAddressSize(); in extract()
DDWARFDebugFrame.cpp482 return Data.getAddressSize(); in getSizeForEncoding()
555 uint8_t AddressSize = Version < 4 ? Data.getAddressSize() : in parse()
/external/llvm/include/llvm/Support/
DDataExtractor.h35 uint8_t getAddressSize() const { return AddressSize; } in getAddressSize() function
/external/llvm-project/llvm/lib/DebugInfo/GSYM/
DFunctionInfo.cpp69 Data.getAddressSize()); in decode()
196 Data.getAddressSize()); in lookup()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/
DFunctionInfo.cpp66 Data.getAddressSize()); in decode()
193 Data.getAddressSize()); in lookup()
/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFContext.h189 virtual uint8_t getAddressSize() const = 0;
283 uint8_t getAddressSize() const override { return AddressSize; } in getAddressSize() function
/external/llvm-project/llvm/unittests/DebugInfo/DWARF/
DDwarfGenerator.cpp321 Asm.emitInt8(Prologue->getAddressSize()); in writePrologue()
538 Asm->emitInt8(CU->getAddressSize()); in generate()
541 Asm->emitInt8(CU->getAddressSize()); in generate()
DDwarfGenerator.h164 uint16_t getAddressSize() const { return AddrSize; } in getAddressSize() function
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DDataExtractor.h96 uint8_t getAddressSize() const { return AddressSize; } in getAddressSize() function

12