1 /* yyscript.y -- linker script grammar for gold. */
3 /* Copyright 2006, 2007, 2008 Free Software Foundation, Inc.
4 Written by Ian Lance Taylor <iant@google.com>.
6 This file is part of gold.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
23 /* This is a bison grammar to parse a subset of the original GNU ld
24 linker script language. */
39 /* We need to use a pure parser because we might be multi-threaded.
40 We pass some arguments through the parser to the lexer. */
44 %parse
-param
{void* closure
}
45 %lex
-param
{void* closure
}
47 /* Since we require bison anyhow, we take advantage of it. */
51 /* The values associated with tokens. */
55 struct Parser_string
string;
60 /* An output section header. */
61 struct Parser_output_section_header output_section_header
;
62 /* An output section trailer. */
63 struct Parser_output_section_trailer output_section_trailer
;
64 /* A section constraint. */
65 enum Section_constraint constraint
;
66 /* A complete input section specification. */
67 struct Input_section_spec input_section_spec
;
68 /* A list of wildcard specifications, with exclusions. */
69 struct Wildcard_sections wildcard_sections
;
70 /* A single wildcard specification. */
71 struct Wildcard_section wildcard_section
;
72 /* A list of strings. */
73 String_list_ptr string_list
;
74 /* Information for a program header. */
75 struct Phdr_info phdr_info
;
76 /* Used for version scripts and within VERSION {}. */
77 struct Version_dependency_list
* deplist
;
78 struct Version_expression_list
* versyms
;
79 struct Version_tree
* versnode
;
82 /* Operators, including a precedence table for expressions. */
84 %right PLUSEQ MINUSEQ MULTEQ DIVEQ
'=' LSHIFTEQ RSHIFTEQ ANDEQ OREQ
97 /* A fake operator used to indicate unary operator precedence. */
102 %token
<string> STRING
103 %token
<string> QUOTED_STRING
104 %token
<integer
> INTEGER
106 /* Keywords. This list is taken from ldgram.y and ldlex.l in the old
107 GNU linker, with the keywords which only appear in MRI mode
108 removed. Not all these keywords are actually used in this grammar.
109 In most cases the keyword is recognized as the token name in upper
110 case. The comments indicate where this is not the case. */
114 %token ALIGN_K
/* ALIGN */
116 %token ASSERT_K
/* ASSERT */
124 %token CREATE_OBJECT_SYMBOLS
125 %token DATA_SEGMENT_ALIGN
126 %token DATA_SEGMENT_END
127 %token DATA_SEGMENT_RELRO_END
134 %token FORCE_COMMON_ALLOCATION
135 %token GLOBAL
/* global */
139 %token INHIBIT_COMMON_ALLOCATION
142 %token LENGTH
/* LENGTH, l, len */
144 %token LOCAL
/* local */
147 %token MAX_K
/* MAX */
149 %token MIN_K
/* MIN */
155 %token ORIGIN
/* ORIGIN, o, org */
162 %token PROVIDE_HIDDEN
169 %token SIZEOF_HEADERS
/* SIZEOF_HEADERS, sizeof_headers */
170 %token SORT_BY_ALIGNMENT
177 %token TARGET_K
/* TARGET */
179 %token VERSIONK
/* VERSION */
181 /* Keywords, part 2. These are keywords that are unique to gold,
182 and not present in the old GNU linker. As before, unless the
183 comments say otherwise, the keyword is recognized as the token
184 name in upper case. */
188 /* Special tokens used to tell the grammar what type of tokens we are
189 parsing. The token stream always begins with one of these tokens.
190 We do this because version scripts can appear embedded within
191 linker scripts, and because --defsym uses the expression
193 %token PARSING_LINKER_SCRIPT
194 %token PARSING_VERSION_SCRIPT
195 %token PARSING_DEFSYM
196 %token PARSING_DYNAMIC_LIST
198 /* Non-terminal types, where needed. */
200 %type
<expr
> parse_exp exp opt_address_and_section_type
201 %type
<expr
> opt_at opt_align opt_subalign opt_fill
202 %type
<output_section_header
> section_header
203 %type
<output_section_trailer
> section_trailer
204 %type
<constraint
> opt_constraint
205 %type
<string_list
> opt_phdr
206 %type
<integer
> data_length
207 %type
<input_section_spec
> input_section_no_keep
208 %type
<wildcard_sections
> wildcard_sections
209 %type
<wildcard_section
> wildcard_file wildcard_section
210 %type
<string_list
> exclude_names
211 %type
<string> wildcard_name
212 %type
<integer
> phdr_type
213 %type
<phdr_info
> phdr_info
214 %type
<versyms
> vers_defns
215 %type
<versnode
> vers_tag
216 %type
<deplist
> verdep
217 %type
<string> string
221 /* Read the special token to see what to read next. */
223 PARSING_LINKER_SCRIPT linker_script
224 | PARSING_VERSION_SCRIPT version_script
225 | PARSING_DEFSYM defsym_expr
226 | PARSING_DYNAMIC_LIST dynamic_list_expr
229 /* A file contains a list of commands. */
231 linker_script file_cmd
235 /* A command which may appear at top level of a linker script. */
237 EXTERN
'(' extern_name_list
')'
238 | FORCE_COMMON_ALLOCATION
239 { script_set_common_allocation
(closure
, 1); }
241 { script_start_group
(closure
); }
243 { script_end_group
(closure
); }
244 | INHIBIT_COMMON_ALLOCATION
245 { script_set_common_allocation
(closure
, 0); }
246 | INPUT
'(' input_list
')'
247 | OPTION
'(' string ')'
248 { script_parse_option
(closure
, $3.value
, $3.length
); }
249 | OUTPUT_FORMAT
'(' string ')'
251 if
(!script_check_output_format
(closure
, $3.value
, $3.length
,
255 | OUTPUT_FORMAT
'(' string ',' string ',' string ')'
257 if
(!script_check_output_format
(closure
, $3.value
, $3.length
,
259 $7.value
, $7.length
))
262 | PHDRS
'{' phdrs_defs
'}'
263 | SEARCH_DIR
'(' string ')'
264 { script_add_search_dir
(closure
, $3.value
, $3.length
); }
266 { script_start_sections
(closure
); }
268 { script_finish_sections
(closure
); }
269 | TARGET_K
'(' string ')'
270 { script_set_target
(closure
, $3.value
, $3.length
); }
272 { script_push_lex_into_version_mode
(closure
); }
274 { script_pop_lex_mode
(closure
); }
275 | file_or_sections_cmd
280 /* Top level commands which we ignore. The GNU linker uses these to
281 select the output format, but we don't offer a choice. Ignoring
282 these is more-or-less OK since most scripts simply explicitly
283 choose the default. */
285 OUTPUT_ARCH
'(' string ')'
288 /* A list of external undefined symbols. We put the lexer into
289 expression mode so that commas separate names; this is what the GNU
293 { script_push_lex_into_expression_mode
(closure
); }
294 extern_name_list_body
295 { script_pop_lex_mode
(closure
); }
298 extern_name_list_body:
300 { script_add_extern
(closure
, $1.value
, $1.length
); }
301 | extern_name_list_body
string
302 { script_add_extern
(closure
, $2.value
, $2.length
); }
303 | extern_name_list_body
',' string
304 { script_add_extern
(closure
, $3.value
, $3.length
); }
307 /* A list of input file names. */
310 | input_list opt_comma input_list_element
313 /* An input file name. */
316 { script_add_file
(closure
, $1.value
, $1.length
); }
318 { script_start_as_needed
(closure
); }
320 { script_end_as_needed
(closure
); }
323 /* Commands in a SECTIONS block. */
325 sections_block section_block_cmd
329 /* A command which may appear within a SECTIONS block. */
332 |
string section_header
333 { script_start_output_section
(closure
, $1.value
, $1.length
, &$2); }
334 '{' section_cmds
'}' section_trailer
335 { script_finish_output_section
(closure
, &$7); }
338 /* The header of an output section in a SECTIONS block--everything
341 { script_push_lex_into_expression_mode
(closure
); }
342 opt_address_and_section_type opt_at opt_align opt_subalign
343 { script_pop_lex_mode
(closure
); }
347 $$.load_address
= $3;
354 /* The optional address followed by the optional section type. This
355 is a separate nonterminal to avoid a shift/reduce conflict on
356 '(' in section_header. */
358 opt_address_and_section_type:
367 | exp
'(' string ')' ':'
369 yyerror(closure
, "section types are not supported");
374 /* The address at which an output section should be loaded. */
382 /* The alignment of an output section. */
386 | ALIGN_K
'(' exp
')'
390 /* The input section alignment within an output section. */
394 | SUBALIGN
'(' exp
')'
398 /* A section constraint. */
401 { $$
= CONSTRAINT_NONE
; }
403 { $$
= CONSTRAINT_ONLY_IF_RO
; }
405 { $$
= CONSTRAINT_ONLY_IF_RW
; }
407 { $$
= CONSTRAINT_SPECIAL
; }
410 /* The trailer of an output section in a SECTIONS block. */
412 opt_memspec opt_at_memspec opt_phdr opt_fill opt_comma
419 /* A memory specification for an output section. */
422 { yyerror(closure
, "memory regions are not supported"); }
426 /* A memory specification for where to load an output section. */
429 { yyerror(closure
, "memory regions are not supported"); }
433 /* The program segment an output section should go into. */
436 { $$
= script_string_list_push_back
($1, $3.value
, $3.length
); }
441 /* The value to use to fill an output section. FIXME: This does not
442 handle a string of arbitrary length. */
450 /* Commands which may appear within the description of an output
451 section in a SECTIONS block. */
454 | section_cmds section_cmd
457 /* A command which may appear within the description of an output
458 section in a SECTIONS block. */
462 | data_length
'(' parse_exp
')'
463 { script_add_data
(closure
, $1, $3); }
464 | ASSERT_K
'(' parse_exp
',' string ')'
465 { script_add_assertion
(closure
, $3, $5.value
, $5.length
); }
466 | FILL
'(' parse_exp
')'
467 { script_add_fill
(closure
, $3); }
470 /* The GNU linker uses CONSTRUCTORS for the a.out object
471 file format. It does nothing when using ELF. Since
472 some ELF linker scripts use it although it does
473 nothing, we accept it and ignore it. */
475 | SORT_BY_NAME
'(' CONSTRUCTORS
')'
479 /* The length of data which may appear within the description of an
480 output section in a SECTIONS block. */
494 /* An input section specification. This may appear within the
495 description of an output section in a SECTIONS block. */
497 input_section_no_keep
498 { script_add_input_section
(closure
, &$1, 0); }
499 | KEEP
'(' input_section_no_keep
')'
500 { script_add_input_section
(closure
, &$3, 1); }
503 /* An input section specification within a KEEP clause. */
504 input_section_no_keep:
508 $$.file.sort
= SORT_WILDCARD_NONE
;
509 $$.input_sections.sections
= NULL
;
510 $$.input_sections.exclude
= NULL
;
512 | wildcard_file
'(' wildcard_sections
')'
515 $$.input_sections
= $3;
519 /* A wildcard file specification. */
524 $$.sort
= SORT_WILDCARD_NONE
;
526 | SORT_BY_NAME
'(' wildcard_name
')'
529 $$.sort
= SORT_WILDCARD_BY_NAME
;
533 /* A list of wild card section specifications. */
535 wildcard_sections opt_comma wildcard_section
537 $$.sections
= script_string_sort_list_add
($1.sections
, &$3);
538 $$.exclude
= $1.exclude
;
542 $$.sections
= script_new_string_sort_list
(&$1);
545 | wildcard_sections opt_comma EXCLUDE_FILE
'(' exclude_names
')'
547 $$.sections
= $1.sections
;
548 $$.exclude
= script_string_list_append
($1.exclude
, $5);
550 | EXCLUDE_FILE
'(' exclude_names
')'
557 /* A single wild card specification. */
562 $$.sort
= SORT_WILDCARD_NONE
;
564 | SORT_BY_NAME
'(' wildcard_section
')'
569 case SORT_WILDCARD_NONE
:
570 $$.sort
= SORT_WILDCARD_BY_NAME
;
572 case SORT_WILDCARD_BY_NAME
:
573 case SORT_WILDCARD_BY_NAME_BY_ALIGNMENT
:
575 case SORT_WILDCARD_BY_ALIGNMENT
:
576 case SORT_WILDCARD_BY_ALIGNMENT_BY_NAME
:
577 $$.sort
= SORT_WILDCARD_BY_NAME_BY_ALIGNMENT
;
583 | SORT_BY_ALIGNMENT
'(' wildcard_section
')'
588 case SORT_WILDCARD_NONE
:
589 $$.sort
= SORT_WILDCARD_BY_ALIGNMENT
;
591 case SORT_WILDCARD_BY_ALIGNMENT
:
592 case SORT_WILDCARD_BY_ALIGNMENT_BY_NAME
:
594 case SORT_WILDCARD_BY_NAME
:
595 case SORT_WILDCARD_BY_NAME_BY_ALIGNMENT
:
596 $$.sort
= SORT_WILDCARD_BY_ALIGNMENT_BY_NAME
;
604 /* A list of file names to exclude. */
606 exclude_names opt_comma wildcard_name
607 { $$
= script_string_list_push_back
($1, $3.value
, $3.length
); }
609 { $$
= script_new_string_list
($1.value
, $1.length
); }
612 /* A single wildcard name. We recognize '*' and '?' specially since
613 they are expression tokens. */
629 /* A command which may appear at the top level of a linker script, or
630 within a SECTIONS block. */
631 file_or_sections_cmd:
633 { script_set_entry
(closure
, $3.value
, $3.length
); }
635 | ASSERT_K
'(' parse_exp
',' string ')'
636 { script_add_assertion
(closure
, $3, $5.value
, $5.length
); }
639 /* A list of program header definitions. */
645 /* A program header definition. */
647 string phdr_type phdr_info
';'
648 { script_add_phdr
(closure
, $1.value
, $1.length
, $2, &$3); }
651 /* A program header type. The GNU linker accepts a general expression
652 here, but that would be a pain because we would have to dig into
653 the expression structure. It's unlikely that anybody uses anything
654 other than a string or a number here, so that is all we expect. */
657 { $$
= script_phdr_string_to_type
(closure
, $1.value
, $1.length
); }
662 /* Additional information for a program header. */
665 { memset
(&$$
, 0, sizeof
(struct Phdr_info
)); }
669 if
($1.length
== 7 && strncmp
($1.value
, "FILEHDR", 7) == 0)
670 $$.includes_filehdr
= 1;
672 yyerror(closure
, "PHDRS syntax error");
677 $$.includes_phdrs
= 1;
679 |
string '(' INTEGER
')' phdr_info
682 if
($1.length
== 5 && strncmp
($1.value
, "FLAGS", 5) == 0)
684 $$.is_flags_valid
= 1;
688 yyerror(closure
, "PHDRS syntax error");
690 | AT
'(' parse_exp
')' phdr_info
693 $$.load_address
= $3;
697 /* Set a symbol to a value. */
700 { script_set_symbol
(closure
, $1.value
, $1.length
, $3, 0, 0); }
701 |
string PLUSEQ parse_exp
703 Expression_ptr s
= script_exp_string
($1.value
, $1.length
);
704 Expression_ptr e
= script_exp_binary_add
(s
, $3);
705 script_set_symbol
(closure
, $1.value
, $1.length
, e
, 0, 0);
707 |
string MINUSEQ parse_exp
709 Expression_ptr s
= script_exp_string
($1.value
, $1.length
);
710 Expression_ptr e
= script_exp_binary_sub
(s
, $3);
711 script_set_symbol
(closure
, $1.value
, $1.length
, e
, 0, 0);
713 |
string MULTEQ parse_exp
715 Expression_ptr s
= script_exp_string
($1.value
, $1.length
);
716 Expression_ptr e
= script_exp_binary_mult
(s
, $3);
717 script_set_symbol
(closure
, $1.value
, $1.length
, e
, 0, 0);
719 |
string DIVEQ parse_exp
721 Expression_ptr s
= script_exp_string
($1.value
, $1.length
);
722 Expression_ptr e
= script_exp_binary_div
(s
, $3);
723 script_set_symbol
(closure
, $1.value
, $1.length
, e
, 0, 0);
725 |
string LSHIFTEQ parse_exp
727 Expression_ptr s
= script_exp_string
($1.value
, $1.length
);
728 Expression_ptr e
= script_exp_binary_lshift
(s
, $3);
729 script_set_symbol
(closure
, $1.value
, $1.length
, e
, 0, 0);
731 |
string RSHIFTEQ parse_exp
733 Expression_ptr s
= script_exp_string
($1.value
, $1.length
);
734 Expression_ptr e
= script_exp_binary_rshift
(s
, $3);
735 script_set_symbol
(closure
, $1.value
, $1.length
, e
, 0, 0);
737 |
string ANDEQ parse_exp
739 Expression_ptr s
= script_exp_string
($1.value
, $1.length
);
740 Expression_ptr e
= script_exp_binary_bitwise_and
(s
, $3);
741 script_set_symbol
(closure
, $1.value
, $1.length
, e
, 0, 0);
743 |
string OREQ parse_exp
745 Expression_ptr s
= script_exp_string
($1.value
, $1.length
);
746 Expression_ptr e
= script_exp_binary_bitwise_or
(s
, $3);
747 script_set_symbol
(closure
, $1.value
, $1.length
, e
, 0, 0);
749 | PROVIDE
'(' string '=' parse_exp
')'
750 { script_set_symbol
(closure
, $3.value
, $3.length
, $5, 1, 0); }
751 | PROVIDE_HIDDEN
'(' string '=' parse_exp
')'
752 { script_set_symbol
(closure
, $3.value
, $3.length
, $5, 1, 1); }
755 /* Parse an expression, putting the lexer into the right mode. */
757 { script_push_lex_into_expression_mode
(closure
); }
760 script_pop_lex_mode
(closure
);
769 |
'-' exp %prec UNARY
770 { $$
= script_exp_unary_minus
($2); }
771 |
'!' exp %prec UNARY
772 { $$
= script_exp_unary_logical_not
($2); }
773 |
'~' exp %prec UNARY
774 { $$
= script_exp_unary_bitwise_not
($2); }
775 |
'+' exp %prec UNARY
778 { $$
= script_exp_binary_mult
($1, $3); }
780 { $$
= script_exp_binary_div
($1, $3); }
782 { $$
= script_exp_binary_mod
($1, $3); }
784 { $$
= script_exp_binary_add
($1, $3); }
786 { $$
= script_exp_binary_sub
($1, $3); }
788 { $$
= script_exp_binary_lshift
($1, $3); }
790 { $$
= script_exp_binary_rshift
($1, $3); }
792 { $$
= script_exp_binary_eq
($1, $3); }
794 { $$
= script_exp_binary_ne
($1, $3); }
796 { $$
= script_exp_binary_le
($1, $3); }
798 { $$
= script_exp_binary_ge
($1, $3); }
800 { $$
= script_exp_binary_lt
($1, $3); }
802 { $$
= script_exp_binary_gt
($1, $3); }
804 { $$
= script_exp_binary_bitwise_and
($1, $3); }
806 { $$
= script_exp_binary_bitwise_xor
($1, $3); }
808 { $$
= script_exp_binary_bitwise_or
($1, $3); }
810 { $$
= script_exp_binary_logical_and
($1, $3); }
812 { $$
= script_exp_binary_logical_or
($1, $3); }
813 | exp
'?' exp
':' exp
814 { $$
= script_exp_trinary_cond
($1, $3, $5); }
816 { $$
= script_exp_integer
($1); }
818 { $$
= script_exp_string
($1.value
, $1.length
); }
819 | MAX_K
'(' exp
',' exp
')'
820 { $$
= script_exp_function_max
($3, $5); }
821 | MIN_K
'(' exp
',' exp
')'
822 { $$
= script_exp_function_min
($3, $5); }
823 | DEFINED
'(' string ')'
824 { $$
= script_exp_function_defined
($3.value
, $3.length
); }
826 { $$
= script_exp_function_sizeof_headers
(); }
827 | ALIGNOF
'(' string ')'
828 { $$
= script_exp_function_alignof
($3.value
, $3.length
); }
829 | SIZEOF
'(' string ')'
830 { $$
= script_exp_function_sizeof
($3.value
, $3.length
); }
831 | ADDR
'(' string ')'
832 { $$
= script_exp_function_addr
($3.value
, $3.length
); }
833 | LOADADDR
'(' string ')'
834 { $$
= script_exp_function_loadaddr
($3.value
, $3.length
); }
835 | ORIGIN
'(' string ')'
836 { $$
= script_exp_function_origin
($3.value
, $3.length
); }
837 | LENGTH
'(' string ')'
838 { $$
= script_exp_function_length
($3.value
, $3.length
); }
839 | CONSTANT
'(' string ')'
840 { $$
= script_exp_function_constant
($3.value
, $3.length
); }
841 | ABSOLUTE
'(' exp
')'
842 { $$
= script_exp_function_absolute
($3); }
843 | ALIGN_K
'(' exp
')'
844 { $$
= script_exp_function_align
(script_exp_string
(".", 1), $3); }
845 | ALIGN_K
'(' exp
',' exp
')'
846 { $$
= script_exp_function_align
($3, $5); }
848 { $$
= script_exp_function_align
(script_exp_string
(".", 1), $3); }
849 | DATA_SEGMENT_ALIGN
'(' exp
',' exp
')'
851 script_data_segment_align
(closure
);
852 $$
= script_exp_function_data_segment_align
($3, $5);
854 | DATA_SEGMENT_RELRO_END
'(' exp
',' exp
')'
856 script_data_segment_relro_end
(closure
);
857 $$
= script_exp_function_data_segment_relro_end
($3, $5);
859 | DATA_SEGMENT_END
'(' exp
')'
860 { $$
= script_exp_function_data_segment_end
($3); }
861 | SEGMENT_START
'(' string ',' exp
')'
863 $$
= script_exp_function_segment_start
($3.value
, $3.length
, $5);
864 /* We need to take note of any SEGMENT_START expressions
865 because they change the behaviour of -Ttext, -Tdata and
867 script_saw_segment_start_expression
(closure
);
869 | ASSERT_K
'(' exp
',' string ')'
870 { $$
= script_exp_function_assert
($3, $5.value
, $5.length
); }
873 /* Handle the --defsym option. */
876 { script_set_symbol
(closure
, $1.value
, $1.length
, $3, 0, 0); }
879 /* Handle the --dynamic-list option. A dynamic list has the format
880 { sym1; sym2; extern "C++" { namespace::sym3 }; };
881 We store the symbol we see in the "local" list; that is where
882 Command_line::in_dynamic_list() will look to do its check.
883 TODO(csilvers): More than one of these brace-lists can appear, and
884 should just be merged and treated as a single list. */
885 dynamic_list_expr: dynamic_list_nodes
;
889 | dynamic_list_nodes dynamic_list_node
893 '{' vers_defns
';' '}' ';'
894 { script_new_vers_node
(closure
, NULL
, $2); }
897 /* A version script. */
904 | vers_nodes vers_node
910 script_register_vers_node
(closure
, NULL
, 0, $2, NULL
);
912 |
string '{' vers_tag
'}' ';'
914 script_register_vers_node
(closure
, $1.value
, $1.length
, $3,
917 |
string '{' vers_tag
'}' verdep
';'
919 script_register_vers_node
(closure
, $1.value
, $1.length
, $3, $5);
926 $$
= script_add_vers_depend
(closure
, NULL
, $1.value
, $1.length
);
930 $$
= script_add_vers_depend
(closure
, $1, $2.value
, $2.length
);
936 { $$
= script_new_vers_node
(closure
, NULL
, NULL
); }
938 { $$
= script_new_vers_node
(closure
, $1, NULL
); }
939 | GLOBAL
':' vers_defns
';'
940 { $$
= script_new_vers_node
(closure
, $3, NULL
); }
941 | LOCAL
':' vers_defns
';'
942 { $$
= script_new_vers_node
(closure
, NULL
, $3); }
943 | GLOBAL
':' vers_defns
';' LOCAL
':' vers_defns
';'
944 { $$
= script_new_vers_node
(closure
, $3, $7); }
947 /* Here is one of the rare places we care about the distinction
948 between STRING and QUOTED_STRING. For QUOTED_STRING, we do exact
949 matching on the pattern, so we pass in true for the exact_match
950 parameter. For STRING, we do glob matching and pass in false. */
954 $$
= script_new_vers_pattern
(closure
, NULL
, $1.value
,
959 $$
= script_new_vers_pattern
(closure
, NULL
, $1.value
,
962 | vers_defns
';' STRING
964 $$
= script_new_vers_pattern
(closure
, $1, $3.value
,
967 | vers_defns
';' QUOTED_STRING
969 $$
= script_new_vers_pattern
(closure
, $1, $3.value
,
972 |
/* Push string on the language stack. */
974 { version_script_push_lang
(closure
, $2.value
, $2.length
); }
975 vers_defns opt_semicolon
'}'
978 version_script_pop_lang
(closure
);
980 |
/* Push string on the language stack. This is more complicated
981 than the other cases because we need to merge the linked-list
982 state from the pre-EXTERN defns and the post-EXTERN defns. */
983 vers_defns
';' EXTERN
string '{'
984 { version_script_push_lang
(closure
, $4.value
, $4.length
); }
985 vers_defns opt_semicolon
'}'
987 $$
= script_merge_expressions
($1, $7);
988 version_script_pop_lang
(closure
);
990 | EXTERN
// "extern" as a symbol name
992 $$
= script_new_vers_pattern
(closure
, NULL
, "extern",
993 sizeof
("extern") - 1, 1);
995 | vers_defns
';' EXTERN
997 $$
= script_new_vers_pattern
(closure
, $1, "extern",
998 sizeof
("extern") - 1, 1);
1002 /* A string can be either a STRING or a QUOTED_STRING. Almost all the
1003 time we don't care, and we use this rule. */
1011 /* Some statements require a terminator, which may be a semicolon or a
1018 /* An optional semicolon. */
1024 /* An optional comma. */