/external/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFDataExtractor.h | 45 Other.getAddressSize()), in DWARFDataExtractor() 73 return getRelocatedValue(getAddressSize(), Off, SecIx); 76 return getRelocatedValue(getAddressSize(), &getOffset(C), SecIx,
|
D | DWARFDebugAddr.h | 88 uint8_t getAddressSize() const { return AddrSize; } in getAddressSize() function
|
D | DWARFObject.h | 34 virtual uint8_t getAddressSize() const { llvm_unreachable("unimplemented"); } in getAddressSize() function
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugLoc.cpp | 147 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()
|
D | DWARFDataExtractor.cpp | 45 switch (getAddressSize()) { in getEncodedPointer() 49 Result = getUnsigned(Offset, getAddressSize()); in getEncodedPointer()
|
D | DWARFDebugLine.cpp | 106 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()
|
D | DWARFDebugFrame.cpp | 132 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()
|
D | DWARFDebugRnglists.cpp | 74 if ((End - *OffsetPtr) < Data.getAddressSize()) in extract() 83 if ((End - *OffsetPtr) < unsigned(Data.getAddressSize() * 2)) in extract()
|
D | DWARFDebugRangeList.cpp | 32 AddressSize = data.getAddressSize(); in extract()
|
/external/llvm-project/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugLoc.cpp | 147 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()
|
D | DWARFDataExtractor.cpp | 80 switch (getAddressSize()) { in getEncodedPointer() 84 Result = getUnsigned(Offset, getAddressSize()); in getEncodedPointer()
|
D | DWARFDebugFrame.cpp | 147 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()
|
D | DWARFDebugLine.cpp | 130 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()
|
D | DWARFDebugRangeList.cpp | 32 AddressSize = data.getAddressSize(); in extract()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFDataExtractor.h | 45 return getRelocatedValue(getAddressSize(), Off, SecIx); 48 return getRelocatedValue(getAddressSize(), &getOffset(C), SecIx,
|
D | DWARFObject.h | 34 virtual uint8_t getAddressSize() const { llvm_unreachable("unimplemented"); } in getAddressSize() function
|
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugRangeList.cpp | 26 AddressSize = data.getAddressSize(); in extract()
|
D | DWARFDebugFrame.cpp | 482 return Data.getAddressSize(); in getSizeForEncoding() 555 uint8_t AddressSize = Version < 4 ? Data.getAddressSize() : in parse()
|
/external/llvm/include/llvm/Support/ |
D | DataExtractor.h | 35 uint8_t getAddressSize() const { return AddressSize; } in getAddressSize() function
|
/external/llvm-project/llvm/lib/DebugInfo/GSYM/ |
D | FunctionInfo.cpp | 69 Data.getAddressSize()); in decode() 196 Data.getAddressSize()); in lookup()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/ |
D | FunctionInfo.cpp | 66 Data.getAddressSize()); in decode() 193 Data.getAddressSize()); in lookup()
|
/external/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFContext.h | 189 virtual uint8_t getAddressSize() const = 0; 283 uint8_t getAddressSize() const override { return AddressSize; } in getAddressSize() function
|
/external/llvm-project/llvm/unittests/DebugInfo/DWARF/ |
D | DwarfGenerator.cpp | 321 Asm.emitInt8(Prologue->getAddressSize()); in writePrologue() 538 Asm->emitInt8(CU->getAddressSize()); in generate() 541 Asm->emitInt8(CU->getAddressSize()); in generate()
|
D | DwarfGenerator.h | 164 uint16_t getAddressSize() const { return AddrSize; } in getAddressSize() function
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | DataExtractor.h | 96 uint8_t getAddressSize() const { return AddressSize; } in getAddressSize() function
|