mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-06 12:09:26 +08:00
f38a2680c2
* sysdep.h (POISON_BFD_BOOLEAN): Define. * configure.ac (elf_list_options, elf_shlib_list_options=false), (elf_plt_unwind_list_options=false): Replace FALSE with false, and TRUE with true. * emulparams/call_nop.sh, * emulparams/cet.sh, * emulparams/dynamic_undefined_weak.sh, * emulparams/elf32b4300.sh, * emulparams/elf32lm32.sh, * emulparams/elf32lr5900.sh, * emulparams/elf32lr5900n32.sh, * emulparams/elf32visium.sh, * emulparams/elf_x86_64.sh, * emulparams/extern_protected_data.sh, * emulparams/plt_unwind.sh, * emulparams/reloc_overflow.sh, * emulparams/static.sh, * emulparams/x86-64-lam.sh, * emultempl/aarch64elf.em, * emultempl/aix.em, * emultempl/alphaelf.em, * emultempl/armcoff.em, * emultempl/armelf.em, * emultempl/avrelf.em, * emultempl/beos.em, * emultempl/bfin.em, * emultempl/cr16elf.em, * emultempl/crxelf.em, * emultempl/cskyelf.em, * emultempl/elf.em, * emultempl/genelf.em, * emultempl/hppaelf.em, * emultempl/linux.em, * emultempl/m68hc1xelf.em, * emultempl/metagelf.em, * emultempl/mipself.em, * emultempl/mmix-elfnmmo.em, * emultempl/mmixelf.em, * emultempl/mmo.em, * emultempl/msp430.em, * emultempl/nios2elf.em, * emultempl/pdp11.em, * emultempl/pe.em, * emultempl/pep.em, * emultempl/ppc32elf.em, * emultempl/ppc64elf.em, * emultempl/rxelf.em, * emultempl/rxlinux.em, * emultempl/scoreelf.em, * emultempl/solaris2.em, * emultempl/spuelf.em, * emultempl/ticoff.em, * emultempl/v850elf.em, * emultempl/vms.em, * emultempl/xtensaelf.em, * emultempl/z80.em, * ld.h, * ldbuildid.c, * ldbuildid.h, * ldcref.c, * ldctor.c, * ldctor.h, * ldelf.c, * ldelf.h, * ldelfgen.c, * ldelfgen.h, * ldemul.c, * ldemul.h, * ldexp.c, * ldexp.h, * ldfile.c, * ldfile.h, * ldgram.y, * ldlang.c, * ldlang.h, * ldmain.c, * ldmain.h, * ldmisc.c, * ldmisc.h, * ldwrite.c, * lexsup.c, * mri.c, * pe-dll.c, * pe-dll.h, * pep-dll.h, * plugin.c, * plugin.h, * testplug.c, * testplug2.c, * testplug3.c, * testplug4.c: Replace bfd_boolean with bool, FALSE with false, and TRUE with true. * configure: Regenerate.
159 lines
4.9 KiB
Plaintext
159 lines
4.9 KiB
Plaintext
# This shell script emits a C file. -*- C -*-
|
|
# Copyright (C) 2006-2021 Free Software Foundation, Inc.
|
|
#
|
|
# This file is part of the GNU Binutils.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
# MA 02110-1301, USA.
|
|
|
|
fragment <<EOF
|
|
|
|
/* --- \begin{pdp11.em} */
|
|
#include "getopt.h"
|
|
|
|
static void
|
|
gld${EMULATION_NAME}_before_parse (void)
|
|
{
|
|
ldfile_set_output_arch ("`echo ${ARCH}`", bfd_arch_unknown);
|
|
/* for PDP11 Unix compatibility, default to --omagic */
|
|
config.magic_demand_paged = false;
|
|
config.text_read_only = false;
|
|
}
|
|
|
|
/* PDP11 specific options. */
|
|
#define OPTION_IMAGIC 301
|
|
|
|
static void
|
|
gld${EMULATION_NAME}_add_options
|
|
(int ns ATTRIBUTE_UNUSED,
|
|
char **shortopts,
|
|
int nl,
|
|
struct option **longopts,
|
|
int nrl ATTRIBUTE_UNUSED,
|
|
struct option **really_longopts ATTRIBUTE_UNUSED)
|
|
{
|
|
static const char xtra_short[] = "z";
|
|
static const struct option xtra_long[] =
|
|
{
|
|
{"imagic", no_argument, NULL, OPTION_IMAGIC},
|
|
{NULL, no_argument, NULL, 0}
|
|
};
|
|
|
|
*shortopts = (char *) xrealloc (*shortopts, ns + sizeof (xtra_short));
|
|
memcpy (*shortopts + ns, &xtra_short, sizeof (xtra_short));
|
|
*longopts
|
|
= xrealloc (*longopts, nl * sizeof (struct option) + sizeof (xtra_long));
|
|
memcpy (*longopts + nl, &xtra_long, sizeof (xtra_long));
|
|
}
|
|
|
|
static void
|
|
gld${EMULATION_NAME}_list_options (FILE *file)
|
|
{
|
|
fprintf (file, _(" -N, --omagic Do not make text readonly, do not page align data (default)\n"));
|
|
fprintf (file, _(" -n, --nmagic Make text readonly, align data to next page\n"));
|
|
fprintf (file, _(" -z, --imagic Make text readonly, separate instruction and data spaces\n"));
|
|
fprintf (file, _(" --no-omagic Equivalent to --nmagic\n"));
|
|
}
|
|
|
|
static bool
|
|
gld${EMULATION_NAME}_handle_option (int optc)
|
|
{
|
|
switch (optc)
|
|
{
|
|
default:
|
|
return false;
|
|
|
|
case 'z':
|
|
case OPTION_IMAGIC:
|
|
link_info.separate_code = 1;
|
|
/* The --imagic format causes the .text and .data sections to occupy the
|
|
same memory addresses in separate spaces, so don't check overlap. */
|
|
command_line.check_section_addresses = 0;
|
|
break;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/* We need a special case to prepare an additional linker script for option
|
|
* --imagic where the .data section starts at address 0 rather than directly
|
|
* following the .text section or being aligned to the next page after the
|
|
* .text section. */
|
|
static char *
|
|
gld${EMULATION_NAME}_get_script (int *isfile)
|
|
EOF
|
|
|
|
if test x"$COMPILE_IN" = xyes
|
|
then
|
|
# Scripts compiled in.
|
|
|
|
# sed commands to quote an ld script as a C string.
|
|
sc="-f stringify.sed"
|
|
|
|
fragment <<EOF
|
|
{
|
|
*isfile = 0;
|
|
|
|
if (bfd_link_relocatable (&link_info) && config.build_constructors)
|
|
return
|
|
EOF
|
|
sed $sc ldscripts/${EMULATION_NAME}.xu >> e${EMULATION_NAME}.c
|
|
echo ' ; else if (bfd_link_relocatable (&link_info)) return' >> e${EMULATION_NAME}.c
|
|
sed $sc ldscripts/${EMULATION_NAME}.xr >> e${EMULATION_NAME}.c
|
|
echo ' ; else if (link_info.separate_code) return' >> e${EMULATION_NAME}.c
|
|
sed $sc ldscripts/${EMULATION_NAME}.xe >> e${EMULATION_NAME}.c
|
|
echo ' ; else if (!config.text_read_only) return' >> e${EMULATION_NAME}.c
|
|
sed $sc ldscripts/${EMULATION_NAME}.xbn >> e${EMULATION_NAME}.c
|
|
echo ' ; else if (!config.magic_demand_paged) return' >> e${EMULATION_NAME}.c
|
|
sed $sc ldscripts/${EMULATION_NAME}.xn >> e${EMULATION_NAME}.c
|
|
echo ' ; else return' >> e${EMULATION_NAME}.c
|
|
sed $sc ldscripts/${EMULATION_NAME}.x >> e${EMULATION_NAME}.c
|
|
echo '; }' >> e${EMULATION_NAME}.c
|
|
|
|
else
|
|
# Scripts read from the filesystem.
|
|
|
|
fragment <<EOF
|
|
{
|
|
*isfile = 1;
|
|
|
|
if (bfd_link_relocatable (&link_info) && config.build_constructors)
|
|
return "ldscripts/${EMULATION_NAME}.xu";
|
|
else if (bfd_link_relocatable (&link_info))
|
|
return "ldscripts/${EMULATION_NAME}.xr";
|
|
else if (link_info.separate_code)
|
|
return "ldscripts/${EMULATION_NAME}.xe";
|
|
else if (!config.text_read_only)
|
|
return "ldscripts/${EMULATION_NAME}.xbn";
|
|
else if (!config.magic_demand_paged)
|
|
return "ldscripts/${EMULATION_NAME}.xn";
|
|
else
|
|
return "ldscripts/${EMULATION_NAME}.x";
|
|
}
|
|
EOF
|
|
fi
|
|
|
|
fragment <<EOF
|
|
|
|
/* --- \end{pdp11.em} */
|
|
|
|
EOF
|
|
|
|
LDEMUL_BEFORE_PARSE=gld"$EMULATION_NAME"_before_parse
|
|
LDEMUL_ADD_OPTIONS=gld"$EMULATION_NAME"_add_options
|
|
LDEMUL_HANDLE_OPTION=gld"$EMULATION_NAME"_handle_option
|
|
LDEMUL_LIST_OPTIONS=gld"$EMULATION_NAME"_list_options
|
|
LDEMUL_GET_SCRIPT=gld"$EMULATION_NAME"_get_script
|