mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
50d10658ee
bfd: * mach-o.c (bfd_mach_o_count_indirect_symbols): New. (bfd_mach_o_build_dysymtab_command): Populate indirect symbol table. * mach-o.h (bfd_mach_o_asymbol): Move declaration to start of the file. (bfd_mach_o_section): Add indirect_syms field. gas: * config/obj-macho.c (obj_mach_o_set_symbol_qualifier): Switch off lazy when the symbol is private_extern. (obj_mach_o_indirect_sym): New type. (obj_mach_o_indirect_symbol): New. (mach_o_pseudo_table): Use obj_mach_o_indirect_symbol. (obj_macho_frob_label): Adjust to avoid adding bsyms for locals. (obj_macho_frob_label): Likewise. Adjust external and comm symbol tests. (obj_mach_o_set_indirect_symbols): New. (obj_mach_o_frob_file_after_relocs): New. *config/obj-macho.h (obj_frob_file_after_relocs): Define. (obj_mach_o_frob_file_after_relocs): Declare. include/mach-o: * loader.h (BFD_MACH_O_INDIRECT_SYM_LOCAL): New. (BFD_MACH_O_INDIRECT_SYM_ABS): New gas/testsuite: * gas/mach-o/dysymtab-2.d: New. * gas/mach-o/err-syms-4.s: New. * gas/mach-o/err-syms-5.s: New. * gas/mach-o/err-syms-6.s: New. * gas/mach-o/symbols-6-64.d: New. * gas/mach-o/symbols-6-64.s: New. * gas/mach-o/symbols-6.d: New. * gas/mach-o/symbols-6.s: New.
74 lines
2.3 KiB
C
74 lines
2.3 KiB
C
/* Mach-O object file format for gas, the assembler.
|
|
Copyright 2009, 2011, 2012 Free Software Foundation, Inc.
|
|
|
|
This file is part of GAS, the GNU Assembler.
|
|
|
|
GAS is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation; either version 3,
|
|
or (at your option) any later version.
|
|
|
|
GAS is distributed in the hope that it will be useful, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
|
|
the GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with GAS; see the file COPYING. If not, write to the Free
|
|
Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
|
|
02110-1301, USA. */
|
|
|
|
#ifndef _OBJ_MACH_O_H
|
|
#define _OBJ_MACH_O_H
|
|
|
|
/* Tag to validate Mach-O object file format processing */
|
|
#define OBJ_MACH_O 1
|
|
|
|
#include "bfd/mach-o.h"
|
|
|
|
#include "targ-cpu.h"
|
|
|
|
#define OUTPUT_FLAVOR bfd_target_mach_o_flavour
|
|
|
|
/* We want to control how the sections are pre-defined on startup. */
|
|
#define obj_begin() mach_o_begin ()
|
|
extern void mach_o_begin (void);
|
|
|
|
/* All our align expressions are power of two. */
|
|
#define USE_ALIGN_PTWO
|
|
|
|
/* Common symbols can carry alignment information. */
|
|
#ifndef S_SET_ALIGN
|
|
#define S_SET_ALIGN(S,V) do {\
|
|
bfd_mach_o_asymbol *___s = (bfd_mach_o_asymbol *) symbol_get_bfdsym (S);\
|
|
___s->n_desc = (___s->n_desc & 0xf0ff) | (((V) & 0x0f) << 8);\
|
|
} while (0)
|
|
#endif
|
|
|
|
extern const pseudo_typeS mach_o_pseudo_table[];
|
|
|
|
#ifndef obj_pop_insert
|
|
#define obj_pop_insert() pop_insert (mach_o_pseudo_table)
|
|
#endif
|
|
|
|
#define obj_sec_sym_ok_for_reloc(SEC) 1
|
|
|
|
#define obj_read_begin_hook() {;}
|
|
#define obj_symbol_new_hook(s) {;}
|
|
|
|
#define obj_frob_label(s) obj_macho_frob_label(s)
|
|
extern void obj_macho_frob_label (struct symbol *);
|
|
|
|
#define obj_frob_symbol(s, punt) punt = obj_macho_frob_symbol(s)
|
|
extern int obj_macho_frob_symbol (struct symbol *);
|
|
|
|
#define obj_frob_file_after_relocs obj_mach_o_frob_file_after_relocs
|
|
extern void obj_mach_o_frob_file_after_relocs (void);
|
|
|
|
#define EMIT_SECTION_SYMBOLS 0
|
|
|
|
#define OBJ_PROCESS_STAB(SEG,W,S,T,O,D) obj_mach_o_process_stab(W,S,T,O,D)
|
|
extern void obj_mach_o_process_stab (int, const char *,int, int, int);
|
|
|
|
#endif /* _OBJ_MACH_O_H */
|