1 /* A YACC grammer to parse a superset of the AT&T linker scripting languaue.
2 Copyright (C) 1991 Free Software Foundation, Inc.
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,etree_type*,etree_type*);
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_with_type mustbe_exp
107 %type <integer> fill_opt
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 MEMORY DEFSYMEND
138 %token NOLOAD DSECT COPY INFO OVERLAY
139 %token NAME DEFINED TARGET_K SEARCH_DIR MAP ENTRY
140 %token OPTION_e OPTION_c OPTION_noinhibit_exec OPTION_s OPTION_S OPTION_sort_common
141 %token OPTION_format OPTION_F OPTION_u OPTION_Bstatic OPTION_N
142 %token <integer> SIZEOF NEXT ADDR
143 %token OPTION_d OPTION_dc OPTION_dp OPTION_x OPTION_X OPTION_defsym
144 %token OPTION_v OPTION_V OPTION_M OPTION_t STARTUP HLL SYSLIB FLOAT NOFLOAT
146 %token OPTION_n OPTION_r OPTION_o OPTION_b OPTION_R OPTION_relax
147 %token <name> OPTION_l OPTION_L OPTION_T OPTION_Aarch OPTION_Tfile OPTION_Texp
148 %token <name> OPTION_y
150 %token ORIGIN FILL OPTION_g
151 %token LENGTH CREATE_OBJECT_SYMBOLS INPUT OUTPUT CONSTRUCTORS
152 %token OPTION_RETAIN_SYMBOLS_FILE ALIGNMOD
154 %type <token> assign_op
156 %type <name> filename
159 %token CHIP LIST SECT ABSOLUTE LOAD NEWLINE ENDWORD ORDER NAMEWORD
160 %token FORMAT PUBLIC DEFSYMEND BASE ALIAS TRUNCATE
163 ld_config_type config;
168 file: command_line { lang_final(); };
175 command_line command_line_option
197 config.map_filename = $2;
200 config.map_filename = "-";
204 config.magic_demand_paged = false;
207 config.text_read_only = false;
208 config.magic_demand_paged = false;
211 strip_symbols = STRIP_ALL;
214 strip_symbols = STRIP_DEBUGGER;
217 ldlang_add_undef($2);
221 config.relocateable_output = true;
222 config.build_constructors = false;
223 config.magic_demand_paged = false;
224 config.text_read_only = false;
227 config.relocateable_output = true;
228 config.build_constructors = true;
229 config.magic_demand_paged = false;
230 config.text_read_only = false;
237 { lang_add_entry($2);
240 discard_locals = DISCARD_L;
243 discard_locals = DISCARD_ALL;
246 | OPTION_noinhibit_exec
248 force_make_executable = true;
250 | OPTION_sort_common {
251 config.sort_common = true;
254 command_line.force_common_definition = true;
258 command_line.relax = true;
262 command_line.force_common_definition = true;
270 command_line.force_common_definition = true;
277 { ldlex_expression();
282 lang_section_start($1,exp_intop($3));
299 ldfile_add_library_path($1);
306 { lang_add_input_file($1,lang_input_file_is_file_enum,
309 { ldfile_open_command_file($2); } mri_script_file END { ldlex_command();}
312 { ldfile_open_command_file($1); } script_file
313 END { ldlex_command();}
316 { ldfile_open_command_file($2); } script_file
317 END { ldlex_command();}
321 lang_add_input_file($1,
322 lang_input_file_is_l_enum,
327 lang_add_input_file($2,
328 lang_input_file_is_symbols_only_enum,
332 | OPTION_defsym { ldlex_defsym(); }
333 NAME '=' exp DEFSYMEND { ldlex_popstate();
334 lang_add_assignment(exp_assop($4,$3,$5));
336 | OPTION_RETAIN_SYMBOLS_FILE filename
337 { lang_add_keepsyms_file ($2); }
339 { info("%P%F Unrecognized option -%s\n", $2); }
341 | '{' script_file '}'
345 /* SYNTAX WITHIN AN MRI SCRIPT FILE */
347 { ldlex_mri_script();
348 PUSH_ERROR("MRI style script");
357 mri_script_lines mri_script_command NEWLINE
365 einfo("%P%F: unrecognised keyword in MRI style script '%s'\n",$1);
369 config.map_filename = "-";
371 | ORDER ordernamelist
373 | PUBLIC NAME '=' exp
374 { mri_public($2, $4); }
375 | PUBLIC NAME ',' exp
376 { mri_public($2, $4); }
378 { mri_public($2, $3); }
382 { mri_output_section($2, $4);}
384 { mri_output_section($2, $3);}
386 { mri_output_section($2, $4);}
387 | ALIGN_K NAME '=' exp
388 { mri_align($2,$4); }
389 | ALIGNMOD NAME '=' exp
390 { mri_alignmod($2,$4); }
391 | ABSOLUTE mri_abs_name_list
392 | LOAD mri_load_name_list
395 | ALIAS NAME ',' NAME
396 { mri_alias($2,$4,0);}
398 { mri_alias($2,0,$4);}
402 { mri_truncate($2); }
407 ordernamelist ',' NAME { mri_order($3); }
408 | ordernamelist NAME { mri_order($2); }
415 | mri_load_name_list ',' NAME { mri_load($3); }
420 { mri_only_load($1); }
421 | mri_abs_name_list ',' NAME
422 { mri_only_load($3); }
449 | floating_point_support
452 | TARGET_K '(' NAME ')'
453 { lang_add_target($3); }
454 | SEARCH_DIR '(' filename ')'
455 { ldfile_add_library_path($3); }
456 | OUTPUT '(' filename ')'
457 { lang_add_output($3); }
458 | OUTPUT_FORMAT '(' NAME ')'
459 { lang_add_output_format($3); }
460 | OUTPUT_ARCH '(' NAME ')'
461 { ldfile_set_output_arch($3); }
462 | FORCE_COMMON_ALLOCATION
463 { command_line.force_common_definition = true ; }
464 | INPUT '(' input_list ')'
465 | MAP '(' filename ')'
466 { lang_add_map($3); }
468 { ldfile_open_command_file($2); } ifile_list END
473 { lang_add_input_file($1,lang_input_file_is_file_enum,
475 | input_list ',' NAME
476 { lang_add_input_file($3,lang_input_file_is_file_enum,
479 { lang_add_input_file($2,
480 lang_input_file_is_file_enum,
485 SECTIONS '{' sec_or_group_p1 '}'
489 sec_or_group_p1 section
490 | sec_or_group_p1 statement_anywhere
496 { lang_add_entry($3); }
502 { lang_add_wild($1, current_file); }
503 | file_NAME_list opt_comma NAME
504 { lang_add_wild($3, current_file); }
510 lang_add_wild((char *)NULL, $1);
514 current_file = (char *)NULL;
522 '(' file_NAME_list ')'
525 current_file = (char *)NULL;
527 '(' file_NAME_list ')'
531 statement assignment end
532 | statement CREATE_OBJECT_SYMBOLS
535 lang_add_attribute(lang_object_symbols_statement_enum); }
537 | statement CONSTRUCTORS
540 lang_add_attribute(lang_constructors_statement_enum); }
542 | statement input_section_spec
543 | statement length '(' exp ')'
545 lang_add_data($2,$4);
548 | statement FILL '(' exp ')'
551 (exp_get_value_int($4,
555 lang_first_phase_enum));
572 $$ = exp_get_value_int($2,
575 lang_first_phase_enum);
609 lang_add_assignment(exp_assop($2,$1,$3));
611 | NAME assign_op mustbe_exp
614 lang_add_assignment(exp_assop('=',$1,exp_binop($2,exp_nameop(NAME,$1),$3)));
625 MEMORY '{' memory_spec memory_spec_list '}'
629 memory_spec_list memory_spec
630 | memory_spec_list ',' memory_spec
636 { region = lang_memory_region_lookup($1); }
638 origin_spec opt_comma length_spec
641 ORIGIN '=' mustbe_exp
644 exp_get_vma($3, 0L,"origin", lang_first_phase_enum);
647 LENGTH '=' mustbe_exp
648 { region->length = exp_get_vma($3,
651 lang_first_phase_enum);
658 lang_set_flags(®ion->flags, $2);
665 STARTUP '(' filename ')'
666 { lang_startup($3); }
670 HLL '(' high_level_library_NAME_list ')'
672 { ldemul_hll((char *)NULL); }
675 high_level_library_NAME_list:
676 high_level_library_NAME_list opt_comma filename
684 SYSLIB '(' low_level_library_NAME_list ')'
685 ; low_level_library_NAME_list:
686 low_level_library_NAME_list opt_comma filename
687 { ldemul_syslib($3); }
691 floating_point_support:
693 { lang_float(true); }
695 { lang_float(false); }
699 mustbe_exp: { ldlex_expression(); }
701 { ldlex_popstate(); $$=$2;}
706 { $$ = exp_unop('-', $2); }
709 | NEXT '(' exp ')' %prec UNARY
710 { $$ = exp_unop($1,$3); }
711 | '!' exp %prec UNARY
712 { $$ = exp_unop('!', $2); }
713 | '+' exp %prec UNARY
715 | '~' exp %prec UNARY
716 { $$ = exp_unop('~', $2);}
719 { $$ = exp_binop('*', $1, $3); }
721 { $$ = exp_binop('/', $1, $3); }
723 { $$ = exp_binop('%', $1, $3); }
725 { $$ = exp_binop('+', $1, $3); }
727 { $$ = exp_binop('-' , $1, $3); }
729 { $$ = exp_binop(LSHIFT , $1, $3); }
731 { $$ = exp_binop(RSHIFT , $1, $3); }
733 { $$ = exp_binop(EQ , $1, $3); }
735 { $$ = exp_binop(NE , $1, $3); }
737 { $$ = exp_binop(LE , $1, $3); }
739 { $$ = exp_binop(GE , $1, $3); }
741 { $$ = exp_binop('<' , $1, $3); }
743 { $$ = exp_binop('>' , $1, $3); }
745 { $$ = exp_binop('&' , $1, $3); }
747 { $$ = exp_binop('^' , $1, $3); }
749 { $$ = exp_binop('|' , $1, $3); }
750 | exp '?' exp ':' exp
751 { $$ = exp_trinop('?' , $1, $3, $5); }
753 { $$ = exp_binop(ANDAND , $1, $3); }
755 { $$ = exp_binop(OROR , $1, $3); }
756 | DEFINED '(' NAME ')'
757 { $$ = exp_nameop(DEFINED, $3); }
759 { $$ = exp_intop($1); }
761 { $$ = exp_nameop(SIZEOF_HEADERS,0); }
763 | SIZEOF '(' NAME ')'
764 { $$ = exp_nameop(SIZEOF,$3); }
766 { $$ = exp_nameop(ADDR,$3); }
767 | ABSOLUTE '(' exp ')'
768 { $$ = exp_unop(ABSOLUTE, $3); }
769 | ALIGN_K '(' exp ')'
770 { $$ = exp_unop(ALIGN_K,$3); }
772 { $$ = exp_nameop(NAME,$1); }
778 section: NAME { ldlex_expression(); }
779 opt_exp_with_type { ldlex_popstate(); }
782 lang_enter_output_section_statement($1,$3,typebits,0,0,0);
785 '}' {ldlex_expression();} fill_opt memspec_opt
788 lang_leave_output_section_statement($10, $11);
795 NOLOAD { typebits = SEC_NEVER_LOAD; }
796 | DSECT { typebits = 0; }
797 | COPY { typebits = 0; }
798 | INFO { typebits = 0; }
799 | OVERLAY { typebits = 0; }
800 | { typebits = SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS; }
805 exp ':' { $$ = $1; typebits =0;}
806 | exp '(' type ')' ':' { $$ = $1; }
807 | ':' { $$= (etree_type *)NULL; typebits = 0}
813 | { $$ = "*default*"; }
820 if (error_index> 0 && error_index < ERROR_NAME_MAX)
821 einfo("%P%F: %S syntax error in %s\n",error_names[error_index-1]);
823 einfo("%P%F: %S syntax error\n");