1 //===-- llvm/BinaryFormat/MachO.h - The MachO file format -------*- C++/-*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file defines manifest constants for the MachO object file format.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_BINARYFORMAT_MACHO_H
14 #define LLVM_BINARYFORMAT_MACHO_H
16 #include "llvm/Support/Compiler.h"
17 #include "llvm/Support/DataTypes.h"
18 #include "llvm/Support/Host.h"
22 // Enums from <mach-o/loader.h>
24 // Constants for the "magic" field in llvm::MachO::mach_header and
25 // llvm::MachO::mach_header_64
26 MH_MAGIC
= 0xFEEDFACEu
,
27 MH_CIGAM
= 0xCEFAEDFEu
,
28 MH_MAGIC_64
= 0xFEEDFACFu
,
29 MH_CIGAM_64
= 0xCFFAEDFEu
,
30 FAT_MAGIC
= 0xCAFEBABEu
,
31 FAT_CIGAM
= 0xBEBAFECAu
,
32 FAT_MAGIC_64
= 0xCAFEBABFu
,
33 FAT_CIGAM_64
= 0xBFBAFECAu
37 // Constants for the "filetype" field in llvm::MachO::mach_header and
38 // llvm::MachO::mach_header_64
53 // Constant bits for the "flags" field in llvm::MachO::mach_header and
54 // llvm::MachO::mach_header_64
55 MH_NOUNDEFS
= 0x00000001u
,
56 MH_INCRLINK
= 0x00000002u
,
57 MH_DYLDLINK
= 0x00000004u
,
58 MH_BINDATLOAD
= 0x00000008u
,
59 MH_PREBOUND
= 0x00000010u
,
60 MH_SPLIT_SEGS
= 0x00000020u
,
61 MH_LAZY_INIT
= 0x00000040u
,
62 MH_TWOLEVEL
= 0x00000080u
,
63 MH_FORCE_FLAT
= 0x00000100u
,
64 MH_NOMULTIDEFS
= 0x00000200u
,
65 MH_NOFIXPREBINDING
= 0x00000400u
,
66 MH_PREBINDABLE
= 0x00000800u
,
67 MH_ALLMODSBOUND
= 0x00001000u
,
68 MH_SUBSECTIONS_VIA_SYMBOLS
= 0x00002000u
,
69 MH_CANONICAL
= 0x00004000u
,
70 MH_WEAK_DEFINES
= 0x00008000u
,
71 MH_BINDS_TO_WEAK
= 0x00010000u
,
72 MH_ALLOW_STACK_EXECUTION
= 0x00020000u
,
73 MH_ROOT_SAFE
= 0x00040000u
,
74 MH_SETUID_SAFE
= 0x00080000u
,
75 MH_NO_REEXPORTED_DYLIBS
= 0x00100000u
,
77 MH_DEAD_STRIPPABLE_DYLIB
= 0x00400000u
,
78 MH_HAS_TLV_DESCRIPTORS
= 0x00800000u
,
79 MH_NO_HEAP_EXECUTION
= 0x01000000u
,
80 MH_APP_EXTENSION_SAFE
= 0x02000000u
,
81 MH_NLIST_OUTOFSYNC_WITH_DYLDINFO
= 0x04000000u
85 // Flags for the "cmd" field in llvm::MachO::load_command
86 LC_REQ_DYLD
= 0x80000000u
89 #define HANDLE_LOAD_COMMAND(LCName, LCValue, LCStruct) LCName = LCValue,
91 enum LoadCommandType
: uint32_t {
92 #include "llvm/BinaryFormat/MachO.def"
95 #undef HANDLE_LOAD_COMMAND
98 // Constant bits for the "flags" field in llvm::MachO::segment_command
102 SG_PROTECTED_VERSION_1
= 0x8u
,
104 // Constant masks for the "flags" field in llvm::MachO::section and
105 // llvm::MachO::section_64
106 SECTION_TYPE
= 0x000000ffu
, // SECTION_TYPE
107 SECTION_ATTRIBUTES
= 0xffffff00u
, // SECTION_ATTRIBUTES
108 SECTION_ATTRIBUTES_USR
= 0xff000000u
, // SECTION_ATTRIBUTES_USR
109 SECTION_ATTRIBUTES_SYS
= 0x00ffff00u
// SECTION_ATTRIBUTES_SYS
112 /// These are the section type and attributes fields. A MachO section can
113 /// have only one Type, but can have any of the attributes specified.
114 enum SectionType
: uint32_t {
115 // Constant masks for the "flags[7:0]" field in llvm::MachO::section and
116 // llvm::MachO::section_64 (mask "flags" with SECTION_TYPE)
118 /// S_REGULAR - Regular section.
120 /// S_ZEROFILL - Zero fill on demand section.
122 /// S_CSTRING_LITERALS - Section with literal C strings.
123 S_CSTRING_LITERALS
= 0x02u
,
124 /// S_4BYTE_LITERALS - Section with 4 byte literals.
125 S_4BYTE_LITERALS
= 0x03u
,
126 /// S_8BYTE_LITERALS - Section with 8 byte literals.
127 S_8BYTE_LITERALS
= 0x04u
,
128 /// S_LITERAL_POINTERS - Section with pointers to literals.
129 S_LITERAL_POINTERS
= 0x05u
,
130 /// S_NON_LAZY_SYMBOL_POINTERS - Section with non-lazy symbol pointers.
131 S_NON_LAZY_SYMBOL_POINTERS
= 0x06u
,
132 /// S_LAZY_SYMBOL_POINTERS - Section with lazy symbol pointers.
133 S_LAZY_SYMBOL_POINTERS
= 0x07u
,
134 /// S_SYMBOL_STUBS - Section with symbol stubs, byte size of stub in
135 /// the Reserved2 field.
136 S_SYMBOL_STUBS
= 0x08u
,
137 /// S_MOD_INIT_FUNC_POINTERS - Section with only function pointers for
139 S_MOD_INIT_FUNC_POINTERS
= 0x09u
,
140 /// S_MOD_TERM_FUNC_POINTERS - Section with only function pointers for
142 S_MOD_TERM_FUNC_POINTERS
= 0x0au
,
143 /// S_COALESCED - Section contains symbols that are to be coalesced.
145 /// S_GB_ZEROFILL - Zero fill on demand section (that can be larger than 4
147 S_GB_ZEROFILL
= 0x0cu
,
148 /// S_INTERPOSING - Section with only pairs of function pointers for
150 S_INTERPOSING
= 0x0du
,
151 /// S_16BYTE_LITERALS - Section with only 16 byte literals.
152 S_16BYTE_LITERALS
= 0x0eu
,
153 /// S_DTRACE_DOF - Section contains DTrace Object Format.
154 S_DTRACE_DOF
= 0x0fu
,
155 /// S_LAZY_DYLIB_SYMBOL_POINTERS - Section with lazy symbol pointers to
156 /// lazy loaded dylibs.
157 S_LAZY_DYLIB_SYMBOL_POINTERS
= 0x10u
,
158 /// S_THREAD_LOCAL_REGULAR - Thread local data section.
159 S_THREAD_LOCAL_REGULAR
= 0x11u
,
160 /// S_THREAD_LOCAL_ZEROFILL - Thread local zerofill section.
161 S_THREAD_LOCAL_ZEROFILL
= 0x12u
,
162 /// S_THREAD_LOCAL_VARIABLES - Section with thread local variable
164 S_THREAD_LOCAL_VARIABLES
= 0x13u
,
165 /// S_THREAD_LOCAL_VARIABLE_POINTERS - Section with pointers to thread
166 /// local structures.
167 S_THREAD_LOCAL_VARIABLE_POINTERS
= 0x14u
,
168 /// S_THREAD_LOCAL_INIT_FUNCTION_POINTERS - Section with thread local
169 /// variable initialization pointers to functions.
170 S_THREAD_LOCAL_INIT_FUNCTION_POINTERS
= 0x15u
,
172 LAST_KNOWN_SECTION_TYPE
= S_THREAD_LOCAL_INIT_FUNCTION_POINTERS
176 // Constant masks for the "flags[31:24]" field in llvm::MachO::section and
177 // llvm::MachO::section_64 (mask "flags" with SECTION_ATTRIBUTES_USR)
179 /// S_ATTR_PURE_INSTRUCTIONS - Section contains only true machine
181 S_ATTR_PURE_INSTRUCTIONS
= 0x80000000u
,
182 /// S_ATTR_NO_TOC - Section contains coalesced symbols that are not to be
183 /// in a ranlib table of contents.
184 S_ATTR_NO_TOC
= 0x40000000u
,
185 /// S_ATTR_STRIP_STATIC_SYMS - Ok to strip static symbols in this section
186 /// in files with the MY_DYLDLINK flag.
187 S_ATTR_STRIP_STATIC_SYMS
= 0x20000000u
,
188 /// S_ATTR_NO_DEAD_STRIP - No dead stripping.
189 S_ATTR_NO_DEAD_STRIP
= 0x10000000u
,
190 /// S_ATTR_LIVE_SUPPORT - Blocks are live if they reference live blocks.
191 S_ATTR_LIVE_SUPPORT
= 0x08000000u
,
192 /// S_ATTR_SELF_MODIFYING_CODE - Used with i386 code stubs written on by
194 S_ATTR_SELF_MODIFYING_CODE
= 0x04000000u
,
195 /// S_ATTR_DEBUG - A debug section.
196 S_ATTR_DEBUG
= 0x02000000u
,
198 // Constant masks for the "flags[23:8]" field in llvm::MachO::section and
199 // llvm::MachO::section_64 (mask "flags" with SECTION_ATTRIBUTES_SYS)
201 /// S_ATTR_SOME_INSTRUCTIONS - Section contains some machine instructions.
202 S_ATTR_SOME_INSTRUCTIONS
= 0x00000400u
,
203 /// S_ATTR_EXT_RELOC - Section has external relocation entries.
204 S_ATTR_EXT_RELOC
= 0x00000200u
,
205 /// S_ATTR_LOC_RELOC - Section has local relocation entries.
206 S_ATTR_LOC_RELOC
= 0x00000100u
,
208 // Constant masks for the value of an indirect symbol in an indirect
210 INDIRECT_SYMBOL_LOCAL
= 0x80000000u
,
211 INDIRECT_SYMBOL_ABS
= 0x40000000u
214 enum DataRegionType
{
215 // Constants for the "kind" field in a data_in_code_entry structure
217 DICE_KIND_JUMP_TABLE8
= 2u,
218 DICE_KIND_JUMP_TABLE16
= 3u,
219 DICE_KIND_JUMP_TABLE32
= 4u,
220 DICE_KIND_ABS_JUMP_TABLE32
= 5u
224 REBASE_TYPE_POINTER
= 1u,
225 REBASE_TYPE_TEXT_ABSOLUTE32
= 2u,
226 REBASE_TYPE_TEXT_PCREL32
= 3u
229 enum { REBASE_OPCODE_MASK
= 0xF0u
, REBASE_IMMEDIATE_MASK
= 0x0Fu
};
232 REBASE_OPCODE_DONE
= 0x00u
,
233 REBASE_OPCODE_SET_TYPE_IMM
= 0x10u
,
234 REBASE_OPCODE_SET_SEGMENT_AND_OFFSET_ULEB
= 0x20u
,
235 REBASE_OPCODE_ADD_ADDR_ULEB
= 0x30u
,
236 REBASE_OPCODE_ADD_ADDR_IMM_SCALED
= 0x40u
,
237 REBASE_OPCODE_DO_REBASE_IMM_TIMES
= 0x50u
,
238 REBASE_OPCODE_DO_REBASE_ULEB_TIMES
= 0x60u
,
239 REBASE_OPCODE_DO_REBASE_ADD_ADDR_ULEB
= 0x70u
,
240 REBASE_OPCODE_DO_REBASE_ULEB_TIMES_SKIPPING_ULEB
= 0x80u
244 BIND_TYPE_POINTER
= 1u,
245 BIND_TYPE_TEXT_ABSOLUTE32
= 2u,
246 BIND_TYPE_TEXT_PCREL32
= 3u
249 enum BindSpecialDylib
{
250 BIND_SPECIAL_DYLIB_SELF
= 0,
251 BIND_SPECIAL_DYLIB_MAIN_EXECUTABLE
= -1,
252 BIND_SPECIAL_DYLIB_FLAT_LOOKUP
= -2
256 BIND_SYMBOL_FLAGS_WEAK_IMPORT
= 0x1u
,
257 BIND_SYMBOL_FLAGS_NON_WEAK_DEFINITION
= 0x8u
,
259 BIND_OPCODE_MASK
= 0xF0u
,
260 BIND_IMMEDIATE_MASK
= 0x0Fu
264 BIND_OPCODE_DONE
= 0x00u
,
265 BIND_OPCODE_SET_DYLIB_ORDINAL_IMM
= 0x10u
,
266 BIND_OPCODE_SET_DYLIB_ORDINAL_ULEB
= 0x20u
,
267 BIND_OPCODE_SET_DYLIB_SPECIAL_IMM
= 0x30u
,
268 BIND_OPCODE_SET_SYMBOL_TRAILING_FLAGS_IMM
= 0x40u
,
269 BIND_OPCODE_SET_TYPE_IMM
= 0x50u
,
270 BIND_OPCODE_SET_ADDEND_SLEB
= 0x60u
,
271 BIND_OPCODE_SET_SEGMENT_AND_OFFSET_ULEB
= 0x70u
,
272 BIND_OPCODE_ADD_ADDR_ULEB
= 0x80u
,
273 BIND_OPCODE_DO_BIND
= 0x90u
,
274 BIND_OPCODE_DO_BIND_ADD_ADDR_ULEB
= 0xA0u
,
275 BIND_OPCODE_DO_BIND_ADD_ADDR_IMM_SCALED
= 0xB0u
,
276 BIND_OPCODE_DO_BIND_ULEB_TIMES_SKIPPING_ULEB
= 0xC0u
280 EXPORT_SYMBOL_FLAGS_KIND_MASK
= 0x03u
,
281 EXPORT_SYMBOL_FLAGS_WEAK_DEFINITION
= 0x04u
,
282 EXPORT_SYMBOL_FLAGS_REEXPORT
= 0x08u
,
283 EXPORT_SYMBOL_FLAGS_STUB_AND_RESOLVER
= 0x10u
286 enum ExportSymbolKind
{
287 EXPORT_SYMBOL_FLAGS_KIND_REGULAR
= 0x00u
,
288 EXPORT_SYMBOL_FLAGS_KIND_THREAD_LOCAL
= 0x01u
,
289 EXPORT_SYMBOL_FLAGS_KIND_ABSOLUTE
= 0x02u
293 // Constant masks for the "n_type" field in llvm::MachO::nlist and
294 // llvm::MachO::nlist_64
301 enum NListType
: uint8_t {
302 // Constants for the "n_type & N_TYPE" llvm::MachO::nlist and
303 // llvm::MachO::nlist_64
311 enum SectionOrdinal
{
312 // Constants for the "n_sect" field in llvm::MachO::nlist and
313 // llvm::MachO::nlist_64
319 // Constant masks for the "n_desc" field in llvm::MachO::nlist and
320 // llvm::MachO::nlist_64
321 // The low 3 bits are the for the REFERENCE_TYPE.
322 REFERENCE_TYPE
= 0x7,
323 REFERENCE_FLAG_UNDEFINED_NON_LAZY
= 0,
324 REFERENCE_FLAG_UNDEFINED_LAZY
= 1,
325 REFERENCE_FLAG_DEFINED
= 2,
326 REFERENCE_FLAG_PRIVATE_DEFINED
= 3,
327 REFERENCE_FLAG_PRIVATE_UNDEFINED_NON_LAZY
= 4,
328 REFERENCE_FLAG_PRIVATE_UNDEFINED_LAZY
= 5,
329 // Flag bits (some overlap with the library ordinal bits).
330 N_ARM_THUMB_DEF
= 0x0008u
,
331 REFERENCED_DYNAMICALLY
= 0x0010u
,
332 N_NO_DEAD_STRIP
= 0x0020u
,
333 N_WEAK_REF
= 0x0040u
,
334 N_WEAK_DEF
= 0x0080u
,
335 N_SYMBOL_RESOLVER
= 0x0100u
,
336 N_ALT_ENTRY
= 0x0200u
,
337 N_COLD_FUNC
= 0x0400u
,
338 // For undefined symbols coming from libraries, see GET_LIBRARY_ORDINAL()
339 // as these are in the top 8 bits.
340 SELF_LIBRARY_ORDINAL
= 0x0,
341 MAX_LIBRARY_ORDINAL
= 0xfd,
342 DYNAMIC_LOOKUP_ORDINAL
= 0xfe,
343 EXECUTABLE_ORDINAL
= 0xff
347 // Constant values for the "n_type" field in llvm::MachO::nlist and
348 // llvm::MachO::nlist_64 when "(n_type & N_STAB) != 0"
383 // Constant values for the r_symbolnum field in an
384 // llvm::MachO::relocation_info structure when r_extern is 0.
387 // Constant bits for the r_address field in an
388 // llvm::MachO::relocation_info structure.
389 R_SCATTERED
= 0x80000000
392 enum RelocationInfoType
{
393 // Constant values for the r_type field in an
394 // llvm::MachO::relocation_info or llvm::MachO::scattered_relocation_info
396 GENERIC_RELOC_VANILLA
= 0,
397 GENERIC_RELOC_PAIR
= 1,
398 GENERIC_RELOC_SECTDIFF
= 2,
399 GENERIC_RELOC_PB_LA_PTR
= 3,
400 GENERIC_RELOC_LOCAL_SECTDIFF
= 4,
401 GENERIC_RELOC_TLV
= 5,
403 // Constant values for the r_type field in a PowerPC architecture
404 // llvm::MachO::relocation_info or llvm::MachO::scattered_relocation_info
406 PPC_RELOC_VANILLA
= GENERIC_RELOC_VANILLA
,
407 PPC_RELOC_PAIR
= GENERIC_RELOC_PAIR
,
414 PPC_RELOC_SECTDIFF
= 8,
415 PPC_RELOC_PB_LA_PTR
= 9,
416 PPC_RELOC_HI16_SECTDIFF
= 10,
417 PPC_RELOC_LO16_SECTDIFF
= 11,
418 PPC_RELOC_HA16_SECTDIFF
= 12,
420 PPC_RELOC_LO14_SECTDIFF
= 14,
421 PPC_RELOC_LOCAL_SECTDIFF
= 15,
423 // Constant values for the r_type field in an ARM architecture
424 // llvm::MachO::relocation_info or llvm::MachO::scattered_relocation_info
426 ARM_RELOC_VANILLA
= GENERIC_RELOC_VANILLA
,
427 ARM_RELOC_PAIR
= GENERIC_RELOC_PAIR
,
428 ARM_RELOC_SECTDIFF
= GENERIC_RELOC_SECTDIFF
,
429 ARM_RELOC_LOCAL_SECTDIFF
= 3,
430 ARM_RELOC_PB_LA_PTR
= 4,
432 ARM_THUMB_RELOC_BR22
= 6,
433 ARM_THUMB_32BIT_BRANCH
= 7, // obsolete
435 ARM_RELOC_HALF_SECTDIFF
= 9,
437 // Constant values for the r_type field in an ARM64 architecture
438 // llvm::MachO::relocation_info or llvm::MachO::scattered_relocation_info
442 ARM64_RELOC_UNSIGNED
= 0,
443 // Must be followed by an ARM64_RELOC_UNSIGNED
444 ARM64_RELOC_SUBTRACTOR
= 1,
445 // A B/BL instruction with 26-bit displacement.
446 ARM64_RELOC_BRANCH26
= 2,
447 // PC-rel distance to page of target.
448 ARM64_RELOC_PAGE21
= 3,
449 // Offset within page, scaled by r_length.
450 ARM64_RELOC_PAGEOFF12
= 4,
451 // PC-rel distance to page of GOT slot.
452 ARM64_RELOC_GOT_LOAD_PAGE21
= 5,
453 // Offset within page of GOT slot, scaled by r_length.
454 ARM64_RELOC_GOT_LOAD_PAGEOFF12
= 6,
455 // For pointers to GOT slots.
456 ARM64_RELOC_POINTER_TO_GOT
= 7,
457 // PC-rel distance to page of TLVP slot.
458 ARM64_RELOC_TLVP_LOAD_PAGE21
= 8,
459 // Offset within page of TLVP slot, scaled by r_length.
460 ARM64_RELOC_TLVP_LOAD_PAGEOFF12
= 9,
461 // Must be followed by ARM64_RELOC_PAGE21 or ARM64_RELOC_PAGEOFF12.
462 ARM64_RELOC_ADDEND
= 10,
464 // Constant values for the r_type field in an x86_64 architecture
465 // llvm::MachO::relocation_info or llvm::MachO::scattered_relocation_info
467 X86_64_RELOC_UNSIGNED
= 0,
468 X86_64_RELOC_SIGNED
= 1,
469 X86_64_RELOC_BRANCH
= 2,
470 X86_64_RELOC_GOT_LOAD
= 3,
471 X86_64_RELOC_GOT
= 4,
472 X86_64_RELOC_SUBTRACTOR
= 5,
473 X86_64_RELOC_SIGNED_1
= 6,
474 X86_64_RELOC_SIGNED_2
= 7,
475 X86_64_RELOC_SIGNED_4
= 8,
479 // Values for segment_command.initprot.
480 // From <mach/vm_prot.h>
481 enum { VM_PROT_READ
= 0x1, VM_PROT_WRITE
= 0x2, VM_PROT_EXECUTE
= 0x4 };
483 // Values for platform field in build_version_command.
488 PLATFORM_WATCHOS
= 4,
489 PLATFORM_BRIDGEOS
= 5,
490 PLATFORM_IOSSIMULATOR
= 7,
491 PLATFORM_TVOSSIMULATOR
= 8,
492 PLATFORM_WATCHOSSIMULATOR
= 9
495 // Values for tools enum in build_tool_version.
496 enum { TOOL_CLANG
= 1, TOOL_SWIFT
= 2, TOOL_LD
= 3 };
498 // Structs from <mach-o/loader.h>
510 struct mach_header_64
{
521 struct load_command
{
526 struct segment_command
{
540 struct segment_command_64
{
585 uint32_t minor_version
;
586 uint32_t header_addr
;
589 // The fvmlib_command is obsolete and no longer supported.
590 struct fvmlib_command
{
593 struct fvmlib fvmlib
;
599 uint32_t current_version
;
600 uint32_t compatibility_version
;
603 struct dylib_command
{
609 struct sub_framework_command
{
615 struct sub_client_command
{
621 struct sub_umbrella_command
{
624 uint32_t sub_umbrella
;
627 struct sub_library_command
{
630 uint32_t sub_library
;
633 // The prebound_dylib_command is obsolete and no longer supported.
634 struct prebound_dylib_command
{
639 uint32_t linked_modules
;
642 struct dylinker_command
{
648 struct thread_command
{
653 struct routines_command
{
656 uint32_t init_address
;
657 uint32_t init_module
;
666 struct routines_command_64
{
669 uint64_t init_address
;
670 uint64_t init_module
;
679 struct symtab_command
{
688 struct dysymtab_command
{
701 uint32_t extrefsymoff
;
702 uint32_t nextrefsyms
;
703 uint32_t indirectsymoff
;
704 uint32_t nindirectsyms
;
711 struct dylib_table_of_contents
{
712 uint32_t symbol_index
;
713 uint32_t module_index
;
716 struct dylib_module
{
717 uint32_t module_name
;
726 uint32_t iinit_iterm
;
727 uint32_t ninit_nterm
;
728 uint32_t objc_module_info_addr
;
729 uint32_t objc_module_info_size
;
732 struct dylib_module_64
{
733 uint32_t module_name
;
742 uint32_t iinit_iterm
;
743 uint32_t ninit_nterm
;
744 uint32_t objc_module_info_size
;
745 uint64_t objc_module_info_addr
;
748 struct dylib_reference
{
749 uint32_t isym
: 24, flags
: 8;
752 // The twolevel_hints_command is obsolete and no longer supported.
753 struct twolevel_hints_command
{
760 // The twolevel_hints_command is obsolete and no longer supported.
761 struct twolevel_hint
{
762 uint32_t isub_image
: 8, itoc
: 24;
765 // The prebind_cksum_command is obsolete and no longer supported.
766 struct prebind_cksum_command
{
772 struct uuid_command
{
778 struct rpath_command
{
784 struct linkedit_data_command
{
791 struct data_in_code_entry
{
797 struct source_version_command
{
803 struct encryption_info_command
{
811 struct encryption_info_command_64
{
820 struct version_min_command
{
821 uint32_t cmd
; // LC_VERSION_MIN_MACOSX or
822 // LC_VERSION_MIN_IPHONEOS
823 uint32_t cmdsize
; // sizeof(struct version_min_command)
824 uint32_t version
; // X.Y.Z is encoded in nibbles xxxx.yy.zz
825 uint32_t sdk
; // X.Y.Z is encoded in nibbles xxxx.yy.zz
828 struct note_command
{
829 uint32_t cmd
; // LC_NOTE
830 uint32_t cmdsize
; // sizeof(struct note_command)
831 char data_owner
[16]; // owner name for this LC_NOTE
832 uint64_t offset
; // file offset of this data
833 uint64_t size
; // length of data region
836 struct build_tool_version
{
837 uint32_t tool
; // enum for the tool
838 uint32_t version
; // version of the tool
841 struct build_version_command
{
842 uint32_t cmd
; // LC_BUILD_VERSION
843 uint32_t cmdsize
; // sizeof(struct build_version_command) +
844 // ntools * sizeof(struct build_tool_version)
845 uint32_t platform
; // platform
846 uint32_t minos
; // X.Y.Z is encoded in nibbles xxxx.yy.zz
847 uint32_t sdk
; // X.Y.Z is encoded in nibbles xxxx.yy.zz
848 uint32_t ntools
; // number of tool entries following this
851 struct dyld_info_command
{
855 uint32_t rebase_size
;
858 uint32_t weak_bind_off
;
859 uint32_t weak_bind_size
;
860 uint32_t lazy_bind_off
;
861 uint32_t lazy_bind_size
;
863 uint32_t export_size
;
866 struct linker_option_command
{
872 // The symseg_command is obsolete and no longer supported.
873 struct symseg_command
{
880 // The ident_command is obsolete and no longer supported.
881 struct ident_command
{
886 // The fvmfile_command is obsolete and no longer supported.
887 struct fvmfile_command
{
891 uint32_t header_addr
;
894 struct tlv_descriptor_32
{
900 struct tlv_descriptor_64
{
906 struct tlv_descriptor
{
912 struct entry_point_command
{
919 // Structs from <mach-o/fat.h>
942 // Structs from <mach-o/reloc.h>
943 struct relocation_info
{
945 uint32_t r_symbolnum
: 24, r_pcrel
: 1, r_length
: 2, r_extern
: 1,
949 struct scattered_relocation_info
{
950 #if defined(BYTE_ORDER) && defined(BIG_ENDIAN) && (BYTE_ORDER == BIG_ENDIAN)
951 uint32_t r_scattered
: 1, r_pcrel
: 1, r_length
: 2, r_type
: 4,
954 uint32_t r_address
: 24, r_type
: 4, r_length
: 2, r_pcrel
: 1,
960 // Structs NOT from <mach-o/reloc.h>, but that make LLVM's life easier
961 struct any_relocation_info
{
962 uint32_t r_word0
, r_word1
;
965 // Structs from <mach-o/nlist.h>
989 // Byte order swapping functions for MachO structs
991 inline void swapStruct(fat_header
&mh
) {
992 sys::swapByteOrder(mh
.magic
);
993 sys::swapByteOrder(mh
.nfat_arch
);
996 inline void swapStruct(fat_arch
&mh
) {
997 sys::swapByteOrder(mh
.cputype
);
998 sys::swapByteOrder(mh
.cpusubtype
);
999 sys::swapByteOrder(mh
.offset
);
1000 sys::swapByteOrder(mh
.size
);
1001 sys::swapByteOrder(mh
.align
);
1004 inline void swapStruct(fat_arch_64
&mh
) {
1005 sys::swapByteOrder(mh
.cputype
);
1006 sys::swapByteOrder(mh
.cpusubtype
);
1007 sys::swapByteOrder(mh
.offset
);
1008 sys::swapByteOrder(mh
.size
);
1009 sys::swapByteOrder(mh
.align
);
1010 sys::swapByteOrder(mh
.reserved
);
1013 inline void swapStruct(mach_header
&mh
) {
1014 sys::swapByteOrder(mh
.magic
);
1015 sys::swapByteOrder(mh
.cputype
);
1016 sys::swapByteOrder(mh
.cpusubtype
);
1017 sys::swapByteOrder(mh
.filetype
);
1018 sys::swapByteOrder(mh
.ncmds
);
1019 sys::swapByteOrder(mh
.sizeofcmds
);
1020 sys::swapByteOrder(mh
.flags
);
1023 inline void swapStruct(mach_header_64
&H
) {
1024 sys::swapByteOrder(H
.magic
);
1025 sys::swapByteOrder(H
.cputype
);
1026 sys::swapByteOrder(H
.cpusubtype
);
1027 sys::swapByteOrder(H
.filetype
);
1028 sys::swapByteOrder(H
.ncmds
);
1029 sys::swapByteOrder(H
.sizeofcmds
);
1030 sys::swapByteOrder(H
.flags
);
1031 sys::swapByteOrder(H
.reserved
);
1034 inline void swapStruct(load_command
&lc
) {
1035 sys::swapByteOrder(lc
.cmd
);
1036 sys::swapByteOrder(lc
.cmdsize
);
1039 inline void swapStruct(symtab_command
&lc
) {
1040 sys::swapByteOrder(lc
.cmd
);
1041 sys::swapByteOrder(lc
.cmdsize
);
1042 sys::swapByteOrder(lc
.symoff
);
1043 sys::swapByteOrder(lc
.nsyms
);
1044 sys::swapByteOrder(lc
.stroff
);
1045 sys::swapByteOrder(lc
.strsize
);
1048 inline void swapStruct(segment_command_64
&seg
) {
1049 sys::swapByteOrder(seg
.cmd
);
1050 sys::swapByteOrder(seg
.cmdsize
);
1051 sys::swapByteOrder(seg
.vmaddr
);
1052 sys::swapByteOrder(seg
.vmsize
);
1053 sys::swapByteOrder(seg
.fileoff
);
1054 sys::swapByteOrder(seg
.filesize
);
1055 sys::swapByteOrder(seg
.maxprot
);
1056 sys::swapByteOrder(seg
.initprot
);
1057 sys::swapByteOrder(seg
.nsects
);
1058 sys::swapByteOrder(seg
.flags
);
1061 inline void swapStruct(segment_command
&seg
) {
1062 sys::swapByteOrder(seg
.cmd
);
1063 sys::swapByteOrder(seg
.cmdsize
);
1064 sys::swapByteOrder(seg
.vmaddr
);
1065 sys::swapByteOrder(seg
.vmsize
);
1066 sys::swapByteOrder(seg
.fileoff
);
1067 sys::swapByteOrder(seg
.filesize
);
1068 sys::swapByteOrder(seg
.maxprot
);
1069 sys::swapByteOrder(seg
.initprot
);
1070 sys::swapByteOrder(seg
.nsects
);
1071 sys::swapByteOrder(seg
.flags
);
1074 inline void swapStruct(section_64
§
) {
1075 sys::swapByteOrder(sect
.addr
);
1076 sys::swapByteOrder(sect
.size
);
1077 sys::swapByteOrder(sect
.offset
);
1078 sys::swapByteOrder(sect
.align
);
1079 sys::swapByteOrder(sect
.reloff
);
1080 sys::swapByteOrder(sect
.nreloc
);
1081 sys::swapByteOrder(sect
.flags
);
1082 sys::swapByteOrder(sect
.reserved1
);
1083 sys::swapByteOrder(sect
.reserved2
);
1086 inline void swapStruct(section
§
) {
1087 sys::swapByteOrder(sect
.addr
);
1088 sys::swapByteOrder(sect
.size
);
1089 sys::swapByteOrder(sect
.offset
);
1090 sys::swapByteOrder(sect
.align
);
1091 sys::swapByteOrder(sect
.reloff
);
1092 sys::swapByteOrder(sect
.nreloc
);
1093 sys::swapByteOrder(sect
.flags
);
1094 sys::swapByteOrder(sect
.reserved1
);
1095 sys::swapByteOrder(sect
.reserved2
);
1098 inline void swapStruct(dyld_info_command
&info
) {
1099 sys::swapByteOrder(info
.cmd
);
1100 sys::swapByteOrder(info
.cmdsize
);
1101 sys::swapByteOrder(info
.rebase_off
);
1102 sys::swapByteOrder(info
.rebase_size
);
1103 sys::swapByteOrder(info
.bind_off
);
1104 sys::swapByteOrder(info
.bind_size
);
1105 sys::swapByteOrder(info
.weak_bind_off
);
1106 sys::swapByteOrder(info
.weak_bind_size
);
1107 sys::swapByteOrder(info
.lazy_bind_off
);
1108 sys::swapByteOrder(info
.lazy_bind_size
);
1109 sys::swapByteOrder(info
.export_off
);
1110 sys::swapByteOrder(info
.export_size
);
1113 inline void swapStruct(dylib_command
&d
) {
1114 sys::swapByteOrder(d
.cmd
);
1115 sys::swapByteOrder(d
.cmdsize
);
1116 sys::swapByteOrder(d
.dylib
.name
);
1117 sys::swapByteOrder(d
.dylib
.timestamp
);
1118 sys::swapByteOrder(d
.dylib
.current_version
);
1119 sys::swapByteOrder(d
.dylib
.compatibility_version
);
1122 inline void swapStruct(sub_framework_command
&s
) {
1123 sys::swapByteOrder(s
.cmd
);
1124 sys::swapByteOrder(s
.cmdsize
);
1125 sys::swapByteOrder(s
.umbrella
);
1128 inline void swapStruct(sub_umbrella_command
&s
) {
1129 sys::swapByteOrder(s
.cmd
);
1130 sys::swapByteOrder(s
.cmdsize
);
1131 sys::swapByteOrder(s
.sub_umbrella
);
1134 inline void swapStruct(sub_library_command
&s
) {
1135 sys::swapByteOrder(s
.cmd
);
1136 sys::swapByteOrder(s
.cmdsize
);
1137 sys::swapByteOrder(s
.sub_library
);
1140 inline void swapStruct(sub_client_command
&s
) {
1141 sys::swapByteOrder(s
.cmd
);
1142 sys::swapByteOrder(s
.cmdsize
);
1143 sys::swapByteOrder(s
.client
);
1146 inline void swapStruct(routines_command
&r
) {
1147 sys::swapByteOrder(r
.cmd
);
1148 sys::swapByteOrder(r
.cmdsize
);
1149 sys::swapByteOrder(r
.init_address
);
1150 sys::swapByteOrder(r
.init_module
);
1151 sys::swapByteOrder(r
.reserved1
);
1152 sys::swapByteOrder(r
.reserved2
);
1153 sys::swapByteOrder(r
.reserved3
);
1154 sys::swapByteOrder(r
.reserved4
);
1155 sys::swapByteOrder(r
.reserved5
);
1156 sys::swapByteOrder(r
.reserved6
);
1159 inline void swapStruct(routines_command_64
&r
) {
1160 sys::swapByteOrder(r
.cmd
);
1161 sys::swapByteOrder(r
.cmdsize
);
1162 sys::swapByteOrder(r
.init_address
);
1163 sys::swapByteOrder(r
.init_module
);
1164 sys::swapByteOrder(r
.reserved1
);
1165 sys::swapByteOrder(r
.reserved2
);
1166 sys::swapByteOrder(r
.reserved3
);
1167 sys::swapByteOrder(r
.reserved4
);
1168 sys::swapByteOrder(r
.reserved5
);
1169 sys::swapByteOrder(r
.reserved6
);
1172 inline void swapStruct(thread_command
&t
) {
1173 sys::swapByteOrder(t
.cmd
);
1174 sys::swapByteOrder(t
.cmdsize
);
1177 inline void swapStruct(dylinker_command
&d
) {
1178 sys::swapByteOrder(d
.cmd
);
1179 sys::swapByteOrder(d
.cmdsize
);
1180 sys::swapByteOrder(d
.name
);
1183 inline void swapStruct(uuid_command
&u
) {
1184 sys::swapByteOrder(u
.cmd
);
1185 sys::swapByteOrder(u
.cmdsize
);
1188 inline void swapStruct(rpath_command
&r
) {
1189 sys::swapByteOrder(r
.cmd
);
1190 sys::swapByteOrder(r
.cmdsize
);
1191 sys::swapByteOrder(r
.path
);
1194 inline void swapStruct(source_version_command
&s
) {
1195 sys::swapByteOrder(s
.cmd
);
1196 sys::swapByteOrder(s
.cmdsize
);
1197 sys::swapByteOrder(s
.version
);
1200 inline void swapStruct(entry_point_command
&e
) {
1201 sys::swapByteOrder(e
.cmd
);
1202 sys::swapByteOrder(e
.cmdsize
);
1203 sys::swapByteOrder(e
.entryoff
);
1204 sys::swapByteOrder(e
.stacksize
);
1207 inline void swapStruct(encryption_info_command
&e
) {
1208 sys::swapByteOrder(e
.cmd
);
1209 sys::swapByteOrder(e
.cmdsize
);
1210 sys::swapByteOrder(e
.cryptoff
);
1211 sys::swapByteOrder(e
.cryptsize
);
1212 sys::swapByteOrder(e
.cryptid
);
1215 inline void swapStruct(encryption_info_command_64
&e
) {
1216 sys::swapByteOrder(e
.cmd
);
1217 sys::swapByteOrder(e
.cmdsize
);
1218 sys::swapByteOrder(e
.cryptoff
);
1219 sys::swapByteOrder(e
.cryptsize
);
1220 sys::swapByteOrder(e
.cryptid
);
1221 sys::swapByteOrder(e
.pad
);
1224 inline void swapStruct(dysymtab_command
&dst
) {
1225 sys::swapByteOrder(dst
.cmd
);
1226 sys::swapByteOrder(dst
.cmdsize
);
1227 sys::swapByteOrder(dst
.ilocalsym
);
1228 sys::swapByteOrder(dst
.nlocalsym
);
1229 sys::swapByteOrder(dst
.iextdefsym
);
1230 sys::swapByteOrder(dst
.nextdefsym
);
1231 sys::swapByteOrder(dst
.iundefsym
);
1232 sys::swapByteOrder(dst
.nundefsym
);
1233 sys::swapByteOrder(dst
.tocoff
);
1234 sys::swapByteOrder(dst
.ntoc
);
1235 sys::swapByteOrder(dst
.modtaboff
);
1236 sys::swapByteOrder(dst
.nmodtab
);
1237 sys::swapByteOrder(dst
.extrefsymoff
);
1238 sys::swapByteOrder(dst
.nextrefsyms
);
1239 sys::swapByteOrder(dst
.indirectsymoff
);
1240 sys::swapByteOrder(dst
.nindirectsyms
);
1241 sys::swapByteOrder(dst
.extreloff
);
1242 sys::swapByteOrder(dst
.nextrel
);
1243 sys::swapByteOrder(dst
.locreloff
);
1244 sys::swapByteOrder(dst
.nlocrel
);
1247 inline void swapStruct(any_relocation_info
&reloc
) {
1248 sys::swapByteOrder(reloc
.r_word0
);
1249 sys::swapByteOrder(reloc
.r_word1
);
1252 inline void swapStruct(nlist_base
&S
) {
1253 sys::swapByteOrder(S
.n_strx
);
1254 sys::swapByteOrder(S
.n_desc
);
1257 inline void swapStruct(nlist
&sym
) {
1258 sys::swapByteOrder(sym
.n_strx
);
1259 sys::swapByteOrder(sym
.n_desc
);
1260 sys::swapByteOrder(sym
.n_value
);
1263 inline void swapStruct(nlist_64
&sym
) {
1264 sys::swapByteOrder(sym
.n_strx
);
1265 sys::swapByteOrder(sym
.n_desc
);
1266 sys::swapByteOrder(sym
.n_value
);
1269 inline void swapStruct(linkedit_data_command
&C
) {
1270 sys::swapByteOrder(C
.cmd
);
1271 sys::swapByteOrder(C
.cmdsize
);
1272 sys::swapByteOrder(C
.dataoff
);
1273 sys::swapByteOrder(C
.datasize
);
1276 inline void swapStruct(linker_option_command
&C
) {
1277 sys::swapByteOrder(C
.cmd
);
1278 sys::swapByteOrder(C
.cmdsize
);
1279 sys::swapByteOrder(C
.count
);
1282 inline void swapStruct(version_min_command
&C
) {
1283 sys::swapByteOrder(C
.cmd
);
1284 sys::swapByteOrder(C
.cmdsize
);
1285 sys::swapByteOrder(C
.version
);
1286 sys::swapByteOrder(C
.sdk
);
1289 inline void swapStruct(note_command
&C
) {
1290 sys::swapByteOrder(C
.cmd
);
1291 sys::swapByteOrder(C
.cmdsize
);
1292 sys::swapByteOrder(C
.offset
);
1293 sys::swapByteOrder(C
.size
);
1296 inline void swapStruct(build_version_command
&C
) {
1297 sys::swapByteOrder(C
.cmd
);
1298 sys::swapByteOrder(C
.cmdsize
);
1299 sys::swapByteOrder(C
.platform
);
1300 sys::swapByteOrder(C
.minos
);
1301 sys::swapByteOrder(C
.sdk
);
1302 sys::swapByteOrder(C
.ntools
);
1305 inline void swapStruct(build_tool_version
&C
) {
1306 sys::swapByteOrder(C
.tool
);
1307 sys::swapByteOrder(C
.version
);
1310 inline void swapStruct(data_in_code_entry
&C
) {
1311 sys::swapByteOrder(C
.offset
);
1312 sys::swapByteOrder(C
.length
);
1313 sys::swapByteOrder(C
.kind
);
1316 inline void swapStruct(uint32_t &C
) { sys::swapByteOrder(C
); }
1318 // The prebind_cksum_command is obsolete and no longer supported.
1319 inline void swapStruct(prebind_cksum_command
&C
) {
1320 sys::swapByteOrder(C
.cmd
);
1321 sys::swapByteOrder(C
.cmdsize
);
1322 sys::swapByteOrder(C
.cksum
);
1325 // The twolevel_hints_command is obsolete and no longer supported.
1326 inline void swapStruct(twolevel_hints_command
&C
) {
1327 sys::swapByteOrder(C
.cmd
);
1328 sys::swapByteOrder(C
.cmdsize
);
1329 sys::swapByteOrder(C
.offset
);
1330 sys::swapByteOrder(C
.nhints
);
1333 // The prebound_dylib_command is obsolete and no longer supported.
1334 inline void swapStruct(prebound_dylib_command
&C
) {
1335 sys::swapByteOrder(C
.cmd
);
1336 sys::swapByteOrder(C
.cmdsize
);
1337 sys::swapByteOrder(C
.name
);
1338 sys::swapByteOrder(C
.nmodules
);
1339 sys::swapByteOrder(C
.linked_modules
);
1342 // The fvmfile_command is obsolete and no longer supported.
1343 inline void swapStruct(fvmfile_command
&C
) {
1344 sys::swapByteOrder(C
.cmd
);
1345 sys::swapByteOrder(C
.cmdsize
);
1346 sys::swapByteOrder(C
.name
);
1347 sys::swapByteOrder(C
.header_addr
);
1350 // The symseg_command is obsolete and no longer supported.
1351 inline void swapStruct(symseg_command
&C
) {
1352 sys::swapByteOrder(C
.cmd
);
1353 sys::swapByteOrder(C
.cmdsize
);
1354 sys::swapByteOrder(C
.offset
);
1355 sys::swapByteOrder(C
.size
);
1358 // The ident_command is obsolete and no longer supported.
1359 inline void swapStruct(ident_command
&C
) {
1360 sys::swapByteOrder(C
.cmd
);
1361 sys::swapByteOrder(C
.cmdsize
);
1364 inline void swapStruct(fvmlib
&C
) {
1365 sys::swapByteOrder(C
.name
);
1366 sys::swapByteOrder(C
.minor_version
);
1367 sys::swapByteOrder(C
.header_addr
);
1370 // The fvmlib_command is obsolete and no longer supported.
1371 inline void swapStruct(fvmlib_command
&C
) {
1372 sys::swapByteOrder(C
.cmd
);
1373 sys::swapByteOrder(C
.cmdsize
);
1374 swapStruct(C
.fvmlib
);
1377 // Get/Set functions from <mach-o/nlist.h>
1379 inline uint16_t GET_LIBRARY_ORDINAL(uint16_t n_desc
) {
1380 return (((n_desc
) >> 8u) & 0xffu
);
1383 inline void SET_LIBRARY_ORDINAL(uint16_t &n_desc
, uint8_t ordinal
) {
1384 n_desc
= (((n_desc
)&0x00ff) | (((ordinal
)&0xff) << 8));
1387 inline uint8_t GET_COMM_ALIGN(uint16_t n_desc
) {
1388 return (n_desc
>> 8u) & 0x0fu
;
1391 inline void SET_COMM_ALIGN(uint16_t &n_desc
, uint8_t align
) {
1392 n_desc
= ((n_desc
& 0xf0ffu
) | ((align
& 0x0fu
) << 8u));
1395 // Enums from <mach/machine.h>
1397 // Capability bits used in the definition of cpu_type.
1398 CPU_ARCH_MASK
= 0xff000000, // Mask for architecture bits
1399 CPU_ARCH_ABI64
= 0x01000000 // 64 bit ABI
1402 // Constants for the cputype field.
1406 CPU_TYPE_I386
= CPU_TYPE_X86
,
1407 CPU_TYPE_X86_64
= CPU_TYPE_X86
| CPU_ARCH_ABI64
,
1408 /* CPU_TYPE_MIPS = 8, */
1409 CPU_TYPE_MC98000
= 10, // Old Motorola PowerPC
1411 CPU_TYPE_ARM64
= CPU_TYPE_ARM
| CPU_ARCH_ABI64
,
1412 CPU_TYPE_SPARC
= 14,
1413 CPU_TYPE_POWERPC
= 18,
1414 CPU_TYPE_POWERPC64
= CPU_TYPE_POWERPC
| CPU_ARCH_ABI64
1418 // Capability bits used in the definition of cpusubtype.
1419 CPU_SUBTYPE_MASK
= 0xff000000, // Mask for architecture bits
1420 CPU_SUBTYPE_LIB64
= 0x80000000, // 64 bit libraries
1422 // Special CPU subtype constants.
1423 CPU_SUBTYPE_MULTIPLE
= ~0u
1426 // Constants for the cpusubtype field.
1427 enum CPUSubTypeX86
{
1428 CPU_SUBTYPE_I386_ALL
= 3,
1429 CPU_SUBTYPE_386
= 3,
1430 CPU_SUBTYPE_486
= 4,
1431 CPU_SUBTYPE_486SX
= 0x84,
1432 CPU_SUBTYPE_586
= 5,
1433 CPU_SUBTYPE_PENT
= CPU_SUBTYPE_586
,
1434 CPU_SUBTYPE_PENTPRO
= 0x16,
1435 CPU_SUBTYPE_PENTII_M3
= 0x36,
1436 CPU_SUBTYPE_PENTII_M5
= 0x56,
1437 CPU_SUBTYPE_CELERON
= 0x67,
1438 CPU_SUBTYPE_CELERON_MOBILE
= 0x77,
1439 CPU_SUBTYPE_PENTIUM_3
= 0x08,
1440 CPU_SUBTYPE_PENTIUM_3_M
= 0x18,
1441 CPU_SUBTYPE_PENTIUM_3_XEON
= 0x28,
1442 CPU_SUBTYPE_PENTIUM_M
= 0x09,
1443 CPU_SUBTYPE_PENTIUM_4
= 0x0a,
1444 CPU_SUBTYPE_PENTIUM_4_M
= 0x1a,
1445 CPU_SUBTYPE_ITANIUM
= 0x0b,
1446 CPU_SUBTYPE_ITANIUM_2
= 0x1b,
1447 CPU_SUBTYPE_XEON
= 0x0c,
1448 CPU_SUBTYPE_XEON_MP
= 0x1c,
1450 CPU_SUBTYPE_X86_ALL
= 3,
1451 CPU_SUBTYPE_X86_64_ALL
= 3,
1452 CPU_SUBTYPE_X86_ARCH1
= 4,
1453 CPU_SUBTYPE_X86_64_H
= 8
1455 inline int CPU_SUBTYPE_INTEL(int Family
, int Model
) {
1456 return Family
| (Model
<< 4);
1458 inline int CPU_SUBTYPE_INTEL_FAMILY(CPUSubTypeX86 ST
) {
1459 return ((int)ST
) & 0x0f;
1461 inline int CPU_SUBTYPE_INTEL_MODEL(CPUSubTypeX86 ST
) { return ((int)ST
) >> 4; }
1462 enum { CPU_SUBTYPE_INTEL_FAMILY_MAX
= 15, CPU_SUBTYPE_INTEL_MODEL_ALL
= 0 };
1464 enum CPUSubTypeARM
{
1465 CPU_SUBTYPE_ARM_ALL
= 0,
1466 CPU_SUBTYPE_ARM_V4T
= 5,
1467 CPU_SUBTYPE_ARM_V6
= 6,
1468 CPU_SUBTYPE_ARM_V5
= 7,
1469 CPU_SUBTYPE_ARM_V5TEJ
= 7,
1470 CPU_SUBTYPE_ARM_XSCALE
= 8,
1471 CPU_SUBTYPE_ARM_V7
= 9,
1472 // unused ARM_V7F = 10,
1473 CPU_SUBTYPE_ARM_V7S
= 11,
1474 CPU_SUBTYPE_ARM_V7K
= 12,
1475 CPU_SUBTYPE_ARM_V6M
= 14,
1476 CPU_SUBTYPE_ARM_V7M
= 15,
1477 CPU_SUBTYPE_ARM_V7EM
= 16
1480 enum CPUSubTypeARM64
{ CPU_SUBTYPE_ARM64_ALL
= 0 };
1482 enum CPUSubTypeSPARC
{ CPU_SUBTYPE_SPARC_ALL
= 0 };
1484 enum CPUSubTypePowerPC
{
1485 CPU_SUBTYPE_POWERPC_ALL
= 0,
1486 CPU_SUBTYPE_POWERPC_601
= 1,
1487 CPU_SUBTYPE_POWERPC_602
= 2,
1488 CPU_SUBTYPE_POWERPC_603
= 3,
1489 CPU_SUBTYPE_POWERPC_603e
= 4,
1490 CPU_SUBTYPE_POWERPC_603ev
= 5,
1491 CPU_SUBTYPE_POWERPC_604
= 6,
1492 CPU_SUBTYPE_POWERPC_604e
= 7,
1493 CPU_SUBTYPE_POWERPC_620
= 8,
1494 CPU_SUBTYPE_POWERPC_750
= 9,
1495 CPU_SUBTYPE_POWERPC_7400
= 10,
1496 CPU_SUBTYPE_POWERPC_7450
= 11,
1497 CPU_SUBTYPE_POWERPC_970
= 100,
1499 CPU_SUBTYPE_MC980000_ALL
= CPU_SUBTYPE_POWERPC_ALL
,
1500 CPU_SUBTYPE_MC98601
= CPU_SUBTYPE_POWERPC_601
1503 struct x86_thread_state32_t
{
1522 struct x86_thread_state64_t
{
1546 enum x86_fp_control_precis
{
1547 x86_FP_PREC_24B
= 0,
1548 x86_FP_PREC_53B
= 2,
1552 enum x86_fp_control_rc
{
1553 x86_FP_RND_NEAR
= 0,
1554 x86_FP_RND_DOWN
= 1,
1559 struct fp_control_t
{
1560 unsigned short invalid
: 1, denorm
: 1, zdiv
: 1, ovrfl
: 1, undfl
: 1,
1561 precis
: 1, : 2, pc
: 2, rc
: 2, : 1, : 3;
1564 struct fp_status_t
{
1565 unsigned short invalid
: 1, denorm
: 1, zdiv
: 1, ovrfl
: 1, undfl
: 1,
1566 precis
: 1, stkflt
: 1, errsumm
: 1, c0
: 1, c1
: 1, c2
: 1, tos
: 3,
1579 struct x86_float_state64_t
{
1580 int32_t fpu_reserved
[2];
1581 fp_control_t fpu_fcw
;
1582 fp_status_t fpu_fsw
;
1593 uint32_t fpu_mxcsrmask
;
1594 mmst_reg_t fpu_stmm0
;
1595 mmst_reg_t fpu_stmm1
;
1596 mmst_reg_t fpu_stmm2
;
1597 mmst_reg_t fpu_stmm3
;
1598 mmst_reg_t fpu_stmm4
;
1599 mmst_reg_t fpu_stmm5
;
1600 mmst_reg_t fpu_stmm6
;
1601 mmst_reg_t fpu_stmm7
;
1612 xmm_reg_t fpu_xmm10
;
1613 xmm_reg_t fpu_xmm11
;
1614 xmm_reg_t fpu_xmm12
;
1615 xmm_reg_t fpu_xmm13
;
1616 xmm_reg_t fpu_xmm14
;
1617 xmm_reg_t fpu_xmm15
;
1618 char fpu_rsrv4
[6 * 16];
1619 uint32_t fpu_reserved1
;
1622 struct x86_exception_state64_t
{
1626 uint64_t faultvaddr
;
1629 inline void swapStruct(x86_thread_state32_t
&x
) {
1630 sys::swapByteOrder(x
.eax
);
1631 sys::swapByteOrder(x
.ebx
);
1632 sys::swapByteOrder(x
.ecx
);
1633 sys::swapByteOrder(x
.edx
);
1634 sys::swapByteOrder(x
.edi
);
1635 sys::swapByteOrder(x
.esi
);
1636 sys::swapByteOrder(x
.ebp
);
1637 sys::swapByteOrder(x
.esp
);
1638 sys::swapByteOrder(x
.ss
);
1639 sys::swapByteOrder(x
.eflags
);
1640 sys::swapByteOrder(x
.eip
);
1641 sys::swapByteOrder(x
.cs
);
1642 sys::swapByteOrder(x
.ds
);
1643 sys::swapByteOrder(x
.es
);
1644 sys::swapByteOrder(x
.fs
);
1645 sys::swapByteOrder(x
.gs
);
1648 inline void swapStruct(x86_thread_state64_t
&x
) {
1649 sys::swapByteOrder(x
.rax
);
1650 sys::swapByteOrder(x
.rbx
);
1651 sys::swapByteOrder(x
.rcx
);
1652 sys::swapByteOrder(x
.rdx
);
1653 sys::swapByteOrder(x
.rdi
);
1654 sys::swapByteOrder(x
.rsi
);
1655 sys::swapByteOrder(x
.rbp
);
1656 sys::swapByteOrder(x
.rsp
);
1657 sys::swapByteOrder(x
.r8
);
1658 sys::swapByteOrder(x
.r9
);
1659 sys::swapByteOrder(x
.r10
);
1660 sys::swapByteOrder(x
.r11
);
1661 sys::swapByteOrder(x
.r12
);
1662 sys::swapByteOrder(x
.r13
);
1663 sys::swapByteOrder(x
.r14
);
1664 sys::swapByteOrder(x
.r15
);
1665 sys::swapByteOrder(x
.rip
);
1666 sys::swapByteOrder(x
.rflags
);
1667 sys::swapByteOrder(x
.cs
);
1668 sys::swapByteOrder(x
.fs
);
1669 sys::swapByteOrder(x
.gs
);
1672 inline void swapStruct(x86_float_state64_t
&x
) {
1673 sys::swapByteOrder(x
.fpu_reserved
[0]);
1674 sys::swapByteOrder(x
.fpu_reserved
[1]);
1675 // TODO swap: fp_control_t fpu_fcw;
1676 // TODO swap: fp_status_t fpu_fsw;
1677 sys::swapByteOrder(x
.fpu_fop
);
1678 sys::swapByteOrder(x
.fpu_ip
);
1679 sys::swapByteOrder(x
.fpu_cs
);
1680 sys::swapByteOrder(x
.fpu_rsrv2
);
1681 sys::swapByteOrder(x
.fpu_dp
);
1682 sys::swapByteOrder(x
.fpu_ds
);
1683 sys::swapByteOrder(x
.fpu_rsrv3
);
1684 sys::swapByteOrder(x
.fpu_mxcsr
);
1685 sys::swapByteOrder(x
.fpu_mxcsrmask
);
1686 sys::swapByteOrder(x
.fpu_reserved1
);
1689 inline void swapStruct(x86_exception_state64_t
&x
) {
1690 sys::swapByteOrder(x
.trapno
);
1691 sys::swapByteOrder(x
.cpu
);
1692 sys::swapByteOrder(x
.err
);
1693 sys::swapByteOrder(x
.faultvaddr
);
1696 struct x86_state_hdr_t
{
1701 struct x86_thread_state_t
{
1702 x86_state_hdr_t tsh
;
1704 x86_thread_state64_t ts64
;
1705 x86_thread_state32_t ts32
;
1709 struct x86_float_state_t
{
1710 x86_state_hdr_t fsh
;
1712 x86_float_state64_t fs64
;
1716 struct x86_exception_state_t
{
1717 x86_state_hdr_t esh
;
1719 x86_exception_state64_t es64
;
1723 inline void swapStruct(x86_state_hdr_t
&x
) {
1724 sys::swapByteOrder(x
.flavor
);
1725 sys::swapByteOrder(x
.count
);
1728 enum X86ThreadFlavors
{
1729 x86_THREAD_STATE32
= 1,
1730 x86_FLOAT_STATE32
= 2,
1731 x86_EXCEPTION_STATE32
= 3,
1732 x86_THREAD_STATE64
= 4,
1733 x86_FLOAT_STATE64
= 5,
1734 x86_EXCEPTION_STATE64
= 6,
1735 x86_THREAD_STATE
= 7,
1736 x86_FLOAT_STATE
= 8,
1737 x86_EXCEPTION_STATE
= 9,
1738 x86_DEBUG_STATE32
= 10,
1739 x86_DEBUG_STATE64
= 11,
1740 x86_DEBUG_STATE
= 12
1743 inline void swapStruct(x86_thread_state_t
&x
) {
1745 if (x
.tsh
.flavor
== x86_THREAD_STATE64
)
1746 swapStruct(x
.uts
.ts64
);
1749 inline void swapStruct(x86_float_state_t
&x
) {
1751 if (x
.fsh
.flavor
== x86_FLOAT_STATE64
)
1752 swapStruct(x
.ufs
.fs64
);
1755 inline void swapStruct(x86_exception_state_t
&x
) {
1757 if (x
.esh
.flavor
== x86_EXCEPTION_STATE64
)
1758 swapStruct(x
.ues
.es64
);
1761 const uint32_t x86_THREAD_STATE32_COUNT
=
1762 sizeof(x86_thread_state32_t
) / sizeof(uint32_t);
1764 const uint32_t x86_THREAD_STATE64_COUNT
=
1765 sizeof(x86_thread_state64_t
) / sizeof(uint32_t);
1766 const uint32_t x86_FLOAT_STATE64_COUNT
=
1767 sizeof(x86_float_state64_t
) / sizeof(uint32_t);
1768 const uint32_t x86_EXCEPTION_STATE64_COUNT
=
1769 sizeof(x86_exception_state64_t
) / sizeof(uint32_t);
1771 const uint32_t x86_THREAD_STATE_COUNT
=
1772 sizeof(x86_thread_state_t
) / sizeof(uint32_t);
1773 const uint32_t x86_FLOAT_STATE_COUNT
=
1774 sizeof(x86_float_state_t
) / sizeof(uint32_t);
1775 const uint32_t x86_EXCEPTION_STATE_COUNT
=
1776 sizeof(x86_exception_state_t
) / sizeof(uint32_t);
1778 struct arm_thread_state32_t
{
1786 inline void swapStruct(arm_thread_state32_t
&x
) {
1787 for (int i
= 0; i
< 13; i
++)
1788 sys::swapByteOrder(x
.r
[i
]);
1789 sys::swapByteOrder(x
.sp
);
1790 sys::swapByteOrder(x
.lr
);
1791 sys::swapByteOrder(x
.pc
);
1792 sys::swapByteOrder(x
.cpsr
);
1795 struct arm_thread_state64_t
{
1805 inline void swapStruct(arm_thread_state64_t
&x
) {
1806 for (int i
= 0; i
< 29; i
++)
1807 sys::swapByteOrder(x
.x
[i
]);
1808 sys::swapByteOrder(x
.fp
);
1809 sys::swapByteOrder(x
.lr
);
1810 sys::swapByteOrder(x
.sp
);
1811 sys::swapByteOrder(x
.pc
);
1812 sys::swapByteOrder(x
.cpsr
);
1815 struct arm_state_hdr_t
{
1820 struct arm_thread_state_t
{
1821 arm_state_hdr_t tsh
;
1823 arm_thread_state32_t ts32
;
1827 inline void swapStruct(arm_state_hdr_t
&x
) {
1828 sys::swapByteOrder(x
.flavor
);
1829 sys::swapByteOrder(x
.count
);
1832 enum ARMThreadFlavors
{
1833 ARM_THREAD_STATE
= 1,
1835 ARM_EXCEPTION_STATE
= 3,
1836 ARM_DEBUG_STATE
= 4,
1837 ARN_THREAD_STATE_NONE
= 5,
1838 ARM_THREAD_STATE64
= 6,
1839 ARM_EXCEPTION_STATE64
= 7
1842 inline void swapStruct(arm_thread_state_t
&x
) {
1844 if (x
.tsh
.flavor
== ARM_THREAD_STATE
)
1845 swapStruct(x
.uts
.ts32
);
1848 const uint32_t ARM_THREAD_STATE_COUNT
=
1849 sizeof(arm_thread_state32_t
) / sizeof(uint32_t);
1851 const uint32_t ARM_THREAD_STATE64_COUNT
=
1852 sizeof(arm_thread_state64_t
) / sizeof(uint32_t);
1854 struct ppc_thread_state32_t
{
1897 inline void swapStruct(ppc_thread_state32_t
&x
) {
1898 sys::swapByteOrder(x
.srr0
);
1899 sys::swapByteOrder(x
.srr1
);
1900 sys::swapByteOrder(x
.r0
);
1901 sys::swapByteOrder(x
.r1
);
1902 sys::swapByteOrder(x
.r2
);
1903 sys::swapByteOrder(x
.r3
);
1904 sys::swapByteOrder(x
.r4
);
1905 sys::swapByteOrder(x
.r5
);
1906 sys::swapByteOrder(x
.r6
);
1907 sys::swapByteOrder(x
.r7
);
1908 sys::swapByteOrder(x
.r8
);
1909 sys::swapByteOrder(x
.r9
);
1910 sys::swapByteOrder(x
.r10
);
1911 sys::swapByteOrder(x
.r11
);
1912 sys::swapByteOrder(x
.r12
);
1913 sys::swapByteOrder(x
.r13
);
1914 sys::swapByteOrder(x
.r14
);
1915 sys::swapByteOrder(x
.r15
);
1916 sys::swapByteOrder(x
.r16
);
1917 sys::swapByteOrder(x
.r17
);
1918 sys::swapByteOrder(x
.r18
);
1919 sys::swapByteOrder(x
.r19
);
1920 sys::swapByteOrder(x
.r20
);
1921 sys::swapByteOrder(x
.r21
);
1922 sys::swapByteOrder(x
.r22
);
1923 sys::swapByteOrder(x
.r23
);
1924 sys::swapByteOrder(x
.r24
);
1925 sys::swapByteOrder(x
.r25
);
1926 sys::swapByteOrder(x
.r26
);
1927 sys::swapByteOrder(x
.r27
);
1928 sys::swapByteOrder(x
.r28
);
1929 sys::swapByteOrder(x
.r29
);
1930 sys::swapByteOrder(x
.r30
);
1931 sys::swapByteOrder(x
.r31
);
1932 sys::swapByteOrder(x
.ct
);
1933 sys::swapByteOrder(x
.xer
);
1934 sys::swapByteOrder(x
.lr
);
1935 sys::swapByteOrder(x
.ctr
);
1936 sys::swapByteOrder(x
.mq
);
1937 sys::swapByteOrder(x
.vrsave
);
1940 struct ppc_state_hdr_t
{
1945 struct ppc_thread_state_t
{
1946 ppc_state_hdr_t tsh
;
1948 ppc_thread_state32_t ts32
;
1952 inline void swapStruct(ppc_state_hdr_t
&x
) {
1953 sys::swapByteOrder(x
.flavor
);
1954 sys::swapByteOrder(x
.count
);
1957 enum PPCThreadFlavors
{
1958 PPC_THREAD_STATE
= 1,
1959 PPC_FLOAT_STATE
= 2,
1960 PPC_EXCEPTION_STATE
= 3,
1961 PPC_VECTOR_STATE
= 4,
1962 PPC_THREAD_STATE64
= 5,
1963 PPC_EXCEPTION_STATE64
= 6,
1964 PPC_THREAD_STATE_NONE
= 7
1967 inline void swapStruct(ppc_thread_state_t
&x
) {
1969 if (x
.tsh
.flavor
== PPC_THREAD_STATE
)
1970 swapStruct(x
.uts
.ts32
);
1973 const uint32_t PPC_THREAD_STATE_COUNT
=
1974 sizeof(ppc_thread_state32_t
) / sizeof(uint32_t);
1976 // Define a union of all load command structs
1977 #define LOAD_COMMAND_STRUCT(LCStruct) LCStruct LCStruct##_data;
1980 union alignas(4) macho_load_command
{
1981 #include "llvm/BinaryFormat/MachO.def"
1985 } // end namespace MachO
1986 } // end namespace llvm