Searched refs:is64 (Results 1 - 25 of 27) sorted by relevance

12

/freebsd-13-stable/contrib/elftoolchain/libdwarf/
H A Dlibdwarf_reloc.c32 _dwarf_get_reloc_type(Dwarf_P_Debug dbg, int is64) argument
39 return (is64 ? R_AARCH64_ABS64 : R_AARCH64_ABS32);
43 return (is64 ? R_X86_64_64 : R_X86_64_32);
45 return (is64 ? R_SPARC_UA64 : R_SPARC_UA32);
47 return (is64 ? R_PPC64_ADDR64 : R_PPC_ADDR32);
51 return (is64 ? R_MIPS_64 : R_MIPS_32);
53 return (is64 ? R_RISCV_64 : R_RISCV_32);
55 return (is64 ? R_IA_64_DIR64LSB : R_IA_64_DIR32LSB);
/freebsd-13-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFileBinaryReader.cpp58 StringRef lcRange, unsigned lcCount, bool isBig, bool is64,
121 static bool isMachOHeader(const mach_header *mh, bool &is64, bool &isBig) { argument
124 is64 = false;
128 is64 = true;
132 is64 = false;
136 is64 = true;
159 bool is64, isBig; local
160 if (!isMachOHeader(mh, is64, isBig))
222 bool is64, isBig; local
223 if (!isMachOHeader(mh, is64, isBi
57 forEachLoadCommand( StringRef lcRange, unsigned lcCount, bool isBig, bool is64, std::function<bool(uint32_t cmd, uint32_t size, const char *lc)> func) argument
[all...]
H A DGOTPass.cpp53 GOTEntryAtom(const File &file, bool is64, StringRef name) argument
54 : SimpleDefinedAtom(file), _is64(is64), _name(name) { }
H A DTLVPass.cpp29 TLVPEntryAtom(const File &file, bool is64, StringRef name) argument
30 : SimpleDefinedAtom(file), _is64(is64), _name(name) {}
H A DStubsPass.cpp36 LazyPointerAtom(const File &file, bool is64) argument
37 : SimpleDefinedAtom(file), _is64(is64) { }
72 NonLazyPointerAtom(const File &file, bool is64, ContentType contentType) argument
73 : SimpleDefinedAtom(file), _is64(is64), _contentType(contentType) { }
H A DMachONormalizedFileToAtoms.cpp388 const bool is64 = MachOLinkingContext::is64Bit(normalizedFile.arch); local
422 size = is64 ? 8 : 4;
459 size = is64 ? 32 : 20;
463 size = is64 ? 32 : 16;
828 const bool is64 = MachOLinkingContext::is64Bit(normalizedFile.arch); local
832 return llvm::DataExtractor(SecData, !isBig, is64 ? 8 : 4);
992 static int64_t readSPtr(bool is64, bool isBig, const uint8_t *addr) { argument
993 if (is64)
1102 const bool is64 = MachOLinkingContext::is64Bit(normalizedFile.arch); local
1103 unsigned EHDataFieldSize = (cieInfo._mayHaveEH ? (is64
1186 const bool is64 = MachOLinkingContext::is64Bit(normalizedFile.arch); local
[all...]
/freebsd-13-stable/contrib/llvm-project/lld/ELF/Arch/
H A DRISCV.cpp80 if (config->is64) {
106 if (config->is64)
137 if (config->is64)
144 if (config->is64)
160 uint32_t load = config->is64 ? LD : LW;
166 write32le(buf + 20, itype(SRLI, X_T1, X_T1, config->is64 ? 1 : 2));
179 write32le(buf + 4, itype(config->is64 ? LD : LW, X_T3, X_T3, lo12(offset)));
H A DMipsArchTree.cpp74 if (config->is64 && f.flags & EF_MIPS_MICROMIPS)
305 if (config->emulation.empty() || config->is64)
H A DX86_64.cpp869 if (!config->is64) {
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/
H A DReader.cpp28 Obj.Is64 = COFFObj.is64();
38 if (COFFObj.is64()) {
/freebsd-13-stable/contrib/llvm-project/lld/ELF/
H A DMapFile.cpp47 if (config->is64)
159 int w = config->is64 ? 16 : 8;
H A DConfig.h271 bool is64; member in struct:lld::elf::Configuration
H A DSyntheticSections.cpp60 return config->is64 ? read64(buf) : read32(buf);
64 if (config->is64)
313 write32(buf + 4, config->is64 ? 16 : 12); // Content size
319 if (config->is64)
323 size_t GnuPropertySection::getSize() const { return config->is64 ? 32 : 28; }
2323 unsigned c = config->is64 ? 64 : 32;
3646 eHdr->e_ident[EI_CLASS] = config->is64 ? ELFCLASS64 : ELFCLASS32;
H A DInputSection.cpp242 if (config->is64) {
966 const unsigned bits = config->is64 ? 64 : 32;
H A DDriver.cpp1254 config->is64 = (k == ELF64LEKind || k == ELF64BEKind);
1260 config->wordsize = config->is64 ? 8 : 4;
H A DWriter.cpp2812 uint64_t maxSize = config->is64 ? INT64_MAX : UINT32_MAX;
/freebsd-13-stable/contrib/llvm-project/lld/COFF/
H A DConfig.h84 bool is64() { return machine == AMD64 || machine == ARM64; } function in struct:lld::coff::Configuration
H A DDLL.cpp68 if (config->is64())
90 if (config->is64()) {
457 if (config->is64()) {
H A DChunks.cpp748 if (config->is64()) {
914 if (config->is64()) {
H A DWriter.cpp623 if (config->is64()) {
1249 config->is64() ? sizeof(pe32plus_header) : sizeof(pe32_header);
1330 if (!config->is64())
1348 pe->Magic = config->is64() ? PE32Header::PE32_PLUS : PE32Header::PE32;
1442 dir[TLS_TABLE].Size = config->is64()
H A DDriver.cpp604 if (config->is64())
1700 config->wordsize = config->is64() ? 8 : 4;
1719 OPT_largeaddressaware, OPT_largeaddressaware_no, config->is64());
1723 config->is64() &&
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DCOFF.h892 assert(!is64());
897 assert(is64());
1062 bool is64() const { return PE32PlusHeader; } function in class:llvm::object::frame_type::COFFObjectFile
H A DMachO.h396 bool is64);
411 bool is64,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp3432 ArrayRef<uint8_t> Opcodes, bool is64) {
3435 MachORebaseEntry Start(&Err, O, Opcodes, is64);
3438 MachORebaseEntry Finish(&Err, O, Opcodes, is64);
4091 ArrayRef<uint8_t> Opcodes, bool is64,
4095 MachOBindEntry Start(&Err, O, Opcodes, is64, BKind);
4098 MachOBindEntry Finish(&Err, O, Opcodes, is64, BKind);
3431 rebaseTable(Error &Err, MachOObjectFile *O, ArrayRef<uint8_t> Opcodes, bool is64) argument
4090 bindTable(Error &Err, MachOObjectFile *O, ArrayRef<uint8_t> Opcodes, bool is64, MachOBindEntry::Kind BKind) argument
H A DCOFFObjectFile.cpp1430 AddrIndex * (OwningObject->is64() ? 8 : 4);
1434 if (OwningObject->is64())

Completed in 167 milliseconds

12