OSDN Git Service

* gcc.target/mips/mips.exp: Comment !CPU in the isa* pseudo-options.
[pf3gnuchains/gcc-fork.git] / gcc / c-parser.c
1 /* Parser for C and Objective-C.
2    Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3    1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009
4    Free Software Foundation, Inc.
5
6    Parser actions based on the old Bison parser; structure somewhat
7    influenced by and fragments based on the C++ parser.
8
9 This file is part of GCC.
10
11 GCC is free software; you can redistribute it and/or modify it under
12 the terms of the GNU General Public License as published by the Free
13 Software Foundation; either version 3, or (at your option) any later
14 version.
15
16 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
17 WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19 for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with GCC; see the file COPYING3.  If not see
23 <http://www.gnu.org/licenses/>.  */
24
25 /* TODO:
26
27    Make sure all relevant comments, and all relevant code from all
28    actions, brought over from old parser.  Verify exact correspondence
29    of syntax accepted.
30
31    Add testcases covering every input symbol in every state in old and
32    new parsers.
33
34    Include full syntax for GNU C, including erroneous cases accepted
35    with error messages, in syntax productions in comments.
36
37    Make more diagnostics in the front end generally take an explicit
38    location rather than implicitly using input_location.  */
39
40 #include "config.h"
41 #include "system.h"
42 #include "coretypes.h"
43 #include "tm.h"
44 #include "tree.h"
45 #include "rtl.h"
46 #include "langhooks.h"
47 #include "input.h"
48 #include "cpplib.h"
49 #include "timevar.h"
50 #include "c-pragma.h"
51 #include "c-tree.h"
52 #include "flags.h"
53 #include "output.h"
54 #include "toplev.h"
55 #include "ggc.h"
56 #include "c-common.h"
57 #include "vec.h"
58 #include "target.h"
59 #include "cgraph.h"
60
61 \f
62 /* Initialization routine for this file.  */
63
64 void
65 c_parse_init (void)
66 {
67   /* The only initialization required is of the reserved word
68      identifiers.  */
69   unsigned int i;
70   tree id;
71   int mask = 0;
72
73   mask |= D_CXXONLY;
74   if (!flag_isoc99)
75     mask |= D_C99;
76   if (flag_no_asm)
77     {
78       mask |= D_ASM | D_EXT;
79       if (!flag_isoc99)
80         mask |= D_EXT89;
81     }
82   if (!c_dialect_objc ())
83     mask |= D_OBJC | D_CXX_OBJC;
84
85   ridpointers = GGC_CNEWVEC (tree, (int) RID_MAX);
86   for (i = 0; i < num_c_common_reswords; i++)
87     {
88       /* If a keyword is disabled, do not enter it into the table
89          and so create a canonical spelling that isn't a keyword.  */
90       if (c_common_reswords[i].disable & mask)
91         {
92           if (warn_cxx_compat
93               && (c_common_reswords[i].disable & D_CXXWARN))
94             {
95               id = get_identifier (c_common_reswords[i].word);
96               C_SET_RID_CODE (id, RID_CXX_COMPAT_WARN);
97               C_IS_RESERVED_WORD (id) = 1;
98             }
99           continue;
100         }
101
102       id = get_identifier (c_common_reswords[i].word);
103       C_SET_RID_CODE (id, c_common_reswords[i].rid);
104       C_IS_RESERVED_WORD (id) = 1;
105       ridpointers [(int) c_common_reswords[i].rid] = id;
106     }
107 }
108 \f
109 /* The C lexer intermediates between the lexer in cpplib and c-lex.c
110    and the C parser.  Unlike the C++ lexer, the parser structure
111    stores the lexer information instead of using a separate structure.
112    Identifiers are separated into ordinary identifiers, type names,
113    keywords and some other Objective-C types of identifiers, and some
114    look-ahead is maintained.
115
116    ??? It might be a good idea to lex the whole file up front (as for
117    C++).  It would then be possible to share more of the C and C++
118    lexer code, if desired.  */
119
120 /* The following local token type is used.  */
121
122 /* A keyword.  */
123 #define CPP_KEYWORD ((enum cpp_ttype) (N_TTYPES + 1))
124
125 /* More information about the type of a CPP_NAME token.  */
126 typedef enum c_id_kind {
127   /* An ordinary identifier.  */
128   C_ID_ID,
129   /* An identifier declared as a typedef name.  */
130   C_ID_TYPENAME,
131   /* An identifier declared as an Objective-C class name.  */
132   C_ID_CLASSNAME,
133   /* Not an identifier.  */
134   C_ID_NONE
135 } c_id_kind;
136
137 /* A single C token after string literal concatenation and conversion
138    of preprocessing tokens to tokens.  */
139 typedef struct c_token GTY (())
140 {
141   /* The kind of token.  */
142   ENUM_BITFIELD (cpp_ttype) type : 8;
143   /* If this token is a CPP_NAME, this value indicates whether also
144      declared as some kind of type.  Otherwise, it is C_ID_NONE.  */
145   ENUM_BITFIELD (c_id_kind) id_kind : 8;
146   /* If this token is a keyword, this value indicates which keyword.
147      Otherwise, this value is RID_MAX.  */
148   ENUM_BITFIELD (rid) keyword : 8;
149   /* If this token is a CPP_PRAGMA, this indicates the pragma that
150      was seen.  Otherwise it is PRAGMA_NONE.  */
151   ENUM_BITFIELD (pragma_kind) pragma_kind : 8;
152   /* The value associated with this token, if any.  */
153   tree value;
154   /* The location at which this token was found.  */
155   location_t location;
156 } c_token;
157
158 /* A parser structure recording information about the state and
159    context of parsing.  Includes lexer information with up to two
160    tokens of look-ahead; more are not needed for C.  */
161 typedef struct c_parser GTY(())
162 {
163   /* The look-ahead tokens.  */
164   c_token tokens[2];
165   /* How many look-ahead tokens are available (0, 1 or 2).  */
166   short tokens_avail;
167   /* True if a syntax error is being recovered from; false otherwise.
168      c_parser_error sets this flag.  It should clear this flag when
169      enough tokens have been consumed to recover from the error.  */
170   BOOL_BITFIELD error : 1;
171   /* True if we're processing a pragma, and shouldn't automatically
172      consume CPP_PRAGMA_EOL.  */
173   BOOL_BITFIELD in_pragma : 1;
174   /* True if we're parsing the outermost block of an if statement.  */
175   BOOL_BITFIELD in_if_block : 1;
176   /* True if we want to lex an untranslated string.  */
177   BOOL_BITFIELD lex_untranslated_string : 1;
178   /* Objective-C specific parser/lexer information.  */
179   BOOL_BITFIELD objc_pq_context : 1;
180   /* The following flag is needed to contextualize Objective-C lexical
181      analysis.  In some cases (e.g., 'int NSObject;'), it is
182      undesirable to bind an identifier to an Objective-C class, even
183      if a class with that name exists.  */
184   BOOL_BITFIELD objc_need_raw_identifier : 1;
185 } c_parser;
186
187
188 /* The actual parser and external interface.  ??? Does this need to be
189    garbage-collected?  */
190
191 static GTY (()) c_parser *the_parser;
192
193
194 /* Read in and lex a single token, storing it in *TOKEN.  */
195
196 static void
197 c_lex_one_token (c_parser *parser, c_token *token)
198 {
199   timevar_push (TV_LEX);
200
201   token->type = c_lex_with_flags (&token->value, &token->location, NULL,
202                                   (parser->lex_untranslated_string
203                                    ? C_LEX_STRING_NO_TRANSLATE : 0));
204   token->id_kind = C_ID_NONE;
205   token->keyword = RID_MAX;
206   token->pragma_kind = PRAGMA_NONE;
207
208   switch (token->type)
209     {
210     case CPP_NAME:
211       {
212         tree decl;
213
214         bool objc_force_identifier = parser->objc_need_raw_identifier;
215         if (c_dialect_objc ())
216           parser->objc_need_raw_identifier = false;
217
218         if (C_IS_RESERVED_WORD (token->value))
219           {
220             enum rid rid_code = C_RID_CODE (token->value);
221
222             if (rid_code == RID_CXX_COMPAT_WARN)
223               {
224                 warning_at (token->location,
225                             OPT_Wc___compat,
226                             "identifier %qs conflicts with C++ keyword",
227                             IDENTIFIER_POINTER (token->value));
228               }
229             else if (c_dialect_objc ())
230               {
231                 if (!objc_is_reserved_word (token->value)
232                     && (!OBJC_IS_PQ_KEYWORD (rid_code)
233                         || parser->objc_pq_context))
234                   {
235                     /* Return the canonical spelling for this keyword.  */
236                     token->value = ridpointers[(int) rid_code];
237                     token->type = CPP_KEYWORD;
238                     token->keyword = rid_code;
239                     break;
240                   }
241               }
242             else
243               {
244                 token->type = CPP_KEYWORD;
245                 token->keyword = rid_code;
246                 break;
247               }
248           }
249
250         decl = lookup_name (token->value);
251         if (decl)
252           {
253             if (TREE_CODE (decl) == TYPE_DECL)
254               {
255                 token->id_kind = C_ID_TYPENAME;
256                 break;
257               }
258           }
259         else if (c_dialect_objc ())
260           {
261             tree objc_interface_decl = objc_is_class_name (token->value);
262             /* Objective-C class names are in the same namespace as
263                variables and typedefs, and hence are shadowed by local
264                declarations.  */
265             if (objc_interface_decl
266                 && (global_bindings_p ()
267                     || (!objc_force_identifier && !decl)))
268               {
269                 token->value = objc_interface_decl;
270                 token->id_kind = C_ID_CLASSNAME;
271                 break;
272               }
273           }
274         token->id_kind = C_ID_ID;
275       }
276       break;
277     case CPP_AT_NAME:
278       /* This only happens in Objective-C; it must be a keyword.  */
279       token->type = CPP_KEYWORD;
280       token->keyword = C_RID_CODE (token->value);
281       break;
282     case CPP_COLON:
283     case CPP_COMMA:
284     case CPP_CLOSE_PAREN:
285     case CPP_SEMICOLON:
286       /* These tokens may affect the interpretation of any identifiers
287          following, if doing Objective-C.  */
288       if (c_dialect_objc ())
289         parser->objc_need_raw_identifier = false;
290       break;
291     case CPP_PRAGMA:
292       /* We smuggled the cpp_token->u.pragma value in an INTEGER_CST.  */
293       token->pragma_kind = (enum pragma_kind) TREE_INT_CST_LOW (token->value);
294       token->value = NULL;
295       break;
296     default:
297       break;
298     }
299   timevar_pop (TV_LEX);
300 }
301
302 /* Return a pointer to the next token from PARSER, reading it in if
303    necessary.  */
304
305 static inline c_token *
306 c_parser_peek_token (c_parser *parser)
307 {
308   if (parser->tokens_avail == 0)
309     {
310       c_lex_one_token (parser, &parser->tokens[0]);
311       parser->tokens_avail = 1;
312     }
313   return &parser->tokens[0];
314 }
315
316 /* Return true if the next token from PARSER has the indicated
317    TYPE.  */
318
319 static inline bool
320 c_parser_next_token_is (c_parser *parser, enum cpp_ttype type)
321 {
322   return c_parser_peek_token (parser)->type == type;
323 }
324
325 /* Return true if the next token from PARSER does not have the
326    indicated TYPE.  */
327
328 static inline bool
329 c_parser_next_token_is_not (c_parser *parser, enum cpp_ttype type)
330 {
331   return !c_parser_next_token_is (parser, type);
332 }
333
334 /* Return true if the next token from PARSER is the indicated
335    KEYWORD.  */
336
337 static inline bool
338 c_parser_next_token_is_keyword (c_parser *parser, enum rid keyword)
339 {
340   return c_parser_peek_token (parser)->keyword == keyword;
341 }
342
343 /* Return true if TOKEN can start a type name,
344    false otherwise.  */
345 static bool
346 c_token_starts_typename (c_token *token)
347 {
348   switch (token->type)
349     {
350     case CPP_NAME:
351       switch (token->id_kind)
352         {
353         case C_ID_ID:
354           return false;
355         case C_ID_TYPENAME:
356           return true;
357         case C_ID_CLASSNAME:
358           gcc_assert (c_dialect_objc ());
359           return true;
360         default:
361           gcc_unreachable ();
362         }
363     case CPP_KEYWORD:
364       switch (token->keyword)
365         {
366         case RID_UNSIGNED:
367         case RID_LONG:
368         case RID_SHORT:
369         case RID_SIGNED:
370         case RID_COMPLEX:
371         case RID_INT:
372         case RID_CHAR:
373         case RID_FLOAT:
374         case RID_DOUBLE:
375         case RID_VOID:
376         case RID_DFLOAT32:
377         case RID_DFLOAT64:
378         case RID_DFLOAT128:
379         case RID_BOOL:
380         case RID_ENUM:
381         case RID_STRUCT:
382         case RID_UNION:
383         case RID_TYPEOF:
384         case RID_CONST:
385         case RID_VOLATILE:
386         case RID_RESTRICT:
387         case RID_ATTRIBUTE:
388         case RID_FRACT:
389         case RID_ACCUM:
390         case RID_SAT:
391           return true;
392         default:
393           return false;
394         }
395     case CPP_LESS:
396       if (c_dialect_objc ())
397         return true;
398       return false;
399     default:
400       return false;
401     }
402 }
403
404 /* Return true if the next token from PARSER can start a type name,
405    false otherwise.  */
406 static inline bool
407 c_parser_next_token_starts_typename (c_parser *parser)
408 {
409   c_token *token = c_parser_peek_token (parser);
410   return c_token_starts_typename (token);
411 }
412
413 /* Return true if TOKEN can start declaration specifiers, false
414    otherwise.  */
415 static bool
416 c_token_starts_declspecs (c_token *token)
417 {
418   switch (token->type)
419     {
420     case CPP_NAME:
421       switch (token->id_kind)
422         {
423         case C_ID_ID:
424           return false;
425         case C_ID_TYPENAME:
426           return true;
427         case C_ID_CLASSNAME:
428           gcc_assert (c_dialect_objc ());
429           return true;
430         default:
431           gcc_unreachable ();
432         }
433     case CPP_KEYWORD:
434       switch (token->keyword)
435         {
436         case RID_STATIC:
437         case RID_EXTERN:
438         case RID_REGISTER:
439         case RID_TYPEDEF:
440         case RID_INLINE:
441         case RID_AUTO:
442         case RID_THREAD:
443         case RID_UNSIGNED:
444         case RID_LONG:
445         case RID_SHORT:
446         case RID_SIGNED:
447         case RID_COMPLEX:
448         case RID_INT:
449         case RID_CHAR:
450         case RID_FLOAT:
451         case RID_DOUBLE:
452         case RID_VOID:
453         case RID_DFLOAT32:
454         case RID_DFLOAT64:
455         case RID_DFLOAT128:
456         case RID_BOOL:
457         case RID_ENUM:
458         case RID_STRUCT:
459         case RID_UNION:
460         case RID_TYPEOF:
461         case RID_CONST:
462         case RID_VOLATILE:
463         case RID_RESTRICT:
464         case RID_ATTRIBUTE:
465         case RID_FRACT:
466         case RID_ACCUM:
467         case RID_SAT:
468           return true;
469         default:
470           return false;
471         }
472     case CPP_LESS:
473       if (c_dialect_objc ())
474         return true;
475       return false;
476     default:
477       return false;
478     }
479 }
480
481 /* Return true if the next token from PARSER can start declaration
482    specifiers, false otherwise.  */
483 static inline bool
484 c_parser_next_token_starts_declspecs (c_parser *parser)
485 {
486   c_token *token = c_parser_peek_token (parser);
487   return c_token_starts_declspecs (token);
488 }
489
490 /* Return a pointer to the next-but-one token from PARSER, reading it
491    in if necessary.  The next token is already read in.  */
492
493 static c_token *
494 c_parser_peek_2nd_token (c_parser *parser)
495 {
496   if (parser->tokens_avail >= 2)
497     return &parser->tokens[1];
498   gcc_assert (parser->tokens_avail == 1);
499   gcc_assert (parser->tokens[0].type != CPP_EOF);
500   gcc_assert (parser->tokens[0].type != CPP_PRAGMA_EOL);
501   c_lex_one_token (parser, &parser->tokens[1]);
502   parser->tokens_avail = 2;
503   return &parser->tokens[1];
504 }
505
506 /* Consume the next token from PARSER.  */
507
508 static void
509 c_parser_consume_token (c_parser *parser)
510 {
511   gcc_assert (parser->tokens_avail >= 1);
512   gcc_assert (parser->tokens[0].type != CPP_EOF);
513   gcc_assert (!parser->in_pragma || parser->tokens[0].type != CPP_PRAGMA_EOL);
514   gcc_assert (parser->error || parser->tokens[0].type != CPP_PRAGMA);
515   if (parser->tokens_avail == 2)
516     parser->tokens[0] = parser->tokens[1];
517   parser->tokens_avail--;
518 }
519
520 /* Expect the current token to be a #pragma.  Consume it and remember
521    that we've begun parsing a pragma.  */
522
523 static void
524 c_parser_consume_pragma (c_parser *parser)
525 {
526   gcc_assert (!parser->in_pragma);
527   gcc_assert (parser->tokens_avail >= 1);
528   gcc_assert (parser->tokens[0].type == CPP_PRAGMA);
529   if (parser->tokens_avail == 2)
530     parser->tokens[0] = parser->tokens[1];
531   parser->tokens_avail--;
532   parser->in_pragma = true;
533 }
534
535 /* Update the globals input_location and in_system_header from
536    TOKEN.  */
537 static inline void
538 c_parser_set_source_position_from_token (c_token *token)
539 {
540   if (token->type != CPP_EOF)
541     {
542       input_location = token->location;
543     }
544 }
545
546 /* Issue a diagnostic of the form
547       FILE:LINE: MESSAGE before TOKEN
548    where TOKEN is the next token in the input stream of PARSER.
549    MESSAGE (specified by the caller) is usually of the form "expected
550    OTHER-TOKEN".
551
552    Do not issue a diagnostic if still recovering from an error.
553
554    ??? This is taken from the C++ parser, but building up messages in
555    this way is not i18n-friendly and some other approach should be
556    used.  */
557
558 static void
559 c_parser_error (c_parser *parser, const char *gmsgid)
560 {
561   c_token *token = c_parser_peek_token (parser);
562   if (parser->error)
563     return;
564   parser->error = true;
565   if (!gmsgid)
566     return;
567   /* This diagnostic makes more sense if it is tagged to the line of
568      the token we just peeked at.  */
569   c_parser_set_source_position_from_token (token);
570   c_parse_error (gmsgid,
571                  /* Because c_parse_error does not understand
572                     CPP_KEYWORD, keywords are treated like
573                     identifiers.  */
574                  (token->type == CPP_KEYWORD ? CPP_NAME : token->type),
575                  token->value);
576 }
577
578 /* If the next token is of the indicated TYPE, consume it.  Otherwise,
579    issue the error MSGID.  If MSGID is NULL then a message has already
580    been produced and no message will be produced this time.  Returns
581    true if found, false otherwise.  */
582
583 static bool
584 c_parser_require (c_parser *parser,
585                   enum cpp_ttype type,
586                   const char *msgid)
587 {
588   if (c_parser_next_token_is (parser, type))
589     {
590       c_parser_consume_token (parser);
591       return true;
592     }
593   else
594     {
595       c_parser_error (parser, msgid);
596       return false;
597     }
598 }
599
600 /* If the next token is the indicated keyword, consume it.  Otherwise,
601    issue the error MSGID.  Returns true if found, false otherwise.  */
602
603 static bool
604 c_parser_require_keyword (c_parser *parser,
605                           enum rid keyword,
606                           const char *msgid)
607 {
608   if (c_parser_next_token_is_keyword (parser, keyword))
609     {
610       c_parser_consume_token (parser);
611       return true;
612     }
613   else
614     {
615       c_parser_error (parser, msgid);
616       return false;
617     }
618 }
619
620 /* Like c_parser_require, except that tokens will be skipped until the
621    desired token is found.  An error message is still produced if the
622    next token is not as expected.  If MSGID is NULL then a message has
623    already been produced and no message will be produced this
624    time.  */
625
626 static void
627 c_parser_skip_until_found (c_parser *parser,
628                            enum cpp_ttype type,
629                            const char *msgid)
630 {
631   unsigned nesting_depth = 0;
632
633   if (c_parser_require (parser, type, msgid))
634     return;
635
636   /* Skip tokens until the desired token is found.  */
637   while (true)
638     {
639       /* Peek at the next token.  */
640       c_token *token = c_parser_peek_token (parser);
641       /* If we've reached the token we want, consume it and stop.  */
642       if (token->type == type && !nesting_depth)
643         {
644           c_parser_consume_token (parser);
645           break;
646         }
647
648       /* If we've run out of tokens, stop.  */
649       if (token->type == CPP_EOF)
650         return;
651       if (token->type == CPP_PRAGMA_EOL && parser->in_pragma)
652         return;
653       if (token->type == CPP_OPEN_BRACE
654           || token->type == CPP_OPEN_PAREN
655           || token->type == CPP_OPEN_SQUARE)
656         ++nesting_depth;
657       else if (token->type == CPP_CLOSE_BRACE
658                || token->type == CPP_CLOSE_PAREN
659                || token->type == CPP_CLOSE_SQUARE)
660         {
661           if (nesting_depth-- == 0)
662             break;
663         }
664       /* Consume this token.  */
665       c_parser_consume_token (parser);
666     }
667   parser->error = false;
668 }
669
670 /* Skip tokens until the end of a parameter is found, but do not
671    consume the comma, semicolon or closing delimiter.  */
672
673 static void
674 c_parser_skip_to_end_of_parameter (c_parser *parser)
675 {
676   unsigned nesting_depth = 0;
677
678   while (true)
679     {
680       c_token *token = c_parser_peek_token (parser);
681       if ((token->type == CPP_COMMA || token->type == CPP_SEMICOLON)
682           && !nesting_depth)
683         break;
684       /* If we've run out of tokens, stop.  */
685       if (token->type == CPP_EOF)
686         return;
687       if (token->type == CPP_PRAGMA_EOL && parser->in_pragma)
688         return;
689       if (token->type == CPP_OPEN_BRACE
690           || token->type == CPP_OPEN_PAREN
691           || token->type == CPP_OPEN_SQUARE)
692         ++nesting_depth;
693       else if (token->type == CPP_CLOSE_BRACE
694                || token->type == CPP_CLOSE_PAREN
695                || token->type == CPP_CLOSE_SQUARE)
696         {
697           if (nesting_depth-- == 0)
698             break;
699         }
700       /* Consume this token.  */
701       c_parser_consume_token (parser);
702     }
703   parser->error = false;
704 }
705
706 /* Expect to be at the end of the pragma directive and consume an
707    end of line marker.  */
708
709 static void
710 c_parser_skip_to_pragma_eol (c_parser *parser)
711 {
712   gcc_assert (parser->in_pragma);
713   parser->in_pragma = false;
714
715   if (!c_parser_require (parser, CPP_PRAGMA_EOL, "expected end of line"))
716     while (true)
717       {
718         c_token *token = c_parser_peek_token (parser);
719         if (token->type == CPP_EOF)
720           break;
721         if (token->type == CPP_PRAGMA_EOL)
722           {
723             c_parser_consume_token (parser);
724             break;
725           }
726         c_parser_consume_token (parser);
727       }
728
729   parser->error = false;
730 }
731
732 /* Skip tokens until we have consumed an entire block, or until we
733    have consumed a non-nested ';'.  */
734
735 static void
736 c_parser_skip_to_end_of_block_or_statement (c_parser *parser)
737 {
738   unsigned nesting_depth = 0;
739   bool save_error = parser->error;
740
741   while (true)
742     {
743       c_token *token;
744
745       /* Peek at the next token.  */
746       token = c_parser_peek_token (parser);
747
748       switch (token->type)
749         {
750         case CPP_EOF:
751           return;
752
753         case CPP_PRAGMA_EOL:
754           if (parser->in_pragma)
755             return;
756           break;
757
758         case CPP_SEMICOLON:
759           /* If the next token is a ';', we have reached the
760              end of the statement.  */
761           if (!nesting_depth)
762             {
763               /* Consume the ';'.  */
764               c_parser_consume_token (parser);
765               goto finished;
766             }
767           break;
768
769         case CPP_CLOSE_BRACE:
770           /* If the next token is a non-nested '}', then we have
771              reached the end of the current block.  */
772           if (nesting_depth == 0 || --nesting_depth == 0)
773             {
774               c_parser_consume_token (parser);
775               goto finished;
776             }
777           break;
778
779         case CPP_OPEN_BRACE:
780           /* If it the next token is a '{', then we are entering a new
781              block.  Consume the entire block.  */
782           ++nesting_depth;
783           break;
784
785         case CPP_PRAGMA:
786           /* If we see a pragma, consume the whole thing at once.  We
787              have some safeguards against consuming pragmas willy-nilly.
788              Normally, we'd expect to be here with parser->error set,
789              which disables these safeguards.  But it's possible to get
790              here for secondary error recovery, after parser->error has
791              been cleared.  */
792           c_parser_consume_pragma (parser);
793           c_parser_skip_to_pragma_eol (parser);
794           parser->error = save_error;
795           continue;
796
797         default:
798           break;
799         }
800
801       c_parser_consume_token (parser);
802     }
803
804  finished:
805   parser->error = false;
806 }
807
808 /* CPP's options (initialized by c-opts.c).  */
809 extern cpp_options *cpp_opts;
810
811 /* Save the warning flags which are controlled by __extension__.  */
812
813 static inline int
814 disable_extension_diagnostics (void)
815 {
816   int ret = (pedantic
817              | (warn_pointer_arith << 1)
818              | (warn_traditional << 2)
819              | (flag_iso << 3)
820              | (warn_long_long << 4)
821              | (cpp_opts->warn_long_long << 5));
822   cpp_opts->pedantic = pedantic = 0;
823   warn_pointer_arith = 0;
824   cpp_opts->warn_traditional = warn_traditional = 0;
825   flag_iso = 0;
826   warn_long_long = 0;
827   cpp_opts->warn_long_long = 0;
828   return ret;
829 }
830
831 /* Restore the warning flags which are controlled by __extension__.
832    FLAGS is the return value from disable_extension_diagnostics.  */
833
834 static inline void
835 restore_extension_diagnostics (int flags)
836 {
837   cpp_opts->pedantic = pedantic = flags & 1;
838   warn_pointer_arith = (flags >> 1) & 1;
839   cpp_opts->warn_traditional = warn_traditional = (flags >> 2) & 1;
840   flag_iso = (flags >> 3) & 1;
841   warn_long_long = (flags >> 4) & 1;
842   cpp_opts->warn_long_long = (flags >> 5) & 1;
843 }
844
845 /* Possibly kinds of declarator to parse.  */
846 typedef enum c_dtr_syn {
847   /* A normal declarator with an identifier.  */
848   C_DTR_NORMAL,
849   /* An abstract declarator (maybe empty).  */
850   C_DTR_ABSTRACT,
851   /* A parameter declarator: may be either, but after a type name does
852      not redeclare a typedef name as an identifier if it can
853      alternatively be interpreted as a typedef name; see DR#009,
854      applied in C90 TC1, omitted from C99 and reapplied in C99 TC2
855      following DR#249.  For example, given a typedef T, "int T" and
856      "int *T" are valid parameter declarations redeclaring T, while
857      "int (T)" and "int * (T)" and "int (T[])" and "int (T (int))" are
858      abstract declarators rather than involving redundant parentheses;
859      the same applies with attributes inside the parentheses before
860      "T".  */
861   C_DTR_PARM
862 } c_dtr_syn;
863
864 static void c_parser_external_declaration (c_parser *);
865 static void c_parser_asm_definition (c_parser *);
866 static void c_parser_declaration_or_fndef (c_parser *, bool, bool, bool, bool);
867 static void c_parser_declspecs (c_parser *, struct c_declspecs *, bool, bool,
868                                 bool);
869 static struct c_typespec c_parser_enum_specifier (c_parser *);
870 static struct c_typespec c_parser_struct_or_union_specifier (c_parser *);
871 static tree c_parser_struct_declaration (c_parser *);
872 static struct c_typespec c_parser_typeof_specifier (c_parser *);
873 static struct c_declarator *c_parser_declarator (c_parser *, bool, c_dtr_syn,
874                                                  bool *);
875 static struct c_declarator *c_parser_direct_declarator (c_parser *, bool,
876                                                         c_dtr_syn, bool *);
877 static struct c_declarator *c_parser_direct_declarator_inner (c_parser *,
878                                                               bool,
879                                                               struct c_declarator *);
880 static struct c_arg_info *c_parser_parms_declarator (c_parser *, bool, tree);
881 static struct c_arg_info *c_parser_parms_list_declarator (c_parser *, tree);
882 static struct c_parm *c_parser_parameter_declaration (c_parser *, tree);
883 static tree c_parser_simple_asm_expr (c_parser *);
884 static tree c_parser_attributes (c_parser *);
885 static struct c_type_name *c_parser_type_name (c_parser *);
886 static struct c_expr c_parser_initializer (c_parser *);
887 static struct c_expr c_parser_braced_init (c_parser *, tree, bool);
888 static void c_parser_initelt (c_parser *);
889 static void c_parser_initval (c_parser *, struct c_expr *);
890 static tree c_parser_compound_statement (c_parser *);
891 static void c_parser_compound_statement_nostart (c_parser *);
892 static void c_parser_label (c_parser *);
893 static void c_parser_statement (c_parser *);
894 static void c_parser_statement_after_labels (c_parser *);
895 static void c_parser_if_statement (c_parser *);
896 static void c_parser_switch_statement (c_parser *);
897 static void c_parser_while_statement (c_parser *);
898 static void c_parser_do_statement (c_parser *);
899 static void c_parser_for_statement (c_parser *);
900 static tree c_parser_asm_statement (c_parser *);
901 static tree c_parser_asm_operands (c_parser *, bool);
902 static tree c_parser_asm_clobbers (c_parser *);
903 static struct c_expr c_parser_expr_no_commas (c_parser *, struct c_expr *);
904 static struct c_expr c_parser_conditional_expression (c_parser *,
905                                                       struct c_expr *);
906 static struct c_expr c_parser_binary_expression (c_parser *, struct c_expr *);
907 static struct c_expr c_parser_cast_expression (c_parser *, struct c_expr *);
908 static struct c_expr c_parser_unary_expression (c_parser *);
909 static struct c_expr c_parser_sizeof_expression (c_parser *);
910 static struct c_expr c_parser_alignof_expression (c_parser *);
911 static struct c_expr c_parser_postfix_expression (c_parser *);
912 static struct c_expr c_parser_postfix_expression_after_paren_type (c_parser *,
913                                                                    struct c_type_name *);
914 static struct c_expr c_parser_postfix_expression_after_primary (c_parser *,
915                                                                 struct c_expr);
916 static struct c_expr c_parser_expression (c_parser *);
917 static struct c_expr c_parser_expression_conv (c_parser *);
918 static tree c_parser_expr_list (c_parser *, bool);
919 static void c_parser_omp_construct (c_parser *);
920 static void c_parser_omp_threadprivate (c_parser *);
921 static void c_parser_omp_barrier (c_parser *);
922 static void c_parser_omp_flush (c_parser *);
923 static void c_parser_omp_taskwait (c_parser *);
924
925 enum pragma_context { pragma_external, pragma_stmt, pragma_compound };
926 static bool c_parser_pragma (c_parser *, enum pragma_context);
927
928 /* These Objective-C parser functions are only ever called when
929    compiling Objective-C.  */
930 static void c_parser_objc_class_definition (c_parser *);
931 static void c_parser_objc_class_instance_variables (c_parser *);
932 static void c_parser_objc_class_declaration (c_parser *);
933 static void c_parser_objc_alias_declaration (c_parser *);
934 static void c_parser_objc_protocol_definition (c_parser *);
935 static enum tree_code c_parser_objc_method_type (c_parser *);
936 static void c_parser_objc_method_definition (c_parser *);
937 static void c_parser_objc_methodprotolist (c_parser *);
938 static void c_parser_objc_methodproto (c_parser *);
939 static tree c_parser_objc_method_decl (c_parser *);
940 static tree c_parser_objc_type_name (c_parser *);
941 static tree c_parser_objc_protocol_refs (c_parser *);
942 static void c_parser_objc_try_catch_statement (c_parser *);
943 static void c_parser_objc_synchronized_statement (c_parser *);
944 static tree c_parser_objc_selector (c_parser *);
945 static tree c_parser_objc_selector_arg (c_parser *);
946 static tree c_parser_objc_receiver (c_parser *);
947 static tree c_parser_objc_message_args (c_parser *);
948 static tree c_parser_objc_keywordexpr (c_parser *);
949
950 /* Parse a translation unit (C90 6.7, C99 6.9).
951
952    translation-unit:
953      external-declarations
954
955    external-declarations:
956      external-declaration
957      external-declarations external-declaration
958
959    GNU extensions:
960
961    translation-unit:
962      empty
963 */
964
965 static void
966 c_parser_translation_unit (c_parser *parser)
967 {
968   if (c_parser_next_token_is (parser, CPP_EOF))
969     {
970       pedwarn (c_parser_peek_token (parser)->location, OPT_pedantic, 
971                "ISO C forbids an empty translation unit");
972     }
973   else
974     {
975       void *obstack_position = obstack_alloc (&parser_obstack, 0);
976       do
977         {
978           ggc_collect ();
979           c_parser_external_declaration (parser);
980           obstack_free (&parser_obstack, obstack_position);
981         }
982       while (c_parser_next_token_is_not (parser, CPP_EOF));
983     }
984 }
985
986 /* Parse an external declaration (C90 6.7, C99 6.9).
987
988    external-declaration:
989      function-definition
990      declaration
991
992    GNU extensions:
993
994    external-declaration:
995      asm-definition
996      ;
997      __extension__ external-declaration
998
999    Objective-C:
1000
1001    external-declaration:
1002      objc-class-definition
1003      objc-class-declaration
1004      objc-alias-declaration
1005      objc-protocol-definition
1006      objc-method-definition
1007      @end
1008 */
1009
1010 static void
1011 c_parser_external_declaration (c_parser *parser)
1012 {
1013   int ext;
1014   switch (c_parser_peek_token (parser)->type)
1015     {
1016     case CPP_KEYWORD:
1017       switch (c_parser_peek_token (parser)->keyword)
1018         {
1019         case RID_EXTENSION:
1020           ext = disable_extension_diagnostics ();
1021           c_parser_consume_token (parser);
1022           c_parser_external_declaration (parser);
1023           restore_extension_diagnostics (ext);
1024           break;
1025         case RID_ASM:
1026           c_parser_asm_definition (parser);
1027           break;
1028         case RID_AT_INTERFACE:
1029         case RID_AT_IMPLEMENTATION:
1030           gcc_assert (c_dialect_objc ());
1031           c_parser_objc_class_definition (parser);
1032           break;
1033         case RID_CLASS:
1034           gcc_assert (c_dialect_objc ());
1035           c_parser_objc_class_declaration (parser);
1036           break;
1037         case RID_AT_ALIAS:
1038           gcc_assert (c_dialect_objc ());
1039           c_parser_objc_alias_declaration (parser);
1040           break;
1041         case RID_AT_PROTOCOL:
1042           gcc_assert (c_dialect_objc ());
1043           c_parser_objc_protocol_definition (parser);
1044           break;
1045         case RID_AT_END:
1046           gcc_assert (c_dialect_objc ());
1047           c_parser_consume_token (parser);
1048           objc_finish_implementation ();
1049           break;
1050         default:
1051           goto decl_or_fndef;
1052         }
1053       break;
1054     case CPP_SEMICOLON:
1055       pedwarn (c_parser_peek_token (parser)->location, OPT_pedantic, 
1056                "ISO C does not allow extra %<;%> outside of a function");
1057       c_parser_consume_token (parser);
1058       break;
1059     case CPP_PRAGMA:
1060       c_parser_pragma (parser, pragma_external);
1061       break;
1062     case CPP_PLUS:
1063     case CPP_MINUS:
1064       if (c_dialect_objc ())
1065         {
1066           c_parser_objc_method_definition (parser);
1067           break;
1068         }
1069       /* Else fall through, and yield a syntax error trying to parse
1070          as a declaration or function definition.  */
1071     default:
1072     decl_or_fndef:
1073       /* A declaration or a function definition.  We can only tell
1074          which after parsing the declaration specifiers, if any, and
1075          the first declarator.  */
1076       c_parser_declaration_or_fndef (parser, true, true, false, true);
1077       break;
1078     }
1079 }
1080
1081
1082 /* Parse a declaration or function definition (C90 6.5, 6.7.1, C99
1083    6.7, 6.9.1).  If FNDEF_OK is true, a function definition is
1084    accepted; otherwise (old-style parameter declarations) only other
1085    declarations are accepted.  If NESTED is true, we are inside a
1086    function or parsing old-style parameter declarations; any functions
1087    encountered are nested functions and declaration specifiers are
1088    required; otherwise we are at top level and functions are normal
1089    functions and declaration specifiers may be optional.  If EMPTY_OK
1090    is true, empty declarations are OK (subject to all other
1091    constraints); otherwise (old-style parameter declarations) they are
1092    diagnosed.  If START_ATTR_OK is true, the declaration specifiers
1093    may start with attributes; otherwise they may not.
1094
1095    declaration:
1096      declaration-specifiers init-declarator-list[opt] ;
1097
1098    function-definition:
1099      declaration-specifiers[opt] declarator declaration-list[opt]
1100        compound-statement
1101
1102    declaration-list:
1103      declaration
1104      declaration-list declaration
1105
1106    init-declarator-list:
1107      init-declarator
1108      init-declarator-list , init-declarator
1109
1110    init-declarator:
1111      declarator simple-asm-expr[opt] attributes[opt]
1112      declarator simple-asm-expr[opt] attributes[opt] = initializer
1113
1114    GNU extensions:
1115
1116    nested-function-definition:
1117      declaration-specifiers declarator declaration-list[opt]
1118        compound-statement
1119
1120    The simple-asm-expr and attributes are GNU extensions.
1121
1122    This function does not handle __extension__; that is handled in its
1123    callers.  ??? Following the old parser, __extension__ may start
1124    external declarations, declarations in functions and declarations
1125    at the start of "for" loops, but not old-style parameter
1126    declarations.
1127
1128    C99 requires declaration specifiers in a function definition; the
1129    absence is diagnosed through the diagnosis of implicit int.  In GNU
1130    C we also allow but diagnose declarations without declaration
1131    specifiers, but only at top level (elsewhere they conflict with
1132    other syntax).
1133    
1134    OpenMP:
1135    
1136    declaration:
1137      threadprivate-directive  */
1138
1139 static void
1140 c_parser_declaration_or_fndef (c_parser *parser, bool fndef_ok, bool empty_ok,
1141                                bool nested, bool start_attr_ok)
1142 {
1143   struct c_declspecs *specs;
1144   tree prefix_attrs;
1145   tree all_prefix_attrs;
1146   bool diagnosed_no_specs = false;
1147   location_t here = c_parser_peek_token (parser)->location;
1148
1149   specs = build_null_declspecs ();
1150   c_parser_declspecs (parser, specs, true, true, start_attr_ok);
1151   if (parser->error)
1152     {
1153       c_parser_skip_to_end_of_block_or_statement (parser);
1154       return;
1155     }
1156   if (nested && !specs->declspecs_seen_p)
1157     {
1158       c_parser_error (parser, "expected declaration specifiers");
1159       c_parser_skip_to_end_of_block_or_statement (parser);
1160       return;
1161     }
1162   finish_declspecs (specs);
1163   if (c_parser_next_token_is (parser, CPP_SEMICOLON))
1164     {
1165       if (empty_ok)
1166         shadow_tag (specs);
1167       else
1168         {
1169           shadow_tag_warned (specs, 1);
1170           pedwarn (here, 0, "empty declaration");
1171         }
1172       c_parser_consume_token (parser);
1173       return;
1174     }
1175   pending_xref_error ();
1176   prefix_attrs = specs->attrs;
1177   all_prefix_attrs = prefix_attrs;
1178   specs->attrs = NULL_TREE;
1179   while (true)
1180     {
1181       struct c_declarator *declarator;
1182       bool dummy = false;
1183       tree fnbody;
1184       /* Declaring either one or more declarators (in which case we
1185          should diagnose if there were no declaration specifiers) or a
1186          function definition (in which case the diagnostic for
1187          implicit int suffices).  */
1188       declarator = c_parser_declarator (parser, specs->type_seen_p,
1189                                         C_DTR_NORMAL, &dummy);
1190       if (declarator == NULL)
1191         {
1192           c_parser_skip_to_end_of_block_or_statement (parser);
1193           return;
1194         }
1195       if (c_parser_next_token_is (parser, CPP_EQ)
1196           || c_parser_next_token_is (parser, CPP_COMMA)
1197           || c_parser_next_token_is (parser, CPP_SEMICOLON)
1198           || c_parser_next_token_is_keyword (parser, RID_ASM)
1199           || c_parser_next_token_is_keyword (parser, RID_ATTRIBUTE))
1200         {
1201           tree asm_name = NULL_TREE;
1202           tree postfix_attrs = NULL_TREE;
1203           if (!diagnosed_no_specs && !specs->declspecs_seen_p)
1204             {
1205               diagnosed_no_specs = true;
1206               pedwarn (here, 0, "data definition has no type or storage class");
1207             }
1208           /* Having seen a data definition, there cannot now be a
1209              function definition.  */
1210           fndef_ok = false;
1211           if (c_parser_next_token_is_keyword (parser, RID_ASM))
1212             asm_name = c_parser_simple_asm_expr (parser);
1213           if (c_parser_next_token_is_keyword (parser, RID_ATTRIBUTE))
1214             postfix_attrs = c_parser_attributes (parser);
1215           if (c_parser_next_token_is (parser, CPP_EQ))
1216             {
1217               tree d;
1218               struct c_expr init;
1219               c_parser_consume_token (parser);
1220               /* The declaration of the variable is in effect while
1221                  its initializer is parsed.  */
1222               d = start_decl (declarator, specs, true,
1223                               chainon (postfix_attrs, all_prefix_attrs));
1224               if (!d)
1225                 d = error_mark_node;
1226               start_init (d, asm_name, global_bindings_p ());
1227               init = c_parser_initializer (parser);
1228               finish_init ();
1229               if (d != error_mark_node)
1230                 {
1231                   maybe_warn_string_init (TREE_TYPE (d), init);
1232                   finish_decl (d, init.value, asm_name);
1233                 }
1234             }
1235           else
1236             {
1237               tree d = start_decl (declarator, specs, false,
1238                                    chainon (postfix_attrs,
1239                                             all_prefix_attrs));
1240               if (d)
1241                 finish_decl (d, NULL_TREE, asm_name);
1242             }
1243           if (c_parser_next_token_is (parser, CPP_COMMA))
1244             {
1245               c_parser_consume_token (parser);
1246               if (c_parser_next_token_is_keyword (parser, RID_ATTRIBUTE))
1247                 all_prefix_attrs = chainon (c_parser_attributes (parser),
1248                                             prefix_attrs);
1249               else
1250                 all_prefix_attrs = prefix_attrs;
1251               continue;
1252             }
1253           else if (c_parser_next_token_is (parser, CPP_SEMICOLON))
1254             {
1255               c_parser_consume_token (parser);
1256               return;
1257             }
1258           else
1259             {
1260               c_parser_error (parser, "expected %<,%> or %<;%>");
1261               c_parser_skip_to_end_of_block_or_statement (parser);
1262               return;
1263             }
1264         }
1265       else if (!fndef_ok)
1266         {
1267           c_parser_error (parser, "expected %<=%>, %<,%>, %<;%>, "
1268                           "%<asm%> or %<__attribute__%>");
1269           c_parser_skip_to_end_of_block_or_statement (parser);
1270           return;
1271         }
1272       /* Function definition (nested or otherwise).  */
1273       if (nested)
1274         {
1275           pedwarn (here, OPT_pedantic, "ISO C forbids nested functions");
1276           c_push_function_context ();
1277         }
1278       if (!start_function (specs, declarator, all_prefix_attrs))
1279         {
1280           /* This can appear in many cases looking nothing like a
1281              function definition, so we don't give a more specific
1282              error suggesting there was one.  */
1283           c_parser_error (parser, "expected %<=%>, %<,%>, %<;%>, %<asm%> "
1284                           "or %<__attribute__%>");
1285           if (nested)
1286             c_pop_function_context ();
1287           break;
1288         }
1289       /* Parse old-style parameter declarations.  ??? Attributes are
1290          not allowed to start declaration specifiers here because of a
1291          syntax conflict between a function declaration with attribute
1292          suffix and a function definition with an attribute prefix on
1293          first old-style parameter declaration.  Following the old
1294          parser, they are not accepted on subsequent old-style
1295          parameter declarations either.  However, there is no
1296          ambiguity after the first declaration, nor indeed on the
1297          first as long as we don't allow postfix attributes after a
1298          declarator with a nonempty identifier list in a definition;
1299          and postfix attributes have never been accepted here in
1300          function definitions either.  */
1301       while (c_parser_next_token_is_not (parser, CPP_EOF)
1302              && c_parser_next_token_is_not (parser, CPP_OPEN_BRACE))
1303         c_parser_declaration_or_fndef (parser, false, false, true, false);
1304       store_parm_decls ();
1305       DECL_STRUCT_FUNCTION (current_function_decl)->function_start_locus
1306         = c_parser_peek_token (parser)->location;
1307       fnbody = c_parser_compound_statement (parser);
1308       if (nested)
1309         {
1310           tree decl = current_function_decl;
1311           add_stmt (fnbody);
1312           finish_function ();
1313           c_pop_function_context ();
1314           add_stmt (build_stmt (DECL_EXPR, decl));
1315         }
1316       else
1317         {
1318           add_stmt (fnbody);
1319           finish_function ();
1320         }
1321       break;
1322     }
1323 }
1324
1325 /* Parse an asm-definition (asm() outside a function body).  This is a
1326    GNU extension.
1327
1328    asm-definition:
1329      simple-asm-expr ;
1330 */
1331
1332 static void
1333 c_parser_asm_definition (c_parser *parser)
1334 {
1335   tree asm_str = c_parser_simple_asm_expr (parser);
1336   if (asm_str)
1337     cgraph_add_asm_node (asm_str);
1338   c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
1339 }
1340
1341 /* Parse some declaration specifiers (possibly none) (C90 6.5, C99
1342    6.7), adding them to SPECS (which may already include some).
1343    Storage class specifiers are accepted iff SCSPEC_OK; type
1344    specifiers are accepted iff TYPESPEC_OK; attributes are accepted at
1345    the start iff START_ATTR_OK.
1346
1347    declaration-specifiers:
1348      storage-class-specifier declaration-specifiers[opt]
1349      type-specifier declaration-specifiers[opt]
1350      type-qualifier declaration-specifiers[opt]
1351      function-specifier declaration-specifiers[opt]
1352
1353    Function specifiers (inline) are from C99, and are currently
1354    handled as storage class specifiers, as is __thread.
1355
1356    C90 6.5.1, C99 6.7.1:
1357    storage-class-specifier:
1358      typedef
1359      extern
1360      static
1361      auto
1362      register
1363
1364    C99 6.7.4:
1365    function-specifier:
1366      inline
1367
1368    C90 6.5.2, C99 6.7.2:
1369    type-specifier:
1370      void
1371      char
1372      short
1373      int
1374      long
1375      float
1376      double
1377      signed
1378      unsigned
1379      _Bool
1380      _Complex
1381      [_Imaginary removed in C99 TC2]
1382      struct-or-union-specifier
1383      enum-specifier
1384      typedef-name
1385
1386    (_Bool and _Complex are new in C99.)
1387
1388    C90 6.5.3, C99 6.7.3:
1389
1390    type-qualifier:
1391      const
1392      restrict
1393      volatile
1394
1395    (restrict is new in C99.)
1396
1397    GNU extensions:
1398
1399    declaration-specifiers:
1400      attributes declaration-specifiers[opt]
1401
1402    storage-class-specifier:
1403      __thread
1404
1405    type-specifier:
1406      typeof-specifier
1407      _Decimal32
1408      _Decimal64
1409      _Decimal128
1410      _Fract
1411      _Accum
1412      _Sat
1413
1414   (_Fract, _Accum, and _Sat are new from ISO/IEC DTR 18037:
1415    http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1169.pdf)
1416
1417    Objective-C:
1418
1419    type-specifier:
1420      class-name objc-protocol-refs[opt]
1421      typedef-name objc-protocol-refs
1422      objc-protocol-refs
1423 */
1424
1425 static void
1426 c_parser_declspecs (c_parser *parser, struct c_declspecs *specs,
1427                     bool scspec_ok, bool typespec_ok, bool start_attr_ok)
1428 {
1429   bool attrs_ok = start_attr_ok;
1430   bool seen_type = specs->type_seen_p;
1431   while (c_parser_next_token_is (parser, CPP_NAME)
1432          || c_parser_next_token_is (parser, CPP_KEYWORD)
1433          || (c_dialect_objc () && c_parser_next_token_is (parser, CPP_LESS)))
1434     {
1435       struct c_typespec t;
1436       tree attrs;
1437       if (c_parser_next_token_is (parser, CPP_NAME))
1438         {
1439           tree value = c_parser_peek_token (parser)->value;
1440           c_id_kind kind = c_parser_peek_token (parser)->id_kind;
1441           /* This finishes the specifiers unless a type name is OK, it
1442              is declared as a type name and a type name hasn't yet
1443              been seen.  */
1444           if (!typespec_ok || seen_type
1445               || (kind != C_ID_TYPENAME && kind != C_ID_CLASSNAME))
1446             break;
1447           c_parser_consume_token (parser);
1448           seen_type = true;
1449           attrs_ok = true;
1450           if (kind == C_ID_TYPENAME
1451               && (!c_dialect_objc ()
1452                   || c_parser_next_token_is_not (parser, CPP_LESS)))
1453             {
1454               t.kind = ctsk_typedef;
1455               /* For a typedef name, record the meaning, not the name.
1456                  In case of 'foo foo, bar;'.  */
1457               t.spec = lookup_name (value);
1458             }
1459           else
1460             {
1461               tree proto = NULL_TREE;
1462               gcc_assert (c_dialect_objc ());
1463               t.kind = ctsk_objc;
1464               if (c_parser_next_token_is (parser, CPP_LESS))
1465                 proto = c_parser_objc_protocol_refs (parser);
1466               t.spec = objc_get_protocol_qualified_type (value, proto);
1467             }
1468           declspecs_add_type (specs, t);
1469           continue;
1470         }
1471       if (c_parser_next_token_is (parser, CPP_LESS))
1472         {
1473           /* Make "<SomeProtocol>" equivalent to "id <SomeProtocol>" -
1474              nisse@lysator.liu.se.  */
1475           tree proto;
1476           gcc_assert (c_dialect_objc ());
1477           if (!typespec_ok || seen_type)
1478             break;
1479           proto = c_parser_objc_protocol_refs (parser);
1480           t.kind = ctsk_objc;
1481           t.spec = objc_get_protocol_qualified_type (NULL_TREE, proto);
1482           declspecs_add_type (specs, t);
1483           continue;
1484         }
1485       gcc_assert (c_parser_next_token_is (parser, CPP_KEYWORD));
1486       switch (c_parser_peek_token (parser)->keyword)
1487         {
1488         case RID_STATIC:
1489         case RID_EXTERN:
1490         case RID_REGISTER:
1491         case RID_TYPEDEF:
1492         case RID_INLINE:
1493         case RID_AUTO:
1494         case RID_THREAD:
1495           if (!scspec_ok)
1496             goto out;
1497           attrs_ok = true;
1498           /* TODO: Distinguish between function specifiers (inline)
1499              and storage class specifiers, either here or in
1500              declspecs_add_scspec.  */
1501           declspecs_add_scspec (specs, c_parser_peek_token (parser)->value);
1502           c_parser_consume_token (parser);
1503           break;
1504         case RID_UNSIGNED:
1505         case RID_LONG:
1506         case RID_SHORT:
1507         case RID_SIGNED:
1508         case RID_COMPLEX:
1509         case RID_INT:
1510         case RID_CHAR:
1511         case RID_FLOAT:
1512         case RID_DOUBLE:
1513         case RID_VOID:
1514         case RID_DFLOAT32:
1515         case RID_DFLOAT64:
1516         case RID_DFLOAT128:
1517         case RID_BOOL:
1518         case RID_FRACT:
1519         case RID_ACCUM:
1520         case RID_SAT:
1521           if (!typespec_ok)
1522             goto out;
1523           attrs_ok = true;
1524           seen_type = true;
1525           if (c_dialect_objc ())
1526             parser->objc_need_raw_identifier = true;
1527           t.kind = ctsk_resword;
1528           t.spec = c_parser_peek_token (parser)->value;
1529           declspecs_add_type (specs, t);
1530           c_parser_consume_token (parser);
1531           break;
1532         case RID_ENUM:
1533           if (!typespec_ok)
1534             goto out;
1535           attrs_ok = true;
1536           seen_type = true;
1537           t = c_parser_enum_specifier (parser);
1538           declspecs_add_type (specs, t);
1539           break;
1540         case RID_STRUCT:
1541         case RID_UNION:
1542           if (!typespec_ok)
1543             goto out;
1544           attrs_ok = true;
1545           seen_type = true;
1546           t = c_parser_struct_or_union_specifier (parser);
1547           declspecs_add_type (specs, t);
1548           break;
1549         case RID_TYPEOF:
1550           /* ??? The old parser rejected typeof after other type
1551              specifiers, but is a syntax error the best way of
1552              handling this?  */
1553           if (!typespec_ok || seen_type)
1554             goto out;
1555           attrs_ok = true;
1556           seen_type = true;
1557           t = c_parser_typeof_specifier (parser);
1558           declspecs_add_type (specs, t);
1559           break;
1560         case RID_CONST:
1561         case RID_VOLATILE:
1562         case RID_RESTRICT:
1563           attrs_ok = true;
1564           declspecs_add_qual (specs, c_parser_peek_token (parser)->value);
1565           c_parser_consume_token (parser);
1566           break;
1567         case RID_ATTRIBUTE:
1568           if (!attrs_ok)
1569             goto out;
1570           attrs = c_parser_attributes (parser);
1571           declspecs_add_attrs (specs, attrs);
1572           break;
1573         default:
1574           goto out;
1575         }
1576     }
1577  out: ;
1578 }
1579
1580 /* Parse an enum specifier (C90 6.5.2.2, C99 6.7.2.2).
1581
1582    enum-specifier:
1583      enum attributes[opt] identifier[opt] { enumerator-list } attributes[opt]
1584      enum attributes[opt] identifier[opt] { enumerator-list , } attributes[opt]
1585      enum attributes[opt] identifier
1586
1587    The form with trailing comma is new in C99.  The forms with
1588    attributes are GNU extensions.  In GNU C, we accept any expression
1589    without commas in the syntax (assignment expressions, not just
1590    conditional expressions); assignment expressions will be diagnosed
1591    as non-constant.
1592
1593    enumerator-list:
1594      enumerator
1595      enumerator-list , enumerator
1596
1597    enumerator:
1598      enumeration-constant
1599      enumeration-constant = constant-expression
1600 */
1601
1602 static struct c_typespec
1603 c_parser_enum_specifier (c_parser *parser)
1604 {
1605   struct c_typespec ret;
1606   tree attrs;
1607   tree ident = NULL_TREE;
1608   location_t ident_loc = UNKNOWN_LOCATION;  /* Quiet warning.  */
1609   gcc_assert (c_parser_next_token_is_keyword (parser, RID_ENUM));
1610   c_parser_consume_token (parser);
1611   attrs = c_parser_attributes (parser);
1612   /* Set the location in case we create a decl now.  */
1613   c_parser_set_source_position_from_token (c_parser_peek_token (parser));
1614   if (c_parser_next_token_is (parser, CPP_NAME))
1615     {
1616       ident = c_parser_peek_token (parser)->value;
1617       ident_loc = c_parser_peek_token (parser)->location;
1618       c_parser_consume_token (parser);
1619     }
1620   if (c_parser_next_token_is (parser, CPP_OPEN_BRACE))
1621     {
1622       /* Parse an enum definition.  */
1623       struct c_enum_contents the_enum;
1624       tree type = start_enum (&the_enum, ident);
1625       tree postfix_attrs;
1626       /* We chain the enumerators in reverse order, then put them in
1627          forward order at the end.  */
1628       tree values = NULL_TREE;
1629       c_parser_consume_token (parser);
1630       while (true)
1631         {
1632           tree enum_id;
1633           tree enum_value;
1634           tree enum_decl;
1635           bool seen_comma;
1636           c_token *token;
1637           location_t comma_loc = UNKNOWN_LOCATION;  /* Quiet warning.  */
1638           location_t value_loc;
1639           if (c_parser_next_token_is_not (parser, CPP_NAME))
1640             {
1641               c_parser_error (parser, "expected identifier");
1642               c_parser_skip_until_found (parser, CPP_CLOSE_BRACE, NULL);
1643               values = error_mark_node;
1644               break;
1645             }
1646           token = c_parser_peek_token (parser);
1647           enum_id = token->value;
1648           /* Set the location in case we create a decl now.  */
1649           c_parser_set_source_position_from_token (token);
1650           value_loc = token->location;
1651           c_parser_consume_token (parser);
1652           if (c_parser_next_token_is (parser, CPP_EQ))
1653             {
1654               c_parser_consume_token (parser);
1655               value_loc = c_parser_peek_token (parser)->location;
1656               enum_value = c_parser_expr_no_commas (parser, NULL).value;
1657             }
1658           else
1659             enum_value = NULL_TREE;
1660           enum_decl = build_enumerator (&the_enum, enum_id, enum_value, 
1661                                         value_loc);
1662           TREE_CHAIN (enum_decl) = values;
1663           values = enum_decl;
1664           seen_comma = false;
1665           if (c_parser_next_token_is (parser, CPP_COMMA))
1666             {
1667               comma_loc = c_parser_peek_token (parser)->location;
1668               seen_comma = true;
1669               c_parser_consume_token (parser);
1670             }
1671           if (c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
1672             {
1673               if (seen_comma && !flag_isoc99)
1674                 pedwarn (comma_loc, OPT_pedantic, "comma at end of enumerator list");
1675               c_parser_consume_token (parser);
1676               break;
1677             }
1678           if (!seen_comma)
1679             {
1680               c_parser_error (parser, "expected %<,%> or %<}%>");
1681               c_parser_skip_until_found (parser, CPP_CLOSE_BRACE, NULL);
1682               values = error_mark_node;
1683               break;
1684             }
1685         }
1686       postfix_attrs = c_parser_attributes (parser);
1687       ret.spec = finish_enum (type, nreverse (values),
1688                               chainon (attrs, postfix_attrs));
1689       ret.kind = ctsk_tagdef;
1690       return ret;
1691     }
1692   else if (!ident)
1693     {
1694       c_parser_error (parser, "expected %<{%>");
1695       ret.spec = error_mark_node;
1696       ret.kind = ctsk_tagref;
1697       return ret;
1698     }
1699   ret = parser_xref_tag (ENUMERAL_TYPE, ident);
1700   /* In ISO C, enumerated types can be referred to only if already
1701      defined.  */
1702   if (pedantic && !COMPLETE_TYPE_P (ret.spec))
1703     {
1704       gcc_assert (ident);
1705       pedwarn (ident_loc, OPT_pedantic,
1706                "ISO C forbids forward references to %<enum%> types");
1707     }
1708   return ret;
1709 }
1710
1711 /* Parse a struct or union specifier (C90 6.5.2.1, C99 6.7.2.1).
1712
1713    struct-or-union-specifier:
1714      struct-or-union attributes[opt] identifier[opt]
1715        { struct-contents } attributes[opt]
1716      struct-or-union attributes[opt] identifier
1717
1718    struct-contents:
1719      struct-declaration-list
1720
1721    struct-declaration-list:
1722      struct-declaration ;
1723      struct-declaration-list struct-declaration ;
1724
1725    GNU extensions:
1726
1727    struct-contents:
1728      empty
1729      struct-declaration
1730      struct-declaration-list struct-declaration
1731
1732    struct-declaration-list:
1733      struct-declaration-list ;
1734      ;
1735
1736    (Note that in the syntax here, unlike that in ISO C, the semicolons
1737    are included here rather than in struct-declaration, in order to
1738    describe the syntax with extra semicolons and missing semicolon at
1739    end.)
1740
1741    Objective-C:
1742
1743    struct-declaration-list:
1744      @defs ( class-name )
1745
1746    (Note this does not include a trailing semicolon, but can be
1747    followed by further declarations, and gets a pedwarn-if-pedantic
1748    when followed by a semicolon.)  */
1749
1750 static struct c_typespec
1751 c_parser_struct_or_union_specifier (c_parser *parser)
1752 {
1753   struct c_typespec ret;
1754   tree attrs;
1755   tree ident = NULL_TREE;
1756   enum tree_code code;
1757   switch (c_parser_peek_token (parser)->keyword)
1758     {
1759     case RID_STRUCT:
1760       code = RECORD_TYPE;
1761       break;
1762     case RID_UNION:
1763       code = UNION_TYPE;
1764       break;
1765     default:
1766       gcc_unreachable ();
1767     }
1768   c_parser_consume_token (parser);
1769   attrs = c_parser_attributes (parser);
1770   /* Set the location in case we create a decl now.  */
1771   c_parser_set_source_position_from_token (c_parser_peek_token (parser));
1772   if (c_parser_next_token_is (parser, CPP_NAME))
1773     {
1774       ident = c_parser_peek_token (parser)->value;
1775       c_parser_consume_token (parser);
1776     }
1777   if (c_parser_next_token_is (parser, CPP_OPEN_BRACE))
1778     {
1779       /* Parse a struct or union definition.  Start the scope of the
1780          tag before parsing components.  */
1781       tree type = start_struct (code, ident);
1782       tree postfix_attrs;
1783       /* We chain the components in reverse order, then put them in
1784          forward order at the end.  Each struct-declaration may
1785          declare multiple components (comma-separated), so we must use
1786          chainon to join them, although when parsing each
1787          struct-declaration we can use TREE_CHAIN directly.
1788
1789          The theory behind all this is that there will be more
1790          semicolon separated fields than comma separated fields, and
1791          so we'll be minimizing the number of node traversals required
1792          by chainon.  */
1793       tree contents = NULL_TREE;
1794       c_parser_consume_token (parser);
1795       /* Handle the Objective-C @defs construct,
1796          e.g. foo(sizeof(struct{ @defs(ClassName) }));.  */
1797       if (c_parser_next_token_is_keyword (parser, RID_AT_DEFS))
1798         {
1799           tree name;
1800           gcc_assert (c_dialect_objc ());
1801           c_parser_consume_token (parser);
1802           if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
1803             goto end_at_defs;
1804           if (c_parser_next_token_is (parser, CPP_NAME)
1805               && c_parser_peek_token (parser)->id_kind == C_ID_CLASSNAME)
1806             {
1807               name = c_parser_peek_token (parser)->value;
1808               c_parser_consume_token (parser);
1809             }
1810           else
1811             {
1812               c_parser_error (parser, "expected class name");
1813               c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
1814               goto end_at_defs;
1815             }
1816           c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
1817                                      "expected %<)%>");
1818           contents = nreverse (objc_get_class_ivars (name));
1819         }
1820     end_at_defs:
1821       /* Parse the struct-declarations and semicolons.  Problems with
1822          semicolons are diagnosed here; empty structures are diagnosed
1823          elsewhere.  */
1824       while (true)
1825         {
1826           tree decls;
1827           /* Parse any stray semicolon.  */
1828           if (c_parser_next_token_is (parser, CPP_SEMICOLON))
1829             {
1830               pedwarn (c_parser_peek_token (parser)->location, OPT_pedantic, 
1831                        "extra semicolon in struct or union specified");
1832               c_parser_consume_token (parser);
1833               continue;
1834             }
1835           /* Stop if at the end of the struct or union contents.  */
1836           if (c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
1837             {
1838               c_parser_consume_token (parser);
1839               break;
1840             }
1841           /* Accept #pragmas at struct scope.  */
1842           if (c_parser_next_token_is (parser, CPP_PRAGMA))
1843             {
1844               c_parser_pragma (parser, pragma_external);
1845               continue;
1846             }
1847           /* Parse some comma-separated declarations, but not the
1848              trailing semicolon if any.  */
1849           decls = c_parser_struct_declaration (parser);
1850           contents = chainon (decls, contents);
1851           /* If no semicolon follows, either we have a parse error or
1852              are at the end of the struct or union and should
1853              pedwarn.  */
1854           if (c_parser_next_token_is (parser, CPP_SEMICOLON))
1855             c_parser_consume_token (parser);
1856           else
1857             {
1858               if (c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
1859                 pedwarn (c_parser_peek_token (parser)->location, 0, 
1860                          "no semicolon at end of struct or union");
1861               else
1862                 {
1863                   c_parser_error (parser, "expected %<;%>");
1864                   c_parser_skip_until_found (parser, CPP_CLOSE_BRACE, NULL);
1865                   break;
1866                 }
1867             }
1868         }
1869       postfix_attrs = c_parser_attributes (parser);
1870       ret.spec = finish_struct (type, nreverse (contents),
1871                                 chainon (attrs, postfix_attrs));
1872       ret.kind = ctsk_tagdef;
1873       return ret;
1874     }
1875   else if (!ident)
1876     {
1877       c_parser_error (parser, "expected %<{%>");
1878       ret.spec = error_mark_node;
1879       ret.kind = ctsk_tagref;
1880       return ret;
1881     }
1882   ret = parser_xref_tag (code, ident);
1883   return ret;
1884 }
1885
1886 /* Parse a struct-declaration (C90 6.5.2.1, C99 6.7.2.1), *without*
1887    the trailing semicolon.
1888
1889    struct-declaration:
1890      specifier-qualifier-list struct-declarator-list
1891
1892    specifier-qualifier-list:
1893      type-specifier specifier-qualifier-list[opt]
1894      type-qualifier specifier-qualifier-list[opt]
1895      attributes specifier-qualifier-list[opt]
1896
1897    struct-declarator-list:
1898      struct-declarator
1899      struct-declarator-list , attributes[opt] struct-declarator
1900
1901    struct-declarator:
1902      declarator attributes[opt]
1903      declarator[opt] : constant-expression attributes[opt]
1904
1905    GNU extensions:
1906
1907    struct-declaration:
1908      __extension__ struct-declaration
1909      specifier-qualifier-list
1910
1911    Unlike the ISO C syntax, semicolons are handled elsewhere.  The use
1912    of attributes where shown is a GNU extension.  In GNU C, we accept
1913    any expression without commas in the syntax (assignment
1914    expressions, not just conditional expressions); assignment
1915    expressions will be diagnosed as non-constant.  */
1916
1917 static tree
1918 c_parser_struct_declaration (c_parser *parser)
1919 {
1920   struct c_declspecs *specs;
1921   tree prefix_attrs;
1922   tree all_prefix_attrs;
1923   tree decls;
1924   location_t decl_loc;
1925   if (c_parser_next_token_is_keyword (parser, RID_EXTENSION))
1926     {
1927       int ext;
1928       tree decl;
1929       ext = disable_extension_diagnostics ();
1930       c_parser_consume_token (parser);
1931       decl = c_parser_struct_declaration (parser);
1932       restore_extension_diagnostics (ext);
1933       return decl;
1934     }
1935   specs = build_null_declspecs ();
1936   decl_loc = c_parser_peek_token (parser)->location;
1937   c_parser_declspecs (parser, specs, false, true, true);
1938   if (parser->error)
1939     return NULL_TREE;
1940   if (!specs->declspecs_seen_p)
1941     {
1942       c_parser_error (parser, "expected specifier-qualifier-list");
1943       return NULL_TREE;
1944     }
1945   finish_declspecs (specs);
1946   if (c_parser_next_token_is (parser, CPP_SEMICOLON))
1947     {
1948       tree ret;
1949       if (!specs->type_seen_p)
1950         {
1951           pedwarn (decl_loc, OPT_pedantic, 
1952                    "ISO C forbids member declarations with no members");
1953           shadow_tag_warned (specs, pedantic);
1954           ret = NULL_TREE;
1955         }
1956       else
1957         {
1958           /* Support for unnamed structs or unions as members of
1959              structs or unions (which is [a] useful and [b] supports
1960              MS P-SDK).  */
1961           tree attrs = NULL;
1962
1963           ret = grokfield (c_parser_peek_token (parser)->location,
1964                            build_id_declarator (NULL_TREE), specs,
1965                            NULL_TREE, &attrs);
1966           if (ret)
1967             decl_attributes (&ret, attrs, 0);
1968         }
1969       return ret;
1970     }
1971   pending_xref_error ();
1972   prefix_attrs = specs->attrs;
1973   all_prefix_attrs = prefix_attrs;
1974   specs->attrs = NULL_TREE;
1975   decls = NULL_TREE;
1976   while (true)
1977     {
1978       /* Declaring one or more declarators or un-named bit-fields.  */
1979       struct c_declarator *declarator;
1980       bool dummy = false;
1981       if (c_parser_next_token_is (parser, CPP_COLON))
1982         declarator = build_id_declarator (NULL_TREE);
1983       else
1984         declarator = c_parser_declarator (parser, specs->type_seen_p,
1985                                           C_DTR_NORMAL, &dummy);
1986       if (declarator == NULL)
1987         {
1988           c_parser_skip_to_end_of_block_or_statement (parser);
1989           break;
1990         }
1991       if (c_parser_next_token_is (parser, CPP_COLON)
1992           || c_parser_next_token_is (parser, CPP_COMMA)
1993           || c_parser_next_token_is (parser, CPP_SEMICOLON)
1994           || c_parser_next_token_is (parser, CPP_CLOSE_BRACE)
1995           || c_parser_next_token_is_keyword (parser, RID_ATTRIBUTE))
1996         {
1997           tree postfix_attrs = NULL_TREE;
1998           tree width = NULL_TREE;
1999           tree d;
2000           if (c_parser_next_token_is (parser, CPP_COLON))
2001             {
2002               c_parser_consume_token (parser);
2003               width = c_parser_expr_no_commas (parser, NULL).value;
2004             }
2005           if (c_parser_next_token_is_keyword (parser, RID_ATTRIBUTE))
2006             postfix_attrs = c_parser_attributes (parser);
2007           d = grokfield (c_parser_peek_token (parser)->location,
2008                          declarator, specs, width, &all_prefix_attrs);
2009           decl_attributes (&d, chainon (postfix_attrs,
2010                                         all_prefix_attrs), 0);
2011           TREE_CHAIN (d) = decls;
2012           decls = d;
2013           if (c_parser_next_token_is_keyword (parser, RID_ATTRIBUTE))
2014             all_prefix_attrs = chainon (c_parser_attributes (parser),
2015                                         prefix_attrs);
2016           else
2017             all_prefix_attrs = prefix_attrs;
2018           if (c_parser_next_token_is (parser, CPP_COMMA))
2019             c_parser_consume_token (parser);
2020           else if (c_parser_next_token_is (parser, CPP_SEMICOLON)
2021                    || c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
2022             {
2023               /* Semicolon consumed in caller.  */
2024               break;
2025             }
2026           else
2027             {
2028               c_parser_error (parser, "expected %<,%>, %<;%> or %<}%>");
2029               break;
2030             }
2031         }
2032       else
2033         {
2034           c_parser_error (parser,
2035                           "expected %<:%>, %<,%>, %<;%>, %<}%> or "
2036                           "%<__attribute__%>");
2037           break;
2038         }
2039     }
2040   return decls;
2041 }
2042
2043 /* Parse a typeof specifier (a GNU extension).
2044
2045    typeof-specifier:
2046      typeof ( expression )
2047      typeof ( type-name )
2048 */
2049
2050 static struct c_typespec
2051 c_parser_typeof_specifier (c_parser *parser)
2052 {
2053   struct c_typespec ret;
2054   ret.kind = ctsk_typeof;
2055   ret.spec = error_mark_node;
2056   gcc_assert (c_parser_next_token_is_keyword (parser, RID_TYPEOF));
2057   c_parser_consume_token (parser);
2058   skip_evaluation++;
2059   in_typeof++;
2060   if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
2061     {
2062       skip_evaluation--;
2063       in_typeof--;
2064       return ret;
2065     }
2066   if (c_parser_next_token_starts_typename (parser))
2067     {
2068       struct c_type_name *type = c_parser_type_name (parser);
2069       skip_evaluation--;
2070       in_typeof--;
2071       if (type != NULL)
2072         {
2073           ret.spec = groktypename (type);
2074           pop_maybe_used (variably_modified_type_p (ret.spec, NULL_TREE));
2075         }
2076     }
2077   else
2078     {
2079       bool was_vm;
2080       location_t here = c_parser_peek_token (parser)->location;
2081       struct c_expr expr = c_parser_expression (parser);
2082       skip_evaluation--;
2083       in_typeof--;
2084       if (TREE_CODE (expr.value) == COMPONENT_REF
2085           && DECL_C_BIT_FIELD (TREE_OPERAND (expr.value, 1)))
2086         error_at (here, "%<typeof%> applied to a bit-field");
2087       ret.spec = TREE_TYPE (expr.value);
2088       was_vm = variably_modified_type_p (ret.spec, NULL_TREE);
2089       /* This should be returned with the type so that when the type
2090          is evaluated, this can be evaluated.  For now, we avoid
2091          evaluation when the context might.  */
2092       if (!skip_evaluation && was_vm)
2093         {
2094           tree e = expr.value;
2095
2096           /* If the expression is not of a type to which we cannot assign a line
2097              number, wrap the thing in a no-op NOP_EXPR.  */
2098           if (DECL_P (e) || CONSTANT_CLASS_P (e))
2099             e = build1 (NOP_EXPR, void_type_node, e);
2100
2101           protected_set_expr_location (e, here);
2102
2103           add_stmt (e);
2104         }
2105       pop_maybe_used (was_vm);
2106     }
2107   c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
2108   return ret;
2109 }
2110
2111 /* Parse a declarator, possibly an abstract declarator (C90 6.5.4,
2112    6.5.5, C99 6.7.5, 6.7.6).  If TYPE_SEEN_P then a typedef name may
2113    be redeclared; otherwise it may not.  KIND indicates which kind of
2114    declarator is wanted.  Returns a valid declarator except in the
2115    case of a syntax error in which case NULL is returned.  *SEEN_ID is
2116    set to true if an identifier being declared is seen; this is used
2117    to diagnose bad forms of abstract array declarators and to
2118    determine whether an identifier list is syntactically permitted.
2119
2120    declarator:
2121      pointer[opt] direct-declarator
2122
2123    direct-declarator:
2124      identifier
2125      ( attributes[opt] declarator )
2126      direct-declarator array-declarator
2127      direct-declarator ( parameter-type-list )
2128      direct-declarator ( identifier-list[opt] )
2129
2130    pointer:
2131      * type-qualifier-list[opt]
2132      * type-qualifier-list[opt] pointer
2133
2134    type-qualifier-list:
2135      type-qualifier
2136      attributes
2137      type-qualifier-list type-qualifier
2138      type-qualifier-list attributes
2139
2140    parameter-type-list:
2141      parameter-list
2142      parameter-list , ...
2143
2144    parameter-list:
2145      parameter-declaration
2146      parameter-list , parameter-declaration
2147
2148    parameter-declaration:
2149      declaration-specifiers declarator attributes[opt]
2150      declaration-specifiers abstract-declarator[opt] attributes[opt]
2151
2152    identifier-list:
2153      identifier
2154      identifier-list , identifier
2155
2156    abstract-declarator:
2157      pointer
2158      pointer[opt] direct-abstract-declarator
2159
2160    direct-abstract-declarator:
2161      ( attributes[opt] abstract-declarator )
2162      direct-abstract-declarator[opt] array-declarator
2163      direct-abstract-declarator[opt] ( parameter-type-list[opt] )
2164
2165    GNU extensions:
2166
2167    direct-declarator:
2168      direct-declarator ( parameter-forward-declarations
2169                          parameter-type-list[opt] )
2170
2171    direct-abstract-declarator:
2172      direct-abstract-declarator[opt] ( parameter-forward-declarations
2173                                        parameter-type-list[opt] )
2174
2175    parameter-forward-declarations:
2176      parameter-list ;
2177      parameter-forward-declarations parameter-list ;
2178
2179    The uses of attributes shown above are GNU extensions.
2180
2181    Some forms of array declarator are not included in C99 in the
2182    syntax for abstract declarators; these are disallowed elsewhere.
2183    This may be a defect (DR#289).
2184
2185    This function also accepts an omitted abstract declarator as being
2186    an abstract declarator, although not part of the formal syntax.  */
2187
2188 static struct c_declarator *
2189 c_parser_declarator (c_parser *parser, bool type_seen_p, c_dtr_syn kind,
2190                      bool *seen_id)
2191 {
2192   /* Parse any initial pointer part.  */
2193   if (c_parser_next_token_is (parser, CPP_MULT))
2194     {
2195       struct c_declspecs *quals_attrs = build_null_declspecs ();
2196       struct c_declarator *inner;
2197       c_parser_consume_token (parser);
2198       c_parser_declspecs (parser, quals_attrs, false, false, true);
2199       inner = c_parser_declarator (parser, type_seen_p, kind, seen_id);
2200       if (inner == NULL)
2201         return NULL;
2202       else
2203         return make_pointer_declarator (quals_attrs, inner);
2204     }
2205   /* Now we have a direct declarator, direct abstract declarator or
2206      nothing (which counts as a direct abstract declarator here).  */
2207   return c_parser_direct_declarator (parser, type_seen_p, kind, seen_id);
2208 }
2209
2210 /* Parse a direct declarator or direct abstract declarator; arguments
2211    as c_parser_declarator.  */
2212
2213 static struct c_declarator *
2214 c_parser_direct_declarator (c_parser *parser, bool type_seen_p, c_dtr_syn kind,
2215                             bool *seen_id)
2216 {
2217   /* The direct declarator must start with an identifier (possibly
2218      omitted) or a parenthesized declarator (possibly abstract).  In
2219      an ordinary declarator, initial parentheses must start a
2220      parenthesized declarator.  In an abstract declarator or parameter
2221      declarator, they could start a parenthesized declarator or a
2222      parameter list.  To tell which, the open parenthesis and any
2223      following attributes must be read.  If a declaration specifier
2224      follows, then it is a parameter list; if the specifier is a
2225      typedef name, there might be an ambiguity about redeclaring it,
2226      which is resolved in the direction of treating it as a typedef
2227      name.  If a close parenthesis follows, it is also an empty
2228      parameter list, as the syntax does not permit empty abstract
2229      declarators.  Otherwise, it is a parenthesized declarator (in
2230      which case the analysis may be repeated inside it, recursively).
2231
2232      ??? There is an ambiguity in a parameter declaration "int
2233      (__attribute__((foo)) x)", where x is not a typedef name: it
2234      could be an abstract declarator for a function, or declare x with
2235      parentheses.  The proper resolution of this ambiguity needs
2236      documenting.  At present we follow an accident of the old
2237      parser's implementation, whereby the first parameter must have
2238      some declaration specifiers other than just attributes.  Thus as
2239      a parameter declaration it is treated as a parenthesized
2240      parameter named x, and as an abstract declarator it is
2241      rejected.
2242
2243      ??? Also following the old parser, attributes inside an empty
2244      parameter list are ignored, making it a list not yielding a
2245      prototype, rather than giving an error or making it have one
2246      parameter with implicit type int.
2247
2248      ??? Also following the old parser, typedef names may be
2249      redeclared in declarators, but not Objective-C class names.  */
2250
2251   if (kind != C_DTR_ABSTRACT
2252       && c_parser_next_token_is (parser, CPP_NAME)
2253       && ((type_seen_p
2254            && c_parser_peek_token (parser)->id_kind == C_ID_TYPENAME)
2255           || c_parser_peek_token (parser)->id_kind == C_ID_ID))
2256     {
2257       struct c_declarator *inner
2258         = build_id_declarator (c_parser_peek_token (parser)->value);
2259       *seen_id = true;
2260       inner->id_loc = c_parser_peek_token (parser)->location;
2261       c_parser_consume_token (parser);
2262       return c_parser_direct_declarator_inner (parser, *seen_id, inner);
2263     }
2264
2265   if (kind != C_DTR_NORMAL
2266       && c_parser_next_token_is (parser, CPP_OPEN_SQUARE))
2267     {
2268       struct c_declarator *inner = build_id_declarator (NULL_TREE);
2269       return c_parser_direct_declarator_inner (parser, *seen_id, inner);
2270     }
2271
2272   /* Either we are at the end of an abstract declarator, or we have
2273      parentheses.  */
2274
2275   if (c_parser_next_token_is (parser, CPP_OPEN_PAREN))
2276     {
2277       tree attrs;
2278       struct c_declarator *inner;
2279       c_parser_consume_token (parser);
2280       attrs = c_parser_attributes (parser);
2281       if (kind != C_DTR_NORMAL
2282           && (c_parser_next_token_starts_declspecs (parser)
2283               || c_parser_next_token_is (parser, CPP_CLOSE_PAREN)))
2284         {
2285           struct c_arg_info *args
2286             = c_parser_parms_declarator (parser, kind == C_DTR_NORMAL,
2287                                          attrs);
2288           if (args == NULL)
2289             return NULL;
2290           else
2291             {
2292               inner
2293                 = build_function_declarator (args,
2294                                              build_id_declarator (NULL_TREE));
2295               return c_parser_direct_declarator_inner (parser, *seen_id,
2296                                                        inner);
2297             }
2298         }
2299       /* A parenthesized declarator.  */
2300       inner = c_parser_declarator (parser, type_seen_p, kind, seen_id);
2301       if (inner != NULL && attrs != NULL)
2302         inner = build_attrs_declarator (attrs, inner);
2303       if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
2304         {
2305           c_parser_consume_token (parser);
2306           if (inner == NULL)
2307             return NULL;
2308           else
2309             return c_parser_direct_declarator_inner (parser, *seen_id, inner);
2310         }
2311       else
2312         {
2313           c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
2314                                      "expected %<)%>");
2315           return NULL;
2316         }
2317     }
2318   else
2319     {
2320       if (kind == C_DTR_NORMAL)
2321         {
2322           c_parser_error (parser, "expected identifier or %<(%>");
2323           return NULL;
2324         }
2325       else
2326         return build_id_declarator (NULL_TREE);
2327     }
2328 }
2329
2330 /* Parse part of a direct declarator or direct abstract declarator,
2331    given that some (in INNER) has already been parsed; ID_PRESENT is
2332    true if an identifier is present, false for an abstract
2333    declarator.  */
2334
2335 static struct c_declarator *
2336 c_parser_direct_declarator_inner (c_parser *parser, bool id_present,
2337                                   struct c_declarator *inner)
2338 {
2339   /* Parse a sequence of array declarators and parameter lists.  */
2340   if (c_parser_next_token_is (parser, CPP_OPEN_SQUARE))
2341     {
2342       struct c_declarator *declarator;
2343       struct c_declspecs *quals_attrs = build_null_declspecs ();
2344       bool static_seen;
2345       bool star_seen;
2346       tree dimen;
2347       c_parser_consume_token (parser);
2348       c_parser_declspecs (parser, quals_attrs, false, false, true);
2349       static_seen = c_parser_next_token_is_keyword (parser, RID_STATIC);
2350       if (static_seen)
2351         c_parser_consume_token (parser);
2352       if (static_seen && !quals_attrs->declspecs_seen_p)
2353         c_parser_declspecs (parser, quals_attrs, false, false, true);
2354       if (!quals_attrs->declspecs_seen_p)
2355         quals_attrs = NULL;
2356       /* If "static" is present, there must be an array dimension.
2357          Otherwise, there may be a dimension, "*", or no
2358          dimension.  */
2359       if (static_seen)
2360         {
2361           star_seen = false;
2362           dimen = c_parser_expr_no_commas (parser, NULL).value;
2363         }
2364       else
2365         {
2366           if (c_parser_next_token_is (parser, CPP_CLOSE_SQUARE))
2367             {
2368               dimen = NULL_TREE;
2369               star_seen = false;
2370             }
2371           else if (c_parser_next_token_is (parser, CPP_MULT))
2372             {
2373               if (c_parser_peek_2nd_token (parser)->type == CPP_CLOSE_SQUARE)
2374                 {
2375                   dimen = NULL_TREE;
2376                   star_seen = true;
2377                   c_parser_consume_token (parser);
2378                 }
2379               else
2380                 {
2381                   star_seen = false;
2382                   dimen = c_parser_expr_no_commas (parser, NULL).value;
2383                 }
2384             }
2385           else
2386             {
2387               star_seen = false;
2388               dimen = c_parser_expr_no_commas (parser, NULL).value;
2389             }
2390         }
2391       if (c_parser_next_token_is (parser, CPP_CLOSE_SQUARE))
2392         c_parser_consume_token (parser);
2393       else
2394         {
2395           c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE,
2396                                      "expected %<]%>");
2397           return NULL;
2398         }
2399       declarator = build_array_declarator (dimen, quals_attrs, static_seen,
2400                                            star_seen);
2401       if (declarator == NULL)
2402         return NULL;
2403       inner = set_array_declarator_inner (declarator, inner);
2404       return c_parser_direct_declarator_inner (parser, id_present, inner);
2405     }
2406   else if (c_parser_next_token_is (parser, CPP_OPEN_PAREN))
2407     {
2408       tree attrs;
2409       struct c_arg_info *args;
2410       c_parser_consume_token (parser);
2411       attrs = c_parser_attributes (parser);
2412       args = c_parser_parms_declarator (parser, id_present, attrs);
2413       if (args == NULL)
2414         return NULL;
2415       else
2416         {
2417           inner = build_function_declarator (args, inner);
2418           return c_parser_direct_declarator_inner (parser, id_present, inner);
2419         }
2420     }
2421   return inner;
2422 }
2423
2424 /* Parse a parameter list or identifier list, including the closing
2425    parenthesis but not the opening one.  ATTRS are the attributes at
2426    the start of the list.  ID_LIST_OK is true if an identifier list is
2427    acceptable; such a list must not have attributes at the start.  */
2428
2429 static struct c_arg_info *
2430 c_parser_parms_declarator (c_parser *parser, bool id_list_ok, tree attrs)
2431 {
2432   push_scope ();
2433   declare_parm_level ();
2434   /* If the list starts with an identifier, it is an identifier list.
2435      Otherwise, it is either a prototype list or an empty list.  */
2436   if (id_list_ok
2437       && !attrs
2438       && c_parser_next_token_is (parser, CPP_NAME)
2439       && c_parser_peek_token (parser)->id_kind == C_ID_ID)
2440     {
2441       tree list = NULL_TREE, *nextp = &list;
2442       while (c_parser_next_token_is (parser, CPP_NAME)
2443              && c_parser_peek_token (parser)->id_kind == C_ID_ID)
2444         {
2445           *nextp = build_tree_list (NULL_TREE,
2446                                     c_parser_peek_token (parser)->value);
2447           nextp = & TREE_CHAIN (*nextp);
2448           c_parser_consume_token (parser);
2449           if (c_parser_next_token_is_not (parser, CPP_COMMA))
2450             break;
2451           c_parser_consume_token (parser);
2452           if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
2453             {
2454               c_parser_error (parser, "expected identifier");
2455               break;
2456             }
2457         }
2458       if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
2459         {
2460           struct c_arg_info *ret = XOBNEW (&parser_obstack, struct c_arg_info);
2461           ret->parms = 0;
2462           ret->tags = 0;
2463           ret->types = list;
2464           ret->others = 0;
2465           ret->pending_sizes = 0;
2466           ret->had_vla_unspec = 0;
2467           c_parser_consume_token (parser);
2468           pop_scope ();
2469           return ret;
2470         }
2471       else
2472         {
2473           c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
2474                                      "expected %<)%>");
2475           pop_scope ();
2476           return NULL;
2477         }
2478     }
2479   else
2480     {
2481       struct c_arg_info *ret = c_parser_parms_list_declarator (parser, attrs);
2482       pop_scope ();
2483       return ret;
2484     }
2485 }
2486
2487 /* Parse a parameter list (possibly empty), including the closing
2488    parenthesis but not the opening one.  ATTRS are the attributes at
2489    the start of the list.  */
2490
2491 static struct c_arg_info *
2492 c_parser_parms_list_declarator (c_parser *parser, tree attrs)
2493 {
2494   bool good_parm = false;
2495   /* ??? Following the old parser, forward parameter declarations may
2496      use abstract declarators, and if no real parameter declarations
2497      follow the forward declarations then this is not diagnosed.  Also
2498      note as above that attributes are ignored as the only contents of
2499      the parentheses, or as the only contents after forward
2500      declarations.  */
2501   if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
2502     {
2503       struct c_arg_info *ret = XOBNEW (&parser_obstack, struct c_arg_info);
2504       ret->parms = 0;
2505       ret->tags = 0;
2506       ret->types = 0;
2507       ret->others = 0;
2508       ret->pending_sizes = 0;
2509       ret->had_vla_unspec = 0;
2510       c_parser_consume_token (parser);
2511       return ret;
2512     }
2513   if (c_parser_next_token_is (parser, CPP_ELLIPSIS))
2514     {
2515       struct c_arg_info *ret = XOBNEW (&parser_obstack, struct c_arg_info);
2516       ret->parms = 0;
2517       ret->tags = 0;
2518       ret->others = 0;
2519       ret->pending_sizes = 0;
2520       ret->had_vla_unspec = 0;
2521       /* Suppress -Wold-style-definition for this case.  */
2522       ret->types = error_mark_node;
2523       error_at (c_parser_peek_token (parser)->location,
2524                 "ISO C requires a named argument before %<...%>");
2525       c_parser_consume_token (parser);
2526       if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
2527         {
2528           c_parser_consume_token (parser);
2529           return ret;
2530         }
2531       else
2532         {
2533           c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
2534                                      "expected %<)%>");
2535           return NULL;
2536         }
2537     }
2538   /* Nonempty list of parameters, either terminated with semicolon
2539      (forward declarations; recurse) or with close parenthesis (normal
2540      function) or with ", ... )" (variadic function).  */
2541   while (true)
2542     {
2543       /* Parse a parameter.  */
2544       struct c_parm *parm = c_parser_parameter_declaration (parser, attrs);
2545       attrs = NULL_TREE;
2546       if (parm != NULL)
2547         {
2548           good_parm = true;
2549           push_parm_decl (parm);
2550         }
2551       if (c_parser_next_token_is (parser, CPP_SEMICOLON))
2552         {
2553           tree new_attrs;
2554           c_parser_consume_token (parser);
2555           mark_forward_parm_decls ();
2556           new_attrs = c_parser_attributes (parser);
2557           return c_parser_parms_list_declarator (parser, new_attrs);
2558         }
2559       if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
2560         {
2561           c_parser_consume_token (parser);
2562           if (good_parm)
2563             return get_parm_info (false);
2564           else
2565             {
2566               struct c_arg_info *ret
2567                 = XOBNEW (&parser_obstack, struct c_arg_info);
2568               ret->parms = 0;
2569               ret->tags = 0;
2570               ret->types = 0;
2571               ret->others = 0;
2572               ret->pending_sizes = 0;
2573               ret->had_vla_unspec = 0;
2574               return ret;
2575             }
2576         }
2577       if (!c_parser_require (parser, CPP_COMMA,
2578                              "expected %<;%>, %<,%> or %<)%>"))
2579         {
2580           c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
2581           get_pending_sizes ();
2582           return NULL;
2583         }
2584       if (c_parser_next_token_is (parser, CPP_ELLIPSIS))
2585         {
2586           c_parser_consume_token (parser);
2587           if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
2588             {
2589               c_parser_consume_token (parser);
2590               if (good_parm)
2591                 return get_parm_info (true);
2592               else
2593                 {
2594                   struct c_arg_info *ret
2595                     = XOBNEW (&parser_obstack, struct c_arg_info);
2596                   ret->parms = 0;
2597                   ret->tags = 0;
2598                   ret->types = 0;
2599                   ret->others = 0;
2600                   ret->pending_sizes = 0;
2601                   ret->had_vla_unspec = 0;
2602                   return ret;
2603                 }
2604             }
2605           else
2606             {
2607               c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
2608                                          "expected %<)%>");
2609               get_pending_sizes ();
2610               return NULL;
2611             }
2612         }
2613     }
2614 }
2615
2616 /* Parse a parameter declaration.  ATTRS are the attributes at the
2617    start of the declaration if it is the first parameter.  */
2618
2619 static struct c_parm *
2620 c_parser_parameter_declaration (c_parser *parser, tree attrs)
2621 {
2622   struct c_declspecs *specs;
2623   struct c_declarator *declarator;
2624   tree prefix_attrs;
2625   tree postfix_attrs = NULL_TREE;
2626   bool dummy = false;
2627   if (!c_parser_next_token_starts_declspecs (parser))
2628     {
2629       /* ??? In some Objective-C cases '...' isn't applicable so there
2630          should be a different message.  */
2631       c_parser_error (parser,
2632                       "expected declaration specifiers or %<...%>");
2633       c_parser_skip_to_end_of_parameter (parser);
2634       return NULL;
2635     }
2636   specs = build_null_declspecs ();
2637   if (attrs)
2638     {
2639       declspecs_add_attrs (specs, attrs);
2640       attrs = NULL_TREE;
2641     }
2642   c_parser_declspecs (parser, specs, true, true, true);
2643   finish_declspecs (specs);
2644   pending_xref_error ();
2645   prefix_attrs = specs->attrs;
2646   specs->attrs = NULL_TREE;
2647   declarator = c_parser_declarator (parser, specs->type_seen_p,
2648                                     C_DTR_PARM, &dummy);
2649   if (declarator == NULL)
2650     {
2651       c_parser_skip_until_found (parser, CPP_COMMA, NULL);
2652       return NULL;
2653     }
2654   if (c_parser_next_token_is_keyword (parser, RID_ATTRIBUTE))
2655     postfix_attrs = c_parser_attributes (parser);
2656   return build_c_parm (specs, chainon (postfix_attrs, prefix_attrs),
2657                        declarator);
2658 }
2659
2660 /* Parse a string literal in an asm expression.  It should not be
2661    translated, and wide string literals are an error although
2662    permitted by the syntax.  This is a GNU extension.
2663
2664    asm-string-literal:
2665      string-literal
2666
2667    ??? At present, following the old parser, the caller needs to have
2668    set lex_untranslated_string to 1.  It would be better to follow the
2669    C++ parser rather than using this kludge.  */
2670
2671 static tree
2672 c_parser_asm_string_literal (c_parser *parser)
2673 {
2674   tree str;
2675   if (c_parser_next_token_is (parser, CPP_STRING))
2676     {
2677       str = c_parser_peek_token (parser)->value;
2678       c_parser_consume_token (parser);
2679     }
2680   else if (c_parser_next_token_is (parser, CPP_WSTRING))
2681     {
2682       error_at (c_parser_peek_token (parser)->location,
2683                 "wide string literal in %<asm%>");
2684       str = build_string (1, "");
2685       c_parser_consume_token (parser);
2686     }
2687   else
2688     {
2689       c_parser_error (parser, "expected string literal");
2690       str = NULL_TREE;
2691     }
2692   return str;
2693 }
2694
2695 /* Parse a simple asm expression.  This is used in restricted
2696    contexts, where a full expression with inputs and outputs does not
2697    make sense.  This is a GNU extension.
2698
2699    simple-asm-expr:
2700      asm ( asm-string-literal )
2701 */
2702
2703 static tree
2704 c_parser_simple_asm_expr (c_parser *parser)
2705 {
2706   tree str;
2707   gcc_assert (c_parser_next_token_is_keyword (parser, RID_ASM));
2708   /* ??? Follow the C++ parser rather than using the
2709      lex_untranslated_string kludge.  */
2710   parser->lex_untranslated_string = true;
2711   c_parser_consume_token (parser);
2712   if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
2713     {
2714       parser->lex_untranslated_string = false;
2715       return NULL_TREE;
2716     }
2717   str = c_parser_asm_string_literal (parser);
2718   parser->lex_untranslated_string = false;
2719   if (!c_parser_require (parser, CPP_CLOSE_PAREN, "expected %<)%>"))
2720     {
2721       c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
2722       return NULL_TREE;
2723     }
2724   return str;
2725 }
2726
2727 /* Parse (possibly empty) attributes.  This is a GNU extension.
2728
2729    attributes:
2730      empty
2731      attributes attribute
2732
2733    attribute:
2734      __attribute__ ( ( attribute-list ) )
2735
2736    attribute-list:
2737      attrib
2738      attribute_list , attrib
2739
2740    attrib:
2741      empty
2742      any-word
2743      any-word ( identifier )
2744      any-word ( identifier , nonempty-expr-list )
2745      any-word ( expr-list )
2746
2747    where the "identifier" must not be declared as a type, and
2748    "any-word" may be any identifier (including one declared as a
2749    type), a reserved word storage class specifier, type specifier or
2750    type qualifier.  ??? This still leaves out most reserved keywords
2751    (following the old parser), shouldn't we include them, and why not
2752    allow identifiers declared as types to start the arguments?  */
2753
2754 static tree
2755 c_parser_attributes (c_parser *parser)
2756 {
2757   tree attrs = NULL_TREE;
2758   while (c_parser_next_token_is_keyword (parser, RID_ATTRIBUTE))
2759     {
2760       /* ??? Follow the C++ parser rather than using the
2761          lex_untranslated_string kludge.  */
2762       parser->lex_untranslated_string = true;
2763       c_parser_consume_token (parser);
2764       if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
2765         {
2766           parser->lex_untranslated_string = false;
2767           return attrs;
2768         }
2769       if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
2770         {
2771           parser->lex_untranslated_string = false;
2772           c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
2773           return attrs;
2774         }
2775       /* Parse the attribute list.  */
2776       while (c_parser_next_token_is (parser, CPP_COMMA)
2777              || c_parser_next_token_is (parser, CPP_NAME)
2778              || c_parser_next_token_is (parser, CPP_KEYWORD))
2779         {
2780           tree attr, attr_name, attr_args;
2781           if (c_parser_next_token_is (parser, CPP_COMMA))
2782             {
2783               c_parser_consume_token (parser);
2784               continue;
2785             }
2786           if (c_parser_next_token_is (parser, CPP_KEYWORD))
2787             {
2788               /* ??? See comment above about what keywords are
2789                  accepted here.  */
2790               bool ok;
2791               switch (c_parser_peek_token (parser)->keyword)
2792                 {
2793                 case RID_STATIC:
2794                 case RID_UNSIGNED:
2795                 case RID_LONG:
2796                 case RID_CONST:
2797                 case RID_EXTERN:
2798                 case RID_REGISTER:
2799                 case RID_TYPEDEF:
2800                 case RID_SHORT:
2801                 case RID_INLINE:
2802                 case RID_VOLATILE:
2803                 case RID_SIGNED:
2804                 case RID_AUTO:
2805                 case RID_RESTRICT:
2806                 case RID_COMPLEX:
2807                 case RID_THREAD:
2808                 case RID_INT:
2809                 case RID_CHAR:
2810                 case RID_FLOAT:
2811                 case RID_DOUBLE:
2812                 case RID_VOID:
2813                 case RID_DFLOAT32:
2814                 case RID_DFLOAT64:
2815                 case RID_DFLOAT128:
2816                 case RID_BOOL:
2817                 case RID_FRACT:
2818                 case RID_ACCUM:
2819                 case RID_SAT:
2820                   ok = true;
2821                   break;
2822                 default:
2823                   ok = false;
2824                   break;
2825                 }
2826               if (!ok)
2827                 break;
2828               /* Accept __attribute__((__const)) as __attribute__((const))
2829                  etc.  */
2830               attr_name
2831                 = ridpointers[(int) c_parser_peek_token (parser)->keyword];
2832             }
2833           else
2834             attr_name = c_parser_peek_token (parser)->value;
2835           c_parser_consume_token (parser);
2836           if (c_parser_next_token_is_not (parser, CPP_OPEN_PAREN))
2837             {
2838               attr = build_tree_list (attr_name, NULL_TREE);
2839               attrs = chainon (attrs, attr);
2840               continue;
2841             }
2842           c_parser_consume_token (parser);
2843           /* Parse the attribute contents.  If they start with an
2844              identifier which is followed by a comma or close
2845              parenthesis, then the arguments start with that
2846              identifier; otherwise they are an expression list.  */
2847           if (c_parser_next_token_is (parser, CPP_NAME)
2848               && c_parser_peek_token (parser)->id_kind == C_ID_ID
2849               && ((c_parser_peek_2nd_token (parser)->type == CPP_COMMA)
2850                   || (c_parser_peek_2nd_token (parser)->type
2851                       == CPP_CLOSE_PAREN)))
2852             {
2853               tree arg1 = c_parser_peek_token (parser)->value;
2854               c_parser_consume_token (parser);
2855               if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
2856                 attr_args = build_tree_list (NULL_TREE, arg1);
2857               else
2858                 {
2859                   c_parser_consume_token (parser);
2860                   attr_args = tree_cons (NULL_TREE, arg1,
2861                                          c_parser_expr_list (parser, false));
2862                 }
2863             }
2864           else
2865             {
2866               if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
2867                 attr_args = NULL_TREE;
2868               else
2869                 attr_args = c_parser_expr_list (parser, false);
2870             }
2871           attr = build_tree_list (attr_name, attr_args);
2872           if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
2873             c_parser_consume_token (parser);
2874           else
2875             {
2876               parser->lex_untranslated_string = false;
2877               c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
2878                                          "expected %<)%>");
2879               return attrs;
2880             }
2881           attrs = chainon (attrs, attr);
2882         }
2883       if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
2884         c_parser_consume_token (parser);
2885       else
2886         {
2887           parser->lex_untranslated_string = false;
2888           c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
2889                                      "expected %<)%>");
2890           return attrs;
2891         }
2892       if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
2893         c_parser_consume_token (parser);
2894       else
2895         {
2896           parser->lex_untranslated_string = false;
2897           c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
2898                                      "expected %<)%>");
2899           return attrs;
2900         }
2901       parser->lex_untranslated_string = false;
2902     }
2903   return attrs;
2904 }
2905
2906 /* Parse a type name (C90 6.5.5, C99 6.7.6).
2907
2908    type-name:
2909      specifier-qualifier-list abstract-declarator[opt]
2910 */
2911
2912 static struct c_type_name *
2913 c_parser_type_name (c_parser *parser)
2914 {
2915   struct c_declspecs *specs = build_null_declspecs ();
2916   struct c_declarator *declarator;
2917   struct c_type_name *ret;
2918   bool dummy = false;
2919   c_parser_declspecs (parser, specs, false, true, true);
2920   if (!specs->declspecs_seen_p)
2921     {
2922       c_parser_error (parser, "expected specifier-qualifier-list");
2923       return NULL;
2924     }
2925   pending_xref_error ();
2926   finish_declspecs (specs);
2927   declarator = c_parser_declarator (parser, specs->type_seen_p,
2928                                     C_DTR_ABSTRACT, &dummy);
2929   if (declarator == NULL)
2930     return NULL;
2931   ret = XOBNEW (&parser_obstack, struct c_type_name);
2932   ret->specs = specs;
2933   ret->declarator = declarator;
2934   return ret;
2935 }
2936
2937 /* Parse an initializer (C90 6.5.7, C99 6.7.8).
2938
2939    initializer:
2940      assignment-expression
2941      { initializer-list }
2942      { initializer-list , }
2943
2944    initializer-list:
2945      designation[opt] initializer
2946      initializer-list , designation[opt] initializer
2947
2948    designation:
2949      designator-list =
2950
2951    designator-list:
2952      designator
2953      designator-list designator
2954
2955    designator:
2956      array-designator
2957      . identifier
2958
2959    array-designator:
2960      [ constant-expression ]
2961
2962    GNU extensions:
2963
2964    initializer:
2965      { }
2966
2967    designation:
2968      array-designator
2969      identifier :
2970
2971    array-designator:
2972      [ constant-expression ... constant-expression ]
2973
2974    Any expression without commas is accepted in the syntax for the
2975    constant-expressions, with non-constant expressions rejected later.
2976
2977    This function is only used for top-level initializers; for nested
2978    ones, see c_parser_initval.  */
2979
2980 static struct c_expr
2981 c_parser_initializer (c_parser *parser)
2982 {
2983   if (c_parser_next_token_is (parser, CPP_OPEN_BRACE))
2984     return c_parser_braced_init (parser, NULL_TREE, false);
2985   else
2986     {
2987       struct c_expr ret;
2988       ret = c_parser_expr_no_commas (parser, NULL);
2989       if (TREE_CODE (ret.value) != STRING_CST
2990           && TREE_CODE (ret.value) != COMPOUND_LITERAL_EXPR)
2991         ret = default_function_array_conversion (ret);
2992       return ret;
2993     }
2994 }
2995
2996 /* Parse a braced initializer list.  TYPE is the type specified for a
2997    compound literal, and NULL_TREE for other initializers and for
2998    nested braced lists.  NESTED_P is true for nested braced lists,
2999    false for the list of a compound literal or the list that is the
3000    top-level initializer in a declaration.  */
3001
3002 static struct c_expr
3003 c_parser_braced_init (c_parser *parser, tree type, bool nested_p)
3004 {
3005   location_t brace_loc = c_parser_peek_token (parser)->location;
3006   gcc_assert (c_parser_next_token_is (parser, CPP_OPEN_BRACE));
3007   c_parser_consume_token (parser);
3008   if (nested_p)
3009     push_init_level (0);
3010   else
3011     really_start_incremental_init (type);
3012   if (c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
3013     {
3014       pedwarn (brace_loc, OPT_pedantic, "ISO C forbids empty initializer braces");
3015     }
3016   else
3017     {
3018       /* Parse a non-empty initializer list, possibly with a trailing
3019          comma.  */
3020       while (true)
3021         {
3022           c_parser_initelt (parser);
3023           if (parser->error)
3024             break;
3025           if (c_parser_next_token_is (parser, CPP_COMMA))
3026             c_parser_consume_token (parser);
3027           else
3028             break;
3029           if (c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
3030             break;
3031         }
3032     }
3033   if (c_parser_next_token_is_not (parser, CPP_CLOSE_BRACE))
3034     {
3035       struct c_expr ret;
3036       ret.value = error_mark_node;
3037       ret.original_code = ERROR_MARK;
3038       c_parser_skip_until_found (parser, CPP_CLOSE_BRACE, "expected %<}%>");
3039       pop_init_level (0);
3040       return ret;
3041     }
3042   c_parser_consume_token (parser);
3043   return pop_init_level (0);
3044 }
3045
3046 /* Parse a nested initializer, including designators.  */
3047
3048 static void
3049 c_parser_initelt (c_parser *parser)
3050 {
3051   /* Parse any designator or designator list.  A single array
3052      designator may have the subsequent "=" omitted in GNU C, but a
3053      longer list or a structure member designator may not.  */
3054   if (c_parser_next_token_is (parser, CPP_NAME)
3055       && c_parser_peek_2nd_token (parser)->type == CPP_COLON)
3056     {
3057       /* Old-style structure member designator.  */
3058       set_init_label (c_parser_peek_token (parser)->value);
3059       /* Use the colon as the error location.  */
3060       pedwarn (c_parser_peek_2nd_token (parser)->location, OPT_pedantic, 
3061                "obsolete use of designated initializer with %<:%>");
3062       c_parser_consume_token (parser);
3063       c_parser_consume_token (parser);
3064     }
3065   else
3066     {
3067       /* des_seen is 0 if there have been no designators, 1 if there
3068          has been a single array designator and 2 otherwise.  */
3069       int des_seen = 0;
3070       /* Location of a designator.  */
3071       location_t des_loc = UNKNOWN_LOCATION;  /* Quiet warning.  */
3072       while (c_parser_next_token_is (parser, CPP_OPEN_SQUARE)
3073              || c_parser_next_token_is (parser, CPP_DOT))
3074         {
3075           int des_prev = des_seen;
3076           if (!des_seen)
3077             des_loc = c_parser_peek_token (parser)->location;
3078           if (des_seen < 2)
3079             des_seen++;
3080           if (c_parser_next_token_is (parser, CPP_DOT))
3081             {
3082               des_seen = 2;
3083               c_parser_consume_token (parser);
3084               if (c_parser_next_token_is (parser, CPP_NAME))
3085                 {
3086                   set_init_label (c_parser_peek_token (parser)->value);
3087                   c_parser_consume_token (parser);
3088                 }
3089               else
3090                 {
3091                   struct c_expr init;
3092                   init.value = error_mark_node;
3093                   init.original_code = ERROR_MARK;
3094                   c_parser_error (parser, "expected identifier");
3095                   c_parser_skip_until_found (parser, CPP_COMMA, NULL);
3096                   process_init_element (init, false);
3097                   return;
3098                 }
3099             }
3100           else
3101             {
3102               tree first, second;
3103               location_t ellipsis_loc = UNKNOWN_LOCATION;  /* Quiet warning.  */
3104               /* ??? Following the old parser, [ objc-receiver
3105                  objc-message-args ] is accepted as an initializer,
3106                  being distinguished from a designator by what follows
3107                  the first assignment expression inside the square
3108                  brackets, but after a first array designator a
3109                  subsequent square bracket is for Objective-C taken to
3110                  start an expression, using the obsolete form of
3111                  designated initializer without '=', rather than
3112                  possibly being a second level of designation: in LALR
3113                  terms, the '[' is shifted rather than reducing
3114                  designator to designator-list.  */
3115               if (des_prev == 1 && c_dialect_objc ())
3116                 {
3117                   des_seen = des_prev;
3118                   break;
3119                 }
3120               if (des_prev == 0 && c_dialect_objc ())
3121                 {
3122                   /* This might be an array designator or an
3123                      Objective-C message expression.  If the former,
3124                      continue parsing here; if the latter, parse the
3125                      remainder of the initializer given the starting
3126                      primary-expression.  ??? It might make sense to
3127                      distinguish when des_prev == 1 as well; see
3128                      previous comment.  */
3129                   tree rec, args;
3130                   struct c_expr mexpr;
3131                   c_parser_consume_token (parser);
3132                   if (c_parser_peek_token (parser)->type == CPP_NAME
3133                       && ((c_parser_peek_token (parser)->id_kind
3134                            == C_ID_TYPENAME)
3135                           || (c_parser_peek_token (parser)->id_kind
3136                               == C_ID_CLASSNAME)))
3137                     {
3138                       /* Type name receiver.  */
3139                       tree id = c_parser_peek_token (parser)->value;
3140                       c_parser_consume_token (parser);
3141                       rec = objc_get_class_reference (id);
3142                       goto parse_message_args;
3143                     }
3144                   first = c_parser_expr_no_commas (parser, NULL).value;
3145                   if (c_parser_next_token_is (parser, CPP_ELLIPSIS)
3146                       || c_parser_next_token_is (parser, CPP_CLOSE_SQUARE))
3147                     goto array_desig_after_first;
3148                   /* Expression receiver.  So far only one part
3149                      without commas has been parsed; there might be
3150                      more of the expression.  */
3151                   rec = first;
3152                   while (c_parser_next_token_is (parser, CPP_COMMA))
3153                     {
3154                       struct c_expr next;
3155                       c_parser_consume_token (parser);
3156                       next = c_parser_expr_no_commas (parser, NULL);
3157                       next = default_function_array_conversion (next);
3158                       rec = build_compound_expr (rec, next.value);
3159                     }
3160                 parse_message_args:
3161                   /* Now parse the objc-message-args.  */
3162                   args = c_parser_objc_message_args (parser);
3163                   c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE,
3164                                              "expected %<]%>");
3165                   mexpr.value
3166                     = objc_build_message_expr (build_tree_list (rec, args));
3167                   mexpr.original_code = ERROR_MARK;
3168                   /* Now parse and process the remainder of the
3169                      initializer, starting with this message
3170                      expression as a primary-expression.  */
3171                   c_parser_initval (parser, &mexpr);
3172                   return;
3173                 }
3174               c_parser_consume_token (parser);
3175               first = c_parser_expr_no_commas (parser, NULL).value;
3176             array_desig_after_first:
3177               if (c_parser_next_token_is (parser, CPP_ELLIPSIS))
3178                 {
3179                   ellipsis_loc = c_parser_peek_token (parser)->location;
3180                   c_parser_consume_token (parser);
3181                   second = c_parser_expr_no_commas (parser, NULL).value;
3182                 }
3183               else
3184                 second = NULL_TREE;
3185               if (c_parser_next_token_is (parser, CPP_CLOSE_SQUARE))
3186                 {
3187                   c_parser_consume_token (parser);
3188                   set_init_index (first, second);
3189                   if (second)
3190                     pedwarn (ellipsis_loc, OPT_pedantic, 
3191                              "ISO C forbids specifying range of elements to initialize");
3192                 }
3193               else
3194                 c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE,
3195                                            "expected %<]%>");
3196             }
3197         }
3198       if (des_seen >= 1)
3199         {
3200           if (c_parser_next_token_is (parser, CPP_EQ))
3201             {
3202               if (!flag_isoc99)
3203                 pedwarn (des_loc, OPT_pedantic, 
3204                          "ISO C90 forbids specifying subobject to initialize");
3205               c_parser_consume_token (parser);
3206             }
3207           else
3208             {
3209               if (des_seen == 1)
3210                 pedwarn (c_parser_peek_token (parser)->location, OPT_pedantic, 
3211                          "obsolete use of designated initializer without %<=%>");
3212               else
3213                 {
3214                   struct c_expr init;
3215                   init.value = error_mark_node;
3216                   init.original_code = ERROR_MARK;
3217                   c_parser_error (parser, "expected %<=%>");
3218                   c_parser_skip_until_found (parser, CPP_COMMA, NULL);
3219                   process_init_element (init, false);
3220                   return;
3221                 }
3222             }
3223         }
3224     }
3225   c_parser_initval (parser, NULL);
3226 }
3227
3228 /* Parse a nested initializer; as c_parser_initializer but parses
3229    initializers within braced lists, after any designators have been
3230    applied.  If AFTER is not NULL then it is an Objective-C message
3231    expression which is the primary-expression starting the
3232    initializer.  */
3233
3234 static void
3235 c_parser_initval (c_parser *parser, struct c_expr *after)
3236 {
3237   struct c_expr init;
3238   gcc_assert (!after || c_dialect_objc ());
3239   if (c_parser_next_token_is (parser, CPP_OPEN_BRACE) && !after)
3240     init = c_parser_braced_init (parser, NULL_TREE, true);
3241   else
3242     {
3243       init = c_parser_expr_no_commas (parser, after);
3244       if (init.value != NULL_TREE
3245           && TREE_CODE (init.value) != STRING_CST
3246           && TREE_CODE (init.value) != COMPOUND_LITERAL_EXPR)
3247         init = default_function_array_conversion (init);
3248     }
3249   process_init_element (init, false);
3250 }
3251
3252 /* Parse a compound statement (possibly a function body) (C90 6.6.2,
3253    C99 6.8.2).
3254
3255    compound-statement:
3256      { block-item-list[opt] }
3257      { label-declarations block-item-list }
3258
3259    block-item-list:
3260      block-item
3261      block-item-list block-item
3262
3263    block-item:
3264      nested-declaration
3265      statement
3266
3267    nested-declaration:
3268      declaration
3269
3270    GNU extensions:
3271
3272    compound-statement:
3273      { label-declarations block-item-list }
3274
3275    nested-declaration:
3276      __extension__ nested-declaration
3277      nested-function-definition
3278
3279    label-declarations:
3280      label-declaration
3281      label-declarations label-declaration
3282
3283    label-declaration:
3284      __label__ identifier-list ;
3285
3286    Allowing the mixing of declarations and code is new in C99.  The
3287    GNU syntax also permits (not shown above) labels at the end of
3288    compound statements, which yield an error.  We don't allow labels
3289    on declarations; this might seem like a natural extension, but
3290    there would be a conflict between attributes on the label and
3291    prefix attributes on the declaration.  ??? The syntax follows the
3292    old parser in requiring something after label declarations.
3293    Although they are erroneous if the labels declared aren't defined,
3294    is it useful for the syntax to be this way?
3295    
3296    OpenMP:
3297    
3298    block-item:
3299      openmp-directive
3300
3301    openmp-directive:
3302      barrier-directive
3303      flush-directive  */
3304
3305 static tree
3306 c_parser_compound_statement (c_parser *parser)
3307 {
3308   tree stmt;
3309   if (!c_parser_require (parser, CPP_OPEN_BRACE, "expected %<{%>"))
3310     {
3311       /* Ensure a scope is entered and left anyway to avoid confusion
3312          if we have just prepared to enter a function body.  */
3313       stmt = c_begin_compound_stmt (true);
3314       c_end_compound_stmt (stmt, true);
3315       return error_mark_node;
3316     }
3317   stmt = c_begin_compound_stmt (true);
3318   c_parser_compound_statement_nostart (parser);
3319   return c_end_compound_stmt (stmt, true);
3320 }
3321
3322 /* Parse a compound statement except for the opening brace.  This is
3323    used for parsing both compound statements and statement expressions
3324    (which follow different paths to handling the opening).  */
3325
3326 static void
3327 c_parser_compound_statement_nostart (c_parser *parser)
3328 {
3329   bool last_stmt = false;
3330   bool last_label = false;
3331   location_t label_loc = UNKNOWN_LOCATION;  /* Quiet warning.  */
3332   if (c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
3333     {
3334       c_parser_consume_token (parser);
3335       return;
3336     }
3337   if (c_parser_next_token_is_keyword (parser, RID_LABEL))
3338     {
3339       location_t err_loc = c_parser_peek_token (parser)->location;
3340       /* Read zero or more forward-declarations for labels that nested
3341          functions can jump to.  */
3342       while (c_parser_next_token_is_keyword (parser, RID_LABEL))
3343         {
3344           c_parser_consume_token (parser);
3345           /* Any identifiers, including those declared as type names,
3346              are OK here.  */
3347           while (true)
3348             {
3349               tree label;
3350               if (c_parser_next_token_is_not (parser, CPP_NAME))
3351                 {
3352                   c_parser_error (parser, "expected identifier");
3353                   break;
3354                 }
3355               label
3356                 = declare_label (c_parser_peek_token (parser)->value);
3357               C_DECLARED_LABEL_FLAG (label) = 1;
3358               add_stmt (build_stmt (DECL_EXPR, label));
3359               c_parser_consume_token (parser);
3360               if (c_parser_next_token_is (parser, CPP_COMMA))
3361                 c_parser_consume_token (parser);
3362               else
3363                 break;
3364             }
3365           c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
3366         }
3367       pedwarn (err_loc, OPT_pedantic, "ISO C forbids label declarations");
3368     }
3369   /* We must now have at least one statement, label or declaration.  */
3370   if (c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
3371     {
3372       c_parser_error (parser, "expected declaration or statement");
3373       c_parser_consume_token (parser);
3374       return;
3375     }
3376   while (c_parser_next_token_is_not (parser, CPP_CLOSE_BRACE))
3377     {
3378       location_t loc = c_parser_peek_token (parser)->location;
3379       if (c_parser_next_token_is_keyword (parser, RID_CASE)
3380           || c_parser_next_token_is_keyword (parser, RID_DEFAULT)
3381           || (c_parser_next_token_is (parser, CPP_NAME)
3382               && c_parser_peek_2nd_token (parser)->type == CPP_COLON))
3383         {
3384           if (c_parser_next_token_is_keyword (parser, RID_CASE))
3385             label_loc = c_parser_peek_2nd_token (parser)->location;
3386           else
3387             label_loc = c_parser_peek_token (parser)->location;
3388           last_label = true;
3389           last_stmt = false;
3390           c_parser_label (parser);
3391         }
3392       else if (!last_label
3393                && c_parser_next_token_starts_declspecs (parser))
3394         {
3395           last_label = false;
3396           c_parser_declaration_or_fndef (parser, true, true, true, true);
3397           if (last_stmt)
3398             pedwarn_c90 (loc, 
3399                          (pedantic && !flag_isoc99)
3400                          ? OPT_pedantic
3401                          : OPT_Wdeclaration_after_statement,
3402                          "ISO C90 forbids mixed declarations and code");
3403           last_stmt = false;
3404         }
3405       else if (!last_label
3406                && c_parser_next_token_is_keyword (parser, RID_EXTENSION))
3407         {
3408           /* __extension__ can start a declaration, but is also an
3409              unary operator that can start an expression.  Consume all
3410              but the last of a possible series of __extension__ to
3411              determine which.  */
3412           while (c_parser_peek_2nd_token (parser)->type == CPP_KEYWORD
3413                  && (c_parser_peek_2nd_token (parser)->keyword
3414                      == RID_EXTENSION))
3415             c_parser_consume_token (parser);
3416           if (c_token_starts_declspecs (c_parser_peek_2nd_token (parser)))
3417             {
3418               int ext;
3419               ext = disable_extension_diagnostics ();
3420               c_parser_consume_token (parser);
3421               last_label = false;
3422               c_parser_declaration_or_fndef (parser, true, true, true, true);
3423               /* Following the old parser, __extension__ does not
3424                  disable this diagnostic.  */
3425               restore_extension_diagnostics (ext);
3426               if (last_stmt)
3427                 pedwarn_c90 (loc, (pedantic && !flag_isoc99)
3428                              ? OPT_pedantic
3429                              : OPT_Wdeclaration_after_statement,
3430                              "ISO C90 forbids mixed declarations and code");
3431               last_stmt = false;
3432             }
3433           else
3434             goto statement;
3435         }
3436       else if (c_parser_next_token_is (parser, CPP_PRAGMA))
3437         {
3438           /* External pragmas, and some omp pragmas, are not associated
3439              with regular c code, and so are not to be considered statements
3440              syntactically.  This ensures that the user doesn't put them
3441              places that would turn into syntax errors if the directive
3442              were ignored.  */
3443           if (c_parser_pragma (parser, pragma_compound))
3444             last_label = false, last_stmt = true;
3445         }
3446       else if (c_parser_next_token_is (parser, CPP_EOF))
3447         {
3448           c_parser_error (parser, "expected declaration or statement");
3449           return;
3450         }
3451       else if (c_parser_next_token_is_keyword (parser, RID_ELSE))
3452         {
3453           if (parser->in_if_block) 
3454             {
3455               error_at (loc, """expected %<}%> before %<else%>");
3456               return;
3457             }
3458           else 
3459             {
3460               error_at (loc, "%<else%> without a previous %<if%>");
3461               c_parser_consume_token (parser);
3462               continue;
3463             }
3464         }
3465       else
3466         {
3467         statement:
3468           last_label = false;
3469           last_stmt = true;
3470           c_parser_statement_after_labels (parser);
3471         }
3472
3473       parser->error = false;
3474     }
3475   if (last_label)
3476     error_at (label_loc, "label at end of compound statement");
3477   c_parser_consume_token (parser);
3478 }
3479
3480 /* Parse a label (C90 6.6.1, C99 6.8.1).
3481
3482    label:
3483      identifier : attributes[opt]
3484      case constant-expression :
3485      default :
3486
3487    GNU extensions:
3488
3489    label:
3490      case constant-expression ... constant-expression :
3491
3492    The use of attributes on labels is a GNU extension.  The syntax in
3493    GNU C accepts any expressions without commas, non-constant
3494    expressions being rejected later.  */
3495
3496 static void
3497 c_parser_label (c_parser *parser)
3498 {
3499   location_t loc1 = c_parser_peek_token (parser)->location;
3500   tree label = NULL_TREE;
3501   if (c_parser_next_token_is_keyword (parser, RID_CASE))
3502     {
3503       tree exp1, exp2;
3504       c_parser_consume_token (parser);
3505       exp1 = c_parser_expr_no_commas (parser, NULL).value;
3506       if (c_parser_next_token_is (parser, CPP_COLON))
3507         {
3508           c_parser_consume_token (parser);
3509           label = do_case (exp1, NULL_TREE);
3510         }
3511       else if (c_parser_next_token_is (parser, CPP_ELLIPSIS))
3512         {
3513           c_parser_consume_token (parser);
3514           exp2 = c_parser_expr_no_commas (parser, NULL).value;
3515           if (c_parser_require (parser, CPP_COLON, "expected %<:%>"))
3516             label = do_case (exp1, exp2);
3517         }
3518       else
3519         c_parser_error (parser, "expected %<:%> or %<...%>");
3520     }
3521   else if (c_parser_next_token_is_keyword (parser, RID_DEFAULT))
3522     {
3523       c_parser_consume_token (parser);
3524       if (c_parser_require (parser, CPP_COLON, "expected %<:%>"))
3525         label = do_case (NULL_TREE, NULL_TREE);
3526     }
3527   else
3528     {
3529       tree name = c_parser_peek_token (parser)->value;
3530       tree tlab;
3531       tree attrs;
3532       location_t loc2 = c_parser_peek_token (parser)->location;
3533       gcc_assert (c_parser_next_token_is (parser, CPP_NAME));
3534       c_parser_consume_token (parser);
3535       gcc_assert (c_parser_next_token_is (parser, CPP_COLON));
3536       c_parser_consume_token (parser);
3537       attrs = c_parser_attributes (parser);
3538       tlab = define_label (loc2, name);
3539       if (tlab)
3540         {
3541           decl_attributes (&tlab, attrs, 0);
3542           label = add_stmt (build_stmt (LABEL_EXPR, tlab));
3543         }
3544     }
3545   if (label)
3546     {
3547       SET_EXPR_LOCATION (label, loc1);
3548       if (c_parser_next_token_starts_declspecs (parser)
3549           && !(c_parser_next_token_is (parser, CPP_NAME)
3550                && c_parser_peek_2nd_token (parser)->type == CPP_COLON))
3551         {
3552           error_at (c_parser_peek_token (parser)->location,
3553                     "a label can only be part of a statement and "
3554                     "a declaration is not a statement");
3555           c_parser_declaration_or_fndef (parser, /*fndef_ok*/ false, 
3556                                          /*nested*/ true, /*empty_ok*/ false,
3557                                          /*start_attr_ok*/ true);
3558         }
3559     }
3560 }
3561
3562 /* Parse a statement (C90 6.6, C99 6.8).
3563
3564    statement:
3565      labeled-statement
3566      compound-statement
3567      expression-statement
3568      selection-statement
3569      iteration-statement
3570      jump-statement
3571
3572    labeled-statement:
3573      label statement
3574
3575    expression-statement:
3576      expression[opt] ;
3577
3578    selection-statement:
3579      if-statement
3580      switch-statement
3581
3582    iteration-statement:
3583      while-statement
3584      do-statement
3585      for-statement
3586
3587    jump-statement:
3588      goto identifier ;
3589      continue ;
3590      break ;
3591      return expression[opt] ;
3592
3593    GNU extensions:
3594
3595    statement:
3596      asm-statement
3597
3598    jump-statement:
3599      goto * expression ;
3600
3601    Objective-C:
3602
3603    statement:
3604      objc-throw-statement
3605      objc-try-catch-statement
3606      objc-synchronized-statement
3607
3608    objc-throw-statement:
3609      @throw expression ;
3610      @throw ;
3611
3612    OpenMP:
3613
3614    statement:
3615      openmp-construct
3616
3617    openmp-construct:
3618      parallel-construct
3619      for-construct
3620      sections-construct
3621      single-construct
3622      parallel-for-construct
3623      parallel-sections-construct
3624      master-construct
3625      critical-construct
3626      atomic-construct
3627      ordered-construct
3628
3629    parallel-construct:
3630      parallel-directive structured-block
3631
3632    for-construct:
3633      for-directive iteration-statement
3634
3635    sections-construct:
3636      sections-directive section-scope
3637
3638    single-construct:
3639      single-directive structured-block
3640
3641    parallel-for-construct:
3642      parallel-for-directive iteration-statement
3643
3644    parallel-sections-construct:
3645      parallel-sections-directive section-scope
3646
3647    master-construct:
3648      master-directive structured-block
3649
3650    critical-construct:
3651      critical-directive structured-block
3652
3653    atomic-construct:
3654      atomic-directive expression-statement
3655
3656    ordered-construct:
3657      ordered-directive structured-block  */
3658
3659 static void
3660 c_parser_statement (c_parser *parser)
3661 {
3662   while (c_parser_next_token_is_keyword (parser, RID_CASE)
3663          || c_parser_next_token_is_keyword (parser, RID_DEFAULT)
3664          || (c_parser_next_token_is (parser, CPP_NAME)
3665              && c_parser_peek_2nd_token (parser)->type == CPP_COLON))
3666     c_parser_label (parser);
3667   c_parser_statement_after_labels (parser);
3668 }
3669
3670 /* Parse a statement, other than a labeled statement.  */
3671
3672 static void
3673 c_parser_statement_after_labels (c_parser *parser)
3674 {
3675   location_t loc = c_parser_peek_token (parser)->location;
3676   tree stmt = NULL_TREE;
3677   bool in_if_block = parser->in_if_block;
3678   parser->in_if_block = false;
3679   switch (c_parser_peek_token (parser)->type)
3680     {
3681     case CPP_OPEN_BRACE:
3682       add_stmt (c_parser_compound_statement (parser));
3683       break;
3684     case CPP_KEYWORD:
3685       switch (c_parser_peek_token (parser)->keyword)
3686         {
3687         case RID_IF:
3688           c_parser_if_statement (parser);
3689           break;
3690         case RID_SWITCH:
3691           c_parser_switch_statement (parser);
3692           break;
3693         case RID_WHILE:
3694           c_parser_while_statement (parser);
3695           break;
3696         case RID_DO:
3697           c_parser_do_statement (parser);
3698           break;
3699         case RID_FOR:
3700           c_parser_for_statement (parser);
3701           break;
3702         case RID_GOTO:
3703           c_parser_consume_token (parser);
3704           if (c_parser_next_token_is (parser, CPP_NAME))
3705             {
3706               stmt = c_finish_goto_label (c_parser_peek_token (parser)->value);
3707               c_parser_consume_token (parser);
3708             }
3709           else if (c_parser_next_token_is (parser, CPP_MULT))
3710             {
3711               c_parser_consume_token (parser);
3712               stmt = c_finish_goto_ptr (c_parser_expression (parser).value);
3713             }
3714           else
3715             c_parser_error (parser, "expected identifier or %<*%>");
3716           goto expect_semicolon;
3717         case RID_CONTINUE:
3718           c_parser_consume_token (parser);
3719           stmt = c_finish_bc_stmt (&c_cont_label, false);
3720           goto expect_semicolon;
3721         case RID_BREAK:
3722           c_parser_consume_token (parser);
3723           stmt = c_finish_bc_stmt (&c_break_label, true);
3724           goto expect_semicolon;
3725         case RID_RETURN:
3726           c_parser_consume_token (parser);
3727           if (c_parser_next_token_is (parser, CPP_SEMICOLON))
3728             {
3729               stmt = c_finish_return (NULL_TREE);
3730               c_parser_consume_token (parser);
3731             }
3732           else
3733             {
3734               stmt = c_finish_return (c_parser_expression_conv (parser).value);
3735               goto expect_semicolon;
3736             }
3737           break;
3738         case RID_ASM:
3739           stmt = c_parser_asm_statement (parser);
3740           break;
3741         case RID_THROW:
3742           gcc_assert (c_dialect_objc ());
3743           c_parser_consume_token (parser);
3744           if (c_parser_next_token_is (parser, CPP_SEMICOLON))
3745             {
3746               stmt = objc_build_throw_stmt (NULL_TREE);
3747               c_parser_consume_token (parser);
3748             }
3749           else
3750             {
3751               stmt
3752                 = objc_build_throw_stmt (c_parser_expression (parser).value);
3753               goto expect_semicolon;
3754             }
3755           break;
3756         case RID_TRY:
3757           gcc_assert (c_dialect_objc ());
3758           c_parser_objc_try_catch_statement (parser);
3759           break;
3760         case RID_AT_SYNCHRONIZED:
3761           gcc_assert (c_dialect_objc ());
3762           c_parser_objc_synchronized_statement (parser);
3763           break;
3764         default:
3765           goto expr_stmt;
3766         }
3767       break;
3768     case CPP_SEMICOLON:
3769       c_parser_consume_token (parser);
3770       break;
3771     case CPP_CLOSE_PAREN:
3772     case CPP_CLOSE_SQUARE:
3773       /* Avoid infinite loop in error recovery:
3774          c_parser_skip_until_found stops at a closing nesting
3775          delimiter without consuming it, but here we need to consume
3776          it to proceed further.  */
3777       c_parser_error (parser, "expected statement");
3778       c_parser_consume_token (parser);
3779       break;
3780     case CPP_PRAGMA:
3781       c_parser_pragma (parser, pragma_stmt);
3782       break;
3783     default:
3784     expr_stmt:
3785       stmt = c_finish_expr_stmt (c_parser_expression_conv (parser).value);
3786     expect_semicolon:
3787       c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
3788       break;
3789     }
3790   /* Two cases cannot and do not have line numbers associated: If stmt
3791      is degenerate, such as "2;", then stmt is an INTEGER_CST, which
3792      cannot hold line numbers.  But that's OK because the statement
3793      will either be changed to a MODIFY_EXPR during gimplification of
3794      the statement expr, or discarded.  If stmt was compound, but
3795      without new variables, we will have skipped the creation of a
3796      BIND and will have a bare STATEMENT_LIST.  But that's OK because
3797      (recursively) all of the component statements should already have
3798      line numbers assigned.  ??? Can we discard no-op statements
3799      earlier?  */
3800   protected_set_expr_location (stmt, loc);
3801
3802   parser->in_if_block = in_if_block;
3803 }
3804
3805 /* Parse the condition from an if, do, while or for statements.  */
3806
3807 static tree
3808 c_parser_condition (c_parser *parser)
3809 {
3810   location_t loc;
3811   tree cond;
3812   loc = c_parser_peek_token (parser)->location;
3813   cond = c_objc_common_truthvalue_conversion 
3814     (loc, c_parser_expression_conv (parser).value);
3815   protected_set_expr_location (cond, loc);
3816   if (warn_sequence_point)
3817     verify_sequence_points (cond);
3818   return cond;
3819 }
3820
3821 /* Parse a parenthesized condition from an if, do or while statement.
3822
3823    condition:
3824      ( expression )
3825 */
3826 static tree
3827 c_parser_paren_condition (c_parser *parser)
3828 {
3829   tree cond;
3830   if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
3831     return error_mark_node;
3832   cond = c_parser_condition (parser);
3833   c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
3834   return cond;
3835 }
3836
3837 /* Parse a statement which is a block in C99.  */
3838
3839 static tree
3840 c_parser_c99_block_statement (c_parser *parser)
3841 {
3842   tree block = c_begin_compound_stmt (flag_isoc99);
3843   c_parser_statement (parser);
3844   return c_end_compound_stmt (block, flag_isoc99);
3845 }
3846
3847 /* Parse the body of an if statement.  This is just parsing a
3848    statement but (a) it is a block in C99, (b) we track whether the
3849    body is an if statement for the sake of -Wparentheses warnings, (c)
3850    we handle an empty body specially for the sake of -Wempty-body
3851    warnings, and (d) we call parser_compound_statement directly
3852    because c_parser_statement_after_labels resets
3853    parser->in_if_block.  */
3854
3855 static tree
3856 c_parser_if_body (c_parser *parser, bool *if_p)
3857 {
3858   tree block = c_begin_compound_stmt (flag_isoc99);
3859   while (c_parser_next_token_is_keyword (parser, RID_CASE)
3860          || c_parser_next_token_is_keyword (parser, RID_DEFAULT)
3861          || (c_parser_next_token_is (parser, CPP_NAME)
3862              && c_parser_peek_2nd_token (parser)->type == CPP_COLON))
3863     c_parser_label (parser);
3864   *if_p = c_parser_next_token_is_keyword (parser, RID_IF);
3865   if (c_parser_next_token_is (parser, CPP_SEMICOLON))
3866     {
3867       location_t loc = c_parser_peek_token (parser)->location;
3868       add_stmt (build_empty_stmt ());
3869       c_parser_consume_token (parser);
3870       if (!c_parser_next_token_is_keyword (parser, RID_ELSE))
3871         warning_at (loc, OPT_Wempty_body,
3872                     "suggest braces around empty body in an %<if%> statement");
3873     }
3874   else if (c_parser_next_token_is (parser, CPP_OPEN_BRACE))
3875     add_stmt (c_parser_compound_statement (parser));
3876   else
3877     c_parser_statement_after_labels (parser);
3878   return c_end_compound_stmt (block, flag_isoc99);
3879 }
3880
3881 /* Parse the else body of an if statement.  This is just parsing a
3882    statement but (a) it is a block in C99, (b) we handle an empty body
3883    specially for the sake of -Wempty-body warnings.  */
3884
3885 static tree
3886 c_parser_else_body (c_parser *parser)
3887 {
3888   tree block = c_begin_compound_stmt (flag_isoc99);
3889   while (c_parser_next_token_is_keyword (parser, RID_CASE)
3890          || c_parser_next_token_is_keyword (parser, RID_DEFAULT)
3891          || (c_parser_next_token_is (parser, CPP_NAME)
3892              && c_parser_peek_2nd_token (parser)->type == CPP_COLON))
3893     c_parser_label (parser);
3894   if (c_parser_next_token_is (parser, CPP_SEMICOLON))
3895     {
3896       warning_at (c_parser_peek_token (parser)->location,
3897                   OPT_Wempty_body,
3898                  "suggest braces around empty body in an %<else%> statement");
3899       add_stmt (build_empty_stmt ());
3900       c_parser_consume_token (parser);
3901     }
3902   else 
3903     c_parser_statement_after_labels (parser);
3904   return c_end_compound_stmt (block, flag_isoc99);
3905 }
3906
3907 /* Parse an if statement (C90 6.6.4, C99 6.8.4).
3908
3909    if-statement:
3910      if ( expression ) statement
3911      if ( expression ) statement else statement
3912 */
3913
3914 static void
3915 c_parser_if_statement (c_parser *parser)
3916 {
3917   tree block;
3918   location_t loc;
3919   tree cond;
3920   bool first_if = false;
3921   tree first_body, second_body;
3922   bool in_if_block;
3923
3924   gcc_assert (c_parser_next_token_is_keyword (parser, RID_IF));
3925   c_parser_consume_token (parser);
3926   block = c_begin_compound_stmt (flag_isoc99);
3927   loc = c_parser_peek_token (parser)->location;
3928   cond = c_parser_paren_condition (parser);
3929   in_if_block = parser->in_if_block;
3930   parser->in_if_block = true;
3931   first_body = c_parser_if_body (parser, &first_if);
3932   parser->in_if_block = in_if_block;
3933   if (c_parser_next_token_is_keyword (parser, RID_ELSE))
3934     {
3935       c_parser_consume_token (parser);
3936       second_body = c_parser_else_body (parser);
3937     }
3938   else
3939     second_body = NULL_TREE;
3940   c_finish_if_stmt (loc, cond, first_body, second_body, first_if);
3941   add_stmt (c_end_compound_stmt (block, flag_isoc99));
3942 }
3943
3944 /* Parse a switch statement (C90 6.6.4, C99 6.8.4).
3945
3946    switch-statement:
3947      switch (expression) statement
3948 */
3949
3950 static void
3951 c_parser_switch_statement (c_parser *parser)
3952 {
3953   tree block, expr, body, save_break;
3954   gcc_assert (c_parser_next_token_is_keyword (parser, RID_SWITCH));
3955   c_parser_consume_token (parser);
3956   block = c_begin_compound_stmt (flag_isoc99);
3957   if (c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
3958     {
3959       expr = c_parser_expression (parser).value;
3960       c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
3961     }
3962   else
3963     expr = error_mark_node;
3964   c_start_case (expr);
3965   save_break = c_break_label;
3966   c_break_label = NULL_TREE;
3967   body = c_parser_c99_block_statement (parser);
3968   c_finish_case (body);
3969   if (c_break_label)
3970     add_stmt (build1 (LABEL_EXPR, void_type_node, c_break_label));
3971   c_break_label = save_break;
3972   add_stmt (c_end_compound_stmt (block, flag_isoc99));
3973 }
3974
3975 /* Parse a while statement (C90 6.6.5, C99 6.8.5).
3976
3977    while-statement:
3978       while (expression) statement
3979 */
3980
3981 static void
3982 c_parser_while_statement (c_parser *parser)
3983 {
3984   tree block, cond, body, save_break, save_cont;
3985   location_t loc;
3986   gcc_assert (c_parser_next_token_is_keyword (parser, RID_WHILE));
3987   c_parser_consume_token (parser);
3988   block = c_begin_compound_stmt (flag_isoc99);
3989   loc = c_parser_peek_token (parser)->location;
3990   cond = c_parser_paren_condition (parser);
3991   save_break = c_break_label;
3992   c_break_label = NULL_TREE;
3993   save_cont = c_cont_label;
3994   c_cont_label = NULL_TREE;
3995   body = c_parser_c99_block_statement (parser);
3996   c_finish_loop (loc, cond, NULL, body, c_break_label, c_cont_label, true);
3997   add_stmt (c_end_compound_stmt (block, flag_isoc99));
3998   c_break_label = save_break;
3999   c_cont_label = save_cont;
4000 }
4001
4002 /* Parse a do statement (C90 6.6.5, C99 6.8.5).
4003
4004    do-statement:
4005      do statement while ( expression ) ;
4006 */
4007
4008 static void
4009 c_parser_do_statement (c_parser *parser)
4010 {
4011   tree block, cond, body, save_break, save_cont, new_break, new_cont;
4012   location_t loc;
4013   gcc_assert (c_parser_next_token_is_keyword (parser, RID_DO));
4014   c_parser_consume_token (parser);
4015   if (c_parser_next_token_is (parser, CPP_SEMICOLON))
4016     warning_at (c_parser_peek_token (parser)->location,
4017                 OPT_Wempty_body,
4018                 "suggest braces around empty body in %<do%> statement");
4019   block = c_begin_compound_stmt (flag_isoc99);
4020   loc = c_parser_peek_token (parser)->location;
4021   save_break = c_break_label;
4022   c_break_label = NULL_TREE;
4023   save_cont = c_cont_label;
4024   c_cont_label = NULL_TREE;
4025   body = c_parser_c99_block_statement (parser);
4026   c_parser_require_keyword (parser, RID_WHILE, "expected %<while%>");
4027   new_break = c_break_label;
4028   c_break_label = save_break;
4029   new_cont = c_cont_label;
4030   c_cont_label = save_cont;
4031   cond = c_parser_paren_condition (parser);
4032   if (!c_parser_require (parser, CPP_SEMICOLON, "expected %<;%>"))
4033     c_parser_skip_to_end_of_block_or_statement (parser);
4034   c_finish_loop (loc, cond, NULL, body, new_break, new_cont, false);
4035   add_stmt (c_end_compound_stmt (block, flag_isoc99));
4036 }
4037
4038 /* Parse a for statement (C90 6.6.5, C99 6.8.5).
4039
4040    for-statement:
4041      for ( expression[opt] ; expression[opt] ; expression[opt] ) statement
4042      for ( nested-declaration expression[opt] ; expression[opt] ) statement
4043
4044    The form with a declaration is new in C99.
4045
4046    ??? In accordance with the old parser, the declaration may be a
4047    nested function, which is then rejected in check_for_loop_decls,
4048    but does it make any sense for this to be included in the grammar?
4049    Note in particular that the nested function does not include a
4050    trailing ';', whereas the "declaration" production includes one.
4051    Also, can we reject bad declarations earlier and cheaper than
4052    check_for_loop_decls?  */
4053
4054 static void
4055 c_parser_for_statement (c_parser *parser)
4056 {
4057   tree block, cond, incr, save_break, save_cont, body;
4058   location_t loc;
4059   gcc_assert (c_parser_next_token_is_keyword (parser, RID_FOR));
4060   loc = c_parser_peek_token (parser)->location;
4061   c_parser_consume_token (parser);
4062   block = c_begin_compound_stmt (flag_isoc99);
4063   if (c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
4064     {
4065       /* Parse the initialization declaration or expression.  */
4066       if (c_parser_next_token_is (parser, CPP_SEMICOLON))
4067         {
4068           c_parser_consume_token (parser);
4069           c_finish_expr_stmt (NULL_TREE);
4070         }
4071       else if (c_parser_next_token_starts_declspecs (parser))
4072         {
4073           c_parser_declaration_or_fndef (parser, true, true, true, true);
4074           check_for_loop_decls ();
4075         }
4076       else if (c_parser_next_token_is_keyword (parser, RID_EXTENSION))
4077         {
4078           /* __extension__ can start a declaration, but is also an
4079              unary operator that can start an expression.  Consume all
4080              but the last of a possible series of __extension__ to
4081              determine which.  */
4082           while (c_parser_peek_2nd_token (parser)->type == CPP_KEYWORD
4083                  && (c_parser_peek_2nd_token (parser)->keyword
4084                      == RID_EXTENSION))
4085             c_parser_consume_token (parser);
4086           if (c_token_starts_declspecs (c_parser_peek_2nd_token (parser)))
4087             {
4088               int ext;
4089               ext = disable_extension_diagnostics ();
4090               c_parser_consume_token (parser);
4091               c_parser_declaration_or_fndef (parser, true, true, true, true);
4092               restore_extension_diagnostics (ext);
4093               check_for_loop_decls ();
4094             }
4095           else
4096             goto init_expr;
4097         }
4098       else
4099         {
4100         init_expr:
4101           c_finish_expr_stmt (c_parser_expression (parser).value);
4102           c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
4103         }
4104       /* Parse the loop condition.  */
4105       if (c_parser_next_token_is (parser, CPP_SEMICOLON))
4106         {
4107           c_parser_consume_token (parser);
4108           cond = NULL_TREE;
4109         }
4110       else
4111         {
4112           cond = c_parser_condition (parser);
4113           c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
4114         }
4115       /* Parse the increment expression.  */
4116       if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
4117         incr = c_process_expr_stmt (NULL_TREE);
4118       else
4119         incr = c_process_expr_stmt (c_parser_expression (parser).value);
4120       c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
4121     }
4122   else
4123     {
4124       cond = error_mark_node;
4125       incr = error_mark_node;
4126     }
4127   save_break = c_break_label;
4128   c_break_label = NULL_TREE;
4129   save_cont = c_cont_label;
4130   c_cont_label = NULL_TREE;
4131   body = c_parser_c99_block_statement (parser);
4132   c_finish_loop (loc, cond, incr, body, c_break_label, c_cont_label, true);
4133   add_stmt (c_end_compound_stmt (block, flag_isoc99));
4134   c_break_label = save_break;
4135   c_cont_label = save_cont;
4136 }
4137
4138 /* Parse an asm statement, a GNU extension.  This is a full-blown asm
4139    statement with inputs, outputs, clobbers, and volatile tag
4140    allowed.
4141
4142    asm-statement:
4143      asm type-qualifier[opt] ( asm-argument ) ;
4144
4145    asm-argument:
4146      asm-string-literal
4147      asm-string-literal : asm-operands[opt]
4148      asm-string-literal : asm-operands[opt] : asm-operands[opt]
4149      asm-string-literal : asm-operands[opt] : asm-operands[opt] : asm-clobbers
4150
4151    Qualifiers other than volatile are accepted in the syntax but
4152    warned for.  */
4153
4154 static tree
4155 c_parser_asm_statement (c_parser *parser)
4156 {
4157   tree quals, str, outputs, inputs, clobbers, ret;
4158   bool simple;
4159   gcc_assert (c_parser_next_token_is_keyword (parser, RID_ASM));
4160   c_parser_consume_token (parser);
4161   if (c_parser_next_token_is_keyword (parser, RID_VOLATILE))
4162     {
4163       quals = c_parser_peek_token (parser)->value;
4164       c_parser_consume_token (parser);
4165     }
4166   else if (c_parser_next_token_is_keyword (parser, RID_CONST)
4167            || c_parser_next_token_is_keyword (parser, RID_RESTRICT))
4168     {
4169       warning_at (c_parser_peek_token (parser)->location,
4170                   0,
4171                   "%E qualifier ignored on asm",
4172                   c_parser_peek_token (parser)->value);
4173       quals = NULL_TREE;
4174       c_parser_consume_token (parser);
4175     }
4176   else
4177     quals = NULL_TREE;
4178   /* ??? Follow the C++ parser rather than using the
4179      lex_untranslated_string kludge.  */
4180   parser->lex_untranslated_string = true;
4181   if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
4182     {
4183       parser->lex_untranslated_string = false;
4184       return NULL_TREE;
4185     }
4186   str = c_parser_asm_string_literal (parser);
4187   if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
4188     {
4189       simple = true;
4190       outputs = NULL_TREE;
4191       inputs = NULL_TREE;
4192       clobbers = NULL_TREE;
4193       goto done_asm;
4194     }
4195   if (!c_parser_require (parser, CPP_COLON, "expected %<:%> or %<)%>"))
4196     {
4197       parser->lex_untranslated_string = false;
4198       c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
4199       return NULL_TREE;
4200     }
4201   simple = false;
4202   /* Parse outputs.  */
4203   if (c_parser_next_token_is (parser, CPP_COLON)
4204       || c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
4205     outputs = NULL_TREE;
4206   else
4207     outputs = c_parser_asm_operands (parser, false);
4208   if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
4209     {
4210       inputs = NULL_TREE;
4211       clobbers = NULL_TREE;
4212       goto done_asm;
4213     }
4214   if (!c_parser_require (parser, CPP_COLON, "expected %<:%> or %<)%>"))
4215     {
4216       parser->lex_untranslated_string = false;
4217       c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
4218       return NULL_TREE;
4219     }
4220   /* Parse inputs.  */
4221   if (c_parser_next_token_is (parser, CPP_COLON)
4222       || c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
4223     inputs = NULL_TREE;
4224   else
4225     inputs = c_parser_asm_operands (parser, true);
4226   if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
4227     {
4228       clobbers = NULL_TREE;
4229       goto done_asm;
4230     }
4231   if (!c_parser_require (parser, CPP_COLON, "expected %<:%> or %<)%>"))
4232     {
4233       parser->lex_untranslated_string = false;
4234       c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
4235       return NULL_TREE;
4236     }
4237   /* Parse clobbers.  */
4238   clobbers = c_parser_asm_clobbers (parser);
4239  done_asm:
4240   parser->lex_untranslated_string = false;
4241   if (!c_parser_require (parser, CPP_CLOSE_PAREN, "expected %<)%>"))
4242     {
4243       c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
4244       return NULL_TREE;
4245     }
4246   if (!c_parser_require (parser, CPP_SEMICOLON, "expected %<;%>"))
4247     c_parser_skip_to_end_of_block_or_statement (parser);
4248   ret = build_asm_stmt (quals, build_asm_expr (str, outputs, inputs,
4249                                                clobbers, simple));
4250   return ret;
4251 }
4252
4253 /* Parse asm operands, a GNU extension.  If CONVERT_P (for inputs but
4254    not outputs), apply the default conversion of functions and arrays
4255    to pointers.
4256
4257    asm-operands:
4258      asm-operand
4259      asm-operands , asm-operand
4260
4261    asm-operand:
4262      asm-string-literal ( expression )
4263      [ identifier ] asm-string-literal ( expression )
4264 */
4265
4266 static tree
4267 c_parser_asm_operands (c_parser *parser, bool convert_p)
4268 {
4269   tree list = NULL_TREE;
4270   while (true)
4271     {
4272       tree name, str;
4273       struct c_expr expr;
4274       if (c_parser_next_token_is (parser, CPP_OPEN_SQUARE))
4275         {
4276           c_parser_consume_token (parser);
4277           if (c_parser_next_token_is (parser, CPP_NAME))
4278             {
4279               tree id = c_parser_peek_token (parser)->value;
4280               c_parser_consume_token (parser);
4281               name = build_string (IDENTIFIER_LENGTH (id),
4282                                    IDENTIFIER_POINTER (id));
4283             }
4284           else
4285             {
4286               c_parser_error (parser, "expected identifier");
4287               c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE, NULL);
4288               return NULL_TREE;
4289             }
4290           c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE,
4291                                      "expected %<]%>");
4292         }
4293       else
4294         name = NULL_TREE;
4295       str = c_parser_asm_string_literal (parser);
4296       if (str == NULL_TREE)
4297         return NULL_TREE;
4298       parser->lex_untranslated_string = false;
4299       if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
4300         {
4301           parser->lex_untranslated_string = true;
4302           return NULL_TREE;
4303         }
4304       expr = c_parser_expression (parser);
4305       if (convert_p)
4306         expr = default_function_array_conversion (expr);
4307       parser->lex_untranslated_string = true;
4308       if (!c_parser_require (parser, CPP_CLOSE_PAREN, "expected %<)%>"))
4309         {
4310           c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
4311           return NULL_TREE;
4312         }
4313       list = chainon (list, build_tree_list (build_tree_list (name, str),
4314                                              expr.value));
4315       if (c_parser_next_token_is (parser, CPP_COMMA))
4316         c_parser_consume_token (parser);
4317       else
4318         break;
4319     }
4320   return list;
4321 }
4322
4323 /* Parse asm clobbers, a GNU extension.
4324
4325    asm-clobbers:
4326      asm-string-literal
4327      asm-clobbers , asm-string-literal
4328 */
4329
4330 static tree
4331 c_parser_asm_clobbers (c_parser *parser)
4332 {
4333   tree list = NULL_TREE;
4334   while (true)
4335     {
4336       tree str = c_parser_asm_string_literal (parser);
4337       if (str)
4338         list = tree_cons (NULL_TREE, str, list);
4339       else
4340         return NULL_TREE;
4341       if (c_parser_next_token_is (parser, CPP_COMMA))
4342         c_parser_consume_token (parser);
4343       else
4344         break;
4345     }
4346   return list;
4347 }
4348
4349 /* Parse an expression other than a compound expression; that is, an
4350    assignment expression (C90 6.3.16, C99 6.5.16).  If AFTER is not
4351    NULL then it is an Objective-C message expression which is the
4352    primary-expression starting the expression as an initializer.
4353
4354    assignment-expression:
4355      conditional-expression
4356      unary-expression assignment-operator assignment-expression
4357
4358    assignment-operator: one of
4359      = *= /= %= += -= <<= >>= &= ^= |=
4360
4361    In GNU C we accept any conditional expression on the LHS and
4362    diagnose the invalid lvalue rather than producing a syntax
4363    error.  */
4364
4365 static struct c_expr
4366 c_parser_expr_no_commas (c_parser *parser, struct c_expr *after)
4367 {
4368   struct c_expr lhs, rhs, ret;
4369   enum tree_code code;
4370   location_t op_location;
4371   gcc_assert (!after || c_dialect_objc ());
4372   lhs = c_parser_conditional_expression (parser, after);
4373   op_location = c_parser_peek_token (parser)->location;
4374   switch (c_parser_peek_token (parser)->type)
4375     {
4376     case CPP_EQ:
4377       code = NOP_EXPR;
4378       break;
4379     case CPP_MULT_EQ:
4380       code = MULT_EXPR;
4381       break;
4382     case CPP_DIV_EQ:
4383       code = TRUNC_DIV_EXPR;
4384       break;
4385     case CPP_MOD_EQ:
4386       code = TRUNC_MOD_EXPR;
4387       break;
4388     case CPP_PLUS_EQ:
4389       code = PLUS_EXPR;
4390       break;
4391     case CPP_MINUS_EQ:
4392       code = MINUS_EXPR;
4393       break;
4394     case CPP_LSHIFT_EQ:
4395       code = LSHIFT_EXPR;
4396       break;
4397     case CPP_RSHIFT_EQ:
4398       code = RSHIFT_EXPR;
4399       break;
4400     case CPP_AND_EQ:
4401       code = BIT_AND_EXPR;
4402       break;
4403     case CPP_XOR_EQ:
4404       code = BIT_XOR_EXPR;
4405       break;
4406     case CPP_OR_EQ:
4407       code = BIT_IOR_EXPR;
4408       break;
4409     default:
4410       return lhs;
4411     }
4412   c_parser_consume_token (parser);
4413   rhs = c_parser_expr_no_commas (parser, NULL);
4414   rhs = default_function_array_conversion (rhs);
4415   ret.value = build_modify_expr (op_location, lhs.value, code, rhs.value);
4416   if (code == NOP_EXPR)
4417     ret.original_code = MODIFY_EXPR;
4418   else
4419     {
4420       TREE_NO_WARNING (ret.value) = 1;
4421       ret.original_code = ERROR_MARK;
4422     }
4423   return ret;
4424 }
4425
4426 /* Parse a conditional expression (C90 6.3.15, C99 6.5.15).  If AFTER
4427    is not NULL then it is an Objective-C message expression which is
4428    the primary-expression starting the expression as an initializer.
4429
4430    conditional-expression:
4431      logical-OR-expression
4432      logical-OR-expression ? expression : conditional-expression
4433
4434    GNU extensions:
4435
4436    conditional-expression:
4437      logical-OR-expression ? : conditional-expression
4438 */
4439
4440 static struct c_expr
4441 c_parser_conditional_expression (c_parser *parser, struct c_expr *after)
4442 {
4443   struct c_expr cond, exp1, exp2, ret;
4444   location_t cond_loc;
4445
4446   gcc_assert (!after || c_dialect_objc ());
4447
4448   cond_loc = c_parser_peek_token (parser)->location;
4449   cond = c_parser_binary_expression (parser, after);
4450   protected_set_expr_location (cond.value, cond_loc);
4451
4452   if (c_parser_next_token_is_not (parser, CPP_QUERY))
4453     return cond;
4454   cond = default_function_array_conversion (cond);
4455   c_parser_consume_token (parser);
4456   if (c_parser_next_token_is (parser, CPP_COLON))
4457     {
4458       pedwarn (c_parser_peek_token (parser)->location, OPT_pedantic, 
4459                "ISO C forbids omitting the middle term of a ?: expression");
4460       /* Make sure first operand is calculated only once.  */
4461       exp1.value = save_expr (default_conversion (cond.value));
4462       cond.value = c_objc_common_truthvalue_conversion (cond_loc, exp1.value);
4463       skip_evaluation += cond.value == truthvalue_true_node;
4464     }
4465   else
4466     {
4467       cond.value
4468         = c_objc_common_truthvalue_conversion
4469         (cond_loc, default_conversion (cond.value));
4470       skip_evaluation += cond.value == truthvalue_false_node;
4471       exp1 = c_parser_expression_conv (parser);
4472       skip_evaluation += ((cond.value == truthvalue_true_node)
4473                           - (cond.value == truthvalue_false_node));
4474     }
4475   if (!c_parser_require (parser, CPP_COLON, "expected %<:%>"))
4476     {
4477       skip_evaluation -= cond.value == truthvalue_true_node;
4478       ret.value = error_mark_node;
4479       ret.original_code = ERROR_MARK;
4480       return ret;
4481     }
4482   exp2 = c_parser_conditional_expression (parser, NULL);
4483   exp2 = default_function_array_conversion (exp2);
4484   skip_evaluation -= cond.value == truthvalue_true_node;
4485   ret.value = build_conditional_expr (cond.value, exp1.value, exp2.value);
4486   ret.original_code = ERROR_MARK;
4487   return ret;
4488 }
4489
4490 /* Parse a binary expression; that is, a logical-OR-expression (C90
4491    6.3.5-6.3.14, C99 6.5.5-6.5.14).  If AFTER is not NULL then it is
4492    an Objective-C message expression which is the primary-expression
4493    starting the expression as an initializer.
4494
4495    multiplicative-expression:
4496      cast-expression
4497      multiplicative-expression * cast-expression
4498      multiplicative-expression / cast-expression
4499      multiplicative-expression % cast-expression
4500
4501    additive-expression:
4502      multiplicative-expression
4503      additive-expression + multiplicative-expression
4504      additive-expression - multiplicative-expression
4505
4506    shift-expression:
4507      additive-expression
4508      shift-expression << additive-expression
4509      shift-expression >> additive-expression
4510
4511    relational-expression:
4512      shift-expression
4513      relational-expression < shift-expression
4514      relational-expression > shift-expression
4515      relational-expression <= shift-expression
4516      relational-expression >= shift-expression
4517
4518    equality-expression:
4519      relational-expression
4520      equality-expression == relational-expression
4521      equality-expression != relational-expression
4522
4523    AND-expression:
4524      equality-expression
4525      AND-expression & equality-expression
4526
4527    exclusive-OR-expression:
4528      AND-expression
4529      exclusive-OR-expression ^ AND-expression
4530
4531    inclusive-OR-expression:
4532      exclusive-OR-expression
4533      inclusive-OR-expression | exclusive-OR-expression
4534
4535    logical-AND-expression:
4536      inclusive-OR-expression
4537      logical-AND-expression && inclusive-OR-expression
4538
4539    logical-OR-expression:
4540      logical-AND-expression
4541      logical-OR-expression || logical-AND-expression
4542 */
4543
4544 static struct c_expr
4545 c_parser_binary_expression (c_parser *parser, struct c_expr *after)
4546 {
4547   /* A binary expression is parsed using operator-precedence parsing,
4548      with the operands being cast expressions.  All the binary
4549      operators are left-associative.  Thus a binary expression is of
4550      form:
4551
4552      E0 op1 E1 op2 E2 ...
4553
4554      which we represent on a stack.  On the stack, the precedence
4555      levels are strictly increasing.  When a new operator is
4556      encountered of higher precedence than that at the top of the
4557      stack, it is pushed; its LHS is the top expression, and its RHS
4558      is everything parsed until it is popped.  When a new operator is
4559      encountered with precedence less than or equal to that at the top
4560      of the stack, triples E[i-1] op[i] E[i] are popped and replaced
4561      by the result of the operation until the operator at the top of
4562      the stack has lower precedence than the new operator or there is
4563      only one element on the stack; then the top expression is the LHS
4564      of the new operator.  In the case of logical AND and OR
4565      expressions, we also need to adjust skip_evaluation as
4566      appropriate when the operators are pushed and popped.  */
4567
4568   /* The precedence levels, where 0 is a dummy lowest level used for
4569      the bottom of the stack.  */
4570   enum prec {
4571     PREC_NONE,
4572     PREC_LOGOR,
4573     PREC_LOGAND,
4574     PREC_BITOR,
4575     PREC_BITXOR,
4576     PREC_BITAND,
4577     PREC_EQ,
4578     PREC_REL,
4579     PREC_SHIFT,
4580     PREC_ADD,
4581     PREC_MULT,
4582     NUM_PRECS
4583   };
4584   struct {
4585     /* The expression at this stack level.  */
4586     struct c_expr expr;
4587     /* The precedence of the operator on its left, PREC_NONE at the
4588        bottom of the stack.  */
4589     enum prec prec;
4590     /* The operation on its left.  */
4591     enum tree_code op;
4592   } stack[NUM_PRECS];
4593   int sp;
4594   /* Location of the binary operator.  */
4595   location_t binary_loc = UNKNOWN_LOCATION;  /* Quiet warning.  */
4596 #define POP                                                                   \
4597   do {                                                                        \
4598     switch (stack[sp].op)                                                     \
4599       {                                                                       \
4600       case TRUTH_ANDIF_EXPR:                                                  \
4601         skip_evaluation -= stack[sp - 1].expr.value == truthvalue_false_node; \
4602         break;                                                                \
4603       case TRUTH_ORIF_EXPR:                                                   \
4604         skip_evaluation -= stack[sp - 1].expr.value == truthvalue_true_node;  \
4605         break;                                                                \
4606       default:                                                                \
4607         break;                                                                \
4608       }                                                                       \
4609     stack[sp - 1].expr                                                        \
4610       = default_function_array_conversion (stack[sp - 1].expr);               \
4611     stack[sp].expr                                                            \
4612       = default_function_array_conversion (stack[sp].expr);                   \
4613     stack[sp - 1].expr = parser_build_binary_op (binary_loc,                  \
4614                                                  stack[sp].op,                \
4615                                                  stack[sp - 1].expr,          \
4616                                                  stack[sp].expr);             \
4617     sp--;                                                                     \
4618   } while (0)
4619   gcc_assert (!after || c_dialect_objc ());
4620   stack[0].expr = c_parser_cast_expression (parser, after);
4621   stack[0].prec = PREC_NONE;
4622   sp = 0;
4623   while (true)
4624     {
4625       enum prec oprec;
4626       enum tree_code ocode;
4627       if (parser->error)
4628         goto out;
4629       switch (c_parser_peek_token (parser)->type)
4630         {
4631         case CPP_MULT:
4632           oprec = PREC_MULT;
4633           ocode = MULT_EXPR;
4634           break;
4635         case CPP_DIV:
4636           oprec = PREC_MULT;
4637           ocode = TRUNC_DIV_EXPR;
4638           break;
4639         case CPP_MOD:
4640           oprec = PREC_MULT;
4641           ocode = TRUNC_MOD_EXPR;
4642           break;
4643         case CPP_PLUS:
4644           oprec = PREC_ADD;
4645           ocode = PLUS_EXPR;
4646           break;
4647         case CPP_MINUS:
4648           oprec = PREC_ADD;
4649           ocode = MINUS_EXPR;
4650           break;
4651         case CPP_LSHIFT:
4652           oprec = PREC_SHIFT;
4653           ocode = LSHIFT_EXPR;
4654           break;
4655         case CPP_RSHIFT:
4656           oprec = PREC_SHIFT;
4657           ocode = RSHIFT_EXPR;
4658           break;
4659         case CPP_LESS:
4660           oprec = PREC_REL;
4661           ocode = LT_EXPR;
4662           break;
4663         case CPP_GREATER:
4664           oprec = PREC_REL;
4665           ocode = GT_EXPR;
4666           break;
4667         case CPP_LESS_EQ:
4668           oprec = PREC_REL;
4669           ocode = LE_EXPR;
4670           break;
4671         case CPP_GREATER_EQ:
4672           oprec = PREC_REL;
4673           ocode = GE_EXPR;
4674           break;
4675         case CPP_EQ_EQ:
4676           oprec = PREC_EQ;
4677           ocode = EQ_EXPR;
4678           break;
4679         case CPP_NOT_EQ:
4680           oprec = PREC_EQ;
4681           ocode = NE_EXPR;
4682           break;
4683         case CPP_AND:
4684           oprec = PREC_BITAND;
4685           ocode = BIT_AND_EXPR;
4686           break;
4687         case CPP_XOR:
4688           oprec = PREC_BITXOR;
4689           ocode = BIT_XOR_EXPR;
4690           break;
4691         case CPP_OR:
4692           oprec = PREC_BITOR;
4693           ocode = BIT_IOR_EXPR;
4694           break;
4695         case CPP_AND_AND:
4696           oprec = PREC_LOGAND;
4697           ocode = TRUTH_ANDIF_EXPR;
4698           break;
4699         case CPP_OR_OR:
4700           oprec = PREC_LOGOR;
4701           ocode = TRUTH_ORIF_EXPR;
4702           break;
4703         default:
4704           /* Not a binary operator, so end of the binary
4705              expression.  */
4706           goto out;
4707         }
4708       binary_loc = c_parser_peek_token (parser)->location;
4709       c_parser_consume_token (parser);
4710       while (oprec <= stack[sp].prec)
4711         POP;
4712       switch (ocode)
4713         {
4714         case TRUTH_ANDIF_EXPR:
4715           stack[sp].expr
4716             = default_function_array_conversion (stack[sp].expr);
4717           stack[sp].expr.value = c_objc_common_truthvalue_conversion
4718             (binary_loc, default_conversion (stack[sp].expr.value));
4719           skip_evaluation += stack[sp].expr.value == truthvalue_false_node;
4720           break;
4721         case TRUTH_ORIF_EXPR:
4722           stack[sp].expr
4723             = default_function_array_conversion (stack[sp].expr);
4724           stack[sp].expr.value = c_objc_common_truthvalue_conversion
4725             (binary_loc, default_conversion (stack[sp].expr.value));
4726           skip_evaluation += stack[sp].expr.value == truthvalue_true_node;
4727           break;
4728         default:
4729           break;
4730         }
4731       sp++;
4732       stack[sp].expr = c_parser_cast_expression (parser, NULL);
4733       stack[sp].prec = oprec;
4734       stack[sp].op = ocode;
4735     }
4736  out:
4737   while (sp > 0)
4738     POP;
4739   return stack[0].expr;
4740 #undef POP
4741 }
4742
4743 /* Parse a cast expression (C90 6.3.4, C99 6.5.4).  If AFTER is not
4744    NULL then it is an Objective-C message expression which is the
4745    primary-expression starting the expression as an initializer.
4746
4747    cast-expression:
4748      unary-expression
4749      ( type-name ) unary-expression
4750 */
4751
4752 static struct c_expr
4753 c_parser_cast_expression (c_parser *parser, struct c_expr *after)
4754 {
4755   gcc_assert (!after || c_dialect_objc ());
4756   if (after)
4757     return c_parser_postfix_expression_after_primary (parser, *after);
4758   /* If the expression begins with a parenthesized type name, it may
4759      be either a cast or a compound literal; we need to see whether
4760      the next character is '{' to tell the difference.  If not, it is
4761      an unary expression.  */
4762   if (c_parser_next_token_is (parser, CPP_OPEN_PAREN)
4763       && c_token_starts_typename (c_parser_peek_2nd_token (parser)))
4764     {
4765       struct c_type_name *type_name;
4766       struct c_expr ret;
4767       struct c_expr expr;
4768       c_parser_consume_token (parser);
4769       type_name = c_parser_type_name (parser);
4770       c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
4771       if (type_name == NULL)
4772         {
4773           ret.value = error_mark_node;
4774           ret.original_code = ERROR_MARK;
4775           return ret;
4776         }
4777
4778       /* Save casted types in the function's used types hash table.  */
4779       used_types_insert (type_name->specs->type);
4780
4781       if (c_parser_next_token_is (parser, CPP_OPEN_BRACE))
4782         return c_parser_postfix_expression_after_paren_type (parser,
4783                                                              type_name);
4784       expr = c_parser_cast_expression (parser, NULL);
4785       expr = default_function_array_conversion (expr);
4786       ret.value = c_cast_expr (type_name, expr.value);
4787       ret.original_code = ERROR_MARK;
4788       return ret;
4789     }
4790   else
4791     return c_parser_unary_expression (parser);
4792 }
4793
4794 /* Parse an unary expression (C90 6.3.3, C99 6.5.3).
4795
4796    unary-expression:
4797      postfix-expression
4798      ++ unary-expression
4799      -- unary-expression
4800      unary-operator cast-expression
4801      sizeof unary-expression
4802      sizeof ( type-name )
4803
4804    unary-operator: one of
4805      & * + - ~ !
4806
4807    GNU extensions:
4808
4809    unary-expression:
4810      __alignof__ unary-expression
4811      __alignof__ ( type-name )
4812      && identifier
4813
4814    unary-operator: one of
4815      __extension__ __real__ __imag__
4816
4817    In addition, the GNU syntax treats ++ and -- as unary operators, so
4818    they may be applied to cast expressions with errors for non-lvalues
4819    given later.  */
4820
4821 static struct c_expr
4822 c_parser_unary_expression (c_parser *parser)
4823 {
4824   int ext;
4825   struct c_expr ret, op;
4826   location_t loc = c_parser_peek_token (parser)->location;
4827   switch (c_parser_peek_token (parser)->type)
4828     {
4829     case CPP_PLUS_PLUS:
4830       c_parser_consume_token (parser);
4831       op = c_parser_cast_expression (parser, NULL);
4832       op = default_function_array_conversion (op);
4833       return parser_build_unary_op (PREINCREMENT_EXPR, op, loc);
4834     case CPP_MINUS_MINUS:
4835       c_parser_consume_token (parser);
4836       op = c_parser_cast_expression (parser, NULL);
4837       op = default_function_array_conversion (op);
4838       return parser_build_unary_op (PREDECREMENT_EXPR, op, loc);
4839     case CPP_AND:
4840       c_parser_consume_token (parser);
4841       return parser_build_unary_op (ADDR_EXPR,
4842                                     c_parser_cast_expression (parser, NULL),
4843                                     loc);
4844     case CPP_MULT:
4845       c_parser_consume_token (parser);
4846       op = c_parser_cast_expression (parser, NULL);
4847       op = default_function_array_conversion (op);
4848       ret.value = build_indirect_ref (loc, op.value, "unary *");
4849       ret.original_code = ERROR_MARK;
4850       return ret;
4851     case CPP_PLUS:
4852       if (!c_dialect_objc () && !in_system_header)
4853         warning_at (c_parser_peek_token (parser)->location,
4854                     OPT_Wtraditional,
4855                     "traditional C rejects the unary plus operator");
4856       c_parser_consume_token (parser);
4857       op = c_parser_cast_expression (parser, NULL);
4858       op = default_function_array_conversion (op);
4859       return parser_build_unary_op (CONVERT_EXPR, op, loc);
4860     case CPP_MINUS:
4861       c_parser_consume_token (parser);
4862       op = c_parser_cast_expression (parser, NULL);
4863       op = default_function_array_conversion (op);
4864       return parser_build_unary_op (NEGATE_EXPR, op, loc);
4865     case CPP_COMPL:
4866       c_parser_consume_token (parser);
4867       op = c_parser_cast_expression (parser, NULL);
4868       op = default_function_array_conversion (op);
4869       return parser_build_unary_op (BIT_NOT_EXPR, op, loc);
4870     case CPP_NOT:
4871       c_parser_consume_token (parser);
4872       op = c_parser_cast_expression (parser, NULL);
4873       op = default_function_array_conversion (op);
4874       return parser_build_unary_op (TRUTH_NOT_EXPR, op, loc);
4875     case CPP_AND_AND:
4876       /* Refer to the address of a label as a pointer.  */
4877       c_parser_consume_token (parser);
4878       if (c_parser_next_token_is (parser, CPP_NAME))
4879         {
4880           ret.value = finish_label_address_expr
4881             (c_parser_peek_token (parser)->value, loc);
4882           c_parser_consume_token (parser);
4883         }
4884       else
4885         {
4886           c_parser_error (parser, "expected identifier");
4887           ret.value = error_mark_node;
4888         }
4889         ret.original_code = ERROR_MARK;
4890         return ret;
4891     case CPP_KEYWORD:
4892       switch (c_parser_peek_token (parser)->keyword)
4893         {
4894         case RID_SIZEOF:
4895           return c_parser_sizeof_expression (parser);
4896         case RID_ALIGNOF:
4897           return c_parser_alignof_expression (parser);
4898         case RID_EXTENSION:
4899           c_parser_consume_token (parser);
4900           ext = disable_extension_diagnostics ();
4901           ret = c_parser_cast_expression (parser, NULL);
4902           restore_extension_diagnostics (ext);
4903           return ret;
4904         case RID_REALPART:
4905           c_parser_consume_token (parser);
4906           op = c_parser_cast_expression (parser, NULL);
4907           op = default_function_array_conversion (op);
4908           return parser_build_unary_op (REALPART_EXPR, op, loc);
4909         case RID_IMAGPART:
4910           c_parser_consume_token (parser);
4911           op = c_parser_cast_expression (parser, NULL);
4912           op = default_function_array_conversion (op);
4913           return parser_build_unary_op (IMAGPART_EXPR, op, loc);
4914         default:
4915           return c_parser_postfix_expression (parser);
4916         }
4917     default:
4918       return c_parser_postfix_expression (parser);
4919     }
4920 }
4921
4922 /* Parse a sizeof expression.  */
4923
4924 static struct c_expr
4925 c_parser_sizeof_expression (c_parser *parser)
4926 {
4927   struct c_expr expr;
4928   location_t expr_loc;
4929   gcc_assert (c_parser_next_token_is_keyword (parser, RID_SIZEOF));
4930   c_parser_consume_token (parser);
4931   skip_evaluation++;
4932   in_sizeof++;
4933   if (c_parser_next_token_is (parser, CPP_OPEN_PAREN)
4934       && c_token_starts_typename (c_parser_peek_2nd_token (parser)))
4935     {
4936       /* Either sizeof ( type-name ) or sizeof unary-expression
4937          starting with a compound literal.  */
4938       struct c_type_name *type_name;
4939       c_parser_consume_token (parser);
4940       expr_loc = c_parser_peek_token (parser)->location;
4941       type_name = c_parser_type_name (parser);
4942       c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
4943       if (type_name == NULL)
4944         {
4945           struct c_expr ret;
4946           skip_evaluation--;
4947           in_sizeof--;
4948           ret.value = error_mark_node;
4949           ret.original_code = ERROR_MARK;
4950           return ret;
4951         }
4952       if (c_parser_next_token_is (parser, CPP_OPEN_BRACE))
4953         {
4954           expr = c_parser_postfix_expression_after_paren_type (parser,
4955                                                                type_name);
4956           goto sizeof_expr;
4957         }
4958       /* sizeof ( type-name ).  */
4959       skip_evaluation--;
4960       in_sizeof--;
4961       return c_expr_sizeof_type (type_name);
4962     }
4963   else
4964     {
4965       expr_loc = c_parser_peek_token (parser)->location;
4966       expr = c_parser_unary_expression (parser);
4967     sizeof_expr:
4968       skip_evaluation--;
4969       in_sizeof--;
4970       if (TREE_CODE (expr.value) == COMPONENT_REF
4971           && DECL_C_BIT_FIELD (TREE_OPERAND (expr.value, 1)))
4972         error_at (expr_loc, "%<sizeof%> applied to a bit-field");
4973       return c_expr_sizeof_expr (expr);
4974     }
4975 }
4976
4977 /* Parse an alignof expression.  */
4978
4979 static struct c_expr
4980 c_parser_alignof_expression (c_parser *parser)
4981 {
4982   struct c_expr expr;
4983   gcc_assert (c_parser_next_token_is_keyword (parser, RID_ALIGNOF));
4984   c_parser_consume_token (parser);
4985   skip_evaluation++;
4986   in_alignof++;
4987   if (c_parser_next_token_is (parser, CPP_OPEN_PAREN)
4988       && c_token_starts_typename (c_parser_peek_2nd_token (parser)))
4989     {
4990       /* Either __alignof__ ( type-name ) or __alignof__
4991          unary-expression starting with a compound literal.  */
4992       struct c_type_name *type_name;
4993       struct c_expr ret;
4994       c_parser_consume_token (parser);
4995       type_name = c_parser_type_name (parser);
4996       c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
4997       if (type_name == NULL)
4998         {
4999           struct c_expr ret;
5000           skip_evaluation--;
5001           in_alignof--;
5002           ret.value = error_mark_node;
5003           ret.original_code = ERROR_MARK;
5004           return ret;
5005         }
5006       if (c_parser_next_token_is (parser, CPP_OPEN_BRACE))
5007         {
5008           expr = c_parser_postfix_expression_after_paren_type (parser,
5009                                                                type_name);
5010           goto alignof_expr;
5011         }
5012       /* alignof ( type-name ).  */
5013       skip_evaluation--;
5014       in_alignof--;
5015       ret.value = c_alignof (groktypename (type_name));
5016       ret.original_code = ERROR_MARK;
5017       return ret;
5018     }
5019   else
5020     {
5021       struct c_expr ret;
5022       expr = c_parser_unary_expression (parser);
5023     alignof_expr:
5024       skip_evaluation--;
5025       in_alignof--;
5026       ret.value = c_alignof_expr (expr.value);
5027       ret.original_code = ERROR_MARK;
5028       return ret;
5029     }
5030 }
5031
5032 /* Parse a postfix expression (C90 6.3.1-6.3.2, C99 6.5.1-6.5.2).
5033
5034    postfix-expression:
5035      primary-expression
5036      postfix-expression [ expression ]
5037      postfix-expression ( argument-expression-list[opt] )
5038      postfix-expression . identifier
5039      postfix-expression -> identifier
5040      postfix-expression ++
5041      postfix-expression --
5042      ( type-name ) { initializer-list }
5043      ( type-name ) { initializer-list , }
5044
5045    argument-expression-list:
5046      argument-expression
5047      argument-expression-list , argument-expression
5048
5049    primary-expression:
5050      identifier
5051      constant
5052      string-literal
5053      ( expression )
5054
5055    GNU extensions:
5056
5057    primary-expression:
5058      __func__
5059        (treated as a keyword in GNU C)
5060      __FUNCTION__
5061      __PRETTY_FUNCTION__
5062      ( compound-statement )
5063      __builtin_va_arg ( assignment-expression , type-name )
5064      __builtin_offsetof ( type-name , offsetof-member-designator )
5065      __builtin_choose_expr ( assignment-expression ,
5066                              assignment-expression ,
5067                              assignment-expression )
5068      __builtin_types_compatible_p ( type-name , type-name )
5069
5070    offsetof-member-designator:
5071      identifier
5072      offsetof-member-designator . identifier
5073      offsetof-member-designator [ expression ]
5074
5075    Objective-C:
5076
5077    primary-expression:
5078      [ objc-receiver objc-message-args ]
5079      @selector ( objc-selector-arg )
5080      @protocol ( identifier )
5081      @encode ( type-name )
5082      objc-string-literal
5083 */
5084
5085 static struct c_expr
5086 c_parser_postfix_expression (c_parser *parser)
5087 {
5088   struct c_expr expr, e1, e2, e3;
5089   struct c_type_name *t1, *t2;
5090   location_t loc;
5091   switch (c_parser_peek_token (parser)->type)
5092     {
5093     case CPP_NUMBER:
5094       expr.value = c_parser_peek_token (parser)->value;
5095       expr.original_code = ERROR_MARK;
5096       loc = c_parser_peek_token (parser)->location;
5097       c_parser_consume_token (parser);
5098       if (TREE_CODE (expr.value) == FIXED_CST
5099           && !targetm.fixed_point_supported_p ())
5100         {
5101           error_at (loc, "fixed-point types not supported for this target");
5102           expr.value = error_mark_node;
5103         }
5104       break;
5105     case CPP_CHAR:
5106     case CPP_CHAR16:
5107     case CPP_CHAR32:
5108     case CPP_WCHAR:
5109       expr.value = c_parser_peek_token (parser)->value;
5110       expr.original_code = ERROR_MARK;
5111       c_parser_consume_token (parser);
5112       break;
5113     case CPP_STRING:
5114     case CPP_STRING16:
5115     case CPP_STRING32:
5116     case CPP_WSTRING:
5117       expr.value = c_parser_peek_token (parser)->value;
5118       expr.original_code = STRING_CST;
5119       c_parser_consume_token (parser);
5120       break;
5121     case CPP_OBJC_STRING:
5122       gcc_assert (c_dialect_objc ());
5123       expr.value
5124         = objc_build_string_object (c_parser_peek_token (parser)->value);
5125       expr.original_code = ERROR_MARK;
5126       c_parser_consume_token (parser);
5127       break;
5128     case CPP_NAME:
5129       if (c_parser_peek_token (parser)->id_kind != C_ID_ID)
5130         {
5131           c_parser_error (parser, "expected expression");
5132           expr.value = error_mark_node;
5133           expr.original_code = ERROR_MARK;
5134           break;
5135         }
5136       {
5137         tree id = c_parser_peek_token (parser)->value;
5138         location_t loc = c_parser_peek_token (parser)->location;
5139         c_parser_consume_token (parser);
5140         expr.value = build_external_ref (id,
5141                                          (c_parser_peek_token (parser)->type
5142                                           == CPP_OPEN_PAREN), loc);
5143         expr.original_code = ERROR_MARK;
5144       }
5145       break;
5146     case CPP_OPEN_PAREN:
5147       /* A parenthesized expression, statement expression or compound
5148          literal.  */
5149       if (c_parser_peek_2nd_token (parser)->type == CPP_OPEN_BRACE)
5150         {
5151           /* A statement expression.  */
5152           tree stmt;
5153           location_t here = c_parser_peek_token (parser)->location;
5154           c_parser_consume_token (parser);
5155           c_parser_consume_token (parser);
5156           if (cur_stmt_list == NULL)
5157             {
5158               error_at (here, "braced-group within expression allowed "
5159                         "only inside a function");
5160               parser->error = true;
5161               c_parser_skip_until_found (parser, CPP_CLOSE_BRACE, NULL);
5162               c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
5163               expr.value = error_mark_node;
5164               expr.original_code = ERROR_MARK;
5165               break;
5166             }
5167           stmt = c_begin_stmt_expr ();
5168           c_parser_compound_statement_nostart (parser);
5169           c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
5170                                      "expected %<)%>");
5171           pedwarn (here, OPT_pedantic, 
5172                    "ISO C forbids braced-groups within expressions");
5173           expr.value = c_finish_stmt_expr (stmt);
5174           expr.original_code = ERROR_MARK;
5175         }
5176       else if (c_token_starts_typename (c_parser_peek_2nd_token (parser)))
5177         {
5178           /* A compound literal.  ??? Can we actually get here rather
5179              than going directly to
5180              c_parser_postfix_expression_after_paren_type from
5181              elsewhere?  */
5182           struct c_type_name *type_name;
5183           c_parser_consume_token (parser);
5184           type_name = c_parser_type_name (parser);
5185           c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
5186                                      "expected %<)%>");
5187           if (type_name == NULL)
5188             {
5189               expr.value = error_mark_node;
5190               expr.original_code = ERROR_MARK;
5191             }
5192           else
5193             expr = c_parser_postfix_expression_after_paren_type (parser,
5194                                                                  type_name);
5195         }
5196       else
5197         {
5198           /* A parenthesized expression.  */
5199           c_parser_consume_token (parser);
5200           expr = c_parser_expression (parser);
5201           if (TREE_CODE (expr.value) == MODIFY_EXPR)
5202             TREE_NO_WARNING (expr.value) = 1;
5203           expr.original_code = ERROR_MARK;
5204           c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
5205                                      "expected %<)%>");
5206         }
5207       break;
5208     case CPP_KEYWORD:
5209       switch (c_parser_peek_token (parser)->keyword)
5210         {
5211         case RID_FUNCTION_NAME:
5212         case RID_PRETTY_FUNCTION_NAME:
5213         case RID_C99_FUNCTION_NAME:
5214           expr.value = fname_decl (c_parser_peek_token (parser)->location,
5215                                    c_parser_peek_token (parser)->keyword,
5216                                    c_parser_peek_token (parser)->value);
5217           expr.original_code = ERROR_MARK;
5218           c_parser_consume_token (parser);
5219           break;
5220         case RID_VA_ARG:
5221           c_parser_consume_token (parser);
5222           if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
5223             {
5224               expr.value = error_mark_node;
5225               expr.original_code = ERROR_MARK;
5226               break;
5227             }
5228           e1 = c_parser_expr_no_commas (parser, NULL);
5229           if (!c_parser_require (parser, CPP_COMMA, "expected %<,%>"))
5230             {
5231               c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
5232               expr.value = error_mark_node;
5233               expr.original_code = ERROR_MARK;
5234               break;
5235             }
5236           t1 = c_parser_type_name (parser);
5237           c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
5238                                      "expected %<)%>");
5239           if (t1 == NULL)
5240             {
5241               expr.value = error_mark_node;
5242               expr.original_code = ERROR_MARK;
5243             }
5244           else
5245             {
5246               expr.value = build_va_arg (e1.value, groktypename (t1));
5247               expr.original_code = ERROR_MARK;
5248             }
5249           break;
5250         case RID_OFFSETOF:
5251           c_parser_consume_token (parser);
5252           if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
5253             {
5254               expr.value = error_mark_node;
5255               expr.original_code = ERROR_MARK;
5256               break;
5257             }
5258           t1 = c_parser_type_name (parser);
5259           if (t1 == NULL)
5260             {
5261               expr.value = error_mark_node;
5262               expr.original_code = ERROR_MARK;
5263               break;
5264             }
5265           if (!c_parser_require (parser, CPP_COMMA, "expected %<,%>"))
5266             {
5267               c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
5268               expr.value = error_mark_node;
5269               expr.original_code = ERROR_MARK;
5270               break;
5271             }
5272           {
5273             tree type = groktypename (t1);
5274             tree offsetof_ref;
5275             if (type == error_mark_node)
5276               offsetof_ref = error_mark_node;
5277             else
5278               offsetof_ref = build1 (INDIRECT_REF, type, null_pointer_node);
5279             /* Parse the second argument to __builtin_offsetof.  We
5280                must have one identifier, and beyond that we want to
5281                accept sub structure and sub array references.  */
5282             if (c_parser_next_token_is (parser, CPP_NAME))
5283               {
5284                 offsetof_ref = build_component_ref
5285                   (offsetof_ref, c_parser_peek_token (parser)->value);
5286                 c_parser_consume_token (parser);
5287                 while (c_parser_next_token_is (parser, CPP_DOT)
5288                        || c_parser_next_token_is (parser,
5289                                                   CPP_OPEN_SQUARE)
5290                        || c_parser_next_token_is (parser,
5291                                                   CPP_DEREF))
5292                   {
5293                     if (c_parser_next_token_is (parser, CPP_DEREF))
5294                       {
5295                         loc = c_parser_peek_token (parser)->location;
5296                         offsetof_ref = build_array_ref (offsetof_ref,
5297                                                         integer_zero_node,
5298                                                         loc);
5299                         goto do_dot;
5300                       }
5301                     else if (c_parser_next_token_is (parser, CPP_DOT))
5302                       {
5303                       do_dot:
5304                         c_parser_consume_token (parser);
5305                         if (c_parser_next_token_is_not (parser,
5306                                                         CPP_NAME))
5307                           {
5308                             c_parser_error (parser, "expected identifier");
5309                             break;
5310                           }
5311                         offsetof_ref = build_component_ref
5312                           (offsetof_ref,
5313                            c_parser_peek_token (parser)->value);
5314                         c_parser_consume_token (parser);
5315                       }
5316                     else
5317                       {
5318                         tree idx;
5319                         loc = c_parser_peek_token (parser)->location;
5320                         c_parser_consume_token (parser);
5321                         idx = c_parser_expression (parser).value;
5322                         c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE,
5323                                                    "expected %<]%>");
5324                         offsetof_ref = build_array_ref (offsetof_ref, idx, loc);
5325                       }
5326                   }
5327               }
5328             else
5329               c_parser_error (parser, "expected identifier");
5330             c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
5331                                        "expected %<)%>");
5332             expr.value = fold_offsetof (offsetof_ref, NULL_TREE);
5333             expr.original_code = ERROR_MARK;
5334           }
5335           break;
5336         case RID_CHOOSE_EXPR:
5337           c_parser_consume_token (parser);
5338           if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
5339             {
5340               expr.value = error_mark_node;
5341               expr.original_code = ERROR_MARK;
5342               break;
5343             }
5344           loc = c_parser_peek_token (parser)->location;
5345           e1 = c_parser_expr_no_commas (parser, NULL);
5346           if (!c_parser_require (parser, CPP_COMMA, "expected %<,%>"))
5347             {
5348               c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
5349               expr.value = error_mark_node;
5350               expr.original_code = ERROR_MARK;
5351               break;
5352             }
5353           e2 = c_parser_expr_no_commas (parser, NULL);
5354           if (!c_parser_require (parser, CPP_COMMA, "expected %<,%>"))
5355             {
5356               c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
5357               expr.value = error_mark_node;
5358               expr.original_code = ERROR_MARK;
5359               break;
5360             }
5361           e3 = c_parser_expr_no_commas (parser, NULL);
5362           c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
5363                                      "expected %<)%>");
5364           {
5365             tree c;
5366
5367             c = fold (e1.value);
5368             if (TREE_CODE (c) != INTEGER_CST)
5369               error_at (loc,
5370                         "first argument to %<__builtin_choose_expr%> not"
5371                         " a constant");
5372             expr = integer_zerop (c) ? e3 : e2;
5373           }
5374           break;
5375         case RID_TYPES_COMPATIBLE_P:
5376           c_parser_consume_token (parser);
5377           if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
5378             {
5379               expr.value = error_mark_node;
5380               expr.original_code = ERROR_MARK;
5381               break;
5382             }
5383           t1 = c_parser_type_name (parser);
5384           if (t1 == NULL)
5385             {
5386               expr.value = error_mark_node;
5387               expr.original_code = ERROR_MARK;
5388               break;
5389             }
5390           if (!c_parser_require (parser, CPP_COMMA, "expected %<,%>"))
5391             {
5392               c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
5393               expr.value = error_mark_node;
5394               expr.original_code = ERROR_MARK;
5395               break;
5396             }
5397           t2 = c_parser_type_name (parser);
5398           if (t2 == NULL)
5399             {
5400               expr.value = error_mark_node;
5401               expr.original_code = ERROR_MARK;
5402               break;
5403             }
5404           c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
5405                                      "expected %<)%>");
5406           {
5407             tree e1, e2;
5408
5409             e1 = TYPE_MAIN_VARIANT (groktypename (t1));
5410             e2 = TYPE_MAIN_VARIANT (groktypename (t2));
5411
5412             expr.value = comptypes (e1, e2)
5413               ? build_int_cst (NULL_TREE, 1)
5414               : build_int_cst (NULL_TREE, 0);
5415             expr.original_code = ERROR_MARK;
5416           }
5417           break;
5418         case RID_AT_SELECTOR:
5419           gcc_assert (c_dialect_objc ());
5420           c_parser_consume_token (parser);
5421           if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
5422             {
5423               expr.value = error_mark_node;
5424               expr.original_code = ERROR_MARK;
5425               break;
5426             }
5427           {
5428             tree sel = c_parser_objc_selector_arg (parser);
5429             c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
5430                                        "expected %<)%>");
5431             expr.value = objc_build_selector_expr (sel);
5432             expr.original_code = ERROR_MARK;
5433           }
5434           break;
5435         case RID_AT_PROTOCOL:
5436           gcc_assert (c_dialect_objc ());
5437           c_parser_consume_token (parser);
5438           if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
5439             {
5440               expr.value = error_mark_node;
5441               expr.original_code = ERROR_MARK;
5442               break;
5443             }
5444           if (c_parser_next_token_is_not (parser, CPP_NAME))
5445             {
5446               c_parser_error (parser, "expected identifier");
5447               c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
5448               expr.value = error_mark_node;
5449               expr.original_code = ERROR_MARK;
5450               break;
5451             }
5452           {
5453             tree id = c_parser_peek_token (parser)->value;
5454             c_parser_consume_token (parser);
5455             c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
5456                                        "expected %<)%>");
5457             expr.value = objc_build_protocol_expr (id);
5458             expr.original_code = ERROR_MARK;
5459           }
5460           break;
5461         case RID_AT_ENCODE:
5462           /* Extension to support C-structures in the archiver.  */
5463           gcc_assert (c_dialect_objc ());
5464           c_parser_consume_token (parser);
5465           if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
5466             {
5467               expr.value = error_mark_node;
5468               expr.original_code = ERROR_MARK;
5469               break;
5470             }
5471           t1 = c_parser_type_name (parser);
5472           if (t1 == NULL)
5473             {
5474               expr.value = error_mark_node;
5475               expr.original_code = ERROR_MARK;
5476               c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
5477               break;
5478             }
5479           c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
5480                                      "expected %<)%>");
5481           {
5482             tree type = groktypename (t1);
5483             expr.value = objc_build_encode_expr (type);
5484             expr.original_code = ERROR_MARK;
5485           }
5486           break;
5487         default:
5488           c_parser_error (parser, "expected expression");
5489           expr.value = error_mark_node;
5490           expr.original_code = ERROR_MARK;
5491           break;
5492         }
5493       break;
5494     case CPP_OPEN_SQUARE:
5495       if (c_dialect_objc ())
5496         {
5497           tree receiver, args;
5498           c_parser_consume_token (parser);
5499           receiver = c_parser_objc_receiver (parser);
5500           args = c_parser_objc_message_args (parser);
5501           c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE,
5502                                      "expected %<]%>");
5503           expr.value = objc_build_message_expr (build_tree_list (receiver,
5504                                                                  args));
5505           expr.original_code = ERROR_MARK;
5506           break;
5507         }
5508       /* Else fall through to report error.  */
5509     default:
5510       c_parser_error (parser, "expected expression");
5511       expr.value = error_mark_node;
5512       expr.original_code = ERROR_MARK;
5513       break;
5514     }
5515   return c_parser_postfix_expression_after_primary (parser, expr);
5516 }
5517
5518 /* Parse a postfix expression after a parenthesized type name: the
5519    brace-enclosed initializer of a compound literal, possibly followed
5520    by some postfix operators.  This is separate because it is not
5521    possible to tell until after the type name whether a cast
5522    expression has a cast or a compound literal, or whether the operand
5523    of sizeof is a parenthesized type name or starts with a compound
5524    literal.  */
5525
5526 static struct c_expr
5527 c_parser_postfix_expression_after_paren_type (c_parser *parser,
5528                                               struct c_type_name *type_name)
5529 {
5530   tree type;
5531   struct c_expr init;
5532   struct c_expr expr;
5533   location_t start_loc;
5534   start_init (NULL_TREE, NULL, 0);
5535   type = groktypename (type_name);
5536   start_loc = c_parser_peek_token (parser)->location;
5537   if (type != error_mark_node && C_TYPE_VARIABLE_SIZE (type))
5538     {
5539       error_at (start_loc, "compound literal has variable size");
5540       type = error_mark_node;
5541     }
5542   init = c_parser_braced_init (parser, type, false);
5543   finish_init ();
5544   maybe_warn_string_init (type, init);
5545
5546   if (!flag_isoc99)
5547     pedwarn (start_loc, OPT_pedantic, "ISO C90 forbids compound literals");
5548   expr.value = build_compound_literal (type, init.value);
5549   expr.original_code = ERROR_MARK;
5550   return c_parser_postfix_expression_after_primary (parser, expr);
5551 }
5552
5553 /* Parse a postfix expression after the initial primary or compound
5554    literal; that is, parse a series of postfix operators.  */
5555
5556 static struct c_expr
5557 c_parser_postfix_expression_after_primary (c_parser *parser,
5558                                            struct c_expr expr)
5559 {
5560   tree ident, idx, exprlist;
5561   location_t loc = c_parser_peek_token (parser)->location;
5562   while (true)
5563     {
5564       switch (c_parser_peek_token (parser)->type)
5565         {
5566         case CPP_OPEN_SQUARE:
5567           /* Array reference.  */
5568           loc = c_parser_peek_token (parser)->location;
5569           c_parser_consume_token (parser);
5570           idx = c_parser_expression (parser).value;
5571           c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE,
5572                                      "expected %<]%>");
5573           expr.value = build_array_ref (expr.value, idx, loc);
5574           expr.original_code = ERROR_MARK;
5575           break;
5576         case CPP_OPEN_PAREN:
5577           /* Function call.  */
5578           c_parser_consume_token (parser);
5579           if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
5580             exprlist = NULL_TREE;
5581           else
5582             exprlist = c_parser_expr_list (parser, true);
5583           c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
5584                                      "expected %<)%>");
5585           expr.value = build_function_call (expr.value, exprlist);
5586           expr.original_code = ERROR_MARK;
5587           if (warn_disallowed_functions)
5588             warn_if_disallowed_function_p (expr.value);
5589           break;
5590         case CPP_DOT:
5591           /* Structure element reference.  */
5592           c_parser_consume_token (parser);
5593           expr = default_function_array_conversion (expr);
5594           if (c_parser_next_token_is (parser, CPP_NAME))
5595             ident = c_parser_peek_token (parser)->value;
5596           else
5597             {
5598               c_parser_error (parser, "expected identifier");
5599               expr.value = error_mark_node;
5600               expr.original_code = ERROR_MARK;
5601               return expr;
5602             }
5603           c_parser_consume_token (parser);
5604           expr.value = build_component_ref (expr.value, ident);
5605           expr.original_code = ERROR_MARK;
5606           break;
5607         case CPP_DEREF:
5608           /* Structure element reference.  */
5609           c_parser_consume_token (parser);
5610           expr = default_function_array_conversion (expr);
5611           if (c_parser_next_token_is (parser, CPP_NAME))
5612             ident = c_parser_peek_token (parser)->value;
5613           else
5614             {
5615               c_parser_error (parser, "expected identifier");
5616               expr.value = error_mark_node;
5617               expr.original_code = ERROR_MARK;
5618               return expr;
5619             }
5620           c_parser_consume_token (parser);
5621           expr.value = build_component_ref (build_indirect_ref (loc,
5622                                                                 expr.value,
5623                                                                 "->"),
5624                                             ident);
5625           expr.original_code = ERROR_MARK;
5626           break;
5627         case CPP_PLUS_PLUS:
5628           /* Postincrement.  */
5629           c_parser_consume_token (parser);
5630           expr = default_function_array_conversion (expr);
5631           expr.value = build_unary_op (loc,
5632                                        POSTINCREMENT_EXPR, expr.value, 0);
5633           expr.original_code = ERROR_MARK;
5634           break;
5635         case CPP_MINUS_MINUS:
5636           /* Postdecrement.  */
5637           c_parser_consume_token (parser);
5638           expr = default_function_array_conversion (expr);
5639           expr.value = build_unary_op (loc,
5640                                        POSTDECREMENT_EXPR, expr.value, 0);
5641           expr.original_code = ERROR_MARK;
5642           break;
5643         default:
5644           return expr;
5645         }
5646     }
5647 }
5648
5649 /* Parse an expression (C90 6.3.17, C99 6.5.17).
5650
5651    expression:
5652      assignment-expression
5653      expression , assignment-expression
5654 */
5655
5656 static struct c_expr
5657 c_parser_expression (c_parser *parser)
5658 {
5659   struct c_expr expr;
5660   expr = c_parser_expr_no_commas (parser, NULL);
5661   while (c_parser_next_token_is (parser, CPP_COMMA))
5662     {
5663       struct c_expr next;
5664       c_parser_consume_token (parser);
5665       next = c_parser_expr_no_commas (parser, NULL);
5666       next = default_function_array_conversion (next);
5667       expr.value = build_compound_expr (expr.value, next.value);
5668       expr.original_code = COMPOUND_EXPR;
5669     }
5670   return expr;
5671 }
5672
5673 /* Parse an expression and convert functions or arrays to
5674    pointers.  */
5675
5676 static struct c_expr
5677 c_parser_expression_conv (c_parser *parser)
5678 {
5679   struct c_expr expr;
5680   expr = c_parser_expression (parser);
5681   expr = default_function_array_conversion (expr);
5682   return expr;
5683 }
5684
5685 /* Parse a non-empty list of expressions.  If CONVERT_P, convert
5686    functions and arrays to pointers.
5687
5688    nonempty-expr-list:
5689      assignment-expression
5690      nonempty-expr-list , assignment-expression
5691 */
5692
5693 static tree
5694 c_parser_expr_list (c_parser *parser, bool convert_p)
5695 {
5696   struct c_expr expr;
5697   tree ret, cur;
5698   expr = c_parser_expr_no_commas (parser, NULL);
5699   if (convert_p)
5700     expr = default_function_array_conversion (expr);
5701   ret = cur = build_tree_list (NULL_TREE, expr.value);
5702   while (c_parser_next_token_is (parser, CPP_COMMA))
5703     {
5704       c_parser_consume_token (parser);
5705       expr = c_parser_expr_no_commas (parser, NULL);
5706       if (convert_p)
5707         expr = default_function_array_conversion (expr);
5708       cur = TREE_CHAIN (cur) = build_tree_list (NULL_TREE, expr.value);
5709     }
5710   return ret;
5711 }
5712
5713 \f
5714 /* Parse Objective-C-specific constructs.  */
5715
5716 /* Parse an objc-class-definition.
5717
5718    objc-class-definition:
5719      @interface identifier objc-superclass[opt] objc-protocol-refs[opt]
5720        objc-class-instance-variables[opt] objc-methodprotolist @end
5721      @implementation identifier objc-superclass[opt]
5722        objc-class-instance-variables[opt]
5723      @interface identifier ( identifier ) objc-protocol-refs[opt]
5724        objc-methodprotolist @end
5725      @implementation identifier ( identifier )
5726
5727    objc-superclass:
5728      : identifier
5729
5730    "@interface identifier (" must start "@interface identifier (
5731    identifier ) ...": objc-methodprotolist in the first production may
5732    not start with a parenthesized identifier as a declarator of a data
5733    definition with no declaration specifiers if the objc-superclass,
5734    objc-protocol-refs and objc-class-instance-variables are omitted.  */
5735
5736 static void
5737 c_parser_objc_class_definition (c_parser *parser)
5738 {
5739   bool iface_p;
5740   tree id1;
5741   tree superclass;
5742   if (c_parser_next_token_is_keyword (parser, RID_AT_INTERFACE))
5743     iface_p = true;
5744   else if (c_parser_next_token_is_keyword (parser, RID_AT_IMPLEMENTATION))
5745     iface_p = false;
5746   else
5747     gcc_unreachable ();
5748   c_parser_consume_token (parser);
5749   if (c_parser_next_token_is_not (parser, CPP_NAME))
5750     {
5751       c_parser_error (parser, "expected identifier");
5752       return;
5753     }
5754   id1 = c_parser_peek_token (parser)->value;
5755   c_parser_consume_token (parser);
5756   if (c_parser_next_token_is (parser, CPP_OPEN_PAREN))
5757     {
5758       tree id2;
5759       tree proto = NULL_TREE;
5760       c_parser_consume_token (parser);
5761       if (c_parser_next_token_is_not (parser, CPP_NAME))
5762         {
5763           c_parser_error (parser, "expected identifier");
5764           c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
5765           return;
5766         }
5767       id2 = c_parser_peek_token (parser)->value;
5768       c_parser_consume_token (parser);
5769       c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
5770       if (!iface_p)
5771         {
5772           objc_start_category_implementation (id1, id2);
5773           return;
5774         }
5775       if (c_parser_next_token_is (parser, CPP_LESS))
5776         proto = c_parser_objc_protocol_refs (parser);
5777       objc_start_category_interface (id1, id2, proto);
5778       c_parser_objc_methodprotolist (parser);
5779       c_parser_require_keyword (parser, RID_AT_END, "expected %<@end%>");
5780       objc_finish_interface ();
5781       return;
5782     }
5783   if (c_parser_next_token_is (parser, CPP_COLON))
5784     {
5785       c_parser_consume_token (parser);
5786       if (c_parser_next_token_is_not (parser, CPP_NAME))
5787         {
5788           c_parser_error (parser, "expected identifier");
5789           return;
5790         }
5791       superclass = c_parser_peek_token (parser)->value;
5792       c_parser_consume_token (parser);
5793     }
5794   else
5795     superclass = NULL_TREE;
5796   if (iface_p)
5797     {
5798       tree proto = NULL_TREE;
5799       if (c_parser_next_token_is (parser, CPP_LESS))
5800         proto = c_parser_objc_protocol_refs (parser);
5801       objc_start_class_interface (id1, superclass, proto);
5802     }
5803   else
5804     objc_start_class_implementation (id1, superclass);
5805   if (c_parser_next_token_is (parser, CPP_OPEN_BRACE))
5806     c_parser_objc_class_instance_variables (parser);
5807   if (iface_p)
5808     {
5809       objc_continue_interface ();
5810       c_parser_objc_methodprotolist (parser);
5811       c_parser_require_keyword (parser, RID_AT_END, "expected %<@end%>");
5812       objc_finish_interface ();
5813     }
5814   else
5815     {
5816       objc_continue_implementation ();
5817       return;
5818     }
5819 }
5820
5821 /* Parse objc-class-instance-variables.
5822
5823    objc-class-instance-variables:
5824      { objc-instance-variable-decl-list[opt] }
5825
5826    objc-instance-variable-decl-list:
5827      objc-visibility-spec
5828      objc-instance-variable-decl ;
5829      ;
5830      objc-instance-variable-decl-list objc-visibility-spec
5831      objc-instance-variable-decl-list objc-instance-variable-decl ;
5832      objc-instance-variable-decl-list ;
5833
5834    objc-visibility-spec:
5835      @private
5836      @protected
5837      @public
5838
5839    objc-instance-variable-decl:
5840      struct-declaration
5841 */
5842
5843 static void
5844 c_parser_objc_class_instance_variables (c_parser *parser)
5845 {
5846   gcc_assert (c_parser_next_token_is (parser, CPP_OPEN_BRACE));
5847   c_parser_consume_token (parser);
5848   while (c_parser_next_token_is_not (parser, CPP_EOF))
5849     {
5850       tree decls;
5851       /* Parse any stray semicolon.  */
5852       if (c_parser_next_token_is (parser, CPP_SEMICOLON))
5853         {
5854           pedwarn (c_parser_peek_token (parser)->location, OPT_pedantic, 
5855                    "extra semicolon in struct or union specified");
5856           c_parser_consume_token (parser);
5857           continue;
5858         }
5859       /* Stop if at the end of the instance variables.  */
5860       if (c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
5861         {
5862           c_parser_consume_token (parser);
5863           break;
5864         }
5865       /* Parse any objc-visibility-spec.  */
5866       if (c_parser_next_token_is_keyword (parser, RID_PRIVATE))
5867         {
5868           c_parser_consume_token (parser);
5869           objc_set_visibility (2);
5870           continue;
5871         }
5872       else if (c_parser_next_token_is_keyword (parser, RID_PROTECTED))
5873         {
5874           c_parser_consume_token (parser);
5875           objc_set_visibility (0);
5876           continue;
5877         }
5878       else if (c_parser_next_token_is_keyword (parser, RID_PUBLIC))
5879         {
5880           c_parser_consume_token (parser);
5881           objc_set_visibility (1);
5882           continue;
5883         }
5884       else if (c_parser_next_token_is (parser, CPP_PRAGMA))
5885         {
5886           c_parser_pragma (parser, pragma_external);
5887           continue;
5888         }
5889
5890       /* Parse some comma-separated declarations.  */
5891       decls = c_parser_struct_declaration (parser);
5892       {
5893         /* Comma-separated instance variables are chained together in
5894            reverse order; add them one by one.  */
5895         tree ivar = nreverse (decls);
5896         for (; ivar; ivar = TREE_CHAIN (ivar))
5897           objc_add_instance_variable (copy_node (ivar));
5898       }
5899       c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
5900     }
5901 }
5902
5903 /* Parse an objc-class-declaration.
5904
5905    objc-class-declaration:
5906      @class identifier-list ;
5907 */
5908
5909 static void
5910 c_parser_objc_class_declaration (c_parser *parser)
5911 {
5912   tree list = NULL_TREE;
5913   gcc_assert (c_parser_next_token_is_keyword (parser, RID_CLASS));
5914   c_parser_consume_token (parser);
5915   /* Any identifiers, including those declared as type names, are OK
5916      here.  */
5917   while (true)
5918     {
5919       tree id;
5920       if (c_parser_next_token_is_not (parser, CPP_NAME))
5921         {
5922           c_parser_error (parser, "expected identifier");
5923           break;
5924         }
5925       id = c_parser_peek_token (parser)->value;
5926       list = chainon (list, build_tree_list (NULL_TREE, id));
5927       c_parser_consume_token (parser);
5928       if (c_parser_next_token_is (parser, CPP_COMMA))
5929         c_parser_consume_token (parser);
5930       else
5931         break;
5932     }
5933   c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
5934   objc_declare_class (list);
5935 }
5936
5937 /* Parse an objc-alias-declaration.
5938
5939    objc-alias-declaration:
5940      @compatibility_alias identifier identifier ;
5941 */
5942
5943 static void
5944 c_parser_objc_alias_declaration (c_parser *parser)
5945 {
5946   tree id1, id2;
5947   gcc_assert (c_parser_next_token_is_keyword (parser, RID_AT_ALIAS));
5948   c_parser_consume_token (parser);
5949   if (c_parser_next_token_is_not (parser, CPP_NAME))
5950     {
5951       c_parser_error (parser, "expected identifier");
5952       c_parser_skip_until_found (parser, CPP_SEMICOLON, NULL);
5953       return;
5954     }
5955   id1 = c_parser_peek_token (parser)->value;
5956   c_parser_consume_token (parser);
5957   if (c_parser_next_token_is_not (parser, CPP_NAME))
5958     {
5959       c_parser_error (parser, "expected identifier");
5960       c_parser_skip_until_found (parser, CPP_SEMICOLON, NULL);
5961       return;
5962     }
5963   id2 = c_parser_peek_token (parser)->value;
5964   c_parser_consume_token (parser);
5965   c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
5966   objc_declare_alias (id1, id2);
5967 }
5968
5969 /* Parse an objc-protocol-definition.
5970
5971    objc-protocol-definition:
5972      @protocol identifier objc-protocol-refs[opt] objc-methodprotolist @end
5973      @protocol identifier-list ;
5974
5975    "@protocol identifier ;" should be resolved as "@protocol
5976    identifier-list ;": objc-methodprotolist may not start with a
5977    semicolon in the first alternative if objc-protocol-refs are
5978    omitted.  */
5979
5980 static void
5981 c_parser_objc_protocol_definition (c_parser *parser)
5982 {
5983   gcc_assert (c_parser_next_token_is_keyword (parser, RID_AT_PROTOCOL));
5984   c_parser_consume_token (parser);
5985   if (c_parser_next_token_is_not (parser, CPP_NAME))
5986     {
5987       c_parser_error (parser, "expected identifier");
5988       return;
5989     }
5990   if (c_parser_peek_2nd_token (parser)->type == CPP_COMMA
5991       || c_parser_peek_2nd_token (parser)->type == CPP_SEMICOLON)
5992     {
5993       tree list = NULL_TREE;
5994       /* Any identifiers, including those declared as type names, are
5995          OK here.  */
5996       while (true)
5997         {
5998           tree id;
5999           if (c_parser_next_token_is_not (parser, CPP_NAME))
6000             {
6001               c_parser_error (parser, "expected identifier");
6002               break;
6003             }
6004           id = c_parser_peek_token (parser)->value;
6005           list = chainon (list, build_tree_list (NULL_TREE, id));
6006           c_parser_consume_token (parser);
6007           if (c_parser_next_token_is (parser, CPP_COMMA))
6008             c_parser_consume_token (parser);
6009           else
6010             break;
6011         }
6012       c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
6013       objc_declare_protocols (list);
6014     }
6015   else
6016     {
6017       tree id = c_parser_peek_token (parser)->value;
6018       tree proto = NULL_TREE;
6019       c_parser_consume_token (parser);
6020       if (c_parser_next_token_is (parser, CPP_LESS))
6021         proto = c_parser_objc_protocol_refs (parser);
6022       parser->objc_pq_context = true;
6023       objc_start_protocol (id, proto);
6024       c_parser_objc_methodprotolist (parser);
6025       c_parser_require_keyword (parser, RID_AT_END, "expected %<@end%>");
6026       parser->objc_pq_context = false;
6027       objc_finish_interface ();
6028     }
6029 }
6030
6031 /* Parse an objc-method-type.
6032
6033    objc-method-type:
6034      +
6035      -
6036 */
6037
6038 static enum tree_code
6039 c_parser_objc_method_type (c_parser *parser)
6040 {
6041   switch (c_parser_peek_token (parser)->type)
6042     {
6043     case CPP_PLUS:
6044       c_parser_consume_token (parser);
6045       return PLUS_EXPR;
6046     case CPP_MINUS:
6047       c_parser_consume_token (parser);
6048       return MINUS_EXPR;
6049     default:
6050       gcc_unreachable ();
6051     }
6052 }
6053
6054 /* Parse an objc-method-definition.
6055
6056    objc-method-definition:
6057      objc-method-type objc-method-decl ;[opt] compound-statement
6058 */
6059
6060 static void
6061 c_parser_objc_method_definition (c_parser *parser)
6062 {
6063   enum tree_code type = c_parser_objc_method_type (parser);
6064   tree decl;
6065   objc_set_method_type (type);
6066   parser->objc_pq_context = true;
6067   decl = c_parser_objc_method_decl (parser);
6068   if (c_parser_next_token_is (parser, CPP_SEMICOLON))
6069     {
6070       c_parser_consume_token (parser);
6071       pedwarn (c_parser_peek_token (parser)->location, OPT_pedantic, 
6072                "extra semicolon in method definition specified");
6073     }
6074   if (!c_parser_next_token_is (parser, CPP_OPEN_BRACE))
6075     {
6076       c_parser_error (parser, "expected %<{%>");
6077       return;
6078     }
6079   parser->objc_pq_context = false;
6080   objc_start_method_definition (decl);
6081   add_stmt (c_parser_compound_statement (parser));
6082   objc_finish_method_definition (current_function_decl);
6083 }
6084
6085 /* Parse an objc-methodprotolist.
6086
6087    objc-methodprotolist:
6088      empty
6089      objc-methodprotolist objc-methodproto
6090      objc-methodprotolist declaration
6091      objc-methodprotolist ;
6092
6093    The declaration is a data definition, which may be missing
6094    declaration specifiers under the same rules and diagnostics as
6095    other data definitions outside functions, and the stray semicolon
6096    is diagnosed the same way as a stray semicolon outside a
6097    function.  */
6098
6099 static void
6100 c_parser_objc_methodprotolist (c_parser *parser)
6101 {
6102   while (true)
6103     {
6104       /* The list is terminated by @end.  */
6105       switch (c_parser_peek_token (parser)->type)
6106         {
6107         case CPP_SEMICOLON:
6108           pedwarn (c_parser_peek_token (parser)->location, OPT_pedantic, 
6109                    "ISO C does not allow extra %<;%> outside of a function");
6110           c_parser_consume_token (parser);
6111           break;
6112         case CPP_PLUS:
6113         case CPP_MINUS:
6114           c_parser_objc_methodproto (parser);
6115           break;
6116         case CPP_PRAGMA:
6117           c_parser_pragma (parser, pragma_external);
6118           break;
6119         case CPP_EOF:
6120           return;
6121         default:
6122           if (c_parser_next_token_is_keyword (parser, RID_AT_END))
6123             return;
6124           c_parser_declaration_or_fndef (parser, false, true, false, true);
6125           break;
6126         }
6127     }
6128 }
6129
6130 /* Parse an objc-methodproto.
6131
6132    objc-methodproto:
6133      objc-method-type objc-method-decl ;
6134 */
6135
6136 static void
6137 c_parser_objc_methodproto (c_parser *parser)
6138 {
6139   enum tree_code type = c_parser_objc_method_type (parser);
6140   tree decl;
6141   objc_set_method_type (type);
6142   /* Remember protocol qualifiers in prototypes.  */
6143   parser->objc_pq_context = true;
6144   decl = c_parser_objc_method_decl (parser);
6145   /* Forget protocol qualifiers here.  */
6146   parser->objc_pq_context = false;
6147   objc_add_method_declaration (decl);
6148   c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
6149 }
6150
6151 /* Parse an objc-method-decl.
6152
6153    objc-method-decl:
6154      ( objc-type-name ) objc-selector
6155      objc-selector
6156      ( objc-type-name ) objc-keyword-selector objc-optparmlist
6157      objc-keyword-selector objc-optparmlist
6158
6159    objc-keyword-selector:
6160      objc-keyword-decl
6161      objc-keyword-selector objc-keyword-decl
6162
6163    objc-keyword-decl:
6164      objc-selector : ( objc-type-name ) identifier
6165      objc-selector : identifier
6166      : ( objc-type-name ) identifier
6167      : identifier
6168
6169    objc-optparmlist:
6170      objc-optparms objc-optellipsis
6171
6172    objc-optparms:
6173      empty
6174      objc-opt-parms , parameter-declaration
6175
6176    objc-optellipsis:
6177      empty
6178      , ...
6179 */
6180
6181 static tree
6182 c_parser_objc_method_decl (c_parser *parser)
6183 {
6184   tree type = NULL_TREE;
6185   tree sel;
6186   tree parms = NULL_TREE;
6187   bool ellipsis = false;
6188
6189   if (c_parser_next_token_is (parser, CPP_OPEN_PAREN))
6190     {
6191       c_parser_consume_token (parser);
6192       type = c_parser_objc_type_name (parser);
6193       c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
6194     }
6195   sel = c_parser_objc_selector (parser);
6196   /* If there is no selector, or a colon follows, we have an
6197      objc-keyword-selector.  If there is a selector, and a colon does
6198      not follow, that selector ends the objc-method-decl.  */
6199   if (!sel || c_parser_next_token_is (parser, CPP_COLON))
6200     {
6201       tree tsel = sel;
6202       tree list = NULL_TREE;
6203       while (true)
6204         {
6205           tree atype = NULL_TREE, id, keyworddecl;
6206           if (!c_parser_require (parser, CPP_COLON, "expected %<:%>"))
6207             break;
6208           if (c_parser_next_token_is (parser, CPP_OPEN_PAREN))
6209             {
6210               c_parser_consume_token (parser);
6211               atype = c_parser_objc_type_name (parser);
6212               c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
6213                                          "expected %<)%>");
6214             }
6215           if (c_parser_next_token_is_not (parser, CPP_NAME))
6216             {
6217               c_parser_error (parser, "expected identifier");
6218               return error_mark_node;
6219             }
6220           id = c_parser_peek_token (parser)->value;
6221           c_parser_consume_token (parser);
6222           keyworddecl = objc_build_keyword_decl (tsel, atype, id);
6223           list = chainon (list, keyworddecl);
6224           tsel = c_parser_objc_selector (parser);
6225           if (!tsel && c_parser_next_token_is_not (parser, CPP_COLON))
6226             break;
6227         }
6228       /* Parse the optional parameter list.  Optional Objective-C
6229          method parameters follow the C syntax, and may include '...'
6230          to denote a variable number of arguments.  */
6231       parms = make_node (TREE_LIST);
6232       while (c_parser_next_token_is (parser, CPP_COMMA))
6233         {
6234           struct c_parm *parm;
6235           c_parser_consume_token (parser);
6236           if (c_parser_next_token_is (parser, CPP_ELLIPSIS))
6237             {
6238               ellipsis = true;
6239               c_parser_consume_token (parser);
6240               break;
6241             }
6242           parm = c_parser_parameter_declaration (parser, NULL_TREE);
6243           if (parm == NULL)
6244             break;
6245           parms = chainon (parms,
6246                            build_tree_list (NULL_TREE, grokparm (parm)));
6247         }
6248       sel = list;
6249     }
6250   return objc_build_method_signature (type, sel, parms, ellipsis);
6251 }
6252
6253 /* Parse an objc-type-name.
6254
6255    objc-type-name:
6256      objc-type-qualifiers[opt] type-name
6257      objc-type-qualifiers[opt]
6258
6259    objc-type-qualifiers:
6260      objc-type-qualifier
6261      objc-type-qualifiers objc-type-qualifier
6262
6263    objc-type-qualifier: one of
6264      in out inout bycopy byref oneway
6265 */
6266
6267 static tree
6268 c_parser_objc_type_name (c_parser *parser)
6269 {
6270   tree quals = NULL_TREE;
6271   struct c_type_name *type_name = NULL;
6272   tree type = NULL_TREE;
6273   while (true)
6274     {
6275       c_token *token = c_parser_peek_token (parser);
6276       if (token->type == CPP_KEYWORD
6277           && (token->keyword == RID_IN
6278               || token->keyword == RID_OUT
6279               || token->keyword == RID_INOUT
6280               || token->keyword == RID_BYCOPY
6281               || token->keyword == RID_BYREF
6282               || token->keyword == RID_ONEWAY))
6283         {
6284           quals = chainon (quals, build_tree_list (NULL_TREE, token->value));
6285           c_parser_consume_token (parser);
6286         }
6287       else
6288         break;
6289     }
6290   if (c_parser_next_token_starts_typename (parser))
6291     type_name = c_parser_type_name (parser);
6292   if (type_name)
6293     type = groktypename (type_name);
6294   return build_tree_list (quals, type);
6295 }
6296
6297 /* Parse objc-protocol-refs.
6298
6299    objc-protocol-refs:
6300      < identifier-list >
6301 */
6302
6303 static tree
6304 c_parser_objc_protocol_refs (c_parser *parser)
6305 {
6306   tree list = NULL_TREE;
6307   gcc_assert (c_parser_next_token_is (parser, CPP_LESS));
6308   c_parser_consume_token (parser);
6309   /* Any identifiers, including those declared as type names, are OK
6310      here.  */
6311   while (true)
6312     {
6313       tree id;
6314       if (c_parser_next_token_is_not (parser, CPP_NAME))
6315         {
6316           c_parser_error (parser, "expected identifier");
6317           break;
6318         }
6319       id = c_parser_peek_token (parser)->value;
6320       list = chainon (list, build_tree_list (NULL_TREE, id));
6321       c_parser_consume_token (parser);
6322       if (c_parser_next_token_is (parser, CPP_COMMA))
6323         c_parser_consume_token (parser);
6324       else
6325         break;
6326     }
6327   c_parser_require (parser, CPP_GREATER, "expected %<>%>");
6328   return list;
6329 }
6330
6331 /* Parse an objc-try-catch-statement.
6332
6333    objc-try-catch-statement:
6334      @try compound-statement objc-catch-list[opt]
6335      @try compound-statement objc-catch-list[opt] @finally compound-statement
6336
6337    objc-catch-list:
6338      @catch ( parameter-declaration ) compound-statement
6339      objc-catch-list @catch ( parameter-declaration ) compound-statement
6340 */
6341
6342 static void
6343 c_parser_objc_try_catch_statement (c_parser *parser)
6344 {
6345   location_t loc;
6346   tree stmt;
6347   gcc_assert (c_parser_next_token_is_keyword (parser, RID_TRY));
6348   c_parser_consume_token (parser);
6349   loc = c_parser_peek_token (parser)->location;
6350   stmt = c_parser_compound_statement (parser);
6351   objc_begin_try_stmt (loc, stmt);
6352   while (c_parser_next_token_is_keyword (parser, RID_CATCH))
6353     {
6354       struct c_parm *parm;
6355       c_parser_consume_token (parser);
6356       if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
6357         break;
6358       parm = c_parser_parameter_declaration (parser, NULL_TREE);
6359       if (parm == NULL)
6360         {
6361           c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
6362           break;
6363         }
6364       c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
6365       objc_begin_catch_clause (grokparm (parm));
6366       if (c_parser_require (parser, CPP_OPEN_BRACE, "expected %<{%>"))
6367         c_parser_compound_statement_nostart (parser);
6368       objc_finish_catch_clause ();
6369     }
6370   if (c_parser_next_token_is_keyword (parser, RID_AT_FINALLY))
6371     {
6372       location_t finloc;
6373       tree finstmt;
6374       c_parser_consume_token (parser);
6375       finloc = c_parser_peek_token (parser)->location;
6376       finstmt = c_parser_compound_statement (parser);
6377       objc_build_finally_clause (finloc, finstmt);
6378     }
6379   objc_finish_try_stmt ();
6380 }
6381
6382 /* Parse an objc-synchronized-statement.
6383
6384    objc-synchronized-statement:
6385      @synchronized ( expression ) compound-statement
6386 */
6387
6388 static void
6389 c_parser_objc_synchronized_statement (c_parser *parser)
6390 {
6391   location_t loc;
6392   tree expr, stmt;
6393   gcc_assert (c_parser_next_token_is_keyword (parser, RID_AT_SYNCHRONIZED));
6394   c_parser_consume_token (parser);
6395   loc = c_parser_peek_token (parser)->location;
6396   if (c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
6397     {
6398       expr = c_parser_expression (parser).value;
6399       c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
6400     }
6401   else
6402     expr = error_mark_node;
6403   stmt = c_parser_compound_statement (parser);
6404   objc_build_synchronized (loc, expr, stmt);
6405 }
6406
6407 /* Parse an objc-selector; return NULL_TREE without an error if the
6408    next token is not an objc-selector.
6409
6410    objc-selector:
6411      identifier
6412      one of
6413        enum struct union if else while do for switch case default
6414        break continue return goto asm sizeof typeof __alignof
6415        unsigned long const short volatile signed restrict _Complex
6416        in out inout bycopy byref oneway int char float double void _Bool
6417
6418    ??? Why this selection of keywords but not, for example, storage
6419    class specifiers?  */
6420
6421 static tree
6422 c_parser_objc_selector (c_parser *parser)
6423 {
6424   c_token *token = c_parser_peek_token (parser);
6425   tree value = token->value;
6426   if (token->type == CPP_NAME)
6427     {
6428       c_parser_consume_token (parser);
6429       return value;
6430     }
6431   if (token->type != CPP_KEYWORD)
6432     return NULL_TREE;
6433   switch (token->keyword)
6434     {
6435     case RID_ENUM:
6436     case RID_STRUCT:
6437     case RID_UNION:
6438     case RID_IF:
6439     case RID_ELSE:
6440     case RID_WHILE:
6441     case RID_DO:
6442     case RID_FOR:
6443     case RID_SWITCH:
6444     case RID_CASE:
6445     case RID_DEFAULT:
6446     case RID_BREAK:
6447     case RID_CONTINUE:
6448     case RID_RETURN:
6449     case RID_GOTO:
6450     case RID_ASM:
6451     case RID_SIZEOF:
6452     case RID_TYPEOF:
6453     case RID_ALIGNOF:
6454     case RID_UNSIGNED:
6455     case RID_LONG:
6456     case RID_CONST:
6457     case RID_SHORT:
6458     case RID_VOLATILE:
6459     case RID_SIGNED:
6460     case RID_RESTRICT:
6461     case RID_COMPLEX:
6462     case RID_IN:
6463     case RID_OUT:
6464     case RID_INOUT:
6465     case RID_BYCOPY:
6466     case RID_BYREF:
6467     case RID_ONEWAY:
6468     case RID_INT:
6469     case RID_CHAR:
6470     case RID_FLOAT:
6471     case RID_DOUBLE:
6472     case RID_VOID:
6473     case RID_BOOL:
6474       c_parser_consume_token (parser);
6475       return value;
6476     default:
6477       return NULL_TREE;
6478     }
6479 }
6480
6481 /* Parse an objc-selector-arg.
6482
6483    objc-selector-arg:
6484      objc-selector
6485      objc-keywordname-list
6486
6487    objc-keywordname-list:
6488      objc-keywordname
6489      objc-keywordname-list objc-keywordname
6490
6491    objc-keywordname:
6492      objc-selector :
6493      :
6494 */
6495
6496 static tree
6497 c_parser_objc_selector_arg (c_parser *parser)
6498 {
6499   tree sel = c_parser_objc_selector (parser);
6500   tree list = NULL_TREE;
6501   if (sel && c_parser_next_token_is_not (parser, CPP_COLON))
6502     return sel;
6503   while (true)
6504     {
6505       if (!c_parser_require (parser, CPP_COLON, "expected %<:%>"))
6506         return list;
6507       list = chainon (list, build_tree_list (sel, NULL_TREE));
6508       sel = c_parser_objc_selector (parser);
6509       if (!sel && c_parser_next_token_is_not (parser, CPP_COLON))
6510         break;
6511     }
6512   return list;
6513 }
6514
6515 /* Parse an objc-receiver.
6516
6517    objc-receiver:
6518      expression
6519      class-name
6520      type-name
6521 */
6522
6523 static tree
6524 c_parser_objc_receiver (c_parser *parser)
6525 {
6526   if (c_parser_peek_token (parser)->type == CPP_NAME
6527       && (c_parser_peek_token (parser)->id_kind == C_ID_TYPENAME
6528           || c_parser_peek_token (parser)->id_kind == C_ID_CLASSNAME))
6529     {
6530       tree id = c_parser_peek_token (parser)->value;
6531       c_parser_consume_token (parser);
6532       return objc_get_class_reference (id);
6533     }
6534   return c_parser_expression (parser).value;
6535 }
6536
6537 /* Parse objc-message-args.
6538
6539    objc-message-args:
6540      objc-selector
6541      objc-keywordarg-list
6542
6543    objc-keywordarg-list:
6544      objc-keywordarg
6545      objc-keywordarg-list objc-keywordarg
6546
6547    objc-keywordarg:
6548      objc-selector : objc-keywordexpr
6549      : objc-keywordexpr
6550 */
6551
6552 static tree
6553 c_parser_objc_message_args (c_parser *parser)
6554 {
6555   tree sel = c_parser_objc_selector (parser);
6556   tree list = NULL_TREE;
6557   if (sel && c_parser_next_token_is_not (parser, CPP_COLON))
6558     return sel;
6559   while (true)
6560     {
6561       tree keywordexpr;
6562       if (!c_parser_require (parser, CPP_COLON, "expected %<:%>"))
6563         return list;
6564       keywordexpr = c_parser_objc_keywordexpr (parser);
6565       list = chainon (list, build_tree_list (sel, keywordexpr));
6566       sel = c_parser_objc_selector (parser);
6567       if (!sel && c_parser_next_token_is_not (parser, CPP_COLON))
6568         break;
6569     }
6570   return list;
6571 }
6572
6573 /* Parse an objc-keywordexpr.
6574
6575    objc-keywordexpr:
6576      nonempty-expr-list
6577 */
6578
6579 static tree
6580 c_parser_objc_keywordexpr (c_parser *parser)
6581 {
6582   tree list = c_parser_expr_list (parser, true);
6583   if (TREE_CHAIN (list) == NULL_TREE)
6584     {
6585       /* Just return the expression, remove a level of
6586          indirection.  */
6587       return TREE_VALUE (list);
6588     }
6589   else
6590     {
6591       /* We have a comma expression, we will collapse later.  */
6592       return list;
6593     }
6594 }
6595
6596 \f
6597 /* Handle pragmas.  Some OpenMP pragmas are associated with, and therefore
6598    should be considered, statements.  ALLOW_STMT is true if we're within
6599    the context of a function and such pragmas are to be allowed.  Returns
6600    true if we actually parsed such a pragma.  */
6601
6602 static bool
6603 c_parser_pragma (c_parser *parser, enum pragma_context context)
6604 {
6605   unsigned int id;
6606
6607   id = c_parser_peek_token (parser)->pragma_kind;
6608   gcc_assert (id != PRAGMA_NONE);
6609
6610   switch (id)
6611     {
6612     case PRAGMA_OMP_BARRIER:
6613       if (context != pragma_compound)
6614         {
6615           if (context == pragma_stmt)
6616             c_parser_error (parser, "%<#pragma omp barrier%> may only be "
6617                             "used in compound statements");
6618           goto bad_stmt;
6619         }
6620       c_parser_omp_barrier (parser);
6621       return false;
6622
6623     case PRAGMA_OMP_FLUSH:
6624       if (context != pragma_compound)
6625         {
6626           if (context == pragma_stmt)
6627             c_parser_error (parser, "%<#pragma omp flush%> may only be "
6628                             "used in compound statements");
6629           goto bad_stmt;
6630         }
6631       c_parser_omp_flush (parser);
6632       return false;
6633
6634     case PRAGMA_OMP_TASKWAIT:
6635       if (context != pragma_compound)
6636         {
6637           if (context == pragma_stmt)
6638             c_parser_error (parser, "%<#pragma omp taskwait%> may only be "
6639                             "used in compound statements");
6640           goto bad_stmt;
6641         }
6642       c_parser_omp_taskwait (parser);
6643       return false;
6644
6645     case PRAGMA_OMP_THREADPRIVATE:
6646       c_parser_omp_threadprivate (parser);
6647       return false;
6648
6649     case PRAGMA_OMP_SECTION:
6650       error_at (c_parser_peek_token (parser)->location,
6651                 "%<#pragma omp section%> may only be used in "
6652                 "%<#pragma omp sections%> construct");
6653       c_parser_skip_until_found (parser, CPP_PRAGMA_EOL, NULL);
6654       return false;
6655
6656     case PRAGMA_GCC_PCH_PREPROCESS:
6657       c_parser_error (parser, "%<#pragma GCC pch_preprocess%> must be first");
6658       c_parser_skip_until_found (parser, CPP_PRAGMA_EOL, NULL);
6659       return false;
6660
6661     default:
6662       if (id < PRAGMA_FIRST_EXTERNAL)
6663         {
6664           if (context == pragma_external)
6665             {
6666             bad_stmt:
6667               c_parser_error (parser, "expected declaration specifiers");
6668               c_parser_skip_until_found (parser, CPP_PRAGMA_EOL, NULL);
6669               return false;
6670             }
6671           c_parser_omp_construct (parser);
6672           return true;
6673         }
6674       break;
6675     }
6676
6677   c_parser_consume_pragma (parser);
6678   c_invoke_pragma_handler (id);
6679
6680   /* Skip to EOL, but suppress any error message.  Those will have been 
6681      generated by the handler routine through calling error, as opposed
6682      to calling c_parser_error.  */
6683   parser->error = true;
6684   c_parser_skip_to_pragma_eol (parser);
6685
6686   return false;
6687 }
6688
6689 /* The interface the pragma parsers have to the lexer.  */
6690
6691 enum cpp_ttype
6692 pragma_lex (tree *value)
6693 {
6694   c_token *tok = c_parser_peek_token (the_parser);
6695   enum cpp_ttype ret = tok->type;
6696
6697   *value = tok->value;
6698   if (ret == CPP_PRAGMA_EOL || ret == CPP_EOF)
6699     ret = CPP_EOF;
6700   else
6701     {
6702       if (ret == CPP_KEYWORD)
6703         ret = CPP_NAME;
6704       c_parser_consume_token (the_parser);
6705     }
6706
6707   return ret;
6708 }
6709
6710 static void
6711 c_parser_pragma_pch_preprocess (c_parser *parser)
6712 {
6713   tree name = NULL;
6714
6715   c_parser_consume_pragma (parser);
6716   if (c_parser_next_token_is (parser, CPP_STRING))
6717     {
6718       name = c_parser_peek_token (parser)->value;
6719       c_parser_consume_token (parser);
6720     }
6721   else
6722     c_parser_error (parser, "expected string literal");
6723   c_parser_skip_to_pragma_eol (parser);
6724
6725   if (name)
6726     c_common_pch_pragma (parse_in, TREE_STRING_POINTER (name));
6727 }
6728 \f
6729 /* OpenMP 2.5 parsing routines.  */
6730
6731 /* Returns name of the next clause.
6732    If the clause is not recognized PRAGMA_OMP_CLAUSE_NONE is returned and
6733    the token is not consumed.  Otherwise appropriate pragma_omp_clause is
6734    returned and the token is consumed.  */
6735
6736 static pragma_omp_clause
6737 c_parser_omp_clause_name (c_parser *parser)
6738 {
6739   pragma_omp_clause result = PRAGMA_OMP_CLAUSE_NONE;
6740
6741   if (c_parser_next_token_is_keyword (parser, RID_IF))
6742     result = PRAGMA_OMP_CLAUSE_IF;
6743   else if (c_parser_next_token_is_keyword (parser, RID_DEFAULT))
6744     result = PRAGMA_OMP_CLAUSE_DEFAULT;
6745   else if (c_parser_next_token_is (parser, CPP_NAME))
6746     {
6747       const char *p = IDENTIFIER_POINTER (c_parser_peek_token (parser)->value);
6748
6749       switch (p[0])
6750         {
6751         case 'c':
6752           if (!strcmp ("collapse", p))
6753             result = PRAGMA_OMP_CLAUSE_COLLAPSE;
6754           else if (!strcmp ("copyin", p))
6755             result = PRAGMA_OMP_CLAUSE_COPYIN;
6756           else if (!strcmp ("copyprivate", p))
6757             result = PRAGMA_OMP_CLAUSE_COPYPRIVATE;
6758           break;
6759         case 'f':
6760           if (!strcmp ("firstprivate", p))
6761             result = PRAGMA_OMP_CLAUSE_FIRSTPRIVATE;
6762           break;
6763         case 'l':
6764           if (!strcmp ("lastprivate", p))
6765             result = PRAGMA_OMP_CLAUSE_LASTPRIVATE;
6766           break;
6767         case 'n':
6768           if (!strcmp ("nowait", p))
6769             result = PRAGMA_OMP_CLAUSE_NOWAIT;
6770           else if (!strcmp ("num_threads", p))
6771             result = PRAGMA_OMP_CLAUSE_NUM_THREADS;
6772           break;
6773         case 'o':
6774           if (!strcmp ("ordered", p))
6775             result = PRAGMA_OMP_CLAUSE_ORDERED;
6776           break;
6777         case 'p':
6778           if (!strcmp ("private", p))
6779             result = PRAGMA_OMP_CLAUSE_PRIVATE;
6780           break;
6781         case 'r':
6782           if (!strcmp ("reduction", p))
6783             result = PRAGMA_OMP_CLAUSE_REDUCTION;
6784           break;
6785         case 's':
6786           if (!strcmp ("schedule", p))
6787             result = PRAGMA_OMP_CLAUSE_SCHEDULE;
6788           else if (!strcmp ("shared", p))
6789             result = PRAGMA_OMP_CLAUSE_SHARED;
6790           break;
6791         case 'u':
6792           if (!strcmp ("untied", p))
6793             result = PRAGMA_OMP_CLAUSE_UNTIED;
6794           break;
6795         }
6796     }
6797
6798   if (result != PRAGMA_OMP_CLAUSE_NONE)
6799     c_parser_consume_token (parser);
6800
6801   return result;
6802 }
6803
6804 /* Validate that a clause of the given type does not already exist.  */
6805
6806 static void
6807 check_no_duplicate_clause (tree clauses, enum omp_clause_code code,
6808                            const char *name)
6809 {
6810   tree c;
6811
6812   for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
6813     if (OMP_CLAUSE_CODE (c) == code)
6814       {
6815         error ("too many %qs clauses", name);
6816         break;
6817       }
6818 }
6819
6820 /* OpenMP 2.5:
6821    variable-list:
6822      identifier
6823      variable-list , identifier
6824
6825    If KIND is nonzero, create the appropriate node and install the decl
6826    in OMP_CLAUSE_DECL and add the node to the head of the list.
6827
6828    If KIND is zero, create a TREE_LIST with the decl in TREE_PURPOSE;
6829    return the list created.  */
6830
6831 static tree
6832 c_parser_omp_variable_list (c_parser *parser, enum omp_clause_code kind,
6833                             tree list)
6834 {
6835   if (c_parser_next_token_is_not (parser, CPP_NAME)
6836       || c_parser_peek_token (parser)->id_kind != C_ID_ID)
6837     c_parser_error (parser, "expected identifier");
6838
6839   while (c_parser_next_token_is (parser, CPP_NAME)
6840          && c_parser_peek_token (parser)->id_kind == C_ID_ID)
6841     {
6842       tree t = lookup_name (c_parser_peek_token (parser)->value);
6843
6844       if (t == NULL_TREE)
6845         undeclared_variable (c_parser_peek_token (parser)->value,
6846                              c_parser_peek_token (parser)->location);
6847       else if (t == error_mark_node)
6848         ;
6849       else if (kind != 0)
6850         {
6851           tree u = build_omp_clause (kind);
6852           OMP_CLAUSE_DECL (u) = t;
6853           OMP_CLAUSE_CHAIN (u) = list;
6854           list = u;
6855         }
6856       else
6857         list = tree_cons (t, NULL_TREE, list);
6858
6859       c_parser_consume_token (parser);
6860
6861       if (c_parser_next_token_is_not (parser, CPP_COMMA))
6862         break;
6863
6864       c_parser_consume_token (parser);
6865     }
6866
6867   return list;
6868 }
6869
6870 /* Similarly, but expect leading and trailing parenthesis.  This is a very
6871    common case for omp clauses.  */
6872
6873 static tree
6874 c_parser_omp_var_list_parens (c_parser *parser, enum omp_clause_code kind,
6875                               tree list)
6876 {
6877   if (c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
6878     {
6879       list = c_parser_omp_variable_list (parser, kind, list);
6880       c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
6881     }
6882   return list;
6883 }
6884
6885 /* OpenMP 3.0:
6886    collapse ( constant-expression ) */
6887
6888 static tree
6889 c_parser_omp_clause_collapse (c_parser *parser, tree list)
6890 {
6891   tree c, num = error_mark_node;
6892   HOST_WIDE_INT n;
6893   location_t loc;
6894
6895   check_no_duplicate_clause (list, OMP_CLAUSE_COLLAPSE, "collapse");
6896
6897   loc = c_parser_peek_token (parser)->location;
6898   if (c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
6899     {
6900       num = c_parser_expr_no_commas (parser, NULL).value;
6901       c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
6902     }
6903   if (num == error_mark_node)
6904     return list;
6905   if (!INTEGRAL_TYPE_P (TREE_TYPE (num))
6906       || !host_integerp (num, 0)
6907       || (n = tree_low_cst (num, 0)) <= 0
6908       || (int) n != n)
6909     {
6910       error_at (loc,
6911                 "collapse argument needs positive constant integer expression");
6912       return list;
6913     }
6914   c = build_omp_clause (OMP_CLAUSE_COLLAPSE);
6915   OMP_CLAUSE_COLLAPSE_EXPR (c) = num;
6916   OMP_CLAUSE_CHAIN (c) = list;
6917   return c;
6918 }
6919
6920 /* OpenMP 2.5:
6921    copyin ( variable-list ) */
6922
6923 static tree
6924 c_parser_omp_clause_copyin (c_parser *parser, tree list)
6925 {
6926   return c_parser_omp_var_list_parens (parser, OMP_CLAUSE_COPYIN, list);
6927 }
6928
6929 /* OpenMP 2.5:
6930    copyprivate ( variable-list ) */
6931
6932 static tree
6933 c_parser_omp_clause_copyprivate (c_parser *parser, tree list)
6934 {
6935   return c_parser_omp_var_list_parens (parser, OMP_CLAUSE_COPYPRIVATE, list);
6936 }
6937
6938 /* OpenMP 2.5:
6939    default ( shared | none ) */
6940
6941 static tree
6942 c_parser_omp_clause_default (c_parser *parser, tree list)
6943 {
6944   enum omp_clause_default_kind kind = OMP_CLAUSE_DEFAULT_UNSPECIFIED;
6945   tree c;
6946
6947   if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
6948     return list;
6949   if (c_parser_next_token_is (parser, CPP_NAME))
6950     {
6951       const char *p = IDENTIFIER_POINTER (c_parser_peek_token (parser)->value);
6952
6953       switch (p[0])
6954         {
6955         case 'n':
6956           if (strcmp ("none", p) != 0)
6957             goto invalid_kind;
6958           kind = OMP_CLAUSE_DEFAULT_NONE;
6959           break;
6960
6961         case 's':
6962           if (strcmp ("shared", p) != 0)
6963             goto invalid_kind;
6964           kind = OMP_CLAUSE_DEFAULT_SHARED;
6965           break;
6966
6967         default:
6968           goto invalid_kind;
6969         }
6970
6971       c_parser_consume_token (parser);
6972     }
6973   else
6974     {
6975     invalid_kind:
6976       c_parser_error (parser, "expected %<none%> or %<shared%>");
6977     }
6978   c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
6979
6980   if (kind == OMP_CLAUSE_DEFAULT_UNSPECIFIED)
6981     return list;
6982
6983   check_no_duplicate_clause (list, OMP_CLAUSE_DEFAULT, "default");
6984   c = build_omp_clause (OMP_CLAUSE_DEFAULT);
6985   OMP_CLAUSE_CHAIN (c) = list;
6986   OMP_CLAUSE_DEFAULT_KIND (c) = kind;
6987
6988   return c;
6989 }
6990
6991 /* OpenMP 2.5:
6992    firstprivate ( variable-list ) */
6993
6994 static tree
6995 c_parser_omp_clause_firstprivate (c_parser *parser, tree list)
6996 {
6997   return c_parser_omp_var_list_parens (parser, OMP_CLAUSE_FIRSTPRIVATE, list);
6998 }
6999
7000 /* OpenMP 2.5:
7001    if ( expression ) */
7002
7003 static tree
7004 c_parser_omp_clause_if (c_parser *parser, tree list)
7005 {
7006   if (c_parser_next_token_is (parser, CPP_OPEN_PAREN))
7007     {
7008       tree t = c_parser_paren_condition (parser);
7009       tree c;
7010
7011       check_no_duplicate_clause (list, OMP_CLAUSE_IF, "if");
7012
7013       c = build_omp_clause (OMP_CLAUSE_IF);
7014       OMP_CLAUSE_IF_EXPR (c) = t;
7015       OMP_CLAUSE_CHAIN (c) = list;
7016       list = c;
7017     }
7018   else
7019     c_parser_error (parser, "expected %<(%>");
7020
7021   return list;
7022 }
7023
7024 /* OpenMP 2.5:
7025    lastprivate ( variable-list ) */
7026
7027 static tree
7028 c_parser_omp_clause_lastprivate (c_parser *parser, tree list)
7029 {
7030   return c_parser_omp_var_list_parens (parser, OMP_CLAUSE_LASTPRIVATE, list);
7031 }
7032
7033 /* OpenMP 2.5:
7034    nowait */
7035
7036 static tree
7037 c_parser_omp_clause_nowait (c_parser *parser ATTRIBUTE_UNUSED, tree list)
7038 {
7039   tree c;
7040
7041   check_no_duplicate_clause (list, OMP_CLAUSE_NOWAIT, "nowait");
7042
7043   c = build_omp_clause (OMP_CLAUSE_NOWAIT);
7044   OMP_CLAUSE_CHAIN (c) = list;
7045   return c;
7046 }
7047
7048 /* OpenMP 2.5:
7049    num_threads ( expression ) */
7050
7051 static tree
7052 c_parser_omp_clause_num_threads (c_parser *parser, tree list)
7053 {
7054   if (c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
7055     {
7056       location_t expr_loc = c_parser_peek_token (parser)->location;
7057       tree c, t = c_parser_expression (parser).value;
7058
7059       c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
7060
7061       if (!INTEGRAL_TYPE_P (TREE_TYPE (t)))
7062         {
7063           c_parser_error (parser, "expected integer expression");
7064           return list;
7065         }
7066
7067       /* Attempt to statically determine when the number isn't positive.  */
7068       c = fold_build2 (LE_EXPR, boolean_type_node, t,
7069                        build_int_cst (TREE_TYPE (t), 0));
7070       if (c == boolean_true_node)
7071         {
7072           warning_at (expr_loc, 0,
7073                       "%<num_threads%> value must be positive");
7074           t = integer_one_node;
7075         }
7076
7077       check_no_duplicate_clause (list, OMP_CLAUSE_NUM_THREADS, "num_threads");
7078
7079       c = build_omp_clause (OMP_CLAUSE_NUM_THREADS);
7080       OMP_CLAUSE_NUM_THREADS_EXPR (c) = t;
7081       OMP_CLAUSE_CHAIN (c) = list;
7082       list = c;
7083     }
7084
7085   return list;
7086 }
7087
7088 /* OpenMP 2.5:
7089    ordered */
7090
7091 static tree
7092 c_parser_omp_clause_ordered (c_parser *parser ATTRIBUTE_UNUSED, tree list)
7093 {
7094   tree c;
7095
7096   check_no_duplicate_clause (list, OMP_CLAUSE_ORDERED, "ordered");
7097
7098   c = build_omp_clause (OMP_CLAUSE_ORDERED);
7099   OMP_CLAUSE_CHAIN (c) = list;
7100   return c;
7101 }
7102
7103 /* OpenMP 2.5:
7104    private ( variable-list ) */
7105
7106 static tree
7107 c_parser_omp_clause_private (c_parser *parser, tree list)
7108 {
7109   return c_parser_omp_var_list_parens (parser, OMP_CLAUSE_PRIVATE, list);
7110 }
7111
7112 /* OpenMP 2.5:
7113    reduction ( reduction-operator : variable-list )
7114
7115    reduction-operator:
7116      One of: + * - & ^ | && || */
7117
7118 static tree
7119 c_parser_omp_clause_reduction (c_parser *parser, tree list)
7120 {
7121   if (c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
7122     {
7123       enum tree_code code;
7124
7125       switch (c_parser_peek_token (parser)->type)
7126         {
7127         case CPP_PLUS:
7128           code = PLUS_EXPR;
7129           break;
7130         case CPP_MULT:
7131           code = MULT_EXPR;
7132           break;
7133         case CPP_MINUS:
7134           code = MINUS_EXPR;
7135           break;
7136         case CPP_AND:
7137           code = BIT_AND_EXPR;
7138           break;
7139         case CPP_XOR:
7140           code = BIT_XOR_EXPR;
7141           break;
7142         case CPP_OR:
7143           code = BIT_IOR_EXPR;
7144           break;
7145         case CPP_AND_AND:
7146           code = TRUTH_ANDIF_EXPR;
7147           break;
7148         case CPP_OR_OR:
7149           code = TRUTH_ORIF_EXPR;
7150           break;
7151         default:
7152           c_parser_error (parser,
7153                           "expected %<+%>, %<*%>, %<-%>, %<&%>, "
7154                           "%<^%>, %<|%>, %<&&%>, or %<||%>");
7155           c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, 0);
7156           return list;
7157         }
7158       c_parser_consume_token (parser);
7159       if (c_parser_require (parser, CPP_COLON, "expected %<:%>"))
7160         {
7161           tree nl, c;
7162
7163           nl = c_parser_omp_variable_list (parser, OMP_CLAUSE_REDUCTION, list);
7164           for (c = nl; c != list; c = OMP_CLAUSE_CHAIN (c))
7165             OMP_CLAUSE_REDUCTION_CODE (c) = code;
7166
7167           list = nl;
7168         }
7169       c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
7170     }
7171   return list;
7172 }
7173
7174 /* OpenMP 2.5:
7175    schedule ( schedule-kind )
7176    schedule ( schedule-kind , expression )
7177
7178    schedule-kind:
7179      static | dynamic | guided | runtime | auto
7180 */
7181
7182 static tree
7183 c_parser_omp_clause_schedule (c_parser *parser, tree list)
7184 {
7185   tree c, t;
7186
7187   if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
7188     return list;
7189
7190   c = build_omp_clause (OMP_CLAUSE_SCHEDULE);
7191
7192   if (c_parser_next_token_is (parser, CPP_NAME))
7193     {
7194       tree kind = c_parser_peek_token (parser)->value;
7195       const char *p = IDENTIFIER_POINTER (kind);
7196
7197       switch (p[0])
7198         {
7199         case 'd':
7200           if (strcmp ("dynamic", p) != 0)
7201             goto invalid_kind;
7202           OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_DYNAMIC;
7203           break;
7204
7205         case 'g':
7206           if (strcmp ("guided", p) != 0)
7207             goto invalid_kind;
7208           OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_GUIDED;
7209           break;
7210
7211         case 'r':
7212           if (strcmp ("runtime", p) != 0)
7213             goto invalid_kind;
7214           OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_RUNTIME;
7215           break;
7216
7217         default:
7218           goto invalid_kind;
7219         }
7220     }
7221   else if (c_parser_next_token_is_keyword (parser, RID_STATIC))
7222     OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_STATIC;
7223   else if (c_parser_next_token_is_keyword (parser, RID_AUTO))
7224     OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_AUTO;
7225   else
7226     goto invalid_kind;
7227
7228   c_parser_consume_token (parser);
7229   if (c_parser_next_token_is (parser, CPP_COMMA))
7230     {
7231       location_t here;
7232       c_parser_consume_token (parser);
7233
7234       here = c_parser_peek_token (parser)->location;
7235       t = c_parser_expr_no_commas (parser, NULL).value;
7236
7237       if (OMP_CLAUSE_SCHEDULE_KIND (c) == OMP_CLAUSE_SCHEDULE_RUNTIME)
7238         error_at (here, "schedule %<runtime%> does not take "
7239                   "a %<chunk_size%> parameter");
7240       else if (OMP_CLAUSE_SCHEDULE_KIND (c) == OMP_CLAUSE_SCHEDULE_AUTO)
7241         error_at (here,
7242                   "schedule %<auto%> does not take "
7243                   "a %<chunk_size%> parameter");
7244       else if (TREE_CODE (TREE_TYPE (t)) == INTEGER_TYPE)
7245         OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c) = t;
7246       else
7247         c_parser_error (parser, "expected integer expression");
7248
7249       c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
7250     }
7251   else
7252     c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
7253                                "expected %<,%> or %<)%>");
7254
7255   check_no_duplicate_clause (list, OMP_CLAUSE_SCHEDULE, "schedule");
7256   OMP_CLAUSE_CHAIN (c) = list;
7257   return c;
7258
7259  invalid_kind:
7260   c_parser_error (parser, "invalid schedule kind");
7261   c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, 0);
7262   return list;
7263 }
7264
7265 /* OpenMP 2.5:
7266    shared ( variable-list ) */
7267
7268 static tree
7269 c_parser_omp_clause_shared (c_parser *parser, tree list)
7270 {
7271   return c_parser_omp_var_list_parens (parser, OMP_CLAUSE_SHARED, list);
7272 }
7273
7274 /* OpenMP 3.0:
7275    untied */
7276
7277 static tree
7278 c_parser_omp_clause_untied (c_parser *parser ATTRIBUTE_UNUSED, tree list)
7279 {
7280   tree c;
7281
7282   /* FIXME: Should we allow duplicates?  */
7283   check_no_duplicate_clause (list, OMP_CLAUSE_UNTIED, "untied");
7284
7285   c = build_omp_clause (OMP_CLAUSE_UNTIED);
7286   OMP_CLAUSE_CHAIN (c) = list;
7287   return c;
7288 }
7289
7290 /* Parse all OpenMP clauses.  The set clauses allowed by the directive
7291    is a bitmask in MASK.  Return the list of clauses found; the result
7292    of clause default goes in *pdefault.  */
7293
7294 static tree
7295 c_parser_omp_all_clauses (c_parser *parser, unsigned int mask,
7296                           const char *where)
7297 {
7298   tree clauses = NULL;
7299   bool first = true;
7300
7301   while (c_parser_next_token_is_not (parser, CPP_PRAGMA_EOL))
7302     {
7303       location_t here;
7304       pragma_omp_clause c_kind;
7305       const char *c_name;
7306       tree prev = clauses;
7307
7308       if (!first && c_parser_next_token_is (parser, CPP_COMMA))
7309         c_parser_consume_token (parser);
7310
7311       first = false;
7312       here = c_parser_peek_token (parser)->location;
7313       c_kind = c_parser_omp_clause_name (parser);
7314
7315       switch (c_kind)
7316         {
7317         case PRAGMA_OMP_CLAUSE_COLLAPSE:
7318           clauses = c_parser_omp_clause_collapse (parser, clauses);
7319           c_name = "collapse";
7320           break;
7321         case PRAGMA_OMP_CLAUSE_COPYIN:
7322           clauses = c_parser_omp_clause_copyin (parser, clauses);
7323           c_name = "copyin";
7324           break;
7325         case PRAGMA_OMP_CLAUSE_COPYPRIVATE:
7326           clauses = c_parser_omp_clause_copyprivate (parser, clauses);
7327           c_name = "copyprivate";
7328           break;
7329         case PRAGMA_OMP_CLAUSE_DEFAULT:
7330           clauses = c_parser_omp_clause_default (parser, clauses);
7331           c_name = "default";
7332           break;
7333         case PRAGMA_OMP_CLAUSE_FIRSTPRIVATE:
7334           clauses = c_parser_omp_clause_firstprivate (parser, clauses);
7335           c_name = "firstprivate";
7336           break;
7337         case PRAGMA_OMP_CLAUSE_IF:
7338           clauses = c_parser_omp_clause_if (parser, clauses);
7339           c_name = "if";
7340           break;
7341         case PRAGMA_OMP_CLAUSE_LASTPRIVATE:
7342           clauses = c_parser_omp_clause_lastprivate (parser, clauses);
7343           c_name = "lastprivate";
7344           break;
7345         case PRAGMA_OMP_CLAUSE_NOWAIT:
7346           clauses = c_parser_omp_clause_nowait (parser, clauses);
7347           c_name = "nowait";
7348           break;
7349         case PRAGMA_OMP_CLAUSE_NUM_THREADS:
7350           clauses = c_parser_omp_clause_num_threads (parser, clauses);
7351           c_name = "num_threads";
7352           break;
7353         case PRAGMA_OMP_CLAUSE_ORDERED:
7354           clauses = c_parser_omp_clause_ordered (parser, clauses);
7355           c_name = "ordered";
7356           break;
7357         case PRAGMA_OMP_CLAUSE_PRIVATE:
7358           clauses = c_parser_omp_clause_private (parser, clauses);
7359           c_name = "private";
7360           break;
7361         case PRAGMA_OMP_CLAUSE_REDUCTION:
7362           clauses = c_parser_omp_clause_reduction (parser, clauses);
7363           c_name = "reduction";
7364           break;
7365         case PRAGMA_OMP_CLAUSE_SCHEDULE:
7366           clauses = c_parser_omp_clause_schedule (parser, clauses);
7367           c_name = "schedule";
7368           break;
7369         case PRAGMA_OMP_CLAUSE_SHARED:
7370           clauses = c_parser_omp_clause_shared (parser, clauses);
7371           c_name = "shared";
7372           break;
7373         case PRAGMA_OMP_CLAUSE_UNTIED:
7374           clauses = c_parser_omp_clause_untied (parser, clauses);
7375           c_name = "untied";
7376           break;
7377         default:
7378           c_parser_error (parser, "expected %<#pragma omp%> clause");
7379           goto saw_error;
7380         }
7381
7382       if (((mask >> c_kind) & 1) == 0 && !parser->error)
7383         {
7384           /* Remove the invalid clause(s) from the list to avoid
7385              confusing the rest of the compiler.  */
7386           clauses = prev;
7387           error_at (here, "%qs is not valid for %qs", c_name, where);
7388         }
7389     }
7390
7391  saw_error:
7392   c_parser_skip_to_pragma_eol (parser);
7393
7394   return c_finish_omp_clauses (clauses);
7395 }
7396
7397 /* OpenMP 2.5:
7398    structured-block:
7399      statement
7400
7401    In practice, we're also interested in adding the statement to an
7402    outer node.  So it is convenient if we work around the fact that
7403    c_parser_statement calls add_stmt.  */
7404
7405 static tree
7406 c_parser_omp_structured_block (c_parser *parser)
7407 {
7408   tree stmt = push_stmt_list ();
7409   c_parser_statement (parser);
7410   return pop_stmt_list (stmt);
7411 }
7412
7413 /* OpenMP 2.5:
7414    # pragma omp atomic new-line
7415      expression-stmt
7416
7417    expression-stmt:
7418      x binop= expr | x++ | ++x | x-- | --x
7419    binop:
7420      +, *, -, /, &, ^, |, <<, >>
7421
7422   where x is an lvalue expression with scalar type.  */
7423
7424 static void
7425 c_parser_omp_atomic (c_parser *parser)
7426 {
7427   tree lhs, rhs;
7428   tree stmt;
7429   enum tree_code code;
7430   struct c_expr rhs_expr;
7431
7432   c_parser_skip_to_pragma_eol (parser);
7433
7434   lhs = c_parser_unary_expression (parser).value;
7435   switch (TREE_CODE (lhs))
7436     {
7437     case ERROR_MARK:
7438     saw_error:
7439       c_parser_skip_to_end_of_block_or_statement (parser);
7440       return;
7441
7442     case PREINCREMENT_EXPR:
7443     case POSTINCREMENT_EXPR:
7444       lhs = TREE_OPERAND (lhs, 0);
7445       code = PLUS_EXPR;
7446       rhs = integer_one_node;
7447       break;
7448
7449     case PREDECREMENT_EXPR:
7450     case POSTDECREMENT_EXPR:
7451       lhs = TREE_OPERAND (lhs, 0);
7452       code = MINUS_EXPR;
7453       rhs = integer_one_node;
7454       break;
7455
7456     default:
7457       switch (c_parser_peek_token (parser)->type)
7458         {
7459         case CPP_MULT_EQ:
7460           code = MULT_EXPR;
7461           break;
7462         case CPP_DIV_EQ:
7463           code = TRUNC_DIV_EXPR;
7464           break;
7465         case CPP_PLUS_EQ:
7466           code = PLUS_EXPR;
7467           break;
7468         case CPP_MINUS_EQ:
7469           code = MINUS_EXPR;
7470           break;
7471         case CPP_LSHIFT_EQ:
7472           code = LSHIFT_EXPR;
7473           break;
7474         case CPP_RSHIFT_EQ:
7475           code = RSHIFT_EXPR;
7476           break;
7477         case CPP_AND_EQ:
7478           code = BIT_AND_EXPR;
7479           break;
7480         case CPP_OR_EQ:
7481           code = BIT_IOR_EXPR;
7482           break;
7483         case CPP_XOR_EQ:
7484           code = BIT_XOR_EXPR;
7485           break;
7486         default:
7487           c_parser_error (parser,
7488                           "invalid operator for %<#pragma omp atomic%>");
7489           goto saw_error;
7490         }
7491
7492       c_parser_consume_token (parser);
7493       rhs_expr = c_parser_expression (parser);
7494       rhs_expr = default_function_array_conversion (rhs_expr);
7495       rhs = rhs_expr.value;
7496       break;
7497     }
7498   stmt = c_finish_omp_atomic (code, lhs, rhs);
7499   if (stmt != error_mark_node)
7500     add_stmt (stmt);
7501   c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
7502 }
7503
7504
7505 /* OpenMP 2.5:
7506    # pragma omp barrier new-line
7507 */
7508
7509 static void
7510 c_parser_omp_barrier (c_parser *parser)
7511 {
7512   c_parser_consume_pragma (parser);
7513   c_parser_skip_to_pragma_eol (parser);
7514
7515   c_finish_omp_barrier ();
7516 }
7517
7518 /* OpenMP 2.5:
7519    # pragma omp critical [(name)] new-line
7520      structured-block
7521 */
7522
7523 static tree
7524 c_parser_omp_critical (c_parser *parser)
7525 {
7526   tree stmt, name = NULL;
7527
7528   if (c_parser_next_token_is (parser, CPP_OPEN_PAREN))
7529     {
7530       c_parser_consume_token (parser);
7531       if (c_parser_next_token_is (parser, CPP_NAME))
7532         {
7533           name = c_parser_peek_token (parser)->value;
7534           c_parser_consume_token (parser);
7535           c_parser_require (parser, CPP_CLOSE_PAREN, "expected %<)%>");
7536         }
7537       else
7538         c_parser_error (parser, "expected identifier");
7539     }
7540   else if (c_parser_next_token_is_not (parser, CPP_PRAGMA_EOL))
7541     c_parser_error (parser, "expected %<(%> or end of line");
7542   c_parser_skip_to_pragma_eol (parser);
7543
7544   stmt = c_parser_omp_structured_block (parser);
7545   return c_finish_omp_critical (stmt, name);
7546 }
7547
7548 /* OpenMP 2.5:
7549    # pragma omp flush flush-vars[opt] new-line
7550
7551    flush-vars:
7552      ( variable-list ) */
7553
7554 static void
7555 c_parser_omp_flush (c_parser *parser)
7556 {
7557   c_parser_consume_pragma (parser);
7558   if (c_parser_next_token_is (parser, CPP_OPEN_PAREN))
7559     c_parser_omp_var_list_parens (parser, OMP_CLAUSE_ERROR, NULL);
7560   else if (c_parser_next_token_is_not (parser, CPP_PRAGMA_EOL))
7561     c_parser_error (parser, "expected %<(%> or end of line");
7562   c_parser_skip_to_pragma_eol (parser);
7563
7564   c_finish_omp_flush ();
7565 }
7566
7567 /* Parse the restricted form of the for statement allowed by OpenMP.
7568    The real trick here is to determine the loop control variable early
7569    so that we can push a new decl if necessary to make it private.  */
7570
7571 static tree
7572 c_parser_omp_for_loop (c_parser *parser, tree clauses, tree *par_clauses)
7573 {
7574   tree decl, cond, incr, save_break, save_cont, body, init, stmt, cl;
7575   tree declv, condv, incrv, initv, for_block = NULL, ret = NULL;
7576   location_t loc;
7577   bool fail = false, open_brace_parsed = false;
7578   int i, collapse = 1, nbraces = 0;
7579
7580   for (cl = clauses; cl; cl = OMP_CLAUSE_CHAIN (cl))
7581     if (OMP_CLAUSE_CODE (cl) == OMP_CLAUSE_COLLAPSE)
7582       collapse = tree_low_cst (OMP_CLAUSE_COLLAPSE_EXPR (cl), 0);
7583
7584   gcc_assert (collapse >= 1);
7585
7586   declv = make_tree_vec (collapse);
7587   initv = make_tree_vec (collapse);
7588   condv = make_tree_vec (collapse);
7589   incrv = make_tree_vec (collapse);
7590
7591   if (!c_parser_next_token_is_keyword (parser, RID_FOR))
7592     {
7593       c_parser_error (parser, "for statement expected");
7594       return NULL;
7595     }
7596   loc = c_parser_peek_token (parser)->location;
7597   c_parser_consume_token (parser);
7598
7599   for (i = 0; i < collapse; i++)
7600     {
7601       int bracecount = 0;
7602
7603       if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
7604         goto pop_scopes;
7605
7606       /* Parse the initialization declaration or expression.  */
7607       if (c_parser_next_token_starts_declspecs (parser))
7608         {
7609           if (i > 0)
7610             for_block
7611               = tree_cons (NULL, c_begin_compound_stmt (true), for_block);
7612           c_parser_declaration_or_fndef (parser, true, true, true, true);
7613           decl = check_for_loop_decls ();
7614           if (decl == NULL)
7615             goto error_init;
7616           if (DECL_INITIAL (decl) == error_mark_node)
7617             decl = error_mark_node;
7618           init = decl;
7619         }
7620       else if (c_parser_next_token_is (parser, CPP_NAME)
7621                && c_parser_peek_2nd_token (parser)->type == CPP_EQ)
7622         {
7623           struct c_expr init_exp;
7624           location_t init_loc;
7625
7626           decl = c_parser_postfix_expression (parser).value;
7627
7628           c_parser_require (parser, CPP_EQ, "expected %<=%>");
7629           init_loc = c_parser_peek_token (parser)->location;
7630
7631           init_exp = c_parser_expr_no_commas (parser, NULL);
7632           init_exp = default_function_array_conversion (init_exp);
7633           init = build_modify_expr (init_loc,
7634                                     decl, NOP_EXPR, init_exp.value);
7635           init = c_process_expr_stmt (init);
7636
7637           c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
7638         }
7639       else
7640         {
7641         error_init:
7642           c_parser_error (parser,
7643                           "expected iteration declaration or initialization");
7644           c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
7645                                      "expected %<)%>");
7646           fail = true;
7647           goto parse_next;
7648         }
7649
7650       /* Parse the loop condition.  */
7651       cond = NULL_TREE;
7652       if (c_parser_next_token_is_not (parser, CPP_SEMICOLON))
7653         {
7654           location_t cond_loc = c_parser_peek_token (parser)->location;
7655
7656           cond = c_parser_expression_conv (parser).value;
7657           cond = c_objc_common_truthvalue_conversion (cond_loc, cond);
7658           protected_set_expr_location (cond, cond_loc);
7659         }
7660       c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
7661
7662       /* Parse the increment expression.  */
7663       incr = NULL_TREE;
7664       if (c_parser_next_token_is_not (parser, CPP_CLOSE_PAREN))
7665         {
7666           location_t incr_loc = c_parser_peek_token (parser)->location;
7667
7668           incr = c_process_expr_stmt (c_parser_expression (parser).value);
7669           protected_set_expr_location (incr, incr_loc);
7670         }
7671       c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
7672
7673       if (decl == NULL || decl == error_mark_node || init == error_mark_node)
7674         fail = true;
7675       else
7676         {
7677           TREE_VEC_ELT (declv, i) = decl;
7678           TREE_VEC_ELT (initv, i) = init;
7679           TREE_VEC_ELT (condv, i) = cond;
7680           TREE_VEC_ELT (incrv, i) = incr;
7681         }
7682
7683     parse_next:
7684       if (i == collapse - 1)
7685         break;
7686
7687       /* FIXME: OpenMP 3.0 draft isn't very clear on what exactly is allowed
7688          in between the collapsed for loops to be still considered perfectly
7689          nested.  Hopefully the final version clarifies this.
7690          For now handle (multiple) {'s and empty statements.  */
7691       do
7692         {
7693           if (c_parser_next_token_is_keyword (parser, RID_FOR))
7694             {
7695               c_parser_consume_token (parser);
7696               break;
7697             }
7698           else if (c_parser_next_token_is (parser, CPP_OPEN_BRACE))
7699             {
7700               c_parser_consume_token (parser);
7701               bracecount++;
7702             }
7703           else if (bracecount
7704                    && c_parser_next_token_is (parser, CPP_SEMICOLON))
7705             c_parser_consume_token (parser);
7706           else
7707             {
7708               c_parser_error (parser, "not enough perfectly nested loops");
7709               if (bracecount)
7710                 {
7711                   open_brace_parsed = true;
7712                   bracecount--;
7713                 }
7714               fail = true;
7715               collapse = 0;
7716               break;
7717             }
7718         }
7719       while (1);
7720
7721       nbraces += bracecount;
7722     }
7723
7724   save_break = c_break_label;
7725   c_break_label = size_one_node;
7726   save_cont = c_cont_label;
7727   c_cont_label = NULL_TREE;
7728   body = push_stmt_list ();
7729
7730   if (open_brace_parsed)
7731     {
7732       stmt = c_begin_compound_stmt (true);
7733       c_parser_compound_statement_nostart (parser);
7734       add_stmt (c_end_compound_stmt (stmt, true));
7735     }
7736   else
7737     add_stmt (c_parser_c99_block_statement (parser));
7738   if (c_cont_label)
7739     add_stmt (build1 (LABEL_EXPR, void_type_node, c_cont_label));
7740
7741   body = pop_stmt_list (body);
7742   c_break_label = save_break;
7743   c_cont_label = save_cont;
7744
7745   while (nbraces)
7746     {
7747       if (c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
7748         {
7749           c_parser_consume_token (parser);
7750           nbraces--;
7751         }
7752       else if (c_parser_next_token_is (parser, CPP_SEMICOLON))
7753         c_parser_consume_token (parser);
7754       else
7755         {
7756           c_parser_error (parser, "collapsed loops not perfectly nested");
7757           while (nbraces)
7758             {
7759               stmt = c_begin_compound_stmt (true);
7760               add_stmt (body);
7761               c_parser_compound_statement_nostart (parser);
7762               body = c_end_compound_stmt (stmt, true);
7763               nbraces--;
7764             }
7765           goto pop_scopes;
7766         }
7767     }
7768
7769   /* Only bother calling c_finish_omp_for if we haven't already generated
7770      an error from the initialization parsing.  */
7771   if (!fail)
7772     {
7773       stmt = c_finish_omp_for (loc, declv, initv, condv, incrv, body, NULL);
7774       if (stmt)
7775         {
7776           if (par_clauses != NULL)
7777             {
7778               tree *c;
7779               for (c = par_clauses; *c ; )
7780                 if (OMP_CLAUSE_CODE (*c) != OMP_CLAUSE_FIRSTPRIVATE
7781                     && OMP_CLAUSE_CODE (*c) != OMP_CLAUSE_LASTPRIVATE)
7782                   c = &OMP_CLAUSE_CHAIN (*c);
7783                 else
7784                   {
7785                     for (i = 0; i < collapse; i++)
7786                       if (TREE_VEC_ELT (declv, i) == OMP_CLAUSE_DECL (*c))
7787                         break;
7788                     if (i == collapse)
7789                       c = &OMP_CLAUSE_CHAIN (*c);
7790                     else if (OMP_CLAUSE_CODE (*c) == OMP_CLAUSE_FIRSTPRIVATE)
7791                       {
7792                         error_at (loc,
7793                                   "iteration variable %qD should not be firstprivate",
7794                                   OMP_CLAUSE_DECL (*c));
7795                         *c = OMP_CLAUSE_CHAIN (*c);
7796                       }
7797                     else
7798                       {
7799                         /* Copy lastprivate (decl) clause to OMP_FOR_CLAUSES,
7800                            change it to shared (decl) in
7801                            OMP_PARALLEL_CLAUSES.  */
7802                         tree l = build_omp_clause (OMP_CLAUSE_LASTPRIVATE);
7803                         OMP_CLAUSE_DECL (l) = OMP_CLAUSE_DECL (*c);
7804                         OMP_CLAUSE_CHAIN (l) = clauses;
7805                         clauses = l;
7806                         OMP_CLAUSE_SET_CODE (*c, OMP_CLAUSE_SHARED);
7807                       }
7808                   }
7809             }
7810           OMP_FOR_CLAUSES (stmt) = clauses;
7811         }
7812       ret = stmt;
7813     }
7814 pop_scopes:
7815   while (for_block)
7816     {
7817       stmt = c_end_compound_stmt (TREE_VALUE (for_block), true);
7818       add_stmt (stmt);
7819       for_block = TREE_CHAIN (for_block);
7820     }
7821   return ret;
7822 }
7823
7824 /* OpenMP 2.5:
7825    #pragma omp for for-clause[optseq] new-line
7826      for-loop
7827 */
7828
7829 #define OMP_FOR_CLAUSE_MASK                             \
7830         ( (1u << PRAGMA_OMP_CLAUSE_PRIVATE)             \
7831         | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE)        \
7832         | (1u << PRAGMA_OMP_CLAUSE_LASTPRIVATE)         \
7833         | (1u << PRAGMA_OMP_CLAUSE_REDUCTION)           \
7834         | (1u << PRAGMA_OMP_CLAUSE_ORDERED)             \
7835         | (1u << PRAGMA_OMP_CLAUSE_SCHEDULE)            \
7836         | (1u << PRAGMA_OMP_CLAUSE_COLLAPSE)            \
7837         | (1u << PRAGMA_OMP_CLAUSE_NOWAIT))
7838
7839 static tree
7840 c_parser_omp_for (c_parser *parser)
7841 {
7842   tree block, clauses, ret;
7843
7844   clauses = c_parser_omp_all_clauses (parser, OMP_FOR_CLAUSE_MASK,
7845                                       "#pragma omp for");
7846
7847   block = c_begin_compound_stmt (true);
7848   ret = c_parser_omp_for_loop (parser, clauses, NULL);
7849   block = c_end_compound_stmt (block, true);
7850   add_stmt (block);
7851
7852   return ret;
7853 }
7854
7855 /* OpenMP 2.5:
7856    # pragma omp master new-line
7857      structured-block
7858 */
7859
7860 static tree
7861 c_parser_omp_master (c_parser *parser)
7862 {
7863   c_parser_skip_to_pragma_eol (parser);
7864   return c_finish_omp_master (c_parser_omp_structured_block (parser));
7865 }
7866
7867 /* OpenMP 2.5:
7868    # pragma omp ordered new-line
7869      structured-block
7870 */
7871
7872 static tree
7873 c_parser_omp_ordered (c_parser *parser)
7874 {
7875   c_parser_skip_to_pragma_eol (parser);
7876   return c_finish_omp_ordered (c_parser_omp_structured_block (parser));
7877 }
7878
7879 /* OpenMP 2.5:
7880
7881    section-scope:
7882      { section-sequence }
7883
7884    section-sequence:
7885      section-directive[opt] structured-block
7886      section-sequence section-directive structured-block  */
7887
7888 static tree
7889 c_parser_omp_sections_scope (c_parser *parser)
7890 {
7891   tree stmt, substmt;
7892   bool error_suppress = false;
7893   location_t loc;
7894
7895   if (!c_parser_require (parser, CPP_OPEN_BRACE, "expected %<{%>"))
7896     {
7897       /* Avoid skipping until the end of the block.  */
7898       parser->error = false;
7899       return NULL_TREE;
7900     }
7901
7902   stmt = push_stmt_list ();
7903
7904   loc = c_parser_peek_token (parser)->location;
7905   if (c_parser_peek_token (parser)->pragma_kind != PRAGMA_OMP_SECTION)
7906     {
7907       substmt = push_stmt_list ();
7908
7909       while (1)
7910         {
7911           c_parser_statement (parser);
7912
7913           if (c_parser_peek_token (parser)->pragma_kind == PRAGMA_OMP_SECTION)
7914             break;
7915           if (c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
7916             break;
7917           if (c_parser_next_token_is (parser, CPP_EOF))
7918             break;
7919         }
7920
7921       substmt = pop_stmt_list (substmt);
7922       substmt = build1 (OMP_SECTION, void_type_node, substmt);
7923       SET_EXPR_LOCATION (substmt, loc);
7924       add_stmt (substmt);
7925     }
7926
7927   while (1)
7928     {
7929       if (c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
7930         break;
7931       if (c_parser_next_token_is (parser, CPP_EOF))
7932         break;
7933
7934       loc = c_parser_peek_token (parser)->location;
7935       if (c_parser_peek_token (parser)->pragma_kind == PRAGMA_OMP_SECTION)
7936         {
7937           c_parser_consume_pragma (parser);
7938           c_parser_skip_to_pragma_eol (parser);
7939           error_suppress = false;
7940         }
7941       else if (!error_suppress)
7942         {
7943           error_at (loc, "expected %<#pragma omp section%> or %<}%>");
7944           error_suppress = true;
7945         }
7946
7947       substmt = c_parser_omp_structured_block (parser);
7948       substmt = build1 (OMP_SECTION, void_type_node, substmt);
7949       SET_EXPR_LOCATION (substmt, loc);
7950       add_stmt (substmt);
7951     }
7952   c_parser_skip_until_found (parser, CPP_CLOSE_BRACE,
7953                              "expected %<#pragma omp section%> or %<}%>");
7954
7955   substmt = pop_stmt_list (stmt);
7956
7957   stmt = make_node (OMP_SECTIONS);
7958   TREE_TYPE (stmt) = void_type_node;
7959   OMP_SECTIONS_BODY (stmt) = substmt;
7960
7961   return add_stmt (stmt);
7962 }
7963
7964 /* OpenMP 2.5:
7965    # pragma omp sections sections-clause[optseq] newline
7966      sections-scope
7967 */
7968
7969 #define OMP_SECTIONS_CLAUSE_MASK                        \
7970         ( (1u << PRAGMA_OMP_CLAUSE_PRIVATE)             \
7971         | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE)        \
7972         | (1u << PRAGMA_OMP_CLAUSE_LASTPRIVATE)         \
7973         | (1u << PRAGMA_OMP_CLAUSE_REDUCTION)           \
7974         | (1u << PRAGMA_OMP_CLAUSE_NOWAIT))
7975
7976 static tree
7977 c_parser_omp_sections (c_parser *parser)
7978 {
7979   tree block, clauses, ret;
7980
7981   clauses = c_parser_omp_all_clauses (parser, OMP_SECTIONS_CLAUSE_MASK,
7982                                       "#pragma omp sections");
7983
7984   block = c_begin_compound_stmt (true);
7985   ret = c_parser_omp_sections_scope (parser);
7986   if (ret)
7987     OMP_SECTIONS_CLAUSES (ret) = clauses;
7988   block = c_end_compound_stmt (block, true);
7989   add_stmt (block);
7990
7991   return ret;
7992 }
7993
7994 /* OpenMP 2.5:
7995    # pragma parallel parallel-clause new-line
7996    # pragma parallel for parallel-for-clause new-line
7997    # pragma parallel sections parallel-sections-clause new-line
7998 */
7999
8000 #define OMP_PARALLEL_CLAUSE_MASK                        \
8001         ( (1u << PRAGMA_OMP_CLAUSE_IF)                  \
8002         | (1u << PRAGMA_OMP_CLAUSE_PRIVATE)             \
8003         | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE)        \
8004         | (1u << PRAGMA_OMP_CLAUSE_DEFAULT)             \
8005         | (1u << PRAGMA_OMP_CLAUSE_SHARED)              \
8006         | (1u << PRAGMA_OMP_CLAUSE_COPYIN)              \
8007         | (1u << PRAGMA_OMP_CLAUSE_REDUCTION)           \
8008         | (1u << PRAGMA_OMP_CLAUSE_NUM_THREADS))
8009
8010 static tree
8011 c_parser_omp_parallel (c_parser *parser)
8012 {
8013   enum pragma_kind p_kind = PRAGMA_OMP_PARALLEL;
8014   const char *p_name = "#pragma omp parallel";
8015   tree stmt, clauses, par_clause, ws_clause, block;
8016   unsigned int mask = OMP_PARALLEL_CLAUSE_MASK;
8017
8018   if (c_parser_next_token_is_keyword (parser, RID_FOR))
8019     {
8020       c_parser_consume_token (parser);
8021       p_kind = PRAGMA_OMP_PARALLEL_FOR;
8022       p_name = "#pragma omp parallel for";
8023       mask |= OMP_FOR_CLAUSE_MASK;
8024       mask &= ~(1u << PRAGMA_OMP_CLAUSE_NOWAIT);
8025     }
8026   else if (c_parser_next_token_is (parser, CPP_NAME))
8027     {
8028       const char *p = IDENTIFIER_POINTER (c_parser_peek_token (parser)->value);
8029       if (strcmp (p, "sections") == 0)
8030         {
8031           c_parser_consume_token (parser);
8032           p_kind = PRAGMA_OMP_PARALLEL_SECTIONS;
8033           p_name = "#pragma omp parallel sections";
8034           mask |= OMP_SECTIONS_CLAUSE_MASK;
8035           mask &= ~(1u << PRAGMA_OMP_CLAUSE_NOWAIT);
8036         }
8037     }
8038
8039   clauses = c_parser_omp_all_clauses (parser, mask, p_name);
8040
8041   switch (p_kind)
8042     {
8043     case PRAGMA_OMP_PARALLEL:
8044       block = c_begin_omp_parallel ();
8045       c_parser_statement (parser);
8046       stmt = c_finish_omp_parallel (clauses, block);
8047       break;
8048
8049     case PRAGMA_OMP_PARALLEL_FOR:
8050       block = c_begin_omp_parallel ();
8051       c_split_parallel_clauses (clauses, &par_clause, &ws_clause);
8052       c_parser_omp_for_loop (parser, ws_clause, &par_clause);
8053       stmt = c_finish_omp_parallel (par_clause, block);
8054       OMP_PARALLEL_COMBINED (stmt) = 1;
8055       break;
8056
8057     case PRAGMA_OMP_PARALLEL_SECTIONS:
8058       block = c_begin_omp_parallel ();
8059       c_split_parallel_clauses (clauses, &par_clause, &ws_clause);
8060       stmt = c_parser_omp_sections_scope (parser);
8061       if (stmt)
8062         OMP_SECTIONS_CLAUSES (stmt) = ws_clause;
8063       stmt = c_finish_omp_parallel (par_clause, block);
8064       OMP_PARALLEL_COMBINED (stmt) = 1;
8065       break;
8066
8067     default:
8068       gcc_unreachable ();
8069     }
8070
8071   return stmt;
8072 }
8073
8074 /* OpenMP 2.5:
8075    # pragma omp single single-clause[optseq] new-line
8076      structured-block
8077 */
8078
8079 #define OMP_SINGLE_CLAUSE_MASK                          \
8080         ( (1u << PRAGMA_OMP_CLAUSE_PRIVATE)             \
8081         | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE)        \
8082         | (1u << PRAGMA_OMP_CLAUSE_COPYPRIVATE)         \
8083         | (1u << PRAGMA_OMP_CLAUSE_NOWAIT))
8084
8085 static tree
8086 c_parser_omp_single (c_parser *parser)
8087 {
8088   tree stmt = make_node (OMP_SINGLE);
8089   TREE_TYPE (stmt) = void_type_node;
8090
8091   OMP_SINGLE_CLAUSES (stmt)
8092     = c_parser_omp_all_clauses (parser, OMP_SINGLE_CLAUSE_MASK,
8093                                 "#pragma omp single");
8094   OMP_SINGLE_BODY (stmt) = c_parser_omp_structured_block (parser);
8095
8096   return add_stmt (stmt);
8097 }
8098
8099 /* OpenMP 3.0:
8100    # pragma omp task task-clause[optseq] new-line
8101 */
8102
8103 #define OMP_TASK_CLAUSE_MASK                            \
8104         ( (1u << PRAGMA_OMP_CLAUSE_IF)                  \
8105         | (1u << PRAGMA_OMP_CLAUSE_UNTIED)              \
8106         | (1u << PRAGMA_OMP_CLAUSE_DEFAULT)             \
8107         | (1u << PRAGMA_OMP_CLAUSE_PRIVATE)             \
8108         | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE)        \
8109         | (1u << PRAGMA_OMP_CLAUSE_SHARED))
8110
8111 static tree
8112 c_parser_omp_task (c_parser *parser)
8113 {
8114   tree clauses, block;
8115
8116   clauses = c_parser_omp_all_clauses (parser, OMP_TASK_CLAUSE_MASK,
8117                                       "#pragma omp task");
8118
8119   block = c_begin_omp_task ();
8120   c_parser_statement (parser);
8121   return c_finish_omp_task (clauses, block);
8122 }
8123
8124 /* OpenMP 3.0:
8125    # pragma omp taskwait new-line
8126 */
8127
8128 static void
8129 c_parser_omp_taskwait (c_parser *parser)
8130 {
8131   c_parser_consume_pragma (parser);
8132   c_parser_skip_to_pragma_eol (parser);
8133
8134   c_finish_omp_taskwait ();
8135 }
8136
8137 /* Main entry point to parsing most OpenMP pragmas.  */
8138
8139 static void
8140 c_parser_omp_construct (c_parser *parser)
8141 {
8142   enum pragma_kind p_kind;
8143   location_t loc;
8144   tree stmt;
8145
8146   loc = c_parser_peek_token (parser)->location;
8147   p_kind = c_parser_peek_token (parser)->pragma_kind;
8148   c_parser_consume_pragma (parser);
8149
8150   /* For all constructs below except #pragma omp atomic
8151      MUST_NOT_THROW catch handlers are needed when exceptions
8152      are enabled.  */
8153   if (p_kind != PRAGMA_OMP_ATOMIC)
8154     c_maybe_initialize_eh ();
8155
8156   switch (p_kind)
8157     {
8158     case PRAGMA_OMP_ATOMIC:
8159       c_parser_omp_atomic (parser);
8160       return;
8161     case PRAGMA_OMP_CRITICAL:
8162       stmt = c_parser_omp_critical (parser);
8163       break;
8164     case PRAGMA_OMP_FOR:
8165       stmt = c_parser_omp_for (parser);
8166       break;
8167     case PRAGMA_OMP_MASTER:
8168       stmt = c_parser_omp_master (parser);
8169       break;
8170     case PRAGMA_OMP_ORDERED:
8171       stmt = c_parser_omp_ordered (parser);
8172       break;
8173     case PRAGMA_OMP_PARALLEL:
8174       stmt = c_parser_omp_parallel (parser);
8175       break;
8176     case PRAGMA_OMP_SECTIONS:
8177       stmt = c_parser_omp_sections (parser);
8178       break;
8179     case PRAGMA_OMP_SINGLE:
8180       stmt = c_parser_omp_single (parser);
8181       break;
8182     case PRAGMA_OMP_TASK:
8183       stmt = c_parser_omp_task (parser);
8184       break;
8185     default:
8186       gcc_unreachable ();
8187     }
8188
8189   if (stmt)
8190     SET_EXPR_LOCATION (stmt, loc);
8191 }
8192
8193
8194 /* OpenMP 2.5:
8195    # pragma omp threadprivate (variable-list) */
8196
8197 static void
8198 c_parser_omp_threadprivate (c_parser *parser)
8199 {
8200   tree vars, t;
8201
8202   c_parser_consume_pragma (parser);
8203   vars = c_parser_omp_var_list_parens (parser, OMP_CLAUSE_ERROR, NULL);
8204
8205   /* Mark every variable in VARS to be assigned thread local storage.  */
8206   for (t = vars; t; t = TREE_CHAIN (t))
8207     {
8208       tree v = TREE_PURPOSE (t);
8209
8210       /* If V had already been marked threadprivate, it doesn't matter
8211          whether it had been used prior to this point.  */
8212       if (TREE_CODE (v) != VAR_DECL)
8213         error ("%qD is not a variable", v);
8214       else if (TREE_USED (v) && !C_DECL_THREADPRIVATE_P (v))
8215         error ("%qE declared %<threadprivate%> after first use", v);
8216       else if (! TREE_STATIC (v) && ! DECL_EXTERNAL (v))
8217         error ("automatic variable %qE cannot be %<threadprivate%>", v);
8218       else if (TREE_TYPE (v) == error_mark_node)
8219         ;
8220       else if (! COMPLETE_TYPE_P (TREE_TYPE (v)))
8221         error ("%<threadprivate%> %qE has incomplete type", v);
8222       else
8223         {
8224           if (! DECL_THREAD_LOCAL_P (v))
8225             {
8226               DECL_TLS_MODEL (v) = decl_default_tls_model (v);
8227               /* If rtl has been already set for this var, call
8228                  make_decl_rtl once again, so that encode_section_info
8229                  has a chance to look at the new decl flags.  */
8230               if (DECL_RTL_SET_P (v))
8231                 make_decl_rtl (v);
8232             }
8233           C_DECL_THREADPRIVATE_P (v) = 1;
8234         }
8235     }
8236
8237   c_parser_skip_to_pragma_eol (parser);
8238 }
8239
8240 \f
8241 /* Parse a single source file.  */
8242
8243 void
8244 c_parse_file (void)
8245 {
8246   /* Use local storage to begin.  If the first token is a pragma, parse it.
8247      If it is #pragma GCC pch_preprocess, then this will load a PCH file
8248      which will cause garbage collection.  */
8249   c_parser tparser;
8250
8251   memset (&tparser, 0, sizeof tparser);
8252   the_parser = &tparser;
8253
8254   if (c_parser_peek_token (&tparser)->pragma_kind == PRAGMA_GCC_PCH_PREPROCESS)
8255     c_parser_pragma_pch_preprocess (&tparser);
8256
8257   the_parser = GGC_NEW (c_parser);
8258   *the_parser = tparser;
8259
8260   c_parser_translation_unit (the_parser);
8261   the_parser = NULL;
8262 }
8263
8264 #include "gt-c-parser.h"