c-typeck.c (build_asm_stmt): New, broken out from ...
[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 "cpplib.h"
45 #include "intl.h"
46 #include "timevar.h"
47 #include "c-lex.h"
48 #include "c-tree.h"
49 #include "c-pragma.h"
50 #include "flags.h"
51 #include "output.h"
52 #include "toplev.h"
53 #include "ggc.h"
54
55 #ifdef MULTIBYTE_CHARS
56 #include <locale.h>
57 #endif
58
59 ifobjc
60 #include "objc-act.h"
61 end ifobjc
62
63 /* Since parsers are distinct for each language, put the language string
64 definition here. */
65 ifobjc
66 const char * const language_string = "GNU Objective-C";
67 end ifobjc
68 ifc
69 const char * const language_string = "GNU C";
70 end ifc
71
72 /* Like YYERROR but do call yyerror. */
73 #define YYERROR1 { yyerror ("syntax error"); YYERROR; }
74
75 /* Cause the "yydebug" variable to be defined. */
76 #define YYDEBUG 1
77
78 /* Rename the "yyparse" function so that we can override it elsewhere. */
79 #define yyparse yyparse_1
80 %}
81
82 %start program
83
84 %union {long itype; tree ttype; enum tree_code code;
85 const char *filename; int lineno; }
86
87 /* All identifiers that are not reserved words
88 and are not declared typedefs in the current block */
89 %token IDENTIFIER
90
91 /* All identifiers that are declared typedefs in the current block.
92 In some contexts, they are treated just like IDENTIFIER,
93 but they can also serve as typespecs in declarations. */
94 %token TYPENAME
95
96 /* Reserved words that specify storage class.
97 yylval contains an IDENTIFIER_NODE which indicates which one. */
98 %token SCSPEC
99
100 /* Reserved words that specify type.
101 yylval contains an IDENTIFIER_NODE which indicates which one. */
102 %token TYPESPEC
103
104 /* Reserved words that qualify type: "const", "volatile", or "restrict".
105 yylval contains an IDENTIFIER_NODE which indicates which one. */
106 %token TYPE_QUAL
107
108 /* Character or numeric constants.
109 yylval is the node for the constant. */
110 %token CONSTANT
111
112 /* String constants in raw form.
113 yylval is a STRING_CST node. */
114 %token STRING
115
116 /* "...", used for functions with variable arglists. */
117 %token ELLIPSIS
118
119 /* the reserved words */
120 /* SCO include files test "ASM", so use something else. */
121 %token SIZEOF ENUM STRUCT UNION IF ELSE WHILE DO FOR SWITCH CASE DEFAULT
122 %token BREAK CONTINUE RETURN GOTO ASM_KEYWORD TYPEOF ALIGNOF
123 %token ATTRIBUTE EXTENSION LABEL
124 %token REALPART IMAGPART VA_ARG
125 %token PTR_VALUE PTR_BASE PTR_EXTENT
126
127 /* Add precedence rules to solve dangling else s/r conflict */
128 %nonassoc IF
129 %nonassoc ELSE
130
131 /* Define the operator tokens and their precedences.
132 The value is an integer because, if used, it is the tree code
133 to use in the expression made from the operator. */
134
135 %right <code> ASSIGN '='
136 %right <code> '?' ':'
137 %left <code> OROR
138 %left <code> ANDAND
139 %left <code> '|'
140 %left <code> '^'
141 %left <code> '&'
142 %left <code> EQCOMPARE
143 %left <code> ARITHCOMPARE
144 %left <code> LSHIFT RSHIFT
145 %left <code> '+' '-'
146 %left <code> '*' '/' '%'
147 %right <code> UNARY PLUSPLUS MINUSMINUS
148 %left HYPERUNARY
149 %left <code> POINTSAT '.' '(' '['
150
151 /* The Objective-C keywords. These are included in C and in
152 Objective C, so that the token codes are the same in both. */
153 %token INTERFACE IMPLEMENTATION END SELECTOR DEFS ENCODE
154 %token CLASSNAME PUBLIC PRIVATE PROTECTED PROTOCOL OBJECTNAME CLASS ALIAS
155
156 /* Objective-C string constants in raw form.
157 yylval is an STRING_CST node. */
158 %token OBJC_STRING
159
160
161 %type <code> unop
162 %type <ttype> ENUM STRUCT UNION IF ELSE WHILE DO FOR SWITCH CASE DEFAULT
163 %type <ttype> BREAK CONTINUE RETURN GOTO ASM_KEYWORD SIZEOF TYPEOF ALIGNOF
164
165 %type <ttype> identifier IDENTIFIER TYPENAME CONSTANT expr nonnull_exprlist exprlist
166 %type <ttype> expr_no_commas cast_expr unary_expr primary string STRING
167 %type <ttype> typed_declspecs reserved_declspecs
168 %type <ttype> typed_typespecs reserved_typespecquals
169 %type <ttype> declmods typespec typespecqual_reserved
170 %type <ttype> typed_declspecs_no_prefix_attr reserved_declspecs_no_prefix_attr
171 %type <ttype> declmods_no_prefix_attr
172 %type <ttype> SCSPEC TYPESPEC TYPE_QUAL nonempty_type_quals maybe_type_qual
173 %type <ttype> initdecls notype_initdecls initdcl notype_initdcl
174 %type <ttype> init maybeasm
175 %type <ttype> asm_operands nonnull_asm_operands asm_operand asm_clobbers
176 %type <ttype> maybe_attribute attributes attribute attribute_list attrib
177 %type <ttype> any_word extension
178
179 %type <ttype> compstmt compstmt_start compstmt_nostart compstmt_primary_start
180 %type <ttype> do_stmt_start poplevel stmt label
181
182 %type <ttype> c99_block_start c99_block_end
183 %type <ttype> declarator
184 %type <ttype> notype_declarator after_type_declarator
185 %type <ttype> parm_declarator
186
187 %type <ttype> structsp component_decl_list component_decl_list2
188 %type <ttype> component_decl components component_declarator
189 %type <ttype> enumlist enumerator
190 %type <ttype> struct_head union_head enum_head
191 %type <ttype> typename absdcl absdcl1 type_quals
192 %type <ttype> xexpr parms parm identifiers
193
194 %type <ttype> parmlist parmlist_1 parmlist_2
195 %type <ttype> parmlist_or_identifiers parmlist_or_identifiers_1
196 %type <ttype> identifiers_or_typenames
197
198 %type <itype> setspecs
199
200 %type <filename> save_filename
201 %type <lineno> save_lineno
202 \f
203 ifobjc
204 /* the Objective-C nonterminals */
205
206 %type <ttype> ivar_decl_list ivar_decls ivar_decl ivars ivar_declarator
207 %type <ttype> methoddecl unaryselector keywordselector selector
208 %type <ttype> keyworddecl receiver objcmessageexpr messageargs
209 %type <ttype> keywordexpr keywordarglist keywordarg
210 %type <ttype> myparms myparm optparmlist reservedwords objcselectorexpr
211 %type <ttype> selectorarg keywordnamelist keywordname objcencodeexpr
212 %type <ttype> objc_string non_empty_protocolrefs protocolrefs identifier_list objcprotocolexpr
213
214 %type <ttype> CLASSNAME OBJC_STRING OBJECTNAME
215 end ifobjc
216 \f
217 %{
218 /* Number of statements (loosely speaking) and compound statements
219 seen so far. */
220 static int stmt_count;
221 static int compstmt_count;
222
223 /* Input file and line number of the end of the body of last simple_if;
224 used by the stmt-rule immediately after simple_if returns. */
225 static const char *if_stmt_file;
226 static int if_stmt_line;
227
228 /* List of types and structure classes of the current declaration. */
229 static tree current_declspecs = NULL_TREE;
230 static tree prefix_attributes = NULL_TREE;
231
232 /* Stack of saved values of current_declspecs and prefix_attributes. */
233 static tree declspec_stack;
234
235 /* For __extension__, save/restore the warning flags which are
236 controlled by __extension__. */
237 #define SAVE_WARN_FLAGS() \
238 size_int (pedantic | (warn_pointer_arith << 1))
239 #define RESTORE_WARN_FLAGS(tval) \
240 do { \
241 int val = tree_low_cst (tval, 0); \
242 pedantic = val & 1; \
243 warn_pointer_arith = (val >> 1) & 1; \
244 } while (0)
245
246 ifobjc
247 /* Objective-C specific information */
248
249 tree objc_interface_context;
250 tree objc_implementation_context;
251 tree objc_method_context;
252 tree objc_ivar_chain;
253 tree objc_ivar_context;
254 enum tree_code objc_inherit_code;
255 int objc_receiver_context;
256 int objc_public_flag;
257
258 end ifobjc
259
260 /* Tell yyparse how to print a token's value, if yydebug is set. */
261
262 #define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)
263
264 static void yyprint PARAMS ((FILE *, int, YYSTYPE));
265 static void yyerror PARAMS ((const char *));
266 static inline int _yylex PARAMS ((void));
267 static int yylex PARAMS ((void));
268 static void init_reswords PARAMS ((void));
269
270 /* Add GC roots for variables local to this file. */
271 void
272 c_parse_init ()
273 {
274 ggc_add_tree_root (&declspec_stack, 1);
275 ggc_add_tree_root (&current_declspecs, 1);
276 ggc_add_tree_root (&prefix_attributes, 1);
277 ifobjc
278 ggc_add_tree_root (&objc_interface_context, 1);
279 ggc_add_tree_root (&objc_implementation_context, 1);
280 ggc_add_tree_root (&objc_method_context, 1);
281 ggc_add_tree_root (&objc_ivar_chain, 1);
282 ggc_add_tree_root (&objc_ivar_context, 1);
283 end ifobjc
284 }
285
286 %}
287 \f
288 %%
289 program: /* empty */
290 { if (pedantic)
291 pedwarn ("ISO C forbids an empty source file");
292 finish_file ();
293 }
294 | extdefs
295 {
296 /* In case there were missing closebraces,
297 get us back to the global binding level. */
298 while (! global_bindings_p ())
299 poplevel (0, 0, 0);
300 finish_file ();
301 }
302 ;
303
304 /* the reason for the strange actions in this rule
305 is so that notype_initdecls when reached via datadef
306 can find a valid list of type and sc specs in $0. */
307
308 extdefs:
309 {$<ttype>$ = NULL_TREE; } extdef
310 | extdefs {$<ttype>$ = NULL_TREE; ggc_collect(); } extdef
311 ;
312
313 extdef:
314 fndef
315 | datadef
316 ifobjc
317 | objcdef
318 end ifobjc
319 | ASM_KEYWORD '(' expr ')' ';'
320 { STRIP_NOPS ($3);
321 if ((TREE_CODE ($3) == ADDR_EXPR
322 && TREE_CODE (TREE_OPERAND ($3, 0)) == STRING_CST)
323 || TREE_CODE ($3) == STRING_CST)
324 assemble_asm ($3);
325 else
326 error ("argument of `asm' is not a constant string"); }
327 | extension extdef
328 { RESTORE_WARN_FLAGS ($1); }
329 ;
330
331 datadef:
332 setspecs notype_initdecls ';'
333 { if (pedantic)
334 error ("ISO C forbids data definition with no type or storage class");
335 else if (!flag_traditional)
336 warning ("data definition has no type or storage class");
337
338 current_declspecs = TREE_VALUE (declspec_stack);
339 prefix_attributes = TREE_PURPOSE (declspec_stack);
340 declspec_stack = TREE_CHAIN (declspec_stack); }
341 | declmods setspecs notype_initdecls ';'
342 { current_declspecs = TREE_VALUE (declspec_stack);
343 prefix_attributes = TREE_PURPOSE (declspec_stack);
344 declspec_stack = TREE_CHAIN (declspec_stack); }
345 | typed_declspecs setspecs initdecls ';'
346 { current_declspecs = TREE_VALUE (declspec_stack);
347 prefix_attributes = TREE_PURPOSE (declspec_stack);
348 declspec_stack = TREE_CHAIN (declspec_stack); }
349 | declmods ';'
350 { pedwarn ("empty declaration"); }
351 | typed_declspecs ';'
352 { shadow_tag ($1); }
353 | error ';'
354 | error '}'
355 | ';'
356 { if (pedantic)
357 pedwarn ("ISO C does not allow extra `;' outside of a function"); }
358 ;
359 \f
360 fndef:
361 typed_declspecs setspecs declarator
362 { if (! start_function (current_declspecs, $3,
363 prefix_attributes, NULL_TREE))
364 YYERROR1;
365 }
366 old_style_parm_decls
367 { store_parm_decls (); }
368 save_filename save_lineno compstmt_or_error
369 { DECL_SOURCE_FILE (current_function_decl) = $7;
370 DECL_SOURCE_LINE (current_function_decl) = $8;
371 finish_function (0);
372 current_declspecs = TREE_VALUE (declspec_stack);
373 prefix_attributes = TREE_PURPOSE (declspec_stack);
374 declspec_stack = TREE_CHAIN (declspec_stack); }
375 | typed_declspecs setspecs declarator error
376 { current_declspecs = TREE_VALUE (declspec_stack);
377 prefix_attributes = TREE_PURPOSE (declspec_stack);
378 declspec_stack = TREE_CHAIN (declspec_stack); }
379 | declmods setspecs notype_declarator
380 { if (! start_function (current_declspecs, $3,
381 prefix_attributes, NULL_TREE))
382 YYERROR1;
383 }
384 old_style_parm_decls
385 { store_parm_decls (); }
386 save_filename save_lineno compstmt_or_error
387 { DECL_SOURCE_FILE (current_function_decl) = $7;
388 DECL_SOURCE_LINE (current_function_decl) = $8;
389 finish_function (0);
390 current_declspecs = TREE_VALUE (declspec_stack);
391 prefix_attributes = TREE_PURPOSE (declspec_stack);
392 declspec_stack = TREE_CHAIN (declspec_stack); }
393 | declmods setspecs notype_declarator error
394 { current_declspecs = TREE_VALUE (declspec_stack);
395 prefix_attributes = TREE_PURPOSE (declspec_stack);
396 declspec_stack = TREE_CHAIN (declspec_stack); }
397 | setspecs notype_declarator
398 { if (! start_function (NULL_TREE, $2,
399 prefix_attributes, NULL_TREE))
400 YYERROR1;
401 }
402 old_style_parm_decls
403 { store_parm_decls (); }
404 save_filename save_lineno compstmt_or_error
405 { DECL_SOURCE_FILE (current_function_decl) = $6;
406 DECL_SOURCE_LINE (current_function_decl) = $7;
407 finish_function (0);
408 current_declspecs = TREE_VALUE (declspec_stack);
409 prefix_attributes = TREE_PURPOSE (declspec_stack);
410 declspec_stack = TREE_CHAIN (declspec_stack); }
411 | setspecs notype_declarator error
412 { current_declspecs = TREE_VALUE (declspec_stack);
413 prefix_attributes = TREE_PURPOSE (declspec_stack);
414 declspec_stack = TREE_CHAIN (declspec_stack); }
415 ;
416
417 identifier:
418 IDENTIFIER
419 | TYPENAME
420 ifobjc
421 | OBJECTNAME
422 | CLASSNAME
423 end ifobjc
424 ;
425
426 unop: '&'
427 { $$ = ADDR_EXPR; }
428 | '-'
429 { $$ = NEGATE_EXPR; }
430 | '+'
431 { $$ = CONVERT_EXPR;
432 ifc
433 if (warn_traditional && !in_system_header)
434 warning ("traditional C rejects the unary plus operator");
435 end ifc
436 }
437 | PLUSPLUS
438 { $$ = PREINCREMENT_EXPR; }
439 | MINUSMINUS
440 { $$ = PREDECREMENT_EXPR; }
441 | '~'
442 { $$ = BIT_NOT_EXPR; }
443 | '!'
444 { $$ = TRUTH_NOT_EXPR; }
445 ;
446
447 expr: nonnull_exprlist
448 { $$ = build_compound_expr ($1); }
449 ;
450
451 exprlist:
452 /* empty */
453 { $$ = NULL_TREE; }
454 | nonnull_exprlist
455 ;
456
457 nonnull_exprlist:
458 expr_no_commas
459 { $$ = build_tree_list (NULL_TREE, $1); }
460 | nonnull_exprlist ',' expr_no_commas
461 { chainon ($1, build_tree_list (NULL_TREE, $3)); }
462 ;
463
464 unary_expr:
465 primary
466 | '*' cast_expr %prec UNARY
467 { $$ = build_indirect_ref ($2, "unary *"); }
468 /* __extension__ turns off -pedantic for following primary. */
469 | extension cast_expr %prec UNARY
470 { $$ = $2;
471 RESTORE_WARN_FLAGS ($1); }
472 | unop cast_expr %prec UNARY
473 { $$ = build_unary_op ($1, $2, 0);
474 overflow_warning ($$); }
475 /* Refer to the address of a label as a pointer. */
476 | ANDAND identifier
477 { tree label = lookup_label ($2);
478 if (pedantic)
479 pedwarn ("ISO C forbids `&&'");
480 if (label == 0)
481 $$ = null_pointer_node;
482 else
483 {
484 TREE_USED (label) = 1;
485 $$ = build1 (ADDR_EXPR, ptr_type_node, label);
486 TREE_CONSTANT ($$) = 1;
487 }
488 }
489 /* This seems to be impossible on some machines, so let's turn it off.
490 You can use __builtin_next_arg to find the anonymous stack args.
491 | '&' ELLIPSIS
492 { tree types = TYPE_ARG_TYPES (TREE_TYPE (current_function_decl));
493 $$ = error_mark_node;
494 if (TREE_VALUE (tree_last (types)) == void_type_node)
495 error ("`&...' used in function with fixed number of arguments");
496 else
497 {
498 if (pedantic)
499 pedwarn ("ISO C forbids `&...'");
500 $$ = tree_last (DECL_ARGUMENTS (current_function_decl));
501 $$ = build_unary_op (ADDR_EXPR, $$, 0);
502 } }
503 */
504 | sizeof unary_expr %prec UNARY
505 { skip_evaluation--;
506 if (TREE_CODE ($2) == COMPONENT_REF
507 && DECL_C_BIT_FIELD (TREE_OPERAND ($2, 1)))
508 error ("`sizeof' applied to a bit-field");
509 $$ = c_sizeof (TREE_TYPE ($2)); }
510 | sizeof '(' typename ')' %prec HYPERUNARY
511 { skip_evaluation--;
512 $$ = c_sizeof (groktypename ($3)); }
513 | alignof unary_expr %prec UNARY
514 { skip_evaluation--;
515 $$ = c_alignof_expr ($2); }
516 | alignof '(' typename ')' %prec HYPERUNARY
517 { skip_evaluation--;
518 $$ = c_alignof (groktypename ($3)); }
519 | REALPART cast_expr %prec UNARY
520 { $$ = build_unary_op (REALPART_EXPR, $2, 0); }
521 | IMAGPART cast_expr %prec UNARY
522 { $$ = build_unary_op (IMAGPART_EXPR, $2, 0); }
523 ;
524
525 sizeof:
526 SIZEOF { skip_evaluation++; }
527 ;
528
529 alignof:
530 ALIGNOF { skip_evaluation++; }
531 ;
532
533 cast_expr:
534 unary_expr
535 | '(' typename ')' cast_expr %prec UNARY
536 { tree type;
537 int SAVED_warn_strict_prototypes = warn_strict_prototypes;
538 /* This avoids warnings about unprototyped casts on
539 integers. E.g. "#define SIG_DFL (void(*)())0". */
540 if (TREE_CODE ($4) == INTEGER_CST)
541 warn_strict_prototypes = 0;
542 type = groktypename ($2);
543 warn_strict_prototypes = SAVED_warn_strict_prototypes;
544 $$ = build_c_cast (type, $4); }
545 | '(' typename ')' '{'
546 { start_init (NULL_TREE, NULL, 0);
547 $2 = groktypename ($2);
548 really_start_incremental_init ($2); }
549 initlist_maybe_comma '}' %prec UNARY
550 { const char *name;
551 tree result = pop_init_level (0);
552 tree type = $2;
553 finish_init ();
554
555 if (pedantic && ! flag_isoc99)
556 pedwarn ("ISO C89 forbids constructor expressions");
557 if (TYPE_NAME (type) != 0)
558 {
559 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
560 name = IDENTIFIER_POINTER (TYPE_NAME (type));
561 else
562 name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
563 }
564 else
565 name = "";
566 $$ = result;
567 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
568 {
569 int failure = complete_array_type (type, $$, 1);
570 if (failure)
571 abort ();
572 }
573 }
574 ;
575
576 expr_no_commas:
577 cast_expr
578 | expr_no_commas '+' expr_no_commas
579 { $$ = parser_build_binary_op ($2, $1, $3); }
580 | expr_no_commas '-' expr_no_commas
581 { $$ = parser_build_binary_op ($2, $1, $3); }
582 | expr_no_commas '*' expr_no_commas
583 { $$ = parser_build_binary_op ($2, $1, $3); }
584 | expr_no_commas '/' expr_no_commas
585 { $$ = parser_build_binary_op ($2, $1, $3); }
586 | expr_no_commas '%' expr_no_commas
587 { $$ = parser_build_binary_op ($2, $1, $3); }
588 | expr_no_commas LSHIFT expr_no_commas
589 { $$ = parser_build_binary_op ($2, $1, $3); }
590 | expr_no_commas RSHIFT expr_no_commas
591 { $$ = parser_build_binary_op ($2, $1, $3); }
592 | expr_no_commas ARITHCOMPARE expr_no_commas
593 { $$ = parser_build_binary_op ($2, $1, $3); }
594 | expr_no_commas EQCOMPARE expr_no_commas
595 { $$ = parser_build_binary_op ($2, $1, $3); }
596 | expr_no_commas '&' expr_no_commas
597 { $$ = parser_build_binary_op ($2, $1, $3); }
598 | expr_no_commas '|' expr_no_commas
599 { $$ = parser_build_binary_op ($2, $1, $3); }
600 | expr_no_commas '^' expr_no_commas
601 { $$ = parser_build_binary_op ($2, $1, $3); }
602 | expr_no_commas ANDAND
603 { $1 = truthvalue_conversion (default_conversion ($1));
604 skip_evaluation += $1 == boolean_false_node; }
605 expr_no_commas
606 { skip_evaluation -= $1 == boolean_false_node;
607 $$ = parser_build_binary_op (TRUTH_ANDIF_EXPR, $1, $4); }
608 | expr_no_commas OROR
609 { $1 = truthvalue_conversion (default_conversion ($1));
610 skip_evaluation += $1 == boolean_true_node; }
611 expr_no_commas
612 { skip_evaluation -= $1 == boolean_true_node;
613 $$ = parser_build_binary_op (TRUTH_ORIF_EXPR, $1, $4); }
614 | expr_no_commas '?'
615 { $1 = truthvalue_conversion (default_conversion ($1));
616 skip_evaluation += $1 == boolean_false_node; }
617 expr ':'
618 { skip_evaluation += (($1 == boolean_true_node)
619 - ($1 == boolean_false_node)); }
620 expr_no_commas
621 { skip_evaluation -= $1 == boolean_true_node;
622 $$ = build_conditional_expr ($1, $4, $7); }
623 | expr_no_commas '?'
624 { if (pedantic)
625 pedwarn ("ISO C forbids omitting the middle term of a ?: expression");
626 /* Make sure first operand is calculated only once. */
627 $<ttype>2 = save_expr ($1);
628 $1 = truthvalue_conversion (default_conversion ($<ttype>2));
629 skip_evaluation += $1 == boolean_true_node; }
630 ':' expr_no_commas
631 { skip_evaluation -= $1 == boolean_true_node;
632 $$ = build_conditional_expr ($1, $<ttype>2, $5); }
633 | expr_no_commas '=' expr_no_commas
634 { char class;
635 $$ = build_modify_expr ($1, NOP_EXPR, $3);
636 class = TREE_CODE_CLASS (TREE_CODE ($$));
637 if (class == 'e' || class == '1'
638 || class == '2' || class == '<')
639 C_SET_EXP_ORIGINAL_CODE ($$, MODIFY_EXPR);
640 }
641 | expr_no_commas ASSIGN expr_no_commas
642 { char class;
643 $$ = build_modify_expr ($1, $2, $3);
644 /* This inhibits warnings in truthvalue_conversion. */
645 class = TREE_CODE_CLASS (TREE_CODE ($$));
646 if (class == 'e' || class == '1'
647 || class == '2' || class == '<')
648 C_SET_EXP_ORIGINAL_CODE ($$, ERROR_MARK);
649 }
650 ;
651
652 primary:
653 IDENTIFIER
654 {
655 if (yychar == YYEMPTY)
656 yychar = YYLEX;
657 $$ = build_external_ref ($1, yychar == '(');
658 }
659 | CONSTANT
660 | string
661 { $$ = combine_strings ($1); }
662 | '(' expr ')'
663 { char class = TREE_CODE_CLASS (TREE_CODE ($2));
664 if (class == 'e' || class == '1'
665 || class == '2' || class == '<')
666 C_SET_EXP_ORIGINAL_CODE ($2, ERROR_MARK);
667 $$ = $2; }
668 | '(' error ')'
669 { $$ = error_mark_node; }
670 | compstmt_primary_start compstmt_nostart ')'
671 { tree saved_last_tree;
672
673 if (pedantic)
674 pedwarn ("ISO C forbids braced-groups within expressions");
675 pop_label_level ();
676
677 saved_last_tree = COMPOUND_BODY ($1);
678 RECHAIN_STMTS ($1, COMPOUND_BODY ($1));
679 last_tree = saved_last_tree;
680 TREE_CHAIN (last_tree) = NULL_TREE;
681 if (!last_expr_type)
682 last_expr_type = void_type_node;
683 $$ = build1 (STMT_EXPR, last_expr_type, $1);
684 TREE_SIDE_EFFECTS ($$) = 1;
685 }
686 | compstmt_primary_start error ')'
687 {
688 pop_label_level ();
689 last_tree = COMPOUND_BODY ($1);
690 TREE_CHAIN (last_tree) = NULL_TREE;
691 $$ = error_mark_node;
692 }
693 | primary '(' exprlist ')' %prec '.'
694 { $$ = build_function_call ($1, $3); }
695 | VA_ARG '(' expr_no_commas ',' typename ')'
696 { $$ = build_va_arg ($3, groktypename ($5)); }
697 | primary '[' expr ']' %prec '.'
698 { $$ = build_array_ref ($1, $3); }
699 | primary '.' identifier
700 {
701 ifobjc
702 if (doing_objc_thang)
703 {
704 if (is_public ($1, $3))
705 $$ = build_component_ref ($1, $3);
706 else
707 $$ = error_mark_node;
708 }
709 else
710 end ifobjc
711 $$ = build_component_ref ($1, $3);
712 }
713 | primary POINTSAT identifier
714 {
715 tree expr = build_indirect_ref ($1, "->");
716
717 ifobjc
718 if (doing_objc_thang)
719 {
720 if (is_public (expr, $3))
721 $$ = build_component_ref (expr, $3);
722 else
723 $$ = error_mark_node;
724 }
725 else
726 end ifobjc
727 $$ = build_component_ref (expr, $3);
728 }
729 | primary PLUSPLUS
730 { $$ = build_unary_op (POSTINCREMENT_EXPR, $1, 0); }
731 | primary MINUSMINUS
732 { $$ = build_unary_op (POSTDECREMENT_EXPR, $1, 0); }
733 ifobjc
734 | objcmessageexpr
735 { $$ = build_message_expr ($1); }
736 | objcselectorexpr
737 { $$ = build_selector_expr ($1); }
738 | objcprotocolexpr
739 { $$ = build_protocol_expr ($1); }
740 | objcencodeexpr
741 { $$ = build_encode_expr ($1); }
742 | objc_string
743 { $$ = build_objc_string_object ($1); }
744 end ifobjc
745 ;
746
747 /* Produces a STRING_CST with perhaps more STRING_CSTs chained onto it. */
748 string:
749 STRING
750 | string STRING
751 {
752 ifc
753 static int last_lineno = 0;
754 static const char *last_input_filename = 0;
755 end ifc
756 $$ = chainon ($1, $2);
757 ifc
758 if (warn_traditional && !in_system_header
759 && (lineno != last_lineno || !last_input_filename ||
760 strcmp (last_input_filename, input_filename)))
761 {
762 warning ("traditional C rejects string concatenation");
763 last_lineno = lineno;
764 last_input_filename = input_filename;
765 }
766 end ifc
767 }
768 ;
769
770 ifobjc
771 /* Produces an STRING_CST with perhaps more STRING_CSTs chained
772 onto it, which is to be read as an ObjC string object. */
773 objc_string:
774 OBJC_STRING
775 | objc_string OBJC_STRING
776 { $$ = chainon ($1, $2); }
777 ;
778 end ifobjc
779
780 old_style_parm_decls:
781 /* empty */
782 | datadecls
783 | datadecls ELLIPSIS
784 /* ... is used here to indicate a varargs function. */
785 { c_mark_varargs ();
786 if (pedantic)
787 pedwarn ("ISO C does not permit use of `varargs.h'"); }
788 ;
789
790 /* The following are analogous to lineno_decl, decls and decl
791 except that they do not allow nested functions.
792 They are used for old-style parm decls. */
793 lineno_datadecl:
794 save_filename save_lineno datadecl
795 { }
796 ;
797
798 datadecls:
799 lineno_datadecl
800 | errstmt
801 | datadecls lineno_datadecl
802 | lineno_datadecl errstmt
803 ;
804
805 /* We don't allow prefix attributes here because they cause reduce/reduce
806 conflicts: we can't know whether we're parsing a function decl with
807 attribute suffix, or function defn with attribute prefix on first old
808 style parm. */
809 datadecl:
810 typed_declspecs_no_prefix_attr setspecs initdecls ';'
811 { current_declspecs = TREE_VALUE (declspec_stack);
812 prefix_attributes = TREE_PURPOSE (declspec_stack);
813 declspec_stack = TREE_CHAIN (declspec_stack); }
814 | declmods_no_prefix_attr setspecs notype_initdecls ';'
815 { current_declspecs = TREE_VALUE (declspec_stack);
816 prefix_attributes = TREE_PURPOSE (declspec_stack);
817 declspec_stack = TREE_CHAIN (declspec_stack); }
818 | typed_declspecs_no_prefix_attr ';'
819 { shadow_tag_warned ($1, 1);
820 pedwarn ("empty declaration"); }
821 | declmods_no_prefix_attr ';'
822 { pedwarn ("empty declaration"); }
823 ;
824
825 /* This combination which saves a lineno before a decl
826 is the normal thing to use, rather than decl itself.
827 This is to avoid shift/reduce conflicts in contexts
828 where statement labels are allowed. */
829 lineno_decl:
830 save_filename save_lineno decl
831 { }
832 ;
833
834 /* records the type and storage class specs to use for processing
835 the declarators that follow.
836 Maintains a stack of outer-level values of current_declspecs,
837 for the sake of parm declarations nested in function declarators. */
838 setspecs: /* empty */
839 { pending_xref_error ();
840 declspec_stack = tree_cons (prefix_attributes,
841 current_declspecs,
842 declspec_stack);
843 split_specs_attrs ($<ttype>0,
844 &current_declspecs, &prefix_attributes); }
845 ;
846
847 /* ??? Yuck. See after_type_declarator. */
848 setattrs: /* empty */
849 { prefix_attributes = chainon (prefix_attributes, $<ttype>0); }
850 ;
851
852 decl:
853 typed_declspecs setspecs initdecls ';'
854 { current_declspecs = TREE_VALUE (declspec_stack);
855 prefix_attributes = TREE_PURPOSE (declspec_stack);
856 declspec_stack = TREE_CHAIN (declspec_stack); }
857 | declmods setspecs notype_initdecls ';'
858 { current_declspecs = TREE_VALUE (declspec_stack);
859 prefix_attributes = TREE_PURPOSE (declspec_stack);
860 declspec_stack = TREE_CHAIN (declspec_stack); }
861 | typed_declspecs setspecs nested_function
862 { current_declspecs = TREE_VALUE (declspec_stack);
863 prefix_attributes = TREE_PURPOSE (declspec_stack);
864 declspec_stack = TREE_CHAIN (declspec_stack); }
865 | declmods setspecs notype_nested_function
866 { current_declspecs = TREE_VALUE (declspec_stack);
867 prefix_attributes = TREE_PURPOSE (declspec_stack);
868 declspec_stack = TREE_CHAIN (declspec_stack); }
869 | typed_declspecs ';'
870 { shadow_tag ($1); }
871 | declmods ';'
872 { pedwarn ("empty declaration"); }
873 | extension decl
874 { RESTORE_WARN_FLAGS ($1); }
875 ;
876
877 /* Declspecs which contain at least one type specifier or typedef name.
878 (Just `const' or `volatile' is not enough.)
879 A typedef'd name following these is taken as a name to be declared.
880 Declspecs have a non-NULL TREE_VALUE, attributes do not. */
881
882 typed_declspecs:
883 typespec reserved_declspecs
884 { $$ = tree_cons (NULL_TREE, $1, $2); }
885 | declmods typespec reserved_declspecs
886 { $$ = chainon ($3, tree_cons (NULL_TREE, $2, $1)); }
887 ;
888
889 reserved_declspecs: /* empty */
890 { $$ = NULL_TREE; }
891 | reserved_declspecs typespecqual_reserved
892 { $$ = tree_cons (NULL_TREE, $2, $1); }
893 | reserved_declspecs SCSPEC
894 { if (extra_warnings)
895 warning ("`%s' is not at beginning of declaration",
896 IDENTIFIER_POINTER ($2));
897 $$ = tree_cons (NULL_TREE, $2, $1); }
898 | reserved_declspecs attributes
899 { $$ = tree_cons ($2, NULL_TREE, $1); }
900 ;
901
902 typed_declspecs_no_prefix_attr:
903 typespec reserved_declspecs_no_prefix_attr
904 { $$ = tree_cons (NULL_TREE, $1, $2); }
905 | declmods_no_prefix_attr typespec reserved_declspecs_no_prefix_attr
906 { $$ = chainon ($3, tree_cons (NULL_TREE, $2, $1)); }
907 ;
908
909 reserved_declspecs_no_prefix_attr:
910 /* empty */
911 { $$ = NULL_TREE; }
912 | reserved_declspecs_no_prefix_attr typespecqual_reserved
913 { $$ = tree_cons (NULL_TREE, $2, $1); }
914 | reserved_declspecs_no_prefix_attr SCSPEC
915 { if (extra_warnings)
916 warning ("`%s' is not at beginning of declaration",
917 IDENTIFIER_POINTER ($2));
918 $$ = tree_cons (NULL_TREE, $2, $1); }
919 ;
920
921 /* List of just storage classes, type modifiers, and prefix attributes.
922 A declaration can start with just this, but then it cannot be used
923 to redeclare a typedef-name.
924 Declspecs have a non-NULL TREE_VALUE, attributes do not. */
925
926 declmods:
927 declmods_no_prefix_attr
928 { $$ = $1; }
929 | attributes
930 { $$ = tree_cons ($1, NULL_TREE, NULL_TREE); }
931 | declmods declmods_no_prefix_attr
932 { $$ = chainon ($2, $1); }
933 | declmods attributes
934 { $$ = tree_cons ($2, NULL_TREE, $1); }
935 ;
936
937 declmods_no_prefix_attr:
938 TYPE_QUAL
939 { $$ = tree_cons (NULL_TREE, $1, NULL_TREE);
940 TREE_STATIC ($$) = 1; }
941 | SCSPEC
942 { $$ = tree_cons (NULL_TREE, $1, NULL_TREE); }
943 | declmods_no_prefix_attr TYPE_QUAL
944 { $$ = tree_cons (NULL_TREE, $2, $1);
945 TREE_STATIC ($$) = 1; }
946 | declmods_no_prefix_attr SCSPEC
947 { if (extra_warnings && TREE_STATIC ($1))
948 warning ("`%s' is not at beginning of declaration",
949 IDENTIFIER_POINTER ($2));
950 $$ = tree_cons (NULL_TREE, $2, $1);
951 TREE_STATIC ($$) = TREE_STATIC ($1); }
952 ;
953
954
955 /* Used instead of declspecs where storage classes are not allowed
956 (that is, for typenames and structure components).
957 Don't accept a typedef-name if anything but a modifier precedes it. */
958
959 typed_typespecs:
960 typespec reserved_typespecquals
961 { $$ = tree_cons (NULL_TREE, $1, $2); }
962 | nonempty_type_quals typespec reserved_typespecquals
963 { $$ = chainon ($3, tree_cons (NULL_TREE, $2, $1)); }
964 ;
965
966 reserved_typespecquals: /* empty */
967 { $$ = NULL_TREE; }
968 | reserved_typespecquals typespecqual_reserved
969 { $$ = tree_cons (NULL_TREE, $2, $1); }
970 ;
971
972 /* A typespec (but not a type qualifier).
973 Once we have seen one of these in a declaration,
974 if a typedef name appears then it is being redeclared. */
975
976 typespec: TYPESPEC
977 | structsp
978 | TYPENAME
979 { /* For a typedef name, record the meaning, not the name.
980 In case of `foo foo, bar;'. */
981 $$ = lookup_name ($1); }
982 ifobjc
983 | CLASSNAME protocolrefs
984 { $$ = get_static_reference ($1, $2); }
985 | OBJECTNAME protocolrefs
986 { $$ = get_object_reference ($2); }
987
988 /* Make "<SomeProtocol>" equivalent to "id <SomeProtocol>"
989 - nisse@lysator.liu.se */
990 | non_empty_protocolrefs
991 { $$ = get_object_reference ($1); }
992 end ifobjc
993 | TYPEOF '(' expr ')'
994 { $$ = TREE_TYPE ($3); }
995 | TYPEOF '(' typename ')'
996 { $$ = groktypename ($3); }
997 ;
998
999 /* A typespec that is a reserved word, or a type qualifier. */
1000
1001 typespecqual_reserved: TYPESPEC
1002 | TYPE_QUAL
1003 | structsp
1004 ;
1005
1006 initdecls:
1007 initdcl
1008 | initdecls ',' initdcl
1009 ;
1010
1011 notype_initdecls:
1012 notype_initdcl
1013 | notype_initdecls ',' initdcl
1014 ;
1015
1016 maybeasm:
1017 /* empty */
1018 { $$ = NULL_TREE; }
1019 | ASM_KEYWORD '(' string ')'
1020 { if (TREE_CHAIN ($3)) $3 = combine_strings ($3);
1021 $$ = $3;
1022 }
1023 ;
1024
1025 initdcl:
1026 declarator maybeasm maybe_attribute '='
1027 { $<ttype>$ = start_decl ($1, current_declspecs, 1,
1028 $3, prefix_attributes);
1029 start_init ($<ttype>$, $2, global_bindings_p ()); }
1030 init
1031 /* Note how the declaration of the variable is in effect while its init is parsed! */
1032 { finish_init ();
1033 finish_decl ($<ttype>5, $6, $2); }
1034 | declarator maybeasm maybe_attribute
1035 { tree d = start_decl ($1, current_declspecs, 0,
1036 $3, prefix_attributes);
1037 finish_decl (d, NULL_TREE, $2);
1038 }
1039 ;
1040
1041 notype_initdcl:
1042 notype_declarator maybeasm maybe_attribute '='
1043 { $<ttype>$ = start_decl ($1, current_declspecs, 1,
1044 $3, prefix_attributes);
1045 start_init ($<ttype>$, $2, global_bindings_p ()); }
1046 init
1047 /* Note how the declaration of the variable is in effect while its init is parsed! */
1048 { finish_init ();
1049 decl_attributes ($<ttype>5, $3, prefix_attributes);
1050 finish_decl ($<ttype>5, $6, $2); }
1051 | notype_declarator maybeasm maybe_attribute
1052 { tree d = start_decl ($1, current_declspecs, 0,
1053 $3, prefix_attributes);
1054 finish_decl (d, NULL_TREE, $2); }
1055 ;
1056 /* the * rules are dummies to accept the Apollo extended syntax
1057 so that the header files compile. */
1058 maybe_attribute:
1059 /* empty */
1060 { $$ = NULL_TREE; }
1061 | attributes
1062 { $$ = $1; }
1063 ;
1064
1065 attributes:
1066 attribute
1067 { $$ = $1; }
1068 | attributes attribute
1069 { $$ = chainon ($1, $2); }
1070 ;
1071
1072 attribute:
1073 ATTRIBUTE '(' '(' attribute_list ')' ')'
1074 { $$ = $4; }
1075 ;
1076
1077 attribute_list:
1078 attrib
1079 { $$ = $1; }
1080 | attribute_list ',' attrib
1081 { $$ = chainon ($1, $3); }
1082 ;
1083
1084 attrib:
1085 /* empty */
1086 { $$ = NULL_TREE; }
1087 | any_word
1088 { $$ = build_tree_list ($1, NULL_TREE); }
1089 | any_word '(' IDENTIFIER ')'
1090 { $$ = build_tree_list ($1, build_tree_list (NULL_TREE, $3)); }
1091 | any_word '(' IDENTIFIER ',' nonnull_exprlist ')'
1092 { $$ = build_tree_list ($1, tree_cons (NULL_TREE, $3, $5)); }
1093 | any_word '(' exprlist ')'
1094 { $$ = build_tree_list ($1, $3); }
1095 ;
1096
1097 /* This still leaves out most reserved keywords,
1098 shouldn't we include them? */
1099
1100 any_word:
1101 identifier
1102 | SCSPEC
1103 | TYPESPEC
1104 | TYPE_QUAL
1105 ;
1106 \f
1107 /* Initializers. `init' is the entry point. */
1108
1109 init:
1110 expr_no_commas
1111 | '{'
1112 { really_start_incremental_init (NULL_TREE); }
1113 initlist_maybe_comma '}'
1114 { $$ = pop_init_level (0); }
1115 | error
1116 { $$ = error_mark_node; }
1117 ;
1118
1119 /* `initlist_maybe_comma' is the guts of an initializer in braces. */
1120 initlist_maybe_comma:
1121 /* empty */
1122 { if (pedantic)
1123 pedwarn ("ISO C forbids empty initializer braces"); }
1124 | initlist1 maybecomma
1125 ;
1126
1127 initlist1:
1128 initelt
1129 | initlist1 ',' initelt
1130 ;
1131
1132 /* `initelt' is a single element of an initializer.
1133 It may use braces. */
1134 initelt:
1135 designator_list '=' initval
1136 { if (pedantic && ! flag_isoc99)
1137 pedwarn ("ISO C89 forbids specifying subobject to initialize"); }
1138 | designator initval
1139 { if (pedantic)
1140 pedwarn ("obsolete use of designated initializer without `='"); }
1141 | identifier ':'
1142 { set_init_label ($1);
1143 if (pedantic)
1144 pedwarn ("obsolete use of designated initializer with `:'"); }
1145 initval
1146 | initval
1147 ;
1148
1149 initval:
1150 '{'
1151 { push_init_level (0); }
1152 initlist_maybe_comma '}'
1153 { process_init_element (pop_init_level (0)); }
1154 | expr_no_commas
1155 { process_init_element ($1); }
1156 | error
1157 ;
1158
1159 designator_list:
1160 designator
1161 | designator_list designator
1162 ;
1163
1164 designator:
1165 '.' identifier
1166 { set_init_label ($2); }
1167 /* These are for labeled elements. The syntax for an array element
1168 initializer conflicts with the syntax for an Objective-C message,
1169 so don't include these productions in the Objective-C grammar. */
1170 ifc
1171 | '[' expr_no_commas ELLIPSIS expr_no_commas ']'
1172 { set_init_index ($2, $4);
1173 if (pedantic)
1174 pedwarn ("ISO C forbids specifying range of elements to initialize"); }
1175 | '[' expr_no_commas ']'
1176 { set_init_index ($2, NULL_TREE); }
1177 end ifc
1178 ;
1179 \f
1180 nested_function:
1181 declarator
1182 { if (pedantic)
1183 pedwarn ("ISO C forbids nested functions");
1184
1185 push_function_context ();
1186 if (! start_function (current_declspecs, $1,
1187 prefix_attributes, NULL_TREE))
1188 {
1189 pop_function_context ();
1190 YYERROR1;
1191 }
1192 }
1193 old_style_parm_decls
1194 { store_parm_decls (); }
1195 /* This used to use compstmt_or_error.
1196 That caused a bug with input `f(g) int g {}',
1197 where the use of YYERROR1 above caused an error
1198 which then was handled by compstmt_or_error.
1199 There followed a repeated execution of that same rule,
1200 which called YYERROR1 again, and so on. */
1201 save_filename save_lineno compstmt
1202 { tree decl = current_function_decl;
1203 DECL_SOURCE_FILE (decl) = $5;
1204 DECL_SOURCE_LINE (decl) = $6;
1205 finish_function (1);
1206 pop_function_context ();
1207 add_decl_stmt (decl); }
1208 ;
1209
1210 notype_nested_function:
1211 notype_declarator
1212 { if (pedantic)
1213 pedwarn ("ISO C forbids nested functions");
1214
1215 push_function_context ();
1216 if (! start_function (current_declspecs, $1,
1217 prefix_attributes, NULL_TREE))
1218 {
1219 pop_function_context ();
1220 YYERROR1;
1221 }
1222 }
1223 old_style_parm_decls
1224 { store_parm_decls (); }
1225 /* This used to use compstmt_or_error.
1226 That caused a bug with input `f(g) int g {}',
1227 where the use of YYERROR1 above caused an error
1228 which then was handled by compstmt_or_error.
1229 There followed a repeated execution of that same rule,
1230 which called YYERROR1 again, and so on. */
1231 save_filename save_lineno compstmt
1232 { tree decl = current_function_decl;
1233 DECL_SOURCE_FILE (decl) = $5;
1234 DECL_SOURCE_LINE (decl) = $6;
1235 finish_function (1);
1236 pop_function_context ();
1237 add_decl_stmt (decl); }
1238 ;
1239
1240 /* Any kind of declarator (thus, all declarators allowed
1241 after an explicit typespec). */
1242
1243 declarator:
1244 after_type_declarator
1245 | notype_declarator
1246 ;
1247
1248 /* A declarator that is allowed only after an explicit typespec. */
1249
1250 after_type_declarator:
1251 '(' after_type_declarator ')'
1252 { $$ = $2; }
1253 | after_type_declarator '(' parmlist_or_identifiers %prec '.'
1254 { $$ = build_nt (CALL_EXPR, $1, $3, NULL_TREE); }
1255 /* | after_type_declarator '(' error ')' %prec '.'
1256 { $$ = build_nt (CALL_EXPR, $1, NULL_TREE, NULL_TREE);
1257 poplevel (0, 0, 0); } */
1258 | after_type_declarator '[' expr ']' %prec '.'
1259 { $$ = build_nt (ARRAY_REF, $1, $3); }
1260 | after_type_declarator '[' ']' %prec '.'
1261 { $$ = build_nt (ARRAY_REF, $1, NULL_TREE); }
1262 | '*' type_quals after_type_declarator %prec UNARY
1263 { $$ = make_pointer_declarator ($2, $3); }
1264 /* ??? Yuck. setattrs is a quick hack. We can't use
1265 prefix_attributes because $1 only applies to this
1266 declarator. We assume setspecs has already been done.
1267 setattrs also avoids 5 reduce/reduce conflicts (otherwise multiple
1268 attributes could be recognized here or in `attributes'). */
1269 | attributes setattrs after_type_declarator
1270 { $$ = $3; }
1271 | TYPENAME
1272 ifobjc
1273 | OBJECTNAME
1274 end ifobjc
1275 ;
1276
1277 /* Kinds of declarator that can appear in a parameter list
1278 in addition to notype_declarator. This is like after_type_declarator
1279 but does not allow a typedef name in parentheses as an identifier
1280 (because it would conflict with a function with that typedef as arg). */
1281
1282 parm_declarator:
1283 parm_declarator '(' parmlist_or_identifiers %prec '.'
1284 { $$ = build_nt (CALL_EXPR, $1, $3, NULL_TREE); }
1285 /* | parm_declarator '(' error ')' %prec '.'
1286 { $$ = build_nt (CALL_EXPR, $1, NULL_TREE, NULL_TREE);
1287 poplevel (0, 0, 0); } */
1288 ifc
1289 | parm_declarator '[' '*' ']' %prec '.'
1290 { $$ = build_nt (ARRAY_REF, $1, NULL_TREE);
1291 if (! flag_isoc99)
1292 error ("`[*]' in parameter declaration only allowed in ISO C 99");
1293 }
1294 end ifc
1295 | parm_declarator '[' expr ']' %prec '.'
1296 { $$ = build_nt (ARRAY_REF, $1, $3); }
1297 | parm_declarator '[' ']' %prec '.'
1298 { $$ = build_nt (ARRAY_REF, $1, NULL_TREE); }
1299 | '*' type_quals parm_declarator %prec UNARY
1300 { $$ = make_pointer_declarator ($2, $3); }
1301 /* ??? Yuck. setattrs is a quick hack. We can't use
1302 prefix_attributes because $1 only applies to this
1303 declarator. We assume setspecs has already been done.
1304 setattrs also avoids 5 reduce/reduce conflicts (otherwise multiple
1305 attributes could be recognized here or in `attributes'). */
1306 | attributes setattrs parm_declarator
1307 { $$ = $3; }
1308 | TYPENAME
1309 ;
1310
1311 /* A declarator allowed whether or not there has been
1312 an explicit typespec. These cannot redeclare a typedef-name. */
1313
1314 notype_declarator:
1315 notype_declarator '(' parmlist_or_identifiers %prec '.'
1316 { $$ = build_nt (CALL_EXPR, $1, $3, NULL_TREE); }
1317 /* | notype_declarator '(' error ')' %prec '.'
1318 { $$ = build_nt (CALL_EXPR, $1, NULL_TREE, NULL_TREE);
1319 poplevel (0, 0, 0); } */
1320 | '(' notype_declarator ')'
1321 { $$ = $2; }
1322 | '*' type_quals notype_declarator %prec UNARY
1323 { $$ = make_pointer_declarator ($2, $3); }
1324 ifc
1325 | notype_declarator '[' '*' ']' %prec '.'
1326 { $$ = build_nt (ARRAY_REF, $1, NULL_TREE);
1327 if (! flag_isoc99)
1328 error ("`[*]' in parameter declaration only allowed in ISO C 99");
1329 }
1330 end ifc
1331 | notype_declarator '[' expr ']' %prec '.'
1332 { $$ = build_nt (ARRAY_REF, $1, $3); }
1333 | notype_declarator '[' ']' %prec '.'
1334 { $$ = build_nt (ARRAY_REF, $1, NULL_TREE); }
1335 /* ??? Yuck. setattrs is a quick hack. We can't use
1336 prefix_attributes because $1 only applies to this
1337 declarator. We assume setspecs has already been done.
1338 setattrs also avoids 5 reduce/reduce conflicts (otherwise multiple
1339 attributes could be recognized here or in `attributes'). */
1340 | attributes setattrs notype_declarator
1341 { $$ = $3; }
1342 | IDENTIFIER
1343 ;
1344
1345 struct_head:
1346 STRUCT
1347 { $$ = NULL_TREE; }
1348 | STRUCT attributes
1349 { $$ = $2; }
1350 ;
1351
1352 union_head:
1353 UNION
1354 { $$ = NULL_TREE; }
1355 | UNION attributes
1356 { $$ = $2; }
1357 ;
1358
1359 enum_head:
1360 ENUM
1361 { $$ = NULL_TREE; }
1362 | ENUM attributes
1363 { $$ = $2; }
1364 ;
1365
1366 structsp:
1367 struct_head identifier '{'
1368 { $$ = start_struct (RECORD_TYPE, $2);
1369 /* Start scope of tag before parsing components. */
1370 }
1371 component_decl_list '}' maybe_attribute
1372 { $$ = finish_struct ($<ttype>4, $5, chainon ($1, $7)); }
1373 | struct_head '{' component_decl_list '}' maybe_attribute
1374 { $$ = finish_struct (start_struct (RECORD_TYPE, NULL_TREE),
1375 $3, chainon ($1, $5));
1376 }
1377 | struct_head identifier
1378 { $$ = xref_tag (RECORD_TYPE, $2); }
1379 | union_head identifier '{'
1380 { $$ = start_struct (UNION_TYPE, $2); }
1381 component_decl_list '}' maybe_attribute
1382 { $$ = finish_struct ($<ttype>4, $5, chainon ($1, $7)); }
1383 | union_head '{' component_decl_list '}' maybe_attribute
1384 { $$ = finish_struct (start_struct (UNION_TYPE, NULL_TREE),
1385 $3, chainon ($1, $5));
1386 }
1387 | union_head identifier
1388 { $$ = xref_tag (UNION_TYPE, $2); }
1389 | enum_head identifier '{'
1390 { $$ = start_enum ($2); }
1391 enumlist maybecomma_warn '}' maybe_attribute
1392 { $$ = finish_enum ($<ttype>4, nreverse ($5),
1393 chainon ($1, $8)); }
1394 | enum_head '{'
1395 { $$ = start_enum (NULL_TREE); }
1396 enumlist maybecomma_warn '}' maybe_attribute
1397 { $$ = finish_enum ($<ttype>3, nreverse ($4),
1398 chainon ($1, $7)); }
1399 | enum_head identifier
1400 { $$ = xref_tag (ENUMERAL_TYPE, $2); }
1401 ;
1402
1403 maybecomma:
1404 /* empty */
1405 | ','
1406 ;
1407
1408 maybecomma_warn:
1409 /* empty */
1410 | ','
1411 { if (pedantic && ! flag_isoc99)
1412 pedwarn ("comma at end of enumerator list"); }
1413 ;
1414
1415 component_decl_list:
1416 component_decl_list2
1417 { $$ = $1; }
1418 | component_decl_list2 component_decl
1419 { $$ = chainon ($1, $2);
1420 pedwarn ("no semicolon at end of struct or union"); }
1421 ;
1422
1423 component_decl_list2: /* empty */
1424 { $$ = NULL_TREE; }
1425 | component_decl_list2 component_decl ';'
1426 { $$ = chainon ($1, $2); }
1427 | component_decl_list2 ';'
1428 { if (pedantic)
1429 pedwarn ("extra semicolon in struct or union specified"); }
1430 ifobjc
1431 /* foo(sizeof(struct{ @defs(ClassName)})); */
1432 | DEFS '(' CLASSNAME ')'
1433 {
1434 tree interface = lookup_interface ($3);
1435
1436 if (interface)
1437 $$ = get_class_ivars (interface);
1438 else
1439 {
1440 error ("Cannot find interface declaration for `%s'",
1441 IDENTIFIER_POINTER ($3));
1442 $$ = NULL_TREE;
1443 }
1444 }
1445 end ifobjc
1446 ;
1447
1448 /* There is a shift-reduce conflict here, because `components' may
1449 start with a `typename'. It happens that shifting (the default resolution)
1450 does the right thing, because it treats the `typename' as part of
1451 a `typed_typespecs'.
1452
1453 It is possible that this same technique would allow the distinction
1454 between `notype_initdecls' and `initdecls' to be eliminated.
1455 But I am being cautious and not trying it. */
1456
1457 component_decl:
1458 typed_typespecs setspecs components
1459 { $$ = $3;
1460 current_declspecs = TREE_VALUE (declspec_stack);
1461 prefix_attributes = TREE_PURPOSE (declspec_stack);
1462 declspec_stack = TREE_CHAIN (declspec_stack); }
1463 | typed_typespecs setspecs save_filename save_lineno maybe_attribute
1464 {
1465 /* Support for unnamed structs or unions as members of
1466 structs or unions (which is [a] useful and [b] supports
1467 MS P-SDK). */
1468 if (pedantic)
1469 pedwarn ("ISO C doesn't support unnamed structs/unions");
1470
1471 $$ = grokfield($3, $4, NULL, current_declspecs, NULL_TREE);
1472 current_declspecs = TREE_VALUE (declspec_stack);
1473 prefix_attributes = TREE_PURPOSE (declspec_stack);
1474 declspec_stack = TREE_CHAIN (declspec_stack);
1475 }
1476 | nonempty_type_quals setspecs components
1477 { $$ = $3;
1478 current_declspecs = TREE_VALUE (declspec_stack);
1479 prefix_attributes = TREE_PURPOSE (declspec_stack);
1480 declspec_stack = TREE_CHAIN (declspec_stack); }
1481 | nonempty_type_quals
1482 { if (pedantic)
1483 pedwarn ("ISO C forbids member declarations with no members");
1484 shadow_tag($1);
1485 $$ = NULL_TREE; }
1486 | error
1487 { $$ = NULL_TREE; }
1488 | extension component_decl
1489 { $$ = $2;
1490 RESTORE_WARN_FLAGS ($1); }
1491 ;
1492
1493 components:
1494 component_declarator
1495 | components ',' component_declarator
1496 { $$ = chainon ($1, $3); }
1497 ;
1498
1499 component_declarator:
1500 save_filename save_lineno declarator maybe_attribute
1501 { $$ = grokfield ($1, $2, $3, current_declspecs, NULL_TREE);
1502 decl_attributes ($$, $4, prefix_attributes); }
1503 | save_filename save_lineno
1504 declarator ':' expr_no_commas maybe_attribute
1505 { $$ = grokfield ($1, $2, $3, current_declspecs, $5);
1506 decl_attributes ($$, $6, prefix_attributes); }
1507 | save_filename save_lineno ':' expr_no_commas maybe_attribute
1508 { $$ = grokfield ($1, $2, NULL_TREE, current_declspecs, $4);
1509 decl_attributes ($$, $5, prefix_attributes); }
1510 ;
1511
1512 /* We chain the enumerators in reverse order.
1513 They are put in forward order where enumlist is used.
1514 (The order used to be significant, but no longer is so.
1515 However, we still maintain the order, just to be clean.) */
1516
1517 enumlist:
1518 enumerator
1519 | enumlist ',' enumerator
1520 { if ($1 == error_mark_node)
1521 $$ = $1;
1522 else
1523 $$ = chainon ($3, $1); }
1524 | error
1525 { $$ = error_mark_node; }
1526 ;
1527
1528
1529 enumerator:
1530 identifier
1531 { $$ = build_enumerator ($1, NULL_TREE); }
1532 | identifier '=' expr_no_commas
1533 { $$ = build_enumerator ($1, $3); }
1534 ;
1535
1536 typename:
1537 typed_typespecs absdcl
1538 { $$ = build_tree_list ($1, $2); }
1539 | nonempty_type_quals absdcl
1540 { $$ = build_tree_list ($1, $2); }
1541 ;
1542
1543 absdcl: /* an absolute declarator */
1544 /* empty */
1545 { $$ = NULL_TREE; }
1546 | absdcl1
1547 ;
1548
1549 nonempty_type_quals:
1550 TYPE_QUAL
1551 { $$ = tree_cons (NULL_TREE, $1, NULL_TREE); }
1552 | nonempty_type_quals TYPE_QUAL
1553 { $$ = tree_cons (NULL_TREE, $2, $1); }
1554 ;
1555
1556 type_quals:
1557 /* empty */
1558 { $$ = NULL_TREE; }
1559 | type_quals TYPE_QUAL
1560 { $$ = tree_cons (NULL_TREE, $2, $1); }
1561 ;
1562
1563 absdcl1: /* a nonempty absolute declarator */
1564 '(' absdcl1 ')'
1565 { $$ = $2; }
1566 /* `(typedef)1' is `int'. */
1567 | '*' type_quals absdcl1 %prec UNARY
1568 { $$ = make_pointer_declarator ($2, $3); }
1569 | '*' type_quals %prec UNARY
1570 { $$ = make_pointer_declarator ($2, NULL_TREE); }
1571 | absdcl1 '(' parmlist %prec '.'
1572 { $$ = build_nt (CALL_EXPR, $1, $3, NULL_TREE); }
1573 | absdcl1 '[' expr ']' %prec '.'
1574 { $$ = build_nt (ARRAY_REF, $1, $3); }
1575 | absdcl1 '[' ']' %prec '.'
1576 { $$ = build_nt (ARRAY_REF, $1, NULL_TREE); }
1577 | '(' parmlist %prec '.'
1578 { $$ = build_nt (CALL_EXPR, NULL_TREE, $2, NULL_TREE); }
1579 | '[' expr ']' %prec '.'
1580 { $$ = build_nt (ARRAY_REF, NULL_TREE, $2); }
1581 | '[' ']' %prec '.'
1582 { $$ = build_nt (ARRAY_REF, NULL_TREE, NULL_TREE); }
1583 /* ??? It appears we have to support attributes here, however
1584 using prefix_attributes is wrong. */
1585 | attributes setattrs absdcl1
1586 { $$ = $3; }
1587 ;
1588
1589 /* A nonempty series of declarations and statements (possibly followed by
1590 some labels) that can form the body of a compound statement.
1591 NOTE: we don't allow labels on declarations; this might seem like a
1592 natural extension, but there would be a conflict between attributes
1593 on the label and prefix attributes on the declaration. */
1594
1595 stmts_and_decls:
1596 lineno_stmt_decl_or_labels_ending_stmt
1597 | lineno_stmt_decl_or_labels_ending_decl
1598 | lineno_stmt_decl_or_labels_ending_label
1599 {
1600 pedwarn ("deprecated use of label at end of compound statement");
1601 }
1602 | lineno_stmt_decl_or_labels_ending_error
1603 ;
1604
1605 lineno_stmt_decl_or_labels_ending_stmt:
1606 lineno_stmt
1607 | lineno_stmt_decl_or_labels_ending_stmt lineno_stmt
1608 | lineno_stmt_decl_or_labels_ending_decl lineno_stmt
1609 | lineno_stmt_decl_or_labels_ending_label lineno_stmt
1610 | lineno_stmt_decl_or_labels_ending_error lineno_stmt
1611 ;
1612
1613 lineno_stmt_decl_or_labels_ending_decl:
1614 lineno_decl
1615 | lineno_stmt_decl_or_labels_ending_stmt lineno_decl
1616 { if (pedantic && !flag_isoc99)
1617 pedwarn ("ISO C89 forbids mixed declarations and code"); }
1618 | lineno_stmt_decl_or_labels_ending_decl lineno_decl
1619 | lineno_stmt_decl_or_labels_ending_error lineno_decl
1620 ;
1621
1622 lineno_stmt_decl_or_labels_ending_label:
1623 lineno_label
1624 | lineno_stmt_decl_or_labels_ending_stmt lineno_label
1625 | lineno_stmt_decl_or_labels_ending_decl lineno_label
1626 | lineno_stmt_decl_or_labels_ending_label lineno_label
1627 | lineno_stmt_decl_or_labels_ending_error lineno_label
1628 ;
1629
1630 lineno_stmt_decl_or_labels_ending_error:
1631 errstmt
1632 | lineno_stmt_decl_or_labels errstmt
1633 ;
1634
1635 lineno_stmt_decl_or_labels:
1636 lineno_stmt_decl_or_labels_ending_stmt
1637 | lineno_stmt_decl_or_labels_ending_decl
1638 | lineno_stmt_decl_or_labels_ending_label
1639 | lineno_stmt_decl_or_labels_ending_error
1640 ;
1641
1642 errstmt: error ';'
1643 ;
1644
1645 pushlevel: /* empty */
1646 { pushlevel (0);
1647 clear_last_expr ();
1648 add_scope_stmt (/*begin_p=*/1, /*partial_p=*/0);
1649 ifobjc
1650 if (objc_method_context)
1651 add_objc_decls ();
1652 end ifobjc
1653 }
1654 ;
1655
1656 poplevel: /* empty */
1657 { $$ = add_scope_stmt (/*begin_p=*/0, /*partial_p=*/0); }
1658
1659 /* Start and end blocks created for the new scopes of C99. */
1660 c99_block_start: /* empty */
1661 { if (flag_isoc99)
1662 {
1663 $$ = c_begin_compound_stmt ();
1664 pushlevel (0);
1665 clear_last_expr ();
1666 add_scope_stmt (/*begin_p=*/1, /*partial_p=*/0);
1667 ifobjc
1668 if (objc_method_context)
1669 add_objc_decls ();
1670 end ifobjc
1671 }
1672 else
1673 $$ = NULL_TREE;
1674 }
1675 ;
1676
1677 /* Productions using c99_block_start and c99_block_end will need to do what's
1678 in compstmt: RECHAIN_STMTS ($1, COMPOUND_BODY ($1)); $$ = $2; where
1679 $1 is the value of c99_block_start and $2 of c99_block_end. */
1680 c99_block_end: /* empty */
1681 { if (flag_isoc99)
1682 {
1683 tree scope_stmt = add_scope_stmt (/*begin_p=*/0, /*partial_p=*/0);
1684 $$ = poplevel (kept_level_p (), 0, 0);
1685 SCOPE_STMT_BLOCK (TREE_PURPOSE (scope_stmt))
1686 = SCOPE_STMT_BLOCK (TREE_VALUE (scope_stmt))
1687 = $$;
1688 }
1689 else
1690 $$ = NULL_TREE; }
1691 ;
1692
1693 /* Read zero or more forward-declarations for labels
1694 that nested functions can jump to. */
1695 maybe_label_decls:
1696 /* empty */
1697 | label_decls
1698 { if (pedantic)
1699 pedwarn ("ISO C forbids label declarations"); }
1700 ;
1701
1702 label_decls:
1703 label_decl
1704 | label_decls label_decl
1705 ;
1706
1707 label_decl:
1708 LABEL identifiers_or_typenames ';'
1709 { tree link;
1710 for (link = $2; link; link = TREE_CHAIN (link))
1711 {
1712 tree label = shadow_label (TREE_VALUE (link));
1713 C_DECLARED_LABEL_FLAG (label) = 1;
1714 add_decl_stmt (label);
1715 }
1716 }
1717 ;
1718
1719 /* This is the body of a function definition.
1720 It causes syntax errors to ignore to the next openbrace. */
1721 compstmt_or_error:
1722 compstmt
1723 {}
1724 | error compstmt
1725 ;
1726
1727 compstmt_start: '{' { compstmt_count++;
1728 $$ = c_begin_compound_stmt (); }
1729
1730 compstmt_nostart: '}'
1731 { $$ = convert (void_type_node, integer_zero_node); }
1732 | pushlevel maybe_label_decls compstmt_contents_nonempty '}' poplevel
1733 { $$ = poplevel (kept_level_p (), 1, 0);
1734 SCOPE_STMT_BLOCK (TREE_PURPOSE ($5))
1735 = SCOPE_STMT_BLOCK (TREE_VALUE ($5))
1736 = $$; }
1737 ;
1738
1739 compstmt_contents_nonempty:
1740 stmts_and_decls
1741 | error
1742 ;
1743
1744 compstmt_primary_start:
1745 '(' '{'
1746 { if (current_function_decl == 0)
1747 {
1748 error ("braced-group within expression allowed only inside a function");
1749 YYERROR;
1750 }
1751 /* We must force a BLOCK for this level
1752 so that, if it is not expanded later,
1753 there is a way to turn off the entire subtree of blocks
1754 that are contained in it. */
1755 keep_next_level ();
1756 push_label_level ();
1757 compstmt_count++;
1758 $$ = add_stmt (build_stmt (COMPOUND_STMT, last_tree));
1759 }
1760
1761 compstmt: compstmt_start compstmt_nostart
1762 { RECHAIN_STMTS ($1, COMPOUND_BODY ($1));
1763 $$ = $1; }
1764 ;
1765
1766 /* Value is number of statements counted as of the closeparen. */
1767 simple_if:
1768 if_prefix c99_block_lineno_labeled_stmt
1769 { c_finish_then (); }
1770 /* Make sure c_expand_end_cond is run once
1771 for each call to c_expand_start_cond.
1772 Otherwise a crash is likely. */
1773 | if_prefix error
1774 ;
1775
1776 if_prefix:
1777 IF '(' expr ')'
1778 { c_expand_start_cond (truthvalue_conversion ($3),
1779 compstmt_count);
1780 $<itype>$ = stmt_count;
1781 if_stmt_file = $<filename>-2;
1782 if_stmt_line = $<lineno>-1; }
1783 ;
1784
1785 /* This is a subroutine of stmt.
1786 It is used twice, once for valid DO statements
1787 and once for catching errors in parsing the end test. */
1788 do_stmt_start:
1789 DO
1790 { stmt_count++;
1791 compstmt_count++;
1792 $<ttype>$
1793 = add_stmt (build_stmt (DO_STMT, NULL_TREE,
1794 NULL_TREE));
1795 /* In the event that a parse error prevents
1796 parsing the complete do-statement, set the
1797 condition now. Otherwise, we can get crashes at
1798 RTL-generation time. */
1799 DO_COND ($<ttype>$) = error_mark_node; }
1800 c99_block_lineno_labeled_stmt WHILE
1801 { $$ = $<ttype>2;
1802 RECHAIN_STMTS ($$, DO_BODY ($$)); }
1803 ;
1804
1805 /* The forced readahead in here is because we might be at the end of a
1806 line, and the line and file won't be bumped until yylex absorbs the
1807 first token on the next line. */
1808 save_filename:
1809 { if (yychar == YYEMPTY)
1810 yychar = YYLEX;
1811 $$ = input_filename; }
1812 ;
1813
1814 save_lineno:
1815 { if (yychar == YYEMPTY)
1816 yychar = YYLEX;
1817 $$ = lineno; }
1818 ;
1819
1820 lineno_labeled_stmt:
1821 lineno_stmt
1822 | lineno_label lineno_labeled_stmt
1823 ;
1824
1825 /* Like lineno_labeled_stmt, but a block in C99. */
1826 c99_block_lineno_labeled_stmt:
1827 c99_block_start lineno_labeled_stmt c99_block_end
1828 { if (flag_isoc99)
1829 RECHAIN_STMTS ($1, COMPOUND_BODY ($1)); }
1830 ;
1831
1832 lineno_stmt:
1833 save_filename save_lineno stmt
1834 { if ($3)
1835 {
1836 STMT_LINENO ($3) = $2;
1837 /* ??? We currently have no way of recording
1838 the filename for a statement. This probably
1839 matters little in practice at the moment,
1840 but I suspect that problems will ocurr when
1841 doing inlining at the tree level. */
1842 }
1843 }
1844 ;
1845
1846 lineno_label:
1847 save_filename save_lineno label
1848 { if ($3)
1849 {
1850 STMT_LINENO ($3) = $2;
1851 }
1852 }
1853 ;
1854
1855 select_or_iter_stmt:
1856 simple_if ELSE
1857 { c_expand_start_else ();
1858 $<itype>1 = stmt_count; }
1859 c99_block_lineno_labeled_stmt
1860 { c_finish_else ();
1861 c_expand_end_cond ();
1862 if (extra_warnings && stmt_count == $<itype>1)
1863 warning ("empty body in an else-statement"); }
1864 | simple_if %prec IF
1865 { c_expand_end_cond ();
1866 /* This warning is here instead of in simple_if, because we
1867 do not want a warning if an empty if is followed by an
1868 else statement. Increment stmt_count so we don't
1869 give a second error if this is a nested `if'. */
1870 if (extra_warnings && stmt_count++ == $<itype>1)
1871 warning_with_file_and_line (if_stmt_file, if_stmt_line,
1872 "empty body in an if-statement"); }
1873 /* Make sure c_expand_end_cond is run once
1874 for each call to c_expand_start_cond.
1875 Otherwise a crash is likely. */
1876 | simple_if ELSE error
1877 { c_expand_end_cond (); }
1878 | WHILE
1879 { stmt_count++; }
1880 '(' expr ')'
1881 { $4 = truthvalue_conversion ($4);
1882 $<ttype>$
1883 = add_stmt (build_stmt (WHILE_STMT, $4, NULL_TREE)); }
1884 c99_block_lineno_labeled_stmt
1885 { RECHAIN_STMTS ($<ttype>6, WHILE_BODY ($<ttype>6)); }
1886 | do_stmt_start
1887 '(' expr ')' ';'
1888 { DO_COND ($1) = truthvalue_conversion ($3); }
1889 | do_stmt_start error
1890 { }
1891 | FOR
1892 { $<ttype>$ = build_stmt (FOR_STMT, NULL_TREE, NULL_TREE,
1893 NULL_TREE, NULL_TREE);
1894 add_stmt ($<ttype>$); }
1895 '(' for_init_stmt
1896 { stmt_count++;
1897 RECHAIN_STMTS ($<ttype>2, FOR_INIT_STMT ($<ttype>2)); }
1898 xexpr ';'
1899 { FOR_COND ($<ttype>2) = $6; }
1900 xexpr ')'
1901 { FOR_EXPR ($<ttype>2) = $9; }
1902 c99_block_lineno_labeled_stmt
1903 { RECHAIN_STMTS ($<ttype>2, FOR_BODY ($<ttype>2)); }
1904 | SWITCH '(' expr ')'
1905 { stmt_count++;
1906 $<ttype>$ = c_start_case ($3); }
1907 c99_block_lineno_labeled_stmt
1908 { c_finish_case (); }
1909 ;
1910
1911 for_init_stmt:
1912 xexpr ';'
1913 { add_stmt (build_stmt (EXPR_STMT, $1)); }
1914 | decl
1915 { check_for_loop_decls (); }
1916 ;
1917
1918 /* Parse a single real statement, not including any labels. */
1919 stmt:
1920 compstmt
1921 { stmt_count++; $$ = $1; }
1922 | expr ';'
1923 { stmt_count++;
1924 $$ = c_expand_expr_stmt ($1); }
1925 | c99_block_start select_or_iter_stmt c99_block_end
1926 { if (flag_isoc99)
1927 RECHAIN_STMTS ($1, COMPOUND_BODY ($1));
1928 $$ = NULL_TREE; }
1929 | BREAK ';'
1930 { stmt_count++;
1931 $$ = add_stmt (build_break_stmt ()); }
1932 | CONTINUE ';'
1933 { stmt_count++;
1934 $$ = add_stmt (build_continue_stmt ()); }
1935 | RETURN ';'
1936 { stmt_count++;
1937 $$ = c_expand_return (NULL_TREE); }
1938 | RETURN expr ';'
1939 { stmt_count++;
1940 $$ = c_expand_return ($2); }
1941 | ASM_KEYWORD maybe_type_qual '(' expr ')' ';'
1942 { stmt_count++;
1943 STRIP_NOPS ($4);
1944 if ((TREE_CODE ($4) == ADDR_EXPR
1945 && TREE_CODE (TREE_OPERAND ($4, 0)) == STRING_CST)
1946 || TREE_CODE ($4) == STRING_CST)
1947 {
1948 if (TREE_CODE ($4) == ADDR_EXPR)
1949 $4 = TREE_OPERAND ($4, 0);
1950 if (TREE_CHAIN ($4))
1951 $4 = combine_strings ($4);
1952 $$ = add_stmt (build_stmt (ASM_STMT, NULL_TREE, $4,
1953 NULL_TREE, NULL_TREE,
1954 NULL_TREE));
1955 }
1956 else
1957 {
1958 error ("argument of `asm' is not a constant string");
1959 $$ = NULL_TREE;
1960 }
1961 }
1962 /* This is the case with just output operands. */
1963 | ASM_KEYWORD maybe_type_qual '(' expr ':' asm_operands ')' ';'
1964 { stmt_count++;
1965 $$ = build_asm_stmt ($2, $4, $6, NULL_TREE, NULL_TREE); }
1966 /* This is the case with input operands as well. */
1967 | ASM_KEYWORD maybe_type_qual '(' expr ':' asm_operands ':'
1968 asm_operands ')' ';'
1969 { stmt_count++;
1970 $$ = build_asm_stmt ($2, $4, $6, $8, NULL_TREE); }
1971 /* This is the case with clobbered registers as well. */
1972 | ASM_KEYWORD maybe_type_qual '(' expr ':' asm_operands ':'
1973 asm_operands ':' asm_clobbers ')' ';'
1974 { stmt_count++;
1975 $$ = build_asm_stmt ($2, $4, $6, $8, $10); }
1976 | GOTO identifier ';'
1977 { tree decl;
1978 stmt_count++;
1979 decl = lookup_label ($2);
1980 if (decl != 0)
1981 {
1982 TREE_USED (decl) = 1;
1983 $$ = add_stmt (build_stmt (GOTO_STMT, decl));
1984 }
1985 else
1986 $$ = NULL_TREE;
1987 }
1988 | GOTO '*' expr ';'
1989 { if (pedantic)
1990 pedwarn ("ISO C forbids `goto *expr;'");
1991 stmt_count++;
1992 $3 = convert (ptr_type_node, $3);
1993 $$ = add_stmt (build_stmt (GOTO_STMT, $3)); }
1994 | ';'
1995 { $$ = NULL_TREE; }
1996 ;
1997
1998 /* Any kind of label, including jump labels and case labels.
1999 ANSI C accepts labels only before statements, but we allow them
2000 also at the end of a compound statement. */
2001
2002 label: CASE expr_no_commas ':'
2003 { stmt_count++;
2004 $$ = do_case ($2, NULL_TREE); }
2005 | CASE expr_no_commas ELLIPSIS expr_no_commas ':'
2006 { stmt_count++;
2007 $$ = do_case ($2, $4); }
2008 | DEFAULT ':'
2009 { stmt_count++;
2010 $$ = do_case (NULL_TREE, NULL_TREE); }
2011 | identifier save_filename save_lineno ':' maybe_attribute
2012 { tree label = define_label ($2, $3, $1);
2013 stmt_count++;
2014 if (label)
2015 {
2016 decl_attributes (label, $5, NULL_TREE);
2017 $$ = add_stmt (build_stmt (LABEL_STMT, label));
2018 }
2019 else
2020 $$ = NULL_TREE;
2021 }
2022 ;
2023
2024 /* Either a type-qualifier or nothing. First thing in an `asm' statement. */
2025
2026 maybe_type_qual:
2027 /* empty */
2028 { emit_line_note (input_filename, lineno);
2029 $$ = NULL_TREE; }
2030 | TYPE_QUAL
2031 { emit_line_note (input_filename, lineno); }
2032 ;
2033
2034 xexpr:
2035 /* empty */
2036 { $$ = NULL_TREE; }
2037 | expr
2038 ;
2039
2040 /* These are the operands other than the first string and colon
2041 in asm ("addextend %2,%1": "=dm" (x), "0" (y), "g" (*x)) */
2042 asm_operands: /* empty */
2043 { $$ = NULL_TREE; }
2044 | nonnull_asm_operands
2045 ;
2046
2047 nonnull_asm_operands:
2048 asm_operand
2049 | nonnull_asm_operands ',' asm_operand
2050 { $$ = chainon ($1, $3); }
2051 ;
2052
2053 asm_operand:
2054 STRING '(' expr ')'
2055 { $$ = build_tree_list ($1, $3); }
2056 ;
2057
2058 asm_clobbers:
2059 string
2060 { $$ = tree_cons (NULL_TREE, combine_strings ($1), NULL_TREE); }
2061 | asm_clobbers ',' string
2062 { $$ = tree_cons (NULL_TREE, combine_strings ($3), $1); }
2063 ;
2064 \f
2065 /* This is what appears inside the parens in a function declarator.
2066 Its value is a list of ..._TYPE nodes. */
2067 parmlist:
2068 { pushlevel (0);
2069 clear_parm_order ();
2070 declare_parm_level (0); }
2071 parmlist_1
2072 { $$ = $2;
2073 parmlist_tags_warning ();
2074 poplevel (0, 0, 0); }
2075 ;
2076
2077 parmlist_1:
2078 parmlist_2 ')'
2079 | parms ';'
2080 { tree parm;
2081 if (pedantic)
2082 pedwarn ("ISO C forbids forward parameter declarations");
2083 /* Mark the forward decls as such. */
2084 for (parm = getdecls (); parm; parm = TREE_CHAIN (parm))
2085 TREE_ASM_WRITTEN (parm) = 1;
2086 clear_parm_order (); }
2087 parmlist_1
2088 { $$ = $4; }
2089 | error ')'
2090 { $$ = tree_cons (NULL_TREE, NULL_TREE, NULL_TREE); }
2091 ;
2092
2093 /* This is what appears inside the parens in a function declarator.
2094 Is value is represented in the format that grokdeclarator expects. */
2095 parmlist_2: /* empty */
2096 { $$ = get_parm_info (0); }
2097 | ELLIPSIS
2098 { $$ = get_parm_info (0);
2099 /* Gcc used to allow this as an extension. However, it does
2100 not work for all targets, and thus has been disabled.
2101 Also, since func (...) and func () are indistinguishable,
2102 it caused problems with the code in expand_builtin which
2103 tries to verify that BUILT_IN_NEXT_ARG is being used
2104 correctly. */
2105 error ("ISO C requires a named argument before `...'");
2106 }
2107 | parms
2108 { $$ = get_parm_info (1); }
2109 | parms ',' ELLIPSIS
2110 { $$ = get_parm_info (0); }
2111 ;
2112
2113 parms:
2114 parm
2115 { push_parm_decl ($1); }
2116 | parms ',' parm
2117 { push_parm_decl ($3); }
2118 ;
2119
2120 /* A single parameter declaration or parameter type name,
2121 as found in a parmlist. */
2122 parm:
2123 typed_declspecs setspecs parm_declarator maybe_attribute
2124 { $$ = build_tree_list (build_tree_list (current_declspecs,
2125 $3),
2126 build_tree_list (prefix_attributes,
2127 $4));
2128 current_declspecs = TREE_VALUE (declspec_stack);
2129 prefix_attributes = TREE_PURPOSE (declspec_stack);
2130 declspec_stack = TREE_CHAIN (declspec_stack); }
2131 | typed_declspecs setspecs notype_declarator maybe_attribute
2132 { $$ = build_tree_list (build_tree_list (current_declspecs,
2133 $3),
2134 build_tree_list (prefix_attributes,
2135 $4));
2136 current_declspecs = TREE_VALUE (declspec_stack);
2137 prefix_attributes = TREE_PURPOSE (declspec_stack);
2138 declspec_stack = TREE_CHAIN (declspec_stack); }
2139 | typed_declspecs setspecs absdcl maybe_attribute
2140 { $$ = build_tree_list (build_tree_list (current_declspecs,
2141 $3),
2142 build_tree_list (prefix_attributes,
2143 $4));
2144 current_declspecs = TREE_VALUE (declspec_stack);
2145 prefix_attributes = TREE_PURPOSE (declspec_stack);
2146 declspec_stack = TREE_CHAIN (declspec_stack); }
2147 | declmods setspecs notype_declarator maybe_attribute
2148 { $$ = build_tree_list (build_tree_list (current_declspecs,
2149 $3),
2150 build_tree_list (prefix_attributes,
2151 $4));
2152 current_declspecs = TREE_VALUE (declspec_stack);
2153 prefix_attributes = TREE_PURPOSE (declspec_stack);
2154 declspec_stack = TREE_CHAIN (declspec_stack); }
2155
2156 | declmods setspecs absdcl maybe_attribute
2157 { $$ = build_tree_list (build_tree_list (current_declspecs,
2158 $3),
2159 build_tree_list (prefix_attributes,
2160 $4));
2161 current_declspecs = TREE_VALUE (declspec_stack);
2162 prefix_attributes = TREE_PURPOSE (declspec_stack);
2163 declspec_stack = TREE_CHAIN (declspec_stack); }
2164 ;
2165
2166 /* This is used in a function definition
2167 where either a parmlist or an identifier list is ok.
2168 Its value is a list of ..._TYPE nodes or a list of identifiers. */
2169 parmlist_or_identifiers:
2170 { pushlevel (0);
2171 clear_parm_order ();
2172 declare_parm_level (1); }
2173 parmlist_or_identifiers_1
2174 { $$ = $2;
2175 parmlist_tags_warning ();
2176 poplevel (0, 0, 0); }
2177 ;
2178
2179 parmlist_or_identifiers_1:
2180 parmlist_1
2181 | identifiers ')'
2182 { tree t;
2183 for (t = $1; t; t = TREE_CHAIN (t))
2184 if (TREE_VALUE (t) == NULL_TREE)
2185 error ("`...' in old-style identifier list");
2186 $$ = tree_cons (NULL_TREE, NULL_TREE, $1); }
2187 ;
2188
2189 /* A nonempty list of identifiers. */
2190 identifiers:
2191 IDENTIFIER
2192 { $$ = build_tree_list (NULL_TREE, $1); }
2193 | identifiers ',' IDENTIFIER
2194 { $$ = chainon ($1, build_tree_list (NULL_TREE, $3)); }
2195 ;
2196
2197 /* A nonempty list of identifiers, including typenames. */
2198 identifiers_or_typenames:
2199 identifier
2200 { $$ = build_tree_list (NULL_TREE, $1); }
2201 | identifiers_or_typenames ',' identifier
2202 { $$ = chainon ($1, build_tree_list (NULL_TREE, $3)); }
2203 ;
2204
2205 extension:
2206 EXTENSION
2207 { $$ = SAVE_WARN_FLAGS();
2208 pedantic = 0;
2209 warn_pointer_arith = 0; }
2210 ;
2211 \f
2212 ifobjc
2213 /* Objective-C productions. */
2214
2215 objcdef:
2216 classdef
2217 | classdecl
2218 | aliasdecl
2219 | protocoldef
2220 | methoddef
2221 | END
2222 {
2223 if (objc_implementation_context)
2224 {
2225 finish_class (objc_implementation_context);
2226 objc_ivar_chain = NULL_TREE;
2227 objc_implementation_context = NULL_TREE;
2228 }
2229 else
2230 warning ("`@end' must appear in an implementation context");
2231 }
2232 ;
2233
2234 /* A nonempty list of identifiers. */
2235 identifier_list:
2236 identifier
2237 { $$ = build_tree_list (NULL_TREE, $1); }
2238 | identifier_list ',' identifier
2239 { $$ = chainon ($1, build_tree_list (NULL_TREE, $3)); }
2240 ;
2241
2242 classdecl:
2243 CLASS identifier_list ';'
2244 {
2245 objc_declare_class ($2);
2246 }
2247
2248 aliasdecl:
2249 ALIAS identifier identifier ';'
2250 {
2251 objc_declare_alias ($2, $3);
2252 }
2253
2254 classdef:
2255 INTERFACE identifier protocolrefs '{'
2256 {
2257 objc_interface_context = objc_ivar_context
2258 = start_class (CLASS_INTERFACE_TYPE, $2, NULL_TREE, $3);
2259 objc_public_flag = 0;
2260 }
2261 ivar_decl_list '}'
2262 {
2263 continue_class (objc_interface_context);
2264 }
2265 methodprotolist
2266 END
2267 {
2268 finish_class (objc_interface_context);
2269 objc_interface_context = NULL_TREE;
2270 }
2271
2272 | INTERFACE identifier protocolrefs
2273 {
2274 objc_interface_context
2275 = start_class (CLASS_INTERFACE_TYPE, $2, NULL_TREE, $3);
2276 continue_class (objc_interface_context);
2277 }
2278 methodprotolist
2279 END
2280 {
2281 finish_class (objc_interface_context);
2282 objc_interface_context = NULL_TREE;
2283 }
2284
2285 | INTERFACE identifier ':' identifier protocolrefs '{'
2286 {
2287 objc_interface_context = objc_ivar_context
2288 = start_class (CLASS_INTERFACE_TYPE, $2, $4, $5);
2289 objc_public_flag = 0;
2290 }
2291 ivar_decl_list '}'
2292 {
2293 continue_class (objc_interface_context);
2294 }
2295 methodprotolist
2296 END
2297 {
2298 finish_class (objc_interface_context);
2299 objc_interface_context = NULL_TREE;
2300 }
2301
2302 | INTERFACE identifier ':' identifier protocolrefs
2303 {
2304 objc_interface_context
2305 = start_class (CLASS_INTERFACE_TYPE, $2, $4, $5);
2306 continue_class (objc_interface_context);
2307 }
2308 methodprotolist
2309 END
2310 {
2311 finish_class (objc_interface_context);
2312 objc_interface_context = NULL_TREE;
2313 }
2314
2315 | IMPLEMENTATION identifier '{'
2316 {
2317 objc_implementation_context = objc_ivar_context
2318 = start_class (CLASS_IMPLEMENTATION_TYPE, $2, NULL_TREE, NULL_TREE);
2319 objc_public_flag = 0;
2320 }
2321 ivar_decl_list '}'
2322 {
2323 objc_ivar_chain
2324 = continue_class (objc_implementation_context);
2325 }
2326
2327 | IMPLEMENTATION identifier
2328 {
2329 objc_implementation_context
2330 = start_class (CLASS_IMPLEMENTATION_TYPE, $2, NULL_TREE, NULL_TREE);
2331 objc_ivar_chain
2332 = continue_class (objc_implementation_context);
2333 }
2334
2335 | IMPLEMENTATION identifier ':' identifier '{'
2336 {
2337 objc_implementation_context = objc_ivar_context
2338 = start_class (CLASS_IMPLEMENTATION_TYPE, $2, $4, NULL_TREE);
2339 objc_public_flag = 0;
2340 }
2341 ivar_decl_list '}'
2342 {
2343 objc_ivar_chain
2344 = continue_class (objc_implementation_context);
2345 }
2346
2347 | IMPLEMENTATION identifier ':' identifier
2348 {
2349 objc_implementation_context
2350 = start_class (CLASS_IMPLEMENTATION_TYPE, $2, $4, NULL_TREE);
2351 objc_ivar_chain
2352 = continue_class (objc_implementation_context);
2353 }
2354
2355 | INTERFACE identifier '(' identifier ')' protocolrefs
2356 {
2357 objc_interface_context
2358 = start_class (CATEGORY_INTERFACE_TYPE, $2, $4, $6);
2359 continue_class (objc_interface_context);
2360 }
2361 methodprotolist
2362 END
2363 {
2364 finish_class (objc_interface_context);
2365 objc_interface_context = NULL_TREE;
2366 }
2367
2368 | IMPLEMENTATION identifier '(' identifier ')'
2369 {
2370 objc_implementation_context
2371 = start_class (CATEGORY_IMPLEMENTATION_TYPE, $2, $4, NULL_TREE);
2372 objc_ivar_chain
2373 = continue_class (objc_implementation_context);
2374 }
2375 ;
2376
2377 protocoldef:
2378 PROTOCOL identifier protocolrefs
2379 {
2380 remember_protocol_qualifiers ();
2381 objc_interface_context
2382 = start_protocol(PROTOCOL_INTERFACE_TYPE, $2, $3);
2383 }
2384 methodprotolist END
2385 {
2386 forget_protocol_qualifiers();
2387 finish_protocol(objc_interface_context);
2388 objc_interface_context = NULL_TREE;
2389 }
2390 ;
2391
2392 protocolrefs:
2393 /* empty */
2394 {
2395 $$ = NULL_TREE;
2396 }
2397 | non_empty_protocolrefs
2398 ;
2399
2400 non_empty_protocolrefs:
2401 ARITHCOMPARE identifier_list ARITHCOMPARE
2402 {
2403 if ($1 == LT_EXPR && $3 == GT_EXPR)
2404 $$ = $2;
2405 else
2406 YYERROR1;
2407 }
2408 ;
2409
2410 ivar_decl_list:
2411 ivar_decl_list visibility_spec ivar_decls
2412 | ivar_decls
2413 ;
2414
2415 visibility_spec:
2416 PRIVATE { objc_public_flag = 2; }
2417 | PROTECTED { objc_public_flag = 0; }
2418 | PUBLIC { objc_public_flag = 1; }
2419 ;
2420
2421 ivar_decls:
2422 /* empty */
2423 {
2424 $$ = NULL_TREE;
2425 }
2426 | ivar_decls ivar_decl ';'
2427 | ivar_decls ';'
2428 {
2429 if (pedantic)
2430 pedwarn ("extra semicolon in struct or union specified");
2431 }
2432 ;
2433
2434
2435 /* There is a shift-reduce conflict here, because `components' may
2436 start with a `typename'. It happens that shifting (the default resolution)
2437 does the right thing, because it treats the `typename' as part of
2438 a `typed_typespecs'.
2439
2440 It is possible that this same technique would allow the distinction
2441 between `notype_initdecls' and `initdecls' to be eliminated.
2442 But I am being cautious and not trying it. */
2443
2444 ivar_decl:
2445 typed_typespecs setspecs ivars
2446 { $$ = $3;
2447 current_declspecs = TREE_VALUE (declspec_stack);
2448 prefix_attributes = TREE_PURPOSE (declspec_stack);
2449 declspec_stack = TREE_CHAIN (declspec_stack); }
2450 | nonempty_type_quals setspecs ivars
2451 { $$ = $3;
2452 current_declspecs = TREE_VALUE (declspec_stack);
2453 prefix_attributes = TREE_PURPOSE (declspec_stack);
2454 declspec_stack = TREE_CHAIN (declspec_stack); }
2455 | error
2456 { $$ = NULL_TREE; }
2457 ;
2458
2459 ivars:
2460 /* empty */
2461 { $$ = NULL_TREE; }
2462 | ivar_declarator
2463 | ivars ',' ivar_declarator
2464 ;
2465
2466 ivar_declarator:
2467 declarator
2468 {
2469 $$ = add_instance_variable (objc_ivar_context,
2470 objc_public_flag,
2471 $1, current_declspecs,
2472 NULL_TREE);
2473 }
2474 | declarator ':' expr_no_commas
2475 {
2476 $$ = add_instance_variable (objc_ivar_context,
2477 objc_public_flag,
2478 $1, current_declspecs, $3);
2479 }
2480 | ':' expr_no_commas
2481 {
2482 $$ = add_instance_variable (objc_ivar_context,
2483 objc_public_flag,
2484 NULL_TREE,
2485 current_declspecs, $2);
2486 }
2487 ;
2488
2489 methoddef:
2490 '+'
2491 {
2492 remember_protocol_qualifiers ();
2493 if (objc_implementation_context)
2494 objc_inherit_code = CLASS_METHOD_DECL;
2495 else
2496 fatal ("method definition not in class context");
2497 }
2498 methoddecl
2499 {
2500 forget_protocol_qualifiers ();
2501 add_class_method (objc_implementation_context, $3);
2502 start_method_def ($3);
2503 objc_method_context = $3;
2504 }
2505 optarglist
2506 {
2507 continue_method_def ();
2508 }
2509 compstmt_or_error
2510 {
2511 finish_method_def ();
2512 objc_method_context = NULL_TREE;
2513 }
2514
2515 | '-'
2516 {
2517 remember_protocol_qualifiers ();
2518 if (objc_implementation_context)
2519 objc_inherit_code = INSTANCE_METHOD_DECL;
2520 else
2521 fatal ("method definition not in class context");
2522 }
2523 methoddecl
2524 {
2525 forget_protocol_qualifiers ();
2526 add_instance_method (objc_implementation_context, $3);
2527 start_method_def ($3);
2528 objc_method_context = $3;
2529 }
2530 optarglist
2531 {
2532 continue_method_def ();
2533 }
2534 compstmt_or_error
2535 {
2536 finish_method_def ();
2537 objc_method_context = NULL_TREE;
2538 }
2539 ;
2540
2541 /* the reason for the strange actions in this rule
2542 is so that notype_initdecls when reached via datadef
2543 can find a valid list of type and sc specs in $0. */
2544
2545 methodprotolist:
2546 /* empty */
2547 | {$<ttype>$ = NULL_TREE; } methodprotolist2
2548 ;
2549
2550 methodprotolist2: /* eliminates a shift/reduce conflict */
2551 methodproto
2552 | datadef
2553 | methodprotolist2 methodproto
2554 | methodprotolist2 {$<ttype>$ = NULL_TREE; } datadef
2555 ;
2556
2557 semi_or_error:
2558 ';'
2559 | error
2560 ;
2561
2562 methodproto:
2563 '+'
2564 {
2565 /* Remember protocol qualifiers in prototypes. */
2566 remember_protocol_qualifiers ();
2567 objc_inherit_code = CLASS_METHOD_DECL;
2568 }
2569 methoddecl
2570 {
2571 /* Forget protocol qualifiers here. */
2572 forget_protocol_qualifiers ();
2573 add_class_method (objc_interface_context, $3);
2574 }
2575 semi_or_error
2576
2577 | '-'
2578 {
2579 /* Remember protocol qualifiers in prototypes. */
2580 remember_protocol_qualifiers ();
2581 objc_inherit_code = INSTANCE_METHOD_DECL;
2582 }
2583 methoddecl
2584 {
2585 /* Forget protocol qualifiers here. */
2586 forget_protocol_qualifiers ();
2587 add_instance_method (objc_interface_context, $3);
2588 }
2589 semi_or_error
2590 ;
2591
2592 methoddecl:
2593 '(' typename ')' unaryselector
2594 {
2595 $$ = build_method_decl (objc_inherit_code, $2, $4, NULL_TREE);
2596 }
2597
2598 | unaryselector
2599 {
2600 $$ = build_method_decl (objc_inherit_code, NULL_TREE, $1, NULL_TREE);
2601 }
2602
2603 | '(' typename ')' keywordselector optparmlist
2604 {
2605 $$ = build_method_decl (objc_inherit_code, $2, $4, $5);
2606 }
2607
2608 | keywordselector optparmlist
2609 {
2610 $$ = build_method_decl (objc_inherit_code, NULL_TREE, $1, $2);
2611 }
2612 ;
2613
2614 /* "optarglist" assumes that start_method_def has already been called...
2615 if it is not, the "xdecls" will not be placed in the proper scope */
2616
2617 optarglist:
2618 /* empty */
2619 | ';' myxdecls
2620 ;
2621
2622 /* to get around the following situation: "int foo (int a) int b; {}" that
2623 is synthesized when parsing "- a:a b:b; id c; id d; { ... }" */
2624
2625 myxdecls:
2626 /* empty */
2627 | mydecls
2628 ;
2629
2630 mydecls:
2631 mydecl
2632 | errstmt
2633 | mydecls mydecl
2634 | mydecl errstmt
2635 ;
2636
2637 mydecl:
2638 typed_declspecs setspecs myparms ';'
2639 { current_declspecs = TREE_VALUE (declspec_stack);
2640 prefix_attributes = TREE_PURPOSE (declspec_stack);
2641 declspec_stack = TREE_CHAIN (declspec_stack); }
2642 | typed_declspecs ';'
2643 { shadow_tag ($1); }
2644 | declmods ';'
2645 { pedwarn ("empty declaration"); }
2646 ;
2647
2648 myparms:
2649 myparm
2650 { push_parm_decl ($1); }
2651 | myparms ',' myparm
2652 { push_parm_decl ($3); }
2653 ;
2654
2655 /* A single parameter declaration or parameter type name,
2656 as found in a parmlist. DOES NOT ALLOW AN INITIALIZER OR ASMSPEC */
2657
2658 myparm:
2659 parm_declarator maybe_attribute
2660 { $$ = build_tree_list (build_tree_list (current_declspecs,
2661 $1),
2662 build_tree_list (prefix_attributes,
2663 $2)); }
2664 | notype_declarator maybe_attribute
2665 { $$ = build_tree_list (build_tree_list (current_declspecs,
2666 $1),
2667 build_tree_list (prefix_attributes,
2668 $2)); }
2669 | absdcl maybe_attribute
2670 { $$ = build_tree_list (build_tree_list (current_declspecs,
2671 $1),
2672 build_tree_list (prefix_attributes,
2673 $2)); }
2674 ;
2675
2676 optparmlist:
2677 /* empty */
2678 {
2679 $$ = NULL_TREE;
2680 }
2681 | ',' ELLIPSIS
2682 {
2683 /* oh what a kludge! */
2684 $$ = objc_ellipsis_node;
2685 }
2686 | ','
2687 {
2688 pushlevel (0);
2689 }
2690 parmlist_2
2691 {
2692 /* returns a tree list node generated by get_parm_info */
2693 $$ = $3;
2694 poplevel (0, 0, 0);
2695 }
2696 ;
2697
2698 unaryselector:
2699 selector
2700 ;
2701
2702 keywordselector:
2703 keyworddecl
2704
2705 | keywordselector keyworddecl
2706 {
2707 $$ = chainon ($1, $2);
2708 }
2709 ;
2710
2711 selector:
2712 IDENTIFIER
2713 | TYPENAME
2714 | OBJECTNAME
2715 | reservedwords
2716 ;
2717
2718 reservedwords:
2719 ENUM | STRUCT | UNION | IF | ELSE | WHILE | DO | FOR
2720 | SWITCH | CASE | DEFAULT | BREAK | CONTINUE | RETURN
2721 | GOTO | ASM_KEYWORD | SIZEOF | TYPEOF | ALIGNOF
2722 | TYPESPEC | TYPE_QUAL
2723 ;
2724
2725 keyworddecl:
2726 selector ':' '(' typename ')' identifier
2727 {
2728 $$ = build_keyword_decl ($1, $4, $6);
2729 }
2730
2731 | selector ':' identifier
2732 {
2733 $$ = build_keyword_decl ($1, NULL_TREE, $3);
2734 }
2735
2736 | ':' '(' typename ')' identifier
2737 {
2738 $$ = build_keyword_decl (NULL_TREE, $3, $5);
2739 }
2740
2741 | ':' identifier
2742 {
2743 $$ = build_keyword_decl (NULL_TREE, NULL_TREE, $2);
2744 }
2745 ;
2746
2747 messageargs:
2748 selector
2749 | keywordarglist
2750 ;
2751
2752 keywordarglist:
2753 keywordarg
2754 | keywordarglist keywordarg
2755 {
2756 $$ = chainon ($1, $2);
2757 }
2758 ;
2759
2760
2761 keywordexpr:
2762 nonnull_exprlist
2763 {
2764 if (TREE_CHAIN ($1) == NULL_TREE)
2765 /* just return the expr., remove a level of indirection */
2766 $$ = TREE_VALUE ($1);
2767 else
2768 /* we have a comma expr., we will collapse later */
2769 $$ = $1;
2770 }
2771 ;
2772
2773 keywordarg:
2774 selector ':' keywordexpr
2775 {
2776 $$ = build_tree_list ($1, $3);
2777 }
2778 | ':' keywordexpr
2779 {
2780 $$ = build_tree_list (NULL_TREE, $2);
2781 }
2782 ;
2783
2784 receiver:
2785 expr
2786 | CLASSNAME
2787 {
2788 $$ = get_class_reference ($1);
2789 }
2790 ;
2791
2792 objcmessageexpr:
2793 '['
2794 { objc_receiver_context = 1; }
2795 receiver
2796 { objc_receiver_context = 0; }
2797 messageargs ']'
2798 {
2799 $$ = build_tree_list ($3, $5);
2800 }
2801 ;
2802
2803 selectorarg:
2804 selector
2805 | keywordnamelist
2806 ;
2807
2808 keywordnamelist:
2809 keywordname
2810 | keywordnamelist keywordname
2811 {
2812 $$ = chainon ($1, $2);
2813 }
2814 ;
2815
2816 keywordname:
2817 selector ':'
2818 {
2819 $$ = build_tree_list ($1, NULL_TREE);
2820 }
2821 | ':'
2822 {
2823 $$ = build_tree_list (NULL_TREE, NULL_TREE);
2824 }
2825 ;
2826
2827 objcselectorexpr:
2828 SELECTOR '(' selectorarg ')'
2829 {
2830 $$ = $3;
2831 }
2832 ;
2833
2834 objcprotocolexpr:
2835 PROTOCOL '(' identifier ')'
2836 {
2837 $$ = $3;
2838 }
2839 ;
2840
2841 /* extension to support C-structures in the archiver */
2842
2843 objcencodeexpr:
2844 ENCODE '(' typename ')'
2845 {
2846 $$ = groktypename ($3);
2847 }
2848 ;
2849
2850 end ifobjc
2851 %%
2852
2853 /* yylex() is a thin wrapper around c_lex(), all it does is translate
2854 cpplib.h's token codes into yacc's token codes. */
2855
2856 static enum cpp_ttype last_token;
2857
2858 /* The reserved keyword table. */
2859 struct resword
2860 {
2861 const char *word;
2862 ENUM_BITFIELD(rid) rid : 16;
2863 unsigned int disable : 16;
2864 };
2865
2866 /* Disable mask. Keywords are disabled if (reswords[i].disable & mask) is
2867 _true_. */
2868 #define D_TRAD 0x01 /* not in traditional C */
2869 #define D_C89 0x02 /* not in C89 */
2870 #define D_EXT 0x04 /* GCC extension */
2871 #define D_EXT89 0x08 /* GCC extension incorporated in C99 */
2872 #define D_OBJC 0x10 /* Objective C only */
2873 #define D_YES 0x20 /* always starts disabled */
2874
2875 static const struct resword reswords[] =
2876 {
2877 { "_Bool", RID_BOOL, 0 },
2878 { "_Complex", RID_COMPLEX, 0 },
2879 { "__alignof", RID_ALIGNOF, 0 },
2880 { "__alignof__", RID_ALIGNOF, 0 },
2881 { "__asm", RID_ASM, 0 },
2882 { "__asm__", RID_ASM, 0 },
2883 { "__attribute", RID_ATTRIBUTE, 0 },
2884 { "__attribute__", RID_ATTRIBUTE, 0 },
2885 { "__bounded", RID_BOUNDED, 0 },
2886 { "__bounded__", RID_BOUNDED, 0 },
2887 { "__builtin_va_arg", RID_VA_ARG, 0 },
2888 { "__complex", RID_COMPLEX, 0 },
2889 { "__complex__", RID_COMPLEX, 0 },
2890 { "__const", RID_CONST, 0 },
2891 { "__const__", RID_CONST, 0 },
2892 { "__extension__", RID_EXTENSION, 0 },
2893 { "__imag", RID_IMAGPART, 0 },
2894 { "__imag__", RID_IMAGPART, 0 },
2895 { "__inline", RID_INLINE, 0 },
2896 { "__inline__", RID_INLINE, 0 },
2897 { "__label__", RID_LABEL, 0 },
2898 { "__ptrbase", RID_PTRBASE, 0 },
2899 { "__ptrbase__", RID_PTRBASE, 0 },
2900 { "__ptrextent", RID_PTREXTENT, 0 },
2901 { "__ptrextent__", RID_PTREXTENT, 0 },
2902 { "__ptrvalue", RID_PTRVALUE, 0 },
2903 { "__ptrvalue__", RID_PTRVALUE, 0 },
2904 { "__real", RID_REALPART, 0 },
2905 { "__real__", RID_REALPART, 0 },
2906 { "__restrict", RID_RESTRICT, 0 },
2907 { "__restrict__", RID_RESTRICT, 0 },
2908 { "__signed", RID_SIGNED, 0 },
2909 { "__signed__", RID_SIGNED, 0 },
2910 { "__typeof", RID_TYPEOF, 0 },
2911 { "__typeof__", RID_TYPEOF, 0 },
2912 { "__unbounded", RID_UNBOUNDED, 0 },
2913 { "__unbounded__", RID_UNBOUNDED, 0 },
2914 { "__volatile", RID_VOLATILE, 0 },
2915 { "__volatile__", RID_VOLATILE, 0 },
2916 { "asm", RID_ASM, D_EXT },
2917 { "auto", RID_AUTO, 0 },
2918 { "break", RID_BREAK, 0 },
2919 { "case", RID_CASE, 0 },
2920 { "char", RID_CHAR, 0 },
2921 { "const", RID_CONST, D_TRAD },
2922 { "continue", RID_CONTINUE, 0 },
2923 { "default", RID_DEFAULT, 0 },
2924 { "do", RID_DO, 0 },
2925 { "double", RID_DOUBLE, 0 },
2926 { "else", RID_ELSE, 0 },
2927 { "enum", RID_ENUM, 0 },
2928 { "extern", RID_EXTERN, 0 },
2929 { "float", RID_FLOAT, 0 },
2930 { "for", RID_FOR, 0 },
2931 { "goto", RID_GOTO, 0 },
2932 { "if", RID_IF, 0 },
2933 { "inline", RID_INLINE, D_TRAD|D_EXT89 },
2934 { "int", RID_INT, 0 },
2935 { "long", RID_LONG, 0 },
2936 { "register", RID_REGISTER, 0 },
2937 { "restrict", RID_RESTRICT, D_TRAD|D_C89 },
2938 { "return", RID_RETURN, 0 },
2939 { "short", RID_SHORT, 0 },
2940 { "signed", RID_SIGNED, D_TRAD },
2941 { "sizeof", RID_SIZEOF, 0 },
2942 { "static", RID_STATIC, 0 },
2943 { "struct", RID_STRUCT, 0 },
2944 { "switch", RID_SWITCH, 0 },
2945 { "typedef", RID_TYPEDEF, 0 },
2946 { "typeof", RID_TYPEOF, D_TRAD|D_EXT },
2947 { "union", RID_UNION, 0 },
2948 { "unsigned", RID_UNSIGNED, 0 },
2949 { "void", RID_VOID, 0 },
2950 { "volatile", RID_VOLATILE, D_TRAD },
2951 { "while", RID_WHILE, 0 },
2952 ifobjc
2953 { "@class", RID_AT_CLASS, D_OBJC },
2954 { "@compatibility_alias", RID_AT_ALIAS, D_OBJC },
2955 { "@defs", RID_AT_DEFS, D_OBJC },
2956 { "@encode", RID_AT_ENCODE, D_OBJC },
2957 { "@end", RID_AT_END, D_OBJC },
2958 { "@implementation", RID_AT_IMPLEMENTATION, D_OBJC },
2959 { "@interface", RID_AT_INTERFACE, D_OBJC },
2960 { "@private", RID_AT_PRIVATE, D_OBJC },
2961 { "@protected", RID_AT_PROTECTED, D_OBJC },
2962 { "@protocol", RID_AT_PROTOCOL, D_OBJC },
2963 { "@public", RID_AT_PUBLIC, D_OBJC },
2964 { "@selector", RID_AT_SELECTOR, D_OBJC },
2965 { "id", RID_ID, D_OBJC },
2966 { "bycopy", RID_BYCOPY, D_OBJC|D_YES },
2967 { "byref", RID_BYREF, D_OBJC|D_YES },
2968 { "in", RID_IN, D_OBJC|D_YES },
2969 { "inout", RID_INOUT, D_OBJC|D_YES },
2970 { "oneway", RID_ONEWAY, D_OBJC|D_YES },
2971 { "out", RID_OUT, D_OBJC|D_YES },
2972 end ifobjc
2973 };
2974 #define N_reswords (sizeof reswords / sizeof (struct resword))
2975
2976 /* Table mapping from RID_* constants to yacc token numbers.
2977 Unfortunately we have to have entries for all the keywords in all
2978 three languages. */
2979 static const short rid_to_yy[RID_MAX] =
2980 {
2981 /* RID_STATIC */ SCSPEC,
2982 /* RID_UNSIGNED */ TYPESPEC,
2983 /* RID_LONG */ TYPESPEC,
2984 /* RID_CONST */ TYPE_QUAL,
2985 /* RID_EXTERN */ SCSPEC,
2986 /* RID_REGISTER */ SCSPEC,
2987 /* RID_TYPEDEF */ SCSPEC,
2988 /* RID_SHORT */ TYPESPEC,
2989 /* RID_INLINE */ SCSPEC,
2990 /* RID_VOLATILE */ TYPE_QUAL,
2991 /* RID_SIGNED */ TYPESPEC,
2992 /* RID_AUTO */ SCSPEC,
2993 /* RID_RESTRICT */ TYPE_QUAL,
2994
2995 /* C extensions */
2996 /* RID_BOUNDED */ TYPE_QUAL,
2997 /* RID_UNBOUNDED */ TYPE_QUAL,
2998 /* RID_COMPLEX */ TYPESPEC,
2999
3000 /* C++ */
3001 /* RID_FRIEND */ 0,
3002 /* RID_VIRTUAL */ 0,
3003 /* RID_EXPLICIT */ 0,
3004 /* RID_EXPORT */ 0,
3005 /* RID_MUTABLE */ 0,
3006
3007 /* ObjC */
3008 /* RID_IN */ TYPE_QUAL,
3009 /* RID_OUT */ TYPE_QUAL,
3010 /* RID_INOUT */ TYPE_QUAL,
3011 /* RID_BYCOPY */ TYPE_QUAL,
3012 /* RID_BYREF */ TYPE_QUAL,
3013 /* RID_ONEWAY */ TYPE_QUAL,
3014
3015 /* C */
3016 /* RID_INT */ TYPESPEC,
3017 /* RID_CHAR */ TYPESPEC,
3018 /* RID_FLOAT */ TYPESPEC,
3019 /* RID_DOUBLE */ TYPESPEC,
3020 /* RID_VOID */ TYPESPEC,
3021 /* RID_ENUM */ ENUM,
3022 /* RID_STRUCT */ STRUCT,
3023 /* RID_UNION */ UNION,
3024 /* RID_IF */ IF,
3025 /* RID_ELSE */ ELSE,
3026 /* RID_WHILE */ WHILE,
3027 /* RID_DO */ DO,
3028 /* RID_FOR */ FOR,
3029 /* RID_SWITCH */ SWITCH,
3030 /* RID_CASE */ CASE,
3031 /* RID_DEFAULT */ DEFAULT,
3032 /* RID_BREAK */ BREAK,
3033 /* RID_CONTINUE */ CONTINUE,
3034 /* RID_RETURN */ RETURN,
3035 /* RID_GOTO */ GOTO,
3036 /* RID_SIZEOF */ SIZEOF,
3037
3038 /* C extensions */
3039 /* RID_ASM */ ASM_KEYWORD,
3040 /* RID_TYPEOF */ TYPEOF,
3041 /* RID_ALIGNOF */ ALIGNOF,
3042 /* RID_ATTRIBUTE */ ATTRIBUTE,
3043 /* RID_VA_ARG */ VA_ARG,
3044 /* RID_EXTENSION */ EXTENSION,
3045 /* RID_IMAGPART */ IMAGPART,
3046 /* RID_REALPART */ REALPART,
3047 /* RID_LABEL */ LABEL,
3048 /* RID_PTRBASE */ PTR_BASE,
3049 /* RID_PTREXTENT */ PTR_EXTENT,
3050 /* RID_PTRVALUE */ PTR_VALUE,
3051
3052 /* C++ */
3053 /* RID_BOOL */ TYPESPEC,
3054 /* RID_WCHAR */ 0,
3055 /* RID_CLASS */ 0,
3056 /* RID_PUBLIC */ 0,
3057 /* RID_PRIVATE */ 0,
3058 /* RID_PROTECTED */ 0,
3059 /* RID_TEMPLATE */ 0,
3060 /* RID_NULL */ 0,
3061 /* RID_CATCH */ 0,
3062 /* RID_DELETE */ 0,
3063 /* RID_FALSE */ 0,
3064 /* RID_NAMESPACE */ 0,
3065 /* RID_NEW */ 0,
3066 /* RID_OPERATOR */ 0,
3067 /* RID_THIS */ 0,
3068 /* RID_THROW */ 0,
3069 /* RID_TRUE */ 0,
3070 /* RID_TRY */ 0,
3071 /* RID_TYPENAME */ 0,
3072 /* RID_TYPEID */ 0,
3073 /* RID_USING */ 0,
3074
3075 /* casts */
3076 /* RID_CONSTCAST */ 0,
3077 /* RID_DYNCAST */ 0,
3078 /* RID_REINTCAST */ 0,
3079 /* RID_STATCAST */ 0,
3080
3081 /* alternate spellings */
3082 /* RID_AND */ 0,
3083 /* RID_AND_EQ */ 0,
3084 /* RID_NOT */ 0,
3085 /* RID_NOT_EQ */ 0,
3086 /* RID_OR */ 0,
3087 /* RID_OR_EQ */ 0,
3088 /* RID_XOR */ 0,
3089 /* RID_XOR_EQ */ 0,
3090 /* RID_BITAND */ 0,
3091 /* RID_BITOR */ 0,
3092 /* RID_COMPL */ 0,
3093
3094 /* Objective C */
3095 /* RID_ID */ OBJECTNAME,
3096 /* RID_AT_ENCODE */ ENCODE,
3097 /* RID_AT_END */ END,
3098 /* RID_AT_CLASS */ CLASS,
3099 /* RID_AT_ALIAS */ ALIAS,
3100 /* RID_AT_DEFS */ DEFS,
3101 /* RID_AT_PRIVATE */ PRIVATE,
3102 /* RID_AT_PROTECTED */ PROTECTED,
3103 /* RID_AT_PUBLIC */ PUBLIC,
3104 /* RID_AT_PROTOCOL */ PROTOCOL,
3105 /* RID_AT_SELECTOR */ SELECTOR,
3106 /* RID_AT_INTERFACE */ INTERFACE,
3107 /* RID_AT_IMPLEMENTATION */ IMPLEMENTATION
3108 };
3109
3110 static void
3111 init_reswords ()
3112 {
3113 unsigned int i;
3114 tree id;
3115 int mask = ((doing_objc_thang ? 0 : D_OBJC)
3116 | (flag_isoc99 ? 0 : D_C89)
3117 | (flag_traditional ? D_TRAD : 0)
3118 | (flag_no_asm ? (flag_isoc99 ? D_EXT : D_EXT|D_EXT89) : 0));
3119
3120 /* It is not necessary to register ridpointers as a GC root, because
3121 all the trees it points to are permanently interned in the
3122 get_identifier hash anyway. */
3123 ridpointers = (tree *) xcalloc ((int) RID_MAX, sizeof (tree));
3124 for (i = 0; i < N_reswords; i++)
3125 {
3126 /* If a keyword is disabled, do not enter it into the table
3127 and so create a canonical spelling that isn't a keyword. */
3128 if (reswords[i].disable & mask)
3129 continue;
3130
3131 id = get_identifier (reswords[i].word);
3132 C_RID_CODE (id) = reswords[i].rid;
3133 ridpointers [(int) reswords[i].rid] = id;
3134
3135 /* Objective C does tricky things with enabling and disabling
3136 keywords. So these we must not elide in the test above, but
3137 wait and not mark them reserved now. */
3138 if (! (reswords[i].disable & D_YES))
3139 C_IS_RESERVED_WORD (id) = 1;
3140 }
3141 }
3142
3143 const char *
3144 init_parse (filename)
3145 const char *filename;
3146 {
3147 add_c_tree_codes ();
3148
3149 /* Make identifier nodes long enough for the language-specific slots. */
3150 set_identifier_size (sizeof (struct lang_identifier));
3151
3152 init_reswords ();
3153 init_pragma ();
3154
3155 return init_c_lex (filename);
3156 }
3157
3158 void
3159 finish_parse ()
3160 {
3161 cpp_finish (parse_in);
3162 errorcount += parse_in->errors;
3163 }
3164
3165 #define NAME(type) cpp_type2name (type)
3166
3167 static void
3168 yyerror (msgid)
3169 const char *msgid;
3170 {
3171 const char *string = _(msgid);
3172
3173 if (last_token == CPP_EOF)
3174 error ("%s at end of input", string);
3175 else if (last_token == CPP_CHAR || last_token == CPP_WCHAR)
3176 {
3177 unsigned int val = TREE_INT_CST_LOW (yylval.ttype);
3178 const char *ell = (last_token == CPP_CHAR) ? "" : "L";
3179 if (val <= UCHAR_MAX && ISGRAPH (val))
3180 error ("%s before %s'%c'", string, ell, val);
3181 else
3182 error ("%s before %s'\\x%x'", string, ell, val);
3183 }
3184 else if (last_token == CPP_STRING
3185 || last_token == CPP_WSTRING
3186 || last_token == CPP_OSTRING)
3187 error ("%s before string constant", string);
3188 else if (last_token == CPP_NUMBER
3189 || last_token == CPP_INT
3190 || last_token == CPP_FLOAT)
3191 error ("%s before numeric constant", string);
3192 else if (last_token == CPP_NAME)
3193 error ("%s before \"%s\"", string, IDENTIFIER_POINTER (yylval.ttype));
3194 else
3195 error ("%s before '%s' token", string, NAME(last_token));
3196 }
3197
3198 static inline int
3199 _yylex ()
3200 {
3201 retry:
3202 last_token = c_lex (&yylval.ttype);
3203
3204 switch (last_token)
3205 {
3206 case CPP_EQ: return '=';
3207 case CPP_NOT: return '!';
3208 case CPP_GREATER: yylval.code = GT_EXPR; return ARITHCOMPARE;
3209 case CPP_LESS: yylval.code = LT_EXPR; return ARITHCOMPARE;
3210 case CPP_PLUS: yylval.code = PLUS_EXPR; return '+';
3211 case CPP_MINUS: yylval.code = MINUS_EXPR; return '-';
3212 case CPP_MULT: yylval.code = MULT_EXPR; return '*';
3213 case CPP_DIV: yylval.code = TRUNC_DIV_EXPR; return '/';
3214 case CPP_MOD: yylval.code = TRUNC_MOD_EXPR; return '%';
3215 case CPP_AND: yylval.code = BIT_AND_EXPR; return '&';
3216 case CPP_OR: yylval.code = BIT_IOR_EXPR; return '|';
3217 case CPP_XOR: yylval.code = BIT_XOR_EXPR; return '^';
3218 case CPP_RSHIFT: yylval.code = RSHIFT_EXPR; return RSHIFT;
3219 case CPP_LSHIFT: yylval.code = LSHIFT_EXPR; return LSHIFT;
3220
3221 case CPP_COMPL: return '~';
3222 case CPP_AND_AND: return ANDAND;
3223 case CPP_OR_OR: return OROR;
3224 case CPP_QUERY: return '?';
3225 case CPP_COLON: return ':';
3226 case CPP_COMMA: return ',';
3227 case CPP_OPEN_PAREN: return '(';
3228 case CPP_CLOSE_PAREN: return ')';
3229 case CPP_EQ_EQ: yylval.code = EQ_EXPR; return EQCOMPARE;
3230 case CPP_NOT_EQ: yylval.code = NE_EXPR; return EQCOMPARE;
3231 case CPP_GREATER_EQ:yylval.code = GE_EXPR; return ARITHCOMPARE;
3232 case CPP_LESS_EQ: yylval.code = LE_EXPR; return ARITHCOMPARE;
3233
3234 case CPP_PLUS_EQ: yylval.code = PLUS_EXPR; return ASSIGN;
3235 case CPP_MINUS_EQ: yylval.code = MINUS_EXPR; return ASSIGN;
3236 case CPP_MULT_EQ: yylval.code = MULT_EXPR; return ASSIGN;
3237 case CPP_DIV_EQ: yylval.code = TRUNC_DIV_EXPR; return ASSIGN;
3238 case CPP_MOD_EQ: yylval.code = TRUNC_MOD_EXPR; return ASSIGN;
3239 case CPP_AND_EQ: yylval.code = BIT_AND_EXPR; return ASSIGN;
3240 case CPP_OR_EQ: yylval.code = BIT_IOR_EXPR; return ASSIGN;
3241 case CPP_XOR_EQ: yylval.code = BIT_XOR_EXPR; return ASSIGN;
3242 case CPP_RSHIFT_EQ: yylval.code = RSHIFT_EXPR; return ASSIGN;
3243 case CPP_LSHIFT_EQ: yylval.code = LSHIFT_EXPR; return ASSIGN;
3244
3245 case CPP_OPEN_SQUARE: return '[';
3246 case CPP_CLOSE_SQUARE: return ']';
3247 case CPP_OPEN_BRACE: return '{';
3248 case CPP_CLOSE_BRACE: return '}';
3249 case CPP_SEMICOLON: return ';';
3250 case CPP_ELLIPSIS: return ELLIPSIS;
3251
3252 case CPP_PLUS_PLUS: return PLUSPLUS;
3253 case CPP_MINUS_MINUS: return MINUSMINUS;
3254 case CPP_DEREF: return POINTSAT;
3255 case CPP_DOT: return '.';
3256
3257 case CPP_EOF:
3258 cpp_pop_buffer (parse_in);
3259 if (! CPP_BUFFER (parse_in))
3260 return 0;
3261 goto retry;
3262
3263 case CPP_NAME:
3264 if (C_IS_RESERVED_WORD (yylval.ttype))
3265 {
3266 enum rid rid_code = C_RID_CODE (yylval.ttype);
3267 /* Return the canonical spelling for this keyword. */
3268 yylval.ttype = ridpointers[(int) rid_code];
3269 return rid_to_yy[(int) rid_code];
3270 }
3271
3272 if (IDENTIFIER_POINTER (yylval.ttype)[0] == '@')
3273 {
3274 error ("invalid identifier `%s'", IDENTIFIER_POINTER (yylval.ttype));
3275 return IDENTIFIER;
3276 }
3277
3278 {
3279 tree decl;
3280
3281 decl = lookup_name (yylval.ttype);
3282
3283 if (decl)
3284 {
3285 if (TREE_CODE (decl) == TYPE_DECL)
3286 return TYPENAME;
3287 /* A user-invisible read-only initialized variable
3288 should be replaced by its value.
3289 We handle only strings since that's the only case used in C. */
3290 else if (TREE_CODE (decl) == VAR_DECL
3291 && DECL_IGNORED_P (decl)
3292 && TREE_READONLY (decl)
3293 && DECL_INITIAL (decl) != 0
3294 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST)
3295 {
3296 tree stringval = DECL_INITIAL (decl);
3297
3298 /* Copy the string value so that we won't clobber anything
3299 if we put something in the TREE_CHAIN of this one. */
3300 yylval.ttype = build_string (TREE_STRING_LENGTH (stringval),
3301 TREE_STRING_POINTER (stringval));
3302 return STRING;
3303 }
3304 }
3305 else if (doing_objc_thang)
3306 {
3307 tree objc_interface_decl = is_class_name (yylval.ttype);
3308
3309 if (objc_interface_decl)
3310 {
3311 yylval.ttype = objc_interface_decl;
3312 return CLASSNAME;
3313 }
3314 }
3315
3316 return IDENTIFIER;
3317 }
3318
3319 case CPP_INT:
3320 case CPP_FLOAT:
3321 case CPP_NUMBER:
3322 case CPP_CHAR:
3323 case CPP_WCHAR:
3324 return CONSTANT;
3325
3326 case CPP_STRING:
3327 case CPP_WSTRING:
3328 return STRING;
3329
3330 case CPP_OSTRING:
3331 return OBJC_STRING;
3332
3333 /* These tokens are C++ specific (and will not be generated
3334 in C mode, but let's be cautious). */
3335 case CPP_SCOPE:
3336 case CPP_DEREF_STAR:
3337 case CPP_DOT_STAR:
3338 case CPP_MIN_EQ:
3339 case CPP_MAX_EQ:
3340 case CPP_MIN:
3341 case CPP_MAX:
3342 /* These tokens should not survive translation phase 4. */
3343 case CPP_HASH:
3344 case CPP_PASTE:
3345 error ("syntax error before '%s' token", NAME(last_token));
3346 goto retry;
3347
3348 default:
3349 abort ();
3350 }
3351
3352 /* NOTREACHED */
3353 }
3354
3355 static int
3356 yylex()
3357 {
3358 int r;
3359 timevar_push (TV_LEX);
3360 r = _yylex();
3361 timevar_pop (TV_LEX);
3362 return r;
3363 }
3364
3365 /* Sets the value of the 'yydebug' variable to VALUE.
3366 This is a function so we don't have to have YYDEBUG defined
3367 in order to build the compiler. */
3368
3369 void
3370 set_yydebug (value)
3371 int value;
3372 {
3373 #if YYDEBUG != 0
3374 yydebug = value;
3375 #else
3376 warning ("YYDEBUG not defined.");
3377 #endif
3378 }
3379
3380 /* Function used when yydebug is set, to print a token in more detail. */
3381
3382 static void
3383 yyprint (file, yychar, yyl)
3384 FILE *file;
3385 int yychar;
3386 YYSTYPE yyl;
3387 {
3388 tree t = yyl.ttype;
3389
3390 fprintf (file, " [%s]", NAME(last_token));
3391
3392 switch (yychar)
3393 {
3394 case IDENTIFIER:
3395 case TYPENAME:
3396 case OBJECTNAME:
3397 case TYPESPEC:
3398 case TYPE_QUAL:
3399 case SCSPEC:
3400 if (IDENTIFIER_POINTER (t))
3401 fprintf (file, " `%s'", IDENTIFIER_POINTER (t));
3402 break;
3403
3404 case CONSTANT:
3405 fprintf (file, " %s", GET_MODE_NAME (TYPE_MODE (TREE_TYPE (t))));
3406 if (TREE_CODE (t) == INTEGER_CST)
3407 fprintf (file,
3408 #if HOST_BITS_PER_WIDE_INT == 64
3409 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
3410 " 0x%x%016x",
3411 #else
3412 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
3413 " 0x%lx%016lx",
3414 #else
3415 " 0x%llx%016llx",
3416 #endif
3417 #endif
3418 #else
3419 #if HOST_BITS_PER_WIDE_INT != HOST_BITS_PER_INT
3420 " 0x%lx%08lx",
3421 #else
3422 " 0x%x%08x",
3423 #endif
3424 #endif
3425 TREE_INT_CST_HIGH (t), TREE_INT_CST_LOW (t));
3426 break;
3427 }
3428 }
3429 \f
3430 /* This is not the ideal place to put these, but we have to get them out
3431 of c-lex.c because cp/lex.c has its own versions. */
3432
3433 /* Return something to represent absolute declarators containing a *.
3434 TARGET is the absolute declarator that the * contains.
3435 TYPE_QUALS is a list of modifiers such as const or volatile
3436 to apply to the pointer type, represented as identifiers.
3437
3438 We return an INDIRECT_REF whose "contents" are TARGET
3439 and whose type is the modifier list. */
3440
3441 tree
3442 make_pointer_declarator (type_quals, target)
3443 tree type_quals, target;
3444 {
3445 return build1 (INDIRECT_REF, type_quals, target);
3446 }