bfd/
[deliverable/binutils-gdb.git] / bfd / mach-o.h
CommitLineData
3af9a47b 1/* Mach-O support for BFD.
154a1ee5 2 Copyright 1999, 2000, 2001, 2002, 2003, 2005, 2007, 2008, 2009
3af9a47b
NC
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
cd123cb7 9 the Free Software Foundation; either version 3 of the License, or
3af9a47b
NC
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
e84d6fca 18 along with this program; if not, write to the Free Software
cd123cb7
NC
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
3af9a47b
NC
21
22#ifndef _BFD_MACH_O_H_
23#define _BFD_MACH_O_H_
24
25#include "bfd.h"
74f26653 26#include "mach-o/loader.h"
15e1c58a 27
3af9a47b
NC
28typedef struct bfd_mach_o_header
29{
30 unsigned long magic;
31 unsigned long cputype;
32 unsigned long cpusubtype;
33 unsigned long filetype;
34 unsigned long ncmds;
35 unsigned long sizeofcmds;
36 unsigned long flags;
1e8a024a
TG
37 unsigned int reserved;
38 /* Version 1: 32 bits, version 2: 64 bits. */
39 unsigned int version;
3af9a47b
NC
40 enum bfd_endian byteorder;
41}
42bfd_mach_o_header;
43
44typedef struct bfd_mach_o_section
45{
53d58d96 46 /* Fields present in the file. */
3af9a47b
NC
47 char sectname[16 + 1];
48 char segname[16 + 1];
49 bfd_vma addr;
50 bfd_vma size;
51 bfd_vma offset;
52 unsigned long align;
53 bfd_vma reloff;
54 unsigned long nreloc;
55 unsigned long flags;
56 unsigned long reserved1;
57 unsigned long reserved2;
1e8a024a 58 unsigned long reserved3;
53d58d96
TG
59
60 /* Corresponding bfd section. */
61 asection *bfdsection;
3af9a47b
NC
62}
63bfd_mach_o_section;
64
65typedef struct bfd_mach_o_segment_command
66{
15e1c58a 67 char segname[16 + 1];
3af9a47b
NC
68 bfd_vma vmaddr;
69 bfd_vma vmsize;
70 bfd_vma fileoff;
71 unsigned long filesize;
15e1c58a
TG
72 unsigned long maxprot; /* Maximum permitted protection. */
73 unsigned long initprot; /* Initial protection. */
3af9a47b
NC
74 unsigned long nsects;
75 unsigned long flags;
76 bfd_mach_o_section *sections;
3af9a47b
NC
77}
78bfd_mach_o_segment_command;
79
15e1c58a
TG
80/* Protection flags. */
81#define BFD_MACH_O_PROT_READ 0x01
82#define BFD_MACH_O_PROT_WRITE 0x02
83#define BFD_MACH_O_PROT_EXECUTE 0x04
84
92bc0e80
TG
85/* Expanded internal representation of a relocation entry. */
86typedef struct bfd_mach_o_reloc_info
87{
88 bfd_vma r_address;
89 bfd_vma r_value;
90 unsigned int r_scattered : 1;
91 unsigned int r_type : 4;
92 unsigned int r_pcrel : 1;
93 unsigned int r_length : 2;
94 unsigned int r_extern : 1;
95}
96bfd_mach_o_reloc_info;
97
98typedef struct bfd_mach_o_asymbol
99{
100 /* The actual symbol which the rest of BFD works with. */
101 asymbol symbol;
102
103 /* Fields from Mach-O symbol. */
104 unsigned char n_type;
105 unsigned char n_sect;
106 unsigned short n_desc;
107}
108bfd_mach_o_asymbol;
109
3af9a47b
NC
110typedef struct bfd_mach_o_symtab_command
111{
92bc0e80
TG
112 unsigned int symoff;
113 unsigned int nsyms;
114 unsigned int stroff;
115 unsigned int strsize;
116 bfd_mach_o_asymbol *symbols;
3af9a47b 117 char *strtab;
3af9a47b
NC
118}
119bfd_mach_o_symtab_command;
120
121/* This is the second set of the symbolic information which is used to support
7dee875e 122 the data structures for the dynamically link editor.
e84d6fca 123
3af9a47b
NC
124 The original set of symbolic information in the symtab_command which contains
125 the symbol and string tables must also be present when this load command is
126 present. When this load command is present the symbol table is organized
127 into three groups of symbols:
128 local symbols (static and debugging symbols) - grouped by module
129 defined external symbols - grouped by module (sorted by name if not lib)
130 undefined external symbols (sorted by name)
131 In this load command there are offsets and counts to each of the three groups
132 of symbols.
e84d6fca 133
3af9a47b
NC
134 This load command contains a the offsets and sizes of the following new
135 symbolic information tables:
136 table of contents
137 module table
138 reference symbol table
139 indirect symbol table
140 The first three tables above (the table of contents, module table and
7dee875e 141 reference symbol table) are only present if the file is a dynamically linked
3af9a47b
NC
142 shared library. For executable and object modules, which are files
143 containing only one module, the information that would be in these three
144 tables is determined as follows:
145 table of contents - the defined external symbols are sorted by name
146 module table - the file contains only one module so everything in the
147 file is part of the module.
148 reference symbol table - is the defined and undefined external symbols
e84d6fca 149
7dee875e 150 For dynamically linked shared library files this load command also contains
3af9a47b
NC
151 offsets and sizes to the pool of relocation entries for all sections
152 separated into two groups:
153 external relocation entries
154 local relocation entries
155 For executable and object modules the relocation entries continue to hang
156 off the section structures. */
157
046b007d
TG
158typedef struct bfd_mach_o_dylib_module
159{
160 /* Index into the string table indicating the name of the module. */
161 unsigned long module_name_idx;
162 char *module_name;
163
164 /* Index into the symbol table of the first defined external symbol provided
165 by the module. */
166 unsigned long iextdefsym;
167
168 /* Number of external symbols provided by this module. */
169 unsigned long nextdefsym;
170
171 /* Index into the external reference table of the first entry
172 provided by this module. */
173 unsigned long irefsym;
174
175 /* Number of external reference entries provided by this module. */
176 unsigned long nrefsym;
177
178 /* Index into the symbol table of the first local symbol provided by this
179 module. */
180 unsigned long ilocalsym;
181
182 /* Number of local symbols provided by this module. */
183 unsigned long nlocalsym;
184
185 /* Index into the external relocation table of the first entry provided
186 by this module. */
187 unsigned long iextrel;
188
189 /* Number of external relocation entries provided by this module. */
190 unsigned long nextrel;
191
192 /* Index in the module initialization section to the pointers for this
193 module. */
194 unsigned short iinit;
195
196 /* Index in the module termination section to the pointers for this
197 module. */
198 unsigned short iterm;
199
200 /* Number of pointers in the module initialization for this module. */
201 unsigned short ninit;
202
203 /* Number of pointers in the module termination for this module. */
204 unsigned short nterm;
205
206 /* Number of data byte for this module that are used in the __module_info
207 section of the __OBJC segment. */
208 unsigned long objc_module_info_size;
209
210 /* Statically linked address of the start of the data for this module
211 in the __module_info section of the __OBJC_segment. */
212 bfd_vma objc_module_info_addr;
213}
214bfd_mach_o_dylib_module;
046b007d
TG
215
216typedef struct bfd_mach_o_dylib_table_of_content
217{
218 /* Index into the symbol table to the defined external symbol. */
219 unsigned long symbol_index;
220
221 /* Index into the module table to the module for this entry. */
222 unsigned long module_index;
223}
224bfd_mach_o_dylib_table_of_content;
046b007d
TG
225
226typedef struct bfd_mach_o_dylib_reference
227{
228 /* Index into the symbol table for the symbol being referenced. */
229 unsigned long isym;
230
231 /* Type of the reference being made (use REFERENCE_FLAGS constants). */
232 unsigned long flags;
233}
234bfd_mach_o_dylib_reference;
235#define BFD_MACH_O_REFERENCE_SIZE 4
236
3af9a47b
NC
237typedef struct bfd_mach_o_dysymtab_command
238{
239 /* The symbols indicated by symoff and nsyms of the LC_SYMTAB load command
240 are grouped into the following three groups:
241 local symbols (further grouped by the module they are from)
242 defined external symbols (further grouped by the module they are from)
243 undefined symbols
e84d6fca 244
3af9a47b
NC
245 The local symbols are used only for debugging. The dynamic binding
246 process may have to use them to indicate to the debugger the local
247 symbols for a module that is being bound.
e84d6fca 248
3af9a47b
NC
249 The last two groups are used by the dynamic binding process to do the
250 binding (indirectly through the module table and the reference symbol
7dee875e 251 table when this is a dynamically linked shared library file). */
3af9a47b
NC
252
253 unsigned long ilocalsym; /* Index to local symbols. */
254 unsigned long nlocalsym; /* Number of local symbols. */
255 unsigned long iextdefsym; /* Index to externally defined symbols. */
256 unsigned long nextdefsym; /* Number of externally defined symbols. */
257 unsigned long iundefsym; /* Index to undefined symbols. */
258 unsigned long nundefsym; /* Number of undefined symbols. */
259
260 /* For the for the dynamic binding process to find which module a symbol
261 is defined in the table of contents is used (analogous to the ranlib
262 structure in an archive) which maps defined external symbols to modules
7dee875e 263 they are defined in. This exists only in a dynamically linked shared
3af9a47b
NC
264 library file. For executable and object modules the defined external
265 symbols are sorted by name and is use as the table of contents. */
266
267 unsigned long tocoff; /* File offset to table of contents. */
268 unsigned long ntoc; /* Number of entries in table of contents. */
269
270 /* To support dynamic binding of "modules" (whole object files) the symbol
271 table must reflect the modules that the file was created from. This is
272 done by having a module table that has indexes and counts into the merged
273 tables for each module. The module structure that these two entries
7dee875e 274 refer to is described below. This exists only in a dynamically linked
3af9a47b
NC
275 shared library file. For executable and object modules the file only
276 contains one module so everything in the file belongs to the module. */
277
278 unsigned long modtaboff; /* File offset to module table. */
279 unsigned long nmodtab; /* Number of module table entries. */
280
281 /* To support dynamic module binding the module structure for each module
282 indicates the external references (defined and undefined) each module
283 makes. For each module there is an offset and a count into the
284 reference symbol table for the symbols that the module references.
7dee875e 285 This exists only in a dynamically linked shared library file. For
3af9a47b
NC
286 executable and object modules the defined external symbols and the
287 undefined external symbols indicates the external references. */
288
289 unsigned long extrefsymoff; /* Offset to referenced symbol table. */
290 unsigned long nextrefsyms; /* Number of referenced symbol table entries. */
291
292 /* The sections that contain "symbol pointers" and "routine stubs" have
293 indexes and (implied counts based on the size of the section and fixed
294 size of the entry) into the "indirect symbol" table for each pointer
295 and stub. For every section of these two types the index into the
296 indirect symbol table is stored in the section header in the field
297 reserved1. An indirect symbol table entry is simply a 32bit index into
298 the symbol table to the symbol that the pointer or stub is referring to.
299 The indirect symbol table is ordered to match the entries in the section. */
300
301 unsigned long indirectsymoff; /* File offset to the indirect symbol table. */
302 unsigned long nindirectsyms; /* Number of indirect symbol table entries. */
303
304 /* To support relocating an individual module in a library file quickly the
305 external relocation entries for each module in the library need to be
306 accessed efficiently. Since the relocation entries can't be accessed
307 through the section headers for a library file they are separated into
308 groups of local and external entries further grouped by module. In this
309 case the presents of this load command who's extreloff, nextrel,
310 locreloff and nlocrel fields are non-zero indicates that the relocation
311 entries of non-merged sections are not referenced through the section
312 structures (and the reloff and nreloc fields in the section headers are
313 set to zero).
314
315 Since the relocation entries are not accessed through the section headers
316 this requires the r_address field to be something other than a section
317 offset to identify the item to be relocated. In this case r_address is
318 set to the offset from the vmaddr of the first LC_SEGMENT command.
319
320 The relocation entries are grouped by module and the module table
321 entries have indexes and counts into them for the group of external
322 relocation entries for that the module.
323
324 For sections that are merged across modules there must not be any
325 remaining external relocation entries for them (for merged sections
326 remaining relocation entries must be local). */
327
328 unsigned long extreloff; /* Offset to external relocation entries. */
329 unsigned long nextrel; /* Number of external relocation entries. */
330
331 /* All the local relocation entries are grouped together (they are not
332 grouped by their module since they are only used if the object is moved
7dee875e 333 from it statically link edited address). */
3af9a47b
NC
334
335 unsigned long locreloff; /* Offset to local relocation entries. */
336 unsigned long nlocrel; /* Number of local relocation entries. */
046b007d
TG
337
338 bfd_mach_o_dylib_module *dylib_module;
339 bfd_mach_o_dylib_table_of_content *dylib_toc;
340 unsigned int *indirect_syms;
341 bfd_mach_o_dylib_reference *ext_refs;
3af9a47b 342}
e84d6fca 343bfd_mach_o_dysymtab_command;
3af9a47b 344
e84d6fca 345/* An indirect symbol table entry is simply a 32bit index into the symbol table
3af9a47b 346 to the symbol that the pointer or stub is refering to. Unless it is for a
046b007d 347 non-lazy symbol pointer section for a defined symbol which strip(1) has
3af9a47b
NC
348 removed. In which case it has the value INDIRECT_SYMBOL_LOCAL. If the
349 symbol was also absolute INDIRECT_SYMBOL_ABS is or'ed with that. */
350
15e1c58a
TG
351#define BFD_MACH_O_INDIRECT_SYMBOL_LOCAL 0x80000000
352#define BFD_MACH_O_INDIRECT_SYMBOL_ABS 0x40000000
046b007d 353#define BFD_MACH_O_INDIRECT_SYMBOL_SIZE 4
3af9a47b 354
b32e07d7
TG
355/* For LC_THREAD or LC_UNIXTHREAD. */
356
3af9a47b
NC
357typedef struct bfd_mach_o_thread_flavour
358{
359 unsigned long flavour;
b32e07d7 360 unsigned long offset;
3af9a47b
NC
361 unsigned long size;
362}
363bfd_mach_o_thread_flavour;
364
365typedef struct bfd_mach_o_thread_command
366{
367 unsigned long nflavours;
e84d6fca 368 bfd_mach_o_thread_flavour *flavours;
3af9a47b
NC
369 asection *section;
370}
371bfd_mach_o_thread_command;
372
046b007d
TG
373/* For LC_LOAD_DYLINKER and LC_ID_DYLINKER. */
374
3af9a47b
NC
375typedef struct bfd_mach_o_dylinker_command
376{
846b9259
TG
377 unsigned long name_offset; /* Offset to library's path name. */
378 unsigned long name_len; /* Offset to library's path name. */
b32e07d7 379 char *name_str;
3af9a47b
NC
380}
381bfd_mach_o_dylinker_command;
382
046b007d
TG
383/* For LC_LOAD_DYLIB, LC_LOAD_WEAK_DYLIB, LC_ID_DYLIB
384 or LC_REEXPORT_DYLIB. */
385
3af9a47b
NC
386typedef struct bfd_mach_o_dylib_command
387{
3af9a47b
NC
388 unsigned long name_offset; /* Offset to library's path name. */
389 unsigned long name_len; /* Offset to library's path name. */
390 unsigned long timestamp; /* Library's build time stamp. */
391 unsigned long current_version; /* Library's current version number. */
392 unsigned long compatibility_version; /* Library's compatibility vers number. */
b32e07d7 393 char *name_str;
3af9a47b
NC
394}
395bfd_mach_o_dylib_command;
396
046b007d
TG
397/* For LC_PREBOUND_DYLIB. */
398
3af9a47b
NC
399typedef struct bfd_mach_o_prebound_dylib_command
400{
3af9a47b
NC
401 unsigned long name; /* Library's path name. */
402 unsigned long nmodules; /* Number of modules in library. */
403 unsigned long linked_modules; /* Bit vector of linked modules. */
3af9a47b
NC
404}
405bfd_mach_o_prebound_dylib_command;
406
046b007d
TG
407/* For LC_UUID. */
408
15e1c58a
TG
409typedef struct bfd_mach_o_uuid_command
410{
046b007d 411 unsigned char uuid[16];
15e1c58a
TG
412}
413bfd_mach_o_uuid_command;
414
046b007d
TG
415/* For LC_CODE_SIGNATURE or LC_SEGMENT_SPLIT_INFO. */
416
417typedef struct bfd_mach_o_linkedit_command
418{
419 unsigned long dataoff;
420 unsigned long datasize;
421}
422bfd_mach_o_linkedit_command;
423
424typedef struct bfd_mach_o_str_command
425{
426 unsigned long stroff;
427 unsigned long str_len;
428 char *str;
429}
430bfd_mach_o_str_command;
431
ad86f1fb
TG
432typedef struct bfd_mach_o_dyld_info_command
433{
434 /* File offset and size to rebase info. */
435 unsigned int rebase_off;
436 unsigned int rebase_size;
437
438 /* File offset and size of binding info. */
439 unsigned int bind_off;
440 unsigned int bind_size;
441
442 /* File offset and size of weak binding info. */
443 unsigned int weak_bind_off;
444 unsigned int weak_bind_size;
445
446 /* File offset and size of lazy binding info. */
447 unsigned int lazy_bind_off;
448 unsigned int lazy_bind_size;
449
450 /* File offset and size of export info. */
451 unsigned int export_off;
452 unsigned int export_size;
453}
454bfd_mach_o_dyld_info_command;
455
3af9a47b
NC
456typedef struct bfd_mach_o_load_command
457{
458 bfd_mach_o_load_command_type type;
154a1ee5 459 bfd_boolean type_required;
92bc0e80
TG
460 unsigned int offset;
461 unsigned int len;
3af9a47b
NC
462 union
463 {
464 bfd_mach_o_segment_command segment;
465 bfd_mach_o_symtab_command symtab;
466 bfd_mach_o_dysymtab_command dysymtab;
467 bfd_mach_o_thread_command thread;
468 bfd_mach_o_dylib_command dylib;
469 bfd_mach_o_dylinker_command dylinker;
470 bfd_mach_o_prebound_dylib_command prebound_dylib;
15e1c58a 471 bfd_mach_o_uuid_command uuid;
046b007d
TG
472 bfd_mach_o_linkedit_command linkedit;
473 bfd_mach_o_str_command str;
ad86f1fb 474 bfd_mach_o_dyld_info_command dyld_info;
3af9a47b
NC
475 }
476 command;
477}
478bfd_mach_o_load_command;
479
480typedef struct mach_o_data_struct
481{
92bc0e80 482 /* Mach-O header. */
3af9a47b 483 bfd_mach_o_header header;
92bc0e80 484 /* Array of load commands (length is given by header.ncmds). */
3af9a47b 485 bfd_mach_o_load_command *commands;
92bc0e80
TG
486
487 /* Flatten array of sections. The array is 0-based. */
3af9a47b
NC
488 unsigned long nsects;
489 bfd_mach_o_section **sections;
92bc0e80
TG
490
491 /* Used while writting: current length of the output file. This is used
492 to allocate space in the file. */
493 ufile_ptr filelen;
046b007d
TG
494
495 /* As symtab is referenced by other load command, it is handy to have
496 a direct access to it. Also it is not clearly stated, only one symtab
497 is expected. */
498 bfd_mach_o_symtab_command *symtab;
b32e07d7 499 bfd_mach_o_dysymtab_command *dysymtab;
3af9a47b 500}
046b007d 501bfd_mach_o_data_struct;
3af9a47b 502
92bc0e80
TG
503/* Target specific routines. */
504typedef struct bfd_mach_o_backend_data
505{
42fa0891 506 enum bfd_architecture arch;
92bc0e80
TG
507 bfd_boolean (*_bfd_mach_o_swap_reloc_in)(arelent *, bfd_mach_o_reloc_info *);
508 bfd_boolean (*_bfd_mach_o_swap_reloc_out)(arelent *, bfd_mach_o_reloc_info *);
b32e07d7
TG
509 bfd_boolean (*_bfd_mach_o_print_thread)(bfd *, bfd_mach_o_thread_flavour *,
510 void *, char *);
92bc0e80
TG
511}
512bfd_mach_o_backend_data;
15e1c58a 513
046b007d 514#define bfd_mach_o_get_data(abfd) ((abfd)->tdata.mach_o_data)
92bc0e80
TG
515#define bfd_mach_o_get_backend_data(abfd) \
516 ((bfd_mach_o_backend_data*)(abfd)->xvec->backend_data)
3af9a47b 517
154a1ee5 518bfd_boolean bfd_mach_o_valid (bfd *);
ab273af8 519int bfd_mach_o_read_dysymtab_symbol (bfd *, bfd_mach_o_dysymtab_command *, bfd_mach_o_symtab_command *, bfd_mach_o_asymbol *, unsigned long);
154a1ee5
TG
520int bfd_mach_o_scan_start_address (bfd *);
521int bfd_mach_o_scan (bfd *, bfd_mach_o_header *, bfd_mach_o_data_struct *);
522bfd_boolean bfd_mach_o_mkobject_init (bfd *);
523const bfd_target *bfd_mach_o_object_p (bfd *);
524const bfd_target *bfd_mach_o_core_p (bfd *);
525const bfd_target *bfd_mach_o_archive_p (bfd *);
526bfd *bfd_mach_o_openr_next_archived_file (bfd *, bfd *);
42fa0891
TG
527bfd_boolean bfd_mach_o_set_arch_mach (bfd *, enum bfd_architecture,
528 unsigned long);
154a1ee5
TG
529int bfd_mach_o_lookup_section (bfd *, asection *, bfd_mach_o_load_command **, bfd_mach_o_section **);
530int bfd_mach_o_lookup_command (bfd *, bfd_mach_o_load_command_type, bfd_mach_o_load_command **);
531bfd_boolean bfd_mach_o_write_contents (bfd *);
532bfd_boolean bfd_mach_o_bfd_copy_private_symbol_data (bfd *, asymbol *,
533 bfd *, asymbol *);
534bfd_boolean bfd_mach_o_bfd_copy_private_section_data (bfd *, asection *,
535 bfd *, asection *);
536bfd_boolean bfd_mach_o_bfd_copy_private_bfd_data (bfd *, bfd *);
537long bfd_mach_o_get_symtab_upper_bound (bfd *);
538long bfd_mach_o_canonicalize_symtab (bfd *, asymbol **);
b2b62060
TG
539long bfd_mach_o_get_synthetic_symtab (bfd *, long, asymbol **, long,
540 asymbol **, asymbol **ret);
b32e07d7
TG
541long bfd_mach_o_get_reloc_upper_bound (bfd *, asection *);
542long bfd_mach_o_canonicalize_reloc (bfd *, asection *, arelent **, asymbol **);
543long bfd_mach_o_get_dynamic_reloc_upper_bound (bfd *);
544long bfd_mach_o_canonicalize_dynamic_reloc (bfd *, arelent **, asymbol **);
154a1ee5
TG
545asymbol *bfd_mach_o_make_empty_symbol (bfd *);
546void bfd_mach_o_get_symbol_info (bfd *, asymbol *, symbol_info *);
547void bfd_mach_o_print_symbol (bfd *, PTR, asymbol *, bfd_print_symbol_type);
548bfd_boolean bfd_mach_o_bfd_print_private_bfd_data (bfd *, PTR);
549int bfd_mach_o_sizeof_headers (bfd *, struct bfd_link_info *);
550unsigned long bfd_mach_o_stack_addr (enum bfd_mach_o_cpu_type);
551int bfd_mach_o_core_fetch_environment (bfd *, unsigned char **, unsigned int *);
552char *bfd_mach_o_core_file_failing_command (bfd *);
553int bfd_mach_o_core_file_failing_signal (bfd *);
554bfd_boolean bfd_mach_o_core_file_matches_executable_p (bfd *, bfd *);
846b9259 555bfd *bfd_mach_o_fat_extract (bfd *, bfd_format , const bfd_arch_info_type *);
154a1ee5
TG
556const bfd_target *bfd_mach_o_header_p (bfd *, bfd_mach_o_filetype,
557 bfd_mach_o_cpu_type);
b32e07d7 558bfd_boolean bfd_mach_o_build_commands (bfd *);
154a1ee5
TG
559bfd_boolean bfd_mach_o_set_section_contents (bfd *, asection *, const void *,
560 file_ptr, bfd_size_type);
c2f09c75 561unsigned int bfd_mach_o_version (bfd *);
3af9a47b 562
53d58d96
TG
563unsigned int bfd_mach_o_get_section_type_from_name (const char *);
564unsigned int bfd_mach_o_get_section_attribute_from_name (const char *);
565void bfd_mach_o_normalize_section_name (const char *, const char *,
566 const char **, flagword *);
567
3af9a47b
NC
568extern const bfd_target mach_o_fat_vec;
569
570#endif /* _BFD_MACH_O_H_ */
This page took 0.482151 seconds and 4 git commands to generate.