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
;
80 enum Script_section_type section_type
;
83 /* Operators, including a precedence table for expressions. */
85 %right PLUSEQ MINUSEQ MULTEQ DIVEQ
'=' LSHIFTEQ RSHIFTEQ ANDEQ OREQ
98 /* A fake operator used to indicate unary operator precedence. */
103 %token
<string> STRING
104 %token
<string> QUOTED_STRING
105 %token
<integer
> INTEGER
107 /* Keywords. This list is taken from ldgram.y and ldlex.l in the old
108 GNU linker, with the keywords which only appear in MRI mode
109 removed. Not all these keywords are actually used in this grammar.
110 In most cases the keyword is recognized as the token name in upper
111 case. The comments indicate where this is not the case. */
115 %token ALIGN_K
/* ALIGN */
117 %token ASSERT_K
/* ASSERT */
126 %token CREATE_OBJECT_SYMBOLS
127 %token DATA_SEGMENT_ALIGN
128 %token DATA_SEGMENT_END
129 %token DATA_SEGMENT_RELRO_END
137 %token FORCE_COMMON_ALLOCATION
138 %token GLOBAL
/* global */
142 %token INHIBIT_COMMON_ALLOCATION
146 %token LENGTH
/* LENGTH, l, len */
148 %token LOCAL
/* local */
151 %token MAX_K
/* MAX */
153 %token MIN_K
/* MIN */
160 %token ORIGIN
/* ORIGIN, o, org */
167 %token PROVIDE_HIDDEN
174 %token SIZEOF_HEADERS
/* SIZEOF_HEADERS, sizeof_headers */
175 %token SORT_BY_ALIGNMENT
182 %token TARGET_K
/* TARGET */
184 %token VERSIONK
/* VERSION */
186 /* Keywords, part 2. These are keywords that are unique to gold,
187 and not present in the old GNU linker. As before, unless the
188 comments say otherwise, the keyword is recognized as the token
189 name in upper case. */
193 /* Special tokens used to tell the grammar what type of tokens we are
194 parsing. The token stream always begins with one of these tokens.
195 We do this because version scripts can appear embedded within
196 linker scripts, and because --defsym uses the expression
198 %token PARSING_LINKER_SCRIPT
199 %token PARSING_VERSION_SCRIPT
200 %token PARSING_DEFSYM
201 %token PARSING_DYNAMIC_LIST
203 /* Non-terminal types, where needed. */
205 %type
<expr
> parse_exp exp
206 %type
<expr
> opt_at opt_align opt_subalign opt_fill
207 %type
<output_section_header
> section_header opt_address_and_section_type
208 %type
<section_type
> section_type
209 %type
<output_section_trailer
> section_trailer
210 %type
<constraint
> opt_constraint
211 %type
<string_list
> opt_phdr
212 %type
<integer
> data_length
213 %type
<input_section_spec
> input_section_no_keep
214 %type
<wildcard_sections
> wildcard_sections
215 %type
<wildcard_section
> wildcard_file wildcard_section
216 %type
<string_list
> exclude_names
217 %type
<string> wildcard_name
218 %type
<integer
> phdr_type
219 %type
<phdr_info
> phdr_info
220 %type
<versyms
> vers_defns
221 %type
<versnode
> vers_tag
222 %type
<deplist
> verdep
223 %type
<string> string
227 /* Read the special token to see what to read next. */
229 PARSING_LINKER_SCRIPT linker_script
230 | PARSING_VERSION_SCRIPT version_script
231 | PARSING_DEFSYM defsym_expr
232 | PARSING_DYNAMIC_LIST dynamic_list_expr
235 /* A file contains a list of commands. */
237 linker_script file_cmd
241 /* A command which may appear at top level of a linker script. */
243 EXTERN
'(' extern_name_list
')'
244 | FORCE_COMMON_ALLOCATION
245 { script_set_common_allocation
(closure
, 1); }
247 { script_start_group
(closure
); }
249 { script_end_group
(closure
); }
250 | INHIBIT_COMMON_ALLOCATION
251 { script_set_common_allocation
(closure
, 0); }
252 | INPUT
'(' input_list
')'
253 | OPTION
'(' string ')'
254 { script_parse_option
(closure
, $3.value
, $3.length
); }
255 | OUTPUT_FORMAT
'(' string ')'
257 if
(!script_check_output_format
(closure
, $3.value
, $3.length
,
261 | OUTPUT_FORMAT
'(' string ',' string ',' string ')'
263 if
(!script_check_output_format
(closure
, $3.value
, $3.length
,
265 $7.value
, $7.length
))
268 | PHDRS
'{' phdrs_defs
'}'
269 | SEARCH_DIR
'(' string ')'
270 { script_add_search_dir
(closure
, $3.value
, $3.length
); }
272 { script_start_sections
(closure
); }
274 { script_finish_sections
(closure
); }
275 | TARGET_K
'(' string ')'
276 { script_set_target
(closure
, $3.value
, $3.length
); }
278 { script_push_lex_into_version_mode
(closure
); }
280 { script_pop_lex_mode
(closure
); }
281 | file_or_sections_cmd
286 /* Top level commands which we ignore. The GNU linker uses these to
287 select the output format, but we don't offer a choice. Ignoring
288 these is more-or-less OK since most scripts simply explicitly
289 choose the default. */
291 OUTPUT_ARCH
'(' string ')'
294 /* A list of external undefined symbols. We put the lexer into
295 expression mode so that commas separate names; this is what the GNU
299 { script_push_lex_into_expression_mode
(closure
); }
300 extern_name_list_body
301 { script_pop_lex_mode
(closure
); }
304 extern_name_list_body:
306 { script_add_extern
(closure
, $1.value
, $1.length
); }
307 | extern_name_list_body
string
308 { script_add_extern
(closure
, $2.value
, $2.length
); }
309 | extern_name_list_body
',' string
310 { script_add_extern
(closure
, $3.value
, $3.length
); }
313 /* A list of input file names. */
316 | input_list opt_comma input_list_element
319 /* An input file name. */
322 { script_add_file
(closure
, $1.value
, $1.length
); }
324 { script_add_library
(closure
, $2.value
, $2.length
); }
326 { script_start_as_needed
(closure
); }
328 { script_end_as_needed
(closure
); }
331 /* Commands in a SECTIONS block. */
333 sections_block section_block_cmd
337 /* A command which may appear within a SECTIONS block. */
340 |
string section_header
341 { script_start_output_section
(closure
, $1.value
, $1.length
, &$2); }
342 '{' section_cmds
'}' section_trailer
343 { script_finish_output_section
(closure
, &$7); }
346 /* The header of an output section in a SECTIONS block--everything
349 { script_push_lex_into_expression_mode
(closure
); }
350 opt_address_and_section_type opt_at opt_align opt_subalign
351 { script_pop_lex_mode
(closure
); }
354 $$.address
= $2.address
;
355 $$.section_type
= $2.section_type
;
356 $$.load_address
= $3;
363 /* The optional address followed by the optional section type. This
364 is a separate nonterminal to avoid a shift/reduce conflict on
365 '(' in section_header. */
367 opt_address_and_section_type:
371 $$.section_type
= SCRIPT_SECTION_TYPE_NONE
;
376 $$.section_type
= SCRIPT_SECTION_TYPE_NONE
;
381 $$.section_type
= SCRIPT_SECTION_TYPE_NONE
;
386 $$.section_type
= SCRIPT_SECTION_TYPE_NONE
;
388 |
'(' section_type
')' ':'
391 $$.section_type
= $2;
393 | exp
'(' section_type
')' ':'
396 $$.section_type
= $3;
400 /* We only support NOLOAD. */
403 { $$
= SCRIPT_SECTION_TYPE_NOLOAD
; }
406 yyerror(closure
, "DSECT section type is unsupported");
407 $$
= SCRIPT_SECTION_TYPE_DSECT
;
411 yyerror(closure
, "COPY section type is unsupported");
412 $$
= SCRIPT_SECTION_TYPE_COPY
;
416 yyerror(closure
, "INFO section type is unsupported");
417 $$
= SCRIPT_SECTION_TYPE_INFO
;
421 yyerror(closure
, "OVERLAY section type is unsupported");
422 $$
= SCRIPT_SECTION_TYPE_OVERLAY
;
426 /* The address at which an output section should be loaded. */
434 /* The alignment of an output section. */
438 | ALIGN_K
'(' exp
')'
442 /* The input section alignment within an output section. */
446 | SUBALIGN
'(' exp
')'
450 /* A section constraint. */
453 { $$
= CONSTRAINT_NONE
; }
455 { $$
= CONSTRAINT_ONLY_IF_RO
; }
457 { $$
= CONSTRAINT_ONLY_IF_RW
; }
459 { $$
= CONSTRAINT_SPECIAL
; }
462 /* The trailer of an output section in a SECTIONS block. */
464 opt_memspec opt_at_memspec opt_phdr opt_fill opt_comma
471 /* A memory specification for an output section. */
474 { yyerror(closure
, "memory regions are not supported"); }
478 /* A memory specification for where to load an output section. */
481 { yyerror(closure
, "memory regions are not supported"); }
485 /* The program segment an output section should go into. */
488 { $$
= script_string_list_push_back
($1, $3.value
, $3.length
); }
493 /* The value to use to fill an output section. FIXME: This does not
494 handle a string of arbitrary length. */
502 /* Commands which may appear within the description of an output
503 section in a SECTIONS block. */
506 | section_cmds section_cmd
509 /* A command which may appear within the description of an output
510 section in a SECTIONS block. */
514 | data_length
'(' parse_exp
')'
515 { script_add_data
(closure
, $1, $3); }
516 | ASSERT_K
'(' parse_exp
',' string ')'
517 { script_add_assertion
(closure
, $3, $5.value
, $5.length
); }
518 | FILL
'(' parse_exp
')'
519 { script_add_fill
(closure
, $3); }
522 /* The GNU linker uses CONSTRUCTORS for the a.out object
523 file format. It does nothing when using ELF. Since
524 some ELF linker scripts use it although it does
525 nothing, we accept it and ignore it. */
527 | SORT_BY_NAME
'(' CONSTRUCTORS
')'
531 /* The length of data which may appear within the description of an
532 output section in a SECTIONS block. */
546 /* An input section specification. This may appear within the
547 description of an output section in a SECTIONS block. */
549 input_section_no_keep
550 { script_add_input_section
(closure
, &$1, 0); }
551 | KEEP
'(' input_section_no_keep
')'
552 { script_add_input_section
(closure
, &$3, 1); }
555 /* An input section specification within a KEEP clause. */
556 input_section_no_keep:
560 $$.file.sort
= SORT_WILDCARD_NONE
;
561 $$.input_sections.sections
= NULL
;
562 $$.input_sections.exclude
= NULL
;
564 | wildcard_file
'(' wildcard_sections
')'
567 $$.input_sections
= $3;
571 /* A wildcard file specification. */
576 $$.sort
= SORT_WILDCARD_NONE
;
578 | SORT_BY_NAME
'(' wildcard_name
')'
581 $$.sort
= SORT_WILDCARD_BY_NAME
;
585 /* A list of wild card section specifications. */
587 wildcard_sections opt_comma wildcard_section
589 $$.sections
= script_string_sort_list_add
($1.sections
, &$3);
590 $$.exclude
= $1.exclude
;
594 $$.sections
= script_new_string_sort_list
(&$1);
597 | wildcard_sections opt_comma EXCLUDE_FILE
'(' exclude_names
')'
599 $$.sections
= $1.sections
;
600 $$.exclude
= script_string_list_append
($1.exclude
, $5);
602 | EXCLUDE_FILE
'(' exclude_names
')'
609 /* A single wild card specification. */
614 $$.sort
= SORT_WILDCARD_NONE
;
616 | SORT_BY_NAME
'(' wildcard_section
')'
621 case SORT_WILDCARD_NONE
:
622 $$.sort
= SORT_WILDCARD_BY_NAME
;
624 case SORT_WILDCARD_BY_NAME
:
625 case SORT_WILDCARD_BY_NAME_BY_ALIGNMENT
:
627 case SORT_WILDCARD_BY_ALIGNMENT
:
628 case SORT_WILDCARD_BY_ALIGNMENT_BY_NAME
:
629 $$.sort
= SORT_WILDCARD_BY_NAME_BY_ALIGNMENT
;
635 | SORT_BY_ALIGNMENT
'(' wildcard_section
')'
640 case SORT_WILDCARD_NONE
:
641 $$.sort
= SORT_WILDCARD_BY_ALIGNMENT
;
643 case SORT_WILDCARD_BY_ALIGNMENT
:
644 case SORT_WILDCARD_BY_ALIGNMENT_BY_NAME
:
646 case SORT_WILDCARD_BY_NAME
:
647 case SORT_WILDCARD_BY_NAME_BY_ALIGNMENT
:
648 $$.sort
= SORT_WILDCARD_BY_ALIGNMENT_BY_NAME
;
656 /* A list of file names to exclude. */
658 exclude_names opt_comma wildcard_name
659 { $$
= script_string_list_push_back
($1, $3.value
, $3.length
); }
661 { $$
= script_new_string_list
($1.value
, $1.length
); }
664 /* A single wildcard name. We recognize '*' and '?' specially since
665 they are expression tokens. */
681 /* A command which may appear at the top level of a linker script, or
682 within a SECTIONS block. */
683 file_or_sections_cmd:
685 { script_set_entry
(closure
, $3.value
, $3.length
); }
687 | ASSERT_K
'(' parse_exp
',' string ')'
688 { script_add_assertion
(closure
, $3, $5.value
, $5.length
); }
691 /* A list of program header definitions. */
697 /* A program header definition. */
699 string phdr_type phdr_info
';'
700 { script_add_phdr
(closure
, $1.value
, $1.length
, $2, &$3); }
703 /* A program header type. The GNU linker accepts a general expression
704 here, but that would be a pain because we would have to dig into
705 the expression structure. It's unlikely that anybody uses anything
706 other than a string or a number here, so that is all we expect. */
709 { $$
= script_phdr_string_to_type
(closure
, $1.value
, $1.length
); }
714 /* Additional information for a program header. */
717 { memset
(&$$
, 0, sizeof
(struct Phdr_info
)); }
721 if
($1.length
== 7 && strncmp
($1.value
, "FILEHDR", 7) == 0)
722 $$.includes_filehdr
= 1;
724 yyerror(closure
, "PHDRS syntax error");
729 $$.includes_phdrs
= 1;
731 |
string '(' INTEGER
')' phdr_info
734 if
($1.length
== 5 && strncmp
($1.value
, "FLAGS", 5) == 0)
736 $$.is_flags_valid
= 1;
740 yyerror(closure
, "PHDRS syntax error");
742 | AT
'(' parse_exp
')' phdr_info
745 $$.load_address
= $3;
749 /* Set a symbol to a value. */
752 { script_set_symbol
(closure
, $1.value
, $1.length
, $3, 0, 0); }
753 |
string PLUSEQ parse_exp
755 Expression_ptr s
= script_exp_string
($1.value
, $1.length
);
756 Expression_ptr e
= script_exp_binary_add
(s
, $3);
757 script_set_symbol
(closure
, $1.value
, $1.length
, e
, 0, 0);
759 |
string MINUSEQ parse_exp
761 Expression_ptr s
= script_exp_string
($1.value
, $1.length
);
762 Expression_ptr e
= script_exp_binary_sub
(s
, $3);
763 script_set_symbol
(closure
, $1.value
, $1.length
, e
, 0, 0);
765 |
string MULTEQ parse_exp
767 Expression_ptr s
= script_exp_string
($1.value
, $1.length
);
768 Expression_ptr e
= script_exp_binary_mult
(s
, $3);
769 script_set_symbol
(closure
, $1.value
, $1.length
, e
, 0, 0);
771 |
string DIVEQ parse_exp
773 Expression_ptr s
= script_exp_string
($1.value
, $1.length
);
774 Expression_ptr e
= script_exp_binary_div
(s
, $3);
775 script_set_symbol
(closure
, $1.value
, $1.length
, e
, 0, 0);
777 |
string LSHIFTEQ parse_exp
779 Expression_ptr s
= script_exp_string
($1.value
, $1.length
);
780 Expression_ptr e
= script_exp_binary_lshift
(s
, $3);
781 script_set_symbol
(closure
, $1.value
, $1.length
, e
, 0, 0);
783 |
string RSHIFTEQ parse_exp
785 Expression_ptr s
= script_exp_string
($1.value
, $1.length
);
786 Expression_ptr e
= script_exp_binary_rshift
(s
, $3);
787 script_set_symbol
(closure
, $1.value
, $1.length
, e
, 0, 0);
789 |
string ANDEQ parse_exp
791 Expression_ptr s
= script_exp_string
($1.value
, $1.length
);
792 Expression_ptr e
= script_exp_binary_bitwise_and
(s
, $3);
793 script_set_symbol
(closure
, $1.value
, $1.length
, e
, 0, 0);
795 |
string OREQ parse_exp
797 Expression_ptr s
= script_exp_string
($1.value
, $1.length
);
798 Expression_ptr e
= script_exp_binary_bitwise_or
(s
, $3);
799 script_set_symbol
(closure
, $1.value
, $1.length
, e
, 0, 0);
801 | PROVIDE
'(' string '=' parse_exp
')'
802 { script_set_symbol
(closure
, $3.value
, $3.length
, $5, 1, 0); }
803 | PROVIDE_HIDDEN
'(' string '=' parse_exp
')'
804 { script_set_symbol
(closure
, $3.value
, $3.length
, $5, 1, 1); }
807 /* Parse an expression, putting the lexer into the right mode. */
809 { script_push_lex_into_expression_mode
(closure
); }
812 script_pop_lex_mode
(closure
);
821 |
'-' exp %prec UNARY
822 { $$
= script_exp_unary_minus
($2); }
823 |
'!' exp %prec UNARY
824 { $$
= script_exp_unary_logical_not
($2); }
825 |
'~' exp %prec UNARY
826 { $$
= script_exp_unary_bitwise_not
($2); }
827 |
'+' exp %prec UNARY
830 { $$
= script_exp_binary_mult
($1, $3); }
832 { $$
= script_exp_binary_div
($1, $3); }
834 { $$
= script_exp_binary_mod
($1, $3); }
836 { $$
= script_exp_binary_add
($1, $3); }
838 { $$
= script_exp_binary_sub
($1, $3); }
840 { $$
= script_exp_binary_lshift
($1, $3); }
842 { $$
= script_exp_binary_rshift
($1, $3); }
844 { $$
= script_exp_binary_eq
($1, $3); }
846 { $$
= script_exp_binary_ne
($1, $3); }
848 { $$
= script_exp_binary_le
($1, $3); }
850 { $$
= script_exp_binary_ge
($1, $3); }
852 { $$
= script_exp_binary_lt
($1, $3); }
854 { $$
= script_exp_binary_gt
($1, $3); }
856 { $$
= script_exp_binary_bitwise_and
($1, $3); }
858 { $$
= script_exp_binary_bitwise_xor
($1, $3); }
860 { $$
= script_exp_binary_bitwise_or
($1, $3); }
862 { $$
= script_exp_binary_logical_and
($1, $3); }
864 { $$
= script_exp_binary_logical_or
($1, $3); }
865 | exp
'?' exp
':' exp
866 { $$
= script_exp_trinary_cond
($1, $3, $5); }
868 { $$
= script_exp_integer
($1); }
870 { $$
= script_exp_string
($1.value
, $1.length
); }
871 | MAX_K
'(' exp
',' exp
')'
872 { $$
= script_exp_function_max
($3, $5); }
873 | MIN_K
'(' exp
',' exp
')'
874 { $$
= script_exp_function_min
($3, $5); }
875 | DEFINED
'(' string ')'
876 { $$
= script_exp_function_defined
($3.value
, $3.length
); }
878 { $$
= script_exp_function_sizeof_headers
(); }
879 | ALIGNOF
'(' string ')'
880 { $$
= script_exp_function_alignof
($3.value
, $3.length
); }
881 | SIZEOF
'(' string ')'
882 { $$
= script_exp_function_sizeof
($3.value
, $3.length
); }
883 | ADDR
'(' string ')'
884 { $$
= script_exp_function_addr
($3.value
, $3.length
); }
885 | LOADADDR
'(' string ')'
886 { $$
= script_exp_function_loadaddr
($3.value
, $3.length
); }
887 | ORIGIN
'(' string ')'
888 { $$
= script_exp_function_origin
($3.value
, $3.length
); }
889 | LENGTH
'(' string ')'
890 { $$
= script_exp_function_length
($3.value
, $3.length
); }
891 | CONSTANT
'(' string ')'
892 { $$
= script_exp_function_constant
($3.value
, $3.length
); }
893 | ABSOLUTE
'(' exp
')'
894 { $$
= script_exp_function_absolute
($3); }
895 | ALIGN_K
'(' exp
')'
896 { $$
= script_exp_function_align
(script_exp_string
(".", 1), $3); }
897 | ALIGN_K
'(' exp
',' exp
')'
898 { $$
= script_exp_function_align
($3, $5); }
900 { $$
= script_exp_function_align
(script_exp_string
(".", 1), $3); }
901 | DATA_SEGMENT_ALIGN
'(' exp
',' exp
')'
903 script_data_segment_align
(closure
);
904 $$
= script_exp_function_data_segment_align
($3, $5);
906 | DATA_SEGMENT_RELRO_END
'(' exp
',' exp
')'
908 script_data_segment_relro_end
(closure
);
909 $$
= script_exp_function_data_segment_relro_end
($3, $5);
911 | DATA_SEGMENT_END
'(' exp
')'
912 { $$
= script_exp_function_data_segment_end
($3); }
913 | SEGMENT_START
'(' string ',' exp
')'
915 $$
= script_exp_function_segment_start
($3.value
, $3.length
, $5);
916 /* We need to take note of any SEGMENT_START expressions
917 because they change the behaviour of -Ttext, -Tdata and
919 script_saw_segment_start_expression
(closure
);
921 | ASSERT_K
'(' exp
',' string ')'
922 { $$
= script_exp_function_assert
($3, $5.value
, $5.length
); }
925 /* Handle the --defsym option. */
928 { script_set_symbol
(closure
, $1.value
, $1.length
, $3, 0, 0); }
931 /* Handle the --dynamic-list option. A dynamic list has the format
932 { sym1; sym2; extern "C++" { namespace::sym3 }; };
933 We store the symbol we see in the "local" list; that is where
934 Command_line::in_dynamic_list() will look to do its check.
935 TODO(csilvers): More than one of these brace-lists can appear, and
936 should just be merged and treated as a single list. */
937 dynamic_list_expr: dynamic_list_nodes
;
941 | dynamic_list_nodes dynamic_list_node
945 '{' vers_defns
';' '}' ';'
946 { script_new_vers_node
(closure
, NULL
, $2); }
949 /* A version script. */
956 | vers_nodes vers_node
962 script_register_vers_node
(closure
, NULL
, 0, $2, NULL
);
964 |
string '{' vers_tag
'}' ';'
966 script_register_vers_node
(closure
, $1.value
, $1.length
, $3,
969 |
string '{' vers_tag
'}' verdep
';'
971 script_register_vers_node
(closure
, $1.value
, $1.length
, $3, $5);
978 $$
= script_add_vers_depend
(closure
, NULL
, $1.value
, $1.length
);
982 $$
= script_add_vers_depend
(closure
, $1, $2.value
, $2.length
);
988 { $$
= script_new_vers_node
(closure
, NULL
, NULL
); }
990 { $$
= script_new_vers_node
(closure
, $1, NULL
); }
991 | GLOBAL
':' vers_defns
';'
992 { $$
= script_new_vers_node
(closure
, $3, NULL
); }
993 | LOCAL
':' vers_defns
';'
994 { $$
= script_new_vers_node
(closure
, NULL
, $3); }
995 | GLOBAL
':' vers_defns
';' LOCAL
':' vers_defns
';'
996 { $$
= script_new_vers_node
(closure
, $3, $7); }
999 /* Here is one of the rare places we care about the distinction
1000 between STRING and QUOTED_STRING. For QUOTED_STRING, we do exact
1001 matching on the pattern, so we pass in true for the exact_match
1002 parameter. For STRING, we do glob matching and pass in false. */
1006 $$
= script_new_vers_pattern
(closure
, NULL
, $1.value
,
1011 $$
= script_new_vers_pattern
(closure
, NULL
, $1.value
,
1014 | vers_defns
';' STRING
1016 $$
= script_new_vers_pattern
(closure
, $1, $3.value
,
1019 | vers_defns
';' QUOTED_STRING
1021 $$
= script_new_vers_pattern
(closure
, $1, $3.value
,
1024 |
/* Push string on the language stack. */
1026 { version_script_push_lang
(closure
, $2.value
, $2.length
); }
1027 vers_defns opt_semicolon
'}'
1030 version_script_pop_lang
(closure
);
1032 |
/* Push string on the language stack. This is more complicated
1033 than the other cases because we need to merge the linked-list
1034 state from the pre-EXTERN defns and the post-EXTERN defns. */
1035 vers_defns
';' EXTERN
string '{'
1036 { version_script_push_lang
(closure
, $4.value
, $4.length
); }
1037 vers_defns opt_semicolon
'}'
1039 $$
= script_merge_expressions
($1, $7);
1040 version_script_pop_lang
(closure
);
1042 | EXTERN
// "extern" as a symbol name
1044 $$
= script_new_vers_pattern
(closure
, NULL
, "extern",
1045 sizeof
("extern") - 1, 1);
1047 | vers_defns
';' EXTERN
1049 $$
= script_new_vers_pattern
(closure
, $1, "extern",
1050 sizeof
("extern") - 1, 1);
1054 /* A string can be either a STRING or a QUOTED_STRING. Almost all the
1055 time we don't care, and we use this rule. */
1063 /* Some statements require a terminator, which may be a semicolon or a
1070 /* An optional semicolon. */
1076 /* An optional comma. */