Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DMachO_x86_64.cpp38 return RI.r_extern ? Pointer64 : Pointer64Anon; in getRelocationKind()
39 else if (RI.r_extern && RI.r_length == 2) in getRelocationKind()
45 return RI.r_extern ? PCRel32 : PCRel32Anon; 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()
72 return RI.r_extern ? PCRel32Minus1 : PCRel32Minus1Anon; in getRelocationKind()
76 return RI.r_extern ? PCRel32Minus2 : PCRel32Minus2Anon; in getRelocationKind()
80 return RI.r_extern ? PCRel32Minus4 : PCRel32Minus4Anon; in getRelocationKind()
[all …]
DMachO_arm64.cpp39 return RI.r_extern ? Pointer64 : Pointer64Anon; 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()
91 ", extern=" + (RI.r_extern ? "true" : "false") + in getRelocationKind()
[all …]
/external/llvm-project/llvm/include/llvm/CodeGen/
DMachORelocation.h29 bool r_extern; // variable
41 (r_extern << 4) | (r_type & 15); in getPackedFields()
50 r_extern(ext), r_type(type), r_scattered(scattered), r_value(value) {} in r_address()
/external/llvm/include/llvm/CodeGen/
DMachORelocation.h30 bool r_extern; // variable
42 (r_extern << 4) | (r_type & 15); in getPackedFields()
51 r_extern(ext), r_type(type), r_scattered(scattered), r_value(value) {} in r_address()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachORelocation.h29 bool r_extern; // variable
41 (r_extern << 4) | (r_type & 15); in getPackedFields()
50 r_extern(ext), r_type(type), r_scattered(scattered), r_value(value) {} in r_address()
/external/llvm-project/llvm/lib/ExecutionEngine/JITLink/
DMachO_x86_64.cpp38 return RI.r_extern ? Pointer64 : Pointer64Anon; in getRelocationKind()
39 else if (RI.r_extern && RI.r_length == 2) in getRelocationKind()
45 return RI.r_extern ? PCRel32 : PCRel32Anon; 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()
72 return RI.r_extern ? PCRel32Minus1 : PCRel32Minus1Anon; in getRelocationKind()
76 return RI.r_extern ? PCRel32Minus2 : PCRel32Minus2Anon; in getRelocationKind()
80 return RI.r_extern ? PCRel32Minus4 : PCRel32Minus4Anon; in getRelocationKind()
[all …]
DMachO_arm64.cpp39 return RI.r_extern ? Pointer64 : Pointer64Anon; 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()
91 ", extern=" + (RI.r_extern ? "true" : "false") + in getRelocationKind()
[all …]
DMachOLinkGraphBuilder.h171 RI.r_extern = (ARI.r_word1 >> 27) & 1; in getRelocationInfo()
/external/llvm-project/llvm/test/tools/llvm-objcopy/MachO/
Drelocations.test3 ## Show that llvm-objcopy copies relocation entries where r_extern = 0.
/external/kernel-headers/original/uapi/linux/
Da.out.h243 unsigned int r_extern:1; member
/external/llvm-project/lld/MachO/
DInputFiles.cpp214 if (relInfo.r_extern) { 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
/external/llvm/include/llvm/Support/
DMachO.h911 r_extern:1, member
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DMachO.h919 r_extern:1, member
/external/llvm-project/llvm/include/llvm/BinaryFormat/
DMachO.h958 uint32_t r_symbolnum : 24, r_pcrel : 1, r_length : 2, r_extern : 1, member
/external/llvm-project/llvm/tools/llvm-objdump/
DMachODump.cpp886 const bool r_extern = (r_scattered ? false : in PrintRelocationEntries() local
970 if (r_extern) { in PrintRelocationEntries()
1036 (unsigned int)r_address, r_pcrel, r_length, r_extern, in PrintRelocationEntries()