1999-05-03 15:29:11 +08:00
|
|
|
|
/* as.h - global header file
|
2024-01-04 19:52:08 +08:00
|
|
|
|
Copyright (C) 1987-2024 Free Software Foundation, Inc.
|
1999-05-03 15:29:11 +08: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 19:01:12 +08:00
|
|
|
|
the Free Software Foundation; either version 3, or (at your option)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
any later version.
|
|
|
|
|
|
2007-07-03 19:01:12 +08: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 15:29:11 +08: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 17:13:19 +08:00
|
|
|
|
Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
|
|
|
|
|
02110-1301, USA. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
#ifndef GAS
|
|
|
|
|
#define GAS 1
|
2000-10-12 04:24:32 +08:00
|
|
|
|
/* I think this stuff is largely out of date. xoxorich.
|
2013-01-11 03:51:55 +08:00
|
|
|
|
|
2004-08-17 20:19:58 +08:00
|
|
|
|
CAPITALISED names are #defined.
|
|
|
|
|
"lowercaseH" is #defined if "lowercase.h" has been #include-d.
|
|
|
|
|
"lowercaseT" is a typedef of "lowercase" objects.
|
|
|
|
|
"lowercaseP" is type "pointer to object of type 'lowercase'".
|
|
|
|
|
"lowercaseS" is typedef struct ... lowercaseS.
|
2013-01-11 03:51:55 +08:00
|
|
|
|
|
2004-08-17 20:19:58 +08:00
|
|
|
|
#define DEBUG to enable all the "know" assertion tests.
|
|
|
|
|
#define SUSPECT when debugging hash code.
|
|
|
|
|
#define COMMON as "extern" for all modules except one, where you #define
|
|
|
|
|
COMMON as "".
|
|
|
|
|
If TEST is #defined, then we are testing a module: #define COMMON as "". */
|
1999-05-03 15:29:11 +08: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 14:01:25 +08:00
|
|
|
|
#include "config.h"
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
/* Now, tend to the rest of the configuration. */
|
|
|
|
|
|
2000-09-13 04:57:14 +08:00
|
|
|
|
/* System include files first... */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdlib.h>
|
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 14:01:25 +08:00
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
|
|
|
/* for size_t, pid_t */
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2006-02-09 19:54:15 +08:00
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
2002-05-25 20:53:29 +08:00
|
|
|
|
#include "getopt.h"
|
1999-05-03 15:29:11 +08:00
|
|
|
|
/* The first getopt value for machine-independent long options.
|
|
|
|
|
150 isn't special; it's just an arbitrary non-ASCII char value. */
|
|
|
|
|
#define OPTION_STD_BASE 150
|
|
|
|
|
/* The first getopt value for machine-dependent long options.
|
2016-06-27 20:49:09 +08:00
|
|
|
|
290 gives the standard options room to grow. */
|
|
|
|
|
#define OPTION_MD_BASE 290
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
|
#undef NDEBUG
|
|
|
|
|
#endif
|
2000-04-29 08:56:29 +08:00
|
|
|
|
#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 6)
|
2009-09-03 20:54:21 +08:00
|
|
|
|
#define __PRETTY_FUNCTION__ ((char *) NULL)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#endif
|
2017-01-18 21:23:10 +08:00
|
|
|
|
#define gas_assert(P) ((void) ((P) ? 0 : (abort (), 0)))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#undef abort
|
|
|
|
|
#define abort() as_abort (__FILE__, __LINE__, __PRETTY_FUNCTION__)
|
|
|
|
|
|
2000-09-13 04:57:14 +08:00
|
|
|
|
/* Now GNU header files... */
|
2000-05-08 18:24:06 +08:00
|
|
|
|
#include "ansidecl.h"
|
|
|
|
|
#include "bfd.h"
|
|
|
|
|
#include "libiberty.h"
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
/* Other stuff from config.h. */
|
2005-03-30 10:55:13 +08:00
|
|
|
|
#ifdef NEED_DECLARATION_ENVIRON
|
|
|
|
|
extern char **environ;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#endif
|
2005-03-30 10:55:13 +08:00
|
|
|
|
#ifdef NEED_DECLARATION_FFS
|
|
|
|
|
extern int ffs (int);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#endif
|
|
|
|
|
|
2009-12-16 08:28:56 +08:00
|
|
|
|
#if !HAVE_DECL_MEMPCPY
|
|
|
|
|
void *mempcpy(void *, const void *, size_t);
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#ifndef __LINE__
|
|
|
|
|
#define __LINE__ "unknown"
|
|
|
|
|
#endif /* __LINE__ */
|
|
|
|
|
|
|
|
|
|
#ifndef __FILE__
|
|
|
|
|
#define __FILE__ "unknown"
|
|
|
|
|
#endif /* __FILE__ */
|
|
|
|
|
|
|
|
|
|
#ifndef FOPEN_WB
|
2006-08-02 22:26:07 +08:00
|
|
|
|
#ifdef USE_BINARY_FOPEN
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#include "fopen-bin.h"
|
|
|
|
|
#else
|
|
|
|
|
#include "fopen-same.h"
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef EXIT_SUCCESS
|
|
|
|
|
#define EXIT_SUCCESS 0
|
|
|
|
|
#define EXIT_FAILURE 1
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-04-14 12:14:25 +08:00
|
|
|
|
#ifndef SEEK_SET
|
|
|
|
|
#define SEEK_SET 0
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#define obstack_chunk_alloc xmalloc
|
|
|
|
|
#define obstack_chunk_free xfree
|
|
|
|
|
|
|
|
|
|
#define xfree free
|
|
|
|
|
|
gas: utility notes memory alloc functions
Makes it a little easier to use the notes obstack for persistent
storage.
* as.h (gas_mul_overflow): Define.
* symbols.h (notes_alloc, notes_calloc, notes_memdup),
(notes_strdup, notes_concat, notes_free): Declare.
* symbols.c (notes_alloc, notes_calloc, notes_memdup),
(notes_strdup, notes_concat, notes_free): New functions.
(save_symbol_name): Use notes_strdup.
(symbol_create, local_symbol_make, local_symbol_convert),
(symbol_clone, decode_local_label_name): Use notes_alloc.
2022-07-07 07:10:26 +08:00
|
|
|
|
#if GCC_VERSION >= 7000
|
|
|
|
|
#define gas_mul_overflow(a, b, res) __builtin_mul_overflow (a, b, res)
|
|
|
|
|
#else
|
|
|
|
|
/* Assumes unsigned values. Careful! Args evaluated multiple times. */
|
|
|
|
|
#define gas_mul_overflow(a, b, res) \
|
|
|
|
|
((*res) = (a), (*res) *= (b), (b) != 0 && (*res) / (b) != (a))
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#include "asintl.h"
|
|
|
|
|
|
2000-10-12 04:24:32 +08:00
|
|
|
|
#define BAD_CASE(val) \
|
|
|
|
|
{ \
|
|
|
|
|
as_fatal (_("Case value %ld unexpected at line %d of file \"%s\"\n"), \
|
|
|
|
|
(long) val, __LINE__, __FILE__); \
|
|
|
|
|
}
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
#include "flonum.h"
|
|
|
|
|
|
|
|
|
|
/* These are assembler-wide concepts */
|
|
|
|
|
|
|
|
|
|
extern bfd *stdoutput;
|
|
|
|
|
typedef bfd_vma addressT;
|
|
|
|
|
typedef bfd_signed_vma offsetT;
|
|
|
|
|
|
|
|
|
|
/* Type of symbol value, etc. For use in prototypes. */
|
|
|
|
|
typedef addressT valueT;
|
|
|
|
|
|
|
|
|
|
#ifndef COMMON
|
|
|
|
|
#ifdef TEST
|
2004-08-17 20:19:58 +08:00
|
|
|
|
#define COMMON /* Declare our COMMONs storage here. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#else
|
2004-08-17 20:19:58 +08:00
|
|
|
|
#define COMMON extern /* Our commons live elsewhere. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
/* COMMON now defined */
|
|
|
|
|
|
2007-04-21 13:15:41 +08:00
|
|
|
|
#ifndef ENABLE_CHECKING
|
|
|
|
|
#define ENABLE_CHECKING 0
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if ENABLE_CHECKING || defined (DEBUG)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#ifndef know
|
* 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-23 01:56:02 +08:00
|
|
|
|
#define know(p) gas_assert(p) /* Verify our assumptions! */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#endif /* not yet defined */
|
|
|
|
|
#else
|
2009-10-18 21:33:20 +08:00
|
|
|
|
#define know(p) do {} while (0) /* know() checks are no-op.ed */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* input_scrub.c */
|
|
|
|
|
|
2000-10-12 04:24:32 +08:00
|
|
|
|
/* Supplies sanitised buffers to read.c.
|
|
|
|
|
Also understands printing line-number part of error messages. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
/* subsegs.c Sub-segments. Also, segment(=expression type)s.*/
|
|
|
|
|
|
|
|
|
|
typedef asection *segT;
|
2004-08-17 20:19:58 +08:00
|
|
|
|
#define SEG_NORMAL(SEG) ( (SEG) != absolute_section \
|
1999-05-03 15:29:11 +08:00
|
|
|
|
&& (SEG) != undefined_section \
|
|
|
|
|
&& (SEG) != reg_section \
|
|
|
|
|
&& (SEG) != expr_section)
|
|
|
|
|
typedef int subsegT;
|
|
|
|
|
|
2004-08-17 20:19:58 +08:00
|
|
|
|
/* What subseg we are accessing now? */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
COMMON subsegT now_subseg;
|
|
|
|
|
|
2000-09-13 04:57:14 +08:00
|
|
|
|
/* Segment our instructions emit to. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
COMMON segT now_seg;
|
|
|
|
|
|
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 18:55:17 +08:00
|
|
|
|
#define segment_name(SEG) bfd_section_name (SEG)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
extern segT reg_section, expr_section;
|
|
|
|
|
/* Shouldn't these be eliminated someday? */
|
|
|
|
|
extern segT text_section, data_section, bss_section;
|
|
|
|
|
#define absolute_section bfd_abs_section_ptr
|
|
|
|
|
#define undefined_section bfd_und_section_ptr
|
|
|
|
|
|
2004-08-17 20:19:58 +08:00
|
|
|
|
enum _relax_state
|
|
|
|
|
{
|
2005-04-09 11:48:09 +08:00
|
|
|
|
/* Dummy frag used by listing code. */
|
|
|
|
|
rs_dummy = 0,
|
|
|
|
|
|
2000-10-12 04:24:32 +08:00
|
|
|
|
/* Variable chars to be repeated fr_offset times.
|
|
|
|
|
Fr_symbol unused. Used with fr_offset == 0 for a
|
|
|
|
|
constant length frag. */
|
2005-04-09 11:48:09 +08:00
|
|
|
|
rs_fill,
|
2000-10-12 04:24:32 +08:00
|
|
|
|
|
|
|
|
|
/* Align. The fr_offset field holds the power of 2 to which to
|
|
|
|
|
align. The fr_var field holds the number of characters in the
|
|
|
|
|
fill pattern. The fr_subtype field holds the maximum number of
|
|
|
|
|
bytes to skip when aligning, or 0 if there is no maximum. */
|
|
|
|
|
rs_align,
|
|
|
|
|
|
|
|
|
|
/* Align code. The fr_offset field holds the power of 2 to which
|
|
|
|
|
to align. This type is only generated by machine specific
|
|
|
|
|
code, which is normally responsible for handling the fill
|
|
|
|
|
pattern. The fr_subtype field holds the maximum number of
|
|
|
|
|
bytes to skip when aligning, or 0 if there is no maximum. */
|
|
|
|
|
rs_align_code,
|
|
|
|
|
|
2000-12-28 18:07:56 +08:00
|
|
|
|
/* Test for alignment. Like rs_align, but used by several targets
|
|
|
|
|
to warn if data is not properly aligned. */
|
|
|
|
|
rs_align_test,
|
|
|
|
|
|
2000-10-12 04:24:32 +08:00
|
|
|
|
/* Org: Fr_offset, fr_symbol: address. 1 variable char: fill
|
|
|
|
|
character. */
|
|
|
|
|
rs_org,
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
#ifndef WORKING_DOT_WORD
|
2000-10-12 04:24:32 +08:00
|
|
|
|
/* JF: gunpoint */
|
|
|
|
|
rs_broken_word,
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#endif
|
|
|
|
|
|
2004-08-17 20:19:58 +08:00
|
|
|
|
/* Machine specific relaxable (or similarly alterable) instruction. */
|
2000-10-12 04:24:32 +08:00
|
|
|
|
rs_machine_dependent,
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2000-10-12 04:24:32 +08:00
|
|
|
|
/* .space directive with expression operand that needs to be computed
|
|
|
|
|
later. Similar to rs_org, but different.
|
|
|
|
|
fr_symbol: operand
|
|
|
|
|
1 variable char: fill character */
|
|
|
|
|
rs_space,
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
Add .nop assembler directive
Implement the '.nop SIZE[, CONTROL]' assembler directive, which emits
SIZE bytes filled with no-op instructions. SIZE is absolute expression.
The optional CONTROL byte controls how no-op instructions should be
generated. If the comma and @var{control} are omitted, CONTROL is
assumed to be zero.
For Intel 80386 and AMD x86-64 targets, CONTROL byte specifies the size
limit of a single no-op instruction. The valid values of CONTROL byte
are between 0 and 8 for 16-bit mode, between 0 and 10 for 32-bit mode,
between 0 and 11 for 64-bit mode. When 0 is used, the no-op size limit
is set to the maximum supported size.
2 new relax states, rs_space_nop and rs_fill_nop, are added to enum
_relax_state, which are similar to rs_space and rs_fill, respectively,
but they fill with no-op instructions, instead of a single byte. A
target backend must override the default md_generate_nops to generate
proper no-op instructions. Otherwise, an error of unimplemented .nop
directive will be issued whenever .nop directive is used.
* NEWS: Mention .nop directive.
* as.h (_relax_state): Add rs_space_nop and rs_fill_nop.
* read.c (potable): Add .nop.
(s_nop): New function.
* read.h (s_nop): New prototype.
* write.c (cvt_frag_to_fill): Handle rs_space_nop and
rs_fill_nop.
(md_generate_nops): New function.
(relax_segment): Likewise.
(write_contents): Use md_generate_nops for rs_fill_nop.
* config/tc-i386.c (alt64_11): New.
(alt64_patt): Likewise.
(md_convert_frag): Handle rs_space_nop.
(i386_output_nops): New function.
(i386_generate_nops): Likewise.
(i386_align_code): Call i386_output_nops.
* config/tc-i386.h (i386_generate_nops): New.
(md_generate_nops): Likewise.
* doc/as.texinfo: Document .nop directive.
* testsuite/gas/i386/i386.exp: Run .nop directive tests.
* testsuite/gas/i386/nop-1.d: New file.
* testsuite/gas/i386/nop-1.s: Likewise.
* testsuite/gas/i386/nop-2.d: Likewise.
* testsuite/gas/i386/nop-2.s: Likewise.
* testsuite/gas/i386/nop-3.d: Likewise.
* testsuite/gas/i386/nop-3.s: Likewise.
* testsuite/gas/i386/nop-4.d: Likewise.
* testsuite/gas/i386/nop-4.s: Likewise.
* testsuite/gas/i386/nop-5.d: Likewise.
* testsuite/gas/i386/nop-5.s: Likewise.
* testsuite/gas/i386/nop-6.d: Likewise.
* testsuite/gas/i386/nop-6.s: Likewise.
* testsuite/gas/i386/nop-bad-1.l: Likewise.
* testsuite/gas/i386/nop-bad-1.s: Likewise.
* testsuite/gas/i386/x86-64-nop-1.d: Likewise.
* testsuite/gas/i386/x86-64-nop-2.d: Likewise.
* testsuite/gas/i386/x86-64-nop-3.d: Likewise.
* testsuite/gas/i386/x86-64-nop-4.d: Likewise.
* testsuite/gas/i386/x86-64-nop-5.d: Likewise.
* testsuite/gas/i386/x86-64-nop-6.d: Likewise.
2018-02-17 21:20:42 +08:00
|
|
|
|
/* .nop directive with expression operand that needs to be computed
|
|
|
|
|
later. Similar to rs_space, but different. It fills with no-op
|
|
|
|
|
instructions.
|
|
|
|
|
fr_symbol: operand
|
|
|
|
|
1 constant byte: no-op fill control byte. */
|
|
|
|
|
rs_space_nop,
|
|
|
|
|
|
2023-10-23 16:36:36 +08:00
|
|
|
|
/* Similar to rs_fill. It is used to implement .nops directive.
|
|
|
|
|
When listings are enabled, fr_opcode gets the buffer assigned, once
|
|
|
|
|
that's available. */
|
Add .nop assembler directive
Implement the '.nop SIZE[, CONTROL]' assembler directive, which emits
SIZE bytes filled with no-op instructions. SIZE is absolute expression.
The optional CONTROL byte controls how no-op instructions should be
generated. If the comma and @var{control} are omitted, CONTROL is
assumed to be zero.
For Intel 80386 and AMD x86-64 targets, CONTROL byte specifies the size
limit of a single no-op instruction. The valid values of CONTROL byte
are between 0 and 8 for 16-bit mode, between 0 and 10 for 32-bit mode,
between 0 and 11 for 64-bit mode. When 0 is used, the no-op size limit
is set to the maximum supported size.
2 new relax states, rs_space_nop and rs_fill_nop, are added to enum
_relax_state, which are similar to rs_space and rs_fill, respectively,
but they fill with no-op instructions, instead of a single byte. A
target backend must override the default md_generate_nops to generate
proper no-op instructions. Otherwise, an error of unimplemented .nop
directive will be issued whenever .nop directive is used.
* NEWS: Mention .nop directive.
* as.h (_relax_state): Add rs_space_nop and rs_fill_nop.
* read.c (potable): Add .nop.
(s_nop): New function.
* read.h (s_nop): New prototype.
* write.c (cvt_frag_to_fill): Handle rs_space_nop and
rs_fill_nop.
(md_generate_nops): New function.
(relax_segment): Likewise.
(write_contents): Use md_generate_nops for rs_fill_nop.
* config/tc-i386.c (alt64_11): New.
(alt64_patt): Likewise.
(md_convert_frag): Handle rs_space_nop.
(i386_output_nops): New function.
(i386_generate_nops): Likewise.
(i386_align_code): Call i386_output_nops.
* config/tc-i386.h (i386_generate_nops): New.
(md_generate_nops): Likewise.
* doc/as.texinfo: Document .nop directive.
* testsuite/gas/i386/i386.exp: Run .nop directive tests.
* testsuite/gas/i386/nop-1.d: New file.
* testsuite/gas/i386/nop-1.s: Likewise.
* testsuite/gas/i386/nop-2.d: Likewise.
* testsuite/gas/i386/nop-2.s: Likewise.
* testsuite/gas/i386/nop-3.d: Likewise.
* testsuite/gas/i386/nop-3.s: Likewise.
* testsuite/gas/i386/nop-4.d: Likewise.
* testsuite/gas/i386/nop-4.s: Likewise.
* testsuite/gas/i386/nop-5.d: Likewise.
* testsuite/gas/i386/nop-5.s: Likewise.
* testsuite/gas/i386/nop-6.d: Likewise.
* testsuite/gas/i386/nop-6.s: Likewise.
* testsuite/gas/i386/nop-bad-1.l: Likewise.
* testsuite/gas/i386/nop-bad-1.s: Likewise.
* testsuite/gas/i386/x86-64-nop-1.d: Likewise.
* testsuite/gas/i386/x86-64-nop-2.d: Likewise.
* testsuite/gas/i386/x86-64-nop-3.d: Likewise.
* testsuite/gas/i386/x86-64-nop-4.d: Likewise.
* testsuite/gas/i386/x86-64-nop-5.d: Likewise.
* testsuite/gas/i386/x86-64-nop-6.d: Likewise.
2018-02-17 21:20:42 +08:00
|
|
|
|
rs_fill_nop,
|
|
|
|
|
|
2000-10-12 04:24:32 +08:00
|
|
|
|
/* A DWARF leb128 value; only ELF uses this. The subtype is 0 for
|
|
|
|
|
unsigned, 1 for signed. */
|
|
|
|
|
rs_leb128,
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2000-10-12 04:24:32 +08:00
|
|
|
|
/* Exception frame information which we may be able to optimize. */
|
2000-11-30 05:42:41 +08:00
|
|
|
|
rs_cfa,
|
|
|
|
|
|
|
|
|
|
/* Cross-fragment dwarf2 line number optimization. */
|
gas: generate .sframe from CFI directives
Currently supported for x86_64 and aarch64 only.
[PS: Currently, the compiler has not been adapted to generate
".cfi_sections" with ".sframe" in it. The newly added command line
option of --gsframe provides an easy way to try out .sframe support
in the toolchain.]
gas interprets the CFI directives to generate DWARF-based .eh_frame
info. These internal DWARF structures are now consumed by
gen-sframe.[ch] sub-system to, in turn, create the SFrame unwind
information. These internal DWARF structures are read-only for the
purpose of SFrame unwind info generation.
SFrame unwind info generation does not impact .eh_frame unwind info
generation. Both .eh_frame and .sframe can co-exist in an ELF file,
if so desired by the user.
Recall that SFrame unwind information only contains the minimal
necessary information to generate backtraces and does not provide
information to recover all callee-saved registers. The reason being
that callee-saved registers other than FP are not needed for stack
unwinding, and hence are not included in the .sframe section.
Consequently, gen-sframe.[ch] only needs to interpret a subset of
DWARF opcodes in gas. More details follow.
[Set 1, Interpreted] The following opcodes are interpreted:
- DW_CFA_advance_loc
- DW_CFA_def_cfa
- DW_CFA_def_cfa_register
- DW_CFA_def_cfa_offset
- DW_CFA_offset
- DW_CFA_remember_state
- DW_CFA_restore_state
- DW_CFA_restore
[Set 2, Bypassed] The following opcodes are acknowledged but are not
necessary for generating SFrame unwind info:
- DW_CFA_undefined
- DW_CFA_same_value
Anything else apart from the two above-mentioned sets is skipped
altogether. This means that any function containing a CFI directive not
in Set 1 or Set 2 above, will not have any SFrame unwind information
generated for them. Holes in instructions covered by FREs of a single
FDE are not representable in the SFrame unwind format.
As few examples, following opcodes are not processed for .sframe
generation, and are skipped:
- .cfi_personality*
- .cfi_*lsda
- .cfi_escape
- .cfi_negate_ra_state
- ...
Not processing .cfi_escape, .cfi_negate_ra_state will cause SFrame
unwind information to be absent for SFrame FDEs that contain these CFI
directives, hence affecting the asynchronicity.
x86-64 and aarch64 backends need to have a few new definitions and
functions for .sframe generation. These provide gas with architecture
specific information like the SP/FP/RA register numbers and an
SFrame-specific ABI marker.
Lastly, the patch also implements an optimization for size, where
specific fragments containing SFrame FRE start address and SFrame FDE
function are fixed up. This is similar to other similar optimizations
in gas, where fragments are sized and fixed up when the associated
symbols can be resolved. This optimization is controlled by a #define
SFRAME_FRE_TYPE_SELECTION_OPT and should be easy to turn off if needed.
The optimization is on by default for both x86_64 and aarch64.
ChangeLog:
* gas/Makefile.am: Include gen-sframe.c and sframe-opt.c.
* gas/Makefile.in: Regenerated.
* gas/as.h (enum _relax_state): Add new state rs_sframe.
(sframe_estimate_size_before_relax): New function.
(sframe_relax_frag): Likewise.
(sframe_convert_frag): Likewise.
* gas/config/tc-aarch64.c (aarch64_support_sframe_p): New
definition.
(aarch64_sframe_ra_tracking_p): Likewise.
(aarch64_sframe_cfa_ra_offset): Likewise.
(aarch64_sframe_get_abi_arch): Likewise.
(md_begin): Set values of sp/fp/ra registers.
* gas/config/tc-aarch64.h (aarch64_support_sframe_p): New
declaration.
(support_sframe_p): Likewise.
(SFRAME_CFA_SP_REG): Likewise.
(SFRAME_CFA_FP_REG): Likewise.
(SFRAME_CFA_RA_REG): Likewise.
(aarch64_sframe_ra_tracking_p): Likewise.
(sframe_ra_tracking_p): Likewise.
(aarch64_sframe_cfa_ra_offset): Likewise.
(sframe_cfa_ra_offset): Likewise.
(aarch64_sframe_get_abi_arch): Likewise.
(sframe_get_abi_arch): Likewise.
* gas/config/tc-i386.c (x86_support_sframe_p): New definition.
(x86_sframe_ra_tracking_p): Likewise.
(x86_sframe_cfa_ra_offset): Likewise.
(x86_sframe_get_abi_arch): Likewise.
* gas/config/tc-i386.h (x86_support_sframe_p): New declaration.
(support_sframe_p): Likewise.
(SFRAME_CFA_SP_REG): Likewise.
(SFRAME_CFA_FP_REG): Likewise.
(x86_sframe_ra_tracking_p): Likewise.
(sframe_ra_tracking_p): Likewise.
(x86_sframe_cfa_ra_offset): Likewise.
(sframe_cfa_ra_offset): Likewise.
(x86_sframe_get_abi_arch): Likewise.
(sframe_get_abi_arch): Likewise.
* gas/config/tc-xtensa.c (unrelaxed_frag_max_size): Add case for
rs_sframe.
* gas/doc/as.texi: Add .sframe to the documentation for
.cfi_sections.
* gas/dw2gencfi.c (cfi_finish): Create a .sframe section.
* gas/dw2gencfi.h (CFI_EMIT_sframe): New definition.
* gas/write.c (cvt_frag_to_fill): Handle rs_sframe.
(relax_segment): Likewise.
* gas/gen-sframe.c: New file.
* gas/gen-sframe.h: New file.
* gas/sframe-opt.c: New file.
2022-11-16 07:06:46 +08:00
|
|
|
|
rs_dwarf2dbg,
|
|
|
|
|
|
|
|
|
|
/* SFrame FRE type selection optimization. */
|
|
|
|
|
rs_sframe
|
2000-10-12 04:24:32 +08:00
|
|
|
|
};
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
typedef enum _relax_state relax_stateT;
|
|
|
|
|
|
|
|
|
|
/* This type is used in prototypes, so it can't be a type that will be
|
|
|
|
|
widened for argument passing. */
|
|
|
|
|
typedef unsigned int relax_substateT;
|
|
|
|
|
|
|
|
|
|
/* Enough bits for address, but still an integer type.
|
|
|
|
|
Could be a problem, cross-assembling for 64-bit machines. */
|
|
|
|
|
typedef addressT relax_addressT;
|
2005-02-17 21:46:05 +08:00
|
|
|
|
|
|
|
|
|
struct relax_type
|
|
|
|
|
{
|
|
|
|
|
/* Forward reach. Signed number. > 0. */
|
|
|
|
|
offsetT rlx_forward;
|
|
|
|
|
/* Backward reach. Signed number. < 0. */
|
|
|
|
|
offsetT rlx_backward;
|
|
|
|
|
|
|
|
|
|
/* Bytes length of this address. */
|
|
|
|
|
unsigned char rlx_length;
|
|
|
|
|
|
|
|
|
|
/* Next longer relax-state. 0 means there is no 'next' relax-state. */
|
|
|
|
|
relax_substateT rlx_more;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef struct relax_type relax_typeS;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2004-08-17 20:19:58 +08:00
|
|
|
|
/* main program "as.c" (command arguments etc). */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
COMMON unsigned char flag_no_comments; /* -f */
|
|
|
|
|
COMMON unsigned char flag_debug; /* -D */
|
|
|
|
|
COMMON unsigned char flag_signed_overflow_ok; /* -J */
|
|
|
|
|
#ifndef WORKING_DOT_WORD
|
|
|
|
|
COMMON unsigned char flag_warn_displacement; /* -K */
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* True if local symbols should be retained. */
|
|
|
|
|
COMMON int flag_keep_locals; /* -L */
|
|
|
|
|
|
|
|
|
|
/* True if we are assembling in MRI mode. */
|
|
|
|
|
COMMON int flag_mri;
|
|
|
|
|
|
2023-03-17 17:06:18 +08:00
|
|
|
|
/* True if alternate macro mode is in effect. */
|
|
|
|
|
COMMON bool flag_macro_alternate;
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
/* Should the data section be made read-only and appended to the text
|
|
|
|
|
section? */
|
|
|
|
|
COMMON unsigned char flag_readonly_data_in_text; /* -R */
|
|
|
|
|
|
|
|
|
|
/* True if warnings should be inhibited. */
|
|
|
|
|
COMMON int flag_no_warnings; /* -W */
|
|
|
|
|
|
1999-10-11 12:07:10 +08:00
|
|
|
|
/* True if warnings count as errors. */
|
|
|
|
|
COMMON int flag_fatal_warnings; /* --fatal-warnings */
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
/* True if we should attempt to generate output even if non-fatal errors
|
|
|
|
|
are detected. */
|
|
|
|
|
COMMON unsigned char flag_always_generate_output; /* -Z */
|
|
|
|
|
|
gas: add new command line option --scfi=experimental
When the command line option --scfi=experimenta is passed to the GNU
assembler, it will synthesize DWARF call frame information (CFI) for the
input assembly.
The option --scfi=experimental will also ignore most of the existing
.cfi_* directives, if already contained in the provided input file.
Only the following CFI directives will not be ignored:
- .cfi_sections,
- .cfi_label,
- .cfi_signal_frame
To use SCFI, a target will need to:
- define TARGET_USE_SCFI and TARGET_USE_GINSN, and other necessary
definitions,
- provide means to help GAS understand the target specific instruction
semantics by creating ginsns.
The upcoming support for SCFI is inteded to be experimental, hence the
option --scfi=experimental. The --scfi= may see more options like
--scfi=[all,none] added in future, once the SCFI support in GAS is
mature and robust. The offering may also see for example, an
--scfi=inline option for dealing with inline asm may be added in the
future. In --scfi=inline option, the GNU assembler may consume (and not
ignore) the compiler generated CFI for the code surrounding the inline
asm.
Also document the option.
gas/
* as.c (show_usage): Add support for --scfi=experimental.
(parse_args): Likewise.
* as.h (enum synth_cfi_type): Define new type.
* doc/as.texi: Document the new option.
2024-01-15 17:00:13 +08:00
|
|
|
|
enum synth_cfi_type
|
|
|
|
|
{
|
|
|
|
|
SYNTH_CFI_NONE = 0,
|
|
|
|
|
SYNTH_CFI_EXPERIMENTAL,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
COMMON enum synth_cfi_type flag_synth_cfi;
|
|
|
|
|
|
2000-09-13 04:57:14 +08:00
|
|
|
|
/* This is true if the assembler should output time and space usage. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
COMMON unsigned char flag_print_statistics;
|
|
|
|
|
|
|
|
|
|
/* True if local absolute symbols are to be stripped. */
|
|
|
|
|
COMMON int flag_strip_local_absolute;
|
|
|
|
|
|
|
|
|
|
/* True if we should generate a traditional format object file. */
|
|
|
|
|
COMMON int flag_traditional_format;
|
|
|
|
|
|
2015-04-08 22:53:54 +08:00
|
|
|
|
/* Type of compressed debug sections we should generate. */
|
|
|
|
|
COMMON enum compressed_debug_section_type flag_compress_debug;
|
2010-07-04 04:52:24 +08:00
|
|
|
|
|
2003-06-05 00:54:45 +08:00
|
|
|
|
/* TRUE if .note.GNU-stack section with SEC_CODE should be created */
|
|
|
|
|
COMMON int flag_execstack;
|
|
|
|
|
|
|
|
|
|
/* TRUE if .note.GNU-stack section with SEC_CODE should be created */
|
|
|
|
|
COMMON int flag_noexecstack;
|
|
|
|
|
|
2022-11-16 07:06:39 +08:00
|
|
|
|
/* TRUE if .sframe section should be created. */
|
|
|
|
|
COMMON int flag_gen_sframe;
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
/* name of emitted object file */
|
2016-02-26 00:55:21 +08:00
|
|
|
|
COMMON const char *out_file_name;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2022-07-07 18:26:10 +08:00
|
|
|
|
/* Keep the output file. */
|
|
|
|
|
COMMON int keep_it;
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
/* name of file defining extensions to the basic instruction set */
|
|
|
|
|
COMMON char *insttbl_file_name;
|
|
|
|
|
|
2000-09-13 04:57:14 +08:00
|
|
|
|
/* TRUE if we need a second pass. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
COMMON int need_pass_2;
|
|
|
|
|
|
|
|
|
|
/* TRUE if we should do no relaxing, and
|
|
|
|
|
leave lots of padding. */
|
|
|
|
|
COMMON int linkrelax;
|
|
|
|
|
|
2016-06-27 20:49:09 +08:00
|
|
|
|
COMMON int do_not_pad_sections_to_alignment;
|
|
|
|
|
|
2021-11-19 00:48:19 +08:00
|
|
|
|
enum multibyte_input_handling
|
|
|
|
|
{
|
|
|
|
|
multibyte_allow = 0,
|
|
|
|
|
multibyte_warn,
|
|
|
|
|
multibyte_warn_syms
|
|
|
|
|
};
|
|
|
|
|
COMMON enum multibyte_input_handling multibyte_handling;
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
/* TRUE if we should produce a listing. */
|
|
|
|
|
extern int listing;
|
|
|
|
|
|
2000-11-17 16:47:52 +08:00
|
|
|
|
/* Type of debugging information we should generate. We currently support
|
|
|
|
|
stabs, ECOFF, and DWARF2.
|
|
|
|
|
|
|
|
|
|
NOTE! This means debug information about the assembly source code itself
|
|
|
|
|
and _not_ about possible debug information from a high-level language.
|
|
|
|
|
This is especially relevant to DWARF2, since the compiler may emit line
|
|
|
|
|
number directives that the assembler resolves. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2004-08-17 20:19:58 +08:00
|
|
|
|
enum debug_info_type
|
|
|
|
|
{
|
2000-10-12 04:24:32 +08:00
|
|
|
|
DEBUG_UNSPECIFIED,
|
|
|
|
|
DEBUG_NONE,
|
|
|
|
|
DEBUG_STABS,
|
|
|
|
|
DEBUG_ECOFF,
|
|
|
|
|
DEBUG_DWARF,
|
2022-11-23 10:22:48 +08:00
|
|
|
|
DEBUG_DWARF2,
|
|
|
|
|
DEBUG_CODEVIEW
|
2000-10-12 04:24:32 +08:00
|
|
|
|
};
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
extern enum debug_info_type debug_type;
|
2003-10-08 22:37:20 +08:00
|
|
|
|
extern int use_gnu_debug_info_extensions;
|
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 08:12:05 +08:00
|
|
|
|
COMMON bool flag_dwarf_sections;
|
2019-11-04 20:27:45 +08:00
|
|
|
|
extern int flag_dwarf_cie_version;
|
2020-03-06 22:52:14 +08:00
|
|
|
|
extern unsigned int dwarf_level;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
/* Maximum level of macro nesting. */
|
|
|
|
|
extern int max_macro_nest;
|
|
|
|
|
|
2003-05-20 15:58:07 +08:00
|
|
|
|
/* Verbosity level. */
|
|
|
|
|
extern int verbose;
|
|
|
|
|
|
2022-07-06 07:50:09 +08:00
|
|
|
|
struct obstack;
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
/* Obstack chunk size. Keep large for efficient space use, make small to
|
|
|
|
|
increase malloc calls for monitoring memory allocation. */
|
|
|
|
|
extern int chunksize;
|
|
|
|
|
|
2004-08-17 20:19:58 +08:00
|
|
|
|
struct _pseudo_type
|
|
|
|
|
{
|
2000-10-12 04:24:32 +08:00
|
|
|
|
/* assembler mnemonic, lower case, no '.' */
|
|
|
|
|
const char *poc_name;
|
|
|
|
|
/* Do the work */
|
2003-11-21 09:52:16 +08:00
|
|
|
|
void (*poc_handler) (int);
|
2000-10-12 04:24:32 +08:00
|
|
|
|
/* Value to pass to handler */
|
|
|
|
|
int poc_val;
|
|
|
|
|
};
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
typedef struct _pseudo_type pseudo_typeS;
|
|
|
|
|
|
|
|
|
|
#if (__GNUC__ >= 2) && !defined(VMS)
|
|
|
|
|
/* for use with -Wformat */
|
|
|
|
|
|
2000-04-29 08:56:29 +08:00
|
|
|
|
#if __GNUC__ == 2 && __GNUC_MINOR__ < 6
|
1999-05-03 15:29:11 +08:00
|
|
|
|
/* Support for double underscores in attribute names was added in gcc
|
|
|
|
|
2.6, so avoid them if we are using an earlier version. */
|
|
|
|
|
#define __printf__ printf
|
|
|
|
|
#define __format__ format
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#define PRINTF_LIKE(FCN) \
|
|
|
|
|
void FCN (const char *format, ...) \
|
|
|
|
|
__attribute__ ((__format__ (__printf__, 1, 2)))
|
|
|
|
|
#define PRINTF_WHERE_LIKE(FCN) \
|
2016-02-22 22:11:27 +08:00
|
|
|
|
void FCN (const char *file, unsigned int line, const char *format, ...) \
|
1999-05-03 15:29:11 +08:00
|
|
|
|
__attribute__ ((__format__ (__printf__, 3, 4)))
|
2022-12-13 16:11:53 +08:00
|
|
|
|
#define PRINTF_INDENT_LIKE(FCN) \
|
|
|
|
|
void FCN (const char *file, unsigned int line, unsigned int indent, \
|
|
|
|
|
const char *format, ...) \
|
|
|
|
|
__attribute__ ((__format__ (__printf__, 4, 5)))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
#else /* __GNUC__ < 2 || defined(VMS) */
|
|
|
|
|
|
2003-11-21 09:52:16 +08:00
|
|
|
|
#define PRINTF_LIKE(FCN) void FCN (const char *format, ...)
|
2016-02-22 22:11:27 +08:00
|
|
|
|
#define PRINTF_WHERE_LIKE(FCN) void FCN (const char *file, \
|
2003-11-21 09:52:16 +08:00
|
|
|
|
unsigned int line, \
|
|
|
|
|
const char *format, ...)
|
2022-12-13 16:11:53 +08:00
|
|
|
|
#define PRINTF_INDENT_LIKE(FCN) void FCN (const char *file, \
|
|
|
|
|
unsigned int line, \
|
|
|
|
|
unsigned int indent, \
|
|
|
|
|
const char *format, ...)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
#endif /* __GNUC__ < 2 || defined(VMS) */
|
|
|
|
|
|
|
|
|
|
PRINTF_LIKE (as_bad);
|
2000-05-08 18:24:06 +08:00
|
|
|
|
PRINTF_LIKE (as_fatal) ATTRIBUTE_NORETURN;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
PRINTF_LIKE (as_tsktsk);
|
|
|
|
|
PRINTF_LIKE (as_warn);
|
|
|
|
|
PRINTF_WHERE_LIKE (as_bad_where);
|
|
|
|
|
PRINTF_WHERE_LIKE (as_warn_where);
|
2022-12-13 16:11:53 +08:00
|
|
|
|
PRINTF_INDENT_LIKE (as_info_where);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2004-08-17 20:19:58 +08:00
|
|
|
|
void as_abort (const char *, int, const char *) ATTRIBUTE_NORETURN;
|
2017-01-18 21:23:10 +08:00
|
|
|
|
void signal_init (void);
|
2004-08-17 20:19:58 +08:00
|
|
|
|
int had_errors (void);
|
|
|
|
|
int had_warnings (void);
|
2016-04-01 20:07:50 +08:00
|
|
|
|
void as_warn_value_out_of_range (const char *, offsetT, offsetT, offsetT,
|
2016-02-22 22:11:27 +08:00
|
|
|
|
const char *, unsigned);
|
2016-04-01 20:07:50 +08:00
|
|
|
|
void as_bad_value_out_of_range (const char *, offsetT, offsetT, offsetT,
|
2016-02-22 22:11:27 +08:00
|
|
|
|
const char *, unsigned);
|
2004-08-17 20:19:58 +08:00
|
|
|
|
void print_version_id (void);
|
|
|
|
|
char * app_push (void);
|
2019-05-10 23:57:31 +08:00
|
|
|
|
|
|
|
|
|
/* Number of littlenums required to hold an extended precision number. */
|
|
|
|
|
#define MAX_LITTLENUMS 6
|
|
|
|
|
|
2004-08-17 20:19:58 +08:00
|
|
|
|
char * atof_ieee (char *, int, LITTLENUM_TYPE *);
|
2019-11-08 01:01:04 +08:00
|
|
|
|
char * atof_ieee_detail (char *, int, int, LITTLENUM_TYPE *, FLONUM_TYPE *);
|
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 08:12:05 +08:00
|
|
|
|
const char * ieee_md_atof (int, char *, int *, bool);
|
2016-04-01 20:07:50 +08:00
|
|
|
|
const char * vax_md_atof (int, char *, int *);
|
2016-02-22 22:11:27 +08:00
|
|
|
|
char * input_scrub_include_file (const char *, char *);
|
2004-08-17 20:19:58 +08:00
|
|
|
|
void input_scrub_insert_line (const char *);
|
|
|
|
|
void input_scrub_insert_file (char *);
|
2016-02-22 22:11:27 +08:00
|
|
|
|
char * input_scrub_new_file (const char *);
|
2004-08-17 20:19:58 +08:00
|
|
|
|
char * input_scrub_next_buffer (char **bufp);
|
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 20:47:23 +08:00
|
|
|
|
size_t do_scrub_chars (size_t (*get) (char *, size_t), char *, size_t);
|
2022-08-11 08:21:03 +08:00
|
|
|
|
size_t do_scrub_pending (void);
|
2021-11-19 00:48:19 +08:00
|
|
|
|
bool scan_for_multibyte_characters (const unsigned char *, const unsigned char *, bool);
|
2004-08-17 20:19:58 +08:00
|
|
|
|
int gen_to_words (LITTLENUM_TYPE *, int, long);
|
|
|
|
|
int had_err (void);
|
|
|
|
|
int ignore_input (void);
|
|
|
|
|
void cond_finish_check (int);
|
|
|
|
|
void cond_exit_macro (int);
|
|
|
|
|
int seen_at_least_1_file (void);
|
|
|
|
|
void app_pop (char *);
|
2022-12-13 16:11:53 +08:00
|
|
|
|
void as_report_context (void);
|
2016-02-22 22:11:27 +08:00
|
|
|
|
const char * as_where (unsigned int *);
|
2022-12-13 16:11:53 +08:00
|
|
|
|
const char * as_where_top (unsigned int *);
|
2017-10-11 23:48:16 +08:00
|
|
|
|
const char * as_where_physical (unsigned int *);
|
2004-08-17 20:19:58 +08:00
|
|
|
|
void bump_line_counters (void);
|
|
|
|
|
void do_scrub_begin (int);
|
|
|
|
|
void input_scrub_begin (void);
|
|
|
|
|
void input_scrub_close (void);
|
|
|
|
|
void input_scrub_end (void);
|
2022-04-12 15:04:42 +08:00
|
|
|
|
void new_logical_line (const char *, int);
|
|
|
|
|
void new_logical_line_flags (const char *, int, int);
|
2004-08-17 20:19:58 +08:00
|
|
|
|
void subsegs_begin (void);
|
2022-07-04 11:15:47 +08:00
|
|
|
|
void subsegs_end (struct obstack **);
|
2004-08-17 20:19:58 +08:00
|
|
|
|
void subseg_change (segT, int);
|
|
|
|
|
segT subseg_new (const char *, subsegT);
|
|
|
|
|
segT subseg_force_new (const char *, subsegT);
|
|
|
|
|
void subseg_set (segT, subsegT);
|
|
|
|
|
int subseg_text_p (segT);
|
2005-02-08 01:53:26 +08:00
|
|
|
|
int seg_not_empty_p (segT);
|
2004-08-17 20:19:58 +08:00
|
|
|
|
void start_dependencies (char *);
|
2016-02-22 22:11:27 +08:00
|
|
|
|
void register_dependency (const char *);
|
2004-08-17 20:19:58 +08:00
|
|
|
|
void print_dependencies (void);
|
|
|
|
|
segT subseg_get (const char *, int);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2022-06-09 18:23:44 +08:00
|
|
|
|
char *remap_debug_filename (const char *);
|
2007-08-25 05:49:55 +08:00
|
|
|
|
void add_debug_prefix_map (const char *);
|
|
|
|
|
|
2016-03-28 17:49:15 +08:00
|
|
|
|
static inline char *
|
|
|
|
|
xmemdup0 (const char *in, size_t len)
|
2016-04-27 14:12:50 +08:00
|
|
|
|
{
|
2021-11-03 13:51:42 +08:00
|
|
|
|
return xmemdup (in, len, len + 1);
|
2016-04-27 14:12:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
struct expressionS;
|
|
|
|
|
struct fix;
|
1999-06-03 08:24:14 +08:00
|
|
|
|
typedef struct symbol symbolS;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
typedef struct frag fragS;
|
|
|
|
|
|
|
|
|
|
/* literal.c */
|
2003-11-21 09:52:16 +08:00
|
|
|
|
valueT add_to_literal_pool (symbolS *, valueT, segT, int);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2003-11-21 09:52:16 +08:00
|
|
|
|
int check_eh_frame (struct expressionS *, unsigned int *);
|
|
|
|
|
int eh_frame_estimate_size_before_relax (fragS *);
|
|
|
|
|
int eh_frame_relax_frag (fragS *);
|
|
|
|
|
void eh_frame_convert_frag (fragS *);
|
2023-03-10 07:35:44 +08:00
|
|
|
|
void eh_begin (void);
|
2003-11-21 09:52:16 +08:00
|
|
|
|
int generic_force_reloc (struct fix *);
|
2003-01-23 20:51:05 +08:00
|
|
|
|
|
gas: generate .sframe from CFI directives
Currently supported for x86_64 and aarch64 only.
[PS: Currently, the compiler has not been adapted to generate
".cfi_sections" with ".sframe" in it. The newly added command line
option of --gsframe provides an easy way to try out .sframe support
in the toolchain.]
gas interprets the CFI directives to generate DWARF-based .eh_frame
info. These internal DWARF structures are now consumed by
gen-sframe.[ch] sub-system to, in turn, create the SFrame unwind
information. These internal DWARF structures are read-only for the
purpose of SFrame unwind info generation.
SFrame unwind info generation does not impact .eh_frame unwind info
generation. Both .eh_frame and .sframe can co-exist in an ELF file,
if so desired by the user.
Recall that SFrame unwind information only contains the minimal
necessary information to generate backtraces and does not provide
information to recover all callee-saved registers. The reason being
that callee-saved registers other than FP are not needed for stack
unwinding, and hence are not included in the .sframe section.
Consequently, gen-sframe.[ch] only needs to interpret a subset of
DWARF opcodes in gas. More details follow.
[Set 1, Interpreted] The following opcodes are interpreted:
- DW_CFA_advance_loc
- DW_CFA_def_cfa
- DW_CFA_def_cfa_register
- DW_CFA_def_cfa_offset
- DW_CFA_offset
- DW_CFA_remember_state
- DW_CFA_restore_state
- DW_CFA_restore
[Set 2, Bypassed] The following opcodes are acknowledged but are not
necessary for generating SFrame unwind info:
- DW_CFA_undefined
- DW_CFA_same_value
Anything else apart from the two above-mentioned sets is skipped
altogether. This means that any function containing a CFI directive not
in Set 1 or Set 2 above, will not have any SFrame unwind information
generated for them. Holes in instructions covered by FREs of a single
FDE are not representable in the SFrame unwind format.
As few examples, following opcodes are not processed for .sframe
generation, and are skipped:
- .cfi_personality*
- .cfi_*lsda
- .cfi_escape
- .cfi_negate_ra_state
- ...
Not processing .cfi_escape, .cfi_negate_ra_state will cause SFrame
unwind information to be absent for SFrame FDEs that contain these CFI
directives, hence affecting the asynchronicity.
x86-64 and aarch64 backends need to have a few new definitions and
functions for .sframe generation. These provide gas with architecture
specific information like the SP/FP/RA register numbers and an
SFrame-specific ABI marker.
Lastly, the patch also implements an optimization for size, where
specific fragments containing SFrame FRE start address and SFrame FDE
function are fixed up. This is similar to other similar optimizations
in gas, where fragments are sized and fixed up when the associated
symbols can be resolved. This optimization is controlled by a #define
SFRAME_FRE_TYPE_SELECTION_OPT and should be easy to turn off if needed.
The optimization is on by default for both x86_64 and aarch64.
ChangeLog:
* gas/Makefile.am: Include gen-sframe.c and sframe-opt.c.
* gas/Makefile.in: Regenerated.
* gas/as.h (enum _relax_state): Add new state rs_sframe.
(sframe_estimate_size_before_relax): New function.
(sframe_relax_frag): Likewise.
(sframe_convert_frag): Likewise.
* gas/config/tc-aarch64.c (aarch64_support_sframe_p): New
definition.
(aarch64_sframe_ra_tracking_p): Likewise.
(aarch64_sframe_cfa_ra_offset): Likewise.
(aarch64_sframe_get_abi_arch): Likewise.
(md_begin): Set values of sp/fp/ra registers.
* gas/config/tc-aarch64.h (aarch64_support_sframe_p): New
declaration.
(support_sframe_p): Likewise.
(SFRAME_CFA_SP_REG): Likewise.
(SFRAME_CFA_FP_REG): Likewise.
(SFRAME_CFA_RA_REG): Likewise.
(aarch64_sframe_ra_tracking_p): Likewise.
(sframe_ra_tracking_p): Likewise.
(aarch64_sframe_cfa_ra_offset): Likewise.
(sframe_cfa_ra_offset): Likewise.
(aarch64_sframe_get_abi_arch): Likewise.
(sframe_get_abi_arch): Likewise.
* gas/config/tc-i386.c (x86_support_sframe_p): New definition.
(x86_sframe_ra_tracking_p): Likewise.
(x86_sframe_cfa_ra_offset): Likewise.
(x86_sframe_get_abi_arch): Likewise.
* gas/config/tc-i386.h (x86_support_sframe_p): New declaration.
(support_sframe_p): Likewise.
(SFRAME_CFA_SP_REG): Likewise.
(SFRAME_CFA_FP_REG): Likewise.
(x86_sframe_ra_tracking_p): Likewise.
(sframe_ra_tracking_p): Likewise.
(x86_sframe_cfa_ra_offset): Likewise.
(sframe_cfa_ra_offset): Likewise.
(x86_sframe_get_abi_arch): Likewise.
(sframe_get_abi_arch): Likewise.
* gas/config/tc-xtensa.c (unrelaxed_frag_max_size): Add case for
rs_sframe.
* gas/doc/as.texi: Add .sframe to the documentation for
.cfi_sections.
* gas/dw2gencfi.c (cfi_finish): Create a .sframe section.
* gas/dw2gencfi.h (CFI_EMIT_sframe): New definition.
* gas/write.c (cvt_frag_to_fill): Handle rs_sframe.
(relax_segment): Likewise.
* gas/gen-sframe.c: New file.
* gas/gen-sframe.h: New file.
* gas/sframe-opt.c: New file.
2022-11-16 07:06:46 +08:00
|
|
|
|
/* SFrame FRE optimization. */
|
|
|
|
|
int sframe_estimate_size_before_relax (fragS *);
|
|
|
|
|
int sframe_relax_frag (fragS *);
|
|
|
|
|
void sframe_convert_frag (fragS *);
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#include "expr.h" /* Before targ-*.h */
|
|
|
|
|
|
2016-11-26 04:01:41 +08:00
|
|
|
|
/* This one starts the chain of target dependent headers. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#include "targ-env.h"
|
|
|
|
|
|
2002-09-05 08:01:18 +08:00
|
|
|
|
#ifdef OBJ_MAYBE_ELF
|
|
|
|
|
#define IS_ELF (OUTPUT_FLAVOR == bfd_target_elf_flavour)
|
|
|
|
|
#else
|
|
|
|
|
#ifdef OBJ_ELF
|
|
|
|
|
#define IS_ELF 1
|
|
|
|
|
#else
|
|
|
|
|
#define IS_ELF 0
|
|
|
|
|
#endif
|
2001-01-12 05:20:20 +08:00
|
|
|
|
#endif
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#include "write.h"
|
|
|
|
|
#include "frags.h"
|
|
|
|
|
#include "read.h"
|
|
|
|
|
#include "symbols.h"
|
2022-07-07 07:19:09 +08:00
|
|
|
|
#include "hashtab.h"
|
|
|
|
|
#include "hash.h"
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
#include "tc.h"
|
|
|
|
|
#include "obj.h"
|
|
|
|
|
|
|
|
|
|
#ifdef USE_EMULATIONS
|
|
|
|
|
#include "emul.h"
|
|
|
|
|
#endif
|
|
|
|
|
#include "listing.h"
|
|
|
|
|
|
2008-07-19 06:25:07 +08:00
|
|
|
|
#ifdef H_TICK_HEX
|
|
|
|
|
extern int enable_h_tick_hex;
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-02-24 09:56:31 +08:00
|
|
|
|
#ifdef TC_M68K
|
|
|
|
|
/* True if we are assembling in m68k MRI mode. */
|
|
|
|
|
COMMON int flag_m68k_mri;
|
2005-11-08 23:48:26 +08:00
|
|
|
|
#define DOLLAR_AMBIGU flag_m68k_mri
|
2000-02-24 09:56:31 +08:00
|
|
|
|
#else
|
|
|
|
|
#define flag_m68k_mri 0
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-01-04 00:23:19 +08:00
|
|
|
|
#ifndef TC_STRING_ESCAPES
|
|
|
|
|
#define TC_STRING_ESCAPES 1
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-07-28 13:05:20 +08:00
|
|
|
|
#ifdef WARN_COMMENTS
|
2004-08-17 20:19:58 +08:00
|
|
|
|
COMMON int warn_comment;
|
|
|
|
|
COMMON unsigned int found_comment;
|
2016-02-22 22:11:27 +08:00
|
|
|
|
COMMON const char * found_comment_file;
|
2000-07-28 13:05:20 +08:00
|
|
|
|
#endif
|
|
|
|
|
|
2011-03-16 20:58:26 +08:00
|
|
|
|
#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
|
|
|
|
|
/* If .size directive failure should be error or warning. */
|
2016-03-26 03:43:13 +08:00
|
|
|
|
COMMON int flag_allow_nonconst_size;
|
2015-06-10 11:06:29 +08: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-23 01:18:52 +08:00
|
|
|
|
/* If we should generate ELF common symbols with the STT_COMMON type. */
|
|
|
|
|
extern int flag_use_elf_stt_common;
|
|
|
|
|
|
2018-04-26 22:12:42 +08:00
|
|
|
|
/* TRUE iff GNU Build attribute notes should
|
|
|
|
|
be generated if none are in the input files. */
|
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 08:12:05 +08:00
|
|
|
|
extern bool flag_generate_build_notes;
|
2018-04-26 22:12:42 +08:00
|
|
|
|
|
2015-06-10 11:06:29 +08:00
|
|
|
|
/* If section name substitution sequences should be honored */
|
|
|
|
|
COMMON int flag_sectname_subst;
|
2011-03-16 20:58:26 +08:00
|
|
|
|
#endif
|
|
|
|
|
|
2005-11-08 23:48:26 +08:00
|
|
|
|
#ifndef DOLLAR_AMBIGU
|
|
|
|
|
#define DOLLAR_AMBIGU 0
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-02-08 22:21:53 +08:00
|
|
|
|
#ifndef NUMBERS_WITH_SUFFIX
|
|
|
|
|
#define NUMBERS_WITH_SUFFIX 0
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#ifndef LOCAL_LABELS_DOLLAR
|
|
|
|
|
#define LOCAL_LABELS_DOLLAR 0
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef LOCAL_LABELS_FB
|
|
|
|
|
#define LOCAL_LABELS_FB 0
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-02-24 09:56:31 +08:00
|
|
|
|
#ifndef LABELS_WITHOUT_COLONS
|
|
|
|
|
#define LABELS_WITHOUT_COLONS 0
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef NO_PSEUDO_DOT
|
|
|
|
|
#define NO_PSEUDO_DOT 0
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#ifndef TEXT_SECTION_NAME
|
|
|
|
|
#define TEXT_SECTION_NAME ".text"
|
|
|
|
|
#define DATA_SECTION_NAME ".data"
|
|
|
|
|
#define BSS_SECTION_NAME ".bss"
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-02-04 02:20:23 +08:00
|
|
|
|
#ifndef OCTETS_PER_BYTE_POWER
|
|
|
|
|
#define OCTETS_PER_BYTE_POWER 0
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef OCTETS_PER_BYTE
|
|
|
|
|
#define OCTETS_PER_BYTE (1<<OCTETS_PER_BYTE_POWER)
|
|
|
|
|
#endif
|
|
|
|
|
#if OCTETS_PER_BYTE != (1<<OCTETS_PER_BYTE_POWER)
|
|
|
|
|
#error "Octets per byte conflicts with its power-of-two definition!"
|
|
|
|
|
#endif
|
|
|
|
|
|
Introduce new section flag: SEC_ELF_OCTETS
All symbols, sizes and relocations in this section are octets instead of
bytes. Required for DWARF debug sections as DWARF information is
organized in octets, not bytes.
bfd/
* section.c (struct bfd_section): New flag SEC_ELF_OCTETS.
* archures.c (bfd_octets_per_byte): New parameter sec.
If section is not NULL and SEC_ELF_OCTETS is set, one octet es
returned [ELF targets only].
* bfd.c (bfd_get_section_limit): Provide section parameter to
bfd_octets_per_byte.
* bfd-in2.h: regenerate.
* binary.c (binary_set_section_contents): Move call to
bfd_octets_per_byte into section loop. Provide section parameter
to bfd_octets_per_byte.
* coff-arm.c (coff_arm_reloc): Provide section parameter
to bfd_octets_per_byte.
* coff-i386.c (coff_i386_reloc): likewise.
* coff-mips.c (mips_reflo_reloc): likewise.
* coff-x86_64.c (coff_amd64_reloc): likewise.
* cofflink.c (_bfd_coff_link_input_bfd): likewise.
(_bfd_coff_reloc_link_order): likewise.
* elf.c (_bfd_elf_section_offset): likewise.
(_bfd_elf_make_section_from_shdr): likewise.
Set SEC_ELF_OCTETS for sections with names .gnu.build.attributes,
.debug*, .zdebug* and .note.gnu*.
* elf32-msp430.c (rl78_sym_diff_handler): Provide section parameter
to bfd_octets_per_byte.
* elf32-nds.c (nds32_elf_get_relocated_section_contents): likewise.
* elf32-ppc.c (ppc_elf_addr16_ha_reloc): likewise.
* elf32-pru.c (pru_elf32_do_ldi32_relocate): likewise.
* elf32-s12z.c (opru18_reloc): likewise.
* elf32-sh.c (sh_elf_reloc): likewise.
* elf32-spu.c (spu_elf_rel9): likewise.
* elf32-xtensa.c (bfd_elf_xtensa_reloc): likewise
* elf64-ppc.c (ppc64_elf_brtaken_reloc): likewise.
(ppc64_elf_addr16_ha_reloc): likewise.
(ppc64_elf_toc64_reloc): likewise.
* elflink.c (bfd_elf_final_link): likewise.
(bfd_elf_perform_complex_relocation): likewise.
(elf_fixup_link_order): likewise.
(elf_link_input_bfd): likewise.
(elf_link_sort_relocs): likewise.
(elf_reloc_link_order): likewise.
(resolve_section): likewise.
* linker.c (_bfd_generic_reloc_link_order): likewise.
(bfd_generic_define_common_symbol): likewise.
(default_data_link_order): likewise.
(default_indirect_link_order): likewise.
* srec.c (srec_set_section_contents): likewise.
(srec_write_section): likewise.
* syms.c (_bfd_stab_section_find_nearest_line): likewise.
* reloc.c (_bfd_final_link_relocate): likewise.
(bfd_generic_get_relocated_section_contents): likewise.
(bfd_install_relocation): likewise.
For section which have SEC_ELF_OCTETS set, multiply output_base
and output_offset with bfd_octets_per_byte.
(bfd_perform_relocation): likewise.
include/
* coff/ti.h (GET_SCNHDR_SIZE, PUT_SCNHDR_SIZE, GET_SCN_SCNLEN),
(PUT_SCN_SCNLEN): Adjust bfd_octets_per_byte calls.
binutils/
* objdump.c (disassemble_data): Provide section parameter to
bfd_octets_per_byte.
(dump_section): likewise
(dump_section_header): likewise. Show SEC_ELF_OCTETS flag if set.
gas/
* as.h: Define SEC_OCTETS as SEC_ELF_OCTETS if OBJ_ELF.
* dwarf2dbg.c: (dwarf2_finish): Set section flag SEC_OCTETS for
.debug_line, .debug_info, .debug_abbrev, .debug_aranges, .debug_str
and .debug_ranges sections.
* write.c (maybe_generate_build_notes): Set section flag
SEC_OCTETS for .gnu.build.attributes section.
* frags.c (frag_now_fix): Don't divide by OCTETS_PER_BYTE if
SEC_OCTETS is set.
* symbols.c (resolve_symbol_value): Likewise.
ld/
* ldexp.c (fold_name): Provide section parameter to
bfd_octets_per_byte.
* ldlang (init_opb): New argument s. Set opb_shift to 0 if
SEC_ELF_OCTETS for the current section is set.
(print_input_section): Pass current section to init_opb.
(print_data_statement,print_reloc_statement,
print_padding_statement): Likewise.
(lang_check_section_addresses): Call init_opb for each
section.
(lang_size_sections_1,lang_size_sections_1,
lang_do_assignments_1): Likewise.
(lang_process): Pass NULL to init_opb.
2019-11-22 05:17:29 +08:00
|
|
|
|
#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
|
|
|
|
|
/* On ELF platforms, mark debug sections with SEC_ELF_OCTETS */
|
|
|
|
|
#define SEC_OCTETS (IS_ELF ? SEC_ELF_OCTETS : 0)
|
|
|
|
|
#else
|
|
|
|
|
#define SEC_OCTETS 0
|
|
|
|
|
#endif
|
|
|
|
|
|
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 08:12:05 +08:00
|
|
|
|
#define POISON_BFD_BOOLEAN 1
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#endif /* GAS */
|