|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Overridden By
include/llvm/Object/ELFObjectFile.h 424 uint8_t getBytesInAddress() const override;
1049 uint8_t ELFObjectFile<ELFT>::getBytesInAddress() const {
lib/Object/COFFObjectFile.cpp 879 uint8_t COFFObjectFile::getBytesInAddress() const {
lib/Object/MachOObjectFile.cpp 2535 uint8_t MachOObjectFile::getBytesInAddress() const {
lib/Object/WasmObjectFile.cpp 1525 uint8_t WasmObjectFile::getBytesInAddress() const { return 4; }
lib/Object/XCOFFObjectFile.cpp 361 uint8_t XCOFFObjectFile::getBytesInAddress() const { return is64Bit() ? 8 : 4; }
References
lib/DebugInfo/DWARF/DWARFContext.cpp 1507 AddressSize(Obj.getBytesInAddress()), FileName(Obj.getFileName()),
lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp 66 Obj->getBytesInAddress()));
lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp 195 if (Obj.getBytesInAddress() == 4 && Obj.isLittleEndian())
198 else if (Obj.getBytesInAddress() == 4 && !Obj.isLittleEndian())
201 else if (Obj.getBytesInAddress() == 8 && !Obj.isLittleEndian())
204 else if (Obj.getBytesInAddress() == 8 && Obj.isLittleEndian())
lib/Object/RelocationResolver.cpp 538 if (Obj.getBytesInAddress() == 8) {
568 assert(Obj.getBytesInAddress() == 4 &&
lib/ProfileData/Coverage/CoverageMappingReader.cpp 700 uint8_t BytesInAddress = OF->getBytesInAddress();
tools/llvm-cov/TestingSupport.cpp 42 auto BytesInAddress = OF->getBytesInAddress();
tools/llvm-cxxdump/llvm-cxxdump.cpp 186 uint8_t BytesInAddress = Obj->getBytesInAddress();
tools/llvm-nm/llvm-nm.cpp 341 return cast<ELFObjectFileBase>(Obj).getBytesInAddress() == 8;
tools/llvm-objdump/llvm-objdump.cpp 1130 bool Is64Bits = Obj->getBytesInAddress() > 4;
1609 StringRef Fmt = Obj->getBytesInAddress() > 4 ? "%016" PRIx64 :
1672 StringRef Fmt = Obj->getBytesInAddress() > 4 ? "%016" PRIx64 : "%08" PRIx64;
1710 size_t AddressWidth = 2 * Obj->getBytesInAddress();
1849 const char *Fmt = O->getBytesInAddress() > 4 ? "%016" PRIx64 :
2038 StringRef Fmt = O->getBytesInAddress() > 4 ? "%016" PRIx64 : "%08" PRIx64;
tools/llvm-readobj/llvm-readobj.cpp 457 formatv("{0}bit", 8 * Obj->getBytesInAddress()));