5401587765dcfa4efba0afc8cb82ddbac484c1da
[deliverable/binutils-gdb.git] / bfd / mach-o.h
1 /* Mach-O support for BFD.
2 Copyright 1999, 2000, 2001, 2002, 2003, 2005, 2007, 2008, 2009
3 Free Software Foundation, Inc.
4
5 This file is part of BFD, the Binary File Descriptor library.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
21
22 #ifndef _BFD_MACH_O_H_
23 #define _BFD_MACH_O_H_
24
25 #include "bfd.h"
26
27 #define BFD_MACH_O_N_STAB 0xe0 /* If any of these bits set, a symbolic debugging entry. */
28 #define BFD_MACH_O_N_PEXT 0x10 /* Private external symbol bit. */
29 #define BFD_MACH_O_N_TYPE 0x0e /* Mask for the type bits. */
30 #define BFD_MACH_O_N_EXT 0x01 /* External symbol bit, set for external symbols. */
31 #define BFD_MACH_O_N_UNDF 0x00 /* Undefined, n_sect == NO_SECT. */
32 #define BFD_MACH_O_N_ABS 0x02 /* Absolute, n_sect == NO_SECT. */
33 #define BFD_MACH_O_N_INDR 0x0a /* Indirect. */
34 #define BFD_MACH_O_N_PBUD 0x0c /* Prebound undefined (defined in a dylib). */
35 #define BFD_MACH_O_N_SECT 0x0e /* Defined in section number n_sect. */
36
37 #define BFD_MACH_O_NO_SECT 0
38
39 #define BFD_MACH_O_SYM_NTYPE(SYM) (((SYM)->udata.i >> 24) & 0xff)
40 #define BFD_MACH_O_SYM_NSECT(SYM) (((SYM)->udata.i >> 16) & 0xff)
41 #define BFD_MACH_O_SYM_NDESC(SYM) ((SYM)->udata.i & 0xffff)
42
43 typedef enum bfd_mach_o_mach_header_magic
44 {
45 BFD_MACH_O_MH_MAGIC = 0xfeedface,
46 BFD_MACH_O_MH_CIGAM = 0xcefaedfe,
47 BFD_MACH_O_MH_MAGIC_64 = 0xfeedfacf,
48 BFD_MACH_O_MH_CIGAM_64 = 0xcffaedfe
49 }
50 bfd_mach_o_mach_header_magic;
51
52 typedef enum bfd_mach_o_ppc_thread_flavour
53 {
54 BFD_MACH_O_PPC_THREAD_STATE = 1,
55 BFD_MACH_O_PPC_FLOAT_STATE = 2,
56 BFD_MACH_O_PPC_EXCEPTION_STATE = 3,
57 BFD_MACH_O_PPC_VECTOR_STATE = 4,
58 BFD_MACH_O_PPC_THREAD_STATE_64 = 5
59 }
60 bfd_mach_o_ppc_thread_flavour;
61
62 /* Defined in <mach/i386/thread_status.h> */
63 typedef enum bfd_mach_o_i386_thread_flavour
64 {
65 BFD_MACH_O_x86_THREAD_STATE32 = 1,
66 BFD_MACH_O_x86_FLOAT_STATE32 = 2,
67 BFD_MACH_O_x86_EXCEPTION_STATE32 = 3,
68 BFD_MACH_O_x86_THREAD_STATE64 = 4,
69 BFD_MACH_O_x86_FLOAT_STATE64 = 5,
70 BFD_MACH_O_x86_EXCEPTION_STATE64 = 6,
71 BFD_MACH_O_x86_THREAD_STATE = 7,
72 BFD_MACH_O_x86_FLOAT_STATE = 8,
73 BFD_MACH_O_x86_EXCEPTION_STATE = 9,
74 BFD_MACH_O_x86_DEBUG_STATE32 = 10,
75 BFD_MACH_O_x86_DEBUG_STATE64 = 11,
76 BFD_MACH_O_x86_DEBUG_STATE = 12,
77 BFD_MACH_O_THREAD_STATE_NONE = 13
78 }
79 bfd_mach_o_i386_thread_flavour;
80
81 #define BFD_MACH_O_LC_REQ_DYLD 0x80000000
82
83 typedef enum bfd_mach_o_load_command_type
84 {
85 BFD_MACH_O_LC_SEGMENT = 0x1, /* File segment to be mapped. */
86 BFD_MACH_O_LC_SYMTAB = 0x2, /* Link-edit stab symbol table info (obsolete). */
87 BFD_MACH_O_LC_SYMSEG = 0x3, /* Link-edit gdb symbol table info. */
88 BFD_MACH_O_LC_THREAD = 0x4, /* Thread. */
89 BFD_MACH_O_LC_UNIXTHREAD = 0x5, /* UNIX thread (includes a stack). */
90 BFD_MACH_O_LC_LOADFVMLIB = 0x6, /* Load a fixed VM shared library. */
91 BFD_MACH_O_LC_IDFVMLIB = 0x7, /* Fixed VM shared library id. */
92 BFD_MACH_O_LC_IDENT = 0x8, /* Object identification information (obsolete). */
93 BFD_MACH_O_LC_FVMFILE = 0x9, /* Fixed VM file inclusion. */
94 BFD_MACH_O_LC_PREPAGE = 0xa, /* Prepage command (internal use). */
95 BFD_MACH_O_LC_DYSYMTAB = 0xb, /* Dynamic link-edit symbol table info. */
96 BFD_MACH_O_LC_LOAD_DYLIB = 0xc, /* Load a dynamically linked shared library. */
97 BFD_MACH_O_LC_ID_DYLIB = 0xd, /* Dynamically linked shared lib identification. */
98 BFD_MACH_O_LC_LOAD_DYLINKER = 0xe, /* Load a dynamic linker. */
99 BFD_MACH_O_LC_ID_DYLINKER = 0xf, /* Dynamic linker identification. */
100 BFD_MACH_O_LC_PREBOUND_DYLIB = 0x10, /* Modules prebound for a dynamically. */
101 BFD_MACH_O_LC_ROUTINES = 0x11, /* Image routines. */
102 BFD_MACH_O_LC_SUB_FRAMEWORK = 0x12, /* Sub framework. */
103 BFD_MACH_O_LC_SUB_UMBRELLA = 0x13, /* Sub umbrella. */
104 BFD_MACH_O_LC_SUB_CLIENT = 0x14, /* Sub client. */
105 BFD_MACH_O_LC_SUB_LIBRARY = 0x15, /* Sub library. */
106 BFD_MACH_O_LC_TWOLEVEL_HINTS = 0x16, /* Two-level namespace lookup hints. */
107 BFD_MACH_O_LC_PREBIND_CKSUM = 0x17, /* Prebind checksum. */
108 /* Load a dynamically linked shared library that is allowed to be
109 missing (weak). */
110 BFD_MACH_O_LC_LOAD_WEAK_DYLIB = 0x18,
111 BFD_MACH_O_LC_SEGMENT_64 = 0x19, /* 64-bit segment of this file to be
112 mapped. */
113 BFD_MACH_O_LC_ROUTINES_64 = 0x1a, /* Address of the dyld init routine
114 in a dylib. */
115 BFD_MACH_O_LC_UUID = 0x1b, /* 128-bit UUID of the executable. */
116 BFD_MACH_O_LC_RPATH = 0x1c, /* Run path addiions. */
117 BFD_MACH_O_LC_CODE_SIGNATURE = 0x1d, /* Local of code signature. */
118 BFD_MACH_O_LC_SEGMENT_SPLIT_INFO = 0x1e, /* Local of info to split seg. */
119 BFD_MACH_O_LC_REEXPORT_DYLIB = 0x1f, /* Load and re-export lib. */
120 BFD_MACH_O_LC_LAZY_LOAD_DYLIB = 0x20, /* Delay load of lib until use. */
121 BFD_MACH_O_LC_ENCRYPTION_INFO = 0x21 /* Encrypted segment info. */
122 }
123 bfd_mach_o_load_command_type;
124
125 #define BFD_MACH_O_CPU_IS64BIT 0x1000000
126
127 typedef enum bfd_mach_o_cpu_type
128 {
129 BFD_MACH_O_CPU_TYPE_VAX = 1,
130 BFD_MACH_O_CPU_TYPE_MC680x0 = 6,
131 BFD_MACH_O_CPU_TYPE_I386 = 7,
132 BFD_MACH_O_CPU_TYPE_MIPS = 8,
133 BFD_MACH_O_CPU_TYPE_MC98000 = 10,
134 BFD_MACH_O_CPU_TYPE_HPPA = 11,
135 BFD_MACH_O_CPU_TYPE_ARM = 12,
136 BFD_MACH_O_CPU_TYPE_MC88000 = 13,
137 BFD_MACH_O_CPU_TYPE_SPARC = 14,
138 BFD_MACH_O_CPU_TYPE_I860 = 15,
139 BFD_MACH_O_CPU_TYPE_ALPHA = 16,
140 BFD_MACH_O_CPU_TYPE_POWERPC = 18,
141 BFD_MACH_O_CPU_TYPE_POWERPC_64 = (BFD_MACH_O_CPU_TYPE_POWERPC | BFD_MACH_O_CPU_IS64BIT),
142 BFD_MACH_O_CPU_TYPE_X86_64 = (BFD_MACH_O_CPU_TYPE_I386 | BFD_MACH_O_CPU_IS64BIT)
143 }
144 bfd_mach_o_cpu_type;
145
146 typedef enum bfd_mach_o_cpu_subtype
147 {
148 BFD_MACH_O_CPU_SUBTYPE_X86_ALL = 3
149 }
150 bfd_mach_o_cpu_subtype;
151
152 typedef enum bfd_mach_o_filetype
153 {
154 BFD_MACH_O_MH_OBJECT = 1,
155 BFD_MACH_O_MH_EXECUTE = 2,
156 BFD_MACH_O_MH_FVMLIB = 3,
157 BFD_MACH_O_MH_CORE = 4,
158 BFD_MACH_O_MH_PRELOAD = 5,
159 BFD_MACH_O_MH_DYLIB = 6,
160 BFD_MACH_O_MH_DYLINKER = 7,
161 BFD_MACH_O_MH_BUNDLE = 8
162 }
163 bfd_mach_o_filetype;
164
165 /* Constants for the type of a section. */
166
167 typedef enum bfd_mach_o_section_type
168 {
169 /* Regular section. */
170 BFD_MACH_O_S_REGULAR = 0x0,
171
172 /* Zero fill on demand section. */
173 BFD_MACH_O_S_ZEROFILL = 0x1,
174
175 /* Section with only literal C strings. */
176 BFD_MACH_O_S_CSTRING_LITERALS = 0x2,
177
178 /* Section with only 4 byte literals. */
179 BFD_MACH_O_S_4BYTE_LITERALS = 0x3,
180
181 /* Section with only 8 byte literals. */
182 BFD_MACH_O_S_8BYTE_LITERALS = 0x4,
183
184 /* Section with only pointers to literals. */
185 BFD_MACH_O_S_LITERAL_POINTERS = 0x5,
186
187 /* For the two types of symbol pointers sections and the symbol stubs
188 section they have indirect symbol table entries. For each of the
189 entries in the section the indirect symbol table entries, in
190 corresponding order in the indirect symbol table, start at the index
191 stored in the reserved1 field of the section structure. Since the
192 indirect symbol table entries correspond to the entries in the
193 section the number of indirect symbol table entries is inferred from
194 the size of the section divided by the size of the entries in the
195 section. For symbol pointers sections the size of the entries in
196 the section is 4 bytes and for symbol stubs sections the byte size
197 of the stubs is stored in the reserved2 field of the section
198 structure. */
199
200 /* Section with only non-lazy symbol pointers. */
201 BFD_MACH_O_S_NON_LAZY_SYMBOL_POINTERS = 0x6,
202
203 /* Section with only lazy symbol pointers. */
204 BFD_MACH_O_S_LAZY_SYMBOL_POINTERS = 0x7,
205
206 /* Section with only symbol stubs, byte size of stub in the reserved2 field. */
207 BFD_MACH_O_S_SYMBOL_STUBS = 0x8,
208
209 /* Section with only function pointers for initialization. */
210 BFD_MACH_O_S_MOD_INIT_FUNC_POINTERS = 0x9
211 }
212 bfd_mach_o_section_type;
213
214 /* The flags field of a section structure is separated into two parts a section
215 type and section attributes. The section types are mutually exclusive (it
216 can only have one type) but the section attributes are not (it may have more
217 than one attribute). */
218
219 #define BFD_MACH_O_SECTION_TYPE_MASK 0x000000ff
220
221 /* Constants for the section attributes part of the flags field of a section
222 structure. */
223 #define BFD_MACH_O_SECTION_ATTRIBUTES_MASK 0xffffff00
224 /* System setable attributes. */
225 #define BFD_MACH_O_SECTION_ATTRIBUTES_SYS 0x00ffff00
226 /* User attributes. */
227 #define BFD_MACH_O_SECTION_ATTRIBUTES_USR 0xff000000
228
229 /* Section has local relocation entries. */
230 #define BFD_MACH_O_S_ATTR_LOC_RELOC 0x00000100
231
232 /* Section has external relocation entries. */
233 #define BFD_MACH_O_S_ATTR_EXT_RELOC 0x00000200
234
235 /* Section contains some machine instructions. */
236 #define BFD_MACH_O_S_ATTR_SOME_INSTRUCTIONS 0x00004000
237
238 #define BFD_MACH_O_S_ATTR_DEBUG 0x02000000
239
240 /* Section contains only true machine instructions. */
241 #define BFD_MACH_O_S_ATTR_PURE_INSTRUCTIONS 0x80000000
242
243 typedef struct bfd_mach_o_header
244 {
245 unsigned long magic;
246 unsigned long cputype;
247 unsigned long cpusubtype;
248 unsigned long filetype;
249 unsigned long ncmds;
250 unsigned long sizeofcmds;
251 unsigned long flags;
252 unsigned int reserved;
253 /* Version 1: 32 bits, version 2: 64 bits. */
254 unsigned int version;
255 enum bfd_endian byteorder;
256 }
257 bfd_mach_o_header;
258
259 #define BFD_MACH_O_HEADER_SIZE 28
260 #define BFD_MACH_O_HEADER_64_SIZE 32
261
262 typedef struct bfd_mach_o_section
263 {
264 asection *bfdsection;
265 char sectname[16 + 1];
266 char segname[16 + 1];
267 bfd_vma addr;
268 bfd_vma size;
269 bfd_vma offset;
270 unsigned long align;
271 bfd_vma reloff;
272 unsigned long nreloc;
273 unsigned long flags;
274 unsigned long reserved1;
275 unsigned long reserved2;
276 unsigned long reserved3;
277 }
278 bfd_mach_o_section;
279 #define BFD_MACH_O_SECTION_SIZE 68
280 #define BFD_MACH_O_SECTION_64_SIZE 80
281
282 typedef struct bfd_mach_o_segment_command
283 {
284 char segname[16 + 1];
285 bfd_vma vmaddr;
286 bfd_vma vmsize;
287 bfd_vma fileoff;
288 unsigned long filesize;
289 unsigned long maxprot; /* Maximum permitted protection. */
290 unsigned long initprot; /* Initial protection. */
291 unsigned long nsects;
292 unsigned long flags;
293 bfd_mach_o_section *sections;
294 asection *segment;
295 }
296 bfd_mach_o_segment_command;
297 #define BFD_MACH_O_LC_SEGMENT_SIZE 56
298 #define BFD_MACH_O_LC_SEGMENT_64_SIZE 72
299
300 /* Protection flags. */
301 #define BFD_MACH_O_PROT_READ 0x01
302 #define BFD_MACH_O_PROT_WRITE 0x02
303 #define BFD_MACH_O_PROT_EXECUTE 0x04
304
305 typedef struct bfd_mach_o_symtab_command
306 {
307 unsigned long symoff;
308 unsigned long nsyms;
309 unsigned long stroff;
310 unsigned long strsize;
311 asymbol *symbols;
312 char *strtab;
313 }
314 bfd_mach_o_symtab_command;
315
316 /* This is the second set of the symbolic information which is used to support
317 the data structures for the dynamically link editor.
318
319 The original set of symbolic information in the symtab_command which contains
320 the symbol and string tables must also be present when this load command is
321 present. When this load command is present the symbol table is organized
322 into three groups of symbols:
323 local symbols (static and debugging symbols) - grouped by module
324 defined external symbols - grouped by module (sorted by name if not lib)
325 undefined external symbols (sorted by name)
326 In this load command there are offsets and counts to each of the three groups
327 of symbols.
328
329 This load command contains a the offsets and sizes of the following new
330 symbolic information tables:
331 table of contents
332 module table
333 reference symbol table
334 indirect symbol table
335 The first three tables above (the table of contents, module table and
336 reference symbol table) are only present if the file is a dynamically linked
337 shared library. For executable and object modules, which are files
338 containing only one module, the information that would be in these three
339 tables is determined as follows:
340 table of contents - the defined external symbols are sorted by name
341 module table - the file contains only one module so everything in the
342 file is part of the module.
343 reference symbol table - is the defined and undefined external symbols
344
345 For dynamically linked shared library files this load command also contains
346 offsets and sizes to the pool of relocation entries for all sections
347 separated into two groups:
348 external relocation entries
349 local relocation entries
350 For executable and object modules the relocation entries continue to hang
351 off the section structures. */
352
353 typedef struct bfd_mach_o_dysymtab_command
354 {
355 /* The symbols indicated by symoff and nsyms of the LC_SYMTAB load command
356 are grouped into the following three groups:
357 local symbols (further grouped by the module they are from)
358 defined external symbols (further grouped by the module they are from)
359 undefined symbols
360
361 The local symbols are used only for debugging. The dynamic binding
362 process may have to use them to indicate to the debugger the local
363 symbols for a module that is being bound.
364
365 The last two groups are used by the dynamic binding process to do the
366 binding (indirectly through the module table and the reference symbol
367 table when this is a dynamically linked shared library file). */
368
369 unsigned long ilocalsym; /* Index to local symbols. */
370 unsigned long nlocalsym; /* Number of local symbols. */
371 unsigned long iextdefsym; /* Index to externally defined symbols. */
372 unsigned long nextdefsym; /* Number of externally defined symbols. */
373 unsigned long iundefsym; /* Index to undefined symbols. */
374 unsigned long nundefsym; /* Number of undefined symbols. */
375
376 /* For the for the dynamic binding process to find which module a symbol
377 is defined in the table of contents is used (analogous to the ranlib
378 structure in an archive) which maps defined external symbols to modules
379 they are defined in. This exists only in a dynamically linked shared
380 library file. For executable and object modules the defined external
381 symbols are sorted by name and is use as the table of contents. */
382
383 unsigned long tocoff; /* File offset to table of contents. */
384 unsigned long ntoc; /* Number of entries in table of contents. */
385
386 /* To support dynamic binding of "modules" (whole object files) the symbol
387 table must reflect the modules that the file was created from. This is
388 done by having a module table that has indexes and counts into the merged
389 tables for each module. The module structure that these two entries
390 refer to is described below. This exists only in a dynamically linked
391 shared library file. For executable and object modules the file only
392 contains one module so everything in the file belongs to the module. */
393
394 unsigned long modtaboff; /* File offset to module table. */
395 unsigned long nmodtab; /* Number of module table entries. */
396
397 /* To support dynamic module binding the module structure for each module
398 indicates the external references (defined and undefined) each module
399 makes. For each module there is an offset and a count into the
400 reference symbol table for the symbols that the module references.
401 This exists only in a dynamically linked shared library file. For
402 executable and object modules the defined external symbols and the
403 undefined external symbols indicates the external references. */
404
405 unsigned long extrefsymoff; /* Offset to referenced symbol table. */
406 unsigned long nextrefsyms; /* Number of referenced symbol table entries. */
407
408 /* The sections that contain "symbol pointers" and "routine stubs" have
409 indexes and (implied counts based on the size of the section and fixed
410 size of the entry) into the "indirect symbol" table for each pointer
411 and stub. For every section of these two types the index into the
412 indirect symbol table is stored in the section header in the field
413 reserved1. An indirect symbol table entry is simply a 32bit index into
414 the symbol table to the symbol that the pointer or stub is referring to.
415 The indirect symbol table is ordered to match the entries in the section. */
416
417 unsigned long indirectsymoff; /* File offset to the indirect symbol table. */
418 unsigned long nindirectsyms; /* Number of indirect symbol table entries. */
419
420 /* To support relocating an individual module in a library file quickly the
421 external relocation entries for each module in the library need to be
422 accessed efficiently. Since the relocation entries can't be accessed
423 through the section headers for a library file they are separated into
424 groups of local and external entries further grouped by module. In this
425 case the presents of this load command who's extreloff, nextrel,
426 locreloff and nlocrel fields are non-zero indicates that the relocation
427 entries of non-merged sections are not referenced through the section
428 structures (and the reloff and nreloc fields in the section headers are
429 set to zero).
430
431 Since the relocation entries are not accessed through the section headers
432 this requires the r_address field to be something other than a section
433 offset to identify the item to be relocated. In this case r_address is
434 set to the offset from the vmaddr of the first LC_SEGMENT command.
435
436 The relocation entries are grouped by module and the module table
437 entries have indexes and counts into them for the group of external
438 relocation entries for that the module.
439
440 For sections that are merged across modules there must not be any
441 remaining external relocation entries for them (for merged sections
442 remaining relocation entries must be local). */
443
444 unsigned long extreloff; /* Offset to external relocation entries. */
445 unsigned long nextrel; /* Number of external relocation entries. */
446
447 /* All the local relocation entries are grouped together (they are not
448 grouped by their module since they are only used if the object is moved
449 from it statically link edited address). */
450
451 unsigned long locreloff; /* Offset to local relocation entries. */
452 unsigned long nlocrel; /* Number of local relocation entries. */
453 }
454 bfd_mach_o_dysymtab_command;
455
456 /* An indirect symbol table entry is simply a 32bit index into the symbol table
457 to the symbol that the pointer or stub is refering to. Unless it is for a
458 non-lazy symbol pointer section for a defined symbol which strip(1) as
459 removed. In which case it has the value INDIRECT_SYMBOL_LOCAL. If the
460 symbol was also absolute INDIRECT_SYMBOL_ABS is or'ed with that. */
461
462 #define BFD_MACH_O_INDIRECT_SYMBOL_LOCAL 0x80000000
463 #define BFD_MACH_O_INDIRECT_SYMBOL_ABS 0x40000000
464
465 typedef struct bfd_mach_o_thread_flavour
466 {
467 unsigned long flavour;
468 bfd_vma offset;
469 unsigned long size;
470 }
471 bfd_mach_o_thread_flavour;
472
473 typedef struct bfd_mach_o_thread_command
474 {
475 unsigned long nflavours;
476 bfd_mach_o_thread_flavour *flavours;
477 asection *section;
478 }
479 bfd_mach_o_thread_command;
480
481 typedef struct bfd_mach_o_dylinker_command
482 {
483 unsigned long cmd; /* LC_ID_DYLINKER or LC_LOAD_DYLINKER. */
484 unsigned long cmdsize; /* Includes pathname string. */
485 unsigned long name_offset; /* Offset to library's path name. */
486 unsigned long name_len; /* Offset to library's path name. */
487 asection *section;
488 }
489 bfd_mach_o_dylinker_command;
490
491 typedef struct bfd_mach_o_dylib_command
492 {
493 unsigned long cmd; /* LC_ID_DYLIB or LC_LOAD_DYLIB. */
494 unsigned long cmdsize; /* Includes pathname string. */
495 unsigned long name_offset; /* Offset to library's path name. */
496 unsigned long name_len; /* Offset to library's path name. */
497 unsigned long timestamp; /* Library's build time stamp. */
498 unsigned long current_version; /* Library's current version number. */
499 unsigned long compatibility_version; /* Library's compatibility vers number. */
500 asection *section;
501 }
502 bfd_mach_o_dylib_command;
503
504 typedef struct bfd_mach_o_prebound_dylib_command
505 {
506 unsigned long cmd; /* LC_PREBOUND_DYLIB. */
507 unsigned long cmdsize; /* Includes strings. */
508 unsigned long name; /* Library's path name. */
509 unsigned long nmodules; /* Number of modules in library. */
510 unsigned long linked_modules; /* Bit vector of linked modules. */
511 asection *section;
512 }
513 bfd_mach_o_prebound_dylib_command;
514
515 typedef struct bfd_mach_o_uuid_command
516 {
517 unsigned long cmd; /* LC_PREBOUND_DYLIB. */
518 unsigned long cmdsize; /* Includes uuid. */
519 unsigned char uuid[16]; /* Uuid. */
520 asection *section;
521 }
522 bfd_mach_o_uuid_command;
523
524 typedef struct bfd_mach_o_load_command
525 {
526 bfd_mach_o_load_command_type type;
527 bfd_boolean type_required;
528 bfd_vma offset;
529 bfd_vma len;
530 union
531 {
532 bfd_mach_o_segment_command segment;
533 bfd_mach_o_symtab_command symtab;
534 bfd_mach_o_dysymtab_command dysymtab;
535 bfd_mach_o_thread_command thread;
536 bfd_mach_o_dylib_command dylib;
537 bfd_mach_o_dylinker_command dylinker;
538 bfd_mach_o_prebound_dylib_command prebound_dylib;
539 bfd_mach_o_uuid_command uuid;
540 }
541 command;
542 }
543 bfd_mach_o_load_command;
544
545 typedef struct mach_o_data_struct
546 {
547 bfd_mach_o_header header;
548 bfd_mach_o_load_command *commands;
549 unsigned long nsymbols;
550 asymbol *symbols;
551 unsigned long nsects;
552 bfd_mach_o_section **sections;
553 bfd *ibfd;
554 }
555 mach_o_data_struct;
556
557 #define bfd_get_mach_o_data(abfd) ((abfd)->tdata.mach_o_data)
558
559 typedef struct mach_o_data_struct bfd_mach_o_data_struct;
560
561 bfd_boolean bfd_mach_o_valid (bfd *);
562 int bfd_mach_o_scan_read_symtab_symbol (bfd *, bfd_mach_o_symtab_command *, asymbol *, unsigned long);
563 int bfd_mach_o_scan_read_symtab_strtab (bfd *, bfd_mach_o_symtab_command *);
564 int bfd_mach_o_scan_read_symtab_symbols (bfd *, bfd_mach_o_symtab_command *);
565 int bfd_mach_o_scan_read_dysymtab_symbol (bfd *, bfd_mach_o_dysymtab_command *, bfd_mach_o_symtab_command *, asymbol *, unsigned long);
566 int bfd_mach_o_scan_start_address (bfd *);
567 int bfd_mach_o_scan (bfd *, bfd_mach_o_header *, bfd_mach_o_data_struct *);
568 bfd_boolean bfd_mach_o_mkobject_init (bfd *);
569 const bfd_target *bfd_mach_o_object_p (bfd *);
570 const bfd_target *bfd_mach_o_core_p (bfd *);
571 const bfd_target *bfd_mach_o_archive_p (bfd *);
572 bfd *bfd_mach_o_openr_next_archived_file (bfd *, bfd *);
573 int bfd_mach_o_lookup_section (bfd *, asection *, bfd_mach_o_load_command **, bfd_mach_o_section **);
574 int bfd_mach_o_lookup_command (bfd *, bfd_mach_o_load_command_type, bfd_mach_o_load_command **);
575 bfd_boolean bfd_mach_o_write_contents (bfd *);
576 bfd_boolean bfd_mach_o_bfd_copy_private_symbol_data (bfd *, asymbol *,
577 bfd *, asymbol *);
578 bfd_boolean bfd_mach_o_bfd_copy_private_section_data (bfd *, asection *,
579 bfd *, asection *);
580 bfd_boolean bfd_mach_o_bfd_copy_private_bfd_data (bfd *, bfd *);
581 long bfd_mach_o_get_symtab_upper_bound (bfd *);
582 long bfd_mach_o_canonicalize_symtab (bfd *, asymbol **);
583 asymbol *bfd_mach_o_make_empty_symbol (bfd *);
584 void bfd_mach_o_get_symbol_info (bfd *, asymbol *, symbol_info *);
585 void bfd_mach_o_print_symbol (bfd *, PTR, asymbol *, bfd_print_symbol_type);
586 bfd_boolean bfd_mach_o_bfd_print_private_bfd_data (bfd *, PTR);
587 int bfd_mach_o_sizeof_headers (bfd *, struct bfd_link_info *);
588 unsigned long bfd_mach_o_stack_addr (enum bfd_mach_o_cpu_type);
589 int bfd_mach_o_core_fetch_environment (bfd *, unsigned char **, unsigned int *);
590 char *bfd_mach_o_core_file_failing_command (bfd *);
591 int bfd_mach_o_core_file_failing_signal (bfd *);
592 bfd_boolean bfd_mach_o_core_file_matches_executable_p (bfd *, bfd *);
593 bfd *bfd_mach_o_fat_extract (bfd *, bfd_format , const bfd_arch_info_type *);
594 const bfd_target *bfd_mach_o_header_p (bfd *, bfd_mach_o_filetype,
595 bfd_mach_o_cpu_type);
596 bfd_boolean bfd_mach_o_build_commands (bfd *abfd);
597 bfd_boolean bfd_mach_o_set_section_contents (bfd *, asection *, const void *,
598 file_ptr, bfd_size_type);
599 unsigned int bfd_mach_o_version (bfd *);
600
601 extern const bfd_target mach_o_fat_vec;
602
603 #endif /* _BFD_MACH_O_H_ */
This page took 0.041498 seconds and 4 git commands to generate.