2009-10-19 Michael Snyder <msnyder@vmware.com>
[deliverable/binutils-gdb.git] / gdb / machoread.c
CommitLineData
a80b95ba 1/* Darwin support for GDB, the GNU debugger.
0fb0cc75 2 Copyright (C) 2008, 2009 Free Software Foundation, Inc.
a80b95ba
TG
3
4 Contributed by AdaCore.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#include "defs.h"
23#include "symtab.h"
24#include "gdbtypes.h"
25#include "bfd.h"
26#include "symfile.h"
27#include "objfiles.h"
28#include "buildsym.h"
29#include "gdbcmd.h"
30#include "gdbcore.h"
31#include "mach-o.h"
32#include "gdb_assert.h"
33#include "aout/stab_gnu.h"
34#include "vec.h"
35
36#include <string.h>
37
38/* If non-zero displays debugging message. */
39static int mach_o_debug_level = 0;
40
41static void
42macho_new_init (struct objfile *objfile)
43{
44}
45
46static void
47macho_symfile_init (struct objfile *objfile)
48{
49 objfile->flags |= OBJF_REORDERED;
50 init_entry_point_info (objfile);
51}
52
53/* Dwarf debugging information are never in the final executable. They stay
54 in object files and the executable contains the list of object files read
55 during the link.
56 Each time an oso (other source) is found in the executable, the reader
57 creates such a structure. They are read after the processing of the
58 executable.
59*/
60typedef struct oso_el
61{
62 /* Object file name. */
63 const char *name;
64
65 /* Associated time stamp. */
66 unsigned long mtime;
67
68 /* Number of sections. This is the length of SYMBOLS and OFFSETS array. */
69 int num_sections;
70
71 /* Each seaction of the object file is represented by a symbol and its
72 offset. */
73 asymbol **symbols;
74 bfd_vma *offsets;
75}
76oso_el;
77
78/* Vector of object files to be read after the executable. */
79DEF_VEC_O (oso_el);
80static VEC (oso_el) *oso_vector;
81
82/* Add a new OSO to the vector. */
f192ea96 83
a80b95ba
TG
84static void
85macho_add_oso (const asymbol *oso_sym, int nbr_sections,
86 asymbol **symbols, bfd_vma *offsets)
87{
88 oso_el el;
89
90 el.name = oso_sym->name;
91 el.mtime = oso_sym->value;
92 el.num_sections = nbr_sections;
93 el.symbols = symbols;
94 el.offsets = offsets;
95 VEC_safe_push (oso_el, oso_vector, &el);
96}
97
98/* Build the minimal symbol table from SYMBOL_TABLE of length
99 NUMBER_OF_SYMBOLS for OBJFILE.
100 Read OSO files at the end. */
f192ea96 101
a80b95ba
TG
102static void
103macho_symtab_read (struct objfile *objfile,
104 long number_of_symbols, asymbol **symbol_table)
105{
106 struct gdbarch *gdbarch = get_objfile_arch (objfile);
107 long storage_needed;
a80b95ba
TG
108 long i, j;
109 CORE_ADDR offset;
110 enum minimal_symbol_type ms_type;
111 unsigned int nbr_sections = bfd_count_sections (objfile->obfd);
112 asymbol **first_symbol = NULL;
113 bfd_vma *first_offset = NULL;
114 const asymbol *oso_file = NULL;
115
116 for (i = 0; i < number_of_symbols; i++)
117 {
bb00b29d
TG
118 asymbol *sym = symbol_table[i];
119 bfd_mach_o_asymbol *mach_o_sym = (bfd_mach_o_asymbol *)sym;
120
a80b95ba
TG
121 offset = ANOFFSET (objfile->section_offsets, sym->section->index);
122
123 if (sym->flags & BSF_DEBUGGING)
124 {
a80b95ba
TG
125 bfd_vma addr;
126
bb00b29d 127 switch (mach_o_sym->n_type)
a80b95ba
TG
128 {
129 case N_SO:
130 if ((sym->name == NULL || sym->name[0] == 0)
131 && oso_file != NULL)
132 {
133 macho_add_oso (oso_file, nbr_sections,
134 first_symbol, first_offset);
135 first_symbol = NULL;
136 first_offset = NULL;
137 oso_file = NULL;
138 }
139 break;
140 case N_FUN:
141 case N_STSYM:
142 if (sym->name == NULL || sym->name[0] == '\0')
143 break;
144 /* Fall through. */
145 case N_BNSYM:
146 gdb_assert (oso_file != NULL);
147 addr = sym->value
148 + bfd_get_section_vma (sym->section->bfd, sym->section);
149 if (addr != 0
150 && first_symbol[sym->section->index] == NULL)
151 {
152 first_symbol[sym->section->index] = sym;
153 first_offset[sym->section->index] = addr + offset;
154 }
155 break;
156 case N_GSYM:
157 gdb_assert (oso_file != NULL);
158 if (first_symbol[sym->section->index] == NULL)
159 first_symbol[sym->section->index] = sym;
160 break;
161 case N_OSO:
162 gdb_assert (oso_file == NULL);
163 first_symbol = (asymbol **)xmalloc (nbr_sections
164 * sizeof (asymbol *));
165 first_offset = (bfd_vma *)xmalloc (nbr_sections
166 * sizeof (bfd_vma));
167 for (j = 0; j < nbr_sections; j++)
168 first_symbol[j] = NULL;
169 oso_file = sym;
170 break;
171 }
172 continue;
173 }
174
175 if (sym->name == NULL || *sym->name == '\0')
176 {
177 /* Skip names that don't exist (shouldn't happen), or names
178 that are null strings (may happen). */
179 continue;
180 }
181
182 if (sym->flags & (BSF_GLOBAL | BSF_LOCAL | BSF_WEAK))
183 {
184 struct minimal_symbol *msym;
185 CORE_ADDR symaddr;
186
187 /* Bfd symbols are section relative. */
188 symaddr = sym->value + sym->section->vma;
189
190 /* Select global/local/weak symbols. Note that bfd puts abs
191 symbols in their own section, so all symbols we are
192 interested in will have a section. */
193 /* Relocate all non-absolute and non-TLS symbols by the
194 section offset. */
195 if (sym->section != &bfd_abs_section
196 && !(sym->section->flags & SEC_THREAD_LOCAL))
197 symaddr += offset;
198
199 if (sym->section == &bfd_abs_section)
200 ms_type = mst_abs;
201 else if (sym->section->flags & SEC_CODE)
202 {
203 if (sym->flags & (BSF_GLOBAL | BSF_WEAK))
204 ms_type = mst_text;
205 else
206 ms_type = mst_file_text;
207 }
208 else if (sym->section->flags & SEC_ALLOC)
209 {
210 if (sym->flags & (BSF_GLOBAL | BSF_WEAK))
211 {
212 if (sym->section->flags & SEC_LOAD)
213 ms_type = mst_data;
214 else
215 ms_type = mst_bss;
216 }
217 else if (sym->flags & BSF_LOCAL)
218 {
219 /* Not a special stabs-in-elf symbol, do regular
220 symbol processing. */
221 if (sym->section->flags & SEC_LOAD)
222 ms_type = mst_file_data;
223 else
224 ms_type = mst_file_bss;
225 }
226 else
227 ms_type = mst_unknown;
228 }
229 else
230 continue; /* Skip this symbol. */
231
232 gdb_assert (sym->section->index < nbr_sections);
233 if (oso_file != NULL
234 && first_symbol[sym->section->index] == NULL)
235 {
236 first_symbol[sym->section->index] = sym;
237 first_offset[sym->section->index] = symaddr;
238 }
239
240 msym = prim_record_minimal_symbol_and_info
241 (sym->name, symaddr, ms_type, sym->section->index,
242 sym->section, objfile);
243 }
244 }
245
246 if (oso_file != NULL)
247 macho_add_oso (oso_file, nbr_sections, first_symbol, first_offset);
248}
249
250/* If NAME describes an archive member (ie: ARCHIVE '(' MEMBER ')'),
251 returns the length of the archive name.
252 Returns -1 otherwise. */
f192ea96 253
a80b95ba
TG
254static int
255get_archive_prefix_len (const char *name)
256{
257 char *lparen;
258 int name_len = strlen (name);
259
260 if (name_len == 0 || name[name_len - 1] != ')')
261 return -1;
262
263 lparen = strrchr (name, '(');
264 if (lparen == NULL || lparen == name)
265 return -1;
266 return lparen - name;
267}
268
f192ea96
TG
269static int
270oso_el_compare_name (const void *vl, const void *vr)
271{
272 const oso_el *l = (const oso_el *)vl;
273 const oso_el *r = (const oso_el *)vr;
274
275 return strcmp (l->name, r->name);
276}
277
278/* Add an oso file as a symbol file. */
279
280static void
281macho_add_oso_symfile (oso_el *oso, bfd *abfd, struct objfile *main_objfile)
282{
283 struct section_addr_info *addrs;
284 int len;
285 int i;
286 char leading_char;
287
288 if (mach_o_debug_level > 0)
289 printf_unfiltered (_("Loading symbols from oso: %s\n"), oso->name);
290
291 if (!bfd_check_format (abfd, bfd_object))
292 {
293 warning (_("`%s': can't read symbols: %s."), oso->name,
294 bfd_errmsg (bfd_get_error ()));
295 bfd_close (abfd);
296 return;
297 }
298
299 bfd_set_cacheable (abfd, 1);
300
301 /* Compute addr length. */
302 len = 0;
303 for (i = 0; i < oso->num_sections; i++)
304 if (oso->symbols[i] != NULL)
305 len++;
306
307 addrs = alloc_section_addr_info (len);
308
309 leading_char = bfd_get_symbol_leading_char (main_objfile->obfd);
310
311 len = 0;
312 for (i = 0; i < oso->num_sections; i++)
313 if (oso->symbols[i] != NULL)
314 {
315 if (oso->offsets[i])
316 addrs->other[len].addr = oso->offsets[i];
317 else
318 {
319 struct minimal_symbol *msym;
320 const char *name = oso->symbols[i]->name;
321
322 if (name[0] == leading_char)
323 ++name;
324
325 if (mach_o_debug_level > 3)
326 printf_unfiltered (_("resolve sect %s with %s\n"),
327 oso->symbols[i]->section->name,
328 oso->symbols[i]->name);
329 msym = lookup_minimal_symbol (name, NULL, main_objfile);
330 if (msym == NULL)
331 {
332 warning (_("can't find symbol '%s' in minsymtab"),
333 oso->symbols[i]->name);
334 addrs->other[len].addr = 0;
335 }
336 else
337 addrs->other[len].addr = SYMBOL_VALUE_ADDRESS (msym);
338 }
339 addrs->other[len].name = (char *)oso->symbols[i]->section->name;
340 len++;
341 }
342
343 if (mach_o_debug_level > 1)
344 {
345 int j;
346 for (j = 0; j < addrs->num_sections; j++)
347 printf_unfiltered (_(" %s: %s\n"),
348 core_addr_to_string (addrs->other[j].addr),
349 addrs->other[j].name);
350 }
351
352 symbol_file_add_from_bfd (abfd, 0, addrs, 0);
353}
354
a80b95ba 355/* Read symbols from the vector of oso files. */
f192ea96 356
a80b95ba
TG
357static void
358macho_oso_symfile (struct objfile *main_objfile)
359{
360 int ix;
361 VEC (oso_el) *vec;
362 oso_el *oso;
a80b95ba
TG
363
364 vec = oso_vector;
365 oso_vector = NULL;
366
f192ea96
TG
367 /* Sort oso by name so that files from libraries are gathered. */
368 qsort (VEC_address (oso_el, vec), VEC_length (oso_el, vec),
369 sizeof (oso_el), oso_el_compare_name);
a80b95ba 370
f192ea96 371 for (ix = 0; VEC_iterate (oso_el, vec, ix, oso);)
a80b95ba 372 {
a80b95ba 373 int pfx_len;
a80b95ba
TG
374
375 /* Check if this is a library name. */
376 pfx_len = get_archive_prefix_len (oso->name);
377 if (pfx_len > 0)
378 {
379 bfd *archive_bfd;
380 bfd *member_bfd;
f192ea96
TG
381 char *archive_name = XNEWVEC (char, pfx_len + 1);
382 int last_ix;
383 oso_el *oso2;
384 int ix2;
a80b95ba 385
a80b95ba
TG
386 memcpy (archive_name, oso->name, pfx_len);
387 archive_name[pfx_len] = '\0';
388
f192ea96
TG
389 /* Compute number of oso for this archive. */
390 for (last_ix = ix;
391 VEC_iterate (oso_el, vec, last_ix, oso2); last_ix++)
392 {
393 if (strncmp (oso2->name, archive_name, pfx_len) != 0)
394 break;
395 }
396
a80b95ba
TG
397 /* Open the archive and check the format. */
398 archive_bfd = bfd_openr (archive_name, gnutarget);
399 if (archive_bfd == NULL)
400 {
401 warning (_("Could not open OSO archive file \"%s\""),
402 archive_name);
f192ea96 403 ix = last_ix;
a80b95ba
TG
404 continue;
405 }
406 if (!bfd_check_format (archive_bfd, bfd_archive))
407 {
408 warning (_("OSO archive file \"%s\" not an archive."),
409 archive_name);
410 bfd_close (archive_bfd);
f192ea96 411 ix = last_ix;
a80b95ba
TG
412 continue;
413 }
414 member_bfd = bfd_openr_next_archived_file (archive_bfd, NULL);
415
416 if (member_bfd == NULL)
417 {
418 warning (_("Could not read archive members out of "
419 "OSO archive \"%s\""), archive_name);
420 bfd_close (archive_bfd);
f192ea96 421 ix = last_ix;
a80b95ba
TG
422 continue;
423 }
f192ea96
TG
424
425 /* Load all oso in this library. */
a80b95ba
TG
426 while (member_bfd != NULL)
427 {
f192ea96 428 bfd *prev;
a80b95ba 429 const char *member_name = member_bfd->filename;
f192ea96
TG
430 int member_len = strlen (member_name);
431
432 for (ix2 = ix; ix2 < last_ix; ix2++)
433 {
434 oso2 = VEC_index (oso_el, vec, ix2);
435
436 if (oso2->name
437 && strlen (oso2->name) == pfx_len + member_len + 2
438 && !memcmp (member_name, oso2->name + pfx_len + 1,
439 member_len))
440 {
441 macho_add_oso_symfile (oso2, member_bfd, main_objfile);
442 oso2->name = NULL;
443 break;
444 }
445 }
446
447 prev = member_bfd;
a80b95ba
TG
448 member_bfd = bfd_openr_next_archived_file
449 (archive_bfd, member_bfd);
f192ea96
TG
450 if (ix2 < last_ix)
451 bfd_close (prev);
a80b95ba 452 }
f192ea96
TG
453 for (ix2 = ix; ix2 < last_ix; ix2++)
454 {
455 oso_el *oso2 = VEC_index (oso_el, vec, ix2);
456
457 if (oso2->name != NULL)
458 warning (_("Could not find specified archive member "
459 "for OSO name \"%s\""), oso->name);
460 }
461 ix = last_ix;
a80b95ba
TG
462 }
463 else
464 {
f192ea96 465 bfd *abfd;
a80b95ba
TG
466
467 abfd = bfd_openr (oso->name, gnutarget);
468 if (!abfd)
f192ea96
TG
469 warning (_("`%s': can't open to read symbols: %s."), oso->name,
470 bfd_errmsg (bfd_get_error ()));
471 else
472 macho_add_oso_symfile (oso, abfd, main_objfile);
473
474 ix++;
475 }
476 }
477
478 for (ix = 0; VEC_iterate (oso_el, vec, ix, oso); ix++)
479 {
a80b95ba
TG
480 xfree (oso->symbols);
481 xfree (oso->offsets);
482 }
483 VEC_free (oso_el, vec);
484}
485
486/* DSYM (debug symbols) files contain the debug info of an executable.
487 This is a separate file created by dsymutil(1) and is similar to debug
488 link feature on ELF.
489 DSYM files are located in a subdirectory. Append DSYM_SUFFIX to the
490 executable name and the executable base name to get the DSYM file name. */
491#define DSYM_SUFFIX ".dSYM/Contents/Resources/DWARF/"
492
493/* Check if a dsym file exists for OBJFILE. If so, returns a bfd for it.
494 Return NULL if no valid dsym file is found. */
f192ea96 495
a80b95ba
TG
496static bfd *
497macho_check_dsym (struct objfile *objfile)
498{
499 size_t name_len = strlen (objfile->name);
500 size_t dsym_len = strlen (DSYM_SUFFIX);
501 const char *base_name = lbasename (objfile->name);
502 size_t base_len = strlen (base_name);
503 char *dsym_filename = alloca (name_len + dsym_len + base_len + 1);
504 bfd *dsym_bfd;
505 asection *sect;
506 bfd_byte main_uuid[16];
507 bfd_byte dsym_uuid[16];
508
509 strcpy (dsym_filename, objfile->name);
510 strcpy (dsym_filename + name_len, DSYM_SUFFIX);
511 strcpy (dsym_filename + name_len + dsym_len, base_name);
512
513 if (access (dsym_filename, R_OK) != 0)
514 return NULL;
515
516 sect = bfd_get_section_by_name (objfile->obfd, "LC_UUID");
517 if (sect == NULL)
518 {
519 warning (_("can't find UUID in %s"), objfile->name);
520 return NULL;
521 }
522 if (!bfd_get_section_contents (objfile->obfd, sect, main_uuid,
523 0, sizeof (main_uuid)))
524 {
525 warning (_("can't read UUID in %s"), objfile->name);
526 return NULL;
527 }
528
529 dsym_filename = xstrdup (dsym_filename);
530 dsym_bfd = bfd_openr (dsym_filename, gnutarget);
531 if (dsym_bfd == NULL)
532 {
533 warning (_("can't open dsym file %s"), dsym_filename);
534 xfree (dsym_filename);
535 return NULL;
536 }
537
538 if (!bfd_check_format (dsym_bfd, bfd_object))
539 {
540 bfd_close (dsym_bfd);
541 warning (_("bad dsym file format: %s"), bfd_errmsg (bfd_get_error ()));
542 xfree (dsym_filename);
543 return NULL;
544 }
545
546 sect = bfd_get_section_by_name (dsym_bfd, "LC_UUID");
547 if (sect == NULL)
548 {
549 warning (_("can't find UUID in %s"), dsym_filename);
550 bfd_close (dsym_bfd);
551 xfree (dsym_filename);
552 return NULL;
553 }
554 if (!bfd_get_section_contents (dsym_bfd, sect, dsym_uuid,
555 0, sizeof (dsym_uuid)))
556 {
557 warning (_("can't read UUID in %s"), dsym_filename);
558 bfd_close (dsym_bfd);
559 xfree (dsym_filename);
560 return NULL;
561 }
562 if (memcmp (dsym_uuid, main_uuid, sizeof (main_uuid)))
563 {
564 warning (_("dsym file UUID doesn't match the one in %s"), objfile->name);
565 bfd_close (dsym_bfd);
566 xfree (dsym_filename);
567 return NULL;
568 }
569 return dsym_bfd;
570
571}
572
573static void
574macho_symfile_read (struct objfile *objfile, int mainline)
575{
576 bfd *abfd = objfile->obfd;
577 struct cleanup *back_to;
578 CORE_ADDR offset;
579 long storage_needed;
580 bfd *dsym_bfd;
581
582 init_minimal_symbol_collection ();
583 back_to = make_cleanup_discard_minimal_symbols ();
584
585 /* Get symbols from the symbol table only if the file is an executable.
586 The symbol table of object files is not relocated and is expected to
587 be in the executable. */
cf1061c0 588 if (bfd_get_file_flags (abfd) & (EXEC_P | DYNAMIC))
a80b95ba
TG
589 {
590 /* Process the normal symbol table first. */
591 storage_needed = bfd_get_symtab_upper_bound (objfile->obfd);
592 if (storage_needed < 0)
593 error (_("Can't read symbols from %s: %s"),
594 bfd_get_filename (objfile->obfd),
595 bfd_errmsg (bfd_get_error ()));
596
597 if (storage_needed > 0)
598 {
599 asymbol **symbol_table;
600 long symcount;
601
602 symbol_table = (asymbol **) xmalloc (storage_needed);
603 make_cleanup (xfree, symbol_table);
604 symcount = bfd_canonicalize_symtab (objfile->obfd, symbol_table);
605
606 if (symcount < 0)
607 error (_("Can't read symbols from %s: %s"),
608 bfd_get_filename (objfile->obfd),
609 bfd_errmsg (bfd_get_error ()));
610
611 macho_symtab_read (objfile, symcount, symbol_table);
612 }
613
614 install_minimal_symbols (objfile);
615
cf1061c0
TG
616 /* Try to read .eh_frame / .debug_frame. */
617 /* First, locate these sections. We ignore the result status
618 as it only checks for debug info. */
619 dwarf2_has_info (objfile);
620 dwarf2_build_frame_info (objfile);
621
a80b95ba
TG
622 /* Check for DSYM file. */
623 dsym_bfd = macho_check_dsym (objfile);
624 if (dsym_bfd != NULL)
625 {
626 int ix;
627 oso_el *oso;
628
629 if (mach_o_debug_level > 0)
630 printf_unfiltered (_("dsym file found\n"));
631
632 /* Remove oso. They won't be used. */
633 for (ix = 0; VEC_iterate (oso_el, oso_vector, ix, oso); ix++)
634 {
635 xfree (oso->symbols);
636 xfree (oso->offsets);
637 }
638 VEC_free (oso_el, oso_vector);
639 oso_vector = NULL;
640
641 /* Now recurse: read dwarf from dsym. */
7eedccfa 642 symbol_file_add_from_bfd (dsym_bfd, 0, NULL, 0);
a80b95ba 643
cf1061c0 644 /* Don't try to read dwarf2 from main file or shared libraries. */
a80b95ba
TG
645 return;
646 }
647 }
648
649 if (dwarf2_has_info (objfile))
650 {
651 /* DWARF 2 sections */
652 dwarf2_build_psymtabs (objfile, mainline);
653 }
654
cf1061c0
TG
655 /* Do not try to read .eh_frame/.debug_frame as they are not relocated
656 and dwarf2_build_frame_info cannot deal with unrelocated sections. */
a80b95ba
TG
657
658 /* Then the oso. */
659 if (oso_vector != NULL)
660 macho_oso_symfile (objfile);
661}
662
663static void
664macho_symfile_finish (struct objfile *objfile)
665{
666}
667
668static void
669macho_symfile_offsets (struct objfile *objfile,
670 struct section_addr_info *addrs)
671{
672 unsigned int i;
673 unsigned int num_sections;
674 struct obj_section *osect;
675
676 /* Allocate section_offsets. */
677 objfile->num_sections = bfd_count_sections (objfile->obfd);
678 objfile->section_offsets = (struct section_offsets *)
679 obstack_alloc (&objfile->objfile_obstack,
680 SIZEOF_N_SECTION_OFFSETS (objfile->num_sections));
681 memset (objfile->section_offsets, 0,
682 SIZEOF_N_SECTION_OFFSETS (objfile->num_sections));
683
684 /* This code is run when we first add the objfile with
685 symfile_add_with_addrs_or_offsets, when "addrs" not "offsets" are
686 passed in. The place in symfile.c where the addrs are applied
687 depends on the addrs having section names. But in the dyld code
688 we build an anonymous array of addrs, so that code is a no-op.
689 Because of that, we have to apply the addrs to the sections here.
690 N.B. if an objfile slides after we've already created it, then it
691 goes through objfile_relocate. */
692
693 for (i = 0; i < addrs->num_sections; i++)
694 {
695 if (addrs->other[i].name == NULL)
696 continue;
697
698 ALL_OBJFILE_OSECTIONS (objfile, osect)
699 {
700 const char *bfd_sect_name = osect->the_bfd_section->name;
701
702 if (strcmp (bfd_sect_name, addrs->other[i].name) == 0)
703 {
704 obj_section_offset (osect) = addrs->other[i].addr;
705 break;
706 }
707 }
708 }
709
710 objfile->sect_index_text = 0;
711
712 ALL_OBJFILE_OSECTIONS (objfile, osect)
713 {
714 const char *bfd_sect_name = osect->the_bfd_section->name;
715 int sect_index = osect->the_bfd_section->index;
cf1061c0
TG
716
717 if (strncmp (bfd_sect_name, "LC_SEGMENT.", 11) == 0)
718 bfd_sect_name += 11;
719 if (strcmp (bfd_sect_name, "__TEXT") == 0
720 || strcmp (bfd_sect_name, "__TEXT.__text") == 0)
a80b95ba
TG
721 objfile->sect_index_text = sect_index;
722 }
723}
724
725static struct sym_fns macho_sym_fns = {
726 bfd_target_mach_o_flavour,
727
728 macho_new_init, /* sym_new_init: init anything gbl to entire symtab */
729 macho_symfile_init, /* sym_init: read initial info, setup for sym_read() */
730 macho_symfile_read, /* sym_read: read a symbol file into symtab */
731 macho_symfile_finish, /* sym_finish: finished with file, cleanup */
732 macho_symfile_offsets, /* sym_offsets: xlate external to internal form */
733 NULL /* next: pointer to next struct sym_fns */
734};
735
736void
737_initialize_machoread ()
738{
739 add_symtab_fns (&macho_sym_fns);
740
741 add_setshow_zinteger_cmd ("mach-o", class_obscure,
742 &mach_o_debug_level, _("\
743Set if printing Mach-O symbols processing."), _("\
744Show if printing Mach-O symbols processing."), NULL,
745 NULL, NULL,
746 &setdebuglist, &showdebuglist);
747}
This page took 0.126215 seconds and 4 git commands to generate.