1999-05-03 15:29:11 +08:00
|
|
|
/* ldlex.h -
|
2024-01-04 19:52:08 +08:00
|
|
|
Copyright (C) 1991-2024 Free Software Foundation, Inc.
|
1999-05-03 15:29:11 +08:00
|
|
|
|
2007-07-06 22:09:45 +08:00
|
|
|
This file is part of the GNU Binutils.
|
1999-05-03 15:29:11 +08:00
|
|
|
|
2007-07-06 22:09:45 +08:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
1999-05-03 15:29:11 +08:00
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-06 22:09:45 +08:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
1999-05-03 15:29:11 +08:00
|
|
|
|
2007-07-06 22:09:45 +08:00
|
|
|
This program is distributed in the hope that it will be useful,
|
1999-05-03 15:29:11 +08:00
|
|
|
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
|
2007-07-06 22:09:45 +08:00
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
#ifndef LDLEX_H
|
|
|
|
#define LDLEX_H
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2012-05-26 19:13:20 +08:00
|
|
|
/* Codes used for the long options with no short synonyms. 150 isn't
|
|
|
|
special; it's just an arbitrary non-ASCII char value. */
|
|
|
|
enum option_values
|
|
|
|
{
|
|
|
|
OPTION_ASSERT = 150,
|
|
|
|
OPTION_CALL_SHARED,
|
|
|
|
OPTION_CREF,
|
|
|
|
OPTION_DEFSYM,
|
|
|
|
OPTION_DEMANGLE,
|
|
|
|
OPTION_DYNAMIC_LINKER,
|
2015-09-20 10:50:19 +08:00
|
|
|
OPTION_NO_DYNAMIC_LINKER,
|
2012-05-26 19:13:20 +08:00
|
|
|
OPTION_SYSROOT,
|
2016-07-16 00:49:08 +08:00
|
|
|
OPTION_OUT_IMPLIB,
|
2012-05-26 19:13:20 +08:00
|
|
|
OPTION_EB,
|
|
|
|
OPTION_EL,
|
|
|
|
OPTION_EMBEDDED_RELOCS,
|
|
|
|
OPTION_EXPORT_DYNAMIC,
|
|
|
|
OPTION_NO_EXPORT_DYNAMIC,
|
|
|
|
OPTION_HELP,
|
|
|
|
OPTION_IGNORE,
|
|
|
|
OPTION_MAP,
|
|
|
|
OPTION_NO_DEMANGLE,
|
|
|
|
OPTION_NO_KEEP_MEMORY,
|
|
|
|
OPTION_NO_WARN_MISMATCH,
|
|
|
|
OPTION_NO_WARN_SEARCH_MISMATCH,
|
|
|
|
OPTION_NOINHIBIT_EXEC,
|
|
|
|
OPTION_NON_SHARED,
|
|
|
|
OPTION_NO_WHOLE_ARCHIVE,
|
|
|
|
OPTION_OFORMAT,
|
|
|
|
OPTION_RELAX,
|
|
|
|
OPTION_NO_RELAX,
|
2021-05-12 14:10:45 +08:00
|
|
|
OPTION_NO_SYMBOLIC,
|
2012-05-26 19:13:20 +08:00
|
|
|
OPTION_RETAIN_SYMBOLS_FILE,
|
|
|
|
OPTION_RPATH,
|
|
|
|
OPTION_RPATH_LINK,
|
|
|
|
OPTION_SHARED,
|
|
|
|
OPTION_SONAME,
|
|
|
|
OPTION_SORT_COMMON,
|
|
|
|
OPTION_SORT_SECTION,
|
2024-05-10 23:59:05 +08:00
|
|
|
OPTION_SECTION_ORDERING_FILE,
|
2012-05-26 19:13:20 +08:00
|
|
|
OPTION_STATS,
|
|
|
|
OPTION_SYMBOLIC,
|
|
|
|
OPTION_SYMBOLIC_FUNCTIONS,
|
|
|
|
OPTION_TASK_LINK,
|
ld/ELF: Add --image-base command line option to the ELF linker
LLD has dropped the option -Ttext-segment for specifying image base
addresses, instead forcing the use of the --image-base option for both
ELF and PE targets. As it stands, GNU LD and LLVM LLD are incompatible,
having two different options for the same functionality.
This patch enables the use of --image-base on ELF targets, advancing
consistency and compatibility.
See: https://reviews.llvm.org/D70468
https://maskray.me/blog/2020-11-15-explain-gnu-linker-options#address-related
https://sourceware.org/bugzilla/show_bug.cgi?id=25207
Moreover, a new test has been added to ensure -z separate-code behaviour
when used with -Ttext-segment stays the same. When this combination is
used, -Ttext-segment sets the address of the first segment (R), not the
text segment (RX), and like with -z noseparate-code, no segments lesser
than the specified address are created. If this behaviour was to change,
the first (R) segment of the ELF file would begin in a lesser address
than the specified text (RX) segment, breaking traditional use of this
option for specifying image base address.
2024-10-28 19:01:59 +08:00
|
|
|
OPTION_IMAGE_BASE,
|
2012-05-26 19:13:20 +08:00
|
|
|
OPTION_TBSS,
|
|
|
|
OPTION_TDATA,
|
|
|
|
OPTION_TTEXT,
|
|
|
|
OPTION_TTEXT_SEGMENT,
|
2012-12-19 04:42:43 +08:00
|
|
|
OPTION_TRODATA_SEGMENT,
|
2013-01-14 21:37:10 +08:00
|
|
|
OPTION_TLDATA_SEGMENT,
|
2012-05-26 19:13:20 +08:00
|
|
|
OPTION_TRADITIONAL_FORMAT,
|
|
|
|
OPTION_UR,
|
|
|
|
OPTION_VERBOSE,
|
|
|
|
OPTION_VERSION,
|
|
|
|
OPTION_VERSION_SCRIPT,
|
|
|
|
OPTION_VERSION_EXPORTS_SECTION,
|
|
|
|
OPTION_DYNAMIC_LIST,
|
|
|
|
OPTION_DYNAMIC_LIST_CPP_NEW,
|
|
|
|
OPTION_DYNAMIC_LIST_CPP_TYPEINFO,
|
|
|
|
OPTION_DYNAMIC_LIST_DATA,
|
2020-06-03 21:37:39 +08:00
|
|
|
OPTION_EXPORT_DYNAMIC_SYMBOL,
|
|
|
|
OPTION_EXPORT_DYNAMIC_SYMBOL_LIST,
|
2012-05-26 19:13:20 +08:00
|
|
|
OPTION_WARN_COMMON,
|
|
|
|
OPTION_WARN_CONSTRUCTORS,
|
|
|
|
OPTION_WARN_FATAL,
|
|
|
|
OPTION_NO_WARN_FATAL,
|
2022-10-21 19:20:09 +08:00
|
|
|
OPTION_NO_WARNINGS,
|
2012-05-26 19:13:20 +08:00
|
|
|
OPTION_WARN_MULTIPLE_GP,
|
|
|
|
OPTION_WARN_ONCE,
|
|
|
|
OPTION_WARN_SECTION_ALIGN,
|
|
|
|
OPTION_SPLIT_BY_RELOC,
|
|
|
|
OPTION_SPLIT_BY_FILE ,
|
|
|
|
OPTION_WHOLE_ARCHIVE,
|
|
|
|
OPTION_ADD_DT_NEEDED_FOR_DYNAMIC,
|
|
|
|
OPTION_NO_ADD_DT_NEEDED_FOR_DYNAMIC,
|
|
|
|
OPTION_ADD_DT_NEEDED_FOR_REGULAR,
|
|
|
|
OPTION_NO_ADD_DT_NEEDED_FOR_REGULAR,
|
|
|
|
OPTION_WRAP,
|
|
|
|
OPTION_FORCE_EXE_SUFFIX,
|
|
|
|
OPTION_GC_SECTIONS,
|
|
|
|
OPTION_NO_GC_SECTIONS,
|
|
|
|
OPTION_PRINT_GC_SECTIONS,
|
|
|
|
OPTION_NO_PRINT_GC_SECTIONS,
|
2016-12-16 11:12:02 +08:00
|
|
|
OPTION_GC_KEEP_EXPORTED,
|
2012-05-26 19:13:20 +08:00
|
|
|
OPTION_HASH_SIZE,
|
|
|
|
OPTION_CHECK_SECTIONS,
|
|
|
|
OPTION_NO_CHECK_SECTIONS,
|
|
|
|
OPTION_NO_UNDEFINED,
|
|
|
|
OPTION_INIT,
|
|
|
|
OPTION_FINI,
|
|
|
|
OPTION_SECTION_START,
|
|
|
|
OPTION_UNIQUE,
|
|
|
|
OPTION_TARGET_HELP,
|
|
|
|
OPTION_ALLOW_SHLIB_UNDEFINED,
|
|
|
|
OPTION_NO_ALLOW_SHLIB_UNDEFINED,
|
|
|
|
OPTION_ALLOW_MULTIPLE_DEFINITION,
|
2020-10-16 18:37:26 +08:00
|
|
|
#if SUPPORT_ERROR_HANDLING_SCRIPT
|
|
|
|
OPTION_ERROR_HANDLING_SCRIPT,
|
|
|
|
#endif
|
2022-10-14 10:06:43 +08:00
|
|
|
OPTION_UNDEFINED_VERSION,
|
2012-05-26 19:13:20 +08:00
|
|
|
OPTION_NO_UNDEFINED_VERSION,
|
|
|
|
OPTION_DEFAULT_SYMVER,
|
|
|
|
OPTION_DEFAULT_IMPORTED_SYMVER,
|
|
|
|
OPTION_DISCARD_NONE,
|
|
|
|
OPTION_SPARE_DYNAMIC_TAGS,
|
|
|
|
OPTION_NO_DEFINE_COMMON,
|
|
|
|
OPTION_NOSTDLIB,
|
|
|
|
OPTION_NO_OMAGIC,
|
|
|
|
OPTION_STRIP_DISCARDED,
|
|
|
|
OPTION_NO_STRIP_DISCARDED,
|
|
|
|
OPTION_ACCEPT_UNKNOWN_INPUT_ARCH,
|
|
|
|
OPTION_NO_ACCEPT_UNKNOWN_INPUT_ARCH,
|
|
|
|
OPTION_PIE,
|
2021-06-18 00:57:40 +08:00
|
|
|
OPTION_NO_PIE,
|
2012-05-26 19:13:20 +08:00
|
|
|
OPTION_UNRESOLVED_SYMBOLS,
|
|
|
|
OPTION_WARN_UNRESOLVED_SYMBOLS,
|
|
|
|
OPTION_ERROR_UNRESOLVED_SYMBOLS,
|
2020-05-27 19:53:54 +08:00
|
|
|
OPTION_WARN_TEXTREL,
|
2012-05-26 19:13:20 +08:00
|
|
|
OPTION_WARN_ALTERNATE_EM,
|
|
|
|
OPTION_REDUCE_MEMORY_OVERHEADS,
|
2018-02-28 04:22:58 +08:00
|
|
|
OPTION_MAX_CACHE_SIZE,
|
2020-06-21 12:53:46 +08:00
|
|
|
#if BFD_SUPPORTS_PLUGINS
|
2012-05-26 19:13:20 +08:00
|
|
|
OPTION_PLUGIN,
|
|
|
|
OPTION_PLUGIN_OPT,
|
2020-10-26 19:36:59 +08:00
|
|
|
OPTION_PLUGIN_SAVE_TEMPS,
|
2020-06-21 12:53:46 +08:00
|
|
|
#endif /* BFD_SUPPORTS_PLUGINS */
|
2012-05-26 19:13:20 +08:00
|
|
|
OPTION_DEFAULT_SCRIPT,
|
|
|
|
OPTION_PRINT_OUTPUT_FORMAT,
|
2014-10-17 19:06:56 +08:00
|
|
|
OPTION_PRINT_SYSROOT,
|
2012-10-22 21:33:49 +08:00
|
|
|
OPTION_IGNORE_UNRESOLVED_SYMBOL,
|
2014-08-09 08:26:41 +08:00
|
|
|
OPTION_PUSH_STATE,
|
|
|
|
OPTION_POP_STATE,
|
2018-04-18 05:47:13 +08:00
|
|
|
OPTION_DISABLE_MULTIPLE_DEFS_ABS,
|
2015-06-05 21:09:31 +08:00
|
|
|
OPTION_PRINT_MEMORY_USAGE,
|
2015-07-16 01:37:30 +08:00
|
|
|
OPTION_REQUIRE_DEFINED_SYMBOL,
|
ld: Extend options for altering orphan handling behaviour.
Replace the options --warn-orphan and --no-warn-orphan with a single
option --orphan-handling=MODE, where mode can be place, warn, error, and
discard.
Mode 'place' is the default, and is the current behaviour, placing the
orphan section into a suitable output section.
Mode 'warn' is the same as '--warn-orphan'. The orphan is also placed
using the same algorithm as for 'place'.
Mode 'error' is the same as '--warn-orphan' and '--fatal-warnings'.
Mode 'discard' assigns all output sections to the /DISCARD/ section.
ld/ChangeLog:
* ld.h (enum orphan_handling_enum): New.
(ld_config_type): Remove warn_orphan, add orphan_handling.
* ldemul.c (ldemul_place_orphan): Remove warning about orphan
sections.
* ldlang.c (ldlang_place_orphan): New function.
(lang_place_orphans): Call ldlang_place_orphan.
* ldlex.h (enum option_values): Remove OPTION_WARN_ORPHAN and
OPTION_NO_WARN_ORPHAN, add OPTION_ORPHAN_HANDLING.
* lexsup.c (ld_options): Remove 'warn-orphan' and
'no-warn-orphan', add 'orphan-handling'.
(parse_args): Remove handling for OPTION_WARN_ORPHAN and
OPTION_NO_WARN_ORPHAN, add handling for OPTION_ORPHAN_HANDLING.
* NEWS: Replace text about --warn-orphan with --orphan-handling.
* ld.texinfo (Options): Remove --warn-orphan entry and add
entry on --orphan-handling.
(Orphan Sections): Add reference to relevant command line options.
ld/testsuite/ChangeLog:
* ld-elf/elf.exp: Switch to rely on run_dump_test.
* ld-elf/orphan-5.l: Update expected output.
* ld-elf/orphan-5.d: New file.
* ld-elf/orphan-6.d: New file.
* ld-elf/orphan-6.l: New file.
* ld-elf/orphan-7.d: New file.
* ld-elf/orphan-7.map: New file.
* ld-elf/orphan-8.d: New file.
* ld-elf/orphan-8.map: New file.
2015-07-29 02:20:37 +08:00
|
|
|
OPTION_ORPHAN_HANDLING,
|
ld: Allow section groups to be resolved as part of a relocatable link
This commit adds a new linker feature: the ability to resolve section
groups as part of a relocatable link.
Currently section groups are automatically resolved when performing a
final link, and are carried through when performing a relocatable link.
By carried through this means that one copy of each section group (from
all the copies that might be found in all the input files) is placed
into the output file. Sections that are part of a section group will
not match input section specifiers within a linker script and are
forcibly kept as separate sections.
There is a slight resemblance between section groups and common
section. Like section groups, common sections are carried through when
performing a relocatable link, and resolved (allocated actual space)
only at final link time.
However, with common sections there is an ability to force the linker to
allocate space for the common sections when performing a relocatable
link, there's currently no such ability for section groups.
This commit adds such a mechanism. This new facility can be accessed in
two ways, first there's a command line switch --force-group-allocation,
second, there's a new linker script command FORCE_GROUP_ALLOCATION. If
one of these is used when performing a relocatable link then the linker
will resolve the section groups as though it were performing a final
link, the section group will be deleted, and the members of the group
will be placed like normal input sections. If there are multiple copies
of the group (from multiple input files) then only one copy of the group
members will be placed, the duplicate copies will be discarded.
Unlike common sections that have the --no-define-common command line
flag, and INHIBIT_COMMON_ALLOCATION linker script command there is no
way to prevent group resolution during a final link, this is because the
ELF gABI specifically prohibits the presence of SHT_GROUP sections in a
fully linked executable. However, the code as written should make
adding such a feature trivial, setting the new resolve_section_groups
flag to false during a final link should work as you'd expect.
bfd/ChangeLog:
* elf.c (_bfd_elf_make_section_from_shdr): Don't initially mark
SEC_GROUP sections as SEC_EXCLUDE.
(bfd_elf_set_group_contents): Replace use of abort with an assert.
(assign_section_numbers): Use resolve_section_groups flag instead
of relocatable link type.
(_bfd_elf_init_private_section_data): Use resolve_section_groups
flag instead of checking the final_link flag for part of the
checks in here. Fix white space as a result.
* elflink.c (elf_link_input_bfd): Use resolve_section_groups flag
instead of relocatable link type.
(bfd_elf_final_link): Likewise.
include/ChangeLog:
* bfdlink.h (struct bfd_link_info): Add new resolve_section_groups
flag.
ld/ChangeLog:
* ld.h (struct args_type): Add force_group_allocation field.
* ldgram.y: Add support for FORCE_GROUP_ALLOCATION.
* ldlex.h: Likewise.
* ldlex.l: Likewise.
* lexsup.c: Likewise.
* ldlang.c (unique_section_p): Check resolve_section_groups flag
not the relaxable link flag.
(lang_add_section): Discard section groups when we're resolving
groups. Clear the SEC_LINK_ONCE flag if we're resolving section
groups.
* ldmain.c (main): Initialise resolve_section_groups flag in
link_info based on command line flags.
* testsuite/ld-elf/group11.d: New file.
* testsuite/ld-elf/group12.d: New file.
* testsuite/ld-elf/group12.ld: New file.
* NEWS: Mention new features.
* ld.texinfo (Options): Document --force-group-allocation.
(Miscellaneous Commands): Document FORCE_GROUP_ALLOCATION.
2017-03-23 01:27:49 +08:00
|
|
|
OPTION_FORCE_GROUP_ALLOCATION,
|
2019-04-03 04:17:16 +08:00
|
|
|
OPTION_PRINT_MAP_DISCARDED,
|
|
|
|
OPTION_NO_PRINT_MAP_DISCARDED,
|
2023-05-10 17:29:52 +08:00
|
|
|
OPTION_PRINT_MAP_LOCALS,
|
|
|
|
OPTION_NO_PRINT_MAP_LOCALS,
|
2019-11-25 16:55:37 +08:00
|
|
|
OPTION_NON_CONTIGUOUS_REGIONS,
|
|
|
|
OPTION_NON_CONTIGUOUS_REGIONS_WARNINGS,
|
2020-06-24 03:01:24 +08:00
|
|
|
OPTION_DEPENDENCY_FILE,
|
ld: new options --ctf-variables and --ctf-share-types
libctf recently changed to make it possible to not emit the CTF
variables section. Make this the default for ld: the variables section
is a simple name -> type mapping, and the names can be quite voluminous.
Nothing in the variables section appears in the symbol table, by
definition, so GDB cannot make use of them: special-purpose projects
that implement their own analogues of symbol table lookup can do so, but
they'll need to tell the linker to emit the variables section after all.
The new --ctf-variables option does this.
The --ctf-share-types option (valid values "share-duplicated" and
"share-unconflicted") allow the caller to specify the CTF link mode.
Most users will want share-duplicated, since it allows for more
convenient debugging: but very large projects composed of many decoupled
components may want to use share-unconflicted mode, which places types
that appear in only one TU into per-TU dicts. (They may also want to
relink the CTF using the ctf_link API and cu-mapping, to make their
"components" larger than a single TU. Right now the linker does not
expose the CU-mapping machinery. Perhaps it should in future to make
this use case easier.)
For now, giving the linker the ability to emit share-duplicated CTF lets
us add testcases for that mode to the testsuite.
ld/
* ldlex.h (option_values) <OPTION_CTF_VARIABLES,
OPTION_NO_CTF_VARIABLES, OPTION_CTF_SHARE_TYPES>: New.
* ld.h (ld_config_type) <ctf_variables, ctf_share_duplicated>:
New fields.
* ldlang.c (lang_merge_ctf): Use them.
* lexsup.c (ld_options): Add ctf-variables, no-ctf-variables,
ctf-share-types.
(parse_args) <OPTION_CTF_VARIABLES, OPTION_NO_CTF_VARIABLES,
OPTION_CTF_SHARE_TYPES>: New cases.
* ld.texi: Document new options.
* NEWS: Likewise.
2020-06-06 06:18:06 +08:00
|
|
|
OPTION_CTF_VARIABLES,
|
|
|
|
OPTION_NO_CTF_VARIABLES,
|
|
|
|
OPTION_CTF_SHARE_TYPES,
|
2023-11-10 19:37:27 +08:00
|
|
|
OPTION_ERROR_EXECSTACK,
|
|
|
|
OPTION_NO_ERROR_EXECSTACK,
|
|
|
|
OPTION_WARN_EXECSTACK_OBJECTS,
|
2022-04-20 20:37:51 +08:00
|
|
|
OPTION_WARN_EXECSTACK,
|
|
|
|
OPTION_NO_WARN_EXECSTACK,
|
2022-05-03 18:42:24 +08:00
|
|
|
OPTION_WARN_RWX_SEGMENTS,
|
|
|
|
OPTION_NO_WARN_RWX_SEGMENTS,
|
2023-11-10 19:37:27 +08:00
|
|
|
OPTION_ERROR_RWX_SEGMENTS,
|
|
|
|
OPTION_NO_ERROR_RWX_SEGMENTS,
|
2023-03-15 22:27:21 +08:00
|
|
|
OPTION_ENABLE_LINKER_VERSION,
|
|
|
|
OPTION_DISABLE_LINKER_VERSION,
|
2023-06-14 20:39:03 +08:00
|
|
|
OPTION_REMAP_INPUTS,
|
|
|
|
OPTION_REMAP_INPUTS_FILE,
|
2024-01-17 23:46:37 +08:00
|
|
|
/* Used by emultempl/elf.em, emultempl/pe.em and emultempl/pep.em. */
|
|
|
|
OPTION_BUILD_ID,
|
|
|
|
OPTION_EXCLUDE_LIBS,
|
|
|
|
/* Used by emulparams/elf32mcore.sh, emultempl/beos.em, emultempl/pe.em
|
|
|
|
and emultempl/pep.em. */
|
|
|
|
OPTION_BASE_FILE,
|
|
|
|
/* Used by emultempl/ppc32elf.em and emultempl/ppc64elf.em. */
|
|
|
|
OPTION_NO_INLINE_OPT,
|
|
|
|
OPTION_NO_PLT_ALIGN,
|
|
|
|
OPTION_NO_STUBSYMS,
|
|
|
|
OPTION_NO_TLS_GET_ADDR_OPT,
|
|
|
|
OPTION_NO_TLS_OPT,
|
|
|
|
OPTION_PLT_ALIGN,
|
|
|
|
OPTION_STUBSYMS,
|
|
|
|
/* Used by emultempl/armelf.em and emultempl/tic6xdsbt.em. */
|
|
|
|
OPTION_NO_MERGE_EXIDX_ENTRIES,
|
|
|
|
/* Used by emultempl/aarch64elf.em and emultempl/armelf.em. */
|
|
|
|
OPTION_PIC_VENEER,
|
|
|
|
OPTION_NO_ENUM_SIZE_WARNING,
|
|
|
|
OPTION_NO_WCHAR_SIZE_WARNING,
|
|
|
|
/* Used by emultempl/armelf.em and emultempl/pe.em. */
|
|
|
|
OPTION_THUMB_ENTRY,
|
|
|
|
/* Used by emultempl/beos.em, emultempl/nto.em, emultempl/pe.em and
|
|
|
|
emultempl/pep.em. */
|
|
|
|
OPTION_STACK,
|
|
|
|
/* Used by emultempl/aarch64elf.em, emultempl/armelf.em,
|
|
|
|
emultempl/cskyelf.em, emultempl/hppaelf.em, emultempl/metagelf.em
|
|
|
|
and emultempl/ppc64elf.em. */
|
|
|
|
OPTION_STUBGROUP_SIZE,
|
|
|
|
/* Used by emulparams/plt_unwind.sh. */
|
|
|
|
OPTION_LD_GENERATED_UNWIND_INFO,
|
|
|
|
OPTION_NO_LD_GENERATED_UNWIND_INFO,
|
|
|
|
/* Used by emultempl/aarch64elf.em. */
|
|
|
|
OPTION_FIX_ERRATUM_835769,
|
|
|
|
OPTION_FIX_ERRATUM_843419,
|
|
|
|
OPTION_NO_APPLY_DYNAMIC_RELOCS,
|
|
|
|
/* Used by emultempl/aix.em. */
|
|
|
|
OPTION_AUTOIMP,
|
|
|
|
OPTION_ERNOTOK,
|
|
|
|
OPTION_EROK,
|
|
|
|
OPTION_EXPALL,
|
|
|
|
OPTION_EXPFULL,
|
|
|
|
OPTION_EXPORT,
|
|
|
|
OPTION_IMPORT,
|
|
|
|
OPTION_INITFINI,
|
|
|
|
OPTION_LOADMAP,
|
|
|
|
OPTION_MAXDATA,
|
|
|
|
OPTION_MAXSTACK,
|
|
|
|
OPTION_MODTYPE,
|
|
|
|
OPTION_NOAUTOIMP,
|
|
|
|
OPTION_NOEXPALL,
|
|
|
|
OPTION_NOEXPFULL,
|
|
|
|
OPTION_NOSTRCMPCT,
|
|
|
|
OPTION_PD,
|
|
|
|
OPTION_PT,
|
|
|
|
OPTION_STRCMPCT,
|
|
|
|
OPTION_UNIX,
|
|
|
|
OPTION_32,
|
|
|
|
OPTION_64,
|
|
|
|
OPTION_LIBPATH,
|
|
|
|
OPTION_NOLIBPATH,
|
|
|
|
/* Used by emultempl/alphaelf.em. */
|
|
|
|
OPTION_TASO,
|
|
|
|
OPTION_SECUREPLT,
|
|
|
|
OPTION_NO_SECUREPLT,
|
|
|
|
/* Used by emultempl/armelf.em. */
|
|
|
|
OPTION_BE8,
|
|
|
|
OPTION_TARGET1_REL,
|
|
|
|
OPTION_TARGET1_ABS,
|
|
|
|
OPTION_TARGET2,
|
|
|
|
OPTION_FIX_V4BX,
|
|
|
|
OPTION_USE_BLX,
|
|
|
|
OPTION_VFP11_DENORM_FIX,
|
|
|
|
OPTION_FIX_V4BX_INTERWORKING,
|
|
|
|
OPTION_FIX_CORTEX_A8,
|
|
|
|
OPTION_NO_FIX_CORTEX_A8,
|
|
|
|
OPTION_FIX_ARM1176,
|
|
|
|
OPTION_NO_FIX_ARM1176,
|
|
|
|
OPTION_LONG_PLT,
|
|
|
|
OPTION_STM32L4XX_FIX,
|
|
|
|
OPTION_CMSE_IMPLIB,
|
|
|
|
OPTION_IN_IMPLIB,
|
|
|
|
/* Used by emultempl/avrelf.em. */
|
|
|
|
OPTION_NO_CALL_RET_REPLACEMENT,
|
|
|
|
OPTION_PMEM_WRAP_AROUND,
|
|
|
|
OPTION_NO_STUBS,
|
|
|
|
OPTION_DEBUG_STUBS,
|
|
|
|
OPTION_DEBUG_RELAX,
|
|
|
|
/* Used by emultempl/bfin.em. */
|
|
|
|
OPTION_CODE_IN_L1,
|
|
|
|
OPTION_DATA_IN_L1,
|
|
|
|
/* Used by emultempl/cskyelf.em. */
|
|
|
|
OPTION_BRANCH_STUB,
|
|
|
|
OPTION_NO_BRANCH_STUB,
|
|
|
|
/* Used by emultempl/elf.em. */
|
|
|
|
OPTION_DISABLE_NEW_DTAGS,
|
|
|
|
OPTION_ENABLE_NEW_DTAGS,
|
|
|
|
OPTION_GROUP,
|
|
|
|
OPTION_EH_FRAME_HDR,
|
|
|
|
OPTION_NO_EH_FRAME_HDR,
|
|
|
|
OPTION_HASH_STYLE,
|
|
|
|
OPTION_PACKAGE_METADATA,
|
|
|
|
OPTION_AUDIT,
|
|
|
|
OPTION_COMPRESS_DEBUG,
|
2024-06-13 22:10:15 +08:00
|
|
|
OPTION_ROSEGMENT,
|
|
|
|
OPTION_NO_ROSEGMENT,
|
2024-01-17 23:46:37 +08:00
|
|
|
/* Used by emultempl/hppaelf.em. */
|
|
|
|
OPTION_MULTI_SUBSPACE,
|
|
|
|
/* Used by emultempl/ia64elf.em. */
|
|
|
|
OPTION_ITANIUM,
|
|
|
|
/* Used by emultempl/m68hc1xelf.em. */
|
|
|
|
OPTION_NO_TRAMPOLINE,
|
|
|
|
OPTION_BANK_WINDOW,
|
|
|
|
/* Used by emultempl/m68kelf.em. */
|
|
|
|
OPTION_GOT,
|
|
|
|
/* Used by emultempl/mipself.em. */
|
|
|
|
OPTION_INSN32,
|
|
|
|
OPTION_NO_INSN32,
|
|
|
|
OPTION_IGNORE_BRANCH_ISA,
|
|
|
|
OPTION_NO_IGNORE_BRANCH_ISA,
|
|
|
|
OPTION_COMPACT_BRANCHES,
|
|
|
|
OPTION_NO_COMPACT_BRANCHES,
|
|
|
|
/* Used by emultempl/msp430.em. */
|
|
|
|
OPTION_CODE_REGION,
|
|
|
|
OPTION_DATA_REGION,
|
|
|
|
OPTION_DISABLE_TRANS,
|
|
|
|
/* Used by emultempl/nds32elf.em. */
|
|
|
|
OPTION_BASELINE,
|
|
|
|
OPTION_ELIM_GC_RELOCS,
|
|
|
|
OPTION_FP_AS_GP,
|
|
|
|
OPTION_NO_FP_AS_GP,
|
|
|
|
OPTION_REDUCE_FP_UPDATE,
|
|
|
|
OPTION_NO_REDUCE_FP_UPDATE,
|
|
|
|
OPTION_EXPORT_SYMBOLS,
|
|
|
|
OPTION_HYPER_RELAX,
|
|
|
|
OPTION_TLSDESC_TRAMPOLINE,
|
|
|
|
OPTION_NO_TLSDESC_TRAMPOLINE,
|
|
|
|
/* Used by emultempl/nto.em. */
|
|
|
|
OPTION_LAZY_STACK,
|
|
|
|
/* Used by emultempl/pe.em, emultempl/pep.em and emultempl/beos.em. */
|
|
|
|
OPTION_DLL,
|
|
|
|
OPTION_FILE_ALIGNMENT,
|
|
|
|
OPTION_MAJOR_IMAGE_VERSION,
|
|
|
|
OPTION_MAJOR_OS_VERSION,
|
|
|
|
OPTION_MAJOR_SUBSYSTEM_VERSION,
|
|
|
|
OPTION_MINOR_IMAGE_VERSION,
|
|
|
|
OPTION_MINOR_OS_VERSION,
|
|
|
|
OPTION_MINOR_SUBSYSTEM_VERSION,
|
|
|
|
OPTION_SECTION_ALIGNMENT,
|
|
|
|
OPTION_SUBSYSTEM,
|
|
|
|
OPTION_HEAP,
|
|
|
|
OPTION_SUPPORT_OLD_CODE,
|
|
|
|
OPTION_OUT_DEF,
|
|
|
|
OPTION_EXPORT_ALL,
|
|
|
|
OPTION_EXCLUDE_SYMBOLS,
|
|
|
|
OPTION_EXCLUDE_ALL_SYMBOLS,
|
|
|
|
OPTION_KILL_ATS,
|
|
|
|
OPTION_STDCALL_ALIASES,
|
|
|
|
OPTION_ENABLE_STDCALL_FIXUP,
|
|
|
|
OPTION_DISABLE_STDCALL_FIXUP,
|
|
|
|
OPTION_WARN_DUPLICATE_EXPORTS,
|
|
|
|
OPTION_IMP_COMPAT,
|
|
|
|
OPTION_ENABLE_AUTO_IMAGE_BASE,
|
|
|
|
OPTION_DISABLE_AUTO_IMAGE_BASE,
|
|
|
|
OPTION_DLL_SEARCH_PREFIX,
|
|
|
|
OPTION_NO_DEFAULT_EXCLUDES,
|
|
|
|
OPTION_DLL_ENABLE_AUTO_IMPORT,
|
|
|
|
OPTION_DLL_DISABLE_AUTO_IMPORT,
|
|
|
|
OPTION_ENABLE_EXTRA_PE_DEBUG,
|
|
|
|
OPTION_DLL_ENABLE_RUNTIME_PSEUDO_RELOC,
|
|
|
|
OPTION_DLL_DISABLE_RUNTIME_PSEUDO_RELOC,
|
|
|
|
OPTION_LARGE_ADDRESS_AWARE,
|
|
|
|
OPTION_DISABLE_LARGE_ADDRESS_AWARE,
|
|
|
|
OPTION_DLL_ENABLE_RUNTIME_PSEUDO_RELOC_V1,
|
|
|
|
OPTION_DLL_ENABLE_RUNTIME_PSEUDO_RELOC_V2,
|
|
|
|
OPTION_EXCLUDE_MODULES_FOR_IMPLIB,
|
|
|
|
OPTION_USE_NUL_PREFIXED_IMPORT_TABLES,
|
|
|
|
OPTION_NO_LEADING_UNDERSCORE,
|
|
|
|
OPTION_LEADING_UNDERSCORE,
|
|
|
|
OPTION_ENABLE_LONG_SECTION_NAMES,
|
|
|
|
OPTION_DISABLE_LONG_SECTION_NAMES,
|
|
|
|
/* DLLCharacteristics flags. */
|
|
|
|
OPTION_DYNAMIC_BASE,
|
|
|
|
OPTION_FORCE_INTEGRITY,
|
|
|
|
OPTION_NX_COMPAT,
|
|
|
|
OPTION_NO_ISOLATION,
|
|
|
|
OPTION_NO_SEH,
|
|
|
|
OPTION_NO_BIND,
|
|
|
|
OPTION_WDM_DRIVER,
|
|
|
|
OPTION_TERMINAL_SERVER_AWARE,
|
|
|
|
/* Determinism. */
|
|
|
|
OPTION_INSERT_TIMESTAMP,
|
|
|
|
OPTION_NO_INSERT_TIMESTAMP,
|
|
|
|
OPTION_PDB,
|
|
|
|
OPTION_ENABLE_RELOC_SECTION,
|
|
|
|
OPTION_DISABLE_RELOC_SECTION,
|
|
|
|
/* DLL Characteristics flags. */
|
|
|
|
OPTION_DISABLE_DYNAMIC_BASE,
|
|
|
|
OPTION_DISABLE_FORCE_INTEGRITY,
|
|
|
|
OPTION_DISABLE_NX_COMPAT,
|
|
|
|
OPTION_DISABLE_NO_ISOLATION,
|
|
|
|
OPTION_DISABLE_NO_SEH,
|
|
|
|
OPTION_DISABLE_NO_BIND,
|
|
|
|
OPTION_DISABLE_WDM_DRIVER,
|
|
|
|
OPTION_DISABLE_TERMINAL_SERVER_AWARE,
|
|
|
|
/* Used by emultempl/pep.em. */
|
|
|
|
OPTION_DISABLE_HIGH_ENTROPY_VA,
|
|
|
|
OPTION_HIGH_ENTROPY_VA,
|
|
|
|
/* Used by emultempl/ppc32elf.em. */
|
|
|
|
OPTION_NEW_PLT,
|
|
|
|
OPTION_OLD_PLT,
|
|
|
|
OPTION_OLD_GOT,
|
|
|
|
OPTION_PPC476_WORKAROUND,
|
|
|
|
OPTION_NO_PPC476_WORKAROUND,
|
|
|
|
OPTION_NO_PICFIXUP,
|
|
|
|
OPTION_VLE_RELOC_FIXUP,
|
|
|
|
/* Used by emultempl/ppc64elf.em. */
|
|
|
|
OPTION_PLT_STATIC_CHAIN,
|
|
|
|
OPTION_NO_PLT_STATIC_CHAIN,
|
|
|
|
OPTION_PLT_THREAD_SAFE,
|
|
|
|
OPTION_NO_PLT_THREAD_SAFE,
|
|
|
|
OPTION_PLT_LOCALENTRY,
|
|
|
|
OPTION_NO_PLT_LOCALENTRY,
|
|
|
|
OPTION_POWER10_STUBS,
|
|
|
|
OPTION_NO_POWER10_STUBS,
|
|
|
|
OPTION_NO_PCREL_OPT,
|
|
|
|
OPTION_SAVRES,
|
|
|
|
OPTION_NO_SAVRES,
|
|
|
|
OPTION_DOTSYMS,
|
|
|
|
OPTION_NO_DOTSYMS,
|
|
|
|
OPTION_TLS_GET_ADDR_OPT,
|
|
|
|
OPTION_TLS_GET_ADDR_REGSAVE,
|
|
|
|
OPTION_NO_TLS_GET_ADDR_REGSAVE,
|
|
|
|
OPTION_NO_OPD_OPT,
|
|
|
|
OPTION_NO_TOC_OPT,
|
|
|
|
OPTION_NO_MULTI_TOC,
|
|
|
|
OPTION_NO_TOC_SORT,
|
|
|
|
OPTION_NON_OVERLAPPING_OPD,
|
|
|
|
/* Used by emultempl/riscvelf.em. */
|
|
|
|
OPTION_RELAX_GP,
|
|
|
|
OPTION_NO_RELAX_GP,
|
|
|
|
OPTION_CHECK_ULEB128,
|
|
|
|
OPTION_NO_CHECK_ULEB128,
|
|
|
|
/* Used by emultempl/rxelf.em. */
|
|
|
|
OPTION_NO_FLAG_MISMATCH_WARNINGS,
|
|
|
|
OPTION_IGNORE_LMA,
|
|
|
|
OPTION_NO_IGNORE_LMA,
|
|
|
|
OPTION_FLAG_MISMATCH_WARNINGS,
|
|
|
|
/* Used by emultempl/s390.em. */
|
|
|
|
OPTION_PGSTE,
|
|
|
|
/* Used by emultempl/spuelf.em. */
|
|
|
|
OPTION_SPU_PLUGIN,
|
|
|
|
OPTION_SPU_NO_OVERLAYS,
|
|
|
|
OPTION_SPU_COMPACT_STUBS,
|
|
|
|
OPTION_SPU_STUB_SYMS,
|
|
|
|
OPTION_SPU_NON_OVERLAY_STUBS,
|
|
|
|
OPTION_SPU_LOCAL_STORE,
|
|
|
|
OPTION_SPU_STACK_ANALYSIS,
|
|
|
|
OPTION_SPU_STACK_SYMS,
|
|
|
|
OPTION_SPU_AUTO_OVERLAY,
|
|
|
|
OPTION_SPU_AUTO_RELINK,
|
|
|
|
OPTION_SPU_OVERLAY_RODATA,
|
|
|
|
OPTION_SPU_SOFT_ICACHE,
|
|
|
|
OPTION_SPU_LINE_SIZE,
|
|
|
|
OPTION_SPU_NUM_LINES,
|
|
|
|
OPTION_SPU_LRLIVE,
|
|
|
|
OPTION_SPU_NON_IA_TEXT,
|
|
|
|
OPTION_SPU_FIXED_SPACE,
|
|
|
|
OPTION_SPU_RESERVED_SPACE,
|
|
|
|
OPTION_SPU_EXTRA_STACK,
|
|
|
|
OPTION_SPU_NO_AUTO_OVERLAY,
|
|
|
|
OPTION_SPU_EMIT_FIXUPS,
|
|
|
|
/* Used by emultempl/tic6xdsbt.em. */
|
|
|
|
OPTION_DSBT_INDEX,
|
|
|
|
OPTION_DSBT_SIZE,
|
|
|
|
/* Used by emultempl/ticoff.em. */
|
|
|
|
OPTION_COFF_FORMAT,
|
|
|
|
/* Used by emultempl/vms.em. */
|
|
|
|
OPTION_IDENTIFICATION,
|
|
|
|
/* Used by emultempl/vxworks.em. */
|
|
|
|
OPTION_FORCE_DYNAMIC,
|
|
|
|
/* Used by emultempl/xtensaelf.em. */
|
|
|
|
OPTION_OPT_SIZEOPT,
|
|
|
|
OPTION_LITERAL_MOVEMENT,
|
|
|
|
OPTION_NO_LITERAL_MOVEMENT,
|
|
|
|
OPTION_ABI_WINDOWED,
|
|
|
|
OPTION_ABI_CALL0,
|
2012-05-26 19:13:20 +08:00
|
|
|
};
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
/* The initial parser states. */
|
2022-05-03 18:42:24 +08:00
|
|
|
typedef enum input_enum
|
|
|
|
{
|
1999-05-03 15:29:11 +08:00
|
|
|
input_selected, /* We've set the initial state. */
|
|
|
|
input_script,
|
|
|
|
input_mri_script,
|
|
|
|
input_version_script,
|
2024-05-10 23:59:05 +08:00
|
|
|
input_section_ordering_script,
|
2006-09-08 01:16:34 +08:00
|
|
|
input_dynamic_list,
|
1999-05-03 15:29:11 +08:00
|
|
|
input_defsym
|
|
|
|
} input_type;
|
|
|
|
|
|
|
|
extern input_type parser_input;
|
|
|
|
|
|
|
|
extern unsigned int lineno;
|
|
|
|
extern const char *lex_string;
|
|
|
|
|
|
|
|
/* In ldlex.l. */
|
2003-06-28 13:28:54 +08:00
|
|
|
extern int yylex (void);
|
2012-03-08 13:29:33 +08:00
|
|
|
extern void lex_push_file (FILE *, const char *, unsigned int);
|
PR ld/13343
* ld.h (parsing_defsym): Delete.
* ldexp.c (exp_intop, exp_bigintop, exp_relop): Set type.filename.
(fold_binary, fold_name, exp_fold_tree_1, exp_get_vma, exp_get_fill,
exp_get_abs_int): Add tree arg for %S in error messages. Don't
fudge lineno.
(exp_binop, exp_unop, exp_nameop, exp_assop, exp_assert): Copy
type.filename from sub-tree.
(exp_trinop): Likewise, and use "cond" rather than "lhs".
* ldexp.h (node_type): Add filename field to struct.
* ldfile.c (ldfile_input_filename): Delete. Remove all refs.
* ldfile.h (ldfile_input_filename): Delete.
* ldgram.y (phdr_type, phdr_qualifiers, yyerror): Add NULL arg for
%S in error messages.
* ldemul.c (syslib_default, hll_default): Likewise.
* ldlang.c (lang_memory_region_lookup, lang_memory_region_alias,
lang_get_regions, lang_new_phdr): Likewise.
(lang_size_sections_1): Pass addr_tree for %S.
* ldlex.h (lex_redirect): Update prototype.
(ldlex_filename): Declare.
* ldlex.l (<EOF>): Don't set ldfile_input_filename.
(lex_redirect): Add fake_filename and count params. Push
fake_filename to file_name_stack and init lineno from count.
(ldlex_filename): New function.
(lex_warn_invalid): Use above.
* ldmain.c (main): Update lex_redirect call.
* ldmisc.c (vfinfo <%S>): Take file name and line number from
etree_type arg, or use current if arg is NULL.
* lexsup.c (parsing_defsym): Delete.
(parse_args <OPTION_DEFSYM>): Update lex_redirect call.
2012-02-17 22:09:57 +08:00
|
|
|
extern void lex_redirect (const char *, const char *, unsigned int);
|
2003-06-28 13:28:54 +08:00
|
|
|
extern void ldlex_script (void);
|
Allow unquoted = as the first character in ldscript input_list names
* ldlex.l (INPUTLIST): New start condition.
(comment pattern, ",", "(", ")", "AS_NEEDED")
({FILENAMECHAR1}{FILENAMECHAR}*, "-l"{FILENAMECHAR}+)
(quoted string pattern, whitespace pattern): Add INPUTLIST to
valid start conditions.
(<INPUTLIST>"="{FILENAMECHAR1}{FILENAMECHAR}*): New NAME rule.
(ldlex_inputlist): New start-condition-setter function.
* ldgram.y (input_list1): Rename from input_list. All recursive
use changed.
(input_list): New wrapper rule for input_list1, setting
INPUTLIST lexer state for the duration of parsing input_list1.
All this to say INPUT(=/path/to/file) and not be forced to use
INPUT("=/path/to/file") whenever there's a need to force a sysroot-
prefix. Still, IMHO it seems better to make use of a previously
invalid syntax and not only change the meaning of quoted =-prefixed
paths (though arguably that's not very useful before this patchset).
This got a little bit hairier than I'd expected: I had to add a new
lexer state (aka. start condition) to avoid a first "=" being lexed as
the token "=", despite that not making sense in constructs expecting
file-names in the first place. (The grammar doesn't allow for
expressions in any part of those lists.) I guess I *could* have made
it work using that token anyway, but I didn't like the idea that you
would be able to separate the "=" from the rest of the file-name with
whitespace.
2014-10-15 09:10:25 +08:00
|
|
|
extern void ldlex_inputlist (void);
|
2003-06-28 13:28:54 +08:00
|
|
|
extern void ldlex_mri_script (void);
|
|
|
|
extern void ldlex_version_script (void);
|
|
|
|
extern void ldlex_version_file (void);
|
|
|
|
extern void ldlex_expression (void);
|
PR28217, Syntax error when memory region contains a hyphen
The saga of commit 40726f16a8d7 continues. This attacks the problem
of switching between SCRIPT and EXPRESSION state lexing by removing
the need to do so for phdrs like ":text". Instead {WILDCHAR}*
matching, the reason why ":text" lexed as one token, is restricted to
within the braces of a section or overlay statement. The new WILD
lexer state is switched at the non-optional brace tokens, so
ldlex_backup is no longer needed. I've also removed the BOTH state,
which doesn't seem to be needed any more. Besides rules involving
error reporting, there was just one place where SCRIPT appeared
without BOTH, the {WILDCHAR}* rule, three where BOTH appears without
SCRIPT for tokens that only need EXPRESSION state, and two where BOTH
appears alongside INPUT_LIST. (Since I'm editing the wild and
filename rules, removing BOTH and adding WILD can also be seen as
renaming the old BOTH state to SCRIPT and renaming the old SCRIPT
state to WILD with a reduced scope.)
As a followup, I'll look at removing EXPRESSION state from some lexer
rules that no longer need it due to this cleanup.
PR 28217
* ldgram.y (exp <ORIGIN, LENGTH>): Use paren_script_name.
(section): Parse within braces of section in wild mode, and
after brace back in script mode. Remove ldlex_backup call.
Similarly for OVERLAY.
(overlay_section): Similarly.
(script_file): Replace ldlex_both with ldlex_script.
* ldlex.h (ldlex_wild): Declare.
(ldlex_both): Delete.
* ldlex.l (BOTH): Delete. Remove state from all rules.
(WILD): New state. Enable many tokens in this state.
Enable filename match in SCRIPT mode. Enable WILDCHAR match
in WILD state, disable in SCRIPT mode.
(ldlex_wild): New function.
* ldfile.c (ldfile_try_open_bfd): Replace ldlex_both call with
ldlex_script.
2021-08-13 10:20:16 +08:00
|
|
|
extern void ldlex_wild (void);
|
2003-06-28 13:28:54 +08:00
|
|
|
extern void ldlex_popstate (void);
|
2021-02-01 06:45:41 +08:00
|
|
|
extern void ldlex_backup (void);
|
PR ld/13343
* ld.h (parsing_defsym): Delete.
* ldexp.c (exp_intop, exp_bigintop, exp_relop): Set type.filename.
(fold_binary, fold_name, exp_fold_tree_1, exp_get_vma, exp_get_fill,
exp_get_abs_int): Add tree arg for %S in error messages. Don't
fudge lineno.
(exp_binop, exp_unop, exp_nameop, exp_assop, exp_assert): Copy
type.filename from sub-tree.
(exp_trinop): Likewise, and use "cond" rather than "lhs".
* ldexp.h (node_type): Add filename field to struct.
* ldfile.c (ldfile_input_filename): Delete. Remove all refs.
* ldfile.h (ldfile_input_filename): Delete.
* ldgram.y (phdr_type, phdr_qualifiers, yyerror): Add NULL arg for
%S in error messages.
* ldemul.c (syslib_default, hll_default): Likewise.
* ldlang.c (lang_memory_region_lookup, lang_memory_region_alias,
lang_get_regions, lang_new_phdr): Likewise.
(lang_size_sections_1): Pass addr_tree for %S.
* ldlex.h (lex_redirect): Update prototype.
(ldlex_filename): Declare.
* ldlex.l (<EOF>): Don't set ldfile_input_filename.
(lex_redirect): Add fake_filename and count params. Push
fake_filename to file_name_stack and init lineno from count.
(ldlex_filename): New function.
(lex_warn_invalid): Use above.
* ldmain.c (main): Update lex_redirect call.
* ldmisc.c (vfinfo <%S>): Take file name and line number from
etree_type arg, or use current if arg is NULL.
* lexsup.c (parsing_defsym): Delete.
(parse_args <OPTION_DEFSYM>): Update lex_redirect call.
2012-02-17 22:09:57 +08:00
|
|
|
extern const char* ldlex_filename (void);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* In lexsup.c. */
|
2003-06-28 13:28:54 +08:00
|
|
|
extern int lex_input (void);
|
|
|
|
extern void lex_unput (int);
|
|
|
|
extern void parse_args (unsigned, char **);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
#endif
|