Searched refs:getBytesInAddress (Results 1 - 20 of 20) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DTestingSupport.cpp42 auto BytesInAddress = OF->getBytesInAddress();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Object/
H A DRelocationResolver.cpp612 if (Obj.getBytesInAddress() == 8) {
642 assert(Obj.getBytesInAddress() == 4 &&
H A DCOFFObjectFile.cpp897 uint8_t COFFObjectFile::getBytesInAddress() const { function in class:COFFObjectFile
1300 if (Object->getBytesInAddress() == 4) {
1323 if (Object->getBytesInAddress() == 4) {
H A DXCOFFObjectFile.cpp431 uint8_t XCOFFObjectFile::getBytesInAddress() const { return is64Bit() ? 8 : 4; } function in class:llvm::object::XCOFFObjectFile
H A DWasmObjectFile.cpp1579 uint8_t WasmObjectFile::getBytesInAddress() const { return 4; } function in class:WasmObjectFile
H A DMachOObjectFile.cpp2544 uint8_t MachOObjectFile::getBytesInAddress() const { function in class:MachOObjectFile
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DSymbolizableObjectFile.cpp60 Obj->getBytesInAddress()));
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DXCOFFObjectFile.h313 uint8_t getBytesInAddress() const override;
H A DWasm.h200 uint8_t getBytesInAddress() const override;
H A DObjectFile.h325 virtual uint8_t getBytesInAddress() const = 0;
H A DELFObjectFile.h427 uint8_t getBytesInAddress() const override;
1080 uint8_t ELFObjectFile<ELFT>::getBytesInAddress() const { function in class:llvm::object::ELFObjectFile
H A DMachO.h363 uint8_t getBytesInAddress() const override;
H A DCOFF.h949 uint8_t getBytesInAddress() const override;
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1588 bool Is64Bits = Obj->getBytesInAddress() > 4;
2153 StringRef Fmt = Obj->getBytesInAddress() > 4 ? "%016" PRIx64 :
2180 uint32_t OffsetPadding = (Obj->getBytesInAddress() > 4 ? 16 : 8);
2222 StringRef Fmt = Obj->getBytesInAddress() > 4 ? "%016" PRIx64 : "%08" PRIx64;
2260 size_t AddressWidth = 2 * Obj->getBytesInAddress();
2451 const char *Fmt = O->getBytesInAddress() > 4 ? "%016" PRIx64 : "%08" PRIx64;
2636 StringRef Fmt = O->getBytesInAddress() > 4 ? "%016" PRIx64 : "%08" PRIx64;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp195 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())
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-cxxdump/
H A Dllvm-cxxdump.cpp186 uint8_t BytesInAddress = Obj->getBytesInAddress();
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp464 std::string(formatv("{0}bit", 8 * Obj->getBytesInAddress())));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp898 uint8_t BytesInAddress = OF->getBytesInAddress();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1640 AddressSize(Obj.getBytesInAddress()), FileName(Obj.getFileName()),
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp356 return cast<ELFObjectFileBase>(Obj).getBytesInAddress() == 8;

Completed in 250 milliseconds