Home
last modified time | relevance | path

Searched refs:MachO (Results 1 – 25 of 210) sorted by relevance

123456789

/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
DMachODumper.cpp86 { "Magic", MachO::MH_MAGIC },
87 { "Cigam", MachO::MH_CIGAM },
88 { "Magic64", MachO::MH_MAGIC_64 },
89 { "Cigam64", MachO::MH_CIGAM_64 },
90 { "FatMagic", MachO::FAT_MAGIC },
91 { "FatCigam", MachO::FAT_CIGAM },
95 { "Relocatable", MachO::MH_OBJECT },
96 { "Executable", MachO::MH_EXECUTE },
97 { "FixedVMLibrary", MachO::MH_FVMLIB },
98 { "Core", MachO::MH_CORE },
[all …]
/external/llvm/tools/llvm-readobj/
DMachODumper.cpp84 { "Magic", MachO::MH_MAGIC },
85 { "Cigam", MachO::MH_CIGAM },
86 { "Magic64", MachO::MH_MAGIC_64 },
87 { "Cigam64", MachO::MH_CIGAM_64 },
88 { "FatMagic", MachO::FAT_MAGIC },
89 { "FatCigam", MachO::FAT_CIGAM },
93 { "Relocatable", MachO::MH_OBJECT },
94 { "Executable", MachO::MH_EXECUTE },
95 { "FixedVMLibrary", MachO::MH_FVMLIB },
96 { "Core", MachO::MH_CORE },
[all …]
/external/llvm/lib/Object/
DMachOObjectFile.cpp58 MachO::swapStruct(Cmd); in getStruct()
71 MachO::swapStruct(Cmd); in getStructOrErr()
81 unsigned SegmentLoadSize = Is64 ? sizeof(MachO::segment_command_64) : in getSectionPtr()
82 sizeof(MachO::segment_command); in getSectionPtr()
83 unsigned SectionSize = Is64 ? sizeof(MachO::section_64) : in getSectionPtr()
84 sizeof(MachO::section); in getSectionPtr()
94 static MachO::nlist_base
97 return getStruct<MachO::nlist_base>(O, P); in getSymbolTableEntryBase()
120 getPlainRelocationAddress(const MachO::any_relocation_info &RE) { in getPlainRelocationAddress()
125 getScatteredRelocationAddress(const MachO::any_relocation_info &RE) { in getScatteredRelocationAddress()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
DMachOObjectFile.cpp77 MachO::swapStruct(Cmd); in getStruct()
90 MachO::swapStruct(Cmd); in getStructOrErr()
100 unsigned SegmentLoadSize = Is64 ? sizeof(MachO::segment_command_64) : in getSectionPtr()
101 sizeof(MachO::segment_command); in getSectionPtr()
102 unsigned SectionSize = Is64 ? sizeof(MachO::section_64) : in getSectionPtr()
103 sizeof(MachO::section); in getSectionPtr()
114 static MachO::nlist_base
117 return getStruct<MachO::nlist_base>(O, P); in getSymbolTableEntryBase()
133 getPlainRelocationAddress(const MachO::any_relocation_info &RE) { in getPlainRelocationAddress()
138 getScatteredRelocationAddress(const MachO::any_relocation_info &RE) { in getScatteredRelocationAddress()
[all …]
DMachOUniversal.cpp51 if (Parent->getMagic() == MachO::FAT_MAGIC) { in ObjectForArch()
52 const char *HeaderPos = ParentData.begin() + sizeof(MachO::fat_header) + in ObjectForArch()
53 Index * sizeof(MachO::fat_arch); in ObjectForArch()
54 Header = getUniversalBinaryStruct<MachO::fat_arch>(HeaderPos); in ObjectForArch()
56 const char *HeaderPos = ParentData.begin() + sizeof(MachO::fat_header) + in ObjectForArch()
57 Index * sizeof(MachO::fat_arch_64); in ObjectForArch()
58 Header64 = getUniversalBinaryStruct<MachO::fat_arch_64>(HeaderPos); in ObjectForArch()
72 if (Parent->getMagic() == MachO::FAT_MAGIC) { in getAsObjectFile()
92 if (Parent->getMagic() == MachO::FAT_MAGIC) in getAsArchive()
117 if (Data.getBufferSize() < sizeof(MachO::fat_header)) { in MachOUniversalBinary()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
DRuntimeDyldMachOAArch64.h52 case MachO::ARM64_RELOC_POINTER_TO_GOT: in decodeAddend()
53 case MachO::ARM64_RELOC_UNSIGNED: { in decodeAddend()
66 case MachO::ARM64_RELOC_BRANCH26: in decodeAddend()
67 case MachO::ARM64_RELOC_PAGE21: in decodeAddend()
68 case MachO::ARM64_RELOC_PAGEOFF12: in decodeAddend()
69 case MachO::ARM64_RELOC_GOT_LOAD_PAGE21: in decodeAddend()
70 case MachO::ARM64_RELOC_GOT_LOAD_PAGEOFF12: in decodeAddend()
80 case MachO::ARM64_RELOC_POINTER_TO_GOT: in decodeAddend()
81 case MachO::ARM64_RELOC_UNSIGNED: in decodeAddend()
88 case MachO::ARM64_RELOC_BRANCH26: { in decodeAddend()
[all …]
DRuntimeDyldMachOARM.h69 case MachO::ARM_RELOC_BR24: { in decodeAddend()
76 case MachO::ARM_THUMB_RELOC_BR22: { in decodeAddend()
106 MachO::any_relocation_info RelInfo = in processRelocationRef()
133 if (RelType == MachO::ARM_RELOC_HALF_SECTDIFF) in processRelocationRef()
136 else if (RelType == MachO::GENERIC_RELOC_VANILLA) in processRelocationRef()
145 UNIMPLEMENTED_RELOC(MachO::ARM_RELOC_PAIR); in processRelocationRef()
146 UNIMPLEMENTED_RELOC(MachO::ARM_RELOC_SECTDIFF); in processRelocationRef()
147 UNIMPLEMENTED_RELOC(MachO::ARM_RELOC_LOCAL_SECTDIFF); in processRelocationRef()
148 UNIMPLEMENTED_RELOC(MachO::ARM_RELOC_PB_LA_PTR); in processRelocationRef()
149 UNIMPLEMENTED_RELOC(MachO::ARM_THUMB_32BIT_BRANCH); in processRelocationRef()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-nm/
Dllvm-nm.cpp308 if (MachOObjectFile *MachO = dyn_cast<MachOObjectFile>(&Obj)) in isSymbolList64Bit() local
309 return MachO->is64Bit(); in isSymbolList64Bit()
327 MachO::mach_header H; in darwinPrintSymbol()
328 MachO::mach_header_64 H_64; in darwinPrintSymbol()
329 uint32_t Filetype = MachO::MH_OBJECT; in darwinPrintSymbol()
336 MachOObjectFile *MachO = dyn_cast<MachOObjectFile>(&Obj); in darwinPrintSymbol() local
340 NType |= MachO::N_EXT; in darwinPrintSymbol()
342 NType |= MachO::N_PEXT; in darwinPrintSymbol()
344 NType |= MachO::N_EXT | MachO::N_UNDF; in darwinPrintSymbol()
349 NType |= MachO::N_SECT; in darwinPrintSymbol()
[all …]
/external/llvm/tools/llvm-nm/
Dllvm-nm.cpp277 if (MachOObjectFile *MachO = dyn_cast<MachOObjectFile>(&Obj)) in isSymbolList64Bit() local
278 return MachO->is64Bit(); in isSymbolList64Bit()
296 MachO::mach_header H; in darwinPrintSymbol()
297 MachO::mach_header_64 H_64; in darwinPrintSymbol()
298 uint32_t Filetype = MachO::MH_OBJECT; in darwinPrintSymbol()
305 MachOObjectFile *MachO = dyn_cast<MachOObjectFile>(&Obj); in darwinPrintSymbol() local
309 NType |= MachO::N_EXT; in darwinPrintSymbol()
311 NType |= MachO::N_PEXT; in darwinPrintSymbol()
313 NType |= MachO::N_EXT | MachO::N_UNDF; in darwinPrintSymbol()
318 NType |= MachO::N_SECT; in darwinPrintSymbol()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
DMachOYAML.cpp93 if (FileHdr.magic == MachO::MH_MAGIC_64 || in mapping()
94 FileHdr.magic == MachO::MH_CIGAM_64) in mapping()
206 void mapLoadCommandData<MachO::segment_command>( in mapLoadCommandData()
212 void mapLoadCommandData<MachO::segment_command_64>( in mapLoadCommandData()
218 void mapLoadCommandData<MachO::dylib_command>( in mapLoadCommandData()
224 void mapLoadCommandData<MachO::rpath_command>( in mapLoadCommandData()
230 void mapLoadCommandData<MachO::dylinker_command>( in mapLoadCommandData()
236 void mapLoadCommandData<MachO::build_version_command>( in mapLoadCommandData()
243 MachO::LoadCommandType TempCmd = static_cast<MachO::LoadCommandType>( in mapping()
250 case MachO::LCName: \ in mapping()
[all …]
/external/llvm/lib/ObjectYAML/
DMachOYAML.cpp83 if (FileHdr.magic == MachO::MH_MAGIC_64 || in mapping()
84 FileHdr.magic == MachO::MH_CIGAM_64) in mapping()
187 void mapLoadCommandData<MachO::segment_command>( in mapLoadCommandData()
193 void mapLoadCommandData<MachO::segment_command_64>( in mapLoadCommandData()
199 void mapLoadCommandData<MachO::dylib_command>( in mapLoadCommandData()
205 void mapLoadCommandData<MachO::rpath_command>( in mapLoadCommandData()
211 void mapLoadCommandData<MachO::dylinker_command>( in mapLoadCommandData()
218 MachO::LoadCommandType TempCmd = static_cast<MachO::LoadCommandType>( in mapping()
225 case MachO::LCName: \ in mapping()
226 MappingTraits<MachO::LCStruct>::mapping(IO, \ in mapping()
[all …]
/external/llvm/include/llvm/Object/
DMachO.h191 MachO::load_command C; // The command itself.
317 bool isRelocationScattered(const MachO::any_relocation_info &RE) const;
319 const MachO::any_relocation_info &RE) const;
320 bool getPlainRelocationExternal(const MachO::any_relocation_info &RE) const;
322 const MachO::any_relocation_info &RE) const;
324 const MachO::any_relocation_info &RE) const;
326 const MachO::any_relocation_info &RE) const;
327 unsigned getAnyRelocationAddress(const MachO::any_relocation_info &RE) const;
328 unsigned getAnyRelocationPCRel(const MachO::any_relocation_info &RE) const;
329 unsigned getAnyRelocationLength(const MachO::any_relocation_info &RE) const;
[all …]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
DRuntimeDyldMachOAArch64.h44 case MachO::ARM64_RELOC_UNSIGNED: in decodeAddend()
47 case MachO::ARM64_RELOC_BRANCH26: in decodeAddend()
48 case MachO::ARM64_RELOC_PAGE21: in decodeAddend()
49 case MachO::ARM64_RELOC_PAGEOFF12: in decodeAddend()
50 case MachO::ARM64_RELOC_GOT_LOAD_PAGE21: in decodeAddend()
51 case MachO::ARM64_RELOC_GOT_LOAD_PAGEOFF12: in decodeAddend()
61 case MachO::ARM64_RELOC_UNSIGNED: in decodeAddend()
68 case MachO::ARM64_RELOC_BRANCH26: { in decodeAddend()
80 case MachO::ARM64_RELOC_GOT_LOAD_PAGE21: in decodeAddend()
81 case MachO::ARM64_RELOC_PAGE21: { in decodeAddend()
[all …]
DRuntimeDyldMachOARM.h44 case MachO::ARM_RELOC_BR24: { in decodeAddend()
60 MachO::any_relocation_info RelInfo = in processRelocationRef()
65 if (RelType == MachO::ARM_RELOC_HALF_SECTDIFF) in processRelocationRef()
68 else if (RelType == MachO::GENERIC_RELOC_VANILLA) in processRelocationRef()
76 UNIMPLEMENTED_RELOC(MachO::ARM_RELOC_PAIR); in processRelocationRef()
77 UNIMPLEMENTED_RELOC(MachO::ARM_RELOC_SECTDIFF); in processRelocationRef()
78 UNIMPLEMENTED_RELOC(MachO::ARM_RELOC_LOCAL_SECTDIFF); in processRelocationRef()
79 UNIMPLEMENTED_RELOC(MachO::ARM_RELOC_PB_LA_PTR); in processRelocationRef()
80 UNIMPLEMENTED_RELOC(MachO::ARM_THUMB_RELOC_BR22); in processRelocationRef()
81 UNIMPLEMENTED_RELOC(MachO::ARM_THUMB_32BIT_BRANCH); in processRelocationRef()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
DMachO.h269 MachO::load_command C; // The command itself.
477 bool isRelocationScattered(const MachO::any_relocation_info &RE) const;
479 const MachO::any_relocation_info &RE) const;
480 bool getPlainRelocationExternal(const MachO::any_relocation_info &RE) const;
482 const MachO::any_relocation_info &RE) const;
484 const MachO::any_relocation_info &RE) const;
486 const MachO::any_relocation_info &RE) const;
487 unsigned getAnyRelocationAddress(const MachO::any_relocation_info &RE) const;
488 unsigned getAnyRelocationPCRel(const MachO::any_relocation_info &RE) const;
489 unsigned getAnyRelocationLength(const MachO::any_relocation_info &RE) const;
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
DMachODebugMapParser.cpp153 &Result->addDebugMapObject(Path, Timestamp, MachO::N_OSO); in switchToNewDebugMapObject()
190 {MachO::N_GSYM, "N_GSYM"}, {MachO::N_FNAME, "N_FNAME"},
191 {MachO::N_FUN, "N_FUN"}, {MachO::N_STSYM, "N_STSYM"},
192 {MachO::N_LCSYM, "N_LCSYM"}, {MachO::N_BNSYM, "N_BNSYM"},
193 {MachO::N_PC, "N_PC"}, {MachO::N_AST, "N_AST"},
194 {MachO::N_OPT, "N_OPT"}, {MachO::N_RSYM, "N_RSYM"},
195 {MachO::N_SLINE, "N_SLINE"}, {MachO::N_ENSYM, "N_ENSYM"},
196 {MachO::N_SSYM, "N_SSYM"}, {MachO::N_SO, "N_SO"},
197 {MachO::N_OSO, "N_OSO"}, {MachO::N_LSYM, "N_LSYM"},
198 {MachO::N_BINCL, "N_BINCL"}, {MachO::N_SOL, "N_SOL"},
[all …]
/external/llvm/tools/dsymutil/
DMachODebugMapParser.cpp172 {MachO::N_GSYM, "N_GSYM"}, {MachO::N_FNAME, "N_FNAME"},
173 {MachO::N_FUN, "N_FUN"}, {MachO::N_STSYM, "N_STSYM"},
174 {MachO::N_LCSYM, "N_LCSYM"}, {MachO::N_BNSYM, "N_BNSYM"},
175 {MachO::N_PC, "N_PC"}, {MachO::N_AST, "N_AST"},
176 {MachO::N_OPT, "N_OPT"}, {MachO::N_RSYM, "N_RSYM"},
177 {MachO::N_SLINE, "N_SLINE"}, {MachO::N_ENSYM, "N_ENSYM"},
178 {MachO::N_SSYM, "N_SSYM"}, {MachO::N_SO, "N_SO"},
179 {MachO::N_OSO, "N_OSO"}, {MachO::N_LSYM, "N_LSYM"},
180 {MachO::N_BINCL, "N_BINCL"}, {MachO::N_SOL, "N_SOL"},
181 {MachO::N_PARAMS, "N_PARAM"}, {MachO::N_VERSION, "N_VERS"},
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/yaml2obj/
Dyaml2macho.cpp33 is64Bit = Obj.Header.magic == MachO::MH_MAGIC_64 || in MachOWriter()
34 Obj.Header.magic == MachO::MH_CIGAM_64; in MachOWriter()
35 memset(reinterpret_cast<void *>(&Header), 0, sizeof(MachO::mach_header_64)); in MachOWriter()
64 MachO::mach_header_64 Header;
89 MachO::swapStruct(Header); in writeHeader()
92 is64Bit ? sizeof(MachO::mach_header_64) : sizeof(MachO::mach_header); in writeHeader()
122 size_t writeLoadCommandData<MachO::segment_command>(MachOYAML::LoadCommand &LC, in writeLoadCommandData()
127 auto TempSec = constructSection<MachO::section>(Sec); in writeLoadCommandData()
129 MachO::swapStruct(TempSec); in writeLoadCommandData()
131 sizeof(MachO::section)); in writeLoadCommandData()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/
Dmacho2yaml.cpp49 case MachO::LCName: \
51 sizeof(MachO::LCStruct)); \
53 MachO::swapStruct(LC.Data.LCStruct##_data); \
54 EndPtr = processLoadCommandData<MachO::LCStruct>(LC, LoadCmd); \
78 template <> MachOYAML::Section constructSection(MachO::section Sec) { in constructSection()
84 template <> MachOYAML::Section constructSection(MachO::section_64 Sec) { in constructSection()
102 MachO::swapStruct(Sec); in extractSections()
119 const char *MachODumper::processLoadCommandData<MachO::segment_command>( in processLoadCommandData()
122 return extractSections<MachO::section, MachO::segment_command>( in processLoadCommandData()
127 const char *MachODumper::processLoadCommandData<MachO::segment_command_64>( in processLoadCommandData()
[all …]
/external/llvm/tools/obj2yaml/
Dmacho2yaml.cpp44 case MachO::LCName: \
46 sizeof(MachO::LCStruct)); \
48 MachO::swapStruct(LC.Data.LCStruct##_data); \
49 EndPtr = processLoadCommandData<MachO::LCStruct>(LC, LoadCmd); \
73 template <> MachOYAML::Section constructSection(MachO::section Sec) { in constructSection()
79 template <> MachOYAML::Section constructSection(MachO::section_64 Sec) { in constructSection()
97 MachO::swapStruct(Sec); in extractSections()
114 const char *MachODumper::processLoadCommandData<MachO::segment_command>( in processLoadCommandData()
117 return extractSections<MachO::section, MachO::segment_command>( in processLoadCommandData()
122 const char *MachODumper::processLoadCommandData<MachO::segment_command_64>( in processLoadCommandData()
[all …]
/external/llvm/lib/MC/
DMachObjectWriter.cpp119 void MachObjectWriter::writeHeader(MachO::HeaderFileType Type, in writeHeader()
126 Flags |= MachO::MH_SUBSECTIONS_VIA_SYMBOLS; in writeHeader()
134 write32(is64Bit() ? MachO::MH_MAGIC_64 : MachO::MH_MAGIC); in writeHeader()
148 (is64Bit() ? sizeof(MachO::mach_header_64) : sizeof(MachO::mach_header))); in writeHeader()
166 is64Bit() ? sizeof(MachO::segment_command_64): in writeSegmentLoadCommand()
167 sizeof(MachO::segment_command); in writeSegmentLoadCommand()
168 write32(is64Bit() ? MachO::LC_SEGMENT_64 : MachO::LC_SEGMENT); in writeSegmentLoadCommand()
170 NumSections * (is64Bit() ? sizeof(MachO::section_64) : in writeSegmentLoadCommand()
171 sizeof(MachO::section))); in writeSegmentLoadCommand()
238 (is64Bit() ? sizeof(MachO::section_64) : sizeof(MachO::section))); in writeSection()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-size/
Dllvm-size.cpp214 static void printDarwinSectionSizes(MachOObjectFile *MachO) { in printDarwinSectionSizes() argument
222 uint32_t Filetype = MachO->getHeader().filetype; in printDarwinSectionSizes()
225 for (const auto &Load : MachO->load_commands()) { in printDarwinSectionSizes()
226 if (Load.C.cmd == MachO::LC_SEGMENT_64) { in printDarwinSectionSizes()
227 MachO::segment_command_64 Seg = MachO->getSegment64LoadCommand(Load); in printDarwinSectionSizes()
237 MachO::section_64 Sec = MachO->getSection64(Load, J); in printDarwinSectionSizes()
238 if (Filetype == MachO::MH_OBJECT) in printDarwinSectionSizes()
252 } else if (Load.C.cmd == MachO::LC_SEGMENT) { in printDarwinSectionSizes()
253 MachO::segment_command Seg = MachO->getSegmentLoadCommand(Load); in printDarwinSectionSizes()
264 MachO::section Sec = MachO->getSection(Load, J); in printDarwinSectionSizes()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objdump/
DMachODump.cpp249 case MachO::DICE_KIND_DATA: in DumpDataInCode()
269 if (Kind == MachO::DICE_KIND_DATA) in DumpDataInCode()
274 case MachO::DICE_KIND_JUMP_TABLE8: in DumpDataInCode()
281 case MachO::DICE_KIND_JUMP_TABLE16: in DumpDataInCode()
289 case MachO::DICE_KIND_JUMP_TABLE32: in DumpDataInCode()
290 case MachO::DICE_KIND_ABS_JUMP_TABLE32: in DumpDataInCode()
295 if (Kind == MachO::DICE_KIND_JUMP_TABLE32) in DumpDataInCode()
326 if (Command.C.cmd == MachO::LC_FUNCTION_STARTS) { in getSectionsAndSymbols()
329 MachO::linkedit_data_command LLC = in getSectionsAndSymbols()
333 } else if (Command.C.cmd == MachO::LC_SEGMENT) { in getSectionsAndSymbols()
[all …]
/external/llvm/lib/Target/ARM/MCTargetDesc/
DARMMachObjectWriter.cpp63 RelocType = unsigned(MachO::ARM_RELOC_VANILLA); in getARMFixupKindMachOInfo()
97 RelocType = unsigned(MachO::ARM_RELOC_BR24); in getARMFixupKindMachOInfo()
105 RelocType = unsigned(MachO::ARM_THUMB_RELOC_BR22); in getARMFixupKindMachOInfo()
119 RelocType = unsigned(MachO::ARM_RELOC_HALF); in getARMFixupKindMachOInfo()
123 RelocType = unsigned(MachO::ARM_RELOC_HALF); in getARMFixupKindMachOInfo()
128 RelocType = unsigned(MachO::ARM_RELOC_HALF); in getARMFixupKindMachOInfo()
132 RelocType = unsigned(MachO::ARM_RELOC_HALF); in getARMFixupKindMachOInfo()
148 unsigned Type = MachO::ARM_RELOC_HALF; in RecordARMScatteredHalfRelocation()
176 Type = MachO::ARM_RELOC_HALF_SECTDIFF; in RecordARMScatteredHalfRelocation()
217 if (Type == MachO::ARM_RELOC_HALF_SECTDIFF) { in RecordARMScatteredHalfRelocation()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/MCTargetDesc/
DARMMachObjectWriter.cpp63 RelocType = unsigned(MachO::ARM_RELOC_VANILLA); in getARMFixupKindMachOInfo()
97 RelocType = unsigned(MachO::ARM_RELOC_BR24); in getARMFixupKindMachOInfo()
105 RelocType = unsigned(MachO::ARM_THUMB_RELOC_BR22); in getARMFixupKindMachOInfo()
119 RelocType = unsigned(MachO::ARM_RELOC_HALF); in getARMFixupKindMachOInfo()
123 RelocType = unsigned(MachO::ARM_RELOC_HALF); in getARMFixupKindMachOInfo()
128 RelocType = unsigned(MachO::ARM_RELOC_HALF); in getARMFixupKindMachOInfo()
132 RelocType = unsigned(MachO::ARM_RELOC_HALF); in getARMFixupKindMachOInfo()
148 unsigned Type = MachO::ARM_RELOC_HALF; in RecordARMScatteredHalfRelocation()
176 Type = MachO::ARM_RELOC_HALF_SECTDIFF; in RecordARMScatteredHalfRelocation()
217 if (Type == MachO::ARM_RELOC_HALF_SECTDIFF) { in RecordARMScatteredHalfRelocation()
[all …]

123456789