* Makefile.in: added relax, also made three stage go through a
[deliverable/binutils-gdb.git] / ld / ldgram.y
CommitLineData
c611e285
SC
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).
2fa0b342 4
c611e285 5This file is part of GNU ld.
2fa0b342 6
c611e285
SC
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
2fa0b342 11
c611e285
SC
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
2fa0b342 16
c611e285
SC
17You should have received a copy of the GNU General Public License
18along with this program; if not, write to the Free Software
19Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
20
21%{
22/*
2e2bf962 23
c611e285 24 */
2fa0b342 25
f177a611 26#define DONTDECLARE_MALLOC
2fa0b342 27
2fa0b342 28#include "bfd.h"
f177a611 29#include "sysdep.h"
2fa0b342
DHW
30#include "ld.h"
31#include "ldexp.h"
7cb9aa50 32#include "ldver.h"
2fa0b342 33#include "ldlang.h"
f177a611 34#include "ldemul.h"
2fa0b342
DHW
35#include "ldfile.h"
36#include "ldmisc.h"
f177a611
JG
37
38
2fa0b342
DHW
39#define YYDEBUG 1
40
41boolean option_v;
2fa0b342
DHW
42extern unsigned int lineno;
43extern boolean trace_files;
44extern boolean write_map;
c611e285 45extern boolean option_longmap;
2fa0b342
DHW
46boolean hex_mode;
47
d646b568
SC
48strip_symbols_type strip_symbols=STRIP_NONE;
49discard_locals_type discard_locals=DISCARD_NONE;
2fa0b342
DHW
50
51
52lang_memory_region_type *region;
53
54
55lang_memory_region_type *lang_memory_region_lookup();
56lang_output_section_statement_type *lang_output_section_statement_lookup();
57
58#ifdef __STDC__
59
60void lang_add_data(int type, union etree_union *exp);
f177a611 61void lang_enter_output_section_statement(char *output_section_statement_name, etree_type *address_exp, int flags, bfd_vma block_value);
2fa0b342
DHW
62
63#else
64
65void lang_add_data();
66void lang_enter_output_section_statement();
67
68#endif /* __STDC__ */
69
70extern args_type command_line;
71char *current_file;
72boolean ldgram_want_filename = true;
73boolean had_script = false;
74boolean force_make_executable = false;
1d45ccb3 75
1418c83b 76boolean ldgram_in_script = false;
1d45ccb3 77boolean ldgram_had_equals = false;
2fa0b342
DHW
78/* LOCALS */
79
80
81
82
83%}
84%union {
85 bfd_vma integer;
86 int voidval;
87 char *name;
88 int token;
89 union etree_union *etree;
90 asection *section;
91 struct lang_output_section_statement_struct *output_section_statement;
92 union lang_statement_union **statement_ptr;
93 int lineno;
94 struct {
95 FILE *file;
96 char *name;
97 unsigned int lineno;
98 } state;
99
100
101}
102
6812f0e8 103%type <etree> exp opt_exp
f177a611 104%type <integer> fill_opt opt_block opt_type
2fa0b342 105%type <name> memspec_opt
6812f0e8 106%token <integer> INT
2fa0b342
DHW
107%token <name> NAME
108%type <integer> length
109
a37cc0c0 110%right <token> PLUSEQ MINUSEQ MULTEQ DIVEQ '=' LSHIFTEQ RSHIFTEQ ANDEQ OREQ
2fa0b342
DHW
111%right <token> '?' ':'
112%left <token> OROR
113%left <token> ANDAND
114%left <token> '|'
115%left <token> '^'
116%left <token> '&'
117%left <token> EQ NE
118%left <token> '<' '>' LE GE
119%left <token> LSHIFT RSHIFT
6812f0e8 120
2fa0b342
DHW
121%left <token> '+' '-'
122%left <token> '*' '/' '%'
6812f0e8
SC
123
124/*%token <token> '+' '-' '*' '/' '%'*/
2fa0b342
DHW
125%right UNARY
126%left <token> '('
127%token <token> ALIGN_K BLOCK LONG SHORT BYTE
128%token SECTIONS
129%token '{' '}'
6812f0e8
SC
130%token SIZEOF_HEADERS OUTPUT_FORMAT FORCE_COMMON_ALLOCATION OUTPUT_ARCH
131%token SIZEOF_HEADERS
f177a611
JG
132%token MEMORY
133%token NOLOAD DSECT COPY INFO OVERLAY
2fa0b342 134%token NAME DEFINED TARGET_K SEARCH_DIR MAP ENTRY
b6316534 135%token OPTION_e OPTION_c OPTION_noinhibit_exec OPTION_s OPTION_S OPTION_sort_common
f177a611 136%token OPTION_format OPTION_F OPTION_u OPTION_Bstatic OPTION_N
6812f0e8 137%token <integer> SIZEOF NEXT ADDR
a37cc0c0 138%token OPTION_d OPTION_dc OPTION_dp OPTION_x OPTION_X OPTION_defsym
2e2bf962
SC
139%token OPTION_v OPTION_V OPTION_M OPTION_t STARTUP HLL SYSLIB FLOAT NOFLOAT
140%token OPTION_Map
c611e285 141%token OPTION_n OPTION_r OPTION_o OPTION_b OPTION_R OPTION_relax
2fa0b342
DHW
142%token <name> OPTION_l OPTION_L OPTION_T OPTION_Aarch OPTION_Tfile OPTION_Texp
143%token OPTION_Ur
144%token ORIGIN FILL OPTION_g
f177a611 145%token LENGTH CREATE_OBJECT_SYMBOLS INPUT OUTPUT CONSTRUCTORS
6812f0e8
SC
146%type <token> assign_op
147
2fa0b342
DHW
148%type <name> filename
149
150%{
151ld_config_type config;
152%}
153
154%%
155
156
157
158file: command_line { lang_final(); };
159
160
161filename:
7ca04d28 162 NAME;
2fa0b342
DHW
163
164command_line:
165 command_line command_line_option
166 |
167 ;
168
169command_line_option:
a37cc0c0 170 '{'
ac004870
SC
171 { ldgram_in_script = true; }
172 ifile_list
173 { ldgram_in_script = false; }
a37cc0c0 174 '}'
f177a611 175 | OPTION_Bstatic { }
1418c83b 176 | OPTION_v
2fa0b342
DHW
177 {
178 ldversion();
179 option_v = true;
180 }
c611e285
SC
181 | OPTION_V
182 {
183 ldversion();
184 option_v = true;
185 }
2fa0b342
DHW
186 | OPTION_t {
187 trace_files = true;
188 }
2e2bf962
SC
189 | OPTION_Map NAME
190 {
191 write_map = true;
192 config.map_filename = $2;
193 }
194
2fa0b342 195 | OPTION_M {
c611e285
SC
196 if (write_map) {
197 option_longmap = true;
198 }
2fa0b342 199 write_map = true;
c611e285 200
2fa0b342
DHW
201 }
202 | OPTION_n {
203 config.magic_demand_paged = false;
2fa0b342 204 }
f177a611 205 | OPTION_N {
c611e285 206 config.text_read_only = false;
f177a611
JG
207 config.magic_demand_paged = false;
208 }
2fa0b342
DHW
209 | OPTION_s {
210 strip_symbols = STRIP_ALL;
211 }
212 | OPTION_S {
213 strip_symbols = STRIP_DEBUGGER;
214 }
1418c83b
SC
215 | OPTION_u NAME {
216 ldlang_add_undef($2);
217 }
218
2fa0b342
DHW
219 | OPTION_r {
220 config.relocateable_output = true;
221 config.build_constructors = false;
222 config.magic_demand_paged = false;
c611e285 223 config.text_read_only = false;
2fa0b342
DHW
224 }
225 | OPTION_Ur {
226 config.relocateable_output = true;
227 config.build_constructors = true;
228 config.magic_demand_paged = false;
c611e285 229 config.text_read_only = false;
2fa0b342
DHW
230 }
231 | OPTION_o filename
232 {
233 lang_add_output($2);
234 }
235 | OPTION_e NAME
236 { lang_add_entry($2);
237 }
238 | OPTION_X {
239 discard_locals = DISCARD_L;
240 }
241 | OPTION_x {
242 discard_locals = DISCARD_ALL;
243 }
244
245 | OPTION_noinhibit_exec
246 {
247 force_make_executable = true;
248 }
b6316534
SC
249 | OPTION_sort_common {
250 config.sort_common = true;
251 }
1418c83b 252 | OPTION_d {
2fa0b342
DHW
253 command_line.force_common_definition = true;
254 }
c611e285
SC
255
256 | OPTION_relax {
257 command_line.relax = true;
258 }
1418c83b 259 | OPTION_dc
2fa0b342
DHW
260 {
261 command_line.force_common_definition = true;
262 }
263 | OPTION_g
264 {
265 /* Ignored */
266 }
1418c83b 267 | OPTION_dp
2fa0b342
DHW
268 {
269 command_line.force_common_definition = true;
270 }
1418c83b 271 | OPTION_format NAME
7ca04d28
SC
272 {
273 lang_add_target($2);
274 }
de7c1ff6 275 | OPTION_Texp
1418c83b
SC
276 {
277 hex_mode =true;
278 }
279 INT
280 {
281 lang_section_start($1,exp_intop($3));
282 hex_mode = false;
283 }
2fa0b342 284
7ca04d28 285 | OPTION_Aarch
1418c83b
SC
286 {
287 ldfile_add_arch($1);
288 }
7ca04d28 289 | OPTION_b NAME
2fa0b342
DHW
290 {
291 lang_add_target($2);
292 }
293 | OPTION_L
294 {
295 ldfile_add_library_path($1);
1418c83b 296 }
7ca04d28
SC
297 | OPTION_F
298 {
299 /* Ignore */
300 }
1418c83b
SC
301 | NAME
302 { lang_add_input_file($1,lang_input_file_is_file_enum,
303 (char *)NULL); }
f177a611
JG
304 | OPTION_c filename
305 { ldfile_open_command_file($2); } script_file
1418c83b
SC
306 | OPTION_Tfile
307 { ldfile_open_command_file($1); } script_file
2fa0b342 308
1418c83b
SC
309 | OPTION_T filename
310 { ldfile_open_command_file($2); } script_file
2fa0b342
DHW
311
312 | OPTION_l
313 {
314 lang_add_input_file($1,
315 lang_input_file_is_l_enum,
316 (char *)NULL);
317 }
1418c83b 318 | OPTION_R filename
2fa0b342
DHW
319 {
320 lang_add_input_file($2,
321 lang_input_file_is_symbols_only_enum,
322 (char *)NULL);
323 }
7ca04d28
SC
324 | OPTION_defsym
325 {
7ca04d28 326 }
1d45ccb3 327 NAME '='
6812f0e8 328 exp
7ca04d28 329 {
1d45ccb3 330 lang_add_assignment(exp_assop($4,$3,$5));
7ca04d28 331 }
1418c83b
SC
332 | '-' NAME
333 { info("%P%F Unrecognised option -%s\n", $2); }
7ca04d28 334
2fa0b342
DHW
335 ;
336
337
1418c83b 338
2fa0b342
DHW
339
340
341
1418c83b
SC
342
343
344script_file:
345 { ldgram_in_script = true; }
a37cc0c0 346 ifile_list '}'
1418c83b
SC
347 { ldgram_in_script = false; }
348
349 ;
350
351
352ifile_list:
353 ifile_list ifile_p1
13a0e8d7 354 |
2fa0b342
DHW
355 ;
356
357
358
359ifile_p1:
360 memory
361 | sections
362 | startup
363 | high_level_library
364 | low_level_library
365 | floating_point_support
ac004870 366 | statement_anywhere
f177a611 367 | ';'
2fa0b342
DHW
368 | TARGET_K '(' NAME ')'
369 { lang_add_target($3); }
370 | SEARCH_DIR '(' filename ')'
371 { ldfile_add_library_path($3); }
372 | OUTPUT '(' filename ')'
373 { lang_add_output($3); }
13a0e8d7
SC
374 | OUTPUT_FORMAT '(' NAME ')'
375 { lang_add_output_format($3); }
a37cc0c0
SC
376 | OUTPUT_ARCH '(' NAME ')'
377 { ldfile_set_output_arch($3); }
13a0e8d7
SC
378 | FORCE_COMMON_ALLOCATION
379 { command_line.force_common_definition = true ; }
2fa0b342
DHW
380 | INPUT '(' input_list ')'
381 | MAP '(' filename ')'
382 { lang_add_map($3); }
383 ;
384
385input_list:
386 NAME
387 { lang_add_input_file($1,lang_input_file_is_file_enum,
388 (char *)NULL); }
389 | input_list ',' NAME
390 { lang_add_input_file($3,lang_input_file_is_file_enum,
391 (char *)NULL); }
392 | input_list NAME
393 { lang_add_input_file($2, lang_input_file_is_file_enum,
394 (char *)NULL); }
395 ;
396
397sections:
398 SECTIONS '{'sec_or_group_p1 '}'
399 ;
400
401sec_or_group_p1:
402 sec_or_group_p1 section
403 | sec_or_group_p1 statement_anywhere
404 |
405 ;
406
407statement_anywhere:
408 ENTRY '(' NAME ')'
409 { lang_add_entry($3); }
410 | assignment end
411 ;
412
1418c83b
SC
413file_NAME_list:
414 NAME
415 { lang_add_wild($1, current_file); }
416 | file_NAME_list opt_comma NAME
417 { lang_add_wild($3, current_file); }
418 ;
419
420input_section_spec:
421 NAME
422 {
423 lang_add_wild((char *)NULL, $1);
424 }
425 | '['
426 {
427 current_file = (char *)NULL;
428 }
429 file_NAME_list
430 ']'
431 | NAME
432 {
433 current_file =$1;
434 }
435 '(' file_NAME_list ')'
436 | '*'
437 {
438 current_file = (char *)NULL;
439 }
440 '(' file_NAME_list ')'
441 ;
442
2fa0b342
DHW
443statement:
444 statement assignment end
445 | statement CREATE_OBJECT_SYMBOLS
13a0e8d7
SC
446 {
447 lang_add_attribute(lang_object_symbols_statement_enum); }
f177a611
JG
448 | statement ';'
449 | statement CONSTRUCTORS
450 {
451 lang_add_attribute(lang_constructors_statement_enum); }
13a0e8d7 452
2fa0b342 453 | statement input_section_spec
6812f0e8 454 | statement length '(' exp ')'
2fa0b342
DHW
455 {
456 lang_add_data($2,$4);
457 }
458
6812f0e8 459 | statement FILL '(' exp ')'
2fa0b342
DHW
460 {
461 lang_add_fill
462 (exp_get_value_int($4,
463 0,
464 "fill value",
465 lang_first_phase_enum));
466 }
467 |
468 ;
469
470length:
471 LONG
472 { $$ = $1; }
473 | SHORT
474 { $$ = $1; }
475 | BYTE
476 { $$ = $1; }
477 ;
478
479fill_opt:
6812f0e8 480 '=' exp
2fa0b342
DHW
481 {
482 $$ = exp_get_value_int($2,
483 0,
484 "fill value",
485 lang_first_phase_enum);
486 }
487 | { $$ = 0; }
488 ;
489
490
491
492assign_op:
493 PLUSEQ
494 { $$ = '+'; }
495 | MINUSEQ
496 { $$ = '-'; }
497 | MULTEQ
498 { $$ = '*'; }
499 | DIVEQ
500 { $$ = '/'; }
501 | LSHIFTEQ
502 { $$ = LSHIFT; }
503 | RSHIFTEQ
504 { $$ = RSHIFT; }
505 | ANDEQ
506 { $$ = '&'; }
507 | OREQ
508 { $$ = '|'; }
509
510 ;
511
512end: ';' | ','
513 ;
514
2fa0b342
DHW
515
516assignment:
6812f0e8 517 NAME '=' exp
2fa0b342
DHW
518 {
519 lang_add_assignment(exp_assop($2,$1,$3));
520 }
6812f0e8 521 | NAME assign_op exp
2fa0b342
DHW
522 {
523 lang_add_assignment(exp_assop('=',$1,exp_binop($2,exp_nameop(NAME,$1),$3)));
524 }
525
526 ;
527
528
529opt_comma:
530 ',' | ;
531
532
533memory:
534 MEMORY '{' memory_spec memory_spec_list '}'
535 ;
536
537memory_spec_list:
538 memory_spec_list memory_spec
539 | memory_spec_list ',' memory_spec
540 |
541 ;
542
543
544memory_spec:
545 NAME
546 { region = lang_memory_region_lookup($1); }
547 attributes_opt ':' origin_spec opt_comma length_spec
548
549 {
550
551
552 }
553 ;
554origin_spec:
555 ORIGIN '=' exp
556 { region->current =
557 region->origin =
558 exp_get_vma($3, 0L,"origin", lang_first_phase_enum); }
559 ;
560length_spec:
561 LENGTH '=' exp
562 { region->length = exp_get_vma($3,
563 ~((bfd_vma)0),
564 "length",
565 lang_first_phase_enum);
566 }
567
568
569attributes_opt:
570 '(' NAME ')'
571 {
572 lang_set_flags(&region->flags, $2);
573 }
574 |
575
576 ;
577
578startup:
579 STARTUP '(' filename ')'
580 { lang_startup($3); }
581 ;
582
583high_level_library:
584 HLL '(' high_level_library_NAME_list ')'
585 | HLL '(' ')'
586 { ldemul_hll((char *)NULL); }
587 ;
588
589high_level_library_NAME_list:
590 high_level_library_NAME_list opt_comma filename
591 { ldemul_hll($3); }
592 | filename
593 { ldemul_hll($1); }
594
595 ;
596
597low_level_library:
598 SYSLIB '(' low_level_library_NAME_list ')'
599 ;
600low_level_library_NAME_list:
601 low_level_library_NAME_list opt_comma filename
602 { ldemul_syslib($3); }
603 |
604 ;
605
606floating_point_support:
607 FLOAT
608 { lang_float(true); }
609 | NOFLOAT
610 { lang_float(false); }
611 ;
612
613
614
615
616exp :
617 '-' exp %prec UNARY
618 { $$ = exp_unop('-', $2); }
619 | '(' exp ')'
620 { $$ = $2; }
621 | NEXT '(' exp ')' %prec UNARY
622 { $$ = exp_unop($1,$3); }
623 | '!' exp %prec UNARY
624 { $$ = exp_unop('!', $2); }
625 | '+' exp %prec UNARY
626 { $$ = $2; }
627 | '~' exp %prec UNARY
628 { $$ = exp_unop('~', $2);}
629
630 | exp '*' exp
631 { $$ = exp_binop('*', $1, $3); }
632 | exp '/' exp
633 { $$ = exp_binop('/', $1, $3); }
634 | exp '%' exp
635 { $$ = exp_binop('%', $1, $3); }
636 | exp '+' exp
637 { $$ = exp_binop('+', $1, $3); }
638 | exp '-' exp
639 { $$ = exp_binop('-' , $1, $3); }
640 | exp LSHIFT exp
641 { $$ = exp_binop(LSHIFT , $1, $3); }
642 | exp RSHIFT exp
643 { $$ = exp_binop(RSHIFT , $1, $3); }
644 | exp EQ exp
645 { $$ = exp_binop(EQ , $1, $3); }
646 | exp NE exp
647 { $$ = exp_binop(NE , $1, $3); }
648 | exp LE exp
649 { $$ = exp_binop(LE , $1, $3); }
650 | exp GE exp
651 { $$ = exp_binop(GE , $1, $3); }
652 | exp '<' exp
653 { $$ = exp_binop('<' , $1, $3); }
654 | exp '>' exp
655 { $$ = exp_binop('>' , $1, $3); }
656 | exp '&' exp
657 { $$ = exp_binop('&' , $1, $3); }
658 | exp '^' exp
659 { $$ = exp_binop('^' , $1, $3); }
660 | exp '|' exp
661 { $$ = exp_binop('|' , $1, $3); }
662 | exp '?' exp ':' exp
663 { $$ = exp_trinop('?' , $1, $3, $5); }
664 | exp ANDAND exp
665 { $$ = exp_binop(ANDAND , $1, $3); }
666 | exp OROR exp
667 { $$ = exp_binop(OROR , $1, $3); }
668 | DEFINED '(' NAME ')'
669 { $$ = exp_nameop(DEFINED, $3); }
670 | INT
671 { $$ = exp_intop($1); }
65c552e3
SC
672 | SIZEOF_HEADERS
673 { $$ = exp_nameop(SIZEOF_HEADERS,0); }
2fa0b342
DHW
674
675 | SIZEOF '(' NAME ')'
f177a611 676 { $$ = exp_nameop(SIZEOF,$3); }
2fa0b342 677 | ADDR '(' NAME ')'
f177a611 678 { $$ = exp_nameop(ADDR,$3); }
2fa0b342 679 | ALIGN_K '(' exp ')'
f177a611 680 { $$ = exp_unop(ALIGN_K,$3); }
2fa0b342
DHW
681 | NAME
682 { $$ = exp_nameop(NAME,$1); }
683 ;
684
685
686
687
f177a611 688section: NAME opt_exp opt_type opt_block ':' opt_things'{'
2fa0b342 689 {
f177a611 690 lang_enter_output_section_statement($1,$2,$3,$4);
2fa0b342
DHW
691 }
692 statement '}' fill_opt memspec_opt
693 {
f177a611 694 lang_leave_output_section_statement($11, $12);
2fa0b342
DHW
695 }
696
697 ;
698
f177a611
JG
699opt_type:
700 '(' NOLOAD ')' { $$ = SEC_NO_FLAGS; }
701 | '(' DSECT ')' { $$ = 0; }
702 | '(' COPY ')' { $$ = 0; }
703 | '(' INFO ')' { $$ = 0; }
704 | '(' OVERLAY ')' { $$ = 0; }
705 | { $$ = SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS; }
706 ;
707
2fa0b342
DHW
708opt_things:
709 {
710
711 }
712 ;
713
6812f0e8
SC
714
715
716
2fa0b342
DHW
717
718opt_exp:
6812f0e8 719 exp
2fa0b342
DHW
720 { $$ = $1; }
721 | { $$= (etree_type *)NULL; }
722 ;
723
724opt_block:
6812f0e8 725 BLOCK '(' exp ')'
2fa0b342
DHW
726 { $$ = exp_get_value_int($3,
727 1L,
728 "block",
729 lang_first_phase_enum);
730 }
731 | { $$ = 1; }
732 ;
733
734memspec_opt:
735 '>' NAME
736 { $$ = $2; }
737 | { $$ = "*default*"; }
738 ;
739
This page took 0.071003 seconds and 4 git commands to generate.