Searched refs:r_length (Results 1 - 12 of 12) sorted by relevance

/freebsd-13-stable/sys/i386/include/
H A Dreloc.h43 r_length : 2, /* log base 2 of value's width */ member in struct:relocation_info
/freebsd-13-stable/sys/arm/include/
H A Dreloc.h47 r_length : 2, /* log base 2 of value's width */ member in struct:relocation_info
/freebsd-13-stable/sys/amd64/include/
H A Dreloc.h43 r_length : 2, /* log base 2 of value's width */ member in struct:relocation_info
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachORelocation.h28 uint8_t r_length; // length = 2 ^ r_length member in class:llvm::MachORelocation
37 return (1 << 31) | (r_pcrel << 30) | ((r_length & 3) << 28) |
40 return (r_symbolnum << 8) | (r_pcrel << 7) | ((r_length & 3) << 5) |
49 r_address(addr), r_symbolnum(index), r_pcrel(pcrel), r_length(len),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DMachO_x86_64.cpp37 if (RI.r_length == 3)
39 else if (RI.r_extern && RI.r_length == 2)
44 if (RI.r_pcrel && RI.r_length == 2)
48 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2)
52 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2)
56 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2)
64 if (RI.r_length == 2)
66 else if (RI.r_length == 3)
71 if (RI.r_pcrel && RI.r_length == 2)
75 if (RI.r_pcrel && RI.r_length
[all...]
H A DMachO_arm64.cpp38 if (RI.r_length == 3)
40 else if (RI.r_length == 2)
49 if (RI.r_length == 2)
51 else if (RI.r_length == 3)
56 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2)
60 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2)
64 if (!RI.r_pcrel && RI.r_extern && RI.r_length == 2)
68 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2)
72 if (!RI.r_pcrel && RI.r_extern && RI.r_length == 2)
76 if (RI.r_pcrel && RI.r_extern && RI.r_length
[all...]
H A DMachOLinkGraphBuilder.h170 RI.r_length = (ARI.r_word1 >> 25) & 3;
/freebsd-13-stable/sbin/ggate/ggated/
H A Dggated.c87 #define r_length r_hdr.gh_length macro
667 __func__, req->r_offset, req->r_length);
672 req->r_data = malloc_waitok(req->r_length);
679 req->r_length);
680 data = g_gate_recv(fd, req->r_data, req->r_length,
730 assert(req->r_offset + req->r_length <= (uintmax_t)conn->c_mediasize);
732 assert((req->r_length % conn->c_sectorsize) == 0);
735 __func__, req->r_offset, req->r_length);
743 data = pread(fd, req->r_data, req->r_length,
747 data = pwrite(fd, req->r_data, req->r_length,
[all...]
/freebsd-13-stable/contrib/llvm-project/lld/MachO/Arch/
H A DX86_64.cpp55 if (std::find(validLengths.begin(), validLengths.end(), rel.r_length) !=
60 std::to_string(rel.r_type) + " must have r_length of ";
77 // XXX: ld64 also supports r_length = 0 here but I'm not sure when such a
103 switch (rel.r_length) {
113 llvm_unreachable("invalid r_length");
128 // r_length = 2, which is enforced by validateLength().
152 llvm_unreachable("invalid r_length");
229 dysym->getName() + " must have r_length = 3");
/freebsd-13-stable/contrib/llvm-project/lld/MachO/
H A DInputFiles.cpp182 r.length = rel.r_length;
202 // relocations with r_length != 2.
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMachO.h454 // Offset within page, scaled by r_length.
458 // Offset within page of GOT slot, scaled by r_length.
464 // Offset within page of TLVP slot, scaled by r_length.
956 uint32_t r_symbolnum : 24, r_pcrel : 1, r_length : 2, r_extern : 1, member in struct:llvm::MachO::relocation_info
962 uint32_t r_scattered : 1, r_pcrel : 1, r_length : 2, r_type : 4, member in struct:llvm::MachO::scattered_relocation_info
965 uint32_t r_address : 24, r_type : 4, r_length : 2, r_pcrel : 1,
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp832 const unsigned r_length, const bool previous_arm_half){
836 if ((r_length & 0x1) == 0)
840 if ((r_length & 0x1) == 0)
845 switch (r_length) {
859 outs() << format("?(%2d) ", r_length);
862 outs() << format("?(%2d) ", r_length);
883 const unsigned r_length = O->getAnyRelocationLength(RE); local
909 PrintRLength(cputype, r_type, r_length, previous_arm_half);
948 (unsigned int)r_address, r_pcrel, r_length, r_type,
967 PrintRLength(cputype, r_type, r_length, previous_arm_hal
831 PrintRLength(const uint64_t cputype, const unsigned r_type, const unsigned r_length, const bool previous_arm_half) argument
2810 uint32_t r_value, pair_r_value, r_type, r_length, other_half; local
[all...]

Completed in 206 milliseconds