1 /* A YACC grammar to parse a superset of the AT&T linker scripting language.
2 Copyright (C) 1991-2018 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
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--;
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;
76 union etree_union *etree;
81 union etree_union *at;
82 union etree_union *flags;
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
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> '?' ':'
118 %left <token> '<' '>' LE GE
119 %left <token> LSHIFT RSHIFT
121 %left <token> '+' '-'
122 %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
133 %token SIZEOF_HEADERS OUTPUT_FORMAT FORCE_COMMON_ALLOCATION OUTPUT_ARCH
134 %token INHIBIT_COMMON_ALLOCATION FORCE_GROUP_ALLOCATION
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
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
158 %type <versyms> vers_defns
159 %type <versnode> vers_tag
160 %type <deflist> verdep
161 %token INPUT_DYNAMIC_LIST
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
182 lang_add_assignment (exp_defsym ($2, $4));
186 /* SYNTAX WITHIN AN MRI SCRIPT FILE */
190 PUSH_ERROR (_("MRI style script"));
201 mri_script_lines mri_script_command NEWLINE
209 einfo(_("%F%P: unrecognised keyword in MRI style script '%s'\n"),$1);
212 config.map_filename = "-";
214 | ORDER ordernamelist
216 | PUBLIC NAME '=' exp
217 { mri_public($2, $4); }
218 | PUBLIC NAME ',' exp
219 { mri_public($2, $4); }
221 { mri_public($2, $3); }
225 { mri_output_section($2, $4);}
227 { mri_output_section($2, $3);}
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
242 | ALIAS NAME ',' NAME
243 { mri_alias($2,$4,0);}
245 { mri_alias ($2, 0, (int) $4.integer); }
249 { mri_truncate ((unsigned int) $2.integer); }
251 | EXTERN extern_name_list
253 { ldlex_script (); ldfile_open_command_file($2); }
255 { ldlex_popstate (); }
257 { lang_add_entry ($2, FALSE); }
262 ordernamelist ',' NAME { mri_order($3); }
263 | ordernamelist NAME { mri_order($2); }
270 | mri_load_name_list ',' NAME { mri_load($3); }
275 { mri_only_load($1); }
276 | mri_abs_name_list ',' NAME
277 { mri_only_load($3); }
281 /* empty */ { $$ = NULL; }
283 | casesymlist ',' NAME
286 /* Parsed as expressions so that commas separate entries */
288 { ldlex_expression (); }
289 extern_name_list_body
290 { ldlex_popstate (); }
292 extern_name_list_body:
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); }
304 { ldlex_popstate(); }
320 | floating_point_support
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,
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 ')'
345 { lang_enter_group (); }
347 { lang_leave_group (); }
348 | MAP '(' filename ')'
349 { lang_add_map($3); }
351 { ldlex_script (); ldfile_open_command_file($2); }
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); }
374 { ldlex_inputlist(); }
376 { ldlex_popstate(); }
380 { lang_add_input_file($1,lang_input_file_is_search_file_enum,
382 | input_list1 ',' NAME
383 { lang_add_input_file($3,lang_input_file_is_search_file_enum,
386 { lang_add_input_file($2,lang_input_file_is_search_file_enum,
389 { lang_add_input_file($1,lang_input_file_is_l_enum,
391 | input_list1 ',' LNAME
392 { lang_add_input_file($3,lang_input_file_is_l_enum,
395 { lang_add_input_file($2,lang_input_file_is_l_enum,
398 { $<integer>$ = input_flags.add_DT_NEEDED_for_regular;
399 input_flags.add_DT_NEEDED_for_regular = TRUE; }
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; }
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; }
411 { input_flags.add_DT_NEEDED_for_regular = $<integer>4; }
415 SECTIONS '{' sec_or_group_p1 '}'
419 sec_or_group_p1 section
420 | sec_or_group_p1 statement_anywhere
426 { lang_add_entry ($3, FALSE); }
428 | ASSERT_K {ldlex_expression ();} '(' exp ',' NAME ')'
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. */
450 wildcard_maybe_exclude:
455 $$.exclude_name_list = NULL;
456 $$.section_flag_list = NULL;
458 | EXCLUDE_FILE '(' exclude_name_list ')' wildcard_name
462 $$.exclude_name_list = $3;
463 $$.section_flag_list = NULL;
468 wildcard_maybe_exclude
469 | SORT_BY_NAME '(' wildcard_maybe_exclude ')'
474 | SORT_NONE '(' wildcard_maybe_exclude ')'
482 wildcard_maybe_exclude
483 | SORT_BY_NAME '(' wildcard_maybe_exclude ')'
488 | SORT_BY_ALIGNMENT '(' wildcard_maybe_exclude ')'
491 $$.sorted = by_alignment;
493 | SORT_NONE '(' wildcard_maybe_exclude ')'
498 | SORT_BY_NAME '(' SORT_BY_ALIGNMENT '(' wildcard_maybe_exclude ')' ')'
501 $$.sorted = by_name_alignment;
503 | SORT_BY_NAME '(' SORT_BY_NAME '(' wildcard_maybe_exclude ')' ')'
508 | SORT_BY_ALIGNMENT '(' SORT_BY_NAME '(' wildcard_maybe_exclude ')' ')'
511 $$.sorted = by_alignment_name;
513 | SORT_BY_ALIGNMENT '(' SORT_BY_ALIGNMENT '(' wildcard_maybe_exclude ')' ')'
516 $$.sorted = by_alignment;
518 | SORT_BY_INIT_PRIORITY '(' wildcard_maybe_exclude ')'
521 $$.sorted = by_init_priority;
527 struct flag_info_list *n;
528 n = ((struct flag_info_list *) xmalloc (sizeof *n));
531 n->with = without_flags;
536 n->with = with_flags;
543 | sect_flag_list '&' NAME
545 struct flag_info_list *n;
546 n = ((struct flag_info_list *) xmalloc (sizeof *n));
549 n->with = without_flags;
554 n->with = with_flags;
564 INPUT_SECTION_FLAGS '(' sect_flag_list ')'
567 n = ((struct flag_info *) xmalloc (sizeof *n));
569 n->flags_initialized = FALSE;
570 n->not_with_flags = 0;
571 n->only_with_flags = 0;
577 exclude_name_list wildcard_name
579 struct name_list *tmp;
580 tmp = (struct name_list *) xmalloc (sizeof *tmp);
588 struct name_list *tmp;
589 tmp = (struct name_list *) xmalloc (sizeof *tmp);
597 section_name_list opt_comma section_name_spec
599 struct wildcard_list *tmp;
600 tmp = (struct wildcard_list *) xmalloc (sizeof *tmp);
608 struct wildcard_list *tmp;
609 tmp = (struct wildcard_list *) xmalloc (sizeof *tmp);
616 input_section_spec_no_keep:
619 struct wildcard_spec tmp;
621 tmp.exclude_name_list = NULL;
623 tmp.section_flag_list = NULL;
624 lang_add_wild (&tmp, NULL, ldgram_had_keep);
628 struct wildcard_spec tmp;
630 tmp.exclude_name_list = NULL;
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;
643 tmp.exclude_name_list = NULL;
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);
660 input_section_spec_no_keep
662 { ldgram_had_keep = TRUE; }
663 input_section_spec_no_keep ')'
664 { ldgram_had_keep = FALSE; }
669 | CREATE_OBJECT_SYMBOLS
671 lang_add_attribute(lang_object_symbols_statement_enum);
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);
685 | length '(' mustbe_exp ')'
687 lang_add_data ((int) $1, $3);
690 | FILL '(' fill_exp ')'
694 | ASSERT_K {ldlex_expression ();} '(' exp ',' NAME ')' end
696 lang_add_assignment (exp_assert ($4, $6)); }
698 { ldlex_script (); ldfile_open_command_file($2); }
699 statement_list_opt END
700 { ldlex_popstate (); }
704 statement_list statement
729 $$ = exp_get_fill ($1, 0, "fill value");
736 | { $$ = (fill_type *) 0; }
766 lang_add_assignment (exp_assign ($1, $3, FALSE));
768 | NAME assign_op mustbe_exp
770 lang_add_assignment (exp_assign ($1,
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));
796 MEMORY '{' memory_spec_list_opt '}'
799 memory_spec_list_opt: memory_spec_list | ;
802 memory_spec_list opt_comma memory_spec
808 { region = lang_memory_region_lookup ($1, TRUE); }
810 origin_spec opt_comma length_spec
813 { ldlex_script (); ldfile_open_command_file($2); }
814 memory_spec_list_opt END
815 { ldlex_popstate (); }
819 ORIGIN '=' mustbe_exp
821 region->origin_exp = $3;
822 region->current = region->origin;
827 LENGTH '=' mustbe_exp
829 region->length_exp = $3;
835 { /* dummy action to avoid bison 1.25 error message */ }
836 | '(' attributes_list ')'
841 | attributes_list attributes_string
846 { lang_set_flags (region, $1, 0); }
848 { lang_set_flags (region, $2, 1); }
852 STARTUP '(' filename ')'
853 { lang_startup($3); }
857 HLL '(' high_level_library_NAME_list ')'
859 { ldemul_hll((char *)NULL); }
862 high_level_library_NAME_list:
863 high_level_library_NAME_list opt_comma filename
871 SYSLIB '(' low_level_library_NAME_list ')'
872 ; low_level_library_NAME_list:
873 low_level_library_NAME_list opt_comma filename
874 { ldemul_syslib($3); }
878 floating_point_support:
880 { lang_float(TRUE); }
882 { lang_float(FALSE); }
890 | NAME nocrossref_list
892 struct lang_nocrossref *n;
894 n = (struct lang_nocrossref *) xmalloc (sizeof *n);
899 | NAME ',' nocrossref_list
901 struct lang_nocrossref *n;
903 n = (struct lang_nocrossref *) xmalloc (sizeof *n);
910 mustbe_exp: { ldlex_expression (); }
912 { ldlex_popstate (); $$=$2;}
917 { $$ = exp_unop ('-', $2); }
920 | NEXT '(' exp ')' %prec UNARY
921 { $$ = exp_unop ((int) $1,$3); }
922 | '!' exp %prec UNARY
923 { $$ = exp_unop ('!', $2); }
924 | '+' exp %prec UNARY
926 | '~' exp %prec UNARY
927 { $$ = exp_unop ('~', $2);}
930 { $$ = exp_binop ('*', $1, $3); }
932 { $$ = exp_binop ('/', $1, $3); }
934 { $$ = exp_binop ('%', $1, $3); }
936 { $$ = exp_binop ('+', $1, $3); }
938 { $$ = exp_binop ('-' , $1, $3); }
940 { $$ = exp_binop (LSHIFT , $1, $3); }
942 { $$ = exp_binop (RSHIFT , $1, $3); }
944 { $$ = exp_binop (EQ , $1, $3); }
946 { $$ = exp_binop (NE , $1, $3); }
948 { $$ = exp_binop (LE , $1, $3); }
950 { $$ = exp_binop (GE , $1, $3); }
952 { $$ = exp_binop ('<' , $1, $3); }
954 { $$ = exp_binop ('>' , $1, $3); }
956 { $$ = exp_binop ('&' , $1, $3); }
958 { $$ = exp_binop ('^' , $1, $3); }
960 { $$ = exp_binop ('|' , $1, $3); }
961 | exp '?' exp ':' exp
962 { $$ = exp_trinop ('?' , $1, $3, $5); }
964 { $$ = exp_binop (ANDAND , $1, $3); }
966 { $$ = exp_binop (OROR , $1, $3); }
967 | DEFINED '(' NAME ')'
968 { $$ = exp_nameop (DEFINED, $3); }
970 { $$ = exp_bigintop ($1.integer, $1.str); }
972 { $$ = exp_nameop (SIZEOF_HEADERS,0); }
974 | ALIGNOF '(' NAME ')'
975 { $$ = exp_nameop (ALIGNOF,$3); }
976 | SIZEOF '(' NAME ')'
977 { $$ = exp_nameop (SIZEOF,$3); }
979 { $$ = exp_nameop (ADDR,$3); }
980 | LOADADDR '(' NAME ')'
981 { $$ = exp_nameop (LOADADDR,$3); }
982 | CONSTANT '(' NAME ')'
983 { $$ = exp_nameop (CONSTANT,$3); }
984 | ABSOLUTE '(' exp ')'
985 { $$ = exp_unop (ABSOLUTE, $3); }
986 | ALIGN_K '(' exp ')'
987 { $$ = exp_unop (ALIGN_K,$3); }
988 | ALIGN_K '(' exp ',' exp ')'
989 { $$ = exp_binop (ALIGN_K,$3,$5); }
990 | DATA_SEGMENT_ALIGN '(' exp ',' exp ')'
991 { $$ = exp_binop (DATA_SEGMENT_ALIGN, $3, $5); }
992 | DATA_SEGMENT_RELRO_END '(' exp ',' exp ')'
993 { $$ = exp_binop (DATA_SEGMENT_RELRO_END, $5, $3); }
994 | DATA_SEGMENT_END '(' exp ')'
995 { $$ = exp_unop (DATA_SEGMENT_END, $3); }
996 | SEGMENT_START '(' NAME ',' exp ')'
997 { /* The operands to the expression node are
998 placed in the opposite order from the way
999 in which they appear in the script as
1000 that allows us to reuse more code in
1002 $$ = exp_binop (SEGMENT_START,
1004 exp_nameop (NAME, $3)); }
1006 { $$ = exp_unop (ALIGN_K,$3); }
1008 { $$ = exp_nameop (NAME,$1); }
1009 | MAX_K '(' exp ',' exp ')'
1010 { $$ = exp_binop (MAX_K, $3, $5 ); }
1011 | MIN_K '(' exp ',' exp ')'
1012 { $$ = exp_binop (MIN_K, $3, $5 ); }
1013 | ASSERT_K '(' exp ',' NAME ')'
1014 { $$ = exp_assert ($3, $5); }
1015 | ORIGIN '(' NAME ')'
1016 { $$ = exp_nameop (ORIGIN, $3); }
1017 | LENGTH '(' NAME ')'
1018 { $$ = exp_nameop (LENGTH, $3); }
1019 | LOG2CEIL '(' exp ')'
1020 { $$ = exp_unop (LOG2CEIL, $3); }
1025 AT '>' NAME { $$ = $3; }
1030 AT '(' exp ')' { $$ = $3; }
1035 ALIGN_K '(' exp ')' { $$ = $3; }
1039 opt_align_with_input:
1040 ALIGN_WITH_INPUT { $$ = ALIGN_WITH_INPUT; }
1045 SUBALIGN '(' exp ')' { $$ = $3; }
1050 ONLY_IF_RO { $$ = ONLY_IF_RO; }
1051 | ONLY_IF_RW { $$ = ONLY_IF_RW; }
1052 | SPECIAL { $$ = SPECIAL; }
1056 section: NAME { ldlex_expression(); }
1060 opt_align_with_input
1061 opt_subalign { ldlex_popstate (); ldlex_script (); }
1065 lang_enter_output_section_statement($1, $3,
1067 $5, $7, $4, $9, $6);
1070 '}' { ldlex_popstate (); ldlex_expression (); }
1071 memspec_opt memspec_at_opt phdr_opt fill_opt
1074 lang_leave_output_section_statement ($18, $15, $17, $16);
1079 { ldlex_expression (); }
1080 opt_exp_without_type opt_nocrossrefs opt_at opt_subalign
1081 { ldlex_popstate (); ldlex_script (); }
1084 lang_enter_overlay ($3, $6);
1088 { ldlex_popstate (); ldlex_expression (); }
1089 memspec_opt memspec_at_opt phdr_opt fill_opt
1092 lang_leave_overlay ($5, (int) $4,
1093 $16, $13, $15, $14);
1096 | /* The GROUP case is just enough to support the gcc
1097 svr3.ifile script. It is not intended to be full
1098 support. I'm not even sure what GROUP is supposed
1100 GROUP { ldlex_expression (); }
1104 lang_add_assignment (exp_assign (".", $3, FALSE));
1106 '{' sec_or_group_p1 '}'
1108 { ldlex_script (); ldfile_open_command_file($2); }
1110 { ldlex_popstate (); }
1114 NOLOAD { sectype = noload_section; }
1115 | DSECT { sectype = noalloc_section; }
1116 | COPY { sectype = noalloc_section; }
1117 | INFO { sectype = noalloc_section; }
1118 | OVERLAY { sectype = noalloc_section; }
1123 | /* EMPTY */ { sectype = normal_section; }
1124 | '(' ')' { sectype = normal_section; }
1128 exp atype ':' { $$ = $1; }
1129 | atype ':' { $$ = (etree_type *)NULL; }
1130 | /* The BIND cases are to support the gcc svr3.ifile
1131 script. They aren't intended to implement full
1132 support for the BIND keyword. I'm not even sure
1133 what BIND is supposed to mean. */
1134 BIND '(' exp ')' atype ':' { $$ = $3; }
1135 | BIND '(' exp ')' BLOCK '(' exp ')' atype ':'
1139 opt_exp_without_type:
1140 exp ':' { $$ = $1; }
1141 | ':' { $$ = (etree_type *) NULL; }
1154 | { $$ = DEFAULT_MEMORY_REGION; }
1164 struct lang_output_section_phdr_list *n;
1166 n = ((struct lang_output_section_phdr_list *)
1167 xmalloc (sizeof *n));
1181 lang_enter_overlay_section ($2);
1183 '{' statement_list_opt '}'
1184 { ldlex_popstate (); ldlex_expression (); }
1188 lang_leave_overlay_section ($9, $8);
1194 PHDRS '{' phdr_list '}'
1203 NAME { ldlex_expression (); }
1204 phdr_type phdr_qualifiers { ldlex_popstate (); }
1207 lang_new_phdr ($1, $3, $4.filehdr, $4.phdrs, $4.at,
1217 if ($1->type.node_class == etree_name
1218 && $1->type.node_code == NAME)
1222 static const char * const phdr_types[] =
1224 "PT_NULL", "PT_LOAD", "PT_DYNAMIC",
1225 "PT_INTERP", "PT_NOTE", "PT_SHLIB",
1231 i < sizeof phdr_types / sizeof phdr_types[0];
1233 if (strcmp (s, phdr_types[i]) == 0)
1238 if (i == sizeof phdr_types / sizeof phdr_types[0])
1240 if (strcmp (s, "PT_GNU_EH_FRAME") == 0)
1241 $$ = exp_intop (0x6474e550);
1242 else if (strcmp (s, "PT_GNU_STACK") == 0)
1243 $$ = exp_intop (0x6474e551);
1247 %X%P:%pS: unknown phdr type `%s' (try integer literal)\n"),
1259 memset (&$$, 0, sizeof (struct phdr_info));
1261 | NAME phdr_val phdr_qualifiers
1264 if (strcmp ($1, "FILEHDR") == 0 && $2 == NULL)
1266 else if (strcmp ($1, "PHDRS") == 0 && $2 == NULL)
1268 else if (strcmp ($1, "FLAGS") == 0 && $2 != NULL)
1271 einfo (_("%X%P:%pS: PHDRS syntax error at `%s'\n"),
1274 | AT '(' exp ')' phdr_qualifiers
1294 ldlex_version_file ();
1295 PUSH_ERROR (_("dynamic list"));
1306 | dynamic_list_nodes dynamic_list_node
1310 '{' dynamic_list_tag '}' ';'
1316 lang_append_dynamic_list ($1);
1320 /* This syntax is used within an external version script file. */
1322 version_script_file:
1324 ldlex_version_file ();
1325 PUSH_ERROR (_("VERSION script"));
1334 /* This is used within a normal linker script file. */
1338 ldlex_version_script ();
1340 VERSIONK '{' vers_nodes '}'
1348 | vers_nodes vers_node
1352 '{' vers_tag '}' ';'
1354 lang_register_vers_node (NULL, $2, NULL);
1356 | VERS_TAG '{' vers_tag '}' ';'
1358 lang_register_vers_node ($1, $3, NULL);
1360 | VERS_TAG '{' vers_tag '}' verdep ';'
1362 lang_register_vers_node ($1, $3, $5);
1369 $$ = lang_add_vers_depend (NULL, $1);
1373 $$ = lang_add_vers_depend ($1, $2);
1380 $$ = lang_new_vers_node (NULL, NULL);
1384 $$ = lang_new_vers_node ($1, NULL);
1386 | GLOBAL ':' vers_defns ';'
1388 $$ = lang_new_vers_node ($3, NULL);
1390 | LOCAL ':' vers_defns ';'
1392 $$ = lang_new_vers_node (NULL, $3);
1394 | GLOBAL ':' vers_defns ';' LOCAL ':' vers_defns ';'
1396 $$ = lang_new_vers_node ($3, $7);
1403 $$ = lang_new_vers_pattern (NULL, $1, ldgram_vers_current_lang, FALSE);
1407 $$ = lang_new_vers_pattern (NULL, $1, ldgram_vers_current_lang, TRUE);
1409 | vers_defns ';' VERS_IDENTIFIER
1411 $$ = lang_new_vers_pattern ($1, $3, ldgram_vers_current_lang, FALSE);
1413 | vers_defns ';' NAME
1415 $$ = lang_new_vers_pattern ($1, $3, ldgram_vers_current_lang, TRUE);
1417 | vers_defns ';' EXTERN NAME '{'
1419 $<name>$ = ldgram_vers_current_lang;
1420 ldgram_vers_current_lang = $4;
1422 vers_defns opt_semicolon '}'
1424 struct bfd_elf_version_expr *pat;
1425 for (pat = $7; pat->next != NULL; pat = pat->next);
1428 ldgram_vers_current_lang = $<name>6;
1432 $<name>$ = ldgram_vers_current_lang;
1433 ldgram_vers_current_lang = $2;
1435 vers_defns opt_semicolon '}'
1438 ldgram_vers_current_lang = $<name>4;
1442 $$ = lang_new_vers_pattern (NULL, "global", ldgram_vers_current_lang, FALSE);
1444 | vers_defns ';' GLOBAL
1446 $$ = lang_new_vers_pattern ($1, "global", ldgram_vers_current_lang, FALSE);
1450 $$ = lang_new_vers_pattern (NULL, "local", ldgram_vers_current_lang, FALSE);
1452 | vers_defns ';' LOCAL
1454 $$ = lang_new_vers_pattern ($1, "local", ldgram_vers_current_lang, FALSE);
1458 $$ = lang_new_vers_pattern (NULL, "extern", ldgram_vers_current_lang, FALSE);
1460 | vers_defns ';' EXTERN
1462 $$ = lang_new_vers_pattern ($1, "extern", ldgram_vers_current_lang, FALSE);
1476 if (ldfile_assumed_script)
1477 einfo (_("%P:%s: file format not recognized; treating as linker script\n"),
1479 if (error_index > 0 && error_index < ERROR_NAME_MAX)
1480 einfo ("%F%P:%pS: %s in %s\n", NULL, arg, error_names[error_index - 1]);
1482 einfo ("%F%P:%pS: %s\n", NULL, arg);