1999-05-03 07:29:11 +00:00
|
|
|
|
/* as.c - GAS main program.
|
2022-01-02 09:00:17 +10:30
|
|
|
|
Copyright (C) 1987-2022 Free Software Foundation, Inc.
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
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
|
2007-07-03 11:01:12 +00:00
|
|
|
|
the Free Software Foundation; either version 3, or (at your option)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
any later version.
|
|
|
|
|
|
2007-07-03 11:01:12 +00:00
|
|
|
|
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.
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
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
|
2005-05-05 09:13:19 +00:00
|
|
|
|
Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
|
|
|
|
|
02110-1301, USA. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2000-08-31 23:17:47 +00:00
|
|
|
|
/* Main program for AS; a 32-bit assembler of GNU.
|
2003-10-04 12:40:12 +00:00
|
|
|
|
Understands command arguments.
|
|
|
|
|
Has a few routines that don't fit in other modules because they
|
|
|
|
|
are shared.
|
2013-01-10 19:51:55 +00:00
|
|
|
|
|
2003-10-04 12:40:12 +00:00
|
|
|
|
bugs
|
2013-01-10 19:51:55 +00:00
|
|
|
|
|
2003-10-04 12:40:12 +00:00
|
|
|
|
: initialisers
|
|
|
|
|
Since no-one else says they will support them in future: I
|
|
|
|
|
don't support them now. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
#define COMMON
|
|
|
|
|
|
2017-11-23 12:30:47 -08:00
|
|
|
|
/* Disable code to set FAKE_LABEL_NAME in obj-multi.h, to avoid circular
|
|
|
|
|
reference. */
|
|
|
|
|
#define INITIALIZING_EMULS
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
#include "as.h"
|
|
|
|
|
#include "subsegs.h"
|
|
|
|
|
#include "output-file.h"
|
|
|
|
|
#include "sb.h"
|
|
|
|
|
#include "macro.h"
|
2000-12-05 00:56:09 +00:00
|
|
|
|
#include "dwarf2dbg.h"
|
2003-05-20 07:58:07 +00:00
|
|
|
|
#include "dw2gencfi.h"
|
2002-10-14 12:08:47 +00:00
|
|
|
|
#include "bfdver.h"
|
2017-11-22 11:20:48 -08:00
|
|
|
|
#include "write.h"
|
2002-10-14 12:08:47 +00:00
|
|
|
|
|
1999-06-10 21:35:13 +00:00
|
|
|
|
#ifdef HAVE_ITBL_CPU
|
|
|
|
|
#include "itbl-ops.h"
|
|
|
|
|
#else
|
1999-05-03 07:29:11 +00:00
|
|
|
|
#define itbl_init()
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-04-08 12:47:08 +00:00
|
|
|
|
#ifdef USING_CGEN
|
|
|
|
|
/* Perform any cgen specific initialisation for gas. */
|
2003-10-04 12:40:12 +00:00
|
|
|
|
extern void gas_cgen_begin (void);
|
2003-04-08 12:47:08 +00:00
|
|
|
|
#endif
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2003-10-04 12:40:12 +00:00
|
|
|
|
/* We build a list of defsyms as we read the options, and then define
|
|
|
|
|
them after we have initialized everything. */
|
|
|
|
|
struct defsym_list
|
|
|
|
|
{
|
|
|
|
|
struct defsym_list *next;
|
|
|
|
|
char *name;
|
|
|
|
|
valueT value;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2000-08-31 23:17:47 +00:00
|
|
|
|
/* True if a listing is wanted. */
|
|
|
|
|
int listing;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
/* Type of debugging to generate. */
|
2000-11-17 08:47:52 +00:00
|
|
|
|
enum debug_info_type debug_type = DEBUG_UNSPECIFIED;
|
2003-10-08 14:37:20 +00:00
|
|
|
|
int use_gnu_debug_info_extensions = 0;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2004-08-17 12:19:58 +00:00
|
|
|
|
#ifndef MD_DEBUG_FORMAT_SELECTOR
|
|
|
|
|
#define MD_DEBUG_FORMAT_SELECTOR NULL
|
|
|
|
|
#endif
|
|
|
|
|
static enum debug_info_type (*md_debug_format_selector) (int *) = MD_DEBUG_FORMAT_SELECTOR;
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
/* Maximum level of macro nesting. */
|
|
|
|
|
int max_macro_nest = 100;
|
|
|
|
|
|
2000-08-31 23:17:47 +00:00
|
|
|
|
/* argv[0] */
|
2005-04-29 00:22:29 +00:00
|
|
|
|
static char * myname;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
/* The default obstack chunk size. If we set this to zero, the
|
|
|
|
|
obstack code will use whatever will fit in a 4096 byte block. */
|
|
|
|
|
int chunksize = 0;
|
|
|
|
|
|
|
|
|
|
/* To monitor memory allocation more effectively, make this non-zero.
|
|
|
|
|
Then the chunk sizes for gas and bfd will be reduced. */
|
|
|
|
|
int debug_memory = 0;
|
|
|
|
|
|
2003-05-20 07:58:07 +00:00
|
|
|
|
/* Enable verbose mode. */
|
|
|
|
|
int verbose = 0;
|
|
|
|
|
|
2019-11-04 23:03:10 +00:00
|
|
|
|
/* Which version of DWARF CIE to produce. This default value of -1
|
|
|
|
|
indicates that this value has not been set yet, a default value is
|
|
|
|
|
provided in dwarf2_init. A different value can also be supplied by the
|
|
|
|
|
command line flag --gdwarf-cie-version, or by a target in
|
|
|
|
|
MD_AFTER_PARSE_ARGS. */
|
|
|
|
|
int flag_dwarf_cie_version = -1;
|
2019-11-04 12:27:45 +00:00
|
|
|
|
|
2020-07-30 16:23:09 +01:00
|
|
|
|
/* The maximum level of DWARF DEBUG information we should manufacture.
|
|
|
|
|
This defaults to 3 unless overridden by a command line option. */
|
|
|
|
|
unsigned int dwarf_level = 3;
|
2020-03-06 14:52:14 +00:00
|
|
|
|
|
Properly implement STT_COMMON
The BFD configure option, --enable-elf-stt-common, can't be to used to
verify STT_COMMON implementation with the normal binutils build. Instead,
this patch removes it from BFD. It adds --elf-stt-common=[no|yes] to ELF
assembler/objcopy and adds -z common/-z nocommon to ld.
A configure option, --enable-elf-stt-common, is added to gas to specify
whether ELF assembler should generate common symbols with the STT_COMMON
type by default.
Since BSF_KEEP_G is never used, it is renamed to BSF_ELF_COMMON for ELF
common symbols.
bfd/
PR ld/19645
* bfd.c (bfd): Change flags to 20 bits.
(BFD_CONVERT_ELF_COMMON): New.
(BFD_USE_ELF_STT_COMMON): Likewise.
(BFD_FLAGS_SAVED): Add BFD_CONVERT_ELF_COMMON and
BFD_USE_ELF_STT_COMMON.
(BFD_FLAGS_FOR_BFD_USE_MASK): Likewise.
* configure.ac: Remove --enable-elf-stt-common.
* elf.c (swap_out_syms): Choose STT_COMMON or STT_OBJECT for
common symbol depending on BFD_CONVERT_ELF_COMMON and
BFD_USE_ELF_STT_COMMON.
* elfcode.h (elf_slurp_symbol_table): Set BSF_ELF_COMMON for
STT_COMMON.
* elflink.c (bfd_elf_link_mark_dynamic_symbol): Also check
STT_COMMON.
(elf_link_convert_common_type): New function.
(elf_link_output_extsym): Choose STT_COMMON or STT_OBJECT for
common symbol depending on BFD_CONVERT_ELF_COMMON and
BFD_USE_ELF_STT_COMMON. Set sym.st_info after sym.st_shndx.
* elfxx-target.h (TARGET_BIG_SYM): Add BFD_CONVERT_ELF_COMMON
and BFD_USE_ELF_STT_COMMON to object_flags.
(TARGET_LITTLE_SYM): Likewise.
* syms.c (BSF_KEEP_G): Renamed to ...
(BSF_ELF_COMMON): This.
* bfd-in2.h: Regenerated.
* config.in: Likewise.
* configure: Likewise.
binutils/
PR ld/19645
* NEWS: Mention --elf-stt-common= for objcopy.
* doc/binutils.texi: Document --elf-stt-common= for objcopy.
* objcopy.c (do_elf_stt_common): New.
(command_line_switch): Add OPTION_ELF_STT_COMMON.
(copy_options): Add --elf-stt-common=.
(copy_usage): Add --elf-stt-common=.
(copy_object): Also check do_elf_stt_common for ELF targets.
(copy_file): Handle do_elf_stt_common.
(copy_main): Handle OPTION_ELF_STT_COMMON.
* readelf.c (apply_relocations): Support STT_COMMON.
* testsuite/binutils-all/common-1.s: New file.
* testsuite/binutils-all/common-1a.d: Likewise.
* testsuite/binutils-all/common-1b.d: Likewise.
* testsuite/binutils-all/common-1c.d: Likewise.
* testsuite/binutils-all/common-1d.d: Likewise.
* testsuite/binutils-all/common-1e.d: Likewise.
* testsuite/binutils-all/common-1f.d: Likewise.
* testsuite/binutils-all/common-2.s: Likewise.
* testsuite/binutils-all/common-2a.d: Likewise.
* testsuite/binutils-all/common-2b.d: Likewise.
* testsuite/binutils-all/common-2c.d: Likewise.
* testsuite/binutils-all/common-2d.d: Likewise.
* testsuite/binutils-all/common-2e.d: Likewise.
* testsuite/binutils-all/common-2f.d: Likewise.
* testsuite/binutils-all/objcopy.exp
(objcopy_test_elf_common_symbols): New proc.
Run objcopy_test_elf_common_symbols for ELF targets
gas/
PR ld/19645
* NEWS: Mention --enable-elf-stt-common and --elf-stt-common=
for ELF assemblers.
* as.c (flag_use_elf_stt_common): New.
(show_usage): Add --elf-stt-common=.
(option_values): Add OPTION_ELF_STT_COMMON.
(std_longopts): Add --elf-stt-common=.
(parse_args): Handle --elf-stt-common=.
* as.h (flag_use_elf_stt_common): New.
* config.in: Regenerated.
* configure: Likewise.
* configure.ac: Add --enable-elf-stt-common and define
DEFAULT_GENERATE_ELF_STT_COMMON.
* gas/write.c (write_object_file): Set BFD_CONVERT_ELF_COMMON
and BFD_USE_ELF_STT_COMMON if flag_use_elf_stt_common is set.
* doc/as.texinfo: Document --elf-stt-common=.
* testsuite/gas/elf/common3.s: New file.
* testsuite/gas/elf/common3a.d: Likewise.
* testsuite/gas/elf/common3b.d: Likewise.
* testsuite/gas/elf/common4.s: Likewise.
* testsuite/gas/elf/common4a.d: Likewise.
* testsuite/gas/elf/common4b.d: Likewise.
* testsuite/gas/i386/dw2-compress-3b.d: Likewise.
* testsuite/gas/i386/dw2-compressed-3b.d: Likewise.
* testsuite/gas/elf/elf.exp: Run common3a, common3b, common4a
and common4b.
* testsuite/gas/i386/dw2-compress-3.d: Renamed to ...
* testsuite/gas/i386/dw2-compress-3a.d: This. Pass
--elf-stt-common=no to as.
* testsuite/gas/i386/dw2-compressed-3.d: Renamed to ...
* testsuite/gas/i386/dw2-compressed-3a.d: This. Pass
--elf-stt-common=no to as.
* testsuite/gas/i386/i386.exp: Run dw2-compress-3a,
dw2-compress-3b, dw2-compressed-3a and dw2-compressed-3b instead
of dw2-compress-3 and dw2-compressed-3.
include/
PR ld/19645
* bfdlink.h (bfd_link_elf_stt_common): New enum.
(bfd_link_info): Add elf_stt_common.
ld/
PR ld/19645
* NEWS: Mention -z common/-z nocommon for ELF targets.
* emultempl/elf32.em (gld${EMULATION_NAME}_handle_option): Handle
-z common and -z nocommon.
* ld.texinfo: Document -z common/-z nocommon.
* lexsup.c (elf_shlib_list_options): Add -z common/-z nocommon.
* testsuite/ld-elf/tls_common.exp: Test --elf-stt-common=no and
--elf-stt-common=yes with assembler.
* testsuite/ld-elfcomm/common-1.s: New file.
* testsuite/ld-elfcomm/common-1a.d: Likewise.
* testsuite/ld-elfcomm/common-1b.d: Likewise.
* testsuite/ld-elfcomm/common-1c.d: Likewise.
* testsuite/ld-elfcomm/common-1d.d: Likewise.
* testsuite/ld-elfcomm/common-1e.d: Likewise.
* testsuite/ld-elfcomm/common-1f.d: Likewise.
* testsuite/ld-elfcomm/common-2.s: Likewise.
* testsuite/ld-elfcomm/common-2a.d: Likewise.
* testsuite/ld-elfcomm/common-2b.d: Likewise.
* testsuite/ld-elfcomm/common-2c.d: Likewise.
* testsuite/ld-elfcomm/common-2d.d: Likewise.
* testsuite/ld-elfcomm/common-2e.d: Likewise.
* testsuite/ld-elfcomm/common-2f.d: Likewise.
* testsuite/ld-elfcomm/common-3a.rd: Likewise.
* testsuite/ld-elfcomm/common-3b.rd: Likewise.
* testsuite/ld-i386/pr19645.d: Likewise.
* testsuite/ld-i386/pr19645.s: Likewise.
* testsuite/ld-x86-64/largecomm-1.s: Likewise.
* testsuite/ld-x86-64/largecomm-1a.d: Likewise.
* testsuite/ld-x86-64/largecomm-1b.d: Likewise.
* testsuite/ld-x86-64/largecomm-1c.d: Likewise.
* testsuite/ld-x86-64/largecomm-1d.d: Likewise.
* testsuite/ld-x86-64/largecomm-1e.d: Likewise.
* testsuite/ld-x86-64/largecomm-1f.d: Likewise.
* testsuite/ld-x86-64/pr19645.d: Likewise.
* testsuite/ld-x86-64/pr19645.s: Likewise.
* testsuite/ld-elfcomm/elfcomm.exp: Test --elf-stt-common=yes
with assembler.
(assembler_generates_commons): Removed.
Run -z common/-z nocommon tests. Run *.d tests.
* testsuite/ld-i386/i386.exp: Run pr19645.
* testsuite/ld-x86-64/x86-64.exp: Likewise.
* testsuite/ld-x86-64/dwarfreloc.exp: Test --elf-stt-common with
assembler. Test STT_COMMON with readelf.
2016-02-22 09:18:52 -08:00
|
|
|
|
#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
|
|
|
|
|
int flag_use_elf_stt_common = DEFAULT_GENERATE_ELF_STT_COMMON;
|
Use bool in gas
* as.h (POISON_BFD_BOOLEAN): Define.
* as.c, * as.h, * atof-generic.c, * config/atof-ieee.c,
* config/bfin-aux.h, * config/obj-coff.c, * config/obj-ecoff.c,
* config/obj-elf.c, * config/obj-elf.h, * config/obj-som.c,
* config/tc-aarch64.c, * config/tc-alpha.c, * config/tc-arc.c,
* config/tc-arc.h, * config/tc-arm.c, * config/tc-arm.h,
* config/tc-avr.c, * config/tc-avr.h, * config/tc-bfin.c,
* config/tc-bfin.h, * config/tc-bpf.c, * config/tc-cris.c,
* config/tc-csky.c, * config/tc-csky.h, * config/tc-d10v.c,
* config/tc-d10v.h, * config/tc-d30v.c, * config/tc-d30v.h,
* config/tc-dlx.c, * config/tc-dlx.h, * config/tc-epiphany.c,
* config/tc-epiphany.h, * config/tc-fr30.c, * config/tc-fr30.h,
* config/tc-frv.c, * config/tc-frv.h, * config/tc-ft32.c,
* config/tc-ft32.h, * config/tc-h8300.c, * config/tc-hppa.c,
* config/tc-i386-intel.c, * config/tc-i386.c, * config/tc-ia64.c,
* config/tc-ip2k.c, * config/tc-iq2000.c, * config/tc-iq2000.h,
* config/tc-lm32.c, * config/tc-lm32.h, * config/tc-m32c.c,
* config/tc-m32c.h, * config/tc-m32r.c, * config/tc-m32r.h,
* config/tc-m68hc11.c, * config/tc-m68k.c, * config/tc-mcore.c,
* config/tc-mcore.h, * config/tc-mep.c, * config/tc-mep.h,
* config/tc-metag.c, * config/tc-metag.h,
* config/tc-microblaze.c, * config/tc-mips.c, * config/tc-mips.h,
* config/tc-mmix.c, * config/tc-mn10200.c, * config/tc-mn10300.c,
* config/tc-mn10300.h, * config/tc-moxie.c, * config/tc-msp430.c,
* config/tc-msp430.h, * config/tc-mt.c, * config/tc-mt.h,
* config/tc-nds32.c, * config/tc-nds32.h, * config/tc-nios2.c,
* config/tc-ns32k.c, * config/tc-or1k.c, * config/tc-or1k.h,
* config/tc-pdp11.c, * config/tc-ppc.c, * config/tc-pru.c,
* config/tc-pru.h, * config/tc-riscv.c, * config/tc-riscv.h,
* config/tc-rx.c, * config/tc-rx.h, * config/tc-s12z.c,
* config/tc-s12z.h, * config/tc-s390.c, * config/tc-score.c,
* config/tc-score.h, * config/tc-score7.c, * config/tc-sh.c,
* config/tc-sh.h, * config/tc-spu.c, * config/tc-tic54x.c,
* config/tc-tic6x.c, * config/tc-tic6x.h, * config/tc-tilegx.c,
* config/tc-tilepro.c, * config/tc-v850.c, * config/tc-v850.h,
* config/tc-visium.c, * config/tc-visium.h, * config/tc-wasm32.c,
* config/tc-wasm32.h, * config/tc-xc16x.c, * config/tc-xgate.c,
* config/tc-xstormy16.c, * config/tc-xstormy16.h,
* config/tc-xtensa.c, * config/tc-xtensa.h, * config/tc-z80.c,
* config/tc-z8k.c, * config/xtensa-istack.h,
* config/xtensa-relax.c, * config/xtensa-relax.h, * dw2gencfi.c,
* dwarf2dbg.c, * dwarf2dbg.h, * expr.c, * expr.h, * frags.c,
* frags.h, * listing.c, * macro.c, * output-file.c, * read.c,
* read.h, * stabs.c, * symbols.c, * write.c: Replace bfd_boolean
with bool, FALSE with false, and TRUE with true.
2021-03-31 10:42:05 +10:30
|
|
|
|
bool flag_generate_build_notes = DEFAULT_GENERATE_BUILD_NOTES;
|
Properly implement STT_COMMON
The BFD configure option, --enable-elf-stt-common, can't be to used to
verify STT_COMMON implementation with the normal binutils build. Instead,
this patch removes it from BFD. It adds --elf-stt-common=[no|yes] to ELF
assembler/objcopy and adds -z common/-z nocommon to ld.
A configure option, --enable-elf-stt-common, is added to gas to specify
whether ELF assembler should generate common symbols with the STT_COMMON
type by default.
Since BSF_KEEP_G is never used, it is renamed to BSF_ELF_COMMON for ELF
common symbols.
bfd/
PR ld/19645
* bfd.c (bfd): Change flags to 20 bits.
(BFD_CONVERT_ELF_COMMON): New.
(BFD_USE_ELF_STT_COMMON): Likewise.
(BFD_FLAGS_SAVED): Add BFD_CONVERT_ELF_COMMON and
BFD_USE_ELF_STT_COMMON.
(BFD_FLAGS_FOR_BFD_USE_MASK): Likewise.
* configure.ac: Remove --enable-elf-stt-common.
* elf.c (swap_out_syms): Choose STT_COMMON or STT_OBJECT for
common symbol depending on BFD_CONVERT_ELF_COMMON and
BFD_USE_ELF_STT_COMMON.
* elfcode.h (elf_slurp_symbol_table): Set BSF_ELF_COMMON for
STT_COMMON.
* elflink.c (bfd_elf_link_mark_dynamic_symbol): Also check
STT_COMMON.
(elf_link_convert_common_type): New function.
(elf_link_output_extsym): Choose STT_COMMON or STT_OBJECT for
common symbol depending on BFD_CONVERT_ELF_COMMON and
BFD_USE_ELF_STT_COMMON. Set sym.st_info after sym.st_shndx.
* elfxx-target.h (TARGET_BIG_SYM): Add BFD_CONVERT_ELF_COMMON
and BFD_USE_ELF_STT_COMMON to object_flags.
(TARGET_LITTLE_SYM): Likewise.
* syms.c (BSF_KEEP_G): Renamed to ...
(BSF_ELF_COMMON): This.
* bfd-in2.h: Regenerated.
* config.in: Likewise.
* configure: Likewise.
binutils/
PR ld/19645
* NEWS: Mention --elf-stt-common= for objcopy.
* doc/binutils.texi: Document --elf-stt-common= for objcopy.
* objcopy.c (do_elf_stt_common): New.
(command_line_switch): Add OPTION_ELF_STT_COMMON.
(copy_options): Add --elf-stt-common=.
(copy_usage): Add --elf-stt-common=.
(copy_object): Also check do_elf_stt_common for ELF targets.
(copy_file): Handle do_elf_stt_common.
(copy_main): Handle OPTION_ELF_STT_COMMON.
* readelf.c (apply_relocations): Support STT_COMMON.
* testsuite/binutils-all/common-1.s: New file.
* testsuite/binutils-all/common-1a.d: Likewise.
* testsuite/binutils-all/common-1b.d: Likewise.
* testsuite/binutils-all/common-1c.d: Likewise.
* testsuite/binutils-all/common-1d.d: Likewise.
* testsuite/binutils-all/common-1e.d: Likewise.
* testsuite/binutils-all/common-1f.d: Likewise.
* testsuite/binutils-all/common-2.s: Likewise.
* testsuite/binutils-all/common-2a.d: Likewise.
* testsuite/binutils-all/common-2b.d: Likewise.
* testsuite/binutils-all/common-2c.d: Likewise.
* testsuite/binutils-all/common-2d.d: Likewise.
* testsuite/binutils-all/common-2e.d: Likewise.
* testsuite/binutils-all/common-2f.d: Likewise.
* testsuite/binutils-all/objcopy.exp
(objcopy_test_elf_common_symbols): New proc.
Run objcopy_test_elf_common_symbols for ELF targets
gas/
PR ld/19645
* NEWS: Mention --enable-elf-stt-common and --elf-stt-common=
for ELF assemblers.
* as.c (flag_use_elf_stt_common): New.
(show_usage): Add --elf-stt-common=.
(option_values): Add OPTION_ELF_STT_COMMON.
(std_longopts): Add --elf-stt-common=.
(parse_args): Handle --elf-stt-common=.
* as.h (flag_use_elf_stt_common): New.
* config.in: Regenerated.
* configure: Likewise.
* configure.ac: Add --enable-elf-stt-common and define
DEFAULT_GENERATE_ELF_STT_COMMON.
* gas/write.c (write_object_file): Set BFD_CONVERT_ELF_COMMON
and BFD_USE_ELF_STT_COMMON if flag_use_elf_stt_common is set.
* doc/as.texinfo: Document --elf-stt-common=.
* testsuite/gas/elf/common3.s: New file.
* testsuite/gas/elf/common3a.d: Likewise.
* testsuite/gas/elf/common3b.d: Likewise.
* testsuite/gas/elf/common4.s: Likewise.
* testsuite/gas/elf/common4a.d: Likewise.
* testsuite/gas/elf/common4b.d: Likewise.
* testsuite/gas/i386/dw2-compress-3b.d: Likewise.
* testsuite/gas/i386/dw2-compressed-3b.d: Likewise.
* testsuite/gas/elf/elf.exp: Run common3a, common3b, common4a
and common4b.
* testsuite/gas/i386/dw2-compress-3.d: Renamed to ...
* testsuite/gas/i386/dw2-compress-3a.d: This. Pass
--elf-stt-common=no to as.
* testsuite/gas/i386/dw2-compressed-3.d: Renamed to ...
* testsuite/gas/i386/dw2-compressed-3a.d: This. Pass
--elf-stt-common=no to as.
* testsuite/gas/i386/i386.exp: Run dw2-compress-3a,
dw2-compress-3b, dw2-compressed-3a and dw2-compressed-3b instead
of dw2-compress-3 and dw2-compressed-3.
include/
PR ld/19645
* bfdlink.h (bfd_link_elf_stt_common): New enum.
(bfd_link_info): Add elf_stt_common.
ld/
PR ld/19645
* NEWS: Mention -z common/-z nocommon for ELF targets.
* emultempl/elf32.em (gld${EMULATION_NAME}_handle_option): Handle
-z common and -z nocommon.
* ld.texinfo: Document -z common/-z nocommon.
* lexsup.c (elf_shlib_list_options): Add -z common/-z nocommon.
* testsuite/ld-elf/tls_common.exp: Test --elf-stt-common=no and
--elf-stt-common=yes with assembler.
* testsuite/ld-elfcomm/common-1.s: New file.
* testsuite/ld-elfcomm/common-1a.d: Likewise.
* testsuite/ld-elfcomm/common-1b.d: Likewise.
* testsuite/ld-elfcomm/common-1c.d: Likewise.
* testsuite/ld-elfcomm/common-1d.d: Likewise.
* testsuite/ld-elfcomm/common-1e.d: Likewise.
* testsuite/ld-elfcomm/common-1f.d: Likewise.
* testsuite/ld-elfcomm/common-2.s: Likewise.
* testsuite/ld-elfcomm/common-2a.d: Likewise.
* testsuite/ld-elfcomm/common-2b.d: Likewise.
* testsuite/ld-elfcomm/common-2c.d: Likewise.
* testsuite/ld-elfcomm/common-2d.d: Likewise.
* testsuite/ld-elfcomm/common-2e.d: Likewise.
* testsuite/ld-elfcomm/common-2f.d: Likewise.
* testsuite/ld-elfcomm/common-3a.rd: Likewise.
* testsuite/ld-elfcomm/common-3b.rd: Likewise.
* testsuite/ld-i386/pr19645.d: Likewise.
* testsuite/ld-i386/pr19645.s: Likewise.
* testsuite/ld-x86-64/largecomm-1.s: Likewise.
* testsuite/ld-x86-64/largecomm-1a.d: Likewise.
* testsuite/ld-x86-64/largecomm-1b.d: Likewise.
* testsuite/ld-x86-64/largecomm-1c.d: Likewise.
* testsuite/ld-x86-64/largecomm-1d.d: Likewise.
* testsuite/ld-x86-64/largecomm-1e.d: Likewise.
* testsuite/ld-x86-64/largecomm-1f.d: Likewise.
* testsuite/ld-x86-64/pr19645.d: Likewise.
* testsuite/ld-x86-64/pr19645.s: Likewise.
* testsuite/ld-elfcomm/elfcomm.exp: Test --elf-stt-common=yes
with assembler.
(assembler_generates_commons): Removed.
Run -z common/-z nocommon tests. Run *.d tests.
* testsuite/ld-i386/i386.exp: Run pr19645.
* testsuite/ld-x86-64/x86-64.exp: Likewise.
* testsuite/ld-x86-64/dwarfreloc.exp: Test --elf-stt-common with
assembler. Test STT_COMMON with readelf.
2016-02-22 09:18:52 -08:00
|
|
|
|
#endif
|
|
|
|
|
|
2003-10-04 12:40:12 +00:00
|
|
|
|
segT reg_section;
|
|
|
|
|
segT expr_section;
|
|
|
|
|
segT text_section;
|
|
|
|
|
segT data_section;
|
|
|
|
|
segT bss_section;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2003-10-04 12:40:12 +00:00
|
|
|
|
/* Name of listing file. */
|
|
|
|
|
static char *listing_filename = NULL;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
static struct defsym_list *defsyms;
|
|
|
|
|
|
2003-10-04 12:40:12 +00:00
|
|
|
|
static long start_time;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2004-08-13 19:53:52 +00:00
|
|
|
|
static int flag_macro_alternate;
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
#ifdef USE_EMULATIONS
|
|
|
|
|
#define EMULATION_ENVIRON "AS_EMULATION"
|
|
|
|
|
|
|
|
|
|
extern struct emulation mipsbelf, mipslelf, mipself;
|
2000-01-26 22:48:31 +00:00
|
|
|
|
extern struct emulation i386coff, i386elf, i386aout;
|
2000-07-20 17:45:28 +00:00
|
|
|
|
extern struct emulation crisaout, criself;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
static struct emulation *const emulations[] = { EMULATIONS };
|
|
|
|
|
static const int n_emulations = sizeof (emulations) / sizeof (emulations[0]);
|
|
|
|
|
|
|
|
|
|
static void
|
2003-10-04 12:40:12 +00:00
|
|
|
|
select_emulation_mode (int argc, char **argv)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
2016-02-25 16:55:21 +00:00
|
|
|
|
char *p;
|
|
|
|
|
const char *em = NULL;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
for (i = 1; i < argc; i++)
|
2021-03-22 13:33:04 +01:00
|
|
|
|
if (startswith (argv[i], "--em"))
|
1999-05-03 07:29:11 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
if (i == argc)
|
|
|
|
|
goto do_default;
|
|
|
|
|
|
|
|
|
|
p = strchr (argv[i], '=');
|
|
|
|
|
if (p)
|
|
|
|
|
p++;
|
|
|
|
|
else
|
2000-08-31 23:17:47 +00:00
|
|
|
|
p = argv[i + 1];
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
if (!p || !*p)
|
|
|
|
|
as_fatal (_("missing emulation mode name"));
|
|
|
|
|
em = p;
|
|
|
|
|
|
|
|
|
|
do_default:
|
|
|
|
|
if (em == 0)
|
|
|
|
|
em = getenv (EMULATION_ENVIRON);
|
|
|
|
|
if (em == 0)
|
|
|
|
|
em = DEFAULT_EMULATION;
|
|
|
|
|
|
|
|
|
|
if (em)
|
|
|
|
|
{
|
|
|
|
|
for (i = 0; i < n_emulations; i++)
|
|
|
|
|
if (!strcmp (emulations[i]->name, em))
|
|
|
|
|
break;
|
|
|
|
|
if (i == n_emulations)
|
|
|
|
|
as_fatal (_("unrecognized emulation name `%s'"), em);
|
|
|
|
|
this_emulation = emulations[i];
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
this_emulation = emulations[0];
|
|
|
|
|
|
|
|
|
|
this_emulation->init ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char *
|
2003-10-04 12:40:12 +00:00
|
|
|
|
default_emul_bfd_name (void)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
|
|
|
|
abort ();
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2003-10-04 12:40:12 +00:00
|
|
|
|
common_emul_init (void)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
|
|
|
|
this_format = this_emulation->format;
|
|
|
|
|
|
|
|
|
|
if (this_emulation->leading_underscore == 2)
|
|
|
|
|
this_emulation->leading_underscore = this_format->dfl_leading_underscore;
|
|
|
|
|
|
|
|
|
|
if (this_emulation->default_endian != 2)
|
|
|
|
|
target_big_endian = this_emulation->default_endian;
|
|
|
|
|
|
|
|
|
|
if (this_emulation->fake_label_name == 0)
|
|
|
|
|
{
|
|
|
|
|
if (this_emulation->leading_underscore)
|
2017-11-22 11:20:48 -08:00
|
|
|
|
this_emulation->fake_label_name = FAKE_LABEL_NAME;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
else
|
|
|
|
|
/* What other parameters should we test? */
|
2017-11-22 11:20:48 -08:00
|
|
|
|
this_emulation->fake_label_name = "." FAKE_LABEL_NAME;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-01-26 22:48:31 +00:00
|
|
|
|
void
|
2003-10-04 12:40:12 +00:00
|
|
|
|
print_version_id (void)
|
2000-01-26 22:48:31 +00:00
|
|
|
|
{
|
|
|
|
|
static int printed;
|
2003-10-04 12:40:12 +00:00
|
|
|
|
|
2000-01-26 22:48:31 +00:00
|
|
|
|
if (printed)
|
|
|
|
|
return;
|
|
|
|
|
printed = 1;
|
|
|
|
|
|
* README-vms: Delete.
* config-gas.com: Delete.
* makefile.vms: Delete.
* vmsconf.sh: Delete.
* config/atof-tahoe.c: Delete.
* config/m88k-opcode.h: Delete.
* config/obj-bout.c: Delete.
* config/obj-bout.h: Delete.
* config/obj-hp300.c: Delete.
* config/obj-hp300.h: Delete.
* config/tc-a29k.c: Delete.
* config/tc-a29k.h: Delete.
* config/tc-h8500.c: Delete.
* config/tc-h8500.h: Delete.
* config/tc-m88k.c: Delete.
* config/tc-m88k.h: Delete.
* config/tc-tahoe.c: Delete.
* config/tc-tahoe.h: Delete.
* config/tc-tic80.c: Delete.
* config/tc-tic80.h: Delete.
* config/tc-w65.c: Delete.
* config/tc-w65.h: Delete.
* config/te-aux.h: Delete.
* config/te-delt88.h: Delete.
* config/te-delta.h: Delete.
* config/te-dpx2.h: Delete.
* config/te-hp300.h: Delete.
* config/te-ic960.h: Delete.
* config/vms-a-conf.h: Delete.
* doc/c-a29k.texi: Delete.
* doc/c-h8500.texi: Delete.
* doc/c-m88k.texi: Delete.
* README: Remove obsolete examples, and list of supported targets.
* Makefile.am: Remove a29k, h8500, m88k, tahoe, tic80, w65,
bout and hp300 support.
(DEP_FLAGS): Don't define BFD_ASSEMBLER.
* configure.in: Remove --enable-bfd-assembler, need_bfd,
primary_bfd_gas.
* configure.tgt: Remove a29k, h8300-coff, h8500-*, i960 non-elf,
m68k non bfd, m88k, or32-coff, tic80-*, vax non-bfd, w65k-*, *-nindy.
* as.c: Remove all non-BFD_ASSEMBLER code, support for above targets.
* as.h: Likewise.
* dw2gencfi.c: Likewise.
* dwarf2dbg.c: Likewise.
* ehopt.c: Likewise.
* input-file.c: Likewise.
* listing.c: Likewise.
* literal.c: Likewise.
* messages.c: Likewise.
* obj.h: Likewise.
* output-file.c: Likewise.
* read.c: Likewise.
* stabs.c: Likewise.
* struc-symbol.h: Likewise.
* subsegs.c: Likewise.
* subsegs.h: Likewise.
* symbols.c: Likewise.
* symbols.h: Likewise.
* tc.h: Likewise.
* write.c: Likewise.
* write.h: Likewise.
* config/aout_gnu.h: Likewise.
* config/obj-aout.c: Likewise.
* config/obj-aout.h: Likewise.
* config/obj-coff.c: Likewise.
* config/obj-coff.h: Likewise.
* config/obj-evax.h: Likewise.
* config/obj-ieee.h: Likewise.
* config/tc-arm.c: Likewise.
* config/tc-arm.h: Likewise.
* config/tc-avr.c: Likewise.
* config/tc-avr.h: Likewise.
* config/tc-crx.h: Likewise.
* config/tc-d10v.h: Likewise.
* config/tc-d30v.h: Likewise.
* config/tc-dlx.h: Likewise.
* config/tc-fr30.h: Likewise.
* config/tc-frv.h: Likewise.
* config/tc-h8300.c: Likewise.
* config/tc-h8300.h: Likewise.
* config/tc-hppa.h: Likewise.
* config/tc-i370.h: Likewise.
* config/tc-i386.c: Likewise.
* config/tc-i386.h: Likewise.
* config/tc-i860.h: Likewise.
* config/tc-i960.c: Likewise.
* config/tc-i960.h: Likewise.
* config/tc-ip2k.h: Likewise.
* config/tc-iq2000.h: Likewise.
* config/tc-m32c.h: Likewise.
* config/tc-m32r.h: Likewise.
* config/tc-m68hc11.h: Likewise.
* config/tc-m68k.c: Likewise.
* config/tc-m68k.h: Likewise.
* config/tc-maxq.c: Likewise.
* config/tc-maxq.h: Likewise.
* config/tc-mcore.c: Likewise.
* config/tc-mcore.h: Likewise.
* config/tc-mn10200.h: Likewise.
* config/tc-mn10300.c: Likewise.
* config/tc-mn10300.h: Likewise.
* config/tc-ms1.h: Likewise.
* config/tc-msp430.c: Likewise.
* config/tc-msp430.h: Likewise.
* config/tc-ns32k.c: Likewise.
* config/tc-ns32k.h: Likewise.
* config/tc-openrisc.h: Likewise.
* config/tc-or32.c: Likewise.
* config/tc-or32.h: Likewise.
* config/tc-ppc.c: Likewise.
* config/tc-ppc.h: Likewise.
* config/tc-s390.h: Likewise.
* config/tc-sh.c: Likewise.
* config/tc-sh.h: Likewise.
* config/tc-sparc.c: Likewise.
* config/tc-tic30.c: Likewise.
* config/tc-tic30.h: Likewise.
* config/tc-tic4x.c: Likewise.
* config/tc-tic4x.h: Likewise.
* config/tc-tic54x.c: Likewise.
* config/tc-tic54x.h: Likewise.
* config/tc-v850.h: Likewise.
* config/tc-vax.c: Likewise.
* config/tc-vax.h: Likewise.
* config/tc-xstormy16.h: Likewise.
* config/tc-xtensa.h: Likewise.
* config/tc-z8k.c: Likewise.
* config/tc-z8k.h: Likewise.
* config/vms-a-conf.h
* doc/Makefile.am: Likewise.
* doc/all.texi: Likewise.
* doc/as.texinfo: Likewise.
* doc/Makefile.in: Regenerate.
* Makefile.in: Regenerate.
* configure: Regenerate.
* config.in: Regenerate.
* po/POTFILES.in: Regenerate.
2005-08-11 01:25:29 +00:00
|
|
|
|
fprintf (stderr, _("GNU assembler version %s (%s) using BFD version %s\n"),
|
2001-10-02 06:02:51 +00:00
|
|
|
|
VERSION, TARGET_ALIAS, BFD_VERSION_STRING);
|
2000-01-26 22:48:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-19 11:45:54 +01:00
|
|
|
|
#ifdef DEFAULT_FLAG_COMPRESS_DEBUG
|
|
|
|
|
enum compressed_debug_section_type flag_compress_debug
|
2022-10-03 09:42:20 +02:00
|
|
|
|
= DEFAULT_COMPRESSED_DEBUG_ALGORITHM;
|
2015-10-19 11:45:54 +01:00
|
|
|
|
#endif
|
|
|
|
|
|
2000-01-26 22:48:31 +00:00
|
|
|
|
static void
|
2003-10-04 12:40:12 +00:00
|
|
|
|
show_usage (FILE * stream)
|
2000-01-26 22:48:31 +00:00
|
|
|
|
{
|
|
|
|
|
fprintf (stream, _("Usage: %s [option...] [asmfile...]\n"), myname);
|
|
|
|
|
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
Options:\n\
|
|
|
|
|
-a[sub-option...] turn on listings\n\
|
|
|
|
|
Sub-options [default hls]:\n\
|
|
|
|
|
c omit false conditionals\n\
|
|
|
|
|
d omit debugging directives\n\
|
2008-04-10 12:45:18 +00:00
|
|
|
|
g include general info\n\
|
2000-01-26 22:48:31 +00:00
|
|
|
|
h include high-level source\n\
|
|
|
|
|
l include assembly\n\
|
|
|
|
|
m include macro expansions\n\
|
|
|
|
|
n omit forms processing\n\
|
|
|
|
|
s include symbols\n\
|
|
|
|
|
=FILE list to FILE (must be last sub-option)\n"));
|
|
|
|
|
|
2004-08-13 19:53:52 +00:00
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
--alternate initially turn on alternate macro syntax\n"));
|
2000-01-26 22:48:31 +00:00
|
|
|
|
fprintf (stream, _("\
|
binutils, gdb: support zstd compressed debug sections
PR29397 PR29563: Add new configure option --with-zstd which defaults to
auto. If pkgconfig/libzstd.pc is found, define HAVE_ZSTD and support
zstd compressed debug sections for most tools.
* bfd: for addr2line, objdump --dwarf, gdb, etc
* gas: support --compress-debug-sections=zstd
* ld: support ELFCOMPRESS_ZSTD input and --compress-debug-sections=zstd
* objcopy: support ELFCOMPRESS_ZSTD input for
--decompress-debug-sections and --compress-debug-sections=zstd
* gdb: support ELFCOMPRESS_ZSTD input. The bfd change references zstd
symbols, so gdb has to link against -lzstd in this patch.
If zstd is not supported, ELFCOMPRESS_ZSTD input triggers an error. We
can avoid HAVE_ZSTD if binutils-gdb imports zstd/ like zlib/, but this
is too heavyweight, so don't do it for now.
```
% ld/ld-new a.o
ld/ld-new: a.o: section .debug_abbrev is compressed with zstd, but BFD is not built with zstd support
...
% ld/ld-new a.o --compress-debug-sections=zstd
ld/ld-new: --compress-debug-sections=zstd: ld is not built with zstd support
% binutils/objcopy --compress-debug-sections=zstd a.o b.o
binutils/objcopy: --compress-debug-sections=zstd: binutils is not built with zstd support
% binutils/objcopy b.o --decompress-debug-sections
binutils/objcopy: zstd.o: section .debug_abbrev is compressed with zstd, but BFD is not built with zstd support
...
```
2022-09-26 19:50:13 -07:00
|
|
|
|
--compress-debug-sections[={none|zlib|zlib-gnu|zlib-gabi|zstd}]\n\
|
2022-10-03 09:11:00 +02:00
|
|
|
|
compress DWARF debug sections\n")),
|
2015-10-19 11:45:54 +01:00
|
|
|
|
fprintf (stream, _("\
|
2022-10-03 09:11:00 +02:00
|
|
|
|
Default: %s\n"),
|
|
|
|
|
bfd_get_compression_algorithm_name (flag_compress_debug));
|
|
|
|
|
|
2015-10-19 11:45:54 +01:00
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
--nocompress-debug-sections\n\
|
2022-10-03 09:11:00 +02:00
|
|
|
|
don't compress DWARF debug sections\n"));
|
2010-07-15 17:45:17 +00:00
|
|
|
|
fprintf (stream, _("\
|
2000-01-26 22:48:31 +00:00
|
|
|
|
-D produce assembler debugging messages\n"));
|
|
|
|
|
fprintf (stream, _("\
|
2022-09-28 12:56:04 +01:00
|
|
|
|
--dump-config display how the assembler is configured and then exit\n"));
|
|
|
|
|
fprintf (stream, _("\
|
2010-07-15 17:45:17 +00:00
|
|
|
|
--debug-prefix-map OLD=NEW\n\
|
|
|
|
|
map OLD to NEW in debug information\n"));
|
2007-08-24 21:49:55 +00:00
|
|
|
|
fprintf (stream, _("\
|
2000-01-26 22:48:31 +00:00
|
|
|
|
--defsym SYM=VAL define symbol SYM to given value\n"));
|
|
|
|
|
#ifdef USE_EMULATIONS
|
|
|
|
|
{
|
|
|
|
|
int i;
|
2016-02-25 16:55:21 +00:00
|
|
|
|
const char *def_em;
|
2000-01-26 22:48:31 +00:00
|
|
|
|
|
|
|
|
|
fprintf (stream, "\
|
2022-09-28 12:56:04 +01:00
|
|
|
|
--emulation=[");
|
2000-08-31 23:17:47 +00:00
|
|
|
|
for (i = 0; i < n_emulations - 1; i++)
|
2000-01-26 22:48:31 +00:00
|
|
|
|
fprintf (stream, "%s | ", emulations[i]->name);
|
|
|
|
|
fprintf (stream, "%s]\n", emulations[i]->name);
|
|
|
|
|
|
|
|
|
|
def_em = getenv (EMULATION_ENVIRON);
|
2000-08-31 23:17:47 +00:00
|
|
|
|
if (!def_em)
|
2000-01-26 22:48:31 +00:00
|
|
|
|
def_em = DEFAULT_EMULATION;
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
emulate output (default %s)\n"), def_em);
|
|
|
|
|
}
|
2003-06-04 16:54:45 +00:00
|
|
|
|
#endif
|
* README-vms: Delete.
* config-gas.com: Delete.
* makefile.vms: Delete.
* vmsconf.sh: Delete.
* config/atof-tahoe.c: Delete.
* config/m88k-opcode.h: Delete.
* config/obj-bout.c: Delete.
* config/obj-bout.h: Delete.
* config/obj-hp300.c: Delete.
* config/obj-hp300.h: Delete.
* config/tc-a29k.c: Delete.
* config/tc-a29k.h: Delete.
* config/tc-h8500.c: Delete.
* config/tc-h8500.h: Delete.
* config/tc-m88k.c: Delete.
* config/tc-m88k.h: Delete.
* config/tc-tahoe.c: Delete.
* config/tc-tahoe.h: Delete.
* config/tc-tic80.c: Delete.
* config/tc-tic80.h: Delete.
* config/tc-w65.c: Delete.
* config/tc-w65.h: Delete.
* config/te-aux.h: Delete.
* config/te-delt88.h: Delete.
* config/te-delta.h: Delete.
* config/te-dpx2.h: Delete.
* config/te-hp300.h: Delete.
* config/te-ic960.h: Delete.
* config/vms-a-conf.h: Delete.
* doc/c-a29k.texi: Delete.
* doc/c-h8500.texi: Delete.
* doc/c-m88k.texi: Delete.
* README: Remove obsolete examples, and list of supported targets.
* Makefile.am: Remove a29k, h8500, m88k, tahoe, tic80, w65,
bout and hp300 support.
(DEP_FLAGS): Don't define BFD_ASSEMBLER.
* configure.in: Remove --enable-bfd-assembler, need_bfd,
primary_bfd_gas.
* configure.tgt: Remove a29k, h8300-coff, h8500-*, i960 non-elf,
m68k non bfd, m88k, or32-coff, tic80-*, vax non-bfd, w65k-*, *-nindy.
* as.c: Remove all non-BFD_ASSEMBLER code, support for above targets.
* as.h: Likewise.
* dw2gencfi.c: Likewise.
* dwarf2dbg.c: Likewise.
* ehopt.c: Likewise.
* input-file.c: Likewise.
* listing.c: Likewise.
* literal.c: Likewise.
* messages.c: Likewise.
* obj.h: Likewise.
* output-file.c: Likewise.
* read.c: Likewise.
* stabs.c: Likewise.
* struc-symbol.h: Likewise.
* subsegs.c: Likewise.
* subsegs.h: Likewise.
* symbols.c: Likewise.
* symbols.h: Likewise.
* tc.h: Likewise.
* write.c: Likewise.
* write.h: Likewise.
* config/aout_gnu.h: Likewise.
* config/obj-aout.c: Likewise.
* config/obj-aout.h: Likewise.
* config/obj-coff.c: Likewise.
* config/obj-coff.h: Likewise.
* config/obj-evax.h: Likewise.
* config/obj-ieee.h: Likewise.
* config/tc-arm.c: Likewise.
* config/tc-arm.h: Likewise.
* config/tc-avr.c: Likewise.
* config/tc-avr.h: Likewise.
* config/tc-crx.h: Likewise.
* config/tc-d10v.h: Likewise.
* config/tc-d30v.h: Likewise.
* config/tc-dlx.h: Likewise.
* config/tc-fr30.h: Likewise.
* config/tc-frv.h: Likewise.
* config/tc-h8300.c: Likewise.
* config/tc-h8300.h: Likewise.
* config/tc-hppa.h: Likewise.
* config/tc-i370.h: Likewise.
* config/tc-i386.c: Likewise.
* config/tc-i386.h: Likewise.
* config/tc-i860.h: Likewise.
* config/tc-i960.c: Likewise.
* config/tc-i960.h: Likewise.
* config/tc-ip2k.h: Likewise.
* config/tc-iq2000.h: Likewise.
* config/tc-m32c.h: Likewise.
* config/tc-m32r.h: Likewise.
* config/tc-m68hc11.h: Likewise.
* config/tc-m68k.c: Likewise.
* config/tc-m68k.h: Likewise.
* config/tc-maxq.c: Likewise.
* config/tc-maxq.h: Likewise.
* config/tc-mcore.c: Likewise.
* config/tc-mcore.h: Likewise.
* config/tc-mn10200.h: Likewise.
* config/tc-mn10300.c: Likewise.
* config/tc-mn10300.h: Likewise.
* config/tc-ms1.h: Likewise.
* config/tc-msp430.c: Likewise.
* config/tc-msp430.h: Likewise.
* config/tc-ns32k.c: Likewise.
* config/tc-ns32k.h: Likewise.
* config/tc-openrisc.h: Likewise.
* config/tc-or32.c: Likewise.
* config/tc-or32.h: Likewise.
* config/tc-ppc.c: Likewise.
* config/tc-ppc.h: Likewise.
* config/tc-s390.h: Likewise.
* config/tc-sh.c: Likewise.
* config/tc-sh.h: Likewise.
* config/tc-sparc.c: Likewise.
* config/tc-tic30.c: Likewise.
* config/tc-tic30.h: Likewise.
* config/tc-tic4x.c: Likewise.
* config/tc-tic4x.h: Likewise.
* config/tc-tic54x.c: Likewise.
* config/tc-tic54x.h: Likewise.
* config/tc-v850.h: Likewise.
* config/tc-vax.c: Likewise.
* config/tc-vax.h: Likewise.
* config/tc-xstormy16.h: Likewise.
* config/tc-xtensa.h: Likewise.
* config/tc-z8k.c: Likewise.
* config/tc-z8k.h: Likewise.
* config/vms-a-conf.h
* doc/Makefile.am: Likewise.
* doc/all.texi: Likewise.
* doc/as.texinfo: Likewise.
* doc/Makefile.in: Regenerate.
* Makefile.in: Regenerate.
* configure: Regenerate.
* config.in: Regenerate.
* po/POTFILES.in: Regenerate.
2005-08-11 01:25:29 +00:00
|
|
|
|
#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
|
2003-06-04 16:54:45 +00:00
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
--execstack require executable stack for this object\n"));
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
--noexecstack don't require executable stack for this object\n"));
|
2011-03-16 12:58:26 +00:00
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
--size-check=[error|warning]\n\
|
|
|
|
|
ELF .size directive check (default --size-check=error)\n"));
|
2015-06-09 23:06:29 -04:00
|
|
|
|
fprintf (stream, _("\
|
2018-08-09 09:57:11 -07:00
|
|
|
|
--elf-stt-common=[no|yes] "));
|
|
|
|
|
if (DEFAULT_GENERATE_ELF_STT_COMMON)
|
|
|
|
|
fprintf (stream, _("(default: yes)\n"));
|
|
|
|
|
else
|
|
|
|
|
fprintf (stream, _("(default: no)\n"));
|
|
|
|
|
fprintf (stream, _("\
|
Properly implement STT_COMMON
The BFD configure option, --enable-elf-stt-common, can't be to used to
verify STT_COMMON implementation with the normal binutils build. Instead,
this patch removes it from BFD. It adds --elf-stt-common=[no|yes] to ELF
assembler/objcopy and adds -z common/-z nocommon to ld.
A configure option, --enable-elf-stt-common, is added to gas to specify
whether ELF assembler should generate common symbols with the STT_COMMON
type by default.
Since BSF_KEEP_G is never used, it is renamed to BSF_ELF_COMMON for ELF
common symbols.
bfd/
PR ld/19645
* bfd.c (bfd): Change flags to 20 bits.
(BFD_CONVERT_ELF_COMMON): New.
(BFD_USE_ELF_STT_COMMON): Likewise.
(BFD_FLAGS_SAVED): Add BFD_CONVERT_ELF_COMMON and
BFD_USE_ELF_STT_COMMON.
(BFD_FLAGS_FOR_BFD_USE_MASK): Likewise.
* configure.ac: Remove --enable-elf-stt-common.
* elf.c (swap_out_syms): Choose STT_COMMON or STT_OBJECT for
common symbol depending on BFD_CONVERT_ELF_COMMON and
BFD_USE_ELF_STT_COMMON.
* elfcode.h (elf_slurp_symbol_table): Set BSF_ELF_COMMON for
STT_COMMON.
* elflink.c (bfd_elf_link_mark_dynamic_symbol): Also check
STT_COMMON.
(elf_link_convert_common_type): New function.
(elf_link_output_extsym): Choose STT_COMMON or STT_OBJECT for
common symbol depending on BFD_CONVERT_ELF_COMMON and
BFD_USE_ELF_STT_COMMON. Set sym.st_info after sym.st_shndx.
* elfxx-target.h (TARGET_BIG_SYM): Add BFD_CONVERT_ELF_COMMON
and BFD_USE_ELF_STT_COMMON to object_flags.
(TARGET_LITTLE_SYM): Likewise.
* syms.c (BSF_KEEP_G): Renamed to ...
(BSF_ELF_COMMON): This.
* bfd-in2.h: Regenerated.
* config.in: Likewise.
* configure: Likewise.
binutils/
PR ld/19645
* NEWS: Mention --elf-stt-common= for objcopy.
* doc/binutils.texi: Document --elf-stt-common= for objcopy.
* objcopy.c (do_elf_stt_common): New.
(command_line_switch): Add OPTION_ELF_STT_COMMON.
(copy_options): Add --elf-stt-common=.
(copy_usage): Add --elf-stt-common=.
(copy_object): Also check do_elf_stt_common for ELF targets.
(copy_file): Handle do_elf_stt_common.
(copy_main): Handle OPTION_ELF_STT_COMMON.
* readelf.c (apply_relocations): Support STT_COMMON.
* testsuite/binutils-all/common-1.s: New file.
* testsuite/binutils-all/common-1a.d: Likewise.
* testsuite/binutils-all/common-1b.d: Likewise.
* testsuite/binutils-all/common-1c.d: Likewise.
* testsuite/binutils-all/common-1d.d: Likewise.
* testsuite/binutils-all/common-1e.d: Likewise.
* testsuite/binutils-all/common-1f.d: Likewise.
* testsuite/binutils-all/common-2.s: Likewise.
* testsuite/binutils-all/common-2a.d: Likewise.
* testsuite/binutils-all/common-2b.d: Likewise.
* testsuite/binutils-all/common-2c.d: Likewise.
* testsuite/binutils-all/common-2d.d: Likewise.
* testsuite/binutils-all/common-2e.d: Likewise.
* testsuite/binutils-all/common-2f.d: Likewise.
* testsuite/binutils-all/objcopy.exp
(objcopy_test_elf_common_symbols): New proc.
Run objcopy_test_elf_common_symbols for ELF targets
gas/
PR ld/19645
* NEWS: Mention --enable-elf-stt-common and --elf-stt-common=
for ELF assemblers.
* as.c (flag_use_elf_stt_common): New.
(show_usage): Add --elf-stt-common=.
(option_values): Add OPTION_ELF_STT_COMMON.
(std_longopts): Add --elf-stt-common=.
(parse_args): Handle --elf-stt-common=.
* as.h (flag_use_elf_stt_common): New.
* config.in: Regenerated.
* configure: Likewise.
* configure.ac: Add --enable-elf-stt-common and define
DEFAULT_GENERATE_ELF_STT_COMMON.
* gas/write.c (write_object_file): Set BFD_CONVERT_ELF_COMMON
and BFD_USE_ELF_STT_COMMON if flag_use_elf_stt_common is set.
* doc/as.texinfo: Document --elf-stt-common=.
* testsuite/gas/elf/common3.s: New file.
* testsuite/gas/elf/common3a.d: Likewise.
* testsuite/gas/elf/common3b.d: Likewise.
* testsuite/gas/elf/common4.s: Likewise.
* testsuite/gas/elf/common4a.d: Likewise.
* testsuite/gas/elf/common4b.d: Likewise.
* testsuite/gas/i386/dw2-compress-3b.d: Likewise.
* testsuite/gas/i386/dw2-compressed-3b.d: Likewise.
* testsuite/gas/elf/elf.exp: Run common3a, common3b, common4a
and common4b.
* testsuite/gas/i386/dw2-compress-3.d: Renamed to ...
* testsuite/gas/i386/dw2-compress-3a.d: This. Pass
--elf-stt-common=no to as.
* testsuite/gas/i386/dw2-compressed-3.d: Renamed to ...
* testsuite/gas/i386/dw2-compressed-3a.d: This. Pass
--elf-stt-common=no to as.
* testsuite/gas/i386/i386.exp: Run dw2-compress-3a,
dw2-compress-3b, dw2-compressed-3a and dw2-compressed-3b instead
of dw2-compress-3 and dw2-compressed-3.
include/
PR ld/19645
* bfdlink.h (bfd_link_elf_stt_common): New enum.
(bfd_link_info): Add elf_stt_common.
ld/
PR ld/19645
* NEWS: Mention -z common/-z nocommon for ELF targets.
* emultempl/elf32.em (gld${EMULATION_NAME}_handle_option): Handle
-z common and -z nocommon.
* ld.texinfo: Document -z common/-z nocommon.
* lexsup.c (elf_shlib_list_options): Add -z common/-z nocommon.
* testsuite/ld-elf/tls_common.exp: Test --elf-stt-common=no and
--elf-stt-common=yes with assembler.
* testsuite/ld-elfcomm/common-1.s: New file.
* testsuite/ld-elfcomm/common-1a.d: Likewise.
* testsuite/ld-elfcomm/common-1b.d: Likewise.
* testsuite/ld-elfcomm/common-1c.d: Likewise.
* testsuite/ld-elfcomm/common-1d.d: Likewise.
* testsuite/ld-elfcomm/common-1e.d: Likewise.
* testsuite/ld-elfcomm/common-1f.d: Likewise.
* testsuite/ld-elfcomm/common-2.s: Likewise.
* testsuite/ld-elfcomm/common-2a.d: Likewise.
* testsuite/ld-elfcomm/common-2b.d: Likewise.
* testsuite/ld-elfcomm/common-2c.d: Likewise.
* testsuite/ld-elfcomm/common-2d.d: Likewise.
* testsuite/ld-elfcomm/common-2e.d: Likewise.
* testsuite/ld-elfcomm/common-2f.d: Likewise.
* testsuite/ld-elfcomm/common-3a.rd: Likewise.
* testsuite/ld-elfcomm/common-3b.rd: Likewise.
* testsuite/ld-i386/pr19645.d: Likewise.
* testsuite/ld-i386/pr19645.s: Likewise.
* testsuite/ld-x86-64/largecomm-1.s: Likewise.
* testsuite/ld-x86-64/largecomm-1a.d: Likewise.
* testsuite/ld-x86-64/largecomm-1b.d: Likewise.
* testsuite/ld-x86-64/largecomm-1c.d: Likewise.
* testsuite/ld-x86-64/largecomm-1d.d: Likewise.
* testsuite/ld-x86-64/largecomm-1e.d: Likewise.
* testsuite/ld-x86-64/largecomm-1f.d: Likewise.
* testsuite/ld-x86-64/pr19645.d: Likewise.
* testsuite/ld-x86-64/pr19645.s: Likewise.
* testsuite/ld-elfcomm/elfcomm.exp: Test --elf-stt-common=yes
with assembler.
(assembler_generates_commons): Removed.
Run -z common/-z nocommon tests. Run *.d tests.
* testsuite/ld-i386/i386.exp: Run pr19645.
* testsuite/ld-x86-64/x86-64.exp: Likewise.
* testsuite/ld-x86-64/dwarfreloc.exp: Test --elf-stt-common with
assembler. Test STT_COMMON with readelf.
2016-02-22 09:18:52 -08:00
|
|
|
|
generate ELF common symbols with STT_COMMON type\n"));
|
|
|
|
|
fprintf (stream, _("\
|
2015-06-09 23:06:29 -04:00
|
|
|
|
--sectname-subst enable section name substitution sequences\n"));
|
2018-04-26 15:12:42 +01:00
|
|
|
|
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
--generate-missing-build-notes=[no|yes] "));
|
|
|
|
|
#if DEFAULT_GENERATE_BUILD_NOTES
|
|
|
|
|
fprintf (stream, _("(default: yes)\n"));
|
|
|
|
|
#else
|
|
|
|
|
fprintf (stream, _("(default: no)\n"));
|
2000-01-26 22:48:31 +00:00
|
|
|
|
#endif
|
2018-04-26 15:12:42 +01:00
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
generate GNU Build notes if none are present in the input\n"));
|
|
|
|
|
#endif /* OBJ_ELF */
|
|
|
|
|
|
2000-01-26 22:48:31 +00:00
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
-f skip whitespace and comment preprocessing\n"));
|
|
|
|
|
fprintf (stream, _("\
|
2004-08-17 12:19:58 +00:00
|
|
|
|
-g --gen-debug generate debugging information\n"));
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
--gstabs generate STABS debugging information\n"));
|
2000-01-26 22:48:31 +00:00
|
|
|
|
fprintf (stream, _("\
|
2004-08-17 12:19:58 +00:00
|
|
|
|
--gstabs+ generate STABS debug info with GNU extensions\n"));
|
2003-10-08 14:37:20 +00:00
|
|
|
|
fprintf (stream, _("\
|
2020-03-06 14:52:14 +00:00
|
|
|
|
--gdwarf-<N> generate DWARF<N> debugging information. 2 <= <N> <= 5\n"));
|
2000-01-26 22:48:31 +00:00
|
|
|
|
fprintf (stream, _("\
|
2022-09-28 12:56:04 +01:00
|
|
|
|
--gdwarf-cie-version=<N> generate version 1, 3 or 4 DWARF CIEs\n"));
|
|
|
|
|
fprintf (stream, _("\
|
2013-04-29 13:38:59 +00:00
|
|
|
|
--gdwarf-sections generate per-function section names for DWARF line information\n"));
|
|
|
|
|
fprintf (stream, _("\
|
2022-09-28 12:56:04 +01:00
|
|
|
|
--hash-size=<N> ignored\n"));
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
--help show all assembler options\n"));
|
|
|
|
|
fprintf (stream, _("\
|
2000-10-17 20:10:20 +00:00
|
|
|
|
--target-help show target specific options\n"));
|
|
|
|
|
fprintf (stream, _("\
|
2000-01-26 22:48:31 +00:00
|
|
|
|
-I DIR add DIR to search list for .include directives\n"));
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
-J don't warn about signed overflow\n"));
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
-K warn when differences altered for long displacements\n"));
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
-L,--keep-locals keep local symbols (e.g. starting with `L')\n"));
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
-M,--mri assemble in MRI compatibility mode\n"));
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
--MD FILE write dependency information in FILE (default none)\n"));
|
|
|
|
|
fprintf (stream, _("\
|
2022-09-28 12:56:04 +01:00
|
|
|
|
--multibyte-handling=<method>\n\
|
|
|
|
|
what to do with multibyte characters encountered in the input\n"));
|
|
|
|
|
fprintf (stream, _("\
|
2000-01-26 22:48:31 +00:00
|
|
|
|
-nocpp ignored\n"));
|
|
|
|
|
fprintf (stream, _("\
|
2016-06-27 13:49:09 +01:00
|
|
|
|
-no-pad-sections do not pad the end of sections to alignment boundaries\n"));
|
|
|
|
|
fprintf (stream, _("\
|
2000-01-26 22:48:31 +00:00
|
|
|
|
-o OBJFILE name the object-file output OBJFILE (default a.out)\n"));
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
-R fold data section into text section\n"));
|
|
|
|
|
fprintf (stream, _("\
|
2022-09-28 12:56:04 +01:00
|
|
|
|
--reduce-memory-overheads ignored\n"));
|
|
|
|
|
fprintf (stream, _("\
|
2000-01-26 22:48:31 +00:00
|
|
|
|
--statistics print various measured statistics from execution\n"));
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
--strip-local-absolute strip local absolute symbols\n"));
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
--traditional-format Use same format as native assembler when possible\n"));
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
--version print assembler version number and exit\n"));
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
-W --no-warn suppress warnings\n"));
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
--warn don't suppress warnings\n"));
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
--fatal-warnings treat warnings as errors\n"));
|
2007-09-26 06:54:00 +00:00
|
|
|
|
#ifdef HAVE_ITBL_CPU
|
2000-01-26 22:48:31 +00:00
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
--itbl INSTTBL extend instruction set to include instructions\n\
|
|
|
|
|
matching the specifications defined in file INSTTBL\n"));
|
2007-09-26 06:54:00 +00:00
|
|
|
|
#endif
|
2000-01-26 22:48:31 +00:00
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
-w ignored\n"));
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
-X ignored\n"));
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
-Z generate object file even after errors\n"));
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
--listing-lhs-width set the width in words of the output data column of\n\
|
|
|
|
|
the listing\n"));
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
--listing-lhs-width2 set the width in words of the continuation lines\n\
|
|
|
|
|
of the output data column; ignored if smaller than\n\
|
|
|
|
|
the width of the first line\n"));
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
--listing-rhs-width set the max width in characters of the lines from\n\
|
|
|
|
|
the source file\n"));
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
--listing-cont-lines set the maximum number of continuation lines used\n\
|
|
|
|
|
for the output data column of the listing\n"));
|
2005-10-30 18:08:52 +00:00
|
|
|
|
fprintf (stream, _("\
|
2013-01-10 19:51:55 +00:00
|
|
|
|
@FILE read options from FILE\n"));
|
2000-01-26 22:48:31 +00:00
|
|
|
|
|
|
|
|
|
md_show_usage (stream);
|
|
|
|
|
|
2000-04-03 14:10:05 +00:00
|
|
|
|
fputc ('\n', stream);
|
2007-02-17 13:33:57 +00:00
|
|
|
|
|
|
|
|
|
if (REPORT_BUGS_TO[0] && stream == stdout)
|
|
|
|
|
fprintf (stream, _("Report bugs to %s\n"), REPORT_BUGS_TO);
|
2000-01-26 22:48:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-08-31 23:17:47 +00:00
|
|
|
|
/* Since it is easy to do here we interpret the special arg "-"
|
|
|
|
|
to mean "use stdin" and we set that argv[] pointing to "".
|
|
|
|
|
After we have munged argv[], the only things left are source file
|
|
|
|
|
name(s) and ""(s) denoting stdin. These file names are used
|
|
|
|
|
(perhaps more than once) later.
|
|
|
|
|
|
|
|
|
|
check for new machine-dep cmdline options in
|
|
|
|
|
md_parse_option definitions in config/tc-*.c. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
static void
|
2003-10-04 12:40:12 +00:00
|
|
|
|
parse_args (int * pargc, char *** pargv)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
2003-10-04 12:40:12 +00:00
|
|
|
|
int old_argc;
|
|
|
|
|
int new_argc;
|
|
|
|
|
char ** old_argv;
|
|
|
|
|
char ** new_argv;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
/* Starting the short option string with '-' is for programs that
|
|
|
|
|
expect options and other ARGV-elements in any order and that care about
|
|
|
|
|
the ordering of the two. We describe each non-option ARGV-element
|
|
|
|
|
as if it were the argument of an option with character code 1. */
|
|
|
|
|
char *shortopts;
|
2002-06-08 07:37:16 +00:00
|
|
|
|
extern const char *md_shortopts;
|
2003-10-04 12:40:12 +00:00
|
|
|
|
static const char std_shortopts[] =
|
|
|
|
|
{
|
2000-10-11 20:24:32 +00:00
|
|
|
|
'-', 'J',
|
1999-05-03 07:29:11 +00:00
|
|
|
|
#ifndef WORKING_DOT_WORD
|
2000-10-11 20:24:32 +00:00
|
|
|
|
/* -K is not meaningful if .word is not being hacked. */
|
|
|
|
|
'K',
|
1999-05-03 07:29:11 +00:00
|
|
|
|
#endif
|
2004-08-24 11:58:27 +00:00
|
|
|
|
'L', 'M', 'R', 'W', 'Z', 'a', ':', ':', 'D', 'f', 'g', ':',':', 'I', ':', 'o', ':',
|
1999-05-03 07:29:11 +00:00
|
|
|
|
#ifndef VMS
|
2000-10-11 20:24:32 +00:00
|
|
|
|
/* -v takes an argument on VMS, so we don't make it a generic
|
|
|
|
|
option. */
|
|
|
|
|
'v',
|
1999-05-03 07:29:11 +00:00
|
|
|
|
#endif
|
2000-10-11 20:24:32 +00:00
|
|
|
|
'w', 'X',
|
2007-09-26 06:54:00 +00:00
|
|
|
|
#ifdef HAVE_ITBL_CPU
|
2003-10-04 12:40:12 +00:00
|
|
|
|
/* New option for extending instruction set (see also --itbl below). */
|
2000-10-11 20:24:32 +00:00
|
|
|
|
't', ':',
|
2007-09-26 06:54:00 +00:00
|
|
|
|
#endif
|
2000-10-11 20:24:32 +00:00
|
|
|
|
'\0'
|
|
|
|
|
};
|
1999-05-03 07:29:11 +00:00
|
|
|
|
struct option *longopts;
|
|
|
|
|
extern struct option md_longopts[];
|
|
|
|
|
extern size_t md_longopts_size;
|
2003-10-04 12:40:12 +00:00
|
|
|
|
/* Codes used for the long options with no short synonyms. */
|
|
|
|
|
enum option_values
|
|
|
|
|
{
|
|
|
|
|
OPTION_HELP = OPTION_STD_BASE,
|
|
|
|
|
OPTION_NOCPP,
|
|
|
|
|
OPTION_STATISTICS,
|
|
|
|
|
OPTION_VERSION,
|
|
|
|
|
OPTION_DUMPCONFIG,
|
|
|
|
|
OPTION_VERBOSE,
|
|
|
|
|
OPTION_EMULATION,
|
2007-08-24 21:49:55 +00:00
|
|
|
|
OPTION_DEBUG_PREFIX_MAP,
|
2003-10-04 12:40:12 +00:00
|
|
|
|
OPTION_DEFSYM,
|
|
|
|
|
OPTION_LISTING_LHS_WIDTH,
|
2021-11-18 16:48:19 +00:00
|
|
|
|
OPTION_LISTING_LHS_WIDTH2, /* = STD_BASE + 10 */
|
2003-10-04 12:40:12 +00:00
|
|
|
|
OPTION_LISTING_RHS_WIDTH,
|
|
|
|
|
OPTION_LISTING_CONT_LINES,
|
|
|
|
|
OPTION_DEPFILE,
|
|
|
|
|
OPTION_GSTABS,
|
2003-10-08 14:37:20 +00:00
|
|
|
|
OPTION_GSTABS_PLUS,
|
2020-03-06 14:52:14 +00:00
|
|
|
|
OPTION_GDWARF_2,
|
|
|
|
|
OPTION_GDWARF_3,
|
|
|
|
|
OPTION_GDWARF_4,
|
|
|
|
|
OPTION_GDWARF_5,
|
2021-11-18 16:48:19 +00:00
|
|
|
|
OPTION_GDWARF_SECTIONS, /* = STD_BASE + 20 */
|
2019-11-04 12:27:45 +00:00
|
|
|
|
OPTION_GDWARF_CIE_VERSION,
|
2003-10-04 12:40:12 +00:00
|
|
|
|
OPTION_STRIP_LOCAL_ABSOLUTE,
|
|
|
|
|
OPTION_TRADITIONAL_FORMAT,
|
|
|
|
|
OPTION_WARN,
|
|
|
|
|
OPTION_TARGET_HELP,
|
|
|
|
|
OPTION_EXECSTACK,
|
|
|
|
|
OPTION_NOEXECSTACK,
|
2011-03-16 12:58:26 +00:00
|
|
|
|
OPTION_SIZE_CHECK,
|
Properly implement STT_COMMON
The BFD configure option, --enable-elf-stt-common, can't be to used to
verify STT_COMMON implementation with the normal binutils build. Instead,
this patch removes it from BFD. It adds --elf-stt-common=[no|yes] to ELF
assembler/objcopy and adds -z common/-z nocommon to ld.
A configure option, --enable-elf-stt-common, is added to gas to specify
whether ELF assembler should generate common symbols with the STT_COMMON
type by default.
Since BSF_KEEP_G is never used, it is renamed to BSF_ELF_COMMON for ELF
common symbols.
bfd/
PR ld/19645
* bfd.c (bfd): Change flags to 20 bits.
(BFD_CONVERT_ELF_COMMON): New.
(BFD_USE_ELF_STT_COMMON): Likewise.
(BFD_FLAGS_SAVED): Add BFD_CONVERT_ELF_COMMON and
BFD_USE_ELF_STT_COMMON.
(BFD_FLAGS_FOR_BFD_USE_MASK): Likewise.
* configure.ac: Remove --enable-elf-stt-common.
* elf.c (swap_out_syms): Choose STT_COMMON or STT_OBJECT for
common symbol depending on BFD_CONVERT_ELF_COMMON and
BFD_USE_ELF_STT_COMMON.
* elfcode.h (elf_slurp_symbol_table): Set BSF_ELF_COMMON for
STT_COMMON.
* elflink.c (bfd_elf_link_mark_dynamic_symbol): Also check
STT_COMMON.
(elf_link_convert_common_type): New function.
(elf_link_output_extsym): Choose STT_COMMON or STT_OBJECT for
common symbol depending on BFD_CONVERT_ELF_COMMON and
BFD_USE_ELF_STT_COMMON. Set sym.st_info after sym.st_shndx.
* elfxx-target.h (TARGET_BIG_SYM): Add BFD_CONVERT_ELF_COMMON
and BFD_USE_ELF_STT_COMMON to object_flags.
(TARGET_LITTLE_SYM): Likewise.
* syms.c (BSF_KEEP_G): Renamed to ...
(BSF_ELF_COMMON): This.
* bfd-in2.h: Regenerated.
* config.in: Likewise.
* configure: Likewise.
binutils/
PR ld/19645
* NEWS: Mention --elf-stt-common= for objcopy.
* doc/binutils.texi: Document --elf-stt-common= for objcopy.
* objcopy.c (do_elf_stt_common): New.
(command_line_switch): Add OPTION_ELF_STT_COMMON.
(copy_options): Add --elf-stt-common=.
(copy_usage): Add --elf-stt-common=.
(copy_object): Also check do_elf_stt_common for ELF targets.
(copy_file): Handle do_elf_stt_common.
(copy_main): Handle OPTION_ELF_STT_COMMON.
* readelf.c (apply_relocations): Support STT_COMMON.
* testsuite/binutils-all/common-1.s: New file.
* testsuite/binutils-all/common-1a.d: Likewise.
* testsuite/binutils-all/common-1b.d: Likewise.
* testsuite/binutils-all/common-1c.d: Likewise.
* testsuite/binutils-all/common-1d.d: Likewise.
* testsuite/binutils-all/common-1e.d: Likewise.
* testsuite/binutils-all/common-1f.d: Likewise.
* testsuite/binutils-all/common-2.s: Likewise.
* testsuite/binutils-all/common-2a.d: Likewise.
* testsuite/binutils-all/common-2b.d: Likewise.
* testsuite/binutils-all/common-2c.d: Likewise.
* testsuite/binutils-all/common-2d.d: Likewise.
* testsuite/binutils-all/common-2e.d: Likewise.
* testsuite/binutils-all/common-2f.d: Likewise.
* testsuite/binutils-all/objcopy.exp
(objcopy_test_elf_common_symbols): New proc.
Run objcopy_test_elf_common_symbols for ELF targets
gas/
PR ld/19645
* NEWS: Mention --enable-elf-stt-common and --elf-stt-common=
for ELF assemblers.
* as.c (flag_use_elf_stt_common): New.
(show_usage): Add --elf-stt-common=.
(option_values): Add OPTION_ELF_STT_COMMON.
(std_longopts): Add --elf-stt-common=.
(parse_args): Handle --elf-stt-common=.
* as.h (flag_use_elf_stt_common): New.
* config.in: Regenerated.
* configure: Likewise.
* configure.ac: Add --enable-elf-stt-common and define
DEFAULT_GENERATE_ELF_STT_COMMON.
* gas/write.c (write_object_file): Set BFD_CONVERT_ELF_COMMON
and BFD_USE_ELF_STT_COMMON if flag_use_elf_stt_common is set.
* doc/as.texinfo: Document --elf-stt-common=.
* testsuite/gas/elf/common3.s: New file.
* testsuite/gas/elf/common3a.d: Likewise.
* testsuite/gas/elf/common3b.d: Likewise.
* testsuite/gas/elf/common4.s: Likewise.
* testsuite/gas/elf/common4a.d: Likewise.
* testsuite/gas/elf/common4b.d: Likewise.
* testsuite/gas/i386/dw2-compress-3b.d: Likewise.
* testsuite/gas/i386/dw2-compressed-3b.d: Likewise.
* testsuite/gas/elf/elf.exp: Run common3a, common3b, common4a
and common4b.
* testsuite/gas/i386/dw2-compress-3.d: Renamed to ...
* testsuite/gas/i386/dw2-compress-3a.d: This. Pass
--elf-stt-common=no to as.
* testsuite/gas/i386/dw2-compressed-3.d: Renamed to ...
* testsuite/gas/i386/dw2-compressed-3a.d: This. Pass
--elf-stt-common=no to as.
* testsuite/gas/i386/i386.exp: Run dw2-compress-3a,
dw2-compress-3b, dw2-compressed-3a and dw2-compressed-3b instead
of dw2-compress-3 and dw2-compressed-3.
include/
PR ld/19645
* bfdlink.h (bfd_link_elf_stt_common): New enum.
(bfd_link_info): Add elf_stt_common.
ld/
PR ld/19645
* NEWS: Mention -z common/-z nocommon for ELF targets.
* emultempl/elf32.em (gld${EMULATION_NAME}_handle_option): Handle
-z common and -z nocommon.
* ld.texinfo: Document -z common/-z nocommon.
* lexsup.c (elf_shlib_list_options): Add -z common/-z nocommon.
* testsuite/ld-elf/tls_common.exp: Test --elf-stt-common=no and
--elf-stt-common=yes with assembler.
* testsuite/ld-elfcomm/common-1.s: New file.
* testsuite/ld-elfcomm/common-1a.d: Likewise.
* testsuite/ld-elfcomm/common-1b.d: Likewise.
* testsuite/ld-elfcomm/common-1c.d: Likewise.
* testsuite/ld-elfcomm/common-1d.d: Likewise.
* testsuite/ld-elfcomm/common-1e.d: Likewise.
* testsuite/ld-elfcomm/common-1f.d: Likewise.
* testsuite/ld-elfcomm/common-2.s: Likewise.
* testsuite/ld-elfcomm/common-2a.d: Likewise.
* testsuite/ld-elfcomm/common-2b.d: Likewise.
* testsuite/ld-elfcomm/common-2c.d: Likewise.
* testsuite/ld-elfcomm/common-2d.d: Likewise.
* testsuite/ld-elfcomm/common-2e.d: Likewise.
* testsuite/ld-elfcomm/common-2f.d: Likewise.
* testsuite/ld-elfcomm/common-3a.rd: Likewise.
* testsuite/ld-elfcomm/common-3b.rd: Likewise.
* testsuite/ld-i386/pr19645.d: Likewise.
* testsuite/ld-i386/pr19645.s: Likewise.
* testsuite/ld-x86-64/largecomm-1.s: Likewise.
* testsuite/ld-x86-64/largecomm-1a.d: Likewise.
* testsuite/ld-x86-64/largecomm-1b.d: Likewise.
* testsuite/ld-x86-64/largecomm-1c.d: Likewise.
* testsuite/ld-x86-64/largecomm-1d.d: Likewise.
* testsuite/ld-x86-64/largecomm-1e.d: Likewise.
* testsuite/ld-x86-64/largecomm-1f.d: Likewise.
* testsuite/ld-x86-64/pr19645.d: Likewise.
* testsuite/ld-x86-64/pr19645.s: Likewise.
* testsuite/ld-elfcomm/elfcomm.exp: Test --elf-stt-common=yes
with assembler.
(assembler_generates_commons): Removed.
Run -z common/-z nocommon tests. Run *.d tests.
* testsuite/ld-i386/i386.exp: Run pr19645.
* testsuite/ld-x86-64/x86-64.exp: Likewise.
* testsuite/ld-x86-64/dwarfreloc.exp: Test --elf-stt-common with
assembler. Test STT_COMMON with readelf.
2016-02-22 09:18:52 -08:00
|
|
|
|
OPTION_ELF_STT_COMMON,
|
2021-11-18 16:48:19 +00:00
|
|
|
|
OPTION_ELF_BUILD_NOTES, /* = STD_BASE + 30 */
|
2015-06-09 23:06:29 -04:00
|
|
|
|
OPTION_SECTNAME_SUBST,
|
2004-08-13 19:53:52 +00:00
|
|
|
|
OPTION_ALTERNATE,
|
2005-08-08 03:05:44 +00:00
|
|
|
|
OPTION_AL,
|
2005-04-12 08:42:41 +00:00
|
|
|
|
OPTION_HASH_TABLE_SIZE,
|
|
|
|
|
OPTION_REDUCE_MEMORY_OVERHEADS,
|
2010-07-03 20:52:24 +00:00
|
|
|
|
OPTION_WARN_FATAL,
|
|
|
|
|
OPTION_COMPRESS_DEBUG,
|
2016-06-27 13:49:09 +01:00
|
|
|
|
OPTION_NOCOMPRESS_DEBUG,
|
2021-11-18 16:48:19 +00:00
|
|
|
|
OPTION_NO_PAD_SECTIONS,
|
|
|
|
|
OPTION_MULTIBYTE_HANDLING /* = STD_BASE + 40 */
|
2004-08-17 12:19:58 +00:00
|
|
|
|
/* When you add options here, check that they do
|
|
|
|
|
not collide with OPTION_MD_BASE. See as.h. */
|
2003-10-04 12:40:12 +00:00
|
|
|
|
};
|
2013-01-10 19:51:55 +00:00
|
|
|
|
|
2003-10-04 12:40:12 +00:00
|
|
|
|
static const struct option std_longopts[] =
|
|
|
|
|
{
|
2004-08-17 12:19:58 +00:00
|
|
|
|
/* Note: commas are placed at the start of the line rather than
|
2011-06-02 13:43:24 +00:00
|
|
|
|
the end of the preceding line so that it is simpler to
|
2004-08-17 12:19:58 +00:00
|
|
|
|
selectively add and remove lines from this list. */
|
|
|
|
|
{"alternate", no_argument, NULL, OPTION_ALTERNATE}
|
2005-01-20 15:35:57 +00:00
|
|
|
|
/* The entry for "a" is here to prevent getopt_long_only() from
|
|
|
|
|
considering that -a is an abbreviation for --alternate. This is
|
|
|
|
|
necessary because -a=<FILE> is a valid switch but getopt would
|
|
|
|
|
normally reject it since --alternate does not take an argument. */
|
|
|
|
|
,{"a", optional_argument, NULL, 'a'}
|
2005-08-08 03:05:44 +00:00
|
|
|
|
/* Handle -al=<FILE>. */
|
|
|
|
|
,{"al", optional_argument, NULL, OPTION_AL}
|
2015-04-08 07:53:54 -07:00
|
|
|
|
,{"compress-debug-sections", optional_argument, NULL, OPTION_COMPRESS_DEBUG}
|
2010-07-03 20:52:24 +00:00
|
|
|
|
,{"nocompress-debug-sections", no_argument, NULL, OPTION_NOCOMPRESS_DEBUG}
|
2007-08-24 21:49:55 +00:00
|
|
|
|
,{"debug-prefix-map", required_argument, NULL, OPTION_DEBUG_PREFIX_MAP}
|
2004-08-17 12:19:58 +00:00
|
|
|
|
,{"defsym", required_argument, NULL, OPTION_DEFSYM}
|
|
|
|
|
,{"dump-config", no_argument, NULL, OPTION_DUMPCONFIG}
|
|
|
|
|
,{"emulation", required_argument, NULL, OPTION_EMULATION}
|
* README-vms: Delete.
* config-gas.com: Delete.
* makefile.vms: Delete.
* vmsconf.sh: Delete.
* config/atof-tahoe.c: Delete.
* config/m88k-opcode.h: Delete.
* config/obj-bout.c: Delete.
* config/obj-bout.h: Delete.
* config/obj-hp300.c: Delete.
* config/obj-hp300.h: Delete.
* config/tc-a29k.c: Delete.
* config/tc-a29k.h: Delete.
* config/tc-h8500.c: Delete.
* config/tc-h8500.h: Delete.
* config/tc-m88k.c: Delete.
* config/tc-m88k.h: Delete.
* config/tc-tahoe.c: Delete.
* config/tc-tahoe.h: Delete.
* config/tc-tic80.c: Delete.
* config/tc-tic80.h: Delete.
* config/tc-w65.c: Delete.
* config/tc-w65.h: Delete.
* config/te-aux.h: Delete.
* config/te-delt88.h: Delete.
* config/te-delta.h: Delete.
* config/te-dpx2.h: Delete.
* config/te-hp300.h: Delete.
* config/te-ic960.h: Delete.
* config/vms-a-conf.h: Delete.
* doc/c-a29k.texi: Delete.
* doc/c-h8500.texi: Delete.
* doc/c-m88k.texi: Delete.
* README: Remove obsolete examples, and list of supported targets.
* Makefile.am: Remove a29k, h8500, m88k, tahoe, tic80, w65,
bout and hp300 support.
(DEP_FLAGS): Don't define BFD_ASSEMBLER.
* configure.in: Remove --enable-bfd-assembler, need_bfd,
primary_bfd_gas.
* configure.tgt: Remove a29k, h8300-coff, h8500-*, i960 non-elf,
m68k non bfd, m88k, or32-coff, tic80-*, vax non-bfd, w65k-*, *-nindy.
* as.c: Remove all non-BFD_ASSEMBLER code, support for above targets.
* as.h: Likewise.
* dw2gencfi.c: Likewise.
* dwarf2dbg.c: Likewise.
* ehopt.c: Likewise.
* input-file.c: Likewise.
* listing.c: Likewise.
* literal.c: Likewise.
* messages.c: Likewise.
* obj.h: Likewise.
* output-file.c: Likewise.
* read.c: Likewise.
* stabs.c: Likewise.
* struc-symbol.h: Likewise.
* subsegs.c: Likewise.
* subsegs.h: Likewise.
* symbols.c: Likewise.
* symbols.h: Likewise.
* tc.h: Likewise.
* write.c: Likewise.
* write.h: Likewise.
* config/aout_gnu.h: Likewise.
* config/obj-aout.c: Likewise.
* config/obj-aout.h: Likewise.
* config/obj-coff.c: Likewise.
* config/obj-coff.h: Likewise.
* config/obj-evax.h: Likewise.
* config/obj-ieee.h: Likewise.
* config/tc-arm.c: Likewise.
* config/tc-arm.h: Likewise.
* config/tc-avr.c: Likewise.
* config/tc-avr.h: Likewise.
* config/tc-crx.h: Likewise.
* config/tc-d10v.h: Likewise.
* config/tc-d30v.h: Likewise.
* config/tc-dlx.h: Likewise.
* config/tc-fr30.h: Likewise.
* config/tc-frv.h: Likewise.
* config/tc-h8300.c: Likewise.
* config/tc-h8300.h: Likewise.
* config/tc-hppa.h: Likewise.
* config/tc-i370.h: Likewise.
* config/tc-i386.c: Likewise.
* config/tc-i386.h: Likewise.
* config/tc-i860.h: Likewise.
* config/tc-i960.c: Likewise.
* config/tc-i960.h: Likewise.
* config/tc-ip2k.h: Likewise.
* config/tc-iq2000.h: Likewise.
* config/tc-m32c.h: Likewise.
* config/tc-m32r.h: Likewise.
* config/tc-m68hc11.h: Likewise.
* config/tc-m68k.c: Likewise.
* config/tc-m68k.h: Likewise.
* config/tc-maxq.c: Likewise.
* config/tc-maxq.h: Likewise.
* config/tc-mcore.c: Likewise.
* config/tc-mcore.h: Likewise.
* config/tc-mn10200.h: Likewise.
* config/tc-mn10300.c: Likewise.
* config/tc-mn10300.h: Likewise.
* config/tc-ms1.h: Likewise.
* config/tc-msp430.c: Likewise.
* config/tc-msp430.h: Likewise.
* config/tc-ns32k.c: Likewise.
* config/tc-ns32k.h: Likewise.
* config/tc-openrisc.h: Likewise.
* config/tc-or32.c: Likewise.
* config/tc-or32.h: Likewise.
* config/tc-ppc.c: Likewise.
* config/tc-ppc.h: Likewise.
* config/tc-s390.h: Likewise.
* config/tc-sh.c: Likewise.
* config/tc-sh.h: Likewise.
* config/tc-sparc.c: Likewise.
* config/tc-tic30.c: Likewise.
* config/tc-tic30.h: Likewise.
* config/tc-tic4x.c: Likewise.
* config/tc-tic4x.h: Likewise.
* config/tc-tic54x.c: Likewise.
* config/tc-tic54x.h: Likewise.
* config/tc-v850.h: Likewise.
* config/tc-vax.c: Likewise.
* config/tc-vax.h: Likewise.
* config/tc-xstormy16.h: Likewise.
* config/tc-xtensa.h: Likewise.
* config/tc-z8k.c: Likewise.
* config/tc-z8k.h: Likewise.
* config/vms-a-conf.h
* doc/Makefile.am: Likewise.
* doc/all.texi: Likewise.
* doc/as.texinfo: Likewise.
* doc/Makefile.in: Regenerate.
* Makefile.in: Regenerate.
* configure: Regenerate.
* config.in: Regenerate.
* po/POTFILES.in: Regenerate.
2005-08-11 01:25:29 +00:00
|
|
|
|
#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
|
2004-08-17 12:19:58 +00:00
|
|
|
|
,{"execstack", no_argument, NULL, OPTION_EXECSTACK}
|
|
|
|
|
,{"noexecstack", no_argument, NULL, OPTION_NOEXECSTACK}
|
2011-03-16 12:58:26 +00:00
|
|
|
|
,{"size-check", required_argument, NULL, OPTION_SIZE_CHECK}
|
Properly implement STT_COMMON
The BFD configure option, --enable-elf-stt-common, can't be to used to
verify STT_COMMON implementation with the normal binutils build. Instead,
this patch removes it from BFD. It adds --elf-stt-common=[no|yes] to ELF
assembler/objcopy and adds -z common/-z nocommon to ld.
A configure option, --enable-elf-stt-common, is added to gas to specify
whether ELF assembler should generate common symbols with the STT_COMMON
type by default.
Since BSF_KEEP_G is never used, it is renamed to BSF_ELF_COMMON for ELF
common symbols.
bfd/
PR ld/19645
* bfd.c (bfd): Change flags to 20 bits.
(BFD_CONVERT_ELF_COMMON): New.
(BFD_USE_ELF_STT_COMMON): Likewise.
(BFD_FLAGS_SAVED): Add BFD_CONVERT_ELF_COMMON and
BFD_USE_ELF_STT_COMMON.
(BFD_FLAGS_FOR_BFD_USE_MASK): Likewise.
* configure.ac: Remove --enable-elf-stt-common.
* elf.c (swap_out_syms): Choose STT_COMMON or STT_OBJECT for
common symbol depending on BFD_CONVERT_ELF_COMMON and
BFD_USE_ELF_STT_COMMON.
* elfcode.h (elf_slurp_symbol_table): Set BSF_ELF_COMMON for
STT_COMMON.
* elflink.c (bfd_elf_link_mark_dynamic_symbol): Also check
STT_COMMON.
(elf_link_convert_common_type): New function.
(elf_link_output_extsym): Choose STT_COMMON or STT_OBJECT for
common symbol depending on BFD_CONVERT_ELF_COMMON and
BFD_USE_ELF_STT_COMMON. Set sym.st_info after sym.st_shndx.
* elfxx-target.h (TARGET_BIG_SYM): Add BFD_CONVERT_ELF_COMMON
and BFD_USE_ELF_STT_COMMON to object_flags.
(TARGET_LITTLE_SYM): Likewise.
* syms.c (BSF_KEEP_G): Renamed to ...
(BSF_ELF_COMMON): This.
* bfd-in2.h: Regenerated.
* config.in: Likewise.
* configure: Likewise.
binutils/
PR ld/19645
* NEWS: Mention --elf-stt-common= for objcopy.
* doc/binutils.texi: Document --elf-stt-common= for objcopy.
* objcopy.c (do_elf_stt_common): New.
(command_line_switch): Add OPTION_ELF_STT_COMMON.
(copy_options): Add --elf-stt-common=.
(copy_usage): Add --elf-stt-common=.
(copy_object): Also check do_elf_stt_common for ELF targets.
(copy_file): Handle do_elf_stt_common.
(copy_main): Handle OPTION_ELF_STT_COMMON.
* readelf.c (apply_relocations): Support STT_COMMON.
* testsuite/binutils-all/common-1.s: New file.
* testsuite/binutils-all/common-1a.d: Likewise.
* testsuite/binutils-all/common-1b.d: Likewise.
* testsuite/binutils-all/common-1c.d: Likewise.
* testsuite/binutils-all/common-1d.d: Likewise.
* testsuite/binutils-all/common-1e.d: Likewise.
* testsuite/binutils-all/common-1f.d: Likewise.
* testsuite/binutils-all/common-2.s: Likewise.
* testsuite/binutils-all/common-2a.d: Likewise.
* testsuite/binutils-all/common-2b.d: Likewise.
* testsuite/binutils-all/common-2c.d: Likewise.
* testsuite/binutils-all/common-2d.d: Likewise.
* testsuite/binutils-all/common-2e.d: Likewise.
* testsuite/binutils-all/common-2f.d: Likewise.
* testsuite/binutils-all/objcopy.exp
(objcopy_test_elf_common_symbols): New proc.
Run objcopy_test_elf_common_symbols for ELF targets
gas/
PR ld/19645
* NEWS: Mention --enable-elf-stt-common and --elf-stt-common=
for ELF assemblers.
* as.c (flag_use_elf_stt_common): New.
(show_usage): Add --elf-stt-common=.
(option_values): Add OPTION_ELF_STT_COMMON.
(std_longopts): Add --elf-stt-common=.
(parse_args): Handle --elf-stt-common=.
* as.h (flag_use_elf_stt_common): New.
* config.in: Regenerated.
* configure: Likewise.
* configure.ac: Add --enable-elf-stt-common and define
DEFAULT_GENERATE_ELF_STT_COMMON.
* gas/write.c (write_object_file): Set BFD_CONVERT_ELF_COMMON
and BFD_USE_ELF_STT_COMMON if flag_use_elf_stt_common is set.
* doc/as.texinfo: Document --elf-stt-common=.
* testsuite/gas/elf/common3.s: New file.
* testsuite/gas/elf/common3a.d: Likewise.
* testsuite/gas/elf/common3b.d: Likewise.
* testsuite/gas/elf/common4.s: Likewise.
* testsuite/gas/elf/common4a.d: Likewise.
* testsuite/gas/elf/common4b.d: Likewise.
* testsuite/gas/i386/dw2-compress-3b.d: Likewise.
* testsuite/gas/i386/dw2-compressed-3b.d: Likewise.
* testsuite/gas/elf/elf.exp: Run common3a, common3b, common4a
and common4b.
* testsuite/gas/i386/dw2-compress-3.d: Renamed to ...
* testsuite/gas/i386/dw2-compress-3a.d: This. Pass
--elf-stt-common=no to as.
* testsuite/gas/i386/dw2-compressed-3.d: Renamed to ...
* testsuite/gas/i386/dw2-compressed-3a.d: This. Pass
--elf-stt-common=no to as.
* testsuite/gas/i386/i386.exp: Run dw2-compress-3a,
dw2-compress-3b, dw2-compressed-3a and dw2-compressed-3b instead
of dw2-compress-3 and dw2-compressed-3.
include/
PR ld/19645
* bfdlink.h (bfd_link_elf_stt_common): New enum.
(bfd_link_info): Add elf_stt_common.
ld/
PR ld/19645
* NEWS: Mention -z common/-z nocommon for ELF targets.
* emultempl/elf32.em (gld${EMULATION_NAME}_handle_option): Handle
-z common and -z nocommon.
* ld.texinfo: Document -z common/-z nocommon.
* lexsup.c (elf_shlib_list_options): Add -z common/-z nocommon.
* testsuite/ld-elf/tls_common.exp: Test --elf-stt-common=no and
--elf-stt-common=yes with assembler.
* testsuite/ld-elfcomm/common-1.s: New file.
* testsuite/ld-elfcomm/common-1a.d: Likewise.
* testsuite/ld-elfcomm/common-1b.d: Likewise.
* testsuite/ld-elfcomm/common-1c.d: Likewise.
* testsuite/ld-elfcomm/common-1d.d: Likewise.
* testsuite/ld-elfcomm/common-1e.d: Likewise.
* testsuite/ld-elfcomm/common-1f.d: Likewise.
* testsuite/ld-elfcomm/common-2.s: Likewise.
* testsuite/ld-elfcomm/common-2a.d: Likewise.
* testsuite/ld-elfcomm/common-2b.d: Likewise.
* testsuite/ld-elfcomm/common-2c.d: Likewise.
* testsuite/ld-elfcomm/common-2d.d: Likewise.
* testsuite/ld-elfcomm/common-2e.d: Likewise.
* testsuite/ld-elfcomm/common-2f.d: Likewise.
* testsuite/ld-elfcomm/common-3a.rd: Likewise.
* testsuite/ld-elfcomm/common-3b.rd: Likewise.
* testsuite/ld-i386/pr19645.d: Likewise.
* testsuite/ld-i386/pr19645.s: Likewise.
* testsuite/ld-x86-64/largecomm-1.s: Likewise.
* testsuite/ld-x86-64/largecomm-1a.d: Likewise.
* testsuite/ld-x86-64/largecomm-1b.d: Likewise.
* testsuite/ld-x86-64/largecomm-1c.d: Likewise.
* testsuite/ld-x86-64/largecomm-1d.d: Likewise.
* testsuite/ld-x86-64/largecomm-1e.d: Likewise.
* testsuite/ld-x86-64/largecomm-1f.d: Likewise.
* testsuite/ld-x86-64/pr19645.d: Likewise.
* testsuite/ld-x86-64/pr19645.s: Likewise.
* testsuite/ld-elfcomm/elfcomm.exp: Test --elf-stt-common=yes
with assembler.
(assembler_generates_commons): Removed.
Run -z common/-z nocommon tests. Run *.d tests.
* testsuite/ld-i386/i386.exp: Run pr19645.
* testsuite/ld-x86-64/x86-64.exp: Likewise.
* testsuite/ld-x86-64/dwarfreloc.exp: Test --elf-stt-common with
assembler. Test STT_COMMON with readelf.
2016-02-22 09:18:52 -08:00
|
|
|
|
,{"elf-stt-common", required_argument, NULL, OPTION_ELF_STT_COMMON}
|
2015-06-09 23:06:29 -04:00
|
|
|
|
,{"sectname-subst", no_argument, NULL, OPTION_SECTNAME_SUBST}
|
2018-04-26 15:12:42 +01:00
|
|
|
|
,{"generate-missing-build-notes", required_argument, NULL, OPTION_ELF_BUILD_NOTES}
|
2004-08-17 12:19:58 +00:00
|
|
|
|
#endif
|
|
|
|
|
,{"fatal-warnings", no_argument, NULL, OPTION_WARN_FATAL}
|
2020-03-06 14:52:14 +00:00
|
|
|
|
,{"gdwarf-2", no_argument, NULL, OPTION_GDWARF_2}
|
|
|
|
|
,{"gdwarf-3", no_argument, NULL, OPTION_GDWARF_3}
|
|
|
|
|
,{"gdwarf-4", no_argument, NULL, OPTION_GDWARF_4}
|
|
|
|
|
,{"gdwarf-5", no_argument, NULL, OPTION_GDWARF_5}
|
|
|
|
|
/* GCC uses --gdwarf-2 but GAS used to to use --gdwarf2,
|
2004-08-17 12:19:58 +00:00
|
|
|
|
so we keep it here for backwards compatibility. */
|
2020-03-06 14:52:14 +00:00
|
|
|
|
,{"gdwarf2", no_argument, NULL, OPTION_GDWARF_2}
|
2013-04-29 13:38:59 +00:00
|
|
|
|
,{"gdwarf-sections", no_argument, NULL, OPTION_GDWARF_SECTIONS}
|
2019-11-04 12:27:45 +00:00
|
|
|
|
,{"gdwarf-cie-version", required_argument, NULL, OPTION_GDWARF_CIE_VERSION}
|
2004-08-17 12:19:58 +00:00
|
|
|
|
,{"gen-debug", no_argument, NULL, 'g'}
|
|
|
|
|
,{"gstabs", no_argument, NULL, OPTION_GSTABS}
|
|
|
|
|
,{"gstabs+", no_argument, NULL, OPTION_GSTABS_PLUS}
|
2005-04-12 08:42:41 +00:00
|
|
|
|
,{"hash-size", required_argument, NULL, OPTION_HASH_TABLE_SIZE}
|
2004-08-17 12:19:58 +00:00
|
|
|
|
,{"help", no_argument, NULL, OPTION_HELP}
|
2007-09-26 06:54:00 +00:00
|
|
|
|
#ifdef HAVE_ITBL_CPU
|
1999-05-03 07:29:11 +00:00
|
|
|
|
/* New option for extending instruction set (see also -t above).
|
|
|
|
|
The "-t file" or "--itbl file" option extends the basic set of
|
|
|
|
|
valid instructions by reading "file", a text file containing a
|
|
|
|
|
list of instruction formats. The additional opcodes and their
|
|
|
|
|
formats are added to the built-in set of instructions, and
|
|
|
|
|
mnemonics for new registers may also be defined. */
|
2007-09-26 06:54:00 +00:00
|
|
|
|
,{"itbl", required_argument, NULL, 't'}
|
|
|
|
|
#endif
|
2004-08-17 12:19:58 +00:00
|
|
|
|
/* getopt allows abbreviations, so we do this to stop it from
|
|
|
|
|
treating -k as an abbreviation for --keep-locals. Some
|
|
|
|
|
ports use -k to enable PIC assembly. */
|
|
|
|
|
,{"keep-locals", no_argument, NULL, 'L'}
|
|
|
|
|
,{"keep-locals", no_argument, NULL, 'L'}
|
|
|
|
|
,{"listing-lhs-width", required_argument, NULL, OPTION_LISTING_LHS_WIDTH}
|
|
|
|
|
,{"listing-lhs-width2", required_argument, NULL, OPTION_LISTING_LHS_WIDTH2}
|
|
|
|
|
,{"listing-rhs-width", required_argument, NULL, OPTION_LISTING_RHS_WIDTH}
|
|
|
|
|
,{"listing-cont-lines", required_argument, NULL, OPTION_LISTING_CONT_LINES}
|
|
|
|
|
,{"MD", required_argument, NULL, OPTION_DEPFILE}
|
|
|
|
|
,{"mri", no_argument, NULL, 'M'}
|
|
|
|
|
,{"nocpp", no_argument, NULL, OPTION_NOCPP}
|
2016-06-27 13:49:09 +01:00
|
|
|
|
,{"no-pad-sections", no_argument, NULL, OPTION_NO_PAD_SECTIONS}
|
2004-08-17 12:19:58 +00:00
|
|
|
|
,{"no-warn", no_argument, NULL, 'W'}
|
2005-04-12 08:42:41 +00:00
|
|
|
|
,{"reduce-memory-overheads", no_argument, NULL, OPTION_REDUCE_MEMORY_OVERHEADS}
|
2004-08-17 12:19:58 +00:00
|
|
|
|
,{"statistics", no_argument, NULL, OPTION_STATISTICS}
|
|
|
|
|
,{"strip-local-absolute", no_argument, NULL, OPTION_STRIP_LOCAL_ABSOLUTE}
|
|
|
|
|
,{"version", no_argument, NULL, OPTION_VERSION}
|
|
|
|
|
,{"verbose", no_argument, NULL, OPTION_VERBOSE}
|
|
|
|
|
,{"target-help", no_argument, NULL, OPTION_TARGET_HELP}
|
|
|
|
|
,{"traditional-format", no_argument, NULL, OPTION_TRADITIONAL_FORMAT}
|
|
|
|
|
,{"warn", no_argument, NULL, OPTION_WARN}
|
2021-11-18 16:48:19 +00:00
|
|
|
|
,{"multibyte-handling", required_argument, NULL, OPTION_MULTIBYTE_HANDLING}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
};
|
|
|
|
|
|
2000-07-06 07:25:02 +00:00
|
|
|
|
/* Construct the option lists from the standard list and the target
|
|
|
|
|
dependent list. Include space for an extra NULL option and
|
2000-08-31 23:17:47 +00:00
|
|
|
|
always NULL terminate. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
shortopts = concat (std_shortopts, md_shortopts, (char *) NULL);
|
2009-09-11 15:27:38 +00:00
|
|
|
|
longopts = (struct option *) xmalloc (sizeof (std_longopts)
|
|
|
|
|
+ md_longopts_size + sizeof (struct option));
|
1999-05-03 07:29:11 +00:00
|
|
|
|
memcpy (longopts, std_longopts, sizeof (std_longopts));
|
2003-10-04 12:40:12 +00:00
|
|
|
|
memcpy (((char *) longopts) + sizeof (std_longopts), md_longopts, md_longopts_size);
|
|
|
|
|
memset (((char *) longopts) + sizeof (std_longopts) + md_longopts_size,
|
2000-07-06 07:25:02 +00:00
|
|
|
|
0, sizeof (struct option));
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
/* Make a local copy of the old argv. */
|
|
|
|
|
old_argc = *pargc;
|
|
|
|
|
old_argv = *pargv;
|
|
|
|
|
|
|
|
|
|
/* Initialize a new argv that contains no options. */
|
2022-07-07 13:32:30 +09:30
|
|
|
|
new_argv = notes_alloc (sizeof (char *) * (old_argc + 1));
|
1999-05-03 07:29:11 +00:00
|
|
|
|
new_argv[0] = old_argv[0];
|
|
|
|
|
new_argc = 1;
|
|
|
|
|
new_argv[new_argc] = NULL;
|
|
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
/* getopt_long_only is like getopt_long, but '-' as well as '--' can
|
|
|
|
|
indicate a long option. */
|
|
|
|
|
int longind;
|
|
|
|
|
int optc = getopt_long_only (old_argc, old_argv, shortopts, longopts,
|
|
|
|
|
&longind);
|
|
|
|
|
|
|
|
|
|
if (optc == -1)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
switch (optc)
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
/* md_parse_option should return 1 if it recognizes optc,
|
|
|
|
|
0 if not. */
|
|
|
|
|
if (md_parse_option (optc, optarg) != 0)
|
|
|
|
|
break;
|
|
|
|
|
/* `-v' isn't included in the general short_opts list, so check for
|
2003-10-27 12:45:17 +00:00
|
|
|
|
it explicitly here before deciding we've gotten a bad argument. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
if (optc == 'v')
|
|
|
|
|
{
|
|
|
|
|
#ifdef VMS
|
|
|
|
|
/* Telling getopt to treat -v's value as optional can result
|
|
|
|
|
in it picking up a following filename argument here. The
|
|
|
|
|
VMS code in md_parse_option can return 0 in that case,
|
|
|
|
|
but it has no way of pushing the filename argument back. */
|
|
|
|
|
if (optarg && *optarg)
|
2000-10-11 20:24:32 +00:00
|
|
|
|
new_argv[new_argc++] = optarg, new_argv[new_argc] = NULL;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
else
|
|
|
|
|
#else
|
|
|
|
|
case 'v':
|
|
|
|
|
#endif
|
|
|
|
|
case OPTION_VERBOSE:
|
|
|
|
|
print_version_id ();
|
2003-05-20 07:58:07 +00:00
|
|
|
|
verbose = 1;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2004-08-17 12:19:58 +00:00
|
|
|
|
else
|
|
|
|
|
as_bad (_("unrecognized option -%c%s"), optc, optarg ? optarg : "");
|
2000-08-31 23:17:47 +00:00
|
|
|
|
/* Fall through. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
case '?':
|
|
|
|
|
exit (EXIT_FAILURE);
|
|
|
|
|
|
|
|
|
|
case 1: /* File name. */
|
|
|
|
|
if (!strcmp (optarg, "-"))
|
2016-02-22 17:27:30 -05:00
|
|
|
|
optarg = (char *) "";
|
1999-05-03 07:29:11 +00:00
|
|
|
|
new_argv[new_argc++] = optarg;
|
|
|
|
|
new_argv[new_argc] = NULL;
|
|
|
|
|
break;
|
2000-11-07 01:18:45 +00:00
|
|
|
|
|
2000-10-17 20:10:20 +00:00
|
|
|
|
case OPTION_TARGET_HELP:
|
2002-05-18 12:53:30 +00:00
|
|
|
|
md_show_usage (stdout);
|
|
|
|
|
exit (EXIT_SUCCESS);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
case OPTION_HELP:
|
|
|
|
|
show_usage (stdout);
|
|
|
|
|
exit (EXIT_SUCCESS);
|
|
|
|
|
|
|
|
|
|
case OPTION_NOCPP:
|
|
|
|
|
break;
|
|
|
|
|
|
2016-06-27 13:49:09 +01:00
|
|
|
|
case OPTION_NO_PAD_SECTIONS:
|
|
|
|
|
do_not_pad_sections_to_alignment = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
case OPTION_STATISTICS:
|
|
|
|
|
flag_print_statistics = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OPTION_STRIP_LOCAL_ABSOLUTE:
|
|
|
|
|
flag_strip_local_absolute = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OPTION_TRADITIONAL_FORMAT:
|
|
|
|
|
flag_traditional_format = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
2021-11-18 16:48:19 +00:00
|
|
|
|
case OPTION_MULTIBYTE_HANDLING:
|
|
|
|
|
if (strcmp (optarg, "allow") == 0)
|
|
|
|
|
multibyte_handling = multibyte_allow;
|
|
|
|
|
else if (strcmp (optarg, "warn") == 0)
|
|
|
|
|
multibyte_handling = multibyte_warn;
|
|
|
|
|
else if (strcmp (optarg, "warn-sym-only") == 0)
|
|
|
|
|
multibyte_handling = multibyte_warn_syms;
|
|
|
|
|
else if (strcmp (optarg, "warn_sym_only") == 0)
|
|
|
|
|
multibyte_handling = multibyte_warn_syms;
|
|
|
|
|
else
|
|
|
|
|
as_fatal (_("unexpected argument to --multibyte-input-option: '%s'"), optarg);
|
|
|
|
|
break;
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
case OPTION_VERSION:
|
|
|
|
|
/* This output is intended to follow the GNU standards document. */
|
2001-10-23 04:30:21 +00:00
|
|
|
|
printf (_("GNU assembler %s\n"), BFD_VERSION_STRING);
|
2022-01-02 09:00:17 +10:30
|
|
|
|
printf (_("Copyright (C) 2022 Free Software Foundation, Inc.\n"));
|
1999-05-03 07:29:11 +00:00
|
|
|
|
printf (_("\
|
|
|
|
|
This program is free software; you may redistribute it under the terms of\n\
|
2007-07-03 11:01:12 +00:00
|
|
|
|
the GNU General Public License version 3 or later.\n\
|
|
|
|
|
This program has absolutely no warranty.\n"));
|
2016-06-30 11:14:41 +01:00
|
|
|
|
#ifdef TARGET_WITH_CPU
|
|
|
|
|
printf (_("This assembler was configured for a target of `%s' "
|
|
|
|
|
"and default,\ncpu type `%s'.\n"),
|
|
|
|
|
TARGET_ALIAS, TARGET_WITH_CPU);
|
|
|
|
|
#else
|
1999-05-03 07:29:11 +00:00
|
|
|
|
printf (_("This assembler was configured for a target of `%s'.\n"),
|
|
|
|
|
TARGET_ALIAS);
|
2016-06-30 11:14:41 +01:00
|
|
|
|
#endif
|
1999-05-03 07:29:11 +00:00
|
|
|
|
exit (EXIT_SUCCESS);
|
|
|
|
|
|
|
|
|
|
case OPTION_EMULATION:
|
|
|
|
|
#ifdef USE_EMULATIONS
|
|
|
|
|
if (strcmp (optarg, this_emulation->name))
|
|
|
|
|
as_fatal (_("multiple emulation names specified"));
|
|
|
|
|
#else
|
|
|
|
|
as_fatal (_("emulations not handled in this configuration"));
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OPTION_DUMPCONFIG:
|
|
|
|
|
fprintf (stderr, _("alias = %s\n"), TARGET_ALIAS);
|
|
|
|
|
fprintf (stderr, _("canonical = %s\n"), TARGET_CANONICAL);
|
|
|
|
|
fprintf (stderr, _("cpu-type = %s\n"), TARGET_CPU);
|
|
|
|
|
#ifdef TARGET_OBJ_FORMAT
|
|
|
|
|
fprintf (stderr, _("format = %s\n"), TARGET_OBJ_FORMAT);
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef TARGET_FORMAT
|
|
|
|
|
fprintf (stderr, _("bfd-target = %s\n"), TARGET_FORMAT);
|
|
|
|
|
#endif
|
|
|
|
|
exit (EXIT_SUCCESS);
|
|
|
|
|
|
2010-07-03 20:52:24 +00:00
|
|
|
|
case OPTION_COMPRESS_DEBUG:
|
2015-04-08 07:53:54 -07:00
|
|
|
|
if (optarg)
|
|
|
|
|
{
|
|
|
|
|
#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
|
2022-10-03 09:11:00 +02:00
|
|
|
|
flag_compress_debug = bfd_get_compression_algorithm (optarg);
|
|
|
|
|
#ifndef HAVE_ZSTD
|
|
|
|
|
if (flag_compress_debug == COMPRESS_DEBUG_ZSTD)
|
binutils, gdb: support zstd compressed debug sections
PR29397 PR29563: Add new configure option --with-zstd which defaults to
auto. If pkgconfig/libzstd.pc is found, define HAVE_ZSTD and support
zstd compressed debug sections for most tools.
* bfd: for addr2line, objdump --dwarf, gdb, etc
* gas: support --compress-debug-sections=zstd
* ld: support ELFCOMPRESS_ZSTD input and --compress-debug-sections=zstd
* objcopy: support ELFCOMPRESS_ZSTD input for
--decompress-debug-sections and --compress-debug-sections=zstd
* gdb: support ELFCOMPRESS_ZSTD input. The bfd change references zstd
symbols, so gdb has to link against -lzstd in this patch.
If zstd is not supported, ELFCOMPRESS_ZSTD input triggers an error. We
can avoid HAVE_ZSTD if binutils-gdb imports zstd/ like zlib/, but this
is too heavyweight, so don't do it for now.
```
% ld/ld-new a.o
ld/ld-new: a.o: section .debug_abbrev is compressed with zstd, but BFD is not built with zstd support
...
% ld/ld-new a.o --compress-debug-sections=zstd
ld/ld-new: --compress-debug-sections=zstd: ld is not built with zstd support
% binutils/objcopy --compress-debug-sections=zstd a.o b.o
binutils/objcopy: --compress-debug-sections=zstd: binutils is not built with zstd support
% binutils/objcopy b.o --decompress-debug-sections
binutils/objcopy: zstd.o: section .debug_abbrev is compressed with zstd, but BFD is not built with zstd support
...
```
2022-09-26 19:50:13 -07:00
|
|
|
|
as_fatal (_ ("--compress-debug-sections=zstd: gas is not "
|
|
|
|
|
"built with zstd support"));
|
|
|
|
|
#endif
|
2022-10-03 09:11:00 +02:00
|
|
|
|
if (flag_compress_debug == COMPRESS_UNKNOWN)
|
2015-04-08 07:53:54 -07:00
|
|
|
|
as_fatal (_("Invalid --compress-debug-sections option: `%s'"),
|
|
|
|
|
optarg);
|
|
|
|
|
#else
|
|
|
|
|
as_fatal (_("--compress-debug-sections=%s is unsupported"),
|
|
|
|
|
optarg);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
else
|
2015-07-14 10:25:52 -07:00
|
|
|
|
flag_compress_debug = COMPRESS_DEBUG_GABI_ZLIB;
|
2010-07-03 20:52:24 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OPTION_NOCOMPRESS_DEBUG:
|
2015-04-08 07:53:54 -07:00
|
|
|
|
flag_compress_debug = COMPRESS_DEBUG_NONE;
|
2010-07-03 20:52:24 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2007-08-24 21:49:55 +00:00
|
|
|
|
case OPTION_DEBUG_PREFIX_MAP:
|
|
|
|
|
add_debug_prefix_map (optarg);
|
|
|
|
|
break;
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
case OPTION_DEFSYM:
|
|
|
|
|
{
|
|
|
|
|
char *s;
|
2000-05-13 12:49:55 +00:00
|
|
|
|
valueT i;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
struct defsym_list *n;
|
|
|
|
|
|
|
|
|
|
for (s = optarg; *s != '\0' && *s != '='; s++)
|
|
|
|
|
;
|
|
|
|
|
if (*s == '\0')
|
|
|
|
|
as_fatal (_("bad defsym; format is --defsym name=value"));
|
|
|
|
|
*s++ = '\0';
|
2000-05-13 12:49:55 +00:00
|
|
|
|
i = bfd_scan_vma (s, (const char **) NULL, 0);
|
2016-04-06 16:26:46 -04:00
|
|
|
|
n = XNEW (struct defsym_list);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
n->next = defsyms;
|
|
|
|
|
n->name = optarg;
|
|
|
|
|
n->value = i;
|
|
|
|
|
defsyms = n;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2007-09-26 06:54:00 +00:00
|
|
|
|
#ifdef HAVE_ITBL_CPU
|
1999-05-03 07:29:11 +00:00
|
|
|
|
case 't':
|
|
|
|
|
{
|
2000-08-31 23:17:47 +00:00
|
|
|
|
/* optarg is the name of the file containing the instruction
|
|
|
|
|
formats, opcodes, register names, etc. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
if (optarg == NULL)
|
|
|
|
|
{
|
* read.c: Standardize error/warning messages - don't capitalise, no
final period or newline, don't say "ignored" or "zero assumed" for
as_bad messages. In some cases, change the wording to that used
elsewhere for similar messages.
* app.c, as.c, atof-generic.c, cgen.c, cond.c, depend.c, dwarf2dbg.c,
ecoff.c, expr.c, frags.c, input-file.c, input-scrub.c, listing.c,
output-file.c, stabs.c, subsegs.c, symbols.c, write.c: Likewise.
* ecoff.c (ecoff_directive_end): Test for missing name by
comparing input line pointers rather than reading string.
(ecoff_directive_ent): Likewise.
* read.c (s_set): Likewise.
(s_align): Report a warning rather than an error for
alignment too large.
(s_comm): Check for missing symbol name.
(s_lcomm_internal): Likewise.
(s_lsym): Likewise.
(s_globl): Use is_end_of_line instead of looking for '\n'.
(s_lcomm_internal): Likewise.
(ignore_rest_of_line): Report a warning rather than an error.
2001-08-01 01:44:25 +00:00
|
|
|
|
as_warn (_("no file name following -t option"));
|
1999-05-03 07:29:11 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2000-08-31 23:17:47 +00:00
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
/* Parse the file and add the new instructions to our internal
|
2000-08-31 23:17:47 +00:00
|
|
|
|
table. If multiple instruction tables are specified, the
|
|
|
|
|
information from this table gets appended onto the existing
|
|
|
|
|
internal table. */
|
2022-07-07 20:19:44 +09:30
|
|
|
|
if (itbl_parse (optarg) != 0)
|
* read.c: Standardize error/warning messages - don't capitalise, no
final period or newline, don't say "ignored" or "zero assumed" for
as_bad messages. In some cases, change the wording to that used
elsewhere for similar messages.
* app.c, as.c, atof-generic.c, cgen.c, cond.c, depend.c, dwarf2dbg.c,
ecoff.c, expr.c, frags.c, input-file.c, input-scrub.c, listing.c,
output-file.c, stabs.c, subsegs.c, symbols.c, write.c: Likewise.
* ecoff.c (ecoff_directive_end): Test for missing name by
comparing input line pointers rather than reading string.
(ecoff_directive_ent): Likewise.
* read.c (s_set): Likewise.
(s_align): Report a warning rather than an error for
alignment too large.
(s_comm): Check for missing symbol name.
(s_lcomm_internal): Likewise.
(s_lsym): Likewise.
(s_globl): Use is_end_of_line instead of looking for '\n'.
(s_lcomm_internal): Likewise.
(ignore_rest_of_line): Report a warning rather than an error.
2001-08-01 01:44:25 +00:00
|
|
|
|
as_fatal (_("failed to read instruction table %s\n"),
|
2022-07-07 20:19:44 +09:30
|
|
|
|
optarg);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
2007-09-26 06:54:00 +00:00
|
|
|
|
#endif
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
case OPTION_DEPFILE:
|
|
|
|
|
start_dependencies (optarg);
|
|
|
|
|
break;
|
|
|
|
|
|
2004-08-17 12:19:58 +00:00
|
|
|
|
case 'g':
|
2004-08-24 11:58:27 +00:00
|
|
|
|
/* Some backends, eg Alpha and Mips, use the -g switch for their
|
|
|
|
|
own purposes. So we check here for an explicit -g and allow
|
2004-08-17 12:19:58 +00:00
|
|
|
|
the backend to decide if it wants to process it. */
|
|
|
|
|
if ( old_argv[optind - 1][1] == 'g'
|
|
|
|
|
&& md_parse_option (optc, optarg))
|
|
|
|
|
continue;
|
|
|
|
|
|
2020-08-26 21:46:04 +02:00
|
|
|
|
/* We end up here for any -gsomething-not-already-a-long-option.
|
|
|
|
|
give some useful feedback on not (yet) supported -gdwarfxxx
|
|
|
|
|
versions/sections/options. */
|
2021-03-22 13:33:04 +01:00
|
|
|
|
if (startswith (old_argv[optind - 1], "-gdwarf"))
|
2020-08-26 21:46:04 +02:00
|
|
|
|
as_fatal (_("unknown DWARF option %s\n"), old_argv[optind - 1]);
|
2022-04-16 10:46:05 -07:00
|
|
|
|
else if (old_argv[optind - 1][1] == 'g' && optarg != NULL)
|
|
|
|
|
as_fatal (_("unknown option `%s'"), old_argv[optind - 1]);
|
2020-08-26 21:46:04 +02:00
|
|
|
|
|
2004-08-17 12:19:58 +00:00
|
|
|
|
if (md_debug_format_selector)
|
|
|
|
|
debug_type = md_debug_format_selector (& use_gnu_debug_info_extensions);
|
|
|
|
|
else if (IS_ELF)
|
2020-03-06 14:52:14 +00:00
|
|
|
|
{
|
|
|
|
|
debug_type = DEBUG_DWARF2;
|
|
|
|
|
dwarf_level = 2;
|
|
|
|
|
}
|
2004-08-17 12:19:58 +00:00
|
|
|
|
else
|
|
|
|
|
debug_type = DEBUG_STABS;
|
|
|
|
|
break;
|
|
|
|
|
|
2003-10-08 14:37:20 +00:00
|
|
|
|
case OPTION_GSTABS_PLUS:
|
|
|
|
|
use_gnu_debug_info_extensions = 1;
|
|
|
|
|
/* Fall through. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
case OPTION_GSTABS:
|
|
|
|
|
debug_type = DEBUG_STABS;
|
|
|
|
|
break;
|
2000-08-31 23:17:47 +00:00
|
|
|
|
|
2020-03-06 14:52:14 +00:00
|
|
|
|
case OPTION_GDWARF_2:
|
|
|
|
|
debug_type = DEBUG_DWARF2;
|
|
|
|
|
dwarf_level = 2;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OPTION_GDWARF_3:
|
|
|
|
|
debug_type = DEBUG_DWARF2;
|
|
|
|
|
dwarf_level = 3;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OPTION_GDWARF_4:
|
1999-06-03 02:51:53 +00:00
|
|
|
|
debug_type = DEBUG_DWARF2;
|
2020-03-06 14:52:14 +00:00
|
|
|
|
dwarf_level = 4;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OPTION_GDWARF_5:
|
|
|
|
|
debug_type = DEBUG_DWARF2;
|
|
|
|
|
dwarf_level = 5;
|
1999-06-03 02:51:53 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2013-04-29 13:38:59 +00:00
|
|
|
|
case OPTION_GDWARF_SECTIONS:
|
Use bool in gas
* as.h (POISON_BFD_BOOLEAN): Define.
* as.c, * as.h, * atof-generic.c, * config/atof-ieee.c,
* config/bfin-aux.h, * config/obj-coff.c, * config/obj-ecoff.c,
* config/obj-elf.c, * config/obj-elf.h, * config/obj-som.c,
* config/tc-aarch64.c, * config/tc-alpha.c, * config/tc-arc.c,
* config/tc-arc.h, * config/tc-arm.c, * config/tc-arm.h,
* config/tc-avr.c, * config/tc-avr.h, * config/tc-bfin.c,
* config/tc-bfin.h, * config/tc-bpf.c, * config/tc-cris.c,
* config/tc-csky.c, * config/tc-csky.h, * config/tc-d10v.c,
* config/tc-d10v.h, * config/tc-d30v.c, * config/tc-d30v.h,
* config/tc-dlx.c, * config/tc-dlx.h, * config/tc-epiphany.c,
* config/tc-epiphany.h, * config/tc-fr30.c, * config/tc-fr30.h,
* config/tc-frv.c, * config/tc-frv.h, * config/tc-ft32.c,
* config/tc-ft32.h, * config/tc-h8300.c, * config/tc-hppa.c,
* config/tc-i386-intel.c, * config/tc-i386.c, * config/tc-ia64.c,
* config/tc-ip2k.c, * config/tc-iq2000.c, * config/tc-iq2000.h,
* config/tc-lm32.c, * config/tc-lm32.h, * config/tc-m32c.c,
* config/tc-m32c.h, * config/tc-m32r.c, * config/tc-m32r.h,
* config/tc-m68hc11.c, * config/tc-m68k.c, * config/tc-mcore.c,
* config/tc-mcore.h, * config/tc-mep.c, * config/tc-mep.h,
* config/tc-metag.c, * config/tc-metag.h,
* config/tc-microblaze.c, * config/tc-mips.c, * config/tc-mips.h,
* config/tc-mmix.c, * config/tc-mn10200.c, * config/tc-mn10300.c,
* config/tc-mn10300.h, * config/tc-moxie.c, * config/tc-msp430.c,
* config/tc-msp430.h, * config/tc-mt.c, * config/tc-mt.h,
* config/tc-nds32.c, * config/tc-nds32.h, * config/tc-nios2.c,
* config/tc-ns32k.c, * config/tc-or1k.c, * config/tc-or1k.h,
* config/tc-pdp11.c, * config/tc-ppc.c, * config/tc-pru.c,
* config/tc-pru.h, * config/tc-riscv.c, * config/tc-riscv.h,
* config/tc-rx.c, * config/tc-rx.h, * config/tc-s12z.c,
* config/tc-s12z.h, * config/tc-s390.c, * config/tc-score.c,
* config/tc-score.h, * config/tc-score7.c, * config/tc-sh.c,
* config/tc-sh.h, * config/tc-spu.c, * config/tc-tic54x.c,
* config/tc-tic6x.c, * config/tc-tic6x.h, * config/tc-tilegx.c,
* config/tc-tilepro.c, * config/tc-v850.c, * config/tc-v850.h,
* config/tc-visium.c, * config/tc-visium.h, * config/tc-wasm32.c,
* config/tc-wasm32.h, * config/tc-xc16x.c, * config/tc-xgate.c,
* config/tc-xstormy16.c, * config/tc-xstormy16.h,
* config/tc-xtensa.c, * config/tc-xtensa.h, * config/tc-z80.c,
* config/tc-z8k.c, * config/xtensa-istack.h,
* config/xtensa-relax.c, * config/xtensa-relax.h, * dw2gencfi.c,
* dwarf2dbg.c, * dwarf2dbg.h, * expr.c, * expr.h, * frags.c,
* frags.h, * listing.c, * macro.c, * output-file.c, * read.c,
* read.h, * stabs.c, * symbols.c, * write.c: Replace bfd_boolean
with bool, FALSE with false, and TRUE with true.
2021-03-31 10:42:05 +10:30
|
|
|
|
flag_dwarf_sections = true;
|
2013-04-29 13:38:59 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2019-11-04 12:27:45 +00:00
|
|
|
|
case OPTION_GDWARF_CIE_VERSION:
|
|
|
|
|
flag_dwarf_cie_version = atoi (optarg);
|
|
|
|
|
/* The available CIE versions are 1 (DWARF 2), 3 (DWARF 3), and 4
|
|
|
|
|
(DWARF 4 and 5). */
|
|
|
|
|
if (flag_dwarf_cie_version < 1
|
|
|
|
|
|| flag_dwarf_cie_version == 2
|
|
|
|
|
|| flag_dwarf_cie_version > 4)
|
|
|
|
|
as_fatal (_("Invalid --gdwarf-cie-version `%s'"), optarg);
|
2020-03-06 14:52:14 +00:00
|
|
|
|
switch (flag_dwarf_cie_version)
|
|
|
|
|
{
|
|
|
|
|
case 1:
|
|
|
|
|
if (dwarf_level < 2)
|
|
|
|
|
dwarf_level = 2;
|
|
|
|
|
break;
|
|
|
|
|
case 3:
|
|
|
|
|
if (dwarf_level < 3)
|
|
|
|
|
dwarf_level = 3;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
if (dwarf_level < 4)
|
|
|
|
|
dwarf_level = 4;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2019-11-04 12:27:45 +00:00
|
|
|
|
break;
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
case 'J':
|
|
|
|
|
flag_signed_overflow_ok = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
#ifndef WORKING_DOT_WORD
|
|
|
|
|
case 'K':
|
|
|
|
|
flag_warn_displacement = 1;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
case 'L':
|
|
|
|
|
flag_keep_locals = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OPTION_LISTING_LHS_WIDTH:
|
2000-08-31 23:17:47 +00:00
|
|
|
|
listing_lhs_width = atoi (optarg);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
if (listing_lhs_width_second < listing_lhs_width)
|
|
|
|
|
listing_lhs_width_second = listing_lhs_width;
|
|
|
|
|
break;
|
|
|
|
|
case OPTION_LISTING_LHS_WIDTH2:
|
|
|
|
|
{
|
2000-08-31 23:17:47 +00:00
|
|
|
|
int tmp = atoi (optarg);
|
2004-08-17 12:19:58 +00:00
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
if (tmp > listing_lhs_width)
|
|
|
|
|
listing_lhs_width_second = tmp;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case OPTION_LISTING_RHS_WIDTH:
|
2000-08-31 23:17:47 +00:00
|
|
|
|
listing_rhs_width = atoi (optarg);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
break;
|
|
|
|
|
case OPTION_LISTING_CONT_LINES:
|
2000-08-31 23:17:47 +00:00
|
|
|
|
listing_lhs_cont_lines = atoi (optarg);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'M':
|
|
|
|
|
flag_mri = 1;
|
|
|
|
|
#ifdef TC_M68K
|
|
|
|
|
flag_m68k_mri = 1;
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'R':
|
|
|
|
|
flag_readonly_data_in_text = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'W':
|
|
|
|
|
flag_no_warnings = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
1999-10-11 04:07:10 +00:00
|
|
|
|
case OPTION_WARN:
|
|
|
|
|
flag_no_warnings = 0;
|
|
|
|
|
flag_fatal_warnings = 0;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OPTION_WARN_FATAL:
|
|
|
|
|
flag_no_warnings = 0;
|
|
|
|
|
flag_fatal_warnings = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
* README-vms: Delete.
* config-gas.com: Delete.
* makefile.vms: Delete.
* vmsconf.sh: Delete.
* config/atof-tahoe.c: Delete.
* config/m88k-opcode.h: Delete.
* config/obj-bout.c: Delete.
* config/obj-bout.h: Delete.
* config/obj-hp300.c: Delete.
* config/obj-hp300.h: Delete.
* config/tc-a29k.c: Delete.
* config/tc-a29k.h: Delete.
* config/tc-h8500.c: Delete.
* config/tc-h8500.h: Delete.
* config/tc-m88k.c: Delete.
* config/tc-m88k.h: Delete.
* config/tc-tahoe.c: Delete.
* config/tc-tahoe.h: Delete.
* config/tc-tic80.c: Delete.
* config/tc-tic80.h: Delete.
* config/tc-w65.c: Delete.
* config/tc-w65.h: Delete.
* config/te-aux.h: Delete.
* config/te-delt88.h: Delete.
* config/te-delta.h: Delete.
* config/te-dpx2.h: Delete.
* config/te-hp300.h: Delete.
* config/te-ic960.h: Delete.
* config/vms-a-conf.h: Delete.
* doc/c-a29k.texi: Delete.
* doc/c-h8500.texi: Delete.
* doc/c-m88k.texi: Delete.
* README: Remove obsolete examples, and list of supported targets.
* Makefile.am: Remove a29k, h8500, m88k, tahoe, tic80, w65,
bout and hp300 support.
(DEP_FLAGS): Don't define BFD_ASSEMBLER.
* configure.in: Remove --enable-bfd-assembler, need_bfd,
primary_bfd_gas.
* configure.tgt: Remove a29k, h8300-coff, h8500-*, i960 non-elf,
m68k non bfd, m88k, or32-coff, tic80-*, vax non-bfd, w65k-*, *-nindy.
* as.c: Remove all non-BFD_ASSEMBLER code, support for above targets.
* as.h: Likewise.
* dw2gencfi.c: Likewise.
* dwarf2dbg.c: Likewise.
* ehopt.c: Likewise.
* input-file.c: Likewise.
* listing.c: Likewise.
* literal.c: Likewise.
* messages.c: Likewise.
* obj.h: Likewise.
* output-file.c: Likewise.
* read.c: Likewise.
* stabs.c: Likewise.
* struc-symbol.h: Likewise.
* subsegs.c: Likewise.
* subsegs.h: Likewise.
* symbols.c: Likewise.
* symbols.h: Likewise.
* tc.h: Likewise.
* write.c: Likewise.
* write.h: Likewise.
* config/aout_gnu.h: Likewise.
* config/obj-aout.c: Likewise.
* config/obj-aout.h: Likewise.
* config/obj-coff.c: Likewise.
* config/obj-coff.h: Likewise.
* config/obj-evax.h: Likewise.
* config/obj-ieee.h: Likewise.
* config/tc-arm.c: Likewise.
* config/tc-arm.h: Likewise.
* config/tc-avr.c: Likewise.
* config/tc-avr.h: Likewise.
* config/tc-crx.h: Likewise.
* config/tc-d10v.h: Likewise.
* config/tc-d30v.h: Likewise.
* config/tc-dlx.h: Likewise.
* config/tc-fr30.h: Likewise.
* config/tc-frv.h: Likewise.
* config/tc-h8300.c: Likewise.
* config/tc-h8300.h: Likewise.
* config/tc-hppa.h: Likewise.
* config/tc-i370.h: Likewise.
* config/tc-i386.c: Likewise.
* config/tc-i386.h: Likewise.
* config/tc-i860.h: Likewise.
* config/tc-i960.c: Likewise.
* config/tc-i960.h: Likewise.
* config/tc-ip2k.h: Likewise.
* config/tc-iq2000.h: Likewise.
* config/tc-m32c.h: Likewise.
* config/tc-m32r.h: Likewise.
* config/tc-m68hc11.h: Likewise.
* config/tc-m68k.c: Likewise.
* config/tc-m68k.h: Likewise.
* config/tc-maxq.c: Likewise.
* config/tc-maxq.h: Likewise.
* config/tc-mcore.c: Likewise.
* config/tc-mcore.h: Likewise.
* config/tc-mn10200.h: Likewise.
* config/tc-mn10300.c: Likewise.
* config/tc-mn10300.h: Likewise.
* config/tc-ms1.h: Likewise.
* config/tc-msp430.c: Likewise.
* config/tc-msp430.h: Likewise.
* config/tc-ns32k.c: Likewise.
* config/tc-ns32k.h: Likewise.
* config/tc-openrisc.h: Likewise.
* config/tc-or32.c: Likewise.
* config/tc-or32.h: Likewise.
* config/tc-ppc.c: Likewise.
* config/tc-ppc.h: Likewise.
* config/tc-s390.h: Likewise.
* config/tc-sh.c: Likewise.
* config/tc-sh.h: Likewise.
* config/tc-sparc.c: Likewise.
* config/tc-tic30.c: Likewise.
* config/tc-tic30.h: Likewise.
* config/tc-tic4x.c: Likewise.
* config/tc-tic4x.h: Likewise.
* config/tc-tic54x.c: Likewise.
* config/tc-tic54x.h: Likewise.
* config/tc-v850.h: Likewise.
* config/tc-vax.c: Likewise.
* config/tc-vax.h: Likewise.
* config/tc-xstormy16.h: Likewise.
* config/tc-xtensa.h: Likewise.
* config/tc-z8k.c: Likewise.
* config/tc-z8k.h: Likewise.
* config/vms-a-conf.h
* doc/Makefile.am: Likewise.
* doc/all.texi: Likewise.
* doc/as.texinfo: Likewise.
* doc/Makefile.in: Regenerate.
* Makefile.in: Regenerate.
* configure: Regenerate.
* config.in: Regenerate.
* po/POTFILES.in: Regenerate.
2005-08-11 01:25:29 +00:00
|
|
|
|
#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
|
2003-06-04 16:54:45 +00:00
|
|
|
|
case OPTION_EXECSTACK:
|
|
|
|
|
flag_execstack = 1;
|
|
|
|
|
flag_noexecstack = 0;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OPTION_NOEXECSTACK:
|
|
|
|
|
flag_noexecstack = 1;
|
|
|
|
|
flag_execstack = 0;
|
|
|
|
|
break;
|
2011-03-16 12:58:26 +00:00
|
|
|
|
|
|
|
|
|
case OPTION_SIZE_CHECK:
|
|
|
|
|
if (strcasecmp (optarg, "error") == 0)
|
Use bool in gas
* as.h (POISON_BFD_BOOLEAN): Define.
* as.c, * as.h, * atof-generic.c, * config/atof-ieee.c,
* config/bfin-aux.h, * config/obj-coff.c, * config/obj-ecoff.c,
* config/obj-elf.c, * config/obj-elf.h, * config/obj-som.c,
* config/tc-aarch64.c, * config/tc-alpha.c, * config/tc-arc.c,
* config/tc-arc.h, * config/tc-arm.c, * config/tc-arm.h,
* config/tc-avr.c, * config/tc-avr.h, * config/tc-bfin.c,
* config/tc-bfin.h, * config/tc-bpf.c, * config/tc-cris.c,
* config/tc-csky.c, * config/tc-csky.h, * config/tc-d10v.c,
* config/tc-d10v.h, * config/tc-d30v.c, * config/tc-d30v.h,
* config/tc-dlx.c, * config/tc-dlx.h, * config/tc-epiphany.c,
* config/tc-epiphany.h, * config/tc-fr30.c, * config/tc-fr30.h,
* config/tc-frv.c, * config/tc-frv.h, * config/tc-ft32.c,
* config/tc-ft32.h, * config/tc-h8300.c, * config/tc-hppa.c,
* config/tc-i386-intel.c, * config/tc-i386.c, * config/tc-ia64.c,
* config/tc-ip2k.c, * config/tc-iq2000.c, * config/tc-iq2000.h,
* config/tc-lm32.c, * config/tc-lm32.h, * config/tc-m32c.c,
* config/tc-m32c.h, * config/tc-m32r.c, * config/tc-m32r.h,
* config/tc-m68hc11.c, * config/tc-m68k.c, * config/tc-mcore.c,
* config/tc-mcore.h, * config/tc-mep.c, * config/tc-mep.h,
* config/tc-metag.c, * config/tc-metag.h,
* config/tc-microblaze.c, * config/tc-mips.c, * config/tc-mips.h,
* config/tc-mmix.c, * config/tc-mn10200.c, * config/tc-mn10300.c,
* config/tc-mn10300.h, * config/tc-moxie.c, * config/tc-msp430.c,
* config/tc-msp430.h, * config/tc-mt.c, * config/tc-mt.h,
* config/tc-nds32.c, * config/tc-nds32.h, * config/tc-nios2.c,
* config/tc-ns32k.c, * config/tc-or1k.c, * config/tc-or1k.h,
* config/tc-pdp11.c, * config/tc-ppc.c, * config/tc-pru.c,
* config/tc-pru.h, * config/tc-riscv.c, * config/tc-riscv.h,
* config/tc-rx.c, * config/tc-rx.h, * config/tc-s12z.c,
* config/tc-s12z.h, * config/tc-s390.c, * config/tc-score.c,
* config/tc-score.h, * config/tc-score7.c, * config/tc-sh.c,
* config/tc-sh.h, * config/tc-spu.c, * config/tc-tic54x.c,
* config/tc-tic6x.c, * config/tc-tic6x.h, * config/tc-tilegx.c,
* config/tc-tilepro.c, * config/tc-v850.c, * config/tc-v850.h,
* config/tc-visium.c, * config/tc-visium.h, * config/tc-wasm32.c,
* config/tc-wasm32.h, * config/tc-xc16x.c, * config/tc-xgate.c,
* config/tc-xstormy16.c, * config/tc-xstormy16.h,
* config/tc-xtensa.c, * config/tc-xtensa.h, * config/tc-z80.c,
* config/tc-z8k.c, * config/xtensa-istack.h,
* config/xtensa-relax.c, * config/xtensa-relax.h, * dw2gencfi.c,
* dwarf2dbg.c, * dwarf2dbg.h, * expr.c, * expr.h, * frags.c,
* frags.h, * listing.c, * macro.c, * output-file.c, * read.c,
* read.h, * stabs.c, * symbols.c, * write.c: Replace bfd_boolean
with bool, FALSE with false, and TRUE with true.
2021-03-31 10:42:05 +10:30
|
|
|
|
flag_allow_nonconst_size = false;
|
2011-03-16 12:58:26 +00:00
|
|
|
|
else if (strcasecmp (optarg, "warning") == 0)
|
Use bool in gas
* as.h (POISON_BFD_BOOLEAN): Define.
* as.c, * as.h, * atof-generic.c, * config/atof-ieee.c,
* config/bfin-aux.h, * config/obj-coff.c, * config/obj-ecoff.c,
* config/obj-elf.c, * config/obj-elf.h, * config/obj-som.c,
* config/tc-aarch64.c, * config/tc-alpha.c, * config/tc-arc.c,
* config/tc-arc.h, * config/tc-arm.c, * config/tc-arm.h,
* config/tc-avr.c, * config/tc-avr.h, * config/tc-bfin.c,
* config/tc-bfin.h, * config/tc-bpf.c, * config/tc-cris.c,
* config/tc-csky.c, * config/tc-csky.h, * config/tc-d10v.c,
* config/tc-d10v.h, * config/tc-d30v.c, * config/tc-d30v.h,
* config/tc-dlx.c, * config/tc-dlx.h, * config/tc-epiphany.c,
* config/tc-epiphany.h, * config/tc-fr30.c, * config/tc-fr30.h,
* config/tc-frv.c, * config/tc-frv.h, * config/tc-ft32.c,
* config/tc-ft32.h, * config/tc-h8300.c, * config/tc-hppa.c,
* config/tc-i386-intel.c, * config/tc-i386.c, * config/tc-ia64.c,
* config/tc-ip2k.c, * config/tc-iq2000.c, * config/tc-iq2000.h,
* config/tc-lm32.c, * config/tc-lm32.h, * config/tc-m32c.c,
* config/tc-m32c.h, * config/tc-m32r.c, * config/tc-m32r.h,
* config/tc-m68hc11.c, * config/tc-m68k.c, * config/tc-mcore.c,
* config/tc-mcore.h, * config/tc-mep.c, * config/tc-mep.h,
* config/tc-metag.c, * config/tc-metag.h,
* config/tc-microblaze.c, * config/tc-mips.c, * config/tc-mips.h,
* config/tc-mmix.c, * config/tc-mn10200.c, * config/tc-mn10300.c,
* config/tc-mn10300.h, * config/tc-moxie.c, * config/tc-msp430.c,
* config/tc-msp430.h, * config/tc-mt.c, * config/tc-mt.h,
* config/tc-nds32.c, * config/tc-nds32.h, * config/tc-nios2.c,
* config/tc-ns32k.c, * config/tc-or1k.c, * config/tc-or1k.h,
* config/tc-pdp11.c, * config/tc-ppc.c, * config/tc-pru.c,
* config/tc-pru.h, * config/tc-riscv.c, * config/tc-riscv.h,
* config/tc-rx.c, * config/tc-rx.h, * config/tc-s12z.c,
* config/tc-s12z.h, * config/tc-s390.c, * config/tc-score.c,
* config/tc-score.h, * config/tc-score7.c, * config/tc-sh.c,
* config/tc-sh.h, * config/tc-spu.c, * config/tc-tic54x.c,
* config/tc-tic6x.c, * config/tc-tic6x.h, * config/tc-tilegx.c,
* config/tc-tilepro.c, * config/tc-v850.c, * config/tc-v850.h,
* config/tc-visium.c, * config/tc-visium.h, * config/tc-wasm32.c,
* config/tc-wasm32.h, * config/tc-xc16x.c, * config/tc-xgate.c,
* config/tc-xstormy16.c, * config/tc-xstormy16.h,
* config/tc-xtensa.c, * config/tc-xtensa.h, * config/tc-z80.c,
* config/tc-z8k.c, * config/xtensa-istack.h,
* config/xtensa-relax.c, * config/xtensa-relax.h, * dw2gencfi.c,
* dwarf2dbg.c, * dwarf2dbg.h, * expr.c, * expr.h, * frags.c,
* frags.h, * listing.c, * macro.c, * output-file.c, * read.c,
* read.h, * stabs.c, * symbols.c, * write.c: Replace bfd_boolean
with bool, FALSE with false, and TRUE with true.
2021-03-31 10:42:05 +10:30
|
|
|
|
flag_allow_nonconst_size = true;
|
2011-03-16 12:58:26 +00:00
|
|
|
|
else
|
|
|
|
|
as_fatal (_("Invalid --size-check= option: `%s'"), optarg);
|
|
|
|
|
break;
|
2015-06-09 23:06:29 -04:00
|
|
|
|
|
Properly implement STT_COMMON
The BFD configure option, --enable-elf-stt-common, can't be to used to
verify STT_COMMON implementation with the normal binutils build. Instead,
this patch removes it from BFD. It adds --elf-stt-common=[no|yes] to ELF
assembler/objcopy and adds -z common/-z nocommon to ld.
A configure option, --enable-elf-stt-common, is added to gas to specify
whether ELF assembler should generate common symbols with the STT_COMMON
type by default.
Since BSF_KEEP_G is never used, it is renamed to BSF_ELF_COMMON for ELF
common symbols.
bfd/
PR ld/19645
* bfd.c (bfd): Change flags to 20 bits.
(BFD_CONVERT_ELF_COMMON): New.
(BFD_USE_ELF_STT_COMMON): Likewise.
(BFD_FLAGS_SAVED): Add BFD_CONVERT_ELF_COMMON and
BFD_USE_ELF_STT_COMMON.
(BFD_FLAGS_FOR_BFD_USE_MASK): Likewise.
* configure.ac: Remove --enable-elf-stt-common.
* elf.c (swap_out_syms): Choose STT_COMMON or STT_OBJECT for
common symbol depending on BFD_CONVERT_ELF_COMMON and
BFD_USE_ELF_STT_COMMON.
* elfcode.h (elf_slurp_symbol_table): Set BSF_ELF_COMMON for
STT_COMMON.
* elflink.c (bfd_elf_link_mark_dynamic_symbol): Also check
STT_COMMON.
(elf_link_convert_common_type): New function.
(elf_link_output_extsym): Choose STT_COMMON or STT_OBJECT for
common symbol depending on BFD_CONVERT_ELF_COMMON and
BFD_USE_ELF_STT_COMMON. Set sym.st_info after sym.st_shndx.
* elfxx-target.h (TARGET_BIG_SYM): Add BFD_CONVERT_ELF_COMMON
and BFD_USE_ELF_STT_COMMON to object_flags.
(TARGET_LITTLE_SYM): Likewise.
* syms.c (BSF_KEEP_G): Renamed to ...
(BSF_ELF_COMMON): This.
* bfd-in2.h: Regenerated.
* config.in: Likewise.
* configure: Likewise.
binutils/
PR ld/19645
* NEWS: Mention --elf-stt-common= for objcopy.
* doc/binutils.texi: Document --elf-stt-common= for objcopy.
* objcopy.c (do_elf_stt_common): New.
(command_line_switch): Add OPTION_ELF_STT_COMMON.
(copy_options): Add --elf-stt-common=.
(copy_usage): Add --elf-stt-common=.
(copy_object): Also check do_elf_stt_common for ELF targets.
(copy_file): Handle do_elf_stt_common.
(copy_main): Handle OPTION_ELF_STT_COMMON.
* readelf.c (apply_relocations): Support STT_COMMON.
* testsuite/binutils-all/common-1.s: New file.
* testsuite/binutils-all/common-1a.d: Likewise.
* testsuite/binutils-all/common-1b.d: Likewise.
* testsuite/binutils-all/common-1c.d: Likewise.
* testsuite/binutils-all/common-1d.d: Likewise.
* testsuite/binutils-all/common-1e.d: Likewise.
* testsuite/binutils-all/common-1f.d: Likewise.
* testsuite/binutils-all/common-2.s: Likewise.
* testsuite/binutils-all/common-2a.d: Likewise.
* testsuite/binutils-all/common-2b.d: Likewise.
* testsuite/binutils-all/common-2c.d: Likewise.
* testsuite/binutils-all/common-2d.d: Likewise.
* testsuite/binutils-all/common-2e.d: Likewise.
* testsuite/binutils-all/common-2f.d: Likewise.
* testsuite/binutils-all/objcopy.exp
(objcopy_test_elf_common_symbols): New proc.
Run objcopy_test_elf_common_symbols for ELF targets
gas/
PR ld/19645
* NEWS: Mention --enable-elf-stt-common and --elf-stt-common=
for ELF assemblers.
* as.c (flag_use_elf_stt_common): New.
(show_usage): Add --elf-stt-common=.
(option_values): Add OPTION_ELF_STT_COMMON.
(std_longopts): Add --elf-stt-common=.
(parse_args): Handle --elf-stt-common=.
* as.h (flag_use_elf_stt_common): New.
* config.in: Regenerated.
* configure: Likewise.
* configure.ac: Add --enable-elf-stt-common and define
DEFAULT_GENERATE_ELF_STT_COMMON.
* gas/write.c (write_object_file): Set BFD_CONVERT_ELF_COMMON
and BFD_USE_ELF_STT_COMMON if flag_use_elf_stt_common is set.
* doc/as.texinfo: Document --elf-stt-common=.
* testsuite/gas/elf/common3.s: New file.
* testsuite/gas/elf/common3a.d: Likewise.
* testsuite/gas/elf/common3b.d: Likewise.
* testsuite/gas/elf/common4.s: Likewise.
* testsuite/gas/elf/common4a.d: Likewise.
* testsuite/gas/elf/common4b.d: Likewise.
* testsuite/gas/i386/dw2-compress-3b.d: Likewise.
* testsuite/gas/i386/dw2-compressed-3b.d: Likewise.
* testsuite/gas/elf/elf.exp: Run common3a, common3b, common4a
and common4b.
* testsuite/gas/i386/dw2-compress-3.d: Renamed to ...
* testsuite/gas/i386/dw2-compress-3a.d: This. Pass
--elf-stt-common=no to as.
* testsuite/gas/i386/dw2-compressed-3.d: Renamed to ...
* testsuite/gas/i386/dw2-compressed-3a.d: This. Pass
--elf-stt-common=no to as.
* testsuite/gas/i386/i386.exp: Run dw2-compress-3a,
dw2-compress-3b, dw2-compressed-3a and dw2-compressed-3b instead
of dw2-compress-3 and dw2-compressed-3.
include/
PR ld/19645
* bfdlink.h (bfd_link_elf_stt_common): New enum.
(bfd_link_info): Add elf_stt_common.
ld/
PR ld/19645
* NEWS: Mention -z common/-z nocommon for ELF targets.
* emultempl/elf32.em (gld${EMULATION_NAME}_handle_option): Handle
-z common and -z nocommon.
* ld.texinfo: Document -z common/-z nocommon.
* lexsup.c (elf_shlib_list_options): Add -z common/-z nocommon.
* testsuite/ld-elf/tls_common.exp: Test --elf-stt-common=no and
--elf-stt-common=yes with assembler.
* testsuite/ld-elfcomm/common-1.s: New file.
* testsuite/ld-elfcomm/common-1a.d: Likewise.
* testsuite/ld-elfcomm/common-1b.d: Likewise.
* testsuite/ld-elfcomm/common-1c.d: Likewise.
* testsuite/ld-elfcomm/common-1d.d: Likewise.
* testsuite/ld-elfcomm/common-1e.d: Likewise.
* testsuite/ld-elfcomm/common-1f.d: Likewise.
* testsuite/ld-elfcomm/common-2.s: Likewise.
* testsuite/ld-elfcomm/common-2a.d: Likewise.
* testsuite/ld-elfcomm/common-2b.d: Likewise.
* testsuite/ld-elfcomm/common-2c.d: Likewise.
* testsuite/ld-elfcomm/common-2d.d: Likewise.
* testsuite/ld-elfcomm/common-2e.d: Likewise.
* testsuite/ld-elfcomm/common-2f.d: Likewise.
* testsuite/ld-elfcomm/common-3a.rd: Likewise.
* testsuite/ld-elfcomm/common-3b.rd: Likewise.
* testsuite/ld-i386/pr19645.d: Likewise.
* testsuite/ld-i386/pr19645.s: Likewise.
* testsuite/ld-x86-64/largecomm-1.s: Likewise.
* testsuite/ld-x86-64/largecomm-1a.d: Likewise.
* testsuite/ld-x86-64/largecomm-1b.d: Likewise.
* testsuite/ld-x86-64/largecomm-1c.d: Likewise.
* testsuite/ld-x86-64/largecomm-1d.d: Likewise.
* testsuite/ld-x86-64/largecomm-1e.d: Likewise.
* testsuite/ld-x86-64/largecomm-1f.d: Likewise.
* testsuite/ld-x86-64/pr19645.d: Likewise.
* testsuite/ld-x86-64/pr19645.s: Likewise.
* testsuite/ld-elfcomm/elfcomm.exp: Test --elf-stt-common=yes
with assembler.
(assembler_generates_commons): Removed.
Run -z common/-z nocommon tests. Run *.d tests.
* testsuite/ld-i386/i386.exp: Run pr19645.
* testsuite/ld-x86-64/x86-64.exp: Likewise.
* testsuite/ld-x86-64/dwarfreloc.exp: Test --elf-stt-common with
assembler. Test STT_COMMON with readelf.
2016-02-22 09:18:52 -08:00
|
|
|
|
case OPTION_ELF_STT_COMMON:
|
|
|
|
|
if (strcasecmp (optarg, "no") == 0)
|
|
|
|
|
flag_use_elf_stt_common = 0;
|
|
|
|
|
else if (strcasecmp (optarg, "yes") == 0)
|
|
|
|
|
flag_use_elf_stt_common = 1;
|
|
|
|
|
else
|
|
|
|
|
as_fatal (_("Invalid --elf-stt-common= option: `%s'"),
|
|
|
|
|
optarg);
|
|
|
|
|
break;
|
|
|
|
|
|
2015-06-09 23:06:29 -04:00
|
|
|
|
case OPTION_SECTNAME_SUBST:
|
|
|
|
|
flag_sectname_subst = 1;
|
|
|
|
|
break;
|
2018-04-26 15:12:42 +01:00
|
|
|
|
|
|
|
|
|
case OPTION_ELF_BUILD_NOTES:
|
|
|
|
|
if (strcasecmp (optarg, "no") == 0)
|
Use bool in gas
* as.h (POISON_BFD_BOOLEAN): Define.
* as.c, * as.h, * atof-generic.c, * config/atof-ieee.c,
* config/bfin-aux.h, * config/obj-coff.c, * config/obj-ecoff.c,
* config/obj-elf.c, * config/obj-elf.h, * config/obj-som.c,
* config/tc-aarch64.c, * config/tc-alpha.c, * config/tc-arc.c,
* config/tc-arc.h, * config/tc-arm.c, * config/tc-arm.h,
* config/tc-avr.c, * config/tc-avr.h, * config/tc-bfin.c,
* config/tc-bfin.h, * config/tc-bpf.c, * config/tc-cris.c,
* config/tc-csky.c, * config/tc-csky.h, * config/tc-d10v.c,
* config/tc-d10v.h, * config/tc-d30v.c, * config/tc-d30v.h,
* config/tc-dlx.c, * config/tc-dlx.h, * config/tc-epiphany.c,
* config/tc-epiphany.h, * config/tc-fr30.c, * config/tc-fr30.h,
* config/tc-frv.c, * config/tc-frv.h, * config/tc-ft32.c,
* config/tc-ft32.h, * config/tc-h8300.c, * config/tc-hppa.c,
* config/tc-i386-intel.c, * config/tc-i386.c, * config/tc-ia64.c,
* config/tc-ip2k.c, * config/tc-iq2000.c, * config/tc-iq2000.h,
* config/tc-lm32.c, * config/tc-lm32.h, * config/tc-m32c.c,
* config/tc-m32c.h, * config/tc-m32r.c, * config/tc-m32r.h,
* config/tc-m68hc11.c, * config/tc-m68k.c, * config/tc-mcore.c,
* config/tc-mcore.h, * config/tc-mep.c, * config/tc-mep.h,
* config/tc-metag.c, * config/tc-metag.h,
* config/tc-microblaze.c, * config/tc-mips.c, * config/tc-mips.h,
* config/tc-mmix.c, * config/tc-mn10200.c, * config/tc-mn10300.c,
* config/tc-mn10300.h, * config/tc-moxie.c, * config/tc-msp430.c,
* config/tc-msp430.h, * config/tc-mt.c, * config/tc-mt.h,
* config/tc-nds32.c, * config/tc-nds32.h, * config/tc-nios2.c,
* config/tc-ns32k.c, * config/tc-or1k.c, * config/tc-or1k.h,
* config/tc-pdp11.c, * config/tc-ppc.c, * config/tc-pru.c,
* config/tc-pru.h, * config/tc-riscv.c, * config/tc-riscv.h,
* config/tc-rx.c, * config/tc-rx.h, * config/tc-s12z.c,
* config/tc-s12z.h, * config/tc-s390.c, * config/tc-score.c,
* config/tc-score.h, * config/tc-score7.c, * config/tc-sh.c,
* config/tc-sh.h, * config/tc-spu.c, * config/tc-tic54x.c,
* config/tc-tic6x.c, * config/tc-tic6x.h, * config/tc-tilegx.c,
* config/tc-tilepro.c, * config/tc-v850.c, * config/tc-v850.h,
* config/tc-visium.c, * config/tc-visium.h, * config/tc-wasm32.c,
* config/tc-wasm32.h, * config/tc-xc16x.c, * config/tc-xgate.c,
* config/tc-xstormy16.c, * config/tc-xstormy16.h,
* config/tc-xtensa.c, * config/tc-xtensa.h, * config/tc-z80.c,
* config/tc-z8k.c, * config/xtensa-istack.h,
* config/xtensa-relax.c, * config/xtensa-relax.h, * dw2gencfi.c,
* dwarf2dbg.c, * dwarf2dbg.h, * expr.c, * expr.h, * frags.c,
* frags.h, * listing.c, * macro.c, * output-file.c, * read.c,
* read.h, * stabs.c, * symbols.c, * write.c: Replace bfd_boolean
with bool, FALSE with false, and TRUE with true.
2021-03-31 10:42:05 +10:30
|
|
|
|
flag_generate_build_notes = false;
|
2018-04-26 15:12:42 +01:00
|
|
|
|
else if (strcasecmp (optarg, "yes") == 0)
|
Use bool in gas
* as.h (POISON_BFD_BOOLEAN): Define.
* as.c, * as.h, * atof-generic.c, * config/atof-ieee.c,
* config/bfin-aux.h, * config/obj-coff.c, * config/obj-ecoff.c,
* config/obj-elf.c, * config/obj-elf.h, * config/obj-som.c,
* config/tc-aarch64.c, * config/tc-alpha.c, * config/tc-arc.c,
* config/tc-arc.h, * config/tc-arm.c, * config/tc-arm.h,
* config/tc-avr.c, * config/tc-avr.h, * config/tc-bfin.c,
* config/tc-bfin.h, * config/tc-bpf.c, * config/tc-cris.c,
* config/tc-csky.c, * config/tc-csky.h, * config/tc-d10v.c,
* config/tc-d10v.h, * config/tc-d30v.c, * config/tc-d30v.h,
* config/tc-dlx.c, * config/tc-dlx.h, * config/tc-epiphany.c,
* config/tc-epiphany.h, * config/tc-fr30.c, * config/tc-fr30.h,
* config/tc-frv.c, * config/tc-frv.h, * config/tc-ft32.c,
* config/tc-ft32.h, * config/tc-h8300.c, * config/tc-hppa.c,
* config/tc-i386-intel.c, * config/tc-i386.c, * config/tc-ia64.c,
* config/tc-ip2k.c, * config/tc-iq2000.c, * config/tc-iq2000.h,
* config/tc-lm32.c, * config/tc-lm32.h, * config/tc-m32c.c,
* config/tc-m32c.h, * config/tc-m32r.c, * config/tc-m32r.h,
* config/tc-m68hc11.c, * config/tc-m68k.c, * config/tc-mcore.c,
* config/tc-mcore.h, * config/tc-mep.c, * config/tc-mep.h,
* config/tc-metag.c, * config/tc-metag.h,
* config/tc-microblaze.c, * config/tc-mips.c, * config/tc-mips.h,
* config/tc-mmix.c, * config/tc-mn10200.c, * config/tc-mn10300.c,
* config/tc-mn10300.h, * config/tc-moxie.c, * config/tc-msp430.c,
* config/tc-msp430.h, * config/tc-mt.c, * config/tc-mt.h,
* config/tc-nds32.c, * config/tc-nds32.h, * config/tc-nios2.c,
* config/tc-ns32k.c, * config/tc-or1k.c, * config/tc-or1k.h,
* config/tc-pdp11.c, * config/tc-ppc.c, * config/tc-pru.c,
* config/tc-pru.h, * config/tc-riscv.c, * config/tc-riscv.h,
* config/tc-rx.c, * config/tc-rx.h, * config/tc-s12z.c,
* config/tc-s12z.h, * config/tc-s390.c, * config/tc-score.c,
* config/tc-score.h, * config/tc-score7.c, * config/tc-sh.c,
* config/tc-sh.h, * config/tc-spu.c, * config/tc-tic54x.c,
* config/tc-tic6x.c, * config/tc-tic6x.h, * config/tc-tilegx.c,
* config/tc-tilepro.c, * config/tc-v850.c, * config/tc-v850.h,
* config/tc-visium.c, * config/tc-visium.h, * config/tc-wasm32.c,
* config/tc-wasm32.h, * config/tc-xc16x.c, * config/tc-xgate.c,
* config/tc-xstormy16.c, * config/tc-xstormy16.h,
* config/tc-xtensa.c, * config/tc-xtensa.h, * config/tc-z80.c,
* config/tc-z8k.c, * config/xtensa-istack.h,
* config/xtensa-relax.c, * config/xtensa-relax.h, * dw2gencfi.c,
* dwarf2dbg.c, * dwarf2dbg.h, * expr.c, * expr.h, * frags.c,
* frags.h, * listing.c, * macro.c, * output-file.c, * read.c,
* read.h, * stabs.c, * symbols.c, * write.c: Replace bfd_boolean
with bool, FALSE with false, and TRUE with true.
2021-03-31 10:42:05 +10:30
|
|
|
|
flag_generate_build_notes = true;
|
2018-04-26 15:12:42 +01:00
|
|
|
|
else
|
|
|
|
|
as_fatal (_("Invalid --generate-missing-build-notes option: `%s'"),
|
|
|
|
|
optarg);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
#endif /* OBJ_ELF */
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
case 'Z':
|
|
|
|
|
flag_always_generate_output = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
2005-08-08 03:05:44 +00:00
|
|
|
|
case OPTION_AL:
|
|
|
|
|
listing |= LISTING_LISTING;
|
|
|
|
|
if (optarg)
|
2022-07-07 13:32:30 +09:30
|
|
|
|
listing_filename = notes_strdup (optarg);
|
2005-08-08 03:05:44 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2004-08-13 19:53:52 +00:00
|
|
|
|
case OPTION_ALTERNATE:
|
|
|
|
|
optarg = old_argv [optind - 1];
|
|
|
|
|
while (* optarg == '-')
|
|
|
|
|
optarg ++;
|
|
|
|
|
|
|
|
|
|
if (strcmp (optarg, "alternate") == 0)
|
|
|
|
|
{
|
|
|
|
|
flag_macro_alternate = 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
optarg ++;
|
|
|
|
|
/* Fall through. */
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
case 'a':
|
|
|
|
|
if (optarg)
|
|
|
|
|
{
|
2005-01-20 15:35:57 +00:00
|
|
|
|
if (optarg != old_argv[optind] && optarg[-1] == '=')
|
|
|
|
|
--optarg;
|
|
|
|
|
|
Add XCOFF64 support.
bfd:
* Makefile.am (coff64-rs6000.lo): New rule.
* Makefile.in: Regenerate.
* coff-rs6000.c (xcoff_mkobject, xcoff_copy_private_bfd_data,
xcoff_is_local_label_name, xcoff_rtype2howto,
xcoff_reloc_type_lookup, xcoff_slurp_armap, xcoff_archive_p,
xcoff_read_ar_hdr, xcoff_openr_next_archived_file, xcoff_write_armap,
xcoff_write_archive_contents): No longer static, and prefix with _bfd_.
(NO_COFF_SYMBOLS): Define.
(xcoff64_swap_sym_in, xcoff64_swap_sym_out, xcoff64_swap_aux_in,
xcoff64_swap_aux_out): New functions; handle xcoff symbol tables
internally.
(MINUS_ONE): New macro.
(xcoff_howto_tabl, xcoff_reloc_type_lookup): Add 64 bit POS
relocation.
(coff_SWAP_sym_in, coff_SWAP_sym_out, coff_SWAP_aux_in,
coff_SWAP_aux_out): Map to the new functions.
* coff64-rs6000.c: New file.
* libcoff.h (bfd_coff_backend_data): Add new fields
_bfd_coff_force_symnames_in_strings and
_bfd_coff_debug_string_prefix_length.
(bfd_coff_force_symnames_in_strings,
bfd_coff_debug_string_prefix_length): New macros for above fields.
* coffcode.h (coff_set_arch_mach_hook): Handle XCOFF64 magic.
Set machine to 620 for XCOFF64. Use bfd_coff_swap_sym_in instead
of using coff_swap_sym_in directly.
(FORCE_SYMNAMES_IN_STRINGS): New macro, defined for XCOFF64.
(coff_set_flags) Set magic for XCOFF64.
(coff_compute_section_file_positions): Add symbol name length to
string section length if bfd_coff_debug_string_prefix_length is
true.
(coff_write_object_contents): Don't do reloc overflow for XCOFF64.
(coff_slurp_line_table): Use bfd_coff_swap_lineno_in instead of
using coff_swap_lineno_in directly.
(bfd_coff_backend_data): Add _bfd_coff_force_symnames_in_strings
and _bfd_coff_debug_string_prefix_length fields.
* coffgen.c (coff_fix_symbol_name, coff_write_symbols): Force
symbol names into strings table when
bfd_coff_force_symnames_in_strings is true.
* coffswap.h (MAX_SCNHDR_NRELOC, MAX_SCNHDR_NLNNO, GET_RELOC_VADDR,
SET_RELOC_VADDR): New macros.
(coff_swap_reloc_in, coff_swap_reloc_out): Use above macros.
(coff_swap_aux_in, coff_swap_aux_out): Remove RS6000COFF_C
code.
(coff_swap_aouthdr_in, coff_swap_aouthdr_out): Handle XCOFF64
changes within RS6000COFF_C specific code.
(coff_swap_scnhdr_out): Use PUT_SCNHDR_NLNNO, PUT_SCNHDR_NRELOC,
MAX_SCNHDR_NRELOC, and MAX_SCNHDR_NLNNO.
* reloc.c (bfd_perform_relocation, bfd_install_relocation):
Extend existing hack on target name.
* xcofflink.c (XCOFF_XVECP): Extend existing hack on
target name.
* coff-tic54x.c (ticof): Keep up to date with new fields
in bfd_coff_backend_data.
* config.bfd: Add bfd_powerpc_64_arch to targ_arch and define
targ_selvecs to include rs6000coff64_vec for rs6000.
* configure.in: Add rs6000coff64_vec case.
* cpu-powerpc.c: New bfd_arch_info_type.
gas:
* as.c (parse_args): Allow md_parse_option to override -a listing
option.
* config/obj-coff.c (add_lineno): Change type of offset parameter
from "int" to "bfd_vma."
* config/tc-ppc.c (md_pseudo_table): Add "llong" and "machine."
(ppc_mach, ppc_subseg_align, ppc_target_format): New.
(ppc_change_csect): Align correctly for XCOFF64.
(ppc_machine): New function, which discards "ppc_machine" line.
(ppc_tc): Cons for 8 when code is 64 bit.
(md_apply_fix3): Don't check operand->insert. Handle 64 bit
relocations.
(md_parse_option): Handle -a64 and -a32.
(ppc_xcoff64): New.
* config/tc-ppc.h (TARGET_MACH): Define.
(TARGET_FORMAT): Move to function.
(SUB_SEGMENT_ALIGN): Use ppc_subseg_align.
include:
* include/coff/rs6k64.h: New file.
opcodes:
* configure.in: Add bfd_powerpc_64_arch.
* disassemble.c (disassembler): Use print_insn_big_powerpc for
64 bit code.
2000-04-26 15:09:44 +00:00
|
|
|
|
if (md_parse_option (optc, optarg) != 0)
|
|
|
|
|
break;
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
while (*optarg)
|
|
|
|
|
{
|
|
|
|
|
switch (*optarg)
|
|
|
|
|
{
|
|
|
|
|
case 'c':
|
|
|
|
|
listing |= LISTING_NOCOND;
|
|
|
|
|
break;
|
|
|
|
|
case 'd':
|
|
|
|
|
listing |= LISTING_NODEBUG;
|
|
|
|
|
break;
|
2008-04-10 12:45:18 +00:00
|
|
|
|
case 'g':
|
|
|
|
|
listing |= LISTING_GENERAL;
|
|
|
|
|
break;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
case 'h':
|
|
|
|
|
listing |= LISTING_HLL;
|
|
|
|
|
break;
|
|
|
|
|
case 'l':
|
|
|
|
|
listing |= LISTING_LISTING;
|
|
|
|
|
break;
|
|
|
|
|
case 'm':
|
|
|
|
|
listing |= LISTING_MACEXP;
|
|
|
|
|
break;
|
|
|
|
|
case 'n':
|
|
|
|
|
listing |= LISTING_NOFORM;
|
|
|
|
|
break;
|
|
|
|
|
case 's':
|
|
|
|
|
listing |= LISTING_SYMBOLS;
|
|
|
|
|
break;
|
|
|
|
|
case '=':
|
2022-07-07 13:32:30 +09:30
|
|
|
|
listing_filename = notes_strdup (optarg + 1);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
optarg += strlen (listing_filename);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
as_fatal (_("invalid listing option `%c'"), *optarg);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
optarg++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!listing)
|
|
|
|
|
listing = LISTING_DEFAULT;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'D':
|
2000-08-31 23:17:47 +00:00
|
|
|
|
/* DEBUG is implemented: it debugs different
|
|
|
|
|
things from other people's assemblers. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
flag_debug = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'f':
|
|
|
|
|
flag_no_comments = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'I':
|
2000-08-31 23:17:47 +00:00
|
|
|
|
{ /* Include file directory. */
|
2022-07-07 13:32:30 +09:30
|
|
|
|
char *temp = notes_strdup (optarg);
|
2004-08-17 12:19:58 +00:00
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
add_include_dir (temp);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case 'o':
|
2022-07-07 13:32:30 +09:30
|
|
|
|
out_file_name = notes_strdup (optarg);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'w':
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'X':
|
2000-08-31 23:17:47 +00:00
|
|
|
|
/* -X means treat warnings as errors. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
break;
|
2005-04-12 08:42:41 +00:00
|
|
|
|
|
|
|
|
|
case OPTION_REDUCE_MEMORY_OVERHEADS:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OPTION_HASH_TABLE_SIZE:
|
2020-08-18 14:24:41 +02:00
|
|
|
|
break;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
free (shortopts);
|
|
|
|
|
free (longopts);
|
|
|
|
|
|
|
|
|
|
*pargc = new_argc;
|
|
|
|
|
*pargv = new_argv;
|
2001-11-28 17:00:46 +00:00
|
|
|
|
|
|
|
|
|
#ifdef md_after_parse_args
|
|
|
|
|
md_after_parse_args ();
|
|
|
|
|
#endif
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-10-04 12:40:12 +00:00
|
|
|
|
static void
|
|
|
|
|
dump_statistics (void)
|
|
|
|
|
{
|
|
|
|
|
long run_time = get_run_time () - start_time;
|
|
|
|
|
|
|
|
|
|
fprintf (stderr, _("%s: total time in assembly: %ld.%06ld\n"),
|
|
|
|
|
myname, run_time / 1000000, run_time % 1000000);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2003-10-04 12:40:12 +00:00
|
|
|
|
subsegs_print_statistics (stderr);
|
|
|
|
|
write_print_statistics (stderr);
|
|
|
|
|
symbol_print_statistics (stderr);
|
|
|
|
|
read_print_statistics (stderr);
|
|
|
|
|
|
|
|
|
|
#ifdef tc_print_statistics
|
|
|
|
|
tc_print_statistics (stderr);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef obj_print_statistics
|
|
|
|
|
obj_print_statistics (stderr);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The interface between the macro code and gas expression handling. */
|
|
|
|
|
|
PR gas/14201
* sb.h (sb_max_power_two): Delete.
(struct sb): Delete "item" and "pot". Make "len" a size_t. Add "max".
(sb_element): Delete.
(sb_add_char, sb_add_buffer, sb_skip_comma, sb_skip_write): Update
prototypes.
* sb.c (string_count, free_list): Delete.
(sb_build, sb_kill, sb_check): Rewrite.
(scrub_from_sb, sb_add_char, sb_add_string, sb_add_buffer,
sb_skip_white, sb_skip_comma): Replace assorted int params,
vars and return types with size_t.
* input-scrub.c: Likewise.
* macro.c: Likewise.
* macro.h: Likewise.
* as.c: Likewise.
* as.h: Likewise.
* input-file.h: Likewise.
* input-file.c: Likewise.
* read.c: Likewise.
* app.c: ..or ptrdiff_t.
* input-file.c (input_file_get): Use ferror.
(input_file_give_next_buffer): Use input_file_get.
2012-06-07 12:47:23 +00:00
|
|
|
|
static size_t
|
|
|
|
|
macro_expr (const char *emsg, size_t idx, sb *in, offsetT *val)
|
2003-10-04 12:40:12 +00:00
|
|
|
|
{
|
|
|
|
|
expressionS ex;
|
|
|
|
|
|
|
|
|
|
sb_terminate (in);
|
|
|
|
|
|
2019-03-18 22:34:36 +10:30
|
|
|
|
temp_ilp (in->ptr + idx);
|
2005-10-11 11:16:17 +00:00
|
|
|
|
expression_and_evaluate (&ex);
|
2003-10-04 12:40:12 +00:00
|
|
|
|
idx = input_line_pointer - in->ptr;
|
2019-03-18 22:34:36 +10:30
|
|
|
|
restore_ilp ();
|
2003-10-04 12:40:12 +00:00
|
|
|
|
|
|
|
|
|
if (ex.X_op != O_constant)
|
|
|
|
|
as_bad ("%s", emsg);
|
|
|
|
|
|
PR gas/14201
* sb.h (sb_max_power_two): Delete.
(struct sb): Delete "item" and "pot". Make "len" a size_t. Add "max".
(sb_element): Delete.
(sb_add_char, sb_add_buffer, sb_skip_comma, sb_skip_write): Update
prototypes.
* sb.c (string_count, free_list): Delete.
(sb_build, sb_kill, sb_check): Rewrite.
(scrub_from_sb, sb_add_char, sb_add_string, sb_add_buffer,
sb_skip_white, sb_skip_comma): Replace assorted int params,
vars and return types with size_t.
* input-scrub.c: Likewise.
* macro.c: Likewise.
* macro.h: Likewise.
* as.c: Likewise.
* as.h: Likewise.
* input-file.h: Likewise.
* input-file.c: Likewise.
* read.c: Likewise.
* app.c: ..or ptrdiff_t.
* input-file.c (input_file_get): Use ferror.
(input_file_give_next_buffer): Use input_file_get.
2012-06-07 12:47:23 +00:00
|
|
|
|
*val = ex.X_add_number;
|
2003-10-04 12:40:12 +00:00
|
|
|
|
|
|
|
|
|
return idx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Here to attempt 1 pass over each input file.
|
|
|
|
|
We scan argv[*] looking for filenames or exactly "" which is
|
|
|
|
|
shorthand for stdin. Any argv that is NULL is not a file-name.
|
|
|
|
|
We set need_pass_2 TRUE if, after this, we still have unresolved
|
|
|
|
|
expressions of the form (unknown value)+-(unknown value).
|
|
|
|
|
|
|
|
|
|
Note the un*x semantics: there is only 1 logical input file, but it
|
|
|
|
|
may be a catenation of many 'physical' input files. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
perform_an_assembly_pass (int argc, char ** argv)
|
|
|
|
|
{
|
|
|
|
|
int saw_a_file = 0;
|
2011-12-29 10:53:10 +00:00
|
|
|
|
#ifndef OBJ_MACH_O
|
2003-10-04 12:40:12 +00:00
|
|
|
|
flagword applicable;
|
2011-12-29 10:53:10 +00:00
|
|
|
|
#endif
|
2003-10-04 12:40:12 +00:00
|
|
|
|
|
|
|
|
|
need_pass_2 = 0;
|
|
|
|
|
|
2011-12-29 10:53:10 +00:00
|
|
|
|
#ifndef OBJ_MACH_O
|
2003-10-04 12:40:12 +00:00
|
|
|
|
/* Create the standard sections, and those the assembler uses
|
|
|
|
|
internally. */
|
|
|
|
|
text_section = subseg_new (TEXT_SECTION_NAME, 0);
|
|
|
|
|
data_section = subseg_new (DATA_SECTION_NAME, 0);
|
|
|
|
|
bss_section = subseg_new (BSS_SECTION_NAME, 0);
|
|
|
|
|
/* @@ FIXME -- we're setting the RELOC flag so that sections are assumed
|
|
|
|
|
to have relocs, otherwise we don't find out in time. */
|
|
|
|
|
applicable = bfd_applicable_section_flags (stdoutput);
|
bfd_section_* macros
This large patch removes the unnecessary bfd parameter from various
bfd section macros and functions. The bfd is hardly ever used and if
needed for the bfd_set_section_* or bfd_rename_section functions can
be found via section->owner except for the com, und, abs, and ind
std_section special sections. Those sections shouldn't be modified
anyway.
The patch also removes various bfd_get_section_<field> macros,
replacing their use with bfd_section_<field>, and adds
bfd_set_section_lma. I've also fixed a minor bug in gas where
compressed section renaming was done directly rather than calling
bfd_rename_section. This would have broken bfd_get_section_by_name
and similar functions, but that hardly mattered at such a late stage
in gas processing.
bfd/
* bfd-in.h (bfd_get_section_name, bfd_get_section_vma),
(bfd_get_section_lma, bfd_get_section_alignment),
(bfd_get_section_size, bfd_get_section_flags),
(bfd_get_section_userdata): Delete.
(bfd_section_name, bfd_section_size, bfd_section_vma),
(bfd_section_lma, bfd_section_alignment): Lose bfd parameter.
(bfd_section_flags, bfd_section_userdata): New.
(bfd_is_com_section): Rename parameter.
* section.c (bfd_set_section_userdata, bfd_set_section_vma),
(bfd_set_section_alignment, bfd_set_section_flags, bfd_rename_section),
(bfd_set_section_size): Delete bfd parameter, rename section parameter.
(bfd_set_section_lma): New.
* bfd-in2.h: Regenerate.
* mach-o.c (bfd_mach_o_init_section_from_mach_o): Delete bfd param,
update callers.
* aoutx.h, * bfd.c, * coff-alpha.c, * coff-arm.c, * coff-mips.c,
* coff64-rs6000.c, * coffcode.h, * coffgen.c, * cofflink.c,
* compress.c, * ecoff.c, * elf-eh-frame.c, * elf-hppa.h,
* elf-ifunc.c, * elf-m10200.c, * elf-m10300.c, * elf-properties.c,
* elf-s390-common.c, * elf-vxworks.c, * elf.c, * elf32-arc.c,
* elf32-arm.c, * elf32-avr.c, * elf32-bfin.c, * elf32-cr16.c,
* elf32-cr16c.c, * elf32-cris.c, * elf32-crx.c, * elf32-csky.c,
* elf32-d10v.c, * elf32-epiphany.c, * elf32-fr30.c, * elf32-frv.c,
* elf32-ft32.c, * elf32-h8300.c, * elf32-hppa.c, * elf32-i386.c,
* elf32-ip2k.c, * elf32-iq2000.c, * elf32-lm32.c, * elf32-m32c.c,
* elf32-m32r.c, * elf32-m68hc1x.c, * elf32-m68k.c, * elf32-mcore.c,
* elf32-mep.c, * elf32-metag.c, * elf32-microblaze.c,
* elf32-moxie.c, * elf32-msp430.c, * elf32-mt.c, * elf32-nds32.c,
* elf32-nios2.c, * elf32-or1k.c, * elf32-ppc.c, * elf32-pru.c,
* elf32-rl78.c, * elf32-rx.c, * elf32-s390.c, * elf32-score.c,
* elf32-score7.c, * elf32-sh.c, * elf32-spu.c, * elf32-tic6x.c,
* elf32-tilepro.c, * elf32-v850.c, * elf32-vax.c, * elf32-visium.c,
* elf32-xstormy16.c, * elf32-xtensa.c, * elf64-alpha.c,
* elf64-bpf.c, * elf64-hppa.c, * elf64-ia64-vms.c, * elf64-mmix.c,
* elf64-ppc.c, * elf64-s390.c, * elf64-sparc.c, * elf64-x86-64.c,
* elflink.c, * elfnn-aarch64.c, * elfnn-ia64.c, * elfnn-riscv.c,
* elfxx-aarch64.c, * elfxx-mips.c, * elfxx-sparc.c,
* elfxx-tilegx.c, * elfxx-x86.c, * i386msdos.c, * linker.c,
* mach-o.c, * mmo.c, * opncls.c, * pdp11.c, * pei-x86_64.c,
* peicode.h, * reloc.c, * section.c, * syms.c, * vms-alpha.c,
* xcofflink.c: Update throughout for bfd section macro and function
changes.
binutils/
* addr2line.c, * bucomm.c, * coffgrok.c, * dlltool.c, * nm.c,
* objcopy.c, * objdump.c, * od-elf32_avr.c, * od-macho.c,
* od-xcoff.c, * prdbg.c, * rdcoff.c, * rddbg.c, * rescoff.c,
* resres.c, * size.c, * srconv.c, * strings.c, * windmc.c: Update
throughout for bfd section macro and function changes.
gas/
* as.c, * as.h, * dw2gencfi.c, * dwarf2dbg.c, * ecoff.c,
* read.c, * stabs.c, * subsegs.c, * subsegs.h, * write.c,
* config/obj-coff-seh.c, * config/obj-coff.c, * config/obj-ecoff.c,
* config/obj-elf.c, * config/obj-macho.c, * config/obj-som.c,
* config/tc-aarch64.c, * config/tc-alpha.c, * config/tc-arc.c,
* config/tc-arm.c, * config/tc-avr.c, * config/tc-bfin.c,
* config/tc-bpf.c, * config/tc-d10v.c, * config/tc-d30v.c,
* config/tc-epiphany.c, * config/tc-fr30.c, * config/tc-frv.c,
* config/tc-h8300.c, * config/tc-hppa.c, * config/tc-i386.c,
* config/tc-ia64.c, * config/tc-ip2k.c, * config/tc-iq2000.c,
* config/tc-lm32.c, * config/tc-m32c.c, * config/tc-m32r.c,
* config/tc-m68hc11.c, * config/tc-mep.c, * config/tc-microblaze.c,
* config/tc-mips.c, * config/tc-mmix.c, * config/tc-mn10200.c,
* config/tc-mn10300.c, * config/tc-msp430.c, * config/tc-mt.c,
* config/tc-nds32.c, * config/tc-or1k.c, * config/tc-ppc.c,
* config/tc-pru.c, * config/tc-rl78.c, * config/tc-rx.c,
* config/tc-s12z.c, * config/tc-s390.c, * config/tc-score.c,
* config/tc-score7.c, * config/tc-sh.c, * config/tc-sparc.c,
* config/tc-spu.c, * config/tc-tic4x.c, * config/tc-tic54x.c,
* config/tc-tic6x.c, * config/tc-tilegx.c, * config/tc-tilepro.c,
* config/tc-v850.c, * config/tc-visium.c, * config/tc-wasm32.c,
* config/tc-xc16x.c, * config/tc-xgate.c, * config/tc-xstormy16.c,
* config/tc-xtensa.c, * config/tc-z8k.c: Update throughout for
bfd section macro and function changes.
* write.c (compress_debug): Use bfd_rename_section.
gdb/
* aarch64-linux-tdep.c, * arm-tdep.c, * auto-load.c,
* coff-pe-read.c, * coffread.c, * corelow.c, * dbxread.c,
* dicos-tdep.c, * dwarf2-frame.c, * dwarf2read.c, * elfread.c,
* exec.c, * fbsd-tdep.c, * gcore.c, * gdb_bfd.c, * gdb_bfd.h,
* hppa-tdep.c, * i386-cygwin-tdep.c, * i386-fbsd-tdep.c,
* i386-linux-tdep.c, * jit.c, * linux-tdep.c, * machoread.c,
* maint.c, * mdebugread.c, * minidebug.c, * mips-linux-tdep.c,
* mips-sde-tdep.c, * mips-tdep.c, * mipsread.c, * nto-tdep.c,
* objfiles.c, * objfiles.h, * osabi.c, * ppc-linux-tdep.c,
* ppc64-tdep.c, * record-btrace.c, * record-full.c, * remote.c,
* rs6000-aix-tdep.c, * rs6000-tdep.c, * s390-linux-tdep.c,
* s390-tdep.c, * solib-aix.c, * solib-dsbt.c, * solib-frv.c,
* solib-spu.c, * solib-svr4.c, * solib-target.c,
* spu-linux-nat.c, * spu-tdep.c, * symfile-mem.c, * symfile.c,
* symmisc.c, * symtab.c, * target.c, * windows-nat.c,
* xcoffread.c, * cli/cli-dump.c, * compile/compile-object-load.c,
* mi/mi-interp.c: Update throughout for bfd section macro and
function changes.
* gcore (gcore_create_callback): Use bfd_set_section_lma.
* spu-tdep.c (spu_overlay_new_objfile): Likewise.
gprof/
* corefile.c, * symtab.c: Update throughout for bfd section
macro and function changes.
ld/
* ldcref.c, * ldctor.c, * ldelf.c, * ldlang.c, * pe-dll.c,
* emultempl/aarch64elf.em, * emultempl/aix.em,
* emultempl/armcoff.em, * emultempl/armelf.em,
* emultempl/cr16elf.em, * emultempl/cskyelf.em,
* emultempl/m68hc1xelf.em, * emultempl/m68kelf.em,
* emultempl/mipself.em, * emultempl/mmix-elfnmmo.em,
* emultempl/mmo.em, * emultempl/msp430.em,
* emultempl/nios2elf.em, * emultempl/pe.em, * emultempl/pep.em,
* emultempl/ppc64elf.em, * emultempl/xtensaelf.em: Update
throughout for bfd section macro and function changes.
libctf/
* ctf-open-bfd.c: Update throughout for bfd section macro changes.
opcodes/
* arc-ext.c: Update throughout for bfd section macro changes.
sim/
* common/sim-load.c, * common/sim-utils.c, * cris/sim-if.c,
* erc32/func.c, * lm32/sim-if.c, * m32c/load.c, * m32c/trace.c,
* m68hc11/interp.c, * ppc/hw_htab.c, * ppc/hw_init.c,
* rl78/load.c, * rl78/trace.c, * rx/gdb-if.c, * rx/load.c,
* rx/trace.c: Update throughout for bfd section macro changes.
2019-09-16 20:25:17 +09:30
|
|
|
|
bfd_set_section_flags (text_section,
|
2003-10-04 12:40:12 +00:00
|
|
|
|
applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC
|
|
|
|
|
| SEC_CODE | SEC_READONLY));
|
bfd_section_* macros
This large patch removes the unnecessary bfd parameter from various
bfd section macros and functions. The bfd is hardly ever used and if
needed for the bfd_set_section_* or bfd_rename_section functions can
be found via section->owner except for the com, und, abs, and ind
std_section special sections. Those sections shouldn't be modified
anyway.
The patch also removes various bfd_get_section_<field> macros,
replacing their use with bfd_section_<field>, and adds
bfd_set_section_lma. I've also fixed a minor bug in gas where
compressed section renaming was done directly rather than calling
bfd_rename_section. This would have broken bfd_get_section_by_name
and similar functions, but that hardly mattered at such a late stage
in gas processing.
bfd/
* bfd-in.h (bfd_get_section_name, bfd_get_section_vma),
(bfd_get_section_lma, bfd_get_section_alignment),
(bfd_get_section_size, bfd_get_section_flags),
(bfd_get_section_userdata): Delete.
(bfd_section_name, bfd_section_size, bfd_section_vma),
(bfd_section_lma, bfd_section_alignment): Lose bfd parameter.
(bfd_section_flags, bfd_section_userdata): New.
(bfd_is_com_section): Rename parameter.
* section.c (bfd_set_section_userdata, bfd_set_section_vma),
(bfd_set_section_alignment, bfd_set_section_flags, bfd_rename_section),
(bfd_set_section_size): Delete bfd parameter, rename section parameter.
(bfd_set_section_lma): New.
* bfd-in2.h: Regenerate.
* mach-o.c (bfd_mach_o_init_section_from_mach_o): Delete bfd param,
update callers.
* aoutx.h, * bfd.c, * coff-alpha.c, * coff-arm.c, * coff-mips.c,
* coff64-rs6000.c, * coffcode.h, * coffgen.c, * cofflink.c,
* compress.c, * ecoff.c, * elf-eh-frame.c, * elf-hppa.h,
* elf-ifunc.c, * elf-m10200.c, * elf-m10300.c, * elf-properties.c,
* elf-s390-common.c, * elf-vxworks.c, * elf.c, * elf32-arc.c,
* elf32-arm.c, * elf32-avr.c, * elf32-bfin.c, * elf32-cr16.c,
* elf32-cr16c.c, * elf32-cris.c, * elf32-crx.c, * elf32-csky.c,
* elf32-d10v.c, * elf32-epiphany.c, * elf32-fr30.c, * elf32-frv.c,
* elf32-ft32.c, * elf32-h8300.c, * elf32-hppa.c, * elf32-i386.c,
* elf32-ip2k.c, * elf32-iq2000.c, * elf32-lm32.c, * elf32-m32c.c,
* elf32-m32r.c, * elf32-m68hc1x.c, * elf32-m68k.c, * elf32-mcore.c,
* elf32-mep.c, * elf32-metag.c, * elf32-microblaze.c,
* elf32-moxie.c, * elf32-msp430.c, * elf32-mt.c, * elf32-nds32.c,
* elf32-nios2.c, * elf32-or1k.c, * elf32-ppc.c, * elf32-pru.c,
* elf32-rl78.c, * elf32-rx.c, * elf32-s390.c, * elf32-score.c,
* elf32-score7.c, * elf32-sh.c, * elf32-spu.c, * elf32-tic6x.c,
* elf32-tilepro.c, * elf32-v850.c, * elf32-vax.c, * elf32-visium.c,
* elf32-xstormy16.c, * elf32-xtensa.c, * elf64-alpha.c,
* elf64-bpf.c, * elf64-hppa.c, * elf64-ia64-vms.c, * elf64-mmix.c,
* elf64-ppc.c, * elf64-s390.c, * elf64-sparc.c, * elf64-x86-64.c,
* elflink.c, * elfnn-aarch64.c, * elfnn-ia64.c, * elfnn-riscv.c,
* elfxx-aarch64.c, * elfxx-mips.c, * elfxx-sparc.c,
* elfxx-tilegx.c, * elfxx-x86.c, * i386msdos.c, * linker.c,
* mach-o.c, * mmo.c, * opncls.c, * pdp11.c, * pei-x86_64.c,
* peicode.h, * reloc.c, * section.c, * syms.c, * vms-alpha.c,
* xcofflink.c: Update throughout for bfd section macro and function
changes.
binutils/
* addr2line.c, * bucomm.c, * coffgrok.c, * dlltool.c, * nm.c,
* objcopy.c, * objdump.c, * od-elf32_avr.c, * od-macho.c,
* od-xcoff.c, * prdbg.c, * rdcoff.c, * rddbg.c, * rescoff.c,
* resres.c, * size.c, * srconv.c, * strings.c, * windmc.c: Update
throughout for bfd section macro and function changes.
gas/
* as.c, * as.h, * dw2gencfi.c, * dwarf2dbg.c, * ecoff.c,
* read.c, * stabs.c, * subsegs.c, * subsegs.h, * write.c,
* config/obj-coff-seh.c, * config/obj-coff.c, * config/obj-ecoff.c,
* config/obj-elf.c, * config/obj-macho.c, * config/obj-som.c,
* config/tc-aarch64.c, * config/tc-alpha.c, * config/tc-arc.c,
* config/tc-arm.c, * config/tc-avr.c, * config/tc-bfin.c,
* config/tc-bpf.c, * config/tc-d10v.c, * config/tc-d30v.c,
* config/tc-epiphany.c, * config/tc-fr30.c, * config/tc-frv.c,
* config/tc-h8300.c, * config/tc-hppa.c, * config/tc-i386.c,
* config/tc-ia64.c, * config/tc-ip2k.c, * config/tc-iq2000.c,
* config/tc-lm32.c, * config/tc-m32c.c, * config/tc-m32r.c,
* config/tc-m68hc11.c, * config/tc-mep.c, * config/tc-microblaze.c,
* config/tc-mips.c, * config/tc-mmix.c, * config/tc-mn10200.c,
* config/tc-mn10300.c, * config/tc-msp430.c, * config/tc-mt.c,
* config/tc-nds32.c, * config/tc-or1k.c, * config/tc-ppc.c,
* config/tc-pru.c, * config/tc-rl78.c, * config/tc-rx.c,
* config/tc-s12z.c, * config/tc-s390.c, * config/tc-score.c,
* config/tc-score7.c, * config/tc-sh.c, * config/tc-sparc.c,
* config/tc-spu.c, * config/tc-tic4x.c, * config/tc-tic54x.c,
* config/tc-tic6x.c, * config/tc-tilegx.c, * config/tc-tilepro.c,
* config/tc-v850.c, * config/tc-visium.c, * config/tc-wasm32.c,
* config/tc-xc16x.c, * config/tc-xgate.c, * config/tc-xstormy16.c,
* config/tc-xtensa.c, * config/tc-z8k.c: Update throughout for
bfd section macro and function changes.
* write.c (compress_debug): Use bfd_rename_section.
gdb/
* aarch64-linux-tdep.c, * arm-tdep.c, * auto-load.c,
* coff-pe-read.c, * coffread.c, * corelow.c, * dbxread.c,
* dicos-tdep.c, * dwarf2-frame.c, * dwarf2read.c, * elfread.c,
* exec.c, * fbsd-tdep.c, * gcore.c, * gdb_bfd.c, * gdb_bfd.h,
* hppa-tdep.c, * i386-cygwin-tdep.c, * i386-fbsd-tdep.c,
* i386-linux-tdep.c, * jit.c, * linux-tdep.c, * machoread.c,
* maint.c, * mdebugread.c, * minidebug.c, * mips-linux-tdep.c,
* mips-sde-tdep.c, * mips-tdep.c, * mipsread.c, * nto-tdep.c,
* objfiles.c, * objfiles.h, * osabi.c, * ppc-linux-tdep.c,
* ppc64-tdep.c, * record-btrace.c, * record-full.c, * remote.c,
* rs6000-aix-tdep.c, * rs6000-tdep.c, * s390-linux-tdep.c,
* s390-tdep.c, * solib-aix.c, * solib-dsbt.c, * solib-frv.c,
* solib-spu.c, * solib-svr4.c, * solib-target.c,
* spu-linux-nat.c, * spu-tdep.c, * symfile-mem.c, * symfile.c,
* symmisc.c, * symtab.c, * target.c, * windows-nat.c,
* xcoffread.c, * cli/cli-dump.c, * compile/compile-object-load.c,
* mi/mi-interp.c: Update throughout for bfd section macro and
function changes.
* gcore (gcore_create_callback): Use bfd_set_section_lma.
* spu-tdep.c (spu_overlay_new_objfile): Likewise.
gprof/
* corefile.c, * symtab.c: Update throughout for bfd section
macro and function changes.
ld/
* ldcref.c, * ldctor.c, * ldelf.c, * ldlang.c, * pe-dll.c,
* emultempl/aarch64elf.em, * emultempl/aix.em,
* emultempl/armcoff.em, * emultempl/armelf.em,
* emultempl/cr16elf.em, * emultempl/cskyelf.em,
* emultempl/m68hc1xelf.em, * emultempl/m68kelf.em,
* emultempl/mipself.em, * emultempl/mmix-elfnmmo.em,
* emultempl/mmo.em, * emultempl/msp430.em,
* emultempl/nios2elf.em, * emultempl/pe.em, * emultempl/pep.em,
* emultempl/ppc64elf.em, * emultempl/xtensaelf.em: Update
throughout for bfd section macro and function changes.
libctf/
* ctf-open-bfd.c: Update throughout for bfd section macro changes.
opcodes/
* arc-ext.c: Update throughout for bfd section macro changes.
sim/
* common/sim-load.c, * common/sim-utils.c, * cris/sim-if.c,
* erc32/func.c, * lm32/sim-if.c, * m32c/load.c, * m32c/trace.c,
* m68hc11/interp.c, * ppc/hw_htab.c, * ppc/hw_init.c,
* rl78/load.c, * rl78/trace.c, * rx/gdb-if.c, * rx/load.c,
* rx/trace.c: Update throughout for bfd section macro changes.
2019-09-16 20:25:17 +09:30
|
|
|
|
bfd_set_section_flags (data_section,
|
2003-10-04 12:40:12 +00:00
|
|
|
|
applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC
|
|
|
|
|
| SEC_DATA));
|
bfd_section_* macros
This large patch removes the unnecessary bfd parameter from various
bfd section macros and functions. The bfd is hardly ever used and if
needed for the bfd_set_section_* or bfd_rename_section functions can
be found via section->owner except for the com, und, abs, and ind
std_section special sections. Those sections shouldn't be modified
anyway.
The patch also removes various bfd_get_section_<field> macros,
replacing their use with bfd_section_<field>, and adds
bfd_set_section_lma. I've also fixed a minor bug in gas where
compressed section renaming was done directly rather than calling
bfd_rename_section. This would have broken bfd_get_section_by_name
and similar functions, but that hardly mattered at such a late stage
in gas processing.
bfd/
* bfd-in.h (bfd_get_section_name, bfd_get_section_vma),
(bfd_get_section_lma, bfd_get_section_alignment),
(bfd_get_section_size, bfd_get_section_flags),
(bfd_get_section_userdata): Delete.
(bfd_section_name, bfd_section_size, bfd_section_vma),
(bfd_section_lma, bfd_section_alignment): Lose bfd parameter.
(bfd_section_flags, bfd_section_userdata): New.
(bfd_is_com_section): Rename parameter.
* section.c (bfd_set_section_userdata, bfd_set_section_vma),
(bfd_set_section_alignment, bfd_set_section_flags, bfd_rename_section),
(bfd_set_section_size): Delete bfd parameter, rename section parameter.
(bfd_set_section_lma): New.
* bfd-in2.h: Regenerate.
* mach-o.c (bfd_mach_o_init_section_from_mach_o): Delete bfd param,
update callers.
* aoutx.h, * bfd.c, * coff-alpha.c, * coff-arm.c, * coff-mips.c,
* coff64-rs6000.c, * coffcode.h, * coffgen.c, * cofflink.c,
* compress.c, * ecoff.c, * elf-eh-frame.c, * elf-hppa.h,
* elf-ifunc.c, * elf-m10200.c, * elf-m10300.c, * elf-properties.c,
* elf-s390-common.c, * elf-vxworks.c, * elf.c, * elf32-arc.c,
* elf32-arm.c, * elf32-avr.c, * elf32-bfin.c, * elf32-cr16.c,
* elf32-cr16c.c, * elf32-cris.c, * elf32-crx.c, * elf32-csky.c,
* elf32-d10v.c, * elf32-epiphany.c, * elf32-fr30.c, * elf32-frv.c,
* elf32-ft32.c, * elf32-h8300.c, * elf32-hppa.c, * elf32-i386.c,
* elf32-ip2k.c, * elf32-iq2000.c, * elf32-lm32.c, * elf32-m32c.c,
* elf32-m32r.c, * elf32-m68hc1x.c, * elf32-m68k.c, * elf32-mcore.c,
* elf32-mep.c, * elf32-metag.c, * elf32-microblaze.c,
* elf32-moxie.c, * elf32-msp430.c, * elf32-mt.c, * elf32-nds32.c,
* elf32-nios2.c, * elf32-or1k.c, * elf32-ppc.c, * elf32-pru.c,
* elf32-rl78.c, * elf32-rx.c, * elf32-s390.c, * elf32-score.c,
* elf32-score7.c, * elf32-sh.c, * elf32-spu.c, * elf32-tic6x.c,
* elf32-tilepro.c, * elf32-v850.c, * elf32-vax.c, * elf32-visium.c,
* elf32-xstormy16.c, * elf32-xtensa.c, * elf64-alpha.c,
* elf64-bpf.c, * elf64-hppa.c, * elf64-ia64-vms.c, * elf64-mmix.c,
* elf64-ppc.c, * elf64-s390.c, * elf64-sparc.c, * elf64-x86-64.c,
* elflink.c, * elfnn-aarch64.c, * elfnn-ia64.c, * elfnn-riscv.c,
* elfxx-aarch64.c, * elfxx-mips.c, * elfxx-sparc.c,
* elfxx-tilegx.c, * elfxx-x86.c, * i386msdos.c, * linker.c,
* mach-o.c, * mmo.c, * opncls.c, * pdp11.c, * pei-x86_64.c,
* peicode.h, * reloc.c, * section.c, * syms.c, * vms-alpha.c,
* xcofflink.c: Update throughout for bfd section macro and function
changes.
binutils/
* addr2line.c, * bucomm.c, * coffgrok.c, * dlltool.c, * nm.c,
* objcopy.c, * objdump.c, * od-elf32_avr.c, * od-macho.c,
* od-xcoff.c, * prdbg.c, * rdcoff.c, * rddbg.c, * rescoff.c,
* resres.c, * size.c, * srconv.c, * strings.c, * windmc.c: Update
throughout for bfd section macro and function changes.
gas/
* as.c, * as.h, * dw2gencfi.c, * dwarf2dbg.c, * ecoff.c,
* read.c, * stabs.c, * subsegs.c, * subsegs.h, * write.c,
* config/obj-coff-seh.c, * config/obj-coff.c, * config/obj-ecoff.c,
* config/obj-elf.c, * config/obj-macho.c, * config/obj-som.c,
* config/tc-aarch64.c, * config/tc-alpha.c, * config/tc-arc.c,
* config/tc-arm.c, * config/tc-avr.c, * config/tc-bfin.c,
* config/tc-bpf.c, * config/tc-d10v.c, * config/tc-d30v.c,
* config/tc-epiphany.c, * config/tc-fr30.c, * config/tc-frv.c,
* config/tc-h8300.c, * config/tc-hppa.c, * config/tc-i386.c,
* config/tc-ia64.c, * config/tc-ip2k.c, * config/tc-iq2000.c,
* config/tc-lm32.c, * config/tc-m32c.c, * config/tc-m32r.c,
* config/tc-m68hc11.c, * config/tc-mep.c, * config/tc-microblaze.c,
* config/tc-mips.c, * config/tc-mmix.c, * config/tc-mn10200.c,
* config/tc-mn10300.c, * config/tc-msp430.c, * config/tc-mt.c,
* config/tc-nds32.c, * config/tc-or1k.c, * config/tc-ppc.c,
* config/tc-pru.c, * config/tc-rl78.c, * config/tc-rx.c,
* config/tc-s12z.c, * config/tc-s390.c, * config/tc-score.c,
* config/tc-score7.c, * config/tc-sh.c, * config/tc-sparc.c,
* config/tc-spu.c, * config/tc-tic4x.c, * config/tc-tic54x.c,
* config/tc-tic6x.c, * config/tc-tilegx.c, * config/tc-tilepro.c,
* config/tc-v850.c, * config/tc-visium.c, * config/tc-wasm32.c,
* config/tc-xc16x.c, * config/tc-xgate.c, * config/tc-xstormy16.c,
* config/tc-xtensa.c, * config/tc-z8k.c: Update throughout for
bfd section macro and function changes.
* write.c (compress_debug): Use bfd_rename_section.
gdb/
* aarch64-linux-tdep.c, * arm-tdep.c, * auto-load.c,
* coff-pe-read.c, * coffread.c, * corelow.c, * dbxread.c,
* dicos-tdep.c, * dwarf2-frame.c, * dwarf2read.c, * elfread.c,
* exec.c, * fbsd-tdep.c, * gcore.c, * gdb_bfd.c, * gdb_bfd.h,
* hppa-tdep.c, * i386-cygwin-tdep.c, * i386-fbsd-tdep.c,
* i386-linux-tdep.c, * jit.c, * linux-tdep.c, * machoread.c,
* maint.c, * mdebugread.c, * minidebug.c, * mips-linux-tdep.c,
* mips-sde-tdep.c, * mips-tdep.c, * mipsread.c, * nto-tdep.c,
* objfiles.c, * objfiles.h, * osabi.c, * ppc-linux-tdep.c,
* ppc64-tdep.c, * record-btrace.c, * record-full.c, * remote.c,
* rs6000-aix-tdep.c, * rs6000-tdep.c, * s390-linux-tdep.c,
* s390-tdep.c, * solib-aix.c, * solib-dsbt.c, * solib-frv.c,
* solib-spu.c, * solib-svr4.c, * solib-target.c,
* spu-linux-nat.c, * spu-tdep.c, * symfile-mem.c, * symfile.c,
* symmisc.c, * symtab.c, * target.c, * windows-nat.c,
* xcoffread.c, * cli/cli-dump.c, * compile/compile-object-load.c,
* mi/mi-interp.c: Update throughout for bfd section macro and
function changes.
* gcore (gcore_create_callback): Use bfd_set_section_lma.
* spu-tdep.c (spu_overlay_new_objfile): Likewise.
gprof/
* corefile.c, * symtab.c: Update throughout for bfd section
macro and function changes.
ld/
* ldcref.c, * ldctor.c, * ldelf.c, * ldlang.c, * pe-dll.c,
* emultempl/aarch64elf.em, * emultempl/aix.em,
* emultempl/armcoff.em, * emultempl/armelf.em,
* emultempl/cr16elf.em, * emultempl/cskyelf.em,
* emultempl/m68hc1xelf.em, * emultempl/m68kelf.em,
* emultempl/mipself.em, * emultempl/mmix-elfnmmo.em,
* emultempl/mmo.em, * emultempl/msp430.em,
* emultempl/nios2elf.em, * emultempl/pe.em, * emultempl/pep.em,
* emultempl/ppc64elf.em, * emultempl/xtensaelf.em: Update
throughout for bfd section macro and function changes.
libctf/
* ctf-open-bfd.c: Update throughout for bfd section macro changes.
opcodes/
* arc-ext.c: Update throughout for bfd section macro changes.
sim/
* common/sim-load.c, * common/sim-utils.c, * cris/sim-if.c,
* erc32/func.c, * lm32/sim-if.c, * m32c/load.c, * m32c/trace.c,
* m68hc11/interp.c, * ppc/hw_htab.c, * ppc/hw_init.c,
* rl78/load.c, * rl78/trace.c, * rx/gdb-if.c, * rx/load.c,
* rx/trace.c: Update throughout for bfd section macro changes.
2019-09-16 20:25:17 +09:30
|
|
|
|
bfd_set_section_flags (bss_section, applicable & SEC_ALLOC);
|
2003-10-04 12:40:12 +00:00
|
|
|
|
seg_info (bss_section)->bss = 1;
|
2011-12-29 10:53:10 +00:00
|
|
|
|
#endif
|
2003-10-04 12:40:12 +00:00
|
|
|
|
subseg_new (BFD_ABS_SECTION_NAME, 0);
|
|
|
|
|
subseg_new (BFD_UND_SECTION_NAME, 0);
|
|
|
|
|
reg_section = subseg_new ("*GAS `reg' section*", 0);
|
|
|
|
|
expr_section = subseg_new ("*GAS `expr' section*", 0);
|
|
|
|
|
|
2011-12-29 10:53:10 +00:00
|
|
|
|
#ifndef OBJ_MACH_O
|
2003-10-04 12:40:12 +00:00
|
|
|
|
subseg_set (text_section, 0);
|
2011-12-29 10:53:10 +00:00
|
|
|
|
#endif
|
2003-10-04 12:40:12 +00:00
|
|
|
|
|
|
|
|
|
/* This may add symbol table entries, which requires having an open BFD,
|
* README-vms: Delete.
* config-gas.com: Delete.
* makefile.vms: Delete.
* vmsconf.sh: Delete.
* config/atof-tahoe.c: Delete.
* config/m88k-opcode.h: Delete.
* config/obj-bout.c: Delete.
* config/obj-bout.h: Delete.
* config/obj-hp300.c: Delete.
* config/obj-hp300.h: Delete.
* config/tc-a29k.c: Delete.
* config/tc-a29k.h: Delete.
* config/tc-h8500.c: Delete.
* config/tc-h8500.h: Delete.
* config/tc-m88k.c: Delete.
* config/tc-m88k.h: Delete.
* config/tc-tahoe.c: Delete.
* config/tc-tahoe.h: Delete.
* config/tc-tic80.c: Delete.
* config/tc-tic80.h: Delete.
* config/tc-w65.c: Delete.
* config/tc-w65.h: Delete.
* config/te-aux.h: Delete.
* config/te-delt88.h: Delete.
* config/te-delta.h: Delete.
* config/te-dpx2.h: Delete.
* config/te-hp300.h: Delete.
* config/te-ic960.h: Delete.
* config/vms-a-conf.h: Delete.
* doc/c-a29k.texi: Delete.
* doc/c-h8500.texi: Delete.
* doc/c-m88k.texi: Delete.
* README: Remove obsolete examples, and list of supported targets.
* Makefile.am: Remove a29k, h8500, m88k, tahoe, tic80, w65,
bout and hp300 support.
(DEP_FLAGS): Don't define BFD_ASSEMBLER.
* configure.in: Remove --enable-bfd-assembler, need_bfd,
primary_bfd_gas.
* configure.tgt: Remove a29k, h8300-coff, h8500-*, i960 non-elf,
m68k non bfd, m88k, or32-coff, tic80-*, vax non-bfd, w65k-*, *-nindy.
* as.c: Remove all non-BFD_ASSEMBLER code, support for above targets.
* as.h: Likewise.
* dw2gencfi.c: Likewise.
* dwarf2dbg.c: Likewise.
* ehopt.c: Likewise.
* input-file.c: Likewise.
* listing.c: Likewise.
* literal.c: Likewise.
* messages.c: Likewise.
* obj.h: Likewise.
* output-file.c: Likewise.
* read.c: Likewise.
* stabs.c: Likewise.
* struc-symbol.h: Likewise.
* subsegs.c: Likewise.
* subsegs.h: Likewise.
* symbols.c: Likewise.
* symbols.h: Likewise.
* tc.h: Likewise.
* write.c: Likewise.
* write.h: Likewise.
* config/aout_gnu.h: Likewise.
* config/obj-aout.c: Likewise.
* config/obj-aout.h: Likewise.
* config/obj-coff.c: Likewise.
* config/obj-coff.h: Likewise.
* config/obj-evax.h: Likewise.
* config/obj-ieee.h: Likewise.
* config/tc-arm.c: Likewise.
* config/tc-arm.h: Likewise.
* config/tc-avr.c: Likewise.
* config/tc-avr.h: Likewise.
* config/tc-crx.h: Likewise.
* config/tc-d10v.h: Likewise.
* config/tc-d30v.h: Likewise.
* config/tc-dlx.h: Likewise.
* config/tc-fr30.h: Likewise.
* config/tc-frv.h: Likewise.
* config/tc-h8300.c: Likewise.
* config/tc-h8300.h: Likewise.
* config/tc-hppa.h: Likewise.
* config/tc-i370.h: Likewise.
* config/tc-i386.c: Likewise.
* config/tc-i386.h: Likewise.
* config/tc-i860.h: Likewise.
* config/tc-i960.c: Likewise.
* config/tc-i960.h: Likewise.
* config/tc-ip2k.h: Likewise.
* config/tc-iq2000.h: Likewise.
* config/tc-m32c.h: Likewise.
* config/tc-m32r.h: Likewise.
* config/tc-m68hc11.h: Likewise.
* config/tc-m68k.c: Likewise.
* config/tc-m68k.h: Likewise.
* config/tc-maxq.c: Likewise.
* config/tc-maxq.h: Likewise.
* config/tc-mcore.c: Likewise.
* config/tc-mcore.h: Likewise.
* config/tc-mn10200.h: Likewise.
* config/tc-mn10300.c: Likewise.
* config/tc-mn10300.h: Likewise.
* config/tc-ms1.h: Likewise.
* config/tc-msp430.c: Likewise.
* config/tc-msp430.h: Likewise.
* config/tc-ns32k.c: Likewise.
* config/tc-ns32k.h: Likewise.
* config/tc-openrisc.h: Likewise.
* config/tc-or32.c: Likewise.
* config/tc-or32.h: Likewise.
* config/tc-ppc.c: Likewise.
* config/tc-ppc.h: Likewise.
* config/tc-s390.h: Likewise.
* config/tc-sh.c: Likewise.
* config/tc-sh.h: Likewise.
* config/tc-sparc.c: Likewise.
* config/tc-tic30.c: Likewise.
* config/tc-tic30.h: Likewise.
* config/tc-tic4x.c: Likewise.
* config/tc-tic4x.h: Likewise.
* config/tc-tic54x.c: Likewise.
* config/tc-tic54x.h: Likewise.
* config/tc-v850.h: Likewise.
* config/tc-vax.c: Likewise.
* config/tc-vax.h: Likewise.
* config/tc-xstormy16.h: Likewise.
* config/tc-xtensa.h: Likewise.
* config/tc-z8k.c: Likewise.
* config/tc-z8k.h: Likewise.
* config/vms-a-conf.h
* doc/Makefile.am: Likewise.
* doc/all.texi: Likewise.
* doc/as.texinfo: Likewise.
* doc/Makefile.in: Regenerate.
* Makefile.in: Regenerate.
* configure: Regenerate.
* config.in: Regenerate.
* po/POTFILES.in: Regenerate.
2005-08-11 01:25:29 +00:00
|
|
|
|
and sections already created. */
|
2003-10-04 12:40:12 +00:00
|
|
|
|
md_begin ();
|
|
|
|
|
|
|
|
|
|
#ifdef USING_CGEN
|
|
|
|
|
gas_cgen_begin ();
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef obj_begin
|
|
|
|
|
obj_begin ();
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Skip argv[0]. */
|
|
|
|
|
argv++;
|
|
|
|
|
argc--;
|
|
|
|
|
|
|
|
|
|
while (argc--)
|
|
|
|
|
{
|
|
|
|
|
if (*argv)
|
|
|
|
|
{ /* Is it a file-name argument? */
|
|
|
|
|
PROGRESS (1);
|
|
|
|
|
saw_a_file++;
|
|
|
|
|
/* argv->"" if stdin desired, else->filename. */
|
|
|
|
|
read_a_source_file (*argv);
|
|
|
|
|
}
|
|
|
|
|
argv++; /* Completed that argv. */
|
|
|
|
|
}
|
|
|
|
|
if (!saw_a_file)
|
|
|
|
|
read_a_source_file ("");
|
|
|
|
|
}
|
2022-07-07 13:32:30 +09:30
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
free_notes (void)
|
|
|
|
|
{
|
|
|
|
|
_obstack_free (¬es, NULL);
|
|
|
|
|
}
|
2001-09-22 09:23:31 +00:00
|
|
|
|
|
2000-08-31 23:17:47 +00:00
|
|
|
|
int
|
2003-10-04 12:40:12 +00:00
|
|
|
|
main (int argc, char ** argv)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
2008-04-10 12:45:18 +00:00
|
|
|
|
char ** argv_orig = argv;
|
2018-04-12 15:07:02 +01:00
|
|
|
|
struct stat sob;
|
2008-04-10 12:45:18 +00:00
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
int macro_strip_at;
|
|
|
|
|
|
|
|
|
|
start_time = get_run_time ();
|
2017-01-18 08:23:10 -05:00
|
|
|
|
signal_init ();
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
C99 gas configury
Also remove alloca stuff since we don't use alloca in gas nowadays.
* configure.ac: Don't check for string.h, strings.h, stdlib.h,
errno.h, limits.h, locale.h or time.h. Don't check for unlink,
remove, sbrk (unused) or setlocale. Adjust gas_test_headers.
Don't check for errno, free, malloc, realoc, sbrk, strstr, getenv
strstr, or vsnprintf declarations.
(AC_ISC_POSIX, AC_FUNC_ALLOCA, AC_C_INLINE): Don't invoke.
* as.h: Don't include alloca-conf.h, include config.h instead.
Include string.h, stdlib.h, errno.h unconditionally. Remove
various fallback declarations.
* asintl.h: Don't test HAVE_LOCALE_H.
* as.c: Don't test HAVE_SETLOCALE.
* dwarf2dbg.c: Include limits.h unconditionally.
* expr.c: Likewise.
* sb.c: Likewise.
* symbols.c: Likewise.
* config/tc-cr16.c: Likewise.
* config/tc-d30v.c: Likewise.
* config/tc-i386.c: Likewise.
* config/tc-ia64.c: Likewise.
* config/tc-tic54x.c (tic54x_mlib): Call remove rather than unlink.
* config.in: Regenerate.
* configure: Regenerate.
* Makefile.in: Regenerate.
* doc/Makefile.in: Regenerate.
2021-04-05 15:31:25 +09:30
|
|
|
|
#ifdef HAVE_LC_MESSAGES
|
1999-05-03 07:29:11 +00:00
|
|
|
|
setlocale (LC_MESSAGES, "");
|
2001-09-19 05:33:36 +00:00
|
|
|
|
#endif
|
|
|
|
|
setlocale (LC_CTYPE, "");
|
1999-05-03 07:29:11 +00:00
|
|
|
|
bindtextdomain (PACKAGE, LOCALEDIR);
|
|
|
|
|
textdomain (PACKAGE);
|
|
|
|
|
|
|
|
|
|
if (debug_memory)
|
2002-04-16 04:58:56 +00:00
|
|
|
|
chunksize = 64;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
#ifdef HOST_SPECIAL_INIT
|
|
|
|
|
HOST_SPECIAL_INIT (argc, argv);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
myname = argv[0];
|
|
|
|
|
xmalloc_set_program_name (myname);
|
|
|
|
|
|
2005-09-30 16:37:32 +00:00
|
|
|
|
expandargv (&argc, &argv);
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
START_PROGRESS (myname, 0);
|
|
|
|
|
|
|
|
|
|
#ifndef OBJ_DEFAULT_OUTPUT_FILE_NAME
|
|
|
|
|
#define OBJ_DEFAULT_OUTPUT_FILE_NAME "a.out"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
out_file_name = OBJ_DEFAULT_OUTPUT_FILE_NAME;
|
|
|
|
|
|
|
|
|
|
hex_init ();
|
2018-10-15 16:10:27 +10:30
|
|
|
|
if (bfd_init () != BFD_INIT_MAGIC)
|
|
|
|
|
as_fatal (_("libbfd ABI mismatch"));
|
1999-05-03 07:29:11 +00:00
|
|
|
|
bfd_set_error_program_name (myname);
|
|
|
|
|
|
|
|
|
|
#ifdef USE_EMULATIONS
|
|
|
|
|
select_emulation_mode (argc, argv);
|
|
|
|
|
#endif
|
2022-07-07 13:32:30 +09:30
|
|
|
|
|
|
|
|
|
obstack_begin (¬es, chunksize);
|
|
|
|
|
xatexit (free_notes);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
PROGRESS (1);
|
2005-04-14 09:00:35 +00:00
|
|
|
|
/* Call parse_args before any of the init/begin functions
|
|
|
|
|
so that switches like --hash-size can be honored. */
|
|
|
|
|
parse_args (&argc, &argv);
|
2018-04-12 15:07:02 +01:00
|
|
|
|
|
|
|
|
|
if (argc > 1 && stat (out_file_name, &sob) == 0)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
for (i = 1; i < argc; ++i)
|
|
|
|
|
{
|
|
|
|
|
struct stat sib;
|
|
|
|
|
|
2018-08-14 12:22:35 +01:00
|
|
|
|
/* Check that the input file and output file are different. */
|
|
|
|
|
if (stat (argv[i], &sib) == 0
|
|
|
|
|
&& sib.st_ino == sob.st_ino
|
|
|
|
|
/* POSIX emulating systems may support stat() but if the
|
|
|
|
|
underlying file system does not support a file serial number
|
|
|
|
|
of some kind then they will return 0 for the inode. So
|
|
|
|
|
two files with an inode of 0 may not actually be the same.
|
|
|
|
|
On real POSIX systems no ordinary file will ever have an
|
|
|
|
|
inode of 0. */
|
|
|
|
|
&& sib.st_ino != 0
|
|
|
|
|
/* Different files may have the same inode number if they
|
|
|
|
|
reside on different devices, so check the st_dev field as
|
|
|
|
|
well. */
|
2020-03-06 10:44:12 +00:00
|
|
|
|
&& sib.st_dev == sob.st_dev
|
|
|
|
|
/* PR 25572: Only check regular files. Devices, sockets and so
|
|
|
|
|
on might actually work as both input and output. Plus there
|
|
|
|
|
is a use case for using /dev/null as both input and output
|
|
|
|
|
when checking for command line option support in a script:
|
|
|
|
|
as --foo /dev/null -o /dev/null; if $? then ... */
|
|
|
|
|
&& S_ISREG (sib.st_mode))
|
2018-04-12 15:07:02 +01:00
|
|
|
|
{
|
2018-08-14 12:22:35 +01:00
|
|
|
|
const char *saved_out_file_name = out_file_name;
|
|
|
|
|
|
|
|
|
|
/* Don't let as_fatal remove the output file! */
|
|
|
|
|
out_file_name = NULL;
|
|
|
|
|
as_fatal (_("The input '%s' and output '%s' files are the same"),
|
|
|
|
|
argv[i], saved_out_file_name);
|
2018-04-12 15:07:02 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
symbol_begin ();
|
|
|
|
|
frag_init ();
|
|
|
|
|
subsegs_begin ();
|
|
|
|
|
read_begin ();
|
|
|
|
|
input_scrub_begin ();
|
|
|
|
|
expr_begin ();
|
|
|
|
|
|
2006-02-09 00:07:41 +00:00
|
|
|
|
/* It has to be called after dump_statistics (). */
|
2022-07-07 19:56:10 +09:30
|
|
|
|
xatexit (output_file_close);
|
2006-02-09 00:07:41 +00:00
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
if (flag_print_statistics)
|
|
|
|
|
xatexit (dump_statistics);
|
|
|
|
|
|
|
|
|
|
macro_strip_at = 0;
|
|
|
|
|
#ifdef TC_I960
|
|
|
|
|
macro_strip_at = flag_mri;
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-08-13 19:53:52 +00:00
|
|
|
|
macro_init (flag_macro_alternate, flag_mri, macro_strip_at, macro_expr);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
PROGRESS (1);
|
|
|
|
|
|
|
|
|
|
output_file_create (out_file_name);
|
* gas/app, gas/as.c, gas/as.h, gas/atof-generic.c, gas/cgen.c,
gas/config/atof-ieee.c, gas/config/obj-aout.c,
gas/config/obj-coff.c, gas/config/obj-ecoff.c,
gas/config/obj-elf.c, gas/config/obj-som.c, gas/config/tc-alpha.c,
gas/config/tc-arc.c, gas/config/tc-arm.c, gas/config/tc-cr16.c,
gas/config/tc-cris.c, gas/config/tc-crx.c, gas/config/tc-d30v.c,
gas/config/tc-dlx.c, gas/config/tc-hppa.c, gas/config/tc-i370.c,
gas/config/tc-i386-intel.c, gas/config/tc-i386.c,
gas/config/tc-i860.c, gas/config/tc-i960.c, gas/config/tc-ia64.c,
gas/config/tc-iq2000.c, gas/config/tc-m32c.c,
gas/config/tc-m32r.c, gas/config/tc-m68hc11.c,
gas/config/tc-m68k.c, gas/config/tc-maxq.c, gas/config/tc-mcore.c,
gas/config/tc-mep.c, gas/config/tc-mips.c, gas/config/tc-mmix.c,
gas/config/tc-mn10300.c, gas/config/tc-moxie.c,
gas/config/tc-ns32k.c, gas/config/tc-pj.c, gas/config/tc-ppc.c,
gas/config/tc-s390.c, gas/config/tc-score.c,
gas/config/tc-score7.c, gas/config/tc-sh.c, gas/config/tc-sparc.c,
gas/config/tc-spu.c, gas/config/tc-tic30.c, gas/config/tc-vax.c,
gas/config/tc-xtensa.c, gas/config/xtensa-relax.c,
gas/dw2gencfi.c, gas/dwarf2dbg.c, gas/ehopt.c, gas/expr.c,
gas/frags.c, gas/input-file.c, gas/read.c, gas/sb.c,
gas/subsegs.c, gas/symbols.c, gas/write.c: Change the name of the
gas macro `assert' to `gas_assert'.
2009-06-22 17:56:02 +00:00
|
|
|
|
gas_assert (stdoutput != 0);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2010-12-01 21:34:10 +00:00
|
|
|
|
dot_symbol_init ();
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
#ifdef tc_init_after_args
|
|
|
|
|
tc_init_after_args ();
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
itbl_init ();
|
|
|
|
|
|
2009-09-11 15:27:38 +00:00
|
|
|
|
dwarf2_init ();
|
|
|
|
|
|
2011-10-12 21:07:07 +00:00
|
|
|
|
local_symbol_make (".gasversion.", absolute_section,
|
2020-08-21 09:17:53 +09:30
|
|
|
|
&predefined_address_frag, BFD_VERSION / 10000UL);
|
2011-10-12 02:57:07 +00:00
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
/* Now that we have fully initialized, and have created the output
|
|
|
|
|
file, define any symbols requested by --defsym command line
|
|
|
|
|
arguments. */
|
|
|
|
|
while (defsyms != NULL)
|
|
|
|
|
{
|
|
|
|
|
symbolS *sym;
|
|
|
|
|
struct defsym_list *next;
|
|
|
|
|
|
2020-08-21 09:17:53 +09:30
|
|
|
|
sym = symbol_new (defsyms->name, absolute_section,
|
|
|
|
|
&zero_address_frag, defsyms->value);
|
2007-01-30 14:44:36 +00:00
|
|
|
|
/* Make symbols defined on the command line volatile, so that they
|
|
|
|
|
can be redefined inside a source file. This makes this assembler's
|
|
|
|
|
behaviour compatible with earlier versions, but it may not be
|
|
|
|
|
completely intuitive. */
|
|
|
|
|
S_SET_VOLATILE (sym);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
symbol_table_insert (sym);
|
|
|
|
|
next = defsyms->next;
|
|
|
|
|
free (defsyms);
|
|
|
|
|
defsyms = next;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PROGRESS (1);
|
|
|
|
|
|
2000-08-31 23:17:47 +00:00
|
|
|
|
/* Assemble it. */
|
|
|
|
|
perform_an_assembly_pass (argc, argv);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
cond_finish_check (-1);
|
|
|
|
|
|
gas: rename md_end to md_finish
Currently md_end is typically used for some final actions rather than
freeing memory like other *_end functions. Rename it to md_finish,
and rename target implementation. The renaming of target functions
makes it possible to find them all with "grep md_finish",
eg. md_mips_end is renamed to mips_md_finish, not md_mips_finish.
This patch leaves a number of md_end functions unchanged, those that
either do nothing or deallocate memory, and calls them late.
The idea here is that target maintainers implement md_end functions to
tidy memory, if anyone cares. Freeing persistent memory in gas is
not at all important, except that it can hide more important memory
leaks, those that happen once per some frequent gas operation, amongst
these unimportant memory leaks.
* as.c (main): Rename md_end to md_finish.
* config/tc-alpha.c, * config/tc-alpha.h,
* config/tc-arc.c, * config/tc-arc.h,
* config/tc-arm.c, * config/tc-arm.h,
* config/tc-csky.c, * config/tc-csky.h,
* config/tc-ia64.c, * config/tc-ia64.h,
* config/tc-mcore.c, * config/tc-mcore.h,
* config/tc-mips.c, * config/tc-mips.h,
* config/tc-mmix.c, * config/tc-mmix.h,
* config/tc-msp430.c, * config/tc-msp430.h,
* config/tc-nds32.c, * config/tc-nds32.h,
* config/tc-ppc.c, * config/tc-ppc.h,
* config/tc-pru.c, * config/tc-pru.h,
* config/tc-riscv.c, * config/tc-riscv.h,
* config/tc-s390.c, * config/tc-s390.h,
* config/tc-sparc.c, * config/tc-sparc.h,
* config/tc-tic4x.c, * config/tc-tic4x.h,
* config/tc-tic6x.c, * config/tc-tic6x.h,
* config/tc-v850.c, * config/tc-v850.h,
* config/tc-xtensa.c, * config/tc-xtensa.h,
* config/tc-z80.c, * config/tc-z80.h: Similarly.
* output-file.c (output_file_close): Call md_end.
2022-07-05 13:26:38 +09:30
|
|
|
|
#ifdef md_finish
|
|
|
|
|
md_finish ();
|
1999-05-03 07:29:11 +00:00
|
|
|
|
#endif
|
bfd:
* elf-attrs.c: New.
* Makefile.am (BFD32_BACKENDS): Add elf-attrs.lo.
(BFD32_BACKENDS_CFILES): Add elf-attrs.c.
(elf-attrs.lo): Generate dependencies.
* Makefile.in: Regenerate.
* configure.in (elf): Add elf-attrs.lo.
* configure: Regenerate.
* elf-bfd.h (struct elf_backend_data): Add entries for object
attributes.
(NUM_KNOWN_OBJ_ATTRIBUTES, obj_attribute, obj_attribute_list,
OBJ_ATTR_PROC, OBJ_ATTR_GNU, OBJ_ATTR_FIRST, OBJ_ATTR_LAST,
Tag_NULL, Tag_File, Tag_Section, Tag_Symbol, Tag_compatibility):
New.
(struct elf_obj_tdata): Add entries for object attributes.
(elf_known_obj_attributes, elf_other_obj_attributes,
elf_known_obj_attributes_proc, elf_other_obj_attributes_proc):
New.
(bfd_elf_obj_attr_size, bfd_elf_set_obj_attr_contents,
bfd_elf_get_obj_attr_int, bfd_elf_add_obj_attr_int,
bfd_elf_add_proc_attr_int, bfd_elf_add_obj_attr_string,
bfd_elf_add_proc_attr_string, bfd_elf_add_obj_attr_compat,
bfd_elf_add_proc_attr_compat, _bfd_elf_attr_strdup,
_bfd_elf_copy_obj_attributes, _bfd_elf_obj_attrs_arg_type,
_bfd_elf_parse_attributes, _bfd_elf_merge_object_attributes): New.
* elf.c (_bfd_elf_copy_private_bfd_data): Copy object attributes.
(bfd_section_from_shdr): Handle attributes sections.
* elflink.c (bfd_elf_final_link): Handle attributes sections.
* elfxx-target.h (elf_backend_obj_attrs_vendor,
elf_backend_obj_attrs_section, elf_backend_obj_attrs_arg_type,
elf_backend_obj_attrs_section_type): New.
(elfNN_bed): Update.
* elf32-arm.c (NUM_KNOWN_ATTRIBUTES, aeabi_attribute,
aeabi_attribute_list): Remove.
(struct elf32_arm_obj_tdata): Remove object attributes fields.
(check_use_blx, bfd_elf32_arm_set_vfp11_fix, using_thumb2,
elf32_arm_copy_private_bfd_data, elf32_arm_merge_eabi_attributes):
Update for new object attributes interfaces.
(uleb128_size, is_default_attr, eabi_attr_size,
elf32_arm_eabi_attr_size, write_uleb128, write_eabi_attribute,
elf32_arm_set_eabi_attr_contents, elf32_arm_bfd_final_link,
elf32_arm_new_eabi_attr, elf32_arm_get_eabi_attr_int,
elf32_arm_add_eabi_attr_int, attr_strdup,
elf32_arm_add_eabi_attr_string, elf32_arm_add_eabi_attr_compat,
copy_eabi_attributes, elf32_arm_parse_attributes): Remove. Moved
to generic code in elf-attrs.c.
(elf32_arm_obj_attrs_arg_type): New.
(elf32_arm_fake_sections): Do not handle .ARM.attributes.
(elf32_arm_section_from_shdr): Do not handle SHT_ARM_ATTRIBUTES.
(bfd_elf32_bfd_final_link): Remove.
(elf_backend_obj_attrs_vendor, elf_backend_obj_attrs_section,
elf_backend_obj_attrs_arg_type,
elf_backend_obj_attrs_section_type): New.
* elf32-bfin.c (bfin_elf_copy_private_bfd_data): Copy object
attributes.
* elf32-frv.c (frv_elf_copy_private_bfd_data): Likewise.
* elf32-iq2000.c (iq2000_elf_copy_private_bfd_data): Likewise.
* elf32-mep.c (mep_elf_copy_private_bfd_data): Likewise.
* elf32-mt.c (mt_elf_copy_private_bfd_data): Likewise.
* elf32-sh.c (sh_elf_copy_private_data): Likewise.
* elf64-sh64.c (sh_elf64_copy_private_data_internal): Likewise.
binutils:
* readelf.c (display_gnu_attribute): New.
(process_arm_specific): Rearrange as process_attributes.
(process_arm_specific): Replace by wrapper of process_attributes.
gas:
* as.c (create_obj_attrs_section): New.
(main): Call create_obj_attrs_section for ELF.
* read.c (s_gnu_attribute, skip_whitespace, skip_past_char,
skip_past_comma, s_vendor_attribute): New.
(potable): Add gnu_attribute for ELF.
* read.h (s_vendor_attribute): Declare.
* config/tc-arm.c (s_arm_eabi_attribute): Replace by wrapper
round s_vendor_attribute.
(aeabi_set_public_attributes): Update for new attributes
interfaces.
(arm_md_end): Remove attributes contents setting now done
generically.
include/elf:
* arm.h (elf32_arm_add_eabi_attr_int,
elf32_arm_add_eabi_attr_string, elf32_arm_add_eabi_attr_compat,
elf32_arm_get_eabi_attr_int, elf32_arm_set_eabi_attr_contents,
elf32_arm_eabi_attr_size, Tag_NULL, Tag_File, Tag_Section,
Tag_Symbol, Tag_compatibility): Remove.
* common.h (SHT_GNU_ATTRIBUTES): Define.
ld:
* emulparams/armelf.sh (OTHER_SECTIONS): Remove .ARM.attributes.
(ATTRS_SECTIONS): Define.
* scripttempl/elf.sc, scripttempl/elf32sh-symbian.sc,
scripttempl/elf_chaos.sc, scripttempl/elfi370.sc,
scripttempl/elfxtensa.sc: Handle ATTRS_SECTIONS.
2007-06-29 16:29:17 +00:00
|
|
|
|
|
* README-vms: Delete.
* config-gas.com: Delete.
* makefile.vms: Delete.
* vmsconf.sh: Delete.
* config/atof-tahoe.c: Delete.
* config/m88k-opcode.h: Delete.
* config/obj-bout.c: Delete.
* config/obj-bout.h: Delete.
* config/obj-hp300.c: Delete.
* config/obj-hp300.h: Delete.
* config/tc-a29k.c: Delete.
* config/tc-a29k.h: Delete.
* config/tc-h8500.c: Delete.
* config/tc-h8500.h: Delete.
* config/tc-m88k.c: Delete.
* config/tc-m88k.h: Delete.
* config/tc-tahoe.c: Delete.
* config/tc-tahoe.h: Delete.
* config/tc-tic80.c: Delete.
* config/tc-tic80.h: Delete.
* config/tc-w65.c: Delete.
* config/tc-w65.h: Delete.
* config/te-aux.h: Delete.
* config/te-delt88.h: Delete.
* config/te-delta.h: Delete.
* config/te-dpx2.h: Delete.
* config/te-hp300.h: Delete.
* config/te-ic960.h: Delete.
* config/vms-a-conf.h: Delete.
* doc/c-a29k.texi: Delete.
* doc/c-h8500.texi: Delete.
* doc/c-m88k.texi: Delete.
* README: Remove obsolete examples, and list of supported targets.
* Makefile.am: Remove a29k, h8500, m88k, tahoe, tic80, w65,
bout and hp300 support.
(DEP_FLAGS): Don't define BFD_ASSEMBLER.
* configure.in: Remove --enable-bfd-assembler, need_bfd,
primary_bfd_gas.
* configure.tgt: Remove a29k, h8300-coff, h8500-*, i960 non-elf,
m68k non bfd, m88k, or32-coff, tic80-*, vax non-bfd, w65k-*, *-nindy.
* as.c: Remove all non-BFD_ASSEMBLER code, support for above targets.
* as.h: Likewise.
* dw2gencfi.c: Likewise.
* dwarf2dbg.c: Likewise.
* ehopt.c: Likewise.
* input-file.c: Likewise.
* listing.c: Likewise.
* literal.c: Likewise.
* messages.c: Likewise.
* obj.h: Likewise.
* output-file.c: Likewise.
* read.c: Likewise.
* stabs.c: Likewise.
* struc-symbol.h: Likewise.
* subsegs.c: Likewise.
* subsegs.h: Likewise.
* symbols.c: Likewise.
* symbols.h: Likewise.
* tc.h: Likewise.
* write.c: Likewise.
* write.h: Likewise.
* config/aout_gnu.h: Likewise.
* config/obj-aout.c: Likewise.
* config/obj-aout.h: Likewise.
* config/obj-coff.c: Likewise.
* config/obj-coff.h: Likewise.
* config/obj-evax.h: Likewise.
* config/obj-ieee.h: Likewise.
* config/tc-arm.c: Likewise.
* config/tc-arm.h: Likewise.
* config/tc-avr.c: Likewise.
* config/tc-avr.h: Likewise.
* config/tc-crx.h: Likewise.
* config/tc-d10v.h: Likewise.
* config/tc-d30v.h: Likewise.
* config/tc-dlx.h: Likewise.
* config/tc-fr30.h: Likewise.
* config/tc-frv.h: Likewise.
* config/tc-h8300.c: Likewise.
* config/tc-h8300.h: Likewise.
* config/tc-hppa.h: Likewise.
* config/tc-i370.h: Likewise.
* config/tc-i386.c: Likewise.
* config/tc-i386.h: Likewise.
* config/tc-i860.h: Likewise.
* config/tc-i960.c: Likewise.
* config/tc-i960.h: Likewise.
* config/tc-ip2k.h: Likewise.
* config/tc-iq2000.h: Likewise.
* config/tc-m32c.h: Likewise.
* config/tc-m32r.h: Likewise.
* config/tc-m68hc11.h: Likewise.
* config/tc-m68k.c: Likewise.
* config/tc-m68k.h: Likewise.
* config/tc-maxq.c: Likewise.
* config/tc-maxq.h: Likewise.
* config/tc-mcore.c: Likewise.
* config/tc-mcore.h: Likewise.
* config/tc-mn10200.h: Likewise.
* config/tc-mn10300.c: Likewise.
* config/tc-mn10300.h: Likewise.
* config/tc-ms1.h: Likewise.
* config/tc-msp430.c: Likewise.
* config/tc-msp430.h: Likewise.
* config/tc-ns32k.c: Likewise.
* config/tc-ns32k.h: Likewise.
* config/tc-openrisc.h: Likewise.
* config/tc-or32.c: Likewise.
* config/tc-or32.h: Likewise.
* config/tc-ppc.c: Likewise.
* config/tc-ppc.h: Likewise.
* config/tc-s390.h: Likewise.
* config/tc-sh.c: Likewise.
* config/tc-sh.h: Likewise.
* config/tc-sparc.c: Likewise.
* config/tc-tic30.c: Likewise.
* config/tc-tic30.h: Likewise.
* config/tc-tic4x.c: Likewise.
* config/tc-tic4x.h: Likewise.
* config/tc-tic54x.c: Likewise.
* config/tc-tic54x.h: Likewise.
* config/tc-v850.h: Likewise.
* config/tc-vax.c: Likewise.
* config/tc-vax.h: Likewise.
* config/tc-xstormy16.h: Likewise.
* config/tc-xtensa.h: Likewise.
* config/tc-z8k.c: Likewise.
* config/tc-z8k.h: Likewise.
* config/vms-a-conf.h
* doc/Makefile.am: Likewise.
* doc/all.texi: Likewise.
* doc/as.texinfo: Likewise.
* doc/Makefile.in: Regenerate.
* Makefile.in: Regenerate.
* configure: Regenerate.
* config.in: Regenerate.
* po/POTFILES.in: Regenerate.
2005-08-11 01:25:29 +00:00
|
|
|
|
#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
|
2003-06-04 16:54:45 +00:00
|
|
|
|
if ((flag_execstack || flag_noexecstack)
|
|
|
|
|
&& OUTPUT_FLAVOR == bfd_target_elf_flavour)
|
|
|
|
|
{
|
|
|
|
|
segT gnustack;
|
|
|
|
|
|
|
|
|
|
gnustack = subseg_new (".note.GNU-stack", 0);
|
bfd_section_* macros
This large patch removes the unnecessary bfd parameter from various
bfd section macros and functions. The bfd is hardly ever used and if
needed for the bfd_set_section_* or bfd_rename_section functions can
be found via section->owner except for the com, und, abs, and ind
std_section special sections. Those sections shouldn't be modified
anyway.
The patch also removes various bfd_get_section_<field> macros,
replacing their use with bfd_section_<field>, and adds
bfd_set_section_lma. I've also fixed a minor bug in gas where
compressed section renaming was done directly rather than calling
bfd_rename_section. This would have broken bfd_get_section_by_name
and similar functions, but that hardly mattered at such a late stage
in gas processing.
bfd/
* bfd-in.h (bfd_get_section_name, bfd_get_section_vma),
(bfd_get_section_lma, bfd_get_section_alignment),
(bfd_get_section_size, bfd_get_section_flags),
(bfd_get_section_userdata): Delete.
(bfd_section_name, bfd_section_size, bfd_section_vma),
(bfd_section_lma, bfd_section_alignment): Lose bfd parameter.
(bfd_section_flags, bfd_section_userdata): New.
(bfd_is_com_section): Rename parameter.
* section.c (bfd_set_section_userdata, bfd_set_section_vma),
(bfd_set_section_alignment, bfd_set_section_flags, bfd_rename_section),
(bfd_set_section_size): Delete bfd parameter, rename section parameter.
(bfd_set_section_lma): New.
* bfd-in2.h: Regenerate.
* mach-o.c (bfd_mach_o_init_section_from_mach_o): Delete bfd param,
update callers.
* aoutx.h, * bfd.c, * coff-alpha.c, * coff-arm.c, * coff-mips.c,
* coff64-rs6000.c, * coffcode.h, * coffgen.c, * cofflink.c,
* compress.c, * ecoff.c, * elf-eh-frame.c, * elf-hppa.h,
* elf-ifunc.c, * elf-m10200.c, * elf-m10300.c, * elf-properties.c,
* elf-s390-common.c, * elf-vxworks.c, * elf.c, * elf32-arc.c,
* elf32-arm.c, * elf32-avr.c, * elf32-bfin.c, * elf32-cr16.c,
* elf32-cr16c.c, * elf32-cris.c, * elf32-crx.c, * elf32-csky.c,
* elf32-d10v.c, * elf32-epiphany.c, * elf32-fr30.c, * elf32-frv.c,
* elf32-ft32.c, * elf32-h8300.c, * elf32-hppa.c, * elf32-i386.c,
* elf32-ip2k.c, * elf32-iq2000.c, * elf32-lm32.c, * elf32-m32c.c,
* elf32-m32r.c, * elf32-m68hc1x.c, * elf32-m68k.c, * elf32-mcore.c,
* elf32-mep.c, * elf32-metag.c, * elf32-microblaze.c,
* elf32-moxie.c, * elf32-msp430.c, * elf32-mt.c, * elf32-nds32.c,
* elf32-nios2.c, * elf32-or1k.c, * elf32-ppc.c, * elf32-pru.c,
* elf32-rl78.c, * elf32-rx.c, * elf32-s390.c, * elf32-score.c,
* elf32-score7.c, * elf32-sh.c, * elf32-spu.c, * elf32-tic6x.c,
* elf32-tilepro.c, * elf32-v850.c, * elf32-vax.c, * elf32-visium.c,
* elf32-xstormy16.c, * elf32-xtensa.c, * elf64-alpha.c,
* elf64-bpf.c, * elf64-hppa.c, * elf64-ia64-vms.c, * elf64-mmix.c,
* elf64-ppc.c, * elf64-s390.c, * elf64-sparc.c, * elf64-x86-64.c,
* elflink.c, * elfnn-aarch64.c, * elfnn-ia64.c, * elfnn-riscv.c,
* elfxx-aarch64.c, * elfxx-mips.c, * elfxx-sparc.c,
* elfxx-tilegx.c, * elfxx-x86.c, * i386msdos.c, * linker.c,
* mach-o.c, * mmo.c, * opncls.c, * pdp11.c, * pei-x86_64.c,
* peicode.h, * reloc.c, * section.c, * syms.c, * vms-alpha.c,
* xcofflink.c: Update throughout for bfd section macro and function
changes.
binutils/
* addr2line.c, * bucomm.c, * coffgrok.c, * dlltool.c, * nm.c,
* objcopy.c, * objdump.c, * od-elf32_avr.c, * od-macho.c,
* od-xcoff.c, * prdbg.c, * rdcoff.c, * rddbg.c, * rescoff.c,
* resres.c, * size.c, * srconv.c, * strings.c, * windmc.c: Update
throughout for bfd section macro and function changes.
gas/
* as.c, * as.h, * dw2gencfi.c, * dwarf2dbg.c, * ecoff.c,
* read.c, * stabs.c, * subsegs.c, * subsegs.h, * write.c,
* config/obj-coff-seh.c, * config/obj-coff.c, * config/obj-ecoff.c,
* config/obj-elf.c, * config/obj-macho.c, * config/obj-som.c,
* config/tc-aarch64.c, * config/tc-alpha.c, * config/tc-arc.c,
* config/tc-arm.c, * config/tc-avr.c, * config/tc-bfin.c,
* config/tc-bpf.c, * config/tc-d10v.c, * config/tc-d30v.c,
* config/tc-epiphany.c, * config/tc-fr30.c, * config/tc-frv.c,
* config/tc-h8300.c, * config/tc-hppa.c, * config/tc-i386.c,
* config/tc-ia64.c, * config/tc-ip2k.c, * config/tc-iq2000.c,
* config/tc-lm32.c, * config/tc-m32c.c, * config/tc-m32r.c,
* config/tc-m68hc11.c, * config/tc-mep.c, * config/tc-microblaze.c,
* config/tc-mips.c, * config/tc-mmix.c, * config/tc-mn10200.c,
* config/tc-mn10300.c, * config/tc-msp430.c, * config/tc-mt.c,
* config/tc-nds32.c, * config/tc-or1k.c, * config/tc-ppc.c,
* config/tc-pru.c, * config/tc-rl78.c, * config/tc-rx.c,
* config/tc-s12z.c, * config/tc-s390.c, * config/tc-score.c,
* config/tc-score7.c, * config/tc-sh.c, * config/tc-sparc.c,
* config/tc-spu.c, * config/tc-tic4x.c, * config/tc-tic54x.c,
* config/tc-tic6x.c, * config/tc-tilegx.c, * config/tc-tilepro.c,
* config/tc-v850.c, * config/tc-visium.c, * config/tc-wasm32.c,
* config/tc-xc16x.c, * config/tc-xgate.c, * config/tc-xstormy16.c,
* config/tc-xtensa.c, * config/tc-z8k.c: Update throughout for
bfd section macro and function changes.
* write.c (compress_debug): Use bfd_rename_section.
gdb/
* aarch64-linux-tdep.c, * arm-tdep.c, * auto-load.c,
* coff-pe-read.c, * coffread.c, * corelow.c, * dbxread.c,
* dicos-tdep.c, * dwarf2-frame.c, * dwarf2read.c, * elfread.c,
* exec.c, * fbsd-tdep.c, * gcore.c, * gdb_bfd.c, * gdb_bfd.h,
* hppa-tdep.c, * i386-cygwin-tdep.c, * i386-fbsd-tdep.c,
* i386-linux-tdep.c, * jit.c, * linux-tdep.c, * machoread.c,
* maint.c, * mdebugread.c, * minidebug.c, * mips-linux-tdep.c,
* mips-sde-tdep.c, * mips-tdep.c, * mipsread.c, * nto-tdep.c,
* objfiles.c, * objfiles.h, * osabi.c, * ppc-linux-tdep.c,
* ppc64-tdep.c, * record-btrace.c, * record-full.c, * remote.c,
* rs6000-aix-tdep.c, * rs6000-tdep.c, * s390-linux-tdep.c,
* s390-tdep.c, * solib-aix.c, * solib-dsbt.c, * solib-frv.c,
* solib-spu.c, * solib-svr4.c, * solib-target.c,
* spu-linux-nat.c, * spu-tdep.c, * symfile-mem.c, * symfile.c,
* symmisc.c, * symtab.c, * target.c, * windows-nat.c,
* xcoffread.c, * cli/cli-dump.c, * compile/compile-object-load.c,
* mi/mi-interp.c: Update throughout for bfd section macro and
function changes.
* gcore (gcore_create_callback): Use bfd_set_section_lma.
* spu-tdep.c (spu_overlay_new_objfile): Likewise.
gprof/
* corefile.c, * symtab.c: Update throughout for bfd section
macro and function changes.
ld/
* ldcref.c, * ldctor.c, * ldelf.c, * ldlang.c, * pe-dll.c,
* emultempl/aarch64elf.em, * emultempl/aix.em,
* emultempl/armcoff.em, * emultempl/armelf.em,
* emultempl/cr16elf.em, * emultempl/cskyelf.em,
* emultempl/m68hc1xelf.em, * emultempl/m68kelf.em,
* emultempl/mipself.em, * emultempl/mmix-elfnmmo.em,
* emultempl/mmo.em, * emultempl/msp430.em,
* emultempl/nios2elf.em, * emultempl/pe.em, * emultempl/pep.em,
* emultempl/ppc64elf.em, * emultempl/xtensaelf.em: Update
throughout for bfd section macro and function changes.
libctf/
* ctf-open-bfd.c: Update throughout for bfd section macro changes.
opcodes/
* arc-ext.c: Update throughout for bfd section macro changes.
sim/
* common/sim-load.c, * common/sim-utils.c, * cris/sim-if.c,
* erc32/func.c, * lm32/sim-if.c, * m32c/load.c, * m32c/trace.c,
* m68hc11/interp.c, * ppc/hw_htab.c, * ppc/hw_init.c,
* rl78/load.c, * rl78/trace.c, * rx/gdb-if.c, * rx/load.c,
* rx/trace.c: Update throughout for bfd section macro changes.
2019-09-16 20:25:17 +09:30
|
|
|
|
bfd_set_section_flags (gnustack,
|
2003-06-04 16:54:45 +00:00
|
|
|
|
SEC_READONLY | (flag_execstack ? SEC_CODE : 0));
|
2013-01-10 19:51:55 +00:00
|
|
|
|
|
2003-06-04 16:54:45 +00:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2001-01-23 22:15:01 +00:00
|
|
|
|
/* If we've been collecting dwarf2 .debug_line info, either for
|
2000-11-17 08:53:38 +00:00
|
|
|
|
assembly debugging or on behalf of the compiler, emit it now. */
|
|
|
|
|
dwarf2_finish ();
|
|
|
|
|
|
2013-01-10 19:51:55 +00:00
|
|
|
|
/* If we constructed dwarf2 .eh_frame info, either via .cfi
|
2003-05-27 16:52:49 +00:00
|
|
|
|
directives from the user or by the backend, emit it now. */
|
2003-05-20 07:58:07 +00:00
|
|
|
|
cfi_finish ();
|
|
|
|
|
|
2014-06-16 11:04:04 +09:30
|
|
|
|
keep_it = 0;
|
|
|
|
|
if (seen_at_least_1_file ())
|
|
|
|
|
{
|
|
|
|
|
int n_warns, n_errs;
|
|
|
|
|
char warn_msg[50];
|
|
|
|
|
char err_msg[50];
|
|
|
|
|
|
|
|
|
|
write_object_file ();
|
|
|
|
|
|
|
|
|
|
n_warns = had_warnings ();
|
|
|
|
|
n_errs = had_errors ();
|
|
|
|
|
|
2017-11-06 19:44:02 +10:30
|
|
|
|
sprintf (warn_msg,
|
|
|
|
|
ngettext ("%d warning", "%d warnings", n_warns), n_warns);
|
|
|
|
|
sprintf (err_msg,
|
|
|
|
|
ngettext ("%d error", "%d errors", n_errs), n_errs);
|
2014-06-16 11:04:04 +09:30
|
|
|
|
if (flag_fatal_warnings && n_warns != 0)
|
|
|
|
|
{
|
|
|
|
|
if (n_errs == 0)
|
|
|
|
|
as_bad (_("%s, treating warnings as errors"), warn_msg);
|
|
|
|
|
n_errs += n_warns;
|
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2014-06-16 11:04:04 +09:30
|
|
|
|
if (n_errs == 0)
|
|
|
|
|
keep_it = 1;
|
|
|
|
|
else if (flag_always_generate_output)
|
|
|
|
|
{
|
|
|
|
|
/* The -Z flag indicates that an object file should be generated,
|
|
|
|
|
regardless of warnings and errors. */
|
|
|
|
|
keep_it = 1;
|
|
|
|
|
fprintf (stderr, _("%s, %s, generating bad object file\n"),
|
|
|
|
|
err_msg, warn_msg);
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2007-08-28 13:21:58 +00:00
|
|
|
|
fflush (stderr);
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
#ifndef NO_LISTING
|
2008-04-10 12:45:18 +00:00
|
|
|
|
listing_print (listing_filename, argv_orig);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
input_scrub_end ();
|
|
|
|
|
|
|
|
|
|
END_PROGRESS (myname);
|
|
|
|
|
|
|
|
|
|
/* Use xexit instead of return, because under VMS environments they
|
|
|
|
|
may not place the same interpretation on the value given. */
|
2014-06-16 11:04:04 +09:30
|
|
|
|
if (had_errors () != 0)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
xexit (EXIT_FAILURE);
|
|
|
|
|
|
|
|
|
|
/* Only generate dependency file if assembler was successful. */
|
|
|
|
|
print_dependencies ();
|
|
|
|
|
|
|
|
|
|
xexit (EXIT_SUCCESS);
|
|
|
|
|
}
|