[mach-o] get rid of current_oso global
[deliverable/binutils-gdb.git] / gdb / machoread.c
1 /* Darwin support for GDB, the GNU debugger.
2 Copyright (C) 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
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 #include "psympriv.h"
36
37 #include <string.h>
38
39 /* If non-zero displays debugging message. */
40 static int mach_o_debug_level = 0;
41
42 /* Dwarf debugging information are never in the final executable. They stay
43 in object files and the executable contains the list of object files read
44 during the link.
45 Each time an oso (other source) is found in the executable, the reader
46 creates such a structure. They are read after the processing of the
47 executable. */
48
49 typedef struct oso_el
50 {
51 /* Object file name. */
52 const char *name;
53
54 /* Associated time stamp. */
55 unsigned long mtime;
56
57 /* Number of sections. This is the length of SYMBOLS and OFFSETS array. */
58 int num_sections;
59
60 /* Each seaction of the object file is represented by a symbol and its
61 offset. If the offset is 0, we assume that the symbol is at offset 0
62 in the OSO object file and a symbol lookup in the main file is
63 required to get the offset. */
64 asymbol **symbols;
65 bfd_vma *offsets;
66 }
67 oso_el;
68
69 /* Vector of object files to be read after the executable. This is one
70 global variable but it's life-time is the one of macho_symfile_read. */
71 DEF_VEC_O (oso_el);
72 static VEC (oso_el) *oso_vector;
73
74 static void
75 macho_new_init (struct objfile *objfile)
76 {
77 }
78
79 static void
80 macho_symfile_init (struct objfile *objfile)
81 {
82 objfile->flags |= OBJF_REORDERED;
83 init_entry_point_info (objfile);
84 }
85
86 /* Add a new OSO to the vector of OSO to load. */
87
88 static void
89 macho_register_oso (const asymbol *oso_sym, int nbr_sections,
90 asymbol **symbols, bfd_vma *offsets)
91 {
92 oso_el el;
93
94 el.name = oso_sym->name;
95 el.mtime = oso_sym->value;
96 el.num_sections = nbr_sections;
97 el.symbols = symbols;
98 el.offsets = offsets;
99 VEC_safe_push (oso_el, oso_vector, &el);
100 }
101
102 /* Build the minimal symbol table from SYMBOL_TABLE of length
103 NUMBER_OF_SYMBOLS for OBJFILE.
104 Read OSO files at the end. */
105
106 static void
107 macho_symtab_read (struct objfile *objfile,
108 long number_of_symbols, asymbol **symbol_table)
109 {
110 struct gdbarch *gdbarch = get_objfile_arch (objfile);
111 long storage_needed;
112 long i, j;
113 CORE_ADDR offset;
114 enum minimal_symbol_type ms_type;
115 unsigned int nbr_sections = bfd_count_sections (objfile->obfd);
116 asymbol **first_symbol = NULL;
117 bfd_vma *first_offset = NULL;
118 const asymbol *oso_file = NULL;
119
120 for (i = 0; i < number_of_symbols; i++)
121 {
122 asymbol *sym = symbol_table[i];
123 bfd_mach_o_asymbol *mach_o_sym = (bfd_mach_o_asymbol *)sym;
124
125 offset = ANOFFSET (objfile->section_offsets, sym->section->index);
126
127 if (sym->flags & BSF_DEBUGGING)
128 {
129 bfd_vma addr;
130
131 /* Debugging symbols are used to collect OSO file names as well
132 as section offsets. */
133
134 switch (mach_o_sym->n_type)
135 {
136 case N_SO:
137 /* An empty SO entry terminates a chunk for an OSO file. */
138 if ((sym->name == NULL || sym->name[0] == 0) && oso_file != NULL)
139 {
140 macho_register_oso (oso_file, nbr_sections,
141 first_symbol, first_offset);
142 first_symbol = NULL;
143 first_offset = NULL;
144 oso_file = NULL;
145 }
146 break;
147 case N_FUN:
148 case N_STSYM:
149 if (sym->name == NULL || sym->name[0] == '\0')
150 break;
151 /* Fall through. */
152 case N_BNSYM:
153 gdb_assert (oso_file != NULL);
154 addr = sym->value
155 + bfd_get_section_vma (sym->section->bfd, sym->section);
156 if (addr != 0
157 && first_symbol[sym->section->index] == NULL)
158 {
159 /* These STAB entries can directly relocate a section. */
160 first_symbol[sym->section->index] = sym;
161 first_offset[sym->section->index] = addr + offset;
162 }
163 break;
164 case N_GSYM:
165 gdb_assert (oso_file != NULL);
166 if (first_symbol[sym->section->index] == NULL)
167 {
168 /* This STAB entry needs a symbol look-up to relocate
169 the section. */
170 first_symbol[sym->section->index] = sym;
171 first_offset[sym->section->index] = 0;
172 }
173 break;
174 case N_OSO:
175 /* New OSO file. */
176 gdb_assert (oso_file == NULL);
177 first_symbol = (asymbol **)xmalloc (nbr_sections
178 * sizeof (asymbol *));
179 first_offset = (bfd_vma *)xmalloc (nbr_sections
180 * sizeof (bfd_vma));
181 for (j = 0; j < nbr_sections; j++)
182 first_symbol[j] = NULL;
183 oso_file = sym;
184 break;
185 }
186 continue;
187 }
188
189 if (sym->name == NULL || *sym->name == '\0')
190 {
191 /* Skip names that don't exist (shouldn't happen), or names
192 that are null strings (may happen). */
193 continue;
194 }
195
196 if (sym->flags & (BSF_GLOBAL | BSF_LOCAL | BSF_WEAK))
197 {
198 struct minimal_symbol *msym;
199 CORE_ADDR symaddr;
200
201 /* Bfd symbols are section relative. */
202 symaddr = sym->value + sym->section->vma;
203
204 /* Select global/local/weak symbols. Note that bfd puts abs
205 symbols in their own section, so all symbols we are
206 interested in will have a section. */
207 /* Relocate all non-absolute and non-TLS symbols by the
208 section offset. */
209 if (sym->section != &bfd_abs_section
210 && !(sym->section->flags & SEC_THREAD_LOCAL))
211 symaddr += offset;
212
213 if (sym->section == &bfd_abs_section)
214 ms_type = mst_abs;
215 else if (sym->section->flags & SEC_CODE)
216 {
217 if (sym->flags & (BSF_GLOBAL | BSF_WEAK))
218 ms_type = mst_text;
219 else
220 ms_type = mst_file_text;
221 }
222 else if (sym->section->flags & SEC_ALLOC)
223 {
224 if (sym->flags & (BSF_GLOBAL | BSF_WEAK))
225 {
226 if (sym->section->flags & SEC_LOAD)
227 ms_type = mst_data;
228 else
229 ms_type = mst_bss;
230 }
231 else if (sym->flags & BSF_LOCAL)
232 {
233 /* Not a special stabs-in-elf symbol, do regular
234 symbol processing. */
235 if (sym->section->flags & SEC_LOAD)
236 ms_type = mst_file_data;
237 else
238 ms_type = mst_file_bss;
239 }
240 else
241 ms_type = mst_unknown;
242 }
243 else
244 continue; /* Skip this symbol. */
245
246 gdb_assert (sym->section->index < nbr_sections);
247 if (oso_file != NULL
248 && first_symbol[sym->section->index] == NULL)
249 {
250 /* Standard symbols can directly relocate sections. */
251 first_symbol[sym->section->index] = sym;
252 first_offset[sym->section->index] = symaddr;
253 }
254
255 msym = prim_record_minimal_symbol_and_info
256 (sym->name, symaddr, ms_type, sym->section->index,
257 sym->section, objfile);
258 }
259 }
260
261 /* Just in case there is no trailing SO entry. */
262 if (oso_file != NULL)
263 macho_register_oso (oso_file, nbr_sections, first_symbol, first_offset);
264 }
265
266 /* If NAME describes an archive member (ie: ARCHIVE '(' MEMBER ')'),
267 returns the length of the archive name.
268 Returns -1 otherwise. */
269
270 static int
271 get_archive_prefix_len (const char *name)
272 {
273 char *lparen;
274 int name_len = strlen (name);
275
276 if (name_len == 0 || name[name_len - 1] != ')')
277 return -1;
278
279 lparen = strrchr (name, '(');
280 if (lparen == NULL || lparen == name)
281 return -1;
282 return lparen - name;
283 }
284
285 static int
286 oso_el_compare_name (const void *vl, const void *vr)
287 {
288 const oso_el *l = (const oso_el *)vl;
289 const oso_el *r = (const oso_el *)vr;
290
291 return strcmp (l->name, r->name);
292 }
293
294 /* Relocate all of ABFD's common symbols immediately.
295
296 This modifies the section and address of all common symbols to become
297 absolute symbols with their address set to match the address given by
298 the main objfile's symbol table.
299
300 The reason why the common symbols have to be handled separately
301 is because relocation is performed relative to section start.
302 But there is no section in this case. So the "relocation" of
303 these common symbols is performed by finding their address in
304 the main objfile's symbol table, where we know it's been relocated.
305
306 ABFD is an OSO's bfd.
307 MAIN_OBJFILE is the object file from which the OSO is a part. */
308
309 static void
310 macho_relocate_common_syms(bfd *abfd, struct objfile *main_objfile)
311 {
312 int storage;
313 int i;
314 char leading_char;
315 asymbol **symbol_table;
316
317 storage = bfd_get_symtab_upper_bound (abfd);
318 symbol_table = (asymbol **) xmalloc (storage);
319 bfd_canonicalize_symtab (abfd, symbol_table);
320
321 leading_char = bfd_get_symbol_leading_char (abfd);
322
323 for (i = 0; symbol_table[i]; i++)
324 {
325 asymbol *sym = symbol_table[i];
326
327 if (bfd_is_com_section (sym->section))
328 {
329 /* This one must be solved. */
330 struct minimal_symbol *msym;
331 const char *name = sym->name;
332
333 if (name[0] == leading_char)
334 name++;
335
336 msym = lookup_minimal_symbol (name, NULL, main_objfile);
337 if (msym == NULL)
338 {
339 warning (_("can't find symbol '%s' in minsymtab"), name);
340 continue;
341 }
342 else
343 {
344 sym->section = &bfd_abs_section;
345 sym->value = SYMBOL_VALUE_ADDRESS (msym);
346 }
347 }
348 }
349
350 xfree (symbol_table);
351 }
352
353 /* Add an oso file as a symbol file. */
354
355 static void
356 macho_add_oso_symfile (oso_el *oso, bfd *abfd,
357 struct objfile *main_objfile, int symfile_flags)
358 {
359 struct objfile *objfile;
360 int i;
361 char leading_char;
362
363 if (mach_o_debug_level > 0)
364 printf_unfiltered (_("Loading symbols from oso: %s\n"), oso->name);
365
366 if (!bfd_check_format (abfd, bfd_object))
367 {
368 warning (_("`%s': can't read symbols: %s."), oso->name,
369 bfd_errmsg (bfd_get_error ()));
370 bfd_close (abfd);
371 return;
372 }
373
374 bfd_set_cacheable (abfd, 1);
375
376 /* Relocate sections. */
377
378 leading_char = bfd_get_symbol_leading_char (main_objfile->obfd);
379
380 for (i = 0; i < oso->num_sections; i++)
381 {
382 asection *sect;
383 const char *sectname;
384 bfd_vma vma;
385
386 /* Empty slot. */
387 if (oso->symbols[i] == NULL)
388 continue;
389
390 if (oso->offsets[i])
391 vma = oso->offsets[i];
392 else
393 {
394 struct minimal_symbol *msym;
395 const char *name = oso->symbols[i]->name;
396
397 if (name[0] == leading_char)
398 ++name;
399
400 if (mach_o_debug_level > 3)
401 printf_unfiltered (_("resolve sect %s with %s\n"),
402 oso->symbols[i]->section->name,
403 oso->symbols[i]->name);
404 msym = lookup_minimal_symbol (name, NULL, main_objfile);
405 if (msym == NULL)
406 {
407 warning (_("can't find symbol '%s' in minsymtab"), name);
408 continue;
409 }
410 else
411 vma = SYMBOL_VALUE_ADDRESS (msym);
412 }
413 sectname = (char *)oso->symbols[i]->section->name;
414
415 sect = bfd_get_section_by_name (abfd, sectname);
416 if (sect == NULL)
417 {
418 warning (_("can't find section '%s' in OSO file %s"),
419 sectname, oso->name);
420 continue;
421 }
422 bfd_set_section_vma (abfd, sect, vma);
423
424 if (mach_o_debug_level > 1)
425 printf_unfiltered (_(" %s: %s\n"),
426 core_addr_to_string (vma), sectname);
427 }
428
429 /* Deal with the common symbols now, as they need special handing.
430 Doing it now sets them up so that we don't accidently try to
431 relocate them during the normal relocation phase. */
432 macho_relocate_common_syms (abfd, main_objfile);
433
434 /* Make sure that the filename was malloc'ed. The current filename comes
435 either from an OSO symbol name or from an archive name. Memory for both
436 is not managed by gdb. */
437 abfd->filename = xstrdup (abfd->filename);
438
439 /* We need to clear SYMFILE_MAINLINE to avoid interractive question
440 from symfile.c:symbol_file_add_with_addrs_or_offsets. */
441 objfile = symbol_file_add_from_bfd
442 (abfd, symfile_flags & ~(SYMFILE_MAINLINE | SYMFILE_VERBOSE), NULL,
443 main_objfile->flags & (OBJF_REORDERED | OBJF_SHARED
444 | OBJF_READNOW | OBJF_USERLOADED),
445 main_objfile);
446 }
447
448 /* Read symbols from the vector of oso files. */
449
450 static void
451 macho_symfile_read_all_oso (struct objfile *main_objfile, int symfile_flags)
452 {
453 int ix;
454 VEC (oso_el) *vec;
455 oso_el *oso;
456
457 vec = oso_vector;
458 oso_vector = NULL;
459
460 /* Sort oso by name so that files from libraries are gathered. */
461 qsort (VEC_address (oso_el, vec), VEC_length (oso_el, vec),
462 sizeof (oso_el), oso_el_compare_name);
463
464 for (ix = 0; VEC_iterate (oso_el, vec, ix, oso);)
465 {
466 int pfx_len;
467
468 /* Check if this is a library name. */
469 pfx_len = get_archive_prefix_len (oso->name);
470 if (pfx_len > 0)
471 {
472 bfd *archive_bfd;
473 bfd *member_bfd;
474 char *archive_name = XNEWVEC (char, pfx_len + 1);
475 int last_ix;
476 oso_el *oso2;
477 int ix2;
478
479 memcpy (archive_name, oso->name, pfx_len);
480 archive_name[pfx_len] = '\0';
481
482 /* Compute number of oso for this archive. */
483 for (last_ix = ix;
484 VEC_iterate (oso_el, vec, last_ix, oso2); last_ix++)
485 {
486 if (strncmp (oso2->name, archive_name, pfx_len) != 0)
487 break;
488 }
489
490 /* Open the archive and check the format. */
491 archive_bfd = bfd_openr (archive_name, gnutarget);
492 if (archive_bfd == NULL)
493 {
494 warning (_("Could not open OSO archive file \"%s\""),
495 archive_name);
496 ix = last_ix;
497 continue;
498 }
499 if (!bfd_check_format (archive_bfd, bfd_archive))
500 {
501 warning (_("OSO archive file \"%s\" not an archive."),
502 archive_name);
503 bfd_close (archive_bfd);
504 ix = last_ix;
505 continue;
506 }
507 member_bfd = bfd_openr_next_archived_file (archive_bfd, NULL);
508
509 if (member_bfd == NULL)
510 {
511 warning (_("Could not read archive members out of "
512 "OSO archive \"%s\""), archive_name);
513 bfd_close (archive_bfd);
514 ix = last_ix;
515 continue;
516 }
517
518 /* Load all oso in this library. */
519 while (member_bfd != NULL)
520 {
521 bfd *prev;
522 const char *member_name = member_bfd->filename;
523 int member_len = strlen (member_name);
524
525 /* If this member is referenced, add it as a symfile. */
526 for (ix2 = ix; ix2 < last_ix; ix2++)
527 {
528 oso2 = VEC_index (oso_el, vec, ix2);
529
530 if (oso2->name
531 && strlen (oso2->name) == pfx_len + member_len + 2
532 && !memcmp (member_name, oso2->name + pfx_len + 1,
533 member_len))
534 {
535 macho_add_oso_symfile (oso2, member_bfd,
536 main_objfile, symfile_flags);
537 oso2->name = NULL;
538 break;
539 }
540 }
541
542 prev = member_bfd;
543 member_bfd = bfd_openr_next_archived_file
544 (archive_bfd, member_bfd);
545
546 /* Free previous member if not referenced by an oso. */
547 if (ix2 >= last_ix)
548 bfd_close (prev);
549 }
550 for (ix2 = ix; ix2 < last_ix; ix2++)
551 {
552 oso_el *oso2 = VEC_index (oso_el, vec, ix2);
553
554 if (oso2->name != NULL)
555 warning (_("Could not find specified archive member "
556 "for OSO name \"%s\""), oso->name);
557 }
558 ix = last_ix;
559 }
560 else
561 {
562 bfd *abfd;
563
564 abfd = bfd_openr (oso->name, gnutarget);
565 if (!abfd)
566 warning (_("`%s': can't open to read symbols: %s."), oso->name,
567 bfd_errmsg (bfd_get_error ()));
568 else
569 macho_add_oso_symfile (oso, abfd, main_objfile, symfile_flags);
570
571 ix++;
572 }
573 }
574
575 for (ix = 0; VEC_iterate (oso_el, vec, ix, oso); ix++)
576 {
577 xfree (oso->symbols);
578 xfree (oso->offsets);
579 }
580 VEC_free (oso_el, vec);
581 }
582
583 /* DSYM (debug symbols) files contain the debug info of an executable.
584 This is a separate file created by dsymutil(1) and is similar to debug
585 link feature on ELF.
586 DSYM files are located in a subdirectory. Append DSYM_SUFFIX to the
587 executable name and the executable base name to get the DSYM file name. */
588 #define DSYM_SUFFIX ".dSYM/Contents/Resources/DWARF/"
589
590 /* Check if a dsym file exists for OBJFILE. If so, returns a bfd for it.
591 Return NULL if no valid dsym file is found. */
592
593 static bfd *
594 macho_check_dsym (struct objfile *objfile)
595 {
596 size_t name_len = strlen (objfile->name);
597 size_t dsym_len = strlen (DSYM_SUFFIX);
598 const char *base_name = lbasename (objfile->name);
599 size_t base_len = strlen (base_name);
600 char *dsym_filename = alloca (name_len + dsym_len + base_len + 1);
601 bfd *dsym_bfd;
602 bfd_mach_o_load_command *main_uuid;
603 bfd_mach_o_load_command *dsym_uuid;
604
605 strcpy (dsym_filename, objfile->name);
606 strcpy (dsym_filename + name_len, DSYM_SUFFIX);
607 strcpy (dsym_filename + name_len + dsym_len, base_name);
608
609 if (access (dsym_filename, R_OK) != 0)
610 return NULL;
611
612 if (bfd_mach_o_lookup_command (objfile->obfd,
613 BFD_MACH_O_LC_UUID, &main_uuid) == 0)
614 {
615 warning (_("can't find UUID in %s"), objfile->name);
616 return NULL;
617 }
618 dsym_filename = xstrdup (dsym_filename);
619 dsym_bfd = bfd_openr (dsym_filename, gnutarget);
620 if (dsym_bfd == NULL)
621 {
622 warning (_("can't open dsym file %s"), dsym_filename);
623 xfree (dsym_filename);
624 return NULL;
625 }
626
627 if (!bfd_check_format (dsym_bfd, bfd_object))
628 {
629 bfd_close (dsym_bfd);
630 warning (_("bad dsym file format: %s"), bfd_errmsg (bfd_get_error ()));
631 xfree (dsym_filename);
632 return NULL;
633 }
634
635 if (bfd_mach_o_lookup_command (dsym_bfd,
636 BFD_MACH_O_LC_UUID, &dsym_uuid) == 0)
637 {
638 warning (_("can't find UUID in %s"), dsym_filename);
639 bfd_close (dsym_bfd);
640 xfree (dsym_filename);
641 return NULL;
642 }
643 if (memcmp (dsym_uuid->command.uuid.uuid, main_uuid->command.uuid.uuid,
644 sizeof (main_uuid->command.uuid.uuid)))
645 {
646 warning (_("dsym file UUID doesn't match the one in %s"), objfile->name);
647 bfd_close (dsym_bfd);
648 xfree (dsym_filename);
649 return NULL;
650 }
651 return dsym_bfd;
652 }
653
654 static void
655 macho_symfile_read (struct objfile *objfile, int symfile_flags)
656 {
657 bfd *abfd = objfile->obfd;
658 struct cleanup *back_to;
659 CORE_ADDR offset;
660 long storage_needed;
661 bfd *dsym_bfd;
662
663 init_minimal_symbol_collection ();
664 back_to = make_cleanup_discard_minimal_symbols ();
665
666 /* Get symbols from the symbol table only if the file is an executable.
667 The symbol table of object files is not relocated and is expected to
668 be in the executable. */
669 if (bfd_get_file_flags (abfd) & (EXEC_P | DYNAMIC))
670 {
671 /* Process the normal symbol table first. */
672 storage_needed = bfd_get_symtab_upper_bound (objfile->obfd);
673 if (storage_needed < 0)
674 error (_("Can't read symbols from %s: %s"),
675 bfd_get_filename (objfile->obfd),
676 bfd_errmsg (bfd_get_error ()));
677
678 if (storage_needed > 0)
679 {
680 asymbol **symbol_table;
681 long symcount;
682
683 symbol_table = (asymbol **) xmalloc (storage_needed);
684 make_cleanup (xfree, symbol_table);
685 symcount = bfd_canonicalize_symtab (objfile->obfd, symbol_table);
686
687 if (symcount < 0)
688 error (_("Can't read symbols from %s: %s"),
689 bfd_get_filename (objfile->obfd),
690 bfd_errmsg (bfd_get_error ()));
691
692 macho_symtab_read (objfile, symcount, symbol_table);
693 }
694
695 install_minimal_symbols (objfile);
696
697 /* Try to read .eh_frame / .debug_frame. */
698 /* First, locate these sections. We ignore the result status
699 as it only checks for debug info. */
700 dwarf2_has_info (objfile, NULL);
701 dwarf2_build_frame_info (objfile);
702
703 /* Check for DSYM file. */
704 dsym_bfd = macho_check_dsym (objfile);
705 if (dsym_bfd != NULL)
706 {
707 int ix;
708 oso_el *oso;
709 struct bfd_section *asect, *dsect;
710
711 if (mach_o_debug_level > 0)
712 printf_unfiltered (_("dsym file found\n"));
713
714 /* Remove oso. They won't be used. */
715 for (ix = 0; VEC_iterate (oso_el, oso_vector, ix, oso); ix++)
716 {
717 xfree (oso->symbols);
718 xfree (oso->offsets);
719 }
720 VEC_free (oso_el, oso_vector);
721 oso_vector = NULL;
722
723 /* Set dsym section size. */
724 for (asect = objfile->obfd->sections, dsect = dsym_bfd->sections;
725 asect && dsect;
726 asect = asect->next, dsect = dsect->next)
727 {
728 if (strcmp (asect->name, dsect->name) != 0)
729 break;
730 bfd_set_section_size (dsym_bfd, dsect,
731 bfd_get_section_size (asect));
732 }
733
734 /* Add the dsym file as a separate file. */
735 symbol_file_add_separate (dsym_bfd, symfile_flags, objfile);
736
737 /* Don't try to read dwarf2 from main file or shared libraries. */
738 return;
739 }
740 }
741
742 if (dwarf2_has_info (objfile, NULL))
743 {
744 /* DWARF 2 sections */
745 dwarf2_build_psymtabs (objfile);
746 }
747
748 /* Do not try to read .eh_frame/.debug_frame as they are not relocated
749 and dwarf2_build_frame_info cannot deal with unrelocated sections. */
750
751 /* Then the oso. */
752 if (oso_vector != NULL)
753 macho_symfile_read_all_oso (objfile, symfile_flags);
754 }
755
756 static bfd_byte *
757 macho_symfile_relocate (struct objfile *objfile, asection *sectp,
758 bfd_byte *buf)
759 {
760 bfd *abfd = objfile->obfd;
761
762 /* We're only interested in sections with relocation
763 information. */
764 if ((sectp->flags & SEC_RELOC) == 0)
765 return NULL;
766
767 if (mach_o_debug_level > 0)
768 printf_unfiltered (_("Relocate section '%s' of %s\n"),
769 sectp->name, objfile->name);
770
771 return bfd_simple_get_relocated_section_contents (abfd, sectp, buf, NULL);
772 }
773
774 static void
775 macho_symfile_finish (struct objfile *objfile)
776 {
777 }
778
779 static void
780 macho_symfile_offsets (struct objfile *objfile,
781 struct section_addr_info *addrs)
782 {
783 unsigned int i;
784 unsigned int num_sections;
785 struct obj_section *osect;
786
787 /* Allocate section_offsets. */
788 objfile->num_sections = bfd_count_sections (objfile->obfd);
789 objfile->section_offsets = (struct section_offsets *)
790 obstack_alloc (&objfile->objfile_obstack,
791 SIZEOF_N_SECTION_OFFSETS (objfile->num_sections));
792 memset (objfile->section_offsets, 0,
793 SIZEOF_N_SECTION_OFFSETS (objfile->num_sections));
794
795 /* This code is run when we first add the objfile with
796 symfile_add_with_addrs_or_offsets, when "addrs" not "offsets" are
797 passed in. The place in symfile.c where the addrs are applied
798 depends on the addrs having section names. But in the dyld code
799 we build an anonymous array of addrs, so that code is a no-op.
800 Because of that, we have to apply the addrs to the sections here.
801 N.B. if an objfile slides after we've already created it, then it
802 goes through objfile_relocate. */
803
804 for (i = 0; i < addrs->num_sections; i++)
805 {
806 if (addrs->other[i].name == NULL)
807 continue;
808
809 ALL_OBJFILE_OSECTIONS (objfile, osect)
810 {
811 const char *bfd_sect_name = osect->the_bfd_section->name;
812
813 if (strcmp (bfd_sect_name, addrs->other[i].name) == 0)
814 {
815 obj_section_offset (osect) = addrs->other[i].addr;
816 break;
817 }
818 }
819 }
820
821 objfile->sect_index_text = 0;
822
823 ALL_OBJFILE_OSECTIONS (objfile, osect)
824 {
825 const char *bfd_sect_name = osect->the_bfd_section->name;
826 int sect_index = osect->the_bfd_section->index;
827
828 if (strncmp (bfd_sect_name, "LC_SEGMENT.", 11) == 0)
829 bfd_sect_name += 11;
830 if (strcmp (bfd_sect_name, "__TEXT") == 0
831 || strcmp (bfd_sect_name, "__TEXT.__text") == 0)
832 objfile->sect_index_text = sect_index;
833 }
834 }
835
836 static const struct sym_fns macho_sym_fns = {
837 bfd_target_mach_o_flavour,
838
839 macho_new_init, /* init anything gbl to entire symtab */
840 macho_symfile_init, /* read initial info, setup for sym_read() */
841 macho_symfile_read, /* read a symbol file into symtab */
842 NULL, /* sym_read_psymbols */
843 macho_symfile_finish, /* finished with file, cleanup */
844 macho_symfile_offsets, /* xlate external to internal form */
845 default_symfile_segments, /* Get segment information from a file. */
846 NULL,
847 macho_symfile_relocate, /* Relocate a debug section. */
848 &psym_functions
849 };
850
851 void
852 _initialize_machoread ()
853 {
854 add_symtab_fns (&macho_sym_fns);
855
856 add_setshow_zinteger_cmd ("mach-o", class_obscure,
857 &mach_o_debug_level,
858 _("Set if printing Mach-O symbols processing."),
859 _("Show if printing Mach-O symbols processing."),
860 NULL, NULL, NULL,
861 &setdebuglist, &showdebuglist);
862 }
This page took 0.047472 seconds and 5 git commands to generate.