[PATCH 40/57][Arm][OBJDUMP] Add support for MVE instructions: vdup, veor, vfma, vfms...
[binutils-gdb.git] / ld / ldgram.y
blobc3eadeb39248da2ee4cde09631145b500c175cee
1 /* A YACC grammar to parse a superset of the AT&T linker scripting language.
2 Copyright (C) 1991-2019 Free Software Foundation, Inc.
3 Written by Steve Chamberlain of Cygnus Support (steve@cygnus.com).
5 This file is part of the GNU Binutils.
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 3 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., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
27 #define DONTDECLARE_MALLOC
29 #include "sysdep.h"
30 #include "bfd.h"
31 #include "bfdlink.h"
32 #include "ld.h"
33 #include "ldexp.h"
34 #include "ldver.h"
35 #include "ldlang.h"
36 #include "ldfile.h"
37 #include "ldemul.h"
38 #include "ldmisc.h"
39 #include "ldmain.h"
40 #include "mri.h"
41 #include "ldctor.h"
42 #include "ldlex.h"
44 #ifndef YYDEBUG
45 #define YYDEBUG 1
46 #endif
48 static enum section_type sectype;
49 static lang_memory_region_type *region;
51 static bfd_boolean ldgram_had_keep = FALSE;
52 static char *ldgram_vers_current_lang = NULL;
54 #define ERROR_NAME_MAX 20
55 static char *error_names[ERROR_NAME_MAX];
56 static int error_index;
57 #define PUSH_ERROR(x) if (error_index < ERROR_NAME_MAX) error_names[error_index] = x; error_index++;
58 #define POP_ERROR() error_index--;
60 %union {
61 bfd_vma integer;
62 struct big_int
64 bfd_vma integer;
65 char *str;
66 } bigint;
67 fill_type *fill;
68 char *name;
69 const char *cname;
70 struct wildcard_spec wildcard;
71 struct wildcard_list *wildcard_list;
72 struct name_list *name_list;
73 struct flag_info_list *flag_info_list;
74 struct flag_info *flag_info;
75 int token;
76 union etree_union *etree;
77 struct phdr_info
79 bfd_boolean filehdr;
80 bfd_boolean phdrs;
81 union etree_union *at;
82 union etree_union *flags;
83 } phdr;
84 struct lang_nocrossref *nocrossref;
85 struct lang_output_section_phdr_list *section_phdr;
86 struct bfd_elf_version_deps *deflist;
87 struct bfd_elf_version_expr *versyms;
88 struct bfd_elf_version_tree *versnode;
91 %type <etree> exp opt_exp_with_type mustbe_exp opt_at phdr_type phdr_val
92 %type <etree> opt_exp_without_type opt_subalign opt_align
93 %type <fill> fill_opt fill_exp
94 %type <name_list> exclude_name_list
95 %type <wildcard_list> section_name_list
96 %type <flag_info_list> sect_flag_list
97 %type <flag_info> sect_flags
98 %type <name> memspec_opt casesymlist
99 %type <name> memspec_at_opt
100 %type <cname> wildcard_name
101 %type <wildcard> section_name_spec filename_spec wildcard_maybe_exclude
102 %token <bigint> INT
103 %token <name> NAME LNAME
104 %type <integer> length
105 %type <phdr> phdr_qualifiers
106 %type <nocrossref> nocrossref_list
107 %type <section_phdr> phdr_opt
108 %type <integer> opt_nocrossrefs
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
121 %left <token> '+' '-'
122 %left <token> '*' '/' '%'
124 %right UNARY
125 %token END
126 %left <token> '('
127 %token <token> ALIGN_K BLOCK BIND QUAD SQUAD LONG SHORT BYTE
128 %token SECTIONS PHDRS INSERT_K AFTER BEFORE
129 %token DATA_SEGMENT_ALIGN DATA_SEGMENT_RELRO_END DATA_SEGMENT_END
130 %token SORT_BY_NAME SORT_BY_ALIGNMENT SORT_NONE
131 %token SORT_BY_INIT_PRIORITY
132 %token '{' '}'
133 %token SIZEOF_HEADERS OUTPUT_FORMAT FORCE_COMMON_ALLOCATION OUTPUT_ARCH
134 %token INHIBIT_COMMON_ALLOCATION FORCE_GROUP_ALLOCATION
135 %token SEGMENT_START
136 %token INCLUDE
137 %token MEMORY
138 %token REGION_ALIAS
139 %token LD_FEATURE
140 %token NOLOAD DSECT COPY INFO OVERLAY
141 %token DEFINED TARGET_K SEARCH_DIR MAP ENTRY
142 %token <integer> NEXT
143 %token SIZEOF ALIGNOF ADDR LOADADDR MAX_K MIN_K
144 %token STARTUP HLL SYSLIB FLOAT NOFLOAT NOCROSSREFS NOCROSSREFS_TO
145 %token ORIGIN FILL
146 %token LENGTH CREATE_OBJECT_SYMBOLS INPUT GROUP OUTPUT CONSTRUCTORS
147 %token ALIGNMOD AT SUBALIGN HIDDEN PROVIDE PROVIDE_HIDDEN AS_NEEDED
148 %type <token> assign_op atype attributes_opt sect_constraint opt_align_with_input
149 %type <name> filename
150 %token CHIP LIST SECT ABSOLUTE LOAD NEWLINE ENDWORD ORDER NAMEWORD ASSERT_K
151 %token LOG2CEIL FORMAT PUBLIC DEFSYMEND BASE ALIAS TRUNCATE REL
152 %token INPUT_SCRIPT INPUT_MRI_SCRIPT INPUT_DEFSYM CASE EXTERN START
153 %token <name> VERS_TAG VERS_IDENTIFIER
154 %token GLOBAL LOCAL VERSIONK INPUT_VERSION_SCRIPT
155 %token KEEP ONLY_IF_RO ONLY_IF_RW SPECIAL INPUT_SECTION_FLAGS ALIGN_WITH_INPUT
156 %token EXCLUDE_FILE
157 %token CONSTANT
158 %type <versyms> vers_defns
159 %type <versnode> vers_tag
160 %type <deflist> verdep
161 %token INPUT_DYNAMIC_LIST
165 file:
166 INPUT_SCRIPT script_file
167 | INPUT_MRI_SCRIPT mri_script_file
168 | INPUT_VERSION_SCRIPT version_script_file
169 | INPUT_DYNAMIC_LIST dynamic_list_file
170 | INPUT_DEFSYM defsym_expr
174 filename: NAME;
177 defsym_expr:
178 { ldlex_defsym(); }
179 NAME '=' exp
181 ldlex_popstate();
182 lang_add_assignment (exp_defsym ($2, $4));
186 /* SYNTAX WITHIN AN MRI SCRIPT FILE */
187 mri_script_file:
189 ldlex_mri_script ();
190 PUSH_ERROR (_("MRI style script"));
192 mri_script_lines
194 ldlex_popstate ();
195 mri_draw_tree ();
196 POP_ERROR ();
200 mri_script_lines:
201 mri_script_lines mri_script_command NEWLINE
205 mri_script_command:
206 CHIP exp
207 | CHIP exp ',' exp
208 | NAME {
209 einfo(_("%F%P: unrecognised keyword in MRI style script '%s'\n"),$1);
211 | LIST {
212 config.map_filename = "-";
214 | ORDER ordernamelist
215 | ENDWORD
216 | PUBLIC NAME '=' exp
217 { mri_public($2, $4); }
218 | PUBLIC NAME ',' exp
219 { mri_public($2, $4); }
220 | PUBLIC NAME exp
221 { mri_public($2, $3); }
222 | FORMAT NAME
223 { mri_format($2); }
224 | SECT NAME ',' exp
225 { mri_output_section($2, $4);}
226 | SECT NAME exp
227 { mri_output_section($2, $3);}
228 | SECT NAME '=' exp
229 { mri_output_section($2, $4);}
230 | ALIGN_K NAME '=' exp
231 { mri_align($2,$4); }
232 | ALIGN_K NAME ',' exp
233 { mri_align($2,$4); }
234 | ALIGNMOD NAME '=' exp
235 { mri_alignmod($2,$4); }
236 | ALIGNMOD NAME ',' exp
237 { mri_alignmod($2,$4); }
238 | ABSOLUTE mri_abs_name_list
239 | LOAD mri_load_name_list
240 | NAMEWORD NAME
241 { mri_name($2); }
242 | ALIAS NAME ',' NAME
243 { mri_alias($2,$4,0);}
244 | ALIAS NAME ',' INT
245 { mri_alias ($2, 0, (int) $4.integer); }
246 | BASE exp
247 { mri_base($2); }
248 | TRUNCATE INT
249 { mri_truncate ((unsigned int) $2.integer); }
250 | CASE casesymlist
251 | EXTERN extern_name_list
252 | INCLUDE filename
253 { ldlex_script (); ldfile_open_command_file($2); }
254 mri_script_lines END
255 { ldlex_popstate (); }
256 | START NAME
257 { lang_add_entry ($2, FALSE); }
261 ordernamelist:
262 ordernamelist ',' NAME { mri_order($3); }
263 | ordernamelist NAME { mri_order($2); }
267 mri_load_name_list:
268 NAME
269 { mri_load($1); }
270 | mri_load_name_list ',' NAME { mri_load($3); }
273 mri_abs_name_list:
274 NAME
275 { mri_only_load($1); }
276 | mri_abs_name_list ',' NAME
277 { mri_only_load($3); }
280 casesymlist:
281 /* empty */ { $$ = NULL; }
282 | NAME
283 | casesymlist ',' NAME
286 /* Parsed as expressions so that commas separate entries */
287 extern_name_list:
288 { ldlex_expression (); }
289 extern_name_list_body
290 { ldlex_popstate (); }
292 extern_name_list_body:
293 NAME
294 { ldlang_add_undef ($1, FALSE); }
295 | extern_name_list_body NAME
296 { ldlang_add_undef ($2, FALSE); }
297 | extern_name_list_body ',' NAME
298 { ldlang_add_undef ($3, FALSE); }
301 script_file:
302 { ldlex_both(); }
303 ifile_list
304 { ldlex_popstate(); }
307 ifile_list:
308 ifile_list ifile_p1
313 ifile_p1:
314 memory
315 | sections
316 | phdrs
317 | startup
318 | high_level_library
319 | low_level_library
320 | floating_point_support
321 | statement_anywhere
322 | version
323 | ';'
324 | TARGET_K '(' NAME ')'
325 { lang_add_target($3); }
326 | SEARCH_DIR '(' filename ')'
327 { ldfile_add_library_path ($3, FALSE); }
328 | OUTPUT '(' filename ')'
329 { lang_add_output($3, 1); }
330 | OUTPUT_FORMAT '(' NAME ')'
331 { lang_add_output_format ($3, (char *) NULL,
332 (char *) NULL, 1); }
333 | OUTPUT_FORMAT '(' NAME ',' NAME ',' NAME ')'
334 { lang_add_output_format ($3, $5, $7, 1); }
335 | OUTPUT_ARCH '(' NAME ')'
336 { ldfile_set_output_arch ($3, bfd_arch_unknown); }
337 | FORCE_COMMON_ALLOCATION
338 { command_line.force_common_definition = TRUE ; }
339 | FORCE_GROUP_ALLOCATION
340 { command_line.force_group_allocation = TRUE ; }
341 | INHIBIT_COMMON_ALLOCATION
342 { link_info.inhibit_common_definition = TRUE ; }
343 | INPUT '(' input_list ')'
344 | GROUP
345 { lang_enter_group (); }
346 '(' input_list ')'
347 { lang_leave_group (); }
348 | MAP '(' filename ')'
349 { lang_add_map($3); }
350 | INCLUDE filename
351 { ldlex_script (); ldfile_open_command_file($2); }
352 ifile_list END
353 { ldlex_popstate (); }
354 | NOCROSSREFS '(' nocrossref_list ')'
356 lang_add_nocrossref ($3);
358 | NOCROSSREFS_TO '(' nocrossref_list ')'
360 lang_add_nocrossref_to ($3);
362 | EXTERN '(' extern_name_list ')'
363 | INSERT_K AFTER NAME
364 { lang_add_insert ($3, 0); }
365 | INSERT_K BEFORE NAME
366 { lang_add_insert ($3, 1); }
367 | REGION_ALIAS '(' NAME ',' NAME ')'
368 { lang_memory_region_alias ($3, $5); }
369 | LD_FEATURE '(' NAME ')'
370 { lang_ld_feature ($3); }
373 input_list:
374 { ldlex_inputlist(); }
375 input_list1
376 { ldlex_popstate(); }
378 input_list1:
379 NAME
380 { lang_add_input_file($1,lang_input_file_is_search_file_enum,
381 (char *)NULL); }
382 | input_list1 ',' NAME
383 { lang_add_input_file($3,lang_input_file_is_search_file_enum,
384 (char *)NULL); }
385 | input_list1 NAME
386 { lang_add_input_file($2,lang_input_file_is_search_file_enum,
387 (char *)NULL); }
388 | LNAME
389 { lang_add_input_file($1,lang_input_file_is_l_enum,
390 (char *)NULL); }
391 | input_list1 ',' LNAME
392 { lang_add_input_file($3,lang_input_file_is_l_enum,
393 (char *)NULL); }
394 | input_list1 LNAME
395 { lang_add_input_file($2,lang_input_file_is_l_enum,
396 (char *)NULL); }
397 | AS_NEEDED '('
398 { $<integer>$ = input_flags.add_DT_NEEDED_for_regular;
399 input_flags.add_DT_NEEDED_for_regular = TRUE; }
400 input_list1 ')'
401 { input_flags.add_DT_NEEDED_for_regular = $<integer>3; }
402 | input_list1 ',' AS_NEEDED '('
403 { $<integer>$ = input_flags.add_DT_NEEDED_for_regular;
404 input_flags.add_DT_NEEDED_for_regular = TRUE; }
405 input_list1 ')'
406 { input_flags.add_DT_NEEDED_for_regular = $<integer>5; }
407 | input_list1 AS_NEEDED '('
408 { $<integer>$ = input_flags.add_DT_NEEDED_for_regular;
409 input_flags.add_DT_NEEDED_for_regular = TRUE; }
410 input_list1 ')'
411 { input_flags.add_DT_NEEDED_for_regular = $<integer>4; }
414 sections:
415 SECTIONS '{' sec_or_group_p1 '}'
418 sec_or_group_p1:
419 sec_or_group_p1 section
420 | sec_or_group_p1 statement_anywhere
424 statement_anywhere:
425 ENTRY '(' NAME ')'
426 { lang_add_entry ($3, FALSE); }
427 | assignment end
428 | ASSERT_K {ldlex_expression ();} '(' exp ',' NAME ')'
429 { ldlex_popstate ();
430 lang_add_assignment (exp_assert ($4, $6)); }
433 /* The '*' and '?' cases are there because the lexer returns them as
434 separate tokens rather than as NAME. */
435 wildcard_name:
436 NAME
438 $$ = $1;
440 | '*'
442 $$ = "*";
444 | '?'
446 $$ = "?";
450 wildcard_maybe_exclude:
451 wildcard_name
453 $$.name = $1;
454 $$.sorted = none;
455 $$.exclude_name_list = NULL;
456 $$.section_flag_list = NULL;
458 | EXCLUDE_FILE '(' exclude_name_list ')' wildcard_name
460 $$.name = $5;
461 $$.sorted = none;
462 $$.exclude_name_list = $3;
463 $$.section_flag_list = NULL;
467 filename_spec:
468 wildcard_maybe_exclude
469 | SORT_BY_NAME '(' wildcard_maybe_exclude ')'
471 $$ = $3;
472 $$.sorted = by_name;
474 | SORT_NONE '(' wildcard_maybe_exclude ')'
476 $$ = $3;
477 $$.sorted = by_none;
481 section_name_spec:
482 wildcard_maybe_exclude
483 | SORT_BY_NAME '(' wildcard_maybe_exclude ')'
485 $$ = $3;
486 $$.sorted = by_name;
488 | SORT_BY_ALIGNMENT '(' wildcard_maybe_exclude ')'
490 $$ = $3;
491 $$.sorted = by_alignment;
493 | SORT_NONE '(' wildcard_maybe_exclude ')'
495 $$ = $3;
496 $$.sorted = by_none;
498 | SORT_BY_NAME '(' SORT_BY_ALIGNMENT '(' wildcard_maybe_exclude ')' ')'
500 $$ = $5;
501 $$.sorted = by_name_alignment;
503 | SORT_BY_NAME '(' SORT_BY_NAME '(' wildcard_maybe_exclude ')' ')'
505 $$ = $5;
506 $$.sorted = by_name;
508 | SORT_BY_ALIGNMENT '(' SORT_BY_NAME '(' wildcard_maybe_exclude ')' ')'
510 $$ = $5;
511 $$.sorted = by_alignment_name;
513 | SORT_BY_ALIGNMENT '(' SORT_BY_ALIGNMENT '(' wildcard_maybe_exclude ')' ')'
515 $$ = $5;
516 $$.sorted = by_alignment;
518 | SORT_BY_INIT_PRIORITY '(' wildcard_maybe_exclude ')'
520 $$ = $3;
521 $$.sorted = by_init_priority;
525 sect_flag_list: NAME
527 struct flag_info_list *n;
528 n = ((struct flag_info_list *) xmalloc (sizeof *n));
529 if ($1[0] == '!')
531 n->with = without_flags;
532 n->name = &$1[1];
534 else
536 n->with = with_flags;
537 n->name = $1;
539 n->valid = FALSE;
540 n->next = NULL;
541 $$ = n;
543 | sect_flag_list '&' NAME
545 struct flag_info_list *n;
546 n = ((struct flag_info_list *) xmalloc (sizeof *n));
547 if ($3[0] == '!')
549 n->with = without_flags;
550 n->name = &$3[1];
552 else
554 n->with = with_flags;
555 n->name = $3;
557 n->valid = FALSE;
558 n->next = $1;
559 $$ = n;
563 sect_flags:
564 INPUT_SECTION_FLAGS '(' sect_flag_list ')'
566 struct flag_info *n;
567 n = ((struct flag_info *) xmalloc (sizeof *n));
568 n->flag_list = $3;
569 n->flags_initialized = FALSE;
570 n->not_with_flags = 0;
571 n->only_with_flags = 0;
572 $$ = n;
576 exclude_name_list:
577 exclude_name_list wildcard_name
579 struct name_list *tmp;
580 tmp = (struct name_list *) xmalloc (sizeof *tmp);
581 tmp->name = $2;
582 tmp->next = $1;
583 $$ = tmp;
586 wildcard_name
588 struct name_list *tmp;
589 tmp = (struct name_list *) xmalloc (sizeof *tmp);
590 tmp->name = $1;
591 tmp->next = NULL;
592 $$ = tmp;
596 section_name_list:
597 section_name_list opt_comma section_name_spec
599 struct wildcard_list *tmp;
600 tmp = (struct wildcard_list *) xmalloc (sizeof *tmp);
601 tmp->next = $1;
602 tmp->spec = $3;
603 $$ = tmp;
606 section_name_spec
608 struct wildcard_list *tmp;
609 tmp = (struct wildcard_list *) xmalloc (sizeof *tmp);
610 tmp->next = NULL;
611 tmp->spec = $1;
612 $$ = tmp;
616 input_section_spec_no_keep:
617 NAME
619 struct wildcard_spec tmp;
620 tmp.name = $1;
621 tmp.exclude_name_list = NULL;
622 tmp.sorted = none;
623 tmp.section_flag_list = NULL;
624 lang_add_wild (&tmp, NULL, ldgram_had_keep);
626 | sect_flags NAME
628 struct wildcard_spec tmp;
629 tmp.name = $2;
630 tmp.exclude_name_list = NULL;
631 tmp.sorted = none;
632 tmp.section_flag_list = $1;
633 lang_add_wild (&tmp, NULL, ldgram_had_keep);
635 | '[' section_name_list ']'
637 lang_add_wild (NULL, $2, ldgram_had_keep);
639 | sect_flags '[' section_name_list ']'
641 struct wildcard_spec tmp;
642 tmp.name = NULL;
643 tmp.exclude_name_list = NULL;
644 tmp.sorted = none;
645 tmp.section_flag_list = $1;
646 lang_add_wild (&tmp, $3, ldgram_had_keep);
648 | filename_spec '(' section_name_list ')'
650 lang_add_wild (&$1, $3, ldgram_had_keep);
652 | sect_flags filename_spec '(' section_name_list ')'
654 $2.section_flag_list = $1;
655 lang_add_wild (&$2, $4, ldgram_had_keep);
659 input_section_spec:
660 input_section_spec_no_keep
661 | KEEP '('
662 { ldgram_had_keep = TRUE; }
663 input_section_spec_no_keep ')'
664 { ldgram_had_keep = FALSE; }
667 statement:
668 assignment end
669 | CREATE_OBJECT_SYMBOLS
671 lang_add_attribute(lang_object_symbols_statement_enum);
673 | ';'
674 | CONSTRUCTORS
677 lang_add_attribute(lang_constructors_statement_enum);
679 | SORT_BY_NAME '(' CONSTRUCTORS ')'
681 constructors_sorted = TRUE;
682 lang_add_attribute (lang_constructors_statement_enum);
684 | input_section_spec
685 | length '(' mustbe_exp ')'
687 lang_add_data ((int) $1, $3);
690 | FILL '(' fill_exp ')'
692 lang_add_fill ($3);
694 | ASSERT_K {ldlex_expression ();} '(' exp ',' NAME ')' end
695 { ldlex_popstate ();
696 lang_add_assignment (exp_assert ($4, $6)); }
697 | INCLUDE filename
698 { ldlex_script (); ldfile_open_command_file($2); }
699 statement_list_opt END
700 { ldlex_popstate (); }
703 statement_list:
704 statement_list statement
705 | statement
708 statement_list_opt:
709 /* empty */
710 | statement_list
713 length:
714 QUAD
715 { $$ = $1; }
716 | SQUAD
717 { $$ = $1; }
718 | LONG
719 { $$ = $1; }
720 | SHORT
721 { $$ = $1; }
722 | BYTE
723 { $$ = $1; }
726 fill_exp:
727 mustbe_exp
729 $$ = exp_get_fill ($1, 0, "fill value");
733 fill_opt:
734 '=' fill_exp
735 { $$ = $2; }
736 | { $$ = (fill_type *) 0; }
739 assign_op:
740 PLUSEQ
741 { $$ = '+'; }
742 | MINUSEQ
743 { $$ = '-'; }
744 | MULTEQ
745 { $$ = '*'; }
746 | DIVEQ
747 { $$ = '/'; }
748 | LSHIFTEQ
749 { $$ = LSHIFT; }
750 | RSHIFTEQ
751 { $$ = RSHIFT; }
752 | ANDEQ
753 { $$ = '&'; }
754 | OREQ
755 { $$ = '|'; }
759 end: ';' | ','
763 assignment:
764 NAME '=' mustbe_exp
766 lang_add_assignment (exp_assign ($1, $3, FALSE));
768 | NAME assign_op mustbe_exp
770 lang_add_assignment (exp_assign ($1,
771 exp_binop ($2,
772 exp_nameop (NAME,
773 $1),
774 $3), FALSE));
776 | HIDDEN '(' NAME '=' mustbe_exp ')'
778 lang_add_assignment (exp_assign ($3, $5, TRUE));
780 | PROVIDE '(' NAME '=' mustbe_exp ')'
782 lang_add_assignment (exp_provide ($3, $5, FALSE));
784 | PROVIDE_HIDDEN '(' NAME '=' mustbe_exp ')'
786 lang_add_assignment (exp_provide ($3, $5, TRUE));
791 opt_comma:
792 ',' | ;
795 memory:
796 MEMORY '{' memory_spec_list_opt '}'
799 memory_spec_list_opt: memory_spec_list | ;
801 memory_spec_list:
802 memory_spec_list opt_comma memory_spec
803 | memory_spec
807 memory_spec: NAME
808 { region = lang_memory_region_lookup ($1, TRUE); }
809 attributes_opt ':'
810 origin_spec opt_comma length_spec
812 | INCLUDE filename
813 { ldlex_script (); ldfile_open_command_file($2); }
814 memory_spec_list_opt END
815 { ldlex_popstate (); }
818 origin_spec:
819 ORIGIN '=' mustbe_exp
821 region->origin_exp = $3;
825 length_spec:
826 LENGTH '=' mustbe_exp
828 region->length_exp = $3;
832 attributes_opt:
833 /* empty */
834 { /* dummy action to avoid bison 1.25 error message */ }
835 | '(' attributes_list ')'
838 attributes_list:
839 attributes_string
840 | attributes_list attributes_string
843 attributes_string:
844 NAME
845 { lang_set_flags (region, $1, 0); }
846 | '!' NAME
847 { lang_set_flags (region, $2, 1); }
850 startup:
851 STARTUP '(' filename ')'
852 { lang_startup($3); }
855 high_level_library:
856 HLL '(' high_level_library_NAME_list ')'
857 | HLL '(' ')'
858 { ldemul_hll((char *)NULL); }
861 high_level_library_NAME_list:
862 high_level_library_NAME_list opt_comma filename
863 { ldemul_hll($3); }
864 | filename
865 { ldemul_hll($1); }
869 low_level_library:
870 SYSLIB '(' low_level_library_NAME_list ')'
871 ; low_level_library_NAME_list:
872 low_level_library_NAME_list opt_comma filename
873 { ldemul_syslib($3); }
877 floating_point_support:
878 FLOAT
879 { lang_float(TRUE); }
880 | NOFLOAT
881 { lang_float(FALSE); }
884 nocrossref_list:
885 /* empty */
887 $$ = NULL;
889 | NAME nocrossref_list
891 struct lang_nocrossref *n;
893 n = (struct lang_nocrossref *) xmalloc (sizeof *n);
894 n->name = $1;
895 n->next = $2;
896 $$ = n;
898 | NAME ',' nocrossref_list
900 struct lang_nocrossref *n;
902 n = (struct lang_nocrossref *) xmalloc (sizeof *n);
903 n->name = $1;
904 n->next = $3;
905 $$ = n;
909 mustbe_exp: { ldlex_expression (); }
911 { ldlex_popstate (); $$=$2;}
914 exp :
915 '-' exp %prec UNARY
916 { $$ = exp_unop ('-', $2); }
917 | '(' exp ')'
918 { $$ = $2; }
919 | NEXT '(' exp ')' %prec UNARY
920 { $$ = exp_unop ((int) $1,$3); }
921 | '!' exp %prec UNARY
922 { $$ = exp_unop ('!', $2); }
923 | '+' exp %prec UNARY
924 { $$ = $2; }
925 | '~' exp %prec UNARY
926 { $$ = exp_unop ('~', $2);}
928 | exp '*' exp
929 { $$ = exp_binop ('*', $1, $3); }
930 | exp '/' exp
931 { $$ = exp_binop ('/', $1, $3); }
932 | exp '%' exp
933 { $$ = exp_binop ('%', $1, $3); }
934 | exp '+' exp
935 { $$ = exp_binop ('+', $1, $3); }
936 | exp '-' exp
937 { $$ = exp_binop ('-' , $1, $3); }
938 | exp LSHIFT exp
939 { $$ = exp_binop (LSHIFT , $1, $3); }
940 | exp RSHIFT exp
941 { $$ = exp_binop (RSHIFT , $1, $3); }
942 | exp EQ exp
943 { $$ = exp_binop (EQ , $1, $3); }
944 | exp NE exp
945 { $$ = exp_binop (NE , $1, $3); }
946 | exp LE exp
947 { $$ = exp_binop (LE , $1, $3); }
948 | exp GE exp
949 { $$ = exp_binop (GE , $1, $3); }
950 | exp '<' exp
951 { $$ = exp_binop ('<' , $1, $3); }
952 | exp '>' exp
953 { $$ = exp_binop ('>' , $1, $3); }
954 | exp '&' exp
955 { $$ = exp_binop ('&' , $1, $3); }
956 | exp '^' exp
957 { $$ = exp_binop ('^' , $1, $3); }
958 | exp '|' exp
959 { $$ = exp_binop ('|' , $1, $3); }
960 | exp '?' exp ':' exp
961 { $$ = exp_trinop ('?' , $1, $3, $5); }
962 | exp ANDAND exp
963 { $$ = exp_binop (ANDAND , $1, $3); }
964 | exp OROR exp
965 { $$ = exp_binop (OROR , $1, $3); }
966 | DEFINED '(' NAME ')'
967 { $$ = exp_nameop (DEFINED, $3); }
968 | INT
969 { $$ = exp_bigintop ($1.integer, $1.str); }
970 | SIZEOF_HEADERS
971 { $$ = exp_nameop (SIZEOF_HEADERS,0); }
973 | ALIGNOF '(' NAME ')'
974 { $$ = exp_nameop (ALIGNOF,$3); }
975 | SIZEOF '(' NAME ')'
976 { $$ = exp_nameop (SIZEOF,$3); }
977 | ADDR '(' NAME ')'
978 { $$ = exp_nameop (ADDR,$3); }
979 | LOADADDR '(' NAME ')'
980 { $$ = exp_nameop (LOADADDR,$3); }
981 | CONSTANT '(' NAME ')'
982 { $$ = exp_nameop (CONSTANT,$3); }
983 | ABSOLUTE '(' exp ')'
984 { $$ = exp_unop (ABSOLUTE, $3); }
985 | ALIGN_K '(' exp ')'
986 { $$ = exp_unop (ALIGN_K,$3); }
987 | ALIGN_K '(' exp ',' exp ')'
988 { $$ = exp_binop (ALIGN_K,$3,$5); }
989 | DATA_SEGMENT_ALIGN '(' exp ',' exp ')'
990 { $$ = exp_binop (DATA_SEGMENT_ALIGN, $3, $5); }
991 | DATA_SEGMENT_RELRO_END '(' exp ',' exp ')'
992 { $$ = exp_binop (DATA_SEGMENT_RELRO_END, $5, $3); }
993 | DATA_SEGMENT_END '(' exp ')'
994 { $$ = exp_unop (DATA_SEGMENT_END, $3); }
995 | SEGMENT_START '(' NAME ',' exp ')'
996 { /* The operands to the expression node are
997 placed in the opposite order from the way
998 in which they appear in the script as
999 that allows us to reuse more code in
1000 fold_binary. */
1001 $$ = exp_binop (SEGMENT_START,
1003 exp_nameop (NAME, $3)); }
1004 | BLOCK '(' exp ')'
1005 { $$ = exp_unop (ALIGN_K,$3); }
1006 | NAME
1007 { $$ = exp_nameop (NAME,$1); }
1008 | MAX_K '(' exp ',' exp ')'
1009 { $$ = exp_binop (MAX_K, $3, $5 ); }
1010 | MIN_K '(' exp ',' exp ')'
1011 { $$ = exp_binop (MIN_K, $3, $5 ); }
1012 | ASSERT_K '(' exp ',' NAME ')'
1013 { $$ = exp_assert ($3, $5); }
1014 | ORIGIN '(' NAME ')'
1015 { $$ = exp_nameop (ORIGIN, $3); }
1016 | LENGTH '(' NAME ')'
1017 { $$ = exp_nameop (LENGTH, $3); }
1018 | LOG2CEIL '(' exp ')'
1019 { $$ = exp_unop (LOG2CEIL, $3); }
1023 memspec_at_opt:
1024 AT '>' NAME { $$ = $3; }
1025 | { $$ = 0; }
1028 opt_at:
1029 AT '(' exp ')' { $$ = $3; }
1030 | { $$ = 0; }
1033 opt_align:
1034 ALIGN_K '(' exp ')' { $$ = $3; }
1035 | { $$ = 0; }
1038 opt_align_with_input:
1039 ALIGN_WITH_INPUT { $$ = ALIGN_WITH_INPUT; }
1040 | { $$ = 0; }
1043 opt_subalign:
1044 SUBALIGN '(' exp ')' { $$ = $3; }
1045 | { $$ = 0; }
1048 sect_constraint:
1049 ONLY_IF_RO { $$ = ONLY_IF_RO; }
1050 | ONLY_IF_RW { $$ = ONLY_IF_RW; }
1051 | SPECIAL { $$ = SPECIAL; }
1052 | { $$ = 0; }
1055 section: NAME { ldlex_expression(); }
1056 opt_exp_with_type
1057 opt_at
1058 opt_align
1059 opt_align_with_input
1060 opt_subalign { ldlex_popstate (); ldlex_script (); }
1061 sect_constraint
1064 lang_enter_output_section_statement($1, $3,
1065 sectype,
1066 $5, $7, $4, $9, $6);
1068 statement_list_opt
1069 '}' { ldlex_popstate (); ldlex_expression (); }
1070 memspec_opt memspec_at_opt phdr_opt fill_opt
1072 ldlex_popstate ();
1073 lang_leave_output_section_statement ($18, $15, $17, $16);
1075 opt_comma
1077 | OVERLAY
1078 { ldlex_expression (); }
1079 opt_exp_without_type opt_nocrossrefs opt_at opt_subalign
1080 { ldlex_popstate (); ldlex_script (); }
1083 lang_enter_overlay ($3, $6);
1085 overlay_section
1087 { ldlex_popstate (); ldlex_expression (); }
1088 memspec_opt memspec_at_opt phdr_opt fill_opt
1090 ldlex_popstate ();
1091 lang_leave_overlay ($5, (int) $4,
1092 $16, $13, $15, $14);
1094 opt_comma
1095 | /* The GROUP case is just enough to support the gcc
1096 svr3.ifile script. It is not intended to be full
1097 support. I'm not even sure what GROUP is supposed
1098 to mean. */
1099 GROUP { ldlex_expression (); }
1100 opt_exp_with_type
1102 ldlex_popstate ();
1103 lang_add_assignment (exp_assign (".", $3, FALSE));
1105 '{' sec_or_group_p1 '}'
1106 | INCLUDE filename
1107 { ldlex_script (); ldfile_open_command_file($2); }
1108 sec_or_group_p1 END
1109 { ldlex_popstate (); }
1112 type:
1113 NOLOAD { sectype = noload_section; }
1114 | DSECT { sectype = noalloc_section; }
1115 | COPY { sectype = noalloc_section; }
1116 | INFO { sectype = noalloc_section; }
1117 | OVERLAY { sectype = noalloc_section; }
1120 atype:
1121 '(' type ')'
1122 | /* EMPTY */ { sectype = normal_section; }
1123 | '(' ')' { sectype = normal_section; }
1126 opt_exp_with_type:
1127 exp atype ':' { $$ = $1; }
1128 | atype ':' { $$ = (etree_type *)NULL; }
1129 | /* The BIND cases are to support the gcc svr3.ifile
1130 script. They aren't intended to implement full
1131 support for the BIND keyword. I'm not even sure
1132 what BIND is supposed to mean. */
1133 BIND '(' exp ')' atype ':' { $$ = $3; }
1134 | BIND '(' exp ')' BLOCK '(' exp ')' atype ':'
1135 { $$ = $3; }
1138 opt_exp_without_type:
1139 exp ':' { $$ = $1; }
1140 | ':' { $$ = (etree_type *) NULL; }
1143 opt_nocrossrefs:
1144 /* empty */
1145 { $$ = 0; }
1146 | NOCROSSREFS
1147 { $$ = 1; }
1150 memspec_opt:
1151 '>' NAME
1152 { $$ = $2; }
1153 | { $$ = DEFAULT_MEMORY_REGION; }
1156 phdr_opt:
1157 /* empty */
1159 $$ = NULL;
1161 | phdr_opt ':' NAME
1163 struct lang_output_section_phdr_list *n;
1165 n = ((struct lang_output_section_phdr_list *)
1166 xmalloc (sizeof *n));
1167 n->name = $3;
1168 n->used = FALSE;
1169 n->next = $1;
1170 $$ = n;
1174 overlay_section:
1175 /* empty */
1176 | overlay_section
1177 NAME
1179 ldlex_script ();
1180 lang_enter_overlay_section ($2);
1182 '{' statement_list_opt '}'
1183 { ldlex_popstate (); ldlex_expression (); }
1184 phdr_opt fill_opt
1186 ldlex_popstate ();
1187 lang_leave_overlay_section ($9, $8);
1189 opt_comma
1192 phdrs:
1193 PHDRS '{' phdr_list '}'
1196 phdr_list:
1197 /* empty */
1198 | phdr_list phdr
1201 phdr:
1202 NAME { ldlex_expression (); }
1203 phdr_type phdr_qualifiers { ldlex_popstate (); }
1206 lang_new_phdr ($1, $3, $4.filehdr, $4.phdrs, $4.at,
1207 $4.flags);
1211 phdr_type:
1214 $$ = $1;
1216 if ($1->type.node_class == etree_name
1217 && $1->type.node_code == NAME)
1219 const char *s;
1220 unsigned int i;
1221 static const char * const phdr_types[] =
1223 "PT_NULL", "PT_LOAD", "PT_DYNAMIC",
1224 "PT_INTERP", "PT_NOTE", "PT_SHLIB",
1225 "PT_PHDR", "PT_TLS"
1228 s = $1->name.name;
1229 for (i = 0;
1230 i < sizeof phdr_types / sizeof phdr_types[0];
1231 i++)
1232 if (strcmp (s, phdr_types[i]) == 0)
1234 $$ = exp_intop (i);
1235 break;
1237 if (i == sizeof phdr_types / sizeof phdr_types[0])
1239 if (strcmp (s, "PT_GNU_EH_FRAME") == 0)
1240 $$ = exp_intop (0x6474e550);
1241 else if (strcmp (s, "PT_GNU_STACK") == 0)
1242 $$ = exp_intop (0x6474e551);
1243 else
1245 einfo (_("\
1246 %X%P:%pS: unknown phdr type `%s' (try integer literal)\n"),
1247 NULL, s);
1248 $$ = exp_intop (0);
1255 phdr_qualifiers:
1256 /* empty */
1258 memset (&$$, 0, sizeof (struct phdr_info));
1260 | NAME phdr_val phdr_qualifiers
1262 $$ = $3;
1263 if (strcmp ($1, "FILEHDR") == 0 && $2 == NULL)
1264 $$.filehdr = TRUE;
1265 else if (strcmp ($1, "PHDRS") == 0 && $2 == NULL)
1266 $$.phdrs = TRUE;
1267 else if (strcmp ($1, "FLAGS") == 0 && $2 != NULL)
1268 $$.flags = $2;
1269 else
1270 einfo (_("%X%P:%pS: PHDRS syntax error at `%s'\n"),
1271 NULL, $1);
1273 | AT '(' exp ')' phdr_qualifiers
1275 $$ = $5;
1276 $$.at = $3;
1280 phdr_val:
1281 /* empty */
1283 $$ = NULL;
1285 | '(' exp ')'
1287 $$ = $2;
1291 dynamic_list_file:
1293 ldlex_version_file ();
1294 PUSH_ERROR (_("dynamic list"));
1296 dynamic_list_nodes
1298 ldlex_popstate ();
1299 POP_ERROR ();
1303 dynamic_list_nodes:
1304 dynamic_list_node
1305 | dynamic_list_nodes dynamic_list_node
1308 dynamic_list_node:
1309 '{' dynamic_list_tag '}' ';'
1312 dynamic_list_tag:
1313 vers_defns ';'
1315 lang_append_dynamic_list ($1);
1319 /* This syntax is used within an external version script file. */
1321 version_script_file:
1323 ldlex_version_file ();
1324 PUSH_ERROR (_("VERSION script"));
1326 vers_nodes
1328 ldlex_popstate ();
1329 POP_ERROR ();
1333 /* This is used within a normal linker script file. */
1335 version:
1337 ldlex_version_script ();
1339 VERSIONK '{' vers_nodes '}'
1341 ldlex_popstate ();
1345 vers_nodes:
1346 vers_node
1347 | vers_nodes vers_node
1350 vers_node:
1351 '{' vers_tag '}' ';'
1353 lang_register_vers_node (NULL, $2, NULL);
1355 | VERS_TAG '{' vers_tag '}' ';'
1357 lang_register_vers_node ($1, $3, NULL);
1359 | VERS_TAG '{' vers_tag '}' verdep ';'
1361 lang_register_vers_node ($1, $3, $5);
1365 verdep:
1366 VERS_TAG
1368 $$ = lang_add_vers_depend (NULL, $1);
1370 | verdep VERS_TAG
1372 $$ = lang_add_vers_depend ($1, $2);
1376 vers_tag:
1377 /* empty */
1379 $$ = lang_new_vers_node (NULL, NULL);
1381 | vers_defns ';'
1383 $$ = lang_new_vers_node ($1, NULL);
1385 | GLOBAL ':' vers_defns ';'
1387 $$ = lang_new_vers_node ($3, NULL);
1389 | LOCAL ':' vers_defns ';'
1391 $$ = lang_new_vers_node (NULL, $3);
1393 | GLOBAL ':' vers_defns ';' LOCAL ':' vers_defns ';'
1395 $$ = lang_new_vers_node ($3, $7);
1399 vers_defns:
1400 VERS_IDENTIFIER
1402 $$ = lang_new_vers_pattern (NULL, $1, ldgram_vers_current_lang, FALSE);
1404 | NAME
1406 $$ = lang_new_vers_pattern (NULL, $1, ldgram_vers_current_lang, TRUE);
1408 | vers_defns ';' VERS_IDENTIFIER
1410 $$ = lang_new_vers_pattern ($1, $3, ldgram_vers_current_lang, FALSE);
1412 | vers_defns ';' NAME
1414 $$ = lang_new_vers_pattern ($1, $3, ldgram_vers_current_lang, TRUE);
1416 | vers_defns ';' EXTERN NAME '{'
1418 $<name>$ = ldgram_vers_current_lang;
1419 ldgram_vers_current_lang = $4;
1421 vers_defns opt_semicolon '}'
1423 struct bfd_elf_version_expr *pat;
1424 for (pat = $7; pat->next != NULL; pat = pat->next);
1425 pat->next = $1;
1426 $$ = $7;
1427 ldgram_vers_current_lang = $<name>6;
1429 | EXTERN NAME '{'
1431 $<name>$ = ldgram_vers_current_lang;
1432 ldgram_vers_current_lang = $2;
1434 vers_defns opt_semicolon '}'
1436 $$ = $5;
1437 ldgram_vers_current_lang = $<name>4;
1439 | GLOBAL
1441 $$ = lang_new_vers_pattern (NULL, "global", ldgram_vers_current_lang, FALSE);
1443 | vers_defns ';' GLOBAL
1445 $$ = lang_new_vers_pattern ($1, "global", ldgram_vers_current_lang, FALSE);
1447 | LOCAL
1449 $$ = lang_new_vers_pattern (NULL, "local", ldgram_vers_current_lang, FALSE);
1451 | vers_defns ';' LOCAL
1453 $$ = lang_new_vers_pattern ($1, "local", ldgram_vers_current_lang, FALSE);
1455 | EXTERN
1457 $$ = lang_new_vers_pattern (NULL, "extern", ldgram_vers_current_lang, FALSE);
1459 | vers_defns ';' EXTERN
1461 $$ = lang_new_vers_pattern ($1, "extern", ldgram_vers_current_lang, FALSE);
1465 opt_semicolon:
1466 /* empty */
1467 | ';'
1471 void
1472 yyerror(arg)
1473 const char *arg;
1475 if (ldfile_assumed_script)
1476 einfo (_("%P:%s: file format not recognized; treating as linker script\n"),
1477 ldlex_filename ());
1478 if (error_index > 0 && error_index < ERROR_NAME_MAX)
1479 einfo ("%F%P:%pS: %s in %s\n", NULL, arg, error_names[error_index - 1]);
1480 else
1481 einfo ("%F%P:%pS: %s\n", NULL, arg);