1 /* A YACC grammer to parse a superset of the AT&T linker scripting languaue.
2 Copyright (C) 1991 Free Software Foundation, Inc.
3 Written by Steve Chamberlain of Cygnus Support (steve@cygnus.com).
5 This file is part of GNU ld.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
26 #define DONTDECLARE_MALLOC
42 extern unsigned int lineno;
43 extern boolean trace_files;
44 extern boolean write_map;
45 extern boolean option_longmap;
48 strip_symbols_type strip_symbols=STRIP_NONE;
49 discard_locals_type discard_locals=DISCARD_NONE;
52 lang_memory_region_type *region;
55 lang_memory_region_type *lang_memory_region_lookup();
56 lang_output_section_statement_type *lang_output_section_statement_lookup();
60 void lang_add_data(int type, union etree_union *exp);
61 void lang_enter_output_section_statement(char *output_section_statement_name, etree_type *address_exp, int flags, bfd_vma block_value);
66 void lang_enter_output_section_statement();
70 extern args_type command_line;
72 boolean ldgram_want_filename = true;
73 boolean had_script = false;
74 boolean force_make_executable = false;
76 boolean ldgram_in_script = false;
77 boolean ldgram_had_equals = false;
81 #define ERROR_NAME_MAX 20
82 static char *error_names[ERROR_NAME_MAX];
83 static int error_index;
84 #define PUSH_ERROR(x) if (error_index < ERROR_NAME_MAX) error_names[error_index] = x; error_index++;
85 #define POP_ERROR() error_index--;
92 union etree_union *etree;
94 struct lang_output_section_statement_struct *output_section_statement;
95 union lang_statement_union **statement_ptr;
106 %type <etree> exp opt_exp mustbe_exp
107 %type <integer> fill_opt opt_block opt_type
108 %type <name> memspec_opt
111 %type <integer> length
113 %right <token> PLUSEQ MINUSEQ MULTEQ DIVEQ '=' LSHIFTEQ RSHIFTEQ ANDEQ OREQ
114 %right <token> '?' ':'
121 %left <token> '<' '>' LE GE
122 %left <token> LSHIFT RSHIFT
124 %left <token> '+' '-'
125 %left <token> '*' '/' '%'
127 /*%token <token> '+' '-' '*' '/' '%'*/
131 %token <token> ALIGN_K BLOCK LONG SHORT BYTE
134 %token SIZEOF_HEADERS OUTPUT_FORMAT FORCE_COMMON_ALLOCATION OUTPUT_ARCH
135 %token SIZEOF_HEADERS
137 %token NOLOAD DSECT COPY INFO OVERLAY
138 %token NAME DEFINED TARGET_K SEARCH_DIR MAP ENTRY
139 %token OPTION_e OPTION_c OPTION_noinhibit_exec OPTION_s OPTION_S OPTION_sort_common
140 %token OPTION_format OPTION_F OPTION_u OPTION_Bstatic OPTION_N
141 %token <integer> SIZEOF NEXT ADDR
142 %token OPTION_d OPTION_dc OPTION_dp OPTION_x OPTION_X OPTION_defsym
143 %token OPTION_v OPTION_V OPTION_M OPTION_t STARTUP HLL SYSLIB FLOAT NOFLOAT
145 %token OPTION_n OPTION_r OPTION_o OPTION_b OPTION_R OPTION_relax
146 %token <name> OPTION_l OPTION_L OPTION_T OPTION_Aarch OPTION_Tfile OPTION_Texp
148 %token ORIGIN FILL OPTION_g
149 %token LENGTH CREATE_OBJECT_SYMBOLS INPUT OUTPUT CONSTRUCTORS
150 %type <token> assign_op
152 %type <name> filename
155 %token CHIP LIST SECT ABSOLUTE LOAD NEWLINE ENDWORD ORDER NAMEWORD FORMAT
158 ld_config_type config;
163 file: command_line { lang_final(); };
170 command_line command_line_option
192 config.map_filename = $2;
195 config.map_filename = "-";
199 config.magic_demand_paged = false;
202 config.text_read_only = false;
203 config.magic_demand_paged = false;
206 strip_symbols = STRIP_ALL;
209 strip_symbols = STRIP_DEBUGGER;
212 ldlang_add_undef($2);
216 config.relocateable_output = true;
217 config.build_constructors = false;
218 config.magic_demand_paged = false;
219 config.text_read_only = false;
222 config.relocateable_output = true;
223 config.build_constructors = true;
224 config.magic_demand_paged = false;
225 config.text_read_only = false;
232 { lang_add_entry($2);
235 discard_locals = DISCARD_L;
238 discard_locals = DISCARD_ALL;
241 | OPTION_noinhibit_exec
243 force_make_executable = true;
245 | OPTION_sort_common {
246 config.sort_common = true;
249 command_line.force_common_definition = true;
253 command_line.relax = true;
257 command_line.force_common_definition = true;
265 command_line.force_common_definition = true;
277 lang_section_start($1,exp_intop($3));
291 ldfile_add_library_path($1);
298 { lang_add_input_file($1,lang_input_file_is_file_enum,
301 { ldfile_open_command_file($2); } mri_script_file END { ldlex_command()};
304 { ldfile_open_command_file($1); } script_file
305 END { ldlex_command();}
308 { ldfile_open_command_file($2); } script_file
309 END { ldlex_command();}
313 lang_add_input_file($1,
314 lang_input_file_is_l_enum,
319 lang_add_input_file($2,
320 lang_input_file_is_symbols_only_enum,
323 | OPTION_defsym { ldlex_expression();
326 NAME '=' mustbe_exp { ldlex_popstate();
327 lang_add_assignment(exp_assop($4,$3,$5));
330 { info("%P%F Unrecognised option -%s\n", $2); }
332 | '{' script_file '}'
336 /* SYNTAX WITHIN AN MRI SCRIPT FILE */
338 { ldlex_mri_script();
339 PUSH_ERROR("MRI style script");
348 mri_script_lines mri_script_command NEWLINE
356 einfo("%P%F: unrecognised keyword in MRI style script '%s'\n",$1);
360 config.map_filename = "-";
362 | ORDER ordernamelist
367 { mri_output_section($2, $4);}
369 { mri_output_section($2, $3);}
371 { mri_output_section($2, $4);}
372 | ABSOLUTE mri_abs_name_list
373 | LOAD mri_load_name_list
380 ordernamelist ',' NAME { mri_order($3); }
381 | ordernamelist NAME { mri_order($2); }
388 | mri_load_name_list ',' NAME { mri_load($3); }
393 { mri_only_load($1); }
394 | mri_abs_name_list ',' NAME
395 { mri_only_load($3); }
422 | floating_point_support
425 | TARGET_K '(' NAME ')'
426 { lang_add_target($3); }
427 | SEARCH_DIR '(' filename ')'
428 { ldfile_add_library_path($3); }
429 | OUTPUT '(' filename ')'
430 { lang_add_output($3); }
431 | OUTPUT_FORMAT '(' NAME ')'
432 { lang_add_output_format($3); }
433 | OUTPUT_ARCH '(' NAME ')'
434 { ldfile_set_output_arch($3); }
435 | FORCE_COMMON_ALLOCATION
436 { command_line.force_common_definition = true ; }
437 | INPUT '(' input_list ')'
438 | MAP '(' filename ')'
439 { lang_add_map($3); }
444 { lang_add_input_file($1,lang_input_file_is_file_enum,
446 | input_list ',' NAME
447 { lang_add_input_file($3,lang_input_file_is_file_enum,
450 { lang_add_input_file($2,
451 lang_input_file_is_file_enum,
456 SECTIONS '{' sec_or_group_p1 '}'
460 sec_or_group_p1 section
461 | sec_or_group_p1 statement_anywhere
467 { lang_add_entry($3); }
473 { lang_add_wild($1, current_file); }
474 | file_NAME_list opt_comma NAME
475 { lang_add_wild($3, current_file); }
481 lang_add_wild((char *)NULL, $1);
485 current_file = (char *)NULL;
493 '(' file_NAME_list ')'
496 current_file = (char *)NULL;
498 '(' file_NAME_list ')'
502 statement assignment end
503 | statement CREATE_OBJECT_SYMBOLS
506 lang_add_attribute(lang_object_symbols_statement_enum); }
508 | statement CONSTRUCTORS
511 lang_add_attribute(lang_constructors_statement_enum); }
513 | statement input_section_spec
514 | statement length '(' exp ')'
516 lang_add_data($2,$4);
519 | statement FILL '(' exp ')'
522 (exp_get_value_int($4,
526 lang_first_phase_enum));
543 $$ = exp_get_value_int($2,
546 lang_first_phase_enum);
580 lang_add_assignment(exp_assop($2,$1,$3));
582 | NAME assign_op mustbe_exp
585 lang_add_assignment(exp_assop('=',$1,exp_binop($2,exp_nameop(NAME,$1),$3)));
596 MEMORY '{' memory_spec memory_spec_list '}'
600 memory_spec_list memory_spec
601 | memory_spec_list ',' memory_spec
607 { region = lang_memory_region_lookup($1); }
609 origin_spec opt_comma length_spec
612 ORIGIN '=' mustbe_exp
615 exp_get_vma($3, 0L,"origin", lang_first_phase_enum);
618 LENGTH '=' mustbe_exp
619 { region->length = exp_get_vma($3,
622 lang_first_phase_enum);
629 lang_set_flags(®ion->flags, $2);
636 STARTUP '(' filename ')'
637 { lang_startup($3); }
641 HLL '(' high_level_library_NAME_list ')'
643 { ldemul_hll((char *)NULL); }
646 high_level_library_NAME_list:
647 high_level_library_NAME_list opt_comma filename
655 SYSLIB '(' low_level_library_NAME_list ')'
656 ; low_level_library_NAME_list:
657 low_level_library_NAME_list opt_comma filename
658 { ldemul_syslib($3); }
662 floating_point_support:
664 { lang_float(true); }
666 { lang_float(false); }
670 mustbe_exp: { ldlex_expression(); }
672 { ldlex_popstate(); $$=$2;}
677 { $$ = exp_unop('-', $2); }
680 | NEXT '(' exp ')' %prec UNARY
681 { $$ = exp_unop($1,$3); }
682 | '!' exp %prec UNARY
683 { $$ = exp_unop('!', $2); }
684 | '+' exp %prec UNARY
686 | '~' exp %prec UNARY
687 { $$ = exp_unop('~', $2);}
690 { $$ = exp_binop('*', $1, $3); }
692 { $$ = exp_binop('/', $1, $3); }
694 { $$ = exp_binop('%', $1, $3); }
696 { $$ = exp_binop('+', $1, $3); }
698 { $$ = exp_binop('-' , $1, $3); }
700 { $$ = exp_binop(LSHIFT , $1, $3); }
702 { $$ = exp_binop(RSHIFT , $1, $3); }
704 { $$ = exp_binop(EQ , $1, $3); }
706 { $$ = exp_binop(NE , $1, $3); }
708 { $$ = exp_binop(LE , $1, $3); }
710 { $$ = exp_binop(GE , $1, $3); }
712 { $$ = exp_binop('<' , $1, $3); }
714 { $$ = exp_binop('>' , $1, $3); }
716 { $$ = exp_binop('&' , $1, $3); }
718 { $$ = exp_binop('^' , $1, $3); }
720 { $$ = exp_binop('|' , $1, $3); }
721 | exp '?' exp ':' exp
722 { $$ = exp_trinop('?' , $1, $3, $5); }
724 { $$ = exp_binop(ANDAND , $1, $3); }
726 { $$ = exp_binop(OROR , $1, $3); }
727 | DEFINED '(' NAME ')'
728 { $$ = exp_nameop(DEFINED, $3); }
730 { $$ = exp_intop($1); }
732 { $$ = exp_nameop(SIZEOF_HEADERS,0); }
734 | SIZEOF '(' NAME ')'
735 { $$ = exp_nameop(SIZEOF,$3); }
737 { $$ = exp_nameop(ADDR,$3); }
738 | ALIGN_K '(' exp ')'
739 { $$ = exp_unop(ALIGN_K,$3); }
741 { $$ = exp_nameop(NAME,$1); }
747 section: NAME { ldlex_expression(); }
748 opt_exp { ldlex_popstate(); }
749 opt_type opt_block ':' opt_things'{'
751 lang_enter_output_section_statement($1,$3,$5,$6);
753 statement '}' fill_opt memspec_opt
755 lang_leave_output_section_statement($13, $14);
761 '(' NOLOAD ')' { $$ = SEC_NO_FLAGS; }
762 | '(' DSECT ')' { $$ = 0; }
763 | '(' COPY ')' { $$ = 0; }
764 | '(' INFO ')' { $$ = 0; }
765 | '(' OVERLAY ')' { $$ = 0; }
766 | { $$ = SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS; }
777 | { $$= (etree_type *)NULL; }
782 { $$ = exp_get_value_int($3,
785 lang_first_phase_enum);
793 | { $$ = "*default*"; }
800 if (error_index> 0 && error_index < ERROR_NAME_MAX)
801 einfo("%P%F: %S syntax error in %s\n",error_names[error_index-1]);
803 einfo("%P%F: %S syntax error\n");