* config/rs6000/rs6000.c (spe_init_builtins,
[official-gcc.git] / gcc / gengtype-yacc.y
blob3ff92d345ef82abf9a2a37485430405130b56401
1 /* -*- indented-text -*- */
2 /* Process source files and output type information.
3 Copyright (C) 2002 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
23 #include "hconfig.h"
24 #include "system.h"
25 #include "gengtype.h"
26 #define YYERROR_VERBOSE
29 %union {
30 type_p t;
31 pair_p p;
32 options_p o;
33 const char *s;
36 %token <t>ENT_TYPEDEF_STRUCT
37 %token <t>ENT_STRUCT
38 %token ENT_EXTERNSTATIC
39 %token ENT_YACCUNION
40 %token GTY_TOKEN "GTY"
41 %token UNION "union"
42 %token STRUCT "struct"
43 %token ENUM "enum"
44 %token ALIAS "ptr_alias"
45 %token PARAM_IS "param_is"
46 %token NUM
47 %token PERCENTPERCENT "%%"
48 %token <t>SCALAR
49 %token <s>ID
50 %token <s>STRING
51 %token <s>ARRAY
52 %token <s>PERCENT_ID
53 %token <s>CHAR
55 %type <p> struct_fields yacc_ids yacc_typematch
56 %type <t> type lasttype
57 %type <o> optionsopt options option optionseq optionseqopt
58 %type <s> type_option
62 start: /* empty */
63 | typedef_struct start
64 | externstatic start
65 | yacc_union start
68 typedef_struct: ENT_TYPEDEF_STRUCT options '{' struct_fields '}' ID
70 new_structure ($1->u.s.tag, UNION_P ($1), &lexer_line,
71 $4, $2);
72 do_typedef ($6, $1, &lexer_line);
73 lexer_toplevel_done = 1;
75 ';'
77 | ENT_STRUCT options '{' struct_fields '}'
79 new_structure ($1->u.s.tag, UNION_P ($1), &lexer_line,
80 $4, $2);
81 lexer_toplevel_done = 1;
83 ';'
87 externstatic: ENT_EXTERNSTATIC options lasttype ID semiequal
89 note_variable ($4, adjust_field_type ($3, $2), $2,
90 &lexer_line);
92 | ENT_EXTERNSTATIC options lasttype ID ARRAY semiequal
94 note_variable ($4, create_array ($3, $5),
95 $2, &lexer_line);
97 | ENT_EXTERNSTATIC options lasttype ID ARRAY ARRAY semiequal
99 note_variable ($4, create_array (create_array ($3, $6),
100 $5),
101 $2, &lexer_line);
105 lasttype: type
107 lexer_toplevel_done = 1;
108 $$ = $1;
112 semiequal: ';'
113 | '='
116 yacc_union: ENT_YACCUNION options struct_fields '}' yacc_typematch
117 PERCENTPERCENT
119 note_yacc_type ($2, $3, $5, &lexer_line);
123 yacc_typematch: /* empty */
124 { $$ = NULL; }
125 | yacc_typematch PERCENT_ID yacc_ids
127 pair_p p;
128 for (p = $3; p->next != NULL; p = p->next)
130 p->name = NULL;
131 p->type = NULL;
133 p->name = NULL;
134 p->type = NULL;
135 p->next = $1;
136 $$ = $3;
138 | yacc_typematch PERCENT_ID '<' ID '>' yacc_ids
140 pair_p p;
141 type_p newtype = NULL;
142 if (strcmp ($2, "type") == 0)
143 newtype = (type_p) 1;
144 for (p = $6; p->next != NULL; p = p->next)
146 p->name = $4;
147 p->type = newtype;
149 p->name = $4;
150 p->next = $1;
151 p->type = newtype;
152 $$ = $6;
156 yacc_ids: /* empty */
157 { $$ = NULL; }
158 | yacc_ids ID
160 pair_p p = xcalloc (1, sizeof (*p));
161 p->next = $1;
162 p->line = lexer_line;
163 p->opt = xmalloc (sizeof (*(p->opt)));
164 p->opt->name = "tag";
165 p->opt->next = NULL;
166 p->opt->info = (char *)$2;
167 $$ = p;
169 | yacc_ids CHAR
171 pair_p p = xcalloc (1, sizeof (*p));
172 p->next = $1;
173 p->line = lexer_line;
174 p->opt = xmalloc (sizeof (*(p->opt)));
175 p->opt->name = "tag";
176 p->opt->next = NULL;
177 p->opt->info = xmalloc (3 + strlen ($2));
178 sprintf (p->opt->info, "'%s'", $2);
179 $$ = p;
183 struct_fields: { $$ = NULL; }
184 | type optionsopt ID bitfieldopt ';' struct_fields
186 pair_p p = xmalloc (sizeof (*p));
187 p->type = adjust_field_type ($1, $2);
188 p->opt = $2;
189 p->name = $3;
190 p->next = $6;
191 p->line = lexer_line;
192 $$ = p;
194 | type optionsopt ID ARRAY ';' struct_fields
196 pair_p p = xmalloc (sizeof (*p));
197 p->type = adjust_field_type (create_array ($1, $4), $2);
198 p->opt = $2;
199 p->name = $3;
200 p->next = $6;
201 p->line = lexer_line;
202 $$ = p;
204 | type optionsopt ID ARRAY ARRAY ';' struct_fields
206 pair_p p = xmalloc (sizeof (*p));
207 p->type = create_array (create_array ($1, $5), $4);
208 p->opt = $2;
209 p->name = $3;
210 p->next = $7;
211 p->line = lexer_line;
212 $$ = p;
216 bitfieldopt: /* empty */
217 | ':' NUM
220 type: SCALAR
221 { $$ = $1; }
222 | ID
223 { $$ = resolve_typedef ($1, &lexer_line); }
224 | type '*'
225 { $$ = create_pointer ($1); }
226 | STRUCT ID '{' struct_fields '}'
228 new_structure ($2, 0, &lexer_line, $4, NULL);
229 $$ = find_structure ($2, 0);
231 | STRUCT ID
232 { $$ = find_structure ($2, 0); }
233 | UNION ID '{' struct_fields '}'
235 new_structure ($2, 1, &lexer_line, $4, NULL);
236 $$ = find_structure ($2, 1);
238 | UNION ID
239 { $$ = find_structure ($2, 1); }
240 | ENUM ID
241 { $$ = create_scalar_type ($2, strlen ($2)); }
242 | ENUM ID '{' enum_items '}'
243 { $$ = create_scalar_type ($2, strlen ($2)); }
246 enum_items: /* empty */
247 | ID '=' NUM ',' enum_items
249 | ID ',' enum_items
251 | ID enum_items
255 optionsopt: { $$ = NULL; }
256 | options { $$ = $1; }
259 options: GTY_TOKEN '(' '(' optionseqopt ')' ')'
260 { $$ = $4; }
263 type_option : ALIAS
264 { $$ = "ptr_alias"; }
265 | PARAM_IS
266 { $$ = "param_is"; }
269 option: type_option '(' type ')'
271 options_p o = xmalloc (sizeof (*o));
272 o->name = $1;
273 o->info = $3;
274 $$ = o;
276 | ID '(' STRING ')'
278 options_p o = xmalloc (sizeof (*o));
279 o->name = $1;
280 o->info = (void *)$3;
281 $$ = o;
285 optionseq: option
287 $1->next = NULL;
288 $$ = $1;
290 | optionseq ',' option
292 $3->next = $1;
293 $$ = $3;
297 optionseqopt: { $$ = NULL; }
298 | optionseq { $$ = $1; }