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