/external/llvm-project/llvm/include/llvm/CodeGen/ |
D | MachORelocation.h | 27 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/ |
D | MachORelocation.h | 28 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/ |
D | MachORelocation.h | 27 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/ |
D | MachO_x86_64.cpp | 36 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 …]
|
D | MachO_arm64.cpp | 37 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/ |
D | MachO_x86_64.cpp | 36 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 …]
|
D | MachO_arm64.cpp | 37 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 …]
|
D | MachOLinkGraphBuilder.h | 169 RI.r_pcrel = (ARI.r_word1 >> 24) & 1; in getRelocationInfo()
|
/external/llvm-project/lld/MachO/Arch/ |
D | X86_64.cpp | 93 if (!rel.r_pcrel) in getImplicitAddend() 99 if (rel.r_pcrel) in getImplicitAddend()
|
/external/kernel-headers/original/uapi/linux/ |
D | a.out.h | 233 unsigned int r_pcrel:1; member
|
/external/llvm-project/lld/MachO/ |
D | InputFiles.cpp | 210 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/ |
D | MachO.h | 952 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/ |
D | MachO.h | 909 r_pcrel:1, member 918 r_pcrel:1, member 926 r_pcrel:1,
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | MachO.h | 917 r_pcrel:1, member 926 r_pcrel:1, member 934 r_pcrel:1,
|
/external/llvm-project/llvm/include/llvm/BinaryFormat/ |
D | MachO.h | 958 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/ |
D | MachODump.cpp | 883 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()
|