svn merge -r 216846:217483 svn+ssh://gcc.gnu.org/svn/gcc/trunk
[official-gcc.git] / gcc / c / c-parser.c
blobb1df18cc370e3ab084e7a69879d5e3565293fb3b
1 /* Parser for C and Objective-C.
2 Copyright (C) 1987-2014 Free Software Foundation, Inc.
4 Parser actions based on the old Bison parser; structure somewhat
5 influenced by and fragments based on the C++ parser.
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 3, or (at your option) any later
12 version.
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
23 /* TODO:
25 Make sure all relevant comments, and all relevant code from all
26 actions, brought over from old parser. Verify exact correspondence
27 of syntax accepted.
29 Add testcases covering every input symbol in every state in old and
30 new parsers.
32 Include full syntax for GNU C, including erroneous cases accepted
33 with error messages, in syntax productions in comments.
35 Make more diagnostics in the front end generally take an explicit
36 location rather than implicitly using input_location. */
38 #include "config.h"
39 #include "system.h"
40 #include "coretypes.h"
41 #include "tm.h" /* For rtl.h: needs enum reg_class. */
42 #include "tree.h"
43 #include "stringpool.h"
44 #include "attribs.h"
45 #include "stor-layout.h"
46 #include "varasm.h"
47 #include "trans-mem.h"
48 #include "langhooks.h"
49 #include "input.h"
50 #include "cpplib.h"
51 #include "timevar.h"
52 #include "c-family/c-pragma.h"
53 #include "c-tree.h"
54 #include "c-lang.h"
55 #include "flags.h"
56 #include "ggc.h"
57 #include "c-family/c-common.h"
58 #include "c-family/c-objc.h"
59 #include "vec.h"
60 #include "target.h"
61 #include "hash-map.h"
62 #include "is-a.h"
63 #include "plugin-api.h"
64 #include "hashtab.h"
65 #include "hash-set.h"
66 #include "machmode.h"
67 #include "hard-reg-set.h"
68 #include "function.h"
69 #include "ipa-ref.h"
70 #include "cgraph.h"
71 #include "plugin.h"
72 #include "omp-low.h"
73 #include "builtins.h"
76 /* Initialization routine for this file. */
78 void
79 c_parse_init (void)
81 /* The only initialization required is of the reserved word
82 identifiers. */
83 unsigned int i;
84 tree id;
85 int mask = 0;
87 /* Make sure RID_MAX hasn't grown past the 8 bits used to hold the keyword in
88 the c_token structure. */
89 gcc_assert (RID_MAX <= 255);
91 mask |= D_CXXONLY;
92 if (!flag_isoc99)
93 mask |= D_C99;
94 if (flag_no_asm)
96 mask |= D_ASM | D_EXT;
97 if (!flag_isoc99)
98 mask |= D_EXT89;
100 if (!c_dialect_objc ())
101 mask |= D_OBJC | D_CXX_OBJC;
103 ridpointers = ggc_cleared_vec_alloc<tree> ((int) RID_MAX);
104 for (i = 0; i < num_c_common_reswords; i++)
106 /* If a keyword is disabled, do not enter it into the table
107 and so create a canonical spelling that isn't a keyword. */
108 if (c_common_reswords[i].disable & mask)
110 if (warn_cxx_compat
111 && (c_common_reswords[i].disable & D_CXXWARN))
113 id = get_identifier (c_common_reswords[i].word);
114 C_SET_RID_CODE (id, RID_CXX_COMPAT_WARN);
115 C_IS_RESERVED_WORD (id) = 1;
117 continue;
120 id = get_identifier (c_common_reswords[i].word);
121 C_SET_RID_CODE (id, c_common_reswords[i].rid);
122 C_IS_RESERVED_WORD (id) = 1;
123 ridpointers [(int) c_common_reswords[i].rid] = id;
126 for (i = 0; i < NUM_INT_N_ENTS; i++)
128 /* We always create the symbols but they aren't always supported. */
129 char name[50];
130 sprintf (name, "__int%d", int_n_data[i].bitsize);
131 id = get_identifier (xstrdup (name));
132 C_SET_RID_CODE (id, RID_FIRST_INT_N + i);
133 C_IS_RESERVED_WORD (id) = 1;
137 /* The C lexer intermediates between the lexer in cpplib and c-lex.c
138 and the C parser. Unlike the C++ lexer, the parser structure
139 stores the lexer information instead of using a separate structure.
140 Identifiers are separated into ordinary identifiers, type names,
141 keywords and some other Objective-C types of identifiers, and some
142 look-ahead is maintained.
144 ??? It might be a good idea to lex the whole file up front (as for
145 C++). It would then be possible to share more of the C and C++
146 lexer code, if desired. */
148 /* More information about the type of a CPP_NAME token. */
149 typedef enum c_id_kind {
150 /* An ordinary identifier. */
151 C_ID_ID,
152 /* An identifier declared as a typedef name. */
153 C_ID_TYPENAME,
154 /* An identifier declared as an Objective-C class name. */
155 C_ID_CLASSNAME,
156 /* An address space identifier. */
157 C_ID_ADDRSPACE,
158 /* Not an identifier. */
159 C_ID_NONE
160 } c_id_kind;
162 /* A single C token after string literal concatenation and conversion
163 of preprocessing tokens to tokens. */
164 typedef struct GTY (()) c_token {
165 /* The kind of token. */
166 ENUM_BITFIELD (cpp_ttype) type : 8;
167 /* If this token is a CPP_NAME, this value indicates whether also
168 declared as some kind of type. Otherwise, it is C_ID_NONE. */
169 ENUM_BITFIELD (c_id_kind) id_kind : 8;
170 /* If this token is a keyword, this value indicates which keyword.
171 Otherwise, this value is RID_MAX. */
172 ENUM_BITFIELD (rid) keyword : 8;
173 /* If this token is a CPP_PRAGMA, this indicates the pragma that
174 was seen. Otherwise it is PRAGMA_NONE. */
175 ENUM_BITFIELD (pragma_kind) pragma_kind : 8;
176 /* The location at which this token was found. */
177 location_t location;
178 /* The value associated with this token, if any. */
179 tree value;
180 } c_token;
182 /* A parser structure recording information about the state and
183 context of parsing. Includes lexer information with up to two
184 tokens of look-ahead; more are not needed for C. */
185 typedef struct GTY(()) c_parser {
186 /* The look-ahead tokens. */
187 c_token * GTY((skip)) tokens;
188 /* Buffer for look-ahead tokens. */
189 c_token tokens_buf[2];
190 /* How many look-ahead tokens are available (0, 1 or 2, or
191 more if parsing from pre-lexed tokens). */
192 unsigned int tokens_avail;
193 /* True if a syntax error is being recovered from; false otherwise.
194 c_parser_error sets this flag. It should clear this flag when
195 enough tokens have been consumed to recover from the error. */
196 BOOL_BITFIELD error : 1;
197 /* True if we're processing a pragma, and shouldn't automatically
198 consume CPP_PRAGMA_EOL. */
199 BOOL_BITFIELD in_pragma : 1;
200 /* True if we're parsing the outermost block of an if statement. */
201 BOOL_BITFIELD in_if_block : 1;
202 /* True if we want to lex an untranslated string. */
203 BOOL_BITFIELD lex_untranslated_string : 1;
205 /* Objective-C specific parser/lexer information. */
207 /* True if we are in a context where the Objective-C "PQ" keywords
208 are considered keywords. */
209 BOOL_BITFIELD objc_pq_context : 1;
210 /* True if we are parsing a (potential) Objective-C foreach
211 statement. This is set to true after we parsed 'for (' and while
212 we wait for 'in' or ';' to decide if it's a standard C for loop or an
213 Objective-C foreach loop. */
214 BOOL_BITFIELD objc_could_be_foreach_context : 1;
215 /* The following flag is needed to contextualize Objective-C lexical
216 analysis. In some cases (e.g., 'int NSObject;'), it is
217 undesirable to bind an identifier to an Objective-C class, even
218 if a class with that name exists. */
219 BOOL_BITFIELD objc_need_raw_identifier : 1;
220 /* Nonzero if we're processing a __transaction statement. The value
221 is 1 | TM_STMT_ATTR_*. */
222 unsigned int in_transaction : 4;
223 /* True if we are in a context where the Objective-C "Property attribute"
224 keywords are valid. */
225 BOOL_BITFIELD objc_property_attr_context : 1;
227 /* Cilk Plus specific parser/lexer information. */
229 /* Buffer to hold all the tokens from parsing the vector attribute for the
230 SIMD-enabled functions (formerly known as elemental functions). */
231 vec <c_token, va_gc> *cilk_simd_fn_tokens;
232 } c_parser;
235 /* The actual parser and external interface. ??? Does this need to be
236 garbage-collected? */
238 static GTY (()) c_parser *the_parser;
240 /* Read in and lex a single token, storing it in *TOKEN. */
242 static void
243 c_lex_one_token (c_parser *parser, c_token *token)
245 timevar_push (TV_LEX);
247 token->type = c_lex_with_flags (&token->value, &token->location, NULL,
248 (parser->lex_untranslated_string
249 ? C_LEX_STRING_NO_TRANSLATE : 0));
250 token->id_kind = C_ID_NONE;
251 token->keyword = RID_MAX;
252 token->pragma_kind = PRAGMA_NONE;
254 switch (token->type)
256 case CPP_NAME:
258 tree decl;
260 bool objc_force_identifier = parser->objc_need_raw_identifier;
261 if (c_dialect_objc ())
262 parser->objc_need_raw_identifier = false;
264 if (C_IS_RESERVED_WORD (token->value))
266 enum rid rid_code = C_RID_CODE (token->value);
268 if (rid_code == RID_CXX_COMPAT_WARN)
270 warning_at (token->location,
271 OPT_Wc___compat,
272 "identifier %qE conflicts with C++ keyword",
273 token->value);
275 else if (rid_code >= RID_FIRST_ADDR_SPACE
276 && rid_code <= RID_LAST_ADDR_SPACE)
278 token->id_kind = C_ID_ADDRSPACE;
279 token->keyword = rid_code;
280 break;
282 else if (c_dialect_objc () && OBJC_IS_PQ_KEYWORD (rid_code))
284 /* We found an Objective-C "pq" keyword (in, out,
285 inout, bycopy, byref, oneway). They need special
286 care because the interpretation depends on the
287 context. */
288 if (parser->objc_pq_context)
290 token->type = CPP_KEYWORD;
291 token->keyword = rid_code;
292 break;
294 else if (parser->objc_could_be_foreach_context
295 && rid_code == RID_IN)
297 /* We are in Objective-C, inside a (potential)
298 foreach context (which means after having
299 parsed 'for (', but before having parsed ';'),
300 and we found 'in'. We consider it the keyword
301 which terminates the declaration at the
302 beginning of a foreach-statement. Note that
303 this means you can't use 'in' for anything else
304 in that context; in particular, in Objective-C
305 you can't use 'in' as the name of the running
306 variable in a C for loop. We could potentially
307 try to add code here to disambiguate, but it
308 seems a reasonable limitation. */
309 token->type = CPP_KEYWORD;
310 token->keyword = rid_code;
311 break;
313 /* Else, "pq" keywords outside of the "pq" context are
314 not keywords, and we fall through to the code for
315 normal tokens. */
317 else if (c_dialect_objc () && OBJC_IS_PATTR_KEYWORD (rid_code))
319 /* We found an Objective-C "property attribute"
320 keyword (getter, setter, readonly, etc). These are
321 only valid in the property context. */
322 if (parser->objc_property_attr_context)
324 token->type = CPP_KEYWORD;
325 token->keyword = rid_code;
326 break;
328 /* Else they are not special keywords.
331 else if (c_dialect_objc ()
332 && (OBJC_IS_AT_KEYWORD (rid_code)
333 || OBJC_IS_CXX_KEYWORD (rid_code)))
335 /* We found one of the Objective-C "@" keywords (defs,
336 selector, synchronized, etc) or one of the
337 Objective-C "cxx" keywords (class, private,
338 protected, public, try, catch, throw) without a
339 preceding '@' sign. Do nothing and fall through to
340 the code for normal tokens (in C++ we would still
341 consider the CXX ones keywords, but not in C). */
344 else
346 token->type = CPP_KEYWORD;
347 token->keyword = rid_code;
348 break;
352 decl = lookup_name (token->value);
353 if (decl)
355 if (TREE_CODE (decl) == TYPE_DECL)
357 token->id_kind = C_ID_TYPENAME;
358 break;
361 else if (c_dialect_objc ())
363 tree objc_interface_decl = objc_is_class_name (token->value);
364 /* Objective-C class names are in the same namespace as
365 variables and typedefs, and hence are shadowed by local
366 declarations. */
367 if (objc_interface_decl
368 && (!objc_force_identifier || global_bindings_p ()))
370 token->value = objc_interface_decl;
371 token->id_kind = C_ID_CLASSNAME;
372 break;
375 token->id_kind = C_ID_ID;
377 break;
378 case CPP_AT_NAME:
379 /* This only happens in Objective-C; it must be a keyword. */
380 token->type = CPP_KEYWORD;
381 switch (C_RID_CODE (token->value))
383 /* Replace 'class' with '@class', 'private' with '@private',
384 etc. This prevents confusion with the C++ keyword
385 'class', and makes the tokens consistent with other
386 Objective-C 'AT' keywords. For example '@class' is
387 reported as RID_AT_CLASS which is consistent with
388 '@synchronized', which is reported as
389 RID_AT_SYNCHRONIZED.
391 case RID_CLASS: token->keyword = RID_AT_CLASS; break;
392 case RID_PRIVATE: token->keyword = RID_AT_PRIVATE; break;
393 case RID_PROTECTED: token->keyword = RID_AT_PROTECTED; break;
394 case RID_PUBLIC: token->keyword = RID_AT_PUBLIC; break;
395 case RID_THROW: token->keyword = RID_AT_THROW; break;
396 case RID_TRY: token->keyword = RID_AT_TRY; break;
397 case RID_CATCH: token->keyword = RID_AT_CATCH; break;
398 default: token->keyword = C_RID_CODE (token->value);
400 break;
401 case CPP_COLON:
402 case CPP_COMMA:
403 case CPP_CLOSE_PAREN:
404 case CPP_SEMICOLON:
405 /* These tokens may affect the interpretation of any identifiers
406 following, if doing Objective-C. */
407 if (c_dialect_objc ())
408 parser->objc_need_raw_identifier = false;
409 break;
410 case CPP_PRAGMA:
411 /* We smuggled the cpp_token->u.pragma value in an INTEGER_CST. */
412 token->pragma_kind = (enum pragma_kind) TREE_INT_CST_LOW (token->value);
413 token->value = NULL;
414 break;
415 default:
416 break;
418 timevar_pop (TV_LEX);
421 /* Return a pointer to the next token from PARSER, reading it in if
422 necessary. */
424 static inline c_token *
425 c_parser_peek_token (c_parser *parser)
427 if (parser->tokens_avail == 0)
429 c_lex_one_token (parser, &parser->tokens[0]);
430 parser->tokens_avail = 1;
432 return &parser->tokens[0];
435 /* Return true if the next token from PARSER has the indicated
436 TYPE. */
438 static inline bool
439 c_parser_next_token_is (c_parser *parser, enum cpp_ttype type)
441 return c_parser_peek_token (parser)->type == type;
444 /* Return true if the next token from PARSER does not have the
445 indicated TYPE. */
447 static inline bool
448 c_parser_next_token_is_not (c_parser *parser, enum cpp_ttype type)
450 return !c_parser_next_token_is (parser, type);
453 /* Return true if the next token from PARSER is the indicated
454 KEYWORD. */
456 static inline bool
457 c_parser_next_token_is_keyword (c_parser *parser, enum rid keyword)
459 return c_parser_peek_token (parser)->keyword == keyword;
462 /* Return a pointer to the next-but-one token from PARSER, reading it
463 in if necessary. The next token is already read in. */
465 static c_token *
466 c_parser_peek_2nd_token (c_parser *parser)
468 if (parser->tokens_avail >= 2)
469 return &parser->tokens[1];
470 gcc_assert (parser->tokens_avail == 1);
471 gcc_assert (parser->tokens[0].type != CPP_EOF);
472 gcc_assert (parser->tokens[0].type != CPP_PRAGMA_EOL);
473 c_lex_one_token (parser, &parser->tokens[1]);
474 parser->tokens_avail = 2;
475 return &parser->tokens[1];
478 /* Return true if TOKEN can start a type name,
479 false otherwise. */
480 static bool
481 c_token_starts_typename (c_token *token)
483 switch (token->type)
485 case CPP_NAME:
486 switch (token->id_kind)
488 case C_ID_ID:
489 return false;
490 case C_ID_ADDRSPACE:
491 return true;
492 case C_ID_TYPENAME:
493 return true;
494 case C_ID_CLASSNAME:
495 gcc_assert (c_dialect_objc ());
496 return true;
497 default:
498 gcc_unreachable ();
500 case CPP_KEYWORD:
501 switch (token->keyword)
503 case RID_UNSIGNED:
504 case RID_LONG:
505 case RID_SHORT:
506 case RID_SIGNED:
507 case RID_COMPLEX:
508 case RID_INT:
509 case RID_CHAR:
510 case RID_FLOAT:
511 case RID_DOUBLE:
512 case RID_VOID:
513 case RID_DFLOAT32:
514 case RID_DFLOAT64:
515 case RID_DFLOAT128:
516 case RID_BOOL:
517 case RID_ENUM:
518 case RID_STRUCT:
519 case RID_UNION:
520 case RID_TYPEOF:
521 case RID_CONST:
522 case RID_ATOMIC:
523 case RID_VOLATILE:
524 case RID_RESTRICT:
525 case RID_ATTRIBUTE:
526 case RID_FRACT:
527 case RID_ACCUM:
528 case RID_SAT:
529 case RID_AUTO_TYPE:
530 return true;
531 default:
532 if (token->keyword >= RID_FIRST_INT_N
533 && token->keyword < RID_FIRST_INT_N + NUM_INT_N_ENTS
534 && int_n_enabled_p[token->keyword - RID_FIRST_INT_N])
535 return true;
536 return false;
538 case CPP_LESS:
539 if (c_dialect_objc ())
540 return true;
541 return false;
542 default:
543 return false;
547 enum c_lookahead_kind {
548 /* Always treat unknown identifiers as typenames. */
549 cla_prefer_type,
551 /* Could be parsing a nonabstract declarator. Only treat an identifier
552 as a typename if followed by another identifier or a star. */
553 cla_nonabstract_decl,
555 /* Never treat identifiers as typenames. */
556 cla_prefer_id
559 /* Return true if the next token from PARSER can start a type name,
560 false otherwise. LA specifies how to do lookahead in order to
561 detect unknown type names. If unsure, pick CLA_PREFER_ID. */
563 static inline bool
564 c_parser_next_tokens_start_typename (c_parser *parser, enum c_lookahead_kind la)
566 c_token *token = c_parser_peek_token (parser);
567 if (c_token_starts_typename (token))
568 return true;
570 /* Try a bit harder to detect an unknown typename. */
571 if (la != cla_prefer_id
572 && token->type == CPP_NAME
573 && token->id_kind == C_ID_ID
575 /* Do not try too hard when we could have "object in array". */
576 && !parser->objc_could_be_foreach_context
578 && (la == cla_prefer_type
579 || c_parser_peek_2nd_token (parser)->type == CPP_NAME
580 || c_parser_peek_2nd_token (parser)->type == CPP_MULT)
582 /* Only unknown identifiers. */
583 && !lookup_name (token->value))
584 return true;
586 return false;
589 /* Return true if TOKEN is a type qualifier, false otherwise. */
590 static bool
591 c_token_is_qualifier (c_token *token)
593 switch (token->type)
595 case CPP_NAME:
596 switch (token->id_kind)
598 case C_ID_ADDRSPACE:
599 return true;
600 default:
601 return false;
603 case CPP_KEYWORD:
604 switch (token->keyword)
606 case RID_CONST:
607 case RID_VOLATILE:
608 case RID_RESTRICT:
609 case RID_ATTRIBUTE:
610 case RID_ATOMIC:
611 return true;
612 default:
613 return false;
615 case CPP_LESS:
616 return false;
617 default:
618 gcc_unreachable ();
622 /* Return true if the next token from PARSER is a type qualifier,
623 false otherwise. */
624 static inline bool
625 c_parser_next_token_is_qualifier (c_parser *parser)
627 c_token *token = c_parser_peek_token (parser);
628 return c_token_is_qualifier (token);
631 /* Return true if TOKEN can start declaration specifiers, false
632 otherwise. */
633 static bool
634 c_token_starts_declspecs (c_token *token)
636 switch (token->type)
638 case CPP_NAME:
639 switch (token->id_kind)
641 case C_ID_ID:
642 return false;
643 case C_ID_ADDRSPACE:
644 return true;
645 case C_ID_TYPENAME:
646 return true;
647 case C_ID_CLASSNAME:
648 gcc_assert (c_dialect_objc ());
649 return true;
650 default:
651 gcc_unreachable ();
653 case CPP_KEYWORD:
654 switch (token->keyword)
656 case RID_STATIC:
657 case RID_EXTERN:
658 case RID_REGISTER:
659 case RID_TYPEDEF:
660 case RID_INLINE:
661 case RID_NORETURN:
662 case RID_AUTO:
663 case RID_THREAD:
664 case RID_UNSIGNED:
665 case RID_LONG:
666 case RID_SHORT:
667 case RID_SIGNED:
668 case RID_COMPLEX:
669 case RID_INT:
670 case RID_CHAR:
671 case RID_FLOAT:
672 case RID_DOUBLE:
673 case RID_VOID:
674 case RID_DFLOAT32:
675 case RID_DFLOAT64:
676 case RID_DFLOAT128:
677 case RID_BOOL:
678 case RID_ENUM:
679 case RID_STRUCT:
680 case RID_UNION:
681 case RID_TYPEOF:
682 case RID_CONST:
683 case RID_VOLATILE:
684 case RID_RESTRICT:
685 case RID_ATTRIBUTE:
686 case RID_FRACT:
687 case RID_ACCUM:
688 case RID_SAT:
689 case RID_ALIGNAS:
690 case RID_ATOMIC:
691 case RID_AUTO_TYPE:
692 return true;
693 default:
694 if (token->keyword >= RID_FIRST_INT_N
695 && token->keyword < RID_FIRST_INT_N + NUM_INT_N_ENTS
696 && int_n_enabled_p[token->keyword - RID_FIRST_INT_N])
697 return true;
698 return false;
700 case CPP_LESS:
701 if (c_dialect_objc ())
702 return true;
703 return false;
704 default:
705 return false;
710 /* Return true if TOKEN can start declaration specifiers or a static
711 assertion, false otherwise. */
712 static bool
713 c_token_starts_declaration (c_token *token)
715 if (c_token_starts_declspecs (token)
716 || token->keyword == RID_STATIC_ASSERT)
717 return true;
718 else
719 return false;
722 /* Return true if the next token from PARSER can start declaration
723 specifiers, false otherwise. */
724 static inline bool
725 c_parser_next_token_starts_declspecs (c_parser *parser)
727 c_token *token = c_parser_peek_token (parser);
729 /* In Objective-C, a classname normally starts a declspecs unless it
730 is immediately followed by a dot. In that case, it is the
731 Objective-C 2.0 "dot-syntax" for class objects, ie, calls the
732 setter/getter on the class. c_token_starts_declspecs() can't
733 differentiate between the two cases because it only checks the
734 current token, so we have a special check here. */
735 if (c_dialect_objc ()
736 && token->type == CPP_NAME
737 && token->id_kind == C_ID_CLASSNAME
738 && c_parser_peek_2nd_token (parser)->type == CPP_DOT)
739 return false;
741 return c_token_starts_declspecs (token);
744 /* Return true if the next tokens from PARSER can start declaration
745 specifiers or a static assertion, false otherwise. */
746 static inline bool
747 c_parser_next_tokens_start_declaration (c_parser *parser)
749 c_token *token = c_parser_peek_token (parser);
751 /* Same as above. */
752 if (c_dialect_objc ()
753 && token->type == CPP_NAME
754 && token->id_kind == C_ID_CLASSNAME
755 && c_parser_peek_2nd_token (parser)->type == CPP_DOT)
756 return false;
758 /* Labels do not start declarations. */
759 if (token->type == CPP_NAME
760 && c_parser_peek_2nd_token (parser)->type == CPP_COLON)
761 return false;
763 if (c_token_starts_declaration (token))
764 return true;
766 if (c_parser_next_tokens_start_typename (parser, cla_nonabstract_decl))
767 return true;
769 return false;
772 /* Consume the next token from PARSER. */
774 static void
775 c_parser_consume_token (c_parser *parser)
777 gcc_assert (parser->tokens_avail >= 1);
778 gcc_assert (parser->tokens[0].type != CPP_EOF);
779 gcc_assert (!parser->in_pragma || parser->tokens[0].type != CPP_PRAGMA_EOL);
780 gcc_assert (parser->error || parser->tokens[0].type != CPP_PRAGMA);
781 if (parser->tokens != &parser->tokens_buf[0])
782 parser->tokens++;
783 else if (parser->tokens_avail == 2)
784 parser->tokens[0] = parser->tokens[1];
785 parser->tokens_avail--;
788 /* Expect the current token to be a #pragma. Consume it and remember
789 that we've begun parsing a pragma. */
791 static void
792 c_parser_consume_pragma (c_parser *parser)
794 gcc_assert (!parser->in_pragma);
795 gcc_assert (parser->tokens_avail >= 1);
796 gcc_assert (parser->tokens[0].type == CPP_PRAGMA);
797 if (parser->tokens != &parser->tokens_buf[0])
798 parser->tokens++;
799 else if (parser->tokens_avail == 2)
800 parser->tokens[0] = parser->tokens[1];
801 parser->tokens_avail--;
802 parser->in_pragma = true;
805 /* Update the global input_location from TOKEN. */
806 static inline void
807 c_parser_set_source_position_from_token (c_token *token)
809 if (token->type != CPP_EOF)
811 input_location = token->location;
815 /* Issue a diagnostic of the form
816 FILE:LINE: MESSAGE before TOKEN
817 where TOKEN is the next token in the input stream of PARSER.
818 MESSAGE (specified by the caller) is usually of the form "expected
819 OTHER-TOKEN".
821 Do not issue a diagnostic if still recovering from an error.
823 ??? This is taken from the C++ parser, but building up messages in
824 this way is not i18n-friendly and some other approach should be
825 used. */
827 static void
828 c_parser_error (c_parser *parser, const char *gmsgid)
830 c_token *token = c_parser_peek_token (parser);
831 if (parser->error)
832 return;
833 parser->error = true;
834 if (!gmsgid)
835 return;
836 /* This diagnostic makes more sense if it is tagged to the line of
837 the token we just peeked at. */
838 c_parser_set_source_position_from_token (token);
839 c_parse_error (gmsgid,
840 /* Because c_parse_error does not understand
841 CPP_KEYWORD, keywords are treated like
842 identifiers. */
843 (token->type == CPP_KEYWORD ? CPP_NAME : token->type),
844 /* ??? The C parser does not save the cpp flags of a
845 token, we need to pass 0 here and we will not get
846 the source spelling of some tokens but rather the
847 canonical spelling. */
848 token->value, /*flags=*/0);
851 /* If the next token is of the indicated TYPE, consume it. Otherwise,
852 issue the error MSGID. If MSGID is NULL then a message has already
853 been produced and no message will be produced this time. Returns
854 true if found, false otherwise. */
856 static bool
857 c_parser_require (c_parser *parser,
858 enum cpp_ttype type,
859 const char *msgid)
861 if (c_parser_next_token_is (parser, type))
863 c_parser_consume_token (parser);
864 return true;
866 else
868 c_parser_error (parser, msgid);
869 return false;
873 /* If the next token is the indicated keyword, consume it. Otherwise,
874 issue the error MSGID. Returns true if found, false otherwise. */
876 static bool
877 c_parser_require_keyword (c_parser *parser,
878 enum rid keyword,
879 const char *msgid)
881 if (c_parser_next_token_is_keyword (parser, keyword))
883 c_parser_consume_token (parser);
884 return true;
886 else
888 c_parser_error (parser, msgid);
889 return false;
893 /* Like c_parser_require, except that tokens will be skipped until the
894 desired token is found. An error message is still produced if the
895 next token is not as expected. If MSGID is NULL then a message has
896 already been produced and no message will be produced this
897 time. */
899 static void
900 c_parser_skip_until_found (c_parser *parser,
901 enum cpp_ttype type,
902 const char *msgid)
904 unsigned nesting_depth = 0;
906 if (c_parser_require (parser, type, msgid))
907 return;
909 /* Skip tokens until the desired token is found. */
910 while (true)
912 /* Peek at the next token. */
913 c_token *token = c_parser_peek_token (parser);
914 /* If we've reached the token we want, consume it and stop. */
915 if (token->type == type && !nesting_depth)
917 c_parser_consume_token (parser);
918 break;
921 /* If we've run out of tokens, stop. */
922 if (token->type == CPP_EOF)
923 return;
924 if (token->type == CPP_PRAGMA_EOL && parser->in_pragma)
925 return;
926 if (token->type == CPP_OPEN_BRACE
927 || token->type == CPP_OPEN_PAREN
928 || token->type == CPP_OPEN_SQUARE)
929 ++nesting_depth;
930 else if (token->type == CPP_CLOSE_BRACE
931 || token->type == CPP_CLOSE_PAREN
932 || token->type == CPP_CLOSE_SQUARE)
934 if (nesting_depth-- == 0)
935 break;
937 /* Consume this token. */
938 c_parser_consume_token (parser);
940 parser->error = false;
943 /* Skip tokens until the end of a parameter is found, but do not
944 consume the comma, semicolon or closing delimiter. */
946 static void
947 c_parser_skip_to_end_of_parameter (c_parser *parser)
949 unsigned nesting_depth = 0;
951 while (true)
953 c_token *token = c_parser_peek_token (parser);
954 if ((token->type == CPP_COMMA || token->type == CPP_SEMICOLON)
955 && !nesting_depth)
956 break;
957 /* If we've run out of tokens, stop. */
958 if (token->type == CPP_EOF)
959 return;
960 if (token->type == CPP_PRAGMA_EOL && parser->in_pragma)
961 return;
962 if (token->type == CPP_OPEN_BRACE
963 || token->type == CPP_OPEN_PAREN
964 || token->type == CPP_OPEN_SQUARE)
965 ++nesting_depth;
966 else if (token->type == CPP_CLOSE_BRACE
967 || token->type == CPP_CLOSE_PAREN
968 || token->type == CPP_CLOSE_SQUARE)
970 if (nesting_depth-- == 0)
971 break;
973 /* Consume this token. */
974 c_parser_consume_token (parser);
976 parser->error = false;
979 /* Expect to be at the end of the pragma directive and consume an
980 end of line marker. */
982 static void
983 c_parser_skip_to_pragma_eol (c_parser *parser)
985 gcc_assert (parser->in_pragma);
986 parser->in_pragma = false;
988 if (!c_parser_require (parser, CPP_PRAGMA_EOL, "expected end of line"))
989 while (true)
991 c_token *token = c_parser_peek_token (parser);
992 if (token->type == CPP_EOF)
993 break;
994 if (token->type == CPP_PRAGMA_EOL)
996 c_parser_consume_token (parser);
997 break;
999 c_parser_consume_token (parser);
1002 parser->error = false;
1005 /* Skip tokens until we have consumed an entire block, or until we
1006 have consumed a non-nested ';'. */
1008 static void
1009 c_parser_skip_to_end_of_block_or_statement (c_parser *parser)
1011 unsigned nesting_depth = 0;
1012 bool save_error = parser->error;
1014 while (true)
1016 c_token *token;
1018 /* Peek at the next token. */
1019 token = c_parser_peek_token (parser);
1021 switch (token->type)
1023 case CPP_EOF:
1024 return;
1026 case CPP_PRAGMA_EOL:
1027 if (parser->in_pragma)
1028 return;
1029 break;
1031 case CPP_SEMICOLON:
1032 /* If the next token is a ';', we have reached the
1033 end of the statement. */
1034 if (!nesting_depth)
1036 /* Consume the ';'. */
1037 c_parser_consume_token (parser);
1038 goto finished;
1040 break;
1042 case CPP_CLOSE_BRACE:
1043 /* If the next token is a non-nested '}', then we have
1044 reached the end of the current block. */
1045 if (nesting_depth == 0 || --nesting_depth == 0)
1047 c_parser_consume_token (parser);
1048 goto finished;
1050 break;
1052 case CPP_OPEN_BRACE:
1053 /* If it the next token is a '{', then we are entering a new
1054 block. Consume the entire block. */
1055 ++nesting_depth;
1056 break;
1058 case CPP_PRAGMA:
1059 /* If we see a pragma, consume the whole thing at once. We
1060 have some safeguards against consuming pragmas willy-nilly.
1061 Normally, we'd expect to be here with parser->error set,
1062 which disables these safeguards. But it's possible to get
1063 here for secondary error recovery, after parser->error has
1064 been cleared. */
1065 c_parser_consume_pragma (parser);
1066 c_parser_skip_to_pragma_eol (parser);
1067 parser->error = save_error;
1068 continue;
1070 default:
1071 break;
1074 c_parser_consume_token (parser);
1077 finished:
1078 parser->error = false;
1081 /* CPP's options (initialized by c-opts.c). */
1082 extern cpp_options *cpp_opts;
1084 /* Save the warning flags which are controlled by __extension__. */
1086 static inline int
1087 disable_extension_diagnostics (void)
1089 int ret = (pedantic
1090 | (warn_pointer_arith << 1)
1091 | (warn_traditional << 2)
1092 | (flag_iso << 3)
1093 | (warn_long_long << 4)
1094 | (warn_cxx_compat << 5)
1095 | (warn_overlength_strings << 6)
1096 /* warn_c90_c99_compat has three states: -1/0/1, so we must
1097 play tricks to properly restore it. */
1098 | ((warn_c90_c99_compat == 1) << 7)
1099 | ((warn_c90_c99_compat == -1) << 8)
1100 /* Similarly for warn_c99_c11_compat. */
1101 | ((warn_c99_c11_compat == 1) << 9)
1102 | ((warn_c99_c11_compat == -1) << 10)
1104 cpp_opts->cpp_pedantic = pedantic = 0;
1105 warn_pointer_arith = 0;
1106 cpp_opts->cpp_warn_traditional = warn_traditional = 0;
1107 flag_iso = 0;
1108 cpp_opts->cpp_warn_long_long = warn_long_long = 0;
1109 warn_cxx_compat = 0;
1110 warn_overlength_strings = 0;
1111 warn_c90_c99_compat = 0;
1112 warn_c99_c11_compat = 0;
1113 return ret;
1116 /* Restore the warning flags which are controlled by __extension__.
1117 FLAGS is the return value from disable_extension_diagnostics. */
1119 static inline void
1120 restore_extension_diagnostics (int flags)
1122 cpp_opts->cpp_pedantic = pedantic = flags & 1;
1123 warn_pointer_arith = (flags >> 1) & 1;
1124 cpp_opts->cpp_warn_traditional = warn_traditional = (flags >> 2) & 1;
1125 flag_iso = (flags >> 3) & 1;
1126 cpp_opts->cpp_warn_long_long = warn_long_long = (flags >> 4) & 1;
1127 warn_cxx_compat = (flags >> 5) & 1;
1128 warn_overlength_strings = (flags >> 6) & 1;
1129 /* See above for why is this needed. */
1130 warn_c90_c99_compat = (flags >> 7) & 1 ? 1 : ((flags >> 8) & 1 ? -1 : 0);
1131 warn_c99_c11_compat = (flags >> 9) & 1 ? 1 : ((flags >> 10) & 1 ? -1 : 0);
1134 /* Possibly kinds of declarator to parse. */
1135 typedef enum c_dtr_syn {
1136 /* A normal declarator with an identifier. */
1137 C_DTR_NORMAL,
1138 /* An abstract declarator (maybe empty). */
1139 C_DTR_ABSTRACT,
1140 /* A parameter declarator: may be either, but after a type name does
1141 not redeclare a typedef name as an identifier if it can
1142 alternatively be interpreted as a typedef name; see DR#009,
1143 applied in C90 TC1, omitted from C99 and reapplied in C99 TC2
1144 following DR#249. For example, given a typedef T, "int T" and
1145 "int *T" are valid parameter declarations redeclaring T, while
1146 "int (T)" and "int * (T)" and "int (T[])" and "int (T (int))" are
1147 abstract declarators rather than involving redundant parentheses;
1148 the same applies with attributes inside the parentheses before
1149 "T". */
1150 C_DTR_PARM
1151 } c_dtr_syn;
1153 /* The binary operation precedence levels, where 0 is a dummy lowest level
1154 used for the bottom of the stack. */
1155 enum c_parser_prec {
1156 PREC_NONE,
1157 PREC_LOGOR,
1158 PREC_LOGAND,
1159 PREC_BITOR,
1160 PREC_BITXOR,
1161 PREC_BITAND,
1162 PREC_EQ,
1163 PREC_REL,
1164 PREC_SHIFT,
1165 PREC_ADD,
1166 PREC_MULT,
1167 NUM_PRECS
1170 static void c_parser_external_declaration (c_parser *);
1171 static void c_parser_asm_definition (c_parser *);
1172 static void c_parser_declaration_or_fndef (c_parser *, bool, bool, bool,
1173 bool, bool, tree *, vec<c_token>);
1174 static void c_parser_static_assert_declaration_no_semi (c_parser *);
1175 static void c_parser_static_assert_declaration (c_parser *);
1176 static void c_parser_declspecs (c_parser *, struct c_declspecs *, bool, bool,
1177 bool, bool, bool, enum c_lookahead_kind);
1178 static struct c_typespec c_parser_enum_specifier (c_parser *);
1179 static struct c_typespec c_parser_struct_or_union_specifier (c_parser *);
1180 static tree c_parser_struct_declaration (c_parser *);
1181 static struct c_typespec c_parser_typeof_specifier (c_parser *);
1182 static tree c_parser_alignas_specifier (c_parser *);
1183 static struct c_declarator *c_parser_declarator (c_parser *, bool, c_dtr_syn,
1184 bool *);
1185 static struct c_declarator *c_parser_direct_declarator (c_parser *, bool,
1186 c_dtr_syn, bool *);
1187 static struct c_declarator *c_parser_direct_declarator_inner (c_parser *,
1188 bool,
1189 struct c_declarator *);
1190 static struct c_arg_info *c_parser_parms_declarator (c_parser *, bool, tree);
1191 static struct c_arg_info *c_parser_parms_list_declarator (c_parser *, tree,
1192 tree);
1193 static struct c_parm *c_parser_parameter_declaration (c_parser *, tree);
1194 static tree c_parser_simple_asm_expr (c_parser *);
1195 static tree c_parser_attributes (c_parser *);
1196 static struct c_type_name *c_parser_type_name (c_parser *);
1197 static struct c_expr c_parser_initializer (c_parser *);
1198 static struct c_expr c_parser_braced_init (c_parser *, tree, bool);
1199 static void c_parser_initelt (c_parser *, struct obstack *);
1200 static void c_parser_initval (c_parser *, struct c_expr *,
1201 struct obstack *);
1202 static tree c_parser_compound_statement (c_parser *);
1203 static void c_parser_compound_statement_nostart (c_parser *);
1204 static void c_parser_label (c_parser *);
1205 static void c_parser_statement (c_parser *);
1206 static void c_parser_statement_after_labels (c_parser *);
1207 static void c_parser_if_statement (c_parser *);
1208 static void c_parser_switch_statement (c_parser *);
1209 static void c_parser_while_statement (c_parser *, bool);
1210 static void c_parser_do_statement (c_parser *, bool);
1211 static void c_parser_for_statement (c_parser *, bool);
1212 static tree c_parser_asm_statement (c_parser *);
1213 static tree c_parser_asm_operands (c_parser *);
1214 static tree c_parser_asm_goto_operands (c_parser *);
1215 static tree c_parser_asm_clobbers (c_parser *);
1216 static struct c_expr c_parser_expr_no_commas (c_parser *, struct c_expr *,
1217 tree = NULL_TREE);
1218 static struct c_expr c_parser_conditional_expression (c_parser *,
1219 struct c_expr *, tree);
1220 static struct c_expr c_parser_binary_expression (c_parser *, struct c_expr *,
1221 tree);
1222 static struct c_expr c_parser_cast_expression (c_parser *, struct c_expr *);
1223 static struct c_expr c_parser_unary_expression (c_parser *);
1224 static struct c_expr c_parser_sizeof_expression (c_parser *);
1225 static struct c_expr c_parser_alignof_expression (c_parser *);
1226 static struct c_expr c_parser_postfix_expression (c_parser *);
1227 static struct c_expr c_parser_postfix_expression_after_paren_type (c_parser *,
1228 struct c_type_name *,
1229 location_t);
1230 static struct c_expr c_parser_postfix_expression_after_primary (c_parser *,
1231 location_t loc,
1232 struct c_expr);
1233 static tree c_parser_transaction (c_parser *, enum rid);
1234 static struct c_expr c_parser_transaction_expression (c_parser *, enum rid);
1235 static tree c_parser_transaction_cancel (c_parser *);
1236 static struct c_expr c_parser_expression (c_parser *);
1237 static struct c_expr c_parser_expression_conv (c_parser *);
1238 static vec<tree, va_gc> *c_parser_expr_list (c_parser *, bool, bool,
1239 vec<tree, va_gc> **, location_t *,
1240 tree *, vec<location_t> *,
1241 unsigned int * = NULL);
1242 static tree c_parser_oacc_loop (location_t, c_parser *, char *);
1243 static void c_parser_omp_construct (c_parser *);
1244 static void c_parser_omp_threadprivate (c_parser *);
1245 static void c_parser_oacc_enter_exit_data (c_parser *, bool);
1246 static void c_parser_oacc_update (c_parser *);
1247 static void c_parser_omp_barrier (c_parser *);
1248 static void c_parser_omp_flush (c_parser *);
1249 static tree c_parser_omp_for_loop (location_t, c_parser *, enum tree_code,
1250 tree, tree *);
1251 static void c_parser_omp_taskwait (c_parser *);
1252 static void c_parser_omp_taskyield (c_parser *);
1253 static void c_parser_omp_cancel (c_parser *);
1254 static void c_parser_omp_cancellation_point (c_parser *);
1256 enum pragma_context { pragma_external, pragma_struct, pragma_param,
1257 pragma_stmt, pragma_compound };
1258 static bool c_parser_pragma (c_parser *, enum pragma_context);
1259 static bool c_parser_omp_target (c_parser *, enum pragma_context);
1260 static void c_parser_omp_end_declare_target (c_parser *);
1261 static void c_parser_omp_declare (c_parser *, enum pragma_context);
1263 /* These Objective-C parser functions are only ever called when
1264 compiling Objective-C. */
1265 static void c_parser_objc_class_definition (c_parser *, tree);
1266 static void c_parser_objc_class_instance_variables (c_parser *);
1267 static void c_parser_objc_class_declaration (c_parser *);
1268 static void c_parser_objc_alias_declaration (c_parser *);
1269 static void c_parser_objc_protocol_definition (c_parser *, tree);
1270 static bool c_parser_objc_method_type (c_parser *);
1271 static void c_parser_objc_method_definition (c_parser *);
1272 static void c_parser_objc_methodprotolist (c_parser *);
1273 static void c_parser_objc_methodproto (c_parser *);
1274 static tree c_parser_objc_method_decl (c_parser *, bool, tree *, tree *);
1275 static tree c_parser_objc_type_name (c_parser *);
1276 static tree c_parser_objc_protocol_refs (c_parser *);
1277 static void c_parser_objc_try_catch_finally_statement (c_parser *);
1278 static void c_parser_objc_synchronized_statement (c_parser *);
1279 static tree c_parser_objc_selector (c_parser *);
1280 static tree c_parser_objc_selector_arg (c_parser *);
1281 static tree c_parser_objc_receiver (c_parser *);
1282 static tree c_parser_objc_message_args (c_parser *);
1283 static tree c_parser_objc_keywordexpr (c_parser *);
1284 static void c_parser_objc_at_property_declaration (c_parser *);
1285 static void c_parser_objc_at_synthesize_declaration (c_parser *);
1286 static void c_parser_objc_at_dynamic_declaration (c_parser *);
1287 static bool c_parser_objc_diagnose_bad_element_prefix
1288 (c_parser *, struct c_declspecs *);
1290 /* Cilk Plus supporting routines. */
1291 static void c_parser_cilk_simd (c_parser *);
1292 static void c_parser_cilk_for (c_parser *, tree);
1293 static bool c_parser_cilk_verify_simd (c_parser *, enum pragma_context);
1294 static tree c_parser_array_notation (location_t, c_parser *, tree, tree);
1295 static tree c_parser_cilk_clause_vectorlength (c_parser *, tree, bool);
1296 static void c_parser_cilk_grainsize (c_parser *);
1298 /* Parse a translation unit (C90 6.7, C99 6.9).
1300 translation-unit:
1301 external-declarations
1303 external-declarations:
1304 external-declaration
1305 external-declarations external-declaration
1307 GNU extensions:
1309 translation-unit:
1310 empty
1313 static void
1314 c_parser_translation_unit (c_parser *parser)
1316 if (c_parser_next_token_is (parser, CPP_EOF))
1318 pedwarn (c_parser_peek_token (parser)->location, OPT_Wpedantic,
1319 "ISO C forbids an empty translation unit");
1321 else
1323 void *obstack_position = obstack_alloc (&parser_obstack, 0);
1324 mark_valid_location_for_stdc_pragma (false);
1327 ggc_collect ();
1328 c_parser_external_declaration (parser);
1329 obstack_free (&parser_obstack, obstack_position);
1331 while (c_parser_next_token_is_not (parser, CPP_EOF));
1335 /* Parse an external declaration (C90 6.7, C99 6.9).
1337 external-declaration:
1338 function-definition
1339 declaration
1341 GNU extensions:
1343 external-declaration:
1344 asm-definition
1346 __extension__ external-declaration
1348 Objective-C:
1350 external-declaration:
1351 objc-class-definition
1352 objc-class-declaration
1353 objc-alias-declaration
1354 objc-protocol-definition
1355 objc-method-definition
1356 @end
1359 static void
1360 c_parser_external_declaration (c_parser *parser)
1362 int ext;
1363 switch (c_parser_peek_token (parser)->type)
1365 case CPP_KEYWORD:
1366 switch (c_parser_peek_token (parser)->keyword)
1368 case RID_EXTENSION:
1369 ext = disable_extension_diagnostics ();
1370 c_parser_consume_token (parser);
1371 c_parser_external_declaration (parser);
1372 restore_extension_diagnostics (ext);
1373 break;
1374 case RID_ASM:
1375 c_parser_asm_definition (parser);
1376 break;
1377 case RID_AT_INTERFACE:
1378 case RID_AT_IMPLEMENTATION:
1379 gcc_assert (c_dialect_objc ());
1380 c_parser_objc_class_definition (parser, NULL_TREE);
1381 break;
1382 case RID_AT_CLASS:
1383 gcc_assert (c_dialect_objc ());
1384 c_parser_objc_class_declaration (parser);
1385 break;
1386 case RID_AT_ALIAS:
1387 gcc_assert (c_dialect_objc ());
1388 c_parser_objc_alias_declaration (parser);
1389 break;
1390 case RID_AT_PROTOCOL:
1391 gcc_assert (c_dialect_objc ());
1392 c_parser_objc_protocol_definition (parser, NULL_TREE);
1393 break;
1394 case RID_AT_PROPERTY:
1395 gcc_assert (c_dialect_objc ());
1396 c_parser_objc_at_property_declaration (parser);
1397 break;
1398 case RID_AT_SYNTHESIZE:
1399 gcc_assert (c_dialect_objc ());
1400 c_parser_objc_at_synthesize_declaration (parser);
1401 break;
1402 case RID_AT_DYNAMIC:
1403 gcc_assert (c_dialect_objc ());
1404 c_parser_objc_at_dynamic_declaration (parser);
1405 break;
1406 case RID_AT_END:
1407 gcc_assert (c_dialect_objc ());
1408 c_parser_consume_token (parser);
1409 objc_finish_implementation ();
1410 break;
1411 default:
1412 goto decl_or_fndef;
1414 break;
1415 case CPP_SEMICOLON:
1416 pedwarn (c_parser_peek_token (parser)->location, OPT_Wpedantic,
1417 "ISO C does not allow extra %<;%> outside of a function");
1418 c_parser_consume_token (parser);
1419 break;
1420 case CPP_PRAGMA:
1421 mark_valid_location_for_stdc_pragma (true);
1422 c_parser_pragma (parser, pragma_external);
1423 mark_valid_location_for_stdc_pragma (false);
1424 break;
1425 case CPP_PLUS:
1426 case CPP_MINUS:
1427 if (c_dialect_objc ())
1429 c_parser_objc_method_definition (parser);
1430 break;
1432 /* Else fall through, and yield a syntax error trying to parse
1433 as a declaration or function definition. */
1434 default:
1435 decl_or_fndef:
1436 /* A declaration or a function definition (or, in Objective-C,
1437 an @interface or @protocol with prefix attributes). We can
1438 only tell which after parsing the declaration specifiers, if
1439 any, and the first declarator. */
1440 c_parser_declaration_or_fndef (parser, true, true, true, false, true,
1441 NULL, vNULL);
1442 break;
1446 static void c_finish_omp_declare_simd (c_parser *, tree, tree, vec<c_token>);
1448 /* Parse a declaration or function definition (C90 6.5, 6.7.1, C99
1449 6.7, 6.9.1). If FNDEF_OK is true, a function definition is
1450 accepted; otherwise (old-style parameter declarations) only other
1451 declarations are accepted. If STATIC_ASSERT_OK is true, a static
1452 assertion is accepted; otherwise (old-style parameter declarations)
1453 it is not. If NESTED is true, we are inside a function or parsing
1454 old-style parameter declarations; any functions encountered are
1455 nested functions and declaration specifiers are required; otherwise
1456 we are at top level and functions are normal functions and
1457 declaration specifiers may be optional. If EMPTY_OK is true, empty
1458 declarations are OK (subject to all other constraints); otherwise
1459 (old-style parameter declarations) they are diagnosed. If
1460 START_ATTR_OK is true, the declaration specifiers may start with
1461 attributes; otherwise they may not.
1462 OBJC_FOREACH_OBJECT_DECLARATION can be used to get back the parsed
1463 declaration when parsing an Objective-C foreach statement.
1465 declaration:
1466 declaration-specifiers init-declarator-list[opt] ;
1467 static_assert-declaration
1469 function-definition:
1470 declaration-specifiers[opt] declarator declaration-list[opt]
1471 compound-statement
1473 declaration-list:
1474 declaration
1475 declaration-list declaration
1477 init-declarator-list:
1478 init-declarator
1479 init-declarator-list , init-declarator
1481 init-declarator:
1482 declarator simple-asm-expr[opt] attributes[opt]
1483 declarator simple-asm-expr[opt] attributes[opt] = initializer
1485 GNU extensions:
1487 nested-function-definition:
1488 declaration-specifiers declarator declaration-list[opt]
1489 compound-statement
1491 Objective-C:
1492 attributes objc-class-definition
1493 attributes objc-category-definition
1494 attributes objc-protocol-definition
1496 The simple-asm-expr and attributes are GNU extensions.
1498 This function does not handle __extension__; that is handled in its
1499 callers. ??? Following the old parser, __extension__ may start
1500 external declarations, declarations in functions and declarations
1501 at the start of "for" loops, but not old-style parameter
1502 declarations.
1504 C99 requires declaration specifiers in a function definition; the
1505 absence is diagnosed through the diagnosis of implicit int. In GNU
1506 C we also allow but diagnose declarations without declaration
1507 specifiers, but only at top level (elsewhere they conflict with
1508 other syntax).
1510 In Objective-C, declarations of the looping variable in a foreach
1511 statement are exceptionally terminated by 'in' (for example, 'for
1512 (NSObject *object in array) { ... }').
1514 OpenMP:
1516 declaration:
1517 threadprivate-directive */
1519 static void
1520 c_parser_declaration_or_fndef (c_parser *parser, bool fndef_ok,
1521 bool static_assert_ok, bool empty_ok,
1522 bool nested, bool start_attr_ok,
1523 tree *objc_foreach_object_declaration,
1524 vec<c_token> omp_declare_simd_clauses)
1526 struct c_declspecs *specs;
1527 tree prefix_attrs;
1528 tree all_prefix_attrs;
1529 bool diagnosed_no_specs = false;
1530 location_t here = c_parser_peek_token (parser)->location;
1532 if (static_assert_ok
1533 && c_parser_next_token_is_keyword (parser, RID_STATIC_ASSERT))
1535 c_parser_static_assert_declaration (parser);
1536 return;
1538 specs = build_null_declspecs ();
1540 /* Try to detect an unknown type name when we have "A B" or "A *B". */
1541 if (c_parser_peek_token (parser)->type == CPP_NAME
1542 && c_parser_peek_token (parser)->id_kind == C_ID_ID
1543 && (c_parser_peek_2nd_token (parser)->type == CPP_NAME
1544 || c_parser_peek_2nd_token (parser)->type == CPP_MULT)
1545 && (!nested || !lookup_name (c_parser_peek_token (parser)->value)))
1547 error_at (here, "unknown type name %qE",
1548 c_parser_peek_token (parser)->value);
1550 /* Parse declspecs normally to get a correct pointer type, but avoid
1551 a further "fails to be a type name" error. Refuse nested functions
1552 since it is not how the user likely wants us to recover. */
1553 c_parser_peek_token (parser)->type = CPP_KEYWORD;
1554 c_parser_peek_token (parser)->keyword = RID_VOID;
1555 c_parser_peek_token (parser)->value = error_mark_node;
1556 fndef_ok = !nested;
1559 c_parser_declspecs (parser, specs, true, true, start_attr_ok,
1560 true, true, cla_nonabstract_decl);
1561 if (parser->error)
1563 c_parser_skip_to_end_of_block_or_statement (parser);
1564 return;
1566 if (nested && !specs->declspecs_seen_p)
1568 c_parser_error (parser, "expected declaration specifiers");
1569 c_parser_skip_to_end_of_block_or_statement (parser);
1570 return;
1572 finish_declspecs (specs);
1573 bool auto_type_p = specs->typespec_word == cts_auto_type;
1574 if (c_parser_next_token_is (parser, CPP_SEMICOLON))
1576 if (auto_type_p)
1577 error_at (here, "%<__auto_type%> in empty declaration");
1578 else if (empty_ok)
1579 shadow_tag (specs);
1580 else
1582 shadow_tag_warned (specs, 1);
1583 pedwarn (here, 0, "empty declaration");
1585 c_parser_consume_token (parser);
1586 return;
1589 /* Provide better error recovery. Note that a type name here is usually
1590 better diagnosed as a redeclaration. */
1591 if (empty_ok
1592 && specs->typespec_kind == ctsk_tagdef
1593 && c_parser_next_token_starts_declspecs (parser)
1594 && !c_parser_next_token_is (parser, CPP_NAME))
1596 c_parser_error (parser, "expected %<;%>, identifier or %<(%>");
1597 parser->error = false;
1598 shadow_tag_warned (specs, 1);
1599 return;
1601 else if (c_dialect_objc () && !auto_type_p)
1603 /* Prefix attributes are an error on method decls. */
1604 switch (c_parser_peek_token (parser)->type)
1606 case CPP_PLUS:
1607 case CPP_MINUS:
1608 if (c_parser_objc_diagnose_bad_element_prefix (parser, specs))
1609 return;
1610 if (specs->attrs)
1612 warning_at (c_parser_peek_token (parser)->location,
1613 OPT_Wattributes,
1614 "prefix attributes are ignored for methods");
1615 specs->attrs = NULL_TREE;
1617 if (fndef_ok)
1618 c_parser_objc_method_definition (parser);
1619 else
1620 c_parser_objc_methodproto (parser);
1621 return;
1622 break;
1623 default:
1624 break;
1626 /* This is where we parse 'attributes @interface ...',
1627 'attributes @implementation ...', 'attributes @protocol ...'
1628 (where attributes could be, for example, __attribute__
1629 ((deprecated)).
1631 switch (c_parser_peek_token (parser)->keyword)
1633 case RID_AT_INTERFACE:
1635 if (c_parser_objc_diagnose_bad_element_prefix (parser, specs))
1636 return;
1637 c_parser_objc_class_definition (parser, specs->attrs);
1638 return;
1640 break;
1641 case RID_AT_IMPLEMENTATION:
1643 if (c_parser_objc_diagnose_bad_element_prefix (parser, specs))
1644 return;
1645 if (specs->attrs)
1647 warning_at (c_parser_peek_token (parser)->location,
1648 OPT_Wattributes,
1649 "prefix attributes are ignored for implementations");
1650 specs->attrs = NULL_TREE;
1652 c_parser_objc_class_definition (parser, NULL_TREE);
1653 return;
1655 break;
1656 case RID_AT_PROTOCOL:
1658 if (c_parser_objc_diagnose_bad_element_prefix (parser, specs))
1659 return;
1660 c_parser_objc_protocol_definition (parser, specs->attrs);
1661 return;
1663 break;
1664 case RID_AT_ALIAS:
1665 case RID_AT_CLASS:
1666 case RID_AT_END:
1667 case RID_AT_PROPERTY:
1668 if (specs->attrs)
1670 c_parser_error (parser, "unexpected attribute");
1671 specs->attrs = NULL;
1673 break;
1674 default:
1675 break;
1679 pending_xref_error ();
1680 prefix_attrs = specs->attrs;
1681 all_prefix_attrs = prefix_attrs;
1682 specs->attrs = NULL_TREE;
1683 while (true)
1685 struct c_declarator *declarator;
1686 bool dummy = false;
1687 timevar_id_t tv;
1688 tree fnbody;
1689 /* Declaring either one or more declarators (in which case we
1690 should diagnose if there were no declaration specifiers) or a
1691 function definition (in which case the diagnostic for
1692 implicit int suffices). */
1693 declarator = c_parser_declarator (parser,
1694 specs->typespec_kind != ctsk_none,
1695 C_DTR_NORMAL, &dummy);
1696 if (declarator == NULL)
1698 if (omp_declare_simd_clauses.exists ()
1699 || !vec_safe_is_empty (parser->cilk_simd_fn_tokens))
1700 c_finish_omp_declare_simd (parser, NULL_TREE, NULL_TREE,
1701 omp_declare_simd_clauses);
1702 c_parser_skip_to_end_of_block_or_statement (parser);
1703 return;
1705 if (auto_type_p && declarator->kind != cdk_id)
1707 error_at (here,
1708 "%<__auto_type%> requires a plain identifier"
1709 " as declarator");
1710 c_parser_skip_to_end_of_block_or_statement (parser);
1711 return;
1713 if (c_parser_next_token_is (parser, CPP_EQ)
1714 || c_parser_next_token_is (parser, CPP_COMMA)
1715 || c_parser_next_token_is (parser, CPP_SEMICOLON)
1716 || c_parser_next_token_is_keyword (parser, RID_ASM)
1717 || c_parser_next_token_is_keyword (parser, RID_ATTRIBUTE)
1718 || c_parser_next_token_is_keyword (parser, RID_IN))
1720 tree asm_name = NULL_TREE;
1721 tree postfix_attrs = NULL_TREE;
1722 if (!diagnosed_no_specs && !specs->declspecs_seen_p)
1724 diagnosed_no_specs = true;
1725 pedwarn (here, 0, "data definition has no type or storage class");
1727 /* Having seen a data definition, there cannot now be a
1728 function definition. */
1729 fndef_ok = false;
1730 if (c_parser_next_token_is_keyword (parser, RID_ASM))
1731 asm_name = c_parser_simple_asm_expr (parser);
1732 if (c_parser_next_token_is_keyword (parser, RID_ATTRIBUTE))
1734 postfix_attrs = c_parser_attributes (parser);
1735 if (c_parser_next_token_is (parser, CPP_OPEN_BRACE))
1737 /* This means there is an attribute specifier after
1738 the declarator in a function definition. Provide
1739 some more information for the user. */
1740 error_at (here, "attributes should be specified before the "
1741 "declarator in a function definition");
1742 c_parser_skip_to_end_of_block_or_statement (parser);
1743 return;
1746 if (c_parser_next_token_is (parser, CPP_EQ))
1748 tree d;
1749 struct c_expr init;
1750 location_t init_loc;
1751 c_parser_consume_token (parser);
1752 if (auto_type_p)
1754 start_init (NULL_TREE, asm_name, global_bindings_p ());
1755 init_loc = c_parser_peek_token (parser)->location;
1756 init = c_parser_expr_no_commas (parser, NULL);
1757 if (TREE_CODE (init.value) == COMPONENT_REF
1758 && DECL_C_BIT_FIELD (TREE_OPERAND (init.value, 1)))
1759 error_at (here,
1760 "%<__auto_type%> used with a bit-field"
1761 " initializer");
1762 init = convert_lvalue_to_rvalue (init_loc, init, true, true);
1763 tree init_type = TREE_TYPE (init.value);
1764 /* As with typeof, remove all qualifiers from atomic types. */
1765 if (init_type != error_mark_node && TYPE_ATOMIC (init_type))
1766 init_type
1767 = c_build_qualified_type (init_type, TYPE_UNQUALIFIED);
1768 bool vm_type = variably_modified_type_p (init_type,
1769 NULL_TREE);
1770 if (vm_type)
1771 init.value = c_save_expr (init.value);
1772 finish_init ();
1773 specs->typespec_kind = ctsk_typeof;
1774 specs->locations[cdw_typedef] = init_loc;
1775 specs->typedef_p = true;
1776 specs->type = init_type;
1777 if (vm_type)
1779 bool maybe_const = true;
1780 tree type_expr = c_fully_fold (init.value, false,
1781 &maybe_const);
1782 specs->expr_const_operands &= maybe_const;
1783 if (specs->expr)
1784 specs->expr = build2 (COMPOUND_EXPR,
1785 TREE_TYPE (type_expr),
1786 specs->expr, type_expr);
1787 else
1788 specs->expr = type_expr;
1790 d = start_decl (declarator, specs, true,
1791 chainon (postfix_attrs, all_prefix_attrs));
1792 if (!d)
1793 d = error_mark_node;
1794 if (omp_declare_simd_clauses.exists ()
1795 || !vec_safe_is_empty (parser->cilk_simd_fn_tokens))
1796 c_finish_omp_declare_simd (parser, d, NULL_TREE,
1797 omp_declare_simd_clauses);
1799 else
1801 /* The declaration of the variable is in effect while
1802 its initializer is parsed. */
1803 d = start_decl (declarator, specs, true,
1804 chainon (postfix_attrs, all_prefix_attrs));
1805 if (!d)
1806 d = error_mark_node;
1807 if (omp_declare_simd_clauses.exists ()
1808 || !vec_safe_is_empty (parser->cilk_simd_fn_tokens))
1809 c_finish_omp_declare_simd (parser, d, NULL_TREE,
1810 omp_declare_simd_clauses);
1811 start_init (d, asm_name, global_bindings_p ());
1812 init_loc = c_parser_peek_token (parser)->location;
1813 init = c_parser_initializer (parser);
1814 finish_init ();
1816 if (d != error_mark_node)
1818 maybe_warn_string_init (init_loc, TREE_TYPE (d), init);
1819 finish_decl (d, init_loc, init.value,
1820 init.original_type, asm_name);
1823 else
1825 if (auto_type_p)
1827 error_at (here,
1828 "%<__auto_type%> requires an initialized "
1829 "data declaration");
1830 c_parser_skip_to_end_of_block_or_statement (parser);
1831 return;
1833 tree d = start_decl (declarator, specs, false,
1834 chainon (postfix_attrs,
1835 all_prefix_attrs));
1836 if (omp_declare_simd_clauses.exists ()
1837 || !vec_safe_is_empty (parser->cilk_simd_fn_tokens))
1839 tree parms = NULL_TREE;
1840 if (d && TREE_CODE (d) == FUNCTION_DECL)
1842 struct c_declarator *ce = declarator;
1843 while (ce != NULL)
1844 if (ce->kind == cdk_function)
1846 parms = ce->u.arg_info->parms;
1847 break;
1849 else
1850 ce = ce->declarator;
1852 if (parms)
1853 temp_store_parm_decls (d, parms);
1854 c_finish_omp_declare_simd (parser, d, parms,
1855 omp_declare_simd_clauses);
1856 if (parms)
1857 temp_pop_parm_decls ();
1859 if (d)
1860 finish_decl (d, UNKNOWN_LOCATION, NULL_TREE,
1861 NULL_TREE, asm_name);
1863 if (c_parser_next_token_is_keyword (parser, RID_IN))
1865 if (d)
1866 *objc_foreach_object_declaration = d;
1867 else
1868 *objc_foreach_object_declaration = error_mark_node;
1871 if (c_parser_next_token_is (parser, CPP_COMMA))
1873 if (auto_type_p)
1875 error_at (here,
1876 "%<__auto_type%> may only be used with"
1877 " a single declarator");
1878 c_parser_skip_to_end_of_block_or_statement (parser);
1879 return;
1881 c_parser_consume_token (parser);
1882 if (c_parser_next_token_is_keyword (parser, RID_ATTRIBUTE))
1883 all_prefix_attrs = chainon (c_parser_attributes (parser),
1884 prefix_attrs);
1885 else
1886 all_prefix_attrs = prefix_attrs;
1887 continue;
1889 else if (c_parser_next_token_is (parser, CPP_SEMICOLON))
1891 c_parser_consume_token (parser);
1892 return;
1894 else if (c_parser_next_token_is_keyword (parser, RID_IN))
1896 /* This can only happen in Objective-C: we found the
1897 'in' that terminates the declaration inside an
1898 Objective-C foreach statement. Do not consume the
1899 token, so that the caller can use it to determine
1900 that this indeed is a foreach context. */
1901 return;
1903 else
1905 c_parser_error (parser, "expected %<,%> or %<;%>");
1906 c_parser_skip_to_end_of_block_or_statement (parser);
1907 return;
1910 else if (auto_type_p)
1912 error_at (here,
1913 "%<__auto_type%> requires an initialized data declaration");
1914 c_parser_skip_to_end_of_block_or_statement (parser);
1915 return;
1917 else if (!fndef_ok)
1919 c_parser_error (parser, "expected %<=%>, %<,%>, %<;%>, "
1920 "%<asm%> or %<__attribute__%>");
1921 c_parser_skip_to_end_of_block_or_statement (parser);
1922 return;
1924 /* Function definition (nested or otherwise). */
1925 if (nested)
1927 pedwarn (here, OPT_Wpedantic, "ISO C forbids nested functions");
1928 c_push_function_context ();
1930 if (!start_function (specs, declarator, all_prefix_attrs))
1932 /* This can appear in many cases looking nothing like a
1933 function definition, so we don't give a more specific
1934 error suggesting there was one. */
1935 c_parser_error (parser, "expected %<=%>, %<,%>, %<;%>, %<asm%> "
1936 "or %<__attribute__%>");
1937 if (nested)
1938 c_pop_function_context ();
1939 break;
1942 if (DECL_DECLARED_INLINE_P (current_function_decl))
1943 tv = TV_PARSE_INLINE;
1944 else
1945 tv = TV_PARSE_FUNC;
1946 timevar_push (tv);
1948 /* Parse old-style parameter declarations. ??? Attributes are
1949 not allowed to start declaration specifiers here because of a
1950 syntax conflict between a function declaration with attribute
1951 suffix and a function definition with an attribute prefix on
1952 first old-style parameter declaration. Following the old
1953 parser, they are not accepted on subsequent old-style
1954 parameter declarations either. However, there is no
1955 ambiguity after the first declaration, nor indeed on the
1956 first as long as we don't allow postfix attributes after a
1957 declarator with a nonempty identifier list in a definition;
1958 and postfix attributes have never been accepted here in
1959 function definitions either. */
1960 while (c_parser_next_token_is_not (parser, CPP_EOF)
1961 && c_parser_next_token_is_not (parser, CPP_OPEN_BRACE))
1962 c_parser_declaration_or_fndef (parser, false, false, false,
1963 true, false, NULL, vNULL);
1964 store_parm_decls ();
1965 if (omp_declare_simd_clauses.exists ()
1966 || !vec_safe_is_empty (parser->cilk_simd_fn_tokens))
1967 c_finish_omp_declare_simd (parser, current_function_decl, NULL_TREE,
1968 omp_declare_simd_clauses);
1969 DECL_STRUCT_FUNCTION (current_function_decl)->function_start_locus
1970 = c_parser_peek_token (parser)->location;
1971 fnbody = c_parser_compound_statement (parser);
1972 if (flag_cilkplus && contains_array_notation_expr (fnbody))
1973 fnbody = expand_array_notation_exprs (fnbody);
1974 if (nested)
1976 tree decl = current_function_decl;
1977 /* Mark nested functions as needing static-chain initially.
1978 lower_nested_functions will recompute it but the
1979 DECL_STATIC_CHAIN flag is also used before that happens,
1980 by initializer_constant_valid_p. See gcc.dg/nested-fn-2.c. */
1981 DECL_STATIC_CHAIN (decl) = 1;
1982 add_stmt (fnbody);
1983 finish_function ();
1984 c_pop_function_context ();
1985 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl), DECL_EXPR, decl));
1987 else
1989 add_stmt (fnbody);
1990 finish_function ();
1993 timevar_pop (tv);
1994 break;
1998 /* Parse an asm-definition (asm() outside a function body). This is a
1999 GNU extension.
2001 asm-definition:
2002 simple-asm-expr ;
2005 static void
2006 c_parser_asm_definition (c_parser *parser)
2008 tree asm_str = c_parser_simple_asm_expr (parser);
2009 if (asm_str)
2010 symtab->finalize_toplevel_asm (asm_str);
2011 c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
2014 /* Parse a static assertion (C11 6.7.10).
2016 static_assert-declaration:
2017 static_assert-declaration-no-semi ;
2020 static void
2021 c_parser_static_assert_declaration (c_parser *parser)
2023 c_parser_static_assert_declaration_no_semi (parser);
2024 if (parser->error
2025 || !c_parser_require (parser, CPP_SEMICOLON, "expected %<;%>"))
2026 c_parser_skip_to_end_of_block_or_statement (parser);
2029 /* Parse a static assertion (C11 6.7.10), without the trailing
2030 semicolon.
2032 static_assert-declaration-no-semi:
2033 _Static_assert ( constant-expression , string-literal )
2036 static void
2037 c_parser_static_assert_declaration_no_semi (c_parser *parser)
2039 location_t assert_loc, value_loc;
2040 tree value;
2041 tree string;
2043 gcc_assert (c_parser_next_token_is_keyword (parser, RID_STATIC_ASSERT));
2044 assert_loc = c_parser_peek_token (parser)->location;
2045 if (flag_isoc99)
2046 pedwarn_c99 (assert_loc, OPT_Wpedantic,
2047 "ISO C99 does not support %<_Static_assert%>");
2048 else
2049 pedwarn_c99 (assert_loc, OPT_Wpedantic,
2050 "ISO C90 does not support %<_Static_assert%>");
2051 c_parser_consume_token (parser);
2052 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
2053 return;
2054 value_loc = c_parser_peek_token (parser)->location;
2055 value = c_parser_expr_no_commas (parser, NULL).value;
2056 parser->lex_untranslated_string = true;
2057 if (!c_parser_require (parser, CPP_COMMA, "expected %<,%>"))
2059 parser->lex_untranslated_string = false;
2060 return;
2062 switch (c_parser_peek_token (parser)->type)
2064 case CPP_STRING:
2065 case CPP_STRING16:
2066 case CPP_STRING32:
2067 case CPP_WSTRING:
2068 case CPP_UTF8STRING:
2069 string = c_parser_peek_token (parser)->value;
2070 c_parser_consume_token (parser);
2071 parser->lex_untranslated_string = false;
2072 break;
2073 default:
2074 c_parser_error (parser, "expected string literal");
2075 parser->lex_untranslated_string = false;
2076 return;
2078 c_parser_require (parser, CPP_CLOSE_PAREN, "expected %<)%>");
2080 if (!INTEGRAL_TYPE_P (TREE_TYPE (value)))
2082 error_at (value_loc, "expression in static assertion is not an integer");
2083 return;
2085 if (TREE_CODE (value) != INTEGER_CST)
2087 value = c_fully_fold (value, false, NULL);
2088 /* Strip no-op conversions. */
2089 STRIP_TYPE_NOPS (value);
2090 if (TREE_CODE (value) == INTEGER_CST)
2091 pedwarn (value_loc, OPT_Wpedantic, "expression in static assertion "
2092 "is not an integer constant expression");
2094 if (TREE_CODE (value) != INTEGER_CST)
2096 error_at (value_loc, "expression in static assertion is not constant");
2097 return;
2099 constant_expression_warning (value);
2100 if (integer_zerop (value))
2101 error_at (assert_loc, "static assertion failed: %E", string);
2104 /* Parse some declaration specifiers (possibly none) (C90 6.5, C99
2105 6.7), adding them to SPECS (which may already include some).
2106 Storage class specifiers are accepted iff SCSPEC_OK; type
2107 specifiers are accepted iff TYPESPEC_OK; alignment specifiers are
2108 accepted iff ALIGNSPEC_OK; attributes are accepted at the start
2109 iff START_ATTR_OK; __auto_type is accepted iff AUTO_TYPE_OK.
2111 declaration-specifiers:
2112 storage-class-specifier declaration-specifiers[opt]
2113 type-specifier declaration-specifiers[opt]
2114 type-qualifier declaration-specifiers[opt]
2115 function-specifier declaration-specifiers[opt]
2116 alignment-specifier declaration-specifiers[opt]
2118 Function specifiers (inline) are from C99, and are currently
2119 handled as storage class specifiers, as is __thread. Alignment
2120 specifiers are from C11.
2122 C90 6.5.1, C99 6.7.1:
2123 storage-class-specifier:
2124 typedef
2125 extern
2126 static
2127 auto
2128 register
2129 _Thread_local
2131 (_Thread_local is new in C11.)
2133 C99 6.7.4:
2134 function-specifier:
2135 inline
2136 _Noreturn
2138 (_Noreturn is new in C11.)
2140 C90 6.5.2, C99 6.7.2:
2141 type-specifier:
2142 void
2143 char
2144 short
2146 long
2147 float
2148 double
2149 signed
2150 unsigned
2151 _Bool
2152 _Complex
2153 [_Imaginary removed in C99 TC2]
2154 struct-or-union-specifier
2155 enum-specifier
2156 typedef-name
2157 atomic-type-specifier
2159 (_Bool and _Complex are new in C99.)
2160 (atomic-type-specifier is new in C11.)
2162 C90 6.5.3, C99 6.7.3:
2164 type-qualifier:
2165 const
2166 restrict
2167 volatile
2168 address-space-qualifier
2169 _Atomic
2171 (restrict is new in C99.)
2172 (_Atomic is new in C11.)
2174 GNU extensions:
2176 declaration-specifiers:
2177 attributes declaration-specifiers[opt]
2179 type-qualifier:
2180 address-space
2182 address-space:
2183 identifier recognized by the target
2185 storage-class-specifier:
2186 __thread
2188 type-specifier:
2189 typeof-specifier
2190 __auto_type
2191 __intN
2192 _Decimal32
2193 _Decimal64
2194 _Decimal128
2195 _Fract
2196 _Accum
2197 _Sat
2199 (_Fract, _Accum, and _Sat are new from ISO/IEC DTR 18037:
2200 http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1169.pdf)
2202 atomic-type-specifier
2203 _Atomic ( type-name )
2205 Objective-C:
2207 type-specifier:
2208 class-name objc-protocol-refs[opt]
2209 typedef-name objc-protocol-refs
2210 objc-protocol-refs
2213 static void
2214 c_parser_declspecs (c_parser *parser, struct c_declspecs *specs,
2215 bool scspec_ok, bool typespec_ok, bool start_attr_ok,
2216 bool alignspec_ok, bool auto_type_ok,
2217 enum c_lookahead_kind la)
2219 bool attrs_ok = start_attr_ok;
2220 bool seen_type = specs->typespec_kind != ctsk_none;
2222 if (!typespec_ok)
2223 gcc_assert (la == cla_prefer_id);
2225 while (c_parser_next_token_is (parser, CPP_NAME)
2226 || c_parser_next_token_is (parser, CPP_KEYWORD)
2227 || (c_dialect_objc () && c_parser_next_token_is (parser, CPP_LESS)))
2229 struct c_typespec t;
2230 tree attrs;
2231 tree align;
2232 location_t loc = c_parser_peek_token (parser)->location;
2234 /* If we cannot accept a type, exit if the next token must start
2235 one. Also, if we already have seen a tagged definition,
2236 a typename would be an error anyway and likely the user
2237 has simply forgotten a semicolon, so we exit. */
2238 if ((!typespec_ok || specs->typespec_kind == ctsk_tagdef)
2239 && c_parser_next_tokens_start_typename (parser, la)
2240 && !c_parser_next_token_is_qualifier (parser))
2241 break;
2243 if (c_parser_next_token_is (parser, CPP_NAME))
2245 c_token *name_token = c_parser_peek_token (parser);
2246 tree value = name_token->value;
2247 c_id_kind kind = name_token->id_kind;
2249 if (kind == C_ID_ADDRSPACE)
2251 addr_space_t as
2252 = name_token->keyword - RID_FIRST_ADDR_SPACE;
2253 declspecs_add_addrspace (name_token->location, specs, as);
2254 c_parser_consume_token (parser);
2255 attrs_ok = true;
2256 continue;
2259 gcc_assert (!c_parser_next_token_is_qualifier (parser));
2261 /* If we cannot accept a type, and the next token must start one,
2262 exit. Do the same if we already have seen a tagged definition,
2263 since it would be an error anyway and likely the user has simply
2264 forgotten a semicolon. */
2265 if (seen_type || !c_parser_next_tokens_start_typename (parser, la))
2266 break;
2268 /* Now at an unknown typename (C_ID_ID), a C_ID_TYPENAME or
2269 a C_ID_CLASSNAME. */
2270 c_parser_consume_token (parser);
2271 seen_type = true;
2272 attrs_ok = true;
2273 if (kind == C_ID_ID)
2275 error_at (loc, "unknown type name %qE", value);
2276 t.kind = ctsk_typedef;
2277 t.spec = error_mark_node;
2279 else if (kind == C_ID_TYPENAME
2280 && (!c_dialect_objc ()
2281 || c_parser_next_token_is_not (parser, CPP_LESS)))
2283 t.kind = ctsk_typedef;
2284 /* For a typedef name, record the meaning, not the name.
2285 In case of 'foo foo, bar;'. */
2286 t.spec = lookup_name (value);
2288 else
2290 tree proto = NULL_TREE;
2291 gcc_assert (c_dialect_objc ());
2292 t.kind = ctsk_objc;
2293 if (c_parser_next_token_is (parser, CPP_LESS))
2294 proto = c_parser_objc_protocol_refs (parser);
2295 t.spec = objc_get_protocol_qualified_type (value, proto);
2297 t.expr = NULL_TREE;
2298 t.expr_const_operands = true;
2299 declspecs_add_type (name_token->location, specs, t);
2300 continue;
2302 if (c_parser_next_token_is (parser, CPP_LESS))
2304 /* Make "<SomeProtocol>" equivalent to "id <SomeProtocol>" -
2305 nisse@lysator.liu.se. */
2306 tree proto;
2307 gcc_assert (c_dialect_objc ());
2308 if (!typespec_ok || seen_type)
2309 break;
2310 proto = c_parser_objc_protocol_refs (parser);
2311 t.kind = ctsk_objc;
2312 t.spec = objc_get_protocol_qualified_type (NULL_TREE, proto);
2313 t.expr = NULL_TREE;
2314 t.expr_const_operands = true;
2315 declspecs_add_type (loc, specs, t);
2316 continue;
2318 gcc_assert (c_parser_next_token_is (parser, CPP_KEYWORD));
2319 switch (c_parser_peek_token (parser)->keyword)
2321 case RID_STATIC:
2322 case RID_EXTERN:
2323 case RID_REGISTER:
2324 case RID_TYPEDEF:
2325 case RID_INLINE:
2326 case RID_NORETURN:
2327 case RID_AUTO:
2328 case RID_THREAD:
2329 if (!scspec_ok)
2330 goto out;
2331 attrs_ok = true;
2332 /* TODO: Distinguish between function specifiers (inline, noreturn)
2333 and storage class specifiers, either here or in
2334 declspecs_add_scspec. */
2335 declspecs_add_scspec (loc, specs,
2336 c_parser_peek_token (parser)->value);
2337 c_parser_consume_token (parser);
2338 break;
2339 case RID_AUTO_TYPE:
2340 if (!auto_type_ok)
2341 goto out;
2342 /* Fall through. */
2343 case RID_UNSIGNED:
2344 case RID_LONG:
2345 case RID_SHORT:
2346 case RID_SIGNED:
2347 case RID_COMPLEX:
2348 case RID_INT:
2349 case RID_CHAR:
2350 case RID_FLOAT:
2351 case RID_DOUBLE:
2352 case RID_VOID:
2353 case RID_DFLOAT32:
2354 case RID_DFLOAT64:
2355 case RID_DFLOAT128:
2356 case RID_BOOL:
2357 case RID_FRACT:
2358 case RID_ACCUM:
2359 case RID_SAT:
2360 case RID_INT_N_0:
2361 case RID_INT_N_1:
2362 case RID_INT_N_2:
2363 case RID_INT_N_3:
2364 if (!typespec_ok)
2365 goto out;
2366 attrs_ok = true;
2367 seen_type = true;
2368 if (c_dialect_objc ())
2369 parser->objc_need_raw_identifier = true;
2370 t.kind = ctsk_resword;
2371 t.spec = c_parser_peek_token (parser)->value;
2372 t.expr = NULL_TREE;
2373 t.expr_const_operands = true;
2374 declspecs_add_type (loc, specs, t);
2375 c_parser_consume_token (parser);
2376 break;
2377 case RID_ENUM:
2378 if (!typespec_ok)
2379 goto out;
2380 attrs_ok = true;
2381 seen_type = true;
2382 t = c_parser_enum_specifier (parser);
2383 declspecs_add_type (loc, specs, t);
2384 break;
2385 case RID_STRUCT:
2386 case RID_UNION:
2387 if (!typespec_ok)
2388 goto out;
2389 attrs_ok = true;
2390 seen_type = true;
2391 t = c_parser_struct_or_union_specifier (parser);
2392 invoke_plugin_callbacks (PLUGIN_FINISH_TYPE, t.spec);
2393 declspecs_add_type (loc, specs, t);
2394 break;
2395 case RID_TYPEOF:
2396 /* ??? The old parser rejected typeof after other type
2397 specifiers, but is a syntax error the best way of
2398 handling this? */
2399 if (!typespec_ok || seen_type)
2400 goto out;
2401 attrs_ok = true;
2402 seen_type = true;
2403 t = c_parser_typeof_specifier (parser);
2404 declspecs_add_type (loc, specs, t);
2405 break;
2406 case RID_ATOMIC:
2407 /* C parser handling of Objective-C constructs needs
2408 checking for correct lvalue-to-rvalue conversions, and
2409 the code in build_modify_expr handling various
2410 Objective-C cases, and that in build_unary_op handling
2411 Objective-C cases for increment / decrement, also needs
2412 updating; uses of TYPE_MAIN_VARIANT in objc_compare_types
2413 and objc_types_are_equivalent may also need updates. */
2414 if (c_dialect_objc ())
2415 sorry ("%<_Atomic%> in Objective-C");
2416 /* C parser handling of OpenMP constructs needs checking for
2417 correct lvalue-to-rvalue conversions. */
2418 if (flag_openmp)
2419 sorry ("%<_Atomic%> with OpenMP");
2420 if (flag_isoc99)
2421 pedwarn_c99 (loc, OPT_Wpedantic,
2422 "ISO C99 does not support the %<_Atomic%> qualifier");
2423 else
2424 pedwarn_c99 (loc, OPT_Wpedantic,
2425 "ISO C90 does not support the %<_Atomic%> qualifier");
2426 attrs_ok = true;
2427 tree value;
2428 value = c_parser_peek_token (parser)->value;
2429 c_parser_consume_token (parser);
2430 if (typespec_ok && c_parser_next_token_is (parser, CPP_OPEN_PAREN))
2432 /* _Atomic ( type-name ). */
2433 seen_type = true;
2434 c_parser_consume_token (parser);
2435 struct c_type_name *type = c_parser_type_name (parser);
2436 t.kind = ctsk_typeof;
2437 t.spec = error_mark_node;
2438 t.expr = NULL_TREE;
2439 t.expr_const_operands = true;
2440 if (type != NULL)
2441 t.spec = groktypename (type, &t.expr,
2442 &t.expr_const_operands);
2443 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
2444 "expected %<)%>");
2445 if (t.spec != error_mark_node)
2447 if (TREE_CODE (t.spec) == ARRAY_TYPE)
2448 error_at (loc, "%<_Atomic%>-qualified array type");
2449 else if (TREE_CODE (t.spec) == FUNCTION_TYPE)
2450 error_at (loc, "%<_Atomic%>-qualified function type");
2451 else if (TYPE_QUALS (t.spec) != TYPE_UNQUALIFIED)
2452 error_at (loc, "%<_Atomic%> applied to a qualified type");
2453 else
2454 t.spec = c_build_qualified_type (t.spec, TYPE_QUAL_ATOMIC);
2456 declspecs_add_type (loc, specs, t);
2458 else
2459 declspecs_add_qual (loc, specs, value);
2460 break;
2461 case RID_CONST:
2462 case RID_VOLATILE:
2463 case RID_RESTRICT:
2464 attrs_ok = true;
2465 declspecs_add_qual (loc, specs, c_parser_peek_token (parser)->value);
2466 c_parser_consume_token (parser);
2467 break;
2468 case RID_ATTRIBUTE:
2469 if (!attrs_ok)
2470 goto out;
2471 attrs = c_parser_attributes (parser);
2472 declspecs_add_attrs (loc, specs, attrs);
2473 break;
2474 case RID_ALIGNAS:
2475 if (!alignspec_ok)
2476 goto out;
2477 align = c_parser_alignas_specifier (parser);
2478 declspecs_add_alignas (loc, specs, align);
2479 break;
2480 default:
2481 goto out;
2484 out: ;
2487 /* Parse an enum specifier (C90 6.5.2.2, C99 6.7.2.2).
2489 enum-specifier:
2490 enum attributes[opt] identifier[opt] { enumerator-list } attributes[opt]
2491 enum attributes[opt] identifier[opt] { enumerator-list , } attributes[opt]
2492 enum attributes[opt] identifier
2494 The form with trailing comma is new in C99. The forms with
2495 attributes are GNU extensions. In GNU C, we accept any expression
2496 without commas in the syntax (assignment expressions, not just
2497 conditional expressions); assignment expressions will be diagnosed
2498 as non-constant.
2500 enumerator-list:
2501 enumerator
2502 enumerator-list , enumerator
2504 enumerator:
2505 enumeration-constant
2506 enumeration-constant = constant-expression
2509 static struct c_typespec
2510 c_parser_enum_specifier (c_parser *parser)
2512 struct c_typespec ret;
2513 tree attrs;
2514 tree ident = NULL_TREE;
2515 location_t enum_loc;
2516 location_t ident_loc = UNKNOWN_LOCATION; /* Quiet warning. */
2517 gcc_assert (c_parser_next_token_is_keyword (parser, RID_ENUM));
2518 enum_loc = c_parser_peek_token (parser)->location;
2519 c_parser_consume_token (parser);
2520 attrs = c_parser_attributes (parser);
2521 enum_loc = c_parser_peek_token (parser)->location;
2522 /* Set the location in case we create a decl now. */
2523 c_parser_set_source_position_from_token (c_parser_peek_token (parser));
2524 if (c_parser_next_token_is (parser, CPP_NAME))
2526 ident = c_parser_peek_token (parser)->value;
2527 ident_loc = c_parser_peek_token (parser)->location;
2528 enum_loc = ident_loc;
2529 c_parser_consume_token (parser);
2531 if (c_parser_next_token_is (parser, CPP_OPEN_BRACE))
2533 /* Parse an enum definition. */
2534 struct c_enum_contents the_enum;
2535 tree type;
2536 tree postfix_attrs;
2537 /* We chain the enumerators in reverse order, then put them in
2538 forward order at the end. */
2539 tree values;
2540 timevar_push (TV_PARSE_ENUM);
2541 type = start_enum (enum_loc, &the_enum, ident);
2542 values = NULL_TREE;
2543 c_parser_consume_token (parser);
2544 while (true)
2546 tree enum_id;
2547 tree enum_value;
2548 tree enum_decl;
2549 bool seen_comma;
2550 c_token *token;
2551 location_t comma_loc = UNKNOWN_LOCATION; /* Quiet warning. */
2552 location_t decl_loc, value_loc;
2553 if (c_parser_next_token_is_not (parser, CPP_NAME))
2555 c_parser_error (parser, "expected identifier");
2556 c_parser_skip_until_found (parser, CPP_CLOSE_BRACE, NULL);
2557 values = error_mark_node;
2558 break;
2560 token = c_parser_peek_token (parser);
2561 enum_id = token->value;
2562 /* Set the location in case we create a decl now. */
2563 c_parser_set_source_position_from_token (token);
2564 decl_loc = value_loc = token->location;
2565 c_parser_consume_token (parser);
2566 if (c_parser_next_token_is (parser, CPP_EQ))
2568 c_parser_consume_token (parser);
2569 value_loc = c_parser_peek_token (parser)->location;
2570 enum_value = c_parser_expr_no_commas (parser, NULL).value;
2572 else
2573 enum_value = NULL_TREE;
2574 enum_decl = build_enumerator (decl_loc, value_loc,
2575 &the_enum, enum_id, enum_value);
2576 TREE_CHAIN (enum_decl) = values;
2577 values = enum_decl;
2578 seen_comma = false;
2579 if (c_parser_next_token_is (parser, CPP_COMMA))
2581 comma_loc = c_parser_peek_token (parser)->location;
2582 seen_comma = true;
2583 c_parser_consume_token (parser);
2585 if (c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
2587 if (seen_comma)
2588 pedwarn_c90 (comma_loc, OPT_Wpedantic,
2589 "comma at end of enumerator list");
2590 c_parser_consume_token (parser);
2591 break;
2593 if (!seen_comma)
2595 c_parser_error (parser, "expected %<,%> or %<}%>");
2596 c_parser_skip_until_found (parser, CPP_CLOSE_BRACE, NULL);
2597 values = error_mark_node;
2598 break;
2601 postfix_attrs = c_parser_attributes (parser);
2602 ret.spec = finish_enum (type, nreverse (values),
2603 chainon (attrs, postfix_attrs));
2604 ret.kind = ctsk_tagdef;
2605 ret.expr = NULL_TREE;
2606 ret.expr_const_operands = true;
2607 timevar_pop (TV_PARSE_ENUM);
2608 return ret;
2610 else if (!ident)
2612 c_parser_error (parser, "expected %<{%>");
2613 ret.spec = error_mark_node;
2614 ret.kind = ctsk_tagref;
2615 ret.expr = NULL_TREE;
2616 ret.expr_const_operands = true;
2617 return ret;
2619 ret = parser_xref_tag (ident_loc, ENUMERAL_TYPE, ident);
2620 /* In ISO C, enumerated types can be referred to only if already
2621 defined. */
2622 if (pedantic && !COMPLETE_TYPE_P (ret.spec))
2624 gcc_assert (ident);
2625 pedwarn (enum_loc, OPT_Wpedantic,
2626 "ISO C forbids forward references to %<enum%> types");
2628 return ret;
2631 /* Parse a struct or union specifier (C90 6.5.2.1, C99 6.7.2.1).
2633 struct-or-union-specifier:
2634 struct-or-union attributes[opt] identifier[opt]
2635 { struct-contents } attributes[opt]
2636 struct-or-union attributes[opt] identifier
2638 struct-contents:
2639 struct-declaration-list
2641 struct-declaration-list:
2642 struct-declaration ;
2643 struct-declaration-list struct-declaration ;
2645 GNU extensions:
2647 struct-contents:
2648 empty
2649 struct-declaration
2650 struct-declaration-list struct-declaration
2652 struct-declaration-list:
2653 struct-declaration-list ;
2656 (Note that in the syntax here, unlike that in ISO C, the semicolons
2657 are included here rather than in struct-declaration, in order to
2658 describe the syntax with extra semicolons and missing semicolon at
2659 end.)
2661 Objective-C:
2663 struct-declaration-list:
2664 @defs ( class-name )
2666 (Note this does not include a trailing semicolon, but can be
2667 followed by further declarations, and gets a pedwarn-if-pedantic
2668 when followed by a semicolon.) */
2670 static struct c_typespec
2671 c_parser_struct_or_union_specifier (c_parser *parser)
2673 struct c_typespec ret;
2674 tree attrs;
2675 tree ident = NULL_TREE;
2676 location_t struct_loc;
2677 location_t ident_loc = UNKNOWN_LOCATION;
2678 enum tree_code code;
2679 switch (c_parser_peek_token (parser)->keyword)
2681 case RID_STRUCT:
2682 code = RECORD_TYPE;
2683 break;
2684 case RID_UNION:
2685 code = UNION_TYPE;
2686 break;
2687 default:
2688 gcc_unreachable ();
2690 struct_loc = c_parser_peek_token (parser)->location;
2691 c_parser_consume_token (parser);
2692 attrs = c_parser_attributes (parser);
2694 /* Set the location in case we create a decl now. */
2695 c_parser_set_source_position_from_token (c_parser_peek_token (parser));
2697 if (c_parser_next_token_is (parser, CPP_NAME))
2699 ident = c_parser_peek_token (parser)->value;
2700 ident_loc = c_parser_peek_token (parser)->location;
2701 struct_loc = ident_loc;
2702 c_parser_consume_token (parser);
2704 if (c_parser_next_token_is (parser, CPP_OPEN_BRACE))
2706 /* Parse a struct or union definition. Start the scope of the
2707 tag before parsing components. */
2708 struct c_struct_parse_info *struct_info;
2709 tree type = start_struct (struct_loc, code, ident, &struct_info);
2710 tree postfix_attrs;
2711 /* We chain the components in reverse order, then put them in
2712 forward order at the end. Each struct-declaration may
2713 declare multiple components (comma-separated), so we must use
2714 chainon to join them, although when parsing each
2715 struct-declaration we can use TREE_CHAIN directly.
2717 The theory behind all this is that there will be more
2718 semicolon separated fields than comma separated fields, and
2719 so we'll be minimizing the number of node traversals required
2720 by chainon. */
2721 tree contents;
2722 timevar_push (TV_PARSE_STRUCT);
2723 contents = NULL_TREE;
2724 c_parser_consume_token (parser);
2725 /* Handle the Objective-C @defs construct,
2726 e.g. foo(sizeof(struct{ @defs(ClassName) }));. */
2727 if (c_parser_next_token_is_keyword (parser, RID_AT_DEFS))
2729 tree name;
2730 gcc_assert (c_dialect_objc ());
2731 c_parser_consume_token (parser);
2732 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
2733 goto end_at_defs;
2734 if (c_parser_next_token_is (parser, CPP_NAME)
2735 && c_parser_peek_token (parser)->id_kind == C_ID_CLASSNAME)
2737 name = c_parser_peek_token (parser)->value;
2738 c_parser_consume_token (parser);
2740 else
2742 c_parser_error (parser, "expected class name");
2743 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
2744 goto end_at_defs;
2746 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
2747 "expected %<)%>");
2748 contents = nreverse (objc_get_class_ivars (name));
2750 end_at_defs:
2751 /* Parse the struct-declarations and semicolons. Problems with
2752 semicolons are diagnosed here; empty structures are diagnosed
2753 elsewhere. */
2754 while (true)
2756 tree decls;
2757 /* Parse any stray semicolon. */
2758 if (c_parser_next_token_is (parser, CPP_SEMICOLON))
2760 pedwarn (c_parser_peek_token (parser)->location, OPT_Wpedantic,
2761 "extra semicolon in struct or union specified");
2762 c_parser_consume_token (parser);
2763 continue;
2765 /* Stop if at the end of the struct or union contents. */
2766 if (c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
2768 c_parser_consume_token (parser);
2769 break;
2771 /* Accept #pragmas at struct scope. */
2772 if (c_parser_next_token_is (parser, CPP_PRAGMA))
2774 c_parser_pragma (parser, pragma_struct);
2775 continue;
2777 /* Parse some comma-separated declarations, but not the
2778 trailing semicolon if any. */
2779 decls = c_parser_struct_declaration (parser);
2780 contents = chainon (decls, contents);
2781 /* If no semicolon follows, either we have a parse error or
2782 are at the end of the struct or union and should
2783 pedwarn. */
2784 if (c_parser_next_token_is (parser, CPP_SEMICOLON))
2785 c_parser_consume_token (parser);
2786 else
2788 if (c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
2789 pedwarn (c_parser_peek_token (parser)->location, 0,
2790 "no semicolon at end of struct or union");
2791 else if (parser->error
2792 || !c_parser_next_token_starts_declspecs (parser))
2794 c_parser_error (parser, "expected %<;%>");
2795 c_parser_skip_until_found (parser, CPP_CLOSE_BRACE, NULL);
2796 break;
2799 /* If we come here, we have already emitted an error
2800 for an expected `;', identifier or `(', and we also
2801 recovered already. Go on with the next field. */
2804 postfix_attrs = c_parser_attributes (parser);
2805 ret.spec = finish_struct (struct_loc, type, nreverse (contents),
2806 chainon (attrs, postfix_attrs), struct_info);
2807 ret.kind = ctsk_tagdef;
2808 ret.expr = NULL_TREE;
2809 ret.expr_const_operands = true;
2810 timevar_pop (TV_PARSE_STRUCT);
2811 return ret;
2813 else if (!ident)
2815 c_parser_error (parser, "expected %<{%>");
2816 ret.spec = error_mark_node;
2817 ret.kind = ctsk_tagref;
2818 ret.expr = NULL_TREE;
2819 ret.expr_const_operands = true;
2820 return ret;
2822 ret = parser_xref_tag (ident_loc, code, ident);
2823 return ret;
2826 /* Parse a struct-declaration (C90 6.5.2.1, C99 6.7.2.1), *without*
2827 the trailing semicolon.
2829 struct-declaration:
2830 specifier-qualifier-list struct-declarator-list
2831 static_assert-declaration-no-semi
2833 specifier-qualifier-list:
2834 type-specifier specifier-qualifier-list[opt]
2835 type-qualifier specifier-qualifier-list[opt]
2836 attributes specifier-qualifier-list[opt]
2838 struct-declarator-list:
2839 struct-declarator
2840 struct-declarator-list , attributes[opt] struct-declarator
2842 struct-declarator:
2843 declarator attributes[opt]
2844 declarator[opt] : constant-expression attributes[opt]
2846 GNU extensions:
2848 struct-declaration:
2849 __extension__ struct-declaration
2850 specifier-qualifier-list
2852 Unlike the ISO C syntax, semicolons are handled elsewhere. The use
2853 of attributes where shown is a GNU extension. In GNU C, we accept
2854 any expression without commas in the syntax (assignment
2855 expressions, not just conditional expressions); assignment
2856 expressions will be diagnosed as non-constant. */
2858 static tree
2859 c_parser_struct_declaration (c_parser *parser)
2861 struct c_declspecs *specs;
2862 tree prefix_attrs;
2863 tree all_prefix_attrs;
2864 tree decls;
2865 location_t decl_loc;
2866 if (c_parser_next_token_is_keyword (parser, RID_EXTENSION))
2868 int ext;
2869 tree decl;
2870 ext = disable_extension_diagnostics ();
2871 c_parser_consume_token (parser);
2872 decl = c_parser_struct_declaration (parser);
2873 restore_extension_diagnostics (ext);
2874 return decl;
2876 if (c_parser_next_token_is_keyword (parser, RID_STATIC_ASSERT))
2878 c_parser_static_assert_declaration_no_semi (parser);
2879 return NULL_TREE;
2881 specs = build_null_declspecs ();
2882 decl_loc = c_parser_peek_token (parser)->location;
2883 /* Strictly by the standard, we shouldn't allow _Alignas here,
2884 but it appears to have been intended to allow it there, so
2885 we're keeping it as it is until WG14 reaches a conclusion
2886 of N1731.
2887 <http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1731.pdf> */
2888 c_parser_declspecs (parser, specs, false, true, true,
2889 true, false, cla_nonabstract_decl);
2890 if (parser->error)
2891 return NULL_TREE;
2892 if (!specs->declspecs_seen_p)
2894 c_parser_error (parser, "expected specifier-qualifier-list");
2895 return NULL_TREE;
2897 finish_declspecs (specs);
2898 if (c_parser_next_token_is (parser, CPP_SEMICOLON)
2899 || c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
2901 tree ret;
2902 if (specs->typespec_kind == ctsk_none)
2904 pedwarn (decl_loc, OPT_Wpedantic,
2905 "ISO C forbids member declarations with no members");
2906 shadow_tag_warned (specs, pedantic);
2907 ret = NULL_TREE;
2909 else
2911 /* Support for unnamed structs or unions as members of
2912 structs or unions (which is [a] useful and [b] supports
2913 MS P-SDK). */
2914 tree attrs = NULL;
2916 ret = grokfield (c_parser_peek_token (parser)->location,
2917 build_id_declarator (NULL_TREE), specs,
2918 NULL_TREE, &attrs);
2919 if (ret)
2920 decl_attributes (&ret, attrs, 0);
2922 return ret;
2925 /* Provide better error recovery. Note that a type name here is valid,
2926 and will be treated as a field name. */
2927 if (specs->typespec_kind == ctsk_tagdef
2928 && TREE_CODE (specs->type) != ENUMERAL_TYPE
2929 && c_parser_next_token_starts_declspecs (parser)
2930 && !c_parser_next_token_is (parser, CPP_NAME))
2932 c_parser_error (parser, "expected %<;%>, identifier or %<(%>");
2933 parser->error = false;
2934 return NULL_TREE;
2937 pending_xref_error ();
2938 prefix_attrs = specs->attrs;
2939 all_prefix_attrs = prefix_attrs;
2940 specs->attrs = NULL_TREE;
2941 decls = NULL_TREE;
2942 while (true)
2944 /* Declaring one or more declarators or un-named bit-fields. */
2945 struct c_declarator *declarator;
2946 bool dummy = false;
2947 if (c_parser_next_token_is (parser, CPP_COLON))
2948 declarator = build_id_declarator (NULL_TREE);
2949 else
2950 declarator = c_parser_declarator (parser,
2951 specs->typespec_kind != ctsk_none,
2952 C_DTR_NORMAL, &dummy);
2953 if (declarator == NULL)
2955 c_parser_skip_to_end_of_block_or_statement (parser);
2956 break;
2958 if (c_parser_next_token_is (parser, CPP_COLON)
2959 || c_parser_next_token_is (parser, CPP_COMMA)
2960 || c_parser_next_token_is (parser, CPP_SEMICOLON)
2961 || c_parser_next_token_is (parser, CPP_CLOSE_BRACE)
2962 || c_parser_next_token_is_keyword (parser, RID_ATTRIBUTE))
2964 tree postfix_attrs = NULL_TREE;
2965 tree width = NULL_TREE;
2966 tree d;
2967 if (c_parser_next_token_is (parser, CPP_COLON))
2969 c_parser_consume_token (parser);
2970 width = c_parser_expr_no_commas (parser, NULL).value;
2972 if (c_parser_next_token_is_keyword (parser, RID_ATTRIBUTE))
2973 postfix_attrs = c_parser_attributes (parser);
2974 d = grokfield (c_parser_peek_token (parser)->location,
2975 declarator, specs, width, &all_prefix_attrs);
2976 decl_attributes (&d, chainon (postfix_attrs,
2977 all_prefix_attrs), 0);
2978 DECL_CHAIN (d) = decls;
2979 decls = d;
2980 if (c_parser_next_token_is_keyword (parser, RID_ATTRIBUTE))
2981 all_prefix_attrs = chainon (c_parser_attributes (parser),
2982 prefix_attrs);
2983 else
2984 all_prefix_attrs = prefix_attrs;
2985 if (c_parser_next_token_is (parser, CPP_COMMA))
2986 c_parser_consume_token (parser);
2987 else if (c_parser_next_token_is (parser, CPP_SEMICOLON)
2988 || c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
2990 /* Semicolon consumed in caller. */
2991 break;
2993 else
2995 c_parser_error (parser, "expected %<,%>, %<;%> or %<}%>");
2996 break;
2999 else
3001 c_parser_error (parser,
3002 "expected %<:%>, %<,%>, %<;%>, %<}%> or "
3003 "%<__attribute__%>");
3004 break;
3007 return decls;
3010 /* Parse a typeof specifier (a GNU extension).
3012 typeof-specifier:
3013 typeof ( expression )
3014 typeof ( type-name )
3017 static struct c_typespec
3018 c_parser_typeof_specifier (c_parser *parser)
3020 struct c_typespec ret;
3021 ret.kind = ctsk_typeof;
3022 ret.spec = error_mark_node;
3023 ret.expr = NULL_TREE;
3024 ret.expr_const_operands = true;
3025 gcc_assert (c_parser_next_token_is_keyword (parser, RID_TYPEOF));
3026 c_parser_consume_token (parser);
3027 c_inhibit_evaluation_warnings++;
3028 in_typeof++;
3029 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
3031 c_inhibit_evaluation_warnings--;
3032 in_typeof--;
3033 return ret;
3035 if (c_parser_next_tokens_start_typename (parser, cla_prefer_id))
3037 struct c_type_name *type = c_parser_type_name (parser);
3038 c_inhibit_evaluation_warnings--;
3039 in_typeof--;
3040 if (type != NULL)
3042 ret.spec = groktypename (type, &ret.expr, &ret.expr_const_operands);
3043 pop_maybe_used (variably_modified_type_p (ret.spec, NULL_TREE));
3046 else
3048 bool was_vm;
3049 location_t here = c_parser_peek_token (parser)->location;
3050 struct c_expr expr = c_parser_expression (parser);
3051 c_inhibit_evaluation_warnings--;
3052 in_typeof--;
3053 if (TREE_CODE (expr.value) == COMPONENT_REF
3054 && DECL_C_BIT_FIELD (TREE_OPERAND (expr.value, 1)))
3055 error_at (here, "%<typeof%> applied to a bit-field");
3056 mark_exp_read (expr.value);
3057 ret.spec = TREE_TYPE (expr.value);
3058 was_vm = variably_modified_type_p (ret.spec, NULL_TREE);
3059 /* This is returned with the type so that when the type is
3060 evaluated, this can be evaluated. */
3061 if (was_vm)
3062 ret.expr = c_fully_fold (expr.value, false, &ret.expr_const_operands);
3063 pop_maybe_used (was_vm);
3064 /* For use in macros such as those in <stdatomic.h>, remove all
3065 qualifiers from atomic types. (const can be an issue for more macros
3066 using typeof than just the <stdatomic.h> ones.) */
3067 if (ret.spec != error_mark_node && TYPE_ATOMIC (ret.spec))
3068 ret.spec = c_build_qualified_type (ret.spec, TYPE_UNQUALIFIED);
3070 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
3071 return ret;
3074 /* Parse an alignment-specifier.
3076 C11 6.7.5:
3078 alignment-specifier:
3079 _Alignas ( type-name )
3080 _Alignas ( constant-expression )
3083 static tree
3084 c_parser_alignas_specifier (c_parser * parser)
3086 tree ret = error_mark_node;
3087 location_t loc = c_parser_peek_token (parser)->location;
3088 gcc_assert (c_parser_next_token_is_keyword (parser, RID_ALIGNAS));
3089 c_parser_consume_token (parser);
3090 if (flag_isoc99)
3091 pedwarn_c99 (loc, OPT_Wpedantic,
3092 "ISO C99 does not support %<_Alignas%>");
3093 else
3094 pedwarn_c99 (loc, OPT_Wpedantic,
3095 "ISO C90 does not support %<_Alignas%>");
3096 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
3097 return ret;
3098 if (c_parser_next_tokens_start_typename (parser, cla_prefer_id))
3100 struct c_type_name *type = c_parser_type_name (parser);
3101 if (type != NULL)
3102 ret = c_sizeof_or_alignof_type (loc, groktypename (type, NULL, NULL),
3103 false, true, 1);
3105 else
3106 ret = c_parser_expr_no_commas (parser, NULL).value;
3107 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
3108 return ret;
3111 /* Parse a declarator, possibly an abstract declarator (C90 6.5.4,
3112 6.5.5, C99 6.7.5, 6.7.6). If TYPE_SEEN_P then a typedef name may
3113 be redeclared; otherwise it may not. KIND indicates which kind of
3114 declarator is wanted. Returns a valid declarator except in the
3115 case of a syntax error in which case NULL is returned. *SEEN_ID is
3116 set to true if an identifier being declared is seen; this is used
3117 to diagnose bad forms of abstract array declarators and to
3118 determine whether an identifier list is syntactically permitted.
3120 declarator:
3121 pointer[opt] direct-declarator
3123 direct-declarator:
3124 identifier
3125 ( attributes[opt] declarator )
3126 direct-declarator array-declarator
3127 direct-declarator ( parameter-type-list )
3128 direct-declarator ( identifier-list[opt] )
3130 pointer:
3131 * type-qualifier-list[opt]
3132 * type-qualifier-list[opt] pointer
3134 type-qualifier-list:
3135 type-qualifier
3136 attributes
3137 type-qualifier-list type-qualifier
3138 type-qualifier-list attributes
3140 array-declarator:
3141 [ type-qualifier-list[opt] assignment-expression[opt] ]
3142 [ static type-qualifier-list[opt] assignment-expression ]
3143 [ type-qualifier-list static assignment-expression ]
3144 [ type-qualifier-list[opt] * ]
3146 parameter-type-list:
3147 parameter-list
3148 parameter-list , ...
3150 parameter-list:
3151 parameter-declaration
3152 parameter-list , parameter-declaration
3154 parameter-declaration:
3155 declaration-specifiers declarator attributes[opt]
3156 declaration-specifiers abstract-declarator[opt] attributes[opt]
3158 identifier-list:
3159 identifier
3160 identifier-list , identifier
3162 abstract-declarator:
3163 pointer
3164 pointer[opt] direct-abstract-declarator
3166 direct-abstract-declarator:
3167 ( attributes[opt] abstract-declarator )
3168 direct-abstract-declarator[opt] array-declarator
3169 direct-abstract-declarator[opt] ( parameter-type-list[opt] )
3171 GNU extensions:
3173 direct-declarator:
3174 direct-declarator ( parameter-forward-declarations
3175 parameter-type-list[opt] )
3177 direct-abstract-declarator:
3178 direct-abstract-declarator[opt] ( parameter-forward-declarations
3179 parameter-type-list[opt] )
3181 parameter-forward-declarations:
3182 parameter-list ;
3183 parameter-forward-declarations parameter-list ;
3185 The uses of attributes shown above are GNU extensions.
3187 Some forms of array declarator are not included in C99 in the
3188 syntax for abstract declarators; these are disallowed elsewhere.
3189 This may be a defect (DR#289).
3191 This function also accepts an omitted abstract declarator as being
3192 an abstract declarator, although not part of the formal syntax. */
3194 static struct c_declarator *
3195 c_parser_declarator (c_parser *parser, bool type_seen_p, c_dtr_syn kind,
3196 bool *seen_id)
3198 /* Parse any initial pointer part. */
3199 if (c_parser_next_token_is (parser, CPP_MULT))
3201 struct c_declspecs *quals_attrs = build_null_declspecs ();
3202 struct c_declarator *inner;
3203 c_parser_consume_token (parser);
3204 c_parser_declspecs (parser, quals_attrs, false, false, true,
3205 false, false, cla_prefer_id);
3206 inner = c_parser_declarator (parser, type_seen_p, kind, seen_id);
3207 if (inner == NULL)
3208 return NULL;
3209 else
3210 return make_pointer_declarator (quals_attrs, inner);
3212 /* Now we have a direct declarator, direct abstract declarator or
3213 nothing (which counts as a direct abstract declarator here). */
3214 return c_parser_direct_declarator (parser, type_seen_p, kind, seen_id);
3217 /* Parse a direct declarator or direct abstract declarator; arguments
3218 as c_parser_declarator. */
3220 static struct c_declarator *
3221 c_parser_direct_declarator (c_parser *parser, bool type_seen_p, c_dtr_syn kind,
3222 bool *seen_id)
3224 /* The direct declarator must start with an identifier (possibly
3225 omitted) or a parenthesized declarator (possibly abstract). In
3226 an ordinary declarator, initial parentheses must start a
3227 parenthesized declarator. In an abstract declarator or parameter
3228 declarator, they could start a parenthesized declarator or a
3229 parameter list. To tell which, the open parenthesis and any
3230 following attributes must be read. If a declaration specifier
3231 follows, then it is a parameter list; if the specifier is a
3232 typedef name, there might be an ambiguity about redeclaring it,
3233 which is resolved in the direction of treating it as a typedef
3234 name. If a close parenthesis follows, it is also an empty
3235 parameter list, as the syntax does not permit empty abstract
3236 declarators. Otherwise, it is a parenthesized declarator (in
3237 which case the analysis may be repeated inside it, recursively).
3239 ??? There is an ambiguity in a parameter declaration "int
3240 (__attribute__((foo)) x)", where x is not a typedef name: it
3241 could be an abstract declarator for a function, or declare x with
3242 parentheses. The proper resolution of this ambiguity needs
3243 documenting. At present we follow an accident of the old
3244 parser's implementation, whereby the first parameter must have
3245 some declaration specifiers other than just attributes. Thus as
3246 a parameter declaration it is treated as a parenthesized
3247 parameter named x, and as an abstract declarator it is
3248 rejected.
3250 ??? Also following the old parser, attributes inside an empty
3251 parameter list are ignored, making it a list not yielding a
3252 prototype, rather than giving an error or making it have one
3253 parameter with implicit type int.
3255 ??? Also following the old parser, typedef names may be
3256 redeclared in declarators, but not Objective-C class names. */
3258 if (kind != C_DTR_ABSTRACT
3259 && c_parser_next_token_is (parser, CPP_NAME)
3260 && ((type_seen_p
3261 && (c_parser_peek_token (parser)->id_kind == C_ID_TYPENAME
3262 || c_parser_peek_token (parser)->id_kind == C_ID_CLASSNAME))
3263 || c_parser_peek_token (parser)->id_kind == C_ID_ID))
3265 struct c_declarator *inner
3266 = build_id_declarator (c_parser_peek_token (parser)->value);
3267 *seen_id = true;
3268 inner->id_loc = c_parser_peek_token (parser)->location;
3269 c_parser_consume_token (parser);
3270 return c_parser_direct_declarator_inner (parser, *seen_id, inner);
3273 if (kind != C_DTR_NORMAL
3274 && c_parser_next_token_is (parser, CPP_OPEN_SQUARE))
3276 struct c_declarator *inner = build_id_declarator (NULL_TREE);
3277 return c_parser_direct_declarator_inner (parser, *seen_id, inner);
3280 /* Either we are at the end of an abstract declarator, or we have
3281 parentheses. */
3283 if (c_parser_next_token_is (parser, CPP_OPEN_PAREN))
3285 tree attrs;
3286 struct c_declarator *inner;
3287 c_parser_consume_token (parser);
3288 attrs = c_parser_attributes (parser);
3289 if (kind != C_DTR_NORMAL
3290 && (c_parser_next_token_starts_declspecs (parser)
3291 || c_parser_next_token_is (parser, CPP_CLOSE_PAREN)))
3293 struct c_arg_info *args
3294 = c_parser_parms_declarator (parser, kind == C_DTR_NORMAL,
3295 attrs);
3296 if (args == NULL)
3297 return NULL;
3298 else
3300 inner
3301 = build_function_declarator (args,
3302 build_id_declarator (NULL_TREE));
3303 return c_parser_direct_declarator_inner (parser, *seen_id,
3304 inner);
3307 /* A parenthesized declarator. */
3308 inner = c_parser_declarator (parser, type_seen_p, kind, seen_id);
3309 if (inner != NULL && attrs != NULL)
3310 inner = build_attrs_declarator (attrs, inner);
3311 if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
3313 c_parser_consume_token (parser);
3314 if (inner == NULL)
3315 return NULL;
3316 else
3317 return c_parser_direct_declarator_inner (parser, *seen_id, inner);
3319 else
3321 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
3322 "expected %<)%>");
3323 return NULL;
3326 else
3328 if (kind == C_DTR_NORMAL)
3330 c_parser_error (parser, "expected identifier or %<(%>");
3331 return NULL;
3333 else
3334 return build_id_declarator (NULL_TREE);
3338 /* Parse part of a direct declarator or direct abstract declarator,
3339 given that some (in INNER) has already been parsed; ID_PRESENT is
3340 true if an identifier is present, false for an abstract
3341 declarator. */
3343 static struct c_declarator *
3344 c_parser_direct_declarator_inner (c_parser *parser, bool id_present,
3345 struct c_declarator *inner)
3347 /* Parse a sequence of array declarators and parameter lists. */
3348 if (c_parser_next_token_is (parser, CPP_OPEN_SQUARE))
3350 location_t brace_loc = c_parser_peek_token (parser)->location;
3351 struct c_declarator *declarator;
3352 struct c_declspecs *quals_attrs = build_null_declspecs ();
3353 bool static_seen;
3354 bool star_seen;
3355 struct c_expr dimen;
3356 dimen.value = NULL_TREE;
3357 dimen.original_code = ERROR_MARK;
3358 dimen.original_type = NULL_TREE;
3359 c_parser_consume_token (parser);
3360 c_parser_declspecs (parser, quals_attrs, false, false, true,
3361 false, false, cla_prefer_id);
3362 static_seen = c_parser_next_token_is_keyword (parser, RID_STATIC);
3363 if (static_seen)
3364 c_parser_consume_token (parser);
3365 if (static_seen && !quals_attrs->declspecs_seen_p)
3366 c_parser_declspecs (parser, quals_attrs, false, false, true,
3367 false, false, cla_prefer_id);
3368 if (!quals_attrs->declspecs_seen_p)
3369 quals_attrs = NULL;
3370 /* If "static" is present, there must be an array dimension.
3371 Otherwise, there may be a dimension, "*", or no
3372 dimension. */
3373 if (static_seen)
3375 star_seen = false;
3376 dimen = c_parser_expr_no_commas (parser, NULL);
3378 else
3380 if (c_parser_next_token_is (parser, CPP_CLOSE_SQUARE))
3382 dimen.value = NULL_TREE;
3383 star_seen = false;
3385 else if (flag_cilkplus
3386 && c_parser_next_token_is (parser, CPP_COLON))
3388 dimen.value = error_mark_node;
3389 star_seen = false;
3390 error_at (c_parser_peek_token (parser)->location,
3391 "array notations cannot be used in declaration");
3392 c_parser_consume_token (parser);
3394 else if (c_parser_next_token_is (parser, CPP_MULT))
3396 if (c_parser_peek_2nd_token (parser)->type == CPP_CLOSE_SQUARE)
3398 dimen.value = NULL_TREE;
3399 star_seen = true;
3400 c_parser_consume_token (parser);
3402 else
3404 star_seen = false;
3405 dimen = c_parser_expr_no_commas (parser, NULL);
3408 else
3410 star_seen = false;
3411 dimen = c_parser_expr_no_commas (parser, NULL);
3414 if (c_parser_next_token_is (parser, CPP_CLOSE_SQUARE))
3415 c_parser_consume_token (parser);
3416 else if (flag_cilkplus
3417 && c_parser_next_token_is (parser, CPP_COLON))
3419 error_at (c_parser_peek_token (parser)->location,
3420 "array notations cannot be used in declaration");
3421 c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE, NULL);
3422 return NULL;
3424 else
3426 c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE,
3427 "expected %<]%>");
3428 return NULL;
3430 if (dimen.value)
3431 dimen = convert_lvalue_to_rvalue (brace_loc, dimen, true, true);
3432 declarator = build_array_declarator (brace_loc, dimen.value, quals_attrs,
3433 static_seen, star_seen);
3434 if (declarator == NULL)
3435 return NULL;
3436 inner = set_array_declarator_inner (declarator, inner);
3437 return c_parser_direct_declarator_inner (parser, id_present, inner);
3439 else if (c_parser_next_token_is (parser, CPP_OPEN_PAREN))
3441 tree attrs;
3442 struct c_arg_info *args;
3443 c_parser_consume_token (parser);
3444 attrs = c_parser_attributes (parser);
3445 args = c_parser_parms_declarator (parser, id_present, attrs);
3446 if (args == NULL)
3447 return NULL;
3448 else
3450 inner = build_function_declarator (args, inner);
3451 return c_parser_direct_declarator_inner (parser, id_present, inner);
3454 return inner;
3457 /* Parse a parameter list or identifier list, including the closing
3458 parenthesis but not the opening one. ATTRS are the attributes at
3459 the start of the list. ID_LIST_OK is true if an identifier list is
3460 acceptable; such a list must not have attributes at the start. */
3462 static struct c_arg_info *
3463 c_parser_parms_declarator (c_parser *parser, bool id_list_ok, tree attrs)
3465 push_scope ();
3466 declare_parm_level ();
3467 /* If the list starts with an identifier, it is an identifier list.
3468 Otherwise, it is either a prototype list or an empty list. */
3469 if (id_list_ok
3470 && !attrs
3471 && c_parser_next_token_is (parser, CPP_NAME)
3472 && c_parser_peek_token (parser)->id_kind == C_ID_ID
3474 /* Look ahead to detect typos in type names. */
3475 && c_parser_peek_2nd_token (parser)->type != CPP_NAME
3476 && c_parser_peek_2nd_token (parser)->type != CPP_MULT
3477 && c_parser_peek_2nd_token (parser)->type != CPP_OPEN_PAREN
3478 && c_parser_peek_2nd_token (parser)->type != CPP_OPEN_SQUARE)
3480 tree list = NULL_TREE, *nextp = &list;
3481 while (c_parser_next_token_is (parser, CPP_NAME)
3482 && c_parser_peek_token (parser)->id_kind == C_ID_ID)
3484 *nextp = build_tree_list (NULL_TREE,
3485 c_parser_peek_token (parser)->value);
3486 nextp = & TREE_CHAIN (*nextp);
3487 c_parser_consume_token (parser);
3488 if (c_parser_next_token_is_not (parser, CPP_COMMA))
3489 break;
3490 c_parser_consume_token (parser);
3491 if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
3493 c_parser_error (parser, "expected identifier");
3494 break;
3497 if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
3499 struct c_arg_info *ret = build_arg_info ();
3500 ret->types = list;
3501 c_parser_consume_token (parser);
3502 pop_scope ();
3503 return ret;
3505 else
3507 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
3508 "expected %<)%>");
3509 pop_scope ();
3510 return NULL;
3513 else
3515 struct c_arg_info *ret = c_parser_parms_list_declarator (parser, attrs,
3516 NULL);
3517 pop_scope ();
3518 return ret;
3522 /* Parse a parameter list (possibly empty), including the closing
3523 parenthesis but not the opening one. ATTRS are the attributes at
3524 the start of the list. EXPR is NULL or an expression that needs to
3525 be evaluated for the side effects of array size expressions in the
3526 parameters. */
3528 static struct c_arg_info *
3529 c_parser_parms_list_declarator (c_parser *parser, tree attrs, tree expr)
3531 bool bad_parm = false;
3533 /* ??? Following the old parser, forward parameter declarations may
3534 use abstract declarators, and if no real parameter declarations
3535 follow the forward declarations then this is not diagnosed. Also
3536 note as above that attributes are ignored as the only contents of
3537 the parentheses, or as the only contents after forward
3538 declarations. */
3539 if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
3541 struct c_arg_info *ret = build_arg_info ();
3542 c_parser_consume_token (parser);
3543 return ret;
3545 if (c_parser_next_token_is (parser, CPP_ELLIPSIS))
3547 struct c_arg_info *ret = build_arg_info ();
3549 if (flag_allow_parameterless_variadic_functions)
3551 /* F (...) is allowed. */
3552 ret->types = NULL_TREE;
3554 else
3556 /* Suppress -Wold-style-definition for this case. */
3557 ret->types = error_mark_node;
3558 error_at (c_parser_peek_token (parser)->location,
3559 "ISO C requires a named argument before %<...%>");
3561 c_parser_consume_token (parser);
3562 if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
3564 c_parser_consume_token (parser);
3565 return ret;
3567 else
3569 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
3570 "expected %<)%>");
3571 return NULL;
3574 /* Nonempty list of parameters, either terminated with semicolon
3575 (forward declarations; recurse) or with close parenthesis (normal
3576 function) or with ", ... )" (variadic function). */
3577 while (true)
3579 /* Parse a parameter. */
3580 struct c_parm *parm = c_parser_parameter_declaration (parser, attrs);
3581 attrs = NULL_TREE;
3582 if (parm == NULL)
3583 bad_parm = true;
3584 else
3585 push_parm_decl (parm, &expr);
3586 if (c_parser_next_token_is (parser, CPP_SEMICOLON))
3588 tree new_attrs;
3589 c_parser_consume_token (parser);
3590 mark_forward_parm_decls ();
3591 new_attrs = c_parser_attributes (parser);
3592 return c_parser_parms_list_declarator (parser, new_attrs, expr);
3594 if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
3596 c_parser_consume_token (parser);
3597 if (bad_parm)
3598 return NULL;
3599 else
3600 return get_parm_info (false, expr);
3602 if (!c_parser_require (parser, CPP_COMMA,
3603 "expected %<;%>, %<,%> or %<)%>"))
3605 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
3606 return NULL;
3608 if (c_parser_next_token_is (parser, CPP_ELLIPSIS))
3610 c_parser_consume_token (parser);
3611 if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
3613 c_parser_consume_token (parser);
3614 if (bad_parm)
3615 return NULL;
3616 else
3617 return get_parm_info (true, expr);
3619 else
3621 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
3622 "expected %<)%>");
3623 return NULL;
3629 /* Parse a parameter declaration. ATTRS are the attributes at the
3630 start of the declaration if it is the first parameter. */
3632 static struct c_parm *
3633 c_parser_parameter_declaration (c_parser *parser, tree attrs)
3635 struct c_declspecs *specs;
3636 struct c_declarator *declarator;
3637 tree prefix_attrs;
3638 tree postfix_attrs = NULL_TREE;
3639 bool dummy = false;
3641 /* Accept #pragmas between parameter declarations. */
3642 while (c_parser_next_token_is (parser, CPP_PRAGMA))
3643 c_parser_pragma (parser, pragma_param);
3645 if (!c_parser_next_token_starts_declspecs (parser))
3647 c_token *token = c_parser_peek_token (parser);
3648 if (parser->error)
3649 return NULL;
3650 c_parser_set_source_position_from_token (token);
3651 if (c_parser_next_tokens_start_typename (parser, cla_prefer_type))
3653 error_at (token->location, "unknown type name %qE", token->value);
3654 parser->error = true;
3656 /* ??? In some Objective-C cases '...' isn't applicable so there
3657 should be a different message. */
3658 else
3659 c_parser_error (parser,
3660 "expected declaration specifiers or %<...%>");
3661 c_parser_skip_to_end_of_parameter (parser);
3662 return NULL;
3664 specs = build_null_declspecs ();
3665 if (attrs)
3667 declspecs_add_attrs (input_location, specs, attrs);
3668 attrs = NULL_TREE;
3670 c_parser_declspecs (parser, specs, true, true, true, true, false,
3671 cla_nonabstract_decl);
3672 finish_declspecs (specs);
3673 pending_xref_error ();
3674 prefix_attrs = specs->attrs;
3675 specs->attrs = NULL_TREE;
3676 declarator = c_parser_declarator (parser,
3677 specs->typespec_kind != ctsk_none,
3678 C_DTR_PARM, &dummy);
3679 if (declarator == NULL)
3681 c_parser_skip_until_found (parser, CPP_COMMA, NULL);
3682 return NULL;
3684 if (c_parser_next_token_is_keyword (parser, RID_ATTRIBUTE))
3685 postfix_attrs = c_parser_attributes (parser);
3686 return build_c_parm (specs, chainon (postfix_attrs, prefix_attrs),
3687 declarator);
3690 /* Parse a string literal in an asm expression. It should not be
3691 translated, and wide string literals are an error although
3692 permitted by the syntax. This is a GNU extension.
3694 asm-string-literal:
3695 string-literal
3697 ??? At present, following the old parser, the caller needs to have
3698 set lex_untranslated_string to 1. It would be better to follow the
3699 C++ parser rather than using this kludge. */
3701 static tree
3702 c_parser_asm_string_literal (c_parser *parser)
3704 tree str;
3705 int save_flag = warn_overlength_strings;
3706 warn_overlength_strings = 0;
3707 if (c_parser_next_token_is (parser, CPP_STRING))
3709 str = c_parser_peek_token (parser)->value;
3710 c_parser_consume_token (parser);
3712 else if (c_parser_next_token_is (parser, CPP_WSTRING))
3714 error_at (c_parser_peek_token (parser)->location,
3715 "wide string literal in %<asm%>");
3716 str = build_string (1, "");
3717 c_parser_consume_token (parser);
3719 else
3721 c_parser_error (parser, "expected string literal");
3722 str = NULL_TREE;
3724 warn_overlength_strings = save_flag;
3725 return str;
3728 /* Parse a simple asm expression. This is used in restricted
3729 contexts, where a full expression with inputs and outputs does not
3730 make sense. This is a GNU extension.
3732 simple-asm-expr:
3733 asm ( asm-string-literal )
3736 static tree
3737 c_parser_simple_asm_expr (c_parser *parser)
3739 tree str;
3740 gcc_assert (c_parser_next_token_is_keyword (parser, RID_ASM));
3741 /* ??? Follow the C++ parser rather than using the
3742 lex_untranslated_string kludge. */
3743 parser->lex_untranslated_string = true;
3744 c_parser_consume_token (parser);
3745 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
3747 parser->lex_untranslated_string = false;
3748 return NULL_TREE;
3750 str = c_parser_asm_string_literal (parser);
3751 parser->lex_untranslated_string = false;
3752 if (!c_parser_require (parser, CPP_CLOSE_PAREN, "expected %<)%>"))
3754 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
3755 return NULL_TREE;
3757 return str;
3760 static tree
3761 c_parser_attribute_any_word (c_parser *parser)
3763 tree attr_name = NULL_TREE;
3765 if (c_parser_next_token_is (parser, CPP_KEYWORD))
3767 /* ??? See comment above about what keywords are accepted here. */
3768 bool ok;
3769 switch (c_parser_peek_token (parser)->keyword)
3771 case RID_STATIC:
3772 case RID_UNSIGNED:
3773 case RID_LONG:
3774 case RID_CONST:
3775 case RID_EXTERN:
3776 case RID_REGISTER:
3777 case RID_TYPEDEF:
3778 case RID_SHORT:
3779 case RID_INLINE:
3780 case RID_NORETURN:
3781 case RID_VOLATILE:
3782 case RID_SIGNED:
3783 case RID_AUTO:
3784 case RID_RESTRICT:
3785 case RID_COMPLEX:
3786 case RID_THREAD:
3787 case RID_INT:
3788 case RID_CHAR:
3789 case RID_FLOAT:
3790 case RID_DOUBLE:
3791 case RID_VOID:
3792 case RID_DFLOAT32:
3793 case RID_DFLOAT64:
3794 case RID_DFLOAT128:
3795 case RID_BOOL:
3796 case RID_FRACT:
3797 case RID_ACCUM:
3798 case RID_SAT:
3799 case RID_TRANSACTION_ATOMIC:
3800 case RID_TRANSACTION_CANCEL:
3801 case RID_ATOMIC:
3802 case RID_AUTO_TYPE:
3803 case RID_INT_N_0:
3804 case RID_INT_N_1:
3805 case RID_INT_N_2:
3806 case RID_INT_N_3:
3807 ok = true;
3808 break;
3809 default:
3810 ok = false;
3811 break;
3813 if (!ok)
3814 return NULL_TREE;
3816 /* Accept __attribute__((__const)) as __attribute__((const)) etc. */
3817 attr_name = ridpointers[(int) c_parser_peek_token (parser)->keyword];
3819 else if (c_parser_next_token_is (parser, CPP_NAME))
3820 attr_name = c_parser_peek_token (parser)->value;
3822 return attr_name;
3825 /* Returns true of NAME is an IDENTIFIER_NODE with identiifer "vector,"
3826 "__vector" or "__vector__." */
3828 static inline bool
3829 is_cilkplus_vector_p (tree name)
3831 if (flag_cilkplus && is_attribute_p ("vector", name))
3832 return true;
3833 return false;
3836 #define CILK_SIMD_FN_CLAUSE_MASK \
3837 ((OMP_CLAUSE_MASK_1 << PRAGMA_CILK_CLAUSE_VECTORLENGTH) \
3838 | (OMP_CLAUSE_MASK_1 << PRAGMA_CILK_CLAUSE_LINEAR) \
3839 | (OMP_CLAUSE_MASK_1 << PRAGMA_CILK_CLAUSE_UNIFORM) \
3840 | (OMP_CLAUSE_MASK_1 << PRAGMA_CILK_CLAUSE_MASK) \
3841 | (OMP_CLAUSE_MASK_1 << PRAGMA_CILK_CLAUSE_NOMASK))
3843 /* Parses the vector attribute of SIMD enabled functions in Cilk Plus.
3844 VEC_TOKEN is the "vector" token that is replaced with "simd" and
3845 pushed into the token list.
3846 Syntax:
3847 vector
3848 vector (<vector attributes>). */
3850 static void
3851 c_parser_cilk_simd_fn_vector_attrs (c_parser *parser, c_token vec_token)
3853 gcc_assert (is_cilkplus_vector_p (vec_token.value));
3855 int paren_scope = 0;
3856 vec_safe_push (parser->cilk_simd_fn_tokens, vec_token);
3857 /* Consume the "vector" token. */
3858 c_parser_consume_token (parser);
3860 if (c_parser_next_token_is (parser, CPP_OPEN_PAREN))
3862 c_parser_consume_token (parser);
3863 paren_scope++;
3865 while (paren_scope > 0)
3867 c_token *token = c_parser_peek_token (parser);
3868 if (token->type == CPP_OPEN_PAREN)
3869 paren_scope++;
3870 else if (token->type == CPP_CLOSE_PAREN)
3871 paren_scope--;
3872 /* Do not push the last ')' since we are not pushing the '('. */
3873 if (!(token->type == CPP_CLOSE_PAREN && paren_scope == 0))
3874 vec_safe_push (parser->cilk_simd_fn_tokens, *token);
3875 c_parser_consume_token (parser);
3878 /* Since we are converting an attribute to a pragma, we need to end the
3879 attribute with PRAGMA_EOL. */
3880 c_token eol_token;
3881 memset (&eol_token, 0, sizeof (eol_token));
3882 eol_token.type = CPP_PRAGMA_EOL;
3883 vec_safe_push (parser->cilk_simd_fn_tokens, eol_token);
3886 /* Add 2 CPP_EOF at the end of PARSER->ELEM_FN_TOKENS vector. */
3888 static void
3889 c_finish_cilk_simd_fn_tokens (c_parser *parser)
3891 c_token last_token = parser->cilk_simd_fn_tokens->last ();
3893 /* c_parser_attributes is called in several places, so if these EOF
3894 tokens are already inserted, then don't do them again. */
3895 if (last_token.type == CPP_EOF)
3896 return;
3898 /* Two CPP_EOF token are added as a safety net since the normal C
3899 front-end has two token look-ahead. */
3900 c_token eof_token;
3901 eof_token.type = CPP_EOF;
3902 vec_safe_push (parser->cilk_simd_fn_tokens, eof_token);
3903 vec_safe_push (parser->cilk_simd_fn_tokens, eof_token);
3906 /* Parse (possibly empty) attributes. This is a GNU extension.
3908 attributes:
3909 empty
3910 attributes attribute
3912 attribute:
3913 __attribute__ ( ( attribute-list ) )
3915 attribute-list:
3916 attrib
3917 attribute_list , attrib
3919 attrib:
3920 empty
3921 any-word
3922 any-word ( identifier )
3923 any-word ( identifier , nonempty-expr-list )
3924 any-word ( expr-list )
3926 where the "identifier" must not be declared as a type, and
3927 "any-word" may be any identifier (including one declared as a
3928 type), a reserved word storage class specifier, type specifier or
3929 type qualifier. ??? This still leaves out most reserved keywords
3930 (following the old parser), shouldn't we include them, and why not
3931 allow identifiers declared as types to start the arguments? */
3933 static tree
3934 c_parser_attributes (c_parser *parser)
3936 tree attrs = NULL_TREE;
3937 while (c_parser_next_token_is_keyword (parser, RID_ATTRIBUTE))
3939 /* ??? Follow the C++ parser rather than using the
3940 lex_untranslated_string kludge. */
3941 parser->lex_untranslated_string = true;
3942 c_parser_consume_token (parser);
3943 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
3945 parser->lex_untranslated_string = false;
3946 return attrs;
3948 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
3950 parser->lex_untranslated_string = false;
3951 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
3952 return attrs;
3954 /* Parse the attribute list. */
3955 while (c_parser_next_token_is (parser, CPP_COMMA)
3956 || c_parser_next_token_is (parser, CPP_NAME)
3957 || c_parser_next_token_is (parser, CPP_KEYWORD))
3959 tree attr, attr_name, attr_args;
3960 vec<tree, va_gc> *expr_list;
3961 if (c_parser_next_token_is (parser, CPP_COMMA))
3963 c_parser_consume_token (parser);
3964 continue;
3967 attr_name = c_parser_attribute_any_word (parser);
3968 if (attr_name == NULL)
3969 break;
3970 if (is_cilkplus_vector_p (attr_name))
3972 c_token *v_token = c_parser_peek_token (parser);
3973 c_parser_cilk_simd_fn_vector_attrs (parser, *v_token);
3974 continue;
3976 c_parser_consume_token (parser);
3977 if (c_parser_next_token_is_not (parser, CPP_OPEN_PAREN))
3979 attr = build_tree_list (attr_name, NULL_TREE);
3980 attrs = chainon (attrs, attr);
3981 continue;
3983 c_parser_consume_token (parser);
3984 /* Parse the attribute contents. If they start with an
3985 identifier which is followed by a comma or close
3986 parenthesis, then the arguments start with that
3987 identifier; otherwise they are an expression list.
3988 In objective-c the identifier may be a classname. */
3989 if (c_parser_next_token_is (parser, CPP_NAME)
3990 && (c_parser_peek_token (parser)->id_kind == C_ID_ID
3991 || (c_dialect_objc ()
3992 && c_parser_peek_token (parser)->id_kind
3993 == C_ID_CLASSNAME))
3994 && ((c_parser_peek_2nd_token (parser)->type == CPP_COMMA)
3995 || (c_parser_peek_2nd_token (parser)->type
3996 == CPP_CLOSE_PAREN))
3997 && (attribute_takes_identifier_p (attr_name)
3998 || (c_dialect_objc ()
3999 && c_parser_peek_token (parser)->id_kind
4000 == C_ID_CLASSNAME)))
4002 tree arg1 = c_parser_peek_token (parser)->value;
4003 c_parser_consume_token (parser);
4004 if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
4005 attr_args = build_tree_list (NULL_TREE, arg1);
4006 else
4008 tree tree_list;
4009 c_parser_consume_token (parser);
4010 expr_list = c_parser_expr_list (parser, false, true,
4011 NULL, NULL, NULL, NULL);
4012 tree_list = build_tree_list_vec (expr_list);
4013 attr_args = tree_cons (NULL_TREE, arg1, tree_list);
4014 release_tree_vector (expr_list);
4017 else
4019 if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
4020 attr_args = NULL_TREE;
4021 else
4023 expr_list = c_parser_expr_list (parser, false, true,
4024 NULL, NULL, NULL, NULL);
4025 attr_args = build_tree_list_vec (expr_list);
4026 release_tree_vector (expr_list);
4029 attr = build_tree_list (attr_name, attr_args);
4030 if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
4031 c_parser_consume_token (parser);
4032 else
4034 parser->lex_untranslated_string = false;
4035 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
4036 "expected %<)%>");
4037 return attrs;
4039 attrs = chainon (attrs, attr);
4041 if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
4042 c_parser_consume_token (parser);
4043 else
4045 parser->lex_untranslated_string = false;
4046 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
4047 "expected %<)%>");
4048 return attrs;
4050 if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
4051 c_parser_consume_token (parser);
4052 else
4054 parser->lex_untranslated_string = false;
4055 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
4056 "expected %<)%>");
4057 return attrs;
4059 parser->lex_untranslated_string = false;
4062 if (flag_cilkplus && !vec_safe_is_empty (parser->cilk_simd_fn_tokens))
4063 c_finish_cilk_simd_fn_tokens (parser);
4064 return attrs;
4067 /* Parse a type name (C90 6.5.5, C99 6.7.6).
4069 type-name:
4070 specifier-qualifier-list abstract-declarator[opt]
4073 static struct c_type_name *
4074 c_parser_type_name (c_parser *parser)
4076 struct c_declspecs *specs = build_null_declspecs ();
4077 struct c_declarator *declarator;
4078 struct c_type_name *ret;
4079 bool dummy = false;
4080 c_parser_declspecs (parser, specs, false, true, true, false, false,
4081 cla_prefer_type);
4082 if (!specs->declspecs_seen_p)
4084 c_parser_error (parser, "expected specifier-qualifier-list");
4085 return NULL;
4087 if (specs->type != error_mark_node)
4089 pending_xref_error ();
4090 finish_declspecs (specs);
4092 declarator = c_parser_declarator (parser,
4093 specs->typespec_kind != ctsk_none,
4094 C_DTR_ABSTRACT, &dummy);
4095 if (declarator == NULL)
4096 return NULL;
4097 ret = XOBNEW (&parser_obstack, struct c_type_name);
4098 ret->specs = specs;
4099 ret->declarator = declarator;
4100 return ret;
4103 /* Parse an initializer (C90 6.5.7, C99 6.7.8).
4105 initializer:
4106 assignment-expression
4107 { initializer-list }
4108 { initializer-list , }
4110 initializer-list:
4111 designation[opt] initializer
4112 initializer-list , designation[opt] initializer
4114 designation:
4115 designator-list =
4117 designator-list:
4118 designator
4119 designator-list designator
4121 designator:
4122 array-designator
4123 . identifier
4125 array-designator:
4126 [ constant-expression ]
4128 GNU extensions:
4130 initializer:
4133 designation:
4134 array-designator
4135 identifier :
4137 array-designator:
4138 [ constant-expression ... constant-expression ]
4140 Any expression without commas is accepted in the syntax for the
4141 constant-expressions, with non-constant expressions rejected later.
4143 This function is only used for top-level initializers; for nested
4144 ones, see c_parser_initval. */
4146 static struct c_expr
4147 c_parser_initializer (c_parser *parser)
4149 if (c_parser_next_token_is (parser, CPP_OPEN_BRACE))
4150 return c_parser_braced_init (parser, NULL_TREE, false);
4151 else
4153 struct c_expr ret;
4154 location_t loc = c_parser_peek_token (parser)->location;
4155 ret = c_parser_expr_no_commas (parser, NULL);
4156 if (TREE_CODE (ret.value) != STRING_CST
4157 && TREE_CODE (ret.value) != COMPOUND_LITERAL_EXPR)
4158 ret = convert_lvalue_to_rvalue (loc, ret, true, true);
4159 return ret;
4163 /* Parse a braced initializer list. TYPE is the type specified for a
4164 compound literal, and NULL_TREE for other initializers and for
4165 nested braced lists. NESTED_P is true for nested braced lists,
4166 false for the list of a compound literal or the list that is the
4167 top-level initializer in a declaration. */
4169 static struct c_expr
4170 c_parser_braced_init (c_parser *parser, tree type, bool nested_p)
4172 struct c_expr ret;
4173 struct obstack braced_init_obstack;
4174 location_t brace_loc = c_parser_peek_token (parser)->location;
4175 gcc_obstack_init (&braced_init_obstack);
4176 gcc_assert (c_parser_next_token_is (parser, CPP_OPEN_BRACE));
4177 c_parser_consume_token (parser);
4178 if (nested_p)
4179 push_init_level (brace_loc, 0, &braced_init_obstack);
4180 else
4181 really_start_incremental_init (type);
4182 if (c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
4184 pedwarn (brace_loc, OPT_Wpedantic, "ISO C forbids empty initializer braces");
4186 else
4188 /* Parse a non-empty initializer list, possibly with a trailing
4189 comma. */
4190 while (true)
4192 c_parser_initelt (parser, &braced_init_obstack);
4193 if (parser->error)
4194 break;
4195 if (c_parser_next_token_is (parser, CPP_COMMA))
4196 c_parser_consume_token (parser);
4197 else
4198 break;
4199 if (c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
4200 break;
4203 if (c_parser_next_token_is_not (parser, CPP_CLOSE_BRACE))
4205 ret.value = error_mark_node;
4206 ret.original_code = ERROR_MARK;
4207 ret.original_type = NULL;
4208 c_parser_skip_until_found (parser, CPP_CLOSE_BRACE, "expected %<}%>");
4209 pop_init_level (brace_loc, 0, &braced_init_obstack);
4210 obstack_free (&braced_init_obstack, NULL);
4211 return ret;
4213 c_parser_consume_token (parser);
4214 ret = pop_init_level (brace_loc, 0, &braced_init_obstack);
4215 obstack_free (&braced_init_obstack, NULL);
4216 return ret;
4219 /* Parse a nested initializer, including designators. */
4221 static void
4222 c_parser_initelt (c_parser *parser, struct obstack * braced_init_obstack)
4224 /* Parse any designator or designator list. A single array
4225 designator may have the subsequent "=" omitted in GNU C, but a
4226 longer list or a structure member designator may not. */
4227 if (c_parser_next_token_is (parser, CPP_NAME)
4228 && c_parser_peek_2nd_token (parser)->type == CPP_COLON)
4230 /* Old-style structure member designator. */
4231 set_init_label (c_parser_peek_token (parser)->location,
4232 c_parser_peek_token (parser)->value,
4233 braced_init_obstack);
4234 /* Use the colon as the error location. */
4235 pedwarn (c_parser_peek_2nd_token (parser)->location, OPT_Wpedantic,
4236 "obsolete use of designated initializer with %<:%>");
4237 c_parser_consume_token (parser);
4238 c_parser_consume_token (parser);
4240 else
4242 /* des_seen is 0 if there have been no designators, 1 if there
4243 has been a single array designator and 2 otherwise. */
4244 int des_seen = 0;
4245 /* Location of a designator. */
4246 location_t des_loc = UNKNOWN_LOCATION; /* Quiet warning. */
4247 while (c_parser_next_token_is (parser, CPP_OPEN_SQUARE)
4248 || c_parser_next_token_is (parser, CPP_DOT))
4250 int des_prev = des_seen;
4251 if (!des_seen)
4252 des_loc = c_parser_peek_token (parser)->location;
4253 if (des_seen < 2)
4254 des_seen++;
4255 if (c_parser_next_token_is (parser, CPP_DOT))
4257 des_seen = 2;
4258 c_parser_consume_token (parser);
4259 if (c_parser_next_token_is (parser, CPP_NAME))
4261 set_init_label (des_loc, c_parser_peek_token (parser)->value,
4262 braced_init_obstack);
4263 c_parser_consume_token (parser);
4265 else
4267 struct c_expr init;
4268 init.value = error_mark_node;
4269 init.original_code = ERROR_MARK;
4270 init.original_type = NULL;
4271 c_parser_error (parser, "expected identifier");
4272 c_parser_skip_until_found (parser, CPP_COMMA, NULL);
4273 process_init_element (input_location, init, false,
4274 braced_init_obstack);
4275 return;
4278 else
4280 tree first, second;
4281 location_t ellipsis_loc = UNKNOWN_LOCATION; /* Quiet warning. */
4282 location_t array_index_loc = UNKNOWN_LOCATION;
4283 /* ??? Following the old parser, [ objc-receiver
4284 objc-message-args ] is accepted as an initializer,
4285 being distinguished from a designator by what follows
4286 the first assignment expression inside the square
4287 brackets, but after a first array designator a
4288 subsequent square bracket is for Objective-C taken to
4289 start an expression, using the obsolete form of
4290 designated initializer without '=', rather than
4291 possibly being a second level of designation: in LALR
4292 terms, the '[' is shifted rather than reducing
4293 designator to designator-list. */
4294 if (des_prev == 1 && c_dialect_objc ())
4296 des_seen = des_prev;
4297 break;
4299 if (des_prev == 0 && c_dialect_objc ())
4301 /* This might be an array designator or an
4302 Objective-C message expression. If the former,
4303 continue parsing here; if the latter, parse the
4304 remainder of the initializer given the starting
4305 primary-expression. ??? It might make sense to
4306 distinguish when des_prev == 1 as well; see
4307 previous comment. */
4308 tree rec, args;
4309 struct c_expr mexpr;
4310 c_parser_consume_token (parser);
4311 if (c_parser_peek_token (parser)->type == CPP_NAME
4312 && ((c_parser_peek_token (parser)->id_kind
4313 == C_ID_TYPENAME)
4314 || (c_parser_peek_token (parser)->id_kind
4315 == C_ID_CLASSNAME)))
4317 /* Type name receiver. */
4318 tree id = c_parser_peek_token (parser)->value;
4319 c_parser_consume_token (parser);
4320 rec = objc_get_class_reference (id);
4321 goto parse_message_args;
4323 first = c_parser_expr_no_commas (parser, NULL).value;
4324 mark_exp_read (first);
4325 if (c_parser_next_token_is (parser, CPP_ELLIPSIS)
4326 || c_parser_next_token_is (parser, CPP_CLOSE_SQUARE))
4327 goto array_desig_after_first;
4328 /* Expression receiver. So far only one part
4329 without commas has been parsed; there might be
4330 more of the expression. */
4331 rec = first;
4332 while (c_parser_next_token_is (parser, CPP_COMMA))
4334 struct c_expr next;
4335 location_t comma_loc, exp_loc;
4336 comma_loc = c_parser_peek_token (parser)->location;
4337 c_parser_consume_token (parser);
4338 exp_loc = c_parser_peek_token (parser)->location;
4339 next = c_parser_expr_no_commas (parser, NULL);
4340 next = convert_lvalue_to_rvalue (exp_loc, next,
4341 true, true);
4342 rec = build_compound_expr (comma_loc, rec, next.value);
4344 parse_message_args:
4345 /* Now parse the objc-message-args. */
4346 args = c_parser_objc_message_args (parser);
4347 c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE,
4348 "expected %<]%>");
4349 mexpr.value
4350 = objc_build_message_expr (rec, args);
4351 mexpr.original_code = ERROR_MARK;
4352 mexpr.original_type = NULL;
4353 /* Now parse and process the remainder of the
4354 initializer, starting with this message
4355 expression as a primary-expression. */
4356 c_parser_initval (parser, &mexpr, braced_init_obstack);
4357 return;
4359 c_parser_consume_token (parser);
4360 array_index_loc = c_parser_peek_token (parser)->location;
4361 first = c_parser_expr_no_commas (parser, NULL).value;
4362 mark_exp_read (first);
4363 array_desig_after_first:
4364 if (c_parser_next_token_is (parser, CPP_ELLIPSIS))
4366 ellipsis_loc = c_parser_peek_token (parser)->location;
4367 c_parser_consume_token (parser);
4368 second = c_parser_expr_no_commas (parser, NULL).value;
4369 mark_exp_read (second);
4371 else
4372 second = NULL_TREE;
4373 if (c_parser_next_token_is (parser, CPP_CLOSE_SQUARE))
4375 c_parser_consume_token (parser);
4376 set_init_index (array_index_loc, first, second,
4377 braced_init_obstack);
4378 if (second)
4379 pedwarn (ellipsis_loc, OPT_Wpedantic,
4380 "ISO C forbids specifying range of elements to initialize");
4382 else
4383 c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE,
4384 "expected %<]%>");
4387 if (des_seen >= 1)
4389 if (c_parser_next_token_is (parser, CPP_EQ))
4391 pedwarn_c90 (des_loc, OPT_Wpedantic,
4392 "ISO C90 forbids specifying subobject "
4393 "to initialize");
4394 c_parser_consume_token (parser);
4396 else
4398 if (des_seen == 1)
4399 pedwarn (c_parser_peek_token (parser)->location, OPT_Wpedantic,
4400 "obsolete use of designated initializer without %<=%>");
4401 else
4403 struct c_expr init;
4404 init.value = error_mark_node;
4405 init.original_code = ERROR_MARK;
4406 init.original_type = NULL;
4407 c_parser_error (parser, "expected %<=%>");
4408 c_parser_skip_until_found (parser, CPP_COMMA, NULL);
4409 process_init_element (input_location, init, false,
4410 braced_init_obstack);
4411 return;
4416 c_parser_initval (parser, NULL, braced_init_obstack);
4419 /* Parse a nested initializer; as c_parser_initializer but parses
4420 initializers within braced lists, after any designators have been
4421 applied. If AFTER is not NULL then it is an Objective-C message
4422 expression which is the primary-expression starting the
4423 initializer. */
4425 static void
4426 c_parser_initval (c_parser *parser, struct c_expr *after,
4427 struct obstack * braced_init_obstack)
4429 struct c_expr init;
4430 gcc_assert (!after || c_dialect_objc ());
4431 location_t loc = c_parser_peek_token (parser)->location;
4433 if (c_parser_next_token_is (parser, CPP_OPEN_BRACE) && !after)
4434 init = c_parser_braced_init (parser, NULL_TREE, true);
4435 else
4437 init = c_parser_expr_no_commas (parser, after);
4438 if (init.value != NULL_TREE
4439 && TREE_CODE (init.value) != STRING_CST
4440 && TREE_CODE (init.value) != COMPOUND_LITERAL_EXPR)
4441 init = convert_lvalue_to_rvalue (loc, init, true, true);
4443 process_init_element (loc, init, false, braced_init_obstack);
4446 /* Parse a compound statement (possibly a function body) (C90 6.6.2,
4447 C99 6.8.2).
4449 compound-statement:
4450 { block-item-list[opt] }
4451 { label-declarations block-item-list }
4453 block-item-list:
4454 block-item
4455 block-item-list block-item
4457 block-item:
4458 nested-declaration
4459 statement
4461 nested-declaration:
4462 declaration
4464 GNU extensions:
4466 compound-statement:
4467 { label-declarations block-item-list }
4469 nested-declaration:
4470 __extension__ nested-declaration
4471 nested-function-definition
4473 label-declarations:
4474 label-declaration
4475 label-declarations label-declaration
4477 label-declaration:
4478 __label__ identifier-list ;
4480 Allowing the mixing of declarations and code is new in C99. The
4481 GNU syntax also permits (not shown above) labels at the end of
4482 compound statements, which yield an error. We don't allow labels
4483 on declarations; this might seem like a natural extension, but
4484 there would be a conflict between attributes on the label and
4485 prefix attributes on the declaration. ??? The syntax follows the
4486 old parser in requiring something after label declarations.
4487 Although they are erroneous if the labels declared aren't defined,
4488 is it useful for the syntax to be this way?
4490 OpenACC:
4492 block-item:
4493 openacc-directive
4495 openacc-directive:
4496 update-directive
4498 OpenMP:
4500 block-item:
4501 openmp-directive
4503 openmp-directive:
4504 barrier-directive
4505 flush-directive
4506 taskwait-directive
4507 taskyield-directive
4508 cancel-directive
4509 cancellation-point-directive */
4511 static tree
4512 c_parser_compound_statement (c_parser *parser)
4514 tree stmt;
4515 location_t brace_loc;
4516 brace_loc = c_parser_peek_token (parser)->location;
4517 if (!c_parser_require (parser, CPP_OPEN_BRACE, "expected %<{%>"))
4519 /* Ensure a scope is entered and left anyway to avoid confusion
4520 if we have just prepared to enter a function body. */
4521 stmt = c_begin_compound_stmt (true);
4522 c_end_compound_stmt (brace_loc, stmt, true);
4523 return error_mark_node;
4525 stmt = c_begin_compound_stmt (true);
4526 c_parser_compound_statement_nostart (parser);
4528 /* If the compound stmt contains array notations, then we expand them. */
4529 if (flag_cilkplus && contains_array_notation_expr (stmt))
4530 stmt = expand_array_notation_exprs (stmt);
4531 return c_end_compound_stmt (brace_loc, stmt, true);
4534 /* Parse a compound statement except for the opening brace. This is
4535 used for parsing both compound statements and statement expressions
4536 (which follow different paths to handling the opening). */
4538 static void
4539 c_parser_compound_statement_nostart (c_parser *parser)
4541 bool last_stmt = false;
4542 bool last_label = false;
4543 bool save_valid_for_pragma = valid_location_for_stdc_pragma_p ();
4544 location_t label_loc = UNKNOWN_LOCATION; /* Quiet warning. */
4545 if (c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
4547 c_parser_consume_token (parser);
4548 return;
4550 mark_valid_location_for_stdc_pragma (true);
4551 if (c_parser_next_token_is_keyword (parser, RID_LABEL))
4553 /* Read zero or more forward-declarations for labels that nested
4554 functions can jump to. */
4555 mark_valid_location_for_stdc_pragma (false);
4556 while (c_parser_next_token_is_keyword (parser, RID_LABEL))
4558 label_loc = c_parser_peek_token (parser)->location;
4559 c_parser_consume_token (parser);
4560 /* Any identifiers, including those declared as type names,
4561 are OK here. */
4562 while (true)
4564 tree label;
4565 if (c_parser_next_token_is_not (parser, CPP_NAME))
4567 c_parser_error (parser, "expected identifier");
4568 break;
4570 label
4571 = declare_label (c_parser_peek_token (parser)->value);
4572 C_DECLARED_LABEL_FLAG (label) = 1;
4573 add_stmt (build_stmt (label_loc, DECL_EXPR, label));
4574 c_parser_consume_token (parser);
4575 if (c_parser_next_token_is (parser, CPP_COMMA))
4576 c_parser_consume_token (parser);
4577 else
4578 break;
4580 c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
4582 pedwarn (label_loc, OPT_Wpedantic, "ISO C forbids label declarations");
4584 /* We must now have at least one statement, label or declaration. */
4585 if (c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
4587 mark_valid_location_for_stdc_pragma (save_valid_for_pragma);
4588 c_parser_error (parser, "expected declaration or statement");
4589 c_parser_consume_token (parser);
4590 return;
4592 while (c_parser_next_token_is_not (parser, CPP_CLOSE_BRACE))
4594 location_t loc = c_parser_peek_token (parser)->location;
4595 if (c_parser_next_token_is_keyword (parser, RID_CASE)
4596 || c_parser_next_token_is_keyword (parser, RID_DEFAULT)
4597 || (c_parser_next_token_is (parser, CPP_NAME)
4598 && c_parser_peek_2nd_token (parser)->type == CPP_COLON))
4600 if (c_parser_next_token_is_keyword (parser, RID_CASE))
4601 label_loc = c_parser_peek_2nd_token (parser)->location;
4602 else
4603 label_loc = c_parser_peek_token (parser)->location;
4604 last_label = true;
4605 last_stmt = false;
4606 mark_valid_location_for_stdc_pragma (false);
4607 c_parser_label (parser);
4609 else if (!last_label
4610 && c_parser_next_tokens_start_declaration (parser))
4612 last_label = false;
4613 mark_valid_location_for_stdc_pragma (false);
4614 c_parser_declaration_or_fndef (parser, true, true, true, true,
4615 true, NULL, vNULL);
4616 if (last_stmt)
4617 pedwarn_c90 (loc, OPT_Wdeclaration_after_statement,
4618 "ISO C90 forbids mixed declarations and code");
4619 last_stmt = false;
4621 else if (!last_label
4622 && c_parser_next_token_is_keyword (parser, RID_EXTENSION))
4624 /* __extension__ can start a declaration, but is also an
4625 unary operator that can start an expression. Consume all
4626 but the last of a possible series of __extension__ to
4627 determine which. */
4628 while (c_parser_peek_2nd_token (parser)->type == CPP_KEYWORD
4629 && (c_parser_peek_2nd_token (parser)->keyword
4630 == RID_EXTENSION))
4631 c_parser_consume_token (parser);
4632 if (c_token_starts_declaration (c_parser_peek_2nd_token (parser)))
4634 int ext;
4635 ext = disable_extension_diagnostics ();
4636 c_parser_consume_token (parser);
4637 last_label = false;
4638 mark_valid_location_for_stdc_pragma (false);
4639 c_parser_declaration_or_fndef (parser, true, true, true, true,
4640 true, NULL, vNULL);
4641 /* Following the old parser, __extension__ does not
4642 disable this diagnostic. */
4643 restore_extension_diagnostics (ext);
4644 if (last_stmt)
4645 pedwarn_c90 (loc, OPT_Wdeclaration_after_statement,
4646 "ISO C90 forbids mixed declarations and code");
4647 last_stmt = false;
4649 else
4650 goto statement;
4652 else if (c_parser_next_token_is (parser, CPP_PRAGMA))
4654 /* External pragmas, and some omp pragmas, are not associated
4655 with regular c code, and so are not to be considered statements
4656 syntactically. This ensures that the user doesn't put them
4657 places that would turn into syntax errors if the directive
4658 were ignored. */
4659 if (c_parser_pragma (parser, pragma_compound))
4660 last_label = false, last_stmt = true;
4662 else if (c_parser_next_token_is (parser, CPP_EOF))
4664 mark_valid_location_for_stdc_pragma (save_valid_for_pragma);
4665 c_parser_error (parser, "expected declaration or statement");
4666 return;
4668 else if (c_parser_next_token_is_keyword (parser, RID_ELSE))
4670 if (parser->in_if_block)
4672 mark_valid_location_for_stdc_pragma (save_valid_for_pragma);
4673 error_at (loc, """expected %<}%> before %<else%>");
4674 return;
4676 else
4678 error_at (loc, "%<else%> without a previous %<if%>");
4679 c_parser_consume_token (parser);
4680 continue;
4683 else
4685 statement:
4686 last_label = false;
4687 last_stmt = true;
4688 mark_valid_location_for_stdc_pragma (false);
4689 c_parser_statement_after_labels (parser);
4692 parser->error = false;
4694 if (last_label)
4695 error_at (label_loc, "label at end of compound statement");
4696 c_parser_consume_token (parser);
4697 /* Restore the value we started with. */
4698 mark_valid_location_for_stdc_pragma (save_valid_for_pragma);
4701 /* Parse all consecutive labels. */
4703 static void
4704 c_parser_all_labels (c_parser *parser)
4706 while (c_parser_next_token_is_keyword (parser, RID_CASE)
4707 || c_parser_next_token_is_keyword (parser, RID_DEFAULT)
4708 || (c_parser_next_token_is (parser, CPP_NAME)
4709 && c_parser_peek_2nd_token (parser)->type == CPP_COLON))
4710 c_parser_label (parser);
4713 /* Parse a label (C90 6.6.1, C99 6.8.1).
4715 label:
4716 identifier : attributes[opt]
4717 case constant-expression :
4718 default :
4720 GNU extensions:
4722 label:
4723 case constant-expression ... constant-expression :
4725 The use of attributes on labels is a GNU extension. The syntax in
4726 GNU C accepts any expressions without commas, non-constant
4727 expressions being rejected later. */
4729 static void
4730 c_parser_label (c_parser *parser)
4732 location_t loc1 = c_parser_peek_token (parser)->location;
4733 tree label = NULL_TREE;
4734 if (c_parser_next_token_is_keyword (parser, RID_CASE))
4736 tree exp1, exp2;
4737 c_parser_consume_token (parser);
4738 exp1 = c_parser_expr_no_commas (parser, NULL).value;
4739 if (c_parser_next_token_is (parser, CPP_COLON))
4741 c_parser_consume_token (parser);
4742 label = do_case (loc1, exp1, NULL_TREE);
4744 else if (c_parser_next_token_is (parser, CPP_ELLIPSIS))
4746 c_parser_consume_token (parser);
4747 exp2 = c_parser_expr_no_commas (parser, NULL).value;
4748 if (c_parser_require (parser, CPP_COLON, "expected %<:%>"))
4749 label = do_case (loc1, exp1, exp2);
4751 else
4752 c_parser_error (parser, "expected %<:%> or %<...%>");
4754 else if (c_parser_next_token_is_keyword (parser, RID_DEFAULT))
4756 c_parser_consume_token (parser);
4757 if (c_parser_require (parser, CPP_COLON, "expected %<:%>"))
4758 label = do_case (loc1, NULL_TREE, NULL_TREE);
4760 else
4762 tree name = c_parser_peek_token (parser)->value;
4763 tree tlab;
4764 tree attrs;
4765 location_t loc2 = c_parser_peek_token (parser)->location;
4766 gcc_assert (c_parser_next_token_is (parser, CPP_NAME));
4767 c_parser_consume_token (parser);
4768 gcc_assert (c_parser_next_token_is (parser, CPP_COLON));
4769 c_parser_consume_token (parser);
4770 attrs = c_parser_attributes (parser);
4771 tlab = define_label (loc2, name);
4772 if (tlab)
4774 decl_attributes (&tlab, attrs, 0);
4775 label = add_stmt (build_stmt (loc1, LABEL_EXPR, tlab));
4778 if (label)
4780 if (c_parser_next_tokens_start_declaration (parser))
4782 error_at (c_parser_peek_token (parser)->location,
4783 "a label can only be part of a statement and "
4784 "a declaration is not a statement");
4785 c_parser_declaration_or_fndef (parser, /*fndef_ok*/ false,
4786 /*static_assert_ok*/ true,
4787 /*empty_ok*/ true, /*nested*/ true,
4788 /*start_attr_ok*/ true, NULL,
4789 vNULL);
4794 /* Parse a statement (C90 6.6, C99 6.8).
4796 statement:
4797 labeled-statement
4798 compound-statement
4799 expression-statement
4800 selection-statement
4801 iteration-statement
4802 jump-statement
4804 labeled-statement:
4805 label statement
4807 expression-statement:
4808 expression[opt] ;
4810 selection-statement:
4811 if-statement
4812 switch-statement
4814 iteration-statement:
4815 while-statement
4816 do-statement
4817 for-statement
4819 jump-statement:
4820 goto identifier ;
4821 continue ;
4822 break ;
4823 return expression[opt] ;
4825 GNU extensions:
4827 statement:
4828 asm-statement
4830 jump-statement:
4831 goto * expression ;
4833 Objective-C:
4835 statement:
4836 objc-throw-statement
4837 objc-try-catch-statement
4838 objc-synchronized-statement
4840 objc-throw-statement:
4841 @throw expression ;
4842 @throw ;
4844 OpenACC:
4846 statement:
4847 openacc-construct
4849 openacc-construct:
4850 parallel-construct
4851 kernels-construct
4852 data-construct
4853 loop-construct
4855 parallel-construct:
4856 parallel-directive structured-block
4858 kernels-construct:
4859 kernels-directive structured-block
4861 data-construct:
4862 data-directive structured-block
4864 loop-construct:
4865 loop-directive structured-block
4867 OpenMP:
4869 statement:
4870 openmp-construct
4872 openmp-construct:
4873 parallel-construct
4874 for-construct
4875 simd-construct
4876 for-simd-construct
4877 sections-construct
4878 single-construct
4879 parallel-for-construct
4880 parallel-for-simd-construct
4881 parallel-sections-construct
4882 master-construct
4883 critical-construct
4884 atomic-construct
4885 ordered-construct
4887 parallel-construct:
4888 parallel-directive structured-block
4890 for-construct:
4891 for-directive iteration-statement
4893 simd-construct:
4894 simd-directive iteration-statements
4896 for-simd-construct:
4897 for-simd-directive iteration-statements
4899 sections-construct:
4900 sections-directive section-scope
4902 single-construct:
4903 single-directive structured-block
4905 parallel-for-construct:
4906 parallel-for-directive iteration-statement
4908 parallel-for-simd-construct:
4909 parallel-for-simd-directive iteration-statement
4911 parallel-sections-construct:
4912 parallel-sections-directive section-scope
4914 master-construct:
4915 master-directive structured-block
4917 critical-construct:
4918 critical-directive structured-block
4920 atomic-construct:
4921 atomic-directive expression-statement
4923 ordered-construct:
4924 ordered-directive structured-block
4926 Transactional Memory:
4928 statement:
4929 transaction-statement
4930 transaction-cancel-statement
4933 static void
4934 c_parser_statement (c_parser *parser)
4936 c_parser_all_labels (parser);
4937 c_parser_statement_after_labels (parser);
4940 /* Parse a statement, other than a labeled statement. */
4942 static void
4943 c_parser_statement_after_labels (c_parser *parser)
4945 location_t loc = c_parser_peek_token (parser)->location;
4946 tree stmt = NULL_TREE;
4947 bool in_if_block = parser->in_if_block;
4948 parser->in_if_block = false;
4949 switch (c_parser_peek_token (parser)->type)
4951 case CPP_OPEN_BRACE:
4952 add_stmt (c_parser_compound_statement (parser));
4953 break;
4954 case CPP_KEYWORD:
4955 switch (c_parser_peek_token (parser)->keyword)
4957 case RID_IF:
4958 c_parser_if_statement (parser);
4959 break;
4960 case RID_SWITCH:
4961 c_parser_switch_statement (parser);
4962 break;
4963 case RID_WHILE:
4964 c_parser_while_statement (parser, false);
4965 break;
4966 case RID_DO:
4967 c_parser_do_statement (parser, false);
4968 break;
4969 case RID_FOR:
4970 c_parser_for_statement (parser, false);
4971 break;
4972 case RID_CILK_FOR:
4973 if (!flag_cilkplus)
4975 error_at (c_parser_peek_token (parser)->location,
4976 "-fcilkplus must be enabled to use %<_Cilk_for%>");
4977 c_parser_skip_to_end_of_block_or_statement (parser);
4979 else
4980 c_parser_cilk_for (parser, integer_zero_node);
4981 break;
4982 case RID_CILK_SYNC:
4983 c_parser_consume_token (parser);
4984 c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
4985 if (!flag_cilkplus)
4986 error_at (loc, "-fcilkplus must be enabled to use %<_Cilk_sync%>");
4987 else
4988 add_stmt (build_cilk_sync ());
4989 break;
4990 case RID_GOTO:
4991 c_parser_consume_token (parser);
4992 if (c_parser_next_token_is (parser, CPP_NAME))
4994 stmt = c_finish_goto_label (loc,
4995 c_parser_peek_token (parser)->value);
4996 c_parser_consume_token (parser);
4998 else if (c_parser_next_token_is (parser, CPP_MULT))
5000 struct c_expr val;
5002 c_parser_consume_token (parser);
5003 val = c_parser_expression (parser);
5004 if (check_no_cilk (val.value,
5005 "Cilk array notation cannot be used as a computed goto expression",
5006 "%<_Cilk_spawn%> statement cannot be used as a computed goto expression",
5007 loc))
5008 val.value = error_mark_node;
5009 val = convert_lvalue_to_rvalue (loc, val, false, true);
5010 stmt = c_finish_goto_ptr (loc, val.value);
5012 else
5013 c_parser_error (parser, "expected identifier or %<*%>");
5014 goto expect_semicolon;
5015 case RID_CONTINUE:
5016 c_parser_consume_token (parser);
5017 stmt = c_finish_bc_stmt (loc, &c_cont_label, false);
5018 goto expect_semicolon;
5019 case RID_BREAK:
5020 c_parser_consume_token (parser);
5021 stmt = c_finish_bc_stmt (loc, &c_break_label, true);
5022 goto expect_semicolon;
5023 case RID_RETURN:
5024 c_parser_consume_token (parser);
5025 if (c_parser_next_token_is (parser, CPP_SEMICOLON))
5027 stmt = c_finish_return (loc, NULL_TREE, NULL_TREE);
5028 c_parser_consume_token (parser);
5030 else
5032 location_t xloc = c_parser_peek_token (parser)->location;
5033 struct c_expr expr = c_parser_expression_conv (parser);
5034 mark_exp_read (expr.value);
5035 stmt = c_finish_return (xloc, expr.value, expr.original_type);
5036 goto expect_semicolon;
5038 break;
5039 case RID_ASM:
5040 stmt = c_parser_asm_statement (parser);
5041 break;
5042 case RID_TRANSACTION_ATOMIC:
5043 case RID_TRANSACTION_RELAXED:
5044 stmt = c_parser_transaction (parser,
5045 c_parser_peek_token (parser)->keyword);
5046 break;
5047 case RID_TRANSACTION_CANCEL:
5048 stmt = c_parser_transaction_cancel (parser);
5049 goto expect_semicolon;
5050 case RID_AT_THROW:
5051 gcc_assert (c_dialect_objc ());
5052 c_parser_consume_token (parser);
5053 if (c_parser_next_token_is (parser, CPP_SEMICOLON))
5055 stmt = objc_build_throw_stmt (loc, NULL_TREE);
5056 c_parser_consume_token (parser);
5058 else
5060 struct c_expr expr = c_parser_expression (parser);
5061 expr = convert_lvalue_to_rvalue (loc, expr, false, false);
5062 if (check_no_cilk (expr.value,
5063 "Cilk array notation cannot be used for a throw expression",
5064 "%<_Cilk_spawn%> statement cannot be used for a throw expression"))
5065 expr.value = error_mark_node;
5066 else
5068 expr.value = c_fully_fold (expr.value, false, NULL);
5069 stmt = objc_build_throw_stmt (loc, expr.value);
5071 goto expect_semicolon;
5073 break;
5074 case RID_AT_TRY:
5075 gcc_assert (c_dialect_objc ());
5076 c_parser_objc_try_catch_finally_statement (parser);
5077 break;
5078 case RID_AT_SYNCHRONIZED:
5079 gcc_assert (c_dialect_objc ());
5080 c_parser_objc_synchronized_statement (parser);
5081 break;
5082 default:
5083 goto expr_stmt;
5085 break;
5086 case CPP_SEMICOLON:
5087 c_parser_consume_token (parser);
5088 break;
5089 case CPP_CLOSE_PAREN:
5090 case CPP_CLOSE_SQUARE:
5091 /* Avoid infinite loop in error recovery:
5092 c_parser_skip_until_found stops at a closing nesting
5093 delimiter without consuming it, but here we need to consume
5094 it to proceed further. */
5095 c_parser_error (parser, "expected statement");
5096 c_parser_consume_token (parser);
5097 break;
5098 case CPP_PRAGMA:
5099 c_parser_pragma (parser, pragma_stmt);
5100 break;
5101 default:
5102 expr_stmt:
5103 stmt = c_finish_expr_stmt (loc, c_parser_expression_conv (parser).value);
5104 expect_semicolon:
5105 c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
5106 break;
5108 /* Two cases cannot and do not have line numbers associated: If stmt
5109 is degenerate, such as "2;", then stmt is an INTEGER_CST, which
5110 cannot hold line numbers. But that's OK because the statement
5111 will either be changed to a MODIFY_EXPR during gimplification of
5112 the statement expr, or discarded. If stmt was compound, but
5113 without new variables, we will have skipped the creation of a
5114 BIND and will have a bare STATEMENT_LIST. But that's OK because
5115 (recursively) all of the component statements should already have
5116 line numbers assigned. ??? Can we discard no-op statements
5117 earlier? */
5118 if (CAN_HAVE_LOCATION_P (stmt)
5119 && EXPR_LOCATION (stmt) == UNKNOWN_LOCATION)
5120 SET_EXPR_LOCATION (stmt, loc);
5122 parser->in_if_block = in_if_block;
5125 /* Parse the condition from an if, do, while or for statements. */
5127 static tree
5128 c_parser_condition (c_parser *parser)
5130 location_t loc = c_parser_peek_token (parser)->location;
5131 tree cond;
5132 cond = c_parser_expression_conv (parser).value;
5133 cond = c_objc_common_truthvalue_conversion (loc, cond);
5134 cond = c_fully_fold (cond, false, NULL);
5135 if (warn_sequence_point)
5136 verify_sequence_points (cond);
5137 return cond;
5140 /* Parse a parenthesized condition from an if, do or while statement.
5142 condition:
5143 ( expression )
5145 static tree
5146 c_parser_paren_condition (c_parser *parser)
5148 tree cond;
5149 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
5150 return error_mark_node;
5151 cond = c_parser_condition (parser);
5152 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
5153 return cond;
5156 /* Parse a statement which is a block in C99. */
5158 static tree
5159 c_parser_c99_block_statement (c_parser *parser)
5161 tree block = c_begin_compound_stmt (flag_isoc99);
5162 location_t loc = c_parser_peek_token (parser)->location;
5163 c_parser_statement (parser);
5164 return c_end_compound_stmt (loc, block, flag_isoc99);
5167 /* Parse the body of an if statement. This is just parsing a
5168 statement but (a) it is a block in C99, (b) we track whether the
5169 body is an if statement for the sake of -Wparentheses warnings, (c)
5170 we handle an empty body specially for the sake of -Wempty-body
5171 warnings, and (d) we call parser_compound_statement directly
5172 because c_parser_statement_after_labels resets
5173 parser->in_if_block. */
5175 static tree
5176 c_parser_if_body (c_parser *parser, bool *if_p)
5178 tree block = c_begin_compound_stmt (flag_isoc99);
5179 location_t body_loc = c_parser_peek_token (parser)->location;
5180 c_parser_all_labels (parser);
5181 *if_p = c_parser_next_token_is_keyword (parser, RID_IF);
5182 if (c_parser_next_token_is (parser, CPP_SEMICOLON))
5184 location_t loc = c_parser_peek_token (parser)->location;
5185 add_stmt (build_empty_stmt (loc));
5186 c_parser_consume_token (parser);
5187 if (!c_parser_next_token_is_keyword (parser, RID_ELSE))
5188 warning_at (loc, OPT_Wempty_body,
5189 "suggest braces around empty body in an %<if%> statement");
5191 else if (c_parser_next_token_is (parser, CPP_OPEN_BRACE))
5192 add_stmt (c_parser_compound_statement (parser));
5193 else
5194 c_parser_statement_after_labels (parser);
5195 return c_end_compound_stmt (body_loc, block, flag_isoc99);
5198 /* Parse the else body of an if statement. This is just parsing a
5199 statement but (a) it is a block in C99, (b) we handle an empty body
5200 specially for the sake of -Wempty-body warnings. */
5202 static tree
5203 c_parser_else_body (c_parser *parser)
5205 location_t else_loc = c_parser_peek_token (parser)->location;
5206 tree block = c_begin_compound_stmt (flag_isoc99);
5207 c_parser_all_labels (parser);
5208 if (c_parser_next_token_is (parser, CPP_SEMICOLON))
5210 location_t loc = c_parser_peek_token (parser)->location;
5211 warning_at (loc,
5212 OPT_Wempty_body,
5213 "suggest braces around empty body in an %<else%> statement");
5214 add_stmt (build_empty_stmt (loc));
5215 c_parser_consume_token (parser);
5217 else
5218 c_parser_statement_after_labels (parser);
5219 return c_end_compound_stmt (else_loc, block, flag_isoc99);
5222 /* Parse an if statement (C90 6.6.4, C99 6.8.4).
5224 if-statement:
5225 if ( expression ) statement
5226 if ( expression ) statement else statement
5229 static void
5230 c_parser_if_statement (c_parser *parser)
5232 tree block;
5233 location_t loc;
5234 tree cond;
5235 bool first_if = false;
5236 tree first_body, second_body;
5237 bool in_if_block;
5238 tree if_stmt;
5240 gcc_assert (c_parser_next_token_is_keyword (parser, RID_IF));
5241 c_parser_consume_token (parser);
5242 block = c_begin_compound_stmt (flag_isoc99);
5243 loc = c_parser_peek_token (parser)->location;
5244 cond = c_parser_paren_condition (parser);
5245 if (flag_cilkplus && contains_cilk_spawn_stmt (cond))
5247 error_at (loc, "if statement cannot contain %<Cilk_spawn%>");
5248 cond = error_mark_node;
5250 in_if_block = parser->in_if_block;
5251 parser->in_if_block = true;
5252 first_body = c_parser_if_body (parser, &first_if);
5253 parser->in_if_block = in_if_block;
5254 if (c_parser_next_token_is_keyword (parser, RID_ELSE))
5256 c_parser_consume_token (parser);
5257 second_body = c_parser_else_body (parser);
5259 else
5260 second_body = NULL_TREE;
5261 c_finish_if_stmt (loc, cond, first_body, second_body, first_if);
5262 if_stmt = c_end_compound_stmt (loc, block, flag_isoc99);
5264 /* If the if statement contains array notations, then we expand them. */
5265 if (flag_cilkplus && contains_array_notation_expr (if_stmt))
5266 if_stmt = fix_conditional_array_notations (if_stmt);
5267 add_stmt (if_stmt);
5270 /* Parse a switch statement (C90 6.6.4, C99 6.8.4).
5272 switch-statement:
5273 switch (expression) statement
5276 static void
5277 c_parser_switch_statement (c_parser *parser)
5279 struct c_expr ce;
5280 tree block, expr, body, save_break;
5281 location_t switch_loc = c_parser_peek_token (parser)->location;
5282 location_t switch_cond_loc;
5283 gcc_assert (c_parser_next_token_is_keyword (parser, RID_SWITCH));
5284 c_parser_consume_token (parser);
5285 block = c_begin_compound_stmt (flag_isoc99);
5286 bool explicit_cast_p = false;
5287 if (c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
5289 switch_cond_loc = c_parser_peek_token (parser)->location;
5290 if (c_parser_next_token_is (parser, CPP_OPEN_PAREN)
5291 && c_token_starts_typename (c_parser_peek_2nd_token (parser)))
5292 explicit_cast_p = true;
5293 ce = c_parser_expression (parser);
5294 ce = convert_lvalue_to_rvalue (switch_cond_loc, ce, true, false);
5295 expr = ce.value;
5296 /* ??? expr has no valid location? */
5297 if (check_no_cilk (expr,
5298 "Cilk array notation cannot be used as a condition for switch statement",
5299 "%<_Cilk_spawn%> statement cannot be used as a condition for switch statement",
5300 switch_cond_loc))
5301 expr = error_mark_node;
5302 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
5304 else
5306 switch_cond_loc = UNKNOWN_LOCATION;
5307 expr = error_mark_node;
5309 c_start_case (switch_loc, switch_cond_loc, expr, explicit_cast_p);
5310 save_break = c_break_label;
5311 c_break_label = NULL_TREE;
5312 body = c_parser_c99_block_statement (parser);
5313 c_finish_case (body, ce.original_type);
5314 if (c_break_label)
5316 location_t here = c_parser_peek_token (parser)->location;
5317 tree t = build1 (LABEL_EXPR, void_type_node, c_break_label);
5318 SET_EXPR_LOCATION (t, here);
5319 add_stmt (t);
5321 c_break_label = save_break;
5322 add_stmt (c_end_compound_stmt (switch_loc, block, flag_isoc99));
5325 /* Parse a while statement (C90 6.6.5, C99 6.8.5).
5327 while-statement:
5328 while (expression) statement
5331 static void
5332 c_parser_while_statement (c_parser *parser, bool ivdep)
5334 tree block, cond, body, save_break, save_cont;
5335 location_t loc;
5336 gcc_assert (c_parser_next_token_is_keyword (parser, RID_WHILE));
5337 c_parser_consume_token (parser);
5338 block = c_begin_compound_stmt (flag_isoc99);
5339 loc = c_parser_peek_token (parser)->location;
5340 cond = c_parser_paren_condition (parser);
5341 if (check_no_cilk (cond,
5342 "Cilk array notation cannot be used as a condition for while statement",
5343 "%<_Cilk_spawn%> statement cannot be used as a condition for while statement"))
5344 cond = error_mark_node;
5345 if (ivdep && cond != error_mark_node)
5346 cond = build2 (ANNOTATE_EXPR, TREE_TYPE (cond), cond,
5347 build_int_cst (integer_type_node,
5348 annot_expr_ivdep_kind));
5349 save_break = c_break_label;
5350 c_break_label = NULL_TREE;
5351 save_cont = c_cont_label;
5352 c_cont_label = NULL_TREE;
5353 body = c_parser_c99_block_statement (parser);
5354 c_finish_loop (loc, cond, NULL, body, c_break_label, c_cont_label, true);
5355 add_stmt (c_end_compound_stmt (loc, block, flag_isoc99));
5356 c_break_label = save_break;
5357 c_cont_label = save_cont;
5360 /* Parse a do statement (C90 6.6.5, C99 6.8.5).
5362 do-statement:
5363 do statement while ( expression ) ;
5366 static void
5367 c_parser_do_statement (c_parser *parser, bool ivdep)
5369 tree block, cond, body, save_break, save_cont, new_break, new_cont;
5370 location_t loc;
5371 gcc_assert (c_parser_next_token_is_keyword (parser, RID_DO));
5372 c_parser_consume_token (parser);
5373 if (c_parser_next_token_is (parser, CPP_SEMICOLON))
5374 warning_at (c_parser_peek_token (parser)->location,
5375 OPT_Wempty_body,
5376 "suggest braces around empty body in %<do%> statement");
5377 block = c_begin_compound_stmt (flag_isoc99);
5378 loc = c_parser_peek_token (parser)->location;
5379 save_break = c_break_label;
5380 c_break_label = NULL_TREE;
5381 save_cont = c_cont_label;
5382 c_cont_label = NULL_TREE;
5383 body = c_parser_c99_block_statement (parser);
5384 c_parser_require_keyword (parser, RID_WHILE, "expected %<while%>");
5385 new_break = c_break_label;
5386 c_break_label = save_break;
5387 new_cont = c_cont_label;
5388 c_cont_label = save_cont;
5389 cond = c_parser_paren_condition (parser);
5390 if (check_no_cilk (cond,
5391 "Cilk array notation cannot be used as a condition for a do-while statement",
5392 "%<_Cilk_spawn%> statement cannot be used as a condition for a do-while statement"))
5393 cond = error_mark_node;
5394 if (ivdep && cond != error_mark_node)
5395 cond = build2 (ANNOTATE_EXPR, TREE_TYPE (cond), cond,
5396 build_int_cst (integer_type_node,
5397 annot_expr_ivdep_kind));
5398 if (!c_parser_require (parser, CPP_SEMICOLON, "expected %<;%>"))
5399 c_parser_skip_to_end_of_block_or_statement (parser);
5400 c_finish_loop (loc, cond, NULL, body, new_break, new_cont, false);
5401 add_stmt (c_end_compound_stmt (loc, block, flag_isoc99));
5404 /* Parse a for statement (C90 6.6.5, C99 6.8.5).
5406 for-statement:
5407 for ( expression[opt] ; expression[opt] ; expression[opt] ) statement
5408 for ( nested-declaration expression[opt] ; expression[opt] ) statement
5410 The form with a declaration is new in C99.
5412 ??? In accordance with the old parser, the declaration may be a
5413 nested function, which is then rejected in check_for_loop_decls,
5414 but does it make any sense for this to be included in the grammar?
5415 Note in particular that the nested function does not include a
5416 trailing ';', whereas the "declaration" production includes one.
5417 Also, can we reject bad declarations earlier and cheaper than
5418 check_for_loop_decls?
5420 In Objective-C, there are two additional variants:
5422 foreach-statement:
5423 for ( expression in expresssion ) statement
5424 for ( declaration in expression ) statement
5426 This is inconsistent with C, because the second variant is allowed
5427 even if c99 is not enabled.
5429 The rest of the comment documents these Objective-C foreach-statement.
5431 Here is the canonical example of the first variant:
5432 for (object in array) { do something with object }
5433 we call the first expression ("object") the "object_expression" and
5434 the second expression ("array") the "collection_expression".
5435 object_expression must be an lvalue of type "id" (a generic Objective-C
5436 object) because the loop works by assigning to object_expression the
5437 various objects from the collection_expression. collection_expression
5438 must evaluate to something of type "id" which responds to the method
5439 countByEnumeratingWithState:objects:count:.
5441 The canonical example of the second variant is:
5442 for (id object in array) { do something with object }
5443 which is completely equivalent to
5445 id object;
5446 for (object in array) { do something with object }
5448 Note that initizializing 'object' in some way (eg, "for ((object =
5449 xxx) in array) { do something with object }") is possibly
5450 technically valid, but completely pointless as 'object' will be
5451 assigned to something else as soon as the loop starts. We should
5452 most likely reject it (TODO).
5454 The beginning of the Objective-C foreach-statement looks exactly
5455 like the beginning of the for-statement, and we can tell it is a
5456 foreach-statement only because the initial declaration or
5457 expression is terminated by 'in' instead of ';'.
5460 static void
5461 c_parser_for_statement (c_parser *parser, bool ivdep)
5463 tree block, cond, incr, save_break, save_cont, body;
5464 /* The following are only used when parsing an ObjC foreach statement. */
5465 tree object_expression;
5466 /* Silence the bogus uninitialized warning. */
5467 tree collection_expression = NULL;
5468 location_t loc = c_parser_peek_token (parser)->location;
5469 location_t for_loc = c_parser_peek_token (parser)->location;
5470 bool is_foreach_statement = false;
5471 gcc_assert (c_parser_next_token_is_keyword (parser, RID_FOR));
5472 c_parser_consume_token (parser);
5473 /* Open a compound statement in Objective-C as well, just in case this is
5474 as foreach expression. */
5475 block = c_begin_compound_stmt (flag_isoc99 || c_dialect_objc ());
5476 cond = error_mark_node;
5477 incr = error_mark_node;
5478 if (c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
5480 /* Parse the initialization declaration or expression. */
5481 object_expression = error_mark_node;
5482 parser->objc_could_be_foreach_context = c_dialect_objc ();
5483 if (c_parser_next_token_is (parser, CPP_SEMICOLON))
5485 parser->objc_could_be_foreach_context = false;
5486 c_parser_consume_token (parser);
5487 c_finish_expr_stmt (loc, NULL_TREE);
5489 else if (c_parser_next_tokens_start_declaration (parser))
5491 c_parser_declaration_or_fndef (parser, true, true, true, true, true,
5492 &object_expression, vNULL);
5493 parser->objc_could_be_foreach_context = false;
5495 if (c_parser_next_token_is_keyword (parser, RID_IN))
5497 c_parser_consume_token (parser);
5498 is_foreach_statement = true;
5499 if (check_for_loop_decls (for_loc, true) == NULL_TREE)
5500 c_parser_error (parser, "multiple iterating variables in fast enumeration");
5502 else
5503 check_for_loop_decls (for_loc, flag_isoc99);
5505 else if (c_parser_next_token_is_keyword (parser, RID_EXTENSION))
5507 /* __extension__ can start a declaration, but is also an
5508 unary operator that can start an expression. Consume all
5509 but the last of a possible series of __extension__ to
5510 determine which. */
5511 while (c_parser_peek_2nd_token (parser)->type == CPP_KEYWORD
5512 && (c_parser_peek_2nd_token (parser)->keyword
5513 == RID_EXTENSION))
5514 c_parser_consume_token (parser);
5515 if (c_token_starts_declaration (c_parser_peek_2nd_token (parser)))
5517 int ext;
5518 ext = disable_extension_diagnostics ();
5519 c_parser_consume_token (parser);
5520 c_parser_declaration_or_fndef (parser, true, true, true, true,
5521 true, &object_expression, vNULL);
5522 parser->objc_could_be_foreach_context = false;
5524 restore_extension_diagnostics (ext);
5525 if (c_parser_next_token_is_keyword (parser, RID_IN))
5527 c_parser_consume_token (parser);
5528 is_foreach_statement = true;
5529 if (check_for_loop_decls (for_loc, true) == NULL_TREE)
5530 c_parser_error (parser, "multiple iterating variables in fast enumeration");
5532 else
5533 check_for_loop_decls (for_loc, flag_isoc99);
5535 else
5536 goto init_expr;
5538 else
5540 init_expr:
5542 struct c_expr ce;
5543 tree init_expression;
5544 ce = c_parser_expression (parser);
5545 /* In theory we could forbid _Cilk_spawn here, as the spec says "only in top
5546 level statement", but it works just fine, so allow it. */
5547 init_expression = ce.value;
5548 parser->objc_could_be_foreach_context = false;
5549 if (c_parser_next_token_is_keyword (parser, RID_IN))
5551 c_parser_consume_token (parser);
5552 is_foreach_statement = true;
5553 if (! lvalue_p (init_expression))
5554 c_parser_error (parser, "invalid iterating variable in fast enumeration");
5555 object_expression = c_fully_fold (init_expression, false, NULL);
5557 else
5559 ce = convert_lvalue_to_rvalue (loc, ce, true, false);
5560 init_expression = ce.value;
5561 c_finish_expr_stmt (loc, init_expression);
5562 c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
5566 /* Parse the loop condition. In the case of a foreach
5567 statement, there is no loop condition. */
5568 gcc_assert (!parser->objc_could_be_foreach_context);
5569 if (!is_foreach_statement)
5571 if (c_parser_next_token_is (parser, CPP_SEMICOLON))
5573 if (ivdep)
5575 c_parser_error (parser, "missing loop condition in loop with "
5576 "%<GCC ivdep%> pragma");
5577 cond = error_mark_node;
5579 else
5581 c_parser_consume_token (parser);
5582 cond = NULL_TREE;
5585 else
5587 cond = c_parser_condition (parser);
5588 if (check_no_cilk (cond,
5589 "Cilk array notation cannot be used in a condition for a for-loop",
5590 "%<_Cilk_spawn%> statement cannot be used in a condition for a for-loop"))
5591 cond = error_mark_node;
5592 c_parser_skip_until_found (parser, CPP_SEMICOLON,
5593 "expected %<;%>");
5595 if (ivdep && cond != error_mark_node)
5596 cond = build2 (ANNOTATE_EXPR, TREE_TYPE (cond), cond,
5597 build_int_cst (integer_type_node,
5598 annot_expr_ivdep_kind));
5600 /* Parse the increment expression (the third expression in a
5601 for-statement). In the case of a foreach-statement, this is
5602 the expression that follows the 'in'. */
5603 if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
5605 if (is_foreach_statement)
5607 c_parser_error (parser, "missing collection in fast enumeration");
5608 collection_expression = error_mark_node;
5610 else
5611 incr = c_process_expr_stmt (loc, NULL_TREE);
5613 else
5615 if (is_foreach_statement)
5616 collection_expression = c_fully_fold (c_parser_expression (parser).value,
5617 false, NULL);
5618 else
5620 struct c_expr ce = c_parser_expression (parser);
5621 ce = convert_lvalue_to_rvalue (loc, ce, true, false);
5622 incr = c_process_expr_stmt (loc, ce.value);
5625 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
5627 save_break = c_break_label;
5628 c_break_label = NULL_TREE;
5629 save_cont = c_cont_label;
5630 c_cont_label = NULL_TREE;
5631 body = c_parser_c99_block_statement (parser);
5632 if (is_foreach_statement)
5633 objc_finish_foreach_loop (loc, object_expression, collection_expression, body, c_break_label, c_cont_label);
5634 else
5635 c_finish_loop (loc, cond, incr, body, c_break_label, c_cont_label, true);
5636 add_stmt (c_end_compound_stmt (loc, block, flag_isoc99 || c_dialect_objc ()));
5637 c_break_label = save_break;
5638 c_cont_label = save_cont;
5641 /* Parse an asm statement, a GNU extension. This is a full-blown asm
5642 statement with inputs, outputs, clobbers, and volatile tag
5643 allowed.
5645 asm-statement:
5646 asm type-qualifier[opt] ( asm-argument ) ;
5647 asm type-qualifier[opt] goto ( asm-goto-argument ) ;
5649 asm-argument:
5650 asm-string-literal
5651 asm-string-literal : asm-operands[opt]
5652 asm-string-literal : asm-operands[opt] : asm-operands[opt]
5653 asm-string-literal : asm-operands[opt] : asm-operands[opt] : asm-clobbers[opt]
5655 asm-goto-argument:
5656 asm-string-literal : : asm-operands[opt] : asm-clobbers[opt] \
5657 : asm-goto-operands
5659 Qualifiers other than volatile are accepted in the syntax but
5660 warned for. */
5662 static tree
5663 c_parser_asm_statement (c_parser *parser)
5665 tree quals, str, outputs, inputs, clobbers, labels, ret;
5666 bool simple, is_goto;
5667 location_t asm_loc = c_parser_peek_token (parser)->location;
5668 int section, nsections;
5670 gcc_assert (c_parser_next_token_is_keyword (parser, RID_ASM));
5671 c_parser_consume_token (parser);
5672 if (c_parser_next_token_is_keyword (parser, RID_VOLATILE))
5674 quals = c_parser_peek_token (parser)->value;
5675 c_parser_consume_token (parser);
5677 else if (c_parser_next_token_is_keyword (parser, RID_CONST)
5678 || c_parser_next_token_is_keyword (parser, RID_RESTRICT))
5680 warning_at (c_parser_peek_token (parser)->location,
5682 "%E qualifier ignored on asm",
5683 c_parser_peek_token (parser)->value);
5684 quals = NULL_TREE;
5685 c_parser_consume_token (parser);
5687 else
5688 quals = NULL_TREE;
5690 is_goto = false;
5691 if (c_parser_next_token_is_keyword (parser, RID_GOTO))
5693 c_parser_consume_token (parser);
5694 is_goto = true;
5697 /* ??? Follow the C++ parser rather than using the
5698 lex_untranslated_string kludge. */
5699 parser->lex_untranslated_string = true;
5700 ret = NULL;
5702 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
5703 goto error;
5705 str = c_parser_asm_string_literal (parser);
5706 if (str == NULL_TREE)
5707 goto error_close_paren;
5709 simple = true;
5710 outputs = NULL_TREE;
5711 inputs = NULL_TREE;
5712 clobbers = NULL_TREE;
5713 labels = NULL_TREE;
5715 if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN) && !is_goto)
5716 goto done_asm;
5718 /* Parse each colon-delimited section of operands. */
5719 nsections = 3 + is_goto;
5720 for (section = 0; section < nsections; ++section)
5722 if (!c_parser_require (parser, CPP_COLON,
5723 is_goto
5724 ? "expected %<:%>"
5725 : "expected %<:%> or %<)%>"))
5726 goto error_close_paren;
5728 /* Once past any colon, we're no longer a simple asm. */
5729 simple = false;
5731 if ((!c_parser_next_token_is (parser, CPP_COLON)
5732 && !c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
5733 || section == 3)
5734 switch (section)
5736 case 0:
5737 /* For asm goto, we don't allow output operands, but reserve
5738 the slot for a future extension that does allow them. */
5739 if (!is_goto)
5740 outputs = c_parser_asm_operands (parser);
5741 break;
5742 case 1:
5743 inputs = c_parser_asm_operands (parser);
5744 break;
5745 case 2:
5746 clobbers = c_parser_asm_clobbers (parser);
5747 break;
5748 case 3:
5749 labels = c_parser_asm_goto_operands (parser);
5750 break;
5751 default:
5752 gcc_unreachable ();
5755 if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN) && !is_goto)
5756 goto done_asm;
5759 done_asm:
5760 if (!c_parser_require (parser, CPP_CLOSE_PAREN, "expected %<)%>"))
5762 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
5763 goto error;
5766 if (!c_parser_require (parser, CPP_SEMICOLON, "expected %<;%>"))
5767 c_parser_skip_to_end_of_block_or_statement (parser);
5769 ret = build_asm_stmt (quals, build_asm_expr (asm_loc, str, outputs, inputs,
5770 clobbers, labels, simple));
5772 error:
5773 parser->lex_untranslated_string = false;
5774 return ret;
5776 error_close_paren:
5777 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
5778 goto error;
5781 /* Parse asm operands, a GNU extension.
5783 asm-operands:
5784 asm-operand
5785 asm-operands , asm-operand
5787 asm-operand:
5788 asm-string-literal ( expression )
5789 [ identifier ] asm-string-literal ( expression )
5792 static tree
5793 c_parser_asm_operands (c_parser *parser)
5795 tree list = NULL_TREE;
5796 while (true)
5798 tree name, str;
5799 struct c_expr expr;
5800 if (c_parser_next_token_is (parser, CPP_OPEN_SQUARE))
5802 c_parser_consume_token (parser);
5803 if (c_parser_next_token_is (parser, CPP_NAME))
5805 tree id = c_parser_peek_token (parser)->value;
5806 c_parser_consume_token (parser);
5807 name = build_string (IDENTIFIER_LENGTH (id),
5808 IDENTIFIER_POINTER (id));
5810 else
5812 c_parser_error (parser, "expected identifier");
5813 c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE, NULL);
5814 return NULL_TREE;
5816 c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE,
5817 "expected %<]%>");
5819 else
5820 name = NULL_TREE;
5821 str = c_parser_asm_string_literal (parser);
5822 if (str == NULL_TREE)
5823 return NULL_TREE;
5824 parser->lex_untranslated_string = false;
5825 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
5827 parser->lex_untranslated_string = true;
5828 return NULL_TREE;
5830 expr = c_parser_expression (parser);
5831 mark_exp_read (expr.value);
5832 parser->lex_untranslated_string = true;
5833 if (!c_parser_require (parser, CPP_CLOSE_PAREN, "expected %<)%>"))
5835 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
5836 return NULL_TREE;
5838 list = chainon (list, build_tree_list (build_tree_list (name, str),
5839 expr.value));
5840 if (c_parser_next_token_is (parser, CPP_COMMA))
5841 c_parser_consume_token (parser);
5842 else
5843 break;
5845 return list;
5848 /* Parse asm clobbers, a GNU extension.
5850 asm-clobbers:
5851 asm-string-literal
5852 asm-clobbers , asm-string-literal
5855 static tree
5856 c_parser_asm_clobbers (c_parser *parser)
5858 tree list = NULL_TREE;
5859 while (true)
5861 tree str = c_parser_asm_string_literal (parser);
5862 if (str)
5863 list = tree_cons (NULL_TREE, str, list);
5864 else
5865 return NULL_TREE;
5866 if (c_parser_next_token_is (parser, CPP_COMMA))
5867 c_parser_consume_token (parser);
5868 else
5869 break;
5871 return list;
5874 /* Parse asm goto labels, a GNU extension.
5876 asm-goto-operands:
5877 identifier
5878 asm-goto-operands , identifier
5881 static tree
5882 c_parser_asm_goto_operands (c_parser *parser)
5884 tree list = NULL_TREE;
5885 while (true)
5887 tree name, label;
5889 if (c_parser_next_token_is (parser, CPP_NAME))
5891 c_token *tok = c_parser_peek_token (parser);
5892 name = tok->value;
5893 label = lookup_label_for_goto (tok->location, name);
5894 c_parser_consume_token (parser);
5895 TREE_USED (label) = 1;
5897 else
5899 c_parser_error (parser, "expected identifier");
5900 return NULL_TREE;
5903 name = build_string (IDENTIFIER_LENGTH (name),
5904 IDENTIFIER_POINTER (name));
5905 list = tree_cons (name, label, list);
5906 if (c_parser_next_token_is (parser, CPP_COMMA))
5907 c_parser_consume_token (parser);
5908 else
5909 return nreverse (list);
5913 /* Parse an expression other than a compound expression; that is, an
5914 assignment expression (C90 6.3.16, C99 6.5.16). If AFTER is not
5915 NULL then it is an Objective-C message expression which is the
5916 primary-expression starting the expression as an initializer.
5918 assignment-expression:
5919 conditional-expression
5920 unary-expression assignment-operator assignment-expression
5922 assignment-operator: one of
5923 = *= /= %= += -= <<= >>= &= ^= |=
5925 In GNU C we accept any conditional expression on the LHS and
5926 diagnose the invalid lvalue rather than producing a syntax
5927 error. */
5929 static struct c_expr
5930 c_parser_expr_no_commas (c_parser *parser, struct c_expr *after,
5931 tree omp_atomic_lhs)
5933 struct c_expr lhs, rhs, ret;
5934 enum tree_code code;
5935 location_t op_location, exp_location;
5936 gcc_assert (!after || c_dialect_objc ());
5937 lhs = c_parser_conditional_expression (parser, after, omp_atomic_lhs);
5938 op_location = c_parser_peek_token (parser)->location;
5939 switch (c_parser_peek_token (parser)->type)
5941 case CPP_EQ:
5942 code = NOP_EXPR;
5943 break;
5944 case CPP_MULT_EQ:
5945 code = MULT_EXPR;
5946 break;
5947 case CPP_DIV_EQ:
5948 code = TRUNC_DIV_EXPR;
5949 break;
5950 case CPP_MOD_EQ:
5951 code = TRUNC_MOD_EXPR;
5952 break;
5953 case CPP_PLUS_EQ:
5954 code = PLUS_EXPR;
5955 break;
5956 case CPP_MINUS_EQ:
5957 code = MINUS_EXPR;
5958 break;
5959 case CPP_LSHIFT_EQ:
5960 code = LSHIFT_EXPR;
5961 break;
5962 case CPP_RSHIFT_EQ:
5963 code = RSHIFT_EXPR;
5964 break;
5965 case CPP_AND_EQ:
5966 code = BIT_AND_EXPR;
5967 break;
5968 case CPP_XOR_EQ:
5969 code = BIT_XOR_EXPR;
5970 break;
5971 case CPP_OR_EQ:
5972 code = BIT_IOR_EXPR;
5973 break;
5974 default:
5975 return lhs;
5977 c_parser_consume_token (parser);
5978 exp_location = c_parser_peek_token (parser)->location;
5979 rhs = c_parser_expr_no_commas (parser, NULL);
5980 rhs = convert_lvalue_to_rvalue (exp_location, rhs, true, true);
5982 ret.value = build_modify_expr (op_location, lhs.value, lhs.original_type,
5983 code, exp_location, rhs.value,
5984 rhs.original_type);
5985 if (code == NOP_EXPR)
5986 ret.original_code = MODIFY_EXPR;
5987 else
5989 TREE_NO_WARNING (ret.value) = 1;
5990 ret.original_code = ERROR_MARK;
5992 ret.original_type = NULL;
5993 return ret;
5996 /* Parse a conditional expression (C90 6.3.15, C99 6.5.15). If AFTER
5997 is not NULL then it is an Objective-C message expression which is
5998 the primary-expression starting the expression as an initializer.
6000 conditional-expression:
6001 logical-OR-expression
6002 logical-OR-expression ? expression : conditional-expression
6004 GNU extensions:
6006 conditional-expression:
6007 logical-OR-expression ? : conditional-expression
6010 static struct c_expr
6011 c_parser_conditional_expression (c_parser *parser, struct c_expr *after,
6012 tree omp_atomic_lhs)
6014 struct c_expr cond, exp1, exp2, ret;
6015 location_t cond_loc, colon_loc, middle_loc;
6017 gcc_assert (!after || c_dialect_objc ());
6019 cond = c_parser_binary_expression (parser, after, omp_atomic_lhs);
6021 if (c_parser_next_token_is_not (parser, CPP_QUERY))
6022 return cond;
6023 cond_loc = c_parser_peek_token (parser)->location;
6024 cond = convert_lvalue_to_rvalue (cond_loc, cond, true, true);
6025 c_parser_consume_token (parser);
6026 if (c_parser_next_token_is (parser, CPP_COLON))
6028 tree eptype = NULL_TREE;
6030 middle_loc = c_parser_peek_token (parser)->location;
6031 pedwarn (middle_loc, OPT_Wpedantic,
6032 "ISO C forbids omitting the middle term of a ?: expression");
6033 warn_for_omitted_condop (middle_loc, cond.value);
6034 if (TREE_CODE (cond.value) == EXCESS_PRECISION_EXPR)
6036 eptype = TREE_TYPE (cond.value);
6037 cond.value = TREE_OPERAND (cond.value, 0);
6039 /* Make sure first operand is calculated only once. */
6040 exp1.value = c_save_expr (default_conversion (cond.value));
6041 if (eptype)
6042 exp1.value = build1 (EXCESS_PRECISION_EXPR, eptype, exp1.value);
6043 exp1.original_type = NULL;
6044 cond.value = c_objc_common_truthvalue_conversion (cond_loc, exp1.value);
6045 c_inhibit_evaluation_warnings += cond.value == truthvalue_true_node;
6047 else
6049 cond.value
6050 = c_objc_common_truthvalue_conversion
6051 (cond_loc, default_conversion (cond.value));
6052 c_inhibit_evaluation_warnings += cond.value == truthvalue_false_node;
6053 exp1 = c_parser_expression_conv (parser);
6054 mark_exp_read (exp1.value);
6055 c_inhibit_evaluation_warnings +=
6056 ((cond.value == truthvalue_true_node)
6057 - (cond.value == truthvalue_false_node));
6060 colon_loc = c_parser_peek_token (parser)->location;
6061 if (!c_parser_require (parser, CPP_COLON, "expected %<:%>"))
6063 c_inhibit_evaluation_warnings -= cond.value == truthvalue_true_node;
6064 ret.value = error_mark_node;
6065 ret.original_code = ERROR_MARK;
6066 ret.original_type = NULL;
6067 return ret;
6070 location_t exp2_loc = c_parser_peek_token (parser)->location;
6071 exp2 = c_parser_conditional_expression (parser, NULL, NULL_TREE);
6072 exp2 = convert_lvalue_to_rvalue (exp2_loc, exp2, true, true);
6074 c_inhibit_evaluation_warnings -= cond.value == truthvalue_true_node;
6075 ret.value = build_conditional_expr (colon_loc, cond.value,
6076 cond.original_code == C_MAYBE_CONST_EXPR,
6077 exp1.value, exp1.original_type,
6078 exp2.value, exp2.original_type);
6079 ret.original_code = ERROR_MARK;
6080 if (exp1.value == error_mark_node || exp2.value == error_mark_node)
6081 ret.original_type = NULL;
6082 else
6084 tree t1, t2;
6086 /* If both sides are enum type, the default conversion will have
6087 made the type of the result be an integer type. We want to
6088 remember the enum types we started with. */
6089 t1 = exp1.original_type ? exp1.original_type : TREE_TYPE (exp1.value);
6090 t2 = exp2.original_type ? exp2.original_type : TREE_TYPE (exp2.value);
6091 ret.original_type = ((t1 != error_mark_node
6092 && t2 != error_mark_node
6093 && (TYPE_MAIN_VARIANT (t1)
6094 == TYPE_MAIN_VARIANT (t2)))
6095 ? t1
6096 : NULL);
6098 return ret;
6101 /* Parse a binary expression; that is, a logical-OR-expression (C90
6102 6.3.5-6.3.14, C99 6.5.5-6.5.14). If AFTER is not NULL then it is
6103 an Objective-C message expression which is the primary-expression
6104 starting the expression as an initializer.
6106 OMP_ATOMIC_LHS is NULL, unless parsing OpenMP #pragma omp atomic,
6107 when it should be the unfolded lhs. In a valid OpenMP source,
6108 one of the operands of the toplevel binary expression must be equal
6109 to it. In that case, just return a build2 created binary operation
6110 rather than result of parser_build_binary_op.
6112 multiplicative-expression:
6113 cast-expression
6114 multiplicative-expression * cast-expression
6115 multiplicative-expression / cast-expression
6116 multiplicative-expression % cast-expression
6118 additive-expression:
6119 multiplicative-expression
6120 additive-expression + multiplicative-expression
6121 additive-expression - multiplicative-expression
6123 shift-expression:
6124 additive-expression
6125 shift-expression << additive-expression
6126 shift-expression >> additive-expression
6128 relational-expression:
6129 shift-expression
6130 relational-expression < shift-expression
6131 relational-expression > shift-expression
6132 relational-expression <= shift-expression
6133 relational-expression >= shift-expression
6135 equality-expression:
6136 relational-expression
6137 equality-expression == relational-expression
6138 equality-expression != relational-expression
6140 AND-expression:
6141 equality-expression
6142 AND-expression & equality-expression
6144 exclusive-OR-expression:
6145 AND-expression
6146 exclusive-OR-expression ^ AND-expression
6148 inclusive-OR-expression:
6149 exclusive-OR-expression
6150 inclusive-OR-expression | exclusive-OR-expression
6152 logical-AND-expression:
6153 inclusive-OR-expression
6154 logical-AND-expression && inclusive-OR-expression
6156 logical-OR-expression:
6157 logical-AND-expression
6158 logical-OR-expression || logical-AND-expression
6161 static struct c_expr
6162 c_parser_binary_expression (c_parser *parser, struct c_expr *after,
6163 tree omp_atomic_lhs)
6165 /* A binary expression is parsed using operator-precedence parsing,
6166 with the operands being cast expressions. All the binary
6167 operators are left-associative. Thus a binary expression is of
6168 form:
6170 E0 op1 E1 op2 E2 ...
6172 which we represent on a stack. On the stack, the precedence
6173 levels are strictly increasing. When a new operator is
6174 encountered of higher precedence than that at the top of the
6175 stack, it is pushed; its LHS is the top expression, and its RHS
6176 is everything parsed until it is popped. When a new operator is
6177 encountered with precedence less than or equal to that at the top
6178 of the stack, triples E[i-1] op[i] E[i] are popped and replaced
6179 by the result of the operation until the operator at the top of
6180 the stack has lower precedence than the new operator or there is
6181 only one element on the stack; then the top expression is the LHS
6182 of the new operator. In the case of logical AND and OR
6183 expressions, we also need to adjust c_inhibit_evaluation_warnings
6184 as appropriate when the operators are pushed and popped. */
6186 struct {
6187 /* The expression at this stack level. */
6188 struct c_expr expr;
6189 /* The precedence of the operator on its left, PREC_NONE at the
6190 bottom of the stack. */
6191 enum c_parser_prec prec;
6192 /* The operation on its left. */
6193 enum tree_code op;
6194 /* The source location of this operation. */
6195 location_t loc;
6196 } stack[NUM_PRECS];
6197 int sp;
6198 /* Location of the binary operator. */
6199 location_t binary_loc = UNKNOWN_LOCATION; /* Quiet warning. */
6200 #define POP \
6201 do { \
6202 switch (stack[sp].op) \
6204 case TRUTH_ANDIF_EXPR: \
6205 c_inhibit_evaluation_warnings -= (stack[sp - 1].expr.value \
6206 == truthvalue_false_node); \
6207 break; \
6208 case TRUTH_ORIF_EXPR: \
6209 c_inhibit_evaluation_warnings -= (stack[sp - 1].expr.value \
6210 == truthvalue_true_node); \
6211 break; \
6212 default: \
6213 break; \
6215 stack[sp - 1].expr \
6216 = convert_lvalue_to_rvalue (stack[sp - 1].loc, \
6217 stack[sp - 1].expr, true, true); \
6218 stack[sp].expr \
6219 = convert_lvalue_to_rvalue (stack[sp].loc, \
6220 stack[sp].expr, true, true); \
6221 if (__builtin_expect (omp_atomic_lhs != NULL_TREE, 0) && sp == 1 \
6222 && c_parser_peek_token (parser)->type == CPP_SEMICOLON \
6223 && ((1 << stack[sp].prec) \
6224 & (1 << (PREC_BITOR | PREC_BITXOR | PREC_BITAND | PREC_SHIFT \
6225 | PREC_ADD | PREC_MULT))) \
6226 && stack[sp].op != TRUNC_MOD_EXPR \
6227 && stack[0].expr.value != error_mark_node \
6228 && stack[1].expr.value != error_mark_node \
6229 && (c_tree_equal (stack[0].expr.value, omp_atomic_lhs) \
6230 || c_tree_equal (stack[1].expr.value, omp_atomic_lhs))) \
6231 stack[0].expr.value \
6232 = build2 (stack[1].op, TREE_TYPE (stack[0].expr.value), \
6233 stack[0].expr.value, stack[1].expr.value); \
6234 else \
6235 stack[sp - 1].expr = parser_build_binary_op (stack[sp].loc, \
6236 stack[sp].op, \
6237 stack[sp - 1].expr, \
6238 stack[sp].expr); \
6239 sp--; \
6240 } while (0)
6241 gcc_assert (!after || c_dialect_objc ());
6242 stack[0].loc = c_parser_peek_token (parser)->location;
6243 stack[0].expr = c_parser_cast_expression (parser, after);
6244 stack[0].prec = PREC_NONE;
6245 sp = 0;
6246 while (true)
6248 enum c_parser_prec oprec;
6249 enum tree_code ocode;
6250 if (parser->error)
6251 goto out;
6252 switch (c_parser_peek_token (parser)->type)
6254 case CPP_MULT:
6255 oprec = PREC_MULT;
6256 ocode = MULT_EXPR;
6257 break;
6258 case CPP_DIV:
6259 oprec = PREC_MULT;
6260 ocode = TRUNC_DIV_EXPR;
6261 break;
6262 case CPP_MOD:
6263 oprec = PREC_MULT;
6264 ocode = TRUNC_MOD_EXPR;
6265 break;
6266 case CPP_PLUS:
6267 oprec = PREC_ADD;
6268 ocode = PLUS_EXPR;
6269 break;
6270 case CPP_MINUS:
6271 oprec = PREC_ADD;
6272 ocode = MINUS_EXPR;
6273 break;
6274 case CPP_LSHIFT:
6275 oprec = PREC_SHIFT;
6276 ocode = LSHIFT_EXPR;
6277 break;
6278 case CPP_RSHIFT:
6279 oprec = PREC_SHIFT;
6280 ocode = RSHIFT_EXPR;
6281 break;
6282 case CPP_LESS:
6283 oprec = PREC_REL;
6284 ocode = LT_EXPR;
6285 break;
6286 case CPP_GREATER:
6287 oprec = PREC_REL;
6288 ocode = GT_EXPR;
6289 break;
6290 case CPP_LESS_EQ:
6291 oprec = PREC_REL;
6292 ocode = LE_EXPR;
6293 break;
6294 case CPP_GREATER_EQ:
6295 oprec = PREC_REL;
6296 ocode = GE_EXPR;
6297 break;
6298 case CPP_EQ_EQ:
6299 oprec = PREC_EQ;
6300 ocode = EQ_EXPR;
6301 break;
6302 case CPP_NOT_EQ:
6303 oprec = PREC_EQ;
6304 ocode = NE_EXPR;
6305 break;
6306 case CPP_AND:
6307 oprec = PREC_BITAND;
6308 ocode = BIT_AND_EXPR;
6309 break;
6310 case CPP_XOR:
6311 oprec = PREC_BITXOR;
6312 ocode = BIT_XOR_EXPR;
6313 break;
6314 case CPP_OR:
6315 oprec = PREC_BITOR;
6316 ocode = BIT_IOR_EXPR;
6317 break;
6318 case CPP_AND_AND:
6319 oprec = PREC_LOGAND;
6320 ocode = TRUTH_ANDIF_EXPR;
6321 break;
6322 case CPP_OR_OR:
6323 oprec = PREC_LOGOR;
6324 ocode = TRUTH_ORIF_EXPR;
6325 break;
6326 default:
6327 /* Not a binary operator, so end of the binary
6328 expression. */
6329 goto out;
6331 binary_loc = c_parser_peek_token (parser)->location;
6332 while (oprec <= stack[sp].prec)
6333 POP;
6334 c_parser_consume_token (parser);
6335 switch (ocode)
6337 case TRUTH_ANDIF_EXPR:
6338 stack[sp].expr
6339 = convert_lvalue_to_rvalue (stack[sp].loc,
6340 stack[sp].expr, true, true);
6341 stack[sp].expr.value = c_objc_common_truthvalue_conversion
6342 (stack[sp].loc, default_conversion (stack[sp].expr.value));
6343 c_inhibit_evaluation_warnings += (stack[sp].expr.value
6344 == truthvalue_false_node);
6345 break;
6346 case TRUTH_ORIF_EXPR:
6347 stack[sp].expr
6348 = convert_lvalue_to_rvalue (stack[sp].loc,
6349 stack[sp].expr, true, true);
6350 stack[sp].expr.value = c_objc_common_truthvalue_conversion
6351 (stack[sp].loc, default_conversion (stack[sp].expr.value));
6352 c_inhibit_evaluation_warnings += (stack[sp].expr.value
6353 == truthvalue_true_node);
6354 break;
6355 default:
6356 break;
6358 sp++;
6359 stack[sp].loc = binary_loc;
6360 stack[sp].expr = c_parser_cast_expression (parser, NULL);
6361 stack[sp].prec = oprec;
6362 stack[sp].op = ocode;
6363 stack[sp].loc = binary_loc;
6365 out:
6366 while (sp > 0)
6367 POP;
6368 return stack[0].expr;
6369 #undef POP
6372 /* Parse a cast expression (C90 6.3.4, C99 6.5.4). If AFTER is not
6373 NULL then it is an Objective-C message expression which is the
6374 primary-expression starting the expression as an initializer.
6376 cast-expression:
6377 unary-expression
6378 ( type-name ) unary-expression
6381 static struct c_expr
6382 c_parser_cast_expression (c_parser *parser, struct c_expr *after)
6384 location_t cast_loc = c_parser_peek_token (parser)->location;
6385 gcc_assert (!after || c_dialect_objc ());
6386 if (after)
6387 return c_parser_postfix_expression_after_primary (parser,
6388 cast_loc, *after);
6389 /* If the expression begins with a parenthesized type name, it may
6390 be either a cast or a compound literal; we need to see whether
6391 the next character is '{' to tell the difference. If not, it is
6392 an unary expression. Full detection of unknown typenames here
6393 would require a 3-token lookahead. */
6394 if (c_parser_next_token_is (parser, CPP_OPEN_PAREN)
6395 && c_token_starts_typename (c_parser_peek_2nd_token (parser)))
6397 struct c_type_name *type_name;
6398 struct c_expr ret;
6399 struct c_expr expr;
6400 c_parser_consume_token (parser);
6401 type_name = c_parser_type_name (parser);
6402 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
6403 if (type_name == NULL)
6405 ret.value = error_mark_node;
6406 ret.original_code = ERROR_MARK;
6407 ret.original_type = NULL;
6408 return ret;
6411 /* Save casted types in the function's used types hash table. */
6412 used_types_insert (type_name->specs->type);
6414 if (c_parser_next_token_is (parser, CPP_OPEN_BRACE))
6415 return c_parser_postfix_expression_after_paren_type (parser, type_name,
6416 cast_loc);
6418 location_t expr_loc = c_parser_peek_token (parser)->location;
6419 expr = c_parser_cast_expression (parser, NULL);
6420 expr = convert_lvalue_to_rvalue (expr_loc, expr, true, true);
6422 ret.value = c_cast_expr (cast_loc, type_name, expr.value);
6423 ret.original_code = ERROR_MARK;
6424 ret.original_type = NULL;
6425 return ret;
6427 else
6428 return c_parser_unary_expression (parser);
6431 /* Parse an unary expression (C90 6.3.3, C99 6.5.3).
6433 unary-expression:
6434 postfix-expression
6435 ++ unary-expression
6436 -- unary-expression
6437 unary-operator cast-expression
6438 sizeof unary-expression
6439 sizeof ( type-name )
6441 unary-operator: one of
6442 & * + - ~ !
6444 GNU extensions:
6446 unary-expression:
6447 __alignof__ unary-expression
6448 __alignof__ ( type-name )
6449 && identifier
6451 (C11 permits _Alignof with type names only.)
6453 unary-operator: one of
6454 __extension__ __real__ __imag__
6456 Transactional Memory:
6458 unary-expression:
6459 transaction-expression
6461 In addition, the GNU syntax treats ++ and -- as unary operators, so
6462 they may be applied to cast expressions with errors for non-lvalues
6463 given later. */
6465 static struct c_expr
6466 c_parser_unary_expression (c_parser *parser)
6468 int ext;
6469 struct c_expr ret, op;
6470 location_t op_loc = c_parser_peek_token (parser)->location;
6471 location_t exp_loc;
6472 ret.original_code = ERROR_MARK;
6473 ret.original_type = NULL;
6474 switch (c_parser_peek_token (parser)->type)
6476 case CPP_PLUS_PLUS:
6477 c_parser_consume_token (parser);
6478 exp_loc = c_parser_peek_token (parser)->location;
6479 op = c_parser_cast_expression (parser, NULL);
6481 /* If there is array notations in op, we expand them. */
6482 if (flag_cilkplus && TREE_CODE (op.value) == ARRAY_NOTATION_REF)
6483 return fix_array_notation_expr (exp_loc, PREINCREMENT_EXPR, op);
6484 else
6486 op = default_function_array_read_conversion (exp_loc, op);
6487 return parser_build_unary_op (op_loc, PREINCREMENT_EXPR, op);
6489 case CPP_MINUS_MINUS:
6490 c_parser_consume_token (parser);
6491 exp_loc = c_parser_peek_token (parser)->location;
6492 op = c_parser_cast_expression (parser, NULL);
6494 /* If there is array notations in op, we expand them. */
6495 if (flag_cilkplus && TREE_CODE (op.value) == ARRAY_NOTATION_REF)
6496 return fix_array_notation_expr (exp_loc, PREDECREMENT_EXPR, op);
6497 else
6499 op = default_function_array_read_conversion (exp_loc, op);
6500 return parser_build_unary_op (op_loc, PREDECREMENT_EXPR, op);
6502 case CPP_AND:
6503 c_parser_consume_token (parser);
6504 op = c_parser_cast_expression (parser, NULL);
6505 mark_exp_read (op.value);
6506 return parser_build_unary_op (op_loc, ADDR_EXPR, op);
6507 case CPP_MULT:
6508 c_parser_consume_token (parser);
6509 exp_loc = c_parser_peek_token (parser)->location;
6510 op = c_parser_cast_expression (parser, NULL);
6511 op = convert_lvalue_to_rvalue (exp_loc, op, true, true);
6512 ret.value = build_indirect_ref (op_loc, op.value, RO_UNARY_STAR);
6513 return ret;
6514 case CPP_PLUS:
6515 if (!c_dialect_objc () && !in_system_header_at (input_location))
6516 warning_at (op_loc,
6517 OPT_Wtraditional,
6518 "traditional C rejects the unary plus operator");
6519 c_parser_consume_token (parser);
6520 exp_loc = c_parser_peek_token (parser)->location;
6521 op = c_parser_cast_expression (parser, NULL);
6522 op = convert_lvalue_to_rvalue (exp_loc, op, true, true);
6523 return parser_build_unary_op (op_loc, CONVERT_EXPR, op);
6524 case CPP_MINUS:
6525 c_parser_consume_token (parser);
6526 exp_loc = c_parser_peek_token (parser)->location;
6527 op = c_parser_cast_expression (parser, NULL);
6528 op = convert_lvalue_to_rvalue (exp_loc, op, true, true);
6529 return parser_build_unary_op (op_loc, NEGATE_EXPR, op);
6530 case CPP_COMPL:
6531 c_parser_consume_token (parser);
6532 exp_loc = c_parser_peek_token (parser)->location;
6533 op = c_parser_cast_expression (parser, NULL);
6534 op = convert_lvalue_to_rvalue (exp_loc, op, true, true);
6535 return parser_build_unary_op (op_loc, BIT_NOT_EXPR, op);
6536 case CPP_NOT:
6537 c_parser_consume_token (parser);
6538 exp_loc = c_parser_peek_token (parser)->location;
6539 op = c_parser_cast_expression (parser, NULL);
6540 op = convert_lvalue_to_rvalue (exp_loc, op, true, true);
6541 return parser_build_unary_op (op_loc, TRUTH_NOT_EXPR, op);
6542 case CPP_AND_AND:
6543 /* Refer to the address of a label as a pointer. */
6544 c_parser_consume_token (parser);
6545 if (c_parser_next_token_is (parser, CPP_NAME))
6547 ret.value = finish_label_address_expr
6548 (c_parser_peek_token (parser)->value, op_loc);
6549 c_parser_consume_token (parser);
6551 else
6553 c_parser_error (parser, "expected identifier");
6554 ret.value = error_mark_node;
6556 return ret;
6557 case CPP_KEYWORD:
6558 switch (c_parser_peek_token (parser)->keyword)
6560 case RID_SIZEOF:
6561 return c_parser_sizeof_expression (parser);
6562 case RID_ALIGNOF:
6563 return c_parser_alignof_expression (parser);
6564 case RID_EXTENSION:
6565 c_parser_consume_token (parser);
6566 ext = disable_extension_diagnostics ();
6567 ret = c_parser_cast_expression (parser, NULL);
6568 restore_extension_diagnostics (ext);
6569 return ret;
6570 case RID_REALPART:
6571 c_parser_consume_token (parser);
6572 exp_loc = c_parser_peek_token (parser)->location;
6573 op = c_parser_cast_expression (parser, NULL);
6574 op = default_function_array_conversion (exp_loc, op);
6575 return parser_build_unary_op (op_loc, REALPART_EXPR, op);
6576 case RID_IMAGPART:
6577 c_parser_consume_token (parser);
6578 exp_loc = c_parser_peek_token (parser)->location;
6579 op = c_parser_cast_expression (parser, NULL);
6580 op = default_function_array_conversion (exp_loc, op);
6581 return parser_build_unary_op (op_loc, IMAGPART_EXPR, op);
6582 case RID_TRANSACTION_ATOMIC:
6583 case RID_TRANSACTION_RELAXED:
6584 return c_parser_transaction_expression (parser,
6585 c_parser_peek_token (parser)->keyword);
6586 default:
6587 return c_parser_postfix_expression (parser);
6589 default:
6590 return c_parser_postfix_expression (parser);
6594 /* Parse a sizeof expression. */
6596 static struct c_expr
6597 c_parser_sizeof_expression (c_parser *parser)
6599 struct c_expr expr;
6600 location_t expr_loc;
6601 gcc_assert (c_parser_next_token_is_keyword (parser, RID_SIZEOF));
6602 c_parser_consume_token (parser);
6603 c_inhibit_evaluation_warnings++;
6604 in_sizeof++;
6605 if (c_parser_next_token_is (parser, CPP_OPEN_PAREN)
6606 && c_token_starts_typename (c_parser_peek_2nd_token (parser)))
6608 /* Either sizeof ( type-name ) or sizeof unary-expression
6609 starting with a compound literal. */
6610 struct c_type_name *type_name;
6611 c_parser_consume_token (parser);
6612 expr_loc = c_parser_peek_token (parser)->location;
6613 type_name = c_parser_type_name (parser);
6614 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
6615 if (type_name == NULL)
6617 struct c_expr ret;
6618 c_inhibit_evaluation_warnings--;
6619 in_sizeof--;
6620 ret.value = error_mark_node;
6621 ret.original_code = ERROR_MARK;
6622 ret.original_type = NULL;
6623 return ret;
6625 if (c_parser_next_token_is (parser, CPP_OPEN_BRACE))
6627 expr = c_parser_postfix_expression_after_paren_type (parser,
6628 type_name,
6629 expr_loc);
6630 goto sizeof_expr;
6632 /* sizeof ( type-name ). */
6633 c_inhibit_evaluation_warnings--;
6634 in_sizeof--;
6635 return c_expr_sizeof_type (expr_loc, type_name);
6637 else
6639 expr_loc = c_parser_peek_token (parser)->location;
6640 expr = c_parser_unary_expression (parser);
6641 sizeof_expr:
6642 c_inhibit_evaluation_warnings--;
6643 in_sizeof--;
6644 mark_exp_read (expr.value);
6645 if (TREE_CODE (expr.value) == COMPONENT_REF
6646 && DECL_C_BIT_FIELD (TREE_OPERAND (expr.value, 1)))
6647 error_at (expr_loc, "%<sizeof%> applied to a bit-field");
6648 return c_expr_sizeof_expr (expr_loc, expr);
6652 /* Parse an alignof expression. */
6654 static struct c_expr
6655 c_parser_alignof_expression (c_parser *parser)
6657 struct c_expr expr;
6658 location_t loc = c_parser_peek_token (parser)->location;
6659 tree alignof_spelling = c_parser_peek_token (parser)->value;
6660 gcc_assert (c_parser_next_token_is_keyword (parser, RID_ALIGNOF));
6661 bool is_c11_alignof = strcmp (IDENTIFIER_POINTER (alignof_spelling),
6662 "_Alignof") == 0;
6663 /* A diagnostic is not required for the use of this identifier in
6664 the implementation namespace; only diagnose it for the C11
6665 spelling because of existing code using the other spellings. */
6666 if (is_c11_alignof)
6668 if (flag_isoc99)
6669 pedwarn_c99 (loc, OPT_Wpedantic, "ISO C99 does not support %qE",
6670 alignof_spelling);
6671 else
6672 pedwarn_c99 (loc, OPT_Wpedantic, "ISO C90 does not support %qE",
6673 alignof_spelling);
6675 c_parser_consume_token (parser);
6676 c_inhibit_evaluation_warnings++;
6677 in_alignof++;
6678 if (c_parser_next_token_is (parser, CPP_OPEN_PAREN)
6679 && c_token_starts_typename (c_parser_peek_2nd_token (parser)))
6681 /* Either __alignof__ ( type-name ) or __alignof__
6682 unary-expression starting with a compound literal. */
6683 location_t loc;
6684 struct c_type_name *type_name;
6685 struct c_expr ret;
6686 c_parser_consume_token (parser);
6687 loc = c_parser_peek_token (parser)->location;
6688 type_name = c_parser_type_name (parser);
6689 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
6690 if (type_name == NULL)
6692 struct c_expr ret;
6693 c_inhibit_evaluation_warnings--;
6694 in_alignof--;
6695 ret.value = error_mark_node;
6696 ret.original_code = ERROR_MARK;
6697 ret.original_type = NULL;
6698 return ret;
6700 if (c_parser_next_token_is (parser, CPP_OPEN_BRACE))
6702 expr = c_parser_postfix_expression_after_paren_type (parser,
6703 type_name,
6704 loc);
6705 goto alignof_expr;
6707 /* alignof ( type-name ). */
6708 c_inhibit_evaluation_warnings--;
6709 in_alignof--;
6710 ret.value = c_sizeof_or_alignof_type (loc, groktypename (type_name,
6711 NULL, NULL),
6712 false, is_c11_alignof, 1);
6713 ret.original_code = ERROR_MARK;
6714 ret.original_type = NULL;
6715 return ret;
6717 else
6719 struct c_expr ret;
6720 expr = c_parser_unary_expression (parser);
6721 alignof_expr:
6722 mark_exp_read (expr.value);
6723 c_inhibit_evaluation_warnings--;
6724 in_alignof--;
6725 pedwarn (loc, OPT_Wpedantic, "ISO C does not allow %<%E (expression)%>",
6726 alignof_spelling);
6727 ret.value = c_alignof_expr (loc, expr.value);
6728 ret.original_code = ERROR_MARK;
6729 ret.original_type = NULL;
6730 return ret;
6734 /* Helper function to read arguments of builtins which are interfaces
6735 for the middle-end nodes like COMPLEX_EXPR, VEC_PERM_EXPR and
6736 others. The name of the builtin is passed using BNAME parameter.
6737 Function returns true if there were no errors while parsing and
6738 stores the arguments in CEXPR_LIST. */
6739 static bool
6740 c_parser_get_builtin_args (c_parser *parser, const char *bname,
6741 vec<c_expr_t, va_gc> **ret_cexpr_list,
6742 bool choose_expr_p)
6744 location_t loc = c_parser_peek_token (parser)->location;
6745 vec<c_expr_t, va_gc> *cexpr_list;
6746 c_expr_t expr;
6747 bool saved_force_folding_builtin_constant_p;
6749 *ret_cexpr_list = NULL;
6750 if (c_parser_next_token_is_not (parser, CPP_OPEN_PAREN))
6752 error_at (loc, "cannot take address of %qs", bname);
6753 return false;
6756 c_parser_consume_token (parser);
6758 if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
6760 c_parser_consume_token (parser);
6761 return true;
6764 saved_force_folding_builtin_constant_p
6765 = force_folding_builtin_constant_p;
6766 force_folding_builtin_constant_p |= choose_expr_p;
6767 expr = c_parser_expr_no_commas (parser, NULL);
6768 force_folding_builtin_constant_p
6769 = saved_force_folding_builtin_constant_p;
6770 vec_alloc (cexpr_list, 1);
6771 vec_safe_push (cexpr_list, expr);
6772 while (c_parser_next_token_is (parser, CPP_COMMA))
6774 c_parser_consume_token (parser);
6775 expr = c_parser_expr_no_commas (parser, NULL);
6776 vec_safe_push (cexpr_list, expr);
6779 if (!c_parser_require (parser, CPP_CLOSE_PAREN, "expected %<)%>"))
6780 return false;
6782 *ret_cexpr_list = cexpr_list;
6783 return true;
6786 /* This represents a single generic-association. */
6788 struct c_generic_association
6790 /* The location of the starting token of the type. */
6791 location_t type_location;
6792 /* The association's type, or NULL_TREE for 'default'. */
6793 tree type;
6794 /* The association's expression. */
6795 struct c_expr expression;
6798 /* Parse a generic-selection. (C11 6.5.1.1).
6800 generic-selection:
6801 _Generic ( assignment-expression , generic-assoc-list )
6803 generic-assoc-list:
6804 generic-association
6805 generic-assoc-list , generic-association
6807 generic-association:
6808 type-name : assignment-expression
6809 default : assignment-expression
6812 static struct c_expr
6813 c_parser_generic_selection (c_parser *parser)
6815 vec<c_generic_association> associations = vNULL;
6816 struct c_expr selector, error_expr;
6817 tree selector_type;
6818 struct c_generic_association matched_assoc;
6819 bool match_found = false;
6820 location_t generic_loc, selector_loc;
6822 error_expr.original_code = ERROR_MARK;
6823 error_expr.original_type = NULL;
6824 error_expr.value = error_mark_node;
6825 matched_assoc.type_location = UNKNOWN_LOCATION;
6826 matched_assoc.type = NULL_TREE;
6827 matched_assoc.expression = error_expr;
6829 gcc_assert (c_parser_next_token_is_keyword (parser, RID_GENERIC));
6830 generic_loc = c_parser_peek_token (parser)->location;
6831 c_parser_consume_token (parser);
6832 if (flag_isoc99)
6833 pedwarn_c99 (generic_loc, OPT_Wpedantic,
6834 "ISO C99 does not support %<_Generic%>");
6835 else
6836 pedwarn_c99 (generic_loc, OPT_Wpedantic,
6837 "ISO C90 does not support %<_Generic%>");
6839 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
6840 return error_expr;
6842 c_inhibit_evaluation_warnings++;
6843 selector_loc = c_parser_peek_token (parser)->location;
6844 selector = c_parser_expr_no_commas (parser, NULL);
6845 selector = default_function_array_conversion (selector_loc, selector);
6846 c_inhibit_evaluation_warnings--;
6848 if (selector.value == error_mark_node)
6850 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
6851 return selector;
6853 selector_type = TREE_TYPE (selector.value);
6854 /* In ISO C terms, rvalues (including the controlling expression of
6855 _Generic) do not have qualified types. */
6856 if (TREE_CODE (selector_type) != ARRAY_TYPE)
6857 selector_type = TYPE_MAIN_VARIANT (selector_type);
6858 /* In ISO C terms, _Noreturn is not part of the type of expressions
6859 such as &abort, but in GCC it is represented internally as a type
6860 qualifier. */
6861 if (FUNCTION_POINTER_TYPE_P (selector_type)
6862 && TYPE_QUALS (TREE_TYPE (selector_type)) != TYPE_UNQUALIFIED)
6863 selector_type
6864 = build_pointer_type (TYPE_MAIN_VARIANT (TREE_TYPE (selector_type)));
6866 if (!c_parser_require (parser, CPP_COMMA, "expected %<,%>"))
6868 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
6869 return error_expr;
6872 while (1)
6874 struct c_generic_association assoc, *iter;
6875 unsigned int ix;
6876 c_token *token = c_parser_peek_token (parser);
6878 assoc.type_location = token->location;
6879 if (token->type == CPP_KEYWORD && token->keyword == RID_DEFAULT)
6881 c_parser_consume_token (parser);
6882 assoc.type = NULL_TREE;
6884 else
6886 struct c_type_name *type_name;
6888 type_name = c_parser_type_name (parser);
6889 if (type_name == NULL)
6891 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
6892 goto error_exit;
6894 assoc.type = groktypename (type_name, NULL, NULL);
6895 if (assoc.type == error_mark_node)
6897 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
6898 goto error_exit;
6901 if (TREE_CODE (assoc.type) == FUNCTION_TYPE)
6902 error_at (assoc.type_location,
6903 "%<_Generic%> association has function type");
6904 else if (!COMPLETE_TYPE_P (assoc.type))
6905 error_at (assoc.type_location,
6906 "%<_Generic%> association has incomplete type");
6908 if (variably_modified_type_p (assoc.type, NULL_TREE))
6909 error_at (assoc.type_location,
6910 "%<_Generic%> association has "
6911 "variable length type");
6914 if (!c_parser_require (parser, CPP_COLON, "expected %<:%>"))
6916 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
6917 goto error_exit;
6920 assoc.expression = c_parser_expr_no_commas (parser, NULL);
6921 if (assoc.expression.value == error_mark_node)
6923 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
6924 goto error_exit;
6927 for (ix = 0; associations.iterate (ix, &iter); ++ix)
6929 if (assoc.type == NULL_TREE)
6931 if (iter->type == NULL_TREE)
6933 error_at (assoc.type_location,
6934 "duplicate %<default%> case in %<_Generic%>");
6935 inform (iter->type_location, "original %<default%> is here");
6938 else if (iter->type != NULL_TREE)
6940 if (comptypes (assoc.type, iter->type))
6942 error_at (assoc.type_location,
6943 "%<_Generic%> specifies two compatible types");
6944 inform (iter->type_location, "compatible type is here");
6949 if (assoc.type == NULL_TREE)
6951 if (!match_found)
6953 matched_assoc = assoc;
6954 match_found = true;
6957 else if (comptypes (assoc.type, selector_type))
6959 if (!match_found || matched_assoc.type == NULL_TREE)
6961 matched_assoc = assoc;
6962 match_found = true;
6964 else
6966 error_at (assoc.type_location,
6967 "%<_Generic> selector matches multiple associations");
6968 inform (matched_assoc.type_location,
6969 "other match is here");
6973 associations.safe_push (assoc);
6975 if (c_parser_peek_token (parser)->type != CPP_COMMA)
6976 break;
6977 c_parser_consume_token (parser);
6980 associations.release ();
6982 if (!c_parser_require (parser, CPP_CLOSE_PAREN, "expected %<)%>"))
6984 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
6985 return error_expr;
6988 if (!match_found)
6990 error_at (selector_loc, "%<_Generic%> selector of type %qT is not "
6991 "compatible with any association",
6992 selector_type);
6993 return error_expr;
6996 return matched_assoc.expression;
6998 error_exit:
6999 associations.release ();
7000 return error_expr;
7003 /* Parse a postfix expression (C90 6.3.1-6.3.2, C99 6.5.1-6.5.2).
7005 postfix-expression:
7006 primary-expression
7007 postfix-expression [ expression ]
7008 postfix-expression ( argument-expression-list[opt] )
7009 postfix-expression . identifier
7010 postfix-expression -> identifier
7011 postfix-expression ++
7012 postfix-expression --
7013 ( type-name ) { initializer-list }
7014 ( type-name ) { initializer-list , }
7016 argument-expression-list:
7017 argument-expression
7018 argument-expression-list , argument-expression
7020 primary-expression:
7021 identifier
7022 constant
7023 string-literal
7024 ( expression )
7025 generic-selection
7027 GNU extensions:
7029 primary-expression:
7030 __func__
7031 (treated as a keyword in GNU C)
7032 __FUNCTION__
7033 __PRETTY_FUNCTION__
7034 ( compound-statement )
7035 __builtin_va_arg ( assignment-expression , type-name )
7036 __builtin_offsetof ( type-name , offsetof-member-designator )
7037 __builtin_choose_expr ( assignment-expression ,
7038 assignment-expression ,
7039 assignment-expression )
7040 __builtin_types_compatible_p ( type-name , type-name )
7041 __builtin_complex ( assignment-expression , assignment-expression )
7042 __builtin_shuffle ( assignment-expression , assignment-expression )
7043 __builtin_shuffle ( assignment-expression ,
7044 assignment-expression ,
7045 assignment-expression, )
7047 offsetof-member-designator:
7048 identifier
7049 offsetof-member-designator . identifier
7050 offsetof-member-designator [ expression ]
7052 Objective-C:
7054 primary-expression:
7055 [ objc-receiver objc-message-args ]
7056 @selector ( objc-selector-arg )
7057 @protocol ( identifier )
7058 @encode ( type-name )
7059 objc-string-literal
7060 Classname . identifier
7063 static struct c_expr
7064 c_parser_postfix_expression (c_parser *parser)
7066 struct c_expr expr, e1;
7067 struct c_type_name *t1, *t2;
7068 location_t loc = c_parser_peek_token (parser)->location;;
7069 expr.original_code = ERROR_MARK;
7070 expr.original_type = NULL;
7071 switch (c_parser_peek_token (parser)->type)
7073 case CPP_NUMBER:
7074 expr.value = c_parser_peek_token (parser)->value;
7075 loc = c_parser_peek_token (parser)->location;
7076 c_parser_consume_token (parser);
7077 if (TREE_CODE (expr.value) == FIXED_CST
7078 && !targetm.fixed_point_supported_p ())
7080 error_at (loc, "fixed-point types not supported for this target");
7081 expr.value = error_mark_node;
7083 break;
7084 case CPP_CHAR:
7085 case CPP_CHAR16:
7086 case CPP_CHAR32:
7087 case CPP_WCHAR:
7088 expr.value = c_parser_peek_token (parser)->value;
7089 c_parser_consume_token (parser);
7090 break;
7091 case CPP_STRING:
7092 case CPP_STRING16:
7093 case CPP_STRING32:
7094 case CPP_WSTRING:
7095 case CPP_UTF8STRING:
7096 expr.value = c_parser_peek_token (parser)->value;
7097 expr.original_code = STRING_CST;
7098 c_parser_consume_token (parser);
7099 break;
7100 case CPP_OBJC_STRING:
7101 gcc_assert (c_dialect_objc ());
7102 expr.value
7103 = objc_build_string_object (c_parser_peek_token (parser)->value);
7104 c_parser_consume_token (parser);
7105 break;
7106 case CPP_NAME:
7107 switch (c_parser_peek_token (parser)->id_kind)
7109 case C_ID_ID:
7111 tree id = c_parser_peek_token (parser)->value;
7112 c_parser_consume_token (parser);
7113 expr.value = build_external_ref (loc, id,
7114 (c_parser_peek_token (parser)->type
7115 == CPP_OPEN_PAREN),
7116 &expr.original_type);
7117 break;
7119 case C_ID_CLASSNAME:
7121 /* Here we parse the Objective-C 2.0 Class.name dot
7122 syntax. */
7123 tree class_name = c_parser_peek_token (parser)->value;
7124 tree component;
7125 c_parser_consume_token (parser);
7126 gcc_assert (c_dialect_objc ());
7127 if (!c_parser_require (parser, CPP_DOT, "expected %<.%>"))
7129 expr.value = error_mark_node;
7130 break;
7132 if (c_parser_next_token_is_not (parser, CPP_NAME))
7134 c_parser_error (parser, "expected identifier");
7135 expr.value = error_mark_node;
7136 break;
7138 component = c_parser_peek_token (parser)->value;
7139 c_parser_consume_token (parser);
7140 expr.value = objc_build_class_component_ref (class_name,
7141 component);
7142 break;
7144 default:
7145 c_parser_error (parser, "expected expression");
7146 expr.value = error_mark_node;
7147 break;
7149 break;
7150 case CPP_OPEN_PAREN:
7151 /* A parenthesized expression, statement expression or compound
7152 literal. */
7153 if (c_parser_peek_2nd_token (parser)->type == CPP_OPEN_BRACE)
7155 /* A statement expression. */
7156 tree stmt;
7157 location_t brace_loc;
7158 c_parser_consume_token (parser);
7159 brace_loc = c_parser_peek_token (parser)->location;
7160 c_parser_consume_token (parser);
7161 if (!building_stmt_list_p ())
7163 error_at (loc, "braced-group within expression allowed "
7164 "only inside a function");
7165 parser->error = true;
7166 c_parser_skip_until_found (parser, CPP_CLOSE_BRACE, NULL);
7167 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
7168 expr.value = error_mark_node;
7169 break;
7171 stmt = c_begin_stmt_expr ();
7172 c_parser_compound_statement_nostart (parser);
7173 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
7174 "expected %<)%>");
7175 pedwarn (loc, OPT_Wpedantic,
7176 "ISO C forbids braced-groups within expressions");
7177 expr.value = c_finish_stmt_expr (brace_loc, stmt);
7178 mark_exp_read (expr.value);
7180 else if (c_token_starts_typename (c_parser_peek_2nd_token (parser)))
7182 /* A compound literal. ??? Can we actually get here rather
7183 than going directly to
7184 c_parser_postfix_expression_after_paren_type from
7185 elsewhere? */
7186 location_t loc;
7187 struct c_type_name *type_name;
7188 c_parser_consume_token (parser);
7189 loc = c_parser_peek_token (parser)->location;
7190 type_name = c_parser_type_name (parser);
7191 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
7192 "expected %<)%>");
7193 if (type_name == NULL)
7195 expr.value = error_mark_node;
7197 else
7198 expr = c_parser_postfix_expression_after_paren_type (parser,
7199 type_name,
7200 loc);
7202 else
7204 /* A parenthesized expression. */
7205 c_parser_consume_token (parser);
7206 expr = c_parser_expression (parser);
7207 if (TREE_CODE (expr.value) == MODIFY_EXPR)
7208 TREE_NO_WARNING (expr.value) = 1;
7209 if (expr.original_code != C_MAYBE_CONST_EXPR)
7210 expr.original_code = ERROR_MARK;
7211 /* Don't change EXPR.ORIGINAL_TYPE. */
7212 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
7213 "expected %<)%>");
7215 break;
7216 case CPP_KEYWORD:
7217 switch (c_parser_peek_token (parser)->keyword)
7219 case RID_FUNCTION_NAME:
7220 pedwarn (loc, OPT_Wpedantic, "ISO C does not support "
7221 "%<__FUNCTION__%> predefined identifier");
7222 expr.value = fname_decl (loc,
7223 c_parser_peek_token (parser)->keyword,
7224 c_parser_peek_token (parser)->value);
7225 c_parser_consume_token (parser);
7226 break;
7227 case RID_PRETTY_FUNCTION_NAME:
7228 pedwarn (loc, OPT_Wpedantic, "ISO C does not support "
7229 "%<__PRETTY_FUNCTION__%> predefined identifier");
7230 expr.value = fname_decl (loc,
7231 c_parser_peek_token (parser)->keyword,
7232 c_parser_peek_token (parser)->value);
7233 c_parser_consume_token (parser);
7234 break;
7235 case RID_C99_FUNCTION_NAME:
7236 pedwarn_c90 (loc, OPT_Wpedantic, "ISO C90 does not support "
7237 "%<__func__%> predefined identifier");
7238 expr.value = fname_decl (loc,
7239 c_parser_peek_token (parser)->keyword,
7240 c_parser_peek_token (parser)->value);
7241 c_parser_consume_token (parser);
7242 break;
7243 case RID_VA_ARG:
7244 c_parser_consume_token (parser);
7245 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
7247 expr.value = error_mark_node;
7248 break;
7250 e1 = c_parser_expr_no_commas (parser, NULL);
7251 mark_exp_read (e1.value);
7252 e1.value = c_fully_fold (e1.value, false, NULL);
7253 if (!c_parser_require (parser, CPP_COMMA, "expected %<,%>"))
7255 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
7256 expr.value = error_mark_node;
7257 break;
7259 loc = c_parser_peek_token (parser)->location;
7260 t1 = c_parser_type_name (parser);
7261 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
7262 "expected %<)%>");
7263 if (t1 == NULL)
7265 expr.value = error_mark_node;
7267 else
7269 tree type_expr = NULL_TREE;
7270 expr.value = c_build_va_arg (loc, e1.value,
7271 groktypename (t1, &type_expr, NULL));
7272 if (type_expr)
7274 expr.value = build2 (C_MAYBE_CONST_EXPR,
7275 TREE_TYPE (expr.value), type_expr,
7276 expr.value);
7277 C_MAYBE_CONST_EXPR_NON_CONST (expr.value) = true;
7280 break;
7281 case RID_OFFSETOF:
7282 c_parser_consume_token (parser);
7283 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
7285 expr.value = error_mark_node;
7286 break;
7288 t1 = c_parser_type_name (parser);
7289 if (t1 == NULL)
7290 parser->error = true;
7291 if (!c_parser_require (parser, CPP_COMMA, "expected %<,%>"))
7292 gcc_assert (parser->error);
7293 if (parser->error)
7295 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
7296 expr.value = error_mark_node;
7297 break;
7301 tree type = groktypename (t1, NULL, NULL);
7302 tree offsetof_ref;
7303 if (type == error_mark_node)
7304 offsetof_ref = error_mark_node;
7305 else
7307 offsetof_ref = build1 (INDIRECT_REF, type, null_pointer_node);
7308 SET_EXPR_LOCATION (offsetof_ref, loc);
7310 /* Parse the second argument to __builtin_offsetof. We
7311 must have one identifier, and beyond that we want to
7312 accept sub structure and sub array references. */
7313 if (c_parser_next_token_is (parser, CPP_NAME))
7315 offsetof_ref = build_component_ref
7316 (loc, offsetof_ref, c_parser_peek_token (parser)->value);
7317 c_parser_consume_token (parser);
7318 while (c_parser_next_token_is (parser, CPP_DOT)
7319 || c_parser_next_token_is (parser,
7320 CPP_OPEN_SQUARE)
7321 || c_parser_next_token_is (parser,
7322 CPP_DEREF))
7324 if (c_parser_next_token_is (parser, CPP_DEREF))
7326 loc = c_parser_peek_token (parser)->location;
7327 offsetof_ref = build_array_ref (loc,
7328 offsetof_ref,
7329 integer_zero_node);
7330 goto do_dot;
7332 else if (c_parser_next_token_is (parser, CPP_DOT))
7334 do_dot:
7335 c_parser_consume_token (parser);
7336 if (c_parser_next_token_is_not (parser,
7337 CPP_NAME))
7339 c_parser_error (parser, "expected identifier");
7340 break;
7342 offsetof_ref = build_component_ref
7343 (loc, offsetof_ref,
7344 c_parser_peek_token (parser)->value);
7345 c_parser_consume_token (parser);
7347 else
7349 struct c_expr ce;
7350 tree idx;
7351 loc = c_parser_peek_token (parser)->location;
7352 c_parser_consume_token (parser);
7353 ce = c_parser_expression (parser);
7354 ce = convert_lvalue_to_rvalue (loc, ce, false, false);
7355 idx = ce.value;
7356 idx = c_fully_fold (idx, false, NULL);
7357 c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE,
7358 "expected %<]%>");
7359 offsetof_ref = build_array_ref (loc, offsetof_ref, idx);
7363 else
7364 c_parser_error (parser, "expected identifier");
7365 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
7366 "expected %<)%>");
7367 expr.value = fold_offsetof (offsetof_ref);
7369 break;
7370 case RID_CHOOSE_EXPR:
7372 vec<c_expr_t, va_gc> *cexpr_list;
7373 c_expr_t *e1_p, *e2_p, *e3_p;
7374 tree c;
7376 c_parser_consume_token (parser);
7377 if (!c_parser_get_builtin_args (parser,
7378 "__builtin_choose_expr",
7379 &cexpr_list, true))
7381 expr.value = error_mark_node;
7382 break;
7385 if (vec_safe_length (cexpr_list) != 3)
7387 error_at (loc, "wrong number of arguments to "
7388 "%<__builtin_choose_expr%>");
7389 expr.value = error_mark_node;
7390 break;
7393 e1_p = &(*cexpr_list)[0];
7394 e2_p = &(*cexpr_list)[1];
7395 e3_p = &(*cexpr_list)[2];
7397 c = e1_p->value;
7398 mark_exp_read (e2_p->value);
7399 mark_exp_read (e3_p->value);
7400 if (TREE_CODE (c) != INTEGER_CST
7401 || !INTEGRAL_TYPE_P (TREE_TYPE (c)))
7402 error_at (loc,
7403 "first argument to %<__builtin_choose_expr%> not"
7404 " a constant");
7405 constant_expression_warning (c);
7406 expr = integer_zerop (c) ? *e3_p : *e2_p;
7407 break;
7409 case RID_TYPES_COMPATIBLE_P:
7410 c_parser_consume_token (parser);
7411 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
7413 expr.value = error_mark_node;
7414 break;
7416 t1 = c_parser_type_name (parser);
7417 if (t1 == NULL)
7419 expr.value = error_mark_node;
7420 break;
7422 if (!c_parser_require (parser, CPP_COMMA, "expected %<,%>"))
7424 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
7425 expr.value = error_mark_node;
7426 break;
7428 t2 = c_parser_type_name (parser);
7429 if (t2 == NULL)
7431 expr.value = error_mark_node;
7432 break;
7434 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
7435 "expected %<)%>");
7437 tree e1, e2;
7438 e1 = groktypename (t1, NULL, NULL);
7439 e2 = groktypename (t2, NULL, NULL);
7440 if (e1 == error_mark_node || e2 == error_mark_node)
7442 expr.value = error_mark_node;
7443 break;
7446 e1 = TYPE_MAIN_VARIANT (e1);
7447 e2 = TYPE_MAIN_VARIANT (e2);
7449 expr.value
7450 = comptypes (e1, e2) ? integer_one_node : integer_zero_node;
7452 break;
7453 case RID_BUILTIN_COMPLEX:
7455 vec<c_expr_t, va_gc> *cexpr_list;
7456 c_expr_t *e1_p, *e2_p;
7458 c_parser_consume_token (parser);
7459 if (!c_parser_get_builtin_args (parser,
7460 "__builtin_complex",
7461 &cexpr_list, false))
7463 expr.value = error_mark_node;
7464 break;
7467 if (vec_safe_length (cexpr_list) != 2)
7469 error_at (loc, "wrong number of arguments to "
7470 "%<__builtin_complex%>");
7471 expr.value = error_mark_node;
7472 break;
7475 e1_p = &(*cexpr_list)[0];
7476 e2_p = &(*cexpr_list)[1];
7478 *e1_p = convert_lvalue_to_rvalue (loc, *e1_p, true, true);
7479 if (TREE_CODE (e1_p->value) == EXCESS_PRECISION_EXPR)
7480 e1_p->value = convert (TREE_TYPE (e1_p->value),
7481 TREE_OPERAND (e1_p->value, 0));
7482 *e2_p = convert_lvalue_to_rvalue (loc, *e2_p, true, true);
7483 if (TREE_CODE (e2_p->value) == EXCESS_PRECISION_EXPR)
7484 e2_p->value = convert (TREE_TYPE (e2_p->value),
7485 TREE_OPERAND (e2_p->value, 0));
7486 if (!SCALAR_FLOAT_TYPE_P (TREE_TYPE (e1_p->value))
7487 || DECIMAL_FLOAT_TYPE_P (TREE_TYPE (e1_p->value))
7488 || !SCALAR_FLOAT_TYPE_P (TREE_TYPE (e2_p->value))
7489 || DECIMAL_FLOAT_TYPE_P (TREE_TYPE (e2_p->value)))
7491 error_at (loc, "%<__builtin_complex%> operand "
7492 "not of real binary floating-point type");
7493 expr.value = error_mark_node;
7494 break;
7496 if (TYPE_MAIN_VARIANT (TREE_TYPE (e1_p->value))
7497 != TYPE_MAIN_VARIANT (TREE_TYPE (e2_p->value)))
7499 error_at (loc,
7500 "%<__builtin_complex%> operands of different types");
7501 expr.value = error_mark_node;
7502 break;
7504 pedwarn_c90 (loc, OPT_Wpedantic,
7505 "ISO C90 does not support complex types");
7506 expr.value = build2 (COMPLEX_EXPR,
7507 build_complex_type
7508 (TYPE_MAIN_VARIANT
7509 (TREE_TYPE (e1_p->value))),
7510 e1_p->value, e2_p->value);
7511 break;
7513 case RID_BUILTIN_SHUFFLE:
7515 vec<c_expr_t, va_gc> *cexpr_list;
7516 unsigned int i;
7517 c_expr_t *p;
7519 c_parser_consume_token (parser);
7520 if (!c_parser_get_builtin_args (parser,
7521 "__builtin_shuffle",
7522 &cexpr_list, false))
7524 expr.value = error_mark_node;
7525 break;
7528 FOR_EACH_VEC_SAFE_ELT (cexpr_list, i, p)
7529 *p = convert_lvalue_to_rvalue (loc, *p, true, true);
7531 if (vec_safe_length (cexpr_list) == 2)
7532 expr.value =
7533 c_build_vec_perm_expr
7534 (loc, (*cexpr_list)[0].value,
7535 NULL_TREE, (*cexpr_list)[1].value);
7537 else if (vec_safe_length (cexpr_list) == 3)
7538 expr.value =
7539 c_build_vec_perm_expr
7540 (loc, (*cexpr_list)[0].value,
7541 (*cexpr_list)[1].value,
7542 (*cexpr_list)[2].value);
7543 else
7545 error_at (loc, "wrong number of arguments to "
7546 "%<__builtin_shuffle%>");
7547 expr.value = error_mark_node;
7549 break;
7551 case RID_AT_SELECTOR:
7552 gcc_assert (c_dialect_objc ());
7553 c_parser_consume_token (parser);
7554 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
7556 expr.value = error_mark_node;
7557 break;
7560 tree sel = c_parser_objc_selector_arg (parser);
7561 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
7562 "expected %<)%>");
7563 expr.value = objc_build_selector_expr (loc, sel);
7565 break;
7566 case RID_AT_PROTOCOL:
7567 gcc_assert (c_dialect_objc ());
7568 c_parser_consume_token (parser);
7569 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
7571 expr.value = error_mark_node;
7572 break;
7574 if (c_parser_next_token_is_not (parser, CPP_NAME))
7576 c_parser_error (parser, "expected identifier");
7577 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
7578 expr.value = error_mark_node;
7579 break;
7582 tree id = c_parser_peek_token (parser)->value;
7583 c_parser_consume_token (parser);
7584 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
7585 "expected %<)%>");
7586 expr.value = objc_build_protocol_expr (id);
7588 break;
7589 case RID_AT_ENCODE:
7590 /* Extension to support C-structures in the archiver. */
7591 gcc_assert (c_dialect_objc ());
7592 c_parser_consume_token (parser);
7593 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
7595 expr.value = error_mark_node;
7596 break;
7598 t1 = c_parser_type_name (parser);
7599 if (t1 == NULL)
7601 expr.value = error_mark_node;
7602 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
7603 break;
7605 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
7606 "expected %<)%>");
7608 tree type = groktypename (t1, NULL, NULL);
7609 expr.value = objc_build_encode_expr (type);
7611 break;
7612 case RID_GENERIC:
7613 expr = c_parser_generic_selection (parser);
7614 break;
7615 case RID_CILK_SPAWN:
7616 c_parser_consume_token (parser);
7617 if (!flag_cilkplus)
7619 error_at (loc, "-fcilkplus must be enabled to use "
7620 "%<_Cilk_spawn%>");
7621 expr = c_parser_postfix_expression (parser);
7622 expr.value = error_mark_node;
7624 else if (c_parser_peek_token (parser)->keyword == RID_CILK_SPAWN)
7626 error_at (loc, "consecutive %<_Cilk_spawn%> keywords "
7627 "are not permitted");
7628 /* Now flush out all the _Cilk_spawns. */
7629 while (c_parser_peek_token (parser)->keyword == RID_CILK_SPAWN)
7630 c_parser_consume_token (parser);
7631 expr = c_parser_postfix_expression (parser);
7633 else
7635 expr = c_parser_postfix_expression (parser);
7636 expr.value = build_cilk_spawn (loc, expr.value);
7638 break;
7639 default:
7640 c_parser_error (parser, "expected expression");
7641 expr.value = error_mark_node;
7642 break;
7644 break;
7645 case CPP_OPEN_SQUARE:
7646 if (c_dialect_objc ())
7648 tree receiver, args;
7649 c_parser_consume_token (parser);
7650 receiver = c_parser_objc_receiver (parser);
7651 args = c_parser_objc_message_args (parser);
7652 c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE,
7653 "expected %<]%>");
7654 expr.value = objc_build_message_expr (receiver, args);
7655 break;
7657 /* Else fall through to report error. */
7658 default:
7659 c_parser_error (parser, "expected expression");
7660 expr.value = error_mark_node;
7661 break;
7663 return c_parser_postfix_expression_after_primary (parser, loc, expr);
7666 /* Parse a postfix expression after a parenthesized type name: the
7667 brace-enclosed initializer of a compound literal, possibly followed
7668 by some postfix operators. This is separate because it is not
7669 possible to tell until after the type name whether a cast
7670 expression has a cast or a compound literal, or whether the operand
7671 of sizeof is a parenthesized type name or starts with a compound
7672 literal. TYPE_LOC is the location where TYPE_NAME starts--the
7673 location of the first token after the parentheses around the type
7674 name. */
7676 static struct c_expr
7677 c_parser_postfix_expression_after_paren_type (c_parser *parser,
7678 struct c_type_name *type_name,
7679 location_t type_loc)
7681 tree type;
7682 struct c_expr init;
7683 bool non_const;
7684 struct c_expr expr;
7685 location_t start_loc;
7686 tree type_expr = NULL_TREE;
7687 bool type_expr_const = true;
7688 check_compound_literal_type (type_loc, type_name);
7689 start_init (NULL_TREE, NULL, 0);
7690 type = groktypename (type_name, &type_expr, &type_expr_const);
7691 start_loc = c_parser_peek_token (parser)->location;
7692 if (type != error_mark_node && C_TYPE_VARIABLE_SIZE (type))
7694 error_at (type_loc, "compound literal has variable size");
7695 type = error_mark_node;
7697 init = c_parser_braced_init (parser, type, false);
7698 finish_init ();
7699 maybe_warn_string_init (type_loc, type, init);
7701 if (type != error_mark_node
7702 && !ADDR_SPACE_GENERIC_P (TYPE_ADDR_SPACE (type))
7703 && current_function_decl)
7705 error ("compound literal qualified by address-space qualifier");
7706 type = error_mark_node;
7709 pedwarn_c90 (start_loc, OPT_Wpedantic, "ISO C90 forbids compound literals");
7710 non_const = ((init.value && TREE_CODE (init.value) == CONSTRUCTOR)
7711 ? CONSTRUCTOR_NON_CONST (init.value)
7712 : init.original_code == C_MAYBE_CONST_EXPR);
7713 non_const |= !type_expr_const;
7714 expr.value = build_compound_literal (start_loc, type, init.value, non_const);
7715 expr.original_code = ERROR_MARK;
7716 expr.original_type = NULL;
7717 if (type_expr)
7719 if (TREE_CODE (expr.value) == C_MAYBE_CONST_EXPR)
7721 gcc_assert (C_MAYBE_CONST_EXPR_PRE (expr.value) == NULL_TREE);
7722 C_MAYBE_CONST_EXPR_PRE (expr.value) = type_expr;
7724 else
7726 gcc_assert (!non_const);
7727 expr.value = build2 (C_MAYBE_CONST_EXPR, type,
7728 type_expr, expr.value);
7731 return c_parser_postfix_expression_after_primary (parser, start_loc, expr);
7734 /* Callback function for sizeof_pointer_memaccess_warning to compare
7735 types. */
7737 static bool
7738 sizeof_ptr_memacc_comptypes (tree type1, tree type2)
7740 return comptypes (type1, type2) == 1;
7743 /* Parse a postfix expression after the initial primary or compound
7744 literal; that is, parse a series of postfix operators.
7746 EXPR_LOC is the location of the primary expression. */
7748 static struct c_expr
7749 c_parser_postfix_expression_after_primary (c_parser *parser,
7750 location_t expr_loc,
7751 struct c_expr expr)
7753 struct c_expr orig_expr;
7754 tree ident, idx;
7755 location_t sizeof_arg_loc[3];
7756 tree sizeof_arg[3];
7757 unsigned int literal_zero_mask;
7758 unsigned int i;
7759 vec<tree, va_gc> *exprlist;
7760 vec<tree, va_gc> *origtypes = NULL;
7761 vec<location_t> arg_loc = vNULL;
7763 while (true)
7765 location_t op_loc = c_parser_peek_token (parser)->location;
7766 switch (c_parser_peek_token (parser)->type)
7768 case CPP_OPEN_SQUARE:
7769 /* Array reference. */
7770 c_parser_consume_token (parser);
7771 if (flag_cilkplus
7772 && c_parser_peek_token (parser)->type == CPP_COLON)
7773 /* If we are here, then we have something like this:
7774 Array [ : ]
7776 expr.value = c_parser_array_notation (expr_loc, parser, NULL_TREE,
7777 expr.value);
7778 else
7780 idx = c_parser_expression (parser).value;
7781 /* Here we have 3 options:
7782 1. Array [EXPR] -- Normal Array call.
7783 2. Array [EXPR : EXPR] -- Array notation without stride.
7784 3. Array [EXPR : EXPR : EXPR] -- Array notation with stride.
7786 For 1, we just handle it just like a normal array expression.
7787 For 2 and 3 we handle it like we handle array notations. The
7788 idx value we have above becomes the initial/start index.
7790 if (flag_cilkplus
7791 && c_parser_peek_token (parser)->type == CPP_COLON)
7792 expr.value = c_parser_array_notation (expr_loc, parser, idx,
7793 expr.value);
7794 else
7796 c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE,
7797 "expected %<]%>");
7798 expr.value = build_array_ref (op_loc, expr.value, idx);
7801 expr.original_code = ERROR_MARK;
7802 expr.original_type = NULL;
7803 break;
7804 case CPP_OPEN_PAREN:
7805 /* Function call. */
7806 c_parser_consume_token (parser);
7807 for (i = 0; i < 3; i++)
7809 sizeof_arg[i] = NULL_TREE;
7810 sizeof_arg_loc[i] = UNKNOWN_LOCATION;
7812 literal_zero_mask = 0;
7813 if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
7814 exprlist = NULL;
7815 else
7816 exprlist = c_parser_expr_list (parser, true, false, &origtypes,
7817 sizeof_arg_loc, sizeof_arg,
7818 &arg_loc, &literal_zero_mask);
7819 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
7820 "expected %<)%>");
7821 orig_expr = expr;
7822 mark_exp_read (expr.value);
7823 if (warn_sizeof_pointer_memaccess)
7824 sizeof_pointer_memaccess_warning (sizeof_arg_loc,
7825 expr.value, exprlist,
7826 sizeof_arg,
7827 sizeof_ptr_memacc_comptypes);
7828 if (warn_memset_transposed_args
7829 && TREE_CODE (expr.value) == FUNCTION_DECL
7830 && DECL_BUILT_IN_CLASS (expr.value) == BUILT_IN_NORMAL
7831 && DECL_FUNCTION_CODE (expr.value) == BUILT_IN_MEMSET
7832 && vec_safe_length (exprlist) == 3
7833 && integer_zerop ((*exprlist)[2])
7834 && (literal_zero_mask & (1 << 2)) != 0
7835 && (!integer_zerop ((*exprlist)[1])
7836 || (literal_zero_mask & (1 << 1)) == 0))
7837 warning_at (expr_loc, OPT_Wmemset_transposed_args,
7838 "%<memset%> used with constant zero length parameter; "
7839 "this could be due to transposed parameters");
7841 expr.value
7842 = c_build_function_call_vec (expr_loc, arg_loc, expr.value,
7843 exprlist, origtypes);
7844 expr.original_code = ERROR_MARK;
7845 if (TREE_CODE (expr.value) == INTEGER_CST
7846 && TREE_CODE (orig_expr.value) == FUNCTION_DECL
7847 && DECL_BUILT_IN_CLASS (orig_expr.value) == BUILT_IN_NORMAL
7848 && DECL_FUNCTION_CODE (orig_expr.value) == BUILT_IN_CONSTANT_P)
7849 expr.original_code = C_MAYBE_CONST_EXPR;
7850 expr.original_type = NULL;
7851 if (exprlist)
7853 release_tree_vector (exprlist);
7854 release_tree_vector (origtypes);
7856 arg_loc.release ();
7857 break;
7858 case CPP_DOT:
7859 /* Structure element reference. */
7860 c_parser_consume_token (parser);
7861 expr = default_function_array_conversion (expr_loc, expr);
7862 if (c_parser_next_token_is (parser, CPP_NAME))
7863 ident = c_parser_peek_token (parser)->value;
7864 else
7866 c_parser_error (parser, "expected identifier");
7867 expr.value = error_mark_node;
7868 expr.original_code = ERROR_MARK;
7869 expr.original_type = NULL;
7870 return expr;
7872 c_parser_consume_token (parser);
7873 expr.value = build_component_ref (op_loc, expr.value, ident);
7874 expr.original_code = ERROR_MARK;
7875 if (TREE_CODE (expr.value) != COMPONENT_REF)
7876 expr.original_type = NULL;
7877 else
7879 /* Remember the original type of a bitfield. */
7880 tree field = TREE_OPERAND (expr.value, 1);
7881 if (TREE_CODE (field) != FIELD_DECL)
7882 expr.original_type = NULL;
7883 else
7884 expr.original_type = DECL_BIT_FIELD_TYPE (field);
7886 break;
7887 case CPP_DEREF:
7888 /* Structure element reference. */
7889 c_parser_consume_token (parser);
7890 expr = convert_lvalue_to_rvalue (expr_loc, expr, true, false);
7891 if (c_parser_next_token_is (parser, CPP_NAME))
7892 ident = c_parser_peek_token (parser)->value;
7893 else
7895 c_parser_error (parser, "expected identifier");
7896 expr.value = error_mark_node;
7897 expr.original_code = ERROR_MARK;
7898 expr.original_type = NULL;
7899 return expr;
7901 c_parser_consume_token (parser);
7902 expr.value = build_component_ref (op_loc,
7903 build_indirect_ref (op_loc,
7904 expr.value,
7905 RO_ARROW),
7906 ident);
7907 expr.original_code = ERROR_MARK;
7908 if (TREE_CODE (expr.value) != COMPONENT_REF)
7909 expr.original_type = NULL;
7910 else
7912 /* Remember the original type of a bitfield. */
7913 tree field = TREE_OPERAND (expr.value, 1);
7914 if (TREE_CODE (field) != FIELD_DECL)
7915 expr.original_type = NULL;
7916 else
7917 expr.original_type = DECL_BIT_FIELD_TYPE (field);
7919 break;
7920 case CPP_PLUS_PLUS:
7921 /* Postincrement. */
7922 c_parser_consume_token (parser);
7923 /* If the expressions have array notations, we expand them. */
7924 if (flag_cilkplus
7925 && TREE_CODE (expr.value) == ARRAY_NOTATION_REF)
7926 expr = fix_array_notation_expr (expr_loc, POSTINCREMENT_EXPR, expr);
7927 else
7929 expr = default_function_array_read_conversion (expr_loc, expr);
7930 expr.value = build_unary_op (op_loc,
7931 POSTINCREMENT_EXPR, expr.value, 0);
7933 expr.original_code = ERROR_MARK;
7934 expr.original_type = NULL;
7935 break;
7936 case CPP_MINUS_MINUS:
7937 /* Postdecrement. */
7938 c_parser_consume_token (parser);
7939 /* If the expressions have array notations, we expand them. */
7940 if (flag_cilkplus
7941 && TREE_CODE (expr.value) == ARRAY_NOTATION_REF)
7942 expr = fix_array_notation_expr (expr_loc, POSTDECREMENT_EXPR, expr);
7943 else
7945 expr = default_function_array_read_conversion (expr_loc, expr);
7946 expr.value = build_unary_op (op_loc,
7947 POSTDECREMENT_EXPR, expr.value, 0);
7949 expr.original_code = ERROR_MARK;
7950 expr.original_type = NULL;
7951 break;
7952 default:
7953 return expr;
7958 /* Parse an expression (C90 6.3.17, C99 6.5.17).
7960 expression:
7961 assignment-expression
7962 expression , assignment-expression
7965 static struct c_expr
7966 c_parser_expression (c_parser *parser)
7968 location_t tloc = c_parser_peek_token (parser)->location;
7969 struct c_expr expr;
7970 expr = c_parser_expr_no_commas (parser, NULL);
7971 if (c_parser_next_token_is (parser, CPP_COMMA))
7972 expr = convert_lvalue_to_rvalue (tloc, expr, true, false);
7973 while (c_parser_next_token_is (parser, CPP_COMMA))
7975 struct c_expr next;
7976 tree lhsval;
7977 location_t loc = c_parser_peek_token (parser)->location;
7978 location_t expr_loc;
7979 c_parser_consume_token (parser);
7980 expr_loc = c_parser_peek_token (parser)->location;
7981 lhsval = expr.value;
7982 while (TREE_CODE (lhsval) == COMPOUND_EXPR)
7983 lhsval = TREE_OPERAND (lhsval, 1);
7984 if (DECL_P (lhsval) || handled_component_p (lhsval))
7985 mark_exp_read (lhsval);
7986 next = c_parser_expr_no_commas (parser, NULL);
7987 next = convert_lvalue_to_rvalue (expr_loc, next, true, false);
7988 expr.value = build_compound_expr (loc, expr.value, next.value);
7989 expr.original_code = COMPOUND_EXPR;
7990 expr.original_type = next.original_type;
7992 return expr;
7995 /* Parse an expression and convert functions or arrays to pointers and
7996 lvalues to rvalues. */
7998 static struct c_expr
7999 c_parser_expression_conv (c_parser *parser)
8001 struct c_expr expr;
8002 location_t loc = c_parser_peek_token (parser)->location;
8003 expr = c_parser_expression (parser);
8004 expr = convert_lvalue_to_rvalue (loc, expr, true, false);
8005 return expr;
8008 /* Helper function of c_parser_expr_list. Check if IDXth (0 based)
8009 argument is a literal zero alone and if so, set it in literal_zero_mask. */
8011 static inline void
8012 c_parser_check_literal_zero (c_parser *parser, unsigned *literal_zero_mask,
8013 unsigned int idx)
8015 if (idx >= HOST_BITS_PER_INT)
8016 return;
8018 c_token *tok = c_parser_peek_token (parser);
8019 switch (tok->type)
8021 case CPP_NUMBER:
8022 case CPP_CHAR:
8023 case CPP_WCHAR:
8024 case CPP_CHAR16:
8025 case CPP_CHAR32:
8026 /* If a parameter is literal zero alone, remember it
8027 for -Wmemset-transposed-args warning. */
8028 if (integer_zerop (tok->value)
8029 && !TREE_OVERFLOW (tok->value)
8030 && (c_parser_peek_2nd_token (parser)->type == CPP_COMMA
8031 || c_parser_peek_2nd_token (parser)->type == CPP_CLOSE_PAREN))
8032 *literal_zero_mask |= 1U << idx;
8033 default:
8034 break;
8038 /* Parse a non-empty list of expressions. If CONVERT_P, convert
8039 functions and arrays to pointers and lvalues to rvalues. If
8040 FOLD_P, fold the expressions. If LOCATIONS is non-NULL, save the
8041 locations of function arguments into this vector.
8043 nonempty-expr-list:
8044 assignment-expression
8045 nonempty-expr-list , assignment-expression
8048 static vec<tree, va_gc> *
8049 c_parser_expr_list (c_parser *parser, bool convert_p, bool fold_p,
8050 vec<tree, va_gc> **p_orig_types,
8051 location_t *sizeof_arg_loc, tree *sizeof_arg,
8052 vec<location_t> *locations,
8053 unsigned int *literal_zero_mask)
8055 vec<tree, va_gc> *ret;
8056 vec<tree, va_gc> *orig_types;
8057 struct c_expr expr;
8058 location_t loc = c_parser_peek_token (parser)->location;
8059 location_t cur_sizeof_arg_loc = UNKNOWN_LOCATION;
8060 unsigned int idx = 0;
8062 ret = make_tree_vector ();
8063 if (p_orig_types == NULL)
8064 orig_types = NULL;
8065 else
8066 orig_types = make_tree_vector ();
8068 if (sizeof_arg != NULL
8069 && c_parser_next_token_is_keyword (parser, RID_SIZEOF))
8070 cur_sizeof_arg_loc = c_parser_peek_2nd_token (parser)->location;
8071 if (literal_zero_mask)
8072 c_parser_check_literal_zero (parser, literal_zero_mask, 0);
8073 expr = c_parser_expr_no_commas (parser, NULL);
8074 if (convert_p)
8075 expr = convert_lvalue_to_rvalue (loc, expr, true, true);
8076 if (fold_p)
8077 expr.value = c_fully_fold (expr.value, false, NULL);
8078 ret->quick_push (expr.value);
8079 if (orig_types)
8080 orig_types->quick_push (expr.original_type);
8081 if (locations)
8082 locations->safe_push (loc);
8083 if (sizeof_arg != NULL
8084 && cur_sizeof_arg_loc != UNKNOWN_LOCATION
8085 && expr.original_code == SIZEOF_EXPR)
8087 sizeof_arg[0] = c_last_sizeof_arg;
8088 sizeof_arg_loc[0] = cur_sizeof_arg_loc;
8090 while (c_parser_next_token_is (parser, CPP_COMMA))
8092 c_parser_consume_token (parser);
8093 loc = c_parser_peek_token (parser)->location;
8094 if (sizeof_arg != NULL
8095 && c_parser_next_token_is_keyword (parser, RID_SIZEOF))
8096 cur_sizeof_arg_loc = c_parser_peek_2nd_token (parser)->location;
8097 else
8098 cur_sizeof_arg_loc = UNKNOWN_LOCATION;
8099 if (literal_zero_mask)
8100 c_parser_check_literal_zero (parser, literal_zero_mask, idx + 1);
8101 expr = c_parser_expr_no_commas (parser, NULL);
8102 if (convert_p)
8103 expr = convert_lvalue_to_rvalue (loc, expr, true, true);
8104 if (fold_p)
8105 expr.value = c_fully_fold (expr.value, false, NULL);
8106 vec_safe_push (ret, expr.value);
8107 if (orig_types)
8108 vec_safe_push (orig_types, expr.original_type);
8109 if (locations)
8110 locations->safe_push (loc);
8111 if (++idx < 3
8112 && sizeof_arg != NULL
8113 && cur_sizeof_arg_loc != UNKNOWN_LOCATION
8114 && expr.original_code == SIZEOF_EXPR)
8116 sizeof_arg[idx] = c_last_sizeof_arg;
8117 sizeof_arg_loc[idx] = cur_sizeof_arg_loc;
8120 if (orig_types)
8121 *p_orig_types = orig_types;
8122 return ret;
8125 /* Parse Objective-C-specific constructs. */
8127 /* Parse an objc-class-definition.
8129 objc-class-definition:
8130 @interface identifier objc-superclass[opt] objc-protocol-refs[opt]
8131 objc-class-instance-variables[opt] objc-methodprotolist @end
8132 @implementation identifier objc-superclass[opt]
8133 objc-class-instance-variables[opt]
8134 @interface identifier ( identifier ) objc-protocol-refs[opt]
8135 objc-methodprotolist @end
8136 @interface identifier ( ) objc-protocol-refs[opt]
8137 objc-methodprotolist @end
8138 @implementation identifier ( identifier )
8140 objc-superclass:
8141 : identifier
8143 "@interface identifier (" must start "@interface identifier (
8144 identifier ) ...": objc-methodprotolist in the first production may
8145 not start with a parenthesized identifier as a declarator of a data
8146 definition with no declaration specifiers if the objc-superclass,
8147 objc-protocol-refs and objc-class-instance-variables are omitted. */
8149 static void
8150 c_parser_objc_class_definition (c_parser *parser, tree attributes)
8152 bool iface_p;
8153 tree id1;
8154 tree superclass;
8155 if (c_parser_next_token_is_keyword (parser, RID_AT_INTERFACE))
8156 iface_p = true;
8157 else if (c_parser_next_token_is_keyword (parser, RID_AT_IMPLEMENTATION))
8158 iface_p = false;
8159 else
8160 gcc_unreachable ();
8162 c_parser_consume_token (parser);
8163 if (c_parser_next_token_is_not (parser, CPP_NAME))
8165 c_parser_error (parser, "expected identifier");
8166 return;
8168 id1 = c_parser_peek_token (parser)->value;
8169 c_parser_consume_token (parser);
8170 if (c_parser_next_token_is (parser, CPP_OPEN_PAREN))
8172 /* We have a category or class extension. */
8173 tree id2;
8174 tree proto = NULL_TREE;
8175 c_parser_consume_token (parser);
8176 if (c_parser_next_token_is_not (parser, CPP_NAME))
8178 if (iface_p && c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
8180 /* We have a class extension. */
8181 id2 = NULL_TREE;
8183 else
8185 c_parser_error (parser, "expected identifier or %<)%>");
8186 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
8187 return;
8190 else
8192 id2 = c_parser_peek_token (parser)->value;
8193 c_parser_consume_token (parser);
8195 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
8196 if (!iface_p)
8198 objc_start_category_implementation (id1, id2);
8199 return;
8201 if (c_parser_next_token_is (parser, CPP_LESS))
8202 proto = c_parser_objc_protocol_refs (parser);
8203 objc_start_category_interface (id1, id2, proto, attributes);
8204 c_parser_objc_methodprotolist (parser);
8205 c_parser_require_keyword (parser, RID_AT_END, "expected %<@end%>");
8206 objc_finish_interface ();
8207 return;
8209 if (c_parser_next_token_is (parser, CPP_COLON))
8211 c_parser_consume_token (parser);
8212 if (c_parser_next_token_is_not (parser, CPP_NAME))
8214 c_parser_error (parser, "expected identifier");
8215 return;
8217 superclass = c_parser_peek_token (parser)->value;
8218 c_parser_consume_token (parser);
8220 else
8221 superclass = NULL_TREE;
8222 if (iface_p)
8224 tree proto = NULL_TREE;
8225 if (c_parser_next_token_is (parser, CPP_LESS))
8226 proto = c_parser_objc_protocol_refs (parser);
8227 objc_start_class_interface (id1, superclass, proto, attributes);
8229 else
8230 objc_start_class_implementation (id1, superclass);
8231 if (c_parser_next_token_is (parser, CPP_OPEN_BRACE))
8232 c_parser_objc_class_instance_variables (parser);
8233 if (iface_p)
8235 objc_continue_interface ();
8236 c_parser_objc_methodprotolist (parser);
8237 c_parser_require_keyword (parser, RID_AT_END, "expected %<@end%>");
8238 objc_finish_interface ();
8240 else
8242 objc_continue_implementation ();
8243 return;
8247 /* Parse objc-class-instance-variables.
8249 objc-class-instance-variables:
8250 { objc-instance-variable-decl-list[opt] }
8252 objc-instance-variable-decl-list:
8253 objc-visibility-spec
8254 objc-instance-variable-decl ;
8256 objc-instance-variable-decl-list objc-visibility-spec
8257 objc-instance-variable-decl-list objc-instance-variable-decl ;
8258 objc-instance-variable-decl-list ;
8260 objc-visibility-spec:
8261 @private
8262 @protected
8263 @public
8265 objc-instance-variable-decl:
8266 struct-declaration
8269 static void
8270 c_parser_objc_class_instance_variables (c_parser *parser)
8272 gcc_assert (c_parser_next_token_is (parser, CPP_OPEN_BRACE));
8273 c_parser_consume_token (parser);
8274 while (c_parser_next_token_is_not (parser, CPP_EOF))
8276 tree decls;
8277 /* Parse any stray semicolon. */
8278 if (c_parser_next_token_is (parser, CPP_SEMICOLON))
8280 pedwarn (c_parser_peek_token (parser)->location, OPT_Wpedantic,
8281 "extra semicolon");
8282 c_parser_consume_token (parser);
8283 continue;
8285 /* Stop if at the end of the instance variables. */
8286 if (c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
8288 c_parser_consume_token (parser);
8289 break;
8291 /* Parse any objc-visibility-spec. */
8292 if (c_parser_next_token_is_keyword (parser, RID_AT_PRIVATE))
8294 c_parser_consume_token (parser);
8295 objc_set_visibility (OBJC_IVAR_VIS_PRIVATE);
8296 continue;
8298 else if (c_parser_next_token_is_keyword (parser, RID_AT_PROTECTED))
8300 c_parser_consume_token (parser);
8301 objc_set_visibility (OBJC_IVAR_VIS_PROTECTED);
8302 continue;
8304 else if (c_parser_next_token_is_keyword (parser, RID_AT_PUBLIC))
8306 c_parser_consume_token (parser);
8307 objc_set_visibility (OBJC_IVAR_VIS_PUBLIC);
8308 continue;
8310 else if (c_parser_next_token_is_keyword (parser, RID_AT_PACKAGE))
8312 c_parser_consume_token (parser);
8313 objc_set_visibility (OBJC_IVAR_VIS_PACKAGE);
8314 continue;
8316 else if (c_parser_next_token_is (parser, CPP_PRAGMA))
8318 c_parser_pragma (parser, pragma_external);
8319 continue;
8322 /* Parse some comma-separated declarations. */
8323 decls = c_parser_struct_declaration (parser);
8324 if (decls == NULL)
8326 /* There is a syntax error. We want to skip the offending
8327 tokens up to the next ';' (included) or '}'
8328 (excluded). */
8330 /* First, skip manually a ')' or ']'. This is because they
8331 reduce the nesting level, so c_parser_skip_until_found()
8332 wouldn't be able to skip past them. */
8333 c_token *token = c_parser_peek_token (parser);
8334 if (token->type == CPP_CLOSE_PAREN || token->type == CPP_CLOSE_SQUARE)
8335 c_parser_consume_token (parser);
8337 /* Then, do the standard skipping. */
8338 c_parser_skip_until_found (parser, CPP_SEMICOLON, NULL);
8340 /* We hopefully recovered. Start normal parsing again. */
8341 parser->error = false;
8342 continue;
8344 else
8346 /* Comma-separated instance variables are chained together
8347 in reverse order; add them one by one. */
8348 tree ivar = nreverse (decls);
8349 for (; ivar; ivar = DECL_CHAIN (ivar))
8350 objc_add_instance_variable (copy_node (ivar));
8352 c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
8356 /* Parse an objc-class-declaration.
8358 objc-class-declaration:
8359 @class identifier-list ;
8362 static void
8363 c_parser_objc_class_declaration (c_parser *parser)
8365 gcc_assert (c_parser_next_token_is_keyword (parser, RID_AT_CLASS));
8366 c_parser_consume_token (parser);
8367 /* Any identifiers, including those declared as type names, are OK
8368 here. */
8369 while (true)
8371 tree id;
8372 if (c_parser_next_token_is_not (parser, CPP_NAME))
8374 c_parser_error (parser, "expected identifier");
8375 c_parser_skip_until_found (parser, CPP_SEMICOLON, NULL);
8376 parser->error = false;
8377 return;
8379 id = c_parser_peek_token (parser)->value;
8380 objc_declare_class (id);
8381 c_parser_consume_token (parser);
8382 if (c_parser_next_token_is (parser, CPP_COMMA))
8383 c_parser_consume_token (parser);
8384 else
8385 break;
8387 c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
8390 /* Parse an objc-alias-declaration.
8392 objc-alias-declaration:
8393 @compatibility_alias identifier identifier ;
8396 static void
8397 c_parser_objc_alias_declaration (c_parser *parser)
8399 tree id1, id2;
8400 gcc_assert (c_parser_next_token_is_keyword (parser, RID_AT_ALIAS));
8401 c_parser_consume_token (parser);
8402 if (c_parser_next_token_is_not (parser, CPP_NAME))
8404 c_parser_error (parser, "expected identifier");
8405 c_parser_skip_until_found (parser, CPP_SEMICOLON, NULL);
8406 return;
8408 id1 = c_parser_peek_token (parser)->value;
8409 c_parser_consume_token (parser);
8410 if (c_parser_next_token_is_not (parser, CPP_NAME))
8412 c_parser_error (parser, "expected identifier");
8413 c_parser_skip_until_found (parser, CPP_SEMICOLON, NULL);
8414 return;
8416 id2 = c_parser_peek_token (parser)->value;
8417 c_parser_consume_token (parser);
8418 c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
8419 objc_declare_alias (id1, id2);
8422 /* Parse an objc-protocol-definition.
8424 objc-protocol-definition:
8425 @protocol identifier objc-protocol-refs[opt] objc-methodprotolist @end
8426 @protocol identifier-list ;
8428 "@protocol identifier ;" should be resolved as "@protocol
8429 identifier-list ;": objc-methodprotolist may not start with a
8430 semicolon in the first alternative if objc-protocol-refs are
8431 omitted. */
8433 static void
8434 c_parser_objc_protocol_definition (c_parser *parser, tree attributes)
8436 gcc_assert (c_parser_next_token_is_keyword (parser, RID_AT_PROTOCOL));
8438 c_parser_consume_token (parser);
8439 if (c_parser_next_token_is_not (parser, CPP_NAME))
8441 c_parser_error (parser, "expected identifier");
8442 return;
8444 if (c_parser_peek_2nd_token (parser)->type == CPP_COMMA
8445 || c_parser_peek_2nd_token (parser)->type == CPP_SEMICOLON)
8447 /* Any identifiers, including those declared as type names, are
8448 OK here. */
8449 while (true)
8451 tree id;
8452 if (c_parser_next_token_is_not (parser, CPP_NAME))
8454 c_parser_error (parser, "expected identifier");
8455 break;
8457 id = c_parser_peek_token (parser)->value;
8458 objc_declare_protocol (id, attributes);
8459 c_parser_consume_token (parser);
8460 if (c_parser_next_token_is (parser, CPP_COMMA))
8461 c_parser_consume_token (parser);
8462 else
8463 break;
8465 c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
8467 else
8469 tree id = c_parser_peek_token (parser)->value;
8470 tree proto = NULL_TREE;
8471 c_parser_consume_token (parser);
8472 if (c_parser_next_token_is (parser, CPP_LESS))
8473 proto = c_parser_objc_protocol_refs (parser);
8474 parser->objc_pq_context = true;
8475 objc_start_protocol (id, proto, attributes);
8476 c_parser_objc_methodprotolist (parser);
8477 c_parser_require_keyword (parser, RID_AT_END, "expected %<@end%>");
8478 parser->objc_pq_context = false;
8479 objc_finish_interface ();
8483 /* Parse an objc-method-type.
8485 objc-method-type:
8489 Return true if it is a class method (+) and false if it is
8490 an instance method (-).
8492 static inline bool
8493 c_parser_objc_method_type (c_parser *parser)
8495 switch (c_parser_peek_token (parser)->type)
8497 case CPP_PLUS:
8498 c_parser_consume_token (parser);
8499 return true;
8500 case CPP_MINUS:
8501 c_parser_consume_token (parser);
8502 return false;
8503 default:
8504 gcc_unreachable ();
8508 /* Parse an objc-method-definition.
8510 objc-method-definition:
8511 objc-method-type objc-method-decl ;[opt] compound-statement
8514 static void
8515 c_parser_objc_method_definition (c_parser *parser)
8517 bool is_class_method = c_parser_objc_method_type (parser);
8518 tree decl, attributes = NULL_TREE, expr = NULL_TREE;
8519 parser->objc_pq_context = true;
8520 decl = c_parser_objc_method_decl (parser, is_class_method, &attributes,
8521 &expr);
8522 if (decl == error_mark_node)
8523 return; /* Bail here. */
8525 if (c_parser_next_token_is (parser, CPP_SEMICOLON))
8527 c_parser_consume_token (parser);
8528 pedwarn (c_parser_peek_token (parser)->location, OPT_Wpedantic,
8529 "extra semicolon in method definition specified");
8532 if (!c_parser_next_token_is (parser, CPP_OPEN_BRACE))
8534 c_parser_error (parser, "expected %<{%>");
8535 return;
8538 parser->objc_pq_context = false;
8539 if (objc_start_method_definition (is_class_method, decl, attributes, expr))
8541 add_stmt (c_parser_compound_statement (parser));
8542 objc_finish_method_definition (current_function_decl);
8544 else
8546 /* This code is executed when we find a method definition
8547 outside of an @implementation context (or invalid for other
8548 reasons). Parse the method (to keep going) but do not emit
8549 any code.
8551 c_parser_compound_statement (parser);
8555 /* Parse an objc-methodprotolist.
8557 objc-methodprotolist:
8558 empty
8559 objc-methodprotolist objc-methodproto
8560 objc-methodprotolist declaration
8561 objc-methodprotolist ;
8562 @optional
8563 @required
8565 The declaration is a data definition, which may be missing
8566 declaration specifiers under the same rules and diagnostics as
8567 other data definitions outside functions, and the stray semicolon
8568 is diagnosed the same way as a stray semicolon outside a
8569 function. */
8571 static void
8572 c_parser_objc_methodprotolist (c_parser *parser)
8574 while (true)
8576 /* The list is terminated by @end. */
8577 switch (c_parser_peek_token (parser)->type)
8579 case CPP_SEMICOLON:
8580 pedwarn (c_parser_peek_token (parser)->location, OPT_Wpedantic,
8581 "ISO C does not allow extra %<;%> outside of a function");
8582 c_parser_consume_token (parser);
8583 break;
8584 case CPP_PLUS:
8585 case CPP_MINUS:
8586 c_parser_objc_methodproto (parser);
8587 break;
8588 case CPP_PRAGMA:
8589 c_parser_pragma (parser, pragma_external);
8590 break;
8591 case CPP_EOF:
8592 return;
8593 default:
8594 if (c_parser_next_token_is_keyword (parser, RID_AT_END))
8595 return;
8596 else if (c_parser_next_token_is_keyword (parser, RID_AT_PROPERTY))
8597 c_parser_objc_at_property_declaration (parser);
8598 else if (c_parser_next_token_is_keyword (parser, RID_AT_OPTIONAL))
8600 objc_set_method_opt (true);
8601 c_parser_consume_token (parser);
8603 else if (c_parser_next_token_is_keyword (parser, RID_AT_REQUIRED))
8605 objc_set_method_opt (false);
8606 c_parser_consume_token (parser);
8608 else
8609 c_parser_declaration_or_fndef (parser, false, false, true,
8610 false, true, NULL, vNULL);
8611 break;
8616 /* Parse an objc-methodproto.
8618 objc-methodproto:
8619 objc-method-type objc-method-decl ;
8622 static void
8623 c_parser_objc_methodproto (c_parser *parser)
8625 bool is_class_method = c_parser_objc_method_type (parser);
8626 tree decl, attributes = NULL_TREE;
8628 /* Remember protocol qualifiers in prototypes. */
8629 parser->objc_pq_context = true;
8630 decl = c_parser_objc_method_decl (parser, is_class_method, &attributes,
8631 NULL);
8632 /* Forget protocol qualifiers now. */
8633 parser->objc_pq_context = false;
8635 /* Do not allow the presence of attributes to hide an erroneous
8636 method implementation in the interface section. */
8637 if (!c_parser_next_token_is (parser, CPP_SEMICOLON))
8639 c_parser_error (parser, "expected %<;%>");
8640 return;
8643 if (decl != error_mark_node)
8644 objc_add_method_declaration (is_class_method, decl, attributes);
8646 c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
8649 /* If we are at a position that method attributes may be present, check that
8650 there are not any parsed already (a syntax error) and then collect any
8651 specified at the current location. Finally, if new attributes were present,
8652 check that the next token is legal ( ';' for decls and '{' for defs). */
8654 static bool
8655 c_parser_objc_maybe_method_attributes (c_parser* parser, tree* attributes)
8657 bool bad = false;
8658 if (*attributes)
8660 c_parser_error (parser,
8661 "method attributes must be specified at the end only");
8662 *attributes = NULL_TREE;
8663 bad = true;
8666 if (c_parser_next_token_is_keyword (parser, RID_ATTRIBUTE))
8667 *attributes = c_parser_attributes (parser);
8669 /* If there were no attributes here, just report any earlier error. */
8670 if (*attributes == NULL_TREE || bad)
8671 return bad;
8673 /* If the attributes are followed by a ; or {, then just report any earlier
8674 error. */
8675 if (c_parser_next_token_is (parser, CPP_SEMICOLON)
8676 || c_parser_next_token_is (parser, CPP_OPEN_BRACE))
8677 return bad;
8679 /* We've got attributes, but not at the end. */
8680 c_parser_error (parser,
8681 "expected %<;%> or %<{%> after method attribute definition");
8682 return true;
8685 /* Parse an objc-method-decl.
8687 objc-method-decl:
8688 ( objc-type-name ) objc-selector
8689 objc-selector
8690 ( objc-type-name ) objc-keyword-selector objc-optparmlist
8691 objc-keyword-selector objc-optparmlist
8692 attributes
8694 objc-keyword-selector:
8695 objc-keyword-decl
8696 objc-keyword-selector objc-keyword-decl
8698 objc-keyword-decl:
8699 objc-selector : ( objc-type-name ) identifier
8700 objc-selector : identifier
8701 : ( objc-type-name ) identifier
8702 : identifier
8704 objc-optparmlist:
8705 objc-optparms objc-optellipsis
8707 objc-optparms:
8708 empty
8709 objc-opt-parms , parameter-declaration
8711 objc-optellipsis:
8712 empty
8713 , ...
8716 static tree
8717 c_parser_objc_method_decl (c_parser *parser, bool is_class_method,
8718 tree *attributes, tree *expr)
8720 tree type = NULL_TREE;
8721 tree sel;
8722 tree parms = NULL_TREE;
8723 bool ellipsis = false;
8724 bool attr_err = false;
8726 *attributes = NULL_TREE;
8727 if (c_parser_next_token_is (parser, CPP_OPEN_PAREN))
8729 c_parser_consume_token (parser);
8730 type = c_parser_objc_type_name (parser);
8731 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
8733 sel = c_parser_objc_selector (parser);
8734 /* If there is no selector, or a colon follows, we have an
8735 objc-keyword-selector. If there is a selector, and a colon does
8736 not follow, that selector ends the objc-method-decl. */
8737 if (!sel || c_parser_next_token_is (parser, CPP_COLON))
8739 tree tsel = sel;
8740 tree list = NULL_TREE;
8741 while (true)
8743 tree atype = NULL_TREE, id, keyworddecl;
8744 tree param_attr = NULL_TREE;
8745 if (!c_parser_require (parser, CPP_COLON, "expected %<:%>"))
8746 break;
8747 if (c_parser_next_token_is (parser, CPP_OPEN_PAREN))
8749 c_parser_consume_token (parser);
8750 atype = c_parser_objc_type_name (parser);
8751 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
8752 "expected %<)%>");
8754 /* New ObjC allows attributes on method parameters. */
8755 if (c_parser_next_token_is_keyword (parser, RID_ATTRIBUTE))
8756 param_attr = c_parser_attributes (parser);
8757 if (c_parser_next_token_is_not (parser, CPP_NAME))
8759 c_parser_error (parser, "expected identifier");
8760 return error_mark_node;
8762 id = c_parser_peek_token (parser)->value;
8763 c_parser_consume_token (parser);
8764 keyworddecl = objc_build_keyword_decl (tsel, atype, id, param_attr);
8765 list = chainon (list, keyworddecl);
8766 tsel = c_parser_objc_selector (parser);
8767 if (!tsel && c_parser_next_token_is_not (parser, CPP_COLON))
8768 break;
8771 attr_err |= c_parser_objc_maybe_method_attributes (parser, attributes) ;
8773 /* Parse the optional parameter list. Optional Objective-C
8774 method parameters follow the C syntax, and may include '...'
8775 to denote a variable number of arguments. */
8776 parms = make_node (TREE_LIST);
8777 while (c_parser_next_token_is (parser, CPP_COMMA))
8779 struct c_parm *parm;
8780 c_parser_consume_token (parser);
8781 if (c_parser_next_token_is (parser, CPP_ELLIPSIS))
8783 ellipsis = true;
8784 c_parser_consume_token (parser);
8785 attr_err |= c_parser_objc_maybe_method_attributes
8786 (parser, attributes) ;
8787 break;
8789 parm = c_parser_parameter_declaration (parser, NULL_TREE);
8790 if (parm == NULL)
8791 break;
8792 parms = chainon (parms,
8793 build_tree_list (NULL_TREE, grokparm (parm, expr)));
8795 sel = list;
8797 else
8798 attr_err |= c_parser_objc_maybe_method_attributes (parser, attributes) ;
8800 if (sel == NULL)
8802 c_parser_error (parser, "objective-c method declaration is expected");
8803 return error_mark_node;
8806 if (attr_err)
8807 return error_mark_node;
8809 return objc_build_method_signature (is_class_method, type, sel, parms, ellipsis);
8812 /* Parse an objc-type-name.
8814 objc-type-name:
8815 objc-type-qualifiers[opt] type-name
8816 objc-type-qualifiers[opt]
8818 objc-type-qualifiers:
8819 objc-type-qualifier
8820 objc-type-qualifiers objc-type-qualifier
8822 objc-type-qualifier: one of
8823 in out inout bycopy byref oneway
8826 static tree
8827 c_parser_objc_type_name (c_parser *parser)
8829 tree quals = NULL_TREE;
8830 struct c_type_name *type_name = NULL;
8831 tree type = NULL_TREE;
8832 while (true)
8834 c_token *token = c_parser_peek_token (parser);
8835 if (token->type == CPP_KEYWORD
8836 && (token->keyword == RID_IN
8837 || token->keyword == RID_OUT
8838 || token->keyword == RID_INOUT
8839 || token->keyword == RID_BYCOPY
8840 || token->keyword == RID_BYREF
8841 || token->keyword == RID_ONEWAY))
8843 quals = chainon (build_tree_list (NULL_TREE, token->value), quals);
8844 c_parser_consume_token (parser);
8846 else
8847 break;
8849 if (c_parser_next_tokens_start_typename (parser, cla_prefer_type))
8850 type_name = c_parser_type_name (parser);
8851 if (type_name)
8852 type = groktypename (type_name, NULL, NULL);
8854 /* If the type is unknown, and error has already been produced and
8855 we need to recover from the error. In that case, use NULL_TREE
8856 for the type, as if no type had been specified; this will use the
8857 default type ('id') which is good for error recovery. */
8858 if (type == error_mark_node)
8859 type = NULL_TREE;
8861 return build_tree_list (quals, type);
8864 /* Parse objc-protocol-refs.
8866 objc-protocol-refs:
8867 < identifier-list >
8870 static tree
8871 c_parser_objc_protocol_refs (c_parser *parser)
8873 tree list = NULL_TREE;
8874 gcc_assert (c_parser_next_token_is (parser, CPP_LESS));
8875 c_parser_consume_token (parser);
8876 /* Any identifiers, including those declared as type names, are OK
8877 here. */
8878 while (true)
8880 tree id;
8881 if (c_parser_next_token_is_not (parser, CPP_NAME))
8883 c_parser_error (parser, "expected identifier");
8884 break;
8886 id = c_parser_peek_token (parser)->value;
8887 list = chainon (list, build_tree_list (NULL_TREE, id));
8888 c_parser_consume_token (parser);
8889 if (c_parser_next_token_is (parser, CPP_COMMA))
8890 c_parser_consume_token (parser);
8891 else
8892 break;
8894 c_parser_require (parser, CPP_GREATER, "expected %<>%>");
8895 return list;
8898 /* Parse an objc-try-catch-finally-statement.
8900 objc-try-catch-finally-statement:
8901 @try compound-statement objc-catch-list[opt]
8902 @try compound-statement objc-catch-list[opt] @finally compound-statement
8904 objc-catch-list:
8905 @catch ( objc-catch-parameter-declaration ) compound-statement
8906 objc-catch-list @catch ( objc-catch-parameter-declaration ) compound-statement
8908 objc-catch-parameter-declaration:
8909 parameter-declaration
8910 '...'
8912 where '...' is to be interpreted literally, that is, it means CPP_ELLIPSIS.
8914 PS: This function is identical to cp_parser_objc_try_catch_finally_statement
8915 for C++. Keep them in sync. */
8917 static void
8918 c_parser_objc_try_catch_finally_statement (c_parser *parser)
8920 location_t location;
8921 tree stmt;
8923 gcc_assert (c_parser_next_token_is_keyword (parser, RID_AT_TRY));
8924 c_parser_consume_token (parser);
8925 location = c_parser_peek_token (parser)->location;
8926 objc_maybe_warn_exceptions (location);
8927 stmt = c_parser_compound_statement (parser);
8928 objc_begin_try_stmt (location, stmt);
8930 while (c_parser_next_token_is_keyword (parser, RID_AT_CATCH))
8932 struct c_parm *parm;
8933 tree parameter_declaration = error_mark_node;
8934 bool seen_open_paren = false;
8936 c_parser_consume_token (parser);
8937 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
8938 seen_open_paren = true;
8939 if (c_parser_next_token_is (parser, CPP_ELLIPSIS))
8941 /* We have "@catch (...)" (where the '...' are literally
8942 what is in the code). Skip the '...'.
8943 parameter_declaration is set to NULL_TREE, and
8944 objc_being_catch_clauses() knows that that means
8945 '...'. */
8946 c_parser_consume_token (parser);
8947 parameter_declaration = NULL_TREE;
8949 else
8951 /* We have "@catch (NSException *exception)" or something
8952 like that. Parse the parameter declaration. */
8953 parm = c_parser_parameter_declaration (parser, NULL_TREE);
8954 if (parm == NULL)
8955 parameter_declaration = error_mark_node;
8956 else
8957 parameter_declaration = grokparm (parm, NULL);
8959 if (seen_open_paren)
8960 c_parser_require (parser, CPP_CLOSE_PAREN, "expected %<)%>");
8961 else
8963 /* If there was no open parenthesis, we are recovering from
8964 an error, and we are trying to figure out what mistake
8965 the user has made. */
8967 /* If there is an immediate closing parenthesis, the user
8968 probably forgot the opening one (ie, they typed "@catch
8969 NSException *e)". Parse the closing parenthesis and keep
8970 going. */
8971 if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
8972 c_parser_consume_token (parser);
8974 /* If these is no immediate closing parenthesis, the user
8975 probably doesn't know that parenthesis are required at
8976 all (ie, they typed "@catch NSException *e"). So, just
8977 forget about the closing parenthesis and keep going. */
8979 objc_begin_catch_clause (parameter_declaration);
8980 if (c_parser_require (parser, CPP_OPEN_BRACE, "expected %<{%>"))
8981 c_parser_compound_statement_nostart (parser);
8982 objc_finish_catch_clause ();
8984 if (c_parser_next_token_is_keyword (parser, RID_AT_FINALLY))
8986 c_parser_consume_token (parser);
8987 location = c_parser_peek_token (parser)->location;
8988 stmt = c_parser_compound_statement (parser);
8989 objc_build_finally_clause (location, stmt);
8991 objc_finish_try_stmt ();
8994 /* Parse an objc-synchronized-statement.
8996 objc-synchronized-statement:
8997 @synchronized ( expression ) compound-statement
9000 static void
9001 c_parser_objc_synchronized_statement (c_parser *parser)
9003 location_t loc;
9004 tree expr, stmt;
9005 gcc_assert (c_parser_next_token_is_keyword (parser, RID_AT_SYNCHRONIZED));
9006 c_parser_consume_token (parser);
9007 loc = c_parser_peek_token (parser)->location;
9008 objc_maybe_warn_exceptions (loc);
9009 if (c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
9011 struct c_expr ce = c_parser_expression (parser);
9012 ce = convert_lvalue_to_rvalue (loc, ce, false, false);
9013 expr = ce.value;
9014 expr = c_fully_fold (expr, false, NULL);
9015 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
9017 else
9018 expr = error_mark_node;
9019 stmt = c_parser_compound_statement (parser);
9020 objc_build_synchronized (loc, expr, stmt);
9023 /* Parse an objc-selector; return NULL_TREE without an error if the
9024 next token is not an objc-selector.
9026 objc-selector:
9027 identifier
9028 one of
9029 enum struct union if else while do for switch case default
9030 break continue return goto asm sizeof typeof __alignof
9031 unsigned long const short volatile signed restrict _Complex
9032 in out inout bycopy byref oneway int char float double void _Bool
9033 _Atomic
9035 ??? Why this selection of keywords but not, for example, storage
9036 class specifiers? */
9038 static tree
9039 c_parser_objc_selector (c_parser *parser)
9041 c_token *token = c_parser_peek_token (parser);
9042 tree value = token->value;
9043 if (token->type == CPP_NAME)
9045 c_parser_consume_token (parser);
9046 return value;
9048 if (token->type != CPP_KEYWORD)
9049 return NULL_TREE;
9050 switch (token->keyword)
9052 case RID_ENUM:
9053 case RID_STRUCT:
9054 case RID_UNION:
9055 case RID_IF:
9056 case RID_ELSE:
9057 case RID_WHILE:
9058 case RID_DO:
9059 case RID_FOR:
9060 case RID_SWITCH:
9061 case RID_CASE:
9062 case RID_DEFAULT:
9063 case RID_BREAK:
9064 case RID_CONTINUE:
9065 case RID_RETURN:
9066 case RID_GOTO:
9067 case RID_ASM:
9068 case RID_SIZEOF:
9069 case RID_TYPEOF:
9070 case RID_ALIGNOF:
9071 case RID_UNSIGNED:
9072 case RID_LONG:
9073 case RID_CONST:
9074 case RID_SHORT:
9075 case RID_VOLATILE:
9076 case RID_SIGNED:
9077 case RID_RESTRICT:
9078 case RID_COMPLEX:
9079 case RID_IN:
9080 case RID_OUT:
9081 case RID_INOUT:
9082 case RID_BYCOPY:
9083 case RID_BYREF:
9084 case RID_ONEWAY:
9085 case RID_INT:
9086 case RID_CHAR:
9087 case RID_FLOAT:
9088 case RID_DOUBLE:
9089 case RID_VOID:
9090 case RID_BOOL:
9091 case RID_ATOMIC:
9092 case RID_AUTO_TYPE:
9093 case RID_INT_N_0:
9094 case RID_INT_N_1:
9095 case RID_INT_N_2:
9096 case RID_INT_N_3:
9097 c_parser_consume_token (parser);
9098 return value;
9099 default:
9100 return NULL_TREE;
9104 /* Parse an objc-selector-arg.
9106 objc-selector-arg:
9107 objc-selector
9108 objc-keywordname-list
9110 objc-keywordname-list:
9111 objc-keywordname
9112 objc-keywordname-list objc-keywordname
9114 objc-keywordname:
9115 objc-selector :
9119 static tree
9120 c_parser_objc_selector_arg (c_parser *parser)
9122 tree sel = c_parser_objc_selector (parser);
9123 tree list = NULL_TREE;
9124 if (sel && c_parser_next_token_is_not (parser, CPP_COLON))
9125 return sel;
9126 while (true)
9128 if (!c_parser_require (parser, CPP_COLON, "expected %<:%>"))
9129 return list;
9130 list = chainon (list, build_tree_list (sel, NULL_TREE));
9131 sel = c_parser_objc_selector (parser);
9132 if (!sel && c_parser_next_token_is_not (parser, CPP_COLON))
9133 break;
9135 return list;
9138 /* Parse an objc-receiver.
9140 objc-receiver:
9141 expression
9142 class-name
9143 type-name
9146 static tree
9147 c_parser_objc_receiver (c_parser *parser)
9149 location_t loc = c_parser_peek_token (parser)->location;
9151 if (c_parser_peek_token (parser)->type == CPP_NAME
9152 && (c_parser_peek_token (parser)->id_kind == C_ID_TYPENAME
9153 || c_parser_peek_token (parser)->id_kind == C_ID_CLASSNAME))
9155 tree id = c_parser_peek_token (parser)->value;
9156 c_parser_consume_token (parser);
9157 return objc_get_class_reference (id);
9159 struct c_expr ce = c_parser_expression (parser);
9160 ce = convert_lvalue_to_rvalue (loc, ce, false, false);
9161 return c_fully_fold (ce.value, false, NULL);
9164 /* Parse objc-message-args.
9166 objc-message-args:
9167 objc-selector
9168 objc-keywordarg-list
9170 objc-keywordarg-list:
9171 objc-keywordarg
9172 objc-keywordarg-list objc-keywordarg
9174 objc-keywordarg:
9175 objc-selector : objc-keywordexpr
9176 : objc-keywordexpr
9179 static tree
9180 c_parser_objc_message_args (c_parser *parser)
9182 tree sel = c_parser_objc_selector (parser);
9183 tree list = NULL_TREE;
9184 if (sel && c_parser_next_token_is_not (parser, CPP_COLON))
9185 return sel;
9186 while (true)
9188 tree keywordexpr;
9189 if (!c_parser_require (parser, CPP_COLON, "expected %<:%>"))
9190 return error_mark_node;
9191 keywordexpr = c_parser_objc_keywordexpr (parser);
9192 list = chainon (list, build_tree_list (sel, keywordexpr));
9193 sel = c_parser_objc_selector (parser);
9194 if (!sel && c_parser_next_token_is_not (parser, CPP_COLON))
9195 break;
9197 return list;
9200 /* Parse an objc-keywordexpr.
9202 objc-keywordexpr:
9203 nonempty-expr-list
9206 static tree
9207 c_parser_objc_keywordexpr (c_parser *parser)
9209 tree ret;
9210 vec<tree, va_gc> *expr_list = c_parser_expr_list (parser, true, true,
9211 NULL, NULL, NULL, NULL);
9212 if (vec_safe_length (expr_list) == 1)
9214 /* Just return the expression, remove a level of
9215 indirection. */
9216 ret = (*expr_list)[0];
9218 else
9220 /* We have a comma expression, we will collapse later. */
9221 ret = build_tree_list_vec (expr_list);
9223 release_tree_vector (expr_list);
9224 return ret;
9227 /* A check, needed in several places, that ObjC interface, implementation or
9228 method definitions are not prefixed by incorrect items. */
9229 static bool
9230 c_parser_objc_diagnose_bad_element_prefix (c_parser *parser,
9231 struct c_declspecs *specs)
9233 if (!specs->declspecs_seen_p || specs->non_sc_seen_p
9234 || specs->typespec_kind != ctsk_none)
9236 c_parser_error (parser,
9237 "no type or storage class may be specified here,");
9238 c_parser_skip_to_end_of_block_or_statement (parser);
9239 return true;
9241 return false;
9244 /* Parse an Objective-C @property declaration. The syntax is:
9246 objc-property-declaration:
9247 '@property' objc-property-attributes[opt] struct-declaration ;
9249 objc-property-attributes:
9250 '(' objc-property-attribute-list ')'
9252 objc-property-attribute-list:
9253 objc-property-attribute
9254 objc-property-attribute-list, objc-property-attribute
9256 objc-property-attribute
9257 'getter' = identifier
9258 'setter' = identifier
9259 'readonly'
9260 'readwrite'
9261 'assign'
9262 'retain'
9263 'copy'
9264 'nonatomic'
9266 For example:
9267 @property NSString *name;
9268 @property (readonly) id object;
9269 @property (retain, nonatomic, getter=getTheName) id name;
9270 @property int a, b, c;
9272 PS: This function is identical to cp_parser_objc_at_propery_declaration
9273 for C++. Keep them in sync. */
9274 static void
9275 c_parser_objc_at_property_declaration (c_parser *parser)
9277 /* The following variables hold the attributes of the properties as
9278 parsed. They are 'false' or 'NULL_TREE' if the attribute was not
9279 seen. When we see an attribute, we set them to 'true' (if they
9280 are boolean properties) or to the identifier (if they have an
9281 argument, ie, for getter and setter). Note that here we only
9282 parse the list of attributes, check the syntax and accumulate the
9283 attributes that we find. objc_add_property_declaration() will
9284 then process the information. */
9285 bool property_assign = false;
9286 bool property_copy = false;
9287 tree property_getter_ident = NULL_TREE;
9288 bool property_nonatomic = false;
9289 bool property_readonly = false;
9290 bool property_readwrite = false;
9291 bool property_retain = false;
9292 tree property_setter_ident = NULL_TREE;
9294 /* 'properties' is the list of properties that we read. Usually a
9295 single one, but maybe more (eg, in "@property int a, b, c;" there
9296 are three). */
9297 tree properties;
9298 location_t loc;
9300 loc = c_parser_peek_token (parser)->location;
9301 gcc_assert (c_parser_next_token_is_keyword (parser, RID_AT_PROPERTY));
9303 c_parser_consume_token (parser); /* Eat '@property'. */
9305 /* Parse the optional attribute list... */
9306 if (c_parser_next_token_is (parser, CPP_OPEN_PAREN))
9308 /* Eat the '(' */
9309 c_parser_consume_token (parser);
9311 /* Property attribute keywords are valid now. */
9312 parser->objc_property_attr_context = true;
9314 while (true)
9316 bool syntax_error = false;
9317 c_token *token = c_parser_peek_token (parser);
9318 enum rid keyword;
9320 if (token->type != CPP_KEYWORD)
9322 if (token->type == CPP_CLOSE_PAREN)
9323 c_parser_error (parser, "expected identifier");
9324 else
9326 c_parser_consume_token (parser);
9327 c_parser_error (parser, "unknown property attribute");
9329 break;
9331 keyword = token->keyword;
9332 c_parser_consume_token (parser);
9333 switch (keyword)
9335 case RID_ASSIGN: property_assign = true; break;
9336 case RID_COPY: property_copy = true; break;
9337 case RID_NONATOMIC: property_nonatomic = true; break;
9338 case RID_READONLY: property_readonly = true; break;
9339 case RID_READWRITE: property_readwrite = true; break;
9340 case RID_RETAIN: property_retain = true; break;
9342 case RID_GETTER:
9343 case RID_SETTER:
9344 if (c_parser_next_token_is_not (parser, CPP_EQ))
9346 if (keyword == RID_GETTER)
9347 c_parser_error (parser,
9348 "missing %<=%> (after %<getter%> attribute)");
9349 else
9350 c_parser_error (parser,
9351 "missing %<=%> (after %<setter%> attribute)");
9352 syntax_error = true;
9353 break;
9355 c_parser_consume_token (parser); /* eat the = */
9356 if (c_parser_next_token_is_not (parser, CPP_NAME))
9358 c_parser_error (parser, "expected identifier");
9359 syntax_error = true;
9360 break;
9362 if (keyword == RID_SETTER)
9364 if (property_setter_ident != NULL_TREE)
9365 c_parser_error (parser, "the %<setter%> attribute may only be specified once");
9366 else
9367 property_setter_ident = c_parser_peek_token (parser)->value;
9368 c_parser_consume_token (parser);
9369 if (c_parser_next_token_is_not (parser, CPP_COLON))
9370 c_parser_error (parser, "setter name must terminate with %<:%>");
9371 else
9372 c_parser_consume_token (parser);
9374 else
9376 if (property_getter_ident != NULL_TREE)
9377 c_parser_error (parser, "the %<getter%> attribute may only be specified once");
9378 else
9379 property_getter_ident = c_parser_peek_token (parser)->value;
9380 c_parser_consume_token (parser);
9382 break;
9383 default:
9384 c_parser_error (parser, "unknown property attribute");
9385 syntax_error = true;
9386 break;
9389 if (syntax_error)
9390 break;
9392 if (c_parser_next_token_is (parser, CPP_COMMA))
9393 c_parser_consume_token (parser);
9394 else
9395 break;
9397 parser->objc_property_attr_context = false;
9398 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
9400 /* ... and the property declaration(s). */
9401 properties = c_parser_struct_declaration (parser);
9403 if (properties == error_mark_node)
9405 c_parser_skip_until_found (parser, CPP_SEMICOLON, NULL);
9406 parser->error = false;
9407 return;
9410 if (properties == NULL_TREE)
9411 c_parser_error (parser, "expected identifier");
9412 else
9414 /* Comma-separated properties are chained together in
9415 reverse order; add them one by one. */
9416 properties = nreverse (properties);
9418 for (; properties; properties = TREE_CHAIN (properties))
9419 objc_add_property_declaration (loc, copy_node (properties),
9420 property_readonly, property_readwrite,
9421 property_assign, property_retain,
9422 property_copy, property_nonatomic,
9423 property_getter_ident, property_setter_ident);
9426 c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
9427 parser->error = false;
9430 /* Parse an Objective-C @synthesize declaration. The syntax is:
9432 objc-synthesize-declaration:
9433 @synthesize objc-synthesize-identifier-list ;
9435 objc-synthesize-identifier-list:
9436 objc-synthesize-identifier
9437 objc-synthesize-identifier-list, objc-synthesize-identifier
9439 objc-synthesize-identifier
9440 identifier
9441 identifier = identifier
9443 For example:
9444 @synthesize MyProperty;
9445 @synthesize OneProperty, AnotherProperty=MyIvar, YetAnotherProperty;
9447 PS: This function is identical to cp_parser_objc_at_synthesize_declaration
9448 for C++. Keep them in sync.
9450 static void
9451 c_parser_objc_at_synthesize_declaration (c_parser *parser)
9453 tree list = NULL_TREE;
9454 location_t loc;
9455 gcc_assert (c_parser_next_token_is_keyword (parser, RID_AT_SYNTHESIZE));
9456 loc = c_parser_peek_token (parser)->location;
9458 c_parser_consume_token (parser);
9459 while (true)
9461 tree property, ivar;
9462 if (c_parser_next_token_is_not (parser, CPP_NAME))
9464 c_parser_error (parser, "expected identifier");
9465 c_parser_skip_until_found (parser, CPP_SEMICOLON, NULL);
9466 /* Once we find the semicolon, we can resume normal parsing.
9467 We have to reset parser->error manually because
9468 c_parser_skip_until_found() won't reset it for us if the
9469 next token is precisely a semicolon. */
9470 parser->error = false;
9471 return;
9473 property = c_parser_peek_token (parser)->value;
9474 c_parser_consume_token (parser);
9475 if (c_parser_next_token_is (parser, CPP_EQ))
9477 c_parser_consume_token (parser);
9478 if (c_parser_next_token_is_not (parser, CPP_NAME))
9480 c_parser_error (parser, "expected identifier");
9481 c_parser_skip_until_found (parser, CPP_SEMICOLON, NULL);
9482 parser->error = false;
9483 return;
9485 ivar = c_parser_peek_token (parser)->value;
9486 c_parser_consume_token (parser);
9488 else
9489 ivar = NULL_TREE;
9490 list = chainon (list, build_tree_list (ivar, property));
9491 if (c_parser_next_token_is (parser, CPP_COMMA))
9492 c_parser_consume_token (parser);
9493 else
9494 break;
9496 c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
9497 objc_add_synthesize_declaration (loc, list);
9500 /* Parse an Objective-C @dynamic declaration. The syntax is:
9502 objc-dynamic-declaration:
9503 @dynamic identifier-list ;
9505 For example:
9506 @dynamic MyProperty;
9507 @dynamic MyProperty, AnotherProperty;
9509 PS: This function is identical to cp_parser_objc_at_dynamic_declaration
9510 for C++. Keep them in sync.
9512 static void
9513 c_parser_objc_at_dynamic_declaration (c_parser *parser)
9515 tree list = NULL_TREE;
9516 location_t loc;
9517 gcc_assert (c_parser_next_token_is_keyword (parser, RID_AT_DYNAMIC));
9518 loc = c_parser_peek_token (parser)->location;
9520 c_parser_consume_token (parser);
9521 while (true)
9523 tree property;
9524 if (c_parser_next_token_is_not (parser, CPP_NAME))
9526 c_parser_error (parser, "expected identifier");
9527 c_parser_skip_until_found (parser, CPP_SEMICOLON, NULL);
9528 parser->error = false;
9529 return;
9531 property = c_parser_peek_token (parser)->value;
9532 list = chainon (list, build_tree_list (NULL_TREE, property));
9533 c_parser_consume_token (parser);
9534 if (c_parser_next_token_is (parser, CPP_COMMA))
9535 c_parser_consume_token (parser);
9536 else
9537 break;
9539 c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
9540 objc_add_dynamic_declaration (loc, list);
9544 /* Handle pragmas. Some OpenMP pragmas are associated with, and therefore
9545 should be considered, statements. ALLOW_STMT is true if we're within
9546 the context of a function and such pragmas are to be allowed. Returns
9547 true if we actually parsed such a pragma. */
9549 static bool
9550 c_parser_pragma (c_parser *parser, enum pragma_context context)
9552 unsigned int id;
9554 id = c_parser_peek_token (parser)->pragma_kind;
9555 gcc_assert (id != PRAGMA_NONE);
9557 switch (id)
9559 case PRAGMA_OACC_ENTER_DATA:
9560 c_parser_oacc_enter_exit_data (parser, true);
9561 return false;
9563 case PRAGMA_OACC_EXIT_DATA:
9564 c_parser_oacc_enter_exit_data (parser, false);
9565 return false;
9567 case PRAGMA_OACC_UPDATE:
9568 if (context != pragma_compound)
9570 if (context == pragma_stmt)
9571 c_parser_error (parser, "%<#pragma acc update%> may only be "
9572 "used in compound statements");
9573 goto bad_stmt;
9575 c_parser_oacc_update (parser);
9576 return false;
9578 case PRAGMA_OMP_BARRIER:
9579 if (context != pragma_compound)
9581 if (context == pragma_stmt)
9582 c_parser_error (parser, "%<#pragma omp barrier%> may only be "
9583 "used in compound statements");
9584 goto bad_stmt;
9586 c_parser_omp_barrier (parser);
9587 return false;
9589 case PRAGMA_OMP_FLUSH:
9590 if (context != pragma_compound)
9592 if (context == pragma_stmt)
9593 c_parser_error (parser, "%<#pragma omp flush%> may only be "
9594 "used in compound statements");
9595 goto bad_stmt;
9597 c_parser_omp_flush (parser);
9598 return false;
9600 case PRAGMA_OMP_TASKWAIT:
9601 if (context != pragma_compound)
9603 if (context == pragma_stmt)
9604 c_parser_error (parser, "%<#pragma omp taskwait%> may only be "
9605 "used in compound statements");
9606 goto bad_stmt;
9608 c_parser_omp_taskwait (parser);
9609 return false;
9611 case PRAGMA_OMP_TASKYIELD:
9612 if (context != pragma_compound)
9614 if (context == pragma_stmt)
9615 c_parser_error (parser, "%<#pragma omp taskyield%> may only be "
9616 "used in compound statements");
9617 goto bad_stmt;
9619 c_parser_omp_taskyield (parser);
9620 return false;
9622 case PRAGMA_OMP_CANCEL:
9623 if (context != pragma_compound)
9625 if (context == pragma_stmt)
9626 c_parser_error (parser, "%<#pragma omp cancel%> may only be "
9627 "used in compound statements");
9628 goto bad_stmt;
9630 c_parser_omp_cancel (parser);
9631 return false;
9633 case PRAGMA_OMP_CANCELLATION_POINT:
9634 if (context != pragma_compound)
9636 if (context == pragma_stmt)
9637 c_parser_error (parser, "%<#pragma omp cancellation point%> may "
9638 "only be used in compound statements");
9639 goto bad_stmt;
9641 c_parser_omp_cancellation_point (parser);
9642 return false;
9644 case PRAGMA_OMP_THREADPRIVATE:
9645 c_parser_omp_threadprivate (parser);
9646 return false;
9648 case PRAGMA_OMP_TARGET:
9649 return c_parser_omp_target (parser, context);
9651 case PRAGMA_OMP_END_DECLARE_TARGET:
9652 c_parser_omp_end_declare_target (parser);
9653 return false;
9655 case PRAGMA_OMP_SECTION:
9656 error_at (c_parser_peek_token (parser)->location,
9657 "%<#pragma omp section%> may only be used in "
9658 "%<#pragma omp sections%> construct");
9659 c_parser_skip_until_found (parser, CPP_PRAGMA_EOL, NULL);
9660 return false;
9662 case PRAGMA_OMP_DECLARE_REDUCTION:
9663 c_parser_omp_declare (parser, context);
9664 return false;
9665 case PRAGMA_IVDEP:
9666 c_parser_consume_pragma (parser);
9667 c_parser_skip_to_pragma_eol (parser);
9668 if (!c_parser_next_token_is_keyword (parser, RID_FOR)
9669 && !c_parser_next_token_is_keyword (parser, RID_WHILE)
9670 && !c_parser_next_token_is_keyword (parser, RID_DO))
9672 c_parser_error (parser, "for, while or do statement expected");
9673 return false;
9675 if (c_parser_next_token_is_keyword (parser, RID_FOR))
9676 c_parser_for_statement (parser, true);
9677 else if (c_parser_next_token_is_keyword (parser, RID_WHILE))
9678 c_parser_while_statement (parser, true);
9679 else
9680 c_parser_do_statement (parser, true);
9681 return false;
9683 case PRAGMA_GCC_PCH_PREPROCESS:
9684 c_parser_error (parser, "%<#pragma GCC pch_preprocess%> must be first");
9685 c_parser_skip_until_found (parser, CPP_PRAGMA_EOL, NULL);
9686 return false;
9688 case PRAGMA_CILK_SIMD:
9689 if (!c_parser_cilk_verify_simd (parser, context))
9690 return false;
9691 c_parser_consume_pragma (parser);
9692 c_parser_cilk_simd (parser);
9693 return false;
9694 case PRAGMA_CILK_GRAINSIZE:
9695 if (!flag_cilkplus)
9697 warning (0, "%<#pragma grainsize%> ignored because -fcilkplus is not"
9698 " enabled");
9699 c_parser_skip_until_found (parser, CPP_PRAGMA_EOL, NULL);
9700 return false;
9702 if (context == pragma_external)
9704 error_at (c_parser_peek_token (parser)->location,
9705 "%<#pragma grainsize%> must be inside a function");
9706 c_parser_skip_until_found (parser, CPP_PRAGMA_EOL, NULL);
9707 return false;
9709 c_parser_cilk_grainsize (parser);
9710 return false;
9712 default:
9713 if (id < PRAGMA_FIRST_EXTERNAL)
9715 if (context != pragma_stmt && context != pragma_compound)
9717 bad_stmt:
9718 c_parser_error (parser, "expected declaration specifiers");
9719 c_parser_skip_until_found (parser, CPP_PRAGMA_EOL, NULL);
9720 return false;
9722 c_parser_omp_construct (parser);
9723 return true;
9725 break;
9728 c_parser_consume_pragma (parser);
9729 c_invoke_pragma_handler (id);
9731 /* Skip to EOL, but suppress any error message. Those will have been
9732 generated by the handler routine through calling error, as opposed
9733 to calling c_parser_error. */
9734 parser->error = true;
9735 c_parser_skip_to_pragma_eol (parser);
9737 return false;
9740 /* The interface the pragma parsers have to the lexer. */
9742 enum cpp_ttype
9743 pragma_lex (tree *value)
9745 c_token *tok = c_parser_peek_token (the_parser);
9746 enum cpp_ttype ret = tok->type;
9748 *value = tok->value;
9749 if (ret == CPP_PRAGMA_EOL || ret == CPP_EOF)
9750 ret = CPP_EOF;
9751 else
9753 if (ret == CPP_KEYWORD)
9754 ret = CPP_NAME;
9755 c_parser_consume_token (the_parser);
9758 return ret;
9761 static void
9762 c_parser_pragma_pch_preprocess (c_parser *parser)
9764 tree name = NULL;
9766 c_parser_consume_pragma (parser);
9767 if (c_parser_next_token_is (parser, CPP_STRING))
9769 name = c_parser_peek_token (parser)->value;
9770 c_parser_consume_token (parser);
9772 else
9773 c_parser_error (parser, "expected string literal");
9774 c_parser_skip_to_pragma_eol (parser);
9776 if (name)
9777 c_common_pch_pragma (parse_in, TREE_STRING_POINTER (name));
9780 /* OpenACC and OpenMP parsing routines. */
9782 /* Returns name of the next clause.
9783 If the clause is not recognized PRAGMA_OMP_CLAUSE_NONE is returned and
9784 the token is not consumed. Otherwise appropriate pragma_omp_clause is
9785 returned and the token is consumed. */
9787 static pragma_omp_clause
9788 c_parser_omp_clause_name (c_parser *parser)
9790 pragma_omp_clause result = PRAGMA_OMP_CLAUSE_NONE;
9792 if (c_parser_next_token_is_keyword (parser, RID_IF))
9793 result = PRAGMA_OMP_CLAUSE_IF;
9794 else if (c_parser_next_token_is_keyword (parser, RID_DEFAULT))
9795 result = PRAGMA_OMP_CLAUSE_DEFAULT;
9796 else if (c_parser_next_token_is_keyword (parser, RID_FOR))
9797 result = PRAGMA_OMP_CLAUSE_FOR;
9798 else if (c_parser_next_token_is (parser, CPP_NAME))
9800 const char *p = IDENTIFIER_POINTER (c_parser_peek_token (parser)->value);
9802 switch (p[0])
9804 case 'a':
9805 if (!strcmp ("aligned", p))
9806 result = PRAGMA_OMP_CLAUSE_ALIGNED;
9807 else if (!strcmp ("async", p))
9808 result = PRAGMA_OMP_CLAUSE_ASYNC;
9809 break;
9810 case 'c':
9811 if (!strcmp ("collapse", p))
9812 result = PRAGMA_OMP_CLAUSE_COLLAPSE;
9813 else if (!strcmp ("copy", p))
9814 result = PRAGMA_OMP_CLAUSE_COPY;
9815 else if (!strcmp ("copyin", p))
9816 result = PRAGMA_OMP_CLAUSE_COPYIN;
9817 else if (!strcmp ("copyout", p))
9818 result = PRAGMA_OMP_CLAUSE_COPYOUT;
9819 else if (!strcmp ("copyprivate", p))
9820 result = PRAGMA_OMP_CLAUSE_COPYPRIVATE;
9821 else if (!strcmp ("create", p))
9822 result = PRAGMA_OMP_CLAUSE_CREATE;
9823 break;
9824 case 'd':
9825 if (!strcmp ("delete", p))
9826 result = PRAGMA_OMP_CLAUSE_DELETE;
9827 else if (!strcmp ("depend", p))
9828 result = PRAGMA_OMP_CLAUSE_DEPEND;
9829 else if (!strcmp ("device", p))
9830 result = PRAGMA_OMP_CLAUSE_DEVICE;
9831 else if (!strcmp ("deviceptr", p))
9832 result = PRAGMA_OMP_CLAUSE_DEVICEPTR;
9833 else if (!strcmp ("dist_schedule", p))
9834 result = PRAGMA_OMP_CLAUSE_DIST_SCHEDULE;
9835 break;
9836 case 'f':
9837 if (!strcmp ("final", p))
9838 result = PRAGMA_OMP_CLAUSE_FINAL;
9839 else if (!strcmp ("firstprivate", p))
9840 result = PRAGMA_OMP_CLAUSE_FIRSTPRIVATE;
9841 else if (!strcmp ("from", p))
9842 result = PRAGMA_OMP_CLAUSE_FROM;
9843 break;
9844 case 'h':
9845 if (!strcmp ("host", p))
9846 result = PRAGMA_OMP_CLAUSE_HOST;
9847 break;
9848 case 'i':
9849 if (!strcmp ("inbranch", p))
9850 result = PRAGMA_OMP_CLAUSE_INBRANCH;
9851 break;
9852 case 'l':
9853 if (!strcmp ("lastprivate", p))
9854 result = PRAGMA_OMP_CLAUSE_LASTPRIVATE;
9855 else if (!strcmp ("linear", p))
9856 result = PRAGMA_OMP_CLAUSE_LINEAR;
9857 break;
9858 case 'm':
9859 if (!strcmp ("map", p))
9860 result = PRAGMA_OMP_CLAUSE_MAP;
9861 else if (!strcmp ("mergeable", p))
9862 result = PRAGMA_OMP_CLAUSE_MERGEABLE;
9863 else if (flag_cilkplus && !strcmp ("mask", p))
9864 result = PRAGMA_CILK_CLAUSE_MASK;
9865 break;
9866 case 'n':
9867 if (!strcmp ("notinbranch", p))
9868 result = PRAGMA_OMP_CLAUSE_NOTINBRANCH;
9869 else if (!strcmp ("nowait", p))
9870 result = PRAGMA_OMP_CLAUSE_NOWAIT;
9871 else if (!strcmp ("num_gangs", p))
9872 result = PRAGMA_OMP_CLAUSE_NUM_GANGS;
9873 else if (!strcmp ("num_teams", p))
9874 result = PRAGMA_OMP_CLAUSE_NUM_TEAMS;
9875 else if (!strcmp ("num_threads", p))
9876 result = PRAGMA_OMP_CLAUSE_NUM_THREADS;
9877 else if (!strcmp ("num_workers", p))
9878 result = PRAGMA_OMP_CLAUSE_NUM_WORKERS;
9879 else if (flag_cilkplus && !strcmp ("nomask", p))
9880 result = PRAGMA_CILK_CLAUSE_NOMASK;
9881 break;
9882 case 'o':
9883 if (!strcmp ("ordered", p))
9884 result = PRAGMA_OMP_CLAUSE_ORDERED;
9885 break;
9886 case 'p':
9887 if (!strcmp ("parallel", p))
9888 result = PRAGMA_OMP_CLAUSE_PARALLEL;
9889 else if (!strcmp ("present", p))
9890 result = PRAGMA_OMP_CLAUSE_PRESENT;
9891 else if (!strcmp ("present_or_copy", p)
9892 || !strcmp ("pcopy", p))
9893 result = PRAGMA_OMP_CLAUSE_PRESENT_OR_COPY;
9894 else if (!strcmp ("present_or_copyin", p)
9895 || !strcmp ("pcopyin", p))
9896 result = PRAGMA_OMP_CLAUSE_PRESENT_OR_COPYIN;
9897 else if (!strcmp ("present_or_copyout", p)
9898 || !strcmp ("pcopyout", p))
9899 result = PRAGMA_OMP_CLAUSE_PRESENT_OR_COPYOUT;
9900 else if (!strcmp ("present_or_create", p)
9901 || !strcmp ("pcreate", p))
9902 result = PRAGMA_OMP_CLAUSE_PRESENT_OR_CREATE;
9903 else if (!strcmp ("private", p))
9904 result = PRAGMA_OMP_CLAUSE_PRIVATE;
9905 else if (!strcmp ("proc_bind", p))
9906 result = PRAGMA_OMP_CLAUSE_PROC_BIND;
9907 break;
9908 case 'r':
9909 if (!strcmp ("reduction", p))
9910 result = PRAGMA_OMP_CLAUSE_REDUCTION;
9911 break;
9912 case 's':
9913 if (!strcmp ("safelen", p))
9914 result = PRAGMA_OMP_CLAUSE_SAFELEN;
9915 else if (!strcmp ("schedule", p))
9916 result = PRAGMA_OMP_CLAUSE_SCHEDULE;
9917 else if (!strcmp ("sections", p))
9918 result = PRAGMA_OMP_CLAUSE_SECTIONS;
9919 else if (!strcmp ("shared", p))
9920 result = PRAGMA_OMP_CLAUSE_SHARED;
9921 else if (!strcmp ("simdlen", p))
9922 result = PRAGMA_OMP_CLAUSE_SIMDLEN;
9923 else if (!strcmp ("self", p))
9924 result = PRAGMA_OMP_CLAUSE_SELF;
9925 break;
9926 case 't':
9927 if (!strcmp ("taskgroup", p))
9928 result = PRAGMA_OMP_CLAUSE_TASKGROUP;
9929 else if (!strcmp ("thread_limit", p))
9930 result = PRAGMA_OMP_CLAUSE_THREAD_LIMIT;
9931 else if (!strcmp ("to", p))
9932 result = PRAGMA_OMP_CLAUSE_TO;
9933 break;
9934 case 'u':
9935 if (!strcmp ("uniform", p))
9936 result = PRAGMA_OMP_CLAUSE_UNIFORM;
9937 else if (!strcmp ("untied", p))
9938 result = PRAGMA_OMP_CLAUSE_UNTIED;
9939 break;
9940 case 'v':
9941 if (!strcmp ("vector_length", p))
9942 result = PRAGMA_OMP_CLAUSE_VECTOR_LENGTH;
9943 else if (flag_cilkplus && !strcmp ("vectorlength", p))
9944 result = PRAGMA_CILK_CLAUSE_VECTORLENGTH;
9945 break;
9946 case 'w':
9947 if (!strcmp ("wait", p))
9948 result = PRAGMA_OMP_CLAUSE_WAIT;
9949 break;
9953 if (result != PRAGMA_OMP_CLAUSE_NONE)
9954 c_parser_consume_token (parser);
9956 return result;
9959 /* Validate that a clause of the given type does not already exist. */
9961 static void
9962 check_no_duplicate_clause (tree clauses, enum omp_clause_code code,
9963 const char *name)
9965 tree c;
9967 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
9968 if (OMP_CLAUSE_CODE (c) == code)
9970 location_t loc = OMP_CLAUSE_LOCATION (c);
9971 error_at (loc, "too many %qs clauses", name);
9972 break;
9976 /* OpenACC 2.0
9977 Parse wait clause or wait directive parameters. */
9979 static tree
9980 c_parser_oacc_wait_list (c_parser *parser, location_t clause_loc, tree list)
9982 vec<tree, va_gc> *args;
9983 tree t, args_tree;
9985 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
9986 return list;
9988 args = c_parser_expr_list (parser, false, true, NULL, NULL, NULL, NULL);
9990 if (args->length () == 0)
9992 c_parser_error (parser, "expected integer expression before ')'");
9993 release_tree_vector (args);
9994 return list;
9997 args_tree = build_tree_list_vec (args);
9999 for (t = args_tree; t; t = TREE_CHAIN (t))
10001 tree targ = TREE_VALUE (t);
10003 if (targ != error_mark_node)
10005 if (!INTEGRAL_TYPE_P (TREE_TYPE (targ)))
10007 c_parser_error (parser, "expression must be integral");
10008 targ = error_mark_node;
10010 else
10012 tree c = build_omp_clause (clause_loc, OMP_CLAUSE_WAIT);
10014 OMP_CLAUSE_DECL (c) = targ;
10015 OMP_CLAUSE_CHAIN (c) = list;
10016 list = c;
10021 release_tree_vector (args);
10022 c_parser_require (parser, CPP_CLOSE_PAREN, "expected %<)%>");
10023 return list;
10026 /* OpenACC 2.0, OpenMP 2.5:
10027 variable-list:
10028 identifier
10029 variable-list , identifier
10031 If KIND is nonzero, create the appropriate node and install the
10032 decl in OMP_CLAUSE_DECL and add the node to the head of the list.
10033 If KIND is nonzero, CLAUSE_LOC is the location of the clause.
10035 If KIND is zero, create a TREE_LIST with the decl in TREE_PURPOSE;
10036 return the list created. */
10038 static tree
10039 c_parser_omp_variable_list (c_parser *parser,
10040 location_t clause_loc,
10041 enum omp_clause_code kind, tree list)
10043 if (c_parser_next_token_is_not (parser, CPP_NAME)
10044 || c_parser_peek_token (parser)->id_kind != C_ID_ID)
10045 c_parser_error (parser, "expected identifier");
10047 while (c_parser_next_token_is (parser, CPP_NAME)
10048 && c_parser_peek_token (parser)->id_kind == C_ID_ID)
10050 tree t = lookup_name (c_parser_peek_token (parser)->value);
10052 if (t == NULL_TREE)
10054 undeclared_variable (c_parser_peek_token (parser)->location,
10055 c_parser_peek_token (parser)->value);
10056 t = error_mark_node;
10059 c_parser_consume_token (parser);
10061 if (t == error_mark_node)
10063 else if (kind != 0)
10065 switch (kind)
10067 case OMP_CLAUSE__CACHE_:
10068 if (c_parser_peek_token (parser)->type != CPP_OPEN_SQUARE)
10070 c_parser_error (parser, "expected %<[%>");
10071 t = error_mark_node;
10072 break;
10074 /* FALL THROUGH. */
10075 case OMP_CLAUSE_MAP:
10076 case OMP_CLAUSE_FROM:
10077 case OMP_CLAUSE_TO:
10078 case OMP_CLAUSE_DEPEND:
10079 while (c_parser_next_token_is (parser, CPP_OPEN_SQUARE))
10081 tree low_bound = NULL_TREE, length = NULL_TREE;
10083 c_parser_consume_token (parser);
10084 if (!c_parser_next_token_is (parser, CPP_COLON))
10086 low_bound = c_parser_expression (parser).value;
10087 mark_exp_read (low_bound);
10089 if (c_parser_next_token_is (parser, CPP_CLOSE_SQUARE))
10090 length = integer_one_node;
10091 else
10093 /* Look for `:'. */
10094 if (!c_parser_require (parser, CPP_COLON,
10095 "expected %<:%>"))
10097 t = error_mark_node;
10098 break;
10100 if (!c_parser_next_token_is (parser, CPP_CLOSE_SQUARE))
10102 length = c_parser_expression (parser).value;
10103 mark_exp_read (length);
10106 /* Look for the closing `]'. */
10107 if (!c_parser_require (parser, CPP_CLOSE_SQUARE,
10108 "expected %<]%>"))
10110 t = error_mark_node;
10111 break;
10114 if (kind == OMP_CLAUSE__CACHE_)
10116 if (TREE_CODE (low_bound) != INTEGER_CST
10117 && !TREE_READONLY (low_bound))
10119 error_at (clause_loc,
10120 "%qD is not a constant", low_bound);
10121 t = error_mark_node;
10124 if (TREE_CODE (length) != INTEGER_CST
10125 && !TREE_READONLY (length))
10127 error_at (clause_loc,
10128 "%qD is not a constant", length);
10129 t = error_mark_node;
10133 t = tree_cons (low_bound, length, t);
10135 break;
10136 default:
10137 break;
10140 if (t != error_mark_node)
10142 tree u = build_omp_clause (clause_loc, kind);
10143 OMP_CLAUSE_DECL (u) = t;
10144 OMP_CLAUSE_CHAIN (u) = list;
10145 list = u;
10148 else
10149 list = tree_cons (t, NULL_TREE, list);
10151 if (c_parser_next_token_is_not (parser, CPP_COMMA))
10152 break;
10154 c_parser_consume_token (parser);
10157 return list;
10160 /* Similarly, but expect leading and trailing parenthesis. This is a very
10161 common case for OpenACC and OpenMP clauses. */
10163 static tree
10164 c_parser_omp_var_list_parens (c_parser *parser, enum omp_clause_code kind,
10165 tree list)
10167 /* The clauses location. */
10168 location_t loc = c_parser_peek_token (parser)->location;
10170 if (c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
10172 list = c_parser_omp_variable_list (parser, loc, kind, list);
10173 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
10175 return list;
10178 /* OpenACC 2.0:
10179 copy ( variable-list )
10180 copyin ( variable-list )
10181 copyout ( variable-list )
10182 create ( variable-list )
10183 delete ( variable-list )
10184 present ( variable-list )
10185 present_or_copy ( variable-list )
10186 pcopy ( variable-list )
10187 present_or_copyin ( variable-list )
10188 pcopyin ( variable-list )
10189 present_or_copyout ( variable-list )
10190 pcopyout ( variable-list )
10191 present_or_create ( variable-list )
10192 pcreate ( variable-list ) */
10194 static tree
10195 c_parser_oacc_data_clause (c_parser *parser, pragma_omp_clause c_kind,
10196 tree list)
10198 enum omp_clause_map_kind kind;
10199 switch (c_kind)
10201 case PRAGMA_OMP_CLAUSE_COPY:
10202 kind = OMP_CLAUSE_MAP_FORCE_TOFROM;
10203 break;
10204 case PRAGMA_OMP_CLAUSE_COPYIN:
10205 kind = OMP_CLAUSE_MAP_FORCE_TO;
10206 break;
10207 case PRAGMA_OMP_CLAUSE_COPYOUT:
10208 kind = OMP_CLAUSE_MAP_FORCE_FROM;
10209 break;
10210 case PRAGMA_OMP_CLAUSE_CREATE:
10211 kind = OMP_CLAUSE_MAP_FORCE_ALLOC;
10212 break;
10213 case PRAGMA_OMP_CLAUSE_DELETE:
10214 kind = OMP_CLAUSE_MAP_FORCE_DEALLOC;
10215 break;
10216 case PRAGMA_OMP_CLAUSE_DEVICE:
10217 kind = OMP_CLAUSE_MAP_FORCE_TO;
10218 break;
10219 case PRAGMA_OMP_CLAUSE_HOST:
10220 case PRAGMA_OMP_CLAUSE_SELF:
10221 kind = OMP_CLAUSE_MAP_FORCE_FROM;
10222 break;
10223 case PRAGMA_OMP_CLAUSE_PRESENT:
10224 kind = OMP_CLAUSE_MAP_FORCE_PRESENT;
10225 break;
10226 case PRAGMA_OMP_CLAUSE_PRESENT_OR_COPY:
10227 kind = OMP_CLAUSE_MAP_TOFROM;
10228 break;
10229 case PRAGMA_OMP_CLAUSE_PRESENT_OR_COPYIN:
10230 kind = OMP_CLAUSE_MAP_TO;
10231 break;
10232 case PRAGMA_OMP_CLAUSE_PRESENT_OR_COPYOUT:
10233 kind = OMP_CLAUSE_MAP_FROM;
10234 break;
10235 case PRAGMA_OMP_CLAUSE_PRESENT_OR_CREATE:
10236 kind = OMP_CLAUSE_MAP_ALLOC;
10237 break;
10238 default:
10239 gcc_unreachable ();
10241 tree nl, c;
10242 nl = c_parser_omp_var_list_parens (parser, OMP_CLAUSE_MAP, list);
10244 for (c = nl; c != list; c = OMP_CLAUSE_CHAIN (c))
10245 OMP_CLAUSE_MAP_KIND (c) = kind;
10247 return nl;
10250 /* OpenACC 2.0:
10251 deviceptr ( variable-list ) */
10253 static tree
10254 c_parser_oacc_data_clause_deviceptr (c_parser *parser, tree list)
10256 location_t loc = c_parser_peek_token (parser)->location;
10257 tree vars, t;
10259 /* Can't use OMP_CLAUSE_MAP here (that is, can't use the generic
10260 c_parser_oacc_data_clause), as for PRAGMA_OMP_CLAUSE_DEVICEPTR,
10261 variable-list must only allow for pointer variables. */
10262 vars = c_parser_omp_var_list_parens (parser, OMP_CLAUSE_ERROR, NULL);
10263 for (t = vars; t && t; t = TREE_CHAIN (t))
10265 tree v = TREE_PURPOSE (t);
10267 /* FIXME diagnostics: Ideally we should keep individual
10268 locations for all the variables in the var list to make the
10269 following errors more precise. Perhaps
10270 c_parser_omp_var_list_parens() should construct a list of
10271 locations to go along with the var list. */
10273 if (TREE_CODE (v) != VAR_DECL)
10274 error_at (loc, "%qD is not a variable", v);
10275 else if (TREE_TYPE (v) == error_mark_node)
10277 else if (!POINTER_TYPE_P (TREE_TYPE (v)))
10278 error_at (loc, "%qD is not a pointer variable", v);
10280 tree u = build_omp_clause (loc, OMP_CLAUSE_MAP);
10281 OMP_CLAUSE_MAP_KIND (u) = OMP_CLAUSE_MAP_FORCE_DEVICEPTR;
10282 OMP_CLAUSE_DECL (u) = v;
10283 OMP_CLAUSE_CHAIN (u) = list;
10284 list = u;
10287 return list;
10290 /* OpenACC 2.0, OpenMP 3.0:
10291 collapse ( constant-expression ) */
10293 static tree
10294 c_parser_omp_clause_collapse (c_parser *parser, tree list)
10296 tree c, num = error_mark_node;
10297 HOST_WIDE_INT n;
10298 location_t loc;
10300 check_no_duplicate_clause (list, OMP_CLAUSE_COLLAPSE, "collapse");
10302 loc = c_parser_peek_token (parser)->location;
10303 if (c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
10305 num = c_parser_expr_no_commas (parser, NULL).value;
10306 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
10308 if (num == error_mark_node)
10309 return list;
10310 mark_exp_read (num);
10311 num = c_fully_fold (num, false, NULL);
10312 if (!INTEGRAL_TYPE_P (TREE_TYPE (num))
10313 || !tree_fits_shwi_p (num)
10314 || (n = tree_to_shwi (num)) <= 0
10315 || (int) n != n)
10317 error_at (loc,
10318 "collapse argument needs positive constant integer expression");
10319 return list;
10321 c = build_omp_clause (loc, OMP_CLAUSE_COLLAPSE);
10322 OMP_CLAUSE_COLLAPSE_EXPR (c) = num;
10323 OMP_CLAUSE_CHAIN (c) = list;
10324 return c;
10327 /* OpenMP 2.5:
10328 copyin ( variable-list ) */
10330 static tree
10331 c_parser_omp_clause_copyin (c_parser *parser, tree list)
10333 return c_parser_omp_var_list_parens (parser, OMP_CLAUSE_COPYIN, list);
10336 /* OpenMP 2.5:
10337 copyprivate ( variable-list ) */
10339 static tree
10340 c_parser_omp_clause_copyprivate (c_parser *parser, tree list)
10342 return c_parser_omp_var_list_parens (parser, OMP_CLAUSE_COPYPRIVATE, list);
10345 /* OpenMP 2.5:
10346 default ( shared | none ) */
10348 static tree
10349 c_parser_omp_clause_default (c_parser *parser, tree list)
10351 enum omp_clause_default_kind kind = OMP_CLAUSE_DEFAULT_UNSPECIFIED;
10352 location_t loc = c_parser_peek_token (parser)->location;
10353 tree c;
10355 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
10356 return list;
10357 if (c_parser_next_token_is (parser, CPP_NAME))
10359 const char *p = IDENTIFIER_POINTER (c_parser_peek_token (parser)->value);
10361 switch (p[0])
10363 case 'n':
10364 if (strcmp ("none", p) != 0)
10365 goto invalid_kind;
10366 kind = OMP_CLAUSE_DEFAULT_NONE;
10367 break;
10369 case 's':
10370 if (strcmp ("shared", p) != 0)
10371 goto invalid_kind;
10372 kind = OMP_CLAUSE_DEFAULT_SHARED;
10373 break;
10375 default:
10376 goto invalid_kind;
10379 c_parser_consume_token (parser);
10381 else
10383 invalid_kind:
10384 c_parser_error (parser, "expected %<none%> or %<shared%>");
10386 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
10388 if (kind == OMP_CLAUSE_DEFAULT_UNSPECIFIED)
10389 return list;
10391 check_no_duplicate_clause (list, OMP_CLAUSE_DEFAULT, "default");
10392 c = build_omp_clause (loc, OMP_CLAUSE_DEFAULT);
10393 OMP_CLAUSE_CHAIN (c) = list;
10394 OMP_CLAUSE_DEFAULT_KIND (c) = kind;
10396 return c;
10399 /* OpenMP 2.5:
10400 firstprivate ( variable-list ) */
10402 static tree
10403 c_parser_omp_clause_firstprivate (c_parser *parser, tree list)
10405 return c_parser_omp_var_list_parens (parser, OMP_CLAUSE_FIRSTPRIVATE, list);
10408 /* OpenMP 3.1:
10409 final ( expression ) */
10411 static tree
10412 c_parser_omp_clause_final (c_parser *parser, tree list)
10414 location_t loc = c_parser_peek_token (parser)->location;
10415 if (c_parser_next_token_is (parser, CPP_OPEN_PAREN))
10417 tree t = c_parser_paren_condition (parser);
10418 tree c;
10420 check_no_duplicate_clause (list, OMP_CLAUSE_FINAL, "final");
10422 c = build_omp_clause (loc, OMP_CLAUSE_FINAL);
10423 OMP_CLAUSE_FINAL_EXPR (c) = t;
10424 OMP_CLAUSE_CHAIN (c) = list;
10425 list = c;
10427 else
10428 c_parser_error (parser, "expected %<(%>");
10430 return list;
10433 /* OpenACC, OpenMP 2.5:
10434 if ( expression ) */
10436 static tree
10437 c_parser_omp_clause_if (c_parser *parser, tree list)
10439 location_t loc = c_parser_peek_token (parser)->location;
10440 if (c_parser_next_token_is (parser, CPP_OPEN_PAREN))
10442 tree t = c_parser_paren_condition (parser);
10443 tree c;
10445 check_no_duplicate_clause (list, OMP_CLAUSE_IF, "if");
10447 c = build_omp_clause (loc, OMP_CLAUSE_IF);
10448 OMP_CLAUSE_IF_EXPR (c) = t;
10449 OMP_CLAUSE_CHAIN (c) = list;
10450 list = c;
10452 else
10453 c_parser_error (parser, "expected %<(%>");
10455 return list;
10458 /* OpenMP 2.5:
10459 lastprivate ( variable-list ) */
10461 static tree
10462 c_parser_omp_clause_lastprivate (c_parser *parser, tree list)
10464 return c_parser_omp_var_list_parens (parser, OMP_CLAUSE_LASTPRIVATE, list);
10467 /* OpenMP 3.1:
10468 mergeable */
10470 static tree
10471 c_parser_omp_clause_mergeable (c_parser *parser ATTRIBUTE_UNUSED, tree list)
10473 tree c;
10475 /* FIXME: Should we allow duplicates? */
10476 check_no_duplicate_clause (list, OMP_CLAUSE_MERGEABLE, "mergeable");
10478 c = build_omp_clause (c_parser_peek_token (parser)->location,
10479 OMP_CLAUSE_MERGEABLE);
10480 OMP_CLAUSE_CHAIN (c) = list;
10482 return c;
10485 /* OpenMP 2.5:
10486 nowait */
10488 static tree
10489 c_parser_omp_clause_nowait (c_parser *parser ATTRIBUTE_UNUSED, tree list)
10491 tree c;
10492 location_t loc = c_parser_peek_token (parser)->location;
10494 check_no_duplicate_clause (list, OMP_CLAUSE_NOWAIT, "nowait");
10496 c = build_omp_clause (loc, OMP_CLAUSE_NOWAIT);
10497 OMP_CLAUSE_CHAIN (c) = list;
10498 return c;
10501 /* OpenACC:
10502 num_gangs ( expression ) */
10504 static tree
10505 c_parser_omp_clause_num_gangs (c_parser *parser, tree list)
10507 location_t num_gangs_loc = c_parser_peek_token (parser)->location;
10508 if (c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
10510 location_t expr_loc = c_parser_peek_token (parser)->location;
10511 tree c, t = c_parser_expression (parser).value;
10512 mark_exp_read (t);
10513 t = c_fully_fold (t, false, NULL);
10515 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
10517 if (!INTEGRAL_TYPE_P (TREE_TYPE (t)))
10519 c_parser_error (parser, "expected integer expression");
10520 return list;
10523 /* Attempt to statically determine when the number isn't positive. */
10524 c = fold_build2_loc (expr_loc, LE_EXPR, boolean_type_node, t,
10525 build_int_cst (TREE_TYPE (t), 0));
10526 if (CAN_HAVE_LOCATION_P (c))
10527 SET_EXPR_LOCATION (c, expr_loc);
10528 if (c == boolean_true_node)
10530 warning_at (expr_loc, 0,
10531 "%<num_gangs%> value must be positive");
10532 t = integer_one_node;
10535 check_no_duplicate_clause (list, OMP_CLAUSE_NUM_GANGS, "num_gangs");
10537 c = build_omp_clause (num_gangs_loc, OMP_CLAUSE_NUM_GANGS);
10538 OMP_CLAUSE_NUM_GANGS_EXPR (c) = t;
10539 OMP_CLAUSE_CHAIN (c) = list;
10540 list = c;
10543 return list;
10546 /* OpenMP 2.5:
10547 num_threads ( expression ) */
10549 static tree
10550 c_parser_omp_clause_num_threads (c_parser *parser, tree list)
10552 location_t num_threads_loc = c_parser_peek_token (parser)->location;
10553 if (c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
10555 location_t expr_loc = c_parser_peek_token (parser)->location;
10556 tree c, t = c_parser_expression (parser).value;
10557 mark_exp_read (t);
10558 t = c_fully_fold (t, false, NULL);
10560 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
10562 if (!INTEGRAL_TYPE_P (TREE_TYPE (t)))
10564 c_parser_error (parser, "expected integer expression");
10565 return list;
10568 /* Attempt to statically determine when the number isn't positive. */
10569 c = fold_build2_loc (expr_loc, LE_EXPR, boolean_type_node, t,
10570 build_int_cst (TREE_TYPE (t), 0));
10571 if (CAN_HAVE_LOCATION_P (c))
10572 SET_EXPR_LOCATION (c, expr_loc);
10573 if (c == boolean_true_node)
10575 warning_at (expr_loc, 0,
10576 "%<num_threads%> value must be positive");
10577 t = integer_one_node;
10580 check_no_duplicate_clause (list, OMP_CLAUSE_NUM_THREADS, "num_threads");
10582 c = build_omp_clause (num_threads_loc, OMP_CLAUSE_NUM_THREADS);
10583 OMP_CLAUSE_NUM_THREADS_EXPR (c) = t;
10584 OMP_CLAUSE_CHAIN (c) = list;
10585 list = c;
10588 return list;
10591 /* OpenACC:
10592 num_workers ( expression ) */
10594 static tree
10595 c_parser_omp_clause_num_workers (c_parser *parser, tree list)
10597 location_t num_workers_loc = c_parser_peek_token (parser)->location;
10598 if (c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
10600 location_t expr_loc = c_parser_peek_token (parser)->location;
10601 tree c, t = c_parser_expression (parser).value;
10602 mark_exp_read (t);
10603 t = c_fully_fold (t, false, NULL);
10605 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
10607 if (!INTEGRAL_TYPE_P (TREE_TYPE (t)))
10609 c_parser_error (parser, "expected integer expression");
10610 return list;
10613 /* Attempt to statically determine when the number isn't positive. */
10614 c = fold_build2_loc (expr_loc, LE_EXPR, boolean_type_node, t,
10615 build_int_cst (TREE_TYPE (t), 0));
10616 if (CAN_HAVE_LOCATION_P (c))
10617 SET_EXPR_LOCATION (c, expr_loc);
10618 if (c == boolean_true_node)
10620 warning_at (expr_loc, 0,
10621 "%<num_workers%> value must be positive");
10622 t = integer_one_node;
10625 check_no_duplicate_clause (list, OMP_CLAUSE_NUM_WORKERS, "num_workers");
10627 c = build_omp_clause (num_workers_loc, OMP_CLAUSE_NUM_WORKERS);
10628 OMP_CLAUSE_NUM_WORKERS_EXPR (c) = t;
10629 OMP_CLAUSE_CHAIN (c) = list;
10630 list = c;
10633 return list;
10636 /* OpenACC:
10637 async [( int-expr )] */
10639 static tree
10640 c_parser_oacc_clause_async (c_parser *parser, tree list)
10642 tree c, t;
10643 location_t loc = c_parser_peek_token (parser)->location;
10645 /* TODO XXX: FIX -1 (acc_async_noval). */
10646 t = build_int_cst (integer_type_node, -1);
10648 if (c_parser_peek_token (parser)->type == CPP_OPEN_PAREN)
10650 c_parser_consume_token (parser);
10652 t = c_parser_expression (parser).value;
10653 if (!INTEGRAL_TYPE_P (TREE_TYPE (t)))
10654 c_parser_error (parser, "expected integer expression");
10655 else if (t == error_mark_node
10656 || !c_parser_require (parser, CPP_CLOSE_PAREN, "expected %<)%>"))
10657 return list;
10659 else
10661 t = c_fully_fold (t, false, NULL);
10664 check_no_duplicate_clause (list, OMP_CLAUSE_ASYNC, "async");
10666 c = build_omp_clause (loc, OMP_CLAUSE_ASYNC);
10667 OMP_CLAUSE_ASYNC_EXPR (c) = t;
10668 OMP_CLAUSE_CHAIN (c) = list;
10669 list = c;
10671 return list;
10674 /* OpenACC:
10675 wait ( int-expr-list ) */
10677 static tree
10678 c_parser_oacc_clause_wait (c_parser *parser, tree list)
10680 location_t clause_loc = c_parser_peek_token (parser)->location;
10682 if (c_parser_peek_token (parser)->type == CPP_OPEN_PAREN)
10683 list = c_parser_oacc_wait_list (parser, clause_loc, list);
10685 return list;
10688 /* OpenMP 2.5:
10689 ordered */
10691 static tree
10692 c_parser_omp_clause_ordered (c_parser *parser, tree list)
10694 tree c;
10696 check_no_duplicate_clause (list, OMP_CLAUSE_ORDERED, "ordered");
10698 c = build_omp_clause (c_parser_peek_token (parser)->location,
10699 OMP_CLAUSE_ORDERED);
10700 OMP_CLAUSE_CHAIN (c) = list;
10702 return c;
10705 /* OpenMP 2.5:
10706 private ( variable-list ) */
10708 static tree
10709 c_parser_omp_clause_private (c_parser *parser, tree list)
10711 return c_parser_omp_var_list_parens (parser, OMP_CLAUSE_PRIVATE, list);
10714 /* OpenMP 2.5:
10715 reduction ( reduction-operator : variable-list )
10717 reduction-operator:
10718 One of: + * - & ^ | && ||
10720 OpenMP 3.1:
10722 reduction-operator:
10723 One of: + * - & ^ | && || max min
10725 OpenMP 4.0:
10727 reduction-operator:
10728 One of: + * - & ^ | && ||
10729 identifier */
10731 static tree
10732 c_parser_omp_clause_reduction (c_parser *parser, tree list)
10734 location_t clause_loc = c_parser_peek_token (parser)->location;
10735 if (c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
10737 enum tree_code code = ERROR_MARK;
10738 tree reduc_id = NULL_TREE;
10740 switch (c_parser_peek_token (parser)->type)
10742 case CPP_PLUS:
10743 code = PLUS_EXPR;
10744 break;
10745 case CPP_MULT:
10746 code = MULT_EXPR;
10747 break;
10748 case CPP_MINUS:
10749 code = MINUS_EXPR;
10750 break;
10751 case CPP_AND:
10752 code = BIT_AND_EXPR;
10753 break;
10754 case CPP_XOR:
10755 code = BIT_XOR_EXPR;
10756 break;
10757 case CPP_OR:
10758 code = BIT_IOR_EXPR;
10759 break;
10760 case CPP_AND_AND:
10761 code = TRUTH_ANDIF_EXPR;
10762 break;
10763 case CPP_OR_OR:
10764 code = TRUTH_ORIF_EXPR;
10765 break;
10766 case CPP_NAME:
10768 const char *p
10769 = IDENTIFIER_POINTER (c_parser_peek_token (parser)->value);
10770 if (strcmp (p, "min") == 0)
10772 code = MIN_EXPR;
10773 break;
10775 if (strcmp (p, "max") == 0)
10777 code = MAX_EXPR;
10778 break;
10780 reduc_id = c_parser_peek_token (parser)->value;
10781 break;
10783 default:
10784 c_parser_error (parser,
10785 "expected %<+%>, %<*%>, %<-%>, %<&%>, "
10786 "%<^%>, %<|%>, %<&&%>, %<||%>, %<min%> or %<max%>");
10787 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, 0);
10788 return list;
10790 c_parser_consume_token (parser);
10791 reduc_id = c_omp_reduction_id (code, reduc_id);
10792 if (c_parser_require (parser, CPP_COLON, "expected %<:%>"))
10794 tree nl, c;
10796 nl = c_parser_omp_variable_list (parser, clause_loc,
10797 OMP_CLAUSE_REDUCTION, list);
10798 for (c = nl; c != list; c = OMP_CLAUSE_CHAIN (c))
10800 tree type = TREE_TYPE (OMP_CLAUSE_DECL (c));
10801 OMP_CLAUSE_REDUCTION_CODE (c) = code;
10802 if (code == ERROR_MARK
10803 || !(INTEGRAL_TYPE_P (type)
10804 || TREE_CODE (type) == REAL_TYPE
10805 || TREE_CODE (type) == COMPLEX_TYPE))
10806 OMP_CLAUSE_REDUCTION_PLACEHOLDER (c)
10807 = c_omp_reduction_lookup (reduc_id,
10808 TYPE_MAIN_VARIANT (type));
10811 list = nl;
10813 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
10815 return list;
10818 /* OpenMP 2.5:
10819 schedule ( schedule-kind )
10820 schedule ( schedule-kind , expression )
10822 schedule-kind:
10823 static | dynamic | guided | runtime | auto
10826 static tree
10827 c_parser_omp_clause_schedule (c_parser *parser, tree list)
10829 tree c, t;
10830 location_t loc = c_parser_peek_token (parser)->location;
10832 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
10833 return list;
10835 c = build_omp_clause (loc, OMP_CLAUSE_SCHEDULE);
10837 if (c_parser_next_token_is (parser, CPP_NAME))
10839 tree kind = c_parser_peek_token (parser)->value;
10840 const char *p = IDENTIFIER_POINTER (kind);
10842 switch (p[0])
10844 case 'd':
10845 if (strcmp ("dynamic", p) != 0)
10846 goto invalid_kind;
10847 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_DYNAMIC;
10848 break;
10850 case 'g':
10851 if (strcmp ("guided", p) != 0)
10852 goto invalid_kind;
10853 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_GUIDED;
10854 break;
10856 case 'r':
10857 if (strcmp ("runtime", p) != 0)
10858 goto invalid_kind;
10859 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_RUNTIME;
10860 break;
10862 default:
10863 goto invalid_kind;
10866 else if (c_parser_next_token_is_keyword (parser, RID_STATIC))
10867 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_STATIC;
10868 else if (c_parser_next_token_is_keyword (parser, RID_AUTO))
10869 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_AUTO;
10870 else
10871 goto invalid_kind;
10873 c_parser_consume_token (parser);
10874 if (c_parser_next_token_is (parser, CPP_COMMA))
10876 location_t here;
10877 c_parser_consume_token (parser);
10879 here = c_parser_peek_token (parser)->location;
10880 t = c_parser_expr_no_commas (parser, NULL).value;
10881 mark_exp_read (t);
10882 t = c_fully_fold (t, false, NULL);
10884 if (OMP_CLAUSE_SCHEDULE_KIND (c) == OMP_CLAUSE_SCHEDULE_RUNTIME)
10885 error_at (here, "schedule %<runtime%> does not take "
10886 "a %<chunk_size%> parameter");
10887 else if (OMP_CLAUSE_SCHEDULE_KIND (c) == OMP_CLAUSE_SCHEDULE_AUTO)
10888 error_at (here,
10889 "schedule %<auto%> does not take "
10890 "a %<chunk_size%> parameter");
10891 else if (TREE_CODE (TREE_TYPE (t)) == INTEGER_TYPE)
10892 OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c) = t;
10893 else
10894 c_parser_error (parser, "expected integer expression");
10896 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
10898 else
10899 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
10900 "expected %<,%> or %<)%>");
10902 check_no_duplicate_clause (list, OMP_CLAUSE_SCHEDULE, "schedule");
10903 OMP_CLAUSE_CHAIN (c) = list;
10904 return c;
10906 invalid_kind:
10907 c_parser_error (parser, "invalid schedule kind");
10908 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, 0);
10909 return list;
10912 /* OpenMP 2.5:
10913 shared ( variable-list ) */
10915 static tree
10916 c_parser_omp_clause_shared (c_parser *parser, tree list)
10918 return c_parser_omp_var_list_parens (parser, OMP_CLAUSE_SHARED, list);
10921 /* OpenMP 3.0:
10922 untied */
10924 static tree
10925 c_parser_omp_clause_untied (c_parser *parser ATTRIBUTE_UNUSED, tree list)
10927 tree c;
10929 /* FIXME: Should we allow duplicates? */
10930 check_no_duplicate_clause (list, OMP_CLAUSE_UNTIED, "untied");
10932 c = build_omp_clause (c_parser_peek_token (parser)->location,
10933 OMP_CLAUSE_UNTIED);
10934 OMP_CLAUSE_CHAIN (c) = list;
10936 return c;
10939 /* OpenACC:
10940 vector_length ( expression ) */
10942 static tree
10943 c_parser_omp_clause_vector_length (c_parser *parser, tree list)
10945 location_t vector_length_loc = c_parser_peek_token (parser)->location;
10946 if (c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
10948 location_t expr_loc = c_parser_peek_token (parser)->location;
10949 tree c, t = c_parser_expression (parser).value;
10950 mark_exp_read (t);
10951 t = c_fully_fold (t, false, NULL);
10953 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
10955 if (!INTEGRAL_TYPE_P (TREE_TYPE (t)))
10957 c_parser_error (parser, "expected integer expression");
10958 return list;
10961 /* Attempt to statically determine when the number isn't positive. */
10962 c = fold_build2_loc (expr_loc, LE_EXPR, boolean_type_node, t,
10963 build_int_cst (TREE_TYPE (t), 0));
10964 if (CAN_HAVE_LOCATION_P (c))
10965 SET_EXPR_LOCATION (c, expr_loc);
10966 if (c == boolean_true_node)
10968 warning_at (expr_loc, 0,
10969 "%<vector_length%> value must be positive");
10970 t = integer_one_node;
10973 check_no_duplicate_clause (list, OMP_CLAUSE_VECTOR_LENGTH, "vector_length");
10975 c = build_omp_clause (vector_length_loc, OMP_CLAUSE_VECTOR_LENGTH);
10976 OMP_CLAUSE_VECTOR_LENGTH_EXPR (c) = t;
10977 OMP_CLAUSE_CHAIN (c) = list;
10978 list = c;
10981 return list;
10984 /* OpenMP 4.0:
10985 inbranch
10986 notinbranch */
10988 static tree
10989 c_parser_omp_clause_branch (c_parser *parser ATTRIBUTE_UNUSED,
10990 enum omp_clause_code code, tree list)
10992 check_no_duplicate_clause (list, code, omp_clause_code_name[code]);
10994 tree c = build_omp_clause (c_parser_peek_token (parser)->location, code);
10995 OMP_CLAUSE_CHAIN (c) = list;
10997 return c;
11000 /* OpenMP 4.0:
11001 parallel
11003 sections
11004 taskgroup */
11006 static tree
11007 c_parser_omp_clause_cancelkind (c_parser *parser ATTRIBUTE_UNUSED,
11008 enum omp_clause_code code, tree list)
11010 tree c = build_omp_clause (c_parser_peek_token (parser)->location, code);
11011 OMP_CLAUSE_CHAIN (c) = list;
11013 return c;
11016 /* OpenMP 4.0:
11017 num_teams ( expression ) */
11019 static tree
11020 c_parser_omp_clause_num_teams (c_parser *parser, tree list)
11022 location_t num_teams_loc = c_parser_peek_token (parser)->location;
11023 if (c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
11025 location_t expr_loc = c_parser_peek_token (parser)->location;
11026 tree c, t = c_parser_expression (parser).value;
11027 mark_exp_read (t);
11028 t = c_fully_fold (t, false, NULL);
11030 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
11032 if (!INTEGRAL_TYPE_P (TREE_TYPE (t)))
11034 c_parser_error (parser, "expected integer expression");
11035 return list;
11038 /* Attempt to statically determine when the number isn't positive. */
11039 c = fold_build2_loc (expr_loc, LE_EXPR, boolean_type_node, t,
11040 build_int_cst (TREE_TYPE (t), 0));
11041 if (CAN_HAVE_LOCATION_P (c))
11042 SET_EXPR_LOCATION (c, expr_loc);
11043 if (c == boolean_true_node)
11045 warning_at (expr_loc, 0, "%<num_teams%> value must be positive");
11046 t = integer_one_node;
11049 check_no_duplicate_clause (list, OMP_CLAUSE_NUM_TEAMS, "num_teams");
11051 c = build_omp_clause (num_teams_loc, OMP_CLAUSE_NUM_TEAMS);
11052 OMP_CLAUSE_NUM_TEAMS_EXPR (c) = t;
11053 OMP_CLAUSE_CHAIN (c) = list;
11054 list = c;
11057 return list;
11060 /* OpenMP 4.0:
11061 thread_limit ( expression ) */
11063 static tree
11064 c_parser_omp_clause_thread_limit (c_parser *parser, tree list)
11066 location_t num_thread_limit_loc = c_parser_peek_token (parser)->location;
11067 if (c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
11069 location_t expr_loc = c_parser_peek_token (parser)->location;
11070 tree c, t = c_parser_expression (parser).value;
11071 mark_exp_read (t);
11072 t = c_fully_fold (t, false, NULL);
11074 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
11076 if (!INTEGRAL_TYPE_P (TREE_TYPE (t)))
11078 c_parser_error (parser, "expected integer expression");
11079 return list;
11082 /* Attempt to statically determine when the number isn't positive. */
11083 c = fold_build2_loc (expr_loc, LE_EXPR, boolean_type_node, t,
11084 build_int_cst (TREE_TYPE (t), 0));
11085 if (CAN_HAVE_LOCATION_P (c))
11086 SET_EXPR_LOCATION (c, expr_loc);
11087 if (c == boolean_true_node)
11089 warning_at (expr_loc, 0, "%<thread_limit%> value must be positive");
11090 t = integer_one_node;
11093 check_no_duplicate_clause (list, OMP_CLAUSE_THREAD_LIMIT,
11094 "thread_limit");
11096 c = build_omp_clause (num_thread_limit_loc, OMP_CLAUSE_THREAD_LIMIT);
11097 OMP_CLAUSE_THREAD_LIMIT_EXPR (c) = t;
11098 OMP_CLAUSE_CHAIN (c) = list;
11099 list = c;
11102 return list;
11105 /* OpenMP 4.0:
11106 aligned ( variable-list )
11107 aligned ( variable-list : constant-expression ) */
11109 static tree
11110 c_parser_omp_clause_aligned (c_parser *parser, tree list)
11112 location_t clause_loc = c_parser_peek_token (parser)->location;
11113 tree nl, c;
11115 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
11116 return list;
11118 nl = c_parser_omp_variable_list (parser, clause_loc,
11119 OMP_CLAUSE_ALIGNED, list);
11121 if (c_parser_next_token_is (parser, CPP_COLON))
11123 c_parser_consume_token (parser);
11124 tree alignment = c_parser_expr_no_commas (parser, NULL).value;
11125 mark_exp_read (alignment);
11126 alignment = c_fully_fold (alignment, false, NULL);
11127 if (!INTEGRAL_TYPE_P (TREE_TYPE (alignment))
11128 && TREE_CODE (alignment) != INTEGER_CST
11129 && tree_int_cst_sgn (alignment) != 1)
11131 error_at (clause_loc, "%<aligned%> clause alignment expression must "
11132 "be positive constant integer expression");
11133 alignment = NULL_TREE;
11136 for (c = nl; c != list; c = OMP_CLAUSE_CHAIN (c))
11137 OMP_CLAUSE_ALIGNED_ALIGNMENT (c) = alignment;
11140 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
11141 return nl;
11144 /* OpenMP 4.0:
11145 linear ( variable-list )
11146 linear ( variable-list : expression ) */
11148 static tree
11149 c_parser_omp_clause_linear (c_parser *parser, tree list, bool is_cilk_simd_fn)
11151 location_t clause_loc = c_parser_peek_token (parser)->location;
11152 tree nl, c, step;
11154 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
11155 return list;
11157 nl = c_parser_omp_variable_list (parser, clause_loc,
11158 OMP_CLAUSE_LINEAR, list);
11160 if (c_parser_next_token_is (parser, CPP_COLON))
11162 c_parser_consume_token (parser);
11163 step = c_parser_expression (parser).value;
11164 mark_exp_read (step);
11165 step = c_fully_fold (step, false, NULL);
11166 if (is_cilk_simd_fn && TREE_CODE (step) == PARM_DECL)
11168 sorry ("using parameters for %<linear%> step is not supported yet");
11169 step = integer_one_node;
11171 if (!INTEGRAL_TYPE_P (TREE_TYPE (step)))
11173 error_at (clause_loc, "%<linear%> clause step expression must "
11174 "be integral");
11175 step = integer_one_node;
11179 else
11180 step = integer_one_node;
11182 for (c = nl; c != list; c = OMP_CLAUSE_CHAIN (c))
11184 OMP_CLAUSE_LINEAR_STEP (c) = step;
11187 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
11188 return nl;
11191 /* OpenMP 4.0:
11192 safelen ( constant-expression ) */
11194 static tree
11195 c_parser_omp_clause_safelen (c_parser *parser, tree list)
11197 location_t clause_loc = c_parser_peek_token (parser)->location;
11198 tree c, t;
11200 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
11201 return list;
11203 t = c_parser_expr_no_commas (parser, NULL).value;
11204 mark_exp_read (t);
11205 t = c_fully_fold (t, false, NULL);
11206 if (!INTEGRAL_TYPE_P (TREE_TYPE (t))
11207 && TREE_CODE (t) != INTEGER_CST
11208 && tree_int_cst_sgn (t) != 1)
11210 error_at (clause_loc, "%<safelen%> clause expression must "
11211 "be positive constant integer expression");
11212 t = NULL_TREE;
11215 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
11216 if (t == NULL_TREE || t == error_mark_node)
11217 return list;
11219 check_no_duplicate_clause (list, OMP_CLAUSE_SAFELEN, "safelen");
11221 c = build_omp_clause (clause_loc, OMP_CLAUSE_SAFELEN);
11222 OMP_CLAUSE_SAFELEN_EXPR (c) = t;
11223 OMP_CLAUSE_CHAIN (c) = list;
11224 return c;
11227 /* OpenMP 4.0:
11228 simdlen ( constant-expression ) */
11230 static tree
11231 c_parser_omp_clause_simdlen (c_parser *parser, tree list)
11233 location_t clause_loc = c_parser_peek_token (parser)->location;
11234 tree c, t;
11236 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
11237 return list;
11239 t = c_parser_expr_no_commas (parser, NULL).value;
11240 mark_exp_read (t);
11241 t = c_fully_fold (t, false, NULL);
11242 if (!INTEGRAL_TYPE_P (TREE_TYPE (t))
11243 && TREE_CODE (t) != INTEGER_CST
11244 && tree_int_cst_sgn (t) != 1)
11246 error_at (clause_loc, "%<simdlen%> clause expression must "
11247 "be positive constant integer expression");
11248 t = NULL_TREE;
11251 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
11252 if (t == NULL_TREE || t == error_mark_node)
11253 return list;
11255 check_no_duplicate_clause (list, OMP_CLAUSE_SIMDLEN, "simdlen");
11257 c = build_omp_clause (clause_loc, OMP_CLAUSE_SIMDLEN);
11258 OMP_CLAUSE_SIMDLEN_EXPR (c) = t;
11259 OMP_CLAUSE_CHAIN (c) = list;
11260 return c;
11263 /* OpenMP 4.0:
11264 depend ( depend-kind: variable-list )
11266 depend-kind:
11267 in | out | inout */
11269 static tree
11270 c_parser_omp_clause_depend (c_parser *parser, tree list)
11272 location_t clause_loc = c_parser_peek_token (parser)->location;
11273 enum omp_clause_depend_kind kind = OMP_CLAUSE_DEPEND_INOUT;
11274 tree nl, c;
11276 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
11277 return list;
11279 if (c_parser_next_token_is (parser, CPP_NAME))
11281 const char *p = IDENTIFIER_POINTER (c_parser_peek_token (parser)->value);
11282 if (strcmp ("in", p) == 0)
11283 kind = OMP_CLAUSE_DEPEND_IN;
11284 else if (strcmp ("inout", p) == 0)
11285 kind = OMP_CLAUSE_DEPEND_INOUT;
11286 else if (strcmp ("out", p) == 0)
11287 kind = OMP_CLAUSE_DEPEND_OUT;
11288 else
11289 goto invalid_kind;
11291 else
11292 goto invalid_kind;
11294 c_parser_consume_token (parser);
11295 if (!c_parser_require (parser, CPP_COLON, "expected %<:%>"))
11296 goto resync_fail;
11298 nl = c_parser_omp_variable_list (parser, clause_loc,
11299 OMP_CLAUSE_DEPEND, list);
11301 for (c = nl; c != list; c = OMP_CLAUSE_CHAIN (c))
11302 OMP_CLAUSE_DEPEND_KIND (c) = kind;
11304 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
11305 return nl;
11307 invalid_kind:
11308 c_parser_error (parser, "invalid depend kind");
11309 resync_fail:
11310 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
11311 return list;
11314 /* OpenMP 4.0:
11315 map ( map-kind: variable-list )
11316 map ( variable-list )
11318 map-kind:
11319 alloc | to | from | tofrom */
11321 static tree
11322 c_parser_omp_clause_map (c_parser *parser, tree list)
11324 location_t clause_loc = c_parser_peek_token (parser)->location;
11325 enum omp_clause_map_kind kind = OMP_CLAUSE_MAP_TOFROM;
11326 tree nl, c;
11328 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
11329 return list;
11331 if (c_parser_next_token_is (parser, CPP_NAME)
11332 && c_parser_peek_2nd_token (parser)->type == CPP_COLON)
11334 const char *p = IDENTIFIER_POINTER (c_parser_peek_token (parser)->value);
11335 if (strcmp ("alloc", p) == 0)
11336 kind = OMP_CLAUSE_MAP_ALLOC;
11337 else if (strcmp ("to", p) == 0)
11338 kind = OMP_CLAUSE_MAP_TO;
11339 else if (strcmp ("from", p) == 0)
11340 kind = OMP_CLAUSE_MAP_FROM;
11341 else if (strcmp ("tofrom", p) == 0)
11342 kind = OMP_CLAUSE_MAP_TOFROM;
11343 else
11345 c_parser_error (parser, "invalid map kind");
11346 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
11347 "expected %<)%>");
11348 return list;
11350 c_parser_consume_token (parser);
11351 c_parser_consume_token (parser);
11354 nl = c_parser_omp_variable_list (parser, clause_loc, OMP_CLAUSE_MAP, list);
11356 for (c = nl; c != list; c = OMP_CLAUSE_CHAIN (c))
11357 OMP_CLAUSE_MAP_KIND (c) = kind;
11359 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
11360 return nl;
11363 /* OpenMP 4.0:
11364 device ( expression ) */
11366 static tree
11367 c_parser_omp_clause_device (c_parser *parser, tree list)
11369 location_t clause_loc = c_parser_peek_token (parser)->location;
11370 if (c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
11372 tree c, t = c_parser_expr_no_commas (parser, NULL).value;
11373 mark_exp_read (t);
11374 t = c_fully_fold (t, false, NULL);
11376 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
11378 if (!INTEGRAL_TYPE_P (TREE_TYPE (t)))
11380 c_parser_error (parser, "expected integer expression");
11381 return list;
11384 check_no_duplicate_clause (list, OMP_CLAUSE_DEVICE, "device");
11386 c = build_omp_clause (clause_loc, OMP_CLAUSE_DEVICE);
11387 OMP_CLAUSE_DEVICE_ID (c) = t;
11388 OMP_CLAUSE_CHAIN (c) = list;
11389 list = c;
11392 return list;
11395 /* OpenMP 4.0:
11396 dist_schedule ( static )
11397 dist_schedule ( static , expression ) */
11399 static tree
11400 c_parser_omp_clause_dist_schedule (c_parser *parser, tree list)
11402 tree c, t = NULL_TREE;
11403 location_t loc = c_parser_peek_token (parser)->location;
11405 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
11406 return list;
11408 if (!c_parser_next_token_is_keyword (parser, RID_STATIC))
11410 c_parser_error (parser, "invalid dist_schedule kind");
11411 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
11412 "expected %<)%>");
11413 return list;
11416 c_parser_consume_token (parser);
11417 if (c_parser_next_token_is (parser, CPP_COMMA))
11419 c_parser_consume_token (parser);
11421 t = c_parser_expr_no_commas (parser, NULL).value;
11422 mark_exp_read (t);
11423 t = c_fully_fold (t, false, NULL);
11424 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
11426 else
11427 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
11428 "expected %<,%> or %<)%>");
11430 check_no_duplicate_clause (list, OMP_CLAUSE_SCHEDULE, "schedule");
11431 if (t == error_mark_node)
11432 return list;
11434 c = build_omp_clause (loc, OMP_CLAUSE_DIST_SCHEDULE);
11435 OMP_CLAUSE_DIST_SCHEDULE_CHUNK_EXPR (c) = t;
11436 OMP_CLAUSE_CHAIN (c) = list;
11437 return c;
11440 /* OpenMP 4.0:
11441 proc_bind ( proc-bind-kind )
11443 proc-bind-kind:
11444 master | close | spread */
11446 static tree
11447 c_parser_omp_clause_proc_bind (c_parser *parser, tree list)
11449 location_t clause_loc = c_parser_peek_token (parser)->location;
11450 enum omp_clause_proc_bind_kind kind;
11451 tree c;
11453 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
11454 return list;
11456 if (c_parser_next_token_is (parser, CPP_NAME))
11458 const char *p = IDENTIFIER_POINTER (c_parser_peek_token (parser)->value);
11459 if (strcmp ("master", p) == 0)
11460 kind = OMP_CLAUSE_PROC_BIND_MASTER;
11461 else if (strcmp ("close", p) == 0)
11462 kind = OMP_CLAUSE_PROC_BIND_CLOSE;
11463 else if (strcmp ("spread", p) == 0)
11464 kind = OMP_CLAUSE_PROC_BIND_SPREAD;
11465 else
11466 goto invalid_kind;
11468 else
11469 goto invalid_kind;
11471 c_parser_consume_token (parser);
11472 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
11473 c = build_omp_clause (clause_loc, OMP_CLAUSE_PROC_BIND);
11474 OMP_CLAUSE_PROC_BIND_KIND (c) = kind;
11475 OMP_CLAUSE_CHAIN (c) = list;
11476 return c;
11478 invalid_kind:
11479 c_parser_error (parser, "invalid proc_bind kind");
11480 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
11481 return list;
11484 /* OpenMP 4.0:
11485 to ( variable-list ) */
11487 static tree
11488 c_parser_omp_clause_to (c_parser *parser, tree list)
11490 return c_parser_omp_var_list_parens (parser, OMP_CLAUSE_TO, list);
11493 /* OpenMP 4.0:
11494 from ( variable-list ) */
11496 static tree
11497 c_parser_omp_clause_from (c_parser *parser, tree list)
11499 return c_parser_omp_var_list_parens (parser, OMP_CLAUSE_FROM, list);
11502 /* OpenMP 4.0:
11503 uniform ( variable-list ) */
11505 static tree
11506 c_parser_omp_clause_uniform (c_parser *parser, tree list)
11508 /* The clauses location. */
11509 location_t loc = c_parser_peek_token (parser)->location;
11511 if (c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
11513 list = c_parser_omp_variable_list (parser, loc, OMP_CLAUSE_UNIFORM,
11514 list);
11515 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
11517 return list;
11520 /* Parse all OpenACC clauses. The set clauses allowed by the directive
11521 is a bitmask in MASK. Return the list of clauses found. */
11523 static tree
11524 c_parser_oacc_all_clauses (c_parser *parser, omp_clause_mask mask,
11525 const char *where, bool finish_p = true)
11527 tree clauses = NULL;
11528 bool first = true;
11530 while (c_parser_next_token_is_not (parser, CPP_PRAGMA_EOL))
11532 location_t here;
11533 pragma_omp_clause c_kind;
11534 const char *c_name;
11535 tree prev = clauses;
11537 if (!first && c_parser_next_token_is (parser, CPP_COMMA))
11538 c_parser_consume_token (parser);
11540 here = c_parser_peek_token (parser)->location;
11541 c_kind = c_parser_omp_clause_name (parser);
11543 switch (c_kind)
11545 case PRAGMA_OMP_CLAUSE_ASYNC:
11546 clauses = c_parser_oacc_clause_async (parser, clauses);
11547 c_name = "async";
11548 break;
11549 case PRAGMA_OMP_CLAUSE_COLLAPSE:
11550 clauses = c_parser_omp_clause_collapse (parser, clauses);
11551 c_name = "collapse";
11552 break;
11553 case PRAGMA_OMP_CLAUSE_COPY:
11554 clauses = c_parser_oacc_data_clause (parser, c_kind, clauses);
11555 c_name = "copy";
11556 break;
11557 case PRAGMA_OMP_CLAUSE_COPYIN:
11558 clauses = c_parser_oacc_data_clause (parser, c_kind, clauses);
11559 c_name = "copyin";
11560 break;
11561 case PRAGMA_OMP_CLAUSE_COPYOUT:
11562 clauses = c_parser_oacc_data_clause (parser, c_kind, clauses);
11563 c_name = "copyout";
11564 break;
11565 case PRAGMA_OMP_CLAUSE_CREATE:
11566 clauses = c_parser_oacc_data_clause (parser, c_kind, clauses);
11567 c_name = "create";
11568 break;
11569 case PRAGMA_OMP_CLAUSE_DELETE:
11570 clauses = c_parser_oacc_data_clause (parser, c_kind, clauses);
11571 c_name = "delete";
11572 break;
11573 case PRAGMA_OMP_CLAUSE_DEVICE:
11574 clauses = c_parser_oacc_data_clause (parser, c_kind, clauses);
11575 c_name = "device";
11576 break;
11577 case PRAGMA_OMP_CLAUSE_DEVICEPTR:
11578 clauses = c_parser_oacc_data_clause_deviceptr (parser, clauses);
11579 c_name = "deviceptr";
11580 break;
11581 case PRAGMA_OMP_CLAUSE_HOST:
11582 clauses = c_parser_oacc_data_clause (parser, c_kind, clauses);
11583 c_name = "host";
11584 break;
11585 case PRAGMA_OMP_CLAUSE_IF:
11586 clauses = c_parser_omp_clause_if (parser, clauses);
11587 c_name = "if";
11588 break;
11589 case PRAGMA_OMP_CLAUSE_NUM_GANGS:
11590 clauses = c_parser_omp_clause_num_gangs (parser, clauses);
11591 c_name = "num_gangs";
11592 break;
11593 case PRAGMA_OMP_CLAUSE_NUM_WORKERS:
11594 clauses = c_parser_omp_clause_num_workers (parser, clauses);
11595 c_name = "num_workers";
11596 break;
11597 case PRAGMA_OMP_CLAUSE_PRESENT:
11598 clauses = c_parser_oacc_data_clause (parser, c_kind, clauses);
11599 c_name = "present";
11600 break;
11601 case PRAGMA_OMP_CLAUSE_PRESENT_OR_COPY:
11602 clauses = c_parser_oacc_data_clause (parser, c_kind, clauses);
11603 c_name = "present_or_copy";
11604 break;
11605 case PRAGMA_OMP_CLAUSE_PRESENT_OR_COPYIN:
11606 clauses = c_parser_oacc_data_clause (parser, c_kind, clauses);
11607 c_name = "present_or_copyin";
11608 break;
11609 case PRAGMA_OMP_CLAUSE_PRESENT_OR_COPYOUT:
11610 clauses = c_parser_oacc_data_clause (parser, c_kind, clauses);
11611 c_name = "present_or_copyout";
11612 break;
11613 case PRAGMA_OMP_CLAUSE_PRESENT_OR_CREATE:
11614 clauses = c_parser_oacc_data_clause (parser, c_kind, clauses);
11615 c_name = "present_or_create";
11616 break;
11617 case PRAGMA_OMP_CLAUSE_REDUCTION:
11618 clauses = c_parser_omp_clause_reduction (parser, clauses);
11619 c_name = "reduction";
11620 break;
11621 case PRAGMA_OMP_CLAUSE_SELF:
11622 clauses = c_parser_oacc_data_clause (parser, c_kind, clauses);
11623 c_name = "self";
11624 break;
11625 case PRAGMA_OMP_CLAUSE_VECTOR_LENGTH:
11626 clauses = c_parser_omp_clause_vector_length (parser, clauses);
11627 c_name = "vector_length";
11628 break;
11629 case PRAGMA_OMP_CLAUSE_WAIT:
11630 clauses = c_parser_oacc_clause_wait (parser, clauses);
11631 c_name = "wait";
11632 break;
11633 default:
11634 c_parser_error (parser, "expected clause");
11635 goto saw_error;
11638 first = false;
11640 if (((mask >> c_kind) & 1) == 0 && !parser->error)
11642 /* Remove the invalid clause(s) from the list to avoid
11643 confusing the rest of the compiler. */
11644 clauses = prev;
11645 error_at (here, "%qs is not valid for %qs", c_name, where);
11649 saw_error:
11650 c_parser_skip_to_pragma_eol (parser);
11652 if (finish_p)
11653 return c_finish_omp_clauses (clauses);
11655 return clauses;
11658 /* Parse all OpenMP clauses. The set clauses allowed by the directive
11659 is a bitmask in MASK. Return the list of clauses found. */
11661 static tree
11662 c_parser_omp_all_clauses (c_parser *parser, omp_clause_mask mask,
11663 const char *where, bool finish_p = true)
11665 tree clauses = NULL;
11666 bool first = true, cilk_simd_fn = false;
11668 while (c_parser_next_token_is_not (parser, CPP_PRAGMA_EOL))
11670 location_t here;
11671 pragma_omp_clause c_kind;
11672 const char *c_name;
11673 tree prev = clauses;
11675 if (!first && c_parser_next_token_is (parser, CPP_COMMA))
11676 c_parser_consume_token (parser);
11678 here = c_parser_peek_token (parser)->location;
11679 c_kind = c_parser_omp_clause_name (parser);
11681 switch (c_kind)
11683 case PRAGMA_OMP_CLAUSE_COLLAPSE:
11684 clauses = c_parser_omp_clause_collapse (parser, clauses);
11685 c_name = "collapse";
11686 break;
11687 case PRAGMA_OMP_CLAUSE_COPYIN:
11688 clauses = c_parser_omp_clause_copyin (parser, clauses);
11689 c_name = "copyin";
11690 break;
11691 case PRAGMA_OMP_CLAUSE_COPYPRIVATE:
11692 clauses = c_parser_omp_clause_copyprivate (parser, clauses);
11693 c_name = "copyprivate";
11694 break;
11695 case PRAGMA_OMP_CLAUSE_DEFAULT:
11696 clauses = c_parser_omp_clause_default (parser, clauses);
11697 c_name = "default";
11698 break;
11699 case PRAGMA_OMP_CLAUSE_FIRSTPRIVATE:
11700 clauses = c_parser_omp_clause_firstprivate (parser, clauses);
11701 c_name = "firstprivate";
11702 break;
11703 case PRAGMA_OMP_CLAUSE_FINAL:
11704 clauses = c_parser_omp_clause_final (parser, clauses);
11705 c_name = "final";
11706 break;
11707 case PRAGMA_OMP_CLAUSE_IF:
11708 clauses = c_parser_omp_clause_if (parser, clauses);
11709 c_name = "if";
11710 break;
11711 case PRAGMA_OMP_CLAUSE_LASTPRIVATE:
11712 clauses = c_parser_omp_clause_lastprivate (parser, clauses);
11713 c_name = "lastprivate";
11714 break;
11715 case PRAGMA_OMP_CLAUSE_MERGEABLE:
11716 clauses = c_parser_omp_clause_mergeable (parser, clauses);
11717 c_name = "mergeable";
11718 break;
11719 case PRAGMA_OMP_CLAUSE_NOWAIT:
11720 clauses = c_parser_omp_clause_nowait (parser, clauses);
11721 c_name = "nowait";
11722 break;
11723 case PRAGMA_OMP_CLAUSE_NUM_THREADS:
11724 clauses = c_parser_omp_clause_num_threads (parser, clauses);
11725 c_name = "num_threads";
11726 break;
11727 case PRAGMA_OMP_CLAUSE_ORDERED:
11728 clauses = c_parser_omp_clause_ordered (parser, clauses);
11729 c_name = "ordered";
11730 break;
11731 case PRAGMA_OMP_CLAUSE_PRIVATE:
11732 clauses = c_parser_omp_clause_private (parser, clauses);
11733 c_name = "private";
11734 break;
11735 case PRAGMA_OMP_CLAUSE_REDUCTION:
11736 clauses = c_parser_omp_clause_reduction (parser, clauses);
11737 c_name = "reduction";
11738 break;
11739 case PRAGMA_OMP_CLAUSE_SCHEDULE:
11740 clauses = c_parser_omp_clause_schedule (parser, clauses);
11741 c_name = "schedule";
11742 break;
11743 case PRAGMA_OMP_CLAUSE_SHARED:
11744 clauses = c_parser_omp_clause_shared (parser, clauses);
11745 c_name = "shared";
11746 break;
11747 case PRAGMA_OMP_CLAUSE_UNTIED:
11748 clauses = c_parser_omp_clause_untied (parser, clauses);
11749 c_name = "untied";
11750 break;
11751 case PRAGMA_OMP_CLAUSE_INBRANCH:
11752 case PRAGMA_CILK_CLAUSE_MASK:
11753 clauses = c_parser_omp_clause_branch (parser, OMP_CLAUSE_INBRANCH,
11754 clauses);
11755 c_name = "inbranch";
11756 break;
11757 case PRAGMA_OMP_CLAUSE_NOTINBRANCH:
11758 case PRAGMA_CILK_CLAUSE_NOMASK:
11759 clauses = c_parser_omp_clause_branch (parser, OMP_CLAUSE_NOTINBRANCH,
11760 clauses);
11761 c_name = "notinbranch";
11762 break;
11763 case PRAGMA_OMP_CLAUSE_PARALLEL:
11764 clauses
11765 = c_parser_omp_clause_cancelkind (parser, OMP_CLAUSE_PARALLEL,
11766 clauses);
11767 c_name = "parallel";
11768 if (!first)
11770 clause_not_first:
11771 error_at (here, "%qs must be the first clause of %qs",
11772 c_name, where);
11773 clauses = prev;
11775 break;
11776 case PRAGMA_OMP_CLAUSE_FOR:
11777 clauses
11778 = c_parser_omp_clause_cancelkind (parser, OMP_CLAUSE_FOR,
11779 clauses);
11780 c_name = "for";
11781 if (!first)
11782 goto clause_not_first;
11783 break;
11784 case PRAGMA_OMP_CLAUSE_SECTIONS:
11785 clauses
11786 = c_parser_omp_clause_cancelkind (parser, OMP_CLAUSE_SECTIONS,
11787 clauses);
11788 c_name = "sections";
11789 if (!first)
11790 goto clause_not_first;
11791 break;
11792 case PRAGMA_OMP_CLAUSE_TASKGROUP:
11793 clauses
11794 = c_parser_omp_clause_cancelkind (parser, OMP_CLAUSE_TASKGROUP,
11795 clauses);
11796 c_name = "taskgroup";
11797 if (!first)
11798 goto clause_not_first;
11799 break;
11800 case PRAGMA_OMP_CLAUSE_TO:
11801 clauses = c_parser_omp_clause_to (parser, clauses);
11802 c_name = "to";
11803 break;
11804 case PRAGMA_OMP_CLAUSE_FROM:
11805 clauses = c_parser_omp_clause_from (parser, clauses);
11806 c_name = "from";
11807 break;
11808 case PRAGMA_OMP_CLAUSE_UNIFORM:
11809 clauses = c_parser_omp_clause_uniform (parser, clauses);
11810 c_name = "uniform";
11811 break;
11812 case PRAGMA_OMP_CLAUSE_NUM_TEAMS:
11813 clauses = c_parser_omp_clause_num_teams (parser, clauses);
11814 c_name = "num_teams";
11815 break;
11816 case PRAGMA_OMP_CLAUSE_THREAD_LIMIT:
11817 clauses = c_parser_omp_clause_thread_limit (parser, clauses);
11818 c_name = "thread_limit";
11819 break;
11820 case PRAGMA_OMP_CLAUSE_ALIGNED:
11821 clauses = c_parser_omp_clause_aligned (parser, clauses);
11822 c_name = "aligned";
11823 break;
11824 case PRAGMA_OMP_CLAUSE_LINEAR:
11825 if (((mask >> PRAGMA_CILK_CLAUSE_VECTORLENGTH) & 1) != 0)
11826 cilk_simd_fn = true;
11827 clauses = c_parser_omp_clause_linear (parser, clauses, cilk_simd_fn);
11828 c_name = "linear";
11829 break;
11830 case PRAGMA_OMP_CLAUSE_DEPEND:
11831 clauses = c_parser_omp_clause_depend (parser, clauses);
11832 c_name = "depend";
11833 break;
11834 case PRAGMA_OMP_CLAUSE_MAP:
11835 clauses = c_parser_omp_clause_map (parser, clauses);
11836 c_name = "map";
11837 break;
11838 case PRAGMA_OMP_CLAUSE_DEVICE:
11839 clauses = c_parser_omp_clause_device (parser, clauses);
11840 c_name = "device";
11841 break;
11842 case PRAGMA_OMP_CLAUSE_DIST_SCHEDULE:
11843 clauses = c_parser_omp_clause_dist_schedule (parser, clauses);
11844 c_name = "dist_schedule";
11845 break;
11846 case PRAGMA_OMP_CLAUSE_PROC_BIND:
11847 clauses = c_parser_omp_clause_proc_bind (parser, clauses);
11848 c_name = "proc_bind";
11849 break;
11850 case PRAGMA_OMP_CLAUSE_SAFELEN:
11851 clauses = c_parser_omp_clause_safelen (parser, clauses);
11852 c_name = "safelen";
11853 break;
11854 case PRAGMA_CILK_CLAUSE_VECTORLENGTH:
11855 clauses = c_parser_cilk_clause_vectorlength (parser, clauses, true);
11856 c_name = "simdlen";
11857 break;
11858 case PRAGMA_OMP_CLAUSE_SIMDLEN:
11859 clauses = c_parser_omp_clause_simdlen (parser, clauses);
11860 c_name = "simdlen";
11861 break;
11862 default:
11863 c_parser_error (parser, "expected clause");
11864 goto saw_error;
11867 first = false;
11869 if (((mask >> c_kind) & 1) == 0 && !parser->error)
11871 /* Remove the invalid clause(s) from the list to avoid
11872 confusing the rest of the compiler. */
11873 clauses = prev;
11874 error_at (here, "%qs is not valid for %qs", c_name, where);
11878 saw_error:
11879 c_parser_skip_to_pragma_eol (parser);
11881 if (finish_p)
11882 return c_finish_omp_clauses (clauses);
11884 return clauses;
11887 /* OpenACC 2.0, OpenMP 2.5:
11888 structured-block:
11889 statement
11891 In practice, we're also interested in adding the statement to an
11892 outer node. So it is convenient if we work around the fact that
11893 c_parser_statement calls add_stmt. */
11895 static tree
11896 c_parser_omp_structured_block (c_parser *parser)
11898 tree stmt = push_stmt_list ();
11899 c_parser_statement (parser);
11900 return pop_stmt_list (stmt);
11903 /* OpenACC 2.0:
11904 # pragma acc cache (variable-list) new-line
11906 LOC is the location of the #pragma token.
11909 static tree
11910 c_parser_oacc_cache (location_t loc, c_parser *parser)
11912 tree stmt, clauses;
11914 clauses = c_parser_omp_var_list_parens (parser, OMP_CLAUSE__CACHE_, NULL);
11915 clauses = c_finish_omp_clauses (clauses);
11917 c_parser_skip_to_pragma_eol (parser);
11919 stmt = make_node (OACC_CACHE);
11920 TREE_TYPE (stmt) = void_type_node;
11921 OACC_CACHE_CLAUSES (stmt) = clauses;
11922 SET_EXPR_LOCATION (stmt, loc);
11923 add_stmt (stmt);
11925 return stmt;
11928 /* OpenACC 2.0:
11929 # pragma acc data oacc-data-clause[optseq] new-line
11930 structured-block
11932 LOC is the location of the #pragma token.
11935 #define OACC_DATA_CLAUSE_MASK \
11936 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COPY) \
11937 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COPYIN) \
11938 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COPYOUT) \
11939 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_CREATE) \
11940 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEVICEPTR) \
11941 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
11942 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRESENT) \
11943 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRESENT_OR_COPY) \
11944 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRESENT_OR_COPYIN) \
11945 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRESENT_OR_COPYOUT) \
11946 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRESENT_OR_CREATE) )
11948 static tree
11949 c_parser_oacc_data (location_t loc, c_parser *parser)
11951 tree stmt, clauses, block;
11953 clauses = c_parser_oacc_all_clauses (parser, OACC_DATA_CLAUSE_MASK,
11954 "#pragma acc data");
11956 block = c_begin_omp_parallel ();
11957 add_stmt (c_parser_omp_structured_block (parser));
11959 stmt = c_finish_oacc_data (loc, clauses, block);
11961 return stmt;
11964 /* OpenACC 2.0:
11965 # pragma acc kernels oacc-kernels-clause[optseq] new-line
11966 structured-block
11968 LOC is the location of the #pragma token.
11971 #define OACC_KERNELS_CLAUSE_MASK \
11972 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_ASYNC) \
11973 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COPY) \
11974 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COPYIN) \
11975 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COPYOUT) \
11976 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_CREATE) \
11977 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEVICEPTR) \
11978 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
11979 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRESENT) \
11980 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRESENT_OR_COPY) \
11981 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRESENT_OR_COPYIN) \
11982 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRESENT_OR_COPYOUT) \
11983 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRESENT_OR_CREATE) \
11984 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_WAIT) )
11986 static tree
11987 c_parser_oacc_kernels (location_t loc, c_parser *parser, char *p_name)
11989 tree stmt, clauses = NULL_TREE, block;
11991 strcat (p_name, " kernels");
11993 if (c_parser_next_token_is (parser, CPP_NAME))
11995 const char *p = IDENTIFIER_POINTER (c_parser_peek_token (parser)->value);
11996 if (strcmp (p, "loop") == 0)
11998 c_parser_consume_token (parser);
11999 block = c_begin_omp_parallel ();
12000 c_parser_oacc_loop (loc, parser, p_name);
12001 stmt = c_finish_oacc_kernels (loc, clauses, block);
12002 OACC_KERNELS_COMBINED (stmt) = 1;
12003 return stmt;
12007 clauses = c_parser_oacc_all_clauses (parser, OACC_KERNELS_CLAUSE_MASK,
12008 p_name);
12010 block = c_begin_omp_parallel ();
12011 add_stmt (c_parser_omp_structured_block (parser));
12013 stmt = c_finish_oacc_kernels (loc, clauses, block);
12015 return stmt;
12018 /* OpenACC 2.0:
12019 # pragma acc enter data oacc-enter-data-clause[optseq] new-line
12023 # pragma acc exit data oacc-exit-data-clause[optseq] new-line
12026 LOC is the location of the #pragma token.
12029 #define OACC_ENTER_DATA_CLAUSE_MASK \
12030 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
12031 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_ASYNC) \
12032 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COPYIN) \
12033 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_CREATE) \
12034 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRESENT_OR_COPYIN) \
12035 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRESENT_OR_CREATE) \
12036 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_WAIT) )
12038 #define OACC_EXIT_DATA_CLAUSE_MASK \
12039 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
12040 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_ASYNC) \
12041 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COPYOUT) \
12042 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DELETE) \
12043 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_WAIT) )
12045 static void
12046 c_parser_oacc_enter_exit_data (c_parser *parser, bool enter)
12048 location_t loc = c_parser_peek_token (parser)->location;
12049 tree clauses, stmt;
12051 c_parser_consume_pragma (parser);
12053 if (!c_parser_next_token_is (parser, CPP_NAME))
12055 c_parser_error (parser, enter
12056 ? "expected %<data%> in %<#pragma acc enter data%>"
12057 : "expected %<data%> in %<#pragma acc exit data%>");
12058 c_parser_skip_to_pragma_eol (parser);
12059 return;
12062 const char *p = IDENTIFIER_POINTER (c_parser_peek_token (parser)->value);
12063 if (strcmp (p, "data") != 0)
12065 c_parser_error (parser, "invalid pragma");
12066 c_parser_skip_to_pragma_eol (parser);
12067 return;
12070 c_parser_consume_token (parser);
12072 if (enter)
12073 clauses = c_parser_oacc_all_clauses (parser, OACC_ENTER_DATA_CLAUSE_MASK,
12074 "#pragma acc enter data");
12075 else
12076 clauses = c_parser_oacc_all_clauses (parser, OACC_EXIT_DATA_CLAUSE_MASK,
12077 "#pragma acc exit data");
12079 if (find_omp_clause (clauses, OMP_CLAUSE_MAP) == NULL_TREE)
12081 error_at (loc, enter
12082 ? "%<#pragma acc enter data%> has no data movement clause"
12083 : "%<#pragma acc exit data%> has no data movement clause");
12084 return;
12087 stmt = enter ? make_node (OACC_ENTER_DATA) : make_node (OACC_EXIT_DATA);;
12088 TREE_TYPE (stmt) = void_type_node;
12089 if (enter)
12090 OACC_ENTER_DATA_CLAUSES (stmt) = clauses;
12091 else
12092 OACC_EXIT_DATA_CLAUSES (stmt) = clauses;
12093 SET_EXPR_LOCATION (stmt, loc);
12094 add_stmt (stmt);
12098 /* OpenACC 2.0:
12100 # pragma acc loop oacc-loop-clause[optseq] new-line
12101 structured-block
12103 LOC is the location of the #pragma token.
12106 #define OACC_LOOP_CLAUSE_MASK \
12107 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COLLAPSE) \
12108 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_REDUCTION) )
12110 static tree
12111 c_parser_oacc_loop (location_t loc, c_parser *parser, char *p_name)
12113 tree stmt, clauses, block;
12115 strcat (p_name, " loop");
12117 clauses = c_parser_oacc_all_clauses (parser, OACC_LOOP_CLAUSE_MASK, p_name);
12119 block = c_begin_compound_stmt (true);
12120 stmt = c_parser_omp_for_loop (loc, parser, OACC_LOOP, clauses, NULL);
12121 block = c_end_compound_stmt (loc, block, true);
12122 add_stmt (block);
12124 return stmt;
12127 /* OpenACC 2.0:
12128 # pragma acc parallel oacc-parallel-clause[optseq] new-line
12129 structured-block
12131 LOC is the location of the #pragma token.
12134 #define OACC_PARALLEL_CLAUSE_MASK \
12135 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_ASYNC) \
12136 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COPY) \
12137 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COPYIN) \
12138 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COPYOUT) \
12139 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_CREATE) \
12140 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEVICEPTR) \
12141 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
12142 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NUM_GANGS) \
12143 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NUM_WORKERS) \
12144 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRESENT) \
12145 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRESENT_OR_COPY) \
12146 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRESENT_OR_COPYIN) \
12147 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRESENT_OR_COPYOUT) \
12148 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRESENT_OR_CREATE) \
12149 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_REDUCTION) \
12150 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_VECTOR_LENGTH) \
12151 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_WAIT) )
12153 static tree
12154 c_parser_oacc_parallel (location_t loc, c_parser *parser, char *p_name)
12156 tree stmt, clauses = NULL_TREE, block;
12158 strcat (p_name, " parallel");
12160 if (c_parser_next_token_is (parser, CPP_NAME))
12162 const char *p = IDENTIFIER_POINTER (c_parser_peek_token (parser)->value);
12163 if (strcmp (p, "loop") == 0)
12165 c_parser_consume_token (parser);
12166 block = c_begin_omp_parallel ();
12167 c_parser_oacc_loop (loc, parser, p_name);
12168 stmt = c_finish_oacc_parallel (loc, clauses, block);
12169 OACC_PARALLEL_COMBINED (stmt) = 1;
12170 return stmt;
12174 clauses = c_parser_oacc_all_clauses (parser, OACC_PARALLEL_CLAUSE_MASK,
12175 p_name);
12177 block = c_begin_omp_parallel ();
12178 add_stmt (c_parser_omp_structured_block (parser));
12180 stmt = c_finish_oacc_parallel (loc, clauses, block);
12182 return stmt;
12185 /* OpenACC 2.0:
12186 # pragma acc update oacc-update-clause[optseq] new-line
12189 #define OACC_UPDATE_CLAUSE_MASK \
12190 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_ASYNC) \
12191 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEVICE) \
12192 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_HOST) \
12193 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
12194 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SELF) \
12195 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_WAIT) )
12197 static void
12198 c_parser_oacc_update (c_parser *parser)
12200 location_t loc = c_parser_peek_token (parser)->location;
12202 c_parser_consume_pragma (parser);
12204 tree clauses = c_parser_oacc_all_clauses (parser, OACC_UPDATE_CLAUSE_MASK,
12205 "#pragma acc update");
12206 if (find_omp_clause (clauses, OMP_CLAUSE_MAP) == NULL_TREE)
12208 error_at (loc,
12209 "%<#pragma acc update%> must contain at least one "
12210 "%<device%> or %<host/self%> clause");
12211 return;
12214 if (parser->error)
12215 return;
12217 tree stmt = make_node (OACC_UPDATE);
12218 TREE_TYPE (stmt) = void_type_node;
12219 OACC_UPDATE_CLAUSES (stmt) = clauses;
12220 SET_EXPR_LOCATION (stmt, loc);
12221 add_stmt (stmt);
12224 /* OpenACC 2.0:
12225 # pragma acc wait [(intseq)] oacc-wait-clause[optseq] new-line
12227 LOC is the location of the #pragma token.
12230 #define OACC_WAIT_CLAUSE_MASK \
12231 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_ASYNC) )
12233 static tree
12234 c_parser_oacc_wait (location_t loc, c_parser *parser, char *p_name)
12236 tree clauses, list = NULL_TREE, stmt = NULL_TREE;
12238 if (c_parser_peek_token (parser)->type == CPP_OPEN_PAREN)
12239 list = c_parser_oacc_wait_list (parser, loc, list);
12241 strcpy (p_name, " wait");
12242 clauses = c_parser_oacc_all_clauses (parser, OACC_WAIT_CLAUSE_MASK, p_name);
12243 stmt = c_finish_oacc_wait (loc, list, clauses);
12245 return stmt;
12248 /* OpenMP 2.5:
12249 # pragma omp atomic new-line
12250 expression-stmt
12252 expression-stmt:
12253 x binop= expr | x++ | ++x | x-- | --x
12254 binop:
12255 +, *, -, /, &, ^, |, <<, >>
12257 where x is an lvalue expression with scalar type.
12259 OpenMP 3.1:
12260 # pragma omp atomic new-line
12261 update-stmt
12263 # pragma omp atomic read new-line
12264 read-stmt
12266 # pragma omp atomic write new-line
12267 write-stmt
12269 # pragma omp atomic update new-line
12270 update-stmt
12272 # pragma omp atomic capture new-line
12273 capture-stmt
12275 # pragma omp atomic capture new-line
12276 capture-block
12278 read-stmt:
12279 v = x
12280 write-stmt:
12281 x = expr
12282 update-stmt:
12283 expression-stmt | x = x binop expr
12284 capture-stmt:
12285 v = expression-stmt
12286 capture-block:
12287 { v = x; update-stmt; } | { update-stmt; v = x; }
12289 OpenMP 4.0:
12290 update-stmt:
12291 expression-stmt | x = x binop expr | x = expr binop x
12292 capture-stmt:
12293 v = update-stmt
12294 capture-block:
12295 { v = x; update-stmt; } | { update-stmt; v = x; } | { v = x; x = expr; }
12297 where x and v are lvalue expressions with scalar type.
12299 LOC is the location of the #pragma token. */
12301 static void
12302 c_parser_omp_atomic (location_t loc, c_parser *parser)
12304 tree lhs = NULL_TREE, rhs = NULL_TREE, v = NULL_TREE;
12305 tree lhs1 = NULL_TREE, rhs1 = NULL_TREE;
12306 tree stmt, orig_lhs, unfolded_lhs = NULL_TREE, unfolded_lhs1 = NULL_TREE;
12307 enum tree_code code = OMP_ATOMIC, opcode = NOP_EXPR;
12308 struct c_expr expr;
12309 location_t eloc;
12310 bool structured_block = false;
12311 bool swapped = false;
12312 bool seq_cst = false;
12314 if (c_parser_next_token_is (parser, CPP_NAME))
12316 const char *p = IDENTIFIER_POINTER (c_parser_peek_token (parser)->value);
12317 if (!strcmp (p, "seq_cst"))
12319 seq_cst = true;
12320 c_parser_consume_token (parser);
12321 if (c_parser_next_token_is (parser, CPP_COMMA)
12322 && c_parser_peek_2nd_token (parser)->type == CPP_NAME)
12323 c_parser_consume_token (parser);
12326 if (c_parser_next_token_is (parser, CPP_NAME))
12328 const char *p = IDENTIFIER_POINTER (c_parser_peek_token (parser)->value);
12330 if (!strcmp (p, "read"))
12331 code = OMP_ATOMIC_READ;
12332 else if (!strcmp (p, "write"))
12333 code = NOP_EXPR;
12334 else if (!strcmp (p, "update"))
12335 code = OMP_ATOMIC;
12336 else if (!strcmp (p, "capture"))
12337 code = OMP_ATOMIC_CAPTURE_NEW;
12338 else
12339 p = NULL;
12340 if (p)
12341 c_parser_consume_token (parser);
12343 if (!seq_cst)
12345 if (c_parser_next_token_is (parser, CPP_COMMA)
12346 && c_parser_peek_2nd_token (parser)->type == CPP_NAME)
12347 c_parser_consume_token (parser);
12349 if (c_parser_next_token_is (parser, CPP_NAME))
12351 const char *p
12352 = IDENTIFIER_POINTER (c_parser_peek_token (parser)->value);
12353 if (!strcmp (p, "seq_cst"))
12355 seq_cst = true;
12356 c_parser_consume_token (parser);
12360 c_parser_skip_to_pragma_eol (parser);
12362 switch (code)
12364 case OMP_ATOMIC_READ:
12365 case NOP_EXPR: /* atomic write */
12366 v = c_parser_unary_expression (parser).value;
12367 v = c_fully_fold (v, false, NULL);
12368 if (v == error_mark_node)
12369 goto saw_error;
12370 loc = c_parser_peek_token (parser)->location;
12371 if (!c_parser_require (parser, CPP_EQ, "expected %<=%>"))
12372 goto saw_error;
12373 if (code == NOP_EXPR)
12374 lhs = c_parser_expression (parser).value;
12375 else
12376 lhs = c_parser_unary_expression (parser).value;
12377 lhs = c_fully_fold (lhs, false, NULL);
12378 if (lhs == error_mark_node)
12379 goto saw_error;
12380 if (code == NOP_EXPR)
12382 /* atomic write is represented by OMP_ATOMIC with NOP_EXPR
12383 opcode. */
12384 code = OMP_ATOMIC;
12385 rhs = lhs;
12386 lhs = v;
12387 v = NULL_TREE;
12389 goto done;
12390 case OMP_ATOMIC_CAPTURE_NEW:
12391 if (c_parser_next_token_is (parser, CPP_OPEN_BRACE))
12393 c_parser_consume_token (parser);
12394 structured_block = true;
12396 else
12398 v = c_parser_unary_expression (parser).value;
12399 v = c_fully_fold (v, false, NULL);
12400 if (v == error_mark_node)
12401 goto saw_error;
12402 if (!c_parser_require (parser, CPP_EQ, "expected %<=%>"))
12403 goto saw_error;
12405 break;
12406 default:
12407 break;
12410 /* For structured_block case we don't know yet whether
12411 old or new x should be captured. */
12412 restart:
12413 eloc = c_parser_peek_token (parser)->location;
12414 expr = c_parser_unary_expression (parser);
12415 lhs = expr.value;
12416 expr = default_function_array_conversion (eloc, expr);
12417 unfolded_lhs = expr.value;
12418 lhs = c_fully_fold (lhs, false, NULL);
12419 orig_lhs = lhs;
12420 switch (TREE_CODE (lhs))
12422 case ERROR_MARK:
12423 saw_error:
12424 c_parser_skip_to_end_of_block_or_statement (parser);
12425 if (structured_block)
12427 if (c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
12428 c_parser_consume_token (parser);
12429 else if (code == OMP_ATOMIC_CAPTURE_NEW)
12431 c_parser_skip_to_end_of_block_or_statement (parser);
12432 if (c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
12433 c_parser_consume_token (parser);
12436 return;
12438 case POSTINCREMENT_EXPR:
12439 if (code == OMP_ATOMIC_CAPTURE_NEW && !structured_block)
12440 code = OMP_ATOMIC_CAPTURE_OLD;
12441 /* FALLTHROUGH */
12442 case PREINCREMENT_EXPR:
12443 lhs = TREE_OPERAND (lhs, 0);
12444 unfolded_lhs = NULL_TREE;
12445 opcode = PLUS_EXPR;
12446 rhs = integer_one_node;
12447 break;
12449 case POSTDECREMENT_EXPR:
12450 if (code == OMP_ATOMIC_CAPTURE_NEW && !structured_block)
12451 code = OMP_ATOMIC_CAPTURE_OLD;
12452 /* FALLTHROUGH */
12453 case PREDECREMENT_EXPR:
12454 lhs = TREE_OPERAND (lhs, 0);
12455 unfolded_lhs = NULL_TREE;
12456 opcode = MINUS_EXPR;
12457 rhs = integer_one_node;
12458 break;
12460 case COMPOUND_EXPR:
12461 if (TREE_CODE (TREE_OPERAND (lhs, 0)) == SAVE_EXPR
12462 && TREE_CODE (TREE_OPERAND (lhs, 1)) == COMPOUND_EXPR
12463 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (lhs, 1), 0)) == MODIFY_EXPR
12464 && TREE_OPERAND (TREE_OPERAND (lhs, 1), 1) == TREE_OPERAND (lhs, 0)
12465 && TREE_CODE (TREE_TYPE (TREE_OPERAND (TREE_OPERAND
12466 (TREE_OPERAND (lhs, 1), 0), 0)))
12467 == BOOLEAN_TYPE)
12468 /* Undo effects of boolean_increment for post {in,de}crement. */
12469 lhs = TREE_OPERAND (TREE_OPERAND (lhs, 1), 0);
12470 /* FALLTHRU */
12471 case MODIFY_EXPR:
12472 if (TREE_CODE (lhs) == MODIFY_EXPR
12473 && TREE_CODE (TREE_TYPE (TREE_OPERAND (lhs, 0))) == BOOLEAN_TYPE)
12475 /* Undo effects of boolean_increment. */
12476 if (integer_onep (TREE_OPERAND (lhs, 1)))
12478 /* This is pre or post increment. */
12479 rhs = TREE_OPERAND (lhs, 1);
12480 lhs = TREE_OPERAND (lhs, 0);
12481 unfolded_lhs = NULL_TREE;
12482 opcode = NOP_EXPR;
12483 if (code == OMP_ATOMIC_CAPTURE_NEW
12484 && !structured_block
12485 && TREE_CODE (orig_lhs) == COMPOUND_EXPR)
12486 code = OMP_ATOMIC_CAPTURE_OLD;
12487 break;
12489 if (TREE_CODE (TREE_OPERAND (lhs, 1)) == TRUTH_NOT_EXPR
12490 && TREE_OPERAND (lhs, 0)
12491 == TREE_OPERAND (TREE_OPERAND (lhs, 1), 0))
12493 /* This is pre or post decrement. */
12494 rhs = TREE_OPERAND (lhs, 1);
12495 lhs = TREE_OPERAND (lhs, 0);
12496 unfolded_lhs = NULL_TREE;
12497 opcode = NOP_EXPR;
12498 if (code == OMP_ATOMIC_CAPTURE_NEW
12499 && !structured_block
12500 && TREE_CODE (orig_lhs) == COMPOUND_EXPR)
12501 code = OMP_ATOMIC_CAPTURE_OLD;
12502 break;
12505 /* FALLTHRU */
12506 default:
12507 switch (c_parser_peek_token (parser)->type)
12509 case CPP_MULT_EQ:
12510 opcode = MULT_EXPR;
12511 break;
12512 case CPP_DIV_EQ:
12513 opcode = TRUNC_DIV_EXPR;
12514 break;
12515 case CPP_PLUS_EQ:
12516 opcode = PLUS_EXPR;
12517 break;
12518 case CPP_MINUS_EQ:
12519 opcode = MINUS_EXPR;
12520 break;
12521 case CPP_LSHIFT_EQ:
12522 opcode = LSHIFT_EXPR;
12523 break;
12524 case CPP_RSHIFT_EQ:
12525 opcode = RSHIFT_EXPR;
12526 break;
12527 case CPP_AND_EQ:
12528 opcode = BIT_AND_EXPR;
12529 break;
12530 case CPP_OR_EQ:
12531 opcode = BIT_IOR_EXPR;
12532 break;
12533 case CPP_XOR_EQ:
12534 opcode = BIT_XOR_EXPR;
12535 break;
12536 case CPP_EQ:
12537 c_parser_consume_token (parser);
12538 eloc = c_parser_peek_token (parser)->location;
12539 expr = c_parser_expr_no_commas (parser, NULL, unfolded_lhs);
12540 rhs1 = expr.value;
12541 switch (TREE_CODE (rhs1))
12543 case MULT_EXPR:
12544 case TRUNC_DIV_EXPR:
12545 case PLUS_EXPR:
12546 case MINUS_EXPR:
12547 case LSHIFT_EXPR:
12548 case RSHIFT_EXPR:
12549 case BIT_AND_EXPR:
12550 case BIT_IOR_EXPR:
12551 case BIT_XOR_EXPR:
12552 if (c_tree_equal (TREE_OPERAND (rhs1, 0), unfolded_lhs))
12554 opcode = TREE_CODE (rhs1);
12555 rhs = c_fully_fold (TREE_OPERAND (rhs1, 1), false, NULL);
12556 rhs1 = c_fully_fold (TREE_OPERAND (rhs1, 0), false, NULL);
12557 goto stmt_done;
12559 if (c_tree_equal (TREE_OPERAND (rhs1, 1), unfolded_lhs))
12561 opcode = TREE_CODE (rhs1);
12562 rhs = c_fully_fold (TREE_OPERAND (rhs1, 0), false, NULL);
12563 rhs1 = c_fully_fold (TREE_OPERAND (rhs1, 1), false, NULL);
12564 swapped = !commutative_tree_code (opcode);
12565 goto stmt_done;
12567 break;
12568 case ERROR_MARK:
12569 goto saw_error;
12570 default:
12571 break;
12573 if (c_parser_peek_token (parser)->type == CPP_SEMICOLON)
12575 if (structured_block && code == OMP_ATOMIC_CAPTURE_NEW)
12577 code = OMP_ATOMIC_CAPTURE_OLD;
12578 v = lhs;
12579 lhs = NULL_TREE;
12580 expr = default_function_array_read_conversion (eloc, expr);
12581 unfolded_lhs1 = expr.value;
12582 lhs1 = c_fully_fold (unfolded_lhs1, false, NULL);
12583 rhs1 = NULL_TREE;
12584 c_parser_consume_token (parser);
12585 goto restart;
12587 if (structured_block)
12589 opcode = NOP_EXPR;
12590 expr = default_function_array_read_conversion (eloc, expr);
12591 rhs = c_fully_fold (expr.value, false, NULL);
12592 rhs1 = NULL_TREE;
12593 goto stmt_done;
12596 c_parser_error (parser, "invalid form of %<#pragma omp atomic%>");
12597 goto saw_error;
12598 default:
12599 c_parser_error (parser,
12600 "invalid operator for %<#pragma omp atomic%>");
12601 goto saw_error;
12604 /* Arrange to pass the location of the assignment operator to
12605 c_finish_omp_atomic. */
12606 loc = c_parser_peek_token (parser)->location;
12607 c_parser_consume_token (parser);
12608 eloc = c_parser_peek_token (parser)->location;
12609 expr = c_parser_expression (parser);
12610 expr = default_function_array_read_conversion (eloc, expr);
12611 rhs = expr.value;
12612 rhs = c_fully_fold (rhs, false, NULL);
12613 break;
12615 stmt_done:
12616 if (structured_block && code == OMP_ATOMIC_CAPTURE_NEW)
12618 if (!c_parser_require (parser, CPP_SEMICOLON, "expected %<;%>"))
12619 goto saw_error;
12620 v = c_parser_unary_expression (parser).value;
12621 v = c_fully_fold (v, false, NULL);
12622 if (v == error_mark_node)
12623 goto saw_error;
12624 if (!c_parser_require (parser, CPP_EQ, "expected %<=%>"))
12625 goto saw_error;
12626 eloc = c_parser_peek_token (parser)->location;
12627 expr = c_parser_unary_expression (parser);
12628 lhs1 = expr.value;
12629 expr = default_function_array_read_conversion (eloc, expr);
12630 unfolded_lhs1 = expr.value;
12631 lhs1 = c_fully_fold (lhs1, false, NULL);
12632 if (lhs1 == error_mark_node)
12633 goto saw_error;
12635 if (structured_block)
12637 c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
12638 c_parser_require (parser, CPP_CLOSE_BRACE, "expected %<}%>");
12640 done:
12641 if (unfolded_lhs && unfolded_lhs1
12642 && !c_tree_equal (unfolded_lhs, unfolded_lhs1))
12644 error ("%<#pragma omp atomic capture%> uses two different "
12645 "expressions for memory");
12646 stmt = error_mark_node;
12648 else
12649 stmt = c_finish_omp_atomic (loc, code, opcode, lhs, rhs, v, lhs1, rhs1,
12650 swapped, seq_cst);
12651 if (stmt != error_mark_node)
12652 add_stmt (stmt);
12654 if (!structured_block)
12655 c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
12659 /* OpenMP 2.5:
12660 # pragma omp barrier new-line
12663 static void
12664 c_parser_omp_barrier (c_parser *parser)
12666 location_t loc = c_parser_peek_token (parser)->location;
12667 c_parser_consume_pragma (parser);
12668 c_parser_skip_to_pragma_eol (parser);
12670 c_finish_omp_barrier (loc);
12673 /* OpenMP 2.5:
12674 # pragma omp critical [(name)] new-line
12675 structured-block
12677 LOC is the location of the #pragma itself. */
12679 static tree
12680 c_parser_omp_critical (location_t loc, c_parser *parser)
12682 tree stmt, name = NULL;
12684 if (c_parser_next_token_is (parser, CPP_OPEN_PAREN))
12686 c_parser_consume_token (parser);
12687 if (c_parser_next_token_is (parser, CPP_NAME))
12689 name = c_parser_peek_token (parser)->value;
12690 c_parser_consume_token (parser);
12691 c_parser_require (parser, CPP_CLOSE_PAREN, "expected %<)%>");
12693 else
12694 c_parser_error (parser, "expected identifier");
12696 else if (c_parser_next_token_is_not (parser, CPP_PRAGMA_EOL))
12697 c_parser_error (parser, "expected %<(%> or end of line");
12698 c_parser_skip_to_pragma_eol (parser);
12700 stmt = c_parser_omp_structured_block (parser);
12701 return c_finish_omp_critical (loc, stmt, name);
12704 /* OpenMP 2.5:
12705 # pragma omp flush flush-vars[opt] new-line
12707 flush-vars:
12708 ( variable-list ) */
12710 static void
12711 c_parser_omp_flush (c_parser *parser)
12713 location_t loc = c_parser_peek_token (parser)->location;
12714 c_parser_consume_pragma (parser);
12715 if (c_parser_next_token_is (parser, CPP_OPEN_PAREN))
12716 c_parser_omp_var_list_parens (parser, OMP_CLAUSE_ERROR, NULL);
12717 else if (c_parser_next_token_is_not (parser, CPP_PRAGMA_EOL))
12718 c_parser_error (parser, "expected %<(%> or end of line");
12719 c_parser_skip_to_pragma_eol (parser);
12721 c_finish_omp_flush (loc);
12724 /* Parse the restricted form of loop statements allowed by OpenACC and OpenMP.
12725 The real trick here is to determine the loop control variable early
12726 so that we can push a new decl if necessary to make it private.
12727 LOC is the location of the "acc" or "omp" in "#pragma acc" or "#pragma omp",
12728 respectively. */
12730 static tree
12731 c_parser_omp_for_loop (location_t loc, c_parser *parser, enum tree_code code,
12732 tree clauses, tree *cclauses)
12734 tree decl, cond, incr, save_break, save_cont, body, init, stmt, cl;
12735 tree declv, condv, incrv, initv, ret = NULL;
12736 bool fail = false, open_brace_parsed = false;
12737 int i, collapse = 1, nbraces = 0;
12738 location_t for_loc;
12739 vec<tree, va_gc> *for_block = make_tree_vector ();
12741 for (cl = clauses; cl; cl = OMP_CLAUSE_CHAIN (cl))
12742 if (OMP_CLAUSE_CODE (cl) == OMP_CLAUSE_COLLAPSE)
12743 collapse = tree_to_shwi (OMP_CLAUSE_COLLAPSE_EXPR (cl));
12745 gcc_assert (collapse >= 1);
12747 declv = make_tree_vec (collapse);
12748 initv = make_tree_vec (collapse);
12749 condv = make_tree_vec (collapse);
12750 incrv = make_tree_vec (collapse);
12752 if (code != CILK_FOR
12753 && !c_parser_next_token_is_keyword (parser, RID_FOR))
12755 c_parser_error (parser, "for statement expected");
12756 return NULL;
12758 if (code == CILK_FOR
12759 && !c_parser_next_token_is_keyword (parser, RID_CILK_FOR))
12761 c_parser_error (parser, "_Cilk_for statement expected");
12762 return NULL;
12764 for_loc = c_parser_peek_token (parser)->location;
12765 c_parser_consume_token (parser);
12767 for (i = 0; i < collapse; i++)
12769 int bracecount = 0;
12771 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
12772 goto pop_scopes;
12774 /* Parse the initialization declaration or expression. */
12775 if (c_parser_next_tokens_start_declaration (parser))
12777 if (i > 0)
12778 vec_safe_push (for_block, c_begin_compound_stmt (true));
12779 c_parser_declaration_or_fndef (parser, true, true, true, true, true,
12780 NULL, vNULL);
12781 decl = check_for_loop_decls (for_loc, flag_isoc99);
12782 if (decl == NULL)
12783 goto error_init;
12784 if (DECL_INITIAL (decl) == error_mark_node)
12785 decl = error_mark_node;
12786 init = decl;
12788 else if (c_parser_next_token_is (parser, CPP_NAME)
12789 && c_parser_peek_2nd_token (parser)->type == CPP_EQ)
12791 struct c_expr decl_exp;
12792 struct c_expr init_exp;
12793 location_t init_loc;
12795 decl_exp = c_parser_postfix_expression (parser);
12796 decl = decl_exp.value;
12798 c_parser_require (parser, CPP_EQ, "expected %<=%>");
12800 init_loc = c_parser_peek_token (parser)->location;
12801 init_exp = c_parser_expr_no_commas (parser, NULL);
12802 init_exp = default_function_array_read_conversion (init_loc,
12803 init_exp);
12804 init = build_modify_expr (init_loc, decl, decl_exp.original_type,
12805 NOP_EXPR, init_loc, init_exp.value,
12806 init_exp.original_type);
12807 init = c_process_expr_stmt (init_loc, init);
12809 c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
12811 else
12813 error_init:
12814 c_parser_error (parser,
12815 "expected iteration declaration or initialization");
12816 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
12817 "expected %<)%>");
12818 fail = true;
12819 goto parse_next;
12822 /* Parse the loop condition. */
12823 cond = NULL_TREE;
12824 if (c_parser_next_token_is_not (parser, CPP_SEMICOLON))
12826 location_t cond_loc = c_parser_peek_token (parser)->location;
12827 struct c_expr cond_expr
12828 = c_parser_binary_expression (parser, NULL, NULL_TREE);
12830 cond = cond_expr.value;
12831 cond = c_objc_common_truthvalue_conversion (cond_loc, cond);
12832 cond = c_fully_fold (cond, false, NULL);
12833 switch (cond_expr.original_code)
12835 case GT_EXPR:
12836 case GE_EXPR:
12837 case LT_EXPR:
12838 case LE_EXPR:
12839 break;
12840 case NE_EXPR:
12841 if (code == CILK_SIMD || code == CILK_FOR)
12842 break;
12843 /* FALLTHRU. */
12844 default:
12845 /* Can't be cond = error_mark_node, because we want to preserve
12846 the location until c_finish_omp_for. */
12847 cond = build1 (NOP_EXPR, boolean_type_node, error_mark_node);
12848 break;
12850 protected_set_expr_location (cond, cond_loc);
12852 c_parser_skip_until_found (parser, CPP_SEMICOLON, "expected %<;%>");
12854 /* Parse the increment expression. */
12855 incr = NULL_TREE;
12856 if (c_parser_next_token_is_not (parser, CPP_CLOSE_PAREN))
12858 location_t incr_loc = c_parser_peek_token (parser)->location;
12860 incr = c_process_expr_stmt (incr_loc,
12861 c_parser_expression (parser).value);
12863 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
12865 if (decl == NULL || decl == error_mark_node || init == error_mark_node)
12866 fail = true;
12867 else
12869 TREE_VEC_ELT (declv, i) = decl;
12870 TREE_VEC_ELT (initv, i) = init;
12871 TREE_VEC_ELT (condv, i) = cond;
12872 TREE_VEC_ELT (incrv, i) = incr;
12875 parse_next:
12876 if (i == collapse - 1)
12877 break;
12879 /* FIXME: OpenMP 3.0 draft isn't very clear on what exactly is allowed
12880 in between the collapsed for loops to be still considered perfectly
12881 nested. Hopefully the final version clarifies this.
12882 For now handle (multiple) {'s and empty statements. */
12885 if (c_parser_next_token_is_keyword (parser, RID_FOR))
12887 c_parser_consume_token (parser);
12888 break;
12890 else if (c_parser_next_token_is (parser, CPP_OPEN_BRACE))
12892 c_parser_consume_token (parser);
12893 bracecount++;
12895 else if (bracecount
12896 && c_parser_next_token_is (parser, CPP_SEMICOLON))
12897 c_parser_consume_token (parser);
12898 else
12900 c_parser_error (parser, "not enough perfectly nested loops");
12901 if (bracecount)
12903 open_brace_parsed = true;
12904 bracecount--;
12906 fail = true;
12907 collapse = 0;
12908 break;
12911 while (1);
12913 nbraces += bracecount;
12916 save_break = c_break_label;
12917 if (code == CILK_SIMD)
12918 c_break_label = build_int_cst (size_type_node, 2);
12919 else
12920 c_break_label = size_one_node;
12921 save_cont = c_cont_label;
12922 c_cont_label = NULL_TREE;
12923 body = push_stmt_list ();
12925 if (open_brace_parsed)
12927 location_t here = c_parser_peek_token (parser)->location;
12928 stmt = c_begin_compound_stmt (true);
12929 c_parser_compound_statement_nostart (parser);
12930 add_stmt (c_end_compound_stmt (here, stmt, true));
12932 else
12933 add_stmt (c_parser_c99_block_statement (parser));
12934 if (c_cont_label)
12936 tree t = build1 (LABEL_EXPR, void_type_node, c_cont_label);
12937 SET_EXPR_LOCATION (t, loc);
12938 add_stmt (t);
12941 body = pop_stmt_list (body);
12942 c_break_label = save_break;
12943 c_cont_label = save_cont;
12945 while (nbraces)
12947 if (c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
12949 c_parser_consume_token (parser);
12950 nbraces--;
12952 else if (c_parser_next_token_is (parser, CPP_SEMICOLON))
12953 c_parser_consume_token (parser);
12954 else
12956 c_parser_error (parser, "collapsed loops not perfectly nested");
12957 while (nbraces)
12959 location_t here = c_parser_peek_token (parser)->location;
12960 stmt = c_begin_compound_stmt (true);
12961 add_stmt (body);
12962 c_parser_compound_statement_nostart (parser);
12963 body = c_end_compound_stmt (here, stmt, true);
12964 nbraces--;
12966 goto pop_scopes;
12970 /* Only bother calling c_finish_omp_for if we haven't already generated
12971 an error from the initialization parsing. */
12972 if (!fail)
12974 stmt = c_finish_omp_for (loc, code, declv, initv, condv,
12975 incrv, body, NULL);
12976 if (stmt)
12978 if (cclauses != NULL
12979 && cclauses[C_OMP_CLAUSE_SPLIT_PARALLEL] != NULL)
12981 gcc_assert (code != OACC_LOOP);
12982 tree *c;
12983 for (c = &cclauses[C_OMP_CLAUSE_SPLIT_PARALLEL]; *c ; )
12984 if (OMP_CLAUSE_CODE (*c) != OMP_CLAUSE_FIRSTPRIVATE
12985 && OMP_CLAUSE_CODE (*c) != OMP_CLAUSE_LASTPRIVATE)
12986 c = &OMP_CLAUSE_CHAIN (*c);
12987 else
12989 for (i = 0; i < collapse; i++)
12990 if (TREE_VEC_ELT (declv, i) == OMP_CLAUSE_DECL (*c))
12991 break;
12992 if (i == collapse)
12993 c = &OMP_CLAUSE_CHAIN (*c);
12994 else if (OMP_CLAUSE_CODE (*c) == OMP_CLAUSE_FIRSTPRIVATE)
12996 error_at (loc,
12997 "iteration variable %qD should not be firstprivate",
12998 OMP_CLAUSE_DECL (*c));
12999 *c = OMP_CLAUSE_CHAIN (*c);
13001 else
13003 /* Copy lastprivate (decl) clause to OMP_FOR_CLAUSES,
13004 change it to shared (decl) in
13005 OMP_PARALLEL_CLAUSES. */
13006 tree l = build_omp_clause (OMP_CLAUSE_LOCATION (*c),
13007 OMP_CLAUSE_LASTPRIVATE);
13008 OMP_CLAUSE_DECL (l) = OMP_CLAUSE_DECL (*c);
13009 if (code == OMP_SIMD)
13011 OMP_CLAUSE_CHAIN (l)
13012 = cclauses[C_OMP_CLAUSE_SPLIT_FOR];
13013 cclauses[C_OMP_CLAUSE_SPLIT_FOR] = l;
13015 else
13017 OMP_CLAUSE_CHAIN (l) = clauses;
13018 clauses = l;
13020 OMP_CLAUSE_SET_CODE (*c, OMP_CLAUSE_SHARED);
13024 OMP_FOR_CLAUSES (stmt) = clauses;
13026 ret = stmt;
13028 pop_scopes:
13029 while (!for_block->is_empty ())
13031 /* FIXME diagnostics: LOC below should be the actual location of
13032 this particular for block. We need to build a list of
13033 locations to go along with FOR_BLOCK. */
13034 stmt = c_end_compound_stmt (loc, for_block->pop (), true);
13035 add_stmt (stmt);
13037 release_tree_vector (for_block);
13038 return ret;
13041 /* Helper function for OpenMP parsing, split clauses and call
13042 finish_omp_clauses on each of the set of clauses afterwards. */
13044 static void
13045 omp_split_clauses (location_t loc, enum tree_code code,
13046 omp_clause_mask mask, tree clauses, tree *cclauses)
13048 int i;
13049 c_omp_split_clauses (loc, code, mask, clauses, cclauses);
13050 for (i = 0; i < C_OMP_CLAUSE_SPLIT_COUNT; i++)
13051 if (cclauses[i])
13052 cclauses[i] = c_finish_omp_clauses (cclauses[i]);
13055 /* OpenMP 4.0:
13056 #pragma omp simd simd-clause[optseq] new-line
13057 for-loop
13059 LOC is the location of the #pragma token.
13062 #define OMP_SIMD_CLAUSE_MASK \
13063 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SAFELEN) \
13064 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LINEAR) \
13065 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_ALIGNED) \
13066 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
13067 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
13068 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_REDUCTION) \
13069 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COLLAPSE))
13071 static tree
13072 c_parser_omp_simd (location_t loc, c_parser *parser,
13073 char *p_name, omp_clause_mask mask, tree *cclauses)
13075 tree block, clauses, ret;
13077 strcat (p_name, " simd");
13078 mask |= OMP_SIMD_CLAUSE_MASK;
13079 mask &= ~(OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_ORDERED);
13081 clauses = c_parser_omp_all_clauses (parser, mask, p_name, cclauses == NULL);
13082 if (cclauses)
13084 omp_split_clauses (loc, OMP_SIMD, mask, clauses, cclauses);
13085 clauses = cclauses[C_OMP_CLAUSE_SPLIT_SIMD];
13088 block = c_begin_compound_stmt (true);
13089 ret = c_parser_omp_for_loop (loc, parser, OMP_SIMD, clauses, cclauses);
13090 block = c_end_compound_stmt (loc, block, true);
13091 add_stmt (block);
13093 return ret;
13096 /* OpenMP 2.5:
13097 #pragma omp for for-clause[optseq] new-line
13098 for-loop
13100 OpenMP 4.0:
13101 #pragma omp for simd for-simd-clause[optseq] new-line
13102 for-loop
13104 LOC is the location of the #pragma token.
13107 #define OMP_FOR_CLAUSE_MASK \
13108 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
13109 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
13110 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
13111 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_REDUCTION) \
13112 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_ORDERED) \
13113 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SCHEDULE) \
13114 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COLLAPSE) \
13115 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT))
13117 static tree
13118 c_parser_omp_for (location_t loc, c_parser *parser,
13119 char *p_name, omp_clause_mask mask, tree *cclauses)
13121 tree block, clauses, ret;
13123 strcat (p_name, " for");
13124 mask |= OMP_FOR_CLAUSE_MASK;
13125 if (cclauses)
13126 mask &= ~(OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT);
13128 if (c_parser_next_token_is (parser, CPP_NAME))
13130 const char *p = IDENTIFIER_POINTER (c_parser_peek_token (parser)->value);
13132 if (strcmp (p, "simd") == 0)
13134 tree cclauses_buf[C_OMP_CLAUSE_SPLIT_COUNT];
13135 if (cclauses == NULL)
13136 cclauses = cclauses_buf;
13138 c_parser_consume_token (parser);
13139 if (!flag_openmp) /* flag_openmp_simd */
13140 return c_parser_omp_simd (loc, parser, p_name, mask, cclauses);
13141 block = c_begin_compound_stmt (true);
13142 ret = c_parser_omp_simd (loc, parser, p_name, mask, cclauses);
13143 block = c_end_compound_stmt (loc, block, true);
13144 if (ret == NULL_TREE)
13145 return ret;
13146 ret = make_node (OMP_FOR);
13147 TREE_TYPE (ret) = void_type_node;
13148 OMP_FOR_BODY (ret) = block;
13149 OMP_FOR_CLAUSES (ret) = cclauses[C_OMP_CLAUSE_SPLIT_FOR];
13150 SET_EXPR_LOCATION (ret, loc);
13151 add_stmt (ret);
13152 return ret;
13155 if (!flag_openmp) /* flag_openmp_simd */
13157 c_parser_skip_to_pragma_eol (parser);
13158 return NULL_TREE;
13161 clauses = c_parser_omp_all_clauses (parser, mask, p_name, cclauses == NULL);
13162 if (cclauses)
13164 omp_split_clauses (loc, OMP_FOR, mask, clauses, cclauses);
13165 clauses = cclauses[C_OMP_CLAUSE_SPLIT_FOR];
13168 block = c_begin_compound_stmt (true);
13169 ret = c_parser_omp_for_loop (loc, parser, OMP_FOR, clauses, cclauses);
13170 block = c_end_compound_stmt (loc, block, true);
13171 add_stmt (block);
13173 return ret;
13176 /* OpenMP 2.5:
13177 # pragma omp master new-line
13178 structured-block
13180 LOC is the location of the #pragma token.
13183 static tree
13184 c_parser_omp_master (location_t loc, c_parser *parser)
13186 c_parser_skip_to_pragma_eol (parser);
13187 return c_finish_omp_master (loc, c_parser_omp_structured_block (parser));
13190 /* OpenMP 2.5:
13191 # pragma omp ordered new-line
13192 structured-block
13194 LOC is the location of the #pragma itself.
13197 static tree
13198 c_parser_omp_ordered (location_t loc, c_parser *parser)
13200 c_parser_skip_to_pragma_eol (parser);
13201 return c_finish_omp_ordered (loc, c_parser_omp_structured_block (parser));
13204 /* OpenMP 2.5:
13206 section-scope:
13207 { section-sequence }
13209 section-sequence:
13210 section-directive[opt] structured-block
13211 section-sequence section-directive structured-block
13213 SECTIONS_LOC is the location of the #pragma omp sections. */
13215 static tree
13216 c_parser_omp_sections_scope (location_t sections_loc, c_parser *parser)
13218 tree stmt, substmt;
13219 bool error_suppress = false;
13220 location_t loc;
13222 loc = c_parser_peek_token (parser)->location;
13223 if (!c_parser_require (parser, CPP_OPEN_BRACE, "expected %<{%>"))
13225 /* Avoid skipping until the end of the block. */
13226 parser->error = false;
13227 return NULL_TREE;
13230 stmt = push_stmt_list ();
13232 if (c_parser_peek_token (parser)->pragma_kind != PRAGMA_OMP_SECTION)
13234 substmt = c_parser_omp_structured_block (parser);
13235 substmt = build1 (OMP_SECTION, void_type_node, substmt);
13236 SET_EXPR_LOCATION (substmt, loc);
13237 add_stmt (substmt);
13240 while (1)
13242 if (c_parser_next_token_is (parser, CPP_CLOSE_BRACE))
13243 break;
13244 if (c_parser_next_token_is (parser, CPP_EOF))
13245 break;
13247 loc = c_parser_peek_token (parser)->location;
13248 if (c_parser_peek_token (parser)->pragma_kind == PRAGMA_OMP_SECTION)
13250 c_parser_consume_pragma (parser);
13251 c_parser_skip_to_pragma_eol (parser);
13252 error_suppress = false;
13254 else if (!error_suppress)
13256 error_at (loc, "expected %<#pragma omp section%> or %<}%>");
13257 error_suppress = true;
13260 substmt = c_parser_omp_structured_block (parser);
13261 substmt = build1 (OMP_SECTION, void_type_node, substmt);
13262 SET_EXPR_LOCATION (substmt, loc);
13263 add_stmt (substmt);
13265 c_parser_skip_until_found (parser, CPP_CLOSE_BRACE,
13266 "expected %<#pragma omp section%> or %<}%>");
13268 substmt = pop_stmt_list (stmt);
13270 stmt = make_node (OMP_SECTIONS);
13271 SET_EXPR_LOCATION (stmt, sections_loc);
13272 TREE_TYPE (stmt) = void_type_node;
13273 OMP_SECTIONS_BODY (stmt) = substmt;
13275 return add_stmt (stmt);
13278 /* OpenMP 2.5:
13279 # pragma omp sections sections-clause[optseq] newline
13280 sections-scope
13282 LOC is the location of the #pragma token.
13285 #define OMP_SECTIONS_CLAUSE_MASK \
13286 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
13287 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
13288 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
13289 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_REDUCTION) \
13290 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT))
13292 static tree
13293 c_parser_omp_sections (location_t loc, c_parser *parser,
13294 char *p_name, omp_clause_mask mask, tree *cclauses)
13296 tree block, clauses, ret;
13298 strcat (p_name, " sections");
13299 mask |= OMP_SECTIONS_CLAUSE_MASK;
13300 if (cclauses)
13301 mask &= ~(OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT);
13303 clauses = c_parser_omp_all_clauses (parser, mask, p_name, cclauses == NULL);
13304 if (cclauses)
13306 omp_split_clauses (loc, OMP_SECTIONS, mask, clauses, cclauses);
13307 clauses = cclauses[C_OMP_CLAUSE_SPLIT_SECTIONS];
13310 block = c_begin_compound_stmt (true);
13311 ret = c_parser_omp_sections_scope (loc, parser);
13312 if (ret)
13313 OMP_SECTIONS_CLAUSES (ret) = clauses;
13314 block = c_end_compound_stmt (loc, block, true);
13315 add_stmt (block);
13317 return ret;
13320 /* OpenMP 2.5:
13321 # pragma omp parallel parallel-clause[optseq] new-line
13322 structured-block
13323 # pragma omp parallel for parallel-for-clause[optseq] new-line
13324 structured-block
13325 # pragma omp parallel sections parallel-sections-clause[optseq] new-line
13326 structured-block
13328 OpenMP 4.0:
13329 # pragma omp parallel for simd parallel-for-simd-clause[optseq] new-line
13330 structured-block
13332 LOC is the location of the #pragma token.
13335 #define OMP_PARALLEL_CLAUSE_MASK \
13336 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
13337 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
13338 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
13339 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEFAULT) \
13340 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SHARED) \
13341 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COPYIN) \
13342 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_REDUCTION) \
13343 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NUM_THREADS) \
13344 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PROC_BIND))
13346 static tree
13347 c_parser_omp_parallel (location_t loc, c_parser *parser,
13348 char *p_name, omp_clause_mask mask, tree *cclauses)
13350 tree stmt, clauses, block;
13352 strcat (p_name, " parallel");
13353 mask |= OMP_PARALLEL_CLAUSE_MASK;
13355 if (c_parser_next_token_is_keyword (parser, RID_FOR))
13357 tree cclauses_buf[C_OMP_CLAUSE_SPLIT_COUNT];
13358 if (cclauses == NULL)
13359 cclauses = cclauses_buf;
13361 c_parser_consume_token (parser);
13362 if (!flag_openmp) /* flag_openmp_simd */
13363 return c_parser_omp_for (loc, parser, p_name, mask, cclauses);
13364 block = c_begin_omp_parallel ();
13365 tree ret = c_parser_omp_for (loc, parser, p_name, mask, cclauses);
13366 stmt
13367 = c_finish_omp_parallel (loc, cclauses[C_OMP_CLAUSE_SPLIT_PARALLEL],
13368 block);
13369 if (ret == NULL_TREE)
13370 return ret;
13371 OMP_PARALLEL_COMBINED (stmt) = 1;
13372 return stmt;
13374 else if (cclauses)
13376 error_at (loc, "expected %<for%> after %qs", p_name);
13377 c_parser_skip_to_pragma_eol (parser);
13378 return NULL_TREE;
13380 else if (!flag_openmp) /* flag_openmp_simd */
13382 c_parser_skip_to_pragma_eol (parser);
13383 return NULL_TREE;
13385 else if (c_parser_next_token_is (parser, CPP_NAME))
13387 const char *p = IDENTIFIER_POINTER (c_parser_peek_token (parser)->value);
13388 if (strcmp (p, "sections") == 0)
13390 tree cclauses_buf[C_OMP_CLAUSE_SPLIT_COUNT];
13391 if (cclauses == NULL)
13392 cclauses = cclauses_buf;
13394 c_parser_consume_token (parser);
13395 block = c_begin_omp_parallel ();
13396 c_parser_omp_sections (loc, parser, p_name, mask, cclauses);
13397 stmt = c_finish_omp_parallel (loc,
13398 cclauses[C_OMP_CLAUSE_SPLIT_PARALLEL],
13399 block);
13400 OMP_PARALLEL_COMBINED (stmt) = 1;
13401 return stmt;
13405 clauses = c_parser_omp_all_clauses (parser, mask, p_name, cclauses == NULL);
13407 block = c_begin_omp_parallel ();
13408 c_parser_statement (parser);
13409 stmt = c_finish_omp_parallel (loc, clauses, block);
13411 return stmt;
13414 /* OpenMP 2.5:
13415 # pragma omp single single-clause[optseq] new-line
13416 structured-block
13418 LOC is the location of the #pragma.
13421 #define OMP_SINGLE_CLAUSE_MASK \
13422 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
13423 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
13424 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COPYPRIVATE) \
13425 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT))
13427 static tree
13428 c_parser_omp_single (location_t loc, c_parser *parser)
13430 tree stmt = make_node (OMP_SINGLE);
13431 SET_EXPR_LOCATION (stmt, loc);
13432 TREE_TYPE (stmt) = void_type_node;
13434 OMP_SINGLE_CLAUSES (stmt)
13435 = c_parser_omp_all_clauses (parser, OMP_SINGLE_CLAUSE_MASK,
13436 "#pragma omp single");
13437 OMP_SINGLE_BODY (stmt) = c_parser_omp_structured_block (parser);
13439 return add_stmt (stmt);
13442 /* OpenMP 3.0:
13443 # pragma omp task task-clause[optseq] new-line
13445 LOC is the location of the #pragma.
13448 #define OMP_TASK_CLAUSE_MASK \
13449 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
13450 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_UNTIED) \
13451 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEFAULT) \
13452 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
13453 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
13454 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SHARED) \
13455 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FINAL) \
13456 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MERGEABLE) \
13457 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEPEND))
13459 static tree
13460 c_parser_omp_task (location_t loc, c_parser *parser)
13462 tree clauses, block;
13464 clauses = c_parser_omp_all_clauses (parser, OMP_TASK_CLAUSE_MASK,
13465 "#pragma omp task");
13467 block = c_begin_omp_task ();
13468 c_parser_statement (parser);
13469 return c_finish_omp_task (loc, clauses, block);
13472 /* OpenMP 3.0:
13473 # pragma omp taskwait new-line
13476 static void
13477 c_parser_omp_taskwait (c_parser *parser)
13479 location_t loc = c_parser_peek_token (parser)->location;
13480 c_parser_consume_pragma (parser);
13481 c_parser_skip_to_pragma_eol (parser);
13483 c_finish_omp_taskwait (loc);
13486 /* OpenMP 3.1:
13487 # pragma omp taskyield new-line
13490 static void
13491 c_parser_omp_taskyield (c_parser *parser)
13493 location_t loc = c_parser_peek_token (parser)->location;
13494 c_parser_consume_pragma (parser);
13495 c_parser_skip_to_pragma_eol (parser);
13497 c_finish_omp_taskyield (loc);
13500 /* OpenMP 4.0:
13501 # pragma omp taskgroup new-line
13504 static tree
13505 c_parser_omp_taskgroup (c_parser *parser)
13507 location_t loc = c_parser_peek_token (parser)->location;
13508 c_parser_skip_to_pragma_eol (parser);
13509 return c_finish_omp_taskgroup (loc, c_parser_omp_structured_block (parser));
13512 /* OpenMP 4.0:
13513 # pragma omp cancel cancel-clause[optseq] new-line
13515 LOC is the location of the #pragma.
13518 #define OMP_CANCEL_CLAUSE_MASK \
13519 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PARALLEL) \
13520 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FOR) \
13521 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SECTIONS) \
13522 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_TASKGROUP) \
13523 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF))
13525 static void
13526 c_parser_omp_cancel (c_parser *parser)
13528 location_t loc = c_parser_peek_token (parser)->location;
13530 c_parser_consume_pragma (parser);
13531 tree clauses = c_parser_omp_all_clauses (parser, OMP_CANCEL_CLAUSE_MASK,
13532 "#pragma omp cancel");
13534 c_finish_omp_cancel (loc, clauses);
13537 /* OpenMP 4.0:
13538 # pragma omp cancellation point cancelpt-clause[optseq] new-line
13540 LOC is the location of the #pragma.
13543 #define OMP_CANCELLATION_POINT_CLAUSE_MASK \
13544 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PARALLEL) \
13545 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FOR) \
13546 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SECTIONS) \
13547 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_TASKGROUP))
13549 static void
13550 c_parser_omp_cancellation_point (c_parser *parser)
13552 location_t loc = c_parser_peek_token (parser)->location;
13553 tree clauses;
13554 bool point_seen = false;
13556 c_parser_consume_pragma (parser);
13557 if (c_parser_next_token_is (parser, CPP_NAME))
13559 const char *p = IDENTIFIER_POINTER (c_parser_peek_token (parser)->value);
13560 if (strcmp (p, "point") == 0)
13562 c_parser_consume_token (parser);
13563 point_seen = true;
13566 if (!point_seen)
13568 c_parser_error (parser, "expected %<point%>");
13569 c_parser_skip_to_pragma_eol (parser);
13570 return;
13573 clauses
13574 = c_parser_omp_all_clauses (parser, OMP_CANCELLATION_POINT_CLAUSE_MASK,
13575 "#pragma omp cancellation point");
13577 c_finish_omp_cancellation_point (loc, clauses);
13580 /* OpenMP 4.0:
13581 #pragma omp distribute distribute-clause[optseq] new-line
13582 for-loop */
13584 #define OMP_DISTRIBUTE_CLAUSE_MASK \
13585 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
13586 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
13587 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DIST_SCHEDULE)\
13588 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COLLAPSE))
13590 static tree
13591 c_parser_omp_distribute (location_t loc, c_parser *parser,
13592 char *p_name, omp_clause_mask mask, tree *cclauses)
13594 tree clauses, block, ret;
13596 strcat (p_name, " distribute");
13597 mask |= OMP_DISTRIBUTE_CLAUSE_MASK;
13599 if (c_parser_next_token_is (parser, CPP_NAME))
13601 const char *p = IDENTIFIER_POINTER (c_parser_peek_token (parser)->value);
13602 bool simd = false;
13603 bool parallel = false;
13605 if (strcmp (p, "simd") == 0)
13606 simd = true;
13607 else
13608 parallel = strcmp (p, "parallel") == 0;
13609 if (parallel || simd)
13611 tree cclauses_buf[C_OMP_CLAUSE_SPLIT_COUNT];
13612 if (cclauses == NULL)
13613 cclauses = cclauses_buf;
13614 c_parser_consume_token (parser);
13615 if (!flag_openmp) /* flag_openmp_simd */
13617 if (simd)
13618 return c_parser_omp_simd (loc, parser, p_name, mask, cclauses);
13619 else
13620 return c_parser_omp_parallel (loc, parser, p_name, mask,
13621 cclauses);
13623 block = c_begin_compound_stmt (true);
13624 if (simd)
13625 ret = c_parser_omp_simd (loc, parser, p_name, mask, cclauses);
13626 else
13627 ret = c_parser_omp_parallel (loc, parser, p_name, mask, cclauses);
13628 block = c_end_compound_stmt (loc, block, true);
13629 if (ret == NULL)
13630 return ret;
13631 ret = make_node (OMP_DISTRIBUTE);
13632 TREE_TYPE (ret) = void_type_node;
13633 OMP_FOR_BODY (ret) = block;
13634 OMP_FOR_CLAUSES (ret) = cclauses[C_OMP_CLAUSE_SPLIT_DISTRIBUTE];
13635 SET_EXPR_LOCATION (ret, loc);
13636 add_stmt (ret);
13637 return ret;
13640 if (!flag_openmp) /* flag_openmp_simd */
13642 c_parser_skip_to_pragma_eol (parser);
13643 return NULL_TREE;
13646 clauses = c_parser_omp_all_clauses (parser, mask, p_name, cclauses == NULL);
13647 if (cclauses)
13649 omp_split_clauses (loc, OMP_DISTRIBUTE, mask, clauses, cclauses);
13650 clauses = cclauses[C_OMP_CLAUSE_SPLIT_DISTRIBUTE];
13653 block = c_begin_compound_stmt (true);
13654 ret = c_parser_omp_for_loop (loc, parser, OMP_DISTRIBUTE, clauses, NULL);
13655 block = c_end_compound_stmt (loc, block, true);
13656 add_stmt (block);
13658 return ret;
13661 /* OpenMP 4.0:
13662 # pragma omp teams teams-clause[optseq] new-line
13663 structured-block */
13665 #define OMP_TEAMS_CLAUSE_MASK \
13666 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
13667 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
13668 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SHARED) \
13669 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_REDUCTION) \
13670 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NUM_TEAMS) \
13671 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_THREAD_LIMIT) \
13672 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEFAULT))
13674 static tree
13675 c_parser_omp_teams (location_t loc, c_parser *parser,
13676 char *p_name, omp_clause_mask mask, tree *cclauses)
13678 tree clauses, block, ret;
13680 strcat (p_name, " teams");
13681 mask |= OMP_TEAMS_CLAUSE_MASK;
13683 if (c_parser_next_token_is (parser, CPP_NAME))
13685 const char *p = IDENTIFIER_POINTER (c_parser_peek_token (parser)->value);
13686 if (strcmp (p, "distribute") == 0)
13688 tree cclauses_buf[C_OMP_CLAUSE_SPLIT_COUNT];
13689 if (cclauses == NULL)
13690 cclauses = cclauses_buf;
13692 c_parser_consume_token (parser);
13693 if (!flag_openmp) /* flag_openmp_simd */
13694 return c_parser_omp_distribute (loc, parser, p_name, mask, cclauses);
13695 block = c_begin_compound_stmt (true);
13696 ret = c_parser_omp_distribute (loc, parser, p_name, mask, cclauses);
13697 block = c_end_compound_stmt (loc, block, true);
13698 if (ret == NULL)
13699 return ret;
13700 clauses = cclauses[C_OMP_CLAUSE_SPLIT_TEAMS];
13701 ret = make_node (OMP_TEAMS);
13702 TREE_TYPE (ret) = void_type_node;
13703 OMP_TEAMS_CLAUSES (ret) = clauses;
13704 OMP_TEAMS_BODY (ret) = block;
13705 return add_stmt (ret);
13708 if (!flag_openmp) /* flag_openmp_simd */
13710 c_parser_skip_to_pragma_eol (parser);
13711 return NULL_TREE;
13714 clauses = c_parser_omp_all_clauses (parser, mask, p_name, cclauses == NULL);
13715 if (cclauses)
13717 omp_split_clauses (loc, OMP_TEAMS, mask, clauses, cclauses);
13718 clauses = cclauses[C_OMP_CLAUSE_SPLIT_TEAMS];
13721 tree stmt = make_node (OMP_TEAMS);
13722 TREE_TYPE (stmt) = void_type_node;
13723 OMP_TEAMS_CLAUSES (stmt) = clauses;
13724 OMP_TEAMS_BODY (stmt) = c_parser_omp_structured_block (parser);
13726 return add_stmt (stmt);
13729 /* OpenMP 4.0:
13730 # pragma omp target data target-data-clause[optseq] new-line
13731 structured-block */
13733 #define OMP_TARGET_DATA_CLAUSE_MASK \
13734 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEVICE) \
13735 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MAP) \
13736 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF))
13738 static tree
13739 c_parser_omp_target_data (location_t loc, c_parser *parser)
13741 tree stmt = make_node (OMP_TARGET_DATA);
13742 TREE_TYPE (stmt) = void_type_node;
13744 OMP_TARGET_DATA_CLAUSES (stmt)
13745 = c_parser_omp_all_clauses (parser, OMP_TARGET_DATA_CLAUSE_MASK,
13746 "#pragma omp target data");
13747 keep_next_level ();
13748 tree block = c_begin_compound_stmt (true);
13749 add_stmt (c_parser_omp_structured_block (parser));
13750 OMP_TARGET_DATA_BODY (stmt) = c_end_compound_stmt (loc, block, true);
13752 SET_EXPR_LOCATION (stmt, loc);
13753 return add_stmt (stmt);
13756 /* OpenMP 4.0:
13757 # pragma omp target update target-update-clause[optseq] new-line */
13759 #define OMP_TARGET_UPDATE_CLAUSE_MASK \
13760 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FROM) \
13761 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_TO) \
13762 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEVICE) \
13763 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF))
13765 static bool
13766 c_parser_omp_target_update (location_t loc, c_parser *parser,
13767 enum pragma_context context)
13769 if (context == pragma_stmt)
13771 error_at (loc,
13772 "%<#pragma omp target update%> may only be "
13773 "used in compound statements");
13774 c_parser_skip_to_pragma_eol (parser);
13775 return false;
13778 tree clauses
13779 = c_parser_omp_all_clauses (parser, OMP_TARGET_UPDATE_CLAUSE_MASK,
13780 "#pragma omp target update");
13781 if (find_omp_clause (clauses, OMP_CLAUSE_TO) == NULL_TREE
13782 && find_omp_clause (clauses, OMP_CLAUSE_FROM) == NULL_TREE)
13784 error_at (loc,
13785 "%<#pragma omp target update must contain at least one "
13786 "%<from%> or %<to%> clauses");
13787 return false;
13790 tree stmt = make_node (OMP_TARGET_UPDATE);
13791 TREE_TYPE (stmt) = void_type_node;
13792 OMP_TARGET_UPDATE_CLAUSES (stmt) = clauses;
13793 SET_EXPR_LOCATION (stmt, loc);
13794 add_stmt (stmt);
13795 return false;
13798 /* OpenMP 4.0:
13799 # pragma omp target target-clause[optseq] new-line
13800 structured-block */
13802 #define OMP_TARGET_CLAUSE_MASK \
13803 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEVICE) \
13804 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MAP) \
13805 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF))
13807 static bool
13808 c_parser_omp_target (c_parser *parser, enum pragma_context context)
13810 location_t loc = c_parser_peek_token (parser)->location;
13811 c_parser_consume_pragma (parser);
13813 if (context != pragma_stmt && context != pragma_compound)
13815 c_parser_error (parser, "expected declaration specifiers");
13816 c_parser_skip_to_pragma_eol (parser);
13817 return false;
13820 if (c_parser_next_token_is (parser, CPP_NAME))
13822 const char *p = IDENTIFIER_POINTER (c_parser_peek_token (parser)->value);
13824 if (strcmp (p, "teams") == 0)
13826 tree cclauses[C_OMP_CLAUSE_SPLIT_COUNT];
13827 char p_name[sizeof ("#pragma omp target teams distribute "
13828 "parallel for simd")];
13830 c_parser_consume_token (parser);
13831 strcpy (p_name, "#pragma omp target");
13832 if (!flag_openmp) /* flag_openmp_simd */
13834 tree stmt = c_parser_omp_teams (loc, parser, p_name,
13835 OMP_TARGET_CLAUSE_MASK,
13836 cclauses);
13837 return stmt != NULL_TREE;
13839 keep_next_level ();
13840 tree block = c_begin_compound_stmt (true);
13841 tree ret = c_parser_omp_teams (loc, parser, p_name,
13842 OMP_TARGET_CLAUSE_MASK, cclauses);
13843 block = c_end_compound_stmt (loc, block, true);
13844 if (ret == NULL_TREE)
13845 return false;
13846 tree stmt = make_node (OMP_TARGET);
13847 TREE_TYPE (stmt) = void_type_node;
13848 OMP_TARGET_CLAUSES (stmt) = cclauses[C_OMP_CLAUSE_SPLIT_TARGET];
13849 OMP_TARGET_BODY (stmt) = block;
13850 add_stmt (stmt);
13851 return true;
13853 else if (!flag_openmp) /* flag_openmp_simd */
13855 c_parser_skip_to_pragma_eol (parser);
13856 return false;
13858 else if (strcmp (p, "data") == 0)
13860 c_parser_consume_token (parser);
13861 c_parser_omp_target_data (loc, parser);
13862 return true;
13864 else if (strcmp (p, "update") == 0)
13866 c_parser_consume_token (parser);
13867 return c_parser_omp_target_update (loc, parser, context);
13871 tree stmt = make_node (OMP_TARGET);
13872 TREE_TYPE (stmt) = void_type_node;
13874 OMP_TARGET_CLAUSES (stmt)
13875 = c_parser_omp_all_clauses (parser, OMP_TARGET_CLAUSE_MASK,
13876 "#pragma omp target");
13877 keep_next_level ();
13878 tree block = c_begin_compound_stmt (true);
13879 add_stmt (c_parser_omp_structured_block (parser));
13880 OMP_TARGET_BODY (stmt) = c_end_compound_stmt (loc, block, true);
13882 SET_EXPR_LOCATION (stmt, loc);
13883 add_stmt (stmt);
13884 return true;
13887 /* OpenMP 4.0:
13888 # pragma omp declare simd declare-simd-clauses[optseq] new-line */
13890 #define OMP_DECLARE_SIMD_CLAUSE_MASK \
13891 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SIMDLEN) \
13892 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LINEAR) \
13893 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_ALIGNED) \
13894 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_UNIFORM) \
13895 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_INBRANCH) \
13896 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOTINBRANCH))
13898 static void
13899 c_parser_omp_declare_simd (c_parser *parser, enum pragma_context context)
13901 vec<c_token> clauses = vNULL;
13902 while (c_parser_next_token_is_not (parser, CPP_PRAGMA_EOL))
13904 c_token *token = c_parser_peek_token (parser);
13905 if (token->type == CPP_EOF)
13907 c_parser_skip_to_pragma_eol (parser);
13908 clauses.release ();
13909 return;
13911 clauses.safe_push (*token);
13912 c_parser_consume_token (parser);
13914 clauses.safe_push (*c_parser_peek_token (parser));
13915 c_parser_skip_to_pragma_eol (parser);
13917 while (c_parser_next_token_is (parser, CPP_PRAGMA))
13919 if (c_parser_peek_token (parser)->pragma_kind
13920 != PRAGMA_OMP_DECLARE_REDUCTION
13921 || c_parser_peek_2nd_token (parser)->type != CPP_NAME
13922 || strcmp (IDENTIFIER_POINTER
13923 (c_parser_peek_2nd_token (parser)->value),
13924 "simd") != 0)
13926 c_parser_error (parser,
13927 "%<#pragma omp declare simd%> must be followed by "
13928 "function declaration or definition or another "
13929 "%<#pragma omp declare simd%>");
13930 clauses.release ();
13931 return;
13933 c_parser_consume_pragma (parser);
13934 while (c_parser_next_token_is_not (parser, CPP_PRAGMA_EOL))
13936 c_token *token = c_parser_peek_token (parser);
13937 if (token->type == CPP_EOF)
13939 c_parser_skip_to_pragma_eol (parser);
13940 clauses.release ();
13941 return;
13943 clauses.safe_push (*token);
13944 c_parser_consume_token (parser);
13946 clauses.safe_push (*c_parser_peek_token (parser));
13947 c_parser_skip_to_pragma_eol (parser);
13950 /* Make sure nothing tries to read past the end of the tokens. */
13951 c_token eof_token;
13952 memset (&eof_token, 0, sizeof (eof_token));
13953 eof_token.type = CPP_EOF;
13954 clauses.safe_push (eof_token);
13955 clauses.safe_push (eof_token);
13957 switch (context)
13959 case pragma_external:
13960 if (c_parser_next_token_is (parser, CPP_KEYWORD)
13961 && c_parser_peek_token (parser)->keyword == RID_EXTENSION)
13963 int ext = disable_extension_diagnostics ();
13965 c_parser_consume_token (parser);
13966 while (c_parser_next_token_is (parser, CPP_KEYWORD)
13967 && c_parser_peek_token (parser)->keyword == RID_EXTENSION);
13968 c_parser_declaration_or_fndef (parser, true, true, true, false, true,
13969 NULL, clauses);
13970 restore_extension_diagnostics (ext);
13972 else
13973 c_parser_declaration_or_fndef (parser, true, true, true, false, true,
13974 NULL, clauses);
13975 break;
13976 case pragma_struct:
13977 case pragma_param:
13978 c_parser_error (parser, "%<#pragma omp declare simd%> must be followed by "
13979 "function declaration or definition");
13980 break;
13981 case pragma_compound:
13982 case pragma_stmt:
13983 if (c_parser_next_token_is (parser, CPP_KEYWORD)
13984 && c_parser_peek_token (parser)->keyword == RID_EXTENSION)
13986 int ext = disable_extension_diagnostics ();
13988 c_parser_consume_token (parser);
13989 while (c_parser_next_token_is (parser, CPP_KEYWORD)
13990 && c_parser_peek_token (parser)->keyword == RID_EXTENSION);
13991 if (c_parser_next_tokens_start_declaration (parser))
13993 c_parser_declaration_or_fndef (parser, true, true, true, true,
13994 true, NULL, clauses);
13995 restore_extension_diagnostics (ext);
13996 break;
13998 restore_extension_diagnostics (ext);
14000 else if (c_parser_next_tokens_start_declaration (parser))
14002 c_parser_declaration_or_fndef (parser, true, true, true, true, true,
14003 NULL, clauses);
14004 break;
14006 c_parser_error (parser, "%<#pragma omp declare simd%> must be followed by "
14007 "function declaration or definition");
14008 break;
14009 default:
14010 gcc_unreachable ();
14012 clauses.release ();
14015 /* Finalize #pragma omp declare simd clauses after FNDECL has been parsed,
14016 and put that into "omp declare simd" attribute. */
14018 static void
14019 c_finish_omp_declare_simd (c_parser *parser, tree fndecl, tree parms,
14020 vec<c_token> clauses)
14022 if (flag_cilkplus
14023 && clauses.exists () && !vec_safe_is_empty (parser->cilk_simd_fn_tokens))
14025 error ("%<#pragma omp declare simd%> cannot be used in the same "
14026 "function marked as a Cilk Plus SIMD-enabled function");
14027 vec_free (parser->cilk_simd_fn_tokens);
14028 return;
14031 /* Normally first token is CPP_NAME "simd". CPP_EOF there indicates
14032 error has been reported and CPP_PRAGMA that c_finish_omp_declare_simd
14033 has already processed the tokens. */
14034 if (clauses.exists () && clauses[0].type == CPP_EOF)
14035 return;
14036 if (fndecl == NULL_TREE || TREE_CODE (fndecl) != FUNCTION_DECL)
14038 error ("%<#pragma omp declare simd%> not immediately followed by "
14039 "a function declaration or definition");
14040 clauses[0].type = CPP_EOF;
14041 return;
14043 if (clauses.exists () && clauses[0].type != CPP_NAME)
14045 error_at (DECL_SOURCE_LOCATION (fndecl),
14046 "%<#pragma omp declare simd%> not immediately followed by "
14047 "a single function declaration or definition");
14048 clauses[0].type = CPP_EOF;
14049 return;
14052 if (parms == NULL_TREE)
14053 parms = DECL_ARGUMENTS (fndecl);
14055 unsigned int tokens_avail = parser->tokens_avail;
14056 gcc_assert (parser->tokens == &parser->tokens_buf[0]);
14057 bool is_cilkplus_cilk_simd_fn = false;
14059 if (flag_cilkplus && !vec_safe_is_empty (parser->cilk_simd_fn_tokens))
14061 parser->tokens = parser->cilk_simd_fn_tokens->address ();
14062 parser->tokens_avail = vec_safe_length (parser->cilk_simd_fn_tokens);
14063 is_cilkplus_cilk_simd_fn = true;
14065 else
14067 parser->tokens = clauses.address ();
14068 parser->tokens_avail = clauses.length ();
14071 /* c_parser_omp_declare_simd pushed 2 extra CPP_EOF tokens at the end. */
14072 while (parser->tokens_avail > 3)
14074 c_token *token = c_parser_peek_token (parser);
14075 if (!is_cilkplus_cilk_simd_fn)
14076 gcc_assert (token->type == CPP_NAME
14077 && strcmp (IDENTIFIER_POINTER (token->value), "simd") == 0);
14078 else
14079 gcc_assert (token->type == CPP_NAME
14080 && is_cilkplus_vector_p (token->value));
14081 c_parser_consume_token (parser);
14082 parser->in_pragma = true;
14084 tree c = NULL_TREE;
14085 if (is_cilkplus_cilk_simd_fn)
14086 c = c_parser_omp_all_clauses (parser, CILK_SIMD_FN_CLAUSE_MASK,
14087 "SIMD-enabled functions attribute");
14088 else
14089 c = c_parser_omp_all_clauses (parser, OMP_DECLARE_SIMD_CLAUSE_MASK,
14090 "#pragma omp declare simd");
14091 c = c_omp_declare_simd_clauses_to_numbers (parms, c);
14092 if (c != NULL_TREE)
14093 c = tree_cons (NULL_TREE, c, NULL_TREE);
14094 if (is_cilkplus_cilk_simd_fn)
14096 tree k = build_tree_list (get_identifier ("cilk simd function"),
14097 NULL_TREE);
14098 TREE_CHAIN (k) = DECL_ATTRIBUTES (fndecl);
14099 DECL_ATTRIBUTES (fndecl) = k;
14101 c = build_tree_list (get_identifier ("omp declare simd"), c);
14102 TREE_CHAIN (c) = DECL_ATTRIBUTES (fndecl);
14103 DECL_ATTRIBUTES (fndecl) = c;
14106 parser->tokens = &parser->tokens_buf[0];
14107 parser->tokens_avail = tokens_avail;
14108 if (clauses.exists ())
14109 clauses[0].type = CPP_PRAGMA;
14111 if (!vec_safe_is_empty (parser->cilk_simd_fn_tokens))
14112 vec_free (parser->cilk_simd_fn_tokens);
14116 /* OpenMP 4.0:
14117 # pragma omp declare target new-line
14118 declarations and definitions
14119 # pragma omp end declare target new-line */
14121 static void
14122 c_parser_omp_declare_target (c_parser *parser)
14124 c_parser_skip_to_pragma_eol (parser);
14125 current_omp_declare_target_attribute++;
14128 static void
14129 c_parser_omp_end_declare_target (c_parser *parser)
14131 location_t loc = c_parser_peek_token (parser)->location;
14132 c_parser_consume_pragma (parser);
14133 if (c_parser_next_token_is (parser, CPP_NAME)
14134 && strcmp (IDENTIFIER_POINTER (c_parser_peek_token (parser)->value),
14135 "declare") == 0)
14137 c_parser_consume_token (parser);
14138 if (c_parser_next_token_is (parser, CPP_NAME)
14139 && strcmp (IDENTIFIER_POINTER (c_parser_peek_token (parser)->value),
14140 "target") == 0)
14141 c_parser_consume_token (parser);
14142 else
14144 c_parser_error (parser, "expected %<target%>");
14145 c_parser_skip_to_pragma_eol (parser);
14146 return;
14149 else
14151 c_parser_error (parser, "expected %<declare%>");
14152 c_parser_skip_to_pragma_eol (parser);
14153 return;
14155 c_parser_skip_to_pragma_eol (parser);
14156 if (!current_omp_declare_target_attribute)
14157 error_at (loc, "%<#pragma omp end declare target%> without corresponding "
14158 "%<#pragma omp declare target%>");
14159 else
14160 current_omp_declare_target_attribute--;
14164 /* OpenMP 4.0
14165 #pragma omp declare reduction (reduction-id : typename-list : expression) \
14166 initializer-clause[opt] new-line
14168 initializer-clause:
14169 initializer (omp_priv = initializer)
14170 initializer (function-name (argument-list)) */
14172 static void
14173 c_parser_omp_declare_reduction (c_parser *parser, enum pragma_context context)
14175 unsigned int tokens_avail = 0, i;
14176 vec<tree> types = vNULL;
14177 vec<c_token> clauses = vNULL;
14178 enum tree_code reduc_code = ERROR_MARK;
14179 tree reduc_id = NULL_TREE;
14180 tree type;
14181 location_t rloc = c_parser_peek_token (parser)->location;
14183 if (context == pragma_struct || context == pragma_param)
14185 error ("%<#pragma omp declare reduction%> not at file or block scope");
14186 goto fail;
14189 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
14190 goto fail;
14192 switch (c_parser_peek_token (parser)->type)
14194 case CPP_PLUS:
14195 reduc_code = PLUS_EXPR;
14196 break;
14197 case CPP_MULT:
14198 reduc_code = MULT_EXPR;
14199 break;
14200 case CPP_MINUS:
14201 reduc_code = MINUS_EXPR;
14202 break;
14203 case CPP_AND:
14204 reduc_code = BIT_AND_EXPR;
14205 break;
14206 case CPP_XOR:
14207 reduc_code = BIT_XOR_EXPR;
14208 break;
14209 case CPP_OR:
14210 reduc_code = BIT_IOR_EXPR;
14211 break;
14212 case CPP_AND_AND:
14213 reduc_code = TRUTH_ANDIF_EXPR;
14214 break;
14215 case CPP_OR_OR:
14216 reduc_code = TRUTH_ORIF_EXPR;
14217 break;
14218 case CPP_NAME:
14219 const char *p;
14220 p = IDENTIFIER_POINTER (c_parser_peek_token (parser)->value);
14221 if (strcmp (p, "min") == 0)
14223 reduc_code = MIN_EXPR;
14224 break;
14226 if (strcmp (p, "max") == 0)
14228 reduc_code = MAX_EXPR;
14229 break;
14231 reduc_id = c_parser_peek_token (parser)->value;
14232 break;
14233 default:
14234 c_parser_error (parser,
14235 "expected %<+%>, %<*%>, %<-%>, %<&%>, "
14236 "%<^%>, %<|%>, %<&&%>, %<||%>, %<min%> or identifier");
14237 goto fail;
14240 tree orig_reduc_id, reduc_decl;
14241 orig_reduc_id = reduc_id;
14242 reduc_id = c_omp_reduction_id (reduc_code, reduc_id);
14243 reduc_decl = c_omp_reduction_decl (reduc_id);
14244 c_parser_consume_token (parser);
14246 if (!c_parser_require (parser, CPP_COLON, "expected %<:%>"))
14247 goto fail;
14249 while (true)
14251 location_t loc = c_parser_peek_token (parser)->location;
14252 struct c_type_name *ctype = c_parser_type_name (parser);
14253 if (ctype != NULL)
14255 type = groktypename (ctype, NULL, NULL);
14256 if (type == error_mark_node)
14258 else if ((INTEGRAL_TYPE_P (type)
14259 || TREE_CODE (type) == REAL_TYPE
14260 || TREE_CODE (type) == COMPLEX_TYPE)
14261 && orig_reduc_id == NULL_TREE)
14262 error_at (loc, "predeclared arithmetic type in "
14263 "%<#pragma omp declare reduction%>");
14264 else if (TREE_CODE (type) == FUNCTION_TYPE
14265 || TREE_CODE (type) == ARRAY_TYPE)
14266 error_at (loc, "function or array type in "
14267 "%<#pragma omp declare reduction%>");
14268 else if (TYPE_QUALS_NO_ADDR_SPACE (type))
14269 error_at (loc, "const, volatile or restrict qualified type in "
14270 "%<#pragma omp declare reduction%>");
14271 else
14273 tree t;
14274 for (t = DECL_INITIAL (reduc_decl); t; t = TREE_CHAIN (t))
14275 if (comptypes (TREE_PURPOSE (t), type))
14277 error_at (loc, "redeclaration of %qs "
14278 "%<#pragma omp declare reduction%> for "
14279 "type %qT",
14280 IDENTIFIER_POINTER (reduc_id)
14281 + sizeof ("omp declare reduction ") - 1,
14282 type);
14283 location_t ploc
14284 = DECL_SOURCE_LOCATION (TREE_VEC_ELT (TREE_VALUE (t),
14285 0));
14286 error_at (ploc, "previous %<#pragma omp declare "
14287 "reduction%>");
14288 break;
14290 if (t == NULL_TREE)
14291 types.safe_push (type);
14293 if (c_parser_next_token_is (parser, CPP_COMMA))
14294 c_parser_consume_token (parser);
14295 else
14296 break;
14298 else
14299 break;
14302 if (!c_parser_require (parser, CPP_COLON, "expected %<:%>")
14303 || types.is_empty ())
14305 fail:
14306 clauses.release ();
14307 types.release ();
14308 while (true)
14310 c_token *token = c_parser_peek_token (parser);
14311 if (token->type == CPP_EOF || token->type == CPP_PRAGMA_EOL)
14312 break;
14313 c_parser_consume_token (parser);
14315 c_parser_skip_to_pragma_eol (parser);
14316 return;
14319 if (types.length () > 1)
14321 while (c_parser_next_token_is_not (parser, CPP_PRAGMA_EOL))
14323 c_token *token = c_parser_peek_token (parser);
14324 if (token->type == CPP_EOF)
14325 goto fail;
14326 clauses.safe_push (*token);
14327 c_parser_consume_token (parser);
14329 clauses.safe_push (*c_parser_peek_token (parser));
14330 c_parser_skip_to_pragma_eol (parser);
14332 /* Make sure nothing tries to read past the end of the tokens. */
14333 c_token eof_token;
14334 memset (&eof_token, 0, sizeof (eof_token));
14335 eof_token.type = CPP_EOF;
14336 clauses.safe_push (eof_token);
14337 clauses.safe_push (eof_token);
14340 int errs = errorcount;
14341 FOR_EACH_VEC_ELT (types, i, type)
14343 tokens_avail = parser->tokens_avail;
14344 gcc_assert (parser->tokens == &parser->tokens_buf[0]);
14345 if (!clauses.is_empty ())
14347 parser->tokens = clauses.address ();
14348 parser->tokens_avail = clauses.length ();
14349 parser->in_pragma = true;
14352 bool nested = current_function_decl != NULL_TREE;
14353 if (nested)
14354 c_push_function_context ();
14355 tree fndecl = build_decl (BUILTINS_LOCATION, FUNCTION_DECL,
14356 reduc_id, default_function_type);
14357 current_function_decl = fndecl;
14358 allocate_struct_function (fndecl, true);
14359 push_scope ();
14360 tree stmt = push_stmt_list ();
14361 /* Intentionally BUILTINS_LOCATION, so that -Wshadow doesn't
14362 warn about these. */
14363 tree omp_out = build_decl (BUILTINS_LOCATION, VAR_DECL,
14364 get_identifier ("omp_out"), type);
14365 DECL_ARTIFICIAL (omp_out) = 1;
14366 DECL_CONTEXT (omp_out) = fndecl;
14367 pushdecl (omp_out);
14368 tree omp_in = build_decl (BUILTINS_LOCATION, VAR_DECL,
14369 get_identifier ("omp_in"), type);
14370 DECL_ARTIFICIAL (omp_in) = 1;
14371 DECL_CONTEXT (omp_in) = fndecl;
14372 pushdecl (omp_in);
14373 struct c_expr combiner = c_parser_expression (parser);
14374 struct c_expr initializer;
14375 tree omp_priv = NULL_TREE, omp_orig = NULL_TREE;
14376 bool bad = false;
14377 initializer.value = error_mark_node;
14378 if (!c_parser_require (parser, CPP_CLOSE_PAREN, "expected %<)%>"))
14379 bad = true;
14380 else if (c_parser_next_token_is (parser, CPP_NAME)
14381 && strcmp (IDENTIFIER_POINTER
14382 (c_parser_peek_token (parser)->value),
14383 "initializer") == 0)
14385 c_parser_consume_token (parser);
14386 pop_scope ();
14387 push_scope ();
14388 omp_priv = build_decl (BUILTINS_LOCATION, VAR_DECL,
14389 get_identifier ("omp_priv"), type);
14390 DECL_ARTIFICIAL (omp_priv) = 1;
14391 DECL_INITIAL (omp_priv) = error_mark_node;
14392 DECL_CONTEXT (omp_priv) = fndecl;
14393 pushdecl (omp_priv);
14394 omp_orig = build_decl (BUILTINS_LOCATION, VAR_DECL,
14395 get_identifier ("omp_orig"), type);
14396 DECL_ARTIFICIAL (omp_orig) = 1;
14397 DECL_CONTEXT (omp_orig) = fndecl;
14398 pushdecl (omp_orig);
14399 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
14400 bad = true;
14401 else if (!c_parser_next_token_is (parser, CPP_NAME))
14403 c_parser_error (parser, "expected %<omp_priv%> or "
14404 "function-name");
14405 bad = true;
14407 else if (strcmp (IDENTIFIER_POINTER
14408 (c_parser_peek_token (parser)->value),
14409 "omp_priv") != 0)
14411 if (c_parser_peek_2nd_token (parser)->type != CPP_OPEN_PAREN
14412 || c_parser_peek_token (parser)->id_kind != C_ID_ID)
14414 c_parser_error (parser, "expected function-name %<(%>");
14415 bad = true;
14417 else
14418 initializer = c_parser_postfix_expression (parser);
14419 if (initializer.value
14420 && TREE_CODE (initializer.value) == CALL_EXPR)
14422 int j;
14423 tree c = initializer.value;
14424 for (j = 0; j < call_expr_nargs (c); j++)
14425 if (TREE_CODE (CALL_EXPR_ARG (c, j)) == ADDR_EXPR
14426 && TREE_OPERAND (CALL_EXPR_ARG (c, j), 0) == omp_priv)
14427 break;
14428 if (j == call_expr_nargs (c))
14429 error ("one of the initializer call arguments should be "
14430 "%<&omp_priv%>");
14433 else
14435 c_parser_consume_token (parser);
14436 if (!c_parser_require (parser, CPP_EQ, "expected %<=%>"))
14437 bad = true;
14438 else
14440 tree st = push_stmt_list ();
14441 start_init (omp_priv, NULL_TREE, 0);
14442 location_t loc = c_parser_peek_token (parser)->location;
14443 struct c_expr init = c_parser_initializer (parser);
14444 finish_init ();
14445 finish_decl (omp_priv, loc, init.value,
14446 init.original_type, NULL_TREE);
14447 pop_stmt_list (st);
14450 if (!bad
14451 && !c_parser_require (parser, CPP_CLOSE_PAREN, "expected %<)%>"))
14452 bad = true;
14455 if (!bad)
14457 c_parser_skip_to_pragma_eol (parser);
14459 tree t = tree_cons (type, make_tree_vec (omp_priv ? 6 : 3),
14460 DECL_INITIAL (reduc_decl));
14461 DECL_INITIAL (reduc_decl) = t;
14462 DECL_SOURCE_LOCATION (omp_out) = rloc;
14463 TREE_VEC_ELT (TREE_VALUE (t), 0) = omp_out;
14464 TREE_VEC_ELT (TREE_VALUE (t), 1) = omp_in;
14465 TREE_VEC_ELT (TREE_VALUE (t), 2) = combiner.value;
14466 walk_tree (&combiner.value, c_check_omp_declare_reduction_r,
14467 &TREE_VEC_ELT (TREE_VALUE (t), 0), NULL);
14468 if (omp_priv)
14470 DECL_SOURCE_LOCATION (omp_priv) = rloc;
14471 TREE_VEC_ELT (TREE_VALUE (t), 3) = omp_priv;
14472 TREE_VEC_ELT (TREE_VALUE (t), 4) = omp_orig;
14473 TREE_VEC_ELT (TREE_VALUE (t), 5) = initializer.value;
14474 walk_tree (&initializer.value, c_check_omp_declare_reduction_r,
14475 &TREE_VEC_ELT (TREE_VALUE (t), 3), NULL);
14476 walk_tree (&DECL_INITIAL (omp_priv),
14477 c_check_omp_declare_reduction_r,
14478 &TREE_VEC_ELT (TREE_VALUE (t), 3), NULL);
14482 pop_stmt_list (stmt);
14483 pop_scope ();
14484 if (cfun->language != NULL)
14486 ggc_free (cfun->language);
14487 cfun->language = NULL;
14489 set_cfun (NULL);
14490 current_function_decl = NULL_TREE;
14491 if (nested)
14492 c_pop_function_context ();
14494 if (!clauses.is_empty ())
14496 parser->tokens = &parser->tokens_buf[0];
14497 parser->tokens_avail = tokens_avail;
14499 if (bad)
14500 goto fail;
14501 if (errs != errorcount)
14502 break;
14505 clauses.release ();
14506 types.release ();
14510 /* OpenMP 4.0
14511 #pragma omp declare simd declare-simd-clauses[optseq] new-line
14512 #pragma omp declare reduction (reduction-id : typename-list : expression) \
14513 initializer-clause[opt] new-line
14514 #pragma omp declare target new-line */
14516 static void
14517 c_parser_omp_declare (c_parser *parser, enum pragma_context context)
14519 c_parser_consume_pragma (parser);
14520 if (c_parser_next_token_is (parser, CPP_NAME))
14522 const char *p = IDENTIFIER_POINTER (c_parser_peek_token (parser)->value);
14523 if (strcmp (p, "simd") == 0)
14525 /* c_parser_consume_token (parser); done in
14526 c_parser_omp_declare_simd. */
14527 c_parser_omp_declare_simd (parser, context);
14528 return;
14530 if (strcmp (p, "reduction") == 0)
14532 c_parser_consume_token (parser);
14533 c_parser_omp_declare_reduction (parser, context);
14534 return;
14536 if (!flag_openmp) /* flag_openmp_simd */
14538 c_parser_skip_to_pragma_eol (parser);
14539 return;
14541 if (strcmp (p, "target") == 0)
14543 c_parser_consume_token (parser);
14544 c_parser_omp_declare_target (parser);
14545 return;
14549 c_parser_error (parser, "expected %<simd%> or %<reduction%> "
14550 "or %<target%>");
14551 c_parser_skip_to_pragma_eol (parser);
14554 /* Main entry point to parsing most OpenMP pragmas. */
14556 static void
14557 c_parser_omp_construct (c_parser *parser)
14559 enum pragma_kind p_kind;
14560 location_t loc;
14561 tree stmt;
14562 char p_name[sizeof "#pragma omp teams distribute parallel for simd"];
14563 omp_clause_mask mask (0);
14565 loc = c_parser_peek_token (parser)->location;
14566 p_kind = c_parser_peek_token (parser)->pragma_kind;
14567 c_parser_consume_pragma (parser);
14569 switch (p_kind)
14571 case PRAGMA_OACC_CACHE:
14572 strcpy (p_name, "#pragma acc");
14573 stmt = c_parser_oacc_cache (loc, parser);
14574 break;
14575 case PRAGMA_OACC_DATA:
14576 stmt = c_parser_oacc_data (loc, parser);
14577 break;
14578 case PRAGMA_OACC_KERNELS:
14579 strcpy (p_name, "#pragma acc");
14580 stmt = c_parser_oacc_kernels (loc, parser, p_name);
14581 break;
14582 case PRAGMA_OACC_LOOP:
14583 strcpy (p_name, "#pragma acc");
14584 stmt = c_parser_oacc_loop (loc, parser, p_name);
14585 break;
14586 case PRAGMA_OACC_PARALLEL:
14587 strcpy (p_name, "#pragma acc");
14588 stmt = c_parser_oacc_parallel (loc, parser, p_name);
14589 break;
14590 case PRAGMA_OACC_WAIT:
14591 strcpy (p_name, "#pragma wait");
14592 stmt = c_parser_oacc_wait (loc, parser, p_name);
14593 break;
14594 case PRAGMA_OMP_ATOMIC:
14595 c_parser_omp_atomic (loc, parser);
14596 return;
14597 case PRAGMA_OMP_CRITICAL:
14598 stmt = c_parser_omp_critical (loc, parser);
14599 break;
14600 case PRAGMA_OMP_DISTRIBUTE:
14601 strcpy (p_name, "#pragma omp");
14602 stmt = c_parser_omp_distribute (loc, parser, p_name, mask, NULL);
14603 break;
14604 case PRAGMA_OMP_FOR:
14605 strcpy (p_name, "#pragma omp");
14606 stmt = c_parser_omp_for (loc, parser, p_name, mask, NULL);
14607 break;
14608 case PRAGMA_OMP_MASTER:
14609 stmt = c_parser_omp_master (loc, parser);
14610 break;
14611 case PRAGMA_OMP_ORDERED:
14612 stmt = c_parser_omp_ordered (loc, parser);
14613 break;
14614 case PRAGMA_OMP_PARALLEL:
14615 strcpy (p_name, "#pragma omp");
14616 stmt = c_parser_omp_parallel (loc, parser, p_name, mask, NULL);
14617 break;
14618 case PRAGMA_OMP_SECTIONS:
14619 strcpy (p_name, "#pragma omp");
14620 stmt = c_parser_omp_sections (loc, parser, p_name, mask, NULL);
14621 break;
14622 case PRAGMA_OMP_SIMD:
14623 strcpy (p_name, "#pragma omp");
14624 stmt = c_parser_omp_simd (loc, parser, p_name, mask, NULL);
14625 break;
14626 case PRAGMA_OMP_SINGLE:
14627 stmt = c_parser_omp_single (loc, parser);
14628 break;
14629 case PRAGMA_OMP_TASK:
14630 stmt = c_parser_omp_task (loc, parser);
14631 break;
14632 case PRAGMA_OMP_TASKGROUP:
14633 stmt = c_parser_omp_taskgroup (parser);
14634 break;
14635 case PRAGMA_OMP_TEAMS:
14636 strcpy (p_name, "#pragma omp");
14637 stmt = c_parser_omp_teams (loc, parser, p_name, mask, NULL);
14638 break;
14639 default:
14640 gcc_unreachable ();
14643 if (stmt)
14644 gcc_assert (EXPR_LOCATION (stmt) != UNKNOWN_LOCATION);
14648 /* OpenMP 2.5:
14649 # pragma omp threadprivate (variable-list) */
14651 static void
14652 c_parser_omp_threadprivate (c_parser *parser)
14654 tree vars, t;
14655 location_t loc;
14657 c_parser_consume_pragma (parser);
14658 loc = c_parser_peek_token (parser)->location;
14659 vars = c_parser_omp_var_list_parens (parser, OMP_CLAUSE_ERROR, NULL);
14661 /* Mark every variable in VARS to be assigned thread local storage. */
14662 for (t = vars; t; t = TREE_CHAIN (t))
14664 tree v = TREE_PURPOSE (t);
14666 /* FIXME diagnostics: Ideally we should keep individual
14667 locations for all the variables in the var list to make the
14668 following errors more precise. Perhaps
14669 c_parser_omp_var_list_parens() should construct a list of
14670 locations to go along with the var list. */
14672 /* If V had already been marked threadprivate, it doesn't matter
14673 whether it had been used prior to this point. */
14674 if (TREE_CODE (v) != VAR_DECL)
14675 error_at (loc, "%qD is not a variable", v);
14676 else if (TREE_USED (v) && !C_DECL_THREADPRIVATE_P (v))
14677 error_at (loc, "%qE declared %<threadprivate%> after first use", v);
14678 else if (! TREE_STATIC (v) && ! DECL_EXTERNAL (v))
14679 error_at (loc, "automatic variable %qE cannot be %<threadprivate%>", v);
14680 else if (TREE_TYPE (v) == error_mark_node)
14682 else if (! COMPLETE_TYPE_P (TREE_TYPE (v)))
14683 error_at (loc, "%<threadprivate%> %qE has incomplete type", v);
14684 else
14686 if (! DECL_THREAD_LOCAL_P (v))
14688 set_decl_tls_model (v, decl_default_tls_model (v));
14689 /* If rtl has been already set for this var, call
14690 make_decl_rtl once again, so that encode_section_info
14691 has a chance to look at the new decl flags. */
14692 if (DECL_RTL_SET_P (v))
14693 make_decl_rtl (v);
14695 C_DECL_THREADPRIVATE_P (v) = 1;
14699 c_parser_skip_to_pragma_eol (parser);
14702 /* Cilk Plus <#pragma simd> parsing routines. */
14704 /* Helper function for c_parser_pragma. Perform some sanity checking
14705 for <#pragma simd> constructs. Returns FALSE if there was a
14706 problem. */
14708 static bool
14709 c_parser_cilk_verify_simd (c_parser *parser,
14710 enum pragma_context context)
14712 if (!flag_cilkplus)
14714 warning (0, "pragma simd ignored because -fcilkplus is not enabled");
14715 c_parser_skip_until_found (parser, CPP_PRAGMA_EOL, NULL);
14716 return false;
14718 if (context == pragma_external)
14720 c_parser_error (parser,"pragma simd must be inside a function");
14721 c_parser_skip_until_found (parser, CPP_PRAGMA_EOL, NULL);
14722 return false;
14724 return true;
14727 /* Cilk Plus:
14728 This function is shared by SIMD-enabled functions and #pragma simd.
14729 If IS_SIMD_FN is true then it is parsing a SIMD-enabled function and
14730 CLAUSES is unused. The main purpose of this function is to parse a
14731 vectorlength attribute or clause and check for parse errors.
14732 When IS_SIMD_FN is true then the function is merely caching the tokens
14733 in PARSER->CILK_SIMD_FN_TOKENS. If errors are found then the token
14734 cache is cleared since there is no reason to continue.
14735 Syntax:
14736 vectorlength ( constant-expression ) */
14738 static tree
14739 c_parser_cilk_clause_vectorlength (c_parser *parser, tree clauses,
14740 bool is_simd_fn)
14742 if (is_simd_fn)
14743 check_no_duplicate_clause (clauses, OMP_CLAUSE_SIMDLEN, "vectorlength");
14744 else
14745 /* The vectorlength clause behaves exactly like OpenMP's safelen
14746 clause. Represent it in OpenMP terms. */
14747 check_no_duplicate_clause (clauses, OMP_CLAUSE_SAFELEN, "vectorlength");
14749 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
14750 return clauses;
14752 location_t loc = c_parser_peek_token (parser)->location;
14753 tree expr = c_parser_expr_no_commas (parser, NULL).value;
14754 expr = c_fully_fold (expr, false, NULL);
14756 /* If expr is an error_mark_node then the above function would have
14757 emitted an error. No reason to do it twice. */
14758 if (expr == error_mark_node)
14760 else if (!TREE_TYPE (expr)
14761 || !TREE_CONSTANT (expr)
14762 || !INTEGRAL_TYPE_P (TREE_TYPE (expr)))
14764 error_at (loc, "vectorlength must be an integer constant");
14765 else if (wi::exact_log2 (expr) == -1)
14766 error_at (loc, "vectorlength must be a power of 2");
14767 else
14769 if (is_simd_fn)
14771 tree u = build_omp_clause (loc, OMP_CLAUSE_SIMDLEN);
14772 OMP_CLAUSE_SIMDLEN_EXPR (u) = expr;
14773 OMP_CLAUSE_CHAIN (u) = clauses;
14774 clauses = u;
14776 else
14778 tree u = build_omp_clause (loc, OMP_CLAUSE_SAFELEN);
14779 OMP_CLAUSE_SAFELEN_EXPR (u) = expr;
14780 OMP_CLAUSE_CHAIN (u) = clauses;
14781 clauses = u;
14785 c_parser_require (parser, CPP_CLOSE_PAREN, "expected %<)%>");
14787 return clauses;
14790 /* Cilk Plus:
14791 linear ( simd-linear-variable-list )
14793 simd-linear-variable-list:
14794 simd-linear-variable
14795 simd-linear-variable-list , simd-linear-variable
14797 simd-linear-variable:
14798 id-expression
14799 id-expression : simd-linear-step
14801 simd-linear-step:
14802 conditional-expression */
14804 static tree
14805 c_parser_cilk_clause_linear (c_parser *parser, tree clauses)
14807 if (!c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
14808 return clauses;
14810 location_t loc = c_parser_peek_token (parser)->location;
14812 if (c_parser_next_token_is_not (parser, CPP_NAME)
14813 || c_parser_peek_token (parser)->id_kind != C_ID_ID)
14814 c_parser_error (parser, "expected identifier");
14816 while (c_parser_next_token_is (parser, CPP_NAME)
14817 && c_parser_peek_token (parser)->id_kind == C_ID_ID)
14819 tree var = lookup_name (c_parser_peek_token (parser)->value);
14821 if (var == NULL)
14823 undeclared_variable (c_parser_peek_token (parser)->location,
14824 c_parser_peek_token (parser)->value);
14825 c_parser_consume_token (parser);
14827 else if (var == error_mark_node)
14828 c_parser_consume_token (parser);
14829 else
14831 tree step = integer_one_node;
14833 /* Parse the linear step if present. */
14834 if (c_parser_peek_2nd_token (parser)->type == CPP_COLON)
14836 c_parser_consume_token (parser);
14837 c_parser_consume_token (parser);
14839 tree expr = c_parser_expr_no_commas (parser, NULL).value;
14840 expr = c_fully_fold (expr, false, NULL);
14842 if (TREE_TYPE (expr)
14843 && INTEGRAL_TYPE_P (TREE_TYPE (expr))
14844 && (TREE_CONSTANT (expr)
14845 || DECL_P (expr)))
14846 step = expr;
14847 else
14848 c_parser_error (parser,
14849 "step size must be an integer constant "
14850 "expression or an integer variable");
14852 else
14853 c_parser_consume_token (parser);
14855 /* Use OMP_CLAUSE_LINEAR, which has the same semantics. */
14856 tree u = build_omp_clause (loc, OMP_CLAUSE_LINEAR);
14857 OMP_CLAUSE_DECL (u) = var;
14858 OMP_CLAUSE_LINEAR_STEP (u) = step;
14859 OMP_CLAUSE_CHAIN (u) = clauses;
14860 clauses = u;
14863 if (c_parser_next_token_is_not (parser, CPP_COMMA))
14864 break;
14866 c_parser_consume_token (parser);
14869 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
14871 return clauses;
14874 /* Returns the name of the next clause. If the clause is not
14875 recognized SIMD_OMP_CLAUSE_NONE is returned and the next token is
14876 not consumed. Otherwise, the appropriate pragma_simd_clause is
14877 returned and the token is consumed. */
14879 static pragma_omp_clause
14880 c_parser_cilk_clause_name (c_parser *parser)
14882 pragma_omp_clause result;
14883 c_token *token = c_parser_peek_token (parser);
14885 if (!token->value || token->type != CPP_NAME)
14886 return PRAGMA_CILK_CLAUSE_NONE;
14888 const char *p = IDENTIFIER_POINTER (token->value);
14890 if (!strcmp (p, "vectorlength"))
14891 result = PRAGMA_CILK_CLAUSE_VECTORLENGTH;
14892 else if (!strcmp (p, "linear"))
14893 result = PRAGMA_CILK_CLAUSE_LINEAR;
14894 else if (!strcmp (p, "private"))
14895 result = PRAGMA_CILK_CLAUSE_PRIVATE;
14896 else if (!strcmp (p, "firstprivate"))
14897 result = PRAGMA_CILK_CLAUSE_FIRSTPRIVATE;
14898 else if (!strcmp (p, "lastprivate"))
14899 result = PRAGMA_CILK_CLAUSE_LASTPRIVATE;
14900 else if (!strcmp (p, "reduction"))
14901 result = PRAGMA_CILK_CLAUSE_REDUCTION;
14902 else
14903 return PRAGMA_CILK_CLAUSE_NONE;
14905 c_parser_consume_token (parser);
14906 return result;
14909 /* Parse all #<pragma simd> clauses. Return the list of clauses
14910 found. */
14912 static tree
14913 c_parser_cilk_all_clauses (c_parser *parser)
14915 tree clauses = NULL;
14917 while (c_parser_next_token_is_not (parser, CPP_PRAGMA_EOL))
14919 pragma_omp_clause c_kind;
14921 c_kind = c_parser_cilk_clause_name (parser);
14923 switch (c_kind)
14925 case PRAGMA_CILK_CLAUSE_VECTORLENGTH:
14926 clauses = c_parser_cilk_clause_vectorlength (parser, clauses, false);
14927 break;
14928 case PRAGMA_CILK_CLAUSE_LINEAR:
14929 clauses = c_parser_cilk_clause_linear (parser, clauses);
14930 break;
14931 case PRAGMA_CILK_CLAUSE_PRIVATE:
14932 /* Use the OpenMP counterpart. */
14933 clauses = c_parser_omp_clause_private (parser, clauses);
14934 break;
14935 case PRAGMA_CILK_CLAUSE_FIRSTPRIVATE:
14936 /* Use the OpenMP counterpart. */
14937 clauses = c_parser_omp_clause_firstprivate (parser, clauses);
14938 break;
14939 case PRAGMA_CILK_CLAUSE_LASTPRIVATE:
14940 /* Use the OpenMP counterpart. */
14941 clauses = c_parser_omp_clause_lastprivate (parser, clauses);
14942 break;
14943 case PRAGMA_CILK_CLAUSE_REDUCTION:
14944 /* Use the OpenMP counterpart. */
14945 clauses = c_parser_omp_clause_reduction (parser, clauses);
14946 break;
14947 default:
14948 c_parser_error (parser, "expected %<#pragma simd%> clause");
14949 goto saw_error;
14953 saw_error:
14954 c_parser_skip_to_pragma_eol (parser);
14955 return c_finish_cilk_clauses (clauses);
14958 /* This function helps parse the grainsize pragma for a _Cilk_for statement.
14959 Here is the correct syntax of this pragma:
14960 #pragma cilk grainsize = <EXP>
14963 static void
14964 c_parser_cilk_grainsize (c_parser *parser)
14966 extern tree convert_to_integer (tree, tree);
14968 /* consume the 'grainsize' keyword. */
14969 c_parser_consume_pragma (parser);
14971 if (c_parser_require (parser, CPP_EQ, "expected %<=%>") != 0)
14973 struct c_expr g_expr = c_parser_binary_expression (parser, NULL, NULL);
14974 if (g_expr.value == error_mark_node)
14976 c_parser_skip_to_pragma_eol (parser);
14977 return;
14979 tree grain = convert_to_integer (long_integer_type_node,
14980 c_fully_fold (g_expr.value, false,
14981 NULL));
14982 c_parser_skip_to_pragma_eol (parser);
14983 c_token *token = c_parser_peek_token (parser);
14984 if (token && token->type == CPP_KEYWORD
14985 && token->keyword == RID_CILK_FOR)
14987 if (grain == NULL_TREE || grain == error_mark_node)
14988 grain = integer_zero_node;
14989 c_parser_cilk_for (parser, grain);
14991 else
14992 warning (0, "%<#pragma cilk grainsize%> is not followed by "
14993 "%<_Cilk_for%>");
14995 else
14996 c_parser_skip_to_pragma_eol (parser);
14999 /* Main entry point for parsing Cilk Plus <#pragma simd> for loops. */
15001 static void
15002 c_parser_cilk_simd (c_parser *parser)
15004 tree clauses = c_parser_cilk_all_clauses (parser);
15005 tree block = c_begin_compound_stmt (true);
15006 location_t loc = c_parser_peek_token (parser)->location;
15007 c_parser_omp_for_loop (loc, parser, CILK_SIMD, clauses, NULL);
15008 block = c_end_compound_stmt (loc, block, true);
15009 add_stmt (block);
15012 /* Create an artificial decl with TYPE and emit initialization of it with
15013 INIT. */
15015 static tree
15016 c_get_temp_regvar (tree type, tree init)
15018 location_t loc = EXPR_LOCATION (init);
15019 tree decl = build_decl (loc, VAR_DECL, NULL_TREE, type);
15020 DECL_ARTIFICIAL (decl) = 1;
15021 DECL_IGNORED_P (decl) = 1;
15022 pushdecl (decl);
15023 tree t = build2 (INIT_EXPR, type, decl, init);
15024 add_stmt (t);
15025 return decl;
15028 /* Main entry point for parsing Cilk Plus _Cilk_for loops.
15029 GRAIN is the grain value passed in through pragma or 0. */
15031 static void
15032 c_parser_cilk_for (c_parser *parser, tree grain)
15034 tree clauses = build_omp_clause (EXPR_LOCATION (grain), OMP_CLAUSE_SCHEDULE);
15035 OMP_CLAUSE_SCHEDULE_KIND (clauses) = OMP_CLAUSE_SCHEDULE_CILKFOR;
15036 OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (clauses) = grain;
15037 clauses = c_finish_omp_clauses (clauses);
15039 tree block = c_begin_compound_stmt (true);
15040 tree sb = push_stmt_list ();
15041 location_t loc = c_parser_peek_token (parser)->location;
15042 tree omp_for = c_parser_omp_for_loop (loc, parser, CILK_FOR, clauses, NULL);
15043 sb = pop_stmt_list (sb);
15045 if (omp_for)
15047 tree omp_par = make_node (OMP_PARALLEL);
15048 TREE_TYPE (omp_par) = void_type_node;
15049 OMP_PARALLEL_CLAUSES (omp_par) = NULL_TREE;
15050 tree bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
15051 TREE_SIDE_EFFECTS (bind) = 1;
15052 BIND_EXPR_BODY (bind) = sb;
15053 OMP_PARALLEL_BODY (omp_par) = bind;
15054 if (OMP_FOR_PRE_BODY (omp_for))
15056 add_stmt (OMP_FOR_PRE_BODY (omp_for));
15057 OMP_FOR_PRE_BODY (omp_for) = NULL_TREE;
15059 tree init = TREE_VEC_ELT (OMP_FOR_INIT (omp_for), 0);
15060 tree decl = TREE_OPERAND (init, 0);
15061 tree cond = TREE_VEC_ELT (OMP_FOR_COND (omp_for), 0);
15062 tree incr = TREE_VEC_ELT (OMP_FOR_INCR (omp_for), 0);
15063 tree t = TREE_OPERAND (cond, 1), c, clauses = NULL_TREE;
15064 if (TREE_CODE (t) != INTEGER_CST)
15066 TREE_OPERAND (cond, 1) = c_get_temp_regvar (TREE_TYPE (t), t);
15067 c = build_omp_clause (input_location, OMP_CLAUSE_FIRSTPRIVATE);
15068 OMP_CLAUSE_DECL (c) = TREE_OPERAND (cond, 1);
15069 OMP_CLAUSE_CHAIN (c) = clauses;
15070 clauses = c;
15072 if (TREE_CODE (incr) == MODIFY_EXPR)
15074 t = TREE_OPERAND (TREE_OPERAND (incr, 1), 1);
15075 if (TREE_CODE (t) != INTEGER_CST)
15077 TREE_OPERAND (TREE_OPERAND (incr, 1), 1)
15078 = c_get_temp_regvar (TREE_TYPE (t), t);
15079 c = build_omp_clause (input_location, OMP_CLAUSE_FIRSTPRIVATE);
15080 OMP_CLAUSE_DECL (c) = TREE_OPERAND (TREE_OPERAND (incr, 1), 1);
15081 OMP_CLAUSE_CHAIN (c) = clauses;
15082 clauses = c;
15085 t = TREE_OPERAND (init, 1);
15086 if (TREE_CODE (t) != INTEGER_CST)
15088 TREE_OPERAND (init, 1) = c_get_temp_regvar (TREE_TYPE (t), t);
15089 c = build_omp_clause (input_location, OMP_CLAUSE_FIRSTPRIVATE);
15090 OMP_CLAUSE_DECL (c) = TREE_OPERAND (init, 1);
15091 OMP_CLAUSE_CHAIN (c) = clauses;
15092 clauses = c;
15094 c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
15095 OMP_CLAUSE_DECL (c) = decl;
15096 OMP_CLAUSE_CHAIN (c) = clauses;
15097 clauses = c;
15098 c = build_omp_clause (input_location, OMP_CLAUSE__CILK_FOR_COUNT_);
15099 OMP_CLAUSE_OPERAND (c, 0)
15100 = cilk_for_number_of_iterations (omp_for);
15101 OMP_CLAUSE_CHAIN (c) = clauses;
15102 OMP_PARALLEL_CLAUSES (omp_par) = c_finish_omp_clauses (c);
15103 add_stmt (omp_par);
15106 block = c_end_compound_stmt (loc, block, true);
15107 add_stmt (block);
15111 /* Parse a transaction attribute (GCC Extension).
15113 transaction-attribute:
15114 attributes
15115 [ [ any-word ] ]
15117 The transactional memory language description is written for C++,
15118 and uses the C++0x attribute syntax. For compatibility, allow the
15119 bracket style for transactions in C as well. */
15121 static tree
15122 c_parser_transaction_attributes (c_parser *parser)
15124 tree attr_name, attr = NULL;
15126 if (c_parser_next_token_is_keyword (parser, RID_ATTRIBUTE))
15127 return c_parser_attributes (parser);
15129 if (!c_parser_next_token_is (parser, CPP_OPEN_SQUARE))
15130 return NULL_TREE;
15131 c_parser_consume_token (parser);
15132 if (!c_parser_require (parser, CPP_OPEN_SQUARE, "expected %<[%>"))
15133 goto error1;
15135 attr_name = c_parser_attribute_any_word (parser);
15136 if (attr_name)
15138 c_parser_consume_token (parser);
15139 attr = build_tree_list (attr_name, NULL_TREE);
15141 else
15142 c_parser_error (parser, "expected identifier");
15144 c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE, "expected %<]%>");
15145 error1:
15146 c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE, "expected %<]%>");
15147 return attr;
15150 /* Parse a __transaction_atomic or __transaction_relaxed statement
15151 (GCC Extension).
15153 transaction-statement:
15154 __transaction_atomic transaction-attribute[opt] compound-statement
15155 __transaction_relaxed compound-statement
15157 Note that the only valid attribute is: "outer".
15160 static tree
15161 c_parser_transaction (c_parser *parser, enum rid keyword)
15163 unsigned int old_in = parser->in_transaction;
15164 unsigned int this_in = 1, new_in;
15165 location_t loc = c_parser_peek_token (parser)->location;
15166 tree stmt, attrs;
15168 gcc_assert ((keyword == RID_TRANSACTION_ATOMIC
15169 || keyword == RID_TRANSACTION_RELAXED)
15170 && c_parser_next_token_is_keyword (parser, keyword));
15171 c_parser_consume_token (parser);
15173 if (keyword == RID_TRANSACTION_RELAXED)
15174 this_in |= TM_STMT_ATTR_RELAXED;
15175 else
15177 attrs = c_parser_transaction_attributes (parser);
15178 if (attrs)
15179 this_in |= parse_tm_stmt_attr (attrs, TM_STMT_ATTR_OUTER);
15182 /* Keep track if we're in the lexical scope of an outer transaction. */
15183 new_in = this_in | (old_in & TM_STMT_ATTR_OUTER);
15185 parser->in_transaction = new_in;
15186 stmt = c_parser_compound_statement (parser);
15187 parser->in_transaction = old_in;
15189 if (flag_tm)
15190 stmt = c_finish_transaction (loc, stmt, this_in);
15191 else
15192 error_at (loc, (keyword == RID_TRANSACTION_ATOMIC ?
15193 "%<__transaction_atomic%> without transactional memory support enabled"
15194 : "%<__transaction_relaxed %> "
15195 "without transactional memory support enabled"));
15197 return stmt;
15200 /* Parse a __transaction_atomic or __transaction_relaxed expression
15201 (GCC Extension).
15203 transaction-expression:
15204 __transaction_atomic ( expression )
15205 __transaction_relaxed ( expression )
15208 static struct c_expr
15209 c_parser_transaction_expression (c_parser *parser, enum rid keyword)
15211 struct c_expr ret;
15212 unsigned int old_in = parser->in_transaction;
15213 unsigned int this_in = 1;
15214 location_t loc = c_parser_peek_token (parser)->location;
15215 tree attrs;
15217 gcc_assert ((keyword == RID_TRANSACTION_ATOMIC
15218 || keyword == RID_TRANSACTION_RELAXED)
15219 && c_parser_next_token_is_keyword (parser, keyword));
15220 c_parser_consume_token (parser);
15222 if (keyword == RID_TRANSACTION_RELAXED)
15223 this_in |= TM_STMT_ATTR_RELAXED;
15224 else
15226 attrs = c_parser_transaction_attributes (parser);
15227 if (attrs)
15228 this_in |= parse_tm_stmt_attr (attrs, 0);
15231 parser->in_transaction = this_in;
15232 if (c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
15234 tree expr = c_parser_expression (parser).value;
15235 ret.original_type = TREE_TYPE (expr);
15236 ret.value = build1 (TRANSACTION_EXPR, ret.original_type, expr);
15237 if (this_in & TM_STMT_ATTR_RELAXED)
15238 TRANSACTION_EXPR_RELAXED (ret.value) = 1;
15239 SET_EXPR_LOCATION (ret.value, loc);
15240 ret.original_code = TRANSACTION_EXPR;
15241 if (!c_parser_require (parser, CPP_CLOSE_PAREN, "expected %<)%>"))
15243 c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, NULL);
15244 goto error;
15247 else
15249 error:
15250 ret.value = error_mark_node;
15251 ret.original_code = ERROR_MARK;
15252 ret.original_type = NULL;
15254 parser->in_transaction = old_in;
15256 if (!flag_tm)
15257 error_at (loc, (keyword == RID_TRANSACTION_ATOMIC ?
15258 "%<__transaction_atomic%> without transactional memory support enabled"
15259 : "%<__transaction_relaxed %> "
15260 "without transactional memory support enabled"));
15262 return ret;
15265 /* Parse a __transaction_cancel statement (GCC Extension).
15267 transaction-cancel-statement:
15268 __transaction_cancel transaction-attribute[opt] ;
15270 Note that the only valid attribute is "outer".
15273 static tree
15274 c_parser_transaction_cancel (c_parser *parser)
15276 location_t loc = c_parser_peek_token (parser)->location;
15277 tree attrs;
15278 bool is_outer = false;
15280 gcc_assert (c_parser_next_token_is_keyword (parser, RID_TRANSACTION_CANCEL));
15281 c_parser_consume_token (parser);
15283 attrs = c_parser_transaction_attributes (parser);
15284 if (attrs)
15285 is_outer = (parse_tm_stmt_attr (attrs, TM_STMT_ATTR_OUTER) != 0);
15287 if (!flag_tm)
15289 error_at (loc, "%<__transaction_cancel%> without "
15290 "transactional memory support enabled");
15291 goto ret_error;
15293 else if (parser->in_transaction & TM_STMT_ATTR_RELAXED)
15295 error_at (loc, "%<__transaction_cancel%> within a "
15296 "%<__transaction_relaxed%>");
15297 goto ret_error;
15299 else if (is_outer)
15301 if ((parser->in_transaction & TM_STMT_ATTR_OUTER) == 0
15302 && !is_tm_may_cancel_outer (current_function_decl))
15304 error_at (loc, "outer %<__transaction_cancel%> not "
15305 "within outer %<__transaction_atomic%>");
15306 error_at (loc, " or a %<transaction_may_cancel_outer%> function");
15307 goto ret_error;
15310 else if (parser->in_transaction == 0)
15312 error_at (loc, "%<__transaction_cancel%> not within "
15313 "%<__transaction_atomic%>");
15314 goto ret_error;
15317 return add_stmt (build_tm_abort_call (loc, is_outer));
15319 ret_error:
15320 return build1 (NOP_EXPR, void_type_node, error_mark_node);
15323 /* Parse a single source file. */
15325 void
15326 c_parse_file (void)
15328 /* Use local storage to begin. If the first token is a pragma, parse it.
15329 If it is #pragma GCC pch_preprocess, then this will load a PCH file
15330 which will cause garbage collection. */
15331 c_parser tparser;
15333 memset (&tparser, 0, sizeof tparser);
15334 tparser.tokens = &tparser.tokens_buf[0];
15335 the_parser = &tparser;
15337 if (c_parser_peek_token (&tparser)->pragma_kind == PRAGMA_GCC_PCH_PREPROCESS)
15338 c_parser_pragma_pch_preprocess (&tparser);
15340 the_parser = ggc_alloc<c_parser> ();
15341 *the_parser = tparser;
15342 if (tparser.tokens == &tparser.tokens_buf[0])
15343 the_parser->tokens = &the_parser->tokens_buf[0];
15345 /* Initialize EH, if we've been told to do so. */
15346 if (flag_exceptions)
15347 using_eh_for_cleanups ();
15349 c_parser_translation_unit (the_parser);
15350 the_parser = NULL;
15353 /* This function parses Cilk Plus array notation. The starting index is
15354 passed in INITIAL_INDEX and the array name is passes in ARRAY_VALUE. The
15355 return value of this function is a tree_node called VALUE_TREE of type
15356 ARRAY_NOTATION_REF. */
15358 static tree
15359 c_parser_array_notation (location_t loc, c_parser *parser, tree initial_index,
15360 tree array_value)
15362 c_token *token = NULL;
15363 tree start_index = NULL_TREE, end_index = NULL_TREE, stride = NULL_TREE;
15364 tree value_tree = NULL_TREE, type = NULL_TREE, array_type = NULL_TREE;
15365 tree array_type_domain = NULL_TREE;
15367 if (array_value == error_mark_node || initial_index == error_mark_node)
15369 /* No need to continue. If either of these 2 were true, then an error
15370 must be emitted already. Thus, no need to emit them twice. */
15371 c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE, NULL);
15372 return error_mark_node;
15375 array_type = TREE_TYPE (array_value);
15376 gcc_assert (array_type);
15377 if (TREE_CODE (array_type) != ARRAY_TYPE
15378 && TREE_CODE (array_type) != POINTER_TYPE)
15380 error_at (loc, "base of array section must be pointer or array type");
15381 c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE, NULL);
15382 return error_mark_node;
15384 type = TREE_TYPE (array_type);
15385 token = c_parser_peek_token (parser);
15387 if (token->type == CPP_EOF)
15389 c_parser_error (parser, "expected %<:%> or numeral");
15390 return value_tree;
15392 else if (token->type == CPP_COLON)
15394 if (!initial_index)
15396 /* If we are here, then we have a case like this A[:]. */
15397 c_parser_consume_token (parser);
15398 if (TREE_CODE (array_type) == POINTER_TYPE)
15400 error_at (loc, "start-index and length fields necessary for "
15401 "using array notations in pointers");
15402 c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE, NULL);
15403 return error_mark_node;
15405 if (TREE_CODE (array_type) == FUNCTION_TYPE)
15407 error_at (loc, "array notations cannot be used with function "
15408 "type");
15409 c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE, NULL);
15410 return error_mark_node;
15412 array_type_domain = TYPE_DOMAIN (array_type);
15414 if (!array_type_domain)
15416 error_at (loc, "start-index and length fields necessary for "
15417 "using array notations in dimensionless arrays");
15418 c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE, NULL);
15419 return error_mark_node;
15422 start_index = TYPE_MINVAL (array_type_domain);
15423 start_index = fold_build1 (CONVERT_EXPR, ptrdiff_type_node,
15424 start_index);
15425 if (!TYPE_MAXVAL (array_type_domain)
15426 || !TREE_CONSTANT (TYPE_MAXVAL (array_type_domain)))
15428 error_at (loc, "start-index and length fields necessary for "
15429 "using array notations in variable-length arrays");
15430 c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE, NULL);
15431 return error_mark_node;
15433 end_index = TYPE_MAXVAL (array_type_domain);
15434 end_index = fold_build2 (PLUS_EXPR, TREE_TYPE (end_index),
15435 end_index, integer_one_node);
15436 end_index = fold_build1 (CONVERT_EXPR, ptrdiff_type_node, end_index);
15437 stride = build_int_cst (integer_type_node, 1);
15438 stride = fold_build1 (CONVERT_EXPR, ptrdiff_type_node, stride);
15440 else if (initial_index != error_mark_node)
15442 /* If we are here, then there should be 2 possibilities:
15443 1. Array [EXPR : EXPR]
15444 2. Array [EXPR : EXPR : EXPR]
15446 start_index = initial_index;
15448 if (TREE_CODE (array_type) == FUNCTION_TYPE)
15450 error_at (loc, "array notations cannot be used with function "
15451 "type");
15452 c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE, NULL);
15453 return error_mark_node;
15455 c_parser_consume_token (parser); /* consume the ':' */
15456 struct c_expr ce = c_parser_expression (parser);
15457 ce = convert_lvalue_to_rvalue (loc, ce, false, false);
15458 end_index = ce.value;
15459 if (!end_index || end_index == error_mark_node)
15461 c_parser_skip_to_end_of_block_or_statement (parser);
15462 return error_mark_node;
15464 if (c_parser_peek_token (parser)->type == CPP_COLON)
15466 c_parser_consume_token (parser);
15467 ce = c_parser_expression (parser);
15468 ce = convert_lvalue_to_rvalue (loc, ce, false, false);
15469 stride = ce.value;
15470 if (!stride || stride == error_mark_node)
15472 c_parser_skip_to_end_of_block_or_statement (parser);
15473 return error_mark_node;
15477 else
15478 c_parser_error (parser, "expected array notation expression");
15480 else
15481 c_parser_error (parser, "expected array notation expression");
15483 c_parser_skip_until_found (parser, CPP_CLOSE_SQUARE, "expected %<]%>");
15485 value_tree = build_array_notation_ref (loc, array_value, start_index,
15486 end_index, stride, type);
15487 if (value_tree != error_mark_node)
15488 SET_EXPR_LOCATION (value_tree, loc);
15489 return value_tree;
15492 #include "gt-c-c-parser.h"