57d7dff89333d5becc1ec6ad88be053b7ea8b10e
[oota-llvm.git] / include / llvm / Support / MachO.h
1 //===-- llvm/Support/MachO.h - The MachO file format ------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines manifest constants for the MachO object file format.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_SUPPORT_MACHO_H
15 #define LLVM_SUPPORT_MACHO_H
16
17 #include "llvm/Support/Compiler.h"
18 #include "llvm/Support/DataTypes.h"
19 #include "llvm/Support/Host.h"
20
21 namespace llvm {
22   namespace MachO {
23     // Enums from <mach-o/loader.h>
24     enum : uint32_t {
25       // Constants for the "magic" field in llvm::MachO::mach_header and
26       // llvm::MachO::mach_header_64
27       MH_MAGIC    = 0xFEEDFACEu,
28       MH_CIGAM    = 0xCEFAEDFEu,
29       MH_MAGIC_64 = 0xFEEDFACFu,
30       MH_CIGAM_64 = 0xCFFAEDFEu,
31       FAT_MAGIC   = 0xCAFEBABEu,
32       FAT_CIGAM   = 0xBEBAFECAu
33     };
34
35     enum HeaderFileType {
36       // Constants for the "filetype" field in llvm::MachO::mach_header and
37       // llvm::MachO::mach_header_64
38       MH_OBJECT      = 0x1u,
39       MH_EXECUTE     = 0x2u,
40       MH_FVMLIB      = 0x3u,
41       MH_CORE        = 0x4u,
42       MH_PRELOAD     = 0x5u,
43       MH_DYLIB       = 0x6u,
44       MH_DYLINKER    = 0x7u,
45       MH_BUNDLE      = 0x8u,
46       MH_DYLIB_STUB  = 0x9u,
47       MH_DSYM        = 0xAu,
48       MH_KEXT_BUNDLE = 0xBu
49     };
50
51     enum {
52       // Constant bits for the "flags" field in llvm::MachO::mach_header and
53       // llvm::MachO::mach_header_64
54       MH_NOUNDEFS                = 0x00000001u,
55       MH_INCRLINK                = 0x00000002u,
56       MH_DYLDLINK                = 0x00000004u,
57       MH_BINDATLOAD              = 0x00000008u,
58       MH_PREBOUND                = 0x00000010u,
59       MH_SPLIT_SEGS              = 0x00000020u,
60       MH_LAZY_INIT               = 0x00000040u,
61       MH_TWOLEVEL                = 0x00000080u,
62       MH_FORCE_FLAT              = 0x00000100u,
63       MH_NOMULTIDEFS             = 0x00000200u,
64       MH_NOFIXPREBINDING         = 0x00000400u,
65       MH_PREBINDABLE             = 0x00000800u,
66       MH_ALLMODSBOUND            = 0x00001000u,
67       MH_SUBSECTIONS_VIA_SYMBOLS = 0x00002000u,
68       MH_CANONICAL               = 0x00004000u,
69       MH_WEAK_DEFINES            = 0x00008000u,
70       MH_BINDS_TO_WEAK           = 0x00010000u,
71       MH_ALLOW_STACK_EXECUTION   = 0x00020000u,
72       MH_ROOT_SAFE               = 0x00040000u,
73       MH_SETUID_SAFE             = 0x00080000u,
74       MH_NO_REEXPORTED_DYLIBS    = 0x00100000u,
75       MH_PIE                     = 0x00200000u,
76       MH_DEAD_STRIPPABLE_DYLIB   = 0x00400000u
77     };
78
79     enum : uint32_t {
80       // Flags for the "cmd" field in llvm::MachO::load_command
81       LC_REQ_DYLD    = 0x80000000u
82     };
83
84     enum LoadCommandType : uint32_t {
85       // Constants for the "cmd" field in llvm::MachO::load_command
86       LC_SEGMENT              = 0x00000001u,
87       LC_SYMTAB               = 0x00000002u,
88       LC_SYMSEG               = 0x00000003u,
89       LC_THREAD               = 0x00000004u,
90       LC_UNIXTHREAD           = 0x00000005u,
91       LC_LOADFVMLIB           = 0x00000006u,
92       LC_IDFVMLIB             = 0x00000007u,
93       LC_IDENT                = 0x00000008u,
94       LC_FVMFILE              = 0x00000009u,
95       LC_PREPAGE              = 0x0000000Au,
96       LC_DYSYMTAB             = 0x0000000Bu,
97       LC_LOAD_DYLIB           = 0x0000000Cu,
98       LC_ID_DYLIB             = 0x0000000Du,
99       LC_LOAD_DYLINKER        = 0x0000000Eu,
100       LC_ID_DYLINKER          = 0x0000000Fu,
101       LC_PREBOUND_DYLIB       = 0x00000010u,
102       LC_ROUTINES             = 0x00000011u,
103       LC_SUB_FRAMEWORK        = 0x00000012u,
104       LC_SUB_UMBRELLA         = 0x00000013u,
105       LC_SUB_CLIENT           = 0x00000014u,
106       LC_SUB_LIBRARY          = 0x00000015u,
107       LC_TWOLEVEL_HINTS       = 0x00000016u,
108       LC_PREBIND_CKSUM        = 0x00000017u,
109       LC_LOAD_WEAK_DYLIB      = 0x80000018u,
110       LC_SEGMENT_64           = 0x00000019u,
111       LC_ROUTINES_64          = 0x0000001Au,
112       LC_UUID                 = 0x0000001Bu,
113       LC_RPATH                = 0x8000001Cu,
114       LC_CODE_SIGNATURE       = 0x0000001Du,
115       LC_SEGMENT_SPLIT_INFO   = 0x0000001Eu,
116       LC_REEXPORT_DYLIB       = 0x8000001Fu,
117       LC_LAZY_LOAD_DYLIB      = 0x00000020u,
118       LC_ENCRYPTION_INFO      = 0x00000021u,
119       LC_DYLD_INFO            = 0x00000022u,
120       LC_DYLD_INFO_ONLY       = 0x80000022u,
121       LC_LOAD_UPWARD_DYLIB    = 0x80000023u,
122       LC_VERSION_MIN_MACOSX   = 0x00000024u,
123       LC_VERSION_MIN_IPHONEOS = 0x00000025u,
124       LC_FUNCTION_STARTS      = 0x00000026u,
125       LC_DYLD_ENVIRONMENT     = 0x00000027u,
126       LC_MAIN                 = 0x80000028u,
127       LC_DATA_IN_CODE         = 0x00000029u,
128       LC_SOURCE_VERSION       = 0x0000002Au,
129       LC_DYLIB_CODE_SIGN_DRS  = 0x0000002Bu,
130       //                        0x0000002Cu,
131       LC_LINKER_OPTIONS       = 0x0000002Du,
132       LC_LINKER_OPTIMIZATION_HINT = 0x0000002Eu
133     };
134
135     enum : uint32_t {
136       // Constant bits for the "flags" field in llvm::MachO::segment_command
137       SG_HIGHVM              = 0x1u,
138       SG_FVMLIB              = 0x2u,
139       SG_NORELOC             = 0x4u,
140       SG_PROTECTED_VERSION_1 = 0x8u,
141
142
143       // Constant masks for the "flags" field in llvm::MachO::section and
144       // llvm::MachO::section_64
145       SECTION_TYPE           = 0x000000ffu, // SECTION_TYPE
146       SECTION_ATTRIBUTES     = 0xffffff00u, // SECTION_ATTRIBUTES
147       SECTION_ATTRIBUTES_USR = 0xff000000u, // SECTION_ATTRIBUTES_USR
148       SECTION_ATTRIBUTES_SYS = 0x00ffff00u  // SECTION_ATTRIBUTES_SYS
149     };
150
151     /// These are the section type and attributes fields.  A MachO section can
152     /// have only one Type, but can have any of the attributes specified.
153     enum SectionType : uint32_t {
154       // Constant masks for the "flags[7:0]" field in llvm::MachO::section and
155       // llvm::MachO::section_64 (mask "flags" with SECTION_TYPE)
156
157       /// S_REGULAR - Regular section.
158       S_REGULAR                             = 0x00u,
159       /// S_ZEROFILL - Zero fill on demand section.
160       S_ZEROFILL                            = 0x01u,
161       /// S_CSTRING_LITERALS - Section with literal C strings.
162       S_CSTRING_LITERALS                    = 0x02u,
163       /// S_4BYTE_LITERALS - Section with 4 byte literals.
164       S_4BYTE_LITERALS                      = 0x03u,
165       /// S_8BYTE_LITERALS - Section with 8 byte literals.
166       S_8BYTE_LITERALS                      = 0x04u,
167       /// S_LITERAL_POINTERS - Section with pointers to literals.
168       S_LITERAL_POINTERS                    = 0x05u,
169       /// S_NON_LAZY_SYMBOL_POINTERS - Section with non-lazy symbol pointers.
170       S_NON_LAZY_SYMBOL_POINTERS            = 0x06u,
171       /// S_LAZY_SYMBOL_POINTERS - Section with lazy symbol pointers.
172       S_LAZY_SYMBOL_POINTERS                = 0x07u,
173       /// S_SYMBOL_STUBS - Section with symbol stubs, byte size of stub in
174       /// the Reserved2 field.
175       S_SYMBOL_STUBS                        = 0x08u,
176       /// S_MOD_INIT_FUNC_POINTERS - Section with only function pointers for
177       /// initialization.
178       S_MOD_INIT_FUNC_POINTERS              = 0x09u,
179       /// S_MOD_TERM_FUNC_POINTERS - Section with only function pointers for
180       /// termination.
181       S_MOD_TERM_FUNC_POINTERS              = 0x0au,
182       /// S_COALESCED - Section contains symbols that are to be coalesced.
183       S_COALESCED                           = 0x0bu,
184       /// S_GB_ZEROFILL - Zero fill on demand section (that can be larger than 4
185       /// gigabytes).
186       S_GB_ZEROFILL                         = 0x0cu,
187       /// S_INTERPOSING - Section with only pairs of function pointers for
188       /// interposing.
189       S_INTERPOSING                         = 0x0du,
190       /// S_16BYTE_LITERALS - Section with only 16 byte literals.
191       S_16BYTE_LITERALS                     = 0x0eu,
192       /// S_DTRACE_DOF - Section contains DTrace Object Format.
193       S_DTRACE_DOF                          = 0x0fu,
194       /// S_LAZY_DYLIB_SYMBOL_POINTERS - Section with lazy symbol pointers to
195       /// lazy loaded dylibs.
196       S_LAZY_DYLIB_SYMBOL_POINTERS          = 0x10u,
197       /// S_THREAD_LOCAL_REGULAR - Thread local data section.
198       S_THREAD_LOCAL_REGULAR                = 0x11u,
199       /// S_THREAD_LOCAL_ZEROFILL - Thread local zerofill section.
200       S_THREAD_LOCAL_ZEROFILL               = 0x12u,
201       /// S_THREAD_LOCAL_VARIABLES - Section with thread local variable
202       /// structure data.
203       S_THREAD_LOCAL_VARIABLES              = 0x13u,
204       /// S_THREAD_LOCAL_VARIABLE_POINTERS - Section with pointers to thread
205       /// local structures.
206       S_THREAD_LOCAL_VARIABLE_POINTERS      = 0x14u,
207       /// S_THREAD_LOCAL_INIT_FUNCTION_POINTERS - Section with thread local
208       /// variable initialization pointers to functions.
209       S_THREAD_LOCAL_INIT_FUNCTION_POINTERS = 0x15u,
210
211       LAST_KNOWN_SECTION_TYPE = S_THREAD_LOCAL_INIT_FUNCTION_POINTERS
212     };
213
214     enum : uint32_t {
215       // Constant masks for the "flags[31:24]" field in llvm::MachO::section and
216       // llvm::MachO::section_64 (mask "flags" with SECTION_ATTRIBUTES_USR)
217
218       /// S_ATTR_PURE_INSTRUCTIONS - Section contains only true machine
219       /// instructions.
220       S_ATTR_PURE_INSTRUCTIONS   = 0x80000000u,
221       /// S_ATTR_NO_TOC - Section contains coalesced symbols that are not to be
222       /// in a ranlib table of contents.
223       S_ATTR_NO_TOC              = 0x40000000u,
224       /// S_ATTR_STRIP_STATIC_SYMS - Ok to strip static symbols in this section
225       /// in files with the MY_DYLDLINK flag.
226       S_ATTR_STRIP_STATIC_SYMS   = 0x20000000u,
227       /// S_ATTR_NO_DEAD_STRIP - No dead stripping.
228       S_ATTR_NO_DEAD_STRIP       = 0x10000000u,
229       /// S_ATTR_LIVE_SUPPORT - Blocks are live if they reference live blocks.
230       S_ATTR_LIVE_SUPPORT        = 0x08000000u,
231       /// S_ATTR_SELF_MODIFYING_CODE - Used with i386 code stubs written on by
232       /// dyld.
233       S_ATTR_SELF_MODIFYING_CODE = 0x04000000u,
234       /// S_ATTR_DEBUG - A debug section.
235       S_ATTR_DEBUG               = 0x02000000u,
236
237       // Constant masks for the "flags[23:8]" field in llvm::MachO::section and
238       // llvm::MachO::section_64 (mask "flags" with SECTION_ATTRIBUTES_SYS)
239
240       /// S_ATTR_SOME_INSTRUCTIONS - Section contains some machine instructions.
241       S_ATTR_SOME_INSTRUCTIONS   = 0x00000400u,
242       /// S_ATTR_EXT_RELOC - Section has external relocation entries.
243       S_ATTR_EXT_RELOC           = 0x00000200u,
244       /// S_ATTR_LOC_RELOC - Section has local relocation entries.
245       S_ATTR_LOC_RELOC           = 0x00000100u,
246
247       // Constant masks for the value of an indirect symbol in an indirect
248       // symbol table
249       INDIRECT_SYMBOL_LOCAL = 0x80000000u,
250       INDIRECT_SYMBOL_ABS   = 0x40000000u
251     };
252
253     enum DataRegionType {
254       // Constants for the "kind" field in a data_in_code_entry structure
255       DICE_KIND_DATA             = 1u,
256       DICE_KIND_JUMP_TABLE8      = 2u,
257       DICE_KIND_JUMP_TABLE16     = 3u,
258       DICE_KIND_JUMP_TABLE32     = 4u,
259       DICE_KIND_ABS_JUMP_TABLE32 = 5u
260     };
261
262     enum RebaseType {
263       REBASE_TYPE_POINTER         = 1u,
264       REBASE_TYPE_TEXT_ABSOLUTE32 = 2u,
265       REBASE_TYPE_TEXT_PCREL32    = 3u
266     };
267
268     enum {
269       REBASE_OPCODE_MASK    = 0xF0u,
270       REBASE_IMMEDIATE_MASK = 0x0Fu
271     };
272
273     enum RebaseOpcode {
274       REBASE_OPCODE_DONE                               = 0x00u,
275       REBASE_OPCODE_SET_TYPE_IMM                       = 0x10u,
276       REBASE_OPCODE_SET_SEGMENT_AND_OFFSET_ULEB        = 0x20u,
277       REBASE_OPCODE_ADD_ADDR_ULEB                      = 0x30u,
278       REBASE_OPCODE_ADD_ADDR_IMM_SCALED                = 0x40u,
279       REBASE_OPCODE_DO_REBASE_IMM_TIMES                = 0x50u,
280       REBASE_OPCODE_DO_REBASE_ULEB_TIMES               = 0x60u,
281       REBASE_OPCODE_DO_REBASE_ADD_ADDR_ULEB            = 0x70u,
282       REBASE_OPCODE_DO_REBASE_ULEB_TIMES_SKIPPING_ULEB = 0x80u
283     };
284
285     enum BindType {
286       BIND_TYPE_POINTER         = 1u,
287       BIND_TYPE_TEXT_ABSOLUTE32 = 2u,
288       BIND_TYPE_TEXT_PCREL32    = 3u
289     };
290
291     enum BindSpecialDylib {
292       BIND_SPECIAL_DYLIB_SELF            =  0,
293       BIND_SPECIAL_DYLIB_MAIN_EXECUTABLE = -1,
294       BIND_SPECIAL_DYLIB_FLAT_LOOKUP     = -2
295     };
296
297     enum {
298       BIND_SYMBOL_FLAGS_WEAK_IMPORT         = 0x1u,
299       BIND_SYMBOL_FLAGS_NON_WEAK_DEFINITION = 0x8u,
300
301       BIND_OPCODE_MASK                      = 0xF0u,
302       BIND_IMMEDIATE_MASK                   = 0x0Fu
303     };
304
305     enum BindOpcode {
306       BIND_OPCODE_DONE                             = 0x00u,
307       BIND_OPCODE_SET_DYLIB_ORDINAL_IMM            = 0x10u,
308       BIND_OPCODE_SET_DYLIB_ORDINAL_ULEB           = 0x20u,
309       BIND_OPCODE_SET_DYLIB_SPECIAL_IMM            = 0x30u,
310       BIND_OPCODE_SET_SYMBOL_TRAILING_FLAGS_IMM    = 0x40u,
311       BIND_OPCODE_SET_TYPE_IMM                     = 0x50u,
312       BIND_OPCODE_SET_ADDEND_SLEB                  = 0x60u,
313       BIND_OPCODE_SET_SEGMENT_AND_OFFSET_ULEB      = 0x70u,
314       BIND_OPCODE_ADD_ADDR_ULEB                    = 0x80u,
315       BIND_OPCODE_DO_BIND                          = 0x90u,
316       BIND_OPCODE_DO_BIND_ADD_ADDR_ULEB            = 0xA0u,
317       BIND_OPCODE_DO_BIND_ADD_ADDR_IMM_SCALED      = 0xB0u,
318       BIND_OPCODE_DO_BIND_ULEB_TIMES_SKIPPING_ULEB = 0xC0u
319     };
320
321     enum {
322       EXPORT_SYMBOL_FLAGS_KIND_MASK           = 0x03u,
323       EXPORT_SYMBOL_FLAGS_WEAK_DEFINITION     = 0x04u,
324       EXPORT_SYMBOL_FLAGS_REEXPORT            = 0x08u,
325       EXPORT_SYMBOL_FLAGS_STUB_AND_RESOLVER   = 0x10u
326     };
327
328     enum ExportSymbolKind {
329       EXPORT_SYMBOL_FLAGS_KIND_REGULAR        = 0x00u,
330       EXPORT_SYMBOL_FLAGS_KIND_THREAD_LOCAL   = 0x01u
331     };
332
333
334     enum {
335       // Constant masks for the "n_type" field in llvm::MachO::nlist and
336       // llvm::MachO::nlist_64
337       N_STAB = 0xe0,
338       N_PEXT = 0x10,
339       N_TYPE = 0x0e,
340       N_EXT  = 0x01
341     };
342
343     enum NListType {
344       // Constants for the "n_type & N_TYPE" llvm::MachO::nlist and
345       // llvm::MachO::nlist_64
346       N_UNDF = 0x0u,
347       N_ABS  = 0x2u,
348       N_SECT = 0xeu,
349       N_PBUD = 0xcu,
350       N_INDR = 0xau
351     };
352
353     enum SectionOrdinal {
354       // Constants for the "n_sect" field in llvm::MachO::nlist and
355       // llvm::MachO::nlist_64
356       NO_SECT  = 0u,
357       MAX_SECT = 0xffu
358     };
359
360     enum {
361       // Constant masks for the "n_desc" field in llvm::MachO::nlist and
362       // llvm::MachO::nlist_64
363       // The low 3 bits are the for the REFERENCE_TYPE.
364       REFERENCE_TYPE                            = 0x7,
365       REFERENCE_FLAG_UNDEFINED_NON_LAZY         = 0,
366       REFERENCE_FLAG_UNDEFINED_LAZY             = 1,
367       REFERENCE_FLAG_DEFINED                    = 2,
368       REFERENCE_FLAG_PRIVATE_DEFINED            = 3,
369       REFERENCE_FLAG_PRIVATE_UNDEFINED_NON_LAZY = 4,
370       REFERENCE_FLAG_PRIVATE_UNDEFINED_LAZY     = 5,
371       // Flag bits (some overlap with the library ordinal bits).
372       N_ARM_THUMB_DEF   = 0x0008u,
373       REFERENCED_DYNAMICALLY = 0x0010u,
374       N_NO_DEAD_STRIP   = 0x0020u,
375       N_WEAK_REF        = 0x0040u,
376       N_WEAK_DEF        = 0x0080u,
377       N_SYMBOL_RESOLVER = 0x0100u,
378       N_ALT_ENTRY       = 0x0200u,
379       // For undefined symbols coming from libraries, see GET_LIBRARY_ORDINAL()
380       // as these are in the top 8 bits.
381       SELF_LIBRARY_ORDINAL   = 0x0,
382       MAX_LIBRARY_ORDINAL    = 0xfd,
383       DYNAMIC_LOOKUP_ORDINAL = 0xfe,
384       EXECUTABLE_ORDINAL     = 0xff 
385     };
386
387     enum StabType {
388       // Constant values for the "n_type" field in llvm::MachO::nlist and
389       // llvm::MachO::nlist_64 when "(n_type & N_STAB) != 0"
390       N_GSYM    = 0x20u,
391       N_FNAME   = 0x22u,
392       N_FUN     = 0x24u,
393       N_STSYM   = 0x26u,
394       N_LCSYM   = 0x28u,
395       N_BNSYM   = 0x2Eu,
396       N_PC      = 0x30u,
397       N_AST     = 0x32u,
398       N_OPT     = 0x3Cu,
399       N_RSYM    = 0x40u,
400       N_SLINE   = 0x44u,
401       N_ENSYM   = 0x4Eu,
402       N_SSYM    = 0x60u,
403       N_SO      = 0x64u,
404       N_OSO     = 0x66u,
405       N_LSYM    = 0x80u,
406       N_BINCL   = 0x82u,
407       N_SOL     = 0x84u,
408       N_PARAMS  = 0x86u,
409       N_VERSION = 0x88u,
410       N_OLEVEL  = 0x8Au,
411       N_PSYM    = 0xA0u,
412       N_EINCL   = 0xA2u,
413       N_ENTRY   = 0xA4u,
414       N_LBRAC   = 0xC0u,
415       N_EXCL    = 0xC2u,
416       N_RBRAC   = 0xE0u,
417       N_BCOMM   = 0xE2u,
418       N_ECOMM   = 0xE4u,
419       N_ECOML   = 0xE8u,
420       N_LENG    = 0xFEu
421     };
422
423     enum : uint32_t {
424       // Constant values for the r_symbolnum field in an
425       // llvm::MachO::relocation_info structure when r_extern is 0.
426       R_ABS = 0,
427
428       // Constant bits for the r_address field in an
429       // llvm::MachO::relocation_info structure.
430       R_SCATTERED = 0x80000000
431     };
432
433     enum RelocationInfoType {
434       // Constant values for the r_type field in an
435       // llvm::MachO::relocation_info or llvm::MachO::scattered_relocation_info
436       // structure.
437       GENERIC_RELOC_VANILLA        = 0,
438       GENERIC_RELOC_PAIR           = 1,
439       GENERIC_RELOC_SECTDIFF       = 2,
440       GENERIC_RELOC_PB_LA_PTR      = 3,
441       GENERIC_RELOC_LOCAL_SECTDIFF = 4,
442       GENERIC_RELOC_TLV            = 5,
443
444       // Constant values for the r_type field in a PowerPC architecture
445       // llvm::MachO::relocation_info or llvm::MachO::scattered_relocation_info
446       // structure.
447       PPC_RELOC_VANILLA            = GENERIC_RELOC_VANILLA,
448       PPC_RELOC_PAIR               = GENERIC_RELOC_PAIR,
449       PPC_RELOC_BR14               = 2,
450       PPC_RELOC_BR24               = 3,
451       PPC_RELOC_HI16               = 4,
452       PPC_RELOC_LO16               = 5,
453       PPC_RELOC_HA16               = 6,
454       PPC_RELOC_LO14               = 7,
455       PPC_RELOC_SECTDIFF           = 8,
456       PPC_RELOC_PB_LA_PTR          = 9,
457       PPC_RELOC_HI16_SECTDIFF      = 10,
458       PPC_RELOC_LO16_SECTDIFF      = 11,
459       PPC_RELOC_HA16_SECTDIFF      = 12,
460       PPC_RELOC_JBSR               = 13,
461       PPC_RELOC_LO14_SECTDIFF      = 14,
462       PPC_RELOC_LOCAL_SECTDIFF     = 15,
463
464       // Constant values for the r_type field in an ARM architecture
465       // llvm::MachO::relocation_info or llvm::MachO::scattered_relocation_info
466       // structure.
467       ARM_RELOC_VANILLA            = GENERIC_RELOC_VANILLA,
468       ARM_RELOC_PAIR               = GENERIC_RELOC_PAIR,
469       ARM_RELOC_SECTDIFF           = GENERIC_RELOC_SECTDIFF,
470       ARM_RELOC_LOCAL_SECTDIFF     = 3,
471       ARM_RELOC_PB_LA_PTR          = 4,
472       ARM_RELOC_BR24               = 5,
473       ARM_THUMB_RELOC_BR22         = 6,
474       ARM_THUMB_32BIT_BRANCH       = 7, // obsolete
475       ARM_RELOC_HALF               = 8,
476       ARM_RELOC_HALF_SECTDIFF      = 9,
477
478       // Constant values for the r_type field in an ARM64 architecture
479       // llvm::MachO::relocation_info or llvm::MachO::scattered_relocation_info
480       // structure.
481
482       // For pointers.
483       ARM64_RELOC_UNSIGNED            = 0,
484       // Must be followed by an ARM64_RELOC_UNSIGNED
485       ARM64_RELOC_SUBTRACTOR          = 1,
486       // A B/BL instruction with 26-bit displacement.
487       ARM64_RELOC_BRANCH26            = 2,
488       // PC-rel distance to page of target.
489       ARM64_RELOC_PAGE21              = 3,
490       // Offset within page, scaled by r_length.
491       ARM64_RELOC_PAGEOFF12           = 4,
492       // PC-rel distance to page of GOT slot.
493       ARM64_RELOC_GOT_LOAD_PAGE21     = 5,
494       // Offset within page of GOT slot, scaled by r_length.
495       ARM64_RELOC_GOT_LOAD_PAGEOFF12  = 6,
496       // For pointers to GOT slots.
497       ARM64_RELOC_POINTER_TO_GOT      = 7,
498       // PC-rel distance to page of TLVP slot.
499       ARM64_RELOC_TLVP_LOAD_PAGE21    = 8,
500       // Offset within page of TLVP slot, scaled by r_length.
501       ARM64_RELOC_TLVP_LOAD_PAGEOFF12 = 9,
502       // Must be followed by ARM64_RELOC_PAGE21 or ARM64_RELOC_PAGEOFF12.
503       ARM64_RELOC_ADDEND              = 10,
504
505
506       // Constant values for the r_type field in an x86_64 architecture
507       // llvm::MachO::relocation_info or llvm::MachO::scattered_relocation_info
508       // structure
509       X86_64_RELOC_UNSIGNED        = 0,
510       X86_64_RELOC_SIGNED          = 1,
511       X86_64_RELOC_BRANCH          = 2,
512       X86_64_RELOC_GOT_LOAD        = 3,
513       X86_64_RELOC_GOT             = 4,
514       X86_64_RELOC_SUBTRACTOR      = 5,
515       X86_64_RELOC_SIGNED_1        = 6,
516       X86_64_RELOC_SIGNED_2        = 7,
517       X86_64_RELOC_SIGNED_4        = 8,
518       X86_64_RELOC_TLV             = 9
519     };
520
521     // Values for segment_command.initprot.
522     // From <mach/vm_prot.h>
523     enum {
524       VM_PROT_READ    = 0x1,
525       VM_PROT_WRITE   = 0x2,
526       VM_PROT_EXECUTE = 0x4
527     };
528
529
530     // Structs from <mach-o/loader.h>
531
532     struct mach_header {
533       uint32_t magic;
534       uint32_t cputype;
535       uint32_t cpusubtype;
536       uint32_t filetype;
537       uint32_t ncmds;
538       uint32_t sizeofcmds;
539       uint32_t flags;
540     };
541
542     struct mach_header_64 {
543       uint32_t magic;
544       uint32_t cputype;
545       uint32_t cpusubtype;
546       uint32_t filetype;
547       uint32_t ncmds;
548       uint32_t sizeofcmds;
549       uint32_t flags;
550       uint32_t reserved;
551     };
552
553     struct load_command {
554       uint32_t cmd;
555       uint32_t cmdsize;
556     };
557
558     struct segment_command {
559       uint32_t cmd;
560       uint32_t cmdsize;
561       char segname[16];
562       uint32_t vmaddr;
563       uint32_t vmsize;
564       uint32_t fileoff;
565       uint32_t filesize;
566       uint32_t maxprot;
567       uint32_t initprot;
568       uint32_t nsects;
569       uint32_t flags;
570     };
571
572     struct segment_command_64 {
573       uint32_t cmd;
574       uint32_t cmdsize;
575       char segname[16];
576       uint64_t vmaddr;
577       uint64_t vmsize;
578       uint64_t fileoff;
579       uint64_t filesize;
580       uint32_t maxprot;
581       uint32_t initprot;
582       uint32_t nsects;
583       uint32_t flags;
584     };
585
586     struct section {
587       char sectname[16];
588       char segname[16];
589       uint32_t addr;
590       uint32_t size;
591       uint32_t offset;
592       uint32_t align;
593       uint32_t reloff;
594       uint32_t nreloc;
595       uint32_t flags;
596       uint32_t reserved1;
597       uint32_t reserved2;
598     };
599
600     struct section_64 {
601       char sectname[16];
602       char segname[16];
603       uint64_t addr;
604       uint64_t size;
605       uint32_t offset;
606       uint32_t align;
607       uint32_t reloff;
608       uint32_t nreloc;
609       uint32_t flags;
610       uint32_t reserved1;
611       uint32_t reserved2;
612       uint32_t reserved3;
613     };
614
615     struct fvmlib {
616       uint32_t name;
617       uint32_t minor_version;
618       uint32_t header_addr;
619     };
620
621     struct fvmlib_command {
622       uint32_t  cmd;
623       uint32_t cmdsize;
624       struct fvmlib fvmlib;
625     };
626
627     struct dylib {
628       uint32_t name;
629       uint32_t timestamp;
630       uint32_t current_version;
631       uint32_t compatibility_version;
632     };
633
634     struct dylib_command {
635       uint32_t cmd;
636       uint32_t cmdsize;
637       struct dylib dylib;
638     };
639
640     struct sub_framework_command {
641       uint32_t cmd;
642       uint32_t cmdsize;
643       uint32_t umbrella;
644     };
645
646     struct sub_client_command {
647       uint32_t cmd;
648       uint32_t cmdsize;
649       uint32_t client;
650     };
651
652     struct sub_umbrella_command {
653       uint32_t cmd;
654       uint32_t cmdsize;
655       uint32_t sub_umbrella;
656     };
657
658     struct sub_library_command {
659       uint32_t cmd;
660       uint32_t cmdsize;
661       uint32_t sub_library;
662     };
663
664     struct prebound_dylib_command {
665       uint32_t cmd;
666       uint32_t cmdsize;
667       uint32_t name;
668       uint32_t nmodules;
669       uint32_t linked_modules;
670     };
671
672     struct dylinker_command {
673       uint32_t cmd;
674       uint32_t cmdsize;
675       uint32_t name;
676     };
677
678     struct thread_command {
679       uint32_t cmd;
680       uint32_t cmdsize;
681     };
682
683     struct routines_command {
684       uint32_t cmd;
685       uint32_t cmdsize;
686       uint32_t init_address;
687       uint32_t init_module;
688       uint32_t reserved1;
689       uint32_t reserved2;
690       uint32_t reserved3;
691       uint32_t reserved4;
692       uint32_t reserved5;
693       uint32_t reserved6;
694     };
695
696     struct routines_command_64 {
697       uint32_t cmd;
698       uint32_t cmdsize;
699       uint64_t init_address;
700       uint64_t init_module;
701       uint64_t reserved1;
702       uint64_t reserved2;
703       uint64_t reserved3;
704       uint64_t reserved4;
705       uint64_t reserved5;
706       uint64_t reserved6;
707     };
708
709     struct symtab_command {
710       uint32_t cmd;
711       uint32_t cmdsize;
712       uint32_t symoff;
713       uint32_t nsyms;
714       uint32_t stroff;
715       uint32_t strsize;
716     };
717
718     struct dysymtab_command {
719       uint32_t cmd;
720       uint32_t cmdsize;
721       uint32_t ilocalsym;
722       uint32_t nlocalsym;
723       uint32_t iextdefsym;
724       uint32_t nextdefsym;
725       uint32_t iundefsym;
726       uint32_t nundefsym;
727       uint32_t tocoff;
728       uint32_t ntoc;
729       uint32_t modtaboff;
730       uint32_t nmodtab;
731       uint32_t extrefsymoff;
732       uint32_t nextrefsyms;
733       uint32_t indirectsymoff;
734       uint32_t nindirectsyms;
735       uint32_t extreloff;
736       uint32_t nextrel;
737       uint32_t locreloff;
738       uint32_t nlocrel;
739     };
740
741     struct dylib_table_of_contents {
742       uint32_t symbol_index;
743       uint32_t module_index;
744     };
745
746     struct dylib_module {
747       uint32_t module_name;
748       uint32_t iextdefsym;
749       uint32_t nextdefsym;
750       uint32_t irefsym;
751       uint32_t nrefsym;
752       uint32_t ilocalsym;
753       uint32_t nlocalsym;
754       uint32_t iextrel;
755       uint32_t nextrel;
756       uint32_t iinit_iterm;
757       uint32_t ninit_nterm;
758       uint32_t objc_module_info_addr;
759       uint32_t objc_module_info_size;
760     };
761
762     struct dylib_module_64 {
763       uint32_t module_name;
764       uint32_t iextdefsym;
765       uint32_t nextdefsym;
766       uint32_t irefsym;
767       uint32_t nrefsym;
768       uint32_t ilocalsym;
769       uint32_t nlocalsym;
770       uint32_t iextrel;
771       uint32_t nextrel;
772       uint32_t iinit_iterm;
773       uint32_t ninit_nterm;
774       uint32_t objc_module_info_size;
775       uint64_t objc_module_info_addr;
776     };
777
778     struct dylib_reference {
779       uint32_t isym:24,
780                flags:8;
781     };
782
783
784     struct twolevel_hints_command {
785       uint32_t cmd;
786       uint32_t cmdsize;
787       uint32_t offset;
788       uint32_t nhints;
789     };
790
791     struct twolevel_hint {
792       uint32_t isub_image:8,
793                itoc:24;
794     };
795
796     struct prebind_cksum_command {
797       uint32_t cmd;
798       uint32_t cmdsize;
799       uint32_t cksum;
800     };
801
802     struct uuid_command {
803       uint32_t cmd;
804       uint32_t cmdsize;
805       uint8_t uuid[16];
806     };
807
808     struct rpath_command {
809       uint32_t cmd;
810       uint32_t cmdsize;
811       uint32_t path;
812     };
813
814     struct linkedit_data_command {
815       uint32_t cmd;
816       uint32_t cmdsize;
817       uint32_t dataoff;
818       uint32_t datasize;
819     };
820
821     struct data_in_code_entry {
822       uint32_t offset;
823       uint16_t length;
824       uint16_t kind;
825     };
826
827     struct source_version_command {
828       uint32_t cmd;
829       uint32_t cmdsize;
830       uint64_t version;
831     };
832
833     struct encryption_info_command {
834       uint32_t cmd;
835       uint32_t cmdsize;
836       uint32_t cryptoff;
837       uint32_t cryptsize;
838       uint32_t cryptid;
839     };
840
841     struct version_min_command {
842       uint32_t cmd;       // LC_VERSION_MIN_MACOSX or
843                           // LC_VERSION_MIN_IPHONEOS
844       uint32_t cmdsize;   // sizeof(struct version_min_command)
845       uint32_t version;   // X.Y.Z is encoded in nibbles xxxx.yy.zz
846       uint32_t reserved;
847     };
848
849     struct dyld_info_command {
850       uint32_t cmd;
851       uint32_t cmdsize;
852       uint32_t rebase_off;
853       uint32_t rebase_size;
854       uint32_t bind_off;
855       uint32_t bind_size;
856       uint32_t weak_bind_off;
857       uint32_t weak_bind_size;
858       uint32_t lazy_bind_off;
859       uint32_t lazy_bind_size;
860       uint32_t export_off;
861       uint32_t export_size;
862     };
863
864     struct linker_options_command {
865       uint32_t cmd;
866       uint32_t cmdsize;
867       uint32_t count;
868     };
869
870     struct symseg_command {
871       uint32_t cmd;
872       uint32_t cmdsize;
873       uint32_t offset;
874       uint32_t size;
875     };
876
877     struct ident_command {
878       uint32_t cmd;
879       uint32_t cmdsize;
880     };
881
882     struct fvmfile_command {
883       uint32_t cmd;
884       uint32_t cmdsize;
885       uint32_t name;
886       uint32_t header_addr;
887     };
888
889     struct tlv_descriptor_32 {
890       uint32_t thunk;
891       uint32_t key;
892       uint32_t offset;
893     };
894
895     struct tlv_descriptor_64 {
896       uint64_t thunk;
897       uint64_t key;
898       uint64_t offset;
899     };
900
901     struct tlv_descriptor {
902       uintptr_t thunk;
903       uintptr_t key;
904       uintptr_t offset;
905     };
906
907     struct entry_point_command {
908       uint32_t cmd;
909       uint32_t cmdsize;
910       uint64_t entryoff;
911       uint64_t stacksize;
912     };
913
914
915     // Structs from <mach-o/fat.h>
916     struct fat_header {
917       uint32_t magic;
918       uint32_t nfat_arch;
919     };
920
921     struct fat_arch {
922       uint32_t cputype;
923       uint32_t cpusubtype;
924       uint32_t offset;
925       uint32_t size;
926       uint32_t align;
927     };
928
929     // Structs from <mach-o/reloc.h>
930     struct relocation_info {
931       int32_t r_address;
932       uint32_t r_symbolnum:24,
933                r_pcrel:1,
934                r_length:2,
935                r_extern:1,
936                r_type:4;
937     };
938
939     struct scattered_relocation_info {
940 #if defined(BYTE_ORDER) && defined(BIG_ENDIAN) && (BYTE_ORDER == BIG_ENDIAN)
941       uint32_t r_scattered:1,
942                r_pcrel:1,
943                r_length:2,
944                r_type:4,
945                r_address:24;
946 #else
947       uint32_t r_address:24,
948                r_type:4,
949                r_length:2,
950                r_pcrel:1,
951                r_scattered:1;
952 #endif
953       int32_t r_value;
954     };
955
956     // Structs NOT from <mach-o/reloc.h>, but that make LLVM's life easier
957     struct any_relocation_info {
958       uint32_t r_word0, r_word1;
959     };
960
961     // Structs from <mach-o/nlist.h>
962     struct nlist {
963       uint32_t n_strx;
964       uint8_t n_type;
965       uint8_t n_sect;
966       int16_t n_desc;
967       uint32_t n_value;
968     };
969
970     struct nlist_64 {
971       uint32_t n_strx;
972       uint8_t n_type;
973       uint8_t n_sect;
974       uint16_t n_desc;
975       uint64_t n_value;
976     };
977
978     // Get/Set functions from <mach-o/nlist.h>
979
980     static inline uint16_t GET_LIBRARY_ORDINAL(uint16_t n_desc) {
981       return (((n_desc) >> 8u) & 0xffu);
982     }
983
984     static inline void SET_LIBRARY_ORDINAL(uint16_t &n_desc, uint8_t ordinal) {
985       n_desc = (((n_desc) & 0x00ff) | (((ordinal) & 0xff) << 8));
986     }
987
988     static inline uint8_t GET_COMM_ALIGN (uint16_t n_desc) {
989       return (n_desc >> 8u) & 0x0fu;
990     }
991
992     static inline void SET_COMM_ALIGN (uint16_t &n_desc, uint8_t align) {
993       n_desc = ((n_desc & 0xf0ffu) | ((align & 0x0fu) << 8u));
994     }
995
996     // Enums from <mach/machine.h>
997     enum : uint32_t {
998       // Capability bits used in the definition of cpu_type.
999       CPU_ARCH_MASK  = 0xff000000,   // Mask for architecture bits
1000       CPU_ARCH_ABI64 = 0x01000000    // 64 bit ABI
1001     };
1002
1003     // Constants for the cputype field.
1004     enum CPUType {
1005       CPU_TYPE_ANY       = -1,
1006       CPU_TYPE_X86       = 7,
1007       CPU_TYPE_I386      = CPU_TYPE_X86,
1008       CPU_TYPE_X86_64    = CPU_TYPE_X86 | CPU_ARCH_ABI64,
1009    /* CPU_TYPE_MIPS      = 8, */
1010       CPU_TYPE_MC98000   = 10, // Old Motorola PowerPC
1011       CPU_TYPE_ARM       = 12,
1012       CPU_TYPE_ARM64     = CPU_TYPE_ARM | CPU_ARCH_ABI64,
1013       CPU_TYPE_SPARC     = 14,
1014       CPU_TYPE_POWERPC   = 18,
1015       CPU_TYPE_POWERPC64 = CPU_TYPE_POWERPC | CPU_ARCH_ABI64
1016     };
1017
1018     enum : uint32_t {
1019       // Capability bits used in the definition of cpusubtype.
1020       CPU_SUBTYPE_MASK  = 0xff000000,   // Mask for architecture bits
1021       CPU_SUBTYPE_LIB64 = 0x80000000,   // 64 bit libraries
1022
1023       // Special CPU subtype constants.
1024       CPU_SUBTYPE_MULTIPLE = ~0u
1025     };
1026
1027     // Constants for the cpusubtype field.
1028     enum CPUSubTypeX86 {
1029       CPU_SUBTYPE_I386_ALL       = 3,
1030       CPU_SUBTYPE_386            = 3,
1031       CPU_SUBTYPE_486            = 4,
1032       CPU_SUBTYPE_486SX          = 0x84,
1033       CPU_SUBTYPE_586            = 5,
1034       CPU_SUBTYPE_PENT           = CPU_SUBTYPE_586,
1035       CPU_SUBTYPE_PENTPRO        = 0x16,
1036       CPU_SUBTYPE_PENTII_M3      = 0x36,
1037       CPU_SUBTYPE_PENTII_M5      = 0x56,
1038       CPU_SUBTYPE_CELERON        = 0x67,
1039       CPU_SUBTYPE_CELERON_MOBILE = 0x77,
1040       CPU_SUBTYPE_PENTIUM_3      = 0x08,
1041       CPU_SUBTYPE_PENTIUM_3_M    = 0x18,
1042       CPU_SUBTYPE_PENTIUM_3_XEON = 0x28,
1043       CPU_SUBTYPE_PENTIUM_M      = 0x09,
1044       CPU_SUBTYPE_PENTIUM_4      = 0x0a,
1045       CPU_SUBTYPE_PENTIUM_4_M    = 0x1a,
1046       CPU_SUBTYPE_ITANIUM        = 0x0b,
1047       CPU_SUBTYPE_ITANIUM_2      = 0x1b,
1048       CPU_SUBTYPE_XEON           = 0x0c,
1049       CPU_SUBTYPE_XEON_MP        = 0x1c,
1050
1051       CPU_SUBTYPE_X86_ALL     = 3,
1052       CPU_SUBTYPE_X86_64_ALL  = 3,
1053       CPU_SUBTYPE_X86_ARCH1   = 4,
1054       CPU_SUBTYPE_X86_64_H    = 8
1055     };
1056     static inline int CPU_SUBTYPE_INTEL(int Family, int Model) {
1057       return Family | (Model << 4);
1058     }
1059     static inline int CPU_SUBTYPE_INTEL_FAMILY(CPUSubTypeX86 ST) {
1060       return ((int)ST) & 0x0f;
1061     }
1062     static inline int CPU_SUBTYPE_INTEL_MODEL(CPUSubTypeX86 ST) {
1063       return ((int)ST) >> 4;
1064     }
1065     enum {
1066       CPU_SUBTYPE_INTEL_FAMILY_MAX = 15,
1067       CPU_SUBTYPE_INTEL_MODEL_ALL  = 0
1068     };
1069
1070     enum CPUSubTypeARM {
1071       CPU_SUBTYPE_ARM_ALL     = 0,
1072       CPU_SUBTYPE_ARM_V4T     = 5,
1073       CPU_SUBTYPE_ARM_V6      = 6,
1074       CPU_SUBTYPE_ARM_V5      = 7,
1075       CPU_SUBTYPE_ARM_V5TEJ   = 7,
1076       CPU_SUBTYPE_ARM_XSCALE  = 8,
1077       CPU_SUBTYPE_ARM_V7      = 9,
1078       //  unused  ARM_V7F     = 10,
1079       CPU_SUBTYPE_ARM_V7S     = 11,
1080       CPU_SUBTYPE_ARM_V7K     = 12,
1081       CPU_SUBTYPE_ARM_V6M     = 14,
1082       CPU_SUBTYPE_ARM_V7M     = 15,
1083       CPU_SUBTYPE_ARM_V7EM    = 16
1084     };
1085
1086     enum CPUSubTypeARM64 {
1087       CPU_SUBTYPE_ARM64_ALL   = 0
1088     };
1089
1090     enum CPUSubTypeSPARC {
1091       CPU_SUBTYPE_SPARC_ALL   = 0
1092     };
1093
1094     enum CPUSubTypePowerPC {
1095       CPU_SUBTYPE_POWERPC_ALL   = 0,
1096       CPU_SUBTYPE_POWERPC_601   = 1,
1097       CPU_SUBTYPE_POWERPC_602   = 2,
1098       CPU_SUBTYPE_POWERPC_603   = 3,
1099       CPU_SUBTYPE_POWERPC_603e  = 4,
1100       CPU_SUBTYPE_POWERPC_603ev = 5,
1101       CPU_SUBTYPE_POWERPC_604   = 6,
1102       CPU_SUBTYPE_POWERPC_604e  = 7,
1103       CPU_SUBTYPE_POWERPC_620   = 8,
1104       CPU_SUBTYPE_POWERPC_750   = 9,
1105       CPU_SUBTYPE_POWERPC_7400  = 10,
1106       CPU_SUBTYPE_POWERPC_7450  = 11,
1107       CPU_SUBTYPE_POWERPC_970   = 100,
1108
1109       CPU_SUBTYPE_MC980000_ALL  = CPU_SUBTYPE_POWERPC_ALL,
1110       CPU_SUBTYPE_MC98601       = CPU_SUBTYPE_POWERPC_601
1111     };
1112   } // end namespace MachO
1113 } // end namespace llvm
1114
1115 #endif