1992-01-24 19:41:32 +01:00
|
|
|
/* A YACC grammer to parse a superset of the AT&T linker scripting languaue.
|
A major rewrite to move the bulk of the linker into BFD so that
more efficient backend code can be written for specific object
files.
* lderror.c, lderror.h, ldindr.c, ldindr.h, ldsym.c, ldsym.h,
ldwarn.c, ldwarn.h, relax.c, relax.h: Removed.
* ldctor.c, ldctor.h: Complete rewrite.
* ldwrite.c, ldwrite.h: Complete rewrite.
* ld.h (strip_symbols_type, strip_symbols): Removed. Use
link_info.strip instead. Changed all uses.
(discard_locals_type, discard_locals): Removed. Use
link_info.discard instead. Changed all uses.
(ld_config_type): Removed relocateable_output field; use
link_info.relocateable instead; changed all uses. Added stats
field.
(set_asymbol_chain, get_asymbol_chain, get_loader_symbol,
set_loader_symbol): Removed.
* ldexp.h (node_class): Added etree_rel.
(etree_type): Added rel field.
* ldexp.c (exp_print_token): Bracketed table initialization.
(exp_relop): New function.
(fold_name): Use linker hash table rather than ldsym functions.
(exp_fold_tree): Likewise. Also, handle etree_rel case.
(exp_print_tree): Handle etree_rel.
* ldgram.y (strip_symbols, discard_locals): Removed.
(OPTION_stats, OPTION_no_keep_memory): New tokens. Handle them.
(REL): New token. Does not appear in grammar, but needed for
expression code.
(file): Don't call lang_final; it's called by main anyhow.
* ldlex.l: Accept -stats and -no-keep-memory options.
* ldlang.h (fill_type): Make unsigned int, not unsigned short.
* ldlang.c: Consistently use fill_type for fill argument.
(lang_init_script_file, script_file): Removed.
(create_object_symbols): Removed. Use
link_info.create_object_symbols_section instead. Changed all
uses.
(lang_add_keepsyms_file): Removed.
(lookup_name): Call bfd_link_add_symbols instead of
ldmain_open_file_read_symbol.
(wild): Don't iterate over script_file.
(open_output): Create link hash table.
(lang_place_undefineds): Rewrote.
(lang_size_sections): Handle relaxing (doesn't work yet).
(lang_relocate_globals): Removed.
(lang_finish): Use link hash table rather than ldsym functions.
(lang_common): Rewrote.
(lang_one_common): New function.
(ldlang_add_file): Add file to link_info.input_bfds list. Set
usrdata.
(create_symbol): Removed.
(lang_process): Don't call lang_init_script_file. Call
ldctor_build_sets rather than find_constructors. Don't call
lang_relocate_globals.
(lang_abs_symbol_at_beginning_of): Rewrote.
(lang_abs_symbol_at_end_of): Rewrote.
* ldmain.c (had_y): Removed.
(lprefix, lprefix_len): Removed; use link_info fields instead.
Changed all uses.
(multiple_def_count, commons_pending, undefined_global_sym_count,
total_symbols_seen, total_files_seen): Removed.
(link_callbacks, link_info): New variables.
(main): Initialize link_info. Don't call init_bfd_error_vector or
ldsym_init. Don't set now unused variables. Handle -stats.
(get_emulation): Removed obsolete and nonfunctional GNU960 code.
(add_ysym): Rewrote.
(read_entry_symbols, refize, enter_global_ref, enter_file_symbols,
search_library, gnu960_check_format, decode_library_subfile,
linear_library, symdef_library, clear_syms, subfile_wanted_p):
Removed.
(add_keepsyms_file, add_archive_element, multiple_definition,
multiple_common, add_to_set, warning_callback, undefined_symbol,
reloc_overflow, reloc_dangerous, unattached_reloc, notice_ysym):
New functions.
* ldmisc.c (vfinfo): Accept a string for %T, not a symbol. Don't
require symbols for %C; look them up instead.
* emultempl/hppaosf.em: Pass link_info to
hppa_look_for_stubs_in_section.
* Makefile.in: Rebuilt dependencies.
(CFILES): Removed lderror.c, ldindr.c, ldsym.c, ldwarn.c, and
relax.c.
(HFILES): Removed lderror.h, ldindr.h, ldsym.h, ldwarn.h, and
relax.h.
(EMULATION_OFILES): Depend on bfdlink.h, ldmain.h, ldexp.h,
ldlang.h and ldctor.h.
* Makefile.in (ldlex.c): Don't depend on ldgram.h. Remove
declarations of free and malloc from flex output. Change malloc
to ldmalloc in flex output.
1993-12-30 20:51:41 +01:00
|
|
|
Copyright (C) 1991, 1993 Free Software Foundation, Inc.
|
1992-01-24 19:41:32 +01:00
|
|
|
Written by Steve Chamberlain of Cygnus Support (steve@cygnus.com).
|
1991-03-21 22:29:06 +01:00
|
|
|
|
1992-01-24 19:41:32 +01:00
|
|
|
This file is part of GNU ld.
|
1991-03-21 22:29:06 +01:00
|
|
|
|
1992-01-24 19:41:32 +01:00
|
|
|
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 2 of the License, or
|
|
|
|
(at your option) any later version.
|
1991-03-21 22:29:06 +01:00
|
|
|
|
1992-01-24 19:41:32 +01:00
|
|
|
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.
|
1991-03-21 22:29:06 +01:00
|
|
|
|
1992-01-24 19:41:32 +01:00
|
|
|
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., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|
|
|
|
|
|
|
%{
|
|
|
|
/*
|
1992-01-24 23:34:34 +01:00
|
|
|
|
1992-01-24 19:41:32 +01:00
|
|
|
*/
|
1991-03-21 22:29:06 +01:00
|
|
|
|
1991-10-11 12:28:27 +01:00
|
|
|
#define DONTDECLARE_MALLOC
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
|
|
#include "bfd.h"
|
1991-10-11 12:28:27 +01:00
|
|
|
#include "sysdep.h"
|
A major rewrite to move the bulk of the linker into BFD so that
more efficient backend code can be written for specific object
files.
* lderror.c, lderror.h, ldindr.c, ldindr.h, ldsym.c, ldsym.h,
ldwarn.c, ldwarn.h, relax.c, relax.h: Removed.
* ldctor.c, ldctor.h: Complete rewrite.
* ldwrite.c, ldwrite.h: Complete rewrite.
* ld.h (strip_symbols_type, strip_symbols): Removed. Use
link_info.strip instead. Changed all uses.
(discard_locals_type, discard_locals): Removed. Use
link_info.discard instead. Changed all uses.
(ld_config_type): Removed relocateable_output field; use
link_info.relocateable instead; changed all uses. Added stats
field.
(set_asymbol_chain, get_asymbol_chain, get_loader_symbol,
set_loader_symbol): Removed.
* ldexp.h (node_class): Added etree_rel.
(etree_type): Added rel field.
* ldexp.c (exp_print_token): Bracketed table initialization.
(exp_relop): New function.
(fold_name): Use linker hash table rather than ldsym functions.
(exp_fold_tree): Likewise. Also, handle etree_rel case.
(exp_print_tree): Handle etree_rel.
* ldgram.y (strip_symbols, discard_locals): Removed.
(OPTION_stats, OPTION_no_keep_memory): New tokens. Handle them.
(REL): New token. Does not appear in grammar, but needed for
expression code.
(file): Don't call lang_final; it's called by main anyhow.
* ldlex.l: Accept -stats and -no-keep-memory options.
* ldlang.h (fill_type): Make unsigned int, not unsigned short.
* ldlang.c: Consistently use fill_type for fill argument.
(lang_init_script_file, script_file): Removed.
(create_object_symbols): Removed. Use
link_info.create_object_symbols_section instead. Changed all
uses.
(lang_add_keepsyms_file): Removed.
(lookup_name): Call bfd_link_add_symbols instead of
ldmain_open_file_read_symbol.
(wild): Don't iterate over script_file.
(open_output): Create link hash table.
(lang_place_undefineds): Rewrote.
(lang_size_sections): Handle relaxing (doesn't work yet).
(lang_relocate_globals): Removed.
(lang_finish): Use link hash table rather than ldsym functions.
(lang_common): Rewrote.
(lang_one_common): New function.
(ldlang_add_file): Add file to link_info.input_bfds list. Set
usrdata.
(create_symbol): Removed.
(lang_process): Don't call lang_init_script_file. Call
ldctor_build_sets rather than find_constructors. Don't call
lang_relocate_globals.
(lang_abs_symbol_at_beginning_of): Rewrote.
(lang_abs_symbol_at_end_of): Rewrote.
* ldmain.c (had_y): Removed.
(lprefix, lprefix_len): Removed; use link_info fields instead.
Changed all uses.
(multiple_def_count, commons_pending, undefined_global_sym_count,
total_symbols_seen, total_files_seen): Removed.
(link_callbacks, link_info): New variables.
(main): Initialize link_info. Don't call init_bfd_error_vector or
ldsym_init. Don't set now unused variables. Handle -stats.
(get_emulation): Removed obsolete and nonfunctional GNU960 code.
(add_ysym): Rewrote.
(read_entry_symbols, refize, enter_global_ref, enter_file_symbols,
search_library, gnu960_check_format, decode_library_subfile,
linear_library, symdef_library, clear_syms, subfile_wanted_p):
Removed.
(add_keepsyms_file, add_archive_element, multiple_definition,
multiple_common, add_to_set, warning_callback, undefined_symbol,
reloc_overflow, reloc_dangerous, unattached_reloc, notice_ysym):
New functions.
* ldmisc.c (vfinfo): Accept a string for %T, not a symbol. Don't
require symbols for %C; look them up instead.
* emultempl/hppaosf.em: Pass link_info to
hppa_look_for_stubs_in_section.
* Makefile.in: Rebuilt dependencies.
(CFILES): Removed lderror.c, ldindr.c, ldsym.c, ldwarn.c, and
relax.c.
(HFILES): Removed lderror.h, ldindr.h, ldsym.h, ldwarn.h, and
relax.h.
(EMULATION_OFILES): Depend on bfdlink.h, ldmain.h, ldexp.h,
ldlang.h and ldctor.h.
* Makefile.in (ldlex.c): Don't depend on ldgram.h. Remove
declarations of free and malloc from flex output. Change malloc
to ldmalloc in flex output.
1993-12-30 20:51:41 +01:00
|
|
|
#include "bfdlink.h"
|
1991-03-21 22:29:06 +01:00
|
|
|
#include "ld.h"
|
|
|
|
#include "ldexp.h"
|
1991-05-18 05:08:59 +02:00
|
|
|
#include "ldver.h"
|
1991-03-21 22:29:06 +01:00
|
|
|
#include "ldlang.h"
|
1991-10-11 12:28:27 +01:00
|
|
|
#include "ldemul.h"
|
1991-03-21 22:29:06 +01:00
|
|
|
#include "ldfile.h"
|
|
|
|
#include "ldmisc.h"
|
1993-12-11 23:55:55 +01:00
|
|
|
#include "ldmain.h"
|
1992-04-16 00:23:33 +02:00
|
|
|
#include "mri.h"
|
1994-02-26 04:22:26 +01:00
|
|
|
#include "ldlex.h"
|
1991-10-11 12:28:27 +01:00
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
#define YYDEBUG 1
|
|
|
|
|
1993-01-08 23:42:42 +01:00
|
|
|
static int typebits;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
|
|
lang_memory_region_type *region;
|
|
|
|
|
|
|
|
|
|
|
|
char *current_file;
|
|
|
|
boolean ldgram_want_filename = true;
|
|
|
|
boolean had_script = false;
|
|
|
|
boolean force_make_executable = false;
|
1991-04-19 02:59:53 +02:00
|
|
|
|
1991-04-14 05:22:42 +02:00
|
|
|
boolean ldgram_in_script = false;
|
1991-04-19 02:59:53 +02:00
|
|
|
boolean ldgram_had_equals = false;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
|
|
|
1992-04-16 00:23:33 +02:00
|
|
|
#define ERROR_NAME_MAX 20
|
|
|
|
static char *error_names[ERROR_NAME_MAX];
|
|
|
|
static int error_index;
|
|
|
|
#define PUSH_ERROR(x) if (error_index < ERROR_NAME_MAX) error_names[error_index] = x; error_index++;
|
|
|
|
#define POP_ERROR() error_index--;
|
1991-03-21 22:29:06 +01:00
|
|
|
%}
|
|
|
|
%union {
|
|
|
|
bfd_vma integer;
|
|
|
|
char *name;
|
|
|
|
int token;
|
|
|
|
union etree_union *etree;
|
|
|
|
}
|
|
|
|
|
1993-03-31 00:45:39 +02:00
|
|
|
%type <etree> exp opt_exp_with_type mustbe_exp opt_at
|
1993-01-08 23:42:42 +01:00
|
|
|
%type <integer> fill_opt
|
1991-03-21 22:29:06 +01:00
|
|
|
%type <name> memspec_opt
|
1991-05-07 21:16:33 +02:00
|
|
|
%token <integer> INT
|
1991-03-21 22:29:06 +01:00
|
|
|
%token <name> NAME
|
|
|
|
%type <integer> length
|
|
|
|
|
1991-04-23 17:59:24 +02:00
|
|
|
%right <token> PLUSEQ MINUSEQ MULTEQ DIVEQ '=' LSHIFTEQ RSHIFTEQ ANDEQ OREQ
|
1991-03-21 22:29:06 +01:00
|
|
|
%right <token> '?' ':'
|
|
|
|
%left <token> OROR
|
|
|
|
%left <token> ANDAND
|
|
|
|
%left <token> '|'
|
|
|
|
%left <token> '^'
|
|
|
|
%left <token> '&'
|
|
|
|
%left <token> EQ NE
|
|
|
|
%left <token> '<' '>' LE GE
|
|
|
|
%left <token> LSHIFT RSHIFT
|
1991-05-07 21:16:33 +02:00
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
%left <token> '+' '-'
|
|
|
|
%left <token> '*' '/' '%'
|
1991-05-07 21:16:33 +02:00
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
%right UNARY
|
1992-04-16 01:11:09 +02:00
|
|
|
%token END
|
1991-03-21 22:29:06 +01:00
|
|
|
%left <token> '('
|
1994-01-06 20:38:36 +01:00
|
|
|
%token <token> ALIGN_K BLOCK QUAD LONG SHORT BYTE
|
Use getopt instead of lex and yacc to parse the command line.
* ld.texinfo (Options): Document changes to option syntax.
* Makefile.in: Update dependencies.
* ldver.c (help): Tweak dashes in usage message.
* ldgram.y (%union): Remove unused members.
Remove %tokens for command line options; add ones for input types.
(command_line): Rules removed.
(file): Instead of command line, recognize an
input type indicator, then use the nonterminal for that type.
(defsym_expr): New nonterminal from code formerly in command_line.
* ldlex.h: Declare parser input type enum and variable.
Don't declare parse_line.
* ldlex.l: Remove unused variables. Make some used ones static
and comment them.
(COMMAND): Start state and its rules removed.
At start of yylex, return input state token if at start of input.
(lex_redirect): Don't need to set yyout.
(ldlex_command): Function removed.
* ldmain.c (main): Instead of calling parse_line, set up the
redirections and call yyparse directly.
* ldmisc.c (vfinfo): If there's no input filename, print nothing, not
"command line".
* lexsup.c: Remove #if 0'd code.
(parse_line): Function removed.
(parse_args): Rewrite to use getopt_long_only.
(set_default_dirlist): New function from code formerly in
ldgram.y:command_line.
(set_section_start): New function.
* emultempl/generic.em, emultempl/gld960.em, emultempl/hppaelf.em,
emultempl/lnk960.em, emultempl/m88kbcs.em: Don't enclose
compiled-in link scripts in "{" and "}", as the grammar no longer
wants them to be.
1994-02-25 04:26:25 +01:00
|
|
|
%token SECTIONS
|
1991-03-21 22:29:06 +01:00
|
|
|
%token '{' '}'
|
1991-05-07 21:16:33 +02:00
|
|
|
%token SIZEOF_HEADERS OUTPUT_FORMAT FORCE_COMMON_ALLOCATION OUTPUT_ARCH
|
|
|
|
%token SIZEOF_HEADERS
|
1993-01-08 23:42:42 +01:00
|
|
|
%token INCLUDE
|
Use getopt instead of lex and yacc to parse the command line.
* ld.texinfo (Options): Document changes to option syntax.
* Makefile.in: Update dependencies.
* ldver.c (help): Tweak dashes in usage message.
* ldgram.y (%union): Remove unused members.
Remove %tokens for command line options; add ones for input types.
(command_line): Rules removed.
(file): Instead of command line, recognize an
input type indicator, then use the nonterminal for that type.
(defsym_expr): New nonterminal from code formerly in command_line.
* ldlex.h: Declare parser input type enum and variable.
Don't declare parse_line.
* ldlex.l: Remove unused variables. Make some used ones static
and comment them.
(COMMAND): Start state and its rules removed.
At start of yylex, return input state token if at start of input.
(lex_redirect): Don't need to set yyout.
(ldlex_command): Function removed.
* ldmain.c (main): Instead of calling parse_line, set up the
redirections and call yyparse directly.
* ldmisc.c (vfinfo): If there's no input filename, print nothing, not
"command line".
* lexsup.c: Remove #if 0'd code.
(parse_line): Function removed.
(parse_args): Rewrite to use getopt_long_only.
(set_default_dirlist): New function from code formerly in
ldgram.y:command_line.
(set_section_start): New function.
* emultempl/generic.em, emultempl/gld960.em, emultempl/hppaelf.em,
emultempl/lnk960.em, emultempl/m88kbcs.em: Don't enclose
compiled-in link scripts in "{" and "}", as the grammar no longer
wants them to be.
1994-02-25 04:26:25 +01:00
|
|
|
%token MEMORY DEFSYMEND
|
1991-10-11 12:28:27 +01:00
|
|
|
%token NOLOAD DSECT COPY INFO OVERLAY
|
Use getopt instead of lex and yacc to parse the command line.
* ld.texinfo (Options): Document changes to option syntax.
* Makefile.in: Update dependencies.
* ldver.c (help): Tweak dashes in usage message.
* ldgram.y (%union): Remove unused members.
Remove %tokens for command line options; add ones for input types.
(command_line): Rules removed.
(file): Instead of command line, recognize an
input type indicator, then use the nonterminal for that type.
(defsym_expr): New nonterminal from code formerly in command_line.
* ldlex.h: Declare parser input type enum and variable.
Don't declare parse_line.
* ldlex.l: Remove unused variables. Make some used ones static
and comment them.
(COMMAND): Start state and its rules removed.
At start of yylex, return input state token if at start of input.
(lex_redirect): Don't need to set yyout.
(ldlex_command): Function removed.
* ldmain.c (main): Instead of calling parse_line, set up the
redirections and call yyparse directly.
* ldmisc.c (vfinfo): If there's no input filename, print nothing, not
"command line".
* lexsup.c: Remove #if 0'd code.
(parse_line): Function removed.
(parse_args): Rewrite to use getopt_long_only.
(set_default_dirlist): New function from code formerly in
ldgram.y:command_line.
(set_section_start): New function.
* emultempl/generic.em, emultempl/gld960.em, emultempl/hppaelf.em,
emultempl/lnk960.em, emultempl/m88kbcs.em: Don't enclose
compiled-in link scripts in "{" and "}", as the grammar no longer
wants them to be.
1994-02-25 04:26:25 +01:00
|
|
|
%token NAME DEFINED TARGET_K SEARCH_DIR MAP ENTRY
|
|
|
|
%token <integer> SIZEOF NEXT ADDR
|
|
|
|
%token STARTUP HLL SYSLIB FLOAT NOFLOAT
|
|
|
|
%token ORIGIN FILL
|
|
|
|
%token LENGTH CREATE_OBJECT_SYMBOLS INPUT OUTPUT CONSTRUCTORS
|
|
|
|
%token ALIGNMOD AT
|
1991-05-07 21:16:33 +02:00
|
|
|
%type <token> assign_op
|
1991-03-21 22:29:06 +01:00
|
|
|
%type <name> filename
|
1992-05-02 03:35:12 +02:00
|
|
|
%token CHIP LIST SECT ABSOLUTE LOAD NEWLINE ENDWORD ORDER NAMEWORD
|
A major rewrite to move the bulk of the linker into BFD so that
more efficient backend code can be written for specific object
files.
* lderror.c, lderror.h, ldindr.c, ldindr.h, ldsym.c, ldsym.h,
ldwarn.c, ldwarn.h, relax.c, relax.h: Removed.
* ldctor.c, ldctor.h: Complete rewrite.
* ldwrite.c, ldwrite.h: Complete rewrite.
* ld.h (strip_symbols_type, strip_symbols): Removed. Use
link_info.strip instead. Changed all uses.
(discard_locals_type, discard_locals): Removed. Use
link_info.discard instead. Changed all uses.
(ld_config_type): Removed relocateable_output field; use
link_info.relocateable instead; changed all uses. Added stats
field.
(set_asymbol_chain, get_asymbol_chain, get_loader_symbol,
set_loader_symbol): Removed.
* ldexp.h (node_class): Added etree_rel.
(etree_type): Added rel field.
* ldexp.c (exp_print_token): Bracketed table initialization.
(exp_relop): New function.
(fold_name): Use linker hash table rather than ldsym functions.
(exp_fold_tree): Likewise. Also, handle etree_rel case.
(exp_print_tree): Handle etree_rel.
* ldgram.y (strip_symbols, discard_locals): Removed.
(OPTION_stats, OPTION_no_keep_memory): New tokens. Handle them.
(REL): New token. Does not appear in grammar, but needed for
expression code.
(file): Don't call lang_final; it's called by main anyhow.
* ldlex.l: Accept -stats and -no-keep-memory options.
* ldlang.h (fill_type): Make unsigned int, not unsigned short.
* ldlang.c: Consistently use fill_type for fill argument.
(lang_init_script_file, script_file): Removed.
(create_object_symbols): Removed. Use
link_info.create_object_symbols_section instead. Changed all
uses.
(lang_add_keepsyms_file): Removed.
(lookup_name): Call bfd_link_add_symbols instead of
ldmain_open_file_read_symbol.
(wild): Don't iterate over script_file.
(open_output): Create link hash table.
(lang_place_undefineds): Rewrote.
(lang_size_sections): Handle relaxing (doesn't work yet).
(lang_relocate_globals): Removed.
(lang_finish): Use link hash table rather than ldsym functions.
(lang_common): Rewrote.
(lang_one_common): New function.
(ldlang_add_file): Add file to link_info.input_bfds list. Set
usrdata.
(create_symbol): Removed.
(lang_process): Don't call lang_init_script_file. Call
ldctor_build_sets rather than find_constructors. Don't call
lang_relocate_globals.
(lang_abs_symbol_at_beginning_of): Rewrote.
(lang_abs_symbol_at_end_of): Rewrote.
* ldmain.c (had_y): Removed.
(lprefix, lprefix_len): Removed; use link_info fields instead.
Changed all uses.
(multiple_def_count, commons_pending, undefined_global_sym_count,
total_symbols_seen, total_files_seen): Removed.
(link_callbacks, link_info): New variables.
(main): Initialize link_info. Don't call init_bfd_error_vector or
ldsym_init. Don't set now unused variables. Handle -stats.
(get_emulation): Removed obsolete and nonfunctional GNU960 code.
(add_ysym): Rewrote.
(read_entry_symbols, refize, enter_global_ref, enter_file_symbols,
search_library, gnu960_check_format, decode_library_subfile,
linear_library, symdef_library, clear_syms, subfile_wanted_p):
Removed.
(add_keepsyms_file, add_archive_element, multiple_definition,
multiple_common, add_to_set, warning_callback, undefined_symbol,
reloc_overflow, reloc_dangerous, unattached_reloc, notice_ysym):
New functions.
* ldmisc.c (vfinfo): Accept a string for %T, not a symbol. Don't
require symbols for %C; look them up instead.
* emultempl/hppaosf.em: Pass link_info to
hppa_look_for_stubs_in_section.
* Makefile.in: Rebuilt dependencies.
(CFILES): Removed lderror.c, ldindr.c, ldsym.c, ldwarn.c, and
relax.c.
(HFILES): Removed lderror.h, ldindr.h, ldsym.h, ldwarn.h, and
relax.h.
(EMULATION_OFILES): Depend on bfdlink.h, ldmain.h, ldexp.h,
ldlang.h and ldctor.h.
* Makefile.in (ldlex.c): Don't depend on ldgram.h. Remove
declarations of free and malloc from flex output. Change malloc
to ldmalloc in flex output.
1993-12-30 20:51:41 +01:00
|
|
|
%token FORMAT PUBLIC DEFSYMEND BASE ALIAS TRUNCATE REL
|
Use getopt instead of lex and yacc to parse the command line.
* ld.texinfo (Options): Document changes to option syntax.
* Makefile.in: Update dependencies.
* ldver.c (help): Tweak dashes in usage message.
* ldgram.y (%union): Remove unused members.
Remove %tokens for command line options; add ones for input types.
(command_line): Rules removed.
(file): Instead of command line, recognize an
input type indicator, then use the nonterminal for that type.
(defsym_expr): New nonterminal from code formerly in command_line.
* ldlex.h: Declare parser input type enum and variable.
Don't declare parse_line.
* ldlex.l: Remove unused variables. Make some used ones static
and comment them.
(COMMAND): Start state and its rules removed.
At start of yylex, return input state token if at start of input.
(lex_redirect): Don't need to set yyout.
(ldlex_command): Function removed.
* ldmain.c (main): Instead of calling parse_line, set up the
redirections and call yyparse directly.
* ldmisc.c (vfinfo): If there's no input filename, print nothing, not
"command line".
* lexsup.c: Remove #if 0'd code.
(parse_line): Function removed.
(parse_args): Rewrite to use getopt_long_only.
(set_default_dirlist): New function from code formerly in
ldgram.y:command_line.
(set_section_start): New function.
* emultempl/generic.em, emultempl/gld960.em, emultempl/hppaelf.em,
emultempl/lnk960.em, emultempl/m88kbcs.em: Don't enclose
compiled-in link scripts in "{" and "}", as the grammar no longer
wants them to be.
1994-02-25 04:26:25 +01:00
|
|
|
%token INPUT_SCRIPT INPUT_MRI_SCRIPT INPUT_DEFSYM
|
1992-04-16 00:23:33 +02:00
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
%%
|
|
|
|
|
Use getopt instead of lex and yacc to parse the command line.
* ld.texinfo (Options): Document changes to option syntax.
* Makefile.in: Update dependencies.
* ldver.c (help): Tweak dashes in usage message.
* ldgram.y (%union): Remove unused members.
Remove %tokens for command line options; add ones for input types.
(command_line): Rules removed.
(file): Instead of command line, recognize an
input type indicator, then use the nonterminal for that type.
(defsym_expr): New nonterminal from code formerly in command_line.
* ldlex.h: Declare parser input type enum and variable.
Don't declare parse_line.
* ldlex.l: Remove unused variables. Make some used ones static
and comment them.
(COMMAND): Start state and its rules removed.
At start of yylex, return input state token if at start of input.
(lex_redirect): Don't need to set yyout.
(ldlex_command): Function removed.
* ldmain.c (main): Instead of calling parse_line, set up the
redirections and call yyparse directly.
* ldmisc.c (vfinfo): If there's no input filename, print nothing, not
"command line".
* lexsup.c: Remove #if 0'd code.
(parse_line): Function removed.
(parse_args): Rewrite to use getopt_long_only.
(set_default_dirlist): New function from code formerly in
ldgram.y:command_line.
(set_section_start): New function.
* emultempl/generic.em, emultempl/gld960.em, emultempl/hppaelf.em,
emultempl/lnk960.em, emultempl/m88kbcs.em: Don't enclose
compiled-in link scripts in "{" and "}", as the grammar no longer
wants them to be.
1994-02-25 04:26:25 +01:00
|
|
|
file:
|
|
|
|
INPUT_SCRIPT script_file
|
|
|
|
| INPUT_MRI_SCRIPT mri_script_file
|
|
|
|
| INPUT_DEFSYM defsym_expr
|
1991-03-21 22:29:06 +01:00
|
|
|
;
|
|
|
|
|
|
|
|
|
Use getopt instead of lex and yacc to parse the command line.
* ld.texinfo (Options): Document changes to option syntax.
* Makefile.in: Update dependencies.
* ldver.c (help): Tweak dashes in usage message.
* ldgram.y (%union): Remove unused members.
Remove %tokens for command line options; add ones for input types.
(command_line): Rules removed.
(file): Instead of command line, recognize an
input type indicator, then use the nonterminal for that type.
(defsym_expr): New nonterminal from code formerly in command_line.
* ldlex.h: Declare parser input type enum and variable.
Don't declare parse_line.
* ldlex.l: Remove unused variables. Make some used ones static
and comment them.
(COMMAND): Start state and its rules removed.
At start of yylex, return input state token if at start of input.
(lex_redirect): Don't need to set yyout.
(ldlex_command): Function removed.
* ldmain.c (main): Instead of calling parse_line, set up the
redirections and call yyparse directly.
* ldmisc.c (vfinfo): If there's no input filename, print nothing, not
"command line".
* lexsup.c: Remove #if 0'd code.
(parse_line): Function removed.
(parse_args): Rewrite to use getopt_long_only.
(set_default_dirlist): New function from code formerly in
ldgram.y:command_line.
(set_section_start): New function.
* emultempl/generic.em, emultempl/gld960.em, emultempl/hppaelf.em,
emultempl/lnk960.em, emultempl/m88kbcs.em: Don't enclose
compiled-in link scripts in "{" and "}", as the grammar no longer
wants them to be.
1994-02-25 04:26:25 +01:00
|
|
|
filename: NAME;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
1992-05-02 03:35:12 +02:00
|
|
|
|
Use getopt instead of lex and yacc to parse the command line.
* ld.texinfo (Options): Document changes to option syntax.
* Makefile.in: Update dependencies.
* ldver.c (help): Tweak dashes in usage message.
* ldgram.y (%union): Remove unused members.
Remove %tokens for command line options; add ones for input types.
(command_line): Rules removed.
(file): Instead of command line, recognize an
input type indicator, then use the nonterminal for that type.
(defsym_expr): New nonterminal from code formerly in command_line.
* ldlex.h: Declare parser input type enum and variable.
Don't declare parse_line.
* ldlex.l: Remove unused variables. Make some used ones static
and comment them.
(COMMAND): Start state and its rules removed.
At start of yylex, return input state token if at start of input.
(lex_redirect): Don't need to set yyout.
(ldlex_command): Function removed.
* ldmain.c (main): Instead of calling parse_line, set up the
redirections and call yyparse directly.
* ldmisc.c (vfinfo): If there's no input filename, print nothing, not
"command line".
* lexsup.c: Remove #if 0'd code.
(parse_line): Function removed.
(parse_args): Rewrite to use getopt_long_only.
(set_default_dirlist): New function from code formerly in
ldgram.y:command_line.
(set_section_start): New function.
* emultempl/generic.em, emultempl/gld960.em, emultempl/hppaelf.em,
emultempl/lnk960.em, emultempl/m88kbcs.em: Don't enclose
compiled-in link scripts in "{" and "}", as the grammar no longer
wants them to be.
1994-02-25 04:26:25 +01:00
|
|
|
defsym_expr:
|
|
|
|
{ ldlex_defsym(); }
|
|
|
|
NAME '=' exp
|
* ldfile.c (ldfile_open_command): Don't try .ld extension.
It wasn't documented (or likely used) and wastes time.
(try_open): If EXTEN is empty, don't try it.
* ldctor.c, lderror.c, ldexp.c, ldfile.c, ldindr.c, ldlang.c,
ldlex.l, ldmain.c, ldmisc.c, ldsym.c, ldver.c, ldwarn.c,
ldwrite.c, lexsup.c, mri.c, relax.c: Replace DEFUN macro calls
with normal function declarations.
* Move *.em to emultempl/*.em. Move *.sh to emulparams/*.sh.
Move *.sc-sh to scripttempl/*.sc.
* {emultempl,emulparams,scripttempl}/README: New files.
* sh.em, st2000.em, z8ksim.em, h8300hms.em, h8500hms.em: Files
removed, replaced with generic.em.
* h8300.sh, h8500.sh, h8300.sc, h8500.sc: Renamed from
h8[35]00hms.s[ch]. Change their contents to omit the "hms".
* *.em (*_get_script): Return script name instead of script contents.
* ldlang.c (lang_process): Change caller.
* ldlex.l, ldgram.y: Recognize -m option.
Check for input files after *all* options in grammar.
* ldmain.c (main): Check for -m options. Add default directory
for -m.
* mkscript.c: File removed.
* genscripts.sh: Take two more parameters, tooldirlib and libdir,
to add to the default LIB_PATH.
Look for input files in the new subdirectories.
Create the scripts in emulations subdirectory and don't filter
them through mkscript.
* configure.in: Make the emulations subdirectory.
* Makefile.in: Account for all of the above changes.
Remove unused .SUFFIXES. Get libgcc.a path with gcc
-print-libgcc-file-name instead of $(libdir)/libgcc.a.
Put CFLAGS last in the compilation rules.
Add -I../bfd to INCLUDES so sysdep.h is found.
* ldfile.c (try_open): If opening without the extension fails,
try with the extension even if -v or -V was given.
had_script is imported (from ldgram.y), not exported.
1993-06-17 22:55:43 +02:00
|
|
|
{
|
Use getopt instead of lex and yacc to parse the command line.
* ld.texinfo (Options): Document changes to option syntax.
* Makefile.in: Update dependencies.
* ldver.c (help): Tweak dashes in usage message.
* ldgram.y (%union): Remove unused members.
Remove %tokens for command line options; add ones for input types.
(command_line): Rules removed.
(file): Instead of command line, recognize an
input type indicator, then use the nonterminal for that type.
(defsym_expr): New nonterminal from code formerly in command_line.
* ldlex.h: Declare parser input type enum and variable.
Don't declare parse_line.
* ldlex.l: Remove unused variables. Make some used ones static
and comment them.
(COMMAND): Start state and its rules removed.
At start of yylex, return input state token if at start of input.
(lex_redirect): Don't need to set yyout.
(ldlex_command): Function removed.
* ldmain.c (main): Instead of calling parse_line, set up the
redirections and call yyparse directly.
* ldmisc.c (vfinfo): If there's no input filename, print nothing, not
"command line".
* lexsup.c: Remove #if 0'd code.
(parse_line): Function removed.
(parse_args): Rewrite to use getopt_long_only.
(set_default_dirlist): New function from code formerly in
ldgram.y:command_line.
(set_section_start): New function.
* emultempl/generic.em, emultempl/gld960.em, emultempl/hppaelf.em,
emultempl/lnk960.em, emultempl/m88kbcs.em: Don't enclose
compiled-in link scripts in "{" and "}", as the grammar no longer
wants them to be.
1994-02-25 04:26:25 +01:00
|
|
|
ldlex_popstate();
|
|
|
|
lang_add_assignment(exp_assop($3,$2,$4));
|
* ldfile.c (ldfile_open_command): Don't try .ld extension.
It wasn't documented (or likely used) and wastes time.
(try_open): If EXTEN is empty, don't try it.
* ldctor.c, lderror.c, ldexp.c, ldfile.c, ldindr.c, ldlang.c,
ldlex.l, ldmain.c, ldmisc.c, ldsym.c, ldver.c, ldwarn.c,
ldwrite.c, lexsup.c, mri.c, relax.c: Replace DEFUN macro calls
with normal function declarations.
* Move *.em to emultempl/*.em. Move *.sh to emulparams/*.sh.
Move *.sc-sh to scripttempl/*.sc.
* {emultempl,emulparams,scripttempl}/README: New files.
* sh.em, st2000.em, z8ksim.em, h8300hms.em, h8500hms.em: Files
removed, replaced with generic.em.
* h8300.sh, h8500.sh, h8300.sc, h8500.sc: Renamed from
h8[35]00hms.s[ch]. Change their contents to omit the "hms".
* *.em (*_get_script): Return script name instead of script contents.
* ldlang.c (lang_process): Change caller.
* ldlex.l, ldgram.y: Recognize -m option.
Check for input files after *all* options in grammar.
* ldmain.c (main): Check for -m options. Add default directory
for -m.
* mkscript.c: File removed.
* genscripts.sh: Take two more parameters, tooldirlib and libdir,
to add to the default LIB_PATH.
Look for input files in the new subdirectories.
Create the scripts in emulations subdirectory and don't filter
them through mkscript.
* configure.in: Make the emulations subdirectory.
* Makefile.in: Account for all of the above changes.
Remove unused .SUFFIXES. Get libgcc.a path with gcc
-print-libgcc-file-name instead of $(libdir)/libgcc.a.
Put CFLAGS last in the compilation rules.
Add -I../bfd to INCLUDES so sysdep.h is found.
* ldfile.c (try_open): If opening without the extension fails,
try with the extension even if -v or -V was given.
had_script is imported (from ldgram.y), not exported.
1993-06-17 22:55:43 +02:00
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
|
1992-04-16 00:23:33 +02:00
|
|
|
/* SYNTAX WITHIN AN MRI SCRIPT FILE */
|
|
|
|
mri_script_file:
|
|
|
|
{ ldlex_mri_script();
|
|
|
|
PUSH_ERROR("MRI style script");
|
|
|
|
}
|
|
|
|
mri_script_lines
|
|
|
|
{ ldlex_popstate();
|
|
|
|
POP_ERROR();
|
|
|
|
}
|
|
|
|
;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
1992-04-16 00:23:33 +02:00
|
|
|
mri_script_lines:
|
1992-04-16 01:11:09 +02:00
|
|
|
mri_script_lines mri_script_command NEWLINE
|
|
|
|
|
|
1992-04-16 00:23:33 +02:00
|
|
|
;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
1992-04-16 01:11:09 +02:00
|
|
|
mri_script_command:
|
1992-04-16 00:23:33 +02:00
|
|
|
CHIP exp
|
|
|
|
| CHIP exp ',' exp
|
|
|
|
| NAME {
|
1992-04-16 01:11:09 +02:00
|
|
|
einfo("%P%F: unrecognised keyword in MRI style script '%s'\n",$1);
|
1992-04-16 00:23:33 +02:00
|
|
|
}
|
|
|
|
| LIST {
|
|
|
|
write_map = true;
|
|
|
|
config.map_filename = "-";
|
|
|
|
}
|
1992-04-16 01:11:09 +02:00
|
|
|
| ORDER ordernamelist
|
|
|
|
| ENDWORD
|
1992-05-02 03:35:12 +02:00
|
|
|
| PUBLIC NAME '=' exp
|
|
|
|
{ mri_public($2, $4); }
|
|
|
|
| PUBLIC NAME ',' exp
|
|
|
|
{ mri_public($2, $4); }
|
|
|
|
| PUBLIC NAME exp
|
|
|
|
{ mri_public($2, $3); }
|
1992-04-16 01:11:09 +02:00
|
|
|
| FORMAT NAME
|
|
|
|
{ mri_format($2); }
|
|
|
|
| SECT NAME ',' exp
|
1992-04-16 00:23:33 +02:00
|
|
|
{ mri_output_section($2, $4);}
|
|
|
|
| SECT NAME exp
|
|
|
|
{ mri_output_section($2, $3);}
|
|
|
|
| SECT NAME '=' exp
|
|
|
|
{ mri_output_section($2, $4);}
|
1993-01-08 23:42:42 +01:00
|
|
|
| ALIGN_K NAME '=' exp
|
|
|
|
{ mri_align($2,$4); }
|
|
|
|
| ALIGNMOD NAME '=' exp
|
|
|
|
{ mri_alignmod($2,$4); }
|
1992-04-16 00:23:33 +02:00
|
|
|
| ABSOLUTE mri_abs_name_list
|
|
|
|
| LOAD mri_load_name_list
|
1992-04-16 01:11:09 +02:00
|
|
|
| NAMEWORD NAME
|
|
|
|
{ mri_name($2); }
|
1992-05-02 03:35:12 +02:00
|
|
|
| ALIAS NAME ',' NAME
|
|
|
|
{ mri_alias($2,$4,0);}
|
|
|
|
| ALIAS NAME ',' INT
|
A major rewrite to move the bulk of the linker into BFD so that
more efficient backend code can be written for specific object
files.
* lderror.c, lderror.h, ldindr.c, ldindr.h, ldsym.c, ldsym.h,
ldwarn.c, ldwarn.h, relax.c, relax.h: Removed.
* ldctor.c, ldctor.h: Complete rewrite.
* ldwrite.c, ldwrite.h: Complete rewrite.
* ld.h (strip_symbols_type, strip_symbols): Removed. Use
link_info.strip instead. Changed all uses.
(discard_locals_type, discard_locals): Removed. Use
link_info.discard instead. Changed all uses.
(ld_config_type): Removed relocateable_output field; use
link_info.relocateable instead; changed all uses. Added stats
field.
(set_asymbol_chain, get_asymbol_chain, get_loader_symbol,
set_loader_symbol): Removed.
* ldexp.h (node_class): Added etree_rel.
(etree_type): Added rel field.
* ldexp.c (exp_print_token): Bracketed table initialization.
(exp_relop): New function.
(fold_name): Use linker hash table rather than ldsym functions.
(exp_fold_tree): Likewise. Also, handle etree_rel case.
(exp_print_tree): Handle etree_rel.
* ldgram.y (strip_symbols, discard_locals): Removed.
(OPTION_stats, OPTION_no_keep_memory): New tokens. Handle them.
(REL): New token. Does not appear in grammar, but needed for
expression code.
(file): Don't call lang_final; it's called by main anyhow.
* ldlex.l: Accept -stats and -no-keep-memory options.
* ldlang.h (fill_type): Make unsigned int, not unsigned short.
* ldlang.c: Consistently use fill_type for fill argument.
(lang_init_script_file, script_file): Removed.
(create_object_symbols): Removed. Use
link_info.create_object_symbols_section instead. Changed all
uses.
(lang_add_keepsyms_file): Removed.
(lookup_name): Call bfd_link_add_symbols instead of
ldmain_open_file_read_symbol.
(wild): Don't iterate over script_file.
(open_output): Create link hash table.
(lang_place_undefineds): Rewrote.
(lang_size_sections): Handle relaxing (doesn't work yet).
(lang_relocate_globals): Removed.
(lang_finish): Use link hash table rather than ldsym functions.
(lang_common): Rewrote.
(lang_one_common): New function.
(ldlang_add_file): Add file to link_info.input_bfds list. Set
usrdata.
(create_symbol): Removed.
(lang_process): Don't call lang_init_script_file. Call
ldctor_build_sets rather than find_constructors. Don't call
lang_relocate_globals.
(lang_abs_symbol_at_beginning_of): Rewrote.
(lang_abs_symbol_at_end_of): Rewrote.
* ldmain.c (had_y): Removed.
(lprefix, lprefix_len): Removed; use link_info fields instead.
Changed all uses.
(multiple_def_count, commons_pending, undefined_global_sym_count,
total_symbols_seen, total_files_seen): Removed.
(link_callbacks, link_info): New variables.
(main): Initialize link_info. Don't call init_bfd_error_vector or
ldsym_init. Don't set now unused variables. Handle -stats.
(get_emulation): Removed obsolete and nonfunctional GNU960 code.
(add_ysym): Rewrote.
(read_entry_symbols, refize, enter_global_ref, enter_file_symbols,
search_library, gnu960_check_format, decode_library_subfile,
linear_library, symdef_library, clear_syms, subfile_wanted_p):
Removed.
(add_keepsyms_file, add_archive_element, multiple_definition,
multiple_common, add_to_set, warning_callback, undefined_symbol,
reloc_overflow, reloc_dangerous, unattached_reloc, notice_ysym):
New functions.
* ldmisc.c (vfinfo): Accept a string for %T, not a symbol. Don't
require symbols for %C; look them up instead.
* emultempl/hppaosf.em: Pass link_info to
hppa_look_for_stubs_in_section.
* Makefile.in: Rebuilt dependencies.
(CFILES): Removed lderror.c, ldindr.c, ldsym.c, ldwarn.c, and
relax.c.
(HFILES): Removed lderror.h, ldindr.h, ldsym.h, ldwarn.h, and
relax.h.
(EMULATION_OFILES): Depend on bfdlink.h, ldmain.h, ldexp.h,
ldlang.h and ldctor.h.
* Makefile.in (ldlex.c): Don't depend on ldgram.h. Remove
declarations of free and malloc from flex output. Change malloc
to ldmalloc in flex output.
1993-12-30 20:51:41 +01:00
|
|
|
{ mri_alias($2,0,(int) $4);}
|
1992-05-02 03:35:12 +02:00
|
|
|
| BASE exp
|
|
|
|
{ mri_base($2); }
|
1993-01-08 23:42:42 +01:00
|
|
|
| TRUNCATE INT
|
A major rewrite to move the bulk of the linker into BFD so that
more efficient backend code can be written for specific object
files.
* lderror.c, lderror.h, ldindr.c, ldindr.h, ldsym.c, ldsym.h,
ldwarn.c, ldwarn.h, relax.c, relax.h: Removed.
* ldctor.c, ldctor.h: Complete rewrite.
* ldwrite.c, ldwrite.h: Complete rewrite.
* ld.h (strip_symbols_type, strip_symbols): Removed. Use
link_info.strip instead. Changed all uses.
(discard_locals_type, discard_locals): Removed. Use
link_info.discard instead. Changed all uses.
(ld_config_type): Removed relocateable_output field; use
link_info.relocateable instead; changed all uses. Added stats
field.
(set_asymbol_chain, get_asymbol_chain, get_loader_symbol,
set_loader_symbol): Removed.
* ldexp.h (node_class): Added etree_rel.
(etree_type): Added rel field.
* ldexp.c (exp_print_token): Bracketed table initialization.
(exp_relop): New function.
(fold_name): Use linker hash table rather than ldsym functions.
(exp_fold_tree): Likewise. Also, handle etree_rel case.
(exp_print_tree): Handle etree_rel.
* ldgram.y (strip_symbols, discard_locals): Removed.
(OPTION_stats, OPTION_no_keep_memory): New tokens. Handle them.
(REL): New token. Does not appear in grammar, but needed for
expression code.
(file): Don't call lang_final; it's called by main anyhow.
* ldlex.l: Accept -stats and -no-keep-memory options.
* ldlang.h (fill_type): Make unsigned int, not unsigned short.
* ldlang.c: Consistently use fill_type for fill argument.
(lang_init_script_file, script_file): Removed.
(create_object_symbols): Removed. Use
link_info.create_object_symbols_section instead. Changed all
uses.
(lang_add_keepsyms_file): Removed.
(lookup_name): Call bfd_link_add_symbols instead of
ldmain_open_file_read_symbol.
(wild): Don't iterate over script_file.
(open_output): Create link hash table.
(lang_place_undefineds): Rewrote.
(lang_size_sections): Handle relaxing (doesn't work yet).
(lang_relocate_globals): Removed.
(lang_finish): Use link hash table rather than ldsym functions.
(lang_common): Rewrote.
(lang_one_common): New function.
(ldlang_add_file): Add file to link_info.input_bfds list. Set
usrdata.
(create_symbol): Removed.
(lang_process): Don't call lang_init_script_file. Call
ldctor_build_sets rather than find_constructors. Don't call
lang_relocate_globals.
(lang_abs_symbol_at_beginning_of): Rewrote.
(lang_abs_symbol_at_end_of): Rewrote.
* ldmain.c (had_y): Removed.
(lprefix, lprefix_len): Removed; use link_info fields instead.
Changed all uses.
(multiple_def_count, commons_pending, undefined_global_sym_count,
total_symbols_seen, total_files_seen): Removed.
(link_callbacks, link_info): New variables.
(main): Initialize link_info. Don't call init_bfd_error_vector or
ldsym_init. Don't set now unused variables. Handle -stats.
(get_emulation): Removed obsolete and nonfunctional GNU960 code.
(add_ysym): Rewrote.
(read_entry_symbols, refize, enter_global_ref, enter_file_symbols,
search_library, gnu960_check_format, decode_library_subfile,
linear_library, symdef_library, clear_syms, subfile_wanted_p):
Removed.
(add_keepsyms_file, add_archive_element, multiple_definition,
multiple_common, add_to_set, warning_callback, undefined_symbol,
reloc_overflow, reloc_dangerous, unattached_reloc, notice_ysym):
New functions.
* ldmisc.c (vfinfo): Accept a string for %T, not a symbol. Don't
require symbols for %C; look them up instead.
* emultempl/hppaosf.em: Pass link_info to
hppa_look_for_stubs_in_section.
* Makefile.in: Rebuilt dependencies.
(CFILES): Removed lderror.c, ldindr.c, ldsym.c, ldwarn.c, and
relax.c.
(HFILES): Removed lderror.h, ldindr.h, ldsym.h, ldwarn.h, and
relax.h.
(EMULATION_OFILES): Depend on bfdlink.h, ldmain.h, ldexp.h,
ldlang.h and ldctor.h.
* Makefile.in (ldlex.c): Don't depend on ldgram.h. Remove
declarations of free and malloc from flex output. Change malloc
to ldmalloc in flex output.
1993-12-30 20:51:41 +01:00
|
|
|
{ mri_truncate((unsigned int) $2); }
|
1992-04-16 01:11:09 +02:00
|
|
|
|
|
|
|
|
;
|
|
|
|
|
|
|
|
ordernamelist:
|
|
|
|
ordernamelist ',' NAME { mri_order($3); }
|
|
|
|
| ordernamelist NAME { mri_order($2); }
|
|
|
|
|
|
1992-04-16 00:23:33 +02:00
|
|
|
;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
1992-04-16 00:23:33 +02:00
|
|
|
mri_load_name_list:
|
|
|
|
NAME
|
|
|
|
{ mri_load($1); }
|
|
|
|
| mri_load_name_list ',' NAME { mri_load($3); }
|
|
|
|
;
|
1991-04-14 05:22:42 +02:00
|
|
|
|
1992-04-16 00:23:33 +02:00
|
|
|
mri_abs_name_list:
|
|
|
|
NAME
|
|
|
|
{ mri_only_load($1); }
|
|
|
|
| mri_abs_name_list ',' NAME
|
|
|
|
{ mri_only_load($3); }
|
|
|
|
;
|
1991-04-14 05:22:42 +02:00
|
|
|
|
1992-04-16 00:23:33 +02:00
|
|
|
script_file:
|
1992-04-05 03:47:16 +02:00
|
|
|
{
|
|
|
|
ldlex_both();
|
|
|
|
}
|
1992-04-16 00:23:33 +02:00
|
|
|
ifile_list
|
1992-04-05 03:47:16 +02:00
|
|
|
{
|
|
|
|
ldlex_popstate();
|
|
|
|
}
|
1991-04-14 05:22:42 +02:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
ifile_list:
|
1992-04-16 00:23:33 +02:00
|
|
|
ifile_list ifile_p1
|
1991-04-17 02:49:44 +02:00
|
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ifile_p1:
|
|
|
|
memory
|
|
|
|
| sections
|
|
|
|
| startup
|
|
|
|
| high_level_library
|
|
|
|
| low_level_library
|
|
|
|
| floating_point_support
|
1991-04-18 02:06:26 +02:00
|
|
|
| statement_anywhere
|
1992-04-05 03:47:16 +02:00
|
|
|
| ';'
|
1991-03-21 22:29:06 +01:00
|
|
|
| TARGET_K '(' NAME ')'
|
|
|
|
{ lang_add_target($3); }
|
|
|
|
| SEARCH_DIR '(' filename ')'
|
|
|
|
{ ldfile_add_library_path($3); }
|
|
|
|
| OUTPUT '(' filename ')'
|
1993-12-01 18:22:03 +01:00
|
|
|
{ lang_add_output($3, 1); }
|
|
|
|
| OUTPUT_FORMAT '(' NAME ')'
|
1993-07-08 20:00:11 +02:00
|
|
|
{ lang_add_output_format($3, 1); }
|
1993-12-01 18:22:03 +01:00
|
|
|
| OUTPUT_ARCH '(' NAME ')'
|
1991-04-23 17:59:24 +02:00
|
|
|
{ ldfile_set_output_arch($3); }
|
1991-04-17 02:49:44 +02:00
|
|
|
| FORCE_COMMON_ALLOCATION
|
|
|
|
{ command_line.force_common_definition = true ; }
|
1991-03-21 22:29:06 +01:00
|
|
|
| INPUT '(' input_list ')'
|
|
|
|
| MAP '(' filename ')'
|
|
|
|
{ lang_add_map($3); }
|
1993-01-08 23:42:42 +01:00
|
|
|
| INCLUDE filename
|
|
|
|
{ ldfile_open_command_file($2); } ifile_list END
|
1991-03-21 22:29:06 +01:00
|
|
|
;
|
|
|
|
|
|
|
|
input_list:
|
|
|
|
NAME
|
1993-12-01 18:22:03 +01:00
|
|
|
{ lang_add_input_file($1,lang_input_file_is_search_file_enum,
|
1991-03-21 22:29:06 +01:00
|
|
|
(char *)NULL); }
|
|
|
|
| input_list ',' NAME
|
1993-12-01 18:22:03 +01:00
|
|
|
{ lang_add_input_file($3,lang_input_file_is_search_file_enum,
|
1991-03-21 22:29:06 +01:00
|
|
|
(char *)NULL); }
|
1992-04-16 00:23:33 +02:00
|
|
|
| input_list NAME
|
1993-12-01 18:22:03 +01:00
|
|
|
{ lang_add_input_file($2,lang_input_file_is_search_file_enum,
|
1991-03-21 22:29:06 +01:00
|
|
|
(char *)NULL); }
|
|
|
|
;
|
|
|
|
|
|
|
|
sections:
|
1992-04-16 00:23:33 +02:00
|
|
|
SECTIONS '{' sec_or_group_p1 '}'
|
1991-03-21 22:29:06 +01:00
|
|
|
;
|
|
|
|
|
|
|
|
sec_or_group_p1:
|
|
|
|
sec_or_group_p1 section
|
|
|
|
| sec_or_group_p1 statement_anywhere
|
|
|
|
|
|
|
|
|
;
|
|
|
|
|
|
|
|
statement_anywhere:
|
|
|
|
ENTRY '(' NAME ')'
|
|
|
|
{ lang_add_entry($3); }
|
|
|
|
| assignment end
|
|
|
|
;
|
|
|
|
|
1991-04-14 05:22:42 +02:00
|
|
|
file_NAME_list:
|
|
|
|
NAME
|
|
|
|
{ lang_add_wild($1, current_file); }
|
1992-04-16 00:23:33 +02:00
|
|
|
| file_NAME_list opt_comma NAME
|
1991-04-14 05:22:42 +02:00
|
|
|
{ lang_add_wild($3, current_file); }
|
|
|
|
;
|
|
|
|
|
|
|
|
input_section_spec:
|
|
|
|
NAME
|
|
|
|
{
|
|
|
|
lang_add_wild((char *)NULL, $1);
|
|
|
|
}
|
1992-04-16 00:23:33 +02:00
|
|
|
| '['
|
1991-04-14 05:22:42 +02:00
|
|
|
{
|
|
|
|
current_file = (char *)NULL;
|
|
|
|
}
|
1992-04-16 00:23:33 +02:00
|
|
|
file_NAME_list
|
|
|
|
']'
|
1991-04-14 05:22:42 +02:00
|
|
|
| NAME
|
|
|
|
{
|
1992-04-16 00:23:33 +02:00
|
|
|
current_file =$1;
|
|
|
|
}
|
1991-04-14 05:22:42 +02:00
|
|
|
'(' file_NAME_list ')'
|
1992-04-16 00:23:33 +02:00
|
|
|
| '*'
|
|
|
|
{
|
1991-04-14 05:22:42 +02:00
|
|
|
current_file = (char *)NULL;
|
1992-04-16 00:23:33 +02:00
|
|
|
}
|
1991-04-14 05:22:42 +02:00
|
|
|
'(' file_NAME_list ')'
|
|
|
|
;
|
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
statement:
|
1993-03-31 00:45:39 +02:00
|
|
|
assignment end
|
|
|
|
| CREATE_OBJECT_SYMBOLS
|
1991-04-17 02:49:44 +02:00
|
|
|
{
|
1993-03-31 00:45:39 +02:00
|
|
|
lang_add_attribute(lang_object_symbols_statement_enum);
|
|
|
|
}
|
|
|
|
| ';'
|
|
|
|
| CONSTRUCTORS
|
1991-10-11 12:28:27 +01:00
|
|
|
{
|
1992-04-16 00:23:33 +02:00
|
|
|
|
1993-03-31 00:45:39 +02:00
|
|
|
lang_add_attribute(lang_constructors_statement_enum);
|
|
|
|
}
|
|
|
|
| input_section_spec
|
|
|
|
| length '(' exp ')'
|
1991-03-21 22:29:06 +01:00
|
|
|
{
|
A major rewrite to move the bulk of the linker into BFD so that
more efficient backend code can be written for specific object
files.
* lderror.c, lderror.h, ldindr.c, ldindr.h, ldsym.c, ldsym.h,
ldwarn.c, ldwarn.h, relax.c, relax.h: Removed.
* ldctor.c, ldctor.h: Complete rewrite.
* ldwrite.c, ldwrite.h: Complete rewrite.
* ld.h (strip_symbols_type, strip_symbols): Removed. Use
link_info.strip instead. Changed all uses.
(discard_locals_type, discard_locals): Removed. Use
link_info.discard instead. Changed all uses.
(ld_config_type): Removed relocateable_output field; use
link_info.relocateable instead; changed all uses. Added stats
field.
(set_asymbol_chain, get_asymbol_chain, get_loader_symbol,
set_loader_symbol): Removed.
* ldexp.h (node_class): Added etree_rel.
(etree_type): Added rel field.
* ldexp.c (exp_print_token): Bracketed table initialization.
(exp_relop): New function.
(fold_name): Use linker hash table rather than ldsym functions.
(exp_fold_tree): Likewise. Also, handle etree_rel case.
(exp_print_tree): Handle etree_rel.
* ldgram.y (strip_symbols, discard_locals): Removed.
(OPTION_stats, OPTION_no_keep_memory): New tokens. Handle them.
(REL): New token. Does not appear in grammar, but needed for
expression code.
(file): Don't call lang_final; it's called by main anyhow.
* ldlex.l: Accept -stats and -no-keep-memory options.
* ldlang.h (fill_type): Make unsigned int, not unsigned short.
* ldlang.c: Consistently use fill_type for fill argument.
(lang_init_script_file, script_file): Removed.
(create_object_symbols): Removed. Use
link_info.create_object_symbols_section instead. Changed all
uses.
(lang_add_keepsyms_file): Removed.
(lookup_name): Call bfd_link_add_symbols instead of
ldmain_open_file_read_symbol.
(wild): Don't iterate over script_file.
(open_output): Create link hash table.
(lang_place_undefineds): Rewrote.
(lang_size_sections): Handle relaxing (doesn't work yet).
(lang_relocate_globals): Removed.
(lang_finish): Use link hash table rather than ldsym functions.
(lang_common): Rewrote.
(lang_one_common): New function.
(ldlang_add_file): Add file to link_info.input_bfds list. Set
usrdata.
(create_symbol): Removed.
(lang_process): Don't call lang_init_script_file. Call
ldctor_build_sets rather than find_constructors. Don't call
lang_relocate_globals.
(lang_abs_symbol_at_beginning_of): Rewrote.
(lang_abs_symbol_at_end_of): Rewrote.
* ldmain.c (had_y): Removed.
(lprefix, lprefix_len): Removed; use link_info fields instead.
Changed all uses.
(multiple_def_count, commons_pending, undefined_global_sym_count,
total_symbols_seen, total_files_seen): Removed.
(link_callbacks, link_info): New variables.
(main): Initialize link_info. Don't call init_bfd_error_vector or
ldsym_init. Don't set now unused variables. Handle -stats.
(get_emulation): Removed obsolete and nonfunctional GNU960 code.
(add_ysym): Rewrote.
(read_entry_symbols, refize, enter_global_ref, enter_file_symbols,
search_library, gnu960_check_format, decode_library_subfile,
linear_library, symdef_library, clear_syms, subfile_wanted_p):
Removed.
(add_keepsyms_file, add_archive_element, multiple_definition,
multiple_common, add_to_set, warning_callback, undefined_symbol,
reloc_overflow, reloc_dangerous, unattached_reloc, notice_ysym):
New functions.
* ldmisc.c (vfinfo): Accept a string for %T, not a symbol. Don't
require symbols for %C; look them up instead.
* emultempl/hppaosf.em: Pass link_info to
hppa_look_for_stubs_in_section.
* Makefile.in: Rebuilt dependencies.
(CFILES): Removed lderror.c, ldindr.c, ldsym.c, ldwarn.c, and
relax.c.
(HFILES): Removed lderror.h, ldindr.h, ldsym.h, ldwarn.h, and
relax.h.
(EMULATION_OFILES): Depend on bfdlink.h, ldmain.h, ldexp.h,
ldlang.h and ldctor.h.
* Makefile.in (ldlex.c): Don't depend on ldgram.h. Remove
declarations of free and malloc from flex output. Change malloc
to ldmalloc in flex output.
1993-12-30 20:51:41 +01:00
|
|
|
lang_add_data((int) $1,$3);
|
1991-03-21 22:29:06 +01:00
|
|
|
}
|
|
|
|
|
1993-03-31 00:45:39 +02:00
|
|
|
| FILL '(' exp ')'
|
1991-03-21 22:29:06 +01:00
|
|
|
{
|
|
|
|
lang_add_fill
|
1993-03-31 00:45:39 +02:00
|
|
|
(exp_get_value_int($3,
|
1991-03-21 22:29:06 +01:00
|
|
|
0,
|
|
|
|
"fill value",
|
1993-03-31 00:45:39 +02:00
|
|
|
lang_first_phase_enum));
|
1991-03-21 22:29:06 +01:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
1993-03-31 00:45:39 +02:00
|
|
|
statement_list:
|
|
|
|
statement_list statement
|
|
|
|
| statement
|
|
|
|
;
|
|
|
|
|
* ldfile.c (ldfile_open_command): Don't try .ld extension.
It wasn't documented (or likely used) and wastes time.
(try_open): If EXTEN is empty, don't try it.
* ldctor.c, lderror.c, ldexp.c, ldfile.c, ldindr.c, ldlang.c,
ldlex.l, ldmain.c, ldmisc.c, ldsym.c, ldver.c, ldwarn.c,
ldwrite.c, lexsup.c, mri.c, relax.c: Replace DEFUN macro calls
with normal function declarations.
* Move *.em to emultempl/*.em. Move *.sh to emulparams/*.sh.
Move *.sc-sh to scripttempl/*.sc.
* {emultempl,emulparams,scripttempl}/README: New files.
* sh.em, st2000.em, z8ksim.em, h8300hms.em, h8500hms.em: Files
removed, replaced with generic.em.
* h8300.sh, h8500.sh, h8300.sc, h8500.sc: Renamed from
h8[35]00hms.s[ch]. Change their contents to omit the "hms".
* *.em (*_get_script): Return script name instead of script contents.
* ldlang.c (lang_process): Change caller.
* ldlex.l, ldgram.y: Recognize -m option.
Check for input files after *all* options in grammar.
* ldmain.c (main): Check for -m options. Add default directory
for -m.
* mkscript.c: File removed.
* genscripts.sh: Take two more parameters, tooldirlib and libdir,
to add to the default LIB_PATH.
Look for input files in the new subdirectories.
Create the scripts in emulations subdirectory and don't filter
them through mkscript.
* configure.in: Make the emulations subdirectory.
* Makefile.in: Account for all of the above changes.
Remove unused .SUFFIXES. Get libgcc.a path with gcc
-print-libgcc-file-name instead of $(libdir)/libgcc.a.
Put CFLAGS last in the compilation rules.
Add -I../bfd to INCLUDES so sysdep.h is found.
* ldfile.c (try_open): If opening without the extension fails,
try with the extension even if -v or -V was given.
had_script is imported (from ldgram.y), not exported.
1993-06-17 22:55:43 +02:00
|
|
|
statement_list_opt:
|
|
|
|
/* empty */
|
|
|
|
| statement_list
|
|
|
|
;
|
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
length:
|
1994-01-06 20:38:36 +01:00
|
|
|
QUAD
|
|
|
|
{ $$ = $1; }
|
|
|
|
| LONG
|
1991-03-21 22:29:06 +01:00
|
|
|
{ $$ = $1; }
|
1992-04-16 00:23:33 +02:00
|
|
|
| SHORT
|
1991-03-21 22:29:06 +01:00
|
|
|
{ $$ = $1; }
|
1992-04-16 00:23:33 +02:00
|
|
|
| BYTE
|
1991-03-21 22:29:06 +01:00
|
|
|
{ $$ = $1; }
|
|
|
|
;
|
|
|
|
|
|
|
|
fill_opt:
|
1992-04-05 03:47:16 +02:00
|
|
|
'=' mustbe_exp
|
1991-03-21 22:29:06 +01:00
|
|
|
{
|
|
|
|
$$ = exp_get_value_int($2,
|
|
|
|
0,
|
|
|
|
"fill value",
|
1992-04-16 00:23:33 +02:00
|
|
|
lang_first_phase_enum);
|
1991-03-21 22:29:06 +01:00
|
|
|
}
|
1992-04-16 00:23:33 +02:00
|
|
|
| { $$ = 0; }
|
1991-03-21 22:29:06 +01:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assign_op:
|
|
|
|
PLUSEQ
|
|
|
|
{ $$ = '+'; }
|
1992-04-16 00:23:33 +02:00
|
|
|
| MINUSEQ
|
1991-03-21 22:29:06 +01:00
|
|
|
{ $$ = '-'; }
|
|
|
|
| MULTEQ
|
|
|
|
{ $$ = '*'; }
|
|
|
|
| DIVEQ
|
|
|
|
{ $$ = '/'; }
|
|
|
|
| LSHIFTEQ
|
|
|
|
{ $$ = LSHIFT; }
|
|
|
|
| RSHIFTEQ
|
|
|
|
{ $$ = RSHIFT; }
|
|
|
|
| ANDEQ
|
|
|
|
{ $$ = '&'; }
|
|
|
|
| OREQ
|
|
|
|
{ $$ = '|'; }
|
|
|
|
|
|
|
|
;
|
|
|
|
|
1992-04-05 03:47:16 +02:00
|
|
|
end: ';' | ','
|
1991-03-21 22:29:06 +01:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
assignment:
|
1992-04-16 00:23:33 +02:00
|
|
|
NAME '=' mustbe_exp
|
1991-03-21 22:29:06 +01:00
|
|
|
{
|
|
|
|
lang_add_assignment(exp_assop($2,$1,$3));
|
|
|
|
}
|
1992-04-16 00:23:33 +02:00
|
|
|
| NAME assign_op mustbe_exp
|
1991-03-21 22:29:06 +01:00
|
|
|
{
|
1992-04-16 00:23:33 +02:00
|
|
|
|
|
|
|
lang_add_assignment(exp_assop('=',$1,exp_binop($2,exp_nameop(NAME,$1),$3)));
|
1991-03-21 22:29:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
opt_comma:
|
|
|
|
',' | ;
|
|
|
|
|
|
|
|
|
|
|
|
memory:
|
1992-04-16 00:23:33 +02:00
|
|
|
MEMORY '{' memory_spec memory_spec_list '}'
|
1991-03-21 22:29:06 +01:00
|
|
|
;
|
|
|
|
|
|
|
|
memory_spec_list:
|
1992-04-16 00:23:33 +02:00
|
|
|
memory_spec_list memory_spec
|
1991-03-21 22:29:06 +01:00
|
|
|
| memory_spec_list ',' memory_spec
|
|
|
|
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
1992-04-16 00:23:33 +02:00
|
|
|
memory_spec: NAME
|
1991-03-21 22:29:06 +01:00
|
|
|
{ region = lang_memory_region_lookup($1); }
|
1992-04-16 00:23:33 +02:00
|
|
|
attributes_opt ':'
|
1992-04-05 03:47:16 +02:00
|
|
|
origin_spec opt_comma length_spec
|
1991-03-21 22:29:06 +01:00
|
|
|
|
1992-04-16 00:23:33 +02:00
|
|
|
; origin_spec:
|
1992-04-05 03:47:16 +02:00
|
|
|
ORIGIN '=' mustbe_exp
|
1991-03-21 22:29:06 +01:00
|
|
|
{ region->current =
|
|
|
|
region->origin =
|
1992-04-16 00:23:33 +02:00
|
|
|
exp_get_vma($3, 0L,"origin", lang_first_phase_enum);
|
|
|
|
}
|
|
|
|
; length_spec:
|
|
|
|
LENGTH '=' mustbe_exp
|
|
|
|
{ region->length = exp_get_vma($3,
|
1991-03-21 22:29:06 +01:00
|
|
|
~((bfd_vma)0),
|
|
|
|
"length",
|
|
|
|
lang_first_phase_enum);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
attributes_opt:
|
|
|
|
'(' NAME ')'
|
|
|
|
{
|
|
|
|
lang_set_flags(®ion->flags, $2);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
;
|
|
|
|
|
|
|
|
startup:
|
|
|
|
STARTUP '(' filename ')'
|
|
|
|
{ lang_startup($3); }
|
|
|
|
;
|
|
|
|
|
|
|
|
high_level_library:
|
1992-04-16 00:23:33 +02:00
|
|
|
HLL '(' high_level_library_NAME_list ')'
|
|
|
|
| HLL '(' ')'
|
1991-03-21 22:29:06 +01:00
|
|
|
{ ldemul_hll((char *)NULL); }
|
|
|
|
;
|
|
|
|
|
|
|
|
high_level_library_NAME_list:
|
1992-04-16 00:23:33 +02:00
|
|
|
high_level_library_NAME_list opt_comma filename
|
1991-03-21 22:29:06 +01:00
|
|
|
{ ldemul_hll($3); }
|
|
|
|
| filename
|
|
|
|
{ ldemul_hll($1); }
|
|
|
|
|
|
|
|
;
|
|
|
|
|
|
|
|
low_level_library:
|
|
|
|
SYSLIB '(' low_level_library_NAME_list ')'
|
1992-04-16 00:23:33 +02:00
|
|
|
; low_level_library_NAME_list:
|
1991-03-21 22:29:06 +01:00
|
|
|
low_level_library_NAME_list opt_comma filename
|
1992-04-16 00:23:33 +02:00
|
|
|
{ ldemul_syslib($3); }
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
|
|
|
;
|
|
|
|
|
|
|
|
floating_point_support:
|
|
|
|
FLOAT
|
|
|
|
{ lang_float(true); }
|
|
|
|
| NOFLOAT
|
1992-04-16 00:23:33 +02:00
|
|
|
{ lang_float(false); }
|
1991-03-21 22:29:06 +01:00
|
|
|
;
|
|
|
|
|
|
|
|
|
1992-04-16 00:23:33 +02:00
|
|
|
mustbe_exp: { ldlex_expression(); }
|
1992-04-05 03:47:16 +02:00
|
|
|
exp
|
|
|
|
{ ldlex_popstate(); $$=$2;}
|
|
|
|
;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
|
|
exp :
|
1992-04-16 00:23:33 +02:00
|
|
|
'-' exp %prec UNARY
|
1991-03-21 22:29:06 +01:00
|
|
|
{ $$ = exp_unop('-', $2); }
|
1992-04-05 03:47:16 +02:00
|
|
|
| '(' exp ')'
|
1991-03-21 22:29:06 +01:00
|
|
|
{ $$ = $2; }
|
|
|
|
| NEXT '(' exp ')' %prec UNARY
|
A major rewrite to move the bulk of the linker into BFD so that
more efficient backend code can be written for specific object
files.
* lderror.c, lderror.h, ldindr.c, ldindr.h, ldsym.c, ldsym.h,
ldwarn.c, ldwarn.h, relax.c, relax.h: Removed.
* ldctor.c, ldctor.h: Complete rewrite.
* ldwrite.c, ldwrite.h: Complete rewrite.
* ld.h (strip_symbols_type, strip_symbols): Removed. Use
link_info.strip instead. Changed all uses.
(discard_locals_type, discard_locals): Removed. Use
link_info.discard instead. Changed all uses.
(ld_config_type): Removed relocateable_output field; use
link_info.relocateable instead; changed all uses. Added stats
field.
(set_asymbol_chain, get_asymbol_chain, get_loader_symbol,
set_loader_symbol): Removed.
* ldexp.h (node_class): Added etree_rel.
(etree_type): Added rel field.
* ldexp.c (exp_print_token): Bracketed table initialization.
(exp_relop): New function.
(fold_name): Use linker hash table rather than ldsym functions.
(exp_fold_tree): Likewise. Also, handle etree_rel case.
(exp_print_tree): Handle etree_rel.
* ldgram.y (strip_symbols, discard_locals): Removed.
(OPTION_stats, OPTION_no_keep_memory): New tokens. Handle them.
(REL): New token. Does not appear in grammar, but needed for
expression code.
(file): Don't call lang_final; it's called by main anyhow.
* ldlex.l: Accept -stats and -no-keep-memory options.
* ldlang.h (fill_type): Make unsigned int, not unsigned short.
* ldlang.c: Consistently use fill_type for fill argument.
(lang_init_script_file, script_file): Removed.
(create_object_symbols): Removed. Use
link_info.create_object_symbols_section instead. Changed all
uses.
(lang_add_keepsyms_file): Removed.
(lookup_name): Call bfd_link_add_symbols instead of
ldmain_open_file_read_symbol.
(wild): Don't iterate over script_file.
(open_output): Create link hash table.
(lang_place_undefineds): Rewrote.
(lang_size_sections): Handle relaxing (doesn't work yet).
(lang_relocate_globals): Removed.
(lang_finish): Use link hash table rather than ldsym functions.
(lang_common): Rewrote.
(lang_one_common): New function.
(ldlang_add_file): Add file to link_info.input_bfds list. Set
usrdata.
(create_symbol): Removed.
(lang_process): Don't call lang_init_script_file. Call
ldctor_build_sets rather than find_constructors. Don't call
lang_relocate_globals.
(lang_abs_symbol_at_beginning_of): Rewrote.
(lang_abs_symbol_at_end_of): Rewrote.
* ldmain.c (had_y): Removed.
(lprefix, lprefix_len): Removed; use link_info fields instead.
Changed all uses.
(multiple_def_count, commons_pending, undefined_global_sym_count,
total_symbols_seen, total_files_seen): Removed.
(link_callbacks, link_info): New variables.
(main): Initialize link_info. Don't call init_bfd_error_vector or
ldsym_init. Don't set now unused variables. Handle -stats.
(get_emulation): Removed obsolete and nonfunctional GNU960 code.
(add_ysym): Rewrote.
(read_entry_symbols, refize, enter_global_ref, enter_file_symbols,
search_library, gnu960_check_format, decode_library_subfile,
linear_library, symdef_library, clear_syms, subfile_wanted_p):
Removed.
(add_keepsyms_file, add_archive_element, multiple_definition,
multiple_common, add_to_set, warning_callback, undefined_symbol,
reloc_overflow, reloc_dangerous, unattached_reloc, notice_ysym):
New functions.
* ldmisc.c (vfinfo): Accept a string for %T, not a symbol. Don't
require symbols for %C; look them up instead.
* emultempl/hppaosf.em: Pass link_info to
hppa_look_for_stubs_in_section.
* Makefile.in: Rebuilt dependencies.
(CFILES): Removed lderror.c, ldindr.c, ldsym.c, ldwarn.c, and
relax.c.
(HFILES): Removed lderror.h, ldindr.h, ldsym.h, ldwarn.h, and
relax.h.
(EMULATION_OFILES): Depend on bfdlink.h, ldmain.h, ldexp.h,
ldlang.h and ldctor.h.
* Makefile.in (ldlex.c): Don't depend on ldgram.h. Remove
declarations of free and malloc from flex output. Change malloc
to ldmalloc in flex output.
1993-12-30 20:51:41 +01:00
|
|
|
{ $$ = exp_unop((int) $1,$3); }
|
1992-04-16 00:23:33 +02:00
|
|
|
| '!' exp %prec UNARY
|
1991-03-21 22:29:06 +01:00
|
|
|
{ $$ = exp_unop('!', $2); }
|
1992-04-16 00:23:33 +02:00
|
|
|
| '+' exp %prec UNARY
|
1991-03-21 22:29:06 +01:00
|
|
|
{ $$ = $2; }
|
1992-04-16 00:23:33 +02:00
|
|
|
| '~' exp %prec UNARY
|
1991-03-21 22:29:06 +01:00
|
|
|
{ $$ = exp_unop('~', $2);}
|
|
|
|
|
|
|
|
| exp '*' exp
|
|
|
|
{ $$ = exp_binop('*', $1, $3); }
|
|
|
|
| exp '/' exp
|
|
|
|
{ $$ = exp_binop('/', $1, $3); }
|
|
|
|
| exp '%' exp
|
|
|
|
{ $$ = exp_binop('%', $1, $3); }
|
|
|
|
| exp '+' exp
|
|
|
|
{ $$ = exp_binop('+', $1, $3); }
|
|
|
|
| exp '-' exp
|
1992-04-16 00:23:33 +02:00
|
|
|
{ $$ = exp_binop('-' , $1, $3); }
|
1991-03-21 22:29:06 +01:00
|
|
|
| exp LSHIFT exp
|
|
|
|
{ $$ = exp_binop(LSHIFT , $1, $3); }
|
|
|
|
| exp RSHIFT exp
|
|
|
|
{ $$ = exp_binop(RSHIFT , $1, $3); }
|
|
|
|
| exp EQ exp
|
|
|
|
{ $$ = exp_binop(EQ , $1, $3); }
|
|
|
|
| exp NE exp
|
|
|
|
{ $$ = exp_binop(NE , $1, $3); }
|
|
|
|
| exp LE exp
|
|
|
|
{ $$ = exp_binop(LE , $1, $3); }
|
1992-04-16 00:23:33 +02:00
|
|
|
| exp GE exp
|
1991-03-21 22:29:06 +01:00
|
|
|
{ $$ = exp_binop(GE , $1, $3); }
|
|
|
|
| exp '<' exp
|
|
|
|
{ $$ = exp_binop('<' , $1, $3); }
|
|
|
|
| exp '>' exp
|
|
|
|
{ $$ = exp_binop('>' , $1, $3); }
|
|
|
|
| exp '&' exp
|
|
|
|
{ $$ = exp_binop('&' , $1, $3); }
|
|
|
|
| exp '^' exp
|
|
|
|
{ $$ = exp_binop('^' , $1, $3); }
|
|
|
|
| exp '|' exp
|
|
|
|
{ $$ = exp_binop('|' , $1, $3); }
|
|
|
|
| exp '?' exp ':' exp
|
|
|
|
{ $$ = exp_trinop('?' , $1, $3, $5); }
|
|
|
|
| exp ANDAND exp
|
|
|
|
{ $$ = exp_binop(ANDAND , $1, $3); }
|
|
|
|
| exp OROR exp
|
|
|
|
{ $$ = exp_binop(OROR , $1, $3); }
|
|
|
|
| DEFINED '(' NAME ')'
|
|
|
|
{ $$ = exp_nameop(DEFINED, $3); }
|
|
|
|
| INT
|
|
|
|
{ $$ = exp_intop($1); }
|
1992-04-16 00:23:33 +02:00
|
|
|
| SIZEOF_HEADERS
|
1991-04-24 22:53:36 +02:00
|
|
|
{ $$ = exp_nameop(SIZEOF_HEADERS,0); }
|
1991-03-21 22:29:06 +01:00
|
|
|
|
1992-04-16 00:23:33 +02:00
|
|
|
| SIZEOF '(' NAME ')'
|
1991-10-11 12:28:27 +01:00
|
|
|
{ $$ = exp_nameop(SIZEOF,$3); }
|
1991-03-21 22:29:06 +01:00
|
|
|
| ADDR '(' NAME ')'
|
1991-10-11 12:28:27 +01:00
|
|
|
{ $$ = exp_nameop(ADDR,$3); }
|
1992-08-07 21:34:59 +02:00
|
|
|
| ABSOLUTE '(' exp ')'
|
|
|
|
{ $$ = exp_unop(ABSOLUTE, $3); }
|
1991-03-21 22:29:06 +01:00
|
|
|
| ALIGN_K '(' exp ')'
|
1991-10-11 12:28:27 +01:00
|
|
|
{ $$ = exp_unop(ALIGN_K,$3); }
|
1991-03-21 22:29:06 +01:00
|
|
|
| NAME
|
|
|
|
{ $$ = exp_nameop(NAME,$1); }
|
|
|
|
;
|
|
|
|
|
|
|
|
|
1993-03-31 00:45:39 +02:00
|
|
|
opt_at:
|
|
|
|
AT '(' exp ')' { $$ = $3; }
|
|
|
|
| { $$ = 0; }
|
|
|
|
;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
1992-04-16 00:23:33 +02:00
|
|
|
section: NAME { ldlex_expression(); }
|
1993-03-31 00:45:39 +02:00
|
|
|
opt_exp_with_type
|
|
|
|
opt_at { ldlex_popstate(); }
|
1993-01-08 23:42:42 +01:00
|
|
|
'{'
|
1993-03-31 00:45:39 +02:00
|
|
|
{
|
|
|
|
lang_enter_output_section_statement($1,$3,typebits,0,0,0,$4);
|
|
|
|
}
|
* ldfile.c (ldfile_open_command): Don't try .ld extension.
It wasn't documented (or likely used) and wastes time.
(try_open): If EXTEN is empty, don't try it.
* ldctor.c, lderror.c, ldexp.c, ldfile.c, ldindr.c, ldlang.c,
ldlex.l, ldmain.c, ldmisc.c, ldsym.c, ldver.c, ldwarn.c,
ldwrite.c, lexsup.c, mri.c, relax.c: Replace DEFUN macro calls
with normal function declarations.
* Move *.em to emultempl/*.em. Move *.sh to emulparams/*.sh.
Move *.sc-sh to scripttempl/*.sc.
* {emultempl,emulparams,scripttempl}/README: New files.
* sh.em, st2000.em, z8ksim.em, h8300hms.em, h8500hms.em: Files
removed, replaced with generic.em.
* h8300.sh, h8500.sh, h8300.sc, h8500.sc: Renamed from
h8[35]00hms.s[ch]. Change their contents to omit the "hms".
* *.em (*_get_script): Return script name instead of script contents.
* ldlang.c (lang_process): Change caller.
* ldlex.l, ldgram.y: Recognize -m option.
Check for input files after *all* options in grammar.
* ldmain.c (main): Check for -m options. Add default directory
for -m.
* mkscript.c: File removed.
* genscripts.sh: Take two more parameters, tooldirlib and libdir,
to add to the default LIB_PATH.
Look for input files in the new subdirectories.
Create the scripts in emulations subdirectory and don't filter
them through mkscript.
* configure.in: Make the emulations subdirectory.
* Makefile.in: Account for all of the above changes.
Remove unused .SUFFIXES. Get libgcc.a path with gcc
-print-libgcc-file-name instead of $(libdir)/libgcc.a.
Put CFLAGS last in the compilation rules.
Add -I../bfd to INCLUDES so sysdep.h is found.
* ldfile.c (try_open): If opening without the extension fails,
try with the extension even if -v or -V was given.
had_script is imported (from ldgram.y), not exported.
1993-06-17 22:55:43 +02:00
|
|
|
statement_list_opt
|
1994-02-26 06:32:29 +01:00
|
|
|
'}' {ldlex_expression();} memspec_opt fill_opt
|
1991-03-21 22:29:06 +01:00
|
|
|
{
|
1992-05-02 03:35:12 +02:00
|
|
|
ldlex_popstate();
|
1994-02-26 06:32:29 +01:00
|
|
|
lang_leave_output_section_statement($12, $11);
|
1991-03-21 22:29:06 +01:00
|
|
|
}
|
1992-05-02 03:35:12 +02:00
|
|
|
opt_comma
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
|
|
;
|
|
|
|
|
1993-01-08 23:42:42 +01:00
|
|
|
type:
|
|
|
|
NOLOAD { typebits = SEC_NEVER_LOAD; }
|
|
|
|
| DSECT { typebits = 0; }
|
|
|
|
| COPY { typebits = 0; }
|
|
|
|
| INFO { typebits = 0; }
|
|
|
|
| OVERLAY { typebits = 0; }
|
|
|
|
| { typebits = SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS; }
|
1991-10-11 12:28:27 +01:00
|
|
|
;
|
|
|
|
|
1991-05-07 21:16:33 +02:00
|
|
|
|
1993-01-08 23:42:42 +01:00
|
|
|
opt_exp_with_type:
|
1993-03-31 00:45:39 +02:00
|
|
|
exp ':' { $$ = $1; typebits =0;}
|
|
|
|
| exp '(' type ')' ':' { $$ = $1; }
|
|
|
|
| ':' { $$= (etree_type *)NULL; typebits = 0; }
|
|
|
|
| '(' type ')' ':' { $$= (etree_type *)NULL; }
|
1991-03-21 22:29:06 +01:00
|
|
|
;
|
|
|
|
|
|
|
|
memspec_opt:
|
1992-04-05 03:47:16 +02:00
|
|
|
'>' NAME
|
1991-03-21 22:29:06 +01:00
|
|
|
{ $$ = $2; }
|
|
|
|
| { $$ = "*default*"; }
|
|
|
|
;
|
1992-04-16 00:23:33 +02:00
|
|
|
%%
|
|
|
|
void
|
|
|
|
yyerror(arg)
|
1994-01-06 20:38:36 +01:00
|
|
|
const char *arg;
|
1992-04-16 00:23:33 +02:00
|
|
|
{
|
1994-01-06 20:38:36 +01:00
|
|
|
if (error_index > 0 && error_index < ERROR_NAME_MAX)
|
|
|
|
einfo("%P%F: %S %s in %s\n", arg, error_names[error_index-1]);
|
1992-04-16 00:23:33 +02:00
|
|
|
else
|
1994-01-06 20:38:36 +01:00
|
|
|
einfo("%P%F: %S %s\n", arg);
|
1992-04-16 00:23:33 +02:00
|
|
|
}
|