Home
last modified time | relevance | path

Searched refs:r_pcrel (Results 1 – 16 of 16) sorted by relevance

/external/llvm-project/llvm/include/llvm/CodeGen/
DMachORelocation.h27 bool r_pcrel; // was relocated pc-relative already variable
37 return (1 << 31) | (r_pcrel << 30) | ((r_length & 3) << 28) | in getPackedFields()
40 return (r_symbolnum << 8) | (r_pcrel << 7) | ((r_length & 3) << 5) | in getPackedFields()
49 r_address(addr), r_symbolnum(index), r_pcrel(pcrel), r_length(len), in r_address()
/external/llvm/include/llvm/CodeGen/
DMachORelocation.h28 bool r_pcrel; // was relocated pc-relative already variable
38 return (1 << 31) | (r_pcrel << 30) | ((r_length & 3) << 28) | in getPackedFields()
41 return (r_symbolnum << 8) | (r_pcrel << 7) | ((r_length & 3) << 5) | in getPackedFields()
50 r_address(addr), r_symbolnum(index), r_pcrel(pcrel), r_length(len), in r_address()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachORelocation.h27 bool r_pcrel; // was relocated pc-relative already variable
37 return (1 << 31) | (r_pcrel << 30) | ((r_length & 3) << 28) | in getPackedFields()
40 return (r_symbolnum << 8) | (r_pcrel << 7) | ((r_length & 3) << 5) | in getPackedFields()
49 r_address(addr), r_symbolnum(index), r_pcrel(pcrel), r_length(len), in r_address()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DMachO_x86_64.cpp36 if (!RI.r_pcrel) { in getRelocationKind()
44 if (RI.r_pcrel && RI.r_length == 2) in getRelocationKind()
48 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
52 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
56 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
63 if (!RI.r_pcrel && RI.r_extern) { in getRelocationKind()
71 if (RI.r_pcrel && RI.r_length == 2) in getRelocationKind()
75 if (RI.r_pcrel && RI.r_length == 2) in getRelocationKind()
79 if (RI.r_pcrel && RI.r_length == 2) in getRelocationKind()
83 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
[all …]
DMachO_arm64.cpp37 if (!RI.r_pcrel) { in getRelocationKind()
48 if (!RI.r_pcrel && RI.r_extern) { in getRelocationKind()
56 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
60 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
64 if (!RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
68 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
72 if (!RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
76 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
80 if (!RI.r_pcrel && !RI.r_extern && RI.r_length == 2) in getRelocationKind()
90 ", pc_rel=" + (RI.r_pcrel ? "true" : "false") + in getRelocationKind()
[all …]
/external/llvm-project/llvm/lib/ExecutionEngine/JITLink/
DMachO_x86_64.cpp36 if (!RI.r_pcrel) { in getRelocationKind()
44 if (RI.r_pcrel && RI.r_length == 2) in getRelocationKind()
48 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
52 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
56 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
63 if (!RI.r_pcrel && RI.r_extern) { in getRelocationKind()
71 if (RI.r_pcrel && RI.r_length == 2) in getRelocationKind()
75 if (RI.r_pcrel && RI.r_length == 2) in getRelocationKind()
79 if (RI.r_pcrel && RI.r_length == 2) in getRelocationKind()
83 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
[all …]
DMachO_arm64.cpp37 if (!RI.r_pcrel) { in getRelocationKind()
48 if (!RI.r_pcrel && RI.r_extern) { in getRelocationKind()
56 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
60 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
64 if (!RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
68 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
72 if (!RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
76 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
80 if (!RI.r_pcrel && !RI.r_extern && RI.r_length == 2) in getRelocationKind()
90 ", pc_rel=" + (RI.r_pcrel ? "true" : "false") + in getRelocationKind()
[all …]
DMachOLinkGraphBuilder.h169 RI.r_pcrel = (ARI.r_word1 >> 24) & 1; in getRelocationInfo()
/external/llvm-project/lld/MachO/Arch/
DX86_64.cpp93 if (!rel.r_pcrel) in getImplicitAddend()
99 if (rel.r_pcrel) in getImplicitAddend()
/external/kernel-headers/original/uapi/linux/
Da.out.h233 unsigned int r_pcrel:1; member
/external/llvm-project/lld/MachO/
DInputFiles.cpp210 r.pcrel = relInfo.r_pcrel; in parseRelocations()
226 if (relInfo.r_pcrel) { in parseRelocations()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DMachO.h952 uint32_t r_type : 4, r_extern : 1, r_length : 2, r_pcrel : 1, member
955 uint32_t r_symbolnum : 24, r_pcrel : 1, r_length : 2, r_extern : 1, member
962 uint32_t r_scattered : 1, r_pcrel : 1, r_length : 2, r_type : 4, member
965 uint32_t r_address : 24, r_type : 4, r_length : 2, r_pcrel : 1,
/external/llvm/include/llvm/Support/
DMachO.h909 r_pcrel:1, member
918 r_pcrel:1, member
926 r_pcrel:1,
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DMachO.h917 r_pcrel:1, member
926 r_pcrel:1, member
934 r_pcrel:1,
/external/llvm-project/llvm/include/llvm/BinaryFormat/
DMachO.h958 uint32_t r_symbolnum : 24, r_pcrel : 1, r_length : 2, r_extern : 1, member
964 uint32_t r_scattered : 1, r_pcrel : 1, r_length : 2, r_type : 4, member
967 uint32_t r_address : 24, r_type : 4, r_length : 2, r_pcrel : 1,
/external/llvm-project/llvm/tools/llvm-objdump/
DMachODump.cpp883 const unsigned r_pcrel = O->getAnyRelocationPCRel(RE); in PrintRelocationEntries() local
904 if (r_pcrel) in PrintRelocationEntries()
949 (unsigned int)r_address, r_pcrel, r_length, r_type, in PrintRelocationEntries()
962 if (r_pcrel) in PrintRelocationEntries()
1036 (unsigned int)r_address, r_pcrel, r_length, r_extern, in PrintRelocationEntries()