OSDN Git Service

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