/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/ |
H A D | TestingSupport.cpp | 46 auto BytesInAddress = OF->getBytesInAddress(); in convertForTestingMain()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | GOFFObjectFile.h | 54 uint8_t getBytesInAddress() const override { return 8; } in getBytesInAddress() function
|
H A D | Wasm.h | 211 uint8_t getBytesInAddress() const override;
|
H A D | ELFObjectFile.h | 478 bool is64Bit() const override { return getBytesInAddress() == 8; } in is64Bit() 488 uint8_t getBytesInAddress() const override; 1277 uint8_t ELFObjectFile<ELFT>::getBytesInAddress() const { in getBytesInAddress() function
|
H A D | ObjectFile.h | 337 virtual uint8_t getBytesInAddress() const = 0;
|
H A D | XCOFFObjectFile.h | 633 uint8_t getBytesInAddress() const override;
|
H A D | MachO.h | 516 uint8_t getBytesInAddress() const override;
|
H A D | COFF.h | 1041 uint8_t getBytesInAddress() const override;
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
H A D | ELFDump.cpp | 343 const uint32_t OffsetPadding = (Obj.getBytesInAddress() > 4 ? 16 : 8); in printDynamicRelocations() 348 StringRef Fmt = Obj.getBytesInAddress() > 4 ? "%016" PRIx64 : "%08" PRIx64; in printDynamicRelocations()
|
H A D | llvm-objdump.cpp | 1691 bool Is64Bits = Obj.getBytesInAddress() > 4; in disassembleObject() 2659 StringRef Fmt = O.getBytesInAddress() > 4 ? "%016" PRIx64 : "%08" PRIx64; in printRelocations() 2683 uint32_t OffsetPadding = (O.getBytesInAddress() > 4 ? 16 : 8); in printRelocations() 2746 size_t AddressWidth = 2 * Obj.getBytesInAddress(); in printSectionHeaders() 2957 const char *Fmt = O.getBytesInAddress() > 4 ? "%016" PRIx64 : "%08" PRIx64; in printSymbol() 3171 StringRef Fmt = O->getBytesInAddress() > 4 ? "%016" PRIx64 : "%08" PRIx64; in printFileHeaders()
|
H A D | MachODump.cpp | 1355 const size_t PointerWidth = 2 + O->getBytesInAddress() * 2; in PrintDyldInfo()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
H A D | ObjDumper.cpp | 99 std::string(formatv("{0}bit", 8 * Obj.getBytesInAddress()))); in printFileSummary()
|
H A D | ELFDumper.cpp | 8303 std::string(formatv("{0}bit", 8 * Obj.getBytesInAddress()))); in printFileSummary()
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | RelocationResolver.cpp | 783 if (Obj.getBytesInAddress() == 8) { in getRelocationResolver() 817 assert(Obj.getBytesInAddress() == 4 && in getRelocationResolver()
|
H A D | COFFObjectFile.cpp | 1050 uint8_t COFFObjectFile::getBytesInAddress() const { in getBytesInAddress() function in COFFObjectFile 1442 if (Object->getBytesInAddress() == 4) { in makeImportedSymbolIterator() 1465 if (Object->getBytesInAddress() == 4) { in importedSymbolEnd()
|
H A D | XCOFFObjectFile.cpp | 719 uint8_t XCOFFObjectFile::getBytesInAddress() const { return is64Bit() ? 8 : 4; } in getBytesInAddress() function in llvm::object::XCOFFObjectFile
|
H A D | WasmObjectFile.cpp | 2088 uint8_t WasmObjectFile::getBytesInAddress() const { in getBytesInAddress() function in WasmObjectFile
|
H A D | MachOObjectFile.cpp | 2656 uint8_t MachOObjectFile::getBytesInAddress() const { in getBytesInAddress() function in MachOObjectFile
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/BTF/ |
H A D | BTFParser.cpp | 92 Obj.getBytesInAddress()); in findSection()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/ |
H A D | SymbolizableObjectFile.cpp | 52 Obj->getBytesInAddress())); in create()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
H A D | RuntimeDyldELF.cpp | 189 if (Obj.getBytesInAddress() == 4 && Obj.isLittleEndian()) in createELFDebugObject() 192 else if (Obj.getBytesInAddress() == 4 && !Obj.isLittleEndian()) in createELFDebugObject() 195 else if (Obj.getBytesInAddress() == 8 && !Obj.isLittleEndian()) in createELFDebugObject() 198 else if (Obj.getBytesInAddress() == 8 && Obj.isLittleEndian()) in createELFDebugObject()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
H A D | COFFLinkGraphBuilder.cpp | 43 return Obj.getBytesInAddress(); in getPointerSize()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-cxxdump/ |
H A D | llvm-cxxdump.cpp | 187 uint8_t BytesInAddress = Obj->getBytesInAddress(); in dumpCXXData()
|
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/Coverage/ |
H A D | CoverageMappingReader.cpp | 1100 uint8_t BytesInAddress = OF->getBytesInAddress(); in loadBinaryFormat()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFContext.cpp | 2136 AddressSize(Obj.getBytesInAddress()), FileName(Obj.getFileName()), in DWARFObjInMemory()
|