c-common.h (build_stmt): Declare.
[gcc.git] / gcc / c-parse.in
1 /* YACC parser for C syntax and for Objective C. -*-c-*-
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996,
3 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
4
5 This file is part of GNU CC.
6
7 GNU CC 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 2, or (at your option)
10 any later version.
11
12 GNU CC 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.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22 /* This file defines the grammar of C and that of Objective C.
23 ifobjc ... end ifobjc conditionals contain code for Objective C only.
24 ifc ... end ifc conditionals contain code for C only.
25 Sed commands in Makefile.in are used to convert this file into
26 c-parse.y and into objc-parse.y. */
27
28 /* To whomever it may concern: I have heard that such a thing was once
29 written by AT&T, but I have never seen it. */
30
31 ifobjc
32 %expect 74
33 end ifobjc
34 ifc
35 %expect 53
36 end ifc
37
38 %{
39 #include "config.h"
40 #include "system.h"
41 #include <setjmp.h>
42 #include "tree.h"
43 #include "input.h"
44 #include "c-lex.h"
45 #include "c-tree.h"
46 #include "flags.h"
47 #include "output.h"
48 #include "toplev.h"
49 #include "ggc.h"
50
51 #ifdef MULTIBYTE_CHARS
52 #include <locale.h>
53 #endif
54
55 ifobjc
56 #include "objc-act.h"
57 end ifobjc
58
59 /* Since parsers are distinct for each language, put the language string
60 definition here. */
61 ifobjc
62 const char * const language_string = "GNU Obj-C";
63 end ifobjc
64 ifc
65 const char * const language_string = "GNU C";
66 end ifc
67
68 /* Like YYERROR but do call yyerror. */
69 #define YYERROR1 { yyerror ("syntax error"); YYERROR; }
70
71 /* Cause the `yydebug' variable to be defined. */
72 #define YYDEBUG 1
73 %}
74
75 %start program
76
77 %union {long itype; tree ttype; enum tree_code code;
78 const char *filename; int lineno; int ends_in_label; }
79
80 /* All identifiers that are not reserved words
81 and are not declared typedefs in the current block */
82 %token IDENTIFIER
83
84 /* All identifiers that are declared typedefs in the current block.
85 In some contexts, they are treated just like IDENTIFIER,
86 but they can also serve as typespecs in declarations. */
87 %token TYPENAME
88
89 /* Reserved words that specify storage class.
90 yylval contains an IDENTIFIER_NODE which indicates which one. */
91 %token SCSPEC
92
93 /* Reserved words that specify type.
94 yylval contains an IDENTIFIER_NODE which indicates which one. */
95 %token TYPESPEC
96
97 /* Reserved words that qualify type: "const", "volatile", or "restrict".
98 yylval contains an IDENTIFIER_NODE which indicates which one. */
99 %token TYPE_QUAL
100
101 /* Character or numeric constants.
102 yylval is the node for the constant. */
103 %token CONSTANT
104
105 /* String constants in raw form.
106 yylval is a STRING_CST node. */
107 %token STRING
108
109 /* "...", used for functions with variable arglists. */
110 %token ELLIPSIS
111
112 /* the reserved words */
113 /* SCO include files test "ASM", so use something else. */
114 %token SIZEOF ENUM STRUCT UNION IF ELSE WHILE DO FOR SWITCH CASE DEFAULT
115 %token BREAK CONTINUE RETURN GOTO ASM_KEYWORD TYPEOF ALIGNOF
116 %token ATTRIBUTE EXTENSION LABEL
117 %token REALPART IMAGPART VA_ARG
118 %token PTR_VALUE PTR_BASE PTR_EXTENT
119
120 /* Used in c-lex.c for parsing pragmas. */
121 %token END_OF_LINE
122
123 /* Add precedence rules to solve dangling else s/r conflict */
124 %nonassoc IF
125 %nonassoc ELSE
126
127 /* Define the operator tokens and their precedences.
128 The value is an integer because, if used, it is the tree code
129 to use in the expression made from the operator. */
130
131 %right <code> ASSIGN '='
132 %right <code> '?' ':'
133 %left <code> OROR
134 %left <code> ANDAND
135 %left <code> '|'
136 %left <code> '^'
137 %left <code> '&'
138 %left <code> EQCOMPARE
139 %left <code> ARITHCOMPARE
140 %left <code> LSHIFT RSHIFT
141 %left <code> '+' '-'
142 %left <code> '*' '/' '%'
143 %right <code> UNARY PLUSPLUS MINUSMINUS
144 %left HYPERUNARY
145 %left <code> POINTSAT '.' '(' '['
146
147 /* The Objective-C keywords. These are included in C and in
148 Objective C, so that the token codes are the same in both. */
149 %token INTERFACE IMPLEMENTATION END SELECTOR DEFS ENCODE
150 %token CLASSNAME PUBLIC PRIVATE PROTECTED PROTOCOL OBJECTNAME CLASS ALIAS
151
152 /* Objective-C string constants in raw form.
153 yylval is an OBJC_STRING_CST node. */
154 %token OBJC_STRING
155
156
157 %type <code> unop
158
159 %type <ttype> identifier IDENTIFIER TYPENAME CONSTANT expr nonnull_exprlist exprlist
160 %type <ttype> expr_no_commas cast_expr unary_expr primary string STRING
161 %type <ttype> typed_declspecs reserved_declspecs
162 %type <ttype> typed_typespecs reserved_typespecquals
163 %type <ttype> declmods typespec typespecqual_reserved
164 %type <ttype> typed_declspecs_no_prefix_attr reserved_declspecs_no_prefix_attr
165 %type <ttype> declmods_no_prefix_attr
166 %type <ttype> SCSPEC TYPESPEC TYPE_QUAL nonempty_type_quals maybe_type_qual
167 %type <ttype> initdecls notype_initdecls initdcl notype_initdcl
168 %type <ttype> init maybeasm
169 %type <ttype> asm_operands nonnull_asm_operands asm_operand asm_clobbers
170 %type <ttype> maybe_attribute attributes attribute attribute_list attrib
171 %type <ttype> any_word extension
172
173 %type <ttype> compstmt compstmt_nostart compstmt_primary_start
174
175 %type <ttype> declarator
176 %type <ttype> notype_declarator after_type_declarator
177 %type <ttype> parm_declarator
178
179 %type <ttype> structsp component_decl_list component_decl_list2
180 %type <ttype> component_decl components component_declarator
181 %type <ttype> enumlist enumerator
182 %type <ttype> struct_head union_head enum_head
183 %type <ttype> typename absdcl absdcl1 type_quals
184 %type <ttype> xexpr parms parm identifiers
185
186 %type <ttype> parmlist parmlist_1 parmlist_2
187 %type <ttype> parmlist_or_identifiers parmlist_or_identifiers_1
188 %type <ttype> identifiers_or_typenames
189
190 %type <itype> setspecs
191
192 %type <ends_in_label> lineno_stmt_or_label lineno_stmt_or_labels stmt_or_label
193
194 %type <filename> save_filename
195 %type <lineno> save_lineno
196 \f
197 ifobjc
198 /* the Objective-C nonterminals */
199
200 %type <ttype> ivar_decl_list ivar_decls ivar_decl ivars ivar_declarator
201 %type <ttype> methoddecl unaryselector keywordselector selector
202 %type <ttype> keyworddecl receiver objcmessageexpr messageargs
203 %type <ttype> keywordexpr keywordarglist keywordarg
204 %type <ttype> myparms myparm optparmlist reservedwords objcselectorexpr
205 %type <ttype> selectorarg keywordnamelist keywordname objcencodeexpr
206 %type <ttype> objc_string non_empty_protocolrefs protocolrefs identifier_list objcprotocolexpr
207
208 %type <ttype> CLASSNAME OBJC_STRING OBJECTNAME
209 end ifobjc
210 \f
211 %{
212 /* Number of statements (loosely speaking) and compound statements
213 seen so far. */
214 static int stmt_count;
215 static int compstmt_count;
216
217 /* Input file and line number of the end of the body of last simple_if;
218 used by the stmt-rule immediately after simple_if returns. */
219 static const char *if_stmt_file;
220 static int if_stmt_line;
221
222 /* List of types and structure classes of the current declaration. */
223 static tree current_declspecs = NULL_TREE;
224 static tree prefix_attributes = NULL_TREE;
225
226 /* Stack of saved values of current_declspecs and prefix_attributes. */
227 static tree declspec_stack;
228
229 /* For __extension__, save/restore the warning flags which are
230 controlled by __extension__. */
231 #define SAVE_WARN_FLAGS() \
232 size_int (pedantic | (warn_pointer_arith << 1))
233 #define RESTORE_WARN_FLAGS(tval) \
234 do { \
235 int val = tree_low_cst (tval, 0); \
236 pedantic = val & 1; \
237 warn_pointer_arith = (val >> 1) & 1; \
238 } while (0)
239
240 ifobjc
241 /* Objective-C specific information */
242
243 tree objc_interface_context;
244 tree objc_implementation_context;
245 tree objc_method_context;
246 tree objc_ivar_chain;
247 tree objc_ivar_context;
248 enum tree_code objc_inherit_code;
249 int objc_receiver_context;
250 int objc_public_flag;
251
252 end ifobjc
253
254 /* Tell yyparse how to print a token's value, if yydebug is set. */
255
256 #define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)
257 extern void yyprint PARAMS ((FILE *, int, YYSTYPE));
258
259 /* Add GC roots for variables local to this file. */
260 void
261 c_parse_init ()
262 {
263 ggc_add_tree_root (&declspec_stack, 1);
264 ggc_add_tree_root (&current_declspecs, 1);
265 ggc_add_tree_root (&prefix_attributes, 1);
266 ifobjc
267 ggc_add_tree_root (&objc_interface_context, 1);
268 ggc_add_tree_root (&objc_implementation_context, 1);
269 ggc_add_tree_root (&objc_method_context, 1);
270 ggc_add_tree_root (&objc_ivar_chain, 1);
271 ggc_add_tree_root (&objc_ivar_context, 1);
272 end ifobjc
273 }
274
275 %}
276 \f
277 %%
278 program: /* empty */
279 { if (pedantic)
280 pedwarn ("ANSI C forbids an empty source file");
281 finish_file ();
282 }
283 | extdefs
284 {
285 /* In case there were missing closebraces,
286 get us back to the global binding level. */
287 while (! global_bindings_p ())
288 poplevel (0, 0, 0);
289 finish_file ();
290 }
291 ;
292
293 /* the reason for the strange actions in this rule
294 is so that notype_initdecls when reached via datadef
295 can find a valid list of type and sc specs in $0. */
296
297 extdefs:
298 {$<ttype>$ = NULL_TREE; } extdef
299 | extdefs {$<ttype>$ = NULL_TREE; } extdef
300 ;
301
302 extdef:
303 fndef
304 | datadef
305 ifobjc
306 | objcdef
307 end ifobjc
308 | ASM_KEYWORD '(' expr ')' ';'
309 { STRIP_NOPS ($3);
310 if ((TREE_CODE ($3) == ADDR_EXPR
311 && TREE_CODE (TREE_OPERAND ($3, 0)) == STRING_CST)
312 || TREE_CODE ($3) == STRING_CST)
313 assemble_asm ($3);
314 else
315 error ("argument of `asm' is not a constant string"); }
316 | extension extdef
317 { RESTORE_WARN_FLAGS ($1); }
318 ;
319
320 datadef:
321 setspecs notype_initdecls ';'
322 { if (pedantic)
323 error ("ANSI C forbids data definition with no type or storage class");
324 else if (!flag_traditional)
325 warning ("data definition has no type or storage class");
326
327 current_declspecs = TREE_VALUE (declspec_stack);
328 prefix_attributes = TREE_PURPOSE (declspec_stack);
329 declspec_stack = TREE_CHAIN (declspec_stack); }
330 | declmods setspecs notype_initdecls ';'
331 { current_declspecs = TREE_VALUE (declspec_stack);
332 prefix_attributes = TREE_PURPOSE (declspec_stack);
333 declspec_stack = TREE_CHAIN (declspec_stack); }
334 | typed_declspecs setspecs initdecls ';'
335 { current_declspecs = TREE_VALUE (declspec_stack);
336 prefix_attributes = TREE_PURPOSE (declspec_stack);
337 declspec_stack = TREE_CHAIN (declspec_stack); }
338 | declmods ';'
339 { pedwarn ("empty declaration"); }
340 | typed_declspecs ';'
341 { shadow_tag ($1); }
342 | error ';'
343 | error '}'
344 | ';'
345 { if (pedantic)
346 pedwarn ("ANSI C does not allow extra `;' outside of a function"); }
347 ;
348 \f
349 fndef:
350 typed_declspecs setspecs declarator
351 { if (! start_function (current_declspecs, $3,
352 prefix_attributes, NULL_TREE))
353 YYERROR1;
354 reinit_parse_for_function (); }
355 old_style_parm_decls
356 { store_parm_decls (); }
357 compstmt_or_error
358 { finish_function (0);
359 current_declspecs = TREE_VALUE (declspec_stack);
360 prefix_attributes = TREE_PURPOSE (declspec_stack);
361 declspec_stack = TREE_CHAIN (declspec_stack); }
362 | typed_declspecs setspecs declarator error
363 { current_declspecs = TREE_VALUE (declspec_stack);
364 prefix_attributes = TREE_PURPOSE (declspec_stack);
365 declspec_stack = TREE_CHAIN (declspec_stack); }
366 | declmods setspecs notype_declarator
367 { if (! start_function (current_declspecs, $3,
368 prefix_attributes, NULL_TREE))
369 YYERROR1;
370 reinit_parse_for_function (); }
371 old_style_parm_decls
372 { store_parm_decls (); }
373 compstmt_or_error
374 { finish_function (0);
375 current_declspecs = TREE_VALUE (declspec_stack);
376 prefix_attributes = TREE_PURPOSE (declspec_stack);
377 declspec_stack = TREE_CHAIN (declspec_stack); }
378 | declmods setspecs notype_declarator error
379 { current_declspecs = TREE_VALUE (declspec_stack);
380 prefix_attributes = TREE_PURPOSE (declspec_stack);
381 declspec_stack = TREE_CHAIN (declspec_stack); }
382 | setspecs notype_declarator
383 { if (! start_function (NULL_TREE, $2,
384 prefix_attributes, NULL_TREE))
385 YYERROR1;
386 reinit_parse_for_function (); }
387 old_style_parm_decls
388 { store_parm_decls (); }
389 compstmt_or_error
390 { finish_function (0);
391 current_declspecs = TREE_VALUE (declspec_stack);
392 prefix_attributes = TREE_PURPOSE (declspec_stack);
393 declspec_stack = TREE_CHAIN (declspec_stack); }
394 | setspecs notype_declarator error
395 { current_declspecs = TREE_VALUE (declspec_stack);
396 prefix_attributes = TREE_PURPOSE (declspec_stack);
397 declspec_stack = TREE_CHAIN (declspec_stack); }
398 ;
399
400 identifier:
401 IDENTIFIER
402 | TYPENAME
403 ifobjc
404 | OBJECTNAME
405 | CLASSNAME
406 end ifobjc
407 ;
408
409 unop: '&'
410 { $$ = ADDR_EXPR; }
411 | '-'
412 { $$ = NEGATE_EXPR; }
413 | '+'
414 { $$ = CONVERT_EXPR; }
415 | PLUSPLUS
416 { $$ = PREINCREMENT_EXPR; }
417 | MINUSMINUS
418 { $$ = PREDECREMENT_EXPR; }
419 | '~'
420 { $$ = BIT_NOT_EXPR; }
421 | '!'
422 { $$ = TRUTH_NOT_EXPR; }
423 ;
424
425 expr: nonnull_exprlist
426 { $$ = build_compound_expr ($1); }
427 ;
428
429 exprlist:
430 /* empty */
431 { $$ = NULL_TREE; }
432 | nonnull_exprlist
433 ;
434
435 nonnull_exprlist:
436 expr_no_commas
437 { $$ = build_tree_list (NULL_TREE, $1); }
438 | nonnull_exprlist ',' expr_no_commas
439 { chainon ($1, build_tree_list (NULL_TREE, $3)); }
440 ;
441
442 unary_expr:
443 primary
444 | '*' cast_expr %prec UNARY
445 { $$ = build_indirect_ref ($2, "unary *"); }
446 /* __extension__ turns off -pedantic for following primary. */
447 | extension cast_expr %prec UNARY
448 { $$ = $2;
449 RESTORE_WARN_FLAGS ($1); }
450 | unop cast_expr %prec UNARY
451 { $$ = build_unary_op ($1, $2, 0);
452 overflow_warning ($$); }
453 /* Refer to the address of a label as a pointer. */
454 | ANDAND identifier
455 { tree label = lookup_label ($2);
456 if (pedantic)
457 pedwarn ("ANSI C forbids `&&'");
458 if (label == 0)
459 $$ = null_pointer_node;
460 else
461 {
462 TREE_USED (label) = 1;
463 $$ = build1 (ADDR_EXPR, ptr_type_node, label);
464 TREE_CONSTANT ($$) = 1;
465 }
466 }
467 /* This seems to be impossible on some machines, so let's turn it off.
468 You can use __builtin_next_arg to find the anonymous stack args.
469 | '&' ELLIPSIS
470 { tree types = TYPE_ARG_TYPES (TREE_TYPE (current_function_decl));
471 $$ = error_mark_node;
472 if (TREE_VALUE (tree_last (types)) == void_type_node)
473 error ("`&...' used in function with fixed number of arguments");
474 else
475 {
476 if (pedantic)
477 pedwarn ("ANSI C forbids `&...'");
478 $$ = tree_last (DECL_ARGUMENTS (current_function_decl));
479 $$ = build_unary_op (ADDR_EXPR, $$, 0);
480 } }
481 */
482 | sizeof unary_expr %prec UNARY
483 { skip_evaluation--;
484 if (TREE_CODE ($2) == COMPONENT_REF
485 && DECL_C_BIT_FIELD (TREE_OPERAND ($2, 1)))
486 error ("`sizeof' applied to a bit-field");
487 $$ = c_sizeof (TREE_TYPE ($2)); }
488 | sizeof '(' typename ')' %prec HYPERUNARY
489 { skip_evaluation--;
490 $$ = c_sizeof (groktypename ($3)); }
491 | alignof unary_expr %prec UNARY
492 { skip_evaluation--;
493 $$ = c_alignof_expr ($2); }
494 | alignof '(' typename ')' %prec HYPERUNARY
495 { skip_evaluation--;
496 $$ = c_alignof (groktypename ($3)); }
497 | REALPART cast_expr %prec UNARY
498 { $$ = build_unary_op (REALPART_EXPR, $2, 0); }
499 | IMAGPART cast_expr %prec UNARY
500 { $$ = build_unary_op (IMAGPART_EXPR, $2, 0); }
501 | VA_ARG '(' expr_no_commas ',' typename ')'
502 { $$ = build_va_arg ($3, groktypename ($5)); }
503 ;
504
505 sizeof:
506 SIZEOF { skip_evaluation++; }
507 ;
508
509 alignof:
510 ALIGNOF { skip_evaluation++; }
511 ;
512
513 cast_expr:
514 unary_expr
515 | '(' typename ')' cast_expr %prec UNARY
516 { tree type = groktypename ($2);
517 $$ = build_c_cast (type, $4); }
518 | '(' typename ')' '{'
519 { start_init (NULL_TREE, NULL, 0);
520 $2 = groktypename ($2);
521 really_start_incremental_init ($2); }
522 initlist_maybe_comma '}' %prec UNARY
523 { const char *name;
524 tree result = pop_init_level (0);
525 tree type = $2;
526 finish_init ();
527
528 if (pedantic && ! flag_isoc99)
529 pedwarn ("ANSI C forbids constructor expressions");
530 if (TYPE_NAME (type) != 0)
531 {
532 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
533 name = IDENTIFIER_POINTER (TYPE_NAME (type));
534 else
535 name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
536 }
537 else
538 name = "";
539 $$ = result;
540 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
541 {
542 int failure = complete_array_type (type, $$, 1);
543 if (failure)
544 abort ();
545 }
546 }
547 ;
548
549 expr_no_commas:
550 cast_expr
551 | expr_no_commas '+' expr_no_commas
552 { $$ = parser_build_binary_op ($2, $1, $3); }
553 | expr_no_commas '-' expr_no_commas
554 { $$ = parser_build_binary_op ($2, $1, $3); }
555 | expr_no_commas '*' expr_no_commas
556 { $$ = parser_build_binary_op ($2, $1, $3); }
557 | expr_no_commas '/' expr_no_commas
558 { $$ = parser_build_binary_op ($2, $1, $3); }
559 | expr_no_commas '%' expr_no_commas
560 { $$ = parser_build_binary_op ($2, $1, $3); }
561 | expr_no_commas LSHIFT expr_no_commas
562 { $$ = parser_build_binary_op ($2, $1, $3); }
563 | expr_no_commas RSHIFT expr_no_commas
564 { $$ = parser_build_binary_op ($2, $1, $3); }
565 | expr_no_commas ARITHCOMPARE expr_no_commas
566 { $$ = parser_build_binary_op ($2, $1, $3); }
567 | expr_no_commas EQCOMPARE expr_no_commas
568 { $$ = parser_build_binary_op ($2, $1, $3); }
569 | expr_no_commas '&' expr_no_commas
570 { $$ = parser_build_binary_op ($2, $1, $3); }
571 | expr_no_commas '|' expr_no_commas
572 { $$ = parser_build_binary_op ($2, $1, $3); }
573 | expr_no_commas '^' expr_no_commas
574 { $$ = parser_build_binary_op ($2, $1, $3); }
575 | expr_no_commas ANDAND
576 { $1 = truthvalue_conversion (default_conversion ($1));
577 skip_evaluation += $1 == boolean_false_node; }
578 expr_no_commas
579 { skip_evaluation -= $1 == boolean_false_node;
580 $$ = parser_build_binary_op (TRUTH_ANDIF_EXPR, $1, $4); }
581 | expr_no_commas OROR
582 { $1 = truthvalue_conversion (default_conversion ($1));
583 skip_evaluation += $1 == boolean_true_node; }
584 expr_no_commas
585 { skip_evaluation -= $1 == boolean_true_node;
586 $$ = parser_build_binary_op (TRUTH_ORIF_EXPR, $1, $4); }
587 | expr_no_commas '?'
588 { $1 = truthvalue_conversion (default_conversion ($1));
589 skip_evaluation += $1 == boolean_false_node; }
590 expr ':'
591 { skip_evaluation += (($1 == boolean_true_node)
592 - ($1 == boolean_false_node)); }
593 expr_no_commas
594 { skip_evaluation -= $1 == boolean_true_node;
595 $$ = build_conditional_expr ($1, $4, $7); }
596 | expr_no_commas '?'
597 { if (pedantic)
598 pedwarn ("ANSI C forbids omitting the middle term of a ?: expression");
599 /* Make sure first operand is calculated only once. */
600 $<ttype>2 = save_expr ($1);
601 $1 = truthvalue_conversion (default_conversion ($<ttype>2));
602 skip_evaluation += $1 == boolean_true_node; }
603 ':' expr_no_commas
604 { skip_evaluation -= $1 == boolean_true_node;
605 $$ = build_conditional_expr ($1, $<ttype>2, $5); }
606 | expr_no_commas '=' expr_no_commas
607 { char class;
608 $$ = build_modify_expr ($1, NOP_EXPR, $3);
609 class = TREE_CODE_CLASS (TREE_CODE ($$));
610 if (class == 'e' || class == '1'
611 || class == '2' || class == '<')
612 C_SET_EXP_ORIGINAL_CODE ($$, MODIFY_EXPR);
613 }
614 | expr_no_commas ASSIGN expr_no_commas
615 { char class;
616 $$ = build_modify_expr ($1, $2, $3);
617 /* This inhibits warnings in truthvalue_conversion. */
618 class = TREE_CODE_CLASS (TREE_CODE ($$));
619 if (class == 'e' || class == '1'
620 || class == '2' || class == '<')
621 C_SET_EXP_ORIGINAL_CODE ($$, ERROR_MARK);
622 }
623 ;
624
625 primary:
626 IDENTIFIER
627 {
628 if (yychar == YYEMPTY)
629 yychar = YYLEX;
630 $$ = build_external_ref ($1, yychar == '(');
631 }
632 | CONSTANT
633 | string
634 { $$ = combine_strings ($1); }
635 | '(' expr ')'
636 { char class = TREE_CODE_CLASS (TREE_CODE ($2));
637 if (class == 'e' || class == '1'
638 || class == '2' || class == '<')
639 C_SET_EXP_ORIGINAL_CODE ($2, ERROR_MARK);
640 $$ = $2; }
641 | '(' error ')'
642 { $$ = error_mark_node; }
643 | compstmt_primary_start compstmt_nostart ')'
644 { tree rtl_exp;
645 if (pedantic)
646 pedwarn ("ANSI C forbids braced-groups within expressions");
647 pop_iterator_stack ();
648 pop_label_level ();
649 rtl_exp = expand_end_stmt_expr ($1);
650 /* The statements have side effects, so the group does. */
651 TREE_SIDE_EFFECTS (rtl_exp) = 1;
652
653 if (TREE_CODE ($2) == BLOCK)
654 {
655 /* Make a BIND_EXPR for the BLOCK already made. */
656 $$ = build (BIND_EXPR, TREE_TYPE (rtl_exp),
657 NULL_TREE, rtl_exp, $2);
658 /* Remove the block from the tree at this point.
659 It gets put back at the proper place
660 when the BIND_EXPR is expanded. */
661 delete_block ($2);
662 }
663 else
664 $$ = $2;
665 }
666 | compstmt_primary_start error ')'
667 {
668 /* Make sure we call expand_end_stmt_expr. Otherwise
669 we are likely to lose sequences and crash later. */
670 pop_iterator_stack ();
671 pop_label_level ();
672 expand_end_stmt_expr ($1);
673 $$ = error_mark_node;
674 }
675 | primary '(' exprlist ')' %prec '.'
676 { $$ = build_function_call ($1, $3); }
677 | primary '[' expr ']' %prec '.'
678 { $$ = build_array_ref ($1, $3); }
679 | primary '.' identifier
680 {
681 ifobjc
682 if (doing_objc_thang)
683 {
684 if (is_public ($1, $3))
685 $$ = build_component_ref ($1, $3);
686 else
687 $$ = error_mark_node;
688 }
689 else
690 end ifobjc
691 $$ = build_component_ref ($1, $3);
692 }
693 | primary POINTSAT identifier
694 {
695 tree expr = build_indirect_ref ($1, "->");
696
697 ifobjc
698 if (doing_objc_thang)
699 {
700 if (is_public (expr, $3))
701 $$ = build_component_ref (expr, $3);
702 else
703 $$ = error_mark_node;
704 }
705 else
706 end ifobjc
707 $$ = build_component_ref (expr, $3);
708 }
709 | primary PLUSPLUS
710 { $$ = build_unary_op (POSTINCREMENT_EXPR, $1, 0); }
711 | primary MINUSMINUS
712 { $$ = build_unary_op (POSTDECREMENT_EXPR, $1, 0); }
713 ifobjc
714 | objcmessageexpr
715 { $$ = build_message_expr ($1); }
716 | objcselectorexpr
717 { $$ = build_selector_expr ($1); }
718 | objcprotocolexpr
719 { $$ = build_protocol_expr ($1); }
720 | objcencodeexpr
721 { $$ = build_encode_expr ($1); }
722 | objc_string
723 { $$ = build_objc_string_object ($1); }
724 end ifobjc
725 ;
726
727 /* Produces a STRING_CST with perhaps more STRING_CSTs chained onto it. */
728 string:
729 STRING
730 | string STRING
731 { $$ = chainon ($1, $2);
732 ifc
733 if (warn_traditional && !in_system_header)
734 warning ("Use of ANSI string concatenation");
735 end ifc
736 }
737 ;
738
739 ifobjc
740 /* Produces an OBJC_STRING_CST with perhaps more OBJC_STRING_CSTs chained
741 onto it. */
742 objc_string:
743 OBJC_STRING
744 | objc_string OBJC_STRING
745 { $$ = chainon ($1, $2); }
746 ;
747 end ifobjc
748
749 old_style_parm_decls:
750 /* empty */
751 | datadecls
752 | datadecls ELLIPSIS
753 /* ... is used here to indicate a varargs function. */
754 { c_mark_varargs ();
755 if (pedantic)
756 pedwarn ("ANSI C does not permit use of `varargs.h'"); }
757 ;
758
759 /* The following are analogous to lineno_decl, decls and decl
760 except that they do not allow nested functions.
761 They are used for old-style parm decls. */
762 lineno_datadecl:
763 save_filename save_lineno datadecl
764 { }
765 ;
766
767 datadecls:
768 lineno_datadecl
769 | errstmt
770 | datadecls lineno_datadecl
771 | lineno_datadecl errstmt
772 ;
773
774 /* We don't allow prefix attributes here because they cause reduce/reduce
775 conflicts: we can't know whether we're parsing a function decl with
776 attribute suffix, or function defn with attribute prefix on first old
777 style parm. */
778 datadecl:
779 typed_declspecs_no_prefix_attr setspecs initdecls ';'
780 { current_declspecs = TREE_VALUE (declspec_stack);
781 prefix_attributes = TREE_PURPOSE (declspec_stack);
782 declspec_stack = TREE_CHAIN (declspec_stack); }
783 | declmods_no_prefix_attr setspecs notype_initdecls ';'
784 { current_declspecs = TREE_VALUE (declspec_stack);
785 prefix_attributes = TREE_PURPOSE (declspec_stack);
786 declspec_stack = TREE_CHAIN (declspec_stack); }
787 | typed_declspecs_no_prefix_attr ';'
788 { shadow_tag_warned ($1, 1);
789 pedwarn ("empty declaration"); }
790 | declmods_no_prefix_attr ';'
791 { pedwarn ("empty declaration"); }
792 ;
793
794 /* This combination which saves a lineno before a decl
795 is the normal thing to use, rather than decl itself.
796 This is to avoid shift/reduce conflicts in contexts
797 where statement labels are allowed. */
798 lineno_decl:
799 save_filename save_lineno decl
800 { }
801 ;
802
803 decls:
804 lineno_decl
805 | errstmt
806 | decls lineno_decl
807 | lineno_decl errstmt
808 ;
809
810 /* records the type and storage class specs to use for processing
811 the declarators that follow.
812 Maintains a stack of outer-level values of current_declspecs,
813 for the sake of parm declarations nested in function declarators. */
814 setspecs: /* empty */
815 { pending_xref_error ();
816 declspec_stack = tree_cons (prefix_attributes,
817 current_declspecs,
818 declspec_stack);
819 split_specs_attrs ($<ttype>0,
820 &current_declspecs, &prefix_attributes); }
821 ;
822
823 /* ??? Yuck. See after_type_declarator. */
824 setattrs: /* empty */
825 { prefix_attributes = chainon (prefix_attributes, $<ttype>0); }
826 ;
827
828 decl:
829 typed_declspecs setspecs initdecls ';'
830 { current_declspecs = TREE_VALUE (declspec_stack);
831 prefix_attributes = TREE_PURPOSE (declspec_stack);
832 declspec_stack = TREE_CHAIN (declspec_stack); }
833 | declmods setspecs notype_initdecls ';'
834 { current_declspecs = TREE_VALUE (declspec_stack);
835 prefix_attributes = TREE_PURPOSE (declspec_stack);
836 declspec_stack = TREE_CHAIN (declspec_stack); }
837 | typed_declspecs setspecs nested_function
838 { current_declspecs = TREE_VALUE (declspec_stack);
839 prefix_attributes = TREE_PURPOSE (declspec_stack);
840 declspec_stack = TREE_CHAIN (declspec_stack); }
841 | declmods setspecs notype_nested_function
842 { current_declspecs = TREE_VALUE (declspec_stack);
843 prefix_attributes = TREE_PURPOSE (declspec_stack);
844 declspec_stack = TREE_CHAIN (declspec_stack); }
845 | typed_declspecs ';'
846 { shadow_tag ($1); }
847 | declmods ';'
848 { pedwarn ("empty declaration"); }
849 | extension decl
850 { RESTORE_WARN_FLAGS ($1); }
851 ;
852
853 /* Declspecs which contain at least one type specifier or typedef name.
854 (Just `const' or `volatile' is not enough.)
855 A typedef'd name following these is taken as a name to be declared.
856 Declspecs have a non-NULL TREE_VALUE, attributes do not. */
857
858 typed_declspecs:
859 typespec reserved_declspecs
860 { $$ = tree_cons (NULL_TREE, $1, $2); }
861 | declmods typespec reserved_declspecs
862 { $$ = chainon ($3, tree_cons (NULL_TREE, $2, $1)); }
863 ;
864
865 reserved_declspecs: /* empty */
866 { $$ = NULL_TREE; }
867 | reserved_declspecs typespecqual_reserved
868 { $$ = tree_cons (NULL_TREE, $2, $1); }
869 | reserved_declspecs SCSPEC
870 { if (extra_warnings)
871 warning ("`%s' is not at beginning of declaration",
872 IDENTIFIER_POINTER ($2));
873 $$ = tree_cons (NULL_TREE, $2, $1); }
874 | reserved_declspecs attributes
875 { $$ = tree_cons ($2, NULL_TREE, $1); }
876 ;
877
878 typed_declspecs_no_prefix_attr:
879 typespec reserved_declspecs_no_prefix_attr
880 { $$ = tree_cons (NULL_TREE, $1, $2); }
881 | declmods_no_prefix_attr typespec reserved_declspecs_no_prefix_attr
882 { $$ = chainon ($3, tree_cons (NULL_TREE, $2, $1)); }
883 ;
884
885 reserved_declspecs_no_prefix_attr:
886 /* empty */
887 { $$ = NULL_TREE; }
888 | reserved_declspecs_no_prefix_attr typespecqual_reserved
889 { $$ = tree_cons (NULL_TREE, $2, $1); }
890 | reserved_declspecs_no_prefix_attr SCSPEC
891 { if (extra_warnings)
892 warning ("`%s' is not at beginning of declaration",
893 IDENTIFIER_POINTER ($2));
894 $$ = tree_cons (NULL_TREE, $2, $1); }
895 ;
896
897 /* List of just storage classes, type modifiers, and prefix attributes.
898 A declaration can start with just this, but then it cannot be used
899 to redeclare a typedef-name.
900 Declspecs have a non-NULL TREE_VALUE, attributes do not. */
901
902 declmods:
903 declmods_no_prefix_attr
904 { $$ = $1; }
905 | attributes
906 { $$ = tree_cons ($1, NULL_TREE, NULL_TREE); }
907 | declmods declmods_no_prefix_attr
908 { $$ = chainon ($2, $1); }
909 | declmods attributes
910 { $$ = tree_cons ($2, NULL_TREE, $1); }
911 ;
912
913 declmods_no_prefix_attr:
914 TYPE_QUAL
915 { $$ = tree_cons (NULL_TREE, $1, NULL_TREE);
916 TREE_STATIC ($$) = 1; }
917 | SCSPEC
918 { $$ = tree_cons (NULL_TREE, $1, NULL_TREE); }
919 | declmods_no_prefix_attr TYPE_QUAL
920 { $$ = tree_cons (NULL_TREE, $2, $1);
921 TREE_STATIC ($$) = 1; }
922 | declmods_no_prefix_attr SCSPEC
923 { if (extra_warnings && TREE_STATIC ($1))
924 warning ("`%s' is not at beginning of declaration",
925 IDENTIFIER_POINTER ($2));
926 $$ = tree_cons (NULL_TREE, $2, $1);
927 TREE_STATIC ($$) = TREE_STATIC ($1); }
928 ;
929
930
931 /* Used instead of declspecs where storage classes are not allowed
932 (that is, for typenames and structure components).
933 Don't accept a typedef-name if anything but a modifier precedes it. */
934
935 typed_typespecs:
936 typespec reserved_typespecquals
937 { $$ = tree_cons (NULL_TREE, $1, $2); }
938 | nonempty_type_quals typespec reserved_typespecquals
939 { $$ = chainon ($3, tree_cons (NULL_TREE, $2, $1)); }
940 ;
941
942 reserved_typespecquals: /* empty */
943 { $$ = NULL_TREE; }
944 | reserved_typespecquals typespecqual_reserved
945 { $$ = tree_cons (NULL_TREE, $2, $1); }
946 ;
947
948 /* A typespec (but not a type qualifier).
949 Once we have seen one of these in a declaration,
950 if a typedef name appears then it is being redeclared. */
951
952 typespec: TYPESPEC
953 | structsp
954 | TYPENAME
955 { /* For a typedef name, record the meaning, not the name.
956 In case of `foo foo, bar;'. */
957 $$ = lookup_name ($1); }
958 ifobjc
959 | CLASSNAME protocolrefs
960 { $$ = get_static_reference ($1, $2); }
961 | OBJECTNAME protocolrefs
962 { $$ = get_object_reference ($2); }
963
964 /* Make "<SomeProtocol>" equivalent to "id <SomeProtocol>"
965 - nisse@lysator.liu.se */
966 | non_empty_protocolrefs
967 { $$ = get_object_reference ($1); }
968 end ifobjc
969 | TYPEOF '(' expr ')'
970 { $$ = TREE_TYPE ($3); }
971 | TYPEOF '(' typename ')'
972 { $$ = groktypename ($3); }
973 ;
974
975 /* A typespec that is a reserved word, or a type qualifier. */
976
977 typespecqual_reserved: TYPESPEC
978 | TYPE_QUAL
979 | structsp
980 ;
981
982 initdecls:
983 initdcl
984 | initdecls ',' initdcl
985 ;
986
987 notype_initdecls:
988 notype_initdcl
989 | notype_initdecls ',' initdcl
990 ;
991
992 maybeasm:
993 /* empty */
994 { $$ = NULL_TREE; }
995 | ASM_KEYWORD '(' string ')'
996 { if (TREE_CHAIN ($3)) $3 = combine_strings ($3);
997 $$ = $3;
998 }
999 ;
1000
1001 initdcl:
1002 declarator maybeasm maybe_attribute '='
1003 { $<ttype>$ = start_decl ($1, current_declspecs, 1,
1004 $3, prefix_attributes);
1005 start_init ($<ttype>$, $2, global_bindings_p ()); }
1006 init
1007 /* Note how the declaration of the variable is in effect while its init is parsed! */
1008 { finish_init ();
1009 finish_decl ($<ttype>5, $6, $2); }
1010 | declarator maybeasm maybe_attribute
1011 { tree d = start_decl ($1, current_declspecs, 0,
1012 $3, prefix_attributes);
1013 finish_decl (d, NULL_TREE, $2);
1014 }
1015 ;
1016
1017 notype_initdcl:
1018 notype_declarator maybeasm maybe_attribute '='
1019 { $<ttype>$ = start_decl ($1, current_declspecs, 1,
1020 $3, prefix_attributes);
1021 start_init ($<ttype>$, $2, global_bindings_p ()); }
1022 init
1023 /* Note how the declaration of the variable is in effect while its init is parsed! */
1024 { finish_init ();
1025 decl_attributes ($<ttype>5, $3, prefix_attributes);
1026 finish_decl ($<ttype>5, $6, $2); }
1027 | notype_declarator maybeasm maybe_attribute
1028 { tree d = start_decl ($1, current_declspecs, 0,
1029 $3, prefix_attributes);
1030 finish_decl (d, NULL_TREE, $2); }
1031 ;
1032 /* the * rules are dummies to accept the Apollo extended syntax
1033 so that the header files compile. */
1034 maybe_attribute:
1035 /* empty */
1036 { $$ = NULL_TREE; }
1037 | attributes
1038 { $$ = $1; }
1039 ;
1040
1041 attributes:
1042 attribute
1043 { $$ = $1; }
1044 | attributes attribute
1045 { $$ = chainon ($1, $2); }
1046 ;
1047
1048 attribute:
1049 ATTRIBUTE '(' '(' attribute_list ')' ')'
1050 { $$ = $4; }
1051 ;
1052
1053 attribute_list:
1054 attrib
1055 { $$ = $1; }
1056 | attribute_list ',' attrib
1057 { $$ = chainon ($1, $3); }
1058 ;
1059
1060 attrib:
1061 /* empty */
1062 { $$ = NULL_TREE; }
1063 | any_word
1064 { $$ = build_tree_list ($1, NULL_TREE); }
1065 | any_word '(' IDENTIFIER ')'
1066 { $$ = build_tree_list ($1, build_tree_list (NULL_TREE, $3)); }
1067 | any_word '(' IDENTIFIER ',' nonnull_exprlist ')'
1068 { $$ = build_tree_list ($1, tree_cons (NULL_TREE, $3, $5)); }
1069 | any_word '(' exprlist ')'
1070 { $$ = build_tree_list ($1, $3); }
1071 ;
1072
1073 /* This still leaves out most reserved keywords,
1074 shouldn't we include them? */
1075
1076 any_word:
1077 identifier
1078 | SCSPEC
1079 | TYPESPEC
1080 | TYPE_QUAL
1081 ;
1082 \f
1083 /* Initializers. `init' is the entry point. */
1084
1085 init:
1086 expr_no_commas
1087 | '{'
1088 { really_start_incremental_init (NULL_TREE); }
1089 initlist_maybe_comma '}'
1090 { $$ = pop_init_level (0); }
1091 | error
1092 { $$ = error_mark_node; }
1093 ;
1094
1095 /* `initlist_maybe_comma' is the guts of an initializer in braces. */
1096 initlist_maybe_comma:
1097 /* empty */
1098 { if (pedantic)
1099 pedwarn ("ANSI C forbids empty initializer braces"); }
1100 | initlist1 maybecomma
1101 ;
1102
1103 initlist1:
1104 initelt
1105 | initlist1 ',' initelt
1106 ;
1107
1108 /* `initelt' is a single element of an initializer.
1109 It may use braces. */
1110 initelt:
1111 designator_list '=' initval
1112 | designator initval
1113 | identifier ':'
1114 { set_init_label ($1); }
1115 initval
1116 | initval
1117 ;
1118
1119 initval:
1120 '{'
1121 { push_init_level (0); }
1122 initlist_maybe_comma '}'
1123 { process_init_element (pop_init_level (0)); }
1124 | expr_no_commas
1125 { process_init_element ($1); }
1126 | error
1127 ;
1128
1129 designator_list:
1130 designator
1131 | designator_list designator
1132 ;
1133
1134 designator:
1135 '.' identifier
1136 { set_init_label ($2); }
1137 /* These are for labeled elements. The syntax for an array element
1138 initializer conflicts with the syntax for an Objective-C message,
1139 so don't include these productions in the Objective-C grammar. */
1140 ifc
1141 | '[' expr_no_commas ELLIPSIS expr_no_commas ']'
1142 { set_init_index ($2, $4); }
1143 | '[' expr_no_commas ']'
1144 { set_init_index ($2, NULL_TREE); }
1145 end ifc
1146 ;
1147 \f
1148 nested_function:
1149 declarator
1150 { if (pedantic)
1151 pedwarn ("ANSI C forbids nested functions");
1152
1153 push_function_context ();
1154 if (! start_function (current_declspecs, $1,
1155 prefix_attributes, NULL_TREE))
1156 {
1157 pop_function_context ();
1158 YYERROR1;
1159 }
1160 reinit_parse_for_function (); }
1161 old_style_parm_decls
1162 { store_parm_decls (); }
1163 /* This used to use compstmt_or_error.
1164 That caused a bug with input `f(g) int g {}',
1165 where the use of YYERROR1 above caused an error
1166 which then was handled by compstmt_or_error.
1167 There followed a repeated execution of that same rule,
1168 which called YYERROR1 again, and so on. */
1169 compstmt
1170 { finish_function (1);
1171 pop_function_context (); }
1172 ;
1173
1174 notype_nested_function:
1175 notype_declarator
1176 { if (pedantic)
1177 pedwarn ("ANSI C forbids nested functions");
1178
1179 push_function_context ();
1180 if (! start_function (current_declspecs, $1,
1181 prefix_attributes, NULL_TREE))
1182 {
1183 pop_function_context ();
1184 YYERROR1;
1185 }
1186 reinit_parse_for_function (); }
1187 old_style_parm_decls
1188 { store_parm_decls (); }
1189 /* This used to use compstmt_or_error.
1190 That caused a bug with input `f(g) int g {}',
1191 where the use of YYERROR1 above caused an error
1192 which then was handled by compstmt_or_error.
1193 There followed a repeated execution of that same rule,
1194 which called YYERROR1 again, and so on. */
1195 compstmt
1196 { finish_function (1);
1197 pop_function_context (); }
1198 ;
1199
1200 /* Any kind of declarator (thus, all declarators allowed
1201 after an explicit typespec). */
1202
1203 declarator:
1204 after_type_declarator
1205 | notype_declarator
1206 ;
1207
1208 /* A declarator that is allowed only after an explicit typespec. */
1209
1210 after_type_declarator:
1211 '(' after_type_declarator ')'
1212 { $$ = $2; }
1213 | after_type_declarator '(' parmlist_or_identifiers %prec '.'
1214 { $$ = build_nt (CALL_EXPR, $1, $3, NULL_TREE); }
1215 /* | after_type_declarator '(' error ')' %prec '.'
1216 { $$ = build_nt (CALL_EXPR, $1, NULL_TREE, NULL_TREE);
1217 poplevel (0, 0, 0); } */
1218 | after_type_declarator '[' expr ']' %prec '.'
1219 { $$ = build_nt (ARRAY_REF, $1, $3); }
1220 | after_type_declarator '[' ']' %prec '.'
1221 { $$ = build_nt (ARRAY_REF, $1, NULL_TREE); }
1222 | '*' type_quals after_type_declarator %prec UNARY
1223 { $$ = make_pointer_declarator ($2, $3); }
1224 /* ??? Yuck. setattrs is a quick hack. We can't use
1225 prefix_attributes because $1 only applies to this
1226 declarator. We assume setspecs has already been done.
1227 setattrs also avoids 5 reduce/reduce conflicts (otherwise multiple
1228 attributes could be recognized here or in `attributes'). */
1229 | attributes setattrs after_type_declarator
1230 { $$ = $3; }
1231 | TYPENAME
1232 ifobjc
1233 | OBJECTNAME
1234 end ifobjc
1235 ;
1236
1237 /* Kinds of declarator that can appear in a parameter list
1238 in addition to notype_declarator. This is like after_type_declarator
1239 but does not allow a typedef name in parentheses as an identifier
1240 (because it would conflict with a function with that typedef as arg). */
1241
1242 parm_declarator:
1243 parm_declarator '(' parmlist_or_identifiers %prec '.'
1244 { $$ = build_nt (CALL_EXPR, $1, $3, NULL_TREE); }
1245 /* | parm_declarator '(' error ')' %prec '.'
1246 { $$ = build_nt (CALL_EXPR, $1, NULL_TREE, NULL_TREE);
1247 poplevel (0, 0, 0); } */
1248 ifc
1249 | parm_declarator '[' '*' ']' %prec '.'
1250 { $$ = build_nt (ARRAY_REF, $1, NULL_TREE);
1251 if (! flag_isoc99)
1252 error ("`[*]' in parameter declaration only allowed in ISO C 99");
1253 }
1254 end ifc
1255 | parm_declarator '[' expr ']' %prec '.'
1256 { $$ = build_nt (ARRAY_REF, $1, $3); }
1257 | parm_declarator '[' ']' %prec '.'
1258 { $$ = build_nt (ARRAY_REF, $1, NULL_TREE); }
1259 | '*' type_quals parm_declarator %prec UNARY
1260 { $$ = make_pointer_declarator ($2, $3); }
1261 /* ??? Yuck. setattrs is a quick hack. We can't use
1262 prefix_attributes because $1 only applies to this
1263 declarator. We assume setspecs has already been done.
1264 setattrs also avoids 5 reduce/reduce conflicts (otherwise multiple
1265 attributes could be recognized here or in `attributes'). */
1266 | attributes setattrs parm_declarator
1267 { $$ = $3; }
1268 | TYPENAME
1269 ;
1270
1271 /* A declarator allowed whether or not there has been
1272 an explicit typespec. These cannot redeclare a typedef-name. */
1273
1274 notype_declarator:
1275 notype_declarator '(' parmlist_or_identifiers %prec '.'
1276 { $$ = build_nt (CALL_EXPR, $1, $3, NULL_TREE); }
1277 /* | notype_declarator '(' error ')' %prec '.'
1278 { $$ = build_nt (CALL_EXPR, $1, NULL_TREE, NULL_TREE);
1279 poplevel (0, 0, 0); } */
1280 | '(' notype_declarator ')'
1281 { $$ = $2; }
1282 | '*' type_quals notype_declarator %prec UNARY
1283 { $$ = make_pointer_declarator ($2, $3); }
1284 ifc
1285 | notype_declarator '[' '*' ']' %prec '.'
1286 { $$ = build_nt (ARRAY_REF, $1, NULL_TREE);
1287 if (! flag_isoc99)
1288 error ("`[*]' in parameter declaration only allowed in ISO C 99");
1289 }
1290 end ifc
1291 | notype_declarator '[' expr ']' %prec '.'
1292 { $$ = build_nt (ARRAY_REF, $1, $3); }
1293 | notype_declarator '[' ']' %prec '.'
1294 { $$ = build_nt (ARRAY_REF, $1, NULL_TREE); }
1295 /* ??? Yuck. setattrs is a quick hack. We can't use
1296 prefix_attributes because $1 only applies to this
1297 declarator. We assume setspecs has already been done.
1298 setattrs also avoids 5 reduce/reduce conflicts (otherwise multiple
1299 attributes could be recognized here or in `attributes'). */
1300 | attributes setattrs notype_declarator
1301 { $$ = $3; }
1302 | IDENTIFIER
1303 ;
1304
1305 struct_head:
1306 STRUCT
1307 { $$ = NULL_TREE; }
1308 | STRUCT attributes
1309 { $$ = $2; }
1310 ;
1311
1312 union_head:
1313 UNION
1314 { $$ = NULL_TREE; }
1315 | UNION attributes
1316 { $$ = $2; }
1317 ;
1318
1319 enum_head:
1320 ENUM
1321 { $$ = NULL_TREE; }
1322 | ENUM attributes
1323 { $$ = $2; }
1324 ;
1325
1326 structsp:
1327 struct_head identifier '{'
1328 { $$ = start_struct (RECORD_TYPE, $2);
1329 /* Start scope of tag before parsing components. */
1330 }
1331 component_decl_list '}' maybe_attribute
1332 { $$ = finish_struct ($<ttype>4, $5, chainon ($1, $7)); }
1333 | struct_head '{' component_decl_list '}' maybe_attribute
1334 { $$ = finish_struct (start_struct (RECORD_TYPE, NULL_TREE),
1335 $3, chainon ($1, $5));
1336 }
1337 | struct_head identifier
1338 { $$ = xref_tag (RECORD_TYPE, $2); }
1339 | union_head identifier '{'
1340 { $$ = start_struct (UNION_TYPE, $2); }
1341 component_decl_list '}' maybe_attribute
1342 { $$ = finish_struct ($<ttype>4, $5, chainon ($1, $7)); }
1343 | union_head '{' component_decl_list '}' maybe_attribute
1344 { $$ = finish_struct (start_struct (UNION_TYPE, NULL_TREE),
1345 $3, chainon ($1, $5));
1346 }
1347 | union_head identifier
1348 { $$ = xref_tag (UNION_TYPE, $2); }
1349 | enum_head identifier '{'
1350 { $$ = start_enum ($2); }
1351 enumlist maybecomma_warn '}' maybe_attribute
1352 { $$ = finish_enum ($<ttype>4, nreverse ($5),
1353 chainon ($1, $8)); }
1354 | enum_head '{'
1355 { $$ = start_enum (NULL_TREE); }
1356 enumlist maybecomma_warn '}' maybe_attribute
1357 { $$ = finish_enum ($<ttype>3, nreverse ($4),
1358 chainon ($1, $7)); }
1359 | enum_head identifier
1360 { $$ = xref_tag (ENUMERAL_TYPE, $2); }
1361 ;
1362
1363 maybecomma:
1364 /* empty */
1365 | ','
1366 ;
1367
1368 maybecomma_warn:
1369 /* empty */
1370 | ','
1371 { if (pedantic && ! flag_isoc99)
1372 pedwarn ("comma at end of enumerator list"); }
1373 ;
1374
1375 component_decl_list:
1376 component_decl_list2
1377 { $$ = $1; }
1378 | component_decl_list2 component_decl
1379 { $$ = chainon ($1, $2);
1380 pedwarn ("no semicolon at end of struct or union"); }
1381 ;
1382
1383 component_decl_list2: /* empty */
1384 { $$ = NULL_TREE; }
1385 | component_decl_list2 component_decl ';'
1386 { $$ = chainon ($1, $2); }
1387 | component_decl_list2 ';'
1388 { if (pedantic)
1389 pedwarn ("extra semicolon in struct or union specified"); }
1390 ifobjc
1391 /* foo(sizeof(struct{ @defs(ClassName)})); */
1392 | DEFS '(' CLASSNAME ')'
1393 {
1394 tree interface = lookup_interface ($3);
1395
1396 if (interface)
1397 $$ = get_class_ivars (interface);
1398 else
1399 {
1400 error ("Cannot find interface declaration for `%s'",
1401 IDENTIFIER_POINTER ($3));
1402 $$ = NULL_TREE;
1403 }
1404 }
1405 end ifobjc
1406 ;
1407
1408 /* There is a shift-reduce conflict here, because `components' may
1409 start with a `typename'. It happens that shifting (the default resolution)
1410 does the right thing, because it treats the `typename' as part of
1411 a `typed_typespecs'.
1412
1413 It is possible that this same technique would allow the distinction
1414 between `notype_initdecls' and `initdecls' to be eliminated.
1415 But I am being cautious and not trying it. */
1416
1417 component_decl:
1418 typed_typespecs setspecs components
1419 { $$ = $3;
1420 current_declspecs = TREE_VALUE (declspec_stack);
1421 prefix_attributes = TREE_PURPOSE (declspec_stack);
1422 declspec_stack = TREE_CHAIN (declspec_stack); }
1423 | typed_typespecs setspecs save_filename save_lineno maybe_attribute
1424 {
1425 /* Support for unnamed structs or unions as members of
1426 structs or unions (which is [a] useful and [b] supports
1427 MS P-SDK). */
1428 if (pedantic)
1429 pedwarn ("ANSI C doesn't support unnamed structs/unions");
1430
1431 $$ = grokfield($3, $4, NULL, current_declspecs, NULL_TREE);
1432 current_declspecs = TREE_VALUE (declspec_stack);
1433 prefix_attributes = TREE_PURPOSE (declspec_stack);
1434 declspec_stack = TREE_CHAIN (declspec_stack);
1435 }
1436 | nonempty_type_quals setspecs components
1437 { $$ = $3;
1438 current_declspecs = TREE_VALUE (declspec_stack);
1439 prefix_attributes = TREE_PURPOSE (declspec_stack);
1440 declspec_stack = TREE_CHAIN (declspec_stack); }
1441 | nonempty_type_quals
1442 { if (pedantic)
1443 pedwarn ("ANSI C forbids member declarations with no members");
1444 shadow_tag($1);
1445 $$ = NULL_TREE; }
1446 | error
1447 { $$ = NULL_TREE; }
1448 | extension component_decl
1449 { $$ = $2;
1450 RESTORE_WARN_FLAGS ($1); }
1451 ;
1452
1453 components:
1454 component_declarator
1455 | components ',' component_declarator
1456 { $$ = chainon ($1, $3); }
1457 ;
1458
1459 component_declarator:
1460 save_filename save_lineno declarator maybe_attribute
1461 { $$ = grokfield ($1, $2, $3, current_declspecs, NULL_TREE);
1462 decl_attributes ($$, $4, prefix_attributes); }
1463 | save_filename save_lineno
1464 declarator ':' expr_no_commas maybe_attribute
1465 { $$ = grokfield ($1, $2, $3, current_declspecs, $5);
1466 decl_attributes ($$, $6, prefix_attributes); }
1467 | save_filename save_lineno ':' expr_no_commas maybe_attribute
1468 { $$ = grokfield ($1, $2, NULL_TREE, current_declspecs, $4);
1469 decl_attributes ($$, $5, prefix_attributes); }
1470 ;
1471
1472 /* We chain the enumerators in reverse order.
1473 They are put in forward order where enumlist is used.
1474 (The order used to be significant, but no longer is so.
1475 However, we still maintain the order, just to be clean.) */
1476
1477 enumlist:
1478 enumerator
1479 | enumlist ',' enumerator
1480 { if ($1 == error_mark_node)
1481 $$ = $1;
1482 else
1483 $$ = chainon ($3, $1); }
1484 | error
1485 { $$ = error_mark_node; }
1486 ;
1487
1488
1489 enumerator:
1490 identifier
1491 { $$ = build_enumerator ($1, NULL_TREE); }
1492 | identifier '=' expr_no_commas
1493 { $$ = build_enumerator ($1, $3); }
1494 ;
1495
1496 typename:
1497 typed_typespecs absdcl
1498 { $$ = build_tree_list ($1, $2); }
1499 | nonempty_type_quals absdcl
1500 { $$ = build_tree_list ($1, $2); }
1501 ;
1502
1503 absdcl: /* an absolute declarator */
1504 /* empty */
1505 { $$ = NULL_TREE; }
1506 | absdcl1
1507 ;
1508
1509 nonempty_type_quals:
1510 TYPE_QUAL
1511 { $$ = tree_cons (NULL_TREE, $1, NULL_TREE); }
1512 | nonempty_type_quals TYPE_QUAL
1513 { $$ = tree_cons (NULL_TREE, $2, $1); }
1514 ;
1515
1516 type_quals:
1517 /* empty */
1518 { $$ = NULL_TREE; }
1519 | type_quals TYPE_QUAL
1520 { $$ = tree_cons (NULL_TREE, $2, $1); }
1521 ;
1522
1523 absdcl1: /* a nonempty absolute declarator */
1524 '(' absdcl1 ')'
1525 { $$ = $2; }
1526 /* `(typedef)1' is `int'. */
1527 | '*' type_quals absdcl1 %prec UNARY
1528 { $$ = make_pointer_declarator ($2, $3); }
1529 | '*' type_quals %prec UNARY
1530 { $$ = make_pointer_declarator ($2, NULL_TREE); }
1531 | absdcl1 '(' parmlist %prec '.'
1532 { $$ = build_nt (CALL_EXPR, $1, $3, NULL_TREE); }
1533 | absdcl1 '[' expr ']' %prec '.'
1534 { $$ = build_nt (ARRAY_REF, $1, $3); }
1535 | absdcl1 '[' ']' %prec '.'
1536 { $$ = build_nt (ARRAY_REF, $1, NULL_TREE); }
1537 | '(' parmlist %prec '.'
1538 { $$ = build_nt (CALL_EXPR, NULL_TREE, $2, NULL_TREE); }
1539 | '[' expr ']' %prec '.'
1540 { $$ = build_nt (ARRAY_REF, NULL_TREE, $2); }
1541 | '[' ']' %prec '.'
1542 { $$ = build_nt (ARRAY_REF, NULL_TREE, NULL_TREE); }
1543 /* ??? It appears we have to support attributes here, however
1544 using prefix_attributes is wrong. */
1545 | attributes setattrs absdcl1
1546 { $$ = $3; }
1547 ;
1548
1549 /* at least one statement, the first of which parses without error. */
1550 /* stmts is used only after decls, so an invalid first statement
1551 is actually regarded as an invalid decl and part of the decls. */
1552
1553 stmts:
1554 lineno_stmt_or_labels
1555 {
1556 if (pedantic && $1)
1557 pedwarn ("ANSI C forbids label at end of compound statement");
1558 }
1559 ;
1560
1561 lineno_stmt_or_labels:
1562 lineno_stmt_or_label
1563 | lineno_stmt_or_labels lineno_stmt_or_label
1564 { $$ = $2; }
1565 | lineno_stmt_or_labels errstmt
1566 { $$ = 0; }
1567 ;
1568
1569 xstmts:
1570 /* empty */
1571 | stmts
1572 ;
1573
1574 errstmt: error ';'
1575 ;
1576
1577 pushlevel: /* empty */
1578 { emit_line_note (input_filename, lineno);
1579 pushlevel (0);
1580 clear_last_expr ();
1581 expand_start_bindings (0);
1582 ifobjc
1583 if (objc_method_context)
1584 add_objc_decls ();
1585 end ifobjc
1586 }
1587 ;
1588
1589 /* Read zero or more forward-declarations for labels
1590 that nested functions can jump to. */
1591 maybe_label_decls:
1592 /* empty */
1593 | label_decls
1594 { if (pedantic)
1595 pedwarn ("ANSI C forbids label declarations"); }
1596 ;
1597
1598 label_decls:
1599 label_decl
1600 | label_decls label_decl
1601 ;
1602
1603 label_decl:
1604 LABEL identifiers_or_typenames ';'
1605 { tree link;
1606 for (link = $2; link; link = TREE_CHAIN (link))
1607 {
1608 tree label = shadow_label (TREE_VALUE (link));
1609 C_DECLARED_LABEL_FLAG (label) = 1;
1610 declare_nonlocal_label (label);
1611 }
1612 }
1613 ;
1614
1615 /* This is the body of a function definition.
1616 It causes syntax errors to ignore to the next openbrace. */
1617 compstmt_or_error:
1618 compstmt
1619 {}
1620 | error compstmt
1621 ;
1622
1623 compstmt_start: '{' { compstmt_count++; }
1624
1625 compstmt_nostart: '}'
1626 { $$ = convert (void_type_node, integer_zero_node); }
1627 | pushlevel maybe_label_decls decls xstmts '}'
1628 { emit_line_note (input_filename, lineno);
1629 expand_end_bindings (getdecls (), 1, 0);
1630 $$ = poplevel (1, 1, 0); }
1631 | pushlevel maybe_label_decls error '}'
1632 { emit_line_note (input_filename, lineno);
1633 expand_end_bindings (getdecls (), kept_level_p (), 0);
1634 $$ = poplevel (kept_level_p (), 0, 0); }
1635 | pushlevel maybe_label_decls stmts '}'
1636 { emit_line_note (input_filename, lineno);
1637 expand_end_bindings (getdecls (), kept_level_p (), 0);
1638 $$ = poplevel (kept_level_p (), 0, 0); }
1639 ;
1640
1641 compstmt_primary_start:
1642 '(' '{'
1643 { if (current_function_decl == 0)
1644 {
1645 error ("braced-group within expression allowed only inside a function");
1646 YYERROR;
1647 }
1648 /* We must force a BLOCK for this level
1649 so that, if it is not expanded later,
1650 there is a way to turn off the entire subtree of blocks
1651 that are contained in it. */
1652 keep_next_level ();
1653 push_iterator_stack ();
1654 push_label_level ();
1655 $$ = expand_start_stmt_expr ();
1656 compstmt_count++;
1657 }
1658
1659 compstmt: compstmt_start compstmt_nostart
1660 { $$ = $2; }
1661 ;
1662
1663 /* Value is number of statements counted as of the closeparen. */
1664 simple_if:
1665 if_prefix lineno_labeled_stmt
1666 /* Make sure c_expand_end_cond is run once
1667 for each call to c_expand_start_cond.
1668 Otherwise a crash is likely. */
1669 | if_prefix error
1670 ;
1671
1672 if_prefix:
1673 IF '(' expr ')'
1674 { emit_line_note ($<filename>-1, $<lineno>0);
1675 c_expand_start_cond (truthvalue_conversion ($3), 0,
1676 compstmt_count);
1677 $<itype>$ = stmt_count;
1678 if_stmt_file = $<filename>-1;
1679 if_stmt_line = $<lineno>0;
1680 position_after_white_space (); }
1681 ;
1682
1683 /* This is a subroutine of stmt.
1684 It is used twice, once for valid DO statements
1685 and once for catching errors in parsing the end test. */
1686 do_stmt_start:
1687 DO
1688 { stmt_count++;
1689 compstmt_count++;
1690 emit_line_note ($<filename>-1, $<lineno>0);
1691 /* See comment in `while' alternative, above. */
1692 emit_nop ();
1693 expand_start_loop_continue_elsewhere (1);
1694 position_after_white_space (); }
1695 lineno_labeled_stmt WHILE
1696 { expand_loop_continue_here (); }
1697 ;
1698
1699 save_filename:
1700 { $$ = input_filename; }
1701 ;
1702
1703 save_lineno:
1704 { $$ = lineno; }
1705 ;
1706
1707 lineno_labeled_stmt:
1708 save_filename save_lineno stmt
1709 { }
1710 /* | save_filename save_lineno error
1711 { }
1712 */
1713 | save_filename save_lineno label lineno_labeled_stmt
1714 { }
1715 ;
1716
1717 lineno_stmt_or_label:
1718 save_filename save_lineno stmt_or_label
1719 { $$ = $3; }
1720 ;
1721
1722 stmt_or_label:
1723 stmt
1724 { $$ = 0; }
1725 | label
1726 { $$ = 1; }
1727 ;
1728
1729 /* Parse a single real statement, not including any labels. */
1730 stmt:
1731 compstmt
1732 { stmt_count++; }
1733 | all_iter_stmt
1734 | expr ';'
1735 { stmt_count++;
1736 emit_line_note ($<filename>-1, $<lineno>0);
1737 /* It appears that this should not be done--that a non-lvalue array
1738 shouldn't get an error if the value isn't used.
1739 Section 3.2.2.1 says that an array lvalue gets converted to a pointer
1740 if it appears as a top-level expression,
1741 but says nothing about non-lvalue arrays. */
1742 #if 0
1743 /* Call default_conversion to get an error
1744 on referring to a register array if pedantic. */
1745 if (TREE_CODE (TREE_TYPE ($1)) == ARRAY_TYPE
1746 || TREE_CODE (TREE_TYPE ($1)) == FUNCTION_TYPE)
1747 $1 = default_conversion ($1);
1748 #endif
1749 iterator_expand ($1); }
1750 | simple_if ELSE
1751 { c_expand_start_else ();
1752 $<itype>1 = stmt_count;
1753 position_after_white_space (); }
1754 lineno_labeled_stmt
1755 { c_expand_end_cond ();
1756 if (extra_warnings && stmt_count == $<itype>1)
1757 warning ("empty body in an else-statement"); }
1758 | simple_if %prec IF
1759 { c_expand_end_cond ();
1760 /* This warning is here instead of in simple_if, because we
1761 do not want a warning if an empty if is followed by an
1762 else statement. Increment stmt_count so we don't
1763 give a second error if this is a nested `if'. */
1764 if (extra_warnings && stmt_count++ == $<itype>1)
1765 warning_with_file_and_line (if_stmt_file, if_stmt_line,
1766 "empty body in an if-statement"); }
1767 /* Make sure c_expand_end_cond is run once
1768 for each call to c_expand_start_cond.
1769 Otherwise a crash is likely. */
1770 | simple_if ELSE error
1771 { c_expand_end_cond (); }
1772 | WHILE
1773 { stmt_count++;
1774 emit_line_note ($<filename>-1, $<lineno>0);
1775 /* The emit_nop used to come before emit_line_note,
1776 but that made the nop seem like part of the preceding line.
1777 And that was confusing when the preceding line was
1778 inside of an if statement and was not really executed.
1779 I think it ought to work to put the nop after the line number.
1780 We will see. --rms, July 15, 1991. */
1781 emit_nop (); }
1782 '(' expr ')'
1783 { /* Don't start the loop till we have succeeded
1784 in parsing the end test. This is to make sure
1785 that we end every loop we start. */
1786 expand_start_loop (1);
1787 emit_line_note (input_filename, lineno);
1788 expand_exit_loop_if_false (NULL_PTR,
1789 truthvalue_conversion ($4));
1790 position_after_white_space (); }
1791 lineno_labeled_stmt
1792 { expand_end_loop (); }
1793 | do_stmt_start
1794 '(' expr ')' ';'
1795 { emit_line_note (input_filename, lineno);
1796 expand_exit_loop_if_false (NULL_PTR,
1797 truthvalue_conversion ($3));
1798 expand_end_loop (); }
1799 /* This rule is needed to make sure we end every loop we start. */
1800 | do_stmt_start error
1801 { expand_end_loop (); }
1802 | FOR
1803 '(' xexpr ';'
1804 { stmt_count++;
1805 emit_line_note ($<filename>-1, $<lineno>0);
1806 /* See comment in `while' alternative, above. */
1807 emit_nop ();
1808 if ($3) c_expand_expr_stmt ($3);
1809 /* Next step is to call expand_start_loop_continue_elsewhere,
1810 but wait till after we parse the entire for (...).
1811 Otherwise, invalid input might cause us to call that
1812 fn without calling expand_end_loop. */
1813 }
1814 xexpr ';'
1815 /* Can't emit now; wait till after expand_start_loop... */
1816 { $<lineno>7 = lineno;
1817 $<filename>$ = input_filename; }
1818 xexpr ')'
1819 {
1820 /* Start the loop. Doing this after parsing
1821 all the expressions ensures we will end the loop. */
1822 expand_start_loop_continue_elsewhere (1);
1823 /* Emit the end-test, with a line number. */
1824 emit_line_note ($<filename>8, $<lineno>7);
1825 if ($6)
1826 expand_exit_loop_if_false (NULL_PTR,
1827 truthvalue_conversion ($6));
1828 $<lineno>7 = lineno;
1829 $<filename>8 = input_filename;
1830 position_after_white_space (); }
1831 lineno_labeled_stmt
1832 { /* Emit the increment expression, with a line number. */
1833 emit_line_note ($<filename>8, $<lineno>7);
1834 expand_loop_continue_here ();
1835 if ($9)
1836 c_expand_expr_stmt ($9);
1837 expand_end_loop (); }
1838 | SWITCH '(' expr ')'
1839 { stmt_count++;
1840 emit_line_note ($<filename>-1, $<lineno>0);
1841 c_expand_start_case ($3);
1842 position_after_white_space (); }
1843 lineno_labeled_stmt
1844 { expand_end_case ($3); }
1845 | BREAK ';'
1846 { tree break_stmt = build_break_stmt ();
1847 stmt_count++;
1848 genrtl_break_stmt (); }
1849 | CONTINUE ';'
1850 { tree continue_stmt = build_continue_stmt ();
1851 stmt_count++;
1852 genrtl_continue_stmt (); }
1853 | RETURN ';'
1854 { tree return_stmt = build_return_stmt (NULL_TREE);
1855 stmt_count++;
1856 genrtl_return_stmt (RETURN_EXPR(return_stmt)); }
1857 | RETURN expr ';'
1858 { tree return_stmt = build_return_stmt ($2);
1859 stmt_count++;
1860 genrtl_return_stmt (RETURN_EXPR(return_stmt)); }
1861 | ASM_KEYWORD maybe_type_qual '(' expr ')' ';'
1862 { stmt_count++;
1863 emit_line_note ($<filename>-1, $<lineno>0);
1864 STRIP_NOPS ($4);
1865 if ((TREE_CODE ($4) == ADDR_EXPR
1866 && TREE_CODE (TREE_OPERAND ($4, 0)) == STRING_CST)
1867 || TREE_CODE ($4) == STRING_CST)
1868 expand_asm ($4);
1869 else
1870 error ("argument of `asm' is not a constant string"); }
1871 /* This is the case with just output operands. */
1872 | ASM_KEYWORD maybe_type_qual '(' expr ':' asm_operands ')' ';'
1873 { stmt_count++;
1874 emit_line_note ($<filename>-1, $<lineno>0);
1875 c_expand_asm_operands ($4, $6, NULL_TREE, NULL_TREE,
1876 $2 == ridpointers[(int)RID_VOLATILE],
1877 input_filename, lineno); }
1878 /* This is the case with input operands as well. */
1879 | ASM_KEYWORD maybe_type_qual '(' expr ':' asm_operands ':' asm_operands ')' ';'
1880 { stmt_count++;
1881 emit_line_note ($<filename>-1, $<lineno>0);
1882 c_expand_asm_operands ($4, $6, $8, NULL_TREE,
1883 $2 == ridpointers[(int)RID_VOLATILE],
1884 input_filename, lineno); }
1885 /* This is the case with clobbered registers as well. */
1886 | ASM_KEYWORD maybe_type_qual '(' expr ':' asm_operands ':'
1887 asm_operands ':' asm_clobbers ')' ';'
1888 { stmt_count++;
1889 emit_line_note ($<filename>-1, $<lineno>0);
1890 c_expand_asm_operands ($4, $6, $8, $10,
1891 $2 == ridpointers[(int)RID_VOLATILE],
1892 input_filename, lineno); }
1893 | GOTO identifier ';'
1894 { tree decl;
1895 stmt_count++;
1896 emit_line_note ($<filename>-1, $<lineno>0);
1897 decl = lookup_label ($2);
1898 if (decl != 0)
1899 {
1900 TREE_USED (decl) = 1;
1901 expand_goto (decl);
1902 }
1903 }
1904 | GOTO '*' expr ';'
1905 { if (pedantic)
1906 pedwarn ("ANSI C forbids `goto *expr;'");
1907 stmt_count++;
1908 emit_line_note ($<filename>-1, $<lineno>0);
1909 expand_computed_goto (convert (ptr_type_node, $3)); }
1910 | ';'
1911 ;
1912
1913 all_iter_stmt:
1914 all_iter_stmt_simple
1915 /* | all_iter_stmt_with_decl */
1916 ;
1917
1918 all_iter_stmt_simple:
1919 FOR '(' primary ')'
1920 {
1921 /* The value returned by this action is */
1922 /* 1 if everything is OK */
1923 /* 0 in case of error or already bound iterator */
1924
1925 $<itype>$ = 0;
1926 if (TREE_CODE ($3) != VAR_DECL)
1927 error ("invalid `for (ITERATOR)' syntax");
1928 else if (! ITERATOR_P ($3))
1929 error ("`%s' is not an iterator",
1930 IDENTIFIER_POINTER (DECL_NAME ($3)));
1931 else if (ITERATOR_BOUND_P ($3))
1932 error ("`for (%s)' inside expansion of same iterator",
1933 IDENTIFIER_POINTER (DECL_NAME ($3)));
1934 else
1935 {
1936 $<itype>$ = 1;
1937 iterator_for_loop_start ($3);
1938 }
1939 }
1940 lineno_labeled_stmt
1941 {
1942 if ($<itype>5)
1943 iterator_for_loop_end ($3);
1944 }
1945
1946 /* This really should allow any kind of declaration,
1947 for generality. Fix it before turning it back on.
1948
1949 all_iter_stmt_with_decl:
1950 FOR '(' ITERATOR pushlevel setspecs iterator_spec ')'
1951 {
1952 */ /* The value returned by this action is */
1953 /* 1 if everything is OK */
1954 /* 0 in case of error or already bound iterator */
1955 /*
1956 iterator_for_loop_start ($6);
1957 }
1958 lineno_labeled_stmt
1959 {
1960 iterator_for_loop_end ($6);
1961 emit_line_note (input_filename, lineno);
1962 expand_end_bindings (getdecls (), 1, 0);
1963 $<ttype>$ = poplevel (1, 1, 0);
1964 }
1965 */
1966
1967 /* Any kind of label, including jump labels and case labels.
1968 ANSI C accepts labels only before statements, but we allow them
1969 also at the end of a compound statement. */
1970
1971 label: CASE expr_no_commas ':'
1972 { tree case_label_tree = build_case_label ($2, NULL_TREE);
1973 stmt_count++;
1974 genrtl_case_label(CASE_LOW(case_label_tree), CASE_HIGH(case_label_tree));
1975 position_after_white_space ();
1976 }
1977 | CASE expr_no_commas ELLIPSIS expr_no_commas ':'
1978 { tree case_label_tree = build_case_label ($2, $4);
1979 stmt_count++;
1980 genrtl_case_label(CASE_LOW(case_label_tree), CASE_HIGH(case_label_tree));
1981 position_after_white_space ();
1982 }
1983 | DEFAULT ':'
1984 { tree case_label_tree = build_case_label (NULL_TREE, NULL_TREE);
1985 stmt_count++;
1986 genrtl_case_label(CASE_LOW(case_label_tree), CASE_HIGH(case_label_tree));
1987 position_after_white_space ();
1988 }
1989 | identifier ':' maybe_attribute
1990 { tree label = define_label (input_filename, lineno, $1);
1991 stmt_count++;
1992 emit_nop ();
1993 if (label)
1994 {
1995 expand_label (label);
1996 decl_attributes (label, $3, NULL_TREE);
1997 }
1998 position_after_white_space (); }
1999 ;
2000
2001 /* Either a type-qualifier or nothing. First thing in an `asm' statement. */
2002
2003 maybe_type_qual:
2004 /* empty */
2005 { emit_line_note (input_filename, lineno);
2006 $$ = NULL_TREE; }
2007 | TYPE_QUAL
2008 { emit_line_note (input_filename, lineno); }
2009 ;
2010
2011 xexpr:
2012 /* empty */
2013 { $$ = NULL_TREE; }
2014 | expr
2015 ;
2016
2017 /* These are the operands other than the first string and colon
2018 in asm ("addextend %2,%1": "=dm" (x), "0" (y), "g" (*x)) */
2019 asm_operands: /* empty */
2020 { $$ = NULL_TREE; }
2021 | nonnull_asm_operands
2022 ;
2023
2024 nonnull_asm_operands:
2025 asm_operand
2026 | nonnull_asm_operands ',' asm_operand
2027 { $$ = chainon ($1, $3); }
2028 ;
2029
2030 asm_operand:
2031 STRING '(' expr ')'
2032 { $$ = build_tree_list ($1, $3); }
2033 ;
2034
2035 asm_clobbers:
2036 string
2037 { $$ = tree_cons (NULL_TREE, combine_strings ($1), NULL_TREE); }
2038 | asm_clobbers ',' string
2039 { $$ = tree_cons (NULL_TREE, combine_strings ($3), $1); }
2040 ;
2041 \f
2042 /* This is what appears inside the parens in a function declarator.
2043 Its value is a list of ..._TYPE nodes. */
2044 parmlist:
2045 { pushlevel (0);
2046 clear_parm_order ();
2047 declare_parm_level (0); }
2048 parmlist_1
2049 { $$ = $2;
2050 parmlist_tags_warning ();
2051 poplevel (0, 0, 0); }
2052 ;
2053
2054 parmlist_1:
2055 parmlist_2 ')'
2056 | parms ';'
2057 { tree parm;
2058 if (pedantic)
2059 pedwarn ("ANSI C forbids forward parameter declarations");
2060 /* Mark the forward decls as such. */
2061 for (parm = getdecls (); parm; parm = TREE_CHAIN (parm))
2062 TREE_ASM_WRITTEN (parm) = 1;
2063 clear_parm_order (); }
2064 parmlist_1
2065 { $$ = $4; }
2066 | error ')'
2067 { $$ = tree_cons (NULL_TREE, NULL_TREE, NULL_TREE); }
2068 ;
2069
2070 /* This is what appears inside the parens in a function declarator.
2071 Is value is represented in the format that grokdeclarator expects. */
2072 parmlist_2: /* empty */
2073 { $$ = get_parm_info (0); }
2074 | ELLIPSIS
2075 { $$ = get_parm_info (0);
2076 /* Gcc used to allow this as an extension. However, it does
2077 not work for all targets, and thus has been disabled.
2078 Also, since func (...) and func () are indistinguishable,
2079 it caused problems with the code in expand_builtin which
2080 tries to verify that BUILT_IN_NEXT_ARG is being used
2081 correctly. */
2082 error ("ANSI C requires a named argument before `...'");
2083 }
2084 | parms
2085 { $$ = get_parm_info (1); }
2086 | parms ',' ELLIPSIS
2087 { $$ = get_parm_info (0); }
2088 ;
2089
2090 parms:
2091 parm
2092 { push_parm_decl ($1); }
2093 | parms ',' parm
2094 { push_parm_decl ($3); }
2095 ;
2096
2097 /* A single parameter declaration or parameter type name,
2098 as found in a parmlist. */
2099 parm:
2100 typed_declspecs setspecs parm_declarator maybe_attribute
2101 { $$ = build_tree_list (build_tree_list (current_declspecs,
2102 $3),
2103 build_tree_list (prefix_attributes,
2104 $4));
2105 current_declspecs = TREE_VALUE (declspec_stack);
2106 prefix_attributes = TREE_PURPOSE (declspec_stack);
2107 declspec_stack = TREE_CHAIN (declspec_stack); }
2108 | typed_declspecs setspecs notype_declarator maybe_attribute
2109 { $$ = build_tree_list (build_tree_list (current_declspecs,
2110 $3),
2111 build_tree_list (prefix_attributes,
2112 $4));
2113 current_declspecs = TREE_VALUE (declspec_stack);
2114 prefix_attributes = TREE_PURPOSE (declspec_stack);
2115 declspec_stack = TREE_CHAIN (declspec_stack); }
2116 | typed_declspecs setspecs absdcl maybe_attribute
2117 { $$ = build_tree_list (build_tree_list (current_declspecs,
2118 $3),
2119 build_tree_list (prefix_attributes,
2120 $4));
2121 current_declspecs = TREE_VALUE (declspec_stack);
2122 prefix_attributes = TREE_PURPOSE (declspec_stack);
2123 declspec_stack = TREE_CHAIN (declspec_stack); }
2124 | declmods setspecs notype_declarator maybe_attribute
2125 { $$ = build_tree_list (build_tree_list (current_declspecs,
2126 $3),
2127 build_tree_list (prefix_attributes,
2128 $4));
2129 current_declspecs = TREE_VALUE (declspec_stack);
2130 prefix_attributes = TREE_PURPOSE (declspec_stack);
2131 declspec_stack = TREE_CHAIN (declspec_stack); }
2132
2133 | declmods setspecs absdcl maybe_attribute
2134 { $$ = build_tree_list (build_tree_list (current_declspecs,
2135 $3),
2136 build_tree_list (prefix_attributes,
2137 $4));
2138 current_declspecs = TREE_VALUE (declspec_stack);
2139 prefix_attributes = TREE_PURPOSE (declspec_stack);
2140 declspec_stack = TREE_CHAIN (declspec_stack); }
2141 ;
2142
2143 /* This is used in a function definition
2144 where either a parmlist or an identifier list is ok.
2145 Its value is a list of ..._TYPE nodes or a list of identifiers. */
2146 parmlist_or_identifiers:
2147 { pushlevel (0);
2148 clear_parm_order ();
2149 declare_parm_level (1); }
2150 parmlist_or_identifiers_1
2151 { $$ = $2;
2152 parmlist_tags_warning ();
2153 poplevel (0, 0, 0); }
2154 ;
2155
2156 parmlist_or_identifiers_1:
2157 parmlist_1
2158 | identifiers ')'
2159 { tree t;
2160 for (t = $1; t; t = TREE_CHAIN (t))
2161 if (TREE_VALUE (t) == NULL_TREE)
2162 error ("`...' in old-style identifier list");
2163 $$ = tree_cons (NULL_TREE, NULL_TREE, $1); }
2164 ;
2165
2166 /* A nonempty list of identifiers. */
2167 identifiers:
2168 IDENTIFIER
2169 { $$ = build_tree_list (NULL_TREE, $1); }
2170 | identifiers ',' IDENTIFIER
2171 { $$ = chainon ($1, build_tree_list (NULL_TREE, $3)); }
2172 ;
2173
2174 /* A nonempty list of identifiers, including typenames. */
2175 identifiers_or_typenames:
2176 identifier
2177 { $$ = build_tree_list (NULL_TREE, $1); }
2178 | identifiers_or_typenames ',' identifier
2179 { $$ = chainon ($1, build_tree_list (NULL_TREE, $3)); }
2180 ;
2181
2182 extension:
2183 EXTENSION
2184 { $$ = SAVE_WARN_FLAGS();
2185 pedantic = 0;
2186 warn_pointer_arith = 0; }
2187 ;
2188 \f
2189 ifobjc
2190 /* Objective-C productions. */
2191
2192 objcdef:
2193 classdef
2194 | classdecl
2195 | aliasdecl
2196 | protocoldef
2197 | methoddef
2198 | END
2199 {
2200 if (objc_implementation_context)
2201 {
2202 finish_class (objc_implementation_context);
2203 objc_ivar_chain = NULL_TREE;
2204 objc_implementation_context = NULL_TREE;
2205 }
2206 else
2207 warning ("`@end' must appear in an implementation context");
2208 }
2209 ;
2210
2211 /* A nonempty list of identifiers. */
2212 identifier_list:
2213 identifier
2214 { $$ = build_tree_list (NULL_TREE, $1); }
2215 | identifier_list ',' identifier
2216 { $$ = chainon ($1, build_tree_list (NULL_TREE, $3)); }
2217 ;
2218
2219 classdecl:
2220 CLASS identifier_list ';'
2221 {
2222 objc_declare_class ($2);
2223 }
2224
2225 aliasdecl:
2226 ALIAS identifier identifier ';'
2227 {
2228 objc_declare_alias ($2, $3);
2229 }
2230
2231 classdef:
2232 INTERFACE identifier protocolrefs '{'
2233 {
2234 objc_interface_context = objc_ivar_context
2235 = start_class (CLASS_INTERFACE_TYPE, $2, NULL_TREE, $3);
2236 objc_public_flag = 0;
2237 }
2238 ivar_decl_list '}'
2239 {
2240 continue_class (objc_interface_context);
2241 }
2242 methodprotolist
2243 END
2244 {
2245 finish_class (objc_interface_context);
2246 objc_interface_context = NULL_TREE;
2247 }
2248
2249 | INTERFACE identifier protocolrefs
2250 {
2251 objc_interface_context
2252 = start_class (CLASS_INTERFACE_TYPE, $2, NULL_TREE, $3);
2253 continue_class (objc_interface_context);
2254 }
2255 methodprotolist
2256 END
2257 {
2258 finish_class (objc_interface_context);
2259 objc_interface_context = NULL_TREE;
2260 }
2261
2262 | INTERFACE identifier ':' identifier protocolrefs '{'
2263 {
2264 objc_interface_context = objc_ivar_context
2265 = start_class (CLASS_INTERFACE_TYPE, $2, $4, $5);
2266 objc_public_flag = 0;
2267 }
2268 ivar_decl_list '}'
2269 {
2270 continue_class (objc_interface_context);
2271 }
2272 methodprotolist
2273 END
2274 {
2275 finish_class (objc_interface_context);
2276 objc_interface_context = NULL_TREE;
2277 }
2278
2279 | INTERFACE identifier ':' identifier protocolrefs
2280 {
2281 objc_interface_context
2282 = start_class (CLASS_INTERFACE_TYPE, $2, $4, $5);
2283 continue_class (objc_interface_context);
2284 }
2285 methodprotolist
2286 END
2287 {
2288 finish_class (objc_interface_context);
2289 objc_interface_context = NULL_TREE;
2290 }
2291
2292 | IMPLEMENTATION identifier '{'
2293 {
2294 objc_implementation_context = objc_ivar_context
2295 = start_class (CLASS_IMPLEMENTATION_TYPE, $2, NULL_TREE, NULL_TREE);
2296 objc_public_flag = 0;
2297 }
2298 ivar_decl_list '}'
2299 {
2300 objc_ivar_chain
2301 = continue_class (objc_implementation_context);
2302 }
2303
2304 | IMPLEMENTATION identifier
2305 {
2306 objc_implementation_context
2307 = start_class (CLASS_IMPLEMENTATION_TYPE, $2, NULL_TREE, NULL_TREE);
2308 objc_ivar_chain
2309 = continue_class (objc_implementation_context);
2310 }
2311
2312 | IMPLEMENTATION identifier ':' identifier '{'
2313 {
2314 objc_implementation_context = objc_ivar_context
2315 = start_class (CLASS_IMPLEMENTATION_TYPE, $2, $4, NULL_TREE);
2316 objc_public_flag = 0;
2317 }
2318 ivar_decl_list '}'
2319 {
2320 objc_ivar_chain
2321 = continue_class (objc_implementation_context);
2322 }
2323
2324 | IMPLEMENTATION identifier ':' identifier
2325 {
2326 objc_implementation_context
2327 = start_class (CLASS_IMPLEMENTATION_TYPE, $2, $4, NULL_TREE);
2328 objc_ivar_chain
2329 = continue_class (objc_implementation_context);
2330 }
2331
2332 | INTERFACE identifier '(' identifier ')' protocolrefs
2333 {
2334 objc_interface_context
2335 = start_class (CATEGORY_INTERFACE_TYPE, $2, $4, $6);
2336 continue_class (objc_interface_context);
2337 }
2338 methodprotolist
2339 END
2340 {
2341 finish_class (objc_interface_context);
2342 objc_interface_context = NULL_TREE;
2343 }
2344
2345 | IMPLEMENTATION identifier '(' identifier ')'
2346 {
2347 objc_implementation_context
2348 = start_class (CATEGORY_IMPLEMENTATION_TYPE, $2, $4, NULL_TREE);
2349 objc_ivar_chain
2350 = continue_class (objc_implementation_context);
2351 }
2352 ;
2353
2354 protocoldef:
2355 PROTOCOL identifier protocolrefs
2356 {
2357 remember_protocol_qualifiers ();
2358 objc_interface_context
2359 = start_protocol(PROTOCOL_INTERFACE_TYPE, $2, $3);
2360 }
2361 methodprotolist END
2362 {
2363 forget_protocol_qualifiers();
2364 finish_protocol(objc_interface_context);
2365 objc_interface_context = NULL_TREE;
2366 }
2367 ;
2368
2369 protocolrefs:
2370 /* empty */
2371 {
2372 $$ = NULL_TREE;
2373 }
2374 | non_empty_protocolrefs
2375 ;
2376
2377 non_empty_protocolrefs:
2378 ARITHCOMPARE identifier_list ARITHCOMPARE
2379 {
2380 if ($1 == LT_EXPR && $3 == GT_EXPR)
2381 $$ = $2;
2382 else
2383 YYERROR1;
2384 }
2385 ;
2386
2387 ivar_decl_list:
2388 ivar_decl_list visibility_spec ivar_decls
2389 | ivar_decls
2390 ;
2391
2392 visibility_spec:
2393 PRIVATE { objc_public_flag = 2; }
2394 | PROTECTED { objc_public_flag = 0; }
2395 | PUBLIC { objc_public_flag = 1; }
2396 ;
2397
2398 ivar_decls:
2399 /* empty */
2400 {
2401 $$ = NULL_TREE;
2402 }
2403 | ivar_decls ivar_decl ';'
2404 | ivar_decls ';'
2405 {
2406 if (pedantic)
2407 pedwarn ("extra semicolon in struct or union specified");
2408 }
2409 ;
2410
2411
2412 /* There is a shift-reduce conflict here, because `components' may
2413 start with a `typename'. It happens that shifting (the default resolution)
2414 does the right thing, because it treats the `typename' as part of
2415 a `typed_typespecs'.
2416
2417 It is possible that this same technique would allow the distinction
2418 between `notype_initdecls' and `initdecls' to be eliminated.
2419 But I am being cautious and not trying it. */
2420
2421 ivar_decl:
2422 typed_typespecs setspecs ivars
2423 { $$ = $3;
2424 current_declspecs = TREE_VALUE (declspec_stack);
2425 prefix_attributes = TREE_PURPOSE (declspec_stack);
2426 declspec_stack = TREE_CHAIN (declspec_stack); }
2427 | nonempty_type_quals setspecs ivars
2428 { $$ = $3;
2429 current_declspecs = TREE_VALUE (declspec_stack);
2430 prefix_attributes = TREE_PURPOSE (declspec_stack);
2431 declspec_stack = TREE_CHAIN (declspec_stack); }
2432 | error
2433 { $$ = NULL_TREE; }
2434 ;
2435
2436 ivars:
2437 /* empty */
2438 { $$ = NULL_TREE; }
2439 | ivar_declarator
2440 | ivars ',' ivar_declarator
2441 ;
2442
2443 ivar_declarator:
2444 declarator
2445 {
2446 $$ = add_instance_variable (objc_ivar_context,
2447 objc_public_flag,
2448 $1, current_declspecs,
2449 NULL_TREE);
2450 }
2451 | declarator ':' expr_no_commas
2452 {
2453 $$ = add_instance_variable (objc_ivar_context,
2454 objc_public_flag,
2455 $1, current_declspecs, $3);
2456 }
2457 | ':' expr_no_commas
2458 {
2459 $$ = add_instance_variable (objc_ivar_context,
2460 objc_public_flag,
2461 NULL_TREE,
2462 current_declspecs, $2);
2463 }
2464 ;
2465
2466 methoddef:
2467 '+'
2468 {
2469 remember_protocol_qualifiers ();
2470 if (objc_implementation_context)
2471 objc_inherit_code = CLASS_METHOD_DECL;
2472 else
2473 fatal ("method definition not in class context");
2474 }
2475 methoddecl
2476 {
2477 forget_protocol_qualifiers ();
2478 add_class_method (objc_implementation_context, $3);
2479 start_method_def ($3);
2480 objc_method_context = $3;
2481 }
2482 optarglist
2483 {
2484 continue_method_def ();
2485 }
2486 compstmt_or_error
2487 {
2488 finish_method_def ();
2489 objc_method_context = NULL_TREE;
2490 }
2491
2492 | '-'
2493 {
2494 remember_protocol_qualifiers ();
2495 if (objc_implementation_context)
2496 objc_inherit_code = INSTANCE_METHOD_DECL;
2497 else
2498 fatal ("method definition not in class context");
2499 }
2500 methoddecl
2501 {
2502 forget_protocol_qualifiers ();
2503 add_instance_method (objc_implementation_context, $3);
2504 start_method_def ($3);
2505 objc_method_context = $3;
2506 }
2507 optarglist
2508 {
2509 continue_method_def ();
2510 }
2511 compstmt_or_error
2512 {
2513 finish_method_def ();
2514 objc_method_context = NULL_TREE;
2515 }
2516 ;
2517
2518 /* the reason for the strange actions in this rule
2519 is so that notype_initdecls when reached via datadef
2520 can find a valid list of type and sc specs in $0. */
2521
2522 methodprotolist:
2523 /* empty */
2524 | {$<ttype>$ = NULL_TREE; } methodprotolist2
2525 ;
2526
2527 methodprotolist2: /* eliminates a shift/reduce conflict */
2528 methodproto
2529 | datadef
2530 | methodprotolist2 methodproto
2531 | methodprotolist2 {$<ttype>$ = NULL_TREE; } datadef
2532 ;
2533
2534 semi_or_error:
2535 ';'
2536 | error
2537 ;
2538
2539 methodproto:
2540 '+'
2541 {
2542 /* Remember protocol qualifiers in prototypes. */
2543 remember_protocol_qualifiers ();
2544 objc_inherit_code = CLASS_METHOD_DECL;
2545 }
2546 methoddecl
2547 {
2548 /* Forget protocol qualifiers here. */
2549 forget_protocol_qualifiers ();
2550 add_class_method (objc_interface_context, $3);
2551 }
2552 semi_or_error
2553
2554 | '-'
2555 {
2556 /* Remember protocol qualifiers in prototypes. */
2557 remember_protocol_qualifiers ();
2558 objc_inherit_code = INSTANCE_METHOD_DECL;
2559 }
2560 methoddecl
2561 {
2562 /* Forget protocol qualifiers here. */
2563 forget_protocol_qualifiers ();
2564 add_instance_method (objc_interface_context, $3);
2565 }
2566 semi_or_error
2567 ;
2568
2569 methoddecl:
2570 '(' typename ')' unaryselector
2571 {
2572 $$ = build_method_decl (objc_inherit_code, $2, $4, NULL_TREE);
2573 }
2574
2575 | unaryselector
2576 {
2577 $$ = build_method_decl (objc_inherit_code, NULL_TREE, $1, NULL_TREE);
2578 }
2579
2580 | '(' typename ')' keywordselector optparmlist
2581 {
2582 $$ = build_method_decl (objc_inherit_code, $2, $4, $5);
2583 }
2584
2585 | keywordselector optparmlist
2586 {
2587 $$ = build_method_decl (objc_inherit_code, NULL_TREE, $1, $2);
2588 }
2589 ;
2590
2591 /* "optarglist" assumes that start_method_def has already been called...
2592 if it is not, the "xdecls" will not be placed in the proper scope */
2593
2594 optarglist:
2595 /* empty */
2596 | ';' myxdecls
2597 ;
2598
2599 /* to get around the following situation: "int foo (int a) int b; {}" that
2600 is synthesized when parsing "- a:a b:b; id c; id d; { ... }" */
2601
2602 myxdecls:
2603 /* empty */
2604 | mydecls
2605 ;
2606
2607 mydecls:
2608 mydecl
2609 | errstmt
2610 | mydecls mydecl
2611 | mydecl errstmt
2612 ;
2613
2614 mydecl:
2615 typed_declspecs setspecs myparms ';'
2616 { current_declspecs = TREE_VALUE (declspec_stack);
2617 prefix_attributes = TREE_PURPOSE (declspec_stack);
2618 declspec_stack = TREE_CHAIN (declspec_stack); }
2619 | typed_declspecs ';'
2620 { shadow_tag ($1); }
2621 | declmods ';'
2622 { pedwarn ("empty declaration"); }
2623 ;
2624
2625 myparms:
2626 myparm
2627 { push_parm_decl ($1); }
2628 | myparms ',' myparm
2629 { push_parm_decl ($3); }
2630 ;
2631
2632 /* A single parameter declaration or parameter type name,
2633 as found in a parmlist. DOES NOT ALLOW AN INITIALIZER OR ASMSPEC */
2634
2635 myparm:
2636 parm_declarator maybe_attribute
2637 { $$ = build_tree_list (build_tree_list (current_declspecs,
2638 $1),
2639 build_tree_list (prefix_attributes,
2640 $2)); }
2641 | notype_declarator maybe_attribute
2642 { $$ = build_tree_list (build_tree_list (current_declspecs,
2643 $1),
2644 build_tree_list (prefix_attributes,
2645 $2)); }
2646 | absdcl maybe_attribute
2647 { $$ = build_tree_list (build_tree_list (current_declspecs,
2648 $1),
2649 build_tree_list (prefix_attributes,
2650 $2)); }
2651 ;
2652
2653 optparmlist:
2654 /* empty */
2655 {
2656 $$ = NULL_TREE;
2657 }
2658 | ',' ELLIPSIS
2659 {
2660 /* oh what a kludge! */
2661 $$ = objc_ellipsis_node;
2662 }
2663 | ','
2664 {
2665 pushlevel (0);
2666 }
2667 parmlist_2
2668 {
2669 /* returns a tree list node generated by get_parm_info */
2670 $$ = $3;
2671 poplevel (0, 0, 0);
2672 }
2673 ;
2674
2675 unaryselector:
2676 selector
2677 ;
2678
2679 keywordselector:
2680 keyworddecl
2681
2682 | keywordselector keyworddecl
2683 {
2684 $$ = chainon ($1, $2);
2685 }
2686 ;
2687
2688 selector:
2689 IDENTIFIER
2690 | TYPENAME
2691 | OBJECTNAME
2692 | reservedwords
2693 ;
2694
2695 reservedwords:
2696 ENUM { $$ = get_identifier (token_buffer); }
2697 | STRUCT { $$ = get_identifier (token_buffer); }
2698 | UNION { $$ = get_identifier (token_buffer); }
2699 | IF { $$ = get_identifier (token_buffer); }
2700 | ELSE { $$ = get_identifier (token_buffer); }
2701 | WHILE { $$ = get_identifier (token_buffer); }
2702 | DO { $$ = get_identifier (token_buffer); }
2703 | FOR { $$ = get_identifier (token_buffer); }
2704 | SWITCH { $$ = get_identifier (token_buffer); }
2705 | CASE { $$ = get_identifier (token_buffer); }
2706 | DEFAULT { $$ = get_identifier (token_buffer); }
2707 | BREAK { $$ = get_identifier (token_buffer); }
2708 | CONTINUE { $$ = get_identifier (token_buffer); }
2709 | RETURN { $$ = get_identifier (token_buffer); }
2710 | GOTO { $$ = get_identifier (token_buffer); }
2711 | ASM_KEYWORD { $$ = get_identifier (token_buffer); }
2712 | SIZEOF { $$ = get_identifier (token_buffer); }
2713 | TYPEOF { $$ = get_identifier (token_buffer); }
2714 | ALIGNOF { $$ = get_identifier (token_buffer); }
2715 | TYPESPEC | TYPE_QUAL
2716 ;
2717
2718 keyworddecl:
2719 selector ':' '(' typename ')' identifier
2720 {
2721 $$ = build_keyword_decl ($1, $4, $6);
2722 }
2723
2724 | selector ':' identifier
2725 {
2726 $$ = build_keyword_decl ($1, NULL_TREE, $3);
2727 }
2728
2729 | ':' '(' typename ')' identifier
2730 {
2731 $$ = build_keyword_decl (NULL_TREE, $3, $5);
2732 }
2733
2734 | ':' identifier
2735 {
2736 $$ = build_keyword_decl (NULL_TREE, NULL_TREE, $2);
2737 }
2738 ;
2739
2740 messageargs:
2741 selector
2742 | keywordarglist
2743 ;
2744
2745 keywordarglist:
2746 keywordarg
2747 | keywordarglist keywordarg
2748 {
2749 $$ = chainon ($1, $2);
2750 }
2751 ;
2752
2753
2754 keywordexpr:
2755 nonnull_exprlist
2756 {
2757 if (TREE_CHAIN ($1) == NULL_TREE)
2758 /* just return the expr., remove a level of indirection */
2759 $$ = TREE_VALUE ($1);
2760 else
2761 /* we have a comma expr., we will collapse later */
2762 $$ = $1;
2763 }
2764 ;
2765
2766 keywordarg:
2767 selector ':' keywordexpr
2768 {
2769 $$ = build_tree_list ($1, $3);
2770 }
2771 | ':' keywordexpr
2772 {
2773 $$ = build_tree_list (NULL_TREE, $2);
2774 }
2775 ;
2776
2777 receiver:
2778 expr
2779 | CLASSNAME
2780 {
2781 $$ = get_class_reference ($1);
2782 }
2783 ;
2784
2785 objcmessageexpr:
2786 '['
2787 { objc_receiver_context = 1; }
2788 receiver
2789 { objc_receiver_context = 0; }
2790 messageargs ']'
2791 {
2792 $$ = build_tree_list ($3, $5);
2793 }
2794 ;
2795
2796 selectorarg:
2797 selector
2798 | keywordnamelist
2799 ;
2800
2801 keywordnamelist:
2802 keywordname
2803 | keywordnamelist keywordname
2804 {
2805 $$ = chainon ($1, $2);
2806 }
2807 ;
2808
2809 keywordname:
2810 selector ':'
2811 {
2812 $$ = build_tree_list ($1, NULL_TREE);
2813 }
2814 | ':'
2815 {
2816 $$ = build_tree_list (NULL_TREE, NULL_TREE);
2817 }
2818 ;
2819
2820 objcselectorexpr:
2821 SELECTOR '(' selectorarg ')'
2822 {
2823 $$ = $3;
2824 }
2825 ;
2826
2827 objcprotocolexpr:
2828 PROTOCOL '(' identifier ')'
2829 {
2830 $$ = $3;
2831 }
2832 ;
2833
2834 /* extension to support C-structures in the archiver */
2835
2836 objcencodeexpr:
2837 ENCODE '(' typename ')'
2838 {
2839 $$ = groktypename ($3);
2840 }
2841 ;
2842
2843 end ifobjc
2844 %%