Remove assert in get_def_bb_for_const
[official-gcc.git] / gcc / cp / parser.c
blob2a46d6fbde7f3fcda5e2fe916f0dc036f3b49521
1 /* -*- C++ -*- Parser.
2 Copyright (C) 2000-2016 Free Software Foundation, Inc.
3 Written by Mark Mitchell <mark@codesourcery.com>.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "cp-tree.h"
25 #include "c-family/c-common.h"
26 #include "timevar.h"
27 #include "stringpool.h"
28 #include "cgraph.h"
29 #include "print-tree.h"
30 #include "attribs.h"
31 #include "trans-mem.h"
32 #include "intl.h"
33 #include "decl.h"
34 #include "c-family/c-objc.h"
35 #include "plugin.h"
36 #include "tree-pretty-print.h"
37 #include "parser.h"
38 #include "omp-low.h"
39 #include "gomp-constants.h"
40 #include "c-family/c-indentation.h"
41 #include "context.h"
42 #include "cp-cilkplus.h"
45 /* The lexer. */
47 /* The cp_lexer_* routines mediate between the lexer proper (in libcpp
48 and c-lex.c) and the C++ parser. */
50 static cp_token eof_token =
52 CPP_EOF, RID_MAX, 0, false, false, false, 0, { NULL }
55 /* The various kinds of non integral constant we encounter. */
56 enum non_integral_constant {
57 NIC_NONE,
58 /* floating-point literal */
59 NIC_FLOAT,
60 /* %<this%> */
61 NIC_THIS,
62 /* %<__FUNCTION__%> */
63 NIC_FUNC_NAME,
64 /* %<__PRETTY_FUNCTION__%> */
65 NIC_PRETTY_FUNC,
66 /* %<__func__%> */
67 NIC_C99_FUNC,
68 /* "%<va_arg%> */
69 NIC_VA_ARG,
70 /* a cast */
71 NIC_CAST,
72 /* %<typeid%> operator */
73 NIC_TYPEID,
74 /* non-constant compound literals */
75 NIC_NCC,
76 /* a function call */
77 NIC_FUNC_CALL,
78 /* an increment */
79 NIC_INC,
80 /* an decrement */
81 NIC_DEC,
82 /* an array reference */
83 NIC_ARRAY_REF,
84 /* %<->%> */
85 NIC_ARROW,
86 /* %<.%> */
87 NIC_POINT,
88 /* the address of a label */
89 NIC_ADDR_LABEL,
90 /* %<*%> */
91 NIC_STAR,
92 /* %<&%> */
93 NIC_ADDR,
94 /* %<++%> */
95 NIC_PREINCREMENT,
96 /* %<--%> */
97 NIC_PREDECREMENT,
98 /* %<new%> */
99 NIC_NEW,
100 /* %<delete%> */
101 NIC_DEL,
102 /* calls to overloaded operators */
103 NIC_OVERLOADED,
104 /* an assignment */
105 NIC_ASSIGNMENT,
106 /* a comma operator */
107 NIC_COMMA,
108 /* a call to a constructor */
109 NIC_CONSTRUCTOR,
110 /* a transaction expression */
111 NIC_TRANSACTION
114 /* The various kinds of errors about name-lookup failing. */
115 enum name_lookup_error {
116 /* NULL */
117 NLE_NULL,
118 /* is not a type */
119 NLE_TYPE,
120 /* is not a class or namespace */
121 NLE_CXX98,
122 /* is not a class, namespace, or enumeration */
123 NLE_NOT_CXX98
126 /* The various kinds of required token */
127 enum required_token {
128 RT_NONE,
129 RT_SEMICOLON, /* ';' */
130 RT_OPEN_PAREN, /* '(' */
131 RT_CLOSE_BRACE, /* '}' */
132 RT_OPEN_BRACE, /* '{' */
133 RT_CLOSE_SQUARE, /* ']' */
134 RT_OPEN_SQUARE, /* '[' */
135 RT_COMMA, /* ',' */
136 RT_SCOPE, /* '::' */
137 RT_LESS, /* '<' */
138 RT_GREATER, /* '>' */
139 RT_EQ, /* '=' */
140 RT_ELLIPSIS, /* '...' */
141 RT_MULT, /* '*' */
142 RT_COMPL, /* '~' */
143 RT_COLON, /* ':' */
144 RT_COLON_SCOPE, /* ':' or '::' */
145 RT_CLOSE_PAREN, /* ')' */
146 RT_COMMA_CLOSE_PAREN, /* ',' or ')' */
147 RT_PRAGMA_EOL, /* end of line */
148 RT_NAME, /* identifier */
150 /* The type is CPP_KEYWORD */
151 RT_NEW, /* new */
152 RT_DELETE, /* delete */
153 RT_RETURN, /* return */
154 RT_WHILE, /* while */
155 RT_EXTERN, /* extern */
156 RT_STATIC_ASSERT, /* static_assert */
157 RT_DECLTYPE, /* decltype */
158 RT_OPERATOR, /* operator */
159 RT_CLASS, /* class */
160 RT_TEMPLATE, /* template */
161 RT_NAMESPACE, /* namespace */
162 RT_USING, /* using */
163 RT_ASM, /* asm */
164 RT_TRY, /* try */
165 RT_CATCH, /* catch */
166 RT_THROW, /* throw */
167 RT_LABEL, /* __label__ */
168 RT_AT_TRY, /* @try */
169 RT_AT_SYNCHRONIZED, /* @synchronized */
170 RT_AT_THROW, /* @throw */
172 RT_SELECT, /* selection-statement */
173 RT_INTERATION, /* iteration-statement */
174 RT_JUMP, /* jump-statement */
175 RT_CLASS_KEY, /* class-key */
176 RT_CLASS_TYPENAME_TEMPLATE, /* class, typename, or template */
177 RT_TRANSACTION_ATOMIC, /* __transaction_atomic */
178 RT_TRANSACTION_RELAXED, /* __transaction_relaxed */
179 RT_TRANSACTION_CANCEL /* __transaction_cancel */
182 /* RAII wrapper for parser->in_type_id_in_expr_p, setting it on creation and
183 reverting it on destruction. */
185 class type_id_in_expr_sentinel
187 cp_parser *parser;
188 bool saved;
189 public:
190 type_id_in_expr_sentinel (cp_parser *parser, bool set = true)
191 : parser (parser),
192 saved (parser->in_type_id_in_expr_p)
193 { parser->in_type_id_in_expr_p = set; }
194 ~type_id_in_expr_sentinel ()
195 { parser->in_type_id_in_expr_p = saved; }
198 /* Prototypes. */
200 static cp_lexer *cp_lexer_new_main
201 (void);
202 static cp_lexer *cp_lexer_new_from_tokens
203 (cp_token_cache *tokens);
204 static void cp_lexer_destroy
205 (cp_lexer *);
206 static int cp_lexer_saving_tokens
207 (const cp_lexer *);
208 static cp_token *cp_lexer_token_at
209 (cp_lexer *, cp_token_position);
210 static void cp_lexer_get_preprocessor_token
211 (cp_lexer *, cp_token *);
212 static inline cp_token *cp_lexer_peek_token
213 (cp_lexer *);
214 static cp_token *cp_lexer_peek_nth_token
215 (cp_lexer *, size_t);
216 static inline bool cp_lexer_next_token_is
217 (cp_lexer *, enum cpp_ttype);
218 static bool cp_lexer_next_token_is_not
219 (cp_lexer *, enum cpp_ttype);
220 static bool cp_lexer_next_token_is_keyword
221 (cp_lexer *, enum rid);
222 static cp_token *cp_lexer_consume_token
223 (cp_lexer *);
224 static void cp_lexer_purge_token
225 (cp_lexer *);
226 static void cp_lexer_purge_tokens_after
227 (cp_lexer *, cp_token_position);
228 static void cp_lexer_save_tokens
229 (cp_lexer *);
230 static void cp_lexer_commit_tokens
231 (cp_lexer *);
232 static void cp_lexer_rollback_tokens
233 (cp_lexer *);
234 static void cp_lexer_print_token
235 (FILE *, cp_token *);
236 static inline bool cp_lexer_debugging_p
237 (cp_lexer *);
238 static void cp_lexer_start_debugging
239 (cp_lexer *) ATTRIBUTE_UNUSED;
240 static void cp_lexer_stop_debugging
241 (cp_lexer *) ATTRIBUTE_UNUSED;
243 static cp_token_cache *cp_token_cache_new
244 (cp_token *, cp_token *);
246 static void cp_parser_initial_pragma
247 (cp_token *);
249 static tree cp_literal_operator_id
250 (const char *);
252 static void cp_parser_cilk_simd
253 (cp_parser *, cp_token *, bool *);
254 static tree cp_parser_cilk_for
255 (cp_parser *, tree, bool *);
256 static bool cp_parser_omp_declare_reduction_exprs
257 (tree, cp_parser *);
258 static tree cp_parser_cilk_simd_vectorlength
259 (cp_parser *, tree, bool);
260 static void cp_finalize_oacc_routine
261 (cp_parser *, tree, bool);
263 /* Manifest constants. */
264 #define CP_LEXER_BUFFER_SIZE ((256 * 1024) / sizeof (cp_token))
265 #define CP_SAVED_TOKEN_STACK 5
267 /* Variables. */
269 /* The stream to which debugging output should be written. */
270 static FILE *cp_lexer_debug_stream;
272 /* Nonzero if we are parsing an unevaluated operand: an operand to
273 sizeof, typeof, or alignof. */
274 int cp_unevaluated_operand;
276 /* Dump up to NUM tokens in BUFFER to FILE starting with token
277 START_TOKEN. If START_TOKEN is NULL, the dump starts with the
278 first token in BUFFER. If NUM is 0, dump all the tokens. If
279 CURR_TOKEN is set and it is one of the tokens in BUFFER, it will be
280 highlighted by surrounding it in [[ ]]. */
282 static void
283 cp_lexer_dump_tokens (FILE *file, vec<cp_token, va_gc> *buffer,
284 cp_token *start_token, unsigned num,
285 cp_token *curr_token)
287 unsigned i, nprinted;
288 cp_token *token;
289 bool do_print;
291 fprintf (file, "%u tokens\n", vec_safe_length (buffer));
293 if (buffer == NULL)
294 return;
296 if (num == 0)
297 num = buffer->length ();
299 if (start_token == NULL)
300 start_token = buffer->address ();
302 if (start_token > buffer->address ())
304 cp_lexer_print_token (file, &(*buffer)[0]);
305 fprintf (file, " ... ");
308 do_print = false;
309 nprinted = 0;
310 for (i = 0; buffer->iterate (i, &token) && nprinted < num; i++)
312 if (token == start_token)
313 do_print = true;
315 if (!do_print)
316 continue;
318 nprinted++;
319 if (token == curr_token)
320 fprintf (file, "[[");
322 cp_lexer_print_token (file, token);
324 if (token == curr_token)
325 fprintf (file, "]]");
327 switch (token->type)
329 case CPP_SEMICOLON:
330 case CPP_OPEN_BRACE:
331 case CPP_CLOSE_BRACE:
332 case CPP_EOF:
333 fputc ('\n', file);
334 break;
336 default:
337 fputc (' ', file);
341 if (i == num && i < buffer->length ())
343 fprintf (file, " ... ");
344 cp_lexer_print_token (file, &buffer->last ());
347 fprintf (file, "\n");
351 /* Dump all tokens in BUFFER to stderr. */
353 void
354 cp_lexer_debug_tokens (vec<cp_token, va_gc> *buffer)
356 cp_lexer_dump_tokens (stderr, buffer, NULL, 0, NULL);
359 DEBUG_FUNCTION void
360 debug (vec<cp_token, va_gc> &ref)
362 cp_lexer_dump_tokens (stderr, &ref, NULL, 0, NULL);
365 DEBUG_FUNCTION void
366 debug (vec<cp_token, va_gc> *ptr)
368 if (ptr)
369 debug (*ptr);
370 else
371 fprintf (stderr, "<nil>\n");
375 /* Dump the cp_parser tree field T to FILE if T is non-NULL. DESC is the
376 description for T. */
378 static void
379 cp_debug_print_tree_if_set (FILE *file, const char *desc, tree t)
381 if (t)
383 fprintf (file, "%s: ", desc);
384 print_node_brief (file, "", t, 0);
389 /* Dump parser context C to FILE. */
391 static void
392 cp_debug_print_context (FILE *file, cp_parser_context *c)
394 const char *status_s[] = { "OK", "ERROR", "COMMITTED" };
395 fprintf (file, "{ status = %s, scope = ", status_s[c->status]);
396 print_node_brief (file, "", c->object_type, 0);
397 fprintf (file, "}\n");
401 /* Print the stack of parsing contexts to FILE starting with FIRST. */
403 static void
404 cp_debug_print_context_stack (FILE *file, cp_parser_context *first)
406 unsigned i;
407 cp_parser_context *c;
409 fprintf (file, "Parsing context stack:\n");
410 for (i = 0, c = first; c; c = c->next, i++)
412 fprintf (file, "\t#%u: ", i);
413 cp_debug_print_context (file, c);
418 /* Print the value of FLAG to FILE. DESC is a string describing the flag. */
420 static void
421 cp_debug_print_flag (FILE *file, const char *desc, bool flag)
423 if (flag)
424 fprintf (file, "%s: true\n", desc);
428 /* Print an unparsed function entry UF to FILE. */
430 static void
431 cp_debug_print_unparsed_function (FILE *file, cp_unparsed_functions_entry *uf)
433 unsigned i;
434 cp_default_arg_entry *default_arg_fn;
435 tree fn;
437 fprintf (file, "\tFunctions with default args:\n");
438 for (i = 0;
439 vec_safe_iterate (uf->funs_with_default_args, i, &default_arg_fn);
440 i++)
442 fprintf (file, "\t\tClass type: ");
443 print_node_brief (file, "", default_arg_fn->class_type, 0);
444 fprintf (file, "\t\tDeclaration: ");
445 print_node_brief (file, "", default_arg_fn->decl, 0);
446 fprintf (file, "\n");
449 fprintf (file, "\n\tFunctions with definitions that require "
450 "post-processing\n\t\t");
451 for (i = 0; vec_safe_iterate (uf->funs_with_definitions, i, &fn); i++)
453 print_node_brief (file, "", fn, 0);
454 fprintf (file, " ");
456 fprintf (file, "\n");
458 fprintf (file, "\n\tNon-static data members with initializers that require "
459 "post-processing\n\t\t");
460 for (i = 0; vec_safe_iterate (uf->nsdmis, i, &fn); i++)
462 print_node_brief (file, "", fn, 0);
463 fprintf (file, " ");
465 fprintf (file, "\n");
469 /* Print the stack of unparsed member functions S to FILE. */
471 static void
472 cp_debug_print_unparsed_queues (FILE *file,
473 vec<cp_unparsed_functions_entry, va_gc> *s)
475 unsigned i;
476 cp_unparsed_functions_entry *uf;
478 fprintf (file, "Unparsed functions\n");
479 for (i = 0; vec_safe_iterate (s, i, &uf); i++)
481 fprintf (file, "#%u:\n", i);
482 cp_debug_print_unparsed_function (file, uf);
487 /* Dump the tokens in a window of size WINDOW_SIZE around the next_token for
488 the given PARSER. If FILE is NULL, the output is printed on stderr. */
490 static void
491 cp_debug_parser_tokens (FILE *file, cp_parser *parser, int window_size)
493 cp_token *next_token, *first_token, *start_token;
495 if (file == NULL)
496 file = stderr;
498 next_token = parser->lexer->next_token;
499 first_token = parser->lexer->buffer->address ();
500 start_token = (next_token > first_token + window_size / 2)
501 ? next_token - window_size / 2
502 : first_token;
503 cp_lexer_dump_tokens (file, parser->lexer->buffer, start_token, window_size,
504 next_token);
508 /* Dump debugging information for the given PARSER. If FILE is NULL,
509 the output is printed on stderr. */
511 void
512 cp_debug_parser (FILE *file, cp_parser *parser)
514 const size_t window_size = 20;
515 cp_token *token;
516 expanded_location eloc;
518 if (file == NULL)
519 file = stderr;
521 fprintf (file, "Parser state\n\n");
522 fprintf (file, "Number of tokens: %u\n",
523 vec_safe_length (parser->lexer->buffer));
524 cp_debug_print_tree_if_set (file, "Lookup scope", parser->scope);
525 cp_debug_print_tree_if_set (file, "Object scope",
526 parser->object_scope);
527 cp_debug_print_tree_if_set (file, "Qualifying scope",
528 parser->qualifying_scope);
529 cp_debug_print_context_stack (file, parser->context);
530 cp_debug_print_flag (file, "Allow GNU extensions",
531 parser->allow_gnu_extensions_p);
532 cp_debug_print_flag (file, "'>' token is greater-than",
533 parser->greater_than_is_operator_p);
534 cp_debug_print_flag (file, "Default args allowed in current "
535 "parameter list", parser->default_arg_ok_p);
536 cp_debug_print_flag (file, "Parsing integral constant-expression",
537 parser->integral_constant_expression_p);
538 cp_debug_print_flag (file, "Allow non-constant expression in current "
539 "constant-expression",
540 parser->allow_non_integral_constant_expression_p);
541 cp_debug_print_flag (file, "Seen non-constant expression",
542 parser->non_integral_constant_expression_p);
543 cp_debug_print_flag (file, "Local names and 'this' forbidden in "
544 "current context",
545 parser->local_variables_forbidden_p);
546 cp_debug_print_flag (file, "In unbraced linkage specification",
547 parser->in_unbraced_linkage_specification_p);
548 cp_debug_print_flag (file, "Parsing a declarator",
549 parser->in_declarator_p);
550 cp_debug_print_flag (file, "In template argument list",
551 parser->in_template_argument_list_p);
552 cp_debug_print_flag (file, "Parsing an iteration statement",
553 parser->in_statement & IN_ITERATION_STMT);
554 cp_debug_print_flag (file, "Parsing a switch statement",
555 parser->in_statement & IN_SWITCH_STMT);
556 cp_debug_print_flag (file, "Parsing a structured OpenMP block",
557 parser->in_statement & IN_OMP_BLOCK);
558 cp_debug_print_flag (file, "Parsing a Cilk Plus for loop",
559 parser->in_statement & IN_CILK_SIMD_FOR);
560 cp_debug_print_flag (file, "Parsing a an OpenMP loop",
561 parser->in_statement & IN_OMP_FOR);
562 cp_debug_print_flag (file, "Parsing an if statement",
563 parser->in_statement & IN_IF_STMT);
564 cp_debug_print_flag (file, "Parsing a type-id in an expression "
565 "context", parser->in_type_id_in_expr_p);
566 cp_debug_print_flag (file, "Declarations are implicitly extern \"C\"",
567 parser->implicit_extern_c);
568 cp_debug_print_flag (file, "String expressions should be translated "
569 "to execution character set",
570 parser->translate_strings_p);
571 cp_debug_print_flag (file, "Parsing function body outside of a "
572 "local class", parser->in_function_body);
573 cp_debug_print_flag (file, "Auto correct a colon to a scope operator",
574 parser->colon_corrects_to_scope_p);
575 cp_debug_print_flag (file, "Colon doesn't start a class definition",
576 parser->colon_doesnt_start_class_def_p);
577 if (parser->type_definition_forbidden_message)
578 fprintf (file, "Error message for forbidden type definitions: %s\n",
579 parser->type_definition_forbidden_message);
580 cp_debug_print_unparsed_queues (file, parser->unparsed_queues);
581 fprintf (file, "Number of class definitions in progress: %u\n",
582 parser->num_classes_being_defined);
583 fprintf (file, "Number of template parameter lists for the current "
584 "declaration: %u\n", parser->num_template_parameter_lists);
585 cp_debug_parser_tokens (file, parser, window_size);
586 token = parser->lexer->next_token;
587 fprintf (file, "Next token to parse:\n");
588 fprintf (file, "\tToken: ");
589 cp_lexer_print_token (file, token);
590 eloc = expand_location (token->location);
591 fprintf (file, "\n\tFile: %s\n", eloc.file);
592 fprintf (file, "\tLine: %d\n", eloc.line);
593 fprintf (file, "\tColumn: %d\n", eloc.column);
596 DEBUG_FUNCTION void
597 debug (cp_parser &ref)
599 cp_debug_parser (stderr, &ref);
602 DEBUG_FUNCTION void
603 debug (cp_parser *ptr)
605 if (ptr)
606 debug (*ptr);
607 else
608 fprintf (stderr, "<nil>\n");
611 /* Allocate memory for a new lexer object and return it. */
613 static cp_lexer *
614 cp_lexer_alloc (void)
616 cp_lexer *lexer;
618 c_common_no_more_pch ();
620 /* Allocate the memory. */
621 lexer = ggc_cleared_alloc<cp_lexer> ();
623 /* Initially we are not debugging. */
624 lexer->debugging_p = false;
626 lexer->saved_tokens.create (CP_SAVED_TOKEN_STACK);
628 /* Create the buffer. */
629 vec_alloc (lexer->buffer, CP_LEXER_BUFFER_SIZE);
631 return lexer;
635 /* Create a new main C++ lexer, the lexer that gets tokens from the
636 preprocessor. */
638 static cp_lexer *
639 cp_lexer_new_main (void)
641 cp_lexer *lexer;
642 cp_token token;
644 /* It's possible that parsing the first pragma will load a PCH file,
645 which is a GC collection point. So we have to do that before
646 allocating any memory. */
647 cp_parser_initial_pragma (&token);
649 lexer = cp_lexer_alloc ();
651 /* Put the first token in the buffer. */
652 lexer->buffer->quick_push (token);
654 /* Get the remaining tokens from the preprocessor. */
655 while (token.type != CPP_EOF)
657 cp_lexer_get_preprocessor_token (lexer, &token);
658 vec_safe_push (lexer->buffer, token);
661 lexer->last_token = lexer->buffer->address ()
662 + lexer->buffer->length ()
663 - 1;
664 lexer->next_token = lexer->buffer->length ()
665 ? lexer->buffer->address ()
666 : &eof_token;
668 /* Subsequent preprocessor diagnostics should use compiler
669 diagnostic functions to get the compiler source location. */
670 done_lexing = true;
672 gcc_assert (!lexer->next_token->purged_p);
673 return lexer;
676 /* Create a new lexer whose token stream is primed with the tokens in
677 CACHE. When these tokens are exhausted, no new tokens will be read. */
679 static cp_lexer *
680 cp_lexer_new_from_tokens (cp_token_cache *cache)
682 cp_token *first = cache->first;
683 cp_token *last = cache->last;
684 cp_lexer *lexer = ggc_cleared_alloc<cp_lexer> ();
686 /* We do not own the buffer. */
687 lexer->buffer = NULL;
688 lexer->next_token = first == last ? &eof_token : first;
689 lexer->last_token = last;
691 lexer->saved_tokens.create (CP_SAVED_TOKEN_STACK);
693 /* Initially we are not debugging. */
694 lexer->debugging_p = false;
696 gcc_assert (!lexer->next_token->purged_p);
697 return lexer;
700 /* Frees all resources associated with LEXER. */
702 static void
703 cp_lexer_destroy (cp_lexer *lexer)
705 vec_free (lexer->buffer);
706 lexer->saved_tokens.release ();
707 ggc_free (lexer);
710 /* This needs to be set to TRUE before the lexer-debugging infrastructure can
711 be used. The point of this flag is to help the compiler to fold away calls
712 to cp_lexer_debugging_p within this source file at compile time, when the
713 lexer is not being debugged. */
715 #define LEXER_DEBUGGING_ENABLED_P false
717 /* Returns nonzero if debugging information should be output. */
719 static inline bool
720 cp_lexer_debugging_p (cp_lexer *lexer)
722 if (!LEXER_DEBUGGING_ENABLED_P)
723 return false;
725 return lexer->debugging_p;
729 static inline cp_token_position
730 cp_lexer_token_position (cp_lexer *lexer, bool previous_p)
732 gcc_assert (!previous_p || lexer->next_token != &eof_token);
734 return lexer->next_token - previous_p;
737 static inline cp_token *
738 cp_lexer_token_at (cp_lexer * /*lexer*/, cp_token_position pos)
740 return pos;
743 static inline void
744 cp_lexer_set_token_position (cp_lexer *lexer, cp_token_position pos)
746 lexer->next_token = cp_lexer_token_at (lexer, pos);
749 static inline cp_token_position
750 cp_lexer_previous_token_position (cp_lexer *lexer)
752 if (lexer->next_token == &eof_token)
753 return lexer->last_token - 1;
754 else
755 return cp_lexer_token_position (lexer, true);
758 static inline cp_token *
759 cp_lexer_previous_token (cp_lexer *lexer)
761 cp_token_position tp = cp_lexer_previous_token_position (lexer);
763 /* Skip past purged tokens. */
764 while (tp->purged_p)
766 gcc_assert (tp != lexer->buffer->address ());
767 tp--;
770 return cp_lexer_token_at (lexer, tp);
773 /* nonzero if we are presently saving tokens. */
775 static inline int
776 cp_lexer_saving_tokens (const cp_lexer* lexer)
778 return lexer->saved_tokens.length () != 0;
781 /* Store the next token from the preprocessor in *TOKEN. Return true
782 if we reach EOF. If LEXER is NULL, assume we are handling an
783 initial #pragma pch_preprocess, and thus want the lexer to return
784 processed strings. */
786 static void
787 cp_lexer_get_preprocessor_token (cp_lexer *lexer, cp_token *token)
789 static int is_extern_c = 0;
791 /* Get a new token from the preprocessor. */
792 token->type
793 = c_lex_with_flags (&token->u.value, &token->location, &token->flags,
794 lexer == NULL ? 0 : C_LEX_STRING_NO_JOIN);
795 token->keyword = RID_MAX;
796 token->purged_p = false;
797 token->error_reported = false;
799 /* On some systems, some header files are surrounded by an
800 implicit extern "C" block. Set a flag in the token if it
801 comes from such a header. */
802 is_extern_c += pending_lang_change;
803 pending_lang_change = 0;
804 token->implicit_extern_c = is_extern_c > 0;
806 /* Check to see if this token is a keyword. */
807 if (token->type == CPP_NAME)
809 if (C_IS_RESERVED_WORD (token->u.value))
811 /* Mark this token as a keyword. */
812 token->type = CPP_KEYWORD;
813 /* Record which keyword. */
814 token->keyword = C_RID_CODE (token->u.value);
816 else
818 if (warn_cxx11_compat
819 && C_RID_CODE (token->u.value) >= RID_FIRST_CXX11
820 && C_RID_CODE (token->u.value) <= RID_LAST_CXX11)
822 /* Warn about the C++0x keyword (but still treat it as
823 an identifier). */
824 warning (OPT_Wc__11_compat,
825 "identifier %qE is a keyword in C++11",
826 token->u.value);
828 /* Clear out the C_RID_CODE so we don't warn about this
829 particular identifier-turned-keyword again. */
830 C_SET_RID_CODE (token->u.value, RID_MAX);
833 token->keyword = RID_MAX;
836 else if (token->type == CPP_AT_NAME)
838 /* This only happens in Objective-C++; it must be a keyword. */
839 token->type = CPP_KEYWORD;
840 switch (C_RID_CODE (token->u.value))
842 /* Replace 'class' with '@class', 'private' with '@private',
843 etc. This prevents confusion with the C++ keyword
844 'class', and makes the tokens consistent with other
845 Objective-C 'AT' keywords. For example '@class' is
846 reported as RID_AT_CLASS which is consistent with
847 '@synchronized', which is reported as
848 RID_AT_SYNCHRONIZED.
850 case RID_CLASS: token->keyword = RID_AT_CLASS; break;
851 case RID_PRIVATE: token->keyword = RID_AT_PRIVATE; break;
852 case RID_PROTECTED: token->keyword = RID_AT_PROTECTED; break;
853 case RID_PUBLIC: token->keyword = RID_AT_PUBLIC; break;
854 case RID_THROW: token->keyword = RID_AT_THROW; break;
855 case RID_TRY: token->keyword = RID_AT_TRY; break;
856 case RID_CATCH: token->keyword = RID_AT_CATCH; break;
857 case RID_SYNCHRONIZED: token->keyword = RID_AT_SYNCHRONIZED; break;
858 default: token->keyword = C_RID_CODE (token->u.value);
863 /* Update the globals input_location and the input file stack from TOKEN. */
864 static inline void
865 cp_lexer_set_source_position_from_token (cp_token *token)
867 if (token->type != CPP_EOF)
869 input_location = token->location;
873 /* Update the globals input_location and the input file stack from LEXER. */
874 static inline void
875 cp_lexer_set_source_position (cp_lexer *lexer)
877 cp_token *token = cp_lexer_peek_token (lexer);
878 cp_lexer_set_source_position_from_token (token);
881 /* Return a pointer to the next token in the token stream, but do not
882 consume it. */
884 static inline cp_token *
885 cp_lexer_peek_token (cp_lexer *lexer)
887 if (cp_lexer_debugging_p (lexer))
889 fputs ("cp_lexer: peeking at token: ", cp_lexer_debug_stream);
890 cp_lexer_print_token (cp_lexer_debug_stream, lexer->next_token);
891 putc ('\n', cp_lexer_debug_stream);
893 return lexer->next_token;
896 /* Return true if the next token has the indicated TYPE. */
898 static inline bool
899 cp_lexer_next_token_is (cp_lexer* lexer, enum cpp_ttype type)
901 return cp_lexer_peek_token (lexer)->type == type;
904 /* Return true if the next token does not have the indicated TYPE. */
906 static inline bool
907 cp_lexer_next_token_is_not (cp_lexer* lexer, enum cpp_ttype type)
909 return !cp_lexer_next_token_is (lexer, type);
912 /* Return true if the next token is the indicated KEYWORD. */
914 static inline bool
915 cp_lexer_next_token_is_keyword (cp_lexer* lexer, enum rid keyword)
917 return cp_lexer_peek_token (lexer)->keyword == keyword;
920 static inline bool
921 cp_lexer_nth_token_is (cp_lexer* lexer, size_t n, enum cpp_ttype type)
923 return cp_lexer_peek_nth_token (lexer, n)->type == type;
926 static inline bool
927 cp_lexer_nth_token_is_keyword (cp_lexer* lexer, size_t n, enum rid keyword)
929 return cp_lexer_peek_nth_token (lexer, n)->keyword == keyword;
932 /* Return true if the next token is not the indicated KEYWORD. */
934 static inline bool
935 cp_lexer_next_token_is_not_keyword (cp_lexer* lexer, enum rid keyword)
937 return cp_lexer_peek_token (lexer)->keyword != keyword;
940 /* Return true if the next token is a keyword for a decl-specifier. */
942 static bool
943 cp_lexer_next_token_is_decl_specifier_keyword (cp_lexer *lexer)
945 cp_token *token;
947 token = cp_lexer_peek_token (lexer);
948 switch (token->keyword)
950 /* auto specifier: storage-class-specifier in C++,
951 simple-type-specifier in C++0x. */
952 case RID_AUTO:
953 /* Storage classes. */
954 case RID_REGISTER:
955 case RID_STATIC:
956 case RID_EXTERN:
957 case RID_MUTABLE:
958 case RID_THREAD:
959 /* Elaborated type specifiers. */
960 case RID_ENUM:
961 case RID_CLASS:
962 case RID_STRUCT:
963 case RID_UNION:
964 case RID_TYPENAME:
965 /* Simple type specifiers. */
966 case RID_CHAR:
967 case RID_CHAR16:
968 case RID_CHAR32:
969 case RID_WCHAR:
970 case RID_BOOL:
971 case RID_SHORT:
972 case RID_INT:
973 case RID_LONG:
974 case RID_SIGNED:
975 case RID_UNSIGNED:
976 case RID_FLOAT:
977 case RID_DOUBLE:
978 case RID_VOID:
979 /* GNU extensions. */
980 case RID_ATTRIBUTE:
981 case RID_TYPEOF:
982 /* C++0x extensions. */
983 case RID_DECLTYPE:
984 case RID_UNDERLYING_TYPE:
985 return true;
987 default:
988 if (token->keyword >= RID_FIRST_INT_N
989 && token->keyword < RID_FIRST_INT_N + NUM_INT_N_ENTS
990 && int_n_enabled_p[token->keyword - RID_FIRST_INT_N])
991 return true;
992 return false;
996 /* Returns TRUE iff the token T begins a decltype type. */
998 static bool
999 token_is_decltype (cp_token *t)
1001 return (t->keyword == RID_DECLTYPE
1002 || t->type == CPP_DECLTYPE);
1005 /* Returns TRUE iff the next token begins a decltype type. */
1007 static bool
1008 cp_lexer_next_token_is_decltype (cp_lexer *lexer)
1010 cp_token *t = cp_lexer_peek_token (lexer);
1011 return token_is_decltype (t);
1014 /* Called when processing a token with tree_check_value; perform or defer the
1015 associated checks and return the value. */
1017 static tree
1018 saved_checks_value (struct tree_check *check_value)
1020 /* Perform any access checks that were deferred. */
1021 vec<deferred_access_check, va_gc> *checks;
1022 deferred_access_check *chk;
1023 checks = check_value->checks;
1024 if (checks)
1026 int i;
1027 FOR_EACH_VEC_SAFE_ELT (checks, i, chk)
1028 perform_or_defer_access_check (chk->binfo,
1029 chk->decl,
1030 chk->diag_decl, tf_warning_or_error);
1032 /* Return the stored value. */
1033 return check_value->value;
1036 /* Return a pointer to the Nth token in the token stream. If N is 1,
1037 then this is precisely equivalent to cp_lexer_peek_token (except
1038 that it is not inline). One would like to disallow that case, but
1039 there is one case (cp_parser_nth_token_starts_template_id) where
1040 the caller passes a variable for N and it might be 1. */
1042 static cp_token *
1043 cp_lexer_peek_nth_token (cp_lexer* lexer, size_t n)
1045 cp_token *token;
1047 /* N is 1-based, not zero-based. */
1048 gcc_assert (n > 0);
1050 if (cp_lexer_debugging_p (lexer))
1051 fprintf (cp_lexer_debug_stream,
1052 "cp_lexer: peeking ahead %ld at token: ", (long)n);
1054 --n;
1055 token = lexer->next_token;
1056 gcc_assert (!n || token != &eof_token);
1057 while (n != 0)
1059 ++token;
1060 if (token == lexer->last_token)
1062 token = &eof_token;
1063 break;
1066 if (!token->purged_p)
1067 --n;
1070 if (cp_lexer_debugging_p (lexer))
1072 cp_lexer_print_token (cp_lexer_debug_stream, token);
1073 putc ('\n', cp_lexer_debug_stream);
1076 return token;
1079 /* Return the next token, and advance the lexer's next_token pointer
1080 to point to the next non-purged token. */
1082 static cp_token *
1083 cp_lexer_consume_token (cp_lexer* lexer)
1085 cp_token *token = lexer->next_token;
1087 gcc_assert (token != &eof_token);
1088 gcc_assert (!lexer->in_pragma || token->type != CPP_PRAGMA_EOL);
1092 lexer->next_token++;
1093 if (lexer->next_token == lexer->last_token)
1095 lexer->next_token = &eof_token;
1096 break;
1100 while (lexer->next_token->purged_p);
1102 cp_lexer_set_source_position_from_token (token);
1104 /* Provide debugging output. */
1105 if (cp_lexer_debugging_p (lexer))
1107 fputs ("cp_lexer: consuming token: ", cp_lexer_debug_stream);
1108 cp_lexer_print_token (cp_lexer_debug_stream, token);
1109 putc ('\n', cp_lexer_debug_stream);
1112 return token;
1115 /* Permanently remove the next token from the token stream, and
1116 advance the next_token pointer to refer to the next non-purged
1117 token. */
1119 static void
1120 cp_lexer_purge_token (cp_lexer *lexer)
1122 cp_token *tok = lexer->next_token;
1124 gcc_assert (tok != &eof_token);
1125 tok->purged_p = true;
1126 tok->location = UNKNOWN_LOCATION;
1127 tok->u.value = NULL_TREE;
1128 tok->keyword = RID_MAX;
1132 tok++;
1133 if (tok == lexer->last_token)
1135 tok = &eof_token;
1136 break;
1139 while (tok->purged_p);
1140 lexer->next_token = tok;
1143 /* Permanently remove all tokens after TOK, up to, but not
1144 including, the token that will be returned next by
1145 cp_lexer_peek_token. */
1147 static void
1148 cp_lexer_purge_tokens_after (cp_lexer *lexer, cp_token *tok)
1150 cp_token *peek = lexer->next_token;
1152 if (peek == &eof_token)
1153 peek = lexer->last_token;
1155 gcc_assert (tok < peek);
1157 for ( tok += 1; tok != peek; tok += 1)
1159 tok->purged_p = true;
1160 tok->location = UNKNOWN_LOCATION;
1161 tok->u.value = NULL_TREE;
1162 tok->keyword = RID_MAX;
1166 /* Begin saving tokens. All tokens consumed after this point will be
1167 preserved. */
1169 static void
1170 cp_lexer_save_tokens (cp_lexer* lexer)
1172 /* Provide debugging output. */
1173 if (cp_lexer_debugging_p (lexer))
1174 fprintf (cp_lexer_debug_stream, "cp_lexer: saving tokens\n");
1176 lexer->saved_tokens.safe_push (lexer->next_token);
1179 /* Commit to the portion of the token stream most recently saved. */
1181 static void
1182 cp_lexer_commit_tokens (cp_lexer* lexer)
1184 /* Provide debugging output. */
1185 if (cp_lexer_debugging_p (lexer))
1186 fprintf (cp_lexer_debug_stream, "cp_lexer: committing tokens\n");
1188 lexer->saved_tokens.pop ();
1191 /* Return all tokens saved since the last call to cp_lexer_save_tokens
1192 to the token stream. Stop saving tokens. */
1194 static void
1195 cp_lexer_rollback_tokens (cp_lexer* lexer)
1197 /* Provide debugging output. */
1198 if (cp_lexer_debugging_p (lexer))
1199 fprintf (cp_lexer_debug_stream, "cp_lexer: restoring tokens\n");
1201 lexer->next_token = lexer->saved_tokens.pop ();
1204 /* RAII wrapper around the above functions, with sanity checking. Creating
1205 a variable saves tokens, which are committed when the variable is
1206 destroyed unless they are explicitly rolled back by calling the rollback
1207 member function. */
1209 struct saved_token_sentinel
1211 cp_lexer *lexer;
1212 unsigned len;
1213 bool commit;
1214 saved_token_sentinel(cp_lexer *lexer): lexer(lexer), commit(true)
1216 len = lexer->saved_tokens.length ();
1217 cp_lexer_save_tokens (lexer);
1219 void rollback ()
1221 cp_lexer_rollback_tokens (lexer);
1222 commit = false;
1224 ~saved_token_sentinel()
1226 if (commit)
1227 cp_lexer_commit_tokens (lexer);
1228 gcc_assert (lexer->saved_tokens.length () == len);
1232 /* Print a representation of the TOKEN on the STREAM. */
1234 static void
1235 cp_lexer_print_token (FILE * stream, cp_token *token)
1237 /* We don't use cpp_type2name here because the parser defines
1238 a few tokens of its own. */
1239 static const char *const token_names[] = {
1240 /* cpplib-defined token types */
1241 #define OP(e, s) #e,
1242 #define TK(e, s) #e,
1243 TTYPE_TABLE
1244 #undef OP
1245 #undef TK
1246 /* C++ parser token types - see "Manifest constants", above. */
1247 "KEYWORD",
1248 "TEMPLATE_ID",
1249 "NESTED_NAME_SPECIFIER",
1252 /* For some tokens, print the associated data. */
1253 switch (token->type)
1255 case CPP_KEYWORD:
1256 /* Some keywords have a value that is not an IDENTIFIER_NODE.
1257 For example, `struct' is mapped to an INTEGER_CST. */
1258 if (!identifier_p (token->u.value))
1259 break;
1260 /* else fall through */
1261 case CPP_NAME:
1262 fputs (IDENTIFIER_POINTER (token->u.value), stream);
1263 break;
1265 case CPP_STRING:
1266 case CPP_STRING16:
1267 case CPP_STRING32:
1268 case CPP_WSTRING:
1269 case CPP_UTF8STRING:
1270 fprintf (stream, " \"%s\"", TREE_STRING_POINTER (token->u.value));
1271 break;
1273 case CPP_NUMBER:
1274 print_generic_expr (stream, token->u.value, 0);
1275 break;
1277 default:
1278 /* If we have a name for the token, print it out. Otherwise, we
1279 simply give the numeric code. */
1280 if (token->type < ARRAY_SIZE(token_names))
1281 fputs (token_names[token->type], stream);
1282 else
1283 fprintf (stream, "[%d]", token->type);
1284 break;
1288 DEBUG_FUNCTION void
1289 debug (cp_token &ref)
1291 cp_lexer_print_token (stderr, &ref);
1292 fprintf (stderr, "\n");
1295 DEBUG_FUNCTION void
1296 debug (cp_token *ptr)
1298 if (ptr)
1299 debug (*ptr);
1300 else
1301 fprintf (stderr, "<nil>\n");
1305 /* Start emitting debugging information. */
1307 static void
1308 cp_lexer_start_debugging (cp_lexer* lexer)
1310 if (!LEXER_DEBUGGING_ENABLED_P)
1311 fatal_error (input_location,
1312 "LEXER_DEBUGGING_ENABLED_P is not set to true");
1314 lexer->debugging_p = true;
1315 cp_lexer_debug_stream = stderr;
1318 /* Stop emitting debugging information. */
1320 static void
1321 cp_lexer_stop_debugging (cp_lexer* lexer)
1323 if (!LEXER_DEBUGGING_ENABLED_P)
1324 fatal_error (input_location,
1325 "LEXER_DEBUGGING_ENABLED_P is not set to true");
1327 lexer->debugging_p = false;
1328 cp_lexer_debug_stream = NULL;
1331 /* Create a new cp_token_cache, representing a range of tokens. */
1333 static cp_token_cache *
1334 cp_token_cache_new (cp_token *first, cp_token *last)
1336 cp_token_cache *cache = ggc_alloc<cp_token_cache> ();
1337 cache->first = first;
1338 cache->last = last;
1339 return cache;
1342 /* Diagnose if #pragma omp declare simd isn't followed immediately
1343 by function declaration or definition. */
1345 static inline void
1346 cp_ensure_no_omp_declare_simd (cp_parser *parser)
1348 if (parser->omp_declare_simd && !parser->omp_declare_simd->error_seen)
1350 error ("%<#pragma omp declare simd%> not immediately followed by "
1351 "function declaration or definition");
1352 parser->omp_declare_simd = NULL;
1356 /* Finalize #pragma omp declare simd clauses after FNDECL has been parsed,
1357 and put that into "omp declare simd" attribute. */
1359 static inline void
1360 cp_finalize_omp_declare_simd (cp_parser *parser, tree fndecl)
1362 if (__builtin_expect (parser->omp_declare_simd != NULL, 0))
1364 if (fndecl == error_mark_node)
1366 parser->omp_declare_simd = NULL;
1367 return;
1369 if (TREE_CODE (fndecl) != FUNCTION_DECL)
1371 cp_ensure_no_omp_declare_simd (parser);
1372 return;
1377 /* Diagnose if #pragma acc routine isn't followed immediately by function
1378 declaration or definition. */
1380 static inline void
1381 cp_ensure_no_oacc_routine (cp_parser *parser)
1383 if (parser->oacc_routine && !parser->oacc_routine->error_seen)
1385 tree clauses = parser->oacc_routine->clauses;
1386 location_t loc = OMP_CLAUSE_LOCATION (TREE_PURPOSE (clauses));
1388 error_at (loc, "%<#pragma acc routine%> not followed by a function "
1389 "declaration or definition");
1390 parser->oacc_routine = NULL;
1394 /* Decl-specifiers. */
1396 /* Set *DECL_SPECS to represent an empty decl-specifier-seq. */
1398 static void
1399 clear_decl_specs (cp_decl_specifier_seq *decl_specs)
1401 memset (decl_specs, 0, sizeof (cp_decl_specifier_seq));
1404 /* Declarators. */
1406 /* Nothing other than the parser should be creating declarators;
1407 declarators are a semi-syntactic representation of C++ entities.
1408 Other parts of the front end that need to create entities (like
1409 VAR_DECLs or FUNCTION_DECLs) should do that directly. */
1411 static cp_declarator *make_call_declarator
1412 (cp_declarator *, tree, cp_cv_quals, cp_virt_specifiers, cp_ref_qualifier, tree, tree, tree, tree);
1413 static cp_declarator *make_array_declarator
1414 (cp_declarator *, tree);
1415 static cp_declarator *make_pointer_declarator
1416 (cp_cv_quals, cp_declarator *, tree);
1417 static cp_declarator *make_reference_declarator
1418 (cp_cv_quals, cp_declarator *, bool, tree);
1419 static cp_declarator *make_ptrmem_declarator
1420 (cp_cv_quals, tree, cp_declarator *, tree);
1422 /* An erroneous declarator. */
1423 static cp_declarator *cp_error_declarator;
1425 /* The obstack on which declarators and related data structures are
1426 allocated. */
1427 static struct obstack declarator_obstack;
1429 /* Alloc BYTES from the declarator memory pool. */
1431 static inline void *
1432 alloc_declarator (size_t bytes)
1434 return obstack_alloc (&declarator_obstack, bytes);
1437 /* Allocate a declarator of the indicated KIND. Clear fields that are
1438 common to all declarators. */
1440 static cp_declarator *
1441 make_declarator (cp_declarator_kind kind)
1443 cp_declarator *declarator;
1445 declarator = (cp_declarator *) alloc_declarator (sizeof (cp_declarator));
1446 declarator->kind = kind;
1447 declarator->attributes = NULL_TREE;
1448 declarator->std_attributes = NULL_TREE;
1449 declarator->declarator = NULL;
1450 declarator->parameter_pack_p = false;
1451 declarator->id_loc = UNKNOWN_LOCATION;
1453 return declarator;
1456 /* Make a declarator for a generalized identifier. If
1457 QUALIFYING_SCOPE is non-NULL, the identifier is
1458 QUALIFYING_SCOPE::UNQUALIFIED_NAME; otherwise, it is just
1459 UNQUALIFIED_NAME. SFK indicates the kind of special function this
1460 is, if any. */
1462 static cp_declarator *
1463 make_id_declarator (tree qualifying_scope, tree unqualified_name,
1464 special_function_kind sfk)
1466 cp_declarator *declarator;
1468 /* It is valid to write:
1470 class C { void f(); };
1471 typedef C D;
1472 void D::f();
1474 The standard is not clear about whether `typedef const C D' is
1475 legal; as of 2002-09-15 the committee is considering that
1476 question. EDG 3.0 allows that syntax. Therefore, we do as
1477 well. */
1478 if (qualifying_scope && TYPE_P (qualifying_scope))
1479 qualifying_scope = TYPE_MAIN_VARIANT (qualifying_scope);
1481 gcc_assert (identifier_p (unqualified_name)
1482 || TREE_CODE (unqualified_name) == BIT_NOT_EXPR
1483 || TREE_CODE (unqualified_name) == TEMPLATE_ID_EXPR);
1485 declarator = make_declarator (cdk_id);
1486 declarator->u.id.qualifying_scope = qualifying_scope;
1487 declarator->u.id.unqualified_name = unqualified_name;
1488 declarator->u.id.sfk = sfk;
1490 return declarator;
1493 /* Make a declarator for a pointer to TARGET. CV_QUALIFIERS is a list
1494 of modifiers such as const or volatile to apply to the pointer
1495 type, represented as identifiers. ATTRIBUTES represent the attributes that
1496 appertain to the pointer or reference. */
1498 cp_declarator *
1499 make_pointer_declarator (cp_cv_quals cv_qualifiers, cp_declarator *target,
1500 tree attributes)
1502 cp_declarator *declarator;
1504 declarator = make_declarator (cdk_pointer);
1505 declarator->declarator = target;
1506 declarator->u.pointer.qualifiers = cv_qualifiers;
1507 declarator->u.pointer.class_type = NULL_TREE;
1508 if (target)
1510 declarator->id_loc = target->id_loc;
1511 declarator->parameter_pack_p = target->parameter_pack_p;
1512 target->parameter_pack_p = false;
1514 else
1515 declarator->parameter_pack_p = false;
1517 declarator->std_attributes = attributes;
1519 return declarator;
1522 /* Like make_pointer_declarator -- but for references. ATTRIBUTES
1523 represent the attributes that appertain to the pointer or
1524 reference. */
1526 cp_declarator *
1527 make_reference_declarator (cp_cv_quals cv_qualifiers, cp_declarator *target,
1528 bool rvalue_ref, tree attributes)
1530 cp_declarator *declarator;
1532 declarator = make_declarator (cdk_reference);
1533 declarator->declarator = target;
1534 declarator->u.reference.qualifiers = cv_qualifiers;
1535 declarator->u.reference.rvalue_ref = rvalue_ref;
1536 if (target)
1538 declarator->id_loc = target->id_loc;
1539 declarator->parameter_pack_p = target->parameter_pack_p;
1540 target->parameter_pack_p = false;
1542 else
1543 declarator->parameter_pack_p = false;
1545 declarator->std_attributes = attributes;
1547 return declarator;
1550 /* Like make_pointer_declarator -- but for a pointer to a non-static
1551 member of CLASS_TYPE. ATTRIBUTES represent the attributes that
1552 appertain to the pointer or reference. */
1554 cp_declarator *
1555 make_ptrmem_declarator (cp_cv_quals cv_qualifiers, tree class_type,
1556 cp_declarator *pointee,
1557 tree attributes)
1559 cp_declarator *declarator;
1561 declarator = make_declarator (cdk_ptrmem);
1562 declarator->declarator = pointee;
1563 declarator->u.pointer.qualifiers = cv_qualifiers;
1564 declarator->u.pointer.class_type = class_type;
1566 if (pointee)
1568 declarator->parameter_pack_p = pointee->parameter_pack_p;
1569 pointee->parameter_pack_p = false;
1571 else
1572 declarator->parameter_pack_p = false;
1574 declarator->std_attributes = attributes;
1576 return declarator;
1579 /* Make a declarator for the function given by TARGET, with the
1580 indicated PARMS. The CV_QUALIFIERS aply to the function, as in
1581 "const"-qualified member function. The EXCEPTION_SPECIFICATION
1582 indicates what exceptions can be thrown. */
1584 cp_declarator *
1585 make_call_declarator (cp_declarator *target,
1586 tree parms,
1587 cp_cv_quals cv_qualifiers,
1588 cp_virt_specifiers virt_specifiers,
1589 cp_ref_qualifier ref_qualifier,
1590 tree tx_qualifier,
1591 tree exception_specification,
1592 tree late_return_type,
1593 tree requires_clause)
1595 cp_declarator *declarator;
1597 declarator = make_declarator (cdk_function);
1598 declarator->declarator = target;
1599 declarator->u.function.parameters = parms;
1600 declarator->u.function.qualifiers = cv_qualifiers;
1601 declarator->u.function.virt_specifiers = virt_specifiers;
1602 declarator->u.function.ref_qualifier = ref_qualifier;
1603 declarator->u.function.tx_qualifier = tx_qualifier;
1604 declarator->u.function.exception_specification = exception_specification;
1605 declarator->u.function.late_return_type = late_return_type;
1606 declarator->u.function.requires_clause = requires_clause;
1607 if (target)
1609 declarator->id_loc = target->id_loc;
1610 declarator->parameter_pack_p = target->parameter_pack_p;
1611 target->parameter_pack_p = false;
1613 else
1614 declarator->parameter_pack_p = false;
1616 return declarator;
1619 /* Make a declarator for an array of BOUNDS elements, each of which is
1620 defined by ELEMENT. */
1622 cp_declarator *
1623 make_array_declarator (cp_declarator *element, tree bounds)
1625 cp_declarator *declarator;
1627 declarator = make_declarator (cdk_array);
1628 declarator->declarator = element;
1629 declarator->u.array.bounds = bounds;
1630 if (element)
1632 declarator->id_loc = element->id_loc;
1633 declarator->parameter_pack_p = element->parameter_pack_p;
1634 element->parameter_pack_p = false;
1636 else
1637 declarator->parameter_pack_p = false;
1639 return declarator;
1642 /* Determine whether the declarator we've seen so far can be a
1643 parameter pack, when followed by an ellipsis. */
1644 static bool
1645 declarator_can_be_parameter_pack (cp_declarator *declarator)
1647 if (declarator && declarator->parameter_pack_p)
1648 /* We already saw an ellipsis. */
1649 return false;
1651 /* Search for a declarator name, or any other declarator that goes
1652 after the point where the ellipsis could appear in a parameter
1653 pack. If we find any of these, then this declarator can not be
1654 made into a parameter pack. */
1655 bool found = false;
1656 while (declarator && !found)
1658 switch ((int)declarator->kind)
1660 case cdk_id:
1661 case cdk_array:
1662 found = true;
1663 break;
1665 case cdk_error:
1666 return true;
1668 default:
1669 declarator = declarator->declarator;
1670 break;
1674 return !found;
1677 cp_parameter_declarator *no_parameters;
1679 /* Create a parameter declarator with the indicated DECL_SPECIFIERS,
1680 DECLARATOR and DEFAULT_ARGUMENT. */
1682 cp_parameter_declarator *
1683 make_parameter_declarator (cp_decl_specifier_seq *decl_specifiers,
1684 cp_declarator *declarator,
1685 tree default_argument,
1686 bool template_parameter_pack_p = false)
1688 cp_parameter_declarator *parameter;
1690 parameter = ((cp_parameter_declarator *)
1691 alloc_declarator (sizeof (cp_parameter_declarator)));
1692 parameter->next = NULL;
1693 if (decl_specifiers)
1694 parameter->decl_specifiers = *decl_specifiers;
1695 else
1696 clear_decl_specs (&parameter->decl_specifiers);
1697 parameter->declarator = declarator;
1698 parameter->default_argument = default_argument;
1699 parameter->template_parameter_pack_p = template_parameter_pack_p;
1701 return parameter;
1704 /* Returns true iff DECLARATOR is a declaration for a function. */
1706 static bool
1707 function_declarator_p (const cp_declarator *declarator)
1709 while (declarator)
1711 if (declarator->kind == cdk_function
1712 && declarator->declarator->kind == cdk_id)
1713 return true;
1714 if (declarator->kind == cdk_id
1715 || declarator->kind == cdk_error)
1716 return false;
1717 declarator = declarator->declarator;
1719 return false;
1722 /* The parser. */
1724 /* Overview
1725 --------
1727 A cp_parser parses the token stream as specified by the C++
1728 grammar. Its job is purely parsing, not semantic analysis. For
1729 example, the parser breaks the token stream into declarators,
1730 expressions, statements, and other similar syntactic constructs.
1731 It does not check that the types of the expressions on either side
1732 of an assignment-statement are compatible, or that a function is
1733 not declared with a parameter of type `void'.
1735 The parser invokes routines elsewhere in the compiler to perform
1736 semantic analysis and to build up the abstract syntax tree for the
1737 code processed.
1739 The parser (and the template instantiation code, which is, in a
1740 way, a close relative of parsing) are the only parts of the
1741 compiler that should be calling push_scope and pop_scope, or
1742 related functions. The parser (and template instantiation code)
1743 keeps track of what scope is presently active; everything else
1744 should simply honor that. (The code that generates static
1745 initializers may also need to set the scope, in order to check
1746 access control correctly when emitting the initializers.)
1748 Methodology
1749 -----------
1751 The parser is of the standard recursive-descent variety. Upcoming
1752 tokens in the token stream are examined in order to determine which
1753 production to use when parsing a non-terminal. Some C++ constructs
1754 require arbitrary look ahead to disambiguate. For example, it is
1755 impossible, in the general case, to tell whether a statement is an
1756 expression or declaration without scanning the entire statement.
1757 Therefore, the parser is capable of "parsing tentatively." When the
1758 parser is not sure what construct comes next, it enters this mode.
1759 Then, while we attempt to parse the construct, the parser queues up
1760 error messages, rather than issuing them immediately, and saves the
1761 tokens it consumes. If the construct is parsed successfully, the
1762 parser "commits", i.e., it issues any queued error messages and
1763 the tokens that were being preserved are permanently discarded.
1764 If, however, the construct is not parsed successfully, the parser
1765 rolls back its state completely so that it can resume parsing using
1766 a different alternative.
1768 Future Improvements
1769 -------------------
1771 The performance of the parser could probably be improved substantially.
1772 We could often eliminate the need to parse tentatively by looking ahead
1773 a little bit. In some places, this approach might not entirely eliminate
1774 the need to parse tentatively, but it might still speed up the average
1775 case. */
1777 /* Flags that are passed to some parsing functions. These values can
1778 be bitwise-ored together. */
1780 enum
1782 /* No flags. */
1783 CP_PARSER_FLAGS_NONE = 0x0,
1784 /* The construct is optional. If it is not present, then no error
1785 should be issued. */
1786 CP_PARSER_FLAGS_OPTIONAL = 0x1,
1787 /* When parsing a type-specifier, treat user-defined type-names
1788 as non-type identifiers. */
1789 CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES = 0x2,
1790 /* When parsing a type-specifier, do not try to parse a class-specifier
1791 or enum-specifier. */
1792 CP_PARSER_FLAGS_NO_TYPE_DEFINITIONS = 0x4,
1793 /* When parsing a decl-specifier-seq, only allow type-specifier or
1794 constexpr. */
1795 CP_PARSER_FLAGS_ONLY_TYPE_OR_CONSTEXPR = 0x8
1798 /* This type is used for parameters and variables which hold
1799 combinations of the above flags. */
1800 typedef int cp_parser_flags;
1802 /* The different kinds of declarators we want to parse. */
1804 enum cp_parser_declarator_kind
1806 /* We want an abstract declarator. */
1807 CP_PARSER_DECLARATOR_ABSTRACT,
1808 /* We want a named declarator. */
1809 CP_PARSER_DECLARATOR_NAMED,
1810 /* We don't mind, but the name must be an unqualified-id. */
1811 CP_PARSER_DECLARATOR_EITHER
1814 /* The precedence values used to parse binary expressions. The minimum value
1815 of PREC must be 1, because zero is reserved to quickly discriminate
1816 binary operators from other tokens. */
1818 enum cp_parser_prec
1820 PREC_NOT_OPERATOR,
1821 PREC_LOGICAL_OR_EXPRESSION,
1822 PREC_LOGICAL_AND_EXPRESSION,
1823 PREC_INCLUSIVE_OR_EXPRESSION,
1824 PREC_EXCLUSIVE_OR_EXPRESSION,
1825 PREC_AND_EXPRESSION,
1826 PREC_EQUALITY_EXPRESSION,
1827 PREC_RELATIONAL_EXPRESSION,
1828 PREC_SHIFT_EXPRESSION,
1829 PREC_ADDITIVE_EXPRESSION,
1830 PREC_MULTIPLICATIVE_EXPRESSION,
1831 PREC_PM_EXPRESSION,
1832 NUM_PREC_VALUES = PREC_PM_EXPRESSION
1835 /* A mapping from a token type to a corresponding tree node type, with a
1836 precedence value. */
1838 struct cp_parser_binary_operations_map_node
1840 /* The token type. */
1841 enum cpp_ttype token_type;
1842 /* The corresponding tree code. */
1843 enum tree_code tree_type;
1844 /* The precedence of this operator. */
1845 enum cp_parser_prec prec;
1848 struct cp_parser_expression_stack_entry
1850 /* Left hand side of the binary operation we are currently
1851 parsing. */
1852 cp_expr lhs;
1853 /* Original tree code for left hand side, if it was a binary
1854 expression itself (used for -Wparentheses). */
1855 enum tree_code lhs_type;
1856 /* Tree code for the binary operation we are parsing. */
1857 enum tree_code tree_type;
1858 /* Precedence of the binary operation we are parsing. */
1859 enum cp_parser_prec prec;
1860 /* Location of the binary operation we are parsing. */
1861 location_t loc;
1864 /* The stack for storing partial expressions. We only need NUM_PREC_VALUES
1865 entries because precedence levels on the stack are monotonically
1866 increasing. */
1867 typedef struct cp_parser_expression_stack_entry
1868 cp_parser_expression_stack[NUM_PREC_VALUES];
1870 /* Prototypes. */
1872 /* Constructors and destructors. */
1874 static cp_parser_context *cp_parser_context_new
1875 (cp_parser_context *);
1877 /* Class variables. */
1879 static GTY((deletable)) cp_parser_context* cp_parser_context_free_list;
1881 /* The operator-precedence table used by cp_parser_binary_expression.
1882 Transformed into an associative array (binops_by_token) by
1883 cp_parser_new. */
1885 static const cp_parser_binary_operations_map_node binops[] = {
1886 { CPP_DEREF_STAR, MEMBER_REF, PREC_PM_EXPRESSION },
1887 { CPP_DOT_STAR, DOTSTAR_EXPR, PREC_PM_EXPRESSION },
1889 { CPP_MULT, MULT_EXPR, PREC_MULTIPLICATIVE_EXPRESSION },
1890 { CPP_DIV, TRUNC_DIV_EXPR, PREC_MULTIPLICATIVE_EXPRESSION },
1891 { CPP_MOD, TRUNC_MOD_EXPR, PREC_MULTIPLICATIVE_EXPRESSION },
1893 { CPP_PLUS, PLUS_EXPR, PREC_ADDITIVE_EXPRESSION },
1894 { CPP_MINUS, MINUS_EXPR, PREC_ADDITIVE_EXPRESSION },
1896 { CPP_LSHIFT, LSHIFT_EXPR, PREC_SHIFT_EXPRESSION },
1897 { CPP_RSHIFT, RSHIFT_EXPR, PREC_SHIFT_EXPRESSION },
1899 { CPP_LESS, LT_EXPR, PREC_RELATIONAL_EXPRESSION },
1900 { CPP_GREATER, GT_EXPR, PREC_RELATIONAL_EXPRESSION },
1901 { CPP_LESS_EQ, LE_EXPR, PREC_RELATIONAL_EXPRESSION },
1902 { CPP_GREATER_EQ, GE_EXPR, PREC_RELATIONAL_EXPRESSION },
1904 { CPP_EQ_EQ, EQ_EXPR, PREC_EQUALITY_EXPRESSION },
1905 { CPP_NOT_EQ, NE_EXPR, PREC_EQUALITY_EXPRESSION },
1907 { CPP_AND, BIT_AND_EXPR, PREC_AND_EXPRESSION },
1909 { CPP_XOR, BIT_XOR_EXPR, PREC_EXCLUSIVE_OR_EXPRESSION },
1911 { CPP_OR, BIT_IOR_EXPR, PREC_INCLUSIVE_OR_EXPRESSION },
1913 { CPP_AND_AND, TRUTH_ANDIF_EXPR, PREC_LOGICAL_AND_EXPRESSION },
1915 { CPP_OR_OR, TRUTH_ORIF_EXPR, PREC_LOGICAL_OR_EXPRESSION }
1918 /* The same as binops, but initialized by cp_parser_new so that
1919 binops_by_token[N].token_type == N. Used in cp_parser_binary_expression
1920 for speed. */
1921 static cp_parser_binary_operations_map_node binops_by_token[N_CP_TTYPES];
1923 /* Constructors and destructors. */
1925 /* Construct a new context. The context below this one on the stack
1926 is given by NEXT. */
1928 static cp_parser_context *
1929 cp_parser_context_new (cp_parser_context* next)
1931 cp_parser_context *context;
1933 /* Allocate the storage. */
1934 if (cp_parser_context_free_list != NULL)
1936 /* Pull the first entry from the free list. */
1937 context = cp_parser_context_free_list;
1938 cp_parser_context_free_list = context->next;
1939 memset (context, 0, sizeof (*context));
1941 else
1942 context = ggc_cleared_alloc<cp_parser_context> ();
1944 /* No errors have occurred yet in this context. */
1945 context->status = CP_PARSER_STATUS_KIND_NO_ERROR;
1946 /* If this is not the bottommost context, copy information that we
1947 need from the previous context. */
1948 if (next)
1950 /* If, in the NEXT context, we are parsing an `x->' or `x.'
1951 expression, then we are parsing one in this context, too. */
1952 context->object_type = next->object_type;
1953 /* Thread the stack. */
1954 context->next = next;
1957 return context;
1960 /* Managing the unparsed function queues. */
1962 #define unparsed_funs_with_default_args \
1963 parser->unparsed_queues->last ().funs_with_default_args
1964 #define unparsed_funs_with_definitions \
1965 parser->unparsed_queues->last ().funs_with_definitions
1966 #define unparsed_nsdmis \
1967 parser->unparsed_queues->last ().nsdmis
1968 #define unparsed_classes \
1969 parser->unparsed_queues->last ().classes
1971 static void
1972 push_unparsed_function_queues (cp_parser *parser)
1974 cp_unparsed_functions_entry e = {NULL, make_tree_vector (), NULL, NULL};
1975 vec_safe_push (parser->unparsed_queues, e);
1978 static void
1979 pop_unparsed_function_queues (cp_parser *parser)
1981 release_tree_vector (unparsed_funs_with_definitions);
1982 parser->unparsed_queues->pop ();
1985 /* Prototypes. */
1987 /* Constructors and destructors. */
1989 static cp_parser *cp_parser_new
1990 (void);
1992 /* Routines to parse various constructs.
1994 Those that return `tree' will return the error_mark_node (rather
1995 than NULL_TREE) if a parse error occurs, unless otherwise noted.
1996 Sometimes, they will return an ordinary node if error-recovery was
1997 attempted, even though a parse error occurred. So, to check
1998 whether or not a parse error occurred, you should always use
1999 cp_parser_error_occurred. If the construct is optional (indicated
2000 either by an `_opt' in the name of the function that does the
2001 parsing or via a FLAGS parameter), then NULL_TREE is returned if
2002 the construct is not present. */
2004 /* Lexical conventions [gram.lex] */
2006 static cp_expr cp_parser_identifier
2007 (cp_parser *);
2008 static cp_expr cp_parser_string_literal
2009 (cp_parser *, bool, bool, bool);
2010 static cp_expr cp_parser_userdef_char_literal
2011 (cp_parser *);
2012 static tree cp_parser_userdef_string_literal
2013 (tree);
2014 static cp_expr cp_parser_userdef_numeric_literal
2015 (cp_parser *);
2017 /* Basic concepts [gram.basic] */
2019 static bool cp_parser_translation_unit
2020 (cp_parser *);
2022 /* Expressions [gram.expr] */
2024 static cp_expr cp_parser_primary_expression
2025 (cp_parser *, bool, bool, bool, cp_id_kind *);
2026 static cp_expr cp_parser_id_expression
2027 (cp_parser *, bool, bool, bool *, bool, bool);
2028 static cp_expr cp_parser_unqualified_id
2029 (cp_parser *, bool, bool, bool, bool);
2030 static tree cp_parser_nested_name_specifier_opt
2031 (cp_parser *, bool, bool, bool, bool);
2032 static tree cp_parser_nested_name_specifier
2033 (cp_parser *, bool, bool, bool, bool);
2034 static tree cp_parser_qualifying_entity
2035 (cp_parser *, bool, bool, bool, bool, bool);
2036 static cp_expr cp_parser_postfix_expression
2037 (cp_parser *, bool, bool, bool, bool, cp_id_kind *);
2038 static tree cp_parser_postfix_open_square_expression
2039 (cp_parser *, tree, bool, bool);
2040 static tree cp_parser_postfix_dot_deref_expression
2041 (cp_parser *, enum cpp_ttype, cp_expr, bool, cp_id_kind *, location_t);
2042 static vec<tree, va_gc> *cp_parser_parenthesized_expression_list
2043 (cp_parser *, int, bool, bool, bool *, location_t * = NULL);
2044 /* Values for the second parameter of cp_parser_parenthesized_expression_list. */
2045 enum { non_attr = 0, normal_attr = 1, id_attr = 2 };
2046 static void cp_parser_pseudo_destructor_name
2047 (cp_parser *, tree, tree *, tree *);
2048 static cp_expr cp_parser_unary_expression
2049 (cp_parser *, cp_id_kind * = NULL, bool = false, bool = false, bool = false);
2050 static enum tree_code cp_parser_unary_operator
2051 (cp_token *);
2052 static tree cp_parser_new_expression
2053 (cp_parser *);
2054 static vec<tree, va_gc> *cp_parser_new_placement
2055 (cp_parser *);
2056 static tree cp_parser_new_type_id
2057 (cp_parser *, tree *);
2058 static cp_declarator *cp_parser_new_declarator_opt
2059 (cp_parser *);
2060 static cp_declarator *cp_parser_direct_new_declarator
2061 (cp_parser *);
2062 static vec<tree, va_gc> *cp_parser_new_initializer
2063 (cp_parser *);
2064 static tree cp_parser_delete_expression
2065 (cp_parser *);
2066 static cp_expr cp_parser_cast_expression
2067 (cp_parser *, bool, bool, bool, cp_id_kind *);
2068 static cp_expr cp_parser_binary_expression
2069 (cp_parser *, bool, bool, enum cp_parser_prec, cp_id_kind *);
2070 static tree cp_parser_question_colon_clause
2071 (cp_parser *, cp_expr);
2072 static cp_expr cp_parser_assignment_expression
2073 (cp_parser *, cp_id_kind * = NULL, bool = false, bool = false);
2074 static enum tree_code cp_parser_assignment_operator_opt
2075 (cp_parser *);
2076 static cp_expr cp_parser_expression
2077 (cp_parser *, cp_id_kind * = NULL, bool = false, bool = false);
2078 static cp_expr cp_parser_constant_expression
2079 (cp_parser *, bool = false, bool * = NULL);
2080 static cp_expr cp_parser_builtin_offsetof
2081 (cp_parser *);
2082 static cp_expr cp_parser_lambda_expression
2083 (cp_parser *);
2084 static void cp_parser_lambda_introducer
2085 (cp_parser *, tree);
2086 static bool cp_parser_lambda_declarator_opt
2087 (cp_parser *, tree);
2088 static void cp_parser_lambda_body
2089 (cp_parser *, tree);
2091 /* Statements [gram.stmt.stmt] */
2093 static void cp_parser_statement
2094 (cp_parser *, tree, bool, bool *, vec<tree> * = NULL);
2095 static void cp_parser_label_for_labeled_statement
2096 (cp_parser *, tree);
2097 static tree cp_parser_expression_statement
2098 (cp_parser *, tree);
2099 static tree cp_parser_compound_statement
2100 (cp_parser *, tree, int, bool);
2101 static void cp_parser_statement_seq_opt
2102 (cp_parser *, tree);
2103 static tree cp_parser_selection_statement
2104 (cp_parser *, bool *, vec<tree> *);
2105 static tree cp_parser_condition
2106 (cp_parser *);
2107 static tree cp_parser_iteration_statement
2108 (cp_parser *, bool *, bool);
2109 static bool cp_parser_for_init_statement
2110 (cp_parser *, tree *decl);
2111 static tree cp_parser_for
2112 (cp_parser *, bool);
2113 static tree cp_parser_c_for
2114 (cp_parser *, tree, tree, bool);
2115 static tree cp_parser_range_for
2116 (cp_parser *, tree, tree, tree, bool);
2117 static void do_range_for_auto_deduction
2118 (tree, tree);
2119 static tree cp_parser_perform_range_for_lookup
2120 (tree, tree *, tree *);
2121 static tree cp_parser_range_for_member_function
2122 (tree, tree);
2123 static tree cp_parser_jump_statement
2124 (cp_parser *);
2125 static void cp_parser_declaration_statement
2126 (cp_parser *);
2128 static tree cp_parser_implicitly_scoped_statement
2129 (cp_parser *, bool *, const token_indent_info &, vec<tree> * = NULL);
2130 static void cp_parser_already_scoped_statement
2131 (cp_parser *, bool *, const token_indent_info &);
2133 /* Declarations [gram.dcl.dcl] */
2135 static void cp_parser_declaration_seq_opt
2136 (cp_parser *);
2137 static void cp_parser_declaration
2138 (cp_parser *);
2139 static void cp_parser_block_declaration
2140 (cp_parser *, bool);
2141 static void cp_parser_simple_declaration
2142 (cp_parser *, bool, tree *);
2143 static void cp_parser_decl_specifier_seq
2144 (cp_parser *, cp_parser_flags, cp_decl_specifier_seq *, int *);
2145 static tree cp_parser_storage_class_specifier_opt
2146 (cp_parser *);
2147 static tree cp_parser_function_specifier_opt
2148 (cp_parser *, cp_decl_specifier_seq *);
2149 static tree cp_parser_type_specifier
2150 (cp_parser *, cp_parser_flags, cp_decl_specifier_seq *, bool,
2151 int *, bool *);
2152 static tree cp_parser_simple_type_specifier
2153 (cp_parser *, cp_decl_specifier_seq *, cp_parser_flags);
2154 static tree cp_parser_type_name
2155 (cp_parser *, bool);
2156 static tree cp_parser_type_name
2157 (cp_parser *);
2158 static tree cp_parser_nonclass_name
2159 (cp_parser* parser);
2160 static tree cp_parser_elaborated_type_specifier
2161 (cp_parser *, bool, bool);
2162 static tree cp_parser_enum_specifier
2163 (cp_parser *);
2164 static void cp_parser_enumerator_list
2165 (cp_parser *, tree);
2166 static void cp_parser_enumerator_definition
2167 (cp_parser *, tree);
2168 static tree cp_parser_namespace_name
2169 (cp_parser *);
2170 static void cp_parser_namespace_definition
2171 (cp_parser *);
2172 static void cp_parser_namespace_body
2173 (cp_parser *);
2174 static tree cp_parser_qualified_namespace_specifier
2175 (cp_parser *);
2176 static void cp_parser_namespace_alias_definition
2177 (cp_parser *);
2178 static bool cp_parser_using_declaration
2179 (cp_parser *, bool);
2180 static void cp_parser_using_directive
2181 (cp_parser *);
2182 static tree cp_parser_alias_declaration
2183 (cp_parser *);
2184 static void cp_parser_asm_definition
2185 (cp_parser *);
2186 static void cp_parser_linkage_specification
2187 (cp_parser *);
2188 static void cp_parser_static_assert
2189 (cp_parser *, bool);
2190 static tree cp_parser_decltype
2191 (cp_parser *);
2193 /* Declarators [gram.dcl.decl] */
2195 static tree cp_parser_init_declarator
2196 (cp_parser *, cp_decl_specifier_seq *, vec<deferred_access_check, va_gc> *,
2197 bool, bool, int, bool *, tree *, location_t *, tree *);
2198 static cp_declarator *cp_parser_declarator
2199 (cp_parser *, cp_parser_declarator_kind, int *, bool *, bool, bool);
2200 static cp_declarator *cp_parser_direct_declarator
2201 (cp_parser *, cp_parser_declarator_kind, int *, bool, bool);
2202 static enum tree_code cp_parser_ptr_operator
2203 (cp_parser *, tree *, cp_cv_quals *, tree *);
2204 static cp_cv_quals cp_parser_cv_qualifier_seq_opt
2205 (cp_parser *);
2206 static cp_virt_specifiers cp_parser_virt_specifier_seq_opt
2207 (cp_parser *);
2208 static cp_ref_qualifier cp_parser_ref_qualifier_opt
2209 (cp_parser *);
2210 static tree cp_parser_tx_qualifier_opt
2211 (cp_parser *);
2212 static tree cp_parser_late_return_type_opt
2213 (cp_parser *, cp_declarator *, tree &, cp_cv_quals);
2214 static tree cp_parser_declarator_id
2215 (cp_parser *, bool);
2216 static tree cp_parser_type_id
2217 (cp_parser *);
2218 static tree cp_parser_template_type_arg
2219 (cp_parser *);
2220 static tree cp_parser_trailing_type_id (cp_parser *);
2221 static tree cp_parser_type_id_1
2222 (cp_parser *, bool, bool);
2223 static void cp_parser_type_specifier_seq
2224 (cp_parser *, bool, bool, cp_decl_specifier_seq *);
2225 static tree cp_parser_parameter_declaration_clause
2226 (cp_parser *);
2227 static tree cp_parser_parameter_declaration_list
2228 (cp_parser *, bool *);
2229 static cp_parameter_declarator *cp_parser_parameter_declaration
2230 (cp_parser *, bool, bool *);
2231 static tree cp_parser_default_argument
2232 (cp_parser *, bool);
2233 static void cp_parser_function_body
2234 (cp_parser *, bool);
2235 static tree cp_parser_initializer
2236 (cp_parser *, bool *, bool *);
2237 static cp_expr cp_parser_initializer_clause
2238 (cp_parser *, bool *);
2239 static cp_expr cp_parser_braced_list
2240 (cp_parser*, bool*);
2241 static vec<constructor_elt, va_gc> *cp_parser_initializer_list
2242 (cp_parser *, bool *);
2244 static bool cp_parser_ctor_initializer_opt_and_function_body
2245 (cp_parser *, bool);
2247 static tree cp_parser_late_parsing_omp_declare_simd
2248 (cp_parser *, tree);
2250 static tree cp_parser_late_parsing_cilk_simd_fn_info
2251 (cp_parser *, tree);
2253 static tree cp_parser_late_parsing_oacc_routine
2254 (cp_parser *, tree);
2256 static tree synthesize_implicit_template_parm
2257 (cp_parser *, tree);
2258 static tree finish_fully_implicit_template
2259 (cp_parser *, tree);
2261 /* Classes [gram.class] */
2263 static tree cp_parser_class_name
2264 (cp_parser *, bool, bool, enum tag_types, bool, bool, bool, bool = false);
2265 static tree cp_parser_class_specifier
2266 (cp_parser *);
2267 static tree cp_parser_class_head
2268 (cp_parser *, bool *);
2269 static enum tag_types cp_parser_class_key
2270 (cp_parser *);
2271 static void cp_parser_type_parameter_key
2272 (cp_parser* parser);
2273 static void cp_parser_member_specification_opt
2274 (cp_parser *);
2275 static void cp_parser_member_declaration
2276 (cp_parser *);
2277 static tree cp_parser_pure_specifier
2278 (cp_parser *);
2279 static tree cp_parser_constant_initializer
2280 (cp_parser *);
2282 /* Derived classes [gram.class.derived] */
2284 static tree cp_parser_base_clause
2285 (cp_parser *);
2286 static tree cp_parser_base_specifier
2287 (cp_parser *);
2289 /* Special member functions [gram.special] */
2291 static tree cp_parser_conversion_function_id
2292 (cp_parser *);
2293 static tree cp_parser_conversion_type_id
2294 (cp_parser *);
2295 static cp_declarator *cp_parser_conversion_declarator_opt
2296 (cp_parser *);
2297 static bool cp_parser_ctor_initializer_opt
2298 (cp_parser *);
2299 static void cp_parser_mem_initializer_list
2300 (cp_parser *);
2301 static tree cp_parser_mem_initializer
2302 (cp_parser *);
2303 static tree cp_parser_mem_initializer_id
2304 (cp_parser *);
2306 /* Overloading [gram.over] */
2308 static cp_expr cp_parser_operator_function_id
2309 (cp_parser *);
2310 static cp_expr cp_parser_operator
2311 (cp_parser *);
2313 /* Templates [gram.temp] */
2315 static void cp_parser_template_declaration
2316 (cp_parser *, bool);
2317 static tree cp_parser_template_parameter_list
2318 (cp_parser *);
2319 static tree cp_parser_template_parameter
2320 (cp_parser *, bool *, bool *);
2321 static tree cp_parser_type_parameter
2322 (cp_parser *, bool *);
2323 static tree cp_parser_template_id
2324 (cp_parser *, bool, bool, enum tag_types, bool);
2325 static tree cp_parser_template_name
2326 (cp_parser *, bool, bool, bool, enum tag_types, bool *);
2327 static tree cp_parser_template_argument_list
2328 (cp_parser *);
2329 static tree cp_parser_template_argument
2330 (cp_parser *);
2331 static void cp_parser_explicit_instantiation
2332 (cp_parser *);
2333 static void cp_parser_explicit_specialization
2334 (cp_parser *);
2336 /* Exception handling [gram.exception] */
2338 static tree cp_parser_try_block
2339 (cp_parser *);
2340 static bool cp_parser_function_try_block
2341 (cp_parser *);
2342 static void cp_parser_handler_seq
2343 (cp_parser *);
2344 static void cp_parser_handler
2345 (cp_parser *);
2346 static tree cp_parser_exception_declaration
2347 (cp_parser *);
2348 static tree cp_parser_throw_expression
2349 (cp_parser *);
2350 static tree cp_parser_exception_specification_opt
2351 (cp_parser *);
2352 static tree cp_parser_type_id_list
2353 (cp_parser *);
2355 /* GNU Extensions */
2357 static tree cp_parser_asm_specification_opt
2358 (cp_parser *);
2359 static tree cp_parser_asm_operand_list
2360 (cp_parser *);
2361 static tree cp_parser_asm_clobber_list
2362 (cp_parser *);
2363 static tree cp_parser_asm_label_list
2364 (cp_parser *);
2365 static bool cp_next_tokens_can_be_attribute_p
2366 (cp_parser *);
2367 static bool cp_next_tokens_can_be_gnu_attribute_p
2368 (cp_parser *);
2369 static bool cp_next_tokens_can_be_std_attribute_p
2370 (cp_parser *);
2371 static bool cp_nth_tokens_can_be_std_attribute_p
2372 (cp_parser *, size_t);
2373 static bool cp_nth_tokens_can_be_gnu_attribute_p
2374 (cp_parser *, size_t);
2375 static bool cp_nth_tokens_can_be_attribute_p
2376 (cp_parser *, size_t);
2377 static tree cp_parser_attributes_opt
2378 (cp_parser *);
2379 static tree cp_parser_gnu_attributes_opt
2380 (cp_parser *);
2381 static tree cp_parser_gnu_attribute_list
2382 (cp_parser *);
2383 static tree cp_parser_std_attribute
2384 (cp_parser *);
2385 static tree cp_parser_std_attribute_spec
2386 (cp_parser *);
2387 static tree cp_parser_std_attribute_spec_seq
2388 (cp_parser *);
2389 static bool cp_parser_extension_opt
2390 (cp_parser *, int *);
2391 static void cp_parser_label_declaration
2392 (cp_parser *);
2394 /* Concept Extensions */
2396 static tree cp_parser_requires_clause
2397 (cp_parser *);
2398 static tree cp_parser_requires_clause_opt
2399 (cp_parser *);
2400 static tree cp_parser_requires_expression
2401 (cp_parser *);
2402 static tree cp_parser_requirement_parameter_list
2403 (cp_parser *);
2404 static tree cp_parser_requirement_body
2405 (cp_parser *);
2406 static tree cp_parser_requirement_list
2407 (cp_parser *);
2408 static tree cp_parser_requirement
2409 (cp_parser *);
2410 static tree cp_parser_simple_requirement
2411 (cp_parser *);
2412 static tree cp_parser_compound_requirement
2413 (cp_parser *);
2414 static tree cp_parser_type_requirement
2415 (cp_parser *);
2416 static tree cp_parser_nested_requirement
2417 (cp_parser *);
2419 /* Transactional Memory Extensions */
2421 static tree cp_parser_transaction
2422 (cp_parser *, cp_token *);
2423 static tree cp_parser_transaction_expression
2424 (cp_parser *, enum rid);
2425 static bool cp_parser_function_transaction
2426 (cp_parser *, enum rid);
2427 static tree cp_parser_transaction_cancel
2428 (cp_parser *);
2430 enum pragma_context {
2431 pragma_external,
2432 pragma_member,
2433 pragma_objc_icode,
2434 pragma_stmt,
2435 pragma_compound
2437 static bool cp_parser_pragma
2438 (cp_parser *, enum pragma_context, bool *);
2440 /* Objective-C++ Productions */
2442 static tree cp_parser_objc_message_receiver
2443 (cp_parser *);
2444 static tree cp_parser_objc_message_args
2445 (cp_parser *);
2446 static tree cp_parser_objc_message_expression
2447 (cp_parser *);
2448 static cp_expr cp_parser_objc_encode_expression
2449 (cp_parser *);
2450 static tree cp_parser_objc_defs_expression
2451 (cp_parser *);
2452 static tree cp_parser_objc_protocol_expression
2453 (cp_parser *);
2454 static tree cp_parser_objc_selector_expression
2455 (cp_parser *);
2456 static cp_expr cp_parser_objc_expression
2457 (cp_parser *);
2458 static bool cp_parser_objc_selector_p
2459 (enum cpp_ttype);
2460 static tree cp_parser_objc_selector
2461 (cp_parser *);
2462 static tree cp_parser_objc_protocol_refs_opt
2463 (cp_parser *);
2464 static void cp_parser_objc_declaration
2465 (cp_parser *, tree);
2466 static tree cp_parser_objc_statement
2467 (cp_parser *);
2468 static bool cp_parser_objc_valid_prefix_attributes
2469 (cp_parser *, tree *);
2470 static void cp_parser_objc_at_property_declaration
2471 (cp_parser *) ;
2472 static void cp_parser_objc_at_synthesize_declaration
2473 (cp_parser *) ;
2474 static void cp_parser_objc_at_dynamic_declaration
2475 (cp_parser *) ;
2476 static tree cp_parser_objc_struct_declaration
2477 (cp_parser *) ;
2479 /* Utility Routines */
2481 static cp_expr cp_parser_lookup_name
2482 (cp_parser *, tree, enum tag_types, bool, bool, bool, tree *, location_t);
2483 static tree cp_parser_lookup_name_simple
2484 (cp_parser *, tree, location_t);
2485 static tree cp_parser_maybe_treat_template_as_class
2486 (tree, bool);
2487 static bool cp_parser_check_declarator_template_parameters
2488 (cp_parser *, cp_declarator *, location_t);
2489 static bool cp_parser_check_template_parameters
2490 (cp_parser *, unsigned, location_t, cp_declarator *);
2491 static cp_expr cp_parser_simple_cast_expression
2492 (cp_parser *);
2493 static tree cp_parser_global_scope_opt
2494 (cp_parser *, bool);
2495 static bool cp_parser_constructor_declarator_p
2496 (cp_parser *, bool);
2497 static tree cp_parser_function_definition_from_specifiers_and_declarator
2498 (cp_parser *, cp_decl_specifier_seq *, tree, const cp_declarator *);
2499 static tree cp_parser_function_definition_after_declarator
2500 (cp_parser *, bool);
2501 static bool cp_parser_template_declaration_after_export
2502 (cp_parser *, bool);
2503 static void cp_parser_perform_template_parameter_access_checks
2504 (vec<deferred_access_check, va_gc> *);
2505 static tree cp_parser_single_declaration
2506 (cp_parser *, vec<deferred_access_check, va_gc> *, bool, bool, bool *);
2507 static cp_expr cp_parser_functional_cast
2508 (cp_parser *, tree);
2509 static tree cp_parser_save_member_function_body
2510 (cp_parser *, cp_decl_specifier_seq *, cp_declarator *, tree);
2511 static tree cp_parser_save_nsdmi
2512 (cp_parser *);
2513 static tree cp_parser_enclosed_template_argument_list
2514 (cp_parser *);
2515 static void cp_parser_save_default_args
2516 (cp_parser *, tree);
2517 static void cp_parser_late_parsing_for_member
2518 (cp_parser *, tree);
2519 static tree cp_parser_late_parse_one_default_arg
2520 (cp_parser *, tree, tree, tree);
2521 static void cp_parser_late_parsing_nsdmi
2522 (cp_parser *, tree);
2523 static void cp_parser_late_parsing_default_args
2524 (cp_parser *, tree);
2525 static tree cp_parser_sizeof_operand
2526 (cp_parser *, enum rid);
2527 static tree cp_parser_trait_expr
2528 (cp_parser *, enum rid);
2529 static bool cp_parser_declares_only_class_p
2530 (cp_parser *);
2531 static void cp_parser_set_storage_class
2532 (cp_parser *, cp_decl_specifier_seq *, enum rid, cp_token *);
2533 static void cp_parser_set_decl_spec_type
2534 (cp_decl_specifier_seq *, tree, cp_token *, bool);
2535 static void set_and_check_decl_spec_loc
2536 (cp_decl_specifier_seq *decl_specs,
2537 cp_decl_spec ds, cp_token *);
2538 static bool cp_parser_friend_p
2539 (const cp_decl_specifier_seq *);
2540 static void cp_parser_required_error
2541 (cp_parser *, required_token, bool);
2542 static cp_token *cp_parser_require
2543 (cp_parser *, enum cpp_ttype, required_token);
2544 static cp_token *cp_parser_require_keyword
2545 (cp_parser *, enum rid, required_token);
2546 static bool cp_parser_token_starts_function_definition_p
2547 (cp_token *);
2548 static bool cp_parser_next_token_starts_class_definition_p
2549 (cp_parser *);
2550 static bool cp_parser_next_token_ends_template_argument_p
2551 (cp_parser *);
2552 static bool cp_parser_nth_token_starts_template_argument_list_p
2553 (cp_parser *, size_t);
2554 static enum tag_types cp_parser_token_is_class_key
2555 (cp_token *);
2556 static enum tag_types cp_parser_token_is_type_parameter_key
2557 (cp_token *);
2558 static void cp_parser_check_class_key
2559 (enum tag_types, tree type);
2560 static void cp_parser_check_access_in_redeclaration
2561 (tree type, location_t location);
2562 static bool cp_parser_optional_template_keyword
2563 (cp_parser *);
2564 static void cp_parser_pre_parsed_nested_name_specifier
2565 (cp_parser *);
2566 static bool cp_parser_cache_group
2567 (cp_parser *, enum cpp_ttype, unsigned);
2568 static tree cp_parser_cache_defarg
2569 (cp_parser *parser, bool nsdmi);
2570 static void cp_parser_parse_tentatively
2571 (cp_parser *);
2572 static void cp_parser_commit_to_tentative_parse
2573 (cp_parser *);
2574 static void cp_parser_commit_to_topmost_tentative_parse
2575 (cp_parser *);
2576 static void cp_parser_abort_tentative_parse
2577 (cp_parser *);
2578 static bool cp_parser_parse_definitely
2579 (cp_parser *);
2580 static inline bool cp_parser_parsing_tentatively
2581 (cp_parser *);
2582 static bool cp_parser_uncommitted_to_tentative_parse_p
2583 (cp_parser *);
2584 static void cp_parser_error
2585 (cp_parser *, const char *);
2586 static void cp_parser_name_lookup_error
2587 (cp_parser *, tree, tree, name_lookup_error, location_t);
2588 static bool cp_parser_simulate_error
2589 (cp_parser *);
2590 static bool cp_parser_check_type_definition
2591 (cp_parser *);
2592 static void cp_parser_check_for_definition_in_return_type
2593 (cp_declarator *, tree, location_t type_location);
2594 static void cp_parser_check_for_invalid_template_id
2595 (cp_parser *, tree, enum tag_types, location_t location);
2596 static bool cp_parser_non_integral_constant_expression
2597 (cp_parser *, non_integral_constant);
2598 static void cp_parser_diagnose_invalid_type_name
2599 (cp_parser *, tree, location_t);
2600 static bool cp_parser_parse_and_diagnose_invalid_type_name
2601 (cp_parser *);
2602 static int cp_parser_skip_to_closing_parenthesis
2603 (cp_parser *, bool, bool, bool);
2604 static void cp_parser_skip_to_end_of_statement
2605 (cp_parser *);
2606 static void cp_parser_consume_semicolon_at_end_of_statement
2607 (cp_parser *);
2608 static void cp_parser_skip_to_end_of_block_or_statement
2609 (cp_parser *);
2610 static bool cp_parser_skip_to_closing_brace
2611 (cp_parser *);
2612 static void cp_parser_skip_to_end_of_template_parameter_list
2613 (cp_parser *);
2614 static void cp_parser_skip_to_pragma_eol
2615 (cp_parser*, cp_token *);
2616 static bool cp_parser_error_occurred
2617 (cp_parser *);
2618 static bool cp_parser_allow_gnu_extensions_p
2619 (cp_parser *);
2620 static bool cp_parser_is_pure_string_literal
2621 (cp_token *);
2622 static bool cp_parser_is_string_literal
2623 (cp_token *);
2624 static bool cp_parser_is_keyword
2625 (cp_token *, enum rid);
2626 static tree cp_parser_make_typename_type
2627 (cp_parser *, tree, location_t location);
2628 static cp_declarator * cp_parser_make_indirect_declarator
2629 (enum tree_code, tree, cp_cv_quals, cp_declarator *, tree);
2630 static bool cp_parser_compound_literal_p
2631 (cp_parser *);
2632 static bool cp_parser_array_designator_p
2633 (cp_parser *);
2634 static bool cp_parser_skip_to_closing_square_bracket
2635 (cp_parser *);
2637 /* Concept-related syntactic transformations */
2639 static tree cp_parser_maybe_concept_name (cp_parser *, tree);
2640 static tree cp_parser_maybe_partial_concept_id (cp_parser *, tree, tree);
2642 // -------------------------------------------------------------------------- //
2643 // Unevaluated Operand Guard
2645 // Implementation of an RAII helper for unevaluated operand parsing.
2646 cp_unevaluated::cp_unevaluated ()
2648 ++cp_unevaluated_operand;
2649 ++c_inhibit_evaluation_warnings;
2652 cp_unevaluated::~cp_unevaluated ()
2654 --c_inhibit_evaluation_warnings;
2655 --cp_unevaluated_operand;
2658 // -------------------------------------------------------------------------- //
2659 // Tentative Parsing
2661 /* Returns nonzero if we are parsing tentatively. */
2663 static inline bool
2664 cp_parser_parsing_tentatively (cp_parser* parser)
2666 return parser->context->next != NULL;
2669 /* Returns nonzero if TOKEN is a string literal. */
2671 static bool
2672 cp_parser_is_pure_string_literal (cp_token* token)
2674 return (token->type == CPP_STRING ||
2675 token->type == CPP_STRING16 ||
2676 token->type == CPP_STRING32 ||
2677 token->type == CPP_WSTRING ||
2678 token->type == CPP_UTF8STRING);
2681 /* Returns nonzero if TOKEN is a string literal
2682 of a user-defined string literal. */
2684 static bool
2685 cp_parser_is_string_literal (cp_token* token)
2687 return (cp_parser_is_pure_string_literal (token) ||
2688 token->type == CPP_STRING_USERDEF ||
2689 token->type == CPP_STRING16_USERDEF ||
2690 token->type == CPP_STRING32_USERDEF ||
2691 token->type == CPP_WSTRING_USERDEF ||
2692 token->type == CPP_UTF8STRING_USERDEF);
2695 /* Returns nonzero if TOKEN is the indicated KEYWORD. */
2697 static bool
2698 cp_parser_is_keyword (cp_token* token, enum rid keyword)
2700 return token->keyword == keyword;
2703 /* Return TOKEN's pragma_kind if it is CPP_PRAGMA, otherwise
2704 PRAGMA_NONE. */
2706 static enum pragma_kind
2707 cp_parser_pragma_kind (cp_token *token)
2709 if (token->type != CPP_PRAGMA)
2710 return PRAGMA_NONE;
2711 /* We smuggled the cpp_token->u.pragma value in an INTEGER_CST. */
2712 return (enum pragma_kind) TREE_INT_CST_LOW (token->u.value);
2715 /* Helper function for cp_parser_error.
2716 Having peeked a token of kind TOK1_KIND that might signify
2717 a conflict marker, peek successor tokens to determine
2718 if we actually do have a conflict marker.
2719 Specifically, we consider a run of 7 '<', '=' or '>' characters
2720 at the start of a line as a conflict marker.
2721 These come through the lexer as three pairs and a single,
2722 e.g. three CPP_LSHIFT tokens ("<<") and a CPP_LESS token ('<').
2723 If it returns true, *OUT_LOC is written to with the location/range
2724 of the marker. */
2726 static bool
2727 cp_lexer_peek_conflict_marker (cp_lexer *lexer, enum cpp_ttype tok1_kind,
2728 location_t *out_loc)
2730 cp_token *token2 = cp_lexer_peek_nth_token (lexer, 2);
2731 if (token2->type != tok1_kind)
2732 return false;
2733 cp_token *token3 = cp_lexer_peek_nth_token (lexer, 3);
2734 if (token3->type != tok1_kind)
2735 return false;
2736 cp_token *token4 = cp_lexer_peek_nth_token (lexer, 4);
2737 if (token4->type != conflict_marker_get_final_tok_kind (tok1_kind))
2738 return false;
2740 /* It must be at the start of the line. */
2741 location_t start_loc = cp_lexer_peek_token (lexer)->location;
2742 if (LOCATION_COLUMN (start_loc) != 1)
2743 return false;
2745 /* We have a conflict marker. Construct a location of the form:
2746 <<<<<<<
2747 ^~~~~~~
2748 with start == caret, finishing at the end of the marker. */
2749 location_t finish_loc = get_finish (token4->location);
2750 *out_loc = make_location (start_loc, start_loc, finish_loc);
2752 return true;
2755 /* If not parsing tentatively, issue a diagnostic of the form
2756 FILE:LINE: MESSAGE before TOKEN
2757 where TOKEN is the next token in the input stream. MESSAGE
2758 (specified by the caller) is usually of the form "expected
2759 OTHER-TOKEN". */
2761 static void
2762 cp_parser_error (cp_parser* parser, const char* gmsgid)
2764 if (!cp_parser_simulate_error (parser))
2766 cp_token *token = cp_lexer_peek_token (parser->lexer);
2767 /* This diagnostic makes more sense if it is tagged to the line
2768 of the token we just peeked at. */
2769 cp_lexer_set_source_position_from_token (token);
2771 if (token->type == CPP_PRAGMA)
2773 error_at (token->location,
2774 "%<#pragma%> is not allowed here");
2775 cp_parser_skip_to_pragma_eol (parser, token);
2776 return;
2779 /* If this is actually a conflict marker, report it as such. */
2780 if (token->type == CPP_LSHIFT
2781 || token->type == CPP_RSHIFT
2782 || token->type == CPP_EQ_EQ)
2784 location_t loc;
2785 if (cp_lexer_peek_conflict_marker (parser->lexer, token->type, &loc))
2787 error_at (loc, "version control conflict marker in file");
2788 return;
2792 c_parse_error (gmsgid,
2793 /* Because c_parser_error does not understand
2794 CPP_KEYWORD, keywords are treated like
2795 identifiers. */
2796 (token->type == CPP_KEYWORD ? CPP_NAME : token->type),
2797 token->u.value, token->flags);
2801 /* Issue an error about name-lookup failing. NAME is the
2802 IDENTIFIER_NODE DECL is the result of
2803 the lookup (as returned from cp_parser_lookup_name). DESIRED is
2804 the thing that we hoped to find. */
2806 static void
2807 cp_parser_name_lookup_error (cp_parser* parser,
2808 tree name,
2809 tree decl,
2810 name_lookup_error desired,
2811 location_t location)
2813 /* If name lookup completely failed, tell the user that NAME was not
2814 declared. */
2815 if (decl == error_mark_node)
2817 if (parser->scope && parser->scope != global_namespace)
2818 error_at (location, "%<%E::%E%> has not been declared",
2819 parser->scope, name);
2820 else if (parser->scope == global_namespace)
2821 error_at (location, "%<::%E%> has not been declared", name);
2822 else if (parser->object_scope
2823 && !CLASS_TYPE_P (parser->object_scope))
2824 error_at (location, "request for member %qE in non-class type %qT",
2825 name, parser->object_scope);
2826 else if (parser->object_scope)
2827 error_at (location, "%<%T::%E%> has not been declared",
2828 parser->object_scope, name);
2829 else
2830 error_at (location, "%qE has not been declared", name);
2832 else if (parser->scope && parser->scope != global_namespace)
2834 switch (desired)
2836 case NLE_TYPE:
2837 error_at (location, "%<%E::%E%> is not a type",
2838 parser->scope, name);
2839 break;
2840 case NLE_CXX98:
2841 error_at (location, "%<%E::%E%> is not a class or namespace",
2842 parser->scope, name);
2843 break;
2844 case NLE_NOT_CXX98:
2845 error_at (location,
2846 "%<%E::%E%> is not a class, namespace, or enumeration",
2847 parser->scope, name);
2848 break;
2849 default:
2850 gcc_unreachable ();
2854 else if (parser->scope == global_namespace)
2856 switch (desired)
2858 case NLE_TYPE:
2859 error_at (location, "%<::%E%> is not a type", name);
2860 break;
2861 case NLE_CXX98:
2862 error_at (location, "%<::%E%> is not a class or namespace", name);
2863 break;
2864 case NLE_NOT_CXX98:
2865 error_at (location,
2866 "%<::%E%> is not a class, namespace, or enumeration",
2867 name);
2868 break;
2869 default:
2870 gcc_unreachable ();
2873 else
2875 switch (desired)
2877 case NLE_TYPE:
2878 error_at (location, "%qE is not a type", name);
2879 break;
2880 case NLE_CXX98:
2881 error_at (location, "%qE is not a class or namespace", name);
2882 break;
2883 case NLE_NOT_CXX98:
2884 error_at (location,
2885 "%qE is not a class, namespace, or enumeration", name);
2886 break;
2887 default:
2888 gcc_unreachable ();
2893 /* If we are parsing tentatively, remember that an error has occurred
2894 during this tentative parse. Returns true if the error was
2895 simulated; false if a message should be issued by the caller. */
2897 static bool
2898 cp_parser_simulate_error (cp_parser* parser)
2900 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
2902 parser->context->status = CP_PARSER_STATUS_KIND_ERROR;
2903 return true;
2905 return false;
2908 /* This function is called when a type is defined. If type
2909 definitions are forbidden at this point, an error message is
2910 issued. */
2912 static bool
2913 cp_parser_check_type_definition (cp_parser* parser)
2915 /* If types are forbidden here, issue a message. */
2916 if (parser->type_definition_forbidden_message)
2918 /* Don't use `%s' to print the string, because quotations (`%<', `%>')
2919 in the message need to be interpreted. */
2920 error (parser->type_definition_forbidden_message);
2921 return false;
2923 return true;
2926 /* This function is called when the DECLARATOR is processed. The TYPE
2927 was a type defined in the decl-specifiers. If it is invalid to
2928 define a type in the decl-specifiers for DECLARATOR, an error is
2929 issued. TYPE_LOCATION is the location of TYPE and is used
2930 for error reporting. */
2932 static void
2933 cp_parser_check_for_definition_in_return_type (cp_declarator *declarator,
2934 tree type, location_t type_location)
2936 /* [dcl.fct] forbids type definitions in return types.
2937 Unfortunately, it's not easy to know whether or not we are
2938 processing a return type until after the fact. */
2939 while (declarator
2940 && (declarator->kind == cdk_pointer
2941 || declarator->kind == cdk_reference
2942 || declarator->kind == cdk_ptrmem))
2943 declarator = declarator->declarator;
2944 if (declarator
2945 && declarator->kind == cdk_function)
2947 error_at (type_location,
2948 "new types may not be defined in a return type");
2949 inform (type_location,
2950 "(perhaps a semicolon is missing after the definition of %qT)",
2951 type);
2955 /* A type-specifier (TYPE) has been parsed which cannot be followed by
2956 "<" in any valid C++ program. If the next token is indeed "<",
2957 issue a message warning the user about what appears to be an
2958 invalid attempt to form a template-id. LOCATION is the location
2959 of the type-specifier (TYPE) */
2961 static void
2962 cp_parser_check_for_invalid_template_id (cp_parser* parser,
2963 tree type,
2964 enum tag_types tag_type,
2965 location_t location)
2967 cp_token_position start = 0;
2969 if (cp_lexer_next_token_is (parser->lexer, CPP_LESS))
2971 if (TYPE_P (type))
2972 error_at (location, "%qT is not a template", type);
2973 else if (identifier_p (type))
2975 if (tag_type != none_type)
2976 error_at (location, "%qE is not a class template", type);
2977 else
2978 error_at (location, "%qE is not a template", type);
2980 else
2981 error_at (location, "invalid template-id");
2982 /* Remember the location of the invalid "<". */
2983 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
2984 start = cp_lexer_token_position (parser->lexer, true);
2985 /* Consume the "<". */
2986 cp_lexer_consume_token (parser->lexer);
2987 /* Parse the template arguments. */
2988 cp_parser_enclosed_template_argument_list (parser);
2989 /* Permanently remove the invalid template arguments so that
2990 this error message is not issued again. */
2991 if (start)
2992 cp_lexer_purge_tokens_after (parser->lexer, start);
2996 /* If parsing an integral constant-expression, issue an error message
2997 about the fact that THING appeared and return true. Otherwise,
2998 return false. In either case, set
2999 PARSER->NON_INTEGRAL_CONSTANT_EXPRESSION_P. */
3001 static bool
3002 cp_parser_non_integral_constant_expression (cp_parser *parser,
3003 non_integral_constant thing)
3005 parser->non_integral_constant_expression_p = true;
3006 if (parser->integral_constant_expression_p)
3008 if (!parser->allow_non_integral_constant_expression_p)
3010 const char *msg = NULL;
3011 switch (thing)
3013 case NIC_FLOAT:
3014 error ("floating-point literal "
3015 "cannot appear in a constant-expression");
3016 return true;
3017 case NIC_CAST:
3018 error ("a cast to a type other than an integral or "
3019 "enumeration type cannot appear in a "
3020 "constant-expression");
3021 return true;
3022 case NIC_TYPEID:
3023 error ("%<typeid%> operator "
3024 "cannot appear in a constant-expression");
3025 return true;
3026 case NIC_NCC:
3027 error ("non-constant compound literals "
3028 "cannot appear in a constant-expression");
3029 return true;
3030 case NIC_FUNC_CALL:
3031 error ("a function call "
3032 "cannot appear in a constant-expression");
3033 return true;
3034 case NIC_INC:
3035 error ("an increment "
3036 "cannot appear in a constant-expression");
3037 return true;
3038 case NIC_DEC:
3039 error ("an decrement "
3040 "cannot appear in a constant-expression");
3041 return true;
3042 case NIC_ARRAY_REF:
3043 error ("an array reference "
3044 "cannot appear in a constant-expression");
3045 return true;
3046 case NIC_ADDR_LABEL:
3047 error ("the address of a label "
3048 "cannot appear in a constant-expression");
3049 return true;
3050 case NIC_OVERLOADED:
3051 error ("calls to overloaded operators "
3052 "cannot appear in a constant-expression");
3053 return true;
3054 case NIC_ASSIGNMENT:
3055 error ("an assignment cannot appear in a constant-expression");
3056 return true;
3057 case NIC_COMMA:
3058 error ("a comma operator "
3059 "cannot appear in a constant-expression");
3060 return true;
3061 case NIC_CONSTRUCTOR:
3062 error ("a call to a constructor "
3063 "cannot appear in a constant-expression");
3064 return true;
3065 case NIC_TRANSACTION:
3066 error ("a transaction expression "
3067 "cannot appear in a constant-expression");
3068 return true;
3069 case NIC_THIS:
3070 msg = "this";
3071 break;
3072 case NIC_FUNC_NAME:
3073 msg = "__FUNCTION__";
3074 break;
3075 case NIC_PRETTY_FUNC:
3076 msg = "__PRETTY_FUNCTION__";
3077 break;
3078 case NIC_C99_FUNC:
3079 msg = "__func__";
3080 break;
3081 case NIC_VA_ARG:
3082 msg = "va_arg";
3083 break;
3084 case NIC_ARROW:
3085 msg = "->";
3086 break;
3087 case NIC_POINT:
3088 msg = ".";
3089 break;
3090 case NIC_STAR:
3091 msg = "*";
3092 break;
3093 case NIC_ADDR:
3094 msg = "&";
3095 break;
3096 case NIC_PREINCREMENT:
3097 msg = "++";
3098 break;
3099 case NIC_PREDECREMENT:
3100 msg = "--";
3101 break;
3102 case NIC_NEW:
3103 msg = "new";
3104 break;
3105 case NIC_DEL:
3106 msg = "delete";
3107 break;
3108 default:
3109 gcc_unreachable ();
3111 if (msg)
3112 error ("%qs cannot appear in a constant-expression", msg);
3113 return true;
3116 return false;
3119 /* Emit a diagnostic for an invalid type name. This function commits
3120 to the current active tentative parse, if any. (Otherwise, the
3121 problematic construct might be encountered again later, resulting
3122 in duplicate error messages.) LOCATION is the location of ID. */
3124 static void
3125 cp_parser_diagnose_invalid_type_name (cp_parser *parser, tree id,
3126 location_t location)
3128 tree decl, ambiguous_decls;
3129 cp_parser_commit_to_tentative_parse (parser);
3130 /* Try to lookup the identifier. */
3131 decl = cp_parser_lookup_name (parser, id, none_type,
3132 /*is_template=*/false,
3133 /*is_namespace=*/false,
3134 /*check_dependency=*/true,
3135 &ambiguous_decls, location);
3136 if (ambiguous_decls)
3137 /* If the lookup was ambiguous, an error will already have
3138 been issued. */
3139 return;
3140 /* If the lookup found a template-name, it means that the user forgot
3141 to specify an argument list. Emit a useful error message. */
3142 if (DECL_TYPE_TEMPLATE_P (decl))
3144 error_at (location,
3145 "invalid use of template-name %qE without an argument list",
3146 decl);
3147 inform (DECL_SOURCE_LOCATION (decl), "%qD declared here", decl);
3149 else if (TREE_CODE (id) == BIT_NOT_EXPR)
3150 error_at (location, "invalid use of destructor %qD as a type", id);
3151 else if (TREE_CODE (decl) == TYPE_DECL)
3152 /* Something like 'unsigned A a;' */
3153 error_at (location, "invalid combination of multiple type-specifiers");
3154 else if (!parser->scope)
3156 /* Issue an error message. */
3157 error_at (location, "%qE does not name a type", id);
3158 /* If we're in a template class, it's possible that the user was
3159 referring to a type from a base class. For example:
3161 template <typename T> struct A { typedef T X; };
3162 template <typename T> struct B : public A<T> { X x; };
3164 The user should have said "typename A<T>::X". */
3165 if (cxx_dialect < cxx11 && id == ridpointers[(int)RID_CONSTEXPR])
3166 inform (location, "C++11 %<constexpr%> only available with "
3167 "-std=c++11 or -std=gnu++11");
3168 else if (cxx_dialect < cxx11 && id == ridpointers[(int)RID_NOEXCEPT])
3169 inform (location, "C++11 %<noexcept%> only available with "
3170 "-std=c++11 or -std=gnu++11");
3171 else if (cxx_dialect < cxx11
3172 && TREE_CODE (id) == IDENTIFIER_NODE
3173 && !strcmp (IDENTIFIER_POINTER (id), "thread_local"))
3174 inform (location, "C++11 %<thread_local%> only available with "
3175 "-std=c++11 or -std=gnu++11");
3176 else if (!flag_concepts && id == ridpointers[(int)RID_CONCEPT])
3177 inform (location, "%<concept%> only available with -fconcepts");
3178 else if (processing_template_decl && current_class_type
3179 && TYPE_BINFO (current_class_type))
3181 tree b;
3183 for (b = TREE_CHAIN (TYPE_BINFO (current_class_type));
3185 b = TREE_CHAIN (b))
3187 tree base_type = BINFO_TYPE (b);
3188 if (CLASS_TYPE_P (base_type)
3189 && dependent_type_p (base_type))
3191 tree field;
3192 /* Go from a particular instantiation of the
3193 template (which will have an empty TYPE_FIELDs),
3194 to the main version. */
3195 base_type = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (base_type);
3196 for (field = TYPE_FIELDS (base_type);
3197 field;
3198 field = DECL_CHAIN (field))
3199 if (TREE_CODE (field) == TYPE_DECL
3200 && DECL_NAME (field) == id)
3202 inform (location,
3203 "(perhaps %<typename %T::%E%> was intended)",
3204 BINFO_TYPE (b), id);
3205 break;
3207 if (field)
3208 break;
3213 /* Here we diagnose qualified-ids where the scope is actually correct,
3214 but the identifier does not resolve to a valid type name. */
3215 else if (parser->scope != error_mark_node)
3217 if (TREE_CODE (parser->scope) == NAMESPACE_DECL)
3219 if (cp_lexer_next_token_is (parser->lexer, CPP_LESS))
3220 error_at (location_of (id),
3221 "%qE in namespace %qE does not name a template type",
3222 id, parser->scope);
3223 else
3224 error_at (location_of (id),
3225 "%qE in namespace %qE does not name a type",
3226 id, parser->scope);
3227 if (DECL_P (decl))
3228 inform (DECL_SOURCE_LOCATION (decl), "%qD declared here", decl);
3230 else if (CLASS_TYPE_P (parser->scope)
3231 && constructor_name_p (id, parser->scope))
3233 /* A<T>::A<T>() */
3234 error_at (location, "%<%T::%E%> names the constructor, not"
3235 " the type", parser->scope, id);
3236 if (cp_lexer_next_token_is (parser->lexer, CPP_LESS))
3237 error_at (location, "and %qT has no template constructors",
3238 parser->scope);
3240 else if (TYPE_P (parser->scope)
3241 && dependent_scope_p (parser->scope))
3242 error_at (location, "need %<typename%> before %<%T::%E%> because "
3243 "%qT is a dependent scope",
3244 parser->scope, id, parser->scope);
3245 else if (TYPE_P (parser->scope))
3247 if (cp_lexer_next_token_is (parser->lexer, CPP_LESS))
3248 error_at (location_of (id),
3249 "%qE in %q#T does not name a template type",
3250 id, parser->scope);
3251 else
3252 error_at (location_of (id),
3253 "%qE in %q#T does not name a type",
3254 id, parser->scope);
3255 if (DECL_P (decl))
3256 inform (DECL_SOURCE_LOCATION (decl), "%qD declared here", decl);
3258 else
3259 gcc_unreachable ();
3263 /* Check for a common situation where a type-name should be present,
3264 but is not, and issue a sensible error message. Returns true if an
3265 invalid type-name was detected.
3267 The situation handled by this function are variable declarations of the
3268 form `ID a', where `ID' is an id-expression and `a' is a plain identifier.
3269 Usually, `ID' should name a type, but if we got here it means that it
3270 does not. We try to emit the best possible error message depending on
3271 how exactly the id-expression looks like. */
3273 static bool
3274 cp_parser_parse_and_diagnose_invalid_type_name (cp_parser *parser)
3276 tree id;
3277 cp_token *token = cp_lexer_peek_token (parser->lexer);
3279 /* Avoid duplicate error about ambiguous lookup. */
3280 if (token->type == CPP_NESTED_NAME_SPECIFIER)
3282 cp_token *next = cp_lexer_peek_nth_token (parser->lexer, 2);
3283 if (next->type == CPP_NAME && next->error_reported)
3284 goto out;
3287 cp_parser_parse_tentatively (parser);
3288 id = cp_parser_id_expression (parser,
3289 /*template_keyword_p=*/false,
3290 /*check_dependency_p=*/true,
3291 /*template_p=*/NULL,
3292 /*declarator_p=*/true,
3293 /*optional_p=*/false);
3294 /* If the next token is a (, this is a function with no explicit return
3295 type, i.e. constructor, destructor or conversion op. */
3296 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN)
3297 || TREE_CODE (id) == TYPE_DECL)
3299 cp_parser_abort_tentative_parse (parser);
3300 return false;
3302 if (!cp_parser_parse_definitely (parser))
3303 return false;
3305 /* Emit a diagnostic for the invalid type. */
3306 cp_parser_diagnose_invalid_type_name (parser, id, token->location);
3307 out:
3308 /* If we aren't in the middle of a declarator (i.e. in a
3309 parameter-declaration-clause), skip to the end of the declaration;
3310 there's no point in trying to process it. */
3311 if (!parser->in_declarator_p)
3312 cp_parser_skip_to_end_of_block_or_statement (parser);
3313 return true;
3316 /* Consume tokens up to, and including, the next non-nested closing `)'.
3317 Returns 1 iff we found a closing `)'. RECOVERING is true, if we
3318 are doing error recovery. Returns -1 if OR_TTYPE is not CPP_EOF and we
3319 found an unnested token of that type. */
3321 static int
3322 cp_parser_skip_to_closing_parenthesis_1 (cp_parser *parser,
3323 bool recovering,
3324 cpp_ttype or_ttype,
3325 bool consume_paren)
3327 unsigned paren_depth = 0;
3328 unsigned brace_depth = 0;
3329 unsigned square_depth = 0;
3331 if (recovering && or_ttype == CPP_EOF
3332 && cp_parser_uncommitted_to_tentative_parse_p (parser))
3333 return 0;
3335 while (true)
3337 cp_token * token = cp_lexer_peek_token (parser->lexer);
3339 /* Have we found what we're looking for before the closing paren? */
3340 if (token->type == or_ttype && or_ttype != CPP_EOF
3341 && !brace_depth && !paren_depth && !square_depth)
3342 return -1;
3344 switch (token->type)
3346 case CPP_EOF:
3347 case CPP_PRAGMA_EOL:
3348 /* If we've run out of tokens, then there is no closing `)'. */
3349 return 0;
3351 /* This is good for lambda expression capture-lists. */
3352 case CPP_OPEN_SQUARE:
3353 ++square_depth;
3354 break;
3355 case CPP_CLOSE_SQUARE:
3356 if (!square_depth--)
3357 return 0;
3358 break;
3360 case CPP_SEMICOLON:
3361 /* This matches the processing in skip_to_end_of_statement. */
3362 if (!brace_depth)
3363 return 0;
3364 break;
3366 case CPP_OPEN_BRACE:
3367 ++brace_depth;
3368 break;
3369 case CPP_CLOSE_BRACE:
3370 if (!brace_depth--)
3371 return 0;
3372 break;
3374 case CPP_OPEN_PAREN:
3375 if (!brace_depth)
3376 ++paren_depth;
3377 break;
3379 case CPP_CLOSE_PAREN:
3380 if (!brace_depth && !paren_depth--)
3382 if (consume_paren)
3383 cp_lexer_consume_token (parser->lexer);
3384 return 1;
3386 break;
3388 default:
3389 break;
3392 /* Consume the token. */
3393 cp_lexer_consume_token (parser->lexer);
3397 /* Consume tokens up to, and including, the next non-nested closing `)'.
3398 Returns 1 iff we found a closing `)'. RECOVERING is true, if we
3399 are doing error recovery. Returns -1 if OR_COMMA is true and we
3400 found an unnested token of that type. */
3402 static int
3403 cp_parser_skip_to_closing_parenthesis (cp_parser *parser,
3404 bool recovering,
3405 bool or_comma,
3406 bool consume_paren)
3408 cpp_ttype ttype = or_comma ? CPP_COMMA : CPP_EOF;
3409 return cp_parser_skip_to_closing_parenthesis_1 (parser, recovering,
3410 ttype, consume_paren);
3413 /* Consume tokens until we reach the end of the current statement.
3414 Normally, that will be just before consuming a `;'. However, if a
3415 non-nested `}' comes first, then we stop before consuming that. */
3417 static void
3418 cp_parser_skip_to_end_of_statement (cp_parser* parser)
3420 unsigned nesting_depth = 0;
3422 /* Unwind generic function template scope if necessary. */
3423 if (parser->fully_implicit_function_template_p)
3424 finish_fully_implicit_template (parser, /*member_decl_opt=*/0);
3426 while (true)
3428 cp_token *token = cp_lexer_peek_token (parser->lexer);
3430 switch (token->type)
3432 case CPP_EOF:
3433 case CPP_PRAGMA_EOL:
3434 /* If we've run out of tokens, stop. */
3435 return;
3437 case CPP_SEMICOLON:
3438 /* If the next token is a `;', we have reached the end of the
3439 statement. */
3440 if (!nesting_depth)
3441 return;
3442 break;
3444 case CPP_CLOSE_BRACE:
3445 /* If this is a non-nested '}', stop before consuming it.
3446 That way, when confronted with something like:
3448 { 3 + }
3450 we stop before consuming the closing '}', even though we
3451 have not yet reached a `;'. */
3452 if (nesting_depth == 0)
3453 return;
3455 /* If it is the closing '}' for a block that we have
3456 scanned, stop -- but only after consuming the token.
3457 That way given:
3459 void f g () { ... }
3460 typedef int I;
3462 we will stop after the body of the erroneously declared
3463 function, but before consuming the following `typedef'
3464 declaration. */
3465 if (--nesting_depth == 0)
3467 cp_lexer_consume_token (parser->lexer);
3468 return;
3471 case CPP_OPEN_BRACE:
3472 ++nesting_depth;
3473 break;
3475 default:
3476 break;
3479 /* Consume the token. */
3480 cp_lexer_consume_token (parser->lexer);
3484 /* This function is called at the end of a statement or declaration.
3485 If the next token is a semicolon, it is consumed; otherwise, error
3486 recovery is attempted. */
3488 static void
3489 cp_parser_consume_semicolon_at_end_of_statement (cp_parser *parser)
3491 /* Look for the trailing `;'. */
3492 if (!cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON))
3494 /* If there is additional (erroneous) input, skip to the end of
3495 the statement. */
3496 cp_parser_skip_to_end_of_statement (parser);
3497 /* If the next token is now a `;', consume it. */
3498 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
3499 cp_lexer_consume_token (parser->lexer);
3503 /* Skip tokens until we have consumed an entire block, or until we
3504 have consumed a non-nested `;'. */
3506 static void
3507 cp_parser_skip_to_end_of_block_or_statement (cp_parser* parser)
3509 int nesting_depth = 0;
3511 /* Unwind generic function template scope if necessary. */
3512 if (parser->fully_implicit_function_template_p)
3513 finish_fully_implicit_template (parser, /*member_decl_opt=*/0);
3515 while (nesting_depth >= 0)
3517 cp_token *token = cp_lexer_peek_token (parser->lexer);
3519 switch (token->type)
3521 case CPP_EOF:
3522 case CPP_PRAGMA_EOL:
3523 /* If we've run out of tokens, stop. */
3524 return;
3526 case CPP_SEMICOLON:
3527 /* Stop if this is an unnested ';'. */
3528 if (!nesting_depth)
3529 nesting_depth = -1;
3530 break;
3532 case CPP_CLOSE_BRACE:
3533 /* Stop if this is an unnested '}', or closes the outermost
3534 nesting level. */
3535 nesting_depth--;
3536 if (nesting_depth < 0)
3537 return;
3538 if (!nesting_depth)
3539 nesting_depth = -1;
3540 break;
3542 case CPP_OPEN_BRACE:
3543 /* Nest. */
3544 nesting_depth++;
3545 break;
3547 default:
3548 break;
3551 /* Consume the token. */
3552 cp_lexer_consume_token (parser->lexer);
3556 /* Skip tokens until a non-nested closing curly brace is the next
3557 token, or there are no more tokens. Return true in the first case,
3558 false otherwise. */
3560 static bool
3561 cp_parser_skip_to_closing_brace (cp_parser *parser)
3563 unsigned nesting_depth = 0;
3565 while (true)
3567 cp_token *token = cp_lexer_peek_token (parser->lexer);
3569 switch (token->type)
3571 case CPP_EOF:
3572 case CPP_PRAGMA_EOL:
3573 /* If we've run out of tokens, stop. */
3574 return false;
3576 case CPP_CLOSE_BRACE:
3577 /* If the next token is a non-nested `}', then we have reached
3578 the end of the current block. */
3579 if (nesting_depth-- == 0)
3580 return true;
3581 break;
3583 case CPP_OPEN_BRACE:
3584 /* If it the next token is a `{', then we are entering a new
3585 block. Consume the entire block. */
3586 ++nesting_depth;
3587 break;
3589 default:
3590 break;
3593 /* Consume the token. */
3594 cp_lexer_consume_token (parser->lexer);
3598 /* Consume tokens until we reach the end of the pragma. The PRAGMA_TOK
3599 parameter is the PRAGMA token, allowing us to purge the entire pragma
3600 sequence. */
3602 static void
3603 cp_parser_skip_to_pragma_eol (cp_parser* parser, cp_token *pragma_tok)
3605 cp_token *token;
3607 parser->lexer->in_pragma = false;
3610 token = cp_lexer_consume_token (parser->lexer);
3611 while (token->type != CPP_PRAGMA_EOL && token->type != CPP_EOF);
3613 /* Ensure that the pragma is not parsed again. */
3614 cp_lexer_purge_tokens_after (parser->lexer, pragma_tok);
3617 /* Require pragma end of line, resyncing with it as necessary. The
3618 arguments are as for cp_parser_skip_to_pragma_eol. */
3620 static void
3621 cp_parser_require_pragma_eol (cp_parser *parser, cp_token *pragma_tok)
3623 parser->lexer->in_pragma = false;
3624 if (!cp_parser_require (parser, CPP_PRAGMA_EOL, RT_PRAGMA_EOL))
3625 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
3628 /* This is a simple wrapper around make_typename_type. When the id is
3629 an unresolved identifier node, we can provide a superior diagnostic
3630 using cp_parser_diagnose_invalid_type_name. */
3632 static tree
3633 cp_parser_make_typename_type (cp_parser *parser, tree id,
3634 location_t id_location)
3636 tree result;
3637 if (identifier_p (id))
3639 result = make_typename_type (parser->scope, id, typename_type,
3640 /*complain=*/tf_none);
3641 if (result == error_mark_node)
3642 cp_parser_diagnose_invalid_type_name (parser, id, id_location);
3643 return result;
3645 return make_typename_type (parser->scope, id, typename_type, tf_error);
3648 /* This is a wrapper around the
3649 make_{pointer,ptrmem,reference}_declarator functions that decides
3650 which one to call based on the CODE and CLASS_TYPE arguments. The
3651 CODE argument should be one of the values returned by
3652 cp_parser_ptr_operator. ATTRIBUTES represent the attributes that
3653 appertain to the pointer or reference. */
3655 static cp_declarator *
3656 cp_parser_make_indirect_declarator (enum tree_code code, tree class_type,
3657 cp_cv_quals cv_qualifiers,
3658 cp_declarator *target,
3659 tree attributes)
3661 if (code == ERROR_MARK)
3662 return cp_error_declarator;
3664 if (code == INDIRECT_REF)
3665 if (class_type == NULL_TREE)
3666 return make_pointer_declarator (cv_qualifiers, target, attributes);
3667 else
3668 return make_ptrmem_declarator (cv_qualifiers, class_type,
3669 target, attributes);
3670 else if (code == ADDR_EXPR && class_type == NULL_TREE)
3671 return make_reference_declarator (cv_qualifiers, target,
3672 false, attributes);
3673 else if (code == NON_LVALUE_EXPR && class_type == NULL_TREE)
3674 return make_reference_declarator (cv_qualifiers, target,
3675 true, attributes);
3676 gcc_unreachable ();
3679 /* Create a new C++ parser. */
3681 static cp_parser *
3682 cp_parser_new (void)
3684 cp_parser *parser;
3685 cp_lexer *lexer;
3686 unsigned i;
3688 /* cp_lexer_new_main is called before doing GC allocation because
3689 cp_lexer_new_main might load a PCH file. */
3690 lexer = cp_lexer_new_main ();
3692 /* Initialize the binops_by_token so that we can get the tree
3693 directly from the token. */
3694 for (i = 0; i < sizeof (binops) / sizeof (binops[0]); i++)
3695 binops_by_token[binops[i].token_type] = binops[i];
3697 parser = ggc_cleared_alloc<cp_parser> ();
3698 parser->lexer = lexer;
3699 parser->context = cp_parser_context_new (NULL);
3701 /* For now, we always accept GNU extensions. */
3702 parser->allow_gnu_extensions_p = 1;
3704 /* The `>' token is a greater-than operator, not the end of a
3705 template-id. */
3706 parser->greater_than_is_operator_p = true;
3708 parser->default_arg_ok_p = true;
3710 /* We are not parsing a constant-expression. */
3711 parser->integral_constant_expression_p = false;
3712 parser->allow_non_integral_constant_expression_p = false;
3713 parser->non_integral_constant_expression_p = false;
3715 /* Local variable names are not forbidden. */
3716 parser->local_variables_forbidden_p = false;
3718 /* We are not processing an `extern "C"' declaration. */
3719 parser->in_unbraced_linkage_specification_p = false;
3721 /* We are not processing a declarator. */
3722 parser->in_declarator_p = false;
3724 /* We are not processing a template-argument-list. */
3725 parser->in_template_argument_list_p = false;
3727 /* We are not in an iteration statement. */
3728 parser->in_statement = 0;
3730 /* We are not in a switch statement. */
3731 parser->in_switch_statement_p = false;
3733 /* We are not parsing a type-id inside an expression. */
3734 parser->in_type_id_in_expr_p = false;
3736 /* Declarations aren't implicitly extern "C". */
3737 parser->implicit_extern_c = false;
3739 /* String literals should be translated to the execution character set. */
3740 parser->translate_strings_p = true;
3742 /* We are not parsing a function body. */
3743 parser->in_function_body = false;
3745 /* We can correct until told otherwise. */
3746 parser->colon_corrects_to_scope_p = true;
3748 /* The unparsed function queue is empty. */
3749 push_unparsed_function_queues (parser);
3751 /* There are no classes being defined. */
3752 parser->num_classes_being_defined = 0;
3754 /* No template parameters apply. */
3755 parser->num_template_parameter_lists = 0;
3757 /* Not declaring an implicit function template. */
3758 parser->auto_is_implicit_function_template_parm_p = false;
3759 parser->fully_implicit_function_template_p = false;
3760 parser->implicit_template_parms = 0;
3761 parser->implicit_template_scope = 0;
3763 /* Active OpenACC routine clauses. */
3764 parser->oacc_routine = NULL;
3766 /* Allow constrained-type-specifiers. */
3767 parser->prevent_constrained_type_specifiers = 0;
3769 return parser;
3772 /* Create a cp_lexer structure which will emit the tokens in CACHE
3773 and push it onto the parser's lexer stack. This is used for delayed
3774 parsing of in-class method bodies and default arguments, and should
3775 not be confused with tentative parsing. */
3776 static void
3777 cp_parser_push_lexer_for_tokens (cp_parser *parser, cp_token_cache *cache)
3779 cp_lexer *lexer = cp_lexer_new_from_tokens (cache);
3780 lexer->next = parser->lexer;
3781 parser->lexer = lexer;
3783 /* Move the current source position to that of the first token in the
3784 new lexer. */
3785 cp_lexer_set_source_position_from_token (lexer->next_token);
3788 /* Pop the top lexer off the parser stack. This is never used for the
3789 "main" lexer, only for those pushed by cp_parser_push_lexer_for_tokens. */
3790 static void
3791 cp_parser_pop_lexer (cp_parser *parser)
3793 cp_lexer *lexer = parser->lexer;
3794 parser->lexer = lexer->next;
3795 cp_lexer_destroy (lexer);
3797 /* Put the current source position back where it was before this
3798 lexer was pushed. */
3799 cp_lexer_set_source_position_from_token (parser->lexer->next_token);
3802 /* Lexical conventions [gram.lex] */
3804 /* Parse an identifier. Returns an IDENTIFIER_NODE representing the
3805 identifier. */
3807 static cp_expr
3808 cp_parser_identifier (cp_parser* parser)
3810 cp_token *token;
3812 /* Look for the identifier. */
3813 token = cp_parser_require (parser, CPP_NAME, RT_NAME);
3814 /* Return the value. */
3815 if (token)
3816 return cp_expr (token->u.value, token->location);
3817 else
3818 return error_mark_node;
3821 /* Parse a sequence of adjacent string constants. Returns a
3822 TREE_STRING representing the combined, nul-terminated string
3823 constant. If TRANSLATE is true, translate the string to the
3824 execution character set. If WIDE_OK is true, a wide string is
3825 invalid here.
3827 C++98 [lex.string] says that if a narrow string literal token is
3828 adjacent to a wide string literal token, the behavior is undefined.
3829 However, C99 6.4.5p4 says that this results in a wide string literal.
3830 We follow C99 here, for consistency with the C front end.
3832 This code is largely lifted from lex_string() in c-lex.c.
3834 FUTURE: ObjC++ will need to handle @-strings here. */
3835 static cp_expr
3836 cp_parser_string_literal (cp_parser *parser, bool translate, bool wide_ok,
3837 bool lookup_udlit = true)
3839 tree value;
3840 size_t count;
3841 struct obstack str_ob;
3842 cpp_string str, istr, *strs;
3843 cp_token *tok;
3844 enum cpp_ttype type, curr_type;
3845 int have_suffix_p = 0;
3846 tree string_tree;
3847 tree suffix_id = NULL_TREE;
3848 bool curr_tok_is_userdef_p = false;
3850 tok = cp_lexer_peek_token (parser->lexer);
3851 if (!cp_parser_is_string_literal (tok))
3853 cp_parser_error (parser, "expected string-literal");
3854 return error_mark_node;
3857 location_t loc = tok->location;
3859 if (cpp_userdef_string_p (tok->type))
3861 string_tree = USERDEF_LITERAL_VALUE (tok->u.value);
3862 curr_type = cpp_userdef_string_remove_type (tok->type);
3863 curr_tok_is_userdef_p = true;
3865 else
3867 string_tree = tok->u.value;
3868 curr_type = tok->type;
3870 type = curr_type;
3872 /* Try to avoid the overhead of creating and destroying an obstack
3873 for the common case of just one string. */
3874 if (!cp_parser_is_string_literal
3875 (cp_lexer_peek_nth_token (parser->lexer, 2)))
3877 cp_lexer_consume_token (parser->lexer);
3879 str.text = (const unsigned char *)TREE_STRING_POINTER (string_tree);
3880 str.len = TREE_STRING_LENGTH (string_tree);
3881 count = 1;
3883 if (curr_tok_is_userdef_p)
3885 suffix_id = USERDEF_LITERAL_SUFFIX_ID (tok->u.value);
3886 have_suffix_p = 1;
3887 curr_type = cpp_userdef_string_remove_type (tok->type);
3889 else
3890 curr_type = tok->type;
3892 strs = &str;
3894 else
3896 location_t last_tok_loc;
3897 gcc_obstack_init (&str_ob);
3898 count = 0;
3902 last_tok_loc = tok->location;
3903 cp_lexer_consume_token (parser->lexer);
3904 count++;
3905 str.text = (const unsigned char *)TREE_STRING_POINTER (string_tree);
3906 str.len = TREE_STRING_LENGTH (string_tree);
3908 if (curr_tok_is_userdef_p)
3910 tree curr_suffix_id = USERDEF_LITERAL_SUFFIX_ID (tok->u.value);
3911 if (have_suffix_p == 0)
3913 suffix_id = curr_suffix_id;
3914 have_suffix_p = 1;
3916 else if (have_suffix_p == 1
3917 && curr_suffix_id != suffix_id)
3919 error ("inconsistent user-defined literal suffixes"
3920 " %qD and %qD in string literal",
3921 suffix_id, curr_suffix_id);
3922 have_suffix_p = -1;
3924 curr_type = cpp_userdef_string_remove_type (tok->type);
3926 else
3927 curr_type = tok->type;
3929 if (type != curr_type)
3931 if (type == CPP_STRING)
3932 type = curr_type;
3933 else if (curr_type != CPP_STRING)
3934 error_at (tok->location,
3935 "unsupported non-standard concatenation "
3936 "of string literals");
3939 obstack_grow (&str_ob, &str, sizeof (cpp_string));
3941 tok = cp_lexer_peek_token (parser->lexer);
3942 if (cpp_userdef_string_p (tok->type))
3944 string_tree = USERDEF_LITERAL_VALUE (tok->u.value);
3945 curr_type = cpp_userdef_string_remove_type (tok->type);
3946 curr_tok_is_userdef_p = true;
3948 else
3950 string_tree = tok->u.value;
3951 curr_type = tok->type;
3952 curr_tok_is_userdef_p = false;
3955 while (cp_parser_is_string_literal (tok));
3957 /* A string literal built by concatenation has its caret=start at
3958 the start of the initial string, and its finish at the finish of
3959 the final string literal. */
3960 loc = make_location (loc, loc, get_finish (last_tok_loc));
3962 strs = (cpp_string *) obstack_finish (&str_ob);
3965 if (type != CPP_STRING && !wide_ok)
3967 cp_parser_error (parser, "a wide string is invalid in this context");
3968 type = CPP_STRING;
3971 if ((translate ? cpp_interpret_string : cpp_interpret_string_notranslate)
3972 (parse_in, strs, count, &istr, type))
3974 value = build_string (istr.len, (const char *)istr.text);
3975 free (CONST_CAST (unsigned char *, istr.text));
3977 switch (type)
3979 default:
3980 case CPP_STRING:
3981 case CPP_UTF8STRING:
3982 TREE_TYPE (value) = char_array_type_node;
3983 break;
3984 case CPP_STRING16:
3985 TREE_TYPE (value) = char16_array_type_node;
3986 break;
3987 case CPP_STRING32:
3988 TREE_TYPE (value) = char32_array_type_node;
3989 break;
3990 case CPP_WSTRING:
3991 TREE_TYPE (value) = wchar_array_type_node;
3992 break;
3995 value = fix_string_type (value);
3997 if (have_suffix_p)
3999 tree literal = build_userdef_literal (suffix_id, value,
4000 OT_NONE, NULL_TREE);
4001 if (lookup_udlit)
4002 value = cp_parser_userdef_string_literal (literal);
4003 else
4004 value = literal;
4007 else
4008 /* cpp_interpret_string has issued an error. */
4009 value = error_mark_node;
4011 if (count > 1)
4012 obstack_free (&str_ob, 0);
4014 return cp_expr (value, loc);
4017 /* Look up a literal operator with the name and the exact arguments. */
4019 static tree
4020 lookup_literal_operator (tree name, vec<tree, va_gc> *args)
4022 tree decl, fns;
4023 decl = lookup_name (name);
4024 if (!decl || !is_overloaded_fn (decl))
4025 return error_mark_node;
4027 for (fns = decl; fns; fns = OVL_NEXT (fns))
4029 unsigned int ix;
4030 bool found = true;
4031 tree fn = OVL_CURRENT (fns);
4032 tree parmtypes = TYPE_ARG_TYPES (TREE_TYPE (fn));
4033 if (parmtypes != NULL_TREE)
4035 for (ix = 0; ix < vec_safe_length (args) && parmtypes != NULL_TREE;
4036 ++ix, parmtypes = TREE_CHAIN (parmtypes))
4038 tree tparm = TREE_VALUE (parmtypes);
4039 tree targ = TREE_TYPE ((*args)[ix]);
4040 bool ptr = TYPE_PTR_P (tparm);
4041 bool arr = TREE_CODE (targ) == ARRAY_TYPE;
4042 if ((ptr || arr || !same_type_p (tparm, targ))
4043 && (!ptr || !arr
4044 || !same_type_p (TREE_TYPE (tparm),
4045 TREE_TYPE (targ))))
4046 found = false;
4048 if (found
4049 && ix == vec_safe_length (args)
4050 /* May be this should be sufficient_parms_p instead,
4051 depending on how exactly should user-defined literals
4052 work in presence of default arguments on the literal
4053 operator parameters. */
4054 && parmtypes == void_list_node)
4055 return decl;
4059 return error_mark_node;
4062 /* Parse a user-defined char constant. Returns a call to a user-defined
4063 literal operator taking the character as an argument. */
4065 static cp_expr
4066 cp_parser_userdef_char_literal (cp_parser *parser)
4068 cp_token *token = cp_lexer_consume_token (parser->lexer);
4069 tree literal = token->u.value;
4070 tree suffix_id = USERDEF_LITERAL_SUFFIX_ID (literal);
4071 tree value = USERDEF_LITERAL_VALUE (literal);
4072 tree name = cp_literal_operator_id (IDENTIFIER_POINTER (suffix_id));
4073 tree decl, result;
4075 /* Build up a call to the user-defined operator */
4076 /* Lookup the name we got back from the id-expression. */
4077 vec<tree, va_gc> *args = make_tree_vector ();
4078 vec_safe_push (args, value);
4079 decl = lookup_literal_operator (name, args);
4080 if (!decl || decl == error_mark_node)
4082 error ("unable to find character literal operator %qD with %qT argument",
4083 name, TREE_TYPE (value));
4084 release_tree_vector (args);
4085 return error_mark_node;
4087 result = finish_call_expr (decl, &args, false, true, tf_warning_or_error);
4088 release_tree_vector (args);
4089 return result;
4092 /* A subroutine of cp_parser_userdef_numeric_literal to
4093 create a char... template parameter pack from a string node. */
4095 static tree
4096 make_char_string_pack (tree value)
4098 tree charvec;
4099 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
4100 const char *str = TREE_STRING_POINTER (value);
4101 int i, len = TREE_STRING_LENGTH (value) - 1;
4102 tree argvec = make_tree_vec (1);
4104 /* Fill in CHARVEC with all of the parameters. */
4105 charvec = make_tree_vec (len);
4106 for (i = 0; i < len; ++i)
4107 TREE_VEC_ELT (charvec, i) = build_int_cst (char_type_node, str[i]);
4109 /* Build the argument packs. */
4110 SET_ARGUMENT_PACK_ARGS (argpack, charvec);
4111 TREE_TYPE (argpack) = char_type_node;
4113 TREE_VEC_ELT (argvec, 0) = argpack;
4115 return argvec;
4118 /* A subroutine of cp_parser_userdef_numeric_literal to
4119 create a char... template parameter pack from a string node. */
4121 static tree
4122 make_string_pack (tree value)
4124 tree charvec;
4125 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
4126 const unsigned char *str
4127 = (const unsigned char *) TREE_STRING_POINTER (value);
4128 int sz = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (value))));
4129 int len = TREE_STRING_LENGTH (value) / sz - 1;
4130 tree argvec = make_tree_vec (2);
4132 tree str_char_type_node = TREE_TYPE (TREE_TYPE (value));
4133 str_char_type_node = TYPE_MAIN_VARIANT (str_char_type_node);
4135 /* First template parm is character type. */
4136 TREE_VEC_ELT (argvec, 0) = str_char_type_node;
4138 /* Fill in CHARVEC with all of the parameters. */
4139 charvec = make_tree_vec (len);
4140 for (int i = 0; i < len; ++i)
4141 TREE_VEC_ELT (charvec, i)
4142 = double_int_to_tree (str_char_type_node,
4143 double_int::from_buffer (str + i * sz, sz));
4145 /* Build the argument packs. */
4146 SET_ARGUMENT_PACK_ARGS (argpack, charvec);
4147 TREE_TYPE (argpack) = str_char_type_node;
4149 TREE_VEC_ELT (argvec, 1) = argpack;
4151 return argvec;
4154 /* Parse a user-defined numeric constant. returns a call to a user-defined
4155 literal operator. */
4157 static cp_expr
4158 cp_parser_userdef_numeric_literal (cp_parser *parser)
4160 cp_token *token = cp_lexer_consume_token (parser->lexer);
4161 tree literal = token->u.value;
4162 tree suffix_id = USERDEF_LITERAL_SUFFIX_ID (literal);
4163 tree value = USERDEF_LITERAL_VALUE (literal);
4164 int overflow = USERDEF_LITERAL_OVERFLOW (literal);
4165 tree num_string = USERDEF_LITERAL_NUM_STRING (literal);
4166 tree name = cp_literal_operator_id (IDENTIFIER_POINTER (suffix_id));
4167 tree decl, result;
4168 vec<tree, va_gc> *args;
4170 /* Look for a literal operator taking the exact type of numeric argument
4171 as the literal value. */
4172 args = make_tree_vector ();
4173 vec_safe_push (args, value);
4174 decl = lookup_literal_operator (name, args);
4175 if (decl && decl != error_mark_node)
4177 result = finish_call_expr (decl, &args, false, true,
4178 tf_warning_or_error);
4180 if (TREE_CODE (TREE_TYPE (value)) == INTEGER_TYPE && overflow > 0)
4182 warning_at (token->location, OPT_Woverflow,
4183 "integer literal exceeds range of %qT type",
4184 long_long_unsigned_type_node);
4186 else
4188 if (overflow > 0)
4189 warning_at (token->location, OPT_Woverflow,
4190 "floating literal exceeds range of %qT type",
4191 long_double_type_node);
4192 else if (overflow < 0)
4193 warning_at (token->location, OPT_Woverflow,
4194 "floating literal truncated to zero");
4197 release_tree_vector (args);
4198 return result;
4200 release_tree_vector (args);
4202 /* If the numeric argument didn't work, look for a raw literal
4203 operator taking a const char* argument consisting of the number
4204 in string format. */
4205 args = make_tree_vector ();
4206 vec_safe_push (args, num_string);
4207 decl = lookup_literal_operator (name, args);
4208 if (decl && decl != error_mark_node)
4210 result = finish_call_expr (decl, &args, false, true,
4211 tf_warning_or_error);
4212 release_tree_vector (args);
4213 return result;
4215 release_tree_vector (args);
4217 /* If the raw literal didn't work, look for a non-type template
4218 function with parameter pack char.... Call the function with
4219 template parameter characters representing the number. */
4220 args = make_tree_vector ();
4221 decl = lookup_literal_operator (name, args);
4222 if (decl && decl != error_mark_node)
4224 tree tmpl_args = make_char_string_pack (num_string);
4225 decl = lookup_template_function (decl, tmpl_args);
4226 result = finish_call_expr (decl, &args, false, true,
4227 tf_warning_or_error);
4228 release_tree_vector (args);
4229 return result;
4232 release_tree_vector (args);
4234 error ("unable to find numeric literal operator %qD", name);
4235 if (!cpp_get_options (parse_in)->ext_numeric_literals)
4236 inform (token->location, "use -std=gnu++11 or -fext-numeric-literals "
4237 "to enable more built-in suffixes");
4238 return error_mark_node;
4241 /* Parse a user-defined string constant. Returns a call to a user-defined
4242 literal operator taking a character pointer and the length of the string
4243 as arguments. */
4245 static tree
4246 cp_parser_userdef_string_literal (tree literal)
4248 tree suffix_id = USERDEF_LITERAL_SUFFIX_ID (literal);
4249 tree name = cp_literal_operator_id (IDENTIFIER_POINTER (suffix_id));
4250 tree value = USERDEF_LITERAL_VALUE (literal);
4251 int len = TREE_STRING_LENGTH (value)
4252 / TREE_INT_CST_LOW (TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (value)))) - 1;
4253 tree decl, result;
4254 vec<tree, va_gc> *args;
4256 /* Build up a call to the user-defined operator. */
4257 /* Lookup the name we got back from the id-expression. */
4258 args = make_tree_vector ();
4259 vec_safe_push (args, value);
4260 vec_safe_push (args, build_int_cst (size_type_node, len));
4261 decl = lookup_literal_operator (name, args);
4263 if (decl && decl != error_mark_node)
4265 result = finish_call_expr (decl, &args, false, true,
4266 tf_warning_or_error);
4267 release_tree_vector (args);
4268 return result;
4270 release_tree_vector (args);
4272 /* Look for a template function with typename parameter CharT
4273 and parameter pack CharT... Call the function with
4274 template parameter characters representing the string. */
4275 args = make_tree_vector ();
4276 decl = lookup_literal_operator (name, args);
4277 if (decl && decl != error_mark_node)
4279 tree tmpl_args = make_string_pack (value);
4280 decl = lookup_template_function (decl, tmpl_args);
4281 result = finish_call_expr (decl, &args, false, true,
4282 tf_warning_or_error);
4283 release_tree_vector (args);
4284 return result;
4286 release_tree_vector (args);
4288 error ("unable to find string literal operator %qD with %qT, %qT arguments",
4289 name, TREE_TYPE (value), size_type_node);
4290 return error_mark_node;
4294 /* Basic concepts [gram.basic] */
4296 /* Parse a translation-unit.
4298 translation-unit:
4299 declaration-seq [opt]
4301 Returns TRUE if all went well. */
4303 static bool
4304 cp_parser_translation_unit (cp_parser* parser)
4306 /* The address of the first non-permanent object on the declarator
4307 obstack. */
4308 static void *declarator_obstack_base;
4310 bool success;
4312 /* Create the declarator obstack, if necessary. */
4313 if (!cp_error_declarator)
4315 gcc_obstack_init (&declarator_obstack);
4316 /* Create the error declarator. */
4317 cp_error_declarator = make_declarator (cdk_error);
4318 /* Create the empty parameter list. */
4319 no_parameters = make_parameter_declarator (NULL, NULL, NULL_TREE);
4320 /* Remember where the base of the declarator obstack lies. */
4321 declarator_obstack_base = obstack_next_free (&declarator_obstack);
4324 cp_parser_declaration_seq_opt (parser);
4326 /* If there are no tokens left then all went well. */
4327 if (cp_lexer_next_token_is (parser->lexer, CPP_EOF))
4329 /* Get rid of the token array; we don't need it any more. */
4330 cp_lexer_destroy (parser->lexer);
4331 parser->lexer = NULL;
4333 /* This file might have been a context that's implicitly extern
4334 "C". If so, pop the lang context. (Only relevant for PCH.) */
4335 if (parser->implicit_extern_c)
4337 pop_lang_context ();
4338 parser->implicit_extern_c = false;
4341 /* Finish up. */
4342 finish_translation_unit ();
4344 success = true;
4346 else
4348 cp_parser_error (parser, "expected declaration");
4349 success = false;
4352 /* Make sure the declarator obstack was fully cleaned up. */
4353 gcc_assert (obstack_next_free (&declarator_obstack)
4354 == declarator_obstack_base);
4356 /* All went well. */
4357 return success;
4360 /* Return the appropriate tsubst flags for parsing, possibly in N3276
4361 decltype context. */
4363 static inline tsubst_flags_t
4364 complain_flags (bool decltype_p)
4366 tsubst_flags_t complain = tf_warning_or_error;
4367 if (decltype_p)
4368 complain |= tf_decltype;
4369 return complain;
4372 /* We're about to parse a collection of statements. If we're currently
4373 parsing tentatively, set up a firewall so that any nested
4374 cp_parser_commit_to_tentative_parse won't affect the current context. */
4376 static cp_token_position
4377 cp_parser_start_tentative_firewall (cp_parser *parser)
4379 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
4380 return 0;
4382 cp_parser_parse_tentatively (parser);
4383 cp_parser_commit_to_topmost_tentative_parse (parser);
4384 return cp_lexer_token_position (parser->lexer, false);
4387 /* We've finished parsing the collection of statements. Wrap up the
4388 firewall and replace the relevant tokens with the parsed form. */
4390 static void
4391 cp_parser_end_tentative_firewall (cp_parser *parser, cp_token_position start,
4392 tree expr)
4394 if (!start)
4395 return;
4397 /* Finish the firewall level. */
4398 cp_parser_parse_definitely (parser);
4399 /* And remember the result of the parse for when we try again. */
4400 cp_token *token = cp_lexer_token_at (parser->lexer, start);
4401 token->type = CPP_PREPARSED_EXPR;
4402 token->u.value = expr;
4403 token->keyword = RID_MAX;
4404 cp_lexer_purge_tokens_after (parser->lexer, start);
4407 /* Like the above functions, but let the user modify the tokens. Used by
4408 CPP_DECLTYPE and CPP_TEMPLATE_ID, where we are saving the side-effects for
4409 later parses, so it makes sense to localize the effects of
4410 cp_parser_commit_to_tentative_parse. */
4412 struct tentative_firewall
4414 cp_parser *parser;
4415 bool set;
4417 tentative_firewall (cp_parser *p): parser(p)
4419 /* If we're currently parsing tentatively, start a committed level as a
4420 firewall and then an inner tentative parse. */
4421 if ((set = cp_parser_uncommitted_to_tentative_parse_p (parser)))
4423 cp_parser_parse_tentatively (parser);
4424 cp_parser_commit_to_topmost_tentative_parse (parser);
4425 cp_parser_parse_tentatively (parser);
4429 ~tentative_firewall()
4431 if (set)
4433 /* Finish the inner tentative parse and the firewall, propagating any
4434 uncommitted error state to the outer tentative parse. */
4435 bool err = cp_parser_error_occurred (parser);
4436 cp_parser_parse_definitely (parser);
4437 cp_parser_parse_definitely (parser);
4438 if (err)
4439 cp_parser_simulate_error (parser);
4444 /* Parse a GNU statement-expression, i.e. ({ stmts }), except for the
4445 enclosing parentheses. */
4447 static cp_expr
4448 cp_parser_statement_expr (cp_parser *parser)
4450 cp_token_position start = cp_parser_start_tentative_firewall (parser);
4452 /* Consume the '('. */
4453 location_t start_loc = cp_lexer_peek_token (parser->lexer)->location;
4454 cp_lexer_consume_token (parser->lexer);
4455 /* Start the statement-expression. */
4456 tree expr = begin_stmt_expr ();
4457 /* Parse the compound-statement. */
4458 cp_parser_compound_statement (parser, expr, BCS_NORMAL, false);
4459 /* Finish up. */
4460 expr = finish_stmt_expr (expr, false);
4461 /* Consume the ')'. */
4462 location_t finish_loc = cp_lexer_peek_token (parser->lexer)->location;
4463 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
4464 cp_parser_skip_to_end_of_statement (parser);
4466 cp_parser_end_tentative_firewall (parser, start, expr);
4467 location_t combined_loc = make_location (start_loc, start_loc, finish_loc);
4468 return cp_expr (expr, combined_loc);
4471 /* Expressions [gram.expr] */
4473 /* Parse a fold-operator.
4475 fold-operator:
4476 - * / % ^ & | = < > << >>
4477 = -= *= /= %= ^= &= |= <<= >>=
4478 == != <= >= && || , .* ->*
4480 This returns the tree code corresponding to the matched operator
4481 as an int. When the current token matches a compound assignment
4482 opertor, the resulting tree code is the negative value of the
4483 non-assignment operator. */
4485 static int
4486 cp_parser_fold_operator (cp_token *token)
4488 switch (token->type)
4490 case CPP_PLUS: return PLUS_EXPR;
4491 case CPP_MINUS: return MINUS_EXPR;
4492 case CPP_MULT: return MULT_EXPR;
4493 case CPP_DIV: return TRUNC_DIV_EXPR;
4494 case CPP_MOD: return TRUNC_MOD_EXPR;
4495 case CPP_XOR: return BIT_XOR_EXPR;
4496 case CPP_AND: return BIT_AND_EXPR;
4497 case CPP_OR: return BIT_IOR_EXPR;
4498 case CPP_LSHIFT: return LSHIFT_EXPR;
4499 case CPP_RSHIFT: return RSHIFT_EXPR;
4501 case CPP_EQ: return -NOP_EXPR;
4502 case CPP_PLUS_EQ: return -PLUS_EXPR;
4503 case CPP_MINUS_EQ: return -MINUS_EXPR;
4504 case CPP_MULT_EQ: return -MULT_EXPR;
4505 case CPP_DIV_EQ: return -TRUNC_DIV_EXPR;
4506 case CPP_MOD_EQ: return -TRUNC_MOD_EXPR;
4507 case CPP_XOR_EQ: return -BIT_XOR_EXPR;
4508 case CPP_AND_EQ: return -BIT_AND_EXPR;
4509 case CPP_OR_EQ: return -BIT_IOR_EXPR;
4510 case CPP_LSHIFT_EQ: return -LSHIFT_EXPR;
4511 case CPP_RSHIFT_EQ: return -RSHIFT_EXPR;
4513 case CPP_EQ_EQ: return EQ_EXPR;
4514 case CPP_NOT_EQ: return NE_EXPR;
4515 case CPP_LESS: return LT_EXPR;
4516 case CPP_GREATER: return GT_EXPR;
4517 case CPP_LESS_EQ: return LE_EXPR;
4518 case CPP_GREATER_EQ: return GE_EXPR;
4520 case CPP_AND_AND: return TRUTH_ANDIF_EXPR;
4521 case CPP_OR_OR: return TRUTH_ORIF_EXPR;
4523 case CPP_COMMA: return COMPOUND_EXPR;
4525 case CPP_DOT_STAR: return DOTSTAR_EXPR;
4526 case CPP_DEREF_STAR: return MEMBER_REF;
4528 default: return ERROR_MARK;
4532 /* Returns true if CODE indicates a binary expression, which is not allowed in
4533 the LHS of a fold-expression. More codes will need to be added to use this
4534 function in other contexts. */
4536 static bool
4537 is_binary_op (tree_code code)
4539 switch (code)
4541 case PLUS_EXPR:
4542 case POINTER_PLUS_EXPR:
4543 case MINUS_EXPR:
4544 case MULT_EXPR:
4545 case TRUNC_DIV_EXPR:
4546 case TRUNC_MOD_EXPR:
4547 case BIT_XOR_EXPR:
4548 case BIT_AND_EXPR:
4549 case BIT_IOR_EXPR:
4550 case LSHIFT_EXPR:
4551 case RSHIFT_EXPR:
4553 case MODOP_EXPR:
4555 case EQ_EXPR:
4556 case NE_EXPR:
4557 case LE_EXPR:
4558 case GE_EXPR:
4559 case LT_EXPR:
4560 case GT_EXPR:
4562 case TRUTH_ANDIF_EXPR:
4563 case TRUTH_ORIF_EXPR:
4565 case COMPOUND_EXPR:
4567 case DOTSTAR_EXPR:
4568 case MEMBER_REF:
4569 return true;
4571 default:
4572 return false;
4576 /* If the next token is a suitable fold operator, consume it and return as
4577 the function above. */
4579 static int
4580 cp_parser_fold_operator (cp_parser *parser)
4582 cp_token* token = cp_lexer_peek_token (parser->lexer);
4583 int code = cp_parser_fold_operator (token);
4584 if (code != ERROR_MARK)
4585 cp_lexer_consume_token (parser->lexer);
4586 return code;
4589 /* Parse a fold-expression.
4591 fold-expression:
4592 ( ... folding-operator cast-expression)
4593 ( cast-expression folding-operator ... )
4594 ( cast-expression folding operator ... folding-operator cast-expression)
4596 Note that the '(' and ')' are matched in primary expression. */
4598 static cp_expr
4599 cp_parser_fold_expression (cp_parser *parser, tree expr1)
4601 cp_id_kind pidk;
4603 // Left fold.
4604 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
4606 cp_lexer_consume_token (parser->lexer);
4607 int op = cp_parser_fold_operator (parser);
4608 if (op == ERROR_MARK)
4610 cp_parser_error (parser, "expected binary operator");
4611 return error_mark_node;
4614 tree expr = cp_parser_cast_expression (parser, false, false,
4615 false, &pidk);
4616 if (expr == error_mark_node)
4617 return error_mark_node;
4618 return finish_left_unary_fold_expr (expr, op);
4621 const cp_token* token = cp_lexer_peek_token (parser->lexer);
4622 int op = cp_parser_fold_operator (parser);
4623 if (op == ERROR_MARK)
4625 cp_parser_error (parser, "expected binary operator");
4626 return error_mark_node;
4629 if (cp_lexer_next_token_is_not (parser->lexer, CPP_ELLIPSIS))
4631 cp_parser_error (parser, "expected ...");
4632 return error_mark_node;
4634 cp_lexer_consume_token (parser->lexer);
4636 /* The operands of a fold-expression are cast-expressions, so binary or
4637 conditional expressions are not allowed. We check this here to avoid
4638 tentative parsing. */
4639 if (is_binary_op (TREE_CODE (expr1)))
4640 error_at (location_of (expr1),
4641 "binary expression in operand of fold-expression");
4642 else if (TREE_CODE (expr1) == COND_EXPR)
4643 error_at (location_of (expr1),
4644 "conditional expression in operand of fold-expression");
4646 // Right fold.
4647 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN))
4648 return finish_right_unary_fold_expr (expr1, op);
4650 if (cp_lexer_next_token_is_not (parser->lexer, token->type))
4652 cp_parser_error (parser, "mismatched operator in fold-expression");
4653 return error_mark_node;
4655 cp_lexer_consume_token (parser->lexer);
4657 // Binary left or right fold.
4658 tree expr2 = cp_parser_cast_expression (parser, false, false, false, &pidk);
4659 if (expr2 == error_mark_node)
4660 return error_mark_node;
4661 return finish_binary_fold_expr (expr1, expr2, op);
4664 /* Parse a primary-expression.
4666 primary-expression:
4667 literal
4668 this
4669 ( expression )
4670 id-expression
4671 lambda-expression (C++11)
4673 GNU Extensions:
4675 primary-expression:
4676 ( compound-statement )
4677 __builtin_va_arg ( assignment-expression , type-id )
4678 __builtin_offsetof ( type-id , offsetof-expression )
4680 C++ Extensions:
4681 __has_nothrow_assign ( type-id )
4682 __has_nothrow_constructor ( type-id )
4683 __has_nothrow_copy ( type-id )
4684 __has_trivial_assign ( type-id )
4685 __has_trivial_constructor ( type-id )
4686 __has_trivial_copy ( type-id )
4687 __has_trivial_destructor ( type-id )
4688 __has_virtual_destructor ( type-id )
4689 __is_abstract ( type-id )
4690 __is_base_of ( type-id , type-id )
4691 __is_class ( type-id )
4692 __is_empty ( type-id )
4693 __is_enum ( type-id )
4694 __is_final ( type-id )
4695 __is_literal_type ( type-id )
4696 __is_pod ( type-id )
4697 __is_polymorphic ( type-id )
4698 __is_std_layout ( type-id )
4699 __is_trivial ( type-id )
4700 __is_union ( type-id )
4702 Objective-C++ Extension:
4704 primary-expression:
4705 objc-expression
4707 literal:
4708 __null
4710 ADDRESS_P is true iff this expression was immediately preceded by
4711 "&" and therefore might denote a pointer-to-member. CAST_P is true
4712 iff this expression is the target of a cast. TEMPLATE_ARG_P is
4713 true iff this expression is a template argument.
4715 Returns a representation of the expression. Upon return, *IDK
4716 indicates what kind of id-expression (if any) was present. */
4718 static cp_expr
4719 cp_parser_primary_expression (cp_parser *parser,
4720 bool address_p,
4721 bool cast_p,
4722 bool template_arg_p,
4723 bool decltype_p,
4724 cp_id_kind *idk)
4726 cp_token *token = NULL;
4728 /* Assume the primary expression is not an id-expression. */
4729 *idk = CP_ID_KIND_NONE;
4731 /* Peek at the next token. */
4732 token = cp_lexer_peek_token (parser->lexer);
4733 switch ((int) token->type)
4735 /* literal:
4736 integer-literal
4737 character-literal
4738 floating-literal
4739 string-literal
4740 boolean-literal
4741 pointer-literal
4742 user-defined-literal */
4743 case CPP_CHAR:
4744 case CPP_CHAR16:
4745 case CPP_CHAR32:
4746 case CPP_WCHAR:
4747 case CPP_UTF8CHAR:
4748 case CPP_NUMBER:
4749 case CPP_PREPARSED_EXPR:
4750 if (TREE_CODE (token->u.value) == USERDEF_LITERAL)
4751 return cp_parser_userdef_numeric_literal (parser);
4752 token = cp_lexer_consume_token (parser->lexer);
4753 if (TREE_CODE (token->u.value) == FIXED_CST)
4755 error_at (token->location,
4756 "fixed-point types not supported in C++");
4757 return error_mark_node;
4759 /* Floating-point literals are only allowed in an integral
4760 constant expression if they are cast to an integral or
4761 enumeration type. */
4762 if (TREE_CODE (token->u.value) == REAL_CST
4763 && parser->integral_constant_expression_p
4764 && pedantic)
4766 /* CAST_P will be set even in invalid code like "int(2.7 +
4767 ...)". Therefore, we have to check that the next token
4768 is sure to end the cast. */
4769 if (cast_p)
4771 cp_token *next_token;
4773 next_token = cp_lexer_peek_token (parser->lexer);
4774 if (/* The comma at the end of an
4775 enumerator-definition. */
4776 next_token->type != CPP_COMMA
4777 /* The curly brace at the end of an enum-specifier. */
4778 && next_token->type != CPP_CLOSE_BRACE
4779 /* The end of a statement. */
4780 && next_token->type != CPP_SEMICOLON
4781 /* The end of the cast-expression. */
4782 && next_token->type != CPP_CLOSE_PAREN
4783 /* The end of an array bound. */
4784 && next_token->type != CPP_CLOSE_SQUARE
4785 /* The closing ">" in a template-argument-list. */
4786 && (next_token->type != CPP_GREATER
4787 || parser->greater_than_is_operator_p)
4788 /* C++0x only: A ">>" treated like two ">" tokens,
4789 in a template-argument-list. */
4790 && (next_token->type != CPP_RSHIFT
4791 || (cxx_dialect == cxx98)
4792 || parser->greater_than_is_operator_p))
4793 cast_p = false;
4796 /* If we are within a cast, then the constraint that the
4797 cast is to an integral or enumeration type will be
4798 checked at that point. If we are not within a cast, then
4799 this code is invalid. */
4800 if (!cast_p)
4801 cp_parser_non_integral_constant_expression (parser, NIC_FLOAT);
4803 return cp_expr (token->u.value, token->location);
4805 case CPP_CHAR_USERDEF:
4806 case CPP_CHAR16_USERDEF:
4807 case CPP_CHAR32_USERDEF:
4808 case CPP_WCHAR_USERDEF:
4809 case CPP_UTF8CHAR_USERDEF:
4810 return cp_parser_userdef_char_literal (parser);
4812 case CPP_STRING:
4813 case CPP_STRING16:
4814 case CPP_STRING32:
4815 case CPP_WSTRING:
4816 case CPP_UTF8STRING:
4817 case CPP_STRING_USERDEF:
4818 case CPP_STRING16_USERDEF:
4819 case CPP_STRING32_USERDEF:
4820 case CPP_WSTRING_USERDEF:
4821 case CPP_UTF8STRING_USERDEF:
4822 /* ??? Should wide strings be allowed when parser->translate_strings_p
4823 is false (i.e. in attributes)? If not, we can kill the third
4824 argument to cp_parser_string_literal. */
4825 return cp_parser_string_literal (parser,
4826 parser->translate_strings_p,
4827 true);
4829 case CPP_OPEN_PAREN:
4830 /* If we see `( { ' then we are looking at the beginning of
4831 a GNU statement-expression. */
4832 if (cp_parser_allow_gnu_extensions_p (parser)
4833 && cp_lexer_nth_token_is (parser->lexer, 2, CPP_OPEN_BRACE))
4835 /* Statement-expressions are not allowed by the standard. */
4836 pedwarn (token->location, OPT_Wpedantic,
4837 "ISO C++ forbids braced-groups within expressions");
4839 /* And they're not allowed outside of a function-body; you
4840 cannot, for example, write:
4842 int i = ({ int j = 3; j + 1; });
4844 at class or namespace scope. */
4845 if (!parser->in_function_body
4846 || parser->in_template_argument_list_p)
4848 error_at (token->location,
4849 "statement-expressions are not allowed outside "
4850 "functions nor in template-argument lists");
4851 cp_parser_skip_to_end_of_block_or_statement (parser);
4852 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN))
4853 cp_lexer_consume_token (parser->lexer);
4854 return error_mark_node;
4856 else
4857 return cp_parser_statement_expr (parser);
4859 /* Otherwise it's a normal parenthesized expression. */
4861 cp_expr expr;
4862 bool saved_greater_than_is_operator_p;
4864 location_t open_paren_loc = token->location;
4866 /* Consume the `('. */
4867 cp_lexer_consume_token (parser->lexer);
4868 /* Within a parenthesized expression, a `>' token is always
4869 the greater-than operator. */
4870 saved_greater_than_is_operator_p
4871 = parser->greater_than_is_operator_p;
4872 parser->greater_than_is_operator_p = true;
4874 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
4875 /* Left fold expression. */
4876 expr = NULL_TREE;
4877 else
4878 /* Parse the parenthesized expression. */
4879 expr = cp_parser_expression (parser, idk, cast_p, decltype_p);
4881 token = cp_lexer_peek_token (parser->lexer);
4882 if (token->type == CPP_ELLIPSIS || cp_parser_fold_operator (token))
4884 expr = cp_parser_fold_expression (parser, expr);
4885 if (expr != error_mark_node
4886 && cxx_dialect < cxx1z
4887 && !in_system_header_at (input_location))
4888 pedwarn (input_location, 0, "fold-expressions only available "
4889 "with -std=c++1z or -std=gnu++1z");
4891 else
4892 /* Let the front end know that this expression was
4893 enclosed in parentheses. This matters in case, for
4894 example, the expression is of the form `A::B', since
4895 `&A::B' might be a pointer-to-member, but `&(A::B)' is
4896 not. */
4897 expr = finish_parenthesized_expr (expr);
4899 /* DR 705: Wrapping an unqualified name in parentheses
4900 suppresses arg-dependent lookup. We want to pass back
4901 CP_ID_KIND_QUALIFIED for suppressing vtable lookup
4902 (c++/37862), but none of the others. */
4903 if (*idk != CP_ID_KIND_QUALIFIED)
4904 *idk = CP_ID_KIND_NONE;
4906 /* The `>' token might be the end of a template-id or
4907 template-parameter-list now. */
4908 parser->greater_than_is_operator_p
4909 = saved_greater_than_is_operator_p;
4911 /* Consume the `)'. */
4912 token = cp_lexer_peek_token (parser->lexer);
4913 location_t close_paren_loc = token->location;
4914 expr.set_range (open_paren_loc, close_paren_loc);
4915 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN)
4916 && !cp_parser_uncommitted_to_tentative_parse_p (parser))
4917 cp_parser_skip_to_end_of_statement (parser);
4919 return expr;
4922 case CPP_OPEN_SQUARE:
4924 if (c_dialect_objc ())
4926 /* We might have an Objective-C++ message. */
4927 cp_parser_parse_tentatively (parser);
4928 tree msg = cp_parser_objc_message_expression (parser);
4929 /* If that works out, we're done ... */
4930 if (cp_parser_parse_definitely (parser))
4931 return msg;
4932 /* ... else, fall though to see if it's a lambda. */
4934 cp_expr lam = cp_parser_lambda_expression (parser);
4935 /* Don't warn about a failed tentative parse. */
4936 if (cp_parser_error_occurred (parser))
4937 return error_mark_node;
4938 maybe_warn_cpp0x (CPP0X_LAMBDA_EXPR);
4939 return lam;
4942 case CPP_OBJC_STRING:
4943 if (c_dialect_objc ())
4944 /* We have an Objective-C++ string literal. */
4945 return cp_parser_objc_expression (parser);
4946 cp_parser_error (parser, "expected primary-expression");
4947 return error_mark_node;
4949 case CPP_KEYWORD:
4950 switch (token->keyword)
4952 /* These two are the boolean literals. */
4953 case RID_TRUE:
4954 cp_lexer_consume_token (parser->lexer);
4955 return cp_expr (boolean_true_node, token->location);
4956 case RID_FALSE:
4957 cp_lexer_consume_token (parser->lexer);
4958 return cp_expr (boolean_false_node, token->location);
4960 /* The `__null' literal. */
4961 case RID_NULL:
4962 cp_lexer_consume_token (parser->lexer);
4963 return cp_expr (null_node, token->location);
4965 /* The `nullptr' literal. */
4966 case RID_NULLPTR:
4967 cp_lexer_consume_token (parser->lexer);
4968 return cp_expr (nullptr_node, token->location);
4970 /* Recognize the `this' keyword. */
4971 case RID_THIS:
4972 cp_lexer_consume_token (parser->lexer);
4973 if (parser->local_variables_forbidden_p)
4975 error_at (token->location,
4976 "%<this%> may not be used in this context");
4977 return error_mark_node;
4979 /* Pointers cannot appear in constant-expressions. */
4980 if (cp_parser_non_integral_constant_expression (parser, NIC_THIS))
4981 return error_mark_node;
4982 return cp_expr (finish_this_expr (), token->location);
4984 /* The `operator' keyword can be the beginning of an
4985 id-expression. */
4986 case RID_OPERATOR:
4987 goto id_expression;
4989 case RID_FUNCTION_NAME:
4990 case RID_PRETTY_FUNCTION_NAME:
4991 case RID_C99_FUNCTION_NAME:
4993 non_integral_constant name;
4995 /* The symbols __FUNCTION__, __PRETTY_FUNCTION__, and
4996 __func__ are the names of variables -- but they are
4997 treated specially. Therefore, they are handled here,
4998 rather than relying on the generic id-expression logic
4999 below. Grammatically, these names are id-expressions.
5001 Consume the token. */
5002 token = cp_lexer_consume_token (parser->lexer);
5004 switch (token->keyword)
5006 case RID_FUNCTION_NAME:
5007 name = NIC_FUNC_NAME;
5008 break;
5009 case RID_PRETTY_FUNCTION_NAME:
5010 name = NIC_PRETTY_FUNC;
5011 break;
5012 case RID_C99_FUNCTION_NAME:
5013 name = NIC_C99_FUNC;
5014 break;
5015 default:
5016 gcc_unreachable ();
5019 if (cp_parser_non_integral_constant_expression (parser, name))
5020 return error_mark_node;
5022 /* Look up the name. */
5023 return finish_fname (token->u.value);
5026 case RID_VA_ARG:
5028 tree expression;
5029 tree type;
5030 source_location type_location;
5031 location_t start_loc
5032 = cp_lexer_peek_token (parser->lexer)->location;
5033 /* The `__builtin_va_arg' construct is used to handle
5034 `va_arg'. Consume the `__builtin_va_arg' token. */
5035 cp_lexer_consume_token (parser->lexer);
5036 /* Look for the opening `('. */
5037 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
5038 /* Now, parse the assignment-expression. */
5039 expression = cp_parser_assignment_expression (parser);
5040 /* Look for the `,'. */
5041 cp_parser_require (parser, CPP_COMMA, RT_COMMA);
5042 type_location = cp_lexer_peek_token (parser->lexer)->location;
5043 /* Parse the type-id. */
5045 type_id_in_expr_sentinel s (parser);
5046 type = cp_parser_type_id (parser);
5048 /* Look for the closing `)'. */
5049 location_t finish_loc
5050 = cp_lexer_peek_token (parser->lexer)->location;
5051 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
5052 /* Using `va_arg' in a constant-expression is not
5053 allowed. */
5054 if (cp_parser_non_integral_constant_expression (parser,
5055 NIC_VA_ARG))
5056 return error_mark_node;
5057 /* Construct a location of the form:
5058 __builtin_va_arg (v, int)
5059 ~~~~~~~~~~~~~~~~~~~~~^~~~
5060 with the caret at the type, ranging from the start of the
5061 "__builtin_va_arg" token to the close paren. */
5062 location_t combined_loc
5063 = make_location (type_location, start_loc, finish_loc);
5064 return build_x_va_arg (combined_loc, expression, type);
5067 case RID_OFFSETOF:
5068 return cp_parser_builtin_offsetof (parser);
5070 case RID_HAS_NOTHROW_ASSIGN:
5071 case RID_HAS_NOTHROW_CONSTRUCTOR:
5072 case RID_HAS_NOTHROW_COPY:
5073 case RID_HAS_TRIVIAL_ASSIGN:
5074 case RID_HAS_TRIVIAL_CONSTRUCTOR:
5075 case RID_HAS_TRIVIAL_COPY:
5076 case RID_HAS_TRIVIAL_DESTRUCTOR:
5077 case RID_HAS_VIRTUAL_DESTRUCTOR:
5078 case RID_IS_ABSTRACT:
5079 case RID_IS_BASE_OF:
5080 case RID_IS_CLASS:
5081 case RID_IS_EMPTY:
5082 case RID_IS_ENUM:
5083 case RID_IS_FINAL:
5084 case RID_IS_LITERAL_TYPE:
5085 case RID_IS_POD:
5086 case RID_IS_POLYMORPHIC:
5087 case RID_IS_SAME_AS:
5088 case RID_IS_STD_LAYOUT:
5089 case RID_IS_TRIVIAL:
5090 case RID_IS_TRIVIALLY_ASSIGNABLE:
5091 case RID_IS_TRIVIALLY_CONSTRUCTIBLE:
5092 case RID_IS_TRIVIALLY_COPYABLE:
5093 case RID_IS_UNION:
5094 return cp_parser_trait_expr (parser, token->keyword);
5096 // C++ concepts
5097 case RID_REQUIRES:
5098 return cp_parser_requires_expression (parser);
5100 /* Objective-C++ expressions. */
5101 case RID_AT_ENCODE:
5102 case RID_AT_PROTOCOL:
5103 case RID_AT_SELECTOR:
5104 return cp_parser_objc_expression (parser);
5106 case RID_TEMPLATE:
5107 if (parser->in_function_body
5108 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
5109 == CPP_LESS))
5111 error_at (token->location,
5112 "a template declaration cannot appear at block scope");
5113 cp_parser_skip_to_end_of_block_or_statement (parser);
5114 return error_mark_node;
5116 default:
5117 cp_parser_error (parser, "expected primary-expression");
5118 return error_mark_node;
5121 /* An id-expression can start with either an identifier, a
5122 `::' as the beginning of a qualified-id, or the "operator"
5123 keyword. */
5124 case CPP_NAME:
5125 case CPP_SCOPE:
5126 case CPP_TEMPLATE_ID:
5127 case CPP_NESTED_NAME_SPECIFIER:
5129 id_expression:
5130 cp_expr id_expression;
5131 cp_expr decl;
5132 const char *error_msg;
5133 bool template_p;
5134 bool done;
5135 cp_token *id_expr_token;
5137 /* Parse the id-expression. */
5138 id_expression
5139 = cp_parser_id_expression (parser,
5140 /*template_keyword_p=*/false,
5141 /*check_dependency_p=*/true,
5142 &template_p,
5143 /*declarator_p=*/false,
5144 /*optional_p=*/false);
5145 if (id_expression == error_mark_node)
5146 return error_mark_node;
5147 id_expr_token = token;
5148 token = cp_lexer_peek_token (parser->lexer);
5149 done = (token->type != CPP_OPEN_SQUARE
5150 && token->type != CPP_OPEN_PAREN
5151 && token->type != CPP_DOT
5152 && token->type != CPP_DEREF
5153 && token->type != CPP_PLUS_PLUS
5154 && token->type != CPP_MINUS_MINUS);
5155 /* If we have a template-id, then no further lookup is
5156 required. If the template-id was for a template-class, we
5157 will sometimes have a TYPE_DECL at this point. */
5158 if (TREE_CODE (id_expression) == TEMPLATE_ID_EXPR
5159 || TREE_CODE (id_expression) == TYPE_DECL)
5160 decl = id_expression;
5161 /* Look up the name. */
5162 else
5164 tree ambiguous_decls;
5166 /* If we already know that this lookup is ambiguous, then
5167 we've already issued an error message; there's no reason
5168 to check again. */
5169 if (id_expr_token->type == CPP_NAME
5170 && id_expr_token->error_reported)
5172 cp_parser_simulate_error (parser);
5173 return error_mark_node;
5176 decl = cp_parser_lookup_name (parser, id_expression,
5177 none_type,
5178 template_p,
5179 /*is_namespace=*/false,
5180 /*check_dependency=*/true,
5181 &ambiguous_decls,
5182 id_expr_token->location);
5183 /* If the lookup was ambiguous, an error will already have
5184 been issued. */
5185 if (ambiguous_decls)
5186 return error_mark_node;
5188 /* In Objective-C++, we may have an Objective-C 2.0
5189 dot-syntax for classes here. */
5190 if (c_dialect_objc ()
5191 && cp_lexer_peek_token (parser->lexer)->type == CPP_DOT
5192 && TREE_CODE (decl) == TYPE_DECL
5193 && objc_is_class_name (decl))
5195 tree component;
5196 cp_lexer_consume_token (parser->lexer);
5197 component = cp_parser_identifier (parser);
5198 if (component == error_mark_node)
5199 return error_mark_node;
5201 tree result = objc_build_class_component_ref (id_expression,
5202 component);
5203 /* Build a location of the form:
5204 expr.component
5205 ~~~~~^~~~~~~~~
5206 with caret at the start of the component name (at
5207 input_location), ranging from the start of the id_expression
5208 to the end of the component name. */
5209 location_t combined_loc
5210 = make_location (input_location, id_expression.get_start (),
5211 get_finish (input_location));
5212 protected_set_expr_location (result, combined_loc);
5213 return result;
5216 /* In Objective-C++, an instance variable (ivar) may be preferred
5217 to whatever cp_parser_lookup_name() found.
5218 Call objc_lookup_ivar. To avoid exposing cp_expr to the
5219 rest of c-family, we have to do a little extra work to preserve
5220 any location information in cp_expr "decl". Given that
5221 objc_lookup_ivar is implemented in "c-family" and "objc", we
5222 have a trip through the pure "tree" type, rather than cp_expr.
5223 Naively copying it back to "decl" would implicitly give the
5224 new cp_expr value an UNKNOWN_LOCATION for nodes that don't
5225 store an EXPR_LOCATION. Hence we only update "decl" (and
5226 hence its location_t) if we get back a different tree node. */
5227 tree decl_tree = objc_lookup_ivar (decl.get_value (),
5228 id_expression);
5229 if (decl_tree != decl.get_value ())
5230 decl = cp_expr (decl_tree);
5232 /* If name lookup gives us a SCOPE_REF, then the
5233 qualifying scope was dependent. */
5234 if (TREE_CODE (decl) == SCOPE_REF)
5236 /* At this point, we do not know if DECL is a valid
5237 integral constant expression. We assume that it is
5238 in fact such an expression, so that code like:
5240 template <int N> struct A {
5241 int a[B<N>::i];
5244 is accepted. At template-instantiation time, we
5245 will check that B<N>::i is actually a constant. */
5246 return decl;
5248 /* Check to see if DECL is a local variable in a context
5249 where that is forbidden. */
5250 if (parser->local_variables_forbidden_p
5251 && local_variable_p (decl))
5253 /* It might be that we only found DECL because we are
5254 trying to be generous with pre-ISO scoping rules.
5255 For example, consider:
5257 int i;
5258 void g() {
5259 for (int i = 0; i < 10; ++i) {}
5260 extern void f(int j = i);
5263 Here, name look up will originally find the out
5264 of scope `i'. We need to issue a warning message,
5265 but then use the global `i'. */
5266 decl = check_for_out_of_scope_variable (decl);
5267 if (local_variable_p (decl))
5269 error_at (id_expr_token->location,
5270 "local variable %qD may not appear in this context",
5271 decl.get_value ());
5272 return error_mark_node;
5277 decl = (finish_id_expression
5278 (id_expression, decl, parser->scope,
5279 idk,
5280 parser->integral_constant_expression_p,
5281 parser->allow_non_integral_constant_expression_p,
5282 &parser->non_integral_constant_expression_p,
5283 template_p, done, address_p,
5284 template_arg_p,
5285 &error_msg,
5286 id_expr_token->location));
5287 if (error_msg)
5288 cp_parser_error (parser, error_msg);
5289 decl.set_location (id_expr_token->location);
5290 return decl;
5293 /* Anything else is an error. */
5294 default:
5295 cp_parser_error (parser, "expected primary-expression");
5296 return error_mark_node;
5300 static inline cp_expr
5301 cp_parser_primary_expression (cp_parser *parser,
5302 bool address_p,
5303 bool cast_p,
5304 bool template_arg_p,
5305 cp_id_kind *idk)
5307 return cp_parser_primary_expression (parser, address_p, cast_p, template_arg_p,
5308 /*decltype*/false, idk);
5311 /* Parse an id-expression.
5313 id-expression:
5314 unqualified-id
5315 qualified-id
5317 qualified-id:
5318 :: [opt] nested-name-specifier template [opt] unqualified-id
5319 :: identifier
5320 :: operator-function-id
5321 :: template-id
5323 Return a representation of the unqualified portion of the
5324 identifier. Sets PARSER->SCOPE to the qualifying scope if there is
5325 a `::' or nested-name-specifier.
5327 Often, if the id-expression was a qualified-id, the caller will
5328 want to make a SCOPE_REF to represent the qualified-id. This
5329 function does not do this in order to avoid wastefully creating
5330 SCOPE_REFs when they are not required.
5332 If TEMPLATE_KEYWORD_P is true, then we have just seen the
5333 `template' keyword.
5335 If CHECK_DEPENDENCY_P is false, then names are looked up inside
5336 uninstantiated templates.
5338 If *TEMPLATE_P is non-NULL, it is set to true iff the
5339 `template' keyword is used to explicitly indicate that the entity
5340 named is a template.
5342 If DECLARATOR_P is true, the id-expression is appearing as part of
5343 a declarator, rather than as part of an expression. */
5345 static cp_expr
5346 cp_parser_id_expression (cp_parser *parser,
5347 bool template_keyword_p,
5348 bool check_dependency_p,
5349 bool *template_p,
5350 bool declarator_p,
5351 bool optional_p)
5353 bool global_scope_p;
5354 bool nested_name_specifier_p;
5356 /* Assume the `template' keyword was not used. */
5357 if (template_p)
5358 *template_p = template_keyword_p;
5360 /* Look for the optional `::' operator. */
5361 global_scope_p
5362 = (cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/false)
5363 != NULL_TREE);
5364 /* Look for the optional nested-name-specifier. */
5365 nested_name_specifier_p
5366 = (cp_parser_nested_name_specifier_opt (parser,
5367 /*typename_keyword_p=*/false,
5368 check_dependency_p,
5369 /*type_p=*/false,
5370 declarator_p)
5371 != NULL_TREE);
5372 /* If there is a nested-name-specifier, then we are looking at
5373 the first qualified-id production. */
5374 if (nested_name_specifier_p)
5376 tree saved_scope;
5377 tree saved_object_scope;
5378 tree saved_qualifying_scope;
5379 tree unqualified_id;
5380 bool is_template;
5382 /* See if the next token is the `template' keyword. */
5383 if (!template_p)
5384 template_p = &is_template;
5385 *template_p = cp_parser_optional_template_keyword (parser);
5386 /* Name lookup we do during the processing of the
5387 unqualified-id might obliterate SCOPE. */
5388 saved_scope = parser->scope;
5389 saved_object_scope = parser->object_scope;
5390 saved_qualifying_scope = parser->qualifying_scope;
5391 /* Process the final unqualified-id. */
5392 unqualified_id = cp_parser_unqualified_id (parser, *template_p,
5393 check_dependency_p,
5394 declarator_p,
5395 /*optional_p=*/false);
5396 /* Restore the SAVED_SCOPE for our caller. */
5397 parser->scope = saved_scope;
5398 parser->object_scope = saved_object_scope;
5399 parser->qualifying_scope = saved_qualifying_scope;
5401 return unqualified_id;
5403 /* Otherwise, if we are in global scope, then we are looking at one
5404 of the other qualified-id productions. */
5405 else if (global_scope_p)
5407 cp_token *token;
5408 tree id;
5410 /* Peek at the next token. */
5411 token = cp_lexer_peek_token (parser->lexer);
5413 /* If it's an identifier, and the next token is not a "<", then
5414 we can avoid the template-id case. This is an optimization
5415 for this common case. */
5416 if (token->type == CPP_NAME
5417 && !cp_parser_nth_token_starts_template_argument_list_p
5418 (parser, 2))
5419 return cp_parser_identifier (parser);
5421 cp_parser_parse_tentatively (parser);
5422 /* Try a template-id. */
5423 id = cp_parser_template_id (parser,
5424 /*template_keyword_p=*/false,
5425 /*check_dependency_p=*/true,
5426 none_type,
5427 declarator_p);
5428 /* If that worked, we're done. */
5429 if (cp_parser_parse_definitely (parser))
5430 return id;
5432 /* Peek at the next token. (Changes in the token buffer may
5433 have invalidated the pointer obtained above.) */
5434 token = cp_lexer_peek_token (parser->lexer);
5436 switch (token->type)
5438 case CPP_NAME:
5439 return cp_parser_identifier (parser);
5441 case CPP_KEYWORD:
5442 if (token->keyword == RID_OPERATOR)
5443 return cp_parser_operator_function_id (parser);
5444 /* Fall through. */
5446 default:
5447 cp_parser_error (parser, "expected id-expression");
5448 return error_mark_node;
5451 else
5452 return cp_parser_unqualified_id (parser, template_keyword_p,
5453 /*check_dependency_p=*/true,
5454 declarator_p,
5455 optional_p);
5458 /* Parse an unqualified-id.
5460 unqualified-id:
5461 identifier
5462 operator-function-id
5463 conversion-function-id
5464 ~ class-name
5465 template-id
5467 If TEMPLATE_KEYWORD_P is TRUE, we have just seen the `template'
5468 keyword, in a construct like `A::template ...'.
5470 Returns a representation of unqualified-id. For the `identifier'
5471 production, an IDENTIFIER_NODE is returned. For the `~ class-name'
5472 production a BIT_NOT_EXPR is returned; the operand of the
5473 BIT_NOT_EXPR is an IDENTIFIER_NODE for the class-name. For the
5474 other productions, see the documentation accompanying the
5475 corresponding parsing functions. If CHECK_DEPENDENCY_P is false,
5476 names are looked up in uninstantiated templates. If DECLARATOR_P
5477 is true, the unqualified-id is appearing as part of a declarator,
5478 rather than as part of an expression. */
5480 static cp_expr
5481 cp_parser_unqualified_id (cp_parser* parser,
5482 bool template_keyword_p,
5483 bool check_dependency_p,
5484 bool declarator_p,
5485 bool optional_p)
5487 cp_token *token;
5489 /* Peek at the next token. */
5490 token = cp_lexer_peek_token (parser->lexer);
5492 switch ((int) token->type)
5494 case CPP_NAME:
5496 tree id;
5498 /* We don't know yet whether or not this will be a
5499 template-id. */
5500 cp_parser_parse_tentatively (parser);
5501 /* Try a template-id. */
5502 id = cp_parser_template_id (parser, template_keyword_p,
5503 check_dependency_p,
5504 none_type,
5505 declarator_p);
5506 /* If it worked, we're done. */
5507 if (cp_parser_parse_definitely (parser))
5508 return id;
5509 /* Otherwise, it's an ordinary identifier. */
5510 return cp_parser_identifier (parser);
5513 case CPP_TEMPLATE_ID:
5514 return cp_parser_template_id (parser, template_keyword_p,
5515 check_dependency_p,
5516 none_type,
5517 declarator_p);
5519 case CPP_COMPL:
5521 tree type_decl;
5522 tree qualifying_scope;
5523 tree object_scope;
5524 tree scope;
5525 bool done;
5527 /* Consume the `~' token. */
5528 cp_lexer_consume_token (parser->lexer);
5529 /* Parse the class-name. The standard, as written, seems to
5530 say that:
5532 template <typename T> struct S { ~S (); };
5533 template <typename T> S<T>::~S() {}
5535 is invalid, since `~' must be followed by a class-name, but
5536 `S<T>' is dependent, and so not known to be a class.
5537 That's not right; we need to look in uninstantiated
5538 templates. A further complication arises from:
5540 template <typename T> void f(T t) {
5541 t.T::~T();
5544 Here, it is not possible to look up `T' in the scope of `T'
5545 itself. We must look in both the current scope, and the
5546 scope of the containing complete expression.
5548 Yet another issue is:
5550 struct S {
5551 int S;
5552 ~S();
5555 S::~S() {}
5557 The standard does not seem to say that the `S' in `~S'
5558 should refer to the type `S' and not the data member
5559 `S::S'. */
5561 /* DR 244 says that we look up the name after the "~" in the
5562 same scope as we looked up the qualifying name. That idea
5563 isn't fully worked out; it's more complicated than that. */
5564 scope = parser->scope;
5565 object_scope = parser->object_scope;
5566 qualifying_scope = parser->qualifying_scope;
5568 /* Check for invalid scopes. */
5569 if (scope == error_mark_node)
5571 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
5572 cp_lexer_consume_token (parser->lexer);
5573 return error_mark_node;
5575 if (scope && TREE_CODE (scope) == NAMESPACE_DECL)
5577 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
5578 error_at (token->location,
5579 "scope %qT before %<~%> is not a class-name",
5580 scope);
5581 cp_parser_simulate_error (parser);
5582 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
5583 cp_lexer_consume_token (parser->lexer);
5584 return error_mark_node;
5586 gcc_assert (!scope || TYPE_P (scope));
5588 /* If the name is of the form "X::~X" it's OK even if X is a
5589 typedef. */
5590 token = cp_lexer_peek_token (parser->lexer);
5591 if (scope
5592 && token->type == CPP_NAME
5593 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
5594 != CPP_LESS)
5595 && (token->u.value == TYPE_IDENTIFIER (scope)
5596 || (CLASS_TYPE_P (scope)
5597 && constructor_name_p (token->u.value, scope))))
5599 cp_lexer_consume_token (parser->lexer);
5600 return build_nt (BIT_NOT_EXPR, scope);
5603 /* ~auto means the destructor of whatever the object is. */
5604 if (cp_parser_is_keyword (token, RID_AUTO))
5606 if (cxx_dialect < cxx14)
5607 pedwarn (input_location, 0,
5608 "%<~auto%> only available with "
5609 "-std=c++14 or -std=gnu++14");
5610 cp_lexer_consume_token (parser->lexer);
5611 return build_nt (BIT_NOT_EXPR, make_auto ());
5614 /* If there was an explicit qualification (S::~T), first look
5615 in the scope given by the qualification (i.e., S).
5617 Note: in the calls to cp_parser_class_name below we pass
5618 typename_type so that lookup finds the injected-class-name
5619 rather than the constructor. */
5620 done = false;
5621 type_decl = NULL_TREE;
5622 if (scope)
5624 cp_parser_parse_tentatively (parser);
5625 type_decl = cp_parser_class_name (parser,
5626 /*typename_keyword_p=*/false,
5627 /*template_keyword_p=*/false,
5628 typename_type,
5629 /*check_dependency=*/false,
5630 /*class_head_p=*/false,
5631 declarator_p);
5632 if (cp_parser_parse_definitely (parser))
5633 done = true;
5635 /* In "N::S::~S", look in "N" as well. */
5636 if (!done && scope && qualifying_scope)
5638 cp_parser_parse_tentatively (parser);
5639 parser->scope = qualifying_scope;
5640 parser->object_scope = NULL_TREE;
5641 parser->qualifying_scope = NULL_TREE;
5642 type_decl
5643 = cp_parser_class_name (parser,
5644 /*typename_keyword_p=*/false,
5645 /*template_keyword_p=*/false,
5646 typename_type,
5647 /*check_dependency=*/false,
5648 /*class_head_p=*/false,
5649 declarator_p);
5650 if (cp_parser_parse_definitely (parser))
5651 done = true;
5653 /* In "p->S::~T", look in the scope given by "*p" as well. */
5654 else if (!done && object_scope)
5656 cp_parser_parse_tentatively (parser);
5657 parser->scope = object_scope;
5658 parser->object_scope = NULL_TREE;
5659 parser->qualifying_scope = NULL_TREE;
5660 type_decl
5661 = cp_parser_class_name (parser,
5662 /*typename_keyword_p=*/false,
5663 /*template_keyword_p=*/false,
5664 typename_type,
5665 /*check_dependency=*/false,
5666 /*class_head_p=*/false,
5667 declarator_p);
5668 if (cp_parser_parse_definitely (parser))
5669 done = true;
5671 /* Look in the surrounding context. */
5672 if (!done)
5674 parser->scope = NULL_TREE;
5675 parser->object_scope = NULL_TREE;
5676 parser->qualifying_scope = NULL_TREE;
5677 if (processing_template_decl)
5678 cp_parser_parse_tentatively (parser);
5679 type_decl
5680 = cp_parser_class_name (parser,
5681 /*typename_keyword_p=*/false,
5682 /*template_keyword_p=*/false,
5683 typename_type,
5684 /*check_dependency=*/false,
5685 /*class_head_p=*/false,
5686 declarator_p);
5687 if (processing_template_decl
5688 && ! cp_parser_parse_definitely (parser))
5690 /* We couldn't find a type with this name. If we're parsing
5691 tentatively, fail and try something else. */
5692 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
5694 cp_parser_simulate_error (parser);
5695 return error_mark_node;
5697 /* Otherwise, accept it and check for a match at instantiation
5698 time. */
5699 type_decl = cp_parser_identifier (parser);
5700 if (type_decl != error_mark_node)
5701 type_decl = build_nt (BIT_NOT_EXPR, type_decl);
5702 return type_decl;
5705 /* If an error occurred, assume that the name of the
5706 destructor is the same as the name of the qualifying
5707 class. That allows us to keep parsing after running
5708 into ill-formed destructor names. */
5709 if (type_decl == error_mark_node && scope)
5710 return build_nt (BIT_NOT_EXPR, scope);
5711 else if (type_decl == error_mark_node)
5712 return error_mark_node;
5714 /* Check that destructor name and scope match. */
5715 if (declarator_p && scope && !check_dtor_name (scope, type_decl))
5717 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
5718 error_at (token->location,
5719 "declaration of %<~%T%> as member of %qT",
5720 type_decl, scope);
5721 cp_parser_simulate_error (parser);
5722 return error_mark_node;
5725 /* [class.dtor]
5727 A typedef-name that names a class shall not be used as the
5728 identifier in the declarator for a destructor declaration. */
5729 if (declarator_p
5730 && !DECL_IMPLICIT_TYPEDEF_P (type_decl)
5731 && !DECL_SELF_REFERENCE_P (type_decl)
5732 && !cp_parser_uncommitted_to_tentative_parse_p (parser))
5733 error_at (token->location,
5734 "typedef-name %qD used as destructor declarator",
5735 type_decl);
5737 return build_nt (BIT_NOT_EXPR, TREE_TYPE (type_decl));
5740 case CPP_KEYWORD:
5741 if (token->keyword == RID_OPERATOR)
5743 cp_expr id;
5745 /* This could be a template-id, so we try that first. */
5746 cp_parser_parse_tentatively (parser);
5747 /* Try a template-id. */
5748 id = cp_parser_template_id (parser, template_keyword_p,
5749 /*check_dependency_p=*/true,
5750 none_type,
5751 declarator_p);
5752 /* If that worked, we're done. */
5753 if (cp_parser_parse_definitely (parser))
5754 return id;
5755 /* We still don't know whether we're looking at an
5756 operator-function-id or a conversion-function-id. */
5757 cp_parser_parse_tentatively (parser);
5758 /* Try an operator-function-id. */
5759 id = cp_parser_operator_function_id (parser);
5760 /* If that didn't work, try a conversion-function-id. */
5761 if (!cp_parser_parse_definitely (parser))
5762 id = cp_parser_conversion_function_id (parser);
5763 else if (UDLIT_OPER_P (id))
5765 /* 17.6.3.3.5 */
5766 const char *name = UDLIT_OP_SUFFIX (id);
5767 if (name[0] != '_' && !in_system_header_at (input_location)
5768 && declarator_p)
5769 warning (0, "literal operator suffixes not preceded by %<_%>"
5770 " are reserved for future standardization");
5773 return id;
5775 /* Fall through. */
5777 default:
5778 if (optional_p)
5779 return NULL_TREE;
5780 cp_parser_error (parser, "expected unqualified-id");
5781 return error_mark_node;
5785 /* Parse an (optional) nested-name-specifier.
5787 nested-name-specifier: [C++98]
5788 class-or-namespace-name :: nested-name-specifier [opt]
5789 class-or-namespace-name :: template nested-name-specifier [opt]
5791 nested-name-specifier: [C++0x]
5792 type-name ::
5793 namespace-name ::
5794 nested-name-specifier identifier ::
5795 nested-name-specifier template [opt] simple-template-id ::
5797 PARSER->SCOPE should be set appropriately before this function is
5798 called. TYPENAME_KEYWORD_P is TRUE if the `typename' keyword is in
5799 effect. TYPE_P is TRUE if we non-type bindings should be ignored
5800 in name lookups.
5802 Sets PARSER->SCOPE to the class (TYPE) or namespace
5803 (NAMESPACE_DECL) specified by the nested-name-specifier, or leaves
5804 it unchanged if there is no nested-name-specifier. Returns the new
5805 scope iff there is a nested-name-specifier, or NULL_TREE otherwise.
5807 If IS_DECLARATION is TRUE, the nested-name-specifier is known to be
5808 part of a declaration and/or decl-specifier. */
5810 static tree
5811 cp_parser_nested_name_specifier_opt (cp_parser *parser,
5812 bool typename_keyword_p,
5813 bool check_dependency_p,
5814 bool type_p,
5815 bool is_declaration)
5817 bool success = false;
5818 cp_token_position start = 0;
5819 cp_token *token;
5821 /* Remember where the nested-name-specifier starts. */
5822 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
5824 start = cp_lexer_token_position (parser->lexer, false);
5825 push_deferring_access_checks (dk_deferred);
5828 while (true)
5830 tree new_scope;
5831 tree old_scope;
5832 tree saved_qualifying_scope;
5833 bool template_keyword_p;
5835 /* Spot cases that cannot be the beginning of a
5836 nested-name-specifier. */
5837 token = cp_lexer_peek_token (parser->lexer);
5839 /* If the next token is CPP_NESTED_NAME_SPECIFIER, just process
5840 the already parsed nested-name-specifier. */
5841 if (token->type == CPP_NESTED_NAME_SPECIFIER)
5843 /* Grab the nested-name-specifier and continue the loop. */
5844 cp_parser_pre_parsed_nested_name_specifier (parser);
5845 /* If we originally encountered this nested-name-specifier
5846 with IS_DECLARATION set to false, we will not have
5847 resolved TYPENAME_TYPEs, so we must do so here. */
5848 if (is_declaration
5849 && TREE_CODE (parser->scope) == TYPENAME_TYPE)
5851 new_scope = resolve_typename_type (parser->scope,
5852 /*only_current_p=*/false);
5853 if (TREE_CODE (new_scope) != TYPENAME_TYPE)
5854 parser->scope = new_scope;
5856 success = true;
5857 continue;
5860 /* Spot cases that cannot be the beginning of a
5861 nested-name-specifier. On the second and subsequent times
5862 through the loop, we look for the `template' keyword. */
5863 if (success && token->keyword == RID_TEMPLATE)
5865 /* A template-id can start a nested-name-specifier. */
5866 else if (token->type == CPP_TEMPLATE_ID)
5868 /* DR 743: decltype can be used in a nested-name-specifier. */
5869 else if (token_is_decltype (token))
5871 else
5873 /* If the next token is not an identifier, then it is
5874 definitely not a type-name or namespace-name. */
5875 if (token->type != CPP_NAME)
5876 break;
5877 /* If the following token is neither a `<' (to begin a
5878 template-id), nor a `::', then we are not looking at a
5879 nested-name-specifier. */
5880 token = cp_lexer_peek_nth_token (parser->lexer, 2);
5882 if (token->type == CPP_COLON
5883 && parser->colon_corrects_to_scope_p
5884 && cp_lexer_peek_nth_token (parser->lexer, 3)->type == CPP_NAME)
5886 error_at (token->location,
5887 "found %<:%> in nested-name-specifier, expected %<::%>");
5888 token->type = CPP_SCOPE;
5891 if (token->type != CPP_SCOPE
5892 && !cp_parser_nth_token_starts_template_argument_list_p
5893 (parser, 2))
5894 break;
5897 /* The nested-name-specifier is optional, so we parse
5898 tentatively. */
5899 cp_parser_parse_tentatively (parser);
5901 /* Look for the optional `template' keyword, if this isn't the
5902 first time through the loop. */
5903 if (success)
5904 template_keyword_p = cp_parser_optional_template_keyword (parser);
5905 else
5906 template_keyword_p = false;
5908 /* Save the old scope since the name lookup we are about to do
5909 might destroy it. */
5910 old_scope = parser->scope;
5911 saved_qualifying_scope = parser->qualifying_scope;
5912 /* In a declarator-id like "X<T>::I::Y<T>" we must be able to
5913 look up names in "X<T>::I" in order to determine that "Y" is
5914 a template. So, if we have a typename at this point, we make
5915 an effort to look through it. */
5916 if (is_declaration
5917 && !typename_keyword_p
5918 && parser->scope
5919 && TREE_CODE (parser->scope) == TYPENAME_TYPE)
5920 parser->scope = resolve_typename_type (parser->scope,
5921 /*only_current_p=*/false);
5922 /* Parse the qualifying entity. */
5923 new_scope
5924 = cp_parser_qualifying_entity (parser,
5925 typename_keyword_p,
5926 template_keyword_p,
5927 check_dependency_p,
5928 type_p,
5929 is_declaration);
5930 /* Look for the `::' token. */
5931 cp_parser_require (parser, CPP_SCOPE, RT_SCOPE);
5933 /* If we found what we wanted, we keep going; otherwise, we're
5934 done. */
5935 if (!cp_parser_parse_definitely (parser))
5937 bool error_p = false;
5939 /* Restore the OLD_SCOPE since it was valid before the
5940 failed attempt at finding the last
5941 class-or-namespace-name. */
5942 parser->scope = old_scope;
5943 parser->qualifying_scope = saved_qualifying_scope;
5945 /* If the next token is a decltype, and the one after that is a
5946 `::', then the decltype has failed to resolve to a class or
5947 enumeration type. Give this error even when parsing
5948 tentatively since it can't possibly be valid--and we're going
5949 to replace it with a CPP_NESTED_NAME_SPECIFIER below, so we
5950 won't get another chance.*/
5951 if (cp_lexer_next_token_is (parser->lexer, CPP_DECLTYPE)
5952 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
5953 == CPP_SCOPE))
5955 token = cp_lexer_consume_token (parser->lexer);
5956 error_at (token->location, "decltype evaluates to %qT, "
5957 "which is not a class or enumeration type",
5958 token->u.tree_check_value->value);
5959 parser->scope = error_mark_node;
5960 error_p = true;
5961 /* As below. */
5962 success = true;
5963 cp_lexer_consume_token (parser->lexer);
5966 if (cp_lexer_next_token_is (parser->lexer, CPP_TEMPLATE_ID)
5967 && cp_lexer_nth_token_is (parser->lexer, 2, CPP_SCOPE))
5969 /* If we have a non-type template-id followed by ::, it can't
5970 possibly be valid. */
5971 token = cp_lexer_peek_token (parser->lexer);
5972 tree tid = token->u.tree_check_value->value;
5973 if (TREE_CODE (tid) == TEMPLATE_ID_EXPR
5974 && TREE_CODE (TREE_OPERAND (tid, 0)) != IDENTIFIER_NODE)
5976 tree tmpl = NULL_TREE;
5977 if (is_overloaded_fn (tid))
5979 tree fns = get_fns (tid);
5980 if (!OVL_CHAIN (fns))
5981 tmpl = OVL_CURRENT (fns);
5982 error_at (token->location, "function template-id %qD "
5983 "in nested-name-specifier", tid);
5985 else
5987 /* Variable template. */
5988 tmpl = TREE_OPERAND (tid, 0);
5989 gcc_assert (variable_template_p (tmpl));
5990 error_at (token->location, "variable template-id %qD "
5991 "in nested-name-specifier", tid);
5993 if (tmpl)
5994 inform (DECL_SOURCE_LOCATION (tmpl),
5995 "%qD declared here", tmpl);
5997 parser->scope = error_mark_node;
5998 error_p = true;
5999 /* As below. */
6000 success = true;
6001 cp_lexer_consume_token (parser->lexer);
6002 cp_lexer_consume_token (parser->lexer);
6006 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
6007 break;
6008 /* If the next token is an identifier, and the one after
6009 that is a `::', then any valid interpretation would have
6010 found a class-or-namespace-name. */
6011 while (cp_lexer_next_token_is (parser->lexer, CPP_NAME)
6012 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
6013 == CPP_SCOPE)
6014 && (cp_lexer_peek_nth_token (parser->lexer, 3)->type
6015 != CPP_COMPL))
6017 token = cp_lexer_consume_token (parser->lexer);
6018 if (!error_p)
6020 if (!token->error_reported)
6022 tree decl;
6023 tree ambiguous_decls;
6025 decl = cp_parser_lookup_name (parser, token->u.value,
6026 none_type,
6027 /*is_template=*/false,
6028 /*is_namespace=*/false,
6029 /*check_dependency=*/true,
6030 &ambiguous_decls,
6031 token->location);
6032 if (TREE_CODE (decl) == TEMPLATE_DECL)
6033 error_at (token->location,
6034 "%qD used without template parameters",
6035 decl);
6036 else if (ambiguous_decls)
6038 // cp_parser_lookup_name has the same diagnostic,
6039 // thus make sure to emit it at most once.
6040 if (cp_parser_uncommitted_to_tentative_parse_p
6041 (parser))
6043 error_at (token->location,
6044 "reference to %qD is ambiguous",
6045 token->u.value);
6046 print_candidates (ambiguous_decls);
6048 decl = error_mark_node;
6050 else
6052 if (cxx_dialect != cxx98)
6053 cp_parser_name_lookup_error
6054 (parser, token->u.value, decl, NLE_NOT_CXX98,
6055 token->location);
6056 else
6057 cp_parser_name_lookup_error
6058 (parser, token->u.value, decl, NLE_CXX98,
6059 token->location);
6062 parser->scope = error_mark_node;
6063 error_p = true;
6064 /* Treat this as a successful nested-name-specifier
6065 due to:
6067 [basic.lookup.qual]
6069 If the name found is not a class-name (clause
6070 _class_) or namespace-name (_namespace.def_), the
6071 program is ill-formed. */
6072 success = true;
6074 cp_lexer_consume_token (parser->lexer);
6076 break;
6078 /* We've found one valid nested-name-specifier. */
6079 success = true;
6080 /* Name lookup always gives us a DECL. */
6081 if (TREE_CODE (new_scope) == TYPE_DECL)
6082 new_scope = TREE_TYPE (new_scope);
6083 /* Uses of "template" must be followed by actual templates. */
6084 if (template_keyword_p
6085 && !(CLASS_TYPE_P (new_scope)
6086 && ((CLASSTYPE_USE_TEMPLATE (new_scope)
6087 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (new_scope)))
6088 || CLASSTYPE_IS_TEMPLATE (new_scope)))
6089 && !(TREE_CODE (new_scope) == TYPENAME_TYPE
6090 && (TREE_CODE (TYPENAME_TYPE_FULLNAME (new_scope))
6091 == TEMPLATE_ID_EXPR)))
6092 permerror (input_location, TYPE_P (new_scope)
6093 ? G_("%qT is not a template")
6094 : G_("%qD is not a template"),
6095 new_scope);
6096 /* If it is a class scope, try to complete it; we are about to
6097 be looking up names inside the class. */
6098 if (TYPE_P (new_scope)
6099 /* Since checking types for dependency can be expensive,
6100 avoid doing it if the type is already complete. */
6101 && !COMPLETE_TYPE_P (new_scope)
6102 /* Do not try to complete dependent types. */
6103 && !dependent_type_p (new_scope))
6105 new_scope = complete_type (new_scope);
6106 /* If it is a typedef to current class, use the current
6107 class instead, as the typedef won't have any names inside
6108 it yet. */
6109 if (!COMPLETE_TYPE_P (new_scope)
6110 && currently_open_class (new_scope))
6111 new_scope = TYPE_MAIN_VARIANT (new_scope);
6113 /* Make sure we look in the right scope the next time through
6114 the loop. */
6115 parser->scope = new_scope;
6118 /* If parsing tentatively, replace the sequence of tokens that makes
6119 up the nested-name-specifier with a CPP_NESTED_NAME_SPECIFIER
6120 token. That way, should we re-parse the token stream, we will
6121 not have to repeat the effort required to do the parse, nor will
6122 we issue duplicate error messages. */
6123 if (success && start)
6125 cp_token *token;
6127 token = cp_lexer_token_at (parser->lexer, start);
6128 /* Reset the contents of the START token. */
6129 token->type = CPP_NESTED_NAME_SPECIFIER;
6130 /* Retrieve any deferred checks. Do not pop this access checks yet
6131 so the memory will not be reclaimed during token replacing below. */
6132 token->u.tree_check_value = ggc_cleared_alloc<struct tree_check> ();
6133 token->u.tree_check_value->value = parser->scope;
6134 token->u.tree_check_value->checks = get_deferred_access_checks ();
6135 token->u.tree_check_value->qualifying_scope =
6136 parser->qualifying_scope;
6137 token->keyword = RID_MAX;
6139 /* Purge all subsequent tokens. */
6140 cp_lexer_purge_tokens_after (parser->lexer, start);
6143 if (start)
6144 pop_to_parent_deferring_access_checks ();
6146 return success ? parser->scope : NULL_TREE;
6149 /* Parse a nested-name-specifier. See
6150 cp_parser_nested_name_specifier_opt for details. This function
6151 behaves identically, except that it will an issue an error if no
6152 nested-name-specifier is present. */
6154 static tree
6155 cp_parser_nested_name_specifier (cp_parser *parser,
6156 bool typename_keyword_p,
6157 bool check_dependency_p,
6158 bool type_p,
6159 bool is_declaration)
6161 tree scope;
6163 /* Look for the nested-name-specifier. */
6164 scope = cp_parser_nested_name_specifier_opt (parser,
6165 typename_keyword_p,
6166 check_dependency_p,
6167 type_p,
6168 is_declaration);
6169 /* If it was not present, issue an error message. */
6170 if (!scope)
6172 cp_parser_error (parser, "expected nested-name-specifier");
6173 parser->scope = NULL_TREE;
6176 return scope;
6179 /* Parse the qualifying entity in a nested-name-specifier. For C++98,
6180 this is either a class-name or a namespace-name (which corresponds
6181 to the class-or-namespace-name production in the grammar). For
6182 C++0x, it can also be a type-name that refers to an enumeration
6183 type or a simple-template-id.
6185 TYPENAME_KEYWORD_P is TRUE iff the `typename' keyword is in effect.
6186 TEMPLATE_KEYWORD_P is TRUE iff the `template' keyword is in effect.
6187 CHECK_DEPENDENCY_P is FALSE iff dependent names should be looked up.
6188 TYPE_P is TRUE iff the next name should be taken as a class-name,
6189 even the same name is declared to be another entity in the same
6190 scope.
6192 Returns the class (TYPE_DECL) or namespace (NAMESPACE_DECL)
6193 specified by the class-or-namespace-name. If neither is found the
6194 ERROR_MARK_NODE is returned. */
6196 static tree
6197 cp_parser_qualifying_entity (cp_parser *parser,
6198 bool typename_keyword_p,
6199 bool template_keyword_p,
6200 bool check_dependency_p,
6201 bool type_p,
6202 bool is_declaration)
6204 tree saved_scope;
6205 tree saved_qualifying_scope;
6206 tree saved_object_scope;
6207 tree scope;
6208 bool only_class_p;
6209 bool successful_parse_p;
6211 /* DR 743: decltype can appear in a nested-name-specifier. */
6212 if (cp_lexer_next_token_is_decltype (parser->lexer))
6214 scope = cp_parser_decltype (parser);
6215 if (TREE_CODE (scope) != ENUMERAL_TYPE
6216 && !MAYBE_CLASS_TYPE_P (scope))
6218 cp_parser_simulate_error (parser);
6219 return error_mark_node;
6221 if (TYPE_NAME (scope))
6222 scope = TYPE_NAME (scope);
6223 return scope;
6226 /* Before we try to parse the class-name, we must save away the
6227 current PARSER->SCOPE since cp_parser_class_name will destroy
6228 it. */
6229 saved_scope = parser->scope;
6230 saved_qualifying_scope = parser->qualifying_scope;
6231 saved_object_scope = parser->object_scope;
6232 /* Try for a class-name first. If the SAVED_SCOPE is a type, then
6233 there is no need to look for a namespace-name. */
6234 only_class_p = template_keyword_p
6235 || (saved_scope && TYPE_P (saved_scope) && cxx_dialect == cxx98);
6236 if (!only_class_p)
6237 cp_parser_parse_tentatively (parser);
6238 scope = cp_parser_class_name (parser,
6239 typename_keyword_p,
6240 template_keyword_p,
6241 type_p ? class_type : none_type,
6242 check_dependency_p,
6243 /*class_head_p=*/false,
6244 is_declaration,
6245 /*enum_ok=*/cxx_dialect > cxx98);
6246 successful_parse_p = only_class_p || cp_parser_parse_definitely (parser);
6247 /* If that didn't work, try for a namespace-name. */
6248 if (!only_class_p && !successful_parse_p)
6250 /* Restore the saved scope. */
6251 parser->scope = saved_scope;
6252 parser->qualifying_scope = saved_qualifying_scope;
6253 parser->object_scope = saved_object_scope;
6254 /* If we are not looking at an identifier followed by the scope
6255 resolution operator, then this is not part of a
6256 nested-name-specifier. (Note that this function is only used
6257 to parse the components of a nested-name-specifier.) */
6258 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NAME)
6259 || cp_lexer_peek_nth_token (parser->lexer, 2)->type != CPP_SCOPE)
6260 return error_mark_node;
6261 scope = cp_parser_namespace_name (parser);
6264 return scope;
6267 /* Return true if we are looking at a compound-literal, false otherwise. */
6269 static bool
6270 cp_parser_compound_literal_p (cp_parser *parser)
6272 /* Consume the `('. */
6273 cp_lexer_consume_token (parser->lexer);
6275 cp_lexer_save_tokens (parser->lexer);
6277 /* Skip tokens until the next token is a closing parenthesis.
6278 If we find the closing `)', and the next token is a `{', then
6279 we are looking at a compound-literal. */
6280 bool compound_literal_p
6281 = (cp_parser_skip_to_closing_parenthesis (parser, false, false,
6282 /*consume_paren=*/true)
6283 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE));
6285 /* Roll back the tokens we skipped. */
6286 cp_lexer_rollback_tokens (parser->lexer);
6288 return compound_literal_p;
6291 /* Parse a postfix-expression.
6293 postfix-expression:
6294 primary-expression
6295 postfix-expression [ expression ]
6296 postfix-expression ( expression-list [opt] )
6297 simple-type-specifier ( expression-list [opt] )
6298 typename :: [opt] nested-name-specifier identifier
6299 ( expression-list [opt] )
6300 typename :: [opt] nested-name-specifier template [opt] template-id
6301 ( expression-list [opt] )
6302 postfix-expression . template [opt] id-expression
6303 postfix-expression -> template [opt] id-expression
6304 postfix-expression . pseudo-destructor-name
6305 postfix-expression -> pseudo-destructor-name
6306 postfix-expression ++
6307 postfix-expression --
6308 dynamic_cast < type-id > ( expression )
6309 static_cast < type-id > ( expression )
6310 reinterpret_cast < type-id > ( expression )
6311 const_cast < type-id > ( expression )
6312 typeid ( expression )
6313 typeid ( type-id )
6315 GNU Extension:
6317 postfix-expression:
6318 ( type-id ) { initializer-list , [opt] }
6320 This extension is a GNU version of the C99 compound-literal
6321 construct. (The C99 grammar uses `type-name' instead of `type-id',
6322 but they are essentially the same concept.)
6324 If ADDRESS_P is true, the postfix expression is the operand of the
6325 `&' operator. CAST_P is true if this expression is the target of a
6326 cast.
6328 If MEMBER_ACCESS_ONLY_P, we only allow postfix expressions that are
6329 class member access expressions [expr.ref].
6331 Returns a representation of the expression. */
6333 static cp_expr
6334 cp_parser_postfix_expression (cp_parser *parser, bool address_p, bool cast_p,
6335 bool member_access_only_p, bool decltype_p,
6336 cp_id_kind * pidk_return)
6338 cp_token *token;
6339 location_t loc;
6340 enum rid keyword;
6341 cp_id_kind idk = CP_ID_KIND_NONE;
6342 cp_expr postfix_expression = NULL_TREE;
6343 bool is_member_access = false;
6344 int saved_in_statement = -1;
6346 /* Peek at the next token. */
6347 token = cp_lexer_peek_token (parser->lexer);
6348 loc = token->location;
6349 location_t start_loc = get_range_from_loc (line_table, loc).m_start;
6351 /* Some of the productions are determined by keywords. */
6352 keyword = token->keyword;
6353 switch (keyword)
6355 case RID_DYNCAST:
6356 case RID_STATCAST:
6357 case RID_REINTCAST:
6358 case RID_CONSTCAST:
6360 tree type;
6361 cp_expr expression;
6362 const char *saved_message;
6363 bool saved_in_type_id_in_expr_p;
6365 /* All of these can be handled in the same way from the point
6366 of view of parsing. Begin by consuming the token
6367 identifying the cast. */
6368 cp_lexer_consume_token (parser->lexer);
6370 /* New types cannot be defined in the cast. */
6371 saved_message = parser->type_definition_forbidden_message;
6372 parser->type_definition_forbidden_message
6373 = G_("types may not be defined in casts");
6375 /* Look for the opening `<'. */
6376 cp_parser_require (parser, CPP_LESS, RT_LESS);
6377 /* Parse the type to which we are casting. */
6378 saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
6379 parser->in_type_id_in_expr_p = true;
6380 type = cp_parser_type_id (parser);
6381 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
6382 /* Look for the closing `>'. */
6383 cp_parser_require (parser, CPP_GREATER, RT_GREATER);
6384 /* Restore the old message. */
6385 parser->type_definition_forbidden_message = saved_message;
6387 bool saved_greater_than_is_operator_p
6388 = parser->greater_than_is_operator_p;
6389 parser->greater_than_is_operator_p = true;
6391 /* And the expression which is being cast. */
6392 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
6393 expression = cp_parser_expression (parser, & idk, /*cast_p=*/true);
6394 cp_token *close_paren = cp_parser_require (parser, CPP_CLOSE_PAREN,
6395 RT_CLOSE_PAREN);
6396 location_t end_loc = close_paren ?
6397 close_paren->location : UNKNOWN_LOCATION;
6399 parser->greater_than_is_operator_p
6400 = saved_greater_than_is_operator_p;
6402 /* Only type conversions to integral or enumeration types
6403 can be used in constant-expressions. */
6404 if (!cast_valid_in_integral_constant_expression_p (type)
6405 && cp_parser_non_integral_constant_expression (parser, NIC_CAST))
6406 return error_mark_node;
6408 switch (keyword)
6410 case RID_DYNCAST:
6411 postfix_expression
6412 = build_dynamic_cast (type, expression, tf_warning_or_error);
6413 break;
6414 case RID_STATCAST:
6415 postfix_expression
6416 = build_static_cast (type, expression, tf_warning_or_error);
6417 break;
6418 case RID_REINTCAST:
6419 postfix_expression
6420 = build_reinterpret_cast (type, expression,
6421 tf_warning_or_error);
6422 break;
6423 case RID_CONSTCAST:
6424 postfix_expression
6425 = build_const_cast (type, expression, tf_warning_or_error);
6426 break;
6427 default:
6428 gcc_unreachable ();
6431 /* Construct a location e.g. :
6432 reinterpret_cast <int *> (expr)
6433 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6434 ranging from the start of the "*_cast" token to the final closing
6435 paren, with the caret at the start. */
6436 location_t cp_cast_loc = make_location (start_loc, start_loc, end_loc);
6437 postfix_expression.set_location (cp_cast_loc);
6439 break;
6441 case RID_TYPEID:
6443 tree type;
6444 const char *saved_message;
6445 bool saved_in_type_id_in_expr_p;
6447 /* Consume the `typeid' token. */
6448 cp_lexer_consume_token (parser->lexer);
6449 /* Look for the `(' token. */
6450 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
6451 /* Types cannot be defined in a `typeid' expression. */
6452 saved_message = parser->type_definition_forbidden_message;
6453 parser->type_definition_forbidden_message
6454 = G_("types may not be defined in a %<typeid%> expression");
6455 /* We can't be sure yet whether we're looking at a type-id or an
6456 expression. */
6457 cp_parser_parse_tentatively (parser);
6458 /* Try a type-id first. */
6459 saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
6460 parser->in_type_id_in_expr_p = true;
6461 type = cp_parser_type_id (parser);
6462 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
6463 /* Look for the `)' token. Otherwise, we can't be sure that
6464 we're not looking at an expression: consider `typeid (int
6465 (3))', for example. */
6466 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
6467 /* If all went well, simply lookup the type-id. */
6468 if (cp_parser_parse_definitely (parser))
6469 postfix_expression = get_typeid (type, tf_warning_or_error);
6470 /* Otherwise, fall back to the expression variant. */
6471 else
6473 tree expression;
6475 /* Look for an expression. */
6476 expression = cp_parser_expression (parser, & idk);
6477 /* Compute its typeid. */
6478 postfix_expression = build_typeid (expression, tf_warning_or_error);
6479 /* Look for the `)' token. */
6480 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
6482 /* Restore the saved message. */
6483 parser->type_definition_forbidden_message = saved_message;
6484 /* `typeid' may not appear in an integral constant expression. */
6485 if (cp_parser_non_integral_constant_expression (parser, NIC_TYPEID))
6486 return error_mark_node;
6488 break;
6490 case RID_TYPENAME:
6492 tree type;
6493 /* The syntax permitted here is the same permitted for an
6494 elaborated-type-specifier. */
6495 ++parser->prevent_constrained_type_specifiers;
6496 type = cp_parser_elaborated_type_specifier (parser,
6497 /*is_friend=*/false,
6498 /*is_declaration=*/false);
6499 --parser->prevent_constrained_type_specifiers;
6500 postfix_expression = cp_parser_functional_cast (parser, type);
6502 break;
6504 case RID_CILK_SPAWN:
6506 location_t cilk_spawn_loc
6507 = cp_lexer_peek_token (parser->lexer)->location;
6508 cp_lexer_consume_token (parser->lexer);
6509 token = cp_lexer_peek_token (parser->lexer);
6510 if (token->type == CPP_SEMICOLON)
6512 error_at (token->location, "%<_Cilk_spawn%> must be followed by "
6513 "an expression");
6514 postfix_expression = error_mark_node;
6515 break;
6517 else if (!current_function_decl)
6519 error_at (token->location, "%<_Cilk_spawn%> may only be used "
6520 "inside a function");
6521 postfix_expression = error_mark_node;
6522 break;
6524 else
6526 /* Consecutive _Cilk_spawns are not allowed in a statement. */
6527 saved_in_statement = parser->in_statement;
6528 parser->in_statement |= IN_CILK_SPAWN;
6530 cfun->calls_cilk_spawn = 1;
6531 postfix_expression =
6532 cp_parser_postfix_expression (parser, false, false,
6533 false, false, &idk);
6534 if (!flag_cilkplus)
6536 error_at (token->location, "-fcilkplus must be enabled to use"
6537 " %<_Cilk_spawn%>");
6538 cfun->calls_cilk_spawn = 0;
6540 else if (saved_in_statement & IN_CILK_SPAWN)
6542 error_at (token->location, "consecutive %<_Cilk_spawn%> keywords "
6543 "are not permitted");
6544 postfix_expression = error_mark_node;
6545 cfun->calls_cilk_spawn = 0;
6547 else
6549 location_t loc = postfix_expression.get_location ();
6550 postfix_expression = build_cilk_spawn (token->location,
6551 postfix_expression);
6552 /* Build a location of the form:
6553 _Cilk_spawn expr
6554 ~~~~~~~~~~~~^~~~
6555 with caret at the expr, ranging from the start of the
6556 _Cilk_spawn token to the end of the expression. */
6557 location_t combined_loc =
6558 make_location (loc, cilk_spawn_loc, get_finish (loc));
6559 postfix_expression.set_location (combined_loc);
6560 if (postfix_expression != error_mark_node)
6561 SET_EXPR_LOCATION (postfix_expression, input_location);
6562 parser->in_statement = parser->in_statement & ~IN_CILK_SPAWN;
6564 break;
6567 case RID_BUILTIN_SHUFFLE:
6569 vec<tree, va_gc> *vec;
6570 unsigned int i;
6571 tree p;
6573 cp_lexer_consume_token (parser->lexer);
6574 vec = cp_parser_parenthesized_expression_list (parser, non_attr,
6575 /*cast_p=*/false, /*allow_expansion_p=*/true,
6576 /*non_constant_p=*/NULL);
6577 if (vec == NULL)
6578 return error_mark_node;
6580 FOR_EACH_VEC_ELT (*vec, i, p)
6581 mark_exp_read (p);
6583 if (vec->length () == 2)
6584 return build_x_vec_perm_expr (loc, (*vec)[0], NULL_TREE, (*vec)[1],
6585 tf_warning_or_error);
6586 else if (vec->length () == 3)
6587 return build_x_vec_perm_expr (loc, (*vec)[0], (*vec)[1], (*vec)[2],
6588 tf_warning_or_error);
6589 else
6591 error_at (loc, "wrong number of arguments to "
6592 "%<__builtin_shuffle%>");
6593 return error_mark_node;
6595 break;
6598 default:
6600 tree type;
6602 /* If the next thing is a simple-type-specifier, we may be
6603 looking at a functional cast. We could also be looking at
6604 an id-expression. So, we try the functional cast, and if
6605 that doesn't work we fall back to the primary-expression. */
6606 cp_parser_parse_tentatively (parser);
6607 /* Look for the simple-type-specifier. */
6608 ++parser->prevent_constrained_type_specifiers;
6609 type = cp_parser_simple_type_specifier (parser,
6610 /*decl_specs=*/NULL,
6611 CP_PARSER_FLAGS_NONE);
6612 --parser->prevent_constrained_type_specifiers;
6613 /* Parse the cast itself. */
6614 if (!cp_parser_error_occurred (parser))
6615 postfix_expression
6616 = cp_parser_functional_cast (parser, type);
6617 /* If that worked, we're done. */
6618 if (cp_parser_parse_definitely (parser))
6619 break;
6621 /* If the functional-cast didn't work out, try a
6622 compound-literal. */
6623 if (cp_parser_allow_gnu_extensions_p (parser)
6624 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
6626 cp_expr initializer = NULL_TREE;
6628 cp_parser_parse_tentatively (parser);
6630 /* Avoid calling cp_parser_type_id pointlessly, see comment
6631 in cp_parser_cast_expression about c++/29234. */
6632 if (!cp_parser_compound_literal_p (parser))
6633 cp_parser_simulate_error (parser);
6634 else
6636 /* Parse the type. */
6637 bool saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
6638 parser->in_type_id_in_expr_p = true;
6639 type = cp_parser_type_id (parser);
6640 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
6641 /* Look for the `)'. */
6642 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
6645 /* If things aren't going well, there's no need to
6646 keep going. */
6647 if (!cp_parser_error_occurred (parser))
6649 bool non_constant_p;
6650 /* Parse the brace-enclosed initializer list. */
6651 initializer = cp_parser_braced_list (parser,
6652 &non_constant_p);
6654 /* If that worked, we're definitely looking at a
6655 compound-literal expression. */
6656 if (cp_parser_parse_definitely (parser))
6658 /* Warn the user that a compound literal is not
6659 allowed in standard C++. */
6660 pedwarn (input_location, OPT_Wpedantic,
6661 "ISO C++ forbids compound-literals");
6662 /* For simplicity, we disallow compound literals in
6663 constant-expressions. We could
6664 allow compound literals of integer type, whose
6665 initializer was a constant, in constant
6666 expressions. Permitting that usage, as a further
6667 extension, would not change the meaning of any
6668 currently accepted programs. (Of course, as
6669 compound literals are not part of ISO C++, the
6670 standard has nothing to say.) */
6671 if (cp_parser_non_integral_constant_expression (parser,
6672 NIC_NCC))
6674 postfix_expression = error_mark_node;
6675 break;
6677 /* Form the representation of the compound-literal. */
6678 postfix_expression
6679 = finish_compound_literal (type, initializer,
6680 tf_warning_or_error);
6681 postfix_expression.set_location (initializer.get_location ());
6682 break;
6686 /* It must be a primary-expression. */
6687 postfix_expression
6688 = cp_parser_primary_expression (parser, address_p, cast_p,
6689 /*template_arg_p=*/false,
6690 decltype_p,
6691 &idk);
6693 break;
6696 /* Note that we don't need to worry about calling build_cplus_new on a
6697 class-valued CALL_EXPR in decltype when it isn't the end of the
6698 postfix-expression; unary_complex_lvalue will take care of that for
6699 all these cases. */
6701 /* Keep looping until the postfix-expression is complete. */
6702 while (true)
6704 if (idk == CP_ID_KIND_UNQUALIFIED
6705 && identifier_p (postfix_expression)
6706 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_PAREN))
6707 /* It is not a Koenig lookup function call. */
6708 postfix_expression
6709 = unqualified_name_lookup_error (postfix_expression);
6711 /* Peek at the next token. */
6712 token = cp_lexer_peek_token (parser->lexer);
6714 switch (token->type)
6716 case CPP_OPEN_SQUARE:
6717 if (cp_next_tokens_can_be_std_attribute_p (parser))
6719 cp_parser_error (parser,
6720 "two consecutive %<[%> shall "
6721 "only introduce an attribute");
6722 return error_mark_node;
6724 postfix_expression
6725 = cp_parser_postfix_open_square_expression (parser,
6726 postfix_expression,
6727 false,
6728 decltype_p);
6729 postfix_expression.set_range (start_loc,
6730 postfix_expression.get_location ());
6732 idk = CP_ID_KIND_NONE;
6733 is_member_access = false;
6734 break;
6736 case CPP_OPEN_PAREN:
6737 /* postfix-expression ( expression-list [opt] ) */
6739 bool koenig_p;
6740 bool is_builtin_constant_p;
6741 bool saved_integral_constant_expression_p = false;
6742 bool saved_non_integral_constant_expression_p = false;
6743 tsubst_flags_t complain = complain_flags (decltype_p);
6744 vec<tree, va_gc> *args;
6745 location_t close_paren_loc = UNKNOWN_LOCATION;
6747 is_member_access = false;
6749 is_builtin_constant_p
6750 = DECL_IS_BUILTIN_CONSTANT_P (postfix_expression);
6751 if (is_builtin_constant_p)
6753 /* The whole point of __builtin_constant_p is to allow
6754 non-constant expressions to appear as arguments. */
6755 saved_integral_constant_expression_p
6756 = parser->integral_constant_expression_p;
6757 saved_non_integral_constant_expression_p
6758 = parser->non_integral_constant_expression_p;
6759 parser->integral_constant_expression_p = false;
6761 args = (cp_parser_parenthesized_expression_list
6762 (parser, non_attr,
6763 /*cast_p=*/false, /*allow_expansion_p=*/true,
6764 /*non_constant_p=*/NULL,
6765 /*close_paren_loc=*/&close_paren_loc));
6766 if (is_builtin_constant_p)
6768 parser->integral_constant_expression_p
6769 = saved_integral_constant_expression_p;
6770 parser->non_integral_constant_expression_p
6771 = saved_non_integral_constant_expression_p;
6774 if (args == NULL)
6776 postfix_expression = error_mark_node;
6777 break;
6780 /* Function calls are not permitted in
6781 constant-expressions. */
6782 if (! builtin_valid_in_constant_expr_p (postfix_expression)
6783 && cp_parser_non_integral_constant_expression (parser,
6784 NIC_FUNC_CALL))
6786 postfix_expression = error_mark_node;
6787 release_tree_vector (args);
6788 break;
6791 koenig_p = false;
6792 if (idk == CP_ID_KIND_UNQUALIFIED
6793 || idk == CP_ID_KIND_TEMPLATE_ID)
6795 if (identifier_p (postfix_expression))
6797 if (!args->is_empty ())
6799 koenig_p = true;
6800 if (!any_type_dependent_arguments_p (args))
6801 postfix_expression
6802 = perform_koenig_lookup (postfix_expression, args,
6803 complain);
6805 else
6806 postfix_expression
6807 = unqualified_fn_lookup_error (postfix_expression);
6809 /* We do not perform argument-dependent lookup if
6810 normal lookup finds a non-function, in accordance
6811 with the expected resolution of DR 218. */
6812 else if (!args->is_empty ()
6813 && is_overloaded_fn (postfix_expression))
6815 tree fn = get_first_fn (postfix_expression);
6816 fn = STRIP_TEMPLATE (fn);
6818 /* Do not do argument dependent lookup if regular
6819 lookup finds a member function or a block-scope
6820 function declaration. [basic.lookup.argdep]/3 */
6821 if (!DECL_FUNCTION_MEMBER_P (fn)
6822 && !DECL_LOCAL_FUNCTION_P (fn))
6824 koenig_p = true;
6825 if (!any_type_dependent_arguments_p (args))
6826 postfix_expression
6827 = perform_koenig_lookup (postfix_expression, args,
6828 complain);
6833 if (TREE_CODE (postfix_expression) == FUNCTION_DECL
6834 && DECL_BUILT_IN_CLASS (postfix_expression) == BUILT_IN_NORMAL
6835 && DECL_FUNCTION_CODE (postfix_expression) == BUILT_IN_MEMSET
6836 && vec_safe_length (args) == 3)
6838 tree arg0 = (*args)[0];
6839 tree arg1 = (*args)[1];
6840 tree arg2 = (*args)[2];
6841 int literal_mask = ((!!integer_zerop (arg1) << 1)
6842 | (!!integer_zerop (arg2) << 2));
6843 if (TREE_CODE (arg2) == CONST_DECL)
6844 arg2 = DECL_INITIAL (arg2);
6845 warn_for_memset (input_location, arg0, arg2, literal_mask);
6848 if (TREE_CODE (postfix_expression) == COMPONENT_REF)
6850 tree instance = TREE_OPERAND (postfix_expression, 0);
6851 tree fn = TREE_OPERAND (postfix_expression, 1);
6853 if (processing_template_decl
6854 && (type_dependent_object_expression_p (instance)
6855 || (!BASELINK_P (fn)
6856 && TREE_CODE (fn) != FIELD_DECL)
6857 || type_dependent_expression_p (fn)
6858 || any_type_dependent_arguments_p (args)))
6860 postfix_expression
6861 = build_nt_call_vec (postfix_expression, args);
6862 release_tree_vector (args);
6863 break;
6866 if (BASELINK_P (fn))
6868 postfix_expression
6869 = (build_new_method_call
6870 (instance, fn, &args, NULL_TREE,
6871 (idk == CP_ID_KIND_QUALIFIED
6872 ? LOOKUP_NORMAL|LOOKUP_NONVIRTUAL
6873 : LOOKUP_NORMAL),
6874 /*fn_p=*/NULL,
6875 complain));
6877 else
6878 postfix_expression
6879 = finish_call_expr (postfix_expression, &args,
6880 /*disallow_virtual=*/false,
6881 /*koenig_p=*/false,
6882 complain);
6884 else if (TREE_CODE (postfix_expression) == OFFSET_REF
6885 || TREE_CODE (postfix_expression) == MEMBER_REF
6886 || TREE_CODE (postfix_expression) == DOTSTAR_EXPR)
6887 postfix_expression = (build_offset_ref_call_from_tree
6888 (postfix_expression, &args,
6889 complain));
6890 else if (idk == CP_ID_KIND_QUALIFIED)
6891 /* A call to a static class member, or a namespace-scope
6892 function. */
6893 postfix_expression
6894 = finish_call_expr (postfix_expression, &args,
6895 /*disallow_virtual=*/true,
6896 koenig_p,
6897 complain);
6898 else
6899 /* All other function calls. */
6900 postfix_expression
6901 = finish_call_expr (postfix_expression, &args,
6902 /*disallow_virtual=*/false,
6903 koenig_p,
6904 complain);
6906 if (close_paren_loc != UNKNOWN_LOCATION)
6908 location_t combined_loc = make_location (token->location,
6909 start_loc,
6910 close_paren_loc);
6911 postfix_expression.set_location (combined_loc);
6914 /* The POSTFIX_EXPRESSION is certainly no longer an id. */
6915 idk = CP_ID_KIND_NONE;
6917 release_tree_vector (args);
6919 break;
6921 case CPP_DOT:
6922 case CPP_DEREF:
6923 /* postfix-expression . template [opt] id-expression
6924 postfix-expression . pseudo-destructor-name
6925 postfix-expression -> template [opt] id-expression
6926 postfix-expression -> pseudo-destructor-name */
6928 /* Consume the `.' or `->' operator. */
6929 cp_lexer_consume_token (parser->lexer);
6931 postfix_expression
6932 = cp_parser_postfix_dot_deref_expression (parser, token->type,
6933 postfix_expression,
6934 false, &idk, loc);
6936 is_member_access = true;
6937 break;
6939 case CPP_PLUS_PLUS:
6940 /* postfix-expression ++ */
6941 /* Consume the `++' token. */
6942 cp_lexer_consume_token (parser->lexer);
6943 /* Generate a representation for the complete expression. */
6944 postfix_expression
6945 = finish_increment_expr (postfix_expression,
6946 POSTINCREMENT_EXPR);
6947 /* Increments may not appear in constant-expressions. */
6948 if (cp_parser_non_integral_constant_expression (parser, NIC_INC))
6949 postfix_expression = error_mark_node;
6950 idk = CP_ID_KIND_NONE;
6951 is_member_access = false;
6952 break;
6954 case CPP_MINUS_MINUS:
6955 /* postfix-expression -- */
6956 /* Consume the `--' token. */
6957 cp_lexer_consume_token (parser->lexer);
6958 /* Generate a representation for the complete expression. */
6959 postfix_expression
6960 = finish_increment_expr (postfix_expression,
6961 POSTDECREMENT_EXPR);
6962 /* Decrements may not appear in constant-expressions. */
6963 if (cp_parser_non_integral_constant_expression (parser, NIC_DEC))
6964 postfix_expression = error_mark_node;
6965 idk = CP_ID_KIND_NONE;
6966 is_member_access = false;
6967 break;
6969 default:
6970 if (pidk_return != NULL)
6971 * pidk_return = idk;
6972 if (member_access_only_p)
6973 return is_member_access
6974 ? postfix_expression
6975 : cp_expr (error_mark_node);
6976 else
6977 return postfix_expression;
6981 /* We should never get here. */
6982 gcc_unreachable ();
6983 return error_mark_node;
6986 /* This function parses Cilk Plus array notations. If a normal array expr. is
6987 parsed then the array index is passed back to the caller through *INIT_INDEX
6988 and the function returns a NULL_TREE. If array notation expr. is parsed,
6989 then *INIT_INDEX is ignored by the caller and the function returns
6990 a tree of type ARRAY_NOTATION_REF. If some error occurred it returns
6991 error_mark_node. */
6993 static tree
6994 cp_parser_array_notation (location_t loc, cp_parser *parser, tree *init_index,
6995 tree array_value)
6997 cp_token *token = NULL;
6998 tree length_index, stride = NULL_TREE, value_tree, array_type;
6999 if (!array_value || array_value == error_mark_node)
7001 cp_parser_skip_to_end_of_statement (parser);
7002 return error_mark_node;
7005 array_type = TREE_TYPE (array_value);
7007 bool saved_colon_corrects = parser->colon_corrects_to_scope_p;
7008 parser->colon_corrects_to_scope_p = false;
7009 token = cp_lexer_peek_token (parser->lexer);
7011 if (!token)
7013 cp_parser_error (parser, "expected %<:%> or numeral");
7014 return error_mark_node;
7016 else if (token->type == CPP_COLON)
7018 /* Consume the ':'. */
7019 cp_lexer_consume_token (parser->lexer);
7021 /* If we are here, then we have a case like this A[:]. */
7022 if (cp_lexer_peek_token (parser->lexer)->type != CPP_CLOSE_SQUARE)
7024 cp_parser_error (parser, "expected %<]%>");
7025 cp_parser_skip_to_end_of_statement (parser);
7026 return error_mark_node;
7028 *init_index = NULL_TREE;
7029 stride = NULL_TREE;
7030 length_index = NULL_TREE;
7032 else
7034 /* If we are here, then there are three valid possibilities:
7035 1. ARRAY [ EXP ]
7036 2. ARRAY [ EXP : EXP ]
7037 3. ARRAY [ EXP : EXP : EXP ] */
7039 *init_index = cp_parser_expression (parser);
7040 if (cp_lexer_peek_token (parser->lexer)->type != CPP_COLON)
7042 /* This indicates that we have a normal array expression. */
7043 parser->colon_corrects_to_scope_p = saved_colon_corrects;
7044 return NULL_TREE;
7047 /* Consume the ':'. */
7048 cp_lexer_consume_token (parser->lexer);
7049 length_index = cp_parser_expression (parser);
7050 if (cp_lexer_peek_token (parser->lexer)->type == CPP_COLON)
7052 cp_lexer_consume_token (parser->lexer);
7053 stride = cp_parser_expression (parser);
7056 parser->colon_corrects_to_scope_p = saved_colon_corrects;
7058 if (*init_index == error_mark_node || length_index == error_mark_node
7059 || stride == error_mark_node || array_type == error_mark_node)
7061 if (cp_lexer_peek_token (parser->lexer)->type == CPP_CLOSE_SQUARE)
7062 cp_lexer_consume_token (parser->lexer);
7063 return error_mark_node;
7065 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
7067 value_tree = build_array_notation_ref (loc, array_value, *init_index,
7068 length_index, stride, array_type);
7069 return value_tree;
7072 /* A subroutine of cp_parser_postfix_expression that also gets hijacked
7073 by cp_parser_builtin_offsetof. We're looking for
7075 postfix-expression [ expression ]
7076 postfix-expression [ braced-init-list ] (C++11)
7078 FOR_OFFSETOF is set if we're being called in that context, which
7079 changes how we deal with integer constant expressions. */
7081 static tree
7082 cp_parser_postfix_open_square_expression (cp_parser *parser,
7083 tree postfix_expression,
7084 bool for_offsetof,
7085 bool decltype_p)
7087 tree index = NULL_TREE;
7088 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
7089 bool saved_greater_than_is_operator_p;
7091 /* Consume the `[' token. */
7092 cp_lexer_consume_token (parser->lexer);
7094 saved_greater_than_is_operator_p = parser->greater_than_is_operator_p;
7095 parser->greater_than_is_operator_p = true;
7097 /* Parse the index expression. */
7098 /* ??? For offsetof, there is a question of what to allow here. If
7099 offsetof is not being used in an integral constant expression context,
7100 then we *could* get the right answer by computing the value at runtime.
7101 If we are in an integral constant expression context, then we might
7102 could accept any constant expression; hard to say without analysis.
7103 Rather than open the barn door too wide right away, allow only integer
7104 constant expressions here. */
7105 if (for_offsetof)
7106 index = cp_parser_constant_expression (parser);
7107 else
7109 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
7111 bool expr_nonconst_p;
7112 cp_lexer_set_source_position (parser->lexer);
7113 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
7114 index = cp_parser_braced_list (parser, &expr_nonconst_p);
7115 if (flag_cilkplus
7116 && cp_lexer_peek_token (parser->lexer)->type == CPP_COLON)
7118 error_at (cp_lexer_peek_token (parser->lexer)->location,
7119 "braced list index is not allowed with array "
7120 "notation");
7121 cp_parser_skip_to_end_of_statement (parser);
7122 return error_mark_node;
7125 else if (flag_cilkplus)
7127 /* Here are have these two options:
7128 ARRAY[EXP : EXP] - Array notation expr with default
7129 stride of 1.
7130 ARRAY[EXP : EXP : EXP] - Array Notation with user-defined
7131 stride. */
7132 tree an_exp = cp_parser_array_notation (loc, parser, &index,
7133 postfix_expression);
7134 if (an_exp)
7135 return an_exp;
7137 else
7138 index = cp_parser_expression (parser);
7141 parser->greater_than_is_operator_p = saved_greater_than_is_operator_p;
7143 /* Look for the closing `]'. */
7144 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
7146 /* Build the ARRAY_REF. */
7147 postfix_expression = grok_array_decl (loc, postfix_expression,
7148 index, decltype_p);
7150 /* When not doing offsetof, array references are not permitted in
7151 constant-expressions. */
7152 if (!for_offsetof
7153 && (cp_parser_non_integral_constant_expression (parser, NIC_ARRAY_REF)))
7154 postfix_expression = error_mark_node;
7156 return postfix_expression;
7159 /* A subroutine of cp_parser_postfix_expression that also gets hijacked
7160 by cp_parser_builtin_offsetof. We're looking for
7162 postfix-expression . template [opt] id-expression
7163 postfix-expression . pseudo-destructor-name
7164 postfix-expression -> template [opt] id-expression
7165 postfix-expression -> pseudo-destructor-name
7167 FOR_OFFSETOF is set if we're being called in that context. That sorta
7168 limits what of the above we'll actually accept, but nevermind.
7169 TOKEN_TYPE is the "." or "->" token, which will already have been
7170 removed from the stream. */
7172 static tree
7173 cp_parser_postfix_dot_deref_expression (cp_parser *parser,
7174 enum cpp_ttype token_type,
7175 cp_expr postfix_expression,
7176 bool for_offsetof, cp_id_kind *idk,
7177 location_t location)
7179 tree name;
7180 bool dependent_p;
7181 bool pseudo_destructor_p;
7182 tree scope = NULL_TREE;
7183 location_t start_loc = postfix_expression.get_start ();
7185 /* If this is a `->' operator, dereference the pointer. */
7186 if (token_type == CPP_DEREF)
7187 postfix_expression = build_x_arrow (location, postfix_expression,
7188 tf_warning_or_error);
7189 /* Check to see whether or not the expression is type-dependent and
7190 not the current instantiation. */
7191 dependent_p = type_dependent_object_expression_p (postfix_expression);
7192 /* The identifier following the `->' or `.' is not qualified. */
7193 parser->scope = NULL_TREE;
7194 parser->qualifying_scope = NULL_TREE;
7195 parser->object_scope = NULL_TREE;
7196 *idk = CP_ID_KIND_NONE;
7198 /* Enter the scope corresponding to the type of the object
7199 given by the POSTFIX_EXPRESSION. */
7200 if (!dependent_p && TREE_TYPE (postfix_expression) != NULL_TREE)
7202 scope = TREE_TYPE (postfix_expression);
7203 /* According to the standard, no expression should ever have
7204 reference type. Unfortunately, we do not currently match
7205 the standard in this respect in that our internal representation
7206 of an expression may have reference type even when the standard
7207 says it does not. Therefore, we have to manually obtain the
7208 underlying type here. */
7209 scope = non_reference (scope);
7210 /* The type of the POSTFIX_EXPRESSION must be complete. */
7211 /* Unlike the object expression in other contexts, *this is not
7212 required to be of complete type for purposes of class member
7213 access (5.2.5) outside the member function body. */
7214 if (postfix_expression != current_class_ref
7215 && !(processing_template_decl
7216 && current_class_type
7217 && (same_type_ignoring_top_level_qualifiers_p
7218 (scope, current_class_type))))
7219 scope = complete_type_or_else (scope, postfix_expression);
7220 /* Let the name lookup machinery know that we are processing a
7221 class member access expression. */
7222 parser->context->object_type = scope;
7223 /* If something went wrong, we want to be able to discern that case,
7224 as opposed to the case where there was no SCOPE due to the type
7225 of expression being dependent. */
7226 if (!scope)
7227 scope = error_mark_node;
7228 /* If the SCOPE was erroneous, make the various semantic analysis
7229 functions exit quickly -- and without issuing additional error
7230 messages. */
7231 if (scope == error_mark_node)
7232 postfix_expression = error_mark_node;
7234 else
7235 /* Tell cp_parser_lookup_name that there was an object, even though it's
7236 type-dependent. */
7237 parser->context->object_type = unknown_type_node;
7239 /* Assume this expression is not a pseudo-destructor access. */
7240 pseudo_destructor_p = false;
7242 /* If the SCOPE is a scalar type, then, if this is a valid program,
7243 we must be looking at a pseudo-destructor-name. If POSTFIX_EXPRESSION
7244 is type dependent, it can be pseudo-destructor-name or something else.
7245 Try to parse it as pseudo-destructor-name first. */
7246 if ((scope && SCALAR_TYPE_P (scope)) || dependent_p)
7248 tree s;
7249 tree type;
7251 cp_parser_parse_tentatively (parser);
7252 /* Parse the pseudo-destructor-name. */
7253 s = NULL_TREE;
7254 cp_parser_pseudo_destructor_name (parser, postfix_expression,
7255 &s, &type);
7256 if (dependent_p
7257 && (cp_parser_error_occurred (parser)
7258 || !SCALAR_TYPE_P (type)))
7259 cp_parser_abort_tentative_parse (parser);
7260 else if (cp_parser_parse_definitely (parser))
7262 pseudo_destructor_p = true;
7263 postfix_expression
7264 = finish_pseudo_destructor_expr (postfix_expression,
7265 s, type, location);
7269 if (!pseudo_destructor_p)
7271 /* If the SCOPE is not a scalar type, we are looking at an
7272 ordinary class member access expression, rather than a
7273 pseudo-destructor-name. */
7274 bool template_p;
7275 cp_token *token = cp_lexer_peek_token (parser->lexer);
7276 /* Parse the id-expression. */
7277 name = (cp_parser_id_expression
7278 (parser,
7279 cp_parser_optional_template_keyword (parser),
7280 /*check_dependency_p=*/true,
7281 &template_p,
7282 /*declarator_p=*/false,
7283 /*optional_p=*/false));
7284 /* In general, build a SCOPE_REF if the member name is qualified.
7285 However, if the name was not dependent and has already been
7286 resolved; there is no need to build the SCOPE_REF. For example;
7288 struct X { void f(); };
7289 template <typename T> void f(T* t) { t->X::f(); }
7291 Even though "t" is dependent, "X::f" is not and has been resolved
7292 to a BASELINK; there is no need to include scope information. */
7294 /* But we do need to remember that there was an explicit scope for
7295 virtual function calls. */
7296 if (parser->scope)
7297 *idk = CP_ID_KIND_QUALIFIED;
7299 /* If the name is a template-id that names a type, we will get a
7300 TYPE_DECL here. That is invalid code. */
7301 if (TREE_CODE (name) == TYPE_DECL)
7303 error_at (token->location, "invalid use of %qD", name);
7304 postfix_expression = error_mark_node;
7306 else
7308 if (name != error_mark_node && !BASELINK_P (name) && parser->scope)
7310 if (TREE_CODE (parser->scope) == NAMESPACE_DECL)
7312 error_at (token->location, "%<%D::%D%> is not a class member",
7313 parser->scope, name);
7314 postfix_expression = error_mark_node;
7316 else
7317 name = build_qualified_name (/*type=*/NULL_TREE,
7318 parser->scope,
7319 name,
7320 template_p);
7321 parser->scope = NULL_TREE;
7322 parser->qualifying_scope = NULL_TREE;
7323 parser->object_scope = NULL_TREE;
7325 if (parser->scope && name && BASELINK_P (name))
7326 adjust_result_of_qualified_name_lookup
7327 (name, parser->scope, scope);
7328 postfix_expression
7329 = finish_class_member_access_expr (postfix_expression, name,
7330 template_p,
7331 tf_warning_or_error);
7332 /* Build a location e.g.:
7333 ptr->access_expr
7334 ~~~^~~~~~~~~~~~~
7335 where the caret is at the deref token, ranging from
7336 the start of postfix_expression to the end of the access expr. */
7337 location_t end_loc
7338 = get_finish (cp_lexer_previous_token (parser->lexer)->location);
7339 location_t combined_loc
7340 = make_location (input_location, start_loc, end_loc);
7341 protected_set_expr_location (postfix_expression, combined_loc);
7345 /* We no longer need to look up names in the scope of the object on
7346 the left-hand side of the `.' or `->' operator. */
7347 parser->context->object_type = NULL_TREE;
7349 /* Outside of offsetof, these operators may not appear in
7350 constant-expressions. */
7351 if (!for_offsetof
7352 && (cp_parser_non_integral_constant_expression
7353 (parser, token_type == CPP_DEREF ? NIC_ARROW : NIC_POINT)))
7354 postfix_expression = error_mark_node;
7356 return postfix_expression;
7359 /* Parse a parenthesized expression-list.
7361 expression-list:
7362 assignment-expression
7363 expression-list, assignment-expression
7365 attribute-list:
7366 expression-list
7367 identifier
7368 identifier, expression-list
7370 CAST_P is true if this expression is the target of a cast.
7372 ALLOW_EXPANSION_P is true if this expression allows expansion of an
7373 argument pack.
7375 Returns a vector of trees. Each element is a representation of an
7376 assignment-expression. NULL is returned if the ( and or ) are
7377 missing. An empty, but allocated, vector is returned on no
7378 expressions. The parentheses are eaten. IS_ATTRIBUTE_LIST is id_attr
7379 if we are parsing an attribute list for an attribute that wants a
7380 plain identifier argument, normal_attr for an attribute that wants
7381 an expression, or non_attr if we aren't parsing an attribute list. If
7382 NON_CONSTANT_P is non-NULL, *NON_CONSTANT_P indicates whether or
7383 not all of the expressions in the list were constant.
7384 If CLOSE_PAREN_LOC is non-NULL, and no errors occur, then *CLOSE_PAREN_LOC
7385 will be written to with the location of the closing parenthesis. If
7386 an error occurs, it may or may not be written to. */
7388 static vec<tree, va_gc> *
7389 cp_parser_parenthesized_expression_list (cp_parser* parser,
7390 int is_attribute_list,
7391 bool cast_p,
7392 bool allow_expansion_p,
7393 bool *non_constant_p,
7394 location_t *close_paren_loc)
7396 vec<tree, va_gc> *expression_list;
7397 bool fold_expr_p = is_attribute_list != non_attr;
7398 tree identifier = NULL_TREE;
7399 bool saved_greater_than_is_operator_p;
7401 /* Assume all the expressions will be constant. */
7402 if (non_constant_p)
7403 *non_constant_p = false;
7405 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
7406 return NULL;
7408 expression_list = make_tree_vector ();
7410 /* Within a parenthesized expression, a `>' token is always
7411 the greater-than operator. */
7412 saved_greater_than_is_operator_p
7413 = parser->greater_than_is_operator_p;
7414 parser->greater_than_is_operator_p = true;
7416 /* Consume expressions until there are no more. */
7417 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN))
7418 while (true)
7420 tree expr;
7422 /* At the beginning of attribute lists, check to see if the
7423 next token is an identifier. */
7424 if (is_attribute_list == id_attr
7425 && cp_lexer_peek_token (parser->lexer)->type == CPP_NAME)
7427 cp_token *token;
7429 /* Consume the identifier. */
7430 token = cp_lexer_consume_token (parser->lexer);
7431 /* Save the identifier. */
7432 identifier = token->u.value;
7434 else
7436 bool expr_non_constant_p;
7438 /* Parse the next assignment-expression. */
7439 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
7441 /* A braced-init-list. */
7442 cp_lexer_set_source_position (parser->lexer);
7443 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
7444 expr = cp_parser_braced_list (parser, &expr_non_constant_p);
7445 if (non_constant_p && expr_non_constant_p)
7446 *non_constant_p = true;
7448 else if (non_constant_p)
7450 expr = (cp_parser_constant_expression
7451 (parser, /*allow_non_constant_p=*/true,
7452 &expr_non_constant_p));
7453 if (expr_non_constant_p)
7454 *non_constant_p = true;
7456 else
7457 expr = cp_parser_assignment_expression (parser, /*pidk=*/NULL,
7458 cast_p);
7460 if (fold_expr_p)
7461 expr = instantiate_non_dependent_expr (expr);
7463 /* If we have an ellipsis, then this is an expression
7464 expansion. */
7465 if (allow_expansion_p
7466 && cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
7468 /* Consume the `...'. */
7469 cp_lexer_consume_token (parser->lexer);
7471 /* Build the argument pack. */
7472 expr = make_pack_expansion (expr);
7475 /* Add it to the list. We add error_mark_node
7476 expressions to the list, so that we can still tell if
7477 the correct form for a parenthesized expression-list
7478 is found. That gives better errors. */
7479 vec_safe_push (expression_list, expr);
7481 if (expr == error_mark_node)
7482 goto skip_comma;
7485 /* After the first item, attribute lists look the same as
7486 expression lists. */
7487 is_attribute_list = non_attr;
7489 get_comma:;
7490 /* If the next token isn't a `,', then we are done. */
7491 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
7492 break;
7494 /* Otherwise, consume the `,' and keep going. */
7495 cp_lexer_consume_token (parser->lexer);
7498 if (close_paren_loc)
7499 *close_paren_loc = cp_lexer_peek_token (parser->lexer)->location;
7501 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
7503 int ending;
7505 skip_comma:;
7506 /* We try and resync to an unnested comma, as that will give the
7507 user better diagnostics. */
7508 ending = cp_parser_skip_to_closing_parenthesis (parser,
7509 /*recovering=*/true,
7510 /*or_comma=*/true,
7511 /*consume_paren=*/true);
7512 if (ending < 0)
7513 goto get_comma;
7514 if (!ending)
7516 parser->greater_than_is_operator_p
7517 = saved_greater_than_is_operator_p;
7518 return NULL;
7522 parser->greater_than_is_operator_p
7523 = saved_greater_than_is_operator_p;
7525 if (identifier)
7526 vec_safe_insert (expression_list, 0, identifier);
7528 return expression_list;
7531 /* Parse a pseudo-destructor-name.
7533 pseudo-destructor-name:
7534 :: [opt] nested-name-specifier [opt] type-name :: ~ type-name
7535 :: [opt] nested-name-specifier template template-id :: ~ type-name
7536 :: [opt] nested-name-specifier [opt] ~ type-name
7538 If either of the first two productions is used, sets *SCOPE to the
7539 TYPE specified before the final `::'. Otherwise, *SCOPE is set to
7540 NULL_TREE. *TYPE is set to the TYPE_DECL for the final type-name,
7541 or ERROR_MARK_NODE if the parse fails. */
7543 static void
7544 cp_parser_pseudo_destructor_name (cp_parser* parser,
7545 tree object,
7546 tree* scope,
7547 tree* type)
7549 bool nested_name_specifier_p;
7551 /* Handle ~auto. */
7552 if (cp_lexer_next_token_is (parser->lexer, CPP_COMPL)
7553 && cp_lexer_nth_token_is_keyword (parser->lexer, 2, RID_AUTO)
7554 && !type_dependent_expression_p (object))
7556 if (cxx_dialect < cxx14)
7557 pedwarn (input_location, 0,
7558 "%<~auto%> only available with "
7559 "-std=c++14 or -std=gnu++14");
7560 cp_lexer_consume_token (parser->lexer);
7561 cp_lexer_consume_token (parser->lexer);
7562 *scope = NULL_TREE;
7563 *type = TREE_TYPE (object);
7564 return;
7567 /* Assume that things will not work out. */
7568 *type = error_mark_node;
7570 /* Look for the optional `::' operator. */
7571 cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/true);
7572 /* Look for the optional nested-name-specifier. */
7573 nested_name_specifier_p
7574 = (cp_parser_nested_name_specifier_opt (parser,
7575 /*typename_keyword_p=*/false,
7576 /*check_dependency_p=*/true,
7577 /*type_p=*/false,
7578 /*is_declaration=*/false)
7579 != NULL_TREE);
7580 /* Now, if we saw a nested-name-specifier, we might be doing the
7581 second production. */
7582 if (nested_name_specifier_p
7583 && cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
7585 /* Consume the `template' keyword. */
7586 cp_lexer_consume_token (parser->lexer);
7587 /* Parse the template-id. */
7588 cp_parser_template_id (parser,
7589 /*template_keyword_p=*/true,
7590 /*check_dependency_p=*/false,
7591 class_type,
7592 /*is_declaration=*/true);
7593 /* Look for the `::' token. */
7594 cp_parser_require (parser, CPP_SCOPE, RT_SCOPE);
7596 /* If the next token is not a `~', then there might be some
7597 additional qualification. */
7598 else if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMPL))
7600 /* At this point, we're looking for "type-name :: ~". The type-name
7601 must not be a class-name, since this is a pseudo-destructor. So,
7602 it must be either an enum-name, or a typedef-name -- both of which
7603 are just identifiers. So, we peek ahead to check that the "::"
7604 and "~" tokens are present; if they are not, then we can avoid
7605 calling type_name. */
7606 if (cp_lexer_peek_token (parser->lexer)->type != CPP_NAME
7607 || cp_lexer_peek_nth_token (parser->lexer, 2)->type != CPP_SCOPE
7608 || cp_lexer_peek_nth_token (parser->lexer, 3)->type != CPP_COMPL)
7610 cp_parser_error (parser, "non-scalar type");
7611 return;
7614 /* Look for the type-name. */
7615 *scope = TREE_TYPE (cp_parser_nonclass_name (parser));
7616 if (*scope == error_mark_node)
7617 return;
7619 /* Look for the `::' token. */
7620 cp_parser_require (parser, CPP_SCOPE, RT_SCOPE);
7622 else
7623 *scope = NULL_TREE;
7625 /* Look for the `~'. */
7626 cp_parser_require (parser, CPP_COMPL, RT_COMPL);
7628 /* Once we see the ~, this has to be a pseudo-destructor. */
7629 if (!processing_template_decl && !cp_parser_error_occurred (parser))
7630 cp_parser_commit_to_topmost_tentative_parse (parser);
7632 /* Look for the type-name again. We are not responsible for
7633 checking that it matches the first type-name. */
7634 *type = TREE_TYPE (cp_parser_nonclass_name (parser));
7637 /* Parse a unary-expression.
7639 unary-expression:
7640 postfix-expression
7641 ++ cast-expression
7642 -- cast-expression
7643 unary-operator cast-expression
7644 sizeof unary-expression
7645 sizeof ( type-id )
7646 alignof ( type-id ) [C++0x]
7647 new-expression
7648 delete-expression
7650 GNU Extensions:
7652 unary-expression:
7653 __extension__ cast-expression
7654 __alignof__ unary-expression
7655 __alignof__ ( type-id )
7656 alignof unary-expression [C++0x]
7657 __real__ cast-expression
7658 __imag__ cast-expression
7659 && identifier
7660 sizeof ( type-id ) { initializer-list , [opt] }
7661 alignof ( type-id ) { initializer-list , [opt] } [C++0x]
7662 __alignof__ ( type-id ) { initializer-list , [opt] }
7664 ADDRESS_P is true iff the unary-expression is appearing as the
7665 operand of the `&' operator. CAST_P is true if this expression is
7666 the target of a cast.
7668 Returns a representation of the expression. */
7670 static cp_expr
7671 cp_parser_unary_expression (cp_parser *parser, cp_id_kind * pidk,
7672 bool address_p, bool cast_p, bool decltype_p)
7674 cp_token *token;
7675 enum tree_code unary_operator;
7677 /* Peek at the next token. */
7678 token = cp_lexer_peek_token (parser->lexer);
7679 /* Some keywords give away the kind of expression. */
7680 if (token->type == CPP_KEYWORD)
7682 enum rid keyword = token->keyword;
7684 switch (keyword)
7686 case RID_ALIGNOF:
7687 case RID_SIZEOF:
7689 tree operand, ret;
7690 enum tree_code op;
7691 location_t first_loc;
7693 op = keyword == RID_ALIGNOF ? ALIGNOF_EXPR : SIZEOF_EXPR;
7694 /* Consume the token. */
7695 cp_lexer_consume_token (parser->lexer);
7696 first_loc = cp_lexer_peek_token (parser->lexer)->location;
7697 /* Parse the operand. */
7698 operand = cp_parser_sizeof_operand (parser, keyword);
7700 if (TYPE_P (operand))
7701 ret = cxx_sizeof_or_alignof_type (operand, op, true);
7702 else
7704 /* ISO C++ defines alignof only with types, not with
7705 expressions. So pedwarn if alignof is used with a non-
7706 type expression. However, __alignof__ is ok. */
7707 if (!strcmp (IDENTIFIER_POINTER (token->u.value), "alignof"))
7708 pedwarn (token->location, OPT_Wpedantic,
7709 "ISO C++ does not allow %<alignof%> "
7710 "with a non-type");
7712 ret = cxx_sizeof_or_alignof_expr (operand, op, true);
7714 /* For SIZEOF_EXPR, just issue diagnostics, but keep
7715 SIZEOF_EXPR with the original operand. */
7716 if (op == SIZEOF_EXPR && ret != error_mark_node)
7718 if (TREE_CODE (ret) != SIZEOF_EXPR || TYPE_P (operand))
7720 if (!processing_template_decl && TYPE_P (operand))
7722 ret = build_min (SIZEOF_EXPR, size_type_node,
7723 build1 (NOP_EXPR, operand,
7724 error_mark_node));
7725 SIZEOF_EXPR_TYPE_P (ret) = 1;
7727 else
7728 ret = build_min (SIZEOF_EXPR, size_type_node, operand);
7729 TREE_SIDE_EFFECTS (ret) = 0;
7730 TREE_READONLY (ret) = 1;
7732 SET_EXPR_LOCATION (ret, first_loc);
7734 return ret;
7737 case RID_NEW:
7738 return cp_parser_new_expression (parser);
7740 case RID_DELETE:
7741 return cp_parser_delete_expression (parser);
7743 case RID_EXTENSION:
7745 /* The saved value of the PEDANTIC flag. */
7746 int saved_pedantic;
7747 tree expr;
7749 /* Save away the PEDANTIC flag. */
7750 cp_parser_extension_opt (parser, &saved_pedantic);
7751 /* Parse the cast-expression. */
7752 expr = cp_parser_simple_cast_expression (parser);
7753 /* Restore the PEDANTIC flag. */
7754 pedantic = saved_pedantic;
7756 return expr;
7759 case RID_REALPART:
7760 case RID_IMAGPART:
7762 tree expression;
7764 /* Consume the `__real__' or `__imag__' token. */
7765 cp_lexer_consume_token (parser->lexer);
7766 /* Parse the cast-expression. */
7767 expression = cp_parser_simple_cast_expression (parser);
7768 /* Create the complete representation. */
7769 return build_x_unary_op (token->location,
7770 (keyword == RID_REALPART
7771 ? REALPART_EXPR : IMAGPART_EXPR),
7772 expression,
7773 tf_warning_or_error);
7775 break;
7777 case RID_TRANSACTION_ATOMIC:
7778 case RID_TRANSACTION_RELAXED:
7779 return cp_parser_transaction_expression (parser, keyword);
7781 case RID_NOEXCEPT:
7783 tree expr;
7784 const char *saved_message;
7785 bool saved_integral_constant_expression_p;
7786 bool saved_non_integral_constant_expression_p;
7787 bool saved_greater_than_is_operator_p;
7789 cp_lexer_consume_token (parser->lexer);
7790 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
7792 saved_message = parser->type_definition_forbidden_message;
7793 parser->type_definition_forbidden_message
7794 = G_("types may not be defined in %<noexcept%> expressions");
7796 saved_integral_constant_expression_p
7797 = parser->integral_constant_expression_p;
7798 saved_non_integral_constant_expression_p
7799 = parser->non_integral_constant_expression_p;
7800 parser->integral_constant_expression_p = false;
7802 saved_greater_than_is_operator_p
7803 = parser->greater_than_is_operator_p;
7804 parser->greater_than_is_operator_p = true;
7806 ++cp_unevaluated_operand;
7807 ++c_inhibit_evaluation_warnings;
7808 ++cp_noexcept_operand;
7809 expr = cp_parser_expression (parser);
7810 --cp_noexcept_operand;
7811 --c_inhibit_evaluation_warnings;
7812 --cp_unevaluated_operand;
7814 parser->greater_than_is_operator_p
7815 = saved_greater_than_is_operator_p;
7817 parser->integral_constant_expression_p
7818 = saved_integral_constant_expression_p;
7819 parser->non_integral_constant_expression_p
7820 = saved_non_integral_constant_expression_p;
7822 parser->type_definition_forbidden_message = saved_message;
7824 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
7825 return finish_noexcept_expr (expr, tf_warning_or_error);
7828 default:
7829 break;
7833 /* Look for the `:: new' and `:: delete', which also signal the
7834 beginning of a new-expression, or delete-expression,
7835 respectively. If the next token is `::', then it might be one of
7836 these. */
7837 if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
7839 enum rid keyword;
7841 /* See if the token after the `::' is one of the keywords in
7842 which we're interested. */
7843 keyword = cp_lexer_peek_nth_token (parser->lexer, 2)->keyword;
7844 /* If it's `new', we have a new-expression. */
7845 if (keyword == RID_NEW)
7846 return cp_parser_new_expression (parser);
7847 /* Similarly, for `delete'. */
7848 else if (keyword == RID_DELETE)
7849 return cp_parser_delete_expression (parser);
7852 /* Look for a unary operator. */
7853 unary_operator = cp_parser_unary_operator (token);
7854 /* The `++' and `--' operators can be handled similarly, even though
7855 they are not technically unary-operators in the grammar. */
7856 if (unary_operator == ERROR_MARK)
7858 if (token->type == CPP_PLUS_PLUS)
7859 unary_operator = PREINCREMENT_EXPR;
7860 else if (token->type == CPP_MINUS_MINUS)
7861 unary_operator = PREDECREMENT_EXPR;
7862 /* Handle the GNU address-of-label extension. */
7863 else if (cp_parser_allow_gnu_extensions_p (parser)
7864 && token->type == CPP_AND_AND)
7866 tree identifier;
7867 tree expression;
7868 location_t start_loc = token->location;
7870 /* Consume the '&&' token. */
7871 cp_lexer_consume_token (parser->lexer);
7872 /* Look for the identifier. */
7873 location_t finish_loc
7874 = get_finish (cp_lexer_peek_token (parser->lexer)->location);
7875 identifier = cp_parser_identifier (parser);
7876 /* Construct a location of the form:
7877 &&label
7878 ^~~~~~~
7879 with caret==start at the "&&", finish at the end of the label. */
7880 location_t combined_loc
7881 = make_location (start_loc, start_loc, finish_loc);
7882 /* Create an expression representing the address. */
7883 expression = finish_label_address_expr (identifier, combined_loc);
7884 if (cp_parser_non_integral_constant_expression (parser,
7885 NIC_ADDR_LABEL))
7886 expression = error_mark_node;
7887 return expression;
7890 if (unary_operator != ERROR_MARK)
7892 cp_expr cast_expression;
7893 cp_expr expression = error_mark_node;
7894 non_integral_constant non_constant_p = NIC_NONE;
7895 location_t loc = token->location;
7896 tsubst_flags_t complain = complain_flags (decltype_p);
7898 /* Consume the operator token. */
7899 token = cp_lexer_consume_token (parser->lexer);
7900 enum cpp_ttype op_ttype = cp_lexer_peek_token (parser->lexer)->type;
7902 /* Parse the cast-expression. */
7903 cast_expression
7904 = cp_parser_cast_expression (parser,
7905 unary_operator == ADDR_EXPR,
7906 /*cast_p=*/false,
7907 /*decltype*/false,
7908 pidk);
7910 /* Make a location:
7911 OP_TOKEN CAST_EXPRESSION
7912 ^~~~~~~~~~~~~~~~~~~~~~~~~
7913 with start==caret at the operator token, and
7914 extending to the end of the cast_expression. */
7915 loc = make_location (loc, loc, cast_expression.get_finish ());
7917 /* Now, build an appropriate representation. */
7918 switch (unary_operator)
7920 case INDIRECT_REF:
7921 non_constant_p = NIC_STAR;
7922 expression = build_x_indirect_ref (loc, cast_expression,
7923 RO_UNARY_STAR,
7924 complain);
7925 /* TODO: build_x_indirect_ref does not always honor the
7926 location, so ensure it is set. */
7927 expression.set_location (loc);
7928 break;
7930 case ADDR_EXPR:
7931 non_constant_p = NIC_ADDR;
7932 /* Fall through. */
7933 case BIT_NOT_EXPR:
7934 expression = build_x_unary_op (loc, unary_operator,
7935 cast_expression,
7936 complain);
7937 /* TODO: build_x_unary_op does not always honor the location,
7938 so ensure it is set. */
7939 expression.set_location (loc);
7940 break;
7942 case PREINCREMENT_EXPR:
7943 case PREDECREMENT_EXPR:
7944 non_constant_p = unary_operator == PREINCREMENT_EXPR
7945 ? NIC_PREINCREMENT : NIC_PREDECREMENT;
7946 /* Fall through. */
7947 case NEGATE_EXPR:
7948 /* Immediately fold negation of a constant, unless the constant is 0
7949 (since -0 == 0) or it would overflow. */
7950 if (unary_operator == NEGATE_EXPR && op_ttype == CPP_NUMBER
7951 && CONSTANT_CLASS_P (cast_expression)
7952 && !integer_zerop (cast_expression)
7953 && !TREE_OVERFLOW (cast_expression))
7955 tree folded = fold_build1 (unary_operator,
7956 TREE_TYPE (cast_expression),
7957 cast_expression);
7958 if (CONSTANT_CLASS_P (folded) && !TREE_OVERFLOW (folded))
7960 expression = cp_expr (folded, loc);
7961 break;
7964 /* Fall through. */
7965 case UNARY_PLUS_EXPR:
7966 case TRUTH_NOT_EXPR:
7967 expression = finish_unary_op_expr (loc, unary_operator,
7968 cast_expression, complain);
7969 break;
7971 default:
7972 gcc_unreachable ();
7975 if (non_constant_p != NIC_NONE
7976 && cp_parser_non_integral_constant_expression (parser,
7977 non_constant_p))
7978 expression = error_mark_node;
7980 return expression;
7983 return cp_parser_postfix_expression (parser, address_p, cast_p,
7984 /*member_access_only_p=*/false,
7985 decltype_p,
7986 pidk);
7989 /* Returns ERROR_MARK if TOKEN is not a unary-operator. If TOKEN is a
7990 unary-operator, the corresponding tree code is returned. */
7992 static enum tree_code
7993 cp_parser_unary_operator (cp_token* token)
7995 switch (token->type)
7997 case CPP_MULT:
7998 return INDIRECT_REF;
8000 case CPP_AND:
8001 return ADDR_EXPR;
8003 case CPP_PLUS:
8004 return UNARY_PLUS_EXPR;
8006 case CPP_MINUS:
8007 return NEGATE_EXPR;
8009 case CPP_NOT:
8010 return TRUTH_NOT_EXPR;
8012 case CPP_COMPL:
8013 return BIT_NOT_EXPR;
8015 default:
8016 return ERROR_MARK;
8020 /* Parse a new-expression.
8022 new-expression:
8023 :: [opt] new new-placement [opt] new-type-id new-initializer [opt]
8024 :: [opt] new new-placement [opt] ( type-id ) new-initializer [opt]
8026 Returns a representation of the expression. */
8028 static tree
8029 cp_parser_new_expression (cp_parser* parser)
8031 bool global_scope_p;
8032 vec<tree, va_gc> *placement;
8033 tree type;
8034 vec<tree, va_gc> *initializer;
8035 tree nelts = NULL_TREE;
8036 tree ret;
8038 location_t start_loc = cp_lexer_peek_token (parser->lexer)->location;
8040 /* Look for the optional `::' operator. */
8041 global_scope_p
8042 = (cp_parser_global_scope_opt (parser,
8043 /*current_scope_valid_p=*/false)
8044 != NULL_TREE);
8045 /* Look for the `new' operator. */
8046 cp_parser_require_keyword (parser, RID_NEW, RT_NEW);
8047 /* There's no easy way to tell a new-placement from the
8048 `( type-id )' construct. */
8049 cp_parser_parse_tentatively (parser);
8050 /* Look for a new-placement. */
8051 placement = cp_parser_new_placement (parser);
8052 /* If that didn't work out, there's no new-placement. */
8053 if (!cp_parser_parse_definitely (parser))
8055 if (placement != NULL)
8056 release_tree_vector (placement);
8057 placement = NULL;
8060 /* If the next token is a `(', then we have a parenthesized
8061 type-id. */
8062 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
8064 cp_token *token;
8065 const char *saved_message = parser->type_definition_forbidden_message;
8067 /* Consume the `('. */
8068 cp_lexer_consume_token (parser->lexer);
8070 /* Parse the type-id. */
8071 parser->type_definition_forbidden_message
8072 = G_("types may not be defined in a new-expression");
8074 type_id_in_expr_sentinel s (parser);
8075 type = cp_parser_type_id (parser);
8077 parser->type_definition_forbidden_message = saved_message;
8079 /* Look for the closing `)'. */
8080 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
8081 token = cp_lexer_peek_token (parser->lexer);
8082 /* There should not be a direct-new-declarator in this production,
8083 but GCC used to allowed this, so we check and emit a sensible error
8084 message for this case. */
8085 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
8087 error_at (token->location,
8088 "array bound forbidden after parenthesized type-id");
8089 inform (token->location,
8090 "try removing the parentheses around the type-id");
8091 cp_parser_direct_new_declarator (parser);
8094 /* Otherwise, there must be a new-type-id. */
8095 else
8096 type = cp_parser_new_type_id (parser, &nelts);
8098 /* If the next token is a `(' or '{', then we have a new-initializer. */
8099 cp_token *token = cp_lexer_peek_token (parser->lexer);
8100 if (token->type == CPP_OPEN_PAREN
8101 || token->type == CPP_OPEN_BRACE)
8102 initializer = cp_parser_new_initializer (parser);
8103 else
8104 initializer = NULL;
8106 /* A new-expression may not appear in an integral constant
8107 expression. */
8108 if (cp_parser_non_integral_constant_expression (parser, NIC_NEW))
8109 ret = error_mark_node;
8110 /* 5.3.4/2: "If the auto type-specifier appears in the type-specifier-seq
8111 of a new-type-id or type-id of a new-expression, the new-expression shall
8112 contain a new-initializer of the form ( assignment-expression )".
8113 Additionally, consistently with the spirit of DR 1467, we want to accept
8114 'new auto { 2 }' too. */
8115 else if (type_uses_auto (type)
8116 && (vec_safe_length (initializer) != 1
8117 || (BRACE_ENCLOSED_INITIALIZER_P ((*initializer)[0])
8118 && CONSTRUCTOR_NELTS ((*initializer)[0]) != 1)))
8120 error_at (token->location,
8121 "initialization of new-expression for type %<auto%> "
8122 "requires exactly one element");
8123 ret = error_mark_node;
8125 else
8127 /* Construct a location e.g.:
8128 ptr = new int[100]
8129 ^~~~~~~~~~~~
8130 with caret == start at the start of the "new" token, and the end
8131 at the end of the final token we consumed. */
8132 cp_token *end_tok = cp_lexer_previous_token (parser->lexer);
8133 location_t end_loc = get_finish (end_tok->location);
8134 location_t combined_loc = make_location (start_loc, start_loc, end_loc);
8136 /* Create a representation of the new-expression. */
8137 ret = build_new (&placement, type, nelts, &initializer, global_scope_p,
8138 tf_warning_or_error);
8139 protected_set_expr_location (ret, combined_loc);
8142 if (placement != NULL)
8143 release_tree_vector (placement);
8144 if (initializer != NULL)
8145 release_tree_vector (initializer);
8147 return ret;
8150 /* Parse a new-placement.
8152 new-placement:
8153 ( expression-list )
8155 Returns the same representation as for an expression-list. */
8157 static vec<tree, va_gc> *
8158 cp_parser_new_placement (cp_parser* parser)
8160 vec<tree, va_gc> *expression_list;
8162 /* Parse the expression-list. */
8163 expression_list = (cp_parser_parenthesized_expression_list
8164 (parser, non_attr, /*cast_p=*/false,
8165 /*allow_expansion_p=*/true,
8166 /*non_constant_p=*/NULL));
8168 if (expression_list && expression_list->is_empty ())
8169 error ("expected expression-list or type-id");
8171 return expression_list;
8174 /* Parse a new-type-id.
8176 new-type-id:
8177 type-specifier-seq new-declarator [opt]
8179 Returns the TYPE allocated. If the new-type-id indicates an array
8180 type, *NELTS is set to the number of elements in the last array
8181 bound; the TYPE will not include the last array bound. */
8183 static tree
8184 cp_parser_new_type_id (cp_parser* parser, tree *nelts)
8186 cp_decl_specifier_seq type_specifier_seq;
8187 cp_declarator *new_declarator;
8188 cp_declarator *declarator;
8189 cp_declarator *outer_declarator;
8190 const char *saved_message;
8192 /* The type-specifier sequence must not contain type definitions.
8193 (It cannot contain declarations of new types either, but if they
8194 are not definitions we will catch that because they are not
8195 complete.) */
8196 saved_message = parser->type_definition_forbidden_message;
8197 parser->type_definition_forbidden_message
8198 = G_("types may not be defined in a new-type-id");
8199 /* Parse the type-specifier-seq. */
8200 cp_parser_type_specifier_seq (parser, /*is_declaration=*/false,
8201 /*is_trailing_return=*/false,
8202 &type_specifier_seq);
8203 /* Restore the old message. */
8204 parser->type_definition_forbidden_message = saved_message;
8206 if (type_specifier_seq.type == error_mark_node)
8207 return error_mark_node;
8209 /* Parse the new-declarator. */
8210 new_declarator = cp_parser_new_declarator_opt (parser);
8212 /* Determine the number of elements in the last array dimension, if
8213 any. */
8214 *nelts = NULL_TREE;
8215 /* Skip down to the last array dimension. */
8216 declarator = new_declarator;
8217 outer_declarator = NULL;
8218 while (declarator && (declarator->kind == cdk_pointer
8219 || declarator->kind == cdk_ptrmem))
8221 outer_declarator = declarator;
8222 declarator = declarator->declarator;
8224 while (declarator
8225 && declarator->kind == cdk_array
8226 && declarator->declarator
8227 && declarator->declarator->kind == cdk_array)
8229 outer_declarator = declarator;
8230 declarator = declarator->declarator;
8233 if (declarator && declarator->kind == cdk_array)
8235 *nelts = declarator->u.array.bounds;
8236 if (*nelts == error_mark_node)
8237 *nelts = integer_one_node;
8239 if (outer_declarator)
8240 outer_declarator->declarator = declarator->declarator;
8241 else
8242 new_declarator = NULL;
8245 return groktypename (&type_specifier_seq, new_declarator, false);
8248 /* Parse an (optional) new-declarator.
8250 new-declarator:
8251 ptr-operator new-declarator [opt]
8252 direct-new-declarator
8254 Returns the declarator. */
8256 static cp_declarator *
8257 cp_parser_new_declarator_opt (cp_parser* parser)
8259 enum tree_code code;
8260 tree type, std_attributes = NULL_TREE;
8261 cp_cv_quals cv_quals;
8263 /* We don't know if there's a ptr-operator next, or not. */
8264 cp_parser_parse_tentatively (parser);
8265 /* Look for a ptr-operator. */
8266 code = cp_parser_ptr_operator (parser, &type, &cv_quals, &std_attributes);
8267 /* If that worked, look for more new-declarators. */
8268 if (cp_parser_parse_definitely (parser))
8270 cp_declarator *declarator;
8272 /* Parse another optional declarator. */
8273 declarator = cp_parser_new_declarator_opt (parser);
8275 declarator = cp_parser_make_indirect_declarator
8276 (code, type, cv_quals, declarator, std_attributes);
8278 return declarator;
8281 /* If the next token is a `[', there is a direct-new-declarator. */
8282 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
8283 return cp_parser_direct_new_declarator (parser);
8285 return NULL;
8288 /* Parse a direct-new-declarator.
8290 direct-new-declarator:
8291 [ expression ]
8292 direct-new-declarator [constant-expression]
8296 static cp_declarator *
8297 cp_parser_direct_new_declarator (cp_parser* parser)
8299 cp_declarator *declarator = NULL;
8301 while (true)
8303 tree expression;
8304 cp_token *token;
8306 /* Look for the opening `['. */
8307 cp_parser_require (parser, CPP_OPEN_SQUARE, RT_OPEN_SQUARE);
8309 token = cp_lexer_peek_token (parser->lexer);
8310 expression = cp_parser_expression (parser);
8311 /* The standard requires that the expression have integral
8312 type. DR 74 adds enumeration types. We believe that the
8313 real intent is that these expressions be handled like the
8314 expression in a `switch' condition, which also allows
8315 classes with a single conversion to integral or
8316 enumeration type. */
8317 if (!processing_template_decl)
8319 expression
8320 = build_expr_type_conversion (WANT_INT | WANT_ENUM,
8321 expression,
8322 /*complain=*/true);
8323 if (!expression)
8325 error_at (token->location,
8326 "expression in new-declarator must have integral "
8327 "or enumeration type");
8328 expression = error_mark_node;
8332 /* Look for the closing `]'. */
8333 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
8335 /* Add this bound to the declarator. */
8336 declarator = make_array_declarator (declarator, expression);
8338 /* If the next token is not a `[', then there are no more
8339 bounds. */
8340 if (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_SQUARE))
8341 break;
8344 return declarator;
8347 /* Parse a new-initializer.
8349 new-initializer:
8350 ( expression-list [opt] )
8351 braced-init-list
8353 Returns a representation of the expression-list. */
8355 static vec<tree, va_gc> *
8356 cp_parser_new_initializer (cp_parser* parser)
8358 vec<tree, va_gc> *expression_list;
8360 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
8362 tree t;
8363 bool expr_non_constant_p;
8364 cp_lexer_set_source_position (parser->lexer);
8365 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
8366 t = cp_parser_braced_list (parser, &expr_non_constant_p);
8367 CONSTRUCTOR_IS_DIRECT_INIT (t) = 1;
8368 expression_list = make_tree_vector_single (t);
8370 else
8371 expression_list = (cp_parser_parenthesized_expression_list
8372 (parser, non_attr, /*cast_p=*/false,
8373 /*allow_expansion_p=*/true,
8374 /*non_constant_p=*/NULL));
8376 return expression_list;
8379 /* Parse a delete-expression.
8381 delete-expression:
8382 :: [opt] delete cast-expression
8383 :: [opt] delete [ ] cast-expression
8385 Returns a representation of the expression. */
8387 static tree
8388 cp_parser_delete_expression (cp_parser* parser)
8390 bool global_scope_p;
8391 bool array_p;
8392 tree expression;
8394 /* Look for the optional `::' operator. */
8395 global_scope_p
8396 = (cp_parser_global_scope_opt (parser,
8397 /*current_scope_valid_p=*/false)
8398 != NULL_TREE);
8399 /* Look for the `delete' keyword. */
8400 cp_parser_require_keyword (parser, RID_DELETE, RT_DELETE);
8401 /* See if the array syntax is in use. */
8402 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
8404 /* Consume the `[' token. */
8405 cp_lexer_consume_token (parser->lexer);
8406 /* Look for the `]' token. */
8407 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
8408 /* Remember that this is the `[]' construct. */
8409 array_p = true;
8411 else
8412 array_p = false;
8414 /* Parse the cast-expression. */
8415 expression = cp_parser_simple_cast_expression (parser);
8417 /* A delete-expression may not appear in an integral constant
8418 expression. */
8419 if (cp_parser_non_integral_constant_expression (parser, NIC_DEL))
8420 return error_mark_node;
8422 return delete_sanity (expression, NULL_TREE, array_p, global_scope_p,
8423 tf_warning_or_error);
8426 /* Returns 1 if TOKEN may start a cast-expression and isn't '++', '--',
8427 neither '[' in C++11; -1 if TOKEN is '++', '--', or '[' in C++11;
8428 0 otherwise. */
8430 static int
8431 cp_parser_tokens_start_cast_expression (cp_parser *parser)
8433 cp_token *token = cp_lexer_peek_token (parser->lexer);
8434 switch (token->type)
8436 case CPP_COMMA:
8437 case CPP_SEMICOLON:
8438 case CPP_QUERY:
8439 case CPP_COLON:
8440 case CPP_CLOSE_SQUARE:
8441 case CPP_CLOSE_PAREN:
8442 case CPP_CLOSE_BRACE:
8443 case CPP_OPEN_BRACE:
8444 case CPP_DOT:
8445 case CPP_DOT_STAR:
8446 case CPP_DEREF:
8447 case CPP_DEREF_STAR:
8448 case CPP_DIV:
8449 case CPP_MOD:
8450 case CPP_LSHIFT:
8451 case CPP_RSHIFT:
8452 case CPP_LESS:
8453 case CPP_GREATER:
8454 case CPP_LESS_EQ:
8455 case CPP_GREATER_EQ:
8456 case CPP_EQ_EQ:
8457 case CPP_NOT_EQ:
8458 case CPP_EQ:
8459 case CPP_MULT_EQ:
8460 case CPP_DIV_EQ:
8461 case CPP_MOD_EQ:
8462 case CPP_PLUS_EQ:
8463 case CPP_MINUS_EQ:
8464 case CPP_RSHIFT_EQ:
8465 case CPP_LSHIFT_EQ:
8466 case CPP_AND_EQ:
8467 case CPP_XOR_EQ:
8468 case CPP_OR_EQ:
8469 case CPP_XOR:
8470 case CPP_OR:
8471 case CPP_OR_OR:
8472 case CPP_EOF:
8473 case CPP_ELLIPSIS:
8474 return 0;
8476 case CPP_OPEN_PAREN:
8477 /* In ((type ()) () the last () isn't a valid cast-expression,
8478 so the whole must be parsed as postfix-expression. */
8479 return cp_lexer_peek_nth_token (parser->lexer, 2)->type
8480 != CPP_CLOSE_PAREN;
8482 case CPP_OPEN_SQUARE:
8483 /* '[' may start a primary-expression in obj-c++ and in C++11,
8484 as a lambda-expression, eg, '(void)[]{}'. */
8485 if (cxx_dialect >= cxx11)
8486 return -1;
8487 return c_dialect_objc ();
8489 case CPP_PLUS_PLUS:
8490 case CPP_MINUS_MINUS:
8491 /* '++' and '--' may or may not start a cast-expression:
8493 struct T { void operator++(int); };
8494 void f() { (T())++; }
8498 int a;
8499 (int)++a; */
8500 return -1;
8502 default:
8503 return 1;
8507 /* Parse a cast-expression.
8509 cast-expression:
8510 unary-expression
8511 ( type-id ) cast-expression
8513 ADDRESS_P is true iff the unary-expression is appearing as the
8514 operand of the `&' operator. CAST_P is true if this expression is
8515 the target of a cast.
8517 Returns a representation of the expression. */
8519 static cp_expr
8520 cp_parser_cast_expression (cp_parser *parser, bool address_p, bool cast_p,
8521 bool decltype_p, cp_id_kind * pidk)
8523 /* If it's a `(', then we might be looking at a cast. */
8524 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
8526 tree type = NULL_TREE;
8527 cp_expr expr (NULL_TREE);
8528 int cast_expression = 0;
8529 const char *saved_message;
8531 /* There's no way to know yet whether or not this is a cast.
8532 For example, `(int (3))' is a unary-expression, while `(int)
8533 3' is a cast. So, we resort to parsing tentatively. */
8534 cp_parser_parse_tentatively (parser);
8535 /* Types may not be defined in a cast. */
8536 saved_message = parser->type_definition_forbidden_message;
8537 parser->type_definition_forbidden_message
8538 = G_("types may not be defined in casts");
8539 /* Consume the `('. */
8540 cp_token *open_paren = cp_lexer_consume_token (parser->lexer);
8541 location_t open_paren_loc = open_paren->location;
8543 /* A very tricky bit is that `(struct S) { 3 }' is a
8544 compound-literal (which we permit in C++ as an extension).
8545 But, that construct is not a cast-expression -- it is a
8546 postfix-expression. (The reason is that `(struct S) { 3 }.i'
8547 is legal; if the compound-literal were a cast-expression,
8548 you'd need an extra set of parentheses.) But, if we parse
8549 the type-id, and it happens to be a class-specifier, then we
8550 will commit to the parse at that point, because we cannot
8551 undo the action that is done when creating a new class. So,
8552 then we cannot back up and do a postfix-expression.
8554 Another tricky case is the following (c++/29234):
8556 struct S { void operator () (); };
8558 void foo ()
8560 ( S()() );
8563 As a type-id we parse the parenthesized S()() as a function
8564 returning a function, groktypename complains and we cannot
8565 back up in this case either.
8567 Therefore, we scan ahead to the closing `)', and check to see
8568 if the tokens after the `)' can start a cast-expression. Otherwise
8569 we are dealing with an unary-expression, a postfix-expression
8570 or something else.
8572 Yet another tricky case, in C++11, is the following (c++/54891):
8574 (void)[]{};
8576 The issue is that usually, besides the case of lambda-expressions,
8577 the parenthesized type-id cannot be followed by '[', and, eg, we
8578 want to parse '(C ())[2];' in parse/pr26997.C as unary-expression.
8579 Thus, if cp_parser_tokens_start_cast_expression returns -1, below
8580 we don't commit, we try a cast-expression, then an unary-expression.
8582 Save tokens so that we can put them back. */
8583 cp_lexer_save_tokens (parser->lexer);
8585 /* We may be looking at a cast-expression. */
8586 if (cp_parser_skip_to_closing_parenthesis (parser, false, false,
8587 /*consume_paren=*/true))
8588 cast_expression
8589 = cp_parser_tokens_start_cast_expression (parser);
8591 /* Roll back the tokens we skipped. */
8592 cp_lexer_rollback_tokens (parser->lexer);
8593 /* If we aren't looking at a cast-expression, simulate an error so
8594 that the call to cp_parser_error_occurred below returns true. */
8595 if (!cast_expression)
8596 cp_parser_simulate_error (parser);
8597 else
8599 bool saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
8600 parser->in_type_id_in_expr_p = true;
8601 /* Look for the type-id. */
8602 type = cp_parser_type_id (parser);
8603 /* Look for the closing `)'. */
8604 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
8605 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
8608 /* Restore the saved message. */
8609 parser->type_definition_forbidden_message = saved_message;
8611 /* At this point this can only be either a cast or a
8612 parenthesized ctor such as `(T ())' that looks like a cast to
8613 function returning T. */
8614 if (!cp_parser_error_occurred (parser))
8616 /* Only commit if the cast-expression doesn't start with
8617 '++', '--', or '[' in C++11. */
8618 if (cast_expression > 0)
8619 cp_parser_commit_to_topmost_tentative_parse (parser);
8621 expr = cp_parser_cast_expression (parser,
8622 /*address_p=*/false,
8623 /*cast_p=*/true,
8624 /*decltype_p=*/false,
8625 pidk);
8627 if (cp_parser_parse_definitely (parser))
8629 /* Warn about old-style casts, if so requested. */
8630 if (warn_old_style_cast
8631 && !in_system_header_at (input_location)
8632 && !VOID_TYPE_P (type)
8633 && current_lang_name != lang_name_c)
8634 warning (OPT_Wold_style_cast, "use of old-style cast");
8636 /* Only type conversions to integral or enumeration types
8637 can be used in constant-expressions. */
8638 if (!cast_valid_in_integral_constant_expression_p (type)
8639 && cp_parser_non_integral_constant_expression (parser,
8640 NIC_CAST))
8641 return error_mark_node;
8643 /* Perform the cast. */
8644 /* Make a location:
8645 (TYPE) EXPR
8646 ^~~~~~~~~~~
8647 with start==caret at the open paren, extending to the
8648 end of "expr". */
8649 location_t cast_loc = make_location (open_paren_loc,
8650 open_paren_loc,
8651 expr.get_finish ());
8652 expr = build_c_cast (cast_loc, type, expr);
8653 return expr;
8656 else
8657 cp_parser_abort_tentative_parse (parser);
8660 /* If we get here, then it's not a cast, so it must be a
8661 unary-expression. */
8662 return cp_parser_unary_expression (parser, pidk, address_p,
8663 cast_p, decltype_p);
8666 /* Parse a binary expression of the general form:
8668 pm-expression:
8669 cast-expression
8670 pm-expression .* cast-expression
8671 pm-expression ->* cast-expression
8673 multiplicative-expression:
8674 pm-expression
8675 multiplicative-expression * pm-expression
8676 multiplicative-expression / pm-expression
8677 multiplicative-expression % pm-expression
8679 additive-expression:
8680 multiplicative-expression
8681 additive-expression + multiplicative-expression
8682 additive-expression - multiplicative-expression
8684 shift-expression:
8685 additive-expression
8686 shift-expression << additive-expression
8687 shift-expression >> additive-expression
8689 relational-expression:
8690 shift-expression
8691 relational-expression < shift-expression
8692 relational-expression > shift-expression
8693 relational-expression <= shift-expression
8694 relational-expression >= shift-expression
8696 GNU Extension:
8698 relational-expression:
8699 relational-expression <? shift-expression
8700 relational-expression >? shift-expression
8702 equality-expression:
8703 relational-expression
8704 equality-expression == relational-expression
8705 equality-expression != relational-expression
8707 and-expression:
8708 equality-expression
8709 and-expression & equality-expression
8711 exclusive-or-expression:
8712 and-expression
8713 exclusive-or-expression ^ and-expression
8715 inclusive-or-expression:
8716 exclusive-or-expression
8717 inclusive-or-expression | exclusive-or-expression
8719 logical-and-expression:
8720 inclusive-or-expression
8721 logical-and-expression && inclusive-or-expression
8723 logical-or-expression:
8724 logical-and-expression
8725 logical-or-expression || logical-and-expression
8727 All these are implemented with a single function like:
8729 binary-expression:
8730 simple-cast-expression
8731 binary-expression <token> binary-expression
8733 CAST_P is true if this expression is the target of a cast.
8735 The binops_by_token map is used to get the tree codes for each <token> type.
8736 binary-expressions are associated according to a precedence table. */
8738 #define TOKEN_PRECEDENCE(token) \
8739 (((token->type == CPP_GREATER \
8740 || ((cxx_dialect != cxx98) && token->type == CPP_RSHIFT)) \
8741 && !parser->greater_than_is_operator_p) \
8742 ? PREC_NOT_OPERATOR \
8743 : binops_by_token[token->type].prec)
8745 static cp_expr
8746 cp_parser_binary_expression (cp_parser* parser, bool cast_p,
8747 bool no_toplevel_fold_p,
8748 bool decltype_p,
8749 enum cp_parser_prec prec,
8750 cp_id_kind * pidk)
8752 cp_parser_expression_stack stack;
8753 cp_parser_expression_stack_entry *sp = &stack[0];
8754 cp_parser_expression_stack_entry current;
8755 cp_expr rhs;
8756 cp_token *token;
8757 enum tree_code rhs_type;
8758 enum cp_parser_prec new_prec, lookahead_prec;
8759 tree overload;
8761 /* Parse the first expression. */
8762 current.lhs_type = (cp_lexer_next_token_is (parser->lexer, CPP_NOT)
8763 ? TRUTH_NOT_EXPR : ERROR_MARK);
8764 current.lhs = cp_parser_cast_expression (parser, /*address_p=*/false,
8765 cast_p, decltype_p, pidk);
8766 current.prec = prec;
8768 if (cp_parser_error_occurred (parser))
8769 return error_mark_node;
8771 for (;;)
8773 /* Get an operator token. */
8774 token = cp_lexer_peek_token (parser->lexer);
8776 if (warn_cxx11_compat
8777 && token->type == CPP_RSHIFT
8778 && !parser->greater_than_is_operator_p)
8780 if (warning_at (token->location, OPT_Wc__11_compat,
8781 "%<>>%> operator is treated"
8782 " as two right angle brackets in C++11"))
8783 inform (token->location,
8784 "suggest parentheses around %<>>%> expression");
8787 new_prec = TOKEN_PRECEDENCE (token);
8788 if (new_prec != PREC_NOT_OPERATOR
8789 && cp_lexer_nth_token_is (parser->lexer, 2, CPP_ELLIPSIS))
8790 /* This is a fold-expression; handle it later. */
8791 new_prec = PREC_NOT_OPERATOR;
8793 /* Popping an entry off the stack means we completed a subexpression:
8794 - either we found a token which is not an operator (`>' where it is not
8795 an operator, or prec == PREC_NOT_OPERATOR), in which case popping
8796 will happen repeatedly;
8797 - or, we found an operator which has lower priority. This is the case
8798 where the recursive descent *ascends*, as in `3 * 4 + 5' after
8799 parsing `3 * 4'. */
8800 if (new_prec <= current.prec)
8802 if (sp == stack)
8803 break;
8804 else
8805 goto pop;
8808 get_rhs:
8809 current.tree_type = binops_by_token[token->type].tree_type;
8810 current.loc = token->location;
8812 /* We used the operator token. */
8813 cp_lexer_consume_token (parser->lexer);
8815 /* For "false && x" or "true || x", x will never be executed;
8816 disable warnings while evaluating it. */
8817 if (current.tree_type == TRUTH_ANDIF_EXPR)
8818 c_inhibit_evaluation_warnings +=
8819 cp_fully_fold (current.lhs) == truthvalue_false_node;
8820 else if (current.tree_type == TRUTH_ORIF_EXPR)
8821 c_inhibit_evaluation_warnings +=
8822 cp_fully_fold (current.lhs) == truthvalue_true_node;
8824 /* Extract another operand. It may be the RHS of this expression
8825 or the LHS of a new, higher priority expression. */
8826 rhs_type = (cp_lexer_next_token_is (parser->lexer, CPP_NOT)
8827 ? TRUTH_NOT_EXPR : ERROR_MARK);
8828 rhs = cp_parser_simple_cast_expression (parser);
8830 /* Get another operator token. Look up its precedence to avoid
8831 building a useless (immediately popped) stack entry for common
8832 cases such as 3 + 4 + 5 or 3 * 4 + 5. */
8833 token = cp_lexer_peek_token (parser->lexer);
8834 lookahead_prec = TOKEN_PRECEDENCE (token);
8835 if (lookahead_prec != PREC_NOT_OPERATOR
8836 && cp_lexer_nth_token_is (parser->lexer, 2, CPP_ELLIPSIS))
8837 lookahead_prec = PREC_NOT_OPERATOR;
8838 if (lookahead_prec > new_prec)
8840 /* ... and prepare to parse the RHS of the new, higher priority
8841 expression. Since precedence levels on the stack are
8842 monotonically increasing, we do not have to care about
8843 stack overflows. */
8844 *sp = current;
8845 ++sp;
8846 current.lhs = rhs;
8847 current.lhs_type = rhs_type;
8848 current.prec = new_prec;
8849 new_prec = lookahead_prec;
8850 goto get_rhs;
8852 pop:
8853 lookahead_prec = new_prec;
8854 /* If the stack is not empty, we have parsed into LHS the right side
8855 (`4' in the example above) of an expression we had suspended.
8856 We can use the information on the stack to recover the LHS (`3')
8857 from the stack together with the tree code (`MULT_EXPR'), and
8858 the precedence of the higher level subexpression
8859 (`PREC_ADDITIVE_EXPRESSION'). TOKEN is the CPP_PLUS token,
8860 which will be used to actually build the additive expression. */
8861 rhs = current.lhs;
8862 rhs_type = current.lhs_type;
8863 --sp;
8864 current = *sp;
8867 /* Undo the disabling of warnings done above. */
8868 if (current.tree_type == TRUTH_ANDIF_EXPR)
8869 c_inhibit_evaluation_warnings -=
8870 cp_fully_fold (current.lhs) == truthvalue_false_node;
8871 else if (current.tree_type == TRUTH_ORIF_EXPR)
8872 c_inhibit_evaluation_warnings -=
8873 cp_fully_fold (current.lhs) == truthvalue_true_node;
8875 if (warn_logical_not_paren
8876 && TREE_CODE_CLASS (current.tree_type) == tcc_comparison
8877 && current.lhs_type == TRUTH_NOT_EXPR
8878 /* Avoid warning for !!x == y. */
8879 && (TREE_CODE (current.lhs) != NE_EXPR
8880 || !integer_zerop (TREE_OPERAND (current.lhs, 1)))
8881 && (TREE_CODE (current.lhs) != TRUTH_NOT_EXPR
8882 || (TREE_CODE (TREE_OPERAND (current.lhs, 0)) != TRUTH_NOT_EXPR
8883 /* Avoid warning for !b == y where b is boolean. */
8884 && (TREE_TYPE (TREE_OPERAND (current.lhs, 0)) == NULL_TREE
8885 || (TREE_CODE (TREE_TYPE (TREE_OPERAND (current.lhs, 0)))
8886 != BOOLEAN_TYPE))))
8887 /* Avoid warning for !!b == y where b is boolean. */
8888 && (!DECL_P (current.lhs)
8889 || TREE_TYPE (current.lhs) == NULL_TREE
8890 || TREE_CODE (TREE_TYPE (current.lhs)) != BOOLEAN_TYPE))
8891 warn_logical_not_parentheses (current.loc, current.tree_type,
8892 maybe_constant_value (rhs));
8894 overload = NULL;
8896 location_t combined_loc = make_location (current.loc,
8897 current.lhs.get_start (),
8898 rhs.get_finish ());
8900 /* ??? Currently we pass lhs_type == ERROR_MARK and rhs_type ==
8901 ERROR_MARK for everything that is not a binary expression.
8902 This makes warn_about_parentheses miss some warnings that
8903 involve unary operators. For unary expressions we should
8904 pass the correct tree_code unless the unary expression was
8905 surrounded by parentheses.
8907 if (no_toplevel_fold_p
8908 && lookahead_prec <= current.prec
8909 && sp == stack)
8910 current.lhs = build2_loc (combined_loc,
8911 current.tree_type,
8912 TREE_CODE_CLASS (current.tree_type)
8913 == tcc_comparison
8914 ? boolean_type_node : TREE_TYPE (current.lhs),
8915 current.lhs, rhs);
8916 else
8918 current.lhs = build_x_binary_op (combined_loc, current.tree_type,
8919 current.lhs, current.lhs_type,
8920 rhs, rhs_type, &overload,
8921 complain_flags (decltype_p));
8922 /* TODO: build_x_binary_op doesn't always honor the location. */
8923 current.lhs.set_location (combined_loc);
8925 current.lhs_type = current.tree_type;
8927 /* If the binary operator required the use of an overloaded operator,
8928 then this expression cannot be an integral constant-expression.
8929 An overloaded operator can be used even if both operands are
8930 otherwise permissible in an integral constant-expression if at
8931 least one of the operands is of enumeration type. */
8933 if (overload
8934 && cp_parser_non_integral_constant_expression (parser,
8935 NIC_OVERLOADED))
8936 return error_mark_node;
8939 return current.lhs;
8942 static cp_expr
8943 cp_parser_binary_expression (cp_parser* parser, bool cast_p,
8944 bool no_toplevel_fold_p,
8945 enum cp_parser_prec prec,
8946 cp_id_kind * pidk)
8948 return cp_parser_binary_expression (parser, cast_p, no_toplevel_fold_p,
8949 /*decltype*/false, prec, pidk);
8952 /* Parse the `? expression : assignment-expression' part of a
8953 conditional-expression. The LOGICAL_OR_EXPR is the
8954 logical-or-expression that started the conditional-expression.
8955 Returns a representation of the entire conditional-expression.
8957 This routine is used by cp_parser_assignment_expression.
8959 ? expression : assignment-expression
8961 GNU Extensions:
8963 ? : assignment-expression */
8965 static tree
8966 cp_parser_question_colon_clause (cp_parser* parser, cp_expr logical_or_expr)
8968 tree expr, folded_logical_or_expr = cp_fully_fold (logical_or_expr);
8969 cp_expr assignment_expr;
8970 struct cp_token *token;
8971 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
8973 /* Consume the `?' token. */
8974 cp_lexer_consume_token (parser->lexer);
8975 token = cp_lexer_peek_token (parser->lexer);
8976 if (cp_parser_allow_gnu_extensions_p (parser)
8977 && token->type == CPP_COLON)
8979 pedwarn (token->location, OPT_Wpedantic,
8980 "ISO C++ does not allow ?: with omitted middle operand");
8981 /* Implicit true clause. */
8982 expr = NULL_TREE;
8983 c_inhibit_evaluation_warnings +=
8984 folded_logical_or_expr == truthvalue_true_node;
8985 warn_for_omitted_condop (token->location, logical_or_expr);
8987 else
8989 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
8990 parser->colon_corrects_to_scope_p = false;
8991 /* Parse the expression. */
8992 c_inhibit_evaluation_warnings +=
8993 folded_logical_or_expr == truthvalue_false_node;
8994 expr = cp_parser_expression (parser);
8995 c_inhibit_evaluation_warnings +=
8996 ((folded_logical_or_expr == truthvalue_true_node)
8997 - (folded_logical_or_expr == truthvalue_false_node));
8998 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
9001 /* The next token should be a `:'. */
9002 cp_parser_require (parser, CPP_COLON, RT_COLON);
9003 /* Parse the assignment-expression. */
9004 assignment_expr = cp_parser_assignment_expression (parser);
9005 c_inhibit_evaluation_warnings -=
9006 folded_logical_or_expr == truthvalue_true_node;
9008 /* Make a location:
9009 LOGICAL_OR_EXPR ? EXPR : ASSIGNMENT_EXPR
9010 ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
9011 with the caret at the "?", ranging from the start of
9012 the logical_or_expr to the end of the assignment_expr. */
9013 loc = make_location (loc,
9014 logical_or_expr.get_start (),
9015 assignment_expr.get_finish ());
9017 /* Build the conditional-expression. */
9018 return build_x_conditional_expr (loc, logical_or_expr,
9019 expr,
9020 assignment_expr,
9021 tf_warning_or_error);
9024 /* Parse an assignment-expression.
9026 assignment-expression:
9027 conditional-expression
9028 logical-or-expression assignment-operator assignment_expression
9029 throw-expression
9031 CAST_P is true if this expression is the target of a cast.
9032 DECLTYPE_P is true if this expression is the operand of decltype.
9034 Returns a representation for the expression. */
9036 static cp_expr
9037 cp_parser_assignment_expression (cp_parser* parser, cp_id_kind * pidk,
9038 bool cast_p, bool decltype_p)
9040 cp_expr expr;
9042 /* If the next token is the `throw' keyword, then we're looking at
9043 a throw-expression. */
9044 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_THROW))
9045 expr = cp_parser_throw_expression (parser);
9046 /* Otherwise, it must be that we are looking at a
9047 logical-or-expression. */
9048 else
9050 /* Parse the binary expressions (logical-or-expression). */
9051 expr = cp_parser_binary_expression (parser, cast_p, false,
9052 decltype_p,
9053 PREC_NOT_OPERATOR, pidk);
9054 /* If the next token is a `?' then we're actually looking at a
9055 conditional-expression. */
9056 if (cp_lexer_next_token_is (parser->lexer, CPP_QUERY))
9057 return cp_parser_question_colon_clause (parser, expr);
9058 else
9060 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
9062 /* If it's an assignment-operator, we're using the second
9063 production. */
9064 enum tree_code assignment_operator
9065 = cp_parser_assignment_operator_opt (parser);
9066 if (assignment_operator != ERROR_MARK)
9068 bool non_constant_p;
9070 /* Parse the right-hand side of the assignment. */
9071 cp_expr rhs = cp_parser_initializer_clause (parser,
9072 &non_constant_p);
9074 if (BRACE_ENCLOSED_INITIALIZER_P (rhs))
9075 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
9077 /* An assignment may not appear in a
9078 constant-expression. */
9079 if (cp_parser_non_integral_constant_expression (parser,
9080 NIC_ASSIGNMENT))
9081 return error_mark_node;
9082 /* Build the assignment expression. Its default
9083 location:
9084 LHS = RHS
9085 ~~~~^~~~~
9086 is the location of the '=' token as the
9087 caret, ranging from the start of the lhs to the
9088 end of the rhs. */
9089 loc = make_location (loc,
9090 expr.get_start (),
9091 rhs.get_finish ());
9092 expr = build_x_modify_expr (loc, expr,
9093 assignment_operator,
9094 rhs,
9095 complain_flags (decltype_p));
9096 /* TODO: build_x_modify_expr doesn't honor the location,
9097 so we must set it here. */
9098 expr.set_location (loc);
9103 return expr;
9106 /* Parse an (optional) assignment-operator.
9108 assignment-operator: one of
9109 = *= /= %= += -= >>= <<= &= ^= |=
9111 GNU Extension:
9113 assignment-operator: one of
9114 <?= >?=
9116 If the next token is an assignment operator, the corresponding tree
9117 code is returned, and the token is consumed. For example, for
9118 `+=', PLUS_EXPR is returned. For `=' itself, the code returned is
9119 NOP_EXPR. For `/', TRUNC_DIV_EXPR is returned; for `%',
9120 TRUNC_MOD_EXPR is returned. If TOKEN is not an assignment
9121 operator, ERROR_MARK is returned. */
9123 static enum tree_code
9124 cp_parser_assignment_operator_opt (cp_parser* parser)
9126 enum tree_code op;
9127 cp_token *token;
9129 /* Peek at the next token. */
9130 token = cp_lexer_peek_token (parser->lexer);
9132 switch (token->type)
9134 case CPP_EQ:
9135 op = NOP_EXPR;
9136 break;
9138 case CPP_MULT_EQ:
9139 op = MULT_EXPR;
9140 break;
9142 case CPP_DIV_EQ:
9143 op = TRUNC_DIV_EXPR;
9144 break;
9146 case CPP_MOD_EQ:
9147 op = TRUNC_MOD_EXPR;
9148 break;
9150 case CPP_PLUS_EQ:
9151 op = PLUS_EXPR;
9152 break;
9154 case CPP_MINUS_EQ:
9155 op = MINUS_EXPR;
9156 break;
9158 case CPP_RSHIFT_EQ:
9159 op = RSHIFT_EXPR;
9160 break;
9162 case CPP_LSHIFT_EQ:
9163 op = LSHIFT_EXPR;
9164 break;
9166 case CPP_AND_EQ:
9167 op = BIT_AND_EXPR;
9168 break;
9170 case CPP_XOR_EQ:
9171 op = BIT_XOR_EXPR;
9172 break;
9174 case CPP_OR_EQ:
9175 op = BIT_IOR_EXPR;
9176 break;
9178 default:
9179 /* Nothing else is an assignment operator. */
9180 op = ERROR_MARK;
9183 /* An operator followed by ... is a fold-expression, handled elsewhere. */
9184 if (op != ERROR_MARK
9185 && cp_lexer_nth_token_is (parser->lexer, 2, CPP_ELLIPSIS))
9186 op = ERROR_MARK;
9188 /* If it was an assignment operator, consume it. */
9189 if (op != ERROR_MARK)
9190 cp_lexer_consume_token (parser->lexer);
9192 return op;
9195 /* Parse an expression.
9197 expression:
9198 assignment-expression
9199 expression , assignment-expression
9201 CAST_P is true if this expression is the target of a cast.
9202 DECLTYPE_P is true if this expression is the immediate operand of decltype,
9203 except possibly parenthesized or on the RHS of a comma (N3276).
9205 Returns a representation of the expression. */
9207 static cp_expr
9208 cp_parser_expression (cp_parser* parser, cp_id_kind * pidk,
9209 bool cast_p, bool decltype_p)
9211 cp_expr expression = NULL_TREE;
9212 location_t loc = UNKNOWN_LOCATION;
9214 while (true)
9216 cp_expr assignment_expression;
9218 /* Parse the next assignment-expression. */
9219 assignment_expression
9220 = cp_parser_assignment_expression (parser, pidk, cast_p, decltype_p);
9222 /* We don't create a temporary for a call that is the immediate operand
9223 of decltype or on the RHS of a comma. But when we see a comma, we
9224 need to create a temporary for a call on the LHS. */
9225 if (decltype_p && !processing_template_decl
9226 && TREE_CODE (assignment_expression) == CALL_EXPR
9227 && CLASS_TYPE_P (TREE_TYPE (assignment_expression))
9228 && cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
9229 assignment_expression
9230 = build_cplus_new (TREE_TYPE (assignment_expression),
9231 assignment_expression, tf_warning_or_error);
9233 /* If this is the first assignment-expression, we can just
9234 save it away. */
9235 if (!expression)
9236 expression = assignment_expression;
9237 else
9239 /* Create a location with caret at the comma, ranging
9240 from the start of the LHS to the end of the RHS. */
9241 loc = make_location (loc,
9242 expression.get_start (),
9243 assignment_expression.get_finish ());
9244 expression = build_x_compound_expr (loc, expression,
9245 assignment_expression,
9246 complain_flags (decltype_p));
9247 expression.set_location (loc);
9249 /* If the next token is not a comma, or we're in a fold-expression, then
9250 we are done with the expression. */
9251 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA)
9252 || cp_lexer_nth_token_is (parser->lexer, 2, CPP_ELLIPSIS))
9253 break;
9254 /* Consume the `,'. */
9255 loc = cp_lexer_peek_token (parser->lexer)->location;
9256 cp_lexer_consume_token (parser->lexer);
9257 /* A comma operator cannot appear in a constant-expression. */
9258 if (cp_parser_non_integral_constant_expression (parser, NIC_COMMA))
9259 expression = error_mark_node;
9262 return expression;
9265 /* Parse a constant-expression.
9267 constant-expression:
9268 conditional-expression
9270 If ALLOW_NON_CONSTANT_P a non-constant expression is silently
9271 accepted. If ALLOW_NON_CONSTANT_P is true and the expression is not
9272 constant, *NON_CONSTANT_P is set to TRUE. If ALLOW_NON_CONSTANT_P
9273 is false, NON_CONSTANT_P should be NULL. */
9275 static cp_expr
9276 cp_parser_constant_expression (cp_parser* parser,
9277 bool allow_non_constant_p,
9278 bool *non_constant_p)
9280 bool saved_integral_constant_expression_p;
9281 bool saved_allow_non_integral_constant_expression_p;
9282 bool saved_non_integral_constant_expression_p;
9283 cp_expr expression;
9285 /* It might seem that we could simply parse the
9286 conditional-expression, and then check to see if it were
9287 TREE_CONSTANT. However, an expression that is TREE_CONSTANT is
9288 one that the compiler can figure out is constant, possibly after
9289 doing some simplifications or optimizations. The standard has a
9290 precise definition of constant-expression, and we must honor
9291 that, even though it is somewhat more restrictive.
9293 For example:
9295 int i[(2, 3)];
9297 is not a legal declaration, because `(2, 3)' is not a
9298 constant-expression. The `,' operator is forbidden in a
9299 constant-expression. However, GCC's constant-folding machinery
9300 will fold this operation to an INTEGER_CST for `3'. */
9302 /* Save the old settings. */
9303 saved_integral_constant_expression_p = parser->integral_constant_expression_p;
9304 saved_allow_non_integral_constant_expression_p
9305 = parser->allow_non_integral_constant_expression_p;
9306 saved_non_integral_constant_expression_p = parser->non_integral_constant_expression_p;
9307 /* We are now parsing a constant-expression. */
9308 parser->integral_constant_expression_p = true;
9309 parser->allow_non_integral_constant_expression_p
9310 = (allow_non_constant_p || cxx_dialect >= cxx11);
9311 parser->non_integral_constant_expression_p = false;
9312 /* Although the grammar says "conditional-expression", we parse an
9313 "assignment-expression", which also permits "throw-expression"
9314 and the use of assignment operators. In the case that
9315 ALLOW_NON_CONSTANT_P is false, we get better errors than we would
9316 otherwise. In the case that ALLOW_NON_CONSTANT_P is true, it is
9317 actually essential that we look for an assignment-expression.
9318 For example, cp_parser_initializer_clauses uses this function to
9319 determine whether a particular assignment-expression is in fact
9320 constant. */
9321 expression = cp_parser_assignment_expression (parser);
9322 /* Restore the old settings. */
9323 parser->integral_constant_expression_p
9324 = saved_integral_constant_expression_p;
9325 parser->allow_non_integral_constant_expression_p
9326 = saved_allow_non_integral_constant_expression_p;
9327 if (cxx_dialect >= cxx11)
9329 /* Require an rvalue constant expression here; that's what our
9330 callers expect. Reference constant expressions are handled
9331 separately in e.g. cp_parser_template_argument. */
9332 bool is_const = potential_rvalue_constant_expression (expression);
9333 parser->non_integral_constant_expression_p = !is_const;
9334 if (!is_const && !allow_non_constant_p)
9335 require_potential_rvalue_constant_expression (expression);
9337 if (allow_non_constant_p)
9338 *non_constant_p = parser->non_integral_constant_expression_p;
9339 parser->non_integral_constant_expression_p
9340 = saved_non_integral_constant_expression_p;
9342 return expression;
9345 /* Parse __builtin_offsetof.
9347 offsetof-expression:
9348 "__builtin_offsetof" "(" type-id "," offsetof-member-designator ")"
9350 offsetof-member-designator:
9351 id-expression
9352 | offsetof-member-designator "." id-expression
9353 | offsetof-member-designator "[" expression "]"
9354 | offsetof-member-designator "->" id-expression */
9356 static cp_expr
9357 cp_parser_builtin_offsetof (cp_parser *parser)
9359 int save_ice_p, save_non_ice_p;
9360 tree type;
9361 cp_expr expr;
9362 cp_id_kind dummy;
9363 cp_token *token;
9364 location_t finish_loc;
9366 /* We're about to accept non-integral-constant things, but will
9367 definitely yield an integral constant expression. Save and
9368 restore these values around our local parsing. */
9369 save_ice_p = parser->integral_constant_expression_p;
9370 save_non_ice_p = parser->non_integral_constant_expression_p;
9372 location_t start_loc = cp_lexer_peek_token (parser->lexer)->location;
9374 /* Consume the "__builtin_offsetof" token. */
9375 cp_lexer_consume_token (parser->lexer);
9376 /* Consume the opening `('. */
9377 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
9378 /* Parse the type-id. */
9379 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
9380 type = cp_parser_type_id (parser);
9381 /* Look for the `,'. */
9382 cp_parser_require (parser, CPP_COMMA, RT_COMMA);
9383 token = cp_lexer_peek_token (parser->lexer);
9385 /* Build the (type *)null that begins the traditional offsetof macro. */
9386 expr = build_static_cast (build_pointer_type (type), null_pointer_node,
9387 tf_warning_or_error);
9389 /* Parse the offsetof-member-designator. We begin as if we saw "expr->". */
9390 expr = cp_parser_postfix_dot_deref_expression (parser, CPP_DEREF, expr,
9391 true, &dummy, token->location);
9392 while (true)
9394 token = cp_lexer_peek_token (parser->lexer);
9395 switch (token->type)
9397 case CPP_OPEN_SQUARE:
9398 /* offsetof-member-designator "[" expression "]" */
9399 expr = cp_parser_postfix_open_square_expression (parser, expr,
9400 true, false);
9401 break;
9403 case CPP_DEREF:
9404 /* offsetof-member-designator "->" identifier */
9405 expr = grok_array_decl (token->location, expr,
9406 integer_zero_node, false);
9407 /* FALLTHRU */
9409 case CPP_DOT:
9410 /* offsetof-member-designator "." identifier */
9411 cp_lexer_consume_token (parser->lexer);
9412 expr = cp_parser_postfix_dot_deref_expression (parser, CPP_DOT,
9413 expr, true, &dummy,
9414 token->location);
9415 break;
9417 case CPP_CLOSE_PAREN:
9418 /* Consume the ")" token. */
9419 finish_loc = cp_lexer_peek_token (parser->lexer)->location;
9420 cp_lexer_consume_token (parser->lexer);
9421 goto success;
9423 default:
9424 /* Error. We know the following require will fail, but
9425 that gives the proper error message. */
9426 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
9427 cp_parser_skip_to_closing_parenthesis (parser, true, false, true);
9428 expr = error_mark_node;
9429 goto failure;
9433 success:
9434 /* Make a location of the form:
9435 __builtin_offsetof (struct s, f)
9436 ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
9437 with caret at the type-id, ranging from the start of the
9438 "_builtin_offsetof" token to the close paren. */
9439 loc = make_location (loc, start_loc, finish_loc);
9440 /* The result will be an INTEGER_CST, so we need to explicitly
9441 preserve the location. */
9442 expr = cp_expr (finish_offsetof (expr, loc), loc);
9444 failure:
9445 parser->integral_constant_expression_p = save_ice_p;
9446 parser->non_integral_constant_expression_p = save_non_ice_p;
9448 return expr;
9451 /* Parse a trait expression.
9453 Returns a representation of the expression, the underlying type
9454 of the type at issue when KEYWORD is RID_UNDERLYING_TYPE. */
9456 static tree
9457 cp_parser_trait_expr (cp_parser* parser, enum rid keyword)
9459 cp_trait_kind kind;
9460 tree type1, type2 = NULL_TREE;
9461 bool binary = false;
9462 bool variadic = false;
9464 switch (keyword)
9466 case RID_HAS_NOTHROW_ASSIGN:
9467 kind = CPTK_HAS_NOTHROW_ASSIGN;
9468 break;
9469 case RID_HAS_NOTHROW_CONSTRUCTOR:
9470 kind = CPTK_HAS_NOTHROW_CONSTRUCTOR;
9471 break;
9472 case RID_HAS_NOTHROW_COPY:
9473 kind = CPTK_HAS_NOTHROW_COPY;
9474 break;
9475 case RID_HAS_TRIVIAL_ASSIGN:
9476 kind = CPTK_HAS_TRIVIAL_ASSIGN;
9477 break;
9478 case RID_HAS_TRIVIAL_CONSTRUCTOR:
9479 kind = CPTK_HAS_TRIVIAL_CONSTRUCTOR;
9480 break;
9481 case RID_HAS_TRIVIAL_COPY:
9482 kind = CPTK_HAS_TRIVIAL_COPY;
9483 break;
9484 case RID_HAS_TRIVIAL_DESTRUCTOR:
9485 kind = CPTK_HAS_TRIVIAL_DESTRUCTOR;
9486 break;
9487 case RID_HAS_VIRTUAL_DESTRUCTOR:
9488 kind = CPTK_HAS_VIRTUAL_DESTRUCTOR;
9489 break;
9490 case RID_IS_ABSTRACT:
9491 kind = CPTK_IS_ABSTRACT;
9492 break;
9493 case RID_IS_BASE_OF:
9494 kind = CPTK_IS_BASE_OF;
9495 binary = true;
9496 break;
9497 case RID_IS_CLASS:
9498 kind = CPTK_IS_CLASS;
9499 break;
9500 case RID_IS_EMPTY:
9501 kind = CPTK_IS_EMPTY;
9502 break;
9503 case RID_IS_ENUM:
9504 kind = CPTK_IS_ENUM;
9505 break;
9506 case RID_IS_FINAL:
9507 kind = CPTK_IS_FINAL;
9508 break;
9509 case RID_IS_LITERAL_TYPE:
9510 kind = CPTK_IS_LITERAL_TYPE;
9511 break;
9512 case RID_IS_POD:
9513 kind = CPTK_IS_POD;
9514 break;
9515 case RID_IS_POLYMORPHIC:
9516 kind = CPTK_IS_POLYMORPHIC;
9517 break;
9518 case RID_IS_SAME_AS:
9519 kind = CPTK_IS_SAME_AS;
9520 binary = true;
9521 break;
9522 case RID_IS_STD_LAYOUT:
9523 kind = CPTK_IS_STD_LAYOUT;
9524 break;
9525 case RID_IS_TRIVIAL:
9526 kind = CPTK_IS_TRIVIAL;
9527 break;
9528 case RID_IS_TRIVIALLY_ASSIGNABLE:
9529 kind = CPTK_IS_TRIVIALLY_ASSIGNABLE;
9530 binary = true;
9531 break;
9532 case RID_IS_TRIVIALLY_CONSTRUCTIBLE:
9533 kind = CPTK_IS_TRIVIALLY_CONSTRUCTIBLE;
9534 variadic = true;
9535 break;
9536 case RID_IS_TRIVIALLY_COPYABLE:
9537 kind = CPTK_IS_TRIVIALLY_COPYABLE;
9538 break;
9539 case RID_IS_UNION:
9540 kind = CPTK_IS_UNION;
9541 break;
9542 case RID_UNDERLYING_TYPE:
9543 kind = CPTK_UNDERLYING_TYPE;
9544 break;
9545 case RID_BASES:
9546 kind = CPTK_BASES;
9547 break;
9548 case RID_DIRECT_BASES:
9549 kind = CPTK_DIRECT_BASES;
9550 break;
9551 default:
9552 gcc_unreachable ();
9555 /* Consume the token. */
9556 cp_lexer_consume_token (parser->lexer);
9558 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
9561 type_id_in_expr_sentinel s (parser);
9562 type1 = cp_parser_type_id (parser);
9565 if (type1 == error_mark_node)
9566 return error_mark_node;
9568 if (binary)
9570 cp_parser_require (parser, CPP_COMMA, RT_COMMA);
9573 type_id_in_expr_sentinel s (parser);
9574 type2 = cp_parser_type_id (parser);
9577 if (type2 == error_mark_node)
9578 return error_mark_node;
9580 else if (variadic)
9582 while (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
9584 cp_lexer_consume_token (parser->lexer);
9585 tree elt = cp_parser_type_id (parser);
9586 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
9588 cp_lexer_consume_token (parser->lexer);
9589 elt = make_pack_expansion (elt);
9591 if (elt == error_mark_node)
9592 return error_mark_node;
9593 type2 = tree_cons (NULL_TREE, elt, type2);
9597 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
9599 /* Complete the trait expression, which may mean either processing
9600 the trait expr now or saving it for template instantiation. */
9601 switch(kind)
9603 case CPTK_UNDERLYING_TYPE:
9604 return finish_underlying_type (type1);
9605 case CPTK_BASES:
9606 return finish_bases (type1, false);
9607 case CPTK_DIRECT_BASES:
9608 return finish_bases (type1, true);
9609 default:
9610 return finish_trait_expr (kind, type1, type2);
9614 /* Lambdas that appear in variable initializer or default argument scope
9615 get that in their mangling, so we need to record it. We might as well
9616 use the count for function and namespace scopes as well. */
9617 static GTY(()) tree lambda_scope;
9618 static GTY(()) int lambda_count;
9619 struct GTY(()) tree_int
9621 tree t;
9622 int i;
9624 static GTY(()) vec<tree_int, va_gc> *lambda_scope_stack;
9626 static void
9627 start_lambda_scope (tree decl)
9629 tree_int ti;
9630 gcc_assert (decl);
9631 /* Once we're inside a function, we ignore other scopes and just push
9632 the function again so that popping works properly. */
9633 if (current_function_decl && TREE_CODE (decl) != FUNCTION_DECL)
9634 decl = current_function_decl;
9635 ti.t = lambda_scope;
9636 ti.i = lambda_count;
9637 vec_safe_push (lambda_scope_stack, ti);
9638 if (lambda_scope != decl)
9640 /* Don't reset the count if we're still in the same function. */
9641 lambda_scope = decl;
9642 lambda_count = 0;
9646 static void
9647 record_lambda_scope (tree lambda)
9649 LAMBDA_EXPR_EXTRA_SCOPE (lambda) = lambda_scope;
9650 LAMBDA_EXPR_DISCRIMINATOR (lambda) = lambda_count++;
9653 static void
9654 finish_lambda_scope (void)
9656 tree_int *p = &lambda_scope_stack->last ();
9657 if (lambda_scope != p->t)
9659 lambda_scope = p->t;
9660 lambda_count = p->i;
9662 lambda_scope_stack->pop ();
9665 /* Parse a lambda expression.
9667 lambda-expression:
9668 lambda-introducer lambda-declarator [opt] compound-statement
9670 Returns a representation of the expression. */
9672 static cp_expr
9673 cp_parser_lambda_expression (cp_parser* parser)
9675 tree lambda_expr = build_lambda_expr ();
9676 tree type;
9677 bool ok = true;
9678 cp_token *token = cp_lexer_peek_token (parser->lexer);
9679 cp_token_position start = 0;
9681 LAMBDA_EXPR_LOCATION (lambda_expr) = token->location;
9683 if (cp_unevaluated_operand)
9685 if (!token->error_reported)
9687 error_at (LAMBDA_EXPR_LOCATION (lambda_expr),
9688 "lambda-expression in unevaluated context");
9689 token->error_reported = true;
9691 ok = false;
9693 else if (parser->in_template_argument_list_p)
9695 if (!token->error_reported)
9697 error_at (token->location, "lambda-expression in template-argument");
9698 token->error_reported = true;
9700 ok = false;
9703 /* We may be in the middle of deferred access check. Disable
9704 it now. */
9705 push_deferring_access_checks (dk_no_deferred);
9707 cp_parser_lambda_introducer (parser, lambda_expr);
9709 type = begin_lambda_type (lambda_expr);
9710 if (type == error_mark_node)
9711 return error_mark_node;
9713 record_lambda_scope (lambda_expr);
9715 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
9716 determine_visibility (TYPE_NAME (type));
9718 /* Now that we've started the type, add the capture fields for any
9719 explicit captures. */
9720 register_capture_members (LAMBDA_EXPR_CAPTURE_LIST (lambda_expr));
9723 /* Inside the class, surrounding template-parameter-lists do not apply. */
9724 unsigned int saved_num_template_parameter_lists
9725 = parser->num_template_parameter_lists;
9726 unsigned char in_statement = parser->in_statement;
9727 bool in_switch_statement_p = parser->in_switch_statement_p;
9728 bool fully_implicit_function_template_p
9729 = parser->fully_implicit_function_template_p;
9730 tree implicit_template_parms = parser->implicit_template_parms;
9731 cp_binding_level* implicit_template_scope = parser->implicit_template_scope;
9732 bool auto_is_implicit_function_template_parm_p
9733 = parser->auto_is_implicit_function_template_parm_p;
9735 parser->num_template_parameter_lists = 0;
9736 parser->in_statement = 0;
9737 parser->in_switch_statement_p = false;
9738 parser->fully_implicit_function_template_p = false;
9739 parser->implicit_template_parms = 0;
9740 parser->implicit_template_scope = 0;
9741 parser->auto_is_implicit_function_template_parm_p = false;
9743 /* By virtue of defining a local class, a lambda expression has access to
9744 the private variables of enclosing classes. */
9746 ok &= cp_parser_lambda_declarator_opt (parser, lambda_expr);
9748 if (ok)
9750 if (!cp_parser_error_occurred (parser)
9751 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE)
9752 && cp_parser_start_tentative_firewall (parser))
9753 start = token;
9754 cp_parser_lambda_body (parser, lambda_expr);
9756 else if (cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
9758 if (cp_parser_skip_to_closing_brace (parser))
9759 cp_lexer_consume_token (parser->lexer);
9762 /* The capture list was built up in reverse order; fix that now. */
9763 LAMBDA_EXPR_CAPTURE_LIST (lambda_expr)
9764 = nreverse (LAMBDA_EXPR_CAPTURE_LIST (lambda_expr));
9766 if (ok)
9767 maybe_add_lambda_conv_op (type);
9769 type = finish_struct (type, /*attributes=*/NULL_TREE);
9771 parser->num_template_parameter_lists = saved_num_template_parameter_lists;
9772 parser->in_statement = in_statement;
9773 parser->in_switch_statement_p = in_switch_statement_p;
9774 parser->fully_implicit_function_template_p
9775 = fully_implicit_function_template_p;
9776 parser->implicit_template_parms = implicit_template_parms;
9777 parser->implicit_template_scope = implicit_template_scope;
9778 parser->auto_is_implicit_function_template_parm_p
9779 = auto_is_implicit_function_template_parm_p;
9782 /* This field is only used during parsing of the lambda. */
9783 LAMBDA_EXPR_THIS_CAPTURE (lambda_expr) = NULL_TREE;
9785 /* This lambda shouldn't have any proxies left at this point. */
9786 gcc_assert (LAMBDA_EXPR_PENDING_PROXIES (lambda_expr) == NULL);
9787 /* And now that we're done, push proxies for an enclosing lambda. */
9788 insert_pending_capture_proxies ();
9790 if (ok)
9791 lambda_expr = build_lambda_object (lambda_expr);
9792 else
9793 lambda_expr = error_mark_node;
9795 cp_parser_end_tentative_firewall (parser, start, lambda_expr);
9797 pop_deferring_access_checks ();
9799 return lambda_expr;
9802 /* Parse the beginning of a lambda expression.
9804 lambda-introducer:
9805 [ lambda-capture [opt] ]
9807 LAMBDA_EXPR is the current representation of the lambda expression. */
9809 static void
9810 cp_parser_lambda_introducer (cp_parser* parser, tree lambda_expr)
9812 /* Need commas after the first capture. */
9813 bool first = true;
9815 /* Eat the leading `['. */
9816 cp_parser_require (parser, CPP_OPEN_SQUARE, RT_OPEN_SQUARE);
9818 /* Record default capture mode. "[&" "[=" "[&," "[=," */
9819 if (cp_lexer_next_token_is (parser->lexer, CPP_AND)
9820 && cp_lexer_peek_nth_token (parser->lexer, 2)->type != CPP_NAME)
9821 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) = CPLD_REFERENCE;
9822 else if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
9823 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) = CPLD_COPY;
9825 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) != CPLD_NONE)
9827 cp_lexer_consume_token (parser->lexer);
9828 first = false;
9831 while (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_SQUARE))
9833 cp_token* capture_token;
9834 tree capture_id;
9835 tree capture_init_expr;
9836 cp_id_kind idk = CP_ID_KIND_NONE;
9837 bool explicit_init_p = false;
9839 enum capture_kind_type
9841 BY_COPY,
9842 BY_REFERENCE
9844 enum capture_kind_type capture_kind = BY_COPY;
9846 if (cp_lexer_next_token_is (parser->lexer, CPP_EOF))
9848 error ("expected end of capture-list");
9849 return;
9852 if (first)
9853 first = false;
9854 else
9855 cp_parser_require (parser, CPP_COMMA, RT_COMMA);
9857 /* Possibly capture `this'. */
9858 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_THIS))
9860 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
9861 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) == CPLD_COPY)
9862 pedwarn (loc, 0, "explicit by-copy capture of %<this%> redundant "
9863 "with by-copy capture default");
9864 cp_lexer_consume_token (parser->lexer);
9865 add_capture (lambda_expr,
9866 /*id=*/this_identifier,
9867 /*initializer=*/finish_this_expr(),
9868 /*by_reference_p=*/false,
9869 explicit_init_p);
9870 continue;
9873 /* Remember whether we want to capture as a reference or not. */
9874 if (cp_lexer_next_token_is (parser->lexer, CPP_AND))
9876 capture_kind = BY_REFERENCE;
9877 cp_lexer_consume_token (parser->lexer);
9880 /* Get the identifier. */
9881 capture_token = cp_lexer_peek_token (parser->lexer);
9882 capture_id = cp_parser_identifier (parser);
9884 if (capture_id == error_mark_node)
9885 /* Would be nice to have a cp_parser_skip_to_closing_x for general
9886 delimiters, but I modified this to stop on unnested ']' as well. It
9887 was already changed to stop on unnested '}', so the
9888 "closing_parenthesis" name is no more misleading with my change. */
9890 cp_parser_skip_to_closing_parenthesis (parser,
9891 /*recovering=*/true,
9892 /*or_comma=*/true,
9893 /*consume_paren=*/true);
9894 break;
9897 /* Find the initializer for this capture. */
9898 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ)
9899 || cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN)
9900 || cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
9902 bool direct, non_constant;
9903 /* An explicit initializer exists. */
9904 if (cxx_dialect < cxx14)
9905 pedwarn (input_location, 0,
9906 "lambda capture initializers "
9907 "only available with -std=c++14 or -std=gnu++14");
9908 capture_init_expr = cp_parser_initializer (parser, &direct,
9909 &non_constant);
9910 explicit_init_p = true;
9911 if (capture_init_expr == NULL_TREE)
9913 error ("empty initializer for lambda init-capture");
9914 capture_init_expr = error_mark_node;
9917 else
9919 const char* error_msg;
9921 /* Turn the identifier into an id-expression. */
9922 capture_init_expr
9923 = cp_parser_lookup_name_simple (parser, capture_id,
9924 capture_token->location);
9926 if (capture_init_expr == error_mark_node)
9928 unqualified_name_lookup_error (capture_id);
9929 continue;
9931 else if (DECL_P (capture_init_expr)
9932 && (!VAR_P (capture_init_expr)
9933 && TREE_CODE (capture_init_expr) != PARM_DECL))
9935 error_at (capture_token->location,
9936 "capture of non-variable %qD ",
9937 capture_init_expr);
9938 inform (DECL_SOURCE_LOCATION (capture_init_expr),
9939 "%q#D declared here", capture_init_expr);
9940 continue;
9942 if (VAR_P (capture_init_expr)
9943 && decl_storage_duration (capture_init_expr) != dk_auto)
9945 if (pedwarn (capture_token->location, 0, "capture of variable "
9946 "%qD with non-automatic storage duration",
9947 capture_init_expr))
9948 inform (DECL_SOURCE_LOCATION (capture_init_expr),
9949 "%q#D declared here", capture_init_expr);
9950 continue;
9953 capture_init_expr
9954 = finish_id_expression
9955 (capture_id,
9956 capture_init_expr,
9957 parser->scope,
9958 &idk,
9959 /*integral_constant_expression_p=*/false,
9960 /*allow_non_integral_constant_expression_p=*/false,
9961 /*non_integral_constant_expression_p=*/NULL,
9962 /*template_p=*/false,
9963 /*done=*/true,
9964 /*address_p=*/false,
9965 /*template_arg_p=*/false,
9966 &error_msg,
9967 capture_token->location);
9969 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
9971 cp_lexer_consume_token (parser->lexer);
9972 capture_init_expr = make_pack_expansion (capture_init_expr);
9974 else
9975 check_for_bare_parameter_packs (capture_init_expr);
9978 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) != CPLD_NONE
9979 && !explicit_init_p)
9981 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) == CPLD_COPY
9982 && capture_kind == BY_COPY)
9983 pedwarn (capture_token->location, 0, "explicit by-copy capture "
9984 "of %qD redundant with by-copy capture default",
9985 capture_id);
9986 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) == CPLD_REFERENCE
9987 && capture_kind == BY_REFERENCE)
9988 pedwarn (capture_token->location, 0, "explicit by-reference "
9989 "capture of %qD redundant with by-reference capture "
9990 "default", capture_id);
9993 add_capture (lambda_expr,
9994 capture_id,
9995 capture_init_expr,
9996 /*by_reference_p=*/capture_kind == BY_REFERENCE,
9997 explicit_init_p);
10000 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
10003 /* Parse the (optional) middle of a lambda expression.
10005 lambda-declarator:
10006 < template-parameter-list [opt] >
10007 ( parameter-declaration-clause [opt] )
10008 attribute-specifier [opt]
10009 mutable [opt]
10010 exception-specification [opt]
10011 lambda-return-type-clause [opt]
10013 LAMBDA_EXPR is the current representation of the lambda expression. */
10015 static bool
10016 cp_parser_lambda_declarator_opt (cp_parser* parser, tree lambda_expr)
10018 /* 5.1.1.4 of the standard says:
10019 If a lambda-expression does not include a lambda-declarator, it is as if
10020 the lambda-declarator were ().
10021 This means an empty parameter list, no attributes, and no exception
10022 specification. */
10023 tree param_list = void_list_node;
10024 tree attributes = NULL_TREE;
10025 tree exception_spec = NULL_TREE;
10026 tree template_param_list = NULL_TREE;
10027 tree tx_qual = NULL_TREE;
10029 /* The template-parameter-list is optional, but must begin with
10030 an opening angle if present. */
10031 if (cp_lexer_next_token_is (parser->lexer, CPP_LESS))
10033 if (cxx_dialect < cxx14)
10034 pedwarn (parser->lexer->next_token->location, 0,
10035 "lambda templates are only available with "
10036 "-std=c++14 or -std=gnu++14");
10038 cp_lexer_consume_token (parser->lexer);
10040 template_param_list = cp_parser_template_parameter_list (parser);
10042 cp_parser_skip_to_end_of_template_parameter_list (parser);
10044 /* We just processed one more parameter list. */
10045 ++parser->num_template_parameter_lists;
10048 /* The parameter-declaration-clause is optional (unless
10049 template-parameter-list was given), but must begin with an
10050 opening parenthesis if present. */
10051 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
10053 cp_lexer_consume_token (parser->lexer);
10055 begin_scope (sk_function_parms, /*entity=*/NULL_TREE);
10057 /* Parse parameters. */
10058 param_list = cp_parser_parameter_declaration_clause (parser);
10060 /* Default arguments shall not be specified in the
10061 parameter-declaration-clause of a lambda-declarator. */
10062 for (tree t = param_list; t; t = TREE_CHAIN (t))
10063 if (TREE_PURPOSE (t) && cxx_dialect < cxx14)
10064 pedwarn (DECL_SOURCE_LOCATION (TREE_VALUE (t)), OPT_Wpedantic,
10065 "default argument specified for lambda parameter");
10067 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
10069 attributes = cp_parser_attributes_opt (parser);
10071 /* Parse optional `mutable' keyword. */
10072 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_MUTABLE))
10074 cp_lexer_consume_token (parser->lexer);
10075 LAMBDA_EXPR_MUTABLE_P (lambda_expr) = 1;
10078 tx_qual = cp_parser_tx_qualifier_opt (parser);
10080 /* Parse optional exception specification. */
10081 exception_spec = cp_parser_exception_specification_opt (parser);
10083 /* Parse optional trailing return type. */
10084 if (cp_lexer_next_token_is (parser->lexer, CPP_DEREF))
10086 cp_lexer_consume_token (parser->lexer);
10087 LAMBDA_EXPR_RETURN_TYPE (lambda_expr)
10088 = cp_parser_trailing_type_id (parser);
10091 /* The function parameters must be in scope all the way until after the
10092 trailing-return-type in case of decltype. */
10093 pop_bindings_and_leave_scope ();
10095 else if (template_param_list != NULL_TREE) // generate diagnostic
10096 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
10098 /* Create the function call operator.
10100 Messing with declarators like this is no uglier than building up the
10101 FUNCTION_DECL by hand, and this is less likely to get out of sync with
10102 other code. */
10104 cp_decl_specifier_seq return_type_specs;
10105 cp_declarator* declarator;
10106 tree fco;
10107 int quals;
10108 void *p;
10110 clear_decl_specs (&return_type_specs);
10111 if (LAMBDA_EXPR_RETURN_TYPE (lambda_expr))
10112 return_type_specs.type = LAMBDA_EXPR_RETURN_TYPE (lambda_expr);
10113 else
10114 /* Maybe we will deduce the return type later. */
10115 return_type_specs.type = make_auto ();
10117 p = obstack_alloc (&declarator_obstack, 0);
10119 declarator = make_id_declarator (NULL_TREE, ansi_opname (CALL_EXPR),
10120 sfk_none);
10122 quals = (LAMBDA_EXPR_MUTABLE_P (lambda_expr)
10123 ? TYPE_UNQUALIFIED : TYPE_QUAL_CONST);
10124 declarator = make_call_declarator (declarator, param_list, quals,
10125 VIRT_SPEC_UNSPECIFIED,
10126 REF_QUAL_NONE,
10127 tx_qual,
10128 exception_spec,
10129 /*late_return_type=*/NULL_TREE,
10130 /*requires_clause*/NULL_TREE);
10131 declarator->id_loc = LAMBDA_EXPR_LOCATION (lambda_expr);
10133 fco = grokmethod (&return_type_specs,
10134 declarator,
10135 attributes);
10136 if (fco != error_mark_node)
10138 DECL_INITIALIZED_IN_CLASS_P (fco) = 1;
10139 DECL_ARTIFICIAL (fco) = 1;
10140 /* Give the object parameter a different name. */
10141 DECL_NAME (DECL_ARGUMENTS (fco)) = get_identifier ("__closure");
10142 if (LAMBDA_EXPR_RETURN_TYPE (lambda_expr))
10143 TYPE_HAS_LATE_RETURN_TYPE (TREE_TYPE (fco)) = 1;
10145 if (template_param_list)
10147 fco = finish_member_template_decl (fco);
10148 finish_template_decl (template_param_list);
10149 --parser->num_template_parameter_lists;
10151 else if (parser->fully_implicit_function_template_p)
10152 fco = finish_fully_implicit_template (parser, fco);
10154 finish_member_declaration (fco);
10156 obstack_free (&declarator_obstack, p);
10158 return (fco != error_mark_node);
10162 /* Parse the body of a lambda expression, which is simply
10164 compound-statement
10166 but which requires special handling.
10167 LAMBDA_EXPR is the current representation of the lambda expression. */
10169 static void
10170 cp_parser_lambda_body (cp_parser* parser, tree lambda_expr)
10172 bool nested = (current_function_decl != NULL_TREE);
10173 bool local_variables_forbidden_p = parser->local_variables_forbidden_p;
10174 if (nested)
10175 push_function_context ();
10176 else
10177 /* Still increment function_depth so that we don't GC in the
10178 middle of an expression. */
10179 ++function_depth;
10180 vec<tree> omp_privatization_save;
10181 save_omp_privatization_clauses (omp_privatization_save);
10182 /* Clear this in case we're in the middle of a default argument. */
10183 parser->local_variables_forbidden_p = false;
10185 /* Finish the function call operator
10186 - class_specifier
10187 + late_parsing_for_member
10188 + function_definition_after_declarator
10189 + ctor_initializer_opt_and_function_body */
10191 tree fco = lambda_function (lambda_expr);
10192 tree body;
10193 bool done = false;
10194 tree compound_stmt;
10195 tree cap;
10197 /* Let the front end know that we are going to be defining this
10198 function. */
10199 start_preparsed_function (fco,
10200 NULL_TREE,
10201 SF_PRE_PARSED | SF_INCLASS_INLINE);
10203 start_lambda_scope (fco);
10204 body = begin_function_body ();
10206 if (!cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
10207 goto out;
10209 /* Push the proxies for any explicit captures. */
10210 for (cap = LAMBDA_EXPR_CAPTURE_LIST (lambda_expr); cap;
10211 cap = TREE_CHAIN (cap))
10212 build_capture_proxy (TREE_PURPOSE (cap));
10214 compound_stmt = begin_compound_stmt (0);
10216 /* 5.1.1.4 of the standard says:
10217 If a lambda-expression does not include a trailing-return-type, it
10218 is as if the trailing-return-type denotes the following type:
10219 * if the compound-statement is of the form
10220 { return attribute-specifier [opt] expression ; }
10221 the type of the returned expression after lvalue-to-rvalue
10222 conversion (_conv.lval_ 4.1), array-to-pointer conversion
10223 (_conv.array_ 4.2), and function-to-pointer conversion
10224 (_conv.func_ 4.3);
10225 * otherwise, void. */
10227 /* In a lambda that has neither a lambda-return-type-clause
10228 nor a deducible form, errors should be reported for return statements
10229 in the body. Since we used void as the placeholder return type, parsing
10230 the body as usual will give such desired behavior. */
10231 if (!LAMBDA_EXPR_RETURN_TYPE (lambda_expr)
10232 && cp_lexer_peek_nth_token (parser->lexer, 1)->keyword == RID_RETURN
10233 && cp_lexer_peek_nth_token (parser->lexer, 2)->type != CPP_SEMICOLON)
10235 tree expr = NULL_TREE;
10236 cp_id_kind idk = CP_ID_KIND_NONE;
10238 /* Parse tentatively in case there's more after the initial return
10239 statement. */
10240 cp_parser_parse_tentatively (parser);
10242 cp_parser_require_keyword (parser, RID_RETURN, RT_RETURN);
10244 expr = cp_parser_expression (parser, &idk);
10246 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
10247 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
10249 if (cp_parser_parse_definitely (parser))
10251 if (!processing_template_decl)
10253 tree type = lambda_return_type (expr);
10254 apply_deduced_return_type (fco, type);
10255 if (type == error_mark_node)
10256 expr = error_mark_node;
10259 /* Will get error here if type not deduced yet. */
10260 finish_return_stmt (expr);
10262 done = true;
10266 if (!done)
10268 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_LABEL))
10269 cp_parser_label_declaration (parser);
10270 cp_parser_statement_seq_opt (parser, NULL_TREE);
10271 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
10274 finish_compound_stmt (compound_stmt);
10276 out:
10277 finish_function_body (body);
10278 finish_lambda_scope ();
10280 /* Finish the function and generate code for it if necessary. */
10281 tree fn = finish_function (/*inline*/2);
10283 /* Only expand if the call op is not a template. */
10284 if (!DECL_TEMPLATE_INFO (fco))
10285 expand_or_defer_fn (fn);
10288 restore_omp_privatization_clauses (omp_privatization_save);
10289 parser->local_variables_forbidden_p = local_variables_forbidden_p;
10290 if (nested)
10291 pop_function_context();
10292 else
10293 --function_depth;
10296 /* Statements [gram.stmt.stmt] */
10298 /* Parse a statement.
10300 statement:
10301 labeled-statement
10302 expression-statement
10303 compound-statement
10304 selection-statement
10305 iteration-statement
10306 jump-statement
10307 declaration-statement
10308 try-block
10310 C++11:
10312 statement:
10313 labeled-statement
10314 attribute-specifier-seq (opt) expression-statement
10315 attribute-specifier-seq (opt) compound-statement
10316 attribute-specifier-seq (opt) selection-statement
10317 attribute-specifier-seq (opt) iteration-statement
10318 attribute-specifier-seq (opt) jump-statement
10319 declaration-statement
10320 attribute-specifier-seq (opt) try-block
10322 TM Extension:
10324 statement:
10325 atomic-statement
10327 IN_COMPOUND is true when the statement is nested inside a
10328 cp_parser_compound_statement; this matters for certain pragmas.
10330 If IF_P is not NULL, *IF_P is set to indicate whether the statement
10331 is a (possibly labeled) if statement which is not enclosed in braces
10332 and has an else clause. This is used to implement -Wparentheses.
10334 CHAIN is a vector of if-else-if conditions. */
10336 static void
10337 cp_parser_statement (cp_parser* parser, tree in_statement_expr,
10338 bool in_compound, bool *if_p, vec<tree> *chain)
10340 tree statement, std_attrs = NULL_TREE;
10341 cp_token *token;
10342 location_t statement_location, attrs_location;
10344 restart:
10345 if (if_p != NULL)
10346 *if_p = false;
10347 /* There is no statement yet. */
10348 statement = NULL_TREE;
10350 saved_token_sentinel saved_tokens (parser->lexer);
10351 attrs_location = cp_lexer_peek_token (parser->lexer)->location;
10352 if (c_dialect_objc ())
10353 /* In obj-c++, seeing '[[' might be the either the beginning of
10354 c++11 attributes, or a nested objc-message-expression. So
10355 let's parse the c++11 attributes tentatively. */
10356 cp_parser_parse_tentatively (parser);
10357 std_attrs = cp_parser_std_attribute_spec_seq (parser);
10358 if (c_dialect_objc ())
10360 if (!cp_parser_parse_definitely (parser))
10361 std_attrs = NULL_TREE;
10364 /* Peek at the next token. */
10365 token = cp_lexer_peek_token (parser->lexer);
10366 /* Remember the location of the first token in the statement. */
10367 statement_location = token->location;
10368 /* If this is a keyword, then that will often determine what kind of
10369 statement we have. */
10370 if (token->type == CPP_KEYWORD)
10372 enum rid keyword = token->keyword;
10374 switch (keyword)
10376 case RID_CASE:
10377 case RID_DEFAULT:
10378 /* Looks like a labeled-statement with a case label.
10379 Parse the label, and then use tail recursion to parse
10380 the statement. */
10381 cp_parser_label_for_labeled_statement (parser, std_attrs);
10382 in_compound = false;
10383 goto restart;
10385 case RID_IF:
10386 case RID_SWITCH:
10387 statement = cp_parser_selection_statement (parser, if_p, chain);
10388 break;
10390 case RID_WHILE:
10391 case RID_DO:
10392 case RID_FOR:
10393 statement = cp_parser_iteration_statement (parser, if_p, false);
10394 break;
10396 case RID_CILK_FOR:
10397 if (!flag_cilkplus)
10399 error_at (cp_lexer_peek_token (parser->lexer)->location,
10400 "-fcilkplus must be enabled to use %<_Cilk_for%>");
10401 cp_lexer_consume_token (parser->lexer);
10402 statement = error_mark_node;
10404 else
10405 statement = cp_parser_cilk_for (parser, integer_zero_node, if_p);
10406 break;
10408 case RID_BREAK:
10409 case RID_CONTINUE:
10410 case RID_RETURN:
10411 case RID_GOTO:
10412 statement = cp_parser_jump_statement (parser);
10413 break;
10415 case RID_CILK_SYNC:
10416 cp_lexer_consume_token (parser->lexer);
10417 if (flag_cilkplus)
10419 tree sync_expr = build_cilk_sync ();
10420 SET_EXPR_LOCATION (sync_expr,
10421 token->location);
10422 statement = finish_expr_stmt (sync_expr);
10424 else
10426 error_at (token->location, "-fcilkplus must be enabled to use"
10427 " %<_Cilk_sync%>");
10428 statement = error_mark_node;
10430 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
10431 break;
10433 /* Objective-C++ exception-handling constructs. */
10434 case RID_AT_TRY:
10435 case RID_AT_CATCH:
10436 case RID_AT_FINALLY:
10437 case RID_AT_SYNCHRONIZED:
10438 case RID_AT_THROW:
10439 statement = cp_parser_objc_statement (parser);
10440 break;
10442 case RID_TRY:
10443 statement = cp_parser_try_block (parser);
10444 break;
10446 case RID_NAMESPACE:
10447 /* This must be a namespace alias definition. */
10448 cp_parser_declaration_statement (parser);
10449 return;
10451 case RID_TRANSACTION_ATOMIC:
10452 case RID_TRANSACTION_RELAXED:
10453 case RID_SYNCHRONIZED:
10454 case RID_ATOMIC_NOEXCEPT:
10455 case RID_ATOMIC_CANCEL:
10456 statement = cp_parser_transaction (parser, token);
10457 break;
10458 case RID_TRANSACTION_CANCEL:
10459 statement = cp_parser_transaction_cancel (parser);
10460 break;
10462 default:
10463 /* It might be a keyword like `int' that can start a
10464 declaration-statement. */
10465 break;
10468 else if (token->type == CPP_NAME)
10470 /* If the next token is a `:', then we are looking at a
10471 labeled-statement. */
10472 token = cp_lexer_peek_nth_token (parser->lexer, 2);
10473 if (token->type == CPP_COLON)
10475 /* Looks like a labeled-statement with an ordinary label.
10476 Parse the label, and then use tail recursion to parse
10477 the statement. */
10479 cp_parser_label_for_labeled_statement (parser, std_attrs);
10480 in_compound = false;
10481 goto restart;
10484 /* Anything that starts with a `{' must be a compound-statement. */
10485 else if (token->type == CPP_OPEN_BRACE)
10486 statement = cp_parser_compound_statement (parser, NULL, BCS_NORMAL, false);
10487 /* CPP_PRAGMA is a #pragma inside a function body, which constitutes
10488 a statement all its own. */
10489 else if (token->type == CPP_PRAGMA)
10491 /* Only certain OpenMP pragmas are attached to statements, and thus
10492 are considered statements themselves. All others are not. In
10493 the context of a compound, accept the pragma as a "statement" and
10494 return so that we can check for a close brace. Otherwise we
10495 require a real statement and must go back and read one. */
10496 if (in_compound)
10497 cp_parser_pragma (parser, pragma_compound, if_p);
10498 else if (!cp_parser_pragma (parser, pragma_stmt, if_p))
10499 goto restart;
10500 return;
10502 else if (token->type == CPP_EOF)
10504 cp_parser_error (parser, "expected statement");
10505 return;
10508 /* Everything else must be a declaration-statement or an
10509 expression-statement. Try for the declaration-statement
10510 first, unless we are looking at a `;', in which case we know that
10511 we have an expression-statement. */
10512 if (!statement)
10514 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
10516 if (std_attrs != NULL_TREE)
10518 /* Attributes should be parsed as part of the the
10519 declaration, so let's un-parse them. */
10520 saved_tokens.rollback();
10521 std_attrs = NULL_TREE;
10524 cp_parser_parse_tentatively (parser);
10525 /* Try to parse the declaration-statement. */
10526 cp_parser_declaration_statement (parser);
10527 /* If that worked, we're done. */
10528 if (cp_parser_parse_definitely (parser))
10529 return;
10531 /* Look for an expression-statement instead. */
10532 statement = cp_parser_expression_statement (parser, in_statement_expr);
10535 /* Set the line number for the statement. */
10536 if (statement && STATEMENT_CODE_P (TREE_CODE (statement)))
10537 SET_EXPR_LOCATION (statement, statement_location);
10539 /* Note that for now, we don't do anything with c++11 statements
10540 parsed at this level. */
10541 if (std_attrs != NULL_TREE)
10542 warning_at (attrs_location,
10543 OPT_Wattributes,
10544 "attributes at the beginning of statement are ignored");
10547 /* Parse the label for a labeled-statement, i.e.
10549 identifier :
10550 case constant-expression :
10551 default :
10553 GNU Extension:
10554 case constant-expression ... constant-expression : statement
10556 When a label is parsed without errors, the label is added to the
10557 parse tree by the finish_* functions, so this function doesn't
10558 have to return the label. */
10560 static void
10561 cp_parser_label_for_labeled_statement (cp_parser* parser, tree attributes)
10563 cp_token *token;
10564 tree label = NULL_TREE;
10565 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
10567 /* The next token should be an identifier. */
10568 token = cp_lexer_peek_token (parser->lexer);
10569 if (token->type != CPP_NAME
10570 && token->type != CPP_KEYWORD)
10572 cp_parser_error (parser, "expected labeled-statement");
10573 return;
10576 parser->colon_corrects_to_scope_p = false;
10577 switch (token->keyword)
10579 case RID_CASE:
10581 tree expr, expr_hi;
10582 cp_token *ellipsis;
10584 /* Consume the `case' token. */
10585 cp_lexer_consume_token (parser->lexer);
10586 /* Parse the constant-expression. */
10587 expr = cp_parser_constant_expression (parser);
10588 if (check_for_bare_parameter_packs (expr))
10589 expr = error_mark_node;
10591 ellipsis = cp_lexer_peek_token (parser->lexer);
10592 if (ellipsis->type == CPP_ELLIPSIS)
10594 /* Consume the `...' token. */
10595 cp_lexer_consume_token (parser->lexer);
10596 expr_hi = cp_parser_constant_expression (parser);
10597 if (check_for_bare_parameter_packs (expr_hi))
10598 expr_hi = error_mark_node;
10600 /* We don't need to emit warnings here, as the common code
10601 will do this for us. */
10603 else
10604 expr_hi = NULL_TREE;
10606 if (parser->in_switch_statement_p)
10607 finish_case_label (token->location, expr, expr_hi);
10608 else
10609 error_at (token->location,
10610 "case label %qE not within a switch statement",
10611 expr);
10613 break;
10615 case RID_DEFAULT:
10616 /* Consume the `default' token. */
10617 cp_lexer_consume_token (parser->lexer);
10619 if (parser->in_switch_statement_p)
10620 finish_case_label (token->location, NULL_TREE, NULL_TREE);
10621 else
10622 error_at (token->location, "case label not within a switch statement");
10623 break;
10625 default:
10626 /* Anything else must be an ordinary label. */
10627 label = finish_label_stmt (cp_parser_identifier (parser));
10628 break;
10631 /* Require the `:' token. */
10632 cp_parser_require (parser, CPP_COLON, RT_COLON);
10634 /* An ordinary label may optionally be followed by attributes.
10635 However, this is only permitted if the attributes are then
10636 followed by a semicolon. This is because, for backward
10637 compatibility, when parsing
10638 lab: __attribute__ ((unused)) int i;
10639 we want the attribute to attach to "i", not "lab". */
10640 if (label != NULL_TREE
10641 && cp_next_tokens_can_be_gnu_attribute_p (parser))
10643 tree attrs;
10644 cp_parser_parse_tentatively (parser);
10645 attrs = cp_parser_gnu_attributes_opt (parser);
10646 if (attrs == NULL_TREE
10647 || cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
10648 cp_parser_abort_tentative_parse (parser);
10649 else if (!cp_parser_parse_definitely (parser))
10651 else
10652 attributes = chainon (attributes, attrs);
10655 if (attributes != NULL_TREE)
10656 cplus_decl_attributes (&label, attributes, 0);
10658 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
10661 /* Parse an expression-statement.
10663 expression-statement:
10664 expression [opt] ;
10666 Returns the new EXPR_STMT -- or NULL_TREE if the expression
10667 statement consists of nothing more than an `;'. IN_STATEMENT_EXPR_P
10668 indicates whether this expression-statement is part of an
10669 expression statement. */
10671 static tree
10672 cp_parser_expression_statement (cp_parser* parser, tree in_statement_expr)
10674 tree statement = NULL_TREE;
10675 cp_token *token = cp_lexer_peek_token (parser->lexer);
10677 /* If the next token is a ';', then there is no expression
10678 statement. */
10679 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
10681 statement = cp_parser_expression (parser);
10682 if (statement == error_mark_node
10683 && !cp_parser_uncommitted_to_tentative_parse_p (parser))
10685 cp_parser_skip_to_end_of_block_or_statement (parser);
10686 return error_mark_node;
10690 /* Give a helpful message for "A<T>::type t;" and the like. */
10691 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON)
10692 && !cp_parser_uncommitted_to_tentative_parse_p (parser))
10694 if (TREE_CODE (statement) == SCOPE_REF)
10695 error_at (token->location, "need %<typename%> before %qE because "
10696 "%qT is a dependent scope",
10697 statement, TREE_OPERAND (statement, 0));
10698 else if (is_overloaded_fn (statement)
10699 && DECL_CONSTRUCTOR_P (get_first_fn (statement)))
10701 /* A::A a; */
10702 tree fn = get_first_fn (statement);
10703 error_at (token->location,
10704 "%<%T::%D%> names the constructor, not the type",
10705 DECL_CONTEXT (fn), DECL_NAME (fn));
10709 /* Consume the final `;'. */
10710 cp_parser_consume_semicolon_at_end_of_statement (parser);
10712 if (in_statement_expr
10713 && cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
10714 /* This is the final expression statement of a statement
10715 expression. */
10716 statement = finish_stmt_expr_expr (statement, in_statement_expr);
10717 else if (statement)
10718 statement = finish_expr_stmt (statement);
10720 return statement;
10723 /* Parse a compound-statement.
10725 compound-statement:
10726 { statement-seq [opt] }
10728 GNU extension:
10730 compound-statement:
10731 { label-declaration-seq [opt] statement-seq [opt] }
10733 label-declaration-seq:
10734 label-declaration
10735 label-declaration-seq label-declaration
10737 Returns a tree representing the statement. */
10739 static tree
10740 cp_parser_compound_statement (cp_parser *parser, tree in_statement_expr,
10741 int bcs_flags, bool function_body)
10743 tree compound_stmt;
10745 /* Consume the `{'. */
10746 if (!cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
10747 return error_mark_node;
10748 if (DECL_DECLARED_CONSTEXPR_P (current_function_decl)
10749 && !function_body && cxx_dialect < cxx14)
10750 pedwarn (input_location, OPT_Wpedantic,
10751 "compound-statement in constexpr function");
10752 /* Begin the compound-statement. */
10753 compound_stmt = begin_compound_stmt (bcs_flags);
10754 /* If the next keyword is `__label__' we have a label declaration. */
10755 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_LABEL))
10756 cp_parser_label_declaration (parser);
10757 /* Parse an (optional) statement-seq. */
10758 cp_parser_statement_seq_opt (parser, in_statement_expr);
10759 /* Finish the compound-statement. */
10760 finish_compound_stmt (compound_stmt);
10761 /* Consume the `}'. */
10762 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
10764 return compound_stmt;
10767 /* Parse an (optional) statement-seq.
10769 statement-seq:
10770 statement
10771 statement-seq [opt] statement */
10773 static void
10774 cp_parser_statement_seq_opt (cp_parser* parser, tree in_statement_expr)
10776 /* Scan statements until there aren't any more. */
10777 while (true)
10779 cp_token *token = cp_lexer_peek_token (parser->lexer);
10781 /* If we are looking at a `}', then we have run out of
10782 statements; the same is true if we have reached the end
10783 of file, or have stumbled upon a stray '@end'. */
10784 if (token->type == CPP_CLOSE_BRACE
10785 || token->type == CPP_EOF
10786 || token->type == CPP_PRAGMA_EOL
10787 || (token->type == CPP_KEYWORD && token->keyword == RID_AT_END))
10788 break;
10790 /* If we are in a compound statement and find 'else' then
10791 something went wrong. */
10792 else if (token->type == CPP_KEYWORD && token->keyword == RID_ELSE)
10794 if (parser->in_statement & IN_IF_STMT)
10795 break;
10796 else
10798 token = cp_lexer_consume_token (parser->lexer);
10799 error_at (token->location, "%<else%> without a previous %<if%>");
10803 /* Parse the statement. */
10804 cp_parser_statement (parser, in_statement_expr, true, NULL);
10808 /* Parse a selection-statement.
10810 selection-statement:
10811 if ( condition ) statement
10812 if ( condition ) statement else statement
10813 switch ( condition ) statement
10815 Returns the new IF_STMT or SWITCH_STMT.
10817 If IF_P is not NULL, *IF_P is set to indicate whether the statement
10818 is a (possibly labeled) if statement which is not enclosed in
10819 braces and has an else clause. This is used to implement
10820 -Wparentheses.
10822 CHAIN is a vector of if-else-if conditions. This is used to implement
10823 -Wduplicated-cond. */
10825 static tree
10826 cp_parser_selection_statement (cp_parser* parser, bool *if_p,
10827 vec<tree> *chain)
10829 cp_token *token;
10830 enum rid keyword;
10831 token_indent_info guard_tinfo;
10833 if (if_p != NULL)
10834 *if_p = false;
10836 /* Peek at the next token. */
10837 token = cp_parser_require (parser, CPP_KEYWORD, RT_SELECT);
10838 guard_tinfo = get_token_indent_info (token);
10840 /* See what kind of keyword it is. */
10841 keyword = token->keyword;
10842 switch (keyword)
10844 case RID_IF:
10845 case RID_SWITCH:
10847 tree statement;
10848 tree condition;
10850 /* Look for the `('. */
10851 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
10853 cp_parser_skip_to_end_of_statement (parser);
10854 return error_mark_node;
10857 /* Begin the selection-statement. */
10858 if (keyword == RID_IF)
10859 statement = begin_if_stmt ();
10860 else
10861 statement = begin_switch_stmt ();
10863 /* Parse the condition. */
10864 condition = cp_parser_condition (parser);
10865 /* Look for the `)'. */
10866 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
10867 cp_parser_skip_to_closing_parenthesis (parser, true, false,
10868 /*consume_paren=*/true);
10870 if (keyword == RID_IF)
10872 bool nested_if;
10873 unsigned char in_statement;
10875 /* Add the condition. */
10876 finish_if_stmt_cond (condition, statement);
10878 if (warn_duplicated_cond)
10879 warn_duplicated_cond_add_or_warn (token->location, condition,
10880 &chain);
10882 /* Parse the then-clause. */
10883 in_statement = parser->in_statement;
10884 parser->in_statement |= IN_IF_STMT;
10885 cp_parser_implicitly_scoped_statement (parser, &nested_if,
10886 guard_tinfo);
10887 parser->in_statement = in_statement;
10889 finish_then_clause (statement);
10891 /* If the next token is `else', parse the else-clause. */
10892 if (cp_lexer_next_token_is_keyword (parser->lexer,
10893 RID_ELSE))
10895 guard_tinfo
10896 = get_token_indent_info (cp_lexer_peek_token (parser->lexer));
10897 /* Consume the `else' keyword. */
10898 cp_lexer_consume_token (parser->lexer);
10899 if (warn_duplicated_cond)
10901 if (cp_lexer_next_token_is_keyword (parser->lexer,
10902 RID_IF)
10903 && chain == NULL)
10905 /* We've got "if (COND) else if (COND2)". Start
10906 the condition chain and add COND as the first
10907 element. */
10908 chain = new vec<tree> ();
10909 if (!CONSTANT_CLASS_P (condition)
10910 && !TREE_SIDE_EFFECTS (condition))
10912 /* Wrap it in a NOP_EXPR so that we can set the
10913 location of the condition. */
10914 tree e = build1 (NOP_EXPR, TREE_TYPE (condition),
10915 condition);
10916 SET_EXPR_LOCATION (e, token->location);
10917 chain->safe_push (e);
10920 else if (!cp_lexer_next_token_is_keyword (parser->lexer,
10921 RID_IF))
10923 /* This is if-else without subsequent if. Zap the
10924 condition chain; we would have already warned at
10925 this point. */
10926 delete chain;
10927 chain = NULL;
10930 begin_else_clause (statement);
10931 /* Parse the else-clause. */
10932 cp_parser_implicitly_scoped_statement (parser, NULL,
10933 guard_tinfo, chain);
10935 finish_else_clause (statement);
10937 /* If we are currently parsing a then-clause, then
10938 IF_P will not be NULL. We set it to true to
10939 indicate that this if statement has an else clause.
10940 This may trigger the Wparentheses warning below
10941 when we get back up to the parent if statement. */
10942 if (if_p != NULL)
10943 *if_p = true;
10945 else
10947 /* This if statement does not have an else clause. If
10948 NESTED_IF is true, then the then-clause has an if
10949 statement which does have an else clause. We warn
10950 about the potential ambiguity. */
10951 if (nested_if)
10952 warning_at (EXPR_LOCATION (statement), OPT_Wdangling_else,
10953 "suggest explicit braces to avoid ambiguous"
10954 " %<else%>");
10955 if (warn_duplicated_cond)
10957 /* We don't need the condition chain anymore. */
10958 delete chain;
10959 chain = NULL;
10963 /* Now we're all done with the if-statement. */
10964 finish_if_stmt (statement);
10966 else
10968 bool in_switch_statement_p;
10969 unsigned char in_statement;
10971 /* Add the condition. */
10972 finish_switch_cond (condition, statement);
10974 /* Parse the body of the switch-statement. */
10975 in_switch_statement_p = parser->in_switch_statement_p;
10976 in_statement = parser->in_statement;
10977 parser->in_switch_statement_p = true;
10978 parser->in_statement |= IN_SWITCH_STMT;
10979 cp_parser_implicitly_scoped_statement (parser, if_p,
10980 guard_tinfo);
10981 parser->in_switch_statement_p = in_switch_statement_p;
10982 parser->in_statement = in_statement;
10984 /* Now we're all done with the switch-statement. */
10985 finish_switch_stmt (statement);
10988 return statement;
10990 break;
10992 default:
10993 cp_parser_error (parser, "expected selection-statement");
10994 return error_mark_node;
10998 /* Parse a condition.
11000 condition:
11001 expression
11002 type-specifier-seq declarator = initializer-clause
11003 type-specifier-seq declarator braced-init-list
11005 GNU Extension:
11007 condition:
11008 type-specifier-seq declarator asm-specification [opt]
11009 attributes [opt] = assignment-expression
11011 Returns the expression that should be tested. */
11013 static tree
11014 cp_parser_condition (cp_parser* parser)
11016 cp_decl_specifier_seq type_specifiers;
11017 const char *saved_message;
11018 int declares_class_or_enum;
11020 /* Try the declaration first. */
11021 cp_parser_parse_tentatively (parser);
11022 /* New types are not allowed in the type-specifier-seq for a
11023 condition. */
11024 saved_message = parser->type_definition_forbidden_message;
11025 parser->type_definition_forbidden_message
11026 = G_("types may not be defined in conditions");
11027 /* Parse the type-specifier-seq. */
11028 cp_parser_decl_specifier_seq (parser,
11029 CP_PARSER_FLAGS_ONLY_TYPE_OR_CONSTEXPR,
11030 &type_specifiers,
11031 &declares_class_or_enum);
11032 /* Restore the saved message. */
11033 parser->type_definition_forbidden_message = saved_message;
11034 /* If all is well, we might be looking at a declaration. */
11035 if (!cp_parser_error_occurred (parser))
11037 tree decl;
11038 tree asm_specification;
11039 tree attributes;
11040 cp_declarator *declarator;
11041 tree initializer = NULL_TREE;
11043 /* Parse the declarator. */
11044 declarator = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
11045 /*ctor_dtor_or_conv_p=*/NULL,
11046 /*parenthesized_p=*/NULL,
11047 /*member_p=*/false,
11048 /*friend_p=*/false);
11049 /* Parse the attributes. */
11050 attributes = cp_parser_attributes_opt (parser);
11051 /* Parse the asm-specification. */
11052 asm_specification = cp_parser_asm_specification_opt (parser);
11053 /* If the next token is not an `=' or '{', then we might still be
11054 looking at an expression. For example:
11056 if (A(a).x)
11058 looks like a decl-specifier-seq and a declarator -- but then
11059 there is no `=', so this is an expression. */
11060 if (cp_lexer_next_token_is_not (parser->lexer, CPP_EQ)
11061 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE))
11062 cp_parser_simulate_error (parser);
11064 /* If we did see an `=' or '{', then we are looking at a declaration
11065 for sure. */
11066 if (cp_parser_parse_definitely (parser))
11068 tree pushed_scope;
11069 bool non_constant_p;
11070 bool flags = LOOKUP_ONLYCONVERTING;
11072 /* Create the declaration. */
11073 decl = start_decl (declarator, &type_specifiers,
11074 /*initialized_p=*/true,
11075 attributes, /*prefix_attributes=*/NULL_TREE,
11076 &pushed_scope);
11078 /* Parse the initializer. */
11079 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
11081 initializer = cp_parser_braced_list (parser, &non_constant_p);
11082 CONSTRUCTOR_IS_DIRECT_INIT (initializer) = 1;
11083 flags = 0;
11085 else
11087 /* Consume the `='. */
11088 cp_parser_require (parser, CPP_EQ, RT_EQ);
11089 initializer = cp_parser_initializer_clause (parser, &non_constant_p);
11091 if (BRACE_ENCLOSED_INITIALIZER_P (initializer))
11092 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
11094 /* Process the initializer. */
11095 cp_finish_decl (decl,
11096 initializer, !non_constant_p,
11097 asm_specification,
11098 flags);
11100 if (pushed_scope)
11101 pop_scope (pushed_scope);
11103 return convert_from_reference (decl);
11106 /* If we didn't even get past the declarator successfully, we are
11107 definitely not looking at a declaration. */
11108 else
11109 cp_parser_abort_tentative_parse (parser);
11111 /* Otherwise, we are looking at an expression. */
11112 return cp_parser_expression (parser);
11115 /* Parses a for-statement or range-for-statement until the closing ')',
11116 not included. */
11118 static tree
11119 cp_parser_for (cp_parser *parser, bool ivdep)
11121 tree init, scope, decl;
11122 bool is_range_for;
11124 /* Begin the for-statement. */
11125 scope = begin_for_scope (&init);
11127 /* Parse the initialization. */
11128 is_range_for = cp_parser_for_init_statement (parser, &decl);
11130 if (is_range_for)
11131 return cp_parser_range_for (parser, scope, init, decl, ivdep);
11132 else
11133 return cp_parser_c_for (parser, scope, init, ivdep);
11136 static tree
11137 cp_parser_c_for (cp_parser *parser, tree scope, tree init, bool ivdep)
11139 /* Normal for loop */
11140 tree condition = NULL_TREE;
11141 tree expression = NULL_TREE;
11142 tree stmt;
11144 stmt = begin_for_stmt (scope, init);
11145 /* The for-init-statement has already been parsed in
11146 cp_parser_for_init_statement, so no work is needed here. */
11147 finish_for_init_stmt (stmt);
11149 /* If there's a condition, process it. */
11150 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
11151 condition = cp_parser_condition (parser);
11152 else if (ivdep)
11154 cp_parser_error (parser, "missing loop condition in loop with "
11155 "%<GCC ivdep%> pragma");
11156 condition = error_mark_node;
11158 finish_for_cond (condition, stmt, ivdep);
11159 /* Look for the `;'. */
11160 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
11162 /* If there's an expression, process it. */
11163 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN))
11164 expression = cp_parser_expression (parser);
11165 finish_for_expr (expression, stmt);
11167 return stmt;
11170 /* Tries to parse a range-based for-statement:
11172 range-based-for:
11173 decl-specifier-seq declarator : expression
11175 The decl-specifier-seq declarator and the `:' are already parsed by
11176 cp_parser_for_init_statement. If processing_template_decl it returns a
11177 newly created RANGE_FOR_STMT; if not, it is converted to a
11178 regular FOR_STMT. */
11180 static tree
11181 cp_parser_range_for (cp_parser *parser, tree scope, tree init, tree range_decl,
11182 bool ivdep)
11184 tree stmt, range_expr;
11186 /* Get the range declaration momentarily out of the way so that
11187 the range expression doesn't clash with it. */
11188 if (range_decl != error_mark_node)
11189 pop_binding (DECL_NAME (range_decl), range_decl);
11191 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
11193 bool expr_non_constant_p;
11194 range_expr = cp_parser_braced_list (parser, &expr_non_constant_p);
11196 else
11197 range_expr = cp_parser_expression (parser);
11199 /* Put the range declaration back into scope. */
11200 if (range_decl != error_mark_node)
11201 push_binding (DECL_NAME (range_decl), range_decl, current_binding_level);
11203 /* If in template, STMT is converted to a normal for-statement
11204 at instantiation. If not, it is done just ahead. */
11205 if (processing_template_decl)
11207 if (check_for_bare_parameter_packs (range_expr))
11208 range_expr = error_mark_node;
11209 stmt = begin_range_for_stmt (scope, init);
11210 if (ivdep)
11211 RANGE_FOR_IVDEP (stmt) = 1;
11212 finish_range_for_decl (stmt, range_decl, range_expr);
11213 if (!type_dependent_expression_p (range_expr)
11214 /* do_auto_deduction doesn't mess with template init-lists. */
11215 && !BRACE_ENCLOSED_INITIALIZER_P (range_expr))
11216 do_range_for_auto_deduction (range_decl, range_expr);
11218 else
11220 stmt = begin_for_stmt (scope, init);
11221 stmt = cp_convert_range_for (stmt, range_decl, range_expr, ivdep);
11223 return stmt;
11226 /* Subroutine of cp_convert_range_for: given the initializer expression,
11227 builds up the range temporary. */
11229 static tree
11230 build_range_temp (tree range_expr)
11232 tree range_type, range_temp;
11234 /* Find out the type deduced by the declaration
11235 `auto &&__range = range_expr'. */
11236 range_type = cp_build_reference_type (make_auto (), true);
11237 range_type = do_auto_deduction (range_type, range_expr,
11238 type_uses_auto (range_type));
11240 /* Create the __range variable. */
11241 range_temp = build_decl (input_location, VAR_DECL,
11242 get_identifier ("__for_range"), range_type);
11243 TREE_USED (range_temp) = 1;
11244 DECL_ARTIFICIAL (range_temp) = 1;
11246 return range_temp;
11249 /* Used by cp_parser_range_for in template context: we aren't going to
11250 do a full conversion yet, but we still need to resolve auto in the
11251 type of the for-range-declaration if present. This is basically
11252 a shortcut version of cp_convert_range_for. */
11254 static void
11255 do_range_for_auto_deduction (tree decl, tree range_expr)
11257 tree auto_node = type_uses_auto (TREE_TYPE (decl));
11258 if (auto_node)
11260 tree begin_dummy, end_dummy, range_temp, iter_type, iter_decl;
11261 range_temp = convert_from_reference (build_range_temp (range_expr));
11262 iter_type = (cp_parser_perform_range_for_lookup
11263 (range_temp, &begin_dummy, &end_dummy));
11264 if (iter_type)
11266 iter_decl = build_decl (input_location, VAR_DECL, NULL_TREE,
11267 iter_type);
11268 iter_decl = build_x_indirect_ref (input_location, iter_decl, RO_NULL,
11269 tf_warning_or_error);
11270 TREE_TYPE (decl) = do_auto_deduction (TREE_TYPE (decl),
11271 iter_decl, auto_node);
11276 /* Converts a range-based for-statement into a normal
11277 for-statement, as per the definition.
11279 for (RANGE_DECL : RANGE_EXPR)
11280 BLOCK
11282 should be equivalent to:
11285 auto &&__range = RANGE_EXPR;
11286 for (auto __begin = BEGIN_EXPR, end = END_EXPR;
11287 __begin != __end;
11288 ++__begin)
11290 RANGE_DECL = *__begin;
11291 BLOCK
11295 If RANGE_EXPR is an array:
11296 BEGIN_EXPR = __range
11297 END_EXPR = __range + ARRAY_SIZE(__range)
11298 Else if RANGE_EXPR has a member 'begin' or 'end':
11299 BEGIN_EXPR = __range.begin()
11300 END_EXPR = __range.end()
11301 Else:
11302 BEGIN_EXPR = begin(__range)
11303 END_EXPR = end(__range);
11305 If __range has a member 'begin' but not 'end', or vice versa, we must
11306 still use the second alternative (it will surely fail, however).
11307 When calling begin()/end() in the third alternative we must use
11308 argument dependent lookup, but always considering 'std' as an associated
11309 namespace. */
11311 tree
11312 cp_convert_range_for (tree statement, tree range_decl, tree range_expr,
11313 bool ivdep)
11315 tree begin, end;
11316 tree iter_type, begin_expr, end_expr;
11317 tree condition, expression;
11319 if (range_decl == error_mark_node || range_expr == error_mark_node)
11320 /* If an error happened previously do nothing or else a lot of
11321 unhelpful errors would be issued. */
11322 begin_expr = end_expr = iter_type = error_mark_node;
11323 else
11325 tree range_temp;
11327 if (VAR_P (range_expr)
11328 && array_of_runtime_bound_p (TREE_TYPE (range_expr)))
11329 /* Can't bind a reference to an array of runtime bound. */
11330 range_temp = range_expr;
11331 else
11333 range_temp = build_range_temp (range_expr);
11334 pushdecl (range_temp);
11335 cp_finish_decl (range_temp, range_expr,
11336 /*is_constant_init*/false, NULL_TREE,
11337 LOOKUP_ONLYCONVERTING);
11338 range_temp = convert_from_reference (range_temp);
11340 iter_type = cp_parser_perform_range_for_lookup (range_temp,
11341 &begin_expr, &end_expr);
11344 /* The new for initialization statement. */
11345 begin = build_decl (input_location, VAR_DECL,
11346 get_identifier ("__for_begin"), iter_type);
11347 TREE_USED (begin) = 1;
11348 DECL_ARTIFICIAL (begin) = 1;
11349 pushdecl (begin);
11350 cp_finish_decl (begin, begin_expr,
11351 /*is_constant_init*/false, NULL_TREE,
11352 LOOKUP_ONLYCONVERTING);
11354 if (cxx_dialect >= cxx1z)
11355 iter_type = cv_unqualified (TREE_TYPE (end_expr));
11356 end = build_decl (input_location, VAR_DECL,
11357 get_identifier ("__for_end"), iter_type);
11358 TREE_USED (end) = 1;
11359 DECL_ARTIFICIAL (end) = 1;
11360 pushdecl (end);
11361 cp_finish_decl (end, end_expr,
11362 /*is_constant_init*/false, NULL_TREE,
11363 LOOKUP_ONLYCONVERTING);
11365 finish_for_init_stmt (statement);
11367 /* The new for condition. */
11368 condition = build_x_binary_op (input_location, NE_EXPR,
11369 begin, ERROR_MARK,
11370 end, ERROR_MARK,
11371 NULL, tf_warning_or_error);
11372 finish_for_cond (condition, statement, ivdep);
11374 /* The new increment expression. */
11375 expression = finish_unary_op_expr (input_location,
11376 PREINCREMENT_EXPR, begin,
11377 tf_warning_or_error);
11378 finish_for_expr (expression, statement);
11380 /* The declaration is initialized with *__begin inside the loop body. */
11381 cp_finish_decl (range_decl,
11382 build_x_indirect_ref (input_location, begin, RO_NULL,
11383 tf_warning_or_error),
11384 /*is_constant_init*/false, NULL_TREE,
11385 LOOKUP_ONLYCONVERTING);
11387 return statement;
11390 /* Solves BEGIN_EXPR and END_EXPR as described in cp_convert_range_for.
11391 We need to solve both at the same time because the method used
11392 depends on the existence of members begin or end.
11393 Returns the type deduced for the iterator expression. */
11395 static tree
11396 cp_parser_perform_range_for_lookup (tree range, tree *begin, tree *end)
11398 if (error_operand_p (range))
11400 *begin = *end = error_mark_node;
11401 return error_mark_node;
11404 if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (range))))
11406 error ("range-based %<for%> expression of type %qT "
11407 "has incomplete type", TREE_TYPE (range));
11408 *begin = *end = error_mark_node;
11409 return error_mark_node;
11411 if (TREE_CODE (TREE_TYPE (range)) == ARRAY_TYPE)
11413 /* If RANGE is an array, we will use pointer arithmetic. */
11414 *begin = decay_conversion (range, tf_warning_or_error);
11415 *end = build_binary_op (input_location, PLUS_EXPR,
11416 range,
11417 array_type_nelts_top (TREE_TYPE (range)),
11419 return TREE_TYPE (*begin);
11421 else
11423 /* If it is not an array, we must do a bit of magic. */
11424 tree id_begin, id_end;
11425 tree member_begin, member_end;
11427 *begin = *end = error_mark_node;
11429 id_begin = get_identifier ("begin");
11430 id_end = get_identifier ("end");
11431 member_begin = lookup_member (TREE_TYPE (range), id_begin,
11432 /*protect=*/2, /*want_type=*/false,
11433 tf_warning_or_error);
11434 member_end = lookup_member (TREE_TYPE (range), id_end,
11435 /*protect=*/2, /*want_type=*/false,
11436 tf_warning_or_error);
11438 if (member_begin != NULL_TREE || member_end != NULL_TREE)
11440 /* Use the member functions. */
11441 if (member_begin != NULL_TREE)
11442 *begin = cp_parser_range_for_member_function (range, id_begin);
11443 else
11444 error ("range-based %<for%> expression of type %qT has an "
11445 "%<end%> member but not a %<begin%>", TREE_TYPE (range));
11447 if (member_end != NULL_TREE)
11448 *end = cp_parser_range_for_member_function (range, id_end);
11449 else
11450 error ("range-based %<for%> expression of type %qT has a "
11451 "%<begin%> member but not an %<end%>", TREE_TYPE (range));
11453 else
11455 /* Use global functions with ADL. */
11456 vec<tree, va_gc> *vec;
11457 vec = make_tree_vector ();
11459 vec_safe_push (vec, range);
11461 member_begin = perform_koenig_lookup (id_begin, vec,
11462 tf_warning_or_error);
11463 *begin = finish_call_expr (member_begin, &vec, false, true,
11464 tf_warning_or_error);
11465 member_end = perform_koenig_lookup (id_end, vec,
11466 tf_warning_or_error);
11467 *end = finish_call_expr (member_end, &vec, false, true,
11468 tf_warning_or_error);
11470 release_tree_vector (vec);
11473 /* Last common checks. */
11474 if (*begin == error_mark_node || *end == error_mark_node)
11476 /* If one of the expressions is an error do no more checks. */
11477 *begin = *end = error_mark_node;
11478 return error_mark_node;
11480 else if (type_dependent_expression_p (*begin)
11481 || type_dependent_expression_p (*end))
11482 /* Can happen, when, eg, in a template context, Koenig lookup
11483 can't resolve begin/end (c++/58503). */
11484 return NULL_TREE;
11485 else
11487 tree iter_type = cv_unqualified (TREE_TYPE (*begin));
11488 /* The unqualified type of the __begin and __end temporaries should
11489 be the same, as required by the multiple auto declaration. */
11490 if (!same_type_p (iter_type, cv_unqualified (TREE_TYPE (*end))))
11492 if (cxx_dialect >= cxx1z
11493 && (build_x_binary_op (input_location, NE_EXPR,
11494 *begin, ERROR_MARK,
11495 *end, ERROR_MARK,
11496 NULL, tf_none)
11497 != error_mark_node))
11498 /* P0184R0 allows __begin and __end to have different types,
11499 but make sure they are comparable so we can give a better
11500 diagnostic. */;
11501 else
11502 error ("inconsistent begin/end types in range-based %<for%> "
11503 "statement: %qT and %qT",
11504 TREE_TYPE (*begin), TREE_TYPE (*end));
11506 return iter_type;
11511 /* Helper function for cp_parser_perform_range_for_lookup.
11512 Builds a tree for RANGE.IDENTIFIER(). */
11514 static tree
11515 cp_parser_range_for_member_function (tree range, tree identifier)
11517 tree member, res;
11518 vec<tree, va_gc> *vec;
11520 member = finish_class_member_access_expr (range, identifier,
11521 false, tf_warning_or_error);
11522 if (member == error_mark_node)
11523 return error_mark_node;
11525 vec = make_tree_vector ();
11526 res = finish_call_expr (member, &vec,
11527 /*disallow_virtual=*/false,
11528 /*koenig_p=*/false,
11529 tf_warning_or_error);
11530 release_tree_vector (vec);
11531 return res;
11534 /* Parse an iteration-statement.
11536 iteration-statement:
11537 while ( condition ) statement
11538 do statement while ( expression ) ;
11539 for ( for-init-statement condition [opt] ; expression [opt] )
11540 statement
11542 Returns the new WHILE_STMT, DO_STMT, FOR_STMT or RANGE_FOR_STMT. */
11544 static tree
11545 cp_parser_iteration_statement (cp_parser* parser, bool *if_p, bool ivdep)
11547 cp_token *token;
11548 enum rid keyword;
11549 tree statement;
11550 unsigned char in_statement;
11551 token_indent_info guard_tinfo;
11553 /* Peek at the next token. */
11554 token = cp_parser_require (parser, CPP_KEYWORD, RT_INTERATION);
11555 if (!token)
11556 return error_mark_node;
11558 guard_tinfo = get_token_indent_info (token);
11560 /* Remember whether or not we are already within an iteration
11561 statement. */
11562 in_statement = parser->in_statement;
11564 /* See what kind of keyword it is. */
11565 keyword = token->keyword;
11566 switch (keyword)
11568 case RID_WHILE:
11570 tree condition;
11572 /* Begin the while-statement. */
11573 statement = begin_while_stmt ();
11574 /* Look for the `('. */
11575 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
11576 /* Parse the condition. */
11577 condition = cp_parser_condition (parser);
11578 finish_while_stmt_cond (condition, statement, ivdep);
11579 /* Look for the `)'. */
11580 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
11581 /* Parse the dependent statement. */
11582 parser->in_statement = IN_ITERATION_STMT;
11583 cp_parser_already_scoped_statement (parser, if_p, guard_tinfo);
11584 parser->in_statement = in_statement;
11585 /* We're done with the while-statement. */
11586 finish_while_stmt (statement);
11588 break;
11590 case RID_DO:
11592 tree expression;
11594 /* Begin the do-statement. */
11595 statement = begin_do_stmt ();
11596 /* Parse the body of the do-statement. */
11597 parser->in_statement = IN_ITERATION_STMT;
11598 cp_parser_implicitly_scoped_statement (parser, NULL, guard_tinfo);
11599 parser->in_statement = in_statement;
11600 finish_do_body (statement);
11601 /* Look for the `while' keyword. */
11602 cp_parser_require_keyword (parser, RID_WHILE, RT_WHILE);
11603 /* Look for the `('. */
11604 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
11605 /* Parse the expression. */
11606 expression = cp_parser_expression (parser);
11607 /* We're done with the do-statement. */
11608 finish_do_stmt (expression, statement, ivdep);
11609 /* Look for the `)'. */
11610 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
11611 /* Look for the `;'. */
11612 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
11614 break;
11616 case RID_FOR:
11618 /* Look for the `('. */
11619 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
11621 statement = cp_parser_for (parser, ivdep);
11623 /* Look for the `)'. */
11624 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
11626 /* Parse the body of the for-statement. */
11627 parser->in_statement = IN_ITERATION_STMT;
11628 cp_parser_already_scoped_statement (parser, if_p, guard_tinfo);
11629 parser->in_statement = in_statement;
11631 /* We're done with the for-statement. */
11632 finish_for_stmt (statement);
11634 break;
11636 default:
11637 cp_parser_error (parser, "expected iteration-statement");
11638 statement = error_mark_node;
11639 break;
11642 return statement;
11645 /* Parse a for-init-statement or the declarator of a range-based-for.
11646 Returns true if a range-based-for declaration is seen.
11648 for-init-statement:
11649 expression-statement
11650 simple-declaration */
11652 static bool
11653 cp_parser_for_init_statement (cp_parser* parser, tree *decl)
11655 /* If the next token is a `;', then we have an empty
11656 expression-statement. Grammatically, this is also a
11657 simple-declaration, but an invalid one, because it does not
11658 declare anything. Therefore, if we did not handle this case
11659 specially, we would issue an error message about an invalid
11660 declaration. */
11661 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
11663 bool is_range_for = false;
11664 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
11666 /* A colon is used in range-based for. */
11667 parser->colon_corrects_to_scope_p = false;
11669 /* We're going to speculatively look for a declaration, falling back
11670 to an expression, if necessary. */
11671 cp_parser_parse_tentatively (parser);
11672 /* Parse the declaration. */
11673 cp_parser_simple_declaration (parser,
11674 /*function_definition_allowed_p=*/false,
11675 decl);
11676 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
11677 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
11679 /* It is a range-for, consume the ':' */
11680 cp_lexer_consume_token (parser->lexer);
11681 is_range_for = true;
11682 if (cxx_dialect < cxx11)
11684 pedwarn (cp_lexer_peek_token (parser->lexer)->location, 0,
11685 "range-based %<for%> loops only available with "
11686 "-std=c++11 or -std=gnu++11");
11687 *decl = error_mark_node;
11690 else
11691 /* The ';' is not consumed yet because we told
11692 cp_parser_simple_declaration not to. */
11693 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
11695 if (cp_parser_parse_definitely (parser))
11696 return is_range_for;
11697 /* If the tentative parse failed, then we shall need to look for an
11698 expression-statement. */
11700 /* If we are here, it is an expression-statement. */
11701 cp_parser_expression_statement (parser, NULL_TREE);
11702 return false;
11705 /* Parse a jump-statement.
11707 jump-statement:
11708 break ;
11709 continue ;
11710 return expression [opt] ;
11711 return braced-init-list ;
11712 goto identifier ;
11714 GNU extension:
11716 jump-statement:
11717 goto * expression ;
11719 Returns the new BREAK_STMT, CONTINUE_STMT, RETURN_EXPR, or GOTO_EXPR. */
11721 static tree
11722 cp_parser_jump_statement (cp_parser* parser)
11724 tree statement = error_mark_node;
11725 cp_token *token;
11726 enum rid keyword;
11727 unsigned char in_statement;
11729 /* Peek at the next token. */
11730 token = cp_parser_require (parser, CPP_KEYWORD, RT_JUMP);
11731 if (!token)
11732 return error_mark_node;
11734 /* See what kind of keyword it is. */
11735 keyword = token->keyword;
11736 switch (keyword)
11738 case RID_BREAK:
11739 in_statement = parser->in_statement & ~IN_IF_STMT;
11740 switch (in_statement)
11742 case 0:
11743 error_at (token->location, "break statement not within loop or switch");
11744 break;
11745 default:
11746 gcc_assert ((in_statement & IN_SWITCH_STMT)
11747 || in_statement == IN_ITERATION_STMT);
11748 statement = finish_break_stmt ();
11749 if (in_statement == IN_ITERATION_STMT)
11750 break_maybe_infinite_loop ();
11751 break;
11752 case IN_OMP_BLOCK:
11753 error_at (token->location, "invalid exit from OpenMP structured block");
11754 break;
11755 case IN_OMP_FOR:
11756 error_at (token->location, "break statement used with OpenMP for loop");
11757 break;
11758 case IN_CILK_SIMD_FOR:
11759 error_at (token->location, "break statement used with Cilk Plus for loop");
11760 break;
11762 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
11763 break;
11765 case RID_CONTINUE:
11766 switch (parser->in_statement & ~(IN_SWITCH_STMT | IN_IF_STMT))
11768 case 0:
11769 error_at (token->location, "continue statement not within a loop");
11770 break;
11771 case IN_CILK_SIMD_FOR:
11772 error_at (token->location,
11773 "continue statement within %<#pragma simd%> loop body");
11774 /* Fall through. */
11775 case IN_ITERATION_STMT:
11776 case IN_OMP_FOR:
11777 statement = finish_continue_stmt ();
11778 break;
11779 case IN_OMP_BLOCK:
11780 error_at (token->location, "invalid exit from OpenMP structured block");
11781 break;
11782 default:
11783 gcc_unreachable ();
11785 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
11786 break;
11788 case RID_RETURN:
11790 tree expr;
11791 bool expr_non_constant_p;
11793 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
11795 cp_lexer_set_source_position (parser->lexer);
11796 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
11797 expr = cp_parser_braced_list (parser, &expr_non_constant_p);
11799 else if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
11800 expr = cp_parser_expression (parser);
11801 else
11802 /* If the next token is a `;', then there is no
11803 expression. */
11804 expr = NULL_TREE;
11805 /* Build the return-statement. */
11806 statement = finish_return_stmt (expr);
11807 /* Look for the final `;'. */
11808 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
11810 break;
11812 case RID_GOTO:
11813 if (parser->in_function_body
11814 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
11816 error ("%<goto%> in %<constexpr%> function");
11817 cp_function_chain->invalid_constexpr = true;
11820 /* Create the goto-statement. */
11821 if (cp_lexer_next_token_is (parser->lexer, CPP_MULT))
11823 /* Issue a warning about this use of a GNU extension. */
11824 pedwarn (token->location, OPT_Wpedantic, "ISO C++ forbids computed gotos");
11825 /* Consume the '*' token. */
11826 cp_lexer_consume_token (parser->lexer);
11827 /* Parse the dependent expression. */
11828 finish_goto_stmt (cp_parser_expression (parser));
11830 else
11831 finish_goto_stmt (cp_parser_identifier (parser));
11832 /* Look for the final `;'. */
11833 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
11834 break;
11836 default:
11837 cp_parser_error (parser, "expected jump-statement");
11838 break;
11841 return statement;
11844 /* Parse a declaration-statement.
11846 declaration-statement:
11847 block-declaration */
11849 static void
11850 cp_parser_declaration_statement (cp_parser* parser)
11852 void *p;
11854 /* Get the high-water mark for the DECLARATOR_OBSTACK. */
11855 p = obstack_alloc (&declarator_obstack, 0);
11857 /* Parse the block-declaration. */
11858 cp_parser_block_declaration (parser, /*statement_p=*/true);
11860 /* Free any declarators allocated. */
11861 obstack_free (&declarator_obstack, p);
11864 /* Some dependent statements (like `if (cond) statement'), are
11865 implicitly in their own scope. In other words, if the statement is
11866 a single statement (as opposed to a compound-statement), it is
11867 none-the-less treated as if it were enclosed in braces. Any
11868 declarations appearing in the dependent statement are out of scope
11869 after control passes that point. This function parses a statement,
11870 but ensures that is in its own scope, even if it is not a
11871 compound-statement.
11873 If IF_P is not NULL, *IF_P is set to indicate whether the statement
11874 is a (possibly labeled) if statement which is not enclosed in
11875 braces and has an else clause. This is used to implement
11876 -Wparentheses.
11878 CHAIN is a vector of if-else-if conditions. This is used to implement
11879 -Wduplicated-cond.
11881 Returns the new statement. */
11883 static tree
11884 cp_parser_implicitly_scoped_statement (cp_parser* parser, bool *if_p,
11885 const token_indent_info &guard_tinfo,
11886 vec<tree> *chain)
11888 tree statement;
11889 location_t body_loc = cp_lexer_peek_token (parser->lexer)->location;
11890 token_indent_info body_tinfo
11891 = get_token_indent_info (cp_lexer_peek_token (parser->lexer));
11893 if (if_p != NULL)
11894 *if_p = false;
11896 /* Mark if () ; with a special NOP_EXPR. */
11897 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
11899 cp_lexer_consume_token (parser->lexer);
11900 statement = add_stmt (build_empty_stmt (body_loc));
11902 if (guard_tinfo.keyword == RID_IF
11903 && !cp_lexer_next_token_is_keyword (parser->lexer, RID_ELSE))
11904 warning_at (body_loc, OPT_Wempty_body,
11905 "suggest braces around empty body in an %<if%> statement");
11906 else if (guard_tinfo.keyword == RID_ELSE)
11907 warning_at (body_loc, OPT_Wempty_body,
11908 "suggest braces around empty body in an %<else%> statement");
11910 /* if a compound is opened, we simply parse the statement directly. */
11911 else if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
11912 statement = cp_parser_compound_statement (parser, NULL, BCS_NORMAL, false);
11913 /* If the token is not a `{', then we must take special action. */
11914 else
11916 /* Create a compound-statement. */
11917 statement = begin_compound_stmt (0);
11918 /* Parse the dependent-statement. */
11919 cp_parser_statement (parser, NULL_TREE, false, if_p, chain);
11920 /* Finish the dummy compound-statement. */
11921 finish_compound_stmt (statement);
11924 token_indent_info next_tinfo
11925 = get_token_indent_info (cp_lexer_peek_token (parser->lexer));
11926 warn_for_misleading_indentation (guard_tinfo, body_tinfo, next_tinfo);
11928 /* Return the statement. */
11929 return statement;
11932 /* For some dependent statements (like `while (cond) statement'), we
11933 have already created a scope. Therefore, even if the dependent
11934 statement is a compound-statement, we do not want to create another
11935 scope. */
11937 static void
11938 cp_parser_already_scoped_statement (cp_parser* parser, bool *if_p,
11939 const token_indent_info &guard_tinfo)
11941 /* If the token is a `{', then we must take special action. */
11942 if (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE))
11944 token_indent_info body_tinfo
11945 = get_token_indent_info (cp_lexer_peek_token (parser->lexer));
11947 cp_parser_statement (parser, NULL_TREE, false, if_p);
11948 token_indent_info next_tinfo
11949 = get_token_indent_info (cp_lexer_peek_token (parser->lexer));
11950 warn_for_misleading_indentation (guard_tinfo, body_tinfo, next_tinfo);
11952 else
11954 /* Avoid calling cp_parser_compound_statement, so that we
11955 don't create a new scope. Do everything else by hand. */
11956 cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE);
11957 /* If the next keyword is `__label__' we have a label declaration. */
11958 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_LABEL))
11959 cp_parser_label_declaration (parser);
11960 /* Parse an (optional) statement-seq. */
11961 cp_parser_statement_seq_opt (parser, NULL_TREE);
11962 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
11966 /* Declarations [gram.dcl.dcl] */
11968 /* Parse an optional declaration-sequence.
11970 declaration-seq:
11971 declaration
11972 declaration-seq declaration */
11974 static void
11975 cp_parser_declaration_seq_opt (cp_parser* parser)
11977 while (true)
11979 cp_token *token;
11981 token = cp_lexer_peek_token (parser->lexer);
11983 if (token->type == CPP_CLOSE_BRACE
11984 || token->type == CPP_EOF
11985 || token->type == CPP_PRAGMA_EOL)
11986 break;
11988 if (token->type == CPP_SEMICOLON)
11990 /* A declaration consisting of a single semicolon is
11991 invalid. Allow it unless we're being pedantic. */
11992 cp_lexer_consume_token (parser->lexer);
11993 if (!in_system_header_at (input_location))
11994 pedwarn (input_location, OPT_Wpedantic, "extra %<;%>");
11995 continue;
11998 /* If we're entering or exiting a region that's implicitly
11999 extern "C", modify the lang context appropriately. */
12000 if (!parser->implicit_extern_c && token->implicit_extern_c)
12002 push_lang_context (lang_name_c);
12003 parser->implicit_extern_c = true;
12005 else if (parser->implicit_extern_c && !token->implicit_extern_c)
12007 pop_lang_context ();
12008 parser->implicit_extern_c = false;
12011 if (token->type == CPP_PRAGMA)
12013 /* A top-level declaration can consist solely of a #pragma.
12014 A nested declaration cannot, so this is done here and not
12015 in cp_parser_declaration. (A #pragma at block scope is
12016 handled in cp_parser_statement.) */
12017 cp_parser_pragma (parser, pragma_external, NULL);
12018 continue;
12021 /* Parse the declaration itself. */
12022 cp_parser_declaration (parser);
12026 /* Parse a declaration.
12028 declaration:
12029 block-declaration
12030 function-definition
12031 template-declaration
12032 explicit-instantiation
12033 explicit-specialization
12034 linkage-specification
12035 namespace-definition
12037 GNU extension:
12039 declaration:
12040 __extension__ declaration */
12042 static void
12043 cp_parser_declaration (cp_parser* parser)
12045 cp_token token1;
12046 cp_token token2;
12047 int saved_pedantic;
12048 void *p;
12049 tree attributes = NULL_TREE;
12051 /* Check for the `__extension__' keyword. */
12052 if (cp_parser_extension_opt (parser, &saved_pedantic))
12054 /* Parse the qualified declaration. */
12055 cp_parser_declaration (parser);
12056 /* Restore the PEDANTIC flag. */
12057 pedantic = saved_pedantic;
12059 return;
12062 /* Try to figure out what kind of declaration is present. */
12063 token1 = *cp_lexer_peek_token (parser->lexer);
12065 if (token1.type != CPP_EOF)
12066 token2 = *cp_lexer_peek_nth_token (parser->lexer, 2);
12067 else
12069 token2.type = CPP_EOF;
12070 token2.keyword = RID_MAX;
12073 /* Get the high-water mark for the DECLARATOR_OBSTACK. */
12074 p = obstack_alloc (&declarator_obstack, 0);
12076 /* If the next token is `extern' and the following token is a string
12077 literal, then we have a linkage specification. */
12078 if (token1.keyword == RID_EXTERN
12079 && cp_parser_is_pure_string_literal (&token2))
12080 cp_parser_linkage_specification (parser);
12081 /* If the next token is `template', then we have either a template
12082 declaration, an explicit instantiation, or an explicit
12083 specialization. */
12084 else if (token1.keyword == RID_TEMPLATE)
12086 /* `template <>' indicates a template specialization. */
12087 if (token2.type == CPP_LESS
12088 && cp_lexer_peek_nth_token (parser->lexer, 3)->type == CPP_GREATER)
12089 cp_parser_explicit_specialization (parser);
12090 /* `template <' indicates a template declaration. */
12091 else if (token2.type == CPP_LESS)
12092 cp_parser_template_declaration (parser, /*member_p=*/false);
12093 /* Anything else must be an explicit instantiation. */
12094 else
12095 cp_parser_explicit_instantiation (parser);
12097 /* If the next token is `export', then we have a template
12098 declaration. */
12099 else if (token1.keyword == RID_EXPORT)
12100 cp_parser_template_declaration (parser, /*member_p=*/false);
12101 /* If the next token is `extern', 'static' or 'inline' and the one
12102 after that is `template', we have a GNU extended explicit
12103 instantiation directive. */
12104 else if (cp_parser_allow_gnu_extensions_p (parser)
12105 && (token1.keyword == RID_EXTERN
12106 || token1.keyword == RID_STATIC
12107 || token1.keyword == RID_INLINE)
12108 && token2.keyword == RID_TEMPLATE)
12109 cp_parser_explicit_instantiation (parser);
12110 /* If the next token is `namespace', check for a named or unnamed
12111 namespace definition. */
12112 else if (token1.keyword == RID_NAMESPACE
12113 && (/* A named namespace definition. */
12114 (token2.type == CPP_NAME
12115 && (cp_lexer_peek_nth_token (parser->lexer, 3)->type
12116 != CPP_EQ))
12117 || (token2.type == CPP_OPEN_SQUARE
12118 && cp_lexer_peek_nth_token (parser->lexer, 3)->type
12119 == CPP_OPEN_SQUARE)
12120 /* An unnamed namespace definition. */
12121 || token2.type == CPP_OPEN_BRACE
12122 || token2.keyword == RID_ATTRIBUTE))
12123 cp_parser_namespace_definition (parser);
12124 /* An inline (associated) namespace definition. */
12125 else if (token1.keyword == RID_INLINE
12126 && token2.keyword == RID_NAMESPACE)
12127 cp_parser_namespace_definition (parser);
12128 /* Objective-C++ declaration/definition. */
12129 else if (c_dialect_objc () && OBJC_IS_AT_KEYWORD (token1.keyword))
12130 cp_parser_objc_declaration (parser, NULL_TREE);
12131 else if (c_dialect_objc ()
12132 && token1.keyword == RID_ATTRIBUTE
12133 && cp_parser_objc_valid_prefix_attributes (parser, &attributes))
12134 cp_parser_objc_declaration (parser, attributes);
12135 /* At this point we may have a template declared by a concept
12136 introduction. */
12137 else if (flag_concepts
12138 && cp_parser_template_declaration_after_export (parser,
12139 /*member_p=*/false))
12140 /* We did. */;
12141 else
12142 /* Try to parse a block-declaration, or a function-definition. */
12143 cp_parser_block_declaration (parser, /*statement_p=*/false);
12145 /* Free any declarators allocated. */
12146 obstack_free (&declarator_obstack, p);
12149 /* Parse a block-declaration.
12151 block-declaration:
12152 simple-declaration
12153 asm-definition
12154 namespace-alias-definition
12155 using-declaration
12156 using-directive
12158 GNU Extension:
12160 block-declaration:
12161 __extension__ block-declaration
12163 C++0x Extension:
12165 block-declaration:
12166 static_assert-declaration
12168 If STATEMENT_P is TRUE, then this block-declaration is occurring as
12169 part of a declaration-statement. */
12171 static void
12172 cp_parser_block_declaration (cp_parser *parser,
12173 bool statement_p)
12175 cp_token *token1;
12176 int saved_pedantic;
12178 /* Check for the `__extension__' keyword. */
12179 if (cp_parser_extension_opt (parser, &saved_pedantic))
12181 /* Parse the qualified declaration. */
12182 cp_parser_block_declaration (parser, statement_p);
12183 /* Restore the PEDANTIC flag. */
12184 pedantic = saved_pedantic;
12186 return;
12189 /* Peek at the next token to figure out which kind of declaration is
12190 present. */
12191 token1 = cp_lexer_peek_token (parser->lexer);
12193 /* If the next keyword is `asm', we have an asm-definition. */
12194 if (token1->keyword == RID_ASM)
12196 if (statement_p)
12197 cp_parser_commit_to_tentative_parse (parser);
12198 cp_parser_asm_definition (parser);
12200 /* If the next keyword is `namespace', we have a
12201 namespace-alias-definition. */
12202 else if (token1->keyword == RID_NAMESPACE)
12203 cp_parser_namespace_alias_definition (parser);
12204 /* If the next keyword is `using', we have a
12205 using-declaration, a using-directive, or an alias-declaration. */
12206 else if (token1->keyword == RID_USING)
12208 cp_token *token2;
12210 if (statement_p)
12211 cp_parser_commit_to_tentative_parse (parser);
12212 /* If the token after `using' is `namespace', then we have a
12213 using-directive. */
12214 token2 = cp_lexer_peek_nth_token (parser->lexer, 2);
12215 if (token2->keyword == RID_NAMESPACE)
12216 cp_parser_using_directive (parser);
12217 /* If the second token after 'using' is '=', then we have an
12218 alias-declaration. */
12219 else if (cxx_dialect >= cxx11
12220 && token2->type == CPP_NAME
12221 && ((cp_lexer_peek_nth_token (parser->lexer, 3)->type == CPP_EQ)
12222 || (cp_nth_tokens_can_be_attribute_p (parser, 3))))
12223 cp_parser_alias_declaration (parser);
12224 /* Otherwise, it's a using-declaration. */
12225 else
12226 cp_parser_using_declaration (parser,
12227 /*access_declaration_p=*/false);
12229 /* If the next keyword is `__label__' we have a misplaced label
12230 declaration. */
12231 else if (token1->keyword == RID_LABEL)
12233 cp_lexer_consume_token (parser->lexer);
12234 error_at (token1->location, "%<__label__%> not at the beginning of a block");
12235 cp_parser_skip_to_end_of_statement (parser);
12236 /* If the next token is now a `;', consume it. */
12237 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
12238 cp_lexer_consume_token (parser->lexer);
12240 /* If the next token is `static_assert' we have a static assertion. */
12241 else if (token1->keyword == RID_STATIC_ASSERT)
12242 cp_parser_static_assert (parser, /*member_p=*/false);
12243 /* Anything else must be a simple-declaration. */
12244 else
12245 cp_parser_simple_declaration (parser, !statement_p,
12246 /*maybe_range_for_decl*/NULL);
12249 /* Parse a simple-declaration.
12251 simple-declaration:
12252 decl-specifier-seq [opt] init-declarator-list [opt] ;
12254 init-declarator-list:
12255 init-declarator
12256 init-declarator-list , init-declarator
12258 If FUNCTION_DEFINITION_ALLOWED_P is TRUE, then we also recognize a
12259 function-definition as a simple-declaration.
12261 If MAYBE_RANGE_FOR_DECL is not NULL, the pointed tree will be set to the
12262 parsed declaration if it is an uninitialized single declarator not followed
12263 by a `;', or to error_mark_node otherwise. Either way, the trailing `;',
12264 if present, will not be consumed. */
12266 static void
12267 cp_parser_simple_declaration (cp_parser* parser,
12268 bool function_definition_allowed_p,
12269 tree *maybe_range_for_decl)
12271 cp_decl_specifier_seq decl_specifiers;
12272 int declares_class_or_enum;
12273 bool saw_declarator;
12274 location_t comma_loc = UNKNOWN_LOCATION;
12275 location_t init_loc = UNKNOWN_LOCATION;
12277 if (maybe_range_for_decl)
12278 *maybe_range_for_decl = NULL_TREE;
12280 /* Defer access checks until we know what is being declared; the
12281 checks for names appearing in the decl-specifier-seq should be
12282 done as if we were in the scope of the thing being declared. */
12283 push_deferring_access_checks (dk_deferred);
12285 /* Parse the decl-specifier-seq. We have to keep track of whether
12286 or not the decl-specifier-seq declares a named class or
12287 enumeration type, since that is the only case in which the
12288 init-declarator-list is allowed to be empty.
12290 [dcl.dcl]
12292 In a simple-declaration, the optional init-declarator-list can be
12293 omitted only when declaring a class or enumeration, that is when
12294 the decl-specifier-seq contains either a class-specifier, an
12295 elaborated-type-specifier, or an enum-specifier. */
12296 cp_parser_decl_specifier_seq (parser,
12297 CP_PARSER_FLAGS_OPTIONAL,
12298 &decl_specifiers,
12299 &declares_class_or_enum);
12300 /* We no longer need to defer access checks. */
12301 stop_deferring_access_checks ();
12303 /* In a block scope, a valid declaration must always have a
12304 decl-specifier-seq. By not trying to parse declarators, we can
12305 resolve the declaration/expression ambiguity more quickly. */
12306 if (!function_definition_allowed_p
12307 && !decl_specifiers.any_specifiers_p)
12309 cp_parser_error (parser, "expected declaration");
12310 goto done;
12313 /* If the next two tokens are both identifiers, the code is
12314 erroneous. The usual cause of this situation is code like:
12316 T t;
12318 where "T" should name a type -- but does not. */
12319 if (!decl_specifiers.any_type_specifiers_p
12320 && cp_parser_parse_and_diagnose_invalid_type_name (parser))
12322 /* If parsing tentatively, we should commit; we really are
12323 looking at a declaration. */
12324 cp_parser_commit_to_tentative_parse (parser);
12325 /* Give up. */
12326 goto done;
12329 /* If we have seen at least one decl-specifier, and the next token
12330 is not a parenthesis, then we must be looking at a declaration.
12331 (After "int (" we might be looking at a functional cast.) */
12332 if (decl_specifiers.any_specifiers_p
12333 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_PAREN)
12334 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE)
12335 && !cp_parser_error_occurred (parser))
12336 cp_parser_commit_to_tentative_parse (parser);
12338 tree last_type;
12340 last_type = NULL_TREE;
12342 /* Keep going until we hit the `;' at the end of the simple
12343 declaration. */
12344 saw_declarator = false;
12345 while (cp_lexer_next_token_is_not (parser->lexer,
12346 CPP_SEMICOLON))
12348 cp_token *token;
12349 bool function_definition_p;
12350 tree decl;
12351 tree auto_result = NULL_TREE;
12353 if (saw_declarator)
12355 /* If we are processing next declarator, comma is expected */
12356 token = cp_lexer_peek_token (parser->lexer);
12357 gcc_assert (token->type == CPP_COMMA);
12358 cp_lexer_consume_token (parser->lexer);
12359 if (maybe_range_for_decl)
12361 *maybe_range_for_decl = error_mark_node;
12362 if (comma_loc == UNKNOWN_LOCATION)
12363 comma_loc = token->location;
12366 else
12367 saw_declarator = true;
12369 /* Parse the init-declarator. */
12370 decl = cp_parser_init_declarator (parser, &decl_specifiers,
12371 /*checks=*/NULL,
12372 function_definition_allowed_p,
12373 /*member_p=*/false,
12374 declares_class_or_enum,
12375 &function_definition_p,
12376 maybe_range_for_decl,
12377 &init_loc,
12378 &auto_result);
12379 /* If an error occurred while parsing tentatively, exit quickly.
12380 (That usually happens when in the body of a function; each
12381 statement is treated as a declaration-statement until proven
12382 otherwise.) */
12383 if (cp_parser_error_occurred (parser))
12384 goto done;
12386 if (auto_result)
12388 if (last_type && last_type != error_mark_node
12389 && !same_type_p (auto_result, last_type))
12391 /* If the list of declarators contains more than one declarator,
12392 the type of each declared variable is determined as described
12393 above. If the type deduced for the template parameter U is not
12394 the same in each deduction, the program is ill-formed. */
12395 error_at (decl_specifiers.locations[ds_type_spec],
12396 "inconsistent deduction for %qT: %qT and then %qT",
12397 decl_specifiers.type, last_type, auto_result);
12398 last_type = error_mark_node;
12400 else
12401 last_type = auto_result;
12404 /* Handle function definitions specially. */
12405 if (function_definition_p)
12407 /* If the next token is a `,', then we are probably
12408 processing something like:
12410 void f() {}, *p;
12412 which is erroneous. */
12413 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
12415 cp_token *token = cp_lexer_peek_token (parser->lexer);
12416 error_at (token->location,
12417 "mixing"
12418 " declarations and function-definitions is forbidden");
12420 /* Otherwise, we're done with the list of declarators. */
12421 else
12423 pop_deferring_access_checks ();
12424 return;
12427 if (maybe_range_for_decl && *maybe_range_for_decl == NULL_TREE)
12428 *maybe_range_for_decl = decl;
12429 /* The next token should be either a `,' or a `;'. */
12430 token = cp_lexer_peek_token (parser->lexer);
12431 /* If it's a `,', there are more declarators to come. */
12432 if (token->type == CPP_COMMA)
12433 /* will be consumed next time around */;
12434 /* If it's a `;', we are done. */
12435 else if (token->type == CPP_SEMICOLON || maybe_range_for_decl)
12436 break;
12437 /* Anything else is an error. */
12438 else
12440 /* If we have already issued an error message we don't need
12441 to issue another one. */
12442 if ((decl != error_mark_node
12443 && DECL_INITIAL (decl) != error_mark_node)
12444 || cp_parser_uncommitted_to_tentative_parse_p (parser))
12445 cp_parser_error (parser, "expected %<,%> or %<;%>");
12446 /* Skip tokens until we reach the end of the statement. */
12447 cp_parser_skip_to_end_of_statement (parser);
12448 /* If the next token is now a `;', consume it. */
12449 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
12450 cp_lexer_consume_token (parser->lexer);
12451 goto done;
12453 /* After the first time around, a function-definition is not
12454 allowed -- even if it was OK at first. For example:
12456 int i, f() {}
12458 is not valid. */
12459 function_definition_allowed_p = false;
12462 /* Issue an error message if no declarators are present, and the
12463 decl-specifier-seq does not itself declare a class or
12464 enumeration: [dcl.dcl]/3. */
12465 if (!saw_declarator)
12467 if (cp_parser_declares_only_class_p (parser))
12469 if (!declares_class_or_enum
12470 && decl_specifiers.type
12471 && OVERLOAD_TYPE_P (decl_specifiers.type))
12472 /* Ensure an error is issued anyway when finish_decltype_type,
12473 called via cp_parser_decl_specifier_seq, returns a class or
12474 an enumeration (c++/51786). */
12475 decl_specifiers.type = NULL_TREE;
12476 shadow_tag (&decl_specifiers);
12478 /* Perform any deferred access checks. */
12479 perform_deferred_access_checks (tf_warning_or_error);
12482 /* Consume the `;'. */
12483 if (!maybe_range_for_decl)
12484 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
12485 else if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
12487 if (init_loc != UNKNOWN_LOCATION)
12488 error_at (init_loc, "initializer in range-based %<for%> loop");
12489 if (comma_loc != UNKNOWN_LOCATION)
12490 error_at (comma_loc,
12491 "multiple declarations in range-based %<for%> loop");
12494 done:
12495 pop_deferring_access_checks ();
12498 /* Parse a decl-specifier-seq.
12500 decl-specifier-seq:
12501 decl-specifier-seq [opt] decl-specifier
12502 decl-specifier attribute-specifier-seq [opt] (C++11)
12504 decl-specifier:
12505 storage-class-specifier
12506 type-specifier
12507 function-specifier
12508 friend
12509 typedef
12511 GNU Extension:
12513 decl-specifier:
12514 attributes
12516 Concepts Extension:
12518 decl-specifier:
12519 concept
12521 Set *DECL_SPECS to a representation of the decl-specifier-seq.
12523 The parser flags FLAGS is used to control type-specifier parsing.
12525 *DECLARES_CLASS_OR_ENUM is set to the bitwise or of the following
12526 flags:
12528 1: one of the decl-specifiers is an elaborated-type-specifier
12529 (i.e., a type declaration)
12530 2: one of the decl-specifiers is an enum-specifier or a
12531 class-specifier (i.e., a type definition)
12535 static void
12536 cp_parser_decl_specifier_seq (cp_parser* parser,
12537 cp_parser_flags flags,
12538 cp_decl_specifier_seq *decl_specs,
12539 int* declares_class_or_enum)
12541 bool constructor_possible_p = !parser->in_declarator_p;
12542 bool found_decl_spec = false;
12543 cp_token *start_token = NULL;
12544 cp_decl_spec ds;
12546 /* Clear DECL_SPECS. */
12547 clear_decl_specs (decl_specs);
12549 /* Assume no class or enumeration type is declared. */
12550 *declares_class_or_enum = 0;
12552 /* Keep reading specifiers until there are no more to read. */
12553 while (true)
12555 bool constructor_p;
12556 cp_token *token;
12557 ds = ds_last;
12559 /* Peek at the next token. */
12560 token = cp_lexer_peek_token (parser->lexer);
12562 /* Save the first token of the decl spec list for error
12563 reporting. */
12564 if (!start_token)
12565 start_token = token;
12566 /* Handle attributes. */
12567 if (cp_next_tokens_can_be_attribute_p (parser))
12569 /* Parse the attributes. */
12570 tree attrs = cp_parser_attributes_opt (parser);
12572 /* In a sequence of declaration specifiers, c++11 attributes
12573 appertain to the type that precede them. In that case
12574 [dcl.spec]/1 says:
12576 The attribute-specifier-seq affects the type only for
12577 the declaration it appears in, not other declarations
12578 involving the same type.
12580 But for now let's force the user to position the
12581 attribute either at the beginning of the declaration or
12582 after the declarator-id, which would clearly mean that it
12583 applies to the declarator. */
12584 if (cxx11_attribute_p (attrs))
12586 if (!found_decl_spec)
12587 /* The c++11 attribute is at the beginning of the
12588 declaration. It appertains to the entity being
12589 declared. */;
12590 else
12592 if (decl_specs->type && CLASS_TYPE_P (decl_specs->type))
12594 /* This is an attribute following a
12595 class-specifier. */
12596 if (decl_specs->type_definition_p)
12597 warn_misplaced_attr_for_class_type (token->location,
12598 decl_specs->type);
12599 attrs = NULL_TREE;
12601 else
12603 decl_specs->std_attributes
12604 = chainon (decl_specs->std_attributes,
12605 attrs);
12606 if (decl_specs->locations[ds_std_attribute] == 0)
12607 decl_specs->locations[ds_std_attribute] = token->location;
12609 continue;
12613 decl_specs->attributes
12614 = chainon (decl_specs->attributes,
12615 attrs);
12616 if (decl_specs->locations[ds_attribute] == 0)
12617 decl_specs->locations[ds_attribute] = token->location;
12618 continue;
12620 /* Assume we will find a decl-specifier keyword. */
12621 found_decl_spec = true;
12622 /* If the next token is an appropriate keyword, we can simply
12623 add it to the list. */
12624 switch (token->keyword)
12626 /* decl-specifier:
12627 friend
12628 constexpr */
12629 case RID_FRIEND:
12630 if (!at_class_scope_p ())
12632 error_at (token->location, "%<friend%> used outside of class");
12633 cp_lexer_purge_token (parser->lexer);
12635 else
12637 ds = ds_friend;
12638 /* Consume the token. */
12639 cp_lexer_consume_token (parser->lexer);
12641 break;
12643 case RID_CONSTEXPR:
12644 ds = ds_constexpr;
12645 cp_lexer_consume_token (parser->lexer);
12646 break;
12648 case RID_CONCEPT:
12649 ds = ds_concept;
12650 cp_lexer_consume_token (parser->lexer);
12651 break;
12653 /* function-specifier:
12654 inline
12655 virtual
12656 explicit */
12657 case RID_INLINE:
12658 case RID_VIRTUAL:
12659 case RID_EXPLICIT:
12660 cp_parser_function_specifier_opt (parser, decl_specs);
12661 break;
12663 /* decl-specifier:
12664 typedef */
12665 case RID_TYPEDEF:
12666 ds = ds_typedef;
12667 /* Consume the token. */
12668 cp_lexer_consume_token (parser->lexer);
12669 /* A constructor declarator cannot appear in a typedef. */
12670 constructor_possible_p = false;
12671 /* The "typedef" keyword can only occur in a declaration; we
12672 may as well commit at this point. */
12673 cp_parser_commit_to_tentative_parse (parser);
12675 if (decl_specs->storage_class != sc_none)
12676 decl_specs->conflicting_specifiers_p = true;
12677 break;
12679 /* storage-class-specifier:
12680 auto
12681 register
12682 static
12683 extern
12684 mutable
12686 GNU Extension:
12687 thread */
12688 case RID_AUTO:
12689 if (cxx_dialect == cxx98)
12691 /* Consume the token. */
12692 cp_lexer_consume_token (parser->lexer);
12694 /* Complain about `auto' as a storage specifier, if
12695 we're complaining about C++0x compatibility. */
12696 warning_at (token->location, OPT_Wc__11_compat, "%<auto%>"
12697 " changes meaning in C++11; please remove it");
12699 /* Set the storage class anyway. */
12700 cp_parser_set_storage_class (parser, decl_specs, RID_AUTO,
12701 token);
12703 else
12704 /* C++0x auto type-specifier. */
12705 found_decl_spec = false;
12706 break;
12708 case RID_REGISTER:
12709 case RID_STATIC:
12710 case RID_EXTERN:
12711 case RID_MUTABLE:
12712 /* Consume the token. */
12713 cp_lexer_consume_token (parser->lexer);
12714 cp_parser_set_storage_class (parser, decl_specs, token->keyword,
12715 token);
12716 break;
12717 case RID_THREAD:
12718 /* Consume the token. */
12719 ds = ds_thread;
12720 cp_lexer_consume_token (parser->lexer);
12721 break;
12723 default:
12724 /* We did not yet find a decl-specifier yet. */
12725 found_decl_spec = false;
12726 break;
12729 if (found_decl_spec
12730 && (flags & CP_PARSER_FLAGS_ONLY_TYPE_OR_CONSTEXPR)
12731 && token->keyword != RID_CONSTEXPR)
12732 error ("decl-specifier invalid in condition");
12734 if (ds != ds_last)
12735 set_and_check_decl_spec_loc (decl_specs, ds, token);
12737 /* Constructors are a special case. The `S' in `S()' is not a
12738 decl-specifier; it is the beginning of the declarator. */
12739 constructor_p
12740 = (!found_decl_spec
12741 && constructor_possible_p
12742 && (cp_parser_constructor_declarator_p
12743 (parser, decl_spec_seq_has_spec_p (decl_specs, ds_friend))));
12745 /* If we don't have a DECL_SPEC yet, then we must be looking at
12746 a type-specifier. */
12747 if (!found_decl_spec && !constructor_p)
12749 int decl_spec_declares_class_or_enum;
12750 bool is_cv_qualifier;
12751 tree type_spec;
12753 type_spec
12754 = cp_parser_type_specifier (parser, flags,
12755 decl_specs,
12756 /*is_declaration=*/true,
12757 &decl_spec_declares_class_or_enum,
12758 &is_cv_qualifier);
12759 *declares_class_or_enum |= decl_spec_declares_class_or_enum;
12761 /* If this type-specifier referenced a user-defined type
12762 (a typedef, class-name, etc.), then we can't allow any
12763 more such type-specifiers henceforth.
12765 [dcl.spec]
12767 The longest sequence of decl-specifiers that could
12768 possibly be a type name is taken as the
12769 decl-specifier-seq of a declaration. The sequence shall
12770 be self-consistent as described below.
12772 [dcl.type]
12774 As a general rule, at most one type-specifier is allowed
12775 in the complete decl-specifier-seq of a declaration. The
12776 only exceptions are the following:
12778 -- const or volatile can be combined with any other
12779 type-specifier.
12781 -- signed or unsigned can be combined with char, long,
12782 short, or int.
12784 -- ..
12786 Example:
12788 typedef char* Pc;
12789 void g (const int Pc);
12791 Here, Pc is *not* part of the decl-specifier seq; it's
12792 the declarator. Therefore, once we see a type-specifier
12793 (other than a cv-qualifier), we forbid any additional
12794 user-defined types. We *do* still allow things like `int
12795 int' to be considered a decl-specifier-seq, and issue the
12796 error message later. */
12797 if (type_spec && !is_cv_qualifier)
12798 flags |= CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES;
12799 /* A constructor declarator cannot follow a type-specifier. */
12800 if (type_spec)
12802 constructor_possible_p = false;
12803 found_decl_spec = true;
12804 if (!is_cv_qualifier)
12805 decl_specs->any_type_specifiers_p = true;
12809 /* If we still do not have a DECL_SPEC, then there are no more
12810 decl-specifiers. */
12811 if (!found_decl_spec)
12812 break;
12814 decl_specs->any_specifiers_p = true;
12815 /* After we see one decl-specifier, further decl-specifiers are
12816 always optional. */
12817 flags |= CP_PARSER_FLAGS_OPTIONAL;
12820 /* Don't allow a friend specifier with a class definition. */
12821 if (decl_spec_seq_has_spec_p (decl_specs, ds_friend)
12822 && (*declares_class_or_enum & 2))
12823 error_at (decl_specs->locations[ds_friend],
12824 "class definition may not be declared a friend");
12827 /* Parse an (optional) storage-class-specifier.
12829 storage-class-specifier:
12830 auto
12831 register
12832 static
12833 extern
12834 mutable
12836 GNU Extension:
12838 storage-class-specifier:
12839 thread
12841 Returns an IDENTIFIER_NODE corresponding to the keyword used. */
12843 static tree
12844 cp_parser_storage_class_specifier_opt (cp_parser* parser)
12846 switch (cp_lexer_peek_token (parser->lexer)->keyword)
12848 case RID_AUTO:
12849 if (cxx_dialect != cxx98)
12850 return NULL_TREE;
12851 /* Fall through for C++98. */
12853 case RID_REGISTER:
12854 case RID_STATIC:
12855 case RID_EXTERN:
12856 case RID_MUTABLE:
12857 case RID_THREAD:
12858 /* Consume the token. */
12859 return cp_lexer_consume_token (parser->lexer)->u.value;
12861 default:
12862 return NULL_TREE;
12866 /* Parse an (optional) function-specifier.
12868 function-specifier:
12869 inline
12870 virtual
12871 explicit
12873 Returns an IDENTIFIER_NODE corresponding to the keyword used.
12874 Updates DECL_SPECS, if it is non-NULL. */
12876 static tree
12877 cp_parser_function_specifier_opt (cp_parser* parser,
12878 cp_decl_specifier_seq *decl_specs)
12880 cp_token *token = cp_lexer_peek_token (parser->lexer);
12881 switch (token->keyword)
12883 case RID_INLINE:
12884 set_and_check_decl_spec_loc (decl_specs, ds_inline, token);
12885 break;
12887 case RID_VIRTUAL:
12888 /* 14.5.2.3 [temp.mem]
12890 A member function template shall not be virtual. */
12891 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
12892 error_at (token->location, "templates may not be %<virtual%>");
12893 else
12894 set_and_check_decl_spec_loc (decl_specs, ds_virtual, token);
12895 break;
12897 case RID_EXPLICIT:
12898 set_and_check_decl_spec_loc (decl_specs, ds_explicit, token);
12899 break;
12901 default:
12902 return NULL_TREE;
12905 /* Consume the token. */
12906 return cp_lexer_consume_token (parser->lexer)->u.value;
12909 /* Parse a linkage-specification.
12911 linkage-specification:
12912 extern string-literal { declaration-seq [opt] }
12913 extern string-literal declaration */
12915 static void
12916 cp_parser_linkage_specification (cp_parser* parser)
12918 tree linkage;
12920 /* Look for the `extern' keyword. */
12921 cp_parser_require_keyword (parser, RID_EXTERN, RT_EXTERN);
12923 /* Look for the string-literal. */
12924 linkage = cp_parser_string_literal (parser, false, false);
12926 /* Transform the literal into an identifier. If the literal is a
12927 wide-character string, or contains embedded NULs, then we can't
12928 handle it as the user wants. */
12929 if (strlen (TREE_STRING_POINTER (linkage))
12930 != (size_t) (TREE_STRING_LENGTH (linkage) - 1))
12932 cp_parser_error (parser, "invalid linkage-specification");
12933 /* Assume C++ linkage. */
12934 linkage = lang_name_cplusplus;
12936 else
12937 linkage = get_identifier (TREE_STRING_POINTER (linkage));
12939 /* We're now using the new linkage. */
12940 push_lang_context (linkage);
12942 /* If the next token is a `{', then we're using the first
12943 production. */
12944 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
12946 cp_ensure_no_omp_declare_simd (parser);
12947 cp_ensure_no_oacc_routine (parser);
12949 /* Consume the `{' token. */
12950 cp_lexer_consume_token (parser->lexer);
12951 /* Parse the declarations. */
12952 cp_parser_declaration_seq_opt (parser);
12953 /* Look for the closing `}'. */
12954 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
12956 /* Otherwise, there's just one declaration. */
12957 else
12959 bool saved_in_unbraced_linkage_specification_p;
12961 saved_in_unbraced_linkage_specification_p
12962 = parser->in_unbraced_linkage_specification_p;
12963 parser->in_unbraced_linkage_specification_p = true;
12964 cp_parser_declaration (parser);
12965 parser->in_unbraced_linkage_specification_p
12966 = saved_in_unbraced_linkage_specification_p;
12969 /* We're done with the linkage-specification. */
12970 pop_lang_context ();
12973 /* Parse a static_assert-declaration.
12975 static_assert-declaration:
12976 static_assert ( constant-expression , string-literal ) ;
12977 static_assert ( constant-expression ) ; (C++1Z)
12979 If MEMBER_P, this static_assert is a class member. */
12981 static void
12982 cp_parser_static_assert(cp_parser *parser, bool member_p)
12984 tree condition;
12985 tree message;
12986 cp_token *token;
12987 location_t saved_loc;
12988 bool dummy;
12990 /* Peek at the `static_assert' token so we can keep track of exactly
12991 where the static assertion started. */
12992 token = cp_lexer_peek_token (parser->lexer);
12993 saved_loc = token->location;
12995 /* Look for the `static_assert' keyword. */
12996 if (!cp_parser_require_keyword (parser, RID_STATIC_ASSERT,
12997 RT_STATIC_ASSERT))
12998 return;
13000 /* We know we are in a static assertion; commit to any tentative
13001 parse. */
13002 if (cp_parser_parsing_tentatively (parser))
13003 cp_parser_commit_to_tentative_parse (parser);
13005 /* Parse the `(' starting the static assertion condition. */
13006 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
13008 /* Parse the constant-expression. Allow a non-constant expression
13009 here in order to give better diagnostics in finish_static_assert. */
13010 condition =
13011 cp_parser_constant_expression (parser,
13012 /*allow_non_constant_p=*/true,
13013 /*non_constant_p=*/&dummy);
13015 if (cp_lexer_peek_token (parser->lexer)->type == CPP_CLOSE_PAREN)
13017 if (cxx_dialect < cxx1z)
13018 pedwarn (input_location, OPT_Wpedantic,
13019 "static_assert without a message "
13020 "only available with -std=c++1z or -std=gnu++1z");
13021 /* Eat the ')' */
13022 cp_lexer_consume_token (parser->lexer);
13023 message = build_string (1, "");
13024 TREE_TYPE (message) = char_array_type_node;
13025 fix_string_type (message);
13027 else
13029 /* Parse the separating `,'. */
13030 cp_parser_require (parser, CPP_COMMA, RT_COMMA);
13032 /* Parse the string-literal message. */
13033 message = cp_parser_string_literal (parser,
13034 /*translate=*/false,
13035 /*wide_ok=*/true);
13037 /* A `)' completes the static assertion. */
13038 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
13039 cp_parser_skip_to_closing_parenthesis (parser,
13040 /*recovering=*/true,
13041 /*or_comma=*/false,
13042 /*consume_paren=*/true);
13045 /* A semicolon terminates the declaration. */
13046 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
13048 /* Complete the static assertion, which may mean either processing
13049 the static assert now or saving it for template instantiation. */
13050 finish_static_assert (condition, message, saved_loc, member_p);
13053 /* Parse the expression in decltype ( expression ). */
13055 static tree
13056 cp_parser_decltype_expr (cp_parser *parser,
13057 bool &id_expression_or_member_access_p)
13059 cp_token *id_expr_start_token;
13060 tree expr;
13062 /* Since we're going to preserve any side-effects from this parse, set up a
13063 firewall to protect our callers from cp_parser_commit_to_tentative_parse
13064 in the expression. */
13065 tentative_firewall firewall (parser);
13067 /* First, try parsing an id-expression. */
13068 id_expr_start_token = cp_lexer_peek_token (parser->lexer);
13069 cp_parser_parse_tentatively (parser);
13070 expr = cp_parser_id_expression (parser,
13071 /*template_keyword_p=*/false,
13072 /*check_dependency_p=*/true,
13073 /*template_p=*/NULL,
13074 /*declarator_p=*/false,
13075 /*optional_p=*/false);
13077 if (!cp_parser_error_occurred (parser) && expr != error_mark_node)
13079 bool non_integral_constant_expression_p = false;
13080 tree id_expression = expr;
13081 cp_id_kind idk;
13082 const char *error_msg;
13084 if (identifier_p (expr))
13085 /* Lookup the name we got back from the id-expression. */
13086 expr = cp_parser_lookup_name_simple (parser, expr,
13087 id_expr_start_token->location);
13089 if (expr
13090 && expr != error_mark_node
13091 && TREE_CODE (expr) != TYPE_DECL
13092 && (TREE_CODE (expr) != BIT_NOT_EXPR
13093 || !TYPE_P (TREE_OPERAND (expr, 0)))
13094 && cp_lexer_peek_token (parser->lexer)->type == CPP_CLOSE_PAREN)
13096 /* Complete lookup of the id-expression. */
13097 expr = (finish_id_expression
13098 (id_expression, expr, parser->scope, &idk,
13099 /*integral_constant_expression_p=*/false,
13100 /*allow_non_integral_constant_expression_p=*/true,
13101 &non_integral_constant_expression_p,
13102 /*template_p=*/false,
13103 /*done=*/true,
13104 /*address_p=*/false,
13105 /*template_arg_p=*/false,
13106 &error_msg,
13107 id_expr_start_token->location));
13109 if (expr == error_mark_node)
13110 /* We found an id-expression, but it was something that we
13111 should not have found. This is an error, not something
13112 we can recover from, so note that we found an
13113 id-expression and we'll recover as gracefully as
13114 possible. */
13115 id_expression_or_member_access_p = true;
13118 if (expr
13119 && expr != error_mark_node
13120 && cp_lexer_peek_token (parser->lexer)->type == CPP_CLOSE_PAREN)
13121 /* We have an id-expression. */
13122 id_expression_or_member_access_p = true;
13125 if (!id_expression_or_member_access_p)
13127 /* Abort the id-expression parse. */
13128 cp_parser_abort_tentative_parse (parser);
13130 /* Parsing tentatively, again. */
13131 cp_parser_parse_tentatively (parser);
13133 /* Parse a class member access. */
13134 expr = cp_parser_postfix_expression (parser, /*address_p=*/false,
13135 /*cast_p=*/false, /*decltype*/true,
13136 /*member_access_only_p=*/true, NULL);
13138 if (expr
13139 && expr != error_mark_node
13140 && cp_lexer_peek_token (parser->lexer)->type == CPP_CLOSE_PAREN)
13141 /* We have an id-expression. */
13142 id_expression_or_member_access_p = true;
13145 if (id_expression_or_member_access_p)
13146 /* We have parsed the complete id-expression or member access. */
13147 cp_parser_parse_definitely (parser);
13148 else
13150 /* Abort our attempt to parse an id-expression or member access
13151 expression. */
13152 cp_parser_abort_tentative_parse (parser);
13154 /* Parse a full expression. */
13155 expr = cp_parser_expression (parser, /*pidk=*/NULL, /*cast_p=*/false,
13156 /*decltype_p=*/true);
13159 return expr;
13162 /* Parse a `decltype' type. Returns the type.
13164 simple-type-specifier:
13165 decltype ( expression )
13166 C++14 proposal:
13167 decltype ( auto ) */
13169 static tree
13170 cp_parser_decltype (cp_parser *parser)
13172 tree expr;
13173 bool id_expression_or_member_access_p = false;
13174 const char *saved_message;
13175 bool saved_integral_constant_expression_p;
13176 bool saved_non_integral_constant_expression_p;
13177 bool saved_greater_than_is_operator_p;
13178 cp_token *start_token = cp_lexer_peek_token (parser->lexer);
13180 if (start_token->type == CPP_DECLTYPE)
13182 /* Already parsed. */
13183 cp_lexer_consume_token (parser->lexer);
13184 return saved_checks_value (start_token->u.tree_check_value);
13187 /* Look for the `decltype' token. */
13188 if (!cp_parser_require_keyword (parser, RID_DECLTYPE, RT_DECLTYPE))
13189 return error_mark_node;
13191 /* Parse the opening `('. */
13192 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
13193 return error_mark_node;
13195 /* decltype (auto) */
13196 if (cxx_dialect >= cxx14
13197 && cp_lexer_next_token_is_keyword (parser->lexer, RID_AUTO))
13199 cp_lexer_consume_token (parser->lexer);
13200 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
13201 return error_mark_node;
13202 expr = make_decltype_auto ();
13203 AUTO_IS_DECLTYPE (expr) = true;
13204 goto rewrite;
13207 /* Types cannot be defined in a `decltype' expression. Save away the
13208 old message. */
13209 saved_message = parser->type_definition_forbidden_message;
13211 /* And create the new one. */
13212 parser->type_definition_forbidden_message
13213 = G_("types may not be defined in %<decltype%> expressions");
13215 /* The restrictions on constant-expressions do not apply inside
13216 decltype expressions. */
13217 saved_integral_constant_expression_p
13218 = parser->integral_constant_expression_p;
13219 saved_non_integral_constant_expression_p
13220 = parser->non_integral_constant_expression_p;
13221 parser->integral_constant_expression_p = false;
13223 /* Within a parenthesized expression, a `>' token is always
13224 the greater-than operator. */
13225 saved_greater_than_is_operator_p
13226 = parser->greater_than_is_operator_p;
13227 parser->greater_than_is_operator_p = true;
13229 /* Do not actually evaluate the expression. */
13230 ++cp_unevaluated_operand;
13232 /* Do not warn about problems with the expression. */
13233 ++c_inhibit_evaluation_warnings;
13235 expr = cp_parser_decltype_expr (parser, id_expression_or_member_access_p);
13237 /* Go back to evaluating expressions. */
13238 --cp_unevaluated_operand;
13239 --c_inhibit_evaluation_warnings;
13241 /* The `>' token might be the end of a template-id or
13242 template-parameter-list now. */
13243 parser->greater_than_is_operator_p
13244 = saved_greater_than_is_operator_p;
13246 /* Restore the old message and the integral constant expression
13247 flags. */
13248 parser->type_definition_forbidden_message = saved_message;
13249 parser->integral_constant_expression_p
13250 = saved_integral_constant_expression_p;
13251 parser->non_integral_constant_expression_p
13252 = saved_non_integral_constant_expression_p;
13254 /* Parse to the closing `)'. */
13255 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
13257 cp_parser_skip_to_closing_parenthesis (parser, true, false,
13258 /*consume_paren=*/true);
13259 return error_mark_node;
13262 expr = finish_decltype_type (expr, id_expression_or_member_access_p,
13263 tf_warning_or_error);
13265 rewrite:
13266 /* Replace the decltype with a CPP_DECLTYPE so we don't need to parse
13267 it again. */
13268 start_token->type = CPP_DECLTYPE;
13269 start_token->u.tree_check_value = ggc_cleared_alloc<struct tree_check> ();
13270 start_token->u.tree_check_value->value = expr;
13271 start_token->u.tree_check_value->checks = get_deferred_access_checks ();
13272 start_token->keyword = RID_MAX;
13273 cp_lexer_purge_tokens_after (parser->lexer, start_token);
13275 return expr;
13278 /* Special member functions [gram.special] */
13280 /* Parse a conversion-function-id.
13282 conversion-function-id:
13283 operator conversion-type-id
13285 Returns an IDENTIFIER_NODE representing the operator. */
13287 static tree
13288 cp_parser_conversion_function_id (cp_parser* parser)
13290 tree type;
13291 tree saved_scope;
13292 tree saved_qualifying_scope;
13293 tree saved_object_scope;
13294 tree pushed_scope = NULL_TREE;
13296 /* Look for the `operator' token. */
13297 if (!cp_parser_require_keyword (parser, RID_OPERATOR, RT_OPERATOR))
13298 return error_mark_node;
13299 /* When we parse the conversion-type-id, the current scope will be
13300 reset. However, we need that information in able to look up the
13301 conversion function later, so we save it here. */
13302 saved_scope = parser->scope;
13303 saved_qualifying_scope = parser->qualifying_scope;
13304 saved_object_scope = parser->object_scope;
13305 /* We must enter the scope of the class so that the names of
13306 entities declared within the class are available in the
13307 conversion-type-id. For example, consider:
13309 struct S {
13310 typedef int I;
13311 operator I();
13314 S::operator I() { ... }
13316 In order to see that `I' is a type-name in the definition, we
13317 must be in the scope of `S'. */
13318 if (saved_scope)
13319 pushed_scope = push_scope (saved_scope);
13320 /* Parse the conversion-type-id. */
13321 type = cp_parser_conversion_type_id (parser);
13322 /* Leave the scope of the class, if any. */
13323 if (pushed_scope)
13324 pop_scope (pushed_scope);
13325 /* Restore the saved scope. */
13326 parser->scope = saved_scope;
13327 parser->qualifying_scope = saved_qualifying_scope;
13328 parser->object_scope = saved_object_scope;
13329 /* If the TYPE is invalid, indicate failure. */
13330 if (type == error_mark_node)
13331 return error_mark_node;
13332 return mangle_conv_op_name_for_type (type);
13335 /* Parse a conversion-type-id:
13337 conversion-type-id:
13338 type-specifier-seq conversion-declarator [opt]
13340 Returns the TYPE specified. */
13342 static tree
13343 cp_parser_conversion_type_id (cp_parser* parser)
13345 tree attributes;
13346 cp_decl_specifier_seq type_specifiers;
13347 cp_declarator *declarator;
13348 tree type_specified;
13349 const char *saved_message;
13351 /* Parse the attributes. */
13352 attributes = cp_parser_attributes_opt (parser);
13354 saved_message = parser->type_definition_forbidden_message;
13355 parser->type_definition_forbidden_message
13356 = G_("types may not be defined in a conversion-type-id");
13358 /* Parse the type-specifiers. */
13359 cp_parser_type_specifier_seq (parser, /*is_declaration=*/false,
13360 /*is_trailing_return=*/false,
13361 &type_specifiers);
13363 parser->type_definition_forbidden_message = saved_message;
13365 /* If that didn't work, stop. */
13366 if (type_specifiers.type == error_mark_node)
13367 return error_mark_node;
13368 /* Parse the conversion-declarator. */
13369 declarator = cp_parser_conversion_declarator_opt (parser);
13371 type_specified = grokdeclarator (declarator, &type_specifiers, TYPENAME,
13372 /*initialized=*/0, &attributes);
13373 if (attributes)
13374 cplus_decl_attributes (&type_specified, attributes, /*flags=*/0);
13376 /* Don't give this error when parsing tentatively. This happens to
13377 work because we always parse this definitively once. */
13378 if (! cp_parser_uncommitted_to_tentative_parse_p (parser)
13379 && type_uses_auto (type_specified))
13381 if (cxx_dialect < cxx14)
13383 error ("invalid use of %<auto%> in conversion operator");
13384 return error_mark_node;
13386 else if (template_parm_scope_p ())
13387 warning (0, "use of %<auto%> in member template "
13388 "conversion operator can never be deduced");
13391 return type_specified;
13394 /* Parse an (optional) conversion-declarator.
13396 conversion-declarator:
13397 ptr-operator conversion-declarator [opt]
13401 static cp_declarator *
13402 cp_parser_conversion_declarator_opt (cp_parser* parser)
13404 enum tree_code code;
13405 tree class_type, std_attributes = NULL_TREE;
13406 cp_cv_quals cv_quals;
13408 /* We don't know if there's a ptr-operator next, or not. */
13409 cp_parser_parse_tentatively (parser);
13410 /* Try the ptr-operator. */
13411 code = cp_parser_ptr_operator (parser, &class_type, &cv_quals,
13412 &std_attributes);
13413 /* If it worked, look for more conversion-declarators. */
13414 if (cp_parser_parse_definitely (parser))
13416 cp_declarator *declarator;
13418 /* Parse another optional declarator. */
13419 declarator = cp_parser_conversion_declarator_opt (parser);
13421 declarator = cp_parser_make_indirect_declarator
13422 (code, class_type, cv_quals, declarator, std_attributes);
13424 return declarator;
13427 return NULL;
13430 /* Parse an (optional) ctor-initializer.
13432 ctor-initializer:
13433 : mem-initializer-list
13435 Returns TRUE iff the ctor-initializer was actually present. */
13437 static bool
13438 cp_parser_ctor_initializer_opt (cp_parser* parser)
13440 /* If the next token is not a `:', then there is no
13441 ctor-initializer. */
13442 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COLON))
13444 /* Do default initialization of any bases and members. */
13445 if (DECL_CONSTRUCTOR_P (current_function_decl))
13446 finish_mem_initializers (NULL_TREE);
13448 return false;
13451 /* Consume the `:' token. */
13452 cp_lexer_consume_token (parser->lexer);
13453 /* And the mem-initializer-list. */
13454 cp_parser_mem_initializer_list (parser);
13456 return true;
13459 /* Parse a mem-initializer-list.
13461 mem-initializer-list:
13462 mem-initializer ... [opt]
13463 mem-initializer ... [opt] , mem-initializer-list */
13465 static void
13466 cp_parser_mem_initializer_list (cp_parser* parser)
13468 tree mem_initializer_list = NULL_TREE;
13469 tree target_ctor = error_mark_node;
13470 cp_token *token = cp_lexer_peek_token (parser->lexer);
13472 /* Let the semantic analysis code know that we are starting the
13473 mem-initializer-list. */
13474 if (!DECL_CONSTRUCTOR_P (current_function_decl))
13475 error_at (token->location,
13476 "only constructors take member initializers");
13478 /* Loop through the list. */
13479 while (true)
13481 tree mem_initializer;
13483 token = cp_lexer_peek_token (parser->lexer);
13484 /* Parse the mem-initializer. */
13485 mem_initializer = cp_parser_mem_initializer (parser);
13486 /* If the next token is a `...', we're expanding member initializers. */
13487 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
13489 /* Consume the `...'. */
13490 cp_lexer_consume_token (parser->lexer);
13492 /* The TREE_PURPOSE must be a _TYPE, because base-specifiers
13493 can be expanded but members cannot. */
13494 if (mem_initializer != error_mark_node
13495 && !TYPE_P (TREE_PURPOSE (mem_initializer)))
13497 error_at (token->location,
13498 "cannot expand initializer for member %<%D%>",
13499 TREE_PURPOSE (mem_initializer));
13500 mem_initializer = error_mark_node;
13503 /* Construct the pack expansion type. */
13504 if (mem_initializer != error_mark_node)
13505 mem_initializer = make_pack_expansion (mem_initializer);
13507 if (target_ctor != error_mark_node
13508 && mem_initializer != error_mark_node)
13510 error ("mem-initializer for %qD follows constructor delegation",
13511 TREE_PURPOSE (mem_initializer));
13512 mem_initializer = error_mark_node;
13514 /* Look for a target constructor. */
13515 if (mem_initializer != error_mark_node
13516 && CLASS_TYPE_P (TREE_PURPOSE (mem_initializer))
13517 && same_type_p (TREE_PURPOSE (mem_initializer), current_class_type))
13519 maybe_warn_cpp0x (CPP0X_DELEGATING_CTORS);
13520 if (mem_initializer_list)
13522 error ("constructor delegation follows mem-initializer for %qD",
13523 TREE_PURPOSE (mem_initializer_list));
13524 mem_initializer = error_mark_node;
13526 target_ctor = mem_initializer;
13528 /* Add it to the list, unless it was erroneous. */
13529 if (mem_initializer != error_mark_node)
13531 TREE_CHAIN (mem_initializer) = mem_initializer_list;
13532 mem_initializer_list = mem_initializer;
13534 /* If the next token is not a `,', we're done. */
13535 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
13536 break;
13537 /* Consume the `,' token. */
13538 cp_lexer_consume_token (parser->lexer);
13541 /* Perform semantic analysis. */
13542 if (DECL_CONSTRUCTOR_P (current_function_decl))
13543 finish_mem_initializers (mem_initializer_list);
13546 /* Parse a mem-initializer.
13548 mem-initializer:
13549 mem-initializer-id ( expression-list [opt] )
13550 mem-initializer-id braced-init-list
13552 GNU extension:
13554 mem-initializer:
13555 ( expression-list [opt] )
13557 Returns a TREE_LIST. The TREE_PURPOSE is the TYPE (for a base
13558 class) or FIELD_DECL (for a non-static data member) to initialize;
13559 the TREE_VALUE is the expression-list. An empty initialization
13560 list is represented by void_list_node. */
13562 static tree
13563 cp_parser_mem_initializer (cp_parser* parser)
13565 tree mem_initializer_id;
13566 tree expression_list;
13567 tree member;
13568 cp_token *token = cp_lexer_peek_token (parser->lexer);
13570 /* Find out what is being initialized. */
13571 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
13573 permerror (token->location,
13574 "anachronistic old-style base class initializer");
13575 mem_initializer_id = NULL_TREE;
13577 else
13579 mem_initializer_id = cp_parser_mem_initializer_id (parser);
13580 if (mem_initializer_id == error_mark_node)
13581 return mem_initializer_id;
13583 member = expand_member_init (mem_initializer_id);
13584 if (member && !DECL_P (member))
13585 in_base_initializer = 1;
13587 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
13589 bool expr_non_constant_p;
13590 cp_lexer_set_source_position (parser->lexer);
13591 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
13592 expression_list = cp_parser_braced_list (parser, &expr_non_constant_p);
13593 CONSTRUCTOR_IS_DIRECT_INIT (expression_list) = 1;
13594 expression_list = build_tree_list (NULL_TREE, expression_list);
13596 else
13598 vec<tree, va_gc> *vec;
13599 vec = cp_parser_parenthesized_expression_list (parser, non_attr,
13600 /*cast_p=*/false,
13601 /*allow_expansion_p=*/true,
13602 /*non_constant_p=*/NULL);
13603 if (vec == NULL)
13604 return error_mark_node;
13605 expression_list = build_tree_list_vec (vec);
13606 release_tree_vector (vec);
13609 if (expression_list == error_mark_node)
13610 return error_mark_node;
13611 if (!expression_list)
13612 expression_list = void_type_node;
13614 in_base_initializer = 0;
13616 return member ? build_tree_list (member, expression_list) : error_mark_node;
13619 /* Parse a mem-initializer-id.
13621 mem-initializer-id:
13622 :: [opt] nested-name-specifier [opt] class-name
13623 decltype-specifier (C++11)
13624 identifier
13626 Returns a TYPE indicating the class to be initialized for the first
13627 production (and the second in C++11). Returns an IDENTIFIER_NODE
13628 indicating the data member to be initialized for the last production. */
13630 static tree
13631 cp_parser_mem_initializer_id (cp_parser* parser)
13633 bool global_scope_p;
13634 bool nested_name_specifier_p;
13635 bool template_p = false;
13636 tree id;
13638 cp_token *token = cp_lexer_peek_token (parser->lexer);
13640 /* `typename' is not allowed in this context ([temp.res]). */
13641 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TYPENAME))
13643 error_at (token->location,
13644 "keyword %<typename%> not allowed in this context (a qualified "
13645 "member initializer is implicitly a type)");
13646 cp_lexer_consume_token (parser->lexer);
13648 /* Look for the optional `::' operator. */
13649 global_scope_p
13650 = (cp_parser_global_scope_opt (parser,
13651 /*current_scope_valid_p=*/false)
13652 != NULL_TREE);
13653 /* Look for the optional nested-name-specifier. The simplest way to
13654 implement:
13656 [temp.res]
13658 The keyword `typename' is not permitted in a base-specifier or
13659 mem-initializer; in these contexts a qualified name that
13660 depends on a template-parameter is implicitly assumed to be a
13661 type name.
13663 is to assume that we have seen the `typename' keyword at this
13664 point. */
13665 nested_name_specifier_p
13666 = (cp_parser_nested_name_specifier_opt (parser,
13667 /*typename_keyword_p=*/true,
13668 /*check_dependency_p=*/true,
13669 /*type_p=*/true,
13670 /*is_declaration=*/true)
13671 != NULL_TREE);
13672 if (nested_name_specifier_p)
13673 template_p = cp_parser_optional_template_keyword (parser);
13674 /* If there is a `::' operator or a nested-name-specifier, then we
13675 are definitely looking for a class-name. */
13676 if (global_scope_p || nested_name_specifier_p)
13677 return cp_parser_class_name (parser,
13678 /*typename_keyword_p=*/true,
13679 /*template_keyword_p=*/template_p,
13680 typename_type,
13681 /*check_dependency_p=*/true,
13682 /*class_head_p=*/false,
13683 /*is_declaration=*/true);
13684 /* Otherwise, we could also be looking for an ordinary identifier. */
13685 cp_parser_parse_tentatively (parser);
13686 if (cp_lexer_next_token_is_decltype (parser->lexer))
13687 /* Try a decltype-specifier. */
13688 id = cp_parser_decltype (parser);
13689 else
13690 /* Otherwise, try a class-name. */
13691 id = cp_parser_class_name (parser,
13692 /*typename_keyword_p=*/true,
13693 /*template_keyword_p=*/false,
13694 none_type,
13695 /*check_dependency_p=*/true,
13696 /*class_head_p=*/false,
13697 /*is_declaration=*/true);
13698 /* If we found one, we're done. */
13699 if (cp_parser_parse_definitely (parser))
13700 return id;
13701 /* Otherwise, look for an ordinary identifier. */
13702 return cp_parser_identifier (parser);
13705 /* Overloading [gram.over] */
13707 /* Parse an operator-function-id.
13709 operator-function-id:
13710 operator operator
13712 Returns an IDENTIFIER_NODE for the operator which is a
13713 human-readable spelling of the identifier, e.g., `operator +'. */
13715 static cp_expr
13716 cp_parser_operator_function_id (cp_parser* parser)
13718 /* Look for the `operator' keyword. */
13719 if (!cp_parser_require_keyword (parser, RID_OPERATOR, RT_OPERATOR))
13720 return error_mark_node;
13721 /* And then the name of the operator itself. */
13722 return cp_parser_operator (parser);
13725 /* Return an identifier node for a user-defined literal operator.
13726 The suffix identifier is chained to the operator name identifier. */
13728 static tree
13729 cp_literal_operator_id (const char* name)
13731 tree identifier;
13732 char *buffer = XNEWVEC (char, strlen (UDLIT_OP_ANSI_PREFIX)
13733 + strlen (name) + 10);
13734 sprintf (buffer, UDLIT_OP_ANSI_FORMAT, name);
13735 identifier = get_identifier (buffer);
13737 return identifier;
13740 /* Parse an operator.
13742 operator:
13743 new delete new[] delete[] + - * / % ^ & | ~ ! = < >
13744 += -= *= /= %= ^= &= |= << >> >>= <<= == != <= >= &&
13745 || ++ -- , ->* -> () []
13747 GNU Extensions:
13749 operator:
13750 <? >? <?= >?=
13752 Returns an IDENTIFIER_NODE for the operator which is a
13753 human-readable spelling of the identifier, e.g., `operator +'. */
13755 static cp_expr
13756 cp_parser_operator (cp_parser* parser)
13758 tree id = NULL_TREE;
13759 cp_token *token;
13760 bool utf8 = false;
13762 /* Peek at the next token. */
13763 token = cp_lexer_peek_token (parser->lexer);
13765 location_t start_loc = token->location;
13767 /* Figure out which operator we have. */
13768 switch (token->type)
13770 case CPP_KEYWORD:
13772 enum tree_code op;
13774 /* The keyword should be either `new' or `delete'. */
13775 if (token->keyword == RID_NEW)
13776 op = NEW_EXPR;
13777 else if (token->keyword == RID_DELETE)
13778 op = DELETE_EXPR;
13779 else
13780 break;
13782 /* Consume the `new' or `delete' token. */
13783 location_t end_loc = cp_lexer_consume_token (parser->lexer)->location;
13785 /* Peek at the next token. */
13786 token = cp_lexer_peek_token (parser->lexer);
13787 /* If it's a `[' token then this is the array variant of the
13788 operator. */
13789 if (token->type == CPP_OPEN_SQUARE)
13791 /* Consume the `[' token. */
13792 cp_lexer_consume_token (parser->lexer);
13793 /* Look for the `]' token. */
13794 if (cp_token *close_token
13795 = cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE))
13796 end_loc = close_token->location;
13797 id = ansi_opname (op == NEW_EXPR
13798 ? VEC_NEW_EXPR : VEC_DELETE_EXPR);
13800 /* Otherwise, we have the non-array variant. */
13801 else
13802 id = ansi_opname (op);
13804 location_t loc = make_location (start_loc, start_loc, end_loc);
13806 return cp_expr (id, loc);
13809 case CPP_PLUS:
13810 id = ansi_opname (PLUS_EXPR);
13811 break;
13813 case CPP_MINUS:
13814 id = ansi_opname (MINUS_EXPR);
13815 break;
13817 case CPP_MULT:
13818 id = ansi_opname (MULT_EXPR);
13819 break;
13821 case CPP_DIV:
13822 id = ansi_opname (TRUNC_DIV_EXPR);
13823 break;
13825 case CPP_MOD:
13826 id = ansi_opname (TRUNC_MOD_EXPR);
13827 break;
13829 case CPP_XOR:
13830 id = ansi_opname (BIT_XOR_EXPR);
13831 break;
13833 case CPP_AND:
13834 id = ansi_opname (BIT_AND_EXPR);
13835 break;
13837 case CPP_OR:
13838 id = ansi_opname (BIT_IOR_EXPR);
13839 break;
13841 case CPP_COMPL:
13842 id = ansi_opname (BIT_NOT_EXPR);
13843 break;
13845 case CPP_NOT:
13846 id = ansi_opname (TRUTH_NOT_EXPR);
13847 break;
13849 case CPP_EQ:
13850 id = ansi_assopname (NOP_EXPR);
13851 break;
13853 case CPP_LESS:
13854 id = ansi_opname (LT_EXPR);
13855 break;
13857 case CPP_GREATER:
13858 id = ansi_opname (GT_EXPR);
13859 break;
13861 case CPP_PLUS_EQ:
13862 id = ansi_assopname (PLUS_EXPR);
13863 break;
13865 case CPP_MINUS_EQ:
13866 id = ansi_assopname (MINUS_EXPR);
13867 break;
13869 case CPP_MULT_EQ:
13870 id = ansi_assopname (MULT_EXPR);
13871 break;
13873 case CPP_DIV_EQ:
13874 id = ansi_assopname (TRUNC_DIV_EXPR);
13875 break;
13877 case CPP_MOD_EQ:
13878 id = ansi_assopname (TRUNC_MOD_EXPR);
13879 break;
13881 case CPP_XOR_EQ:
13882 id = ansi_assopname (BIT_XOR_EXPR);
13883 break;
13885 case CPP_AND_EQ:
13886 id = ansi_assopname (BIT_AND_EXPR);
13887 break;
13889 case CPP_OR_EQ:
13890 id = ansi_assopname (BIT_IOR_EXPR);
13891 break;
13893 case CPP_LSHIFT:
13894 id = ansi_opname (LSHIFT_EXPR);
13895 break;
13897 case CPP_RSHIFT:
13898 id = ansi_opname (RSHIFT_EXPR);
13899 break;
13901 case CPP_LSHIFT_EQ:
13902 id = ansi_assopname (LSHIFT_EXPR);
13903 break;
13905 case CPP_RSHIFT_EQ:
13906 id = ansi_assopname (RSHIFT_EXPR);
13907 break;
13909 case CPP_EQ_EQ:
13910 id = ansi_opname (EQ_EXPR);
13911 break;
13913 case CPP_NOT_EQ:
13914 id = ansi_opname (NE_EXPR);
13915 break;
13917 case CPP_LESS_EQ:
13918 id = ansi_opname (LE_EXPR);
13919 break;
13921 case CPP_GREATER_EQ:
13922 id = ansi_opname (GE_EXPR);
13923 break;
13925 case CPP_AND_AND:
13926 id = ansi_opname (TRUTH_ANDIF_EXPR);
13927 break;
13929 case CPP_OR_OR:
13930 id = ansi_opname (TRUTH_ORIF_EXPR);
13931 break;
13933 case CPP_PLUS_PLUS:
13934 id = ansi_opname (POSTINCREMENT_EXPR);
13935 break;
13937 case CPP_MINUS_MINUS:
13938 id = ansi_opname (PREDECREMENT_EXPR);
13939 break;
13941 case CPP_COMMA:
13942 id = ansi_opname (COMPOUND_EXPR);
13943 break;
13945 case CPP_DEREF_STAR:
13946 id = ansi_opname (MEMBER_REF);
13947 break;
13949 case CPP_DEREF:
13950 id = ansi_opname (COMPONENT_REF);
13951 break;
13953 case CPP_OPEN_PAREN:
13954 /* Consume the `('. */
13955 cp_lexer_consume_token (parser->lexer);
13956 /* Look for the matching `)'. */
13957 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
13958 return ansi_opname (CALL_EXPR);
13960 case CPP_OPEN_SQUARE:
13961 /* Consume the `['. */
13962 cp_lexer_consume_token (parser->lexer);
13963 /* Look for the matching `]'. */
13964 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
13965 return ansi_opname (ARRAY_REF);
13967 case CPP_UTF8STRING:
13968 case CPP_UTF8STRING_USERDEF:
13969 utf8 = true;
13970 case CPP_STRING:
13971 case CPP_WSTRING:
13972 case CPP_STRING16:
13973 case CPP_STRING32:
13974 case CPP_STRING_USERDEF:
13975 case CPP_WSTRING_USERDEF:
13976 case CPP_STRING16_USERDEF:
13977 case CPP_STRING32_USERDEF:
13979 tree str, string_tree;
13980 int sz, len;
13982 if (cxx_dialect == cxx98)
13983 maybe_warn_cpp0x (CPP0X_USER_DEFINED_LITERALS);
13985 /* Consume the string. */
13986 str = cp_parser_string_literal (parser, /*translate=*/true,
13987 /*wide_ok=*/true, /*lookup_udlit=*/false);
13988 if (str == error_mark_node)
13989 return error_mark_node;
13990 else if (TREE_CODE (str) == USERDEF_LITERAL)
13992 string_tree = USERDEF_LITERAL_VALUE (str);
13993 id = USERDEF_LITERAL_SUFFIX_ID (str);
13995 else
13997 string_tree = str;
13998 /* Look for the suffix identifier. */
13999 token = cp_lexer_peek_token (parser->lexer);
14000 if (token->type == CPP_NAME)
14001 id = cp_parser_identifier (parser);
14002 else if (token->type == CPP_KEYWORD)
14004 error ("unexpected keyword;"
14005 " remove space between quotes and suffix identifier");
14006 return error_mark_node;
14008 else
14010 error ("expected suffix identifier");
14011 return error_mark_node;
14014 sz = TREE_INT_CST_LOW (TYPE_SIZE_UNIT
14015 (TREE_TYPE (TREE_TYPE (string_tree))));
14016 len = TREE_STRING_LENGTH (string_tree) / sz - 1;
14017 if (len != 0)
14019 error ("expected empty string after %<operator%> keyword");
14020 return error_mark_node;
14022 if (utf8 || TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (string_tree)))
14023 != char_type_node)
14025 error ("invalid encoding prefix in literal operator");
14026 return error_mark_node;
14028 if (id != error_mark_node)
14030 const char *name = IDENTIFIER_POINTER (id);
14031 id = cp_literal_operator_id (name);
14033 return id;
14036 default:
14037 /* Anything else is an error. */
14038 break;
14041 /* If we have selected an identifier, we need to consume the
14042 operator token. */
14043 if (id)
14044 cp_lexer_consume_token (parser->lexer);
14045 /* Otherwise, no valid operator name was present. */
14046 else
14048 cp_parser_error (parser, "expected operator");
14049 id = error_mark_node;
14052 return cp_expr (id, start_loc);
14055 /* Parse a template-declaration.
14057 template-declaration:
14058 export [opt] template < template-parameter-list > declaration
14060 If MEMBER_P is TRUE, this template-declaration occurs within a
14061 class-specifier.
14063 The grammar rule given by the standard isn't correct. What
14064 is really meant is:
14066 template-declaration:
14067 export [opt] template-parameter-list-seq
14068 decl-specifier-seq [opt] init-declarator [opt] ;
14069 export [opt] template-parameter-list-seq
14070 function-definition
14072 template-parameter-list-seq:
14073 template-parameter-list-seq [opt]
14074 template < template-parameter-list >
14076 Concept Extensions:
14078 template-parameter-list-seq:
14079 template < template-parameter-list > requires-clause [opt]
14081 requires-clause:
14082 requires logical-or-expression */
14084 static void
14085 cp_parser_template_declaration (cp_parser* parser, bool member_p)
14087 /* Check for `export'. */
14088 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_EXPORT))
14090 /* Consume the `export' token. */
14091 cp_lexer_consume_token (parser->lexer);
14092 /* Warn that we do not support `export'. */
14093 warning (0, "keyword %<export%> not implemented, and will be ignored");
14096 cp_parser_template_declaration_after_export (parser, member_p);
14099 /* Parse a template-parameter-list.
14101 template-parameter-list:
14102 template-parameter
14103 template-parameter-list , template-parameter
14105 Returns a TREE_LIST. Each node represents a template parameter.
14106 The nodes are connected via their TREE_CHAINs. */
14108 static tree
14109 cp_parser_template_parameter_list (cp_parser* parser)
14111 tree parameter_list = NULL_TREE;
14113 begin_template_parm_list ();
14115 /* The loop below parses the template parms. We first need to know
14116 the total number of template parms to be able to compute proper
14117 canonical types of each dependent type. So after the loop, when
14118 we know the total number of template parms,
14119 end_template_parm_list computes the proper canonical types and
14120 fixes up the dependent types accordingly. */
14121 while (true)
14123 tree parameter;
14124 bool is_non_type;
14125 bool is_parameter_pack;
14126 location_t parm_loc;
14128 /* Parse the template-parameter. */
14129 parm_loc = cp_lexer_peek_token (parser->lexer)->location;
14130 parameter = cp_parser_template_parameter (parser,
14131 &is_non_type,
14132 &is_parameter_pack);
14133 /* Add it to the list. */
14134 if (parameter != error_mark_node)
14135 parameter_list = process_template_parm (parameter_list,
14136 parm_loc,
14137 parameter,
14138 is_non_type,
14139 is_parameter_pack);
14140 else
14142 tree err_parm = build_tree_list (parameter, parameter);
14143 parameter_list = chainon (parameter_list, err_parm);
14146 /* If the next token is not a `,', we're done. */
14147 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
14148 break;
14149 /* Otherwise, consume the `,' token. */
14150 cp_lexer_consume_token (parser->lexer);
14153 return end_template_parm_list (parameter_list);
14156 /* Parse a introduction-list.
14158 introduction-list:
14159 introduced-parameter
14160 introduction-list , introduced-parameter
14162 introduced-parameter:
14163 ...[opt] identifier
14165 Returns a TREE_VEC of WILDCARD_DECLs. If the parameter is a pack
14166 then the introduced parm will have WILDCARD_PACK_P set. In addition, the
14167 WILDCARD_DECL will also have DECL_NAME set and token location in
14168 DECL_SOURCE_LOCATION. */
14170 static tree
14171 cp_parser_introduction_list (cp_parser *parser)
14173 vec<tree, va_gc> *introduction_vec = make_tree_vector ();
14175 while (true)
14177 bool is_pack = cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS);
14178 if (is_pack)
14179 cp_lexer_consume_token (parser->lexer);
14181 /* Build placeholder. */
14182 tree parm = build_nt (WILDCARD_DECL);
14183 DECL_SOURCE_LOCATION (parm)
14184 = cp_lexer_peek_token (parser->lexer)->location;
14185 DECL_NAME (parm) = cp_parser_identifier (parser);
14186 WILDCARD_PACK_P (parm) = is_pack;
14187 vec_safe_push (introduction_vec, parm);
14189 /* If the next token is not a `,', we're done. */
14190 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
14191 break;
14192 /* Otherwise, consume the `,' token. */
14193 cp_lexer_consume_token (parser->lexer);
14196 /* Convert the vec into a TREE_VEC. */
14197 tree introduction_list = make_tree_vec (introduction_vec->length ());
14198 unsigned int n;
14199 tree parm;
14200 FOR_EACH_VEC_ELT (*introduction_vec, n, parm)
14201 TREE_VEC_ELT (introduction_list, n) = parm;
14203 release_tree_vector (introduction_vec);
14204 return introduction_list;
14207 /* Given a declarator, get the declarator-id part, or NULL_TREE if this
14208 is an abstract declarator. */
14210 static inline cp_declarator*
14211 get_id_declarator (cp_declarator *declarator)
14213 cp_declarator *d = declarator;
14214 while (d && d->kind != cdk_id)
14215 d = d->declarator;
14216 return d;
14219 /* Get the unqualified-id from the DECLARATOR or NULL_TREE if this
14220 is an abstract declarator. */
14222 static inline tree
14223 get_unqualified_id (cp_declarator *declarator)
14225 declarator = get_id_declarator (declarator);
14226 if (declarator)
14227 return declarator->u.id.unqualified_name;
14228 else
14229 return NULL_TREE;
14232 /* Returns true if DECL represents a constrained-parameter. */
14234 static inline bool
14235 is_constrained_parameter (tree decl)
14237 return (decl
14238 && TREE_CODE (decl) == TYPE_DECL
14239 && CONSTRAINED_PARM_CONCEPT (decl)
14240 && DECL_P (CONSTRAINED_PARM_CONCEPT (decl)));
14243 /* Returns true if PARM declares a constrained-parameter. */
14245 static inline bool
14246 is_constrained_parameter (cp_parameter_declarator *parm)
14248 return is_constrained_parameter (parm->decl_specifiers.type);
14251 /* Check that the type parameter is only a declarator-id, and that its
14252 type is not cv-qualified. */
14254 bool
14255 cp_parser_check_constrained_type_parm (cp_parser *parser,
14256 cp_parameter_declarator *parm)
14258 if (!parm->declarator)
14259 return true;
14261 if (parm->declarator->kind != cdk_id)
14263 cp_parser_error (parser, "invalid constrained type parameter");
14264 return false;
14267 /* Don't allow cv-qualified type parameters. */
14268 if (decl_spec_seq_has_spec_p (&parm->decl_specifiers, ds_const)
14269 || decl_spec_seq_has_spec_p (&parm->decl_specifiers, ds_volatile))
14271 cp_parser_error (parser, "cv-qualified type parameter");
14272 return false;
14275 return true;
14278 /* Finish parsing/processing a template type parameter and checking
14279 various restrictions. */
14281 static inline tree
14282 cp_parser_constrained_type_template_parm (cp_parser *parser,
14283 tree id,
14284 cp_parameter_declarator* parmdecl)
14286 if (cp_parser_check_constrained_type_parm (parser, parmdecl))
14287 return finish_template_type_parm (class_type_node, id);
14288 else
14289 return error_mark_node;
14292 static tree
14293 finish_constrained_template_template_parm (tree proto, tree id)
14295 /* FIXME: This should probably be copied, and we may need to adjust
14296 the template parameter depths. */
14297 tree saved_parms = current_template_parms;
14298 begin_template_parm_list ();
14299 current_template_parms = DECL_TEMPLATE_PARMS (proto);
14300 end_template_parm_list ();
14302 tree parm = finish_template_template_parm (class_type_node, id);
14303 current_template_parms = saved_parms;
14305 return parm;
14308 /* Finish parsing/processing a template template parameter by borrowing
14309 the template parameter list from the prototype parameter. */
14311 static tree
14312 cp_parser_constrained_template_template_parm (cp_parser *parser,
14313 tree proto,
14314 tree id,
14315 cp_parameter_declarator *parmdecl)
14317 if (!cp_parser_check_constrained_type_parm (parser, parmdecl))
14318 return error_mark_node;
14319 return finish_constrained_template_template_parm (proto, id);
14322 /* Create a new non-type template parameter from the given PARM
14323 declarator. */
14325 static tree
14326 constrained_non_type_template_parm (bool *is_non_type,
14327 cp_parameter_declarator *parm)
14329 *is_non_type = true;
14330 cp_declarator *decl = parm->declarator;
14331 cp_decl_specifier_seq *specs = &parm->decl_specifiers;
14332 specs->type = TREE_TYPE (DECL_INITIAL (specs->type));
14333 return grokdeclarator (decl, specs, TPARM, 0, NULL);
14336 /* Build a constrained template parameter based on the PARMDECL
14337 declarator. The type of PARMDECL is the constrained type, which
14338 refers to the prototype template parameter that ultimately
14339 specifies the type of the declared parameter. */
14341 static tree
14342 finish_constrained_parameter (cp_parser *parser,
14343 cp_parameter_declarator *parmdecl,
14344 bool *is_non_type,
14345 bool *is_parameter_pack)
14347 tree decl = parmdecl->decl_specifiers.type;
14348 tree id = get_unqualified_id (parmdecl->declarator);
14349 tree def = parmdecl->default_argument;
14350 tree proto = DECL_INITIAL (decl);
14352 /* A template parameter constrained by a variadic concept shall also
14353 be declared as a template parameter pack. */
14354 bool is_variadic = template_parameter_pack_p (proto);
14355 if (is_variadic && !*is_parameter_pack)
14356 cp_parser_error (parser, "variadic constraint introduced without %<...%>");
14358 /* Build the parameter. Return an error if the declarator was invalid. */
14359 tree parm;
14360 if (TREE_CODE (proto) == TYPE_DECL)
14361 parm = cp_parser_constrained_type_template_parm (parser, id, parmdecl);
14362 else if (TREE_CODE (proto) == TEMPLATE_DECL)
14363 parm = cp_parser_constrained_template_template_parm (parser, proto, id,
14364 parmdecl);
14365 else
14366 parm = constrained_non_type_template_parm (is_non_type, parmdecl);
14367 if (parm == error_mark_node)
14368 return error_mark_node;
14370 /* Finish the parameter decl and create a node attaching the
14371 default argument and constraint. */
14372 parm = build_tree_list (def, parm);
14373 TEMPLATE_PARM_CONSTRAINTS (parm) = decl;
14375 return parm;
14378 /* Returns true if the parsed type actually represents the declaration
14379 of a type template-parameter. */
14381 static inline bool
14382 declares_constrained_type_template_parameter (tree type)
14384 return (is_constrained_parameter (type)
14385 && TREE_CODE (TREE_TYPE (type)) == TEMPLATE_TYPE_PARM);
14389 /* Returns true if the parsed type actually represents the declaration of
14390 a template template-parameter. */
14392 static bool
14393 declares_constrained_template_template_parameter (tree type)
14395 return (is_constrained_parameter (type)
14396 && TREE_CODE (TREE_TYPE (type)) == TEMPLATE_TEMPLATE_PARM);
14399 /* Parse a default argument for a type template-parameter.
14400 Note that diagnostics are handled in cp_parser_template_parameter. */
14402 static tree
14403 cp_parser_default_type_template_argument (cp_parser *parser)
14405 gcc_assert (cp_lexer_next_token_is (parser->lexer, CPP_EQ));
14407 /* Consume the `=' token. */
14408 cp_lexer_consume_token (parser->lexer);
14410 cp_token *token = cp_lexer_peek_token (parser->lexer);
14412 /* Parse the default-argument. */
14413 push_deferring_access_checks (dk_no_deferred);
14414 tree default_argument = cp_parser_type_id (parser);
14415 pop_deferring_access_checks ();
14417 if (flag_concepts && type_uses_auto (default_argument))
14419 error_at (token->location,
14420 "invalid use of %<auto%> in default template argument");
14421 return error_mark_node;
14424 return default_argument;
14427 /* Parse a default argument for a template template-parameter. */
14429 static tree
14430 cp_parser_default_template_template_argument (cp_parser *parser)
14432 gcc_assert (cp_lexer_next_token_is (parser->lexer, CPP_EQ));
14434 bool is_template;
14436 /* Consume the `='. */
14437 cp_lexer_consume_token (parser->lexer);
14438 /* Parse the id-expression. */
14439 push_deferring_access_checks (dk_no_deferred);
14440 /* save token before parsing the id-expression, for error
14441 reporting */
14442 const cp_token* token = cp_lexer_peek_token (parser->lexer);
14443 tree default_argument
14444 = cp_parser_id_expression (parser,
14445 /*template_keyword_p=*/false,
14446 /*check_dependency_p=*/true,
14447 /*template_p=*/&is_template,
14448 /*declarator_p=*/false,
14449 /*optional_p=*/false);
14450 if (TREE_CODE (default_argument) == TYPE_DECL)
14451 /* If the id-expression was a template-id that refers to
14452 a template-class, we already have the declaration here,
14453 so no further lookup is needed. */
14455 else
14456 /* Look up the name. */
14457 default_argument
14458 = cp_parser_lookup_name (parser, default_argument,
14459 none_type,
14460 /*is_template=*/is_template,
14461 /*is_namespace=*/false,
14462 /*check_dependency=*/true,
14463 /*ambiguous_decls=*/NULL,
14464 token->location);
14465 /* See if the default argument is valid. */
14466 default_argument = check_template_template_default_arg (default_argument);
14467 pop_deferring_access_checks ();
14468 return default_argument;
14471 /* Parse a template-parameter.
14473 template-parameter:
14474 type-parameter
14475 parameter-declaration
14477 If all goes well, returns a TREE_LIST. The TREE_VALUE represents
14478 the parameter. The TREE_PURPOSE is the default value, if any.
14479 Returns ERROR_MARK_NODE on failure. *IS_NON_TYPE is set to true
14480 iff this parameter is a non-type parameter. *IS_PARAMETER_PACK is
14481 set to true iff this parameter is a parameter pack. */
14483 static tree
14484 cp_parser_template_parameter (cp_parser* parser, bool *is_non_type,
14485 bool *is_parameter_pack)
14487 cp_token *token;
14488 cp_parameter_declarator *parameter_declarator;
14489 tree parm;
14491 /* Assume it is a type parameter or a template parameter. */
14492 *is_non_type = false;
14493 /* Assume it not a parameter pack. */
14494 *is_parameter_pack = false;
14495 /* Peek at the next token. */
14496 token = cp_lexer_peek_token (parser->lexer);
14497 /* If it is `class' or `template', we have a type-parameter. */
14498 if (token->keyword == RID_TEMPLATE)
14499 return cp_parser_type_parameter (parser, is_parameter_pack);
14500 /* If it is `class' or `typename' we do not know yet whether it is a
14501 type parameter or a non-type parameter. Consider:
14503 template <typename T, typename T::X X> ...
14507 template <class C, class D*> ...
14509 Here, the first parameter is a type parameter, and the second is
14510 a non-type parameter. We can tell by looking at the token after
14511 the identifier -- if it is a `,', `=', or `>' then we have a type
14512 parameter. */
14513 if (token->keyword == RID_TYPENAME || token->keyword == RID_CLASS)
14515 /* Peek at the token after `class' or `typename'. */
14516 token = cp_lexer_peek_nth_token (parser->lexer, 2);
14517 /* If it's an ellipsis, we have a template type parameter
14518 pack. */
14519 if (token->type == CPP_ELLIPSIS)
14520 return cp_parser_type_parameter (parser, is_parameter_pack);
14521 /* If it's an identifier, skip it. */
14522 if (token->type == CPP_NAME)
14523 token = cp_lexer_peek_nth_token (parser->lexer, 3);
14524 /* Now, see if the token looks like the end of a template
14525 parameter. */
14526 if (token->type == CPP_COMMA
14527 || token->type == CPP_EQ
14528 || token->type == CPP_GREATER)
14529 return cp_parser_type_parameter (parser, is_parameter_pack);
14532 /* Otherwise, it is a non-type parameter or a constrained parameter.
14534 [temp.param]
14536 When parsing a default template-argument for a non-type
14537 template-parameter, the first non-nested `>' is taken as the end
14538 of the template parameter-list rather than a greater-than
14539 operator. */
14540 parameter_declarator
14541 = cp_parser_parameter_declaration (parser, /*template_parm_p=*/true,
14542 /*parenthesized_p=*/NULL);
14544 if (!parameter_declarator)
14545 return error_mark_node;
14547 /* If the parameter declaration is marked as a parameter pack, set
14548 *IS_PARAMETER_PACK to notify the caller. */
14549 if (parameter_declarator->template_parameter_pack_p)
14550 *is_parameter_pack = true;
14552 if (parameter_declarator->default_argument)
14554 /* Can happen in some cases of erroneous input (c++/34892). */
14555 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
14556 /* Consume the `...' for better error recovery. */
14557 cp_lexer_consume_token (parser->lexer);
14560 // The parameter may have been constrained.
14561 if (is_constrained_parameter (parameter_declarator))
14562 return finish_constrained_parameter (parser,
14563 parameter_declarator,
14564 is_non_type,
14565 is_parameter_pack);
14567 // Now we're sure that the parameter is a non-type parameter.
14568 *is_non_type = true;
14570 parm = grokdeclarator (parameter_declarator->declarator,
14571 &parameter_declarator->decl_specifiers,
14572 TPARM, /*initialized=*/0,
14573 /*attrlist=*/NULL);
14574 if (parm == error_mark_node)
14575 return error_mark_node;
14577 return build_tree_list (parameter_declarator->default_argument, parm);
14580 /* Parse a type-parameter.
14582 type-parameter:
14583 class identifier [opt]
14584 class identifier [opt] = type-id
14585 typename identifier [opt]
14586 typename identifier [opt] = type-id
14587 template < template-parameter-list > class identifier [opt]
14588 template < template-parameter-list > class identifier [opt]
14589 = id-expression
14591 GNU Extension (variadic templates):
14593 type-parameter:
14594 class ... identifier [opt]
14595 typename ... identifier [opt]
14597 Returns a TREE_LIST. The TREE_VALUE is itself a TREE_LIST. The
14598 TREE_PURPOSE is the default-argument, if any. The TREE_VALUE is
14599 the declaration of the parameter.
14601 Sets *IS_PARAMETER_PACK if this is a template parameter pack. */
14603 static tree
14604 cp_parser_type_parameter (cp_parser* parser, bool *is_parameter_pack)
14606 cp_token *token;
14607 tree parameter;
14609 /* Look for a keyword to tell us what kind of parameter this is. */
14610 token = cp_parser_require (parser, CPP_KEYWORD, RT_CLASS_TYPENAME_TEMPLATE);
14611 if (!token)
14612 return error_mark_node;
14614 switch (token->keyword)
14616 case RID_CLASS:
14617 case RID_TYPENAME:
14619 tree identifier;
14620 tree default_argument;
14622 /* If the next token is an ellipsis, we have a template
14623 argument pack. */
14624 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
14626 /* Consume the `...' token. */
14627 cp_lexer_consume_token (parser->lexer);
14628 maybe_warn_variadic_templates ();
14630 *is_parameter_pack = true;
14633 /* If the next token is an identifier, then it names the
14634 parameter. */
14635 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
14636 identifier = cp_parser_identifier (parser);
14637 else
14638 identifier = NULL_TREE;
14640 /* Create the parameter. */
14641 parameter = finish_template_type_parm (class_type_node, identifier);
14643 /* If the next token is an `=', we have a default argument. */
14644 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
14646 default_argument
14647 = cp_parser_default_type_template_argument (parser);
14649 /* Template parameter packs cannot have default
14650 arguments. */
14651 if (*is_parameter_pack)
14653 if (identifier)
14654 error_at (token->location,
14655 "template parameter pack %qD cannot have a "
14656 "default argument", identifier);
14657 else
14658 error_at (token->location,
14659 "template parameter packs cannot have "
14660 "default arguments");
14661 default_argument = NULL_TREE;
14663 else if (check_for_bare_parameter_packs (default_argument))
14664 default_argument = error_mark_node;
14666 else
14667 default_argument = NULL_TREE;
14669 /* Create the combined representation of the parameter and the
14670 default argument. */
14671 parameter = build_tree_list (default_argument, parameter);
14673 break;
14675 case RID_TEMPLATE:
14677 tree identifier;
14678 tree default_argument;
14680 /* Look for the `<'. */
14681 cp_parser_require (parser, CPP_LESS, RT_LESS);
14682 /* Parse the template-parameter-list. */
14683 cp_parser_template_parameter_list (parser);
14684 /* Look for the `>'. */
14685 cp_parser_require (parser, CPP_GREATER, RT_GREATER);
14687 // If template requirements are present, parse them.
14688 tree reqs = get_shorthand_constraints (current_template_parms);
14689 if (tree r = cp_parser_requires_clause_opt (parser))
14690 reqs = conjoin_constraints (reqs, make_predicate_constraint (r));
14691 TEMPLATE_PARMS_CONSTRAINTS (current_template_parms) = reqs;
14693 /* Look for the `class' or 'typename' keywords. */
14694 cp_parser_type_parameter_key (parser);
14695 /* If the next token is an ellipsis, we have a template
14696 argument pack. */
14697 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
14699 /* Consume the `...' token. */
14700 cp_lexer_consume_token (parser->lexer);
14701 maybe_warn_variadic_templates ();
14703 *is_parameter_pack = true;
14705 /* If the next token is an `=', then there is a
14706 default-argument. If the next token is a `>', we are at
14707 the end of the parameter-list. If the next token is a `,',
14708 then we are at the end of this parameter. */
14709 if (cp_lexer_next_token_is_not (parser->lexer, CPP_EQ)
14710 && cp_lexer_next_token_is_not (parser->lexer, CPP_GREATER)
14711 && cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
14713 identifier = cp_parser_identifier (parser);
14714 /* Treat invalid names as if the parameter were nameless. */
14715 if (identifier == error_mark_node)
14716 identifier = NULL_TREE;
14718 else
14719 identifier = NULL_TREE;
14721 /* Create the template parameter. */
14722 parameter = finish_template_template_parm (class_type_node,
14723 identifier);
14725 /* If the next token is an `=', then there is a
14726 default-argument. */
14727 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
14729 default_argument
14730 = cp_parser_default_template_template_argument (parser);
14732 /* Template parameter packs cannot have default
14733 arguments. */
14734 if (*is_parameter_pack)
14736 if (identifier)
14737 error_at (token->location,
14738 "template parameter pack %qD cannot "
14739 "have a default argument",
14740 identifier);
14741 else
14742 error_at (token->location, "template parameter packs cannot "
14743 "have default arguments");
14744 default_argument = NULL_TREE;
14747 else
14748 default_argument = NULL_TREE;
14750 /* Create the combined representation of the parameter and the
14751 default argument. */
14752 parameter = build_tree_list (default_argument, parameter);
14754 break;
14756 default:
14757 gcc_unreachable ();
14758 break;
14761 return parameter;
14764 /* Parse a template-id.
14766 template-id:
14767 template-name < template-argument-list [opt] >
14769 If TEMPLATE_KEYWORD_P is TRUE, then we have just seen the
14770 `template' keyword. In this case, a TEMPLATE_ID_EXPR will be
14771 returned. Otherwise, if the template-name names a function, or set
14772 of functions, returns a TEMPLATE_ID_EXPR. If the template-name
14773 names a class, returns a TYPE_DECL for the specialization.
14775 If CHECK_DEPENDENCY_P is FALSE, names are looked up in
14776 uninstantiated templates. */
14778 static tree
14779 cp_parser_template_id (cp_parser *parser,
14780 bool template_keyword_p,
14781 bool check_dependency_p,
14782 enum tag_types tag_type,
14783 bool is_declaration)
14785 tree templ;
14786 tree arguments;
14787 tree template_id;
14788 cp_token_position start_of_id = 0;
14789 cp_token *next_token = NULL, *next_token_2 = NULL;
14790 bool is_identifier;
14792 /* If the next token corresponds to a template-id, there is no need
14793 to reparse it. */
14794 next_token = cp_lexer_peek_token (parser->lexer);
14795 if (next_token->type == CPP_TEMPLATE_ID)
14797 cp_lexer_consume_token (parser->lexer);
14798 return saved_checks_value (next_token->u.tree_check_value);
14801 /* Avoid performing name lookup if there is no possibility of
14802 finding a template-id. */
14803 if ((next_token->type != CPP_NAME && next_token->keyword != RID_OPERATOR)
14804 || (next_token->type == CPP_NAME
14805 && !cp_parser_nth_token_starts_template_argument_list_p
14806 (parser, 2)))
14808 cp_parser_error (parser, "expected template-id");
14809 return error_mark_node;
14812 /* Remember where the template-id starts. */
14813 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
14814 start_of_id = cp_lexer_token_position (parser->lexer, false);
14816 push_deferring_access_checks (dk_deferred);
14818 /* Parse the template-name. */
14819 is_identifier = false;
14820 templ = cp_parser_template_name (parser, template_keyword_p,
14821 check_dependency_p,
14822 is_declaration,
14823 tag_type,
14824 &is_identifier);
14825 if (templ == error_mark_node || is_identifier)
14827 pop_deferring_access_checks ();
14828 return templ;
14831 /* Since we're going to preserve any side-effects from this parse, set up a
14832 firewall to protect our callers from cp_parser_commit_to_tentative_parse
14833 in the template arguments. */
14834 tentative_firewall firewall (parser);
14836 /* If we find the sequence `[:' after a template-name, it's probably
14837 a digraph-typo for `< ::'. Substitute the tokens and check if we can
14838 parse correctly the argument list. */
14839 if (((next_token = cp_lexer_peek_token (parser->lexer))->type
14840 == CPP_OPEN_SQUARE)
14841 && next_token->flags & DIGRAPH
14842 && ((next_token_2 = cp_lexer_peek_nth_token (parser->lexer, 2))->type
14843 == CPP_COLON)
14844 && !(next_token_2->flags & PREV_WHITE))
14846 cp_parser_parse_tentatively (parser);
14847 /* Change `:' into `::'. */
14848 next_token_2->type = CPP_SCOPE;
14849 /* Consume the first token (CPP_OPEN_SQUARE - which we pretend it is
14850 CPP_LESS. */
14851 cp_lexer_consume_token (parser->lexer);
14853 /* Parse the arguments. */
14854 arguments = cp_parser_enclosed_template_argument_list (parser);
14855 if (!cp_parser_parse_definitely (parser))
14857 /* If we couldn't parse an argument list, then we revert our changes
14858 and return simply an error. Maybe this is not a template-id
14859 after all. */
14860 next_token_2->type = CPP_COLON;
14861 cp_parser_error (parser, "expected %<<%>");
14862 pop_deferring_access_checks ();
14863 return error_mark_node;
14865 /* Otherwise, emit an error about the invalid digraph, but continue
14866 parsing because we got our argument list. */
14867 if (permerror (next_token->location,
14868 "%<<::%> cannot begin a template-argument list"))
14870 static bool hint = false;
14871 inform (next_token->location,
14872 "%<<:%> is an alternate spelling for %<[%>."
14873 " Insert whitespace between %<<%> and %<::%>");
14874 if (!hint && !flag_permissive)
14876 inform (next_token->location, "(if you use %<-fpermissive%> "
14877 "or %<-std=c++11%>, or %<-std=gnu++11%> G++ will "
14878 "accept your code)");
14879 hint = true;
14883 else
14885 /* Look for the `<' that starts the template-argument-list. */
14886 if (!cp_parser_require (parser, CPP_LESS, RT_LESS))
14888 pop_deferring_access_checks ();
14889 return error_mark_node;
14891 /* Parse the arguments. */
14892 arguments = cp_parser_enclosed_template_argument_list (parser);
14895 /* Build a representation of the specialization. */
14896 if (identifier_p (templ))
14897 template_id = build_min_nt_loc (next_token->location,
14898 TEMPLATE_ID_EXPR,
14899 templ, arguments);
14900 else if (DECL_TYPE_TEMPLATE_P (templ)
14901 || DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
14903 bool entering_scope;
14904 /* In "template <typename T> ... A<T>::", A<T> is the abstract A
14905 template (rather than some instantiation thereof) only if
14906 is not nested within some other construct. For example, in
14907 "template <typename T> void f(T) { A<T>::", A<T> is just an
14908 instantiation of A. */
14909 entering_scope = (template_parm_scope_p ()
14910 && cp_lexer_next_token_is (parser->lexer,
14911 CPP_SCOPE));
14912 template_id
14913 = finish_template_type (templ, arguments, entering_scope);
14915 /* A template-like identifier may be a partial concept id. */
14916 else if (flag_concepts
14917 && (template_id = (cp_parser_maybe_partial_concept_id
14918 (parser, templ, arguments))))
14919 return template_id;
14920 else if (variable_template_p (templ))
14922 template_id = lookup_template_variable (templ, arguments);
14923 if (TREE_CODE (template_id) == TEMPLATE_ID_EXPR)
14924 SET_EXPR_LOCATION (template_id, next_token->location);
14926 else
14928 /* If it's not a class-template or a template-template, it should be
14929 a function-template. */
14930 gcc_assert ((DECL_FUNCTION_TEMPLATE_P (templ)
14931 || TREE_CODE (templ) == OVERLOAD
14932 || BASELINK_P (templ)));
14934 template_id = lookup_template_function (templ, arguments);
14935 if (TREE_CODE (template_id) == TEMPLATE_ID_EXPR)
14936 SET_EXPR_LOCATION (template_id, next_token->location);
14939 /* If parsing tentatively, replace the sequence of tokens that makes
14940 up the template-id with a CPP_TEMPLATE_ID token. That way,
14941 should we re-parse the token stream, we will not have to repeat
14942 the effort required to do the parse, nor will we issue duplicate
14943 error messages about problems during instantiation of the
14944 template. */
14945 if (start_of_id
14946 /* Don't do this if we had a parse error in a declarator; re-parsing
14947 might succeed if a name changes meaning (60361). */
14948 && !(cp_parser_error_occurred (parser)
14949 && cp_parser_parsing_tentatively (parser)
14950 && parser->in_declarator_p))
14952 cp_token *token = cp_lexer_token_at (parser->lexer, start_of_id);
14954 /* Reset the contents of the START_OF_ID token. */
14955 token->type = CPP_TEMPLATE_ID;
14957 /* Update the location to be of the form:
14958 template-name < template-argument-list [opt] >
14959 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
14960 with caret == start at the start of the template-name,
14961 ranging until the closing '>'. */
14962 location_t finish_loc
14963 = get_finish (cp_lexer_previous_token (parser->lexer)->location);
14964 location_t combined_loc
14965 = make_location (token->location, token->location, finish_loc);
14966 token->location = combined_loc;
14968 /* Retrieve any deferred checks. Do not pop this access checks yet
14969 so the memory will not be reclaimed during token replacing below. */
14970 token->u.tree_check_value = ggc_cleared_alloc<struct tree_check> ();
14971 token->u.tree_check_value->value = template_id;
14972 token->u.tree_check_value->checks = get_deferred_access_checks ();
14973 token->keyword = RID_MAX;
14975 /* Purge all subsequent tokens. */
14976 cp_lexer_purge_tokens_after (parser->lexer, start_of_id);
14978 /* ??? Can we actually assume that, if template_id ==
14979 error_mark_node, we will have issued a diagnostic to the
14980 user, as opposed to simply marking the tentative parse as
14981 failed? */
14982 if (cp_parser_error_occurred (parser) && template_id != error_mark_node)
14983 error_at (token->location, "parse error in template argument list");
14986 pop_to_parent_deferring_access_checks ();
14987 return template_id;
14990 /* Parse a template-name.
14992 template-name:
14993 identifier
14995 The standard should actually say:
14997 template-name:
14998 identifier
14999 operator-function-id
15001 A defect report has been filed about this issue.
15003 A conversion-function-id cannot be a template name because they cannot
15004 be part of a template-id. In fact, looking at this code:
15006 a.operator K<int>()
15008 the conversion-function-id is "operator K<int>", and K<int> is a type-id.
15009 It is impossible to call a templated conversion-function-id with an
15010 explicit argument list, since the only allowed template parameter is
15011 the type to which it is converting.
15013 If TEMPLATE_KEYWORD_P is true, then we have just seen the
15014 `template' keyword, in a construction like:
15016 T::template f<3>()
15018 In that case `f' is taken to be a template-name, even though there
15019 is no way of knowing for sure.
15021 Returns the TEMPLATE_DECL for the template, or an OVERLOAD if the
15022 name refers to a set of overloaded functions, at least one of which
15023 is a template, or an IDENTIFIER_NODE with the name of the template,
15024 if TEMPLATE_KEYWORD_P is true. If CHECK_DEPENDENCY_P is FALSE,
15025 names are looked up inside uninstantiated templates. */
15027 static tree
15028 cp_parser_template_name (cp_parser* parser,
15029 bool template_keyword_p,
15030 bool check_dependency_p,
15031 bool is_declaration,
15032 enum tag_types tag_type,
15033 bool *is_identifier)
15035 tree identifier;
15036 tree decl;
15037 tree fns;
15038 cp_token *token = cp_lexer_peek_token (parser->lexer);
15040 /* If the next token is `operator', then we have either an
15041 operator-function-id or a conversion-function-id. */
15042 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_OPERATOR))
15044 /* We don't know whether we're looking at an
15045 operator-function-id or a conversion-function-id. */
15046 cp_parser_parse_tentatively (parser);
15047 /* Try an operator-function-id. */
15048 identifier = cp_parser_operator_function_id (parser);
15049 /* If that didn't work, try a conversion-function-id. */
15050 if (!cp_parser_parse_definitely (parser))
15052 cp_parser_error (parser, "expected template-name");
15053 return error_mark_node;
15056 /* Look for the identifier. */
15057 else
15058 identifier = cp_parser_identifier (parser);
15060 /* If we didn't find an identifier, we don't have a template-id. */
15061 if (identifier == error_mark_node)
15062 return error_mark_node;
15064 /* If the name immediately followed the `template' keyword, then it
15065 is a template-name. However, if the next token is not `<', then
15066 we do not treat it as a template-name, since it is not being used
15067 as part of a template-id. This enables us to handle constructs
15068 like:
15070 template <typename T> struct S { S(); };
15071 template <typename T> S<T>::S();
15073 correctly. We would treat `S' as a template -- if it were `S<T>'
15074 -- but we do not if there is no `<'. */
15076 if (processing_template_decl
15077 && cp_parser_nth_token_starts_template_argument_list_p (parser, 1))
15079 /* In a declaration, in a dependent context, we pretend that the
15080 "template" keyword was present in order to improve error
15081 recovery. For example, given:
15083 template <typename T> void f(T::X<int>);
15085 we want to treat "X<int>" as a template-id. */
15086 if (is_declaration
15087 && !template_keyword_p
15088 && parser->scope && TYPE_P (parser->scope)
15089 && check_dependency_p
15090 && dependent_scope_p (parser->scope)
15091 /* Do not do this for dtors (or ctors), since they never
15092 need the template keyword before their name. */
15093 && !constructor_name_p (identifier, parser->scope))
15095 cp_token_position start = 0;
15097 /* Explain what went wrong. */
15098 error_at (token->location, "non-template %qD used as template",
15099 identifier);
15100 inform (token->location, "use %<%T::template %D%> to indicate that it is a template",
15101 parser->scope, identifier);
15102 /* If parsing tentatively, find the location of the "<" token. */
15103 if (cp_parser_simulate_error (parser))
15104 start = cp_lexer_token_position (parser->lexer, true);
15105 /* Parse the template arguments so that we can issue error
15106 messages about them. */
15107 cp_lexer_consume_token (parser->lexer);
15108 cp_parser_enclosed_template_argument_list (parser);
15109 /* Skip tokens until we find a good place from which to
15110 continue parsing. */
15111 cp_parser_skip_to_closing_parenthesis (parser,
15112 /*recovering=*/true,
15113 /*or_comma=*/true,
15114 /*consume_paren=*/false);
15115 /* If parsing tentatively, permanently remove the
15116 template argument list. That will prevent duplicate
15117 error messages from being issued about the missing
15118 "template" keyword. */
15119 if (start)
15120 cp_lexer_purge_tokens_after (parser->lexer, start);
15121 if (is_identifier)
15122 *is_identifier = true;
15123 return identifier;
15126 /* If the "template" keyword is present, then there is generally
15127 no point in doing name-lookup, so we just return IDENTIFIER.
15128 But, if the qualifying scope is non-dependent then we can
15129 (and must) do name-lookup normally. */
15130 if (template_keyword_p
15131 && (!parser->scope
15132 || (TYPE_P (parser->scope)
15133 && dependent_type_p (parser->scope))))
15134 return identifier;
15137 /* Look up the name. */
15138 decl = cp_parser_lookup_name (parser, identifier,
15139 tag_type,
15140 /*is_template=*/true,
15141 /*is_namespace=*/false,
15142 check_dependency_p,
15143 /*ambiguous_decls=*/NULL,
15144 token->location);
15146 decl = strip_using_decl (decl);
15148 /* If DECL is a template, then the name was a template-name. */
15149 if (TREE_CODE (decl) == TEMPLATE_DECL)
15151 if (TREE_DEPRECATED (decl)
15152 && deprecated_state != DEPRECATED_SUPPRESS)
15153 warn_deprecated_use (decl, NULL_TREE);
15155 else
15157 tree fn = NULL_TREE;
15159 /* The standard does not explicitly indicate whether a name that
15160 names a set of overloaded declarations, some of which are
15161 templates, is a template-name. However, such a name should
15162 be a template-name; otherwise, there is no way to form a
15163 template-id for the overloaded templates. */
15164 fns = BASELINK_P (decl) ? BASELINK_FUNCTIONS (decl) : decl;
15165 if (TREE_CODE (fns) == OVERLOAD)
15166 for (fn = fns; fn; fn = OVL_NEXT (fn))
15167 if (TREE_CODE (OVL_CURRENT (fn)) == TEMPLATE_DECL)
15168 break;
15170 if (!fn)
15172 /* The name does not name a template. */
15173 cp_parser_error (parser, "expected template-name");
15174 return error_mark_node;
15178 /* If DECL is dependent, and refers to a function, then just return
15179 its name; we will look it up again during template instantiation. */
15180 if (DECL_FUNCTION_TEMPLATE_P (decl) || !DECL_P (decl))
15182 tree scope = ovl_scope (decl);
15183 if (TYPE_P (scope) && dependent_type_p (scope))
15184 return identifier;
15187 return decl;
15190 /* Parse a template-argument-list.
15192 template-argument-list:
15193 template-argument ... [opt]
15194 template-argument-list , template-argument ... [opt]
15196 Returns a TREE_VEC containing the arguments. */
15198 static tree
15199 cp_parser_template_argument_list (cp_parser* parser)
15201 tree fixed_args[10];
15202 unsigned n_args = 0;
15203 unsigned alloced = 10;
15204 tree *arg_ary = fixed_args;
15205 tree vec;
15206 bool saved_in_template_argument_list_p;
15207 bool saved_ice_p;
15208 bool saved_non_ice_p;
15210 saved_in_template_argument_list_p = parser->in_template_argument_list_p;
15211 parser->in_template_argument_list_p = true;
15212 /* Even if the template-id appears in an integral
15213 constant-expression, the contents of the argument list do
15214 not. */
15215 saved_ice_p = parser->integral_constant_expression_p;
15216 parser->integral_constant_expression_p = false;
15217 saved_non_ice_p = parser->non_integral_constant_expression_p;
15218 parser->non_integral_constant_expression_p = false;
15220 /* Parse the arguments. */
15223 tree argument;
15225 if (n_args)
15226 /* Consume the comma. */
15227 cp_lexer_consume_token (parser->lexer);
15229 /* Parse the template-argument. */
15230 argument = cp_parser_template_argument (parser);
15232 /* If the next token is an ellipsis, we're expanding a template
15233 argument pack. */
15234 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
15236 if (argument == error_mark_node)
15238 cp_token *token = cp_lexer_peek_token (parser->lexer);
15239 error_at (token->location,
15240 "expected parameter pack before %<...%>");
15242 /* Consume the `...' token. */
15243 cp_lexer_consume_token (parser->lexer);
15245 /* Make the argument into a TYPE_PACK_EXPANSION or
15246 EXPR_PACK_EXPANSION. */
15247 argument = make_pack_expansion (argument);
15250 if (n_args == alloced)
15252 alloced *= 2;
15254 if (arg_ary == fixed_args)
15256 arg_ary = XNEWVEC (tree, alloced);
15257 memcpy (arg_ary, fixed_args, sizeof (tree) * n_args);
15259 else
15260 arg_ary = XRESIZEVEC (tree, arg_ary, alloced);
15262 arg_ary[n_args++] = argument;
15264 while (cp_lexer_next_token_is (parser->lexer, CPP_COMMA));
15266 vec = make_tree_vec (n_args);
15268 while (n_args--)
15269 TREE_VEC_ELT (vec, n_args) = arg_ary[n_args];
15271 if (arg_ary != fixed_args)
15272 free (arg_ary);
15273 parser->non_integral_constant_expression_p = saved_non_ice_p;
15274 parser->integral_constant_expression_p = saved_ice_p;
15275 parser->in_template_argument_list_p = saved_in_template_argument_list_p;
15276 if (CHECKING_P)
15277 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
15278 return vec;
15281 /* Parse a template-argument.
15283 template-argument:
15284 assignment-expression
15285 type-id
15286 id-expression
15288 The representation is that of an assignment-expression, type-id, or
15289 id-expression -- except that the qualified id-expression is
15290 evaluated, so that the value returned is either a DECL or an
15291 OVERLOAD.
15293 Although the standard says "assignment-expression", it forbids
15294 throw-expressions or assignments in the template argument.
15295 Therefore, we use "conditional-expression" instead. */
15297 static tree
15298 cp_parser_template_argument (cp_parser* parser)
15300 tree argument;
15301 bool template_p;
15302 bool address_p;
15303 bool maybe_type_id = false;
15304 cp_token *token = NULL, *argument_start_token = NULL;
15305 location_t loc = 0;
15306 cp_id_kind idk;
15308 /* There's really no way to know what we're looking at, so we just
15309 try each alternative in order.
15311 [temp.arg]
15313 In a template-argument, an ambiguity between a type-id and an
15314 expression is resolved to a type-id, regardless of the form of
15315 the corresponding template-parameter.
15317 Therefore, we try a type-id first. */
15318 cp_parser_parse_tentatively (parser);
15319 argument = cp_parser_template_type_arg (parser);
15320 /* If there was no error parsing the type-id but the next token is a
15321 '>>', our behavior depends on which dialect of C++ we're
15322 parsing. In C++98, we probably found a typo for '> >'. But there
15323 are type-id which are also valid expressions. For instance:
15325 struct X { int operator >> (int); };
15326 template <int V> struct Foo {};
15327 Foo<X () >> 5> r;
15329 Here 'X()' is a valid type-id of a function type, but the user just
15330 wanted to write the expression "X() >> 5". Thus, we remember that we
15331 found a valid type-id, but we still try to parse the argument as an
15332 expression to see what happens.
15334 In C++0x, the '>>' will be considered two separate '>'
15335 tokens. */
15336 if (!cp_parser_error_occurred (parser)
15337 && cxx_dialect == cxx98
15338 && cp_lexer_next_token_is (parser->lexer, CPP_RSHIFT))
15340 maybe_type_id = true;
15341 cp_parser_abort_tentative_parse (parser);
15343 else
15345 /* If the next token isn't a `,' or a `>', then this argument wasn't
15346 really finished. This means that the argument is not a valid
15347 type-id. */
15348 if (!cp_parser_next_token_ends_template_argument_p (parser))
15349 cp_parser_error (parser, "expected template-argument");
15350 /* If that worked, we're done. */
15351 if (cp_parser_parse_definitely (parser))
15352 return argument;
15354 /* We're still not sure what the argument will be. */
15355 cp_parser_parse_tentatively (parser);
15356 /* Try a template. */
15357 argument_start_token = cp_lexer_peek_token (parser->lexer);
15358 argument = cp_parser_id_expression (parser,
15359 /*template_keyword_p=*/false,
15360 /*check_dependency_p=*/true,
15361 &template_p,
15362 /*declarator_p=*/false,
15363 /*optional_p=*/false);
15364 /* If the next token isn't a `,' or a `>', then this argument wasn't
15365 really finished. */
15366 if (!cp_parser_next_token_ends_template_argument_p (parser))
15367 cp_parser_error (parser, "expected template-argument");
15368 if (!cp_parser_error_occurred (parser))
15370 /* Figure out what is being referred to. If the id-expression
15371 was for a class template specialization, then we will have a
15372 TYPE_DECL at this point. There is no need to do name lookup
15373 at this point in that case. */
15374 if (TREE_CODE (argument) != TYPE_DECL)
15375 argument = cp_parser_lookup_name (parser, argument,
15376 none_type,
15377 /*is_template=*/template_p,
15378 /*is_namespace=*/false,
15379 /*check_dependency=*/true,
15380 /*ambiguous_decls=*/NULL,
15381 argument_start_token->location);
15382 /* Handle a constrained-type-specifier for a non-type template
15383 parameter. */
15384 if (tree decl = cp_parser_maybe_concept_name (parser, argument))
15385 argument = decl;
15386 else if (TREE_CODE (argument) != TEMPLATE_DECL
15387 && TREE_CODE (argument) != UNBOUND_CLASS_TEMPLATE)
15388 cp_parser_error (parser, "expected template-name");
15390 if (cp_parser_parse_definitely (parser))
15392 if (TREE_DEPRECATED (argument))
15393 warn_deprecated_use (argument, NULL_TREE);
15394 return argument;
15396 /* It must be a non-type argument. In C++17 any constant-expression is
15397 allowed. */
15398 if (cxx_dialect > cxx14)
15399 goto general_expr;
15401 /* Otherwise, the permitted cases are given in [temp.arg.nontype]:
15403 -- an integral constant-expression of integral or enumeration
15404 type; or
15406 -- the name of a non-type template-parameter; or
15408 -- the name of an object or function with external linkage...
15410 -- the address of an object or function with external linkage...
15412 -- a pointer to member... */
15413 /* Look for a non-type template parameter. */
15414 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
15416 cp_parser_parse_tentatively (parser);
15417 argument = cp_parser_primary_expression (parser,
15418 /*address_p=*/false,
15419 /*cast_p=*/false,
15420 /*template_arg_p=*/true,
15421 &idk);
15422 if (TREE_CODE (argument) != TEMPLATE_PARM_INDEX
15423 || !cp_parser_next_token_ends_template_argument_p (parser))
15424 cp_parser_simulate_error (parser);
15425 if (cp_parser_parse_definitely (parser))
15426 return argument;
15429 /* If the next token is "&", the argument must be the address of an
15430 object or function with external linkage. */
15431 address_p = cp_lexer_next_token_is (parser->lexer, CPP_AND);
15432 if (address_p)
15434 loc = cp_lexer_peek_token (parser->lexer)->location;
15435 cp_lexer_consume_token (parser->lexer);
15437 /* See if we might have an id-expression. */
15438 token = cp_lexer_peek_token (parser->lexer);
15439 if (token->type == CPP_NAME
15440 || token->keyword == RID_OPERATOR
15441 || token->type == CPP_SCOPE
15442 || token->type == CPP_TEMPLATE_ID
15443 || token->type == CPP_NESTED_NAME_SPECIFIER)
15445 cp_parser_parse_tentatively (parser);
15446 argument = cp_parser_primary_expression (parser,
15447 address_p,
15448 /*cast_p=*/false,
15449 /*template_arg_p=*/true,
15450 &idk);
15451 if (cp_parser_error_occurred (parser)
15452 || !cp_parser_next_token_ends_template_argument_p (parser))
15453 cp_parser_abort_tentative_parse (parser);
15454 else
15456 tree probe;
15458 if (INDIRECT_REF_P (argument))
15460 /* Strip the dereference temporarily. */
15461 gcc_assert (REFERENCE_REF_P (argument));
15462 argument = TREE_OPERAND (argument, 0);
15465 /* If we're in a template, we represent a qualified-id referring
15466 to a static data member as a SCOPE_REF even if the scope isn't
15467 dependent so that we can check access control later. */
15468 probe = argument;
15469 if (TREE_CODE (probe) == SCOPE_REF)
15470 probe = TREE_OPERAND (probe, 1);
15471 if (VAR_P (probe))
15473 /* A variable without external linkage might still be a
15474 valid constant-expression, so no error is issued here
15475 if the external-linkage check fails. */
15476 if (!address_p && !DECL_EXTERNAL_LINKAGE_P (probe))
15477 cp_parser_simulate_error (parser);
15479 else if (is_overloaded_fn (argument))
15480 /* All overloaded functions are allowed; if the external
15481 linkage test does not pass, an error will be issued
15482 later. */
15484 else if (address_p
15485 && (TREE_CODE (argument) == OFFSET_REF
15486 || TREE_CODE (argument) == SCOPE_REF))
15487 /* A pointer-to-member. */
15489 else if (TREE_CODE (argument) == TEMPLATE_PARM_INDEX)
15491 else
15492 cp_parser_simulate_error (parser);
15494 if (cp_parser_parse_definitely (parser))
15496 if (address_p)
15497 argument = build_x_unary_op (loc, ADDR_EXPR, argument,
15498 tf_warning_or_error);
15499 else
15500 argument = convert_from_reference (argument);
15501 return argument;
15505 /* If the argument started with "&", there are no other valid
15506 alternatives at this point. */
15507 if (address_p)
15509 cp_parser_error (parser, "invalid non-type template argument");
15510 return error_mark_node;
15513 general_expr:
15514 /* If the argument wasn't successfully parsed as a type-id followed
15515 by '>>', the argument can only be a constant expression now.
15516 Otherwise, we try parsing the constant-expression tentatively,
15517 because the argument could really be a type-id. */
15518 if (maybe_type_id)
15519 cp_parser_parse_tentatively (parser);
15521 if (cxx_dialect <= cxx14)
15522 argument = cp_parser_constant_expression (parser);
15523 else
15525 /* With C++17 generalized non-type template arguments we need to handle
15526 lvalue constant expressions, too. */
15527 argument = cp_parser_assignment_expression (parser);
15528 require_potential_constant_expression (argument);
15531 if (!maybe_type_id)
15532 return argument;
15533 if (!cp_parser_next_token_ends_template_argument_p (parser))
15534 cp_parser_error (parser, "expected template-argument");
15535 if (cp_parser_parse_definitely (parser))
15536 return argument;
15537 /* We did our best to parse the argument as a non type-id, but that
15538 was the only alternative that matched (albeit with a '>' after
15539 it). We can assume it's just a typo from the user, and a
15540 diagnostic will then be issued. */
15541 return cp_parser_template_type_arg (parser);
15544 /* Parse an explicit-instantiation.
15546 explicit-instantiation:
15547 template declaration
15549 Although the standard says `declaration', what it really means is:
15551 explicit-instantiation:
15552 template decl-specifier-seq [opt] declarator [opt] ;
15554 Things like `template int S<int>::i = 5, int S<double>::j;' are not
15555 supposed to be allowed. A defect report has been filed about this
15556 issue.
15558 GNU Extension:
15560 explicit-instantiation:
15561 storage-class-specifier template
15562 decl-specifier-seq [opt] declarator [opt] ;
15563 function-specifier template
15564 decl-specifier-seq [opt] declarator [opt] ; */
15566 static void
15567 cp_parser_explicit_instantiation (cp_parser* parser)
15569 int declares_class_or_enum;
15570 cp_decl_specifier_seq decl_specifiers;
15571 tree extension_specifier = NULL_TREE;
15573 timevar_push (TV_TEMPLATE_INST);
15575 /* Look for an (optional) storage-class-specifier or
15576 function-specifier. */
15577 if (cp_parser_allow_gnu_extensions_p (parser))
15579 extension_specifier
15580 = cp_parser_storage_class_specifier_opt (parser);
15581 if (!extension_specifier)
15582 extension_specifier
15583 = cp_parser_function_specifier_opt (parser,
15584 /*decl_specs=*/NULL);
15587 /* Look for the `template' keyword. */
15588 cp_parser_require_keyword (parser, RID_TEMPLATE, RT_TEMPLATE);
15589 /* Let the front end know that we are processing an explicit
15590 instantiation. */
15591 begin_explicit_instantiation ();
15592 /* [temp.explicit] says that we are supposed to ignore access
15593 control while processing explicit instantiation directives. */
15594 push_deferring_access_checks (dk_no_check);
15595 /* Parse a decl-specifier-seq. */
15596 cp_parser_decl_specifier_seq (parser,
15597 CP_PARSER_FLAGS_OPTIONAL,
15598 &decl_specifiers,
15599 &declares_class_or_enum);
15600 /* If there was exactly one decl-specifier, and it declared a class,
15601 and there's no declarator, then we have an explicit type
15602 instantiation. */
15603 if (declares_class_or_enum && cp_parser_declares_only_class_p (parser))
15605 tree type;
15607 type = check_tag_decl (&decl_specifiers,
15608 /*explicit_type_instantiation_p=*/true);
15609 /* Turn access control back on for names used during
15610 template instantiation. */
15611 pop_deferring_access_checks ();
15612 if (type)
15613 do_type_instantiation (type, extension_specifier,
15614 /*complain=*/tf_error);
15616 else
15618 cp_declarator *declarator;
15619 tree decl;
15621 /* Parse the declarator. */
15622 declarator
15623 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
15624 /*ctor_dtor_or_conv_p=*/NULL,
15625 /*parenthesized_p=*/NULL,
15626 /*member_p=*/false,
15627 /*friend_p=*/false);
15628 if (declares_class_or_enum & 2)
15629 cp_parser_check_for_definition_in_return_type (declarator,
15630 decl_specifiers.type,
15631 decl_specifiers.locations[ds_type_spec]);
15632 if (declarator != cp_error_declarator)
15634 if (decl_spec_seq_has_spec_p (&decl_specifiers, ds_inline))
15635 permerror (decl_specifiers.locations[ds_inline],
15636 "explicit instantiation shall not use"
15637 " %<inline%> specifier");
15638 if (decl_spec_seq_has_spec_p (&decl_specifiers, ds_constexpr))
15639 permerror (decl_specifiers.locations[ds_constexpr],
15640 "explicit instantiation shall not use"
15641 " %<constexpr%> specifier");
15643 decl = grokdeclarator (declarator, &decl_specifiers,
15644 NORMAL, 0, &decl_specifiers.attributes);
15645 /* Turn access control back on for names used during
15646 template instantiation. */
15647 pop_deferring_access_checks ();
15648 /* Do the explicit instantiation. */
15649 do_decl_instantiation (decl, extension_specifier);
15651 else
15653 pop_deferring_access_checks ();
15654 /* Skip the body of the explicit instantiation. */
15655 cp_parser_skip_to_end_of_statement (parser);
15658 /* We're done with the instantiation. */
15659 end_explicit_instantiation ();
15661 cp_parser_consume_semicolon_at_end_of_statement (parser);
15663 timevar_pop (TV_TEMPLATE_INST);
15666 /* Parse an explicit-specialization.
15668 explicit-specialization:
15669 template < > declaration
15671 Although the standard says `declaration', what it really means is:
15673 explicit-specialization:
15674 template <> decl-specifier [opt] init-declarator [opt] ;
15675 template <> function-definition
15676 template <> explicit-specialization
15677 template <> template-declaration */
15679 static void
15680 cp_parser_explicit_specialization (cp_parser* parser)
15682 bool need_lang_pop;
15683 cp_token *token = cp_lexer_peek_token (parser->lexer);
15685 /* Look for the `template' keyword. */
15686 cp_parser_require_keyword (parser, RID_TEMPLATE, RT_TEMPLATE);
15687 /* Look for the `<'. */
15688 cp_parser_require (parser, CPP_LESS, RT_LESS);
15689 /* Look for the `>'. */
15690 cp_parser_require (parser, CPP_GREATER, RT_GREATER);
15691 /* We have processed another parameter list. */
15692 ++parser->num_template_parameter_lists;
15693 /* [temp]
15695 A template ... explicit specialization ... shall not have C
15696 linkage. */
15697 if (current_lang_name == lang_name_c)
15699 error_at (token->location, "template specialization with C linkage");
15700 /* Give it C++ linkage to avoid confusing other parts of the
15701 front end. */
15702 push_lang_context (lang_name_cplusplus);
15703 need_lang_pop = true;
15705 else
15706 need_lang_pop = false;
15707 /* Let the front end know that we are beginning a specialization. */
15708 if (!begin_specialization ())
15710 end_specialization ();
15711 return;
15714 /* If the next keyword is `template', we need to figure out whether
15715 or not we're looking a template-declaration. */
15716 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
15718 if (cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_LESS
15719 && cp_lexer_peek_nth_token (parser->lexer, 3)->type != CPP_GREATER)
15720 cp_parser_template_declaration_after_export (parser,
15721 /*member_p=*/false);
15722 else
15723 cp_parser_explicit_specialization (parser);
15725 else
15726 /* Parse the dependent declaration. */
15727 cp_parser_single_declaration (parser,
15728 /*checks=*/NULL,
15729 /*member_p=*/false,
15730 /*explicit_specialization_p=*/true,
15731 /*friend_p=*/NULL);
15732 /* We're done with the specialization. */
15733 end_specialization ();
15734 /* For the erroneous case of a template with C linkage, we pushed an
15735 implicit C++ linkage scope; exit that scope now. */
15736 if (need_lang_pop)
15737 pop_lang_context ();
15738 /* We're done with this parameter list. */
15739 --parser->num_template_parameter_lists;
15742 /* Parse a type-specifier.
15744 type-specifier:
15745 simple-type-specifier
15746 class-specifier
15747 enum-specifier
15748 elaborated-type-specifier
15749 cv-qualifier
15751 GNU Extension:
15753 type-specifier:
15754 __complex__
15756 Returns a representation of the type-specifier. For a
15757 class-specifier, enum-specifier, or elaborated-type-specifier, a
15758 TREE_TYPE is returned; otherwise, a TYPE_DECL is returned.
15760 The parser flags FLAGS is used to control type-specifier parsing.
15762 If IS_DECLARATION is TRUE, then this type-specifier is appearing
15763 in a decl-specifier-seq.
15765 If DECLARES_CLASS_OR_ENUM is non-NULL, and the type-specifier is a
15766 class-specifier, enum-specifier, or elaborated-type-specifier, then
15767 *DECLARES_CLASS_OR_ENUM is set to a nonzero value. The value is 1
15768 if a type is declared; 2 if it is defined. Otherwise, it is set to
15769 zero.
15771 If IS_CV_QUALIFIER is non-NULL, and the type-specifier is a
15772 cv-qualifier, then IS_CV_QUALIFIER is set to TRUE. Otherwise, it
15773 is set to FALSE. */
15775 static tree
15776 cp_parser_type_specifier (cp_parser* parser,
15777 cp_parser_flags flags,
15778 cp_decl_specifier_seq *decl_specs,
15779 bool is_declaration,
15780 int* declares_class_or_enum,
15781 bool* is_cv_qualifier)
15783 tree type_spec = NULL_TREE;
15784 cp_token *token;
15785 enum rid keyword;
15786 cp_decl_spec ds = ds_last;
15788 /* Assume this type-specifier does not declare a new type. */
15789 if (declares_class_or_enum)
15790 *declares_class_or_enum = 0;
15791 /* And that it does not specify a cv-qualifier. */
15792 if (is_cv_qualifier)
15793 *is_cv_qualifier = false;
15794 /* Peek at the next token. */
15795 token = cp_lexer_peek_token (parser->lexer);
15797 /* If we're looking at a keyword, we can use that to guide the
15798 production we choose. */
15799 keyword = token->keyword;
15800 switch (keyword)
15802 case RID_ENUM:
15803 if ((flags & CP_PARSER_FLAGS_NO_TYPE_DEFINITIONS))
15804 goto elaborated_type_specifier;
15806 /* Look for the enum-specifier. */
15807 type_spec = cp_parser_enum_specifier (parser);
15808 /* If that worked, we're done. */
15809 if (type_spec)
15811 if (declares_class_or_enum)
15812 *declares_class_or_enum = 2;
15813 if (decl_specs)
15814 cp_parser_set_decl_spec_type (decl_specs,
15815 type_spec,
15816 token,
15817 /*type_definition_p=*/true);
15818 return type_spec;
15820 else
15821 goto elaborated_type_specifier;
15823 /* Any of these indicate either a class-specifier, or an
15824 elaborated-type-specifier. */
15825 case RID_CLASS:
15826 case RID_STRUCT:
15827 case RID_UNION:
15828 if ((flags & CP_PARSER_FLAGS_NO_TYPE_DEFINITIONS))
15829 goto elaborated_type_specifier;
15831 /* Parse tentatively so that we can back up if we don't find a
15832 class-specifier. */
15833 cp_parser_parse_tentatively (parser);
15834 /* Look for the class-specifier. */
15835 type_spec = cp_parser_class_specifier (parser);
15836 invoke_plugin_callbacks (PLUGIN_FINISH_TYPE, type_spec);
15837 /* If that worked, we're done. */
15838 if (cp_parser_parse_definitely (parser))
15840 if (declares_class_or_enum)
15841 *declares_class_or_enum = 2;
15842 if (decl_specs)
15843 cp_parser_set_decl_spec_type (decl_specs,
15844 type_spec,
15845 token,
15846 /*type_definition_p=*/true);
15847 return type_spec;
15850 /* Fall through. */
15851 elaborated_type_specifier:
15852 /* We're declaring (not defining) a class or enum. */
15853 if (declares_class_or_enum)
15854 *declares_class_or_enum = 1;
15856 /* Fall through. */
15857 case RID_TYPENAME:
15858 /* Look for an elaborated-type-specifier. */
15859 type_spec
15860 = (cp_parser_elaborated_type_specifier
15861 (parser,
15862 decl_spec_seq_has_spec_p (decl_specs, ds_friend),
15863 is_declaration));
15864 if (decl_specs)
15865 cp_parser_set_decl_spec_type (decl_specs,
15866 type_spec,
15867 token,
15868 /*type_definition_p=*/false);
15869 return type_spec;
15871 case RID_CONST:
15872 ds = ds_const;
15873 if (is_cv_qualifier)
15874 *is_cv_qualifier = true;
15875 break;
15877 case RID_VOLATILE:
15878 ds = ds_volatile;
15879 if (is_cv_qualifier)
15880 *is_cv_qualifier = true;
15881 break;
15883 case RID_RESTRICT:
15884 ds = ds_restrict;
15885 if (is_cv_qualifier)
15886 *is_cv_qualifier = true;
15887 break;
15889 case RID_COMPLEX:
15890 /* The `__complex__' keyword is a GNU extension. */
15891 ds = ds_complex;
15892 break;
15894 default:
15895 break;
15898 /* Handle simple keywords. */
15899 if (ds != ds_last)
15901 if (decl_specs)
15903 set_and_check_decl_spec_loc (decl_specs, ds, token);
15904 decl_specs->any_specifiers_p = true;
15906 return cp_lexer_consume_token (parser->lexer)->u.value;
15909 /* If we do not already have a type-specifier, assume we are looking
15910 at a simple-type-specifier. */
15911 type_spec = cp_parser_simple_type_specifier (parser,
15912 decl_specs,
15913 flags);
15915 /* If we didn't find a type-specifier, and a type-specifier was not
15916 optional in this context, issue an error message. */
15917 if (!type_spec && !(flags & CP_PARSER_FLAGS_OPTIONAL))
15919 cp_parser_error (parser, "expected type specifier");
15920 return error_mark_node;
15923 return type_spec;
15926 /* Parse a simple-type-specifier.
15928 simple-type-specifier:
15929 :: [opt] nested-name-specifier [opt] type-name
15930 :: [opt] nested-name-specifier template template-id
15931 char
15932 wchar_t
15933 bool
15934 short
15936 long
15937 signed
15938 unsigned
15939 float
15940 double
15941 void
15943 C++0x Extension:
15945 simple-type-specifier:
15946 auto
15947 decltype ( expression )
15948 char16_t
15949 char32_t
15950 __underlying_type ( type-id )
15952 GNU Extension:
15954 simple-type-specifier:
15955 __int128
15956 __typeof__ unary-expression
15957 __typeof__ ( type-id )
15958 __typeof__ ( type-id ) { initializer-list , [opt] }
15960 Concepts Extension:
15962 simple-type-specifier:
15963 constrained-type-specifier
15965 Returns the indicated TYPE_DECL. If DECL_SPECS is not NULL, it is
15966 appropriately updated. */
15968 static tree
15969 cp_parser_simple_type_specifier (cp_parser* parser,
15970 cp_decl_specifier_seq *decl_specs,
15971 cp_parser_flags flags)
15973 tree type = NULL_TREE;
15974 cp_token *token;
15975 int idx;
15977 /* Peek at the next token. */
15978 token = cp_lexer_peek_token (parser->lexer);
15980 /* If we're looking at a keyword, things are easy. */
15981 switch (token->keyword)
15983 case RID_CHAR:
15984 if (decl_specs)
15985 decl_specs->explicit_char_p = true;
15986 type = char_type_node;
15987 break;
15988 case RID_CHAR16:
15989 type = char16_type_node;
15990 break;
15991 case RID_CHAR32:
15992 type = char32_type_node;
15993 break;
15994 case RID_WCHAR:
15995 type = wchar_type_node;
15996 break;
15997 case RID_BOOL:
15998 type = boolean_type_node;
15999 break;
16000 case RID_SHORT:
16001 set_and_check_decl_spec_loc (decl_specs, ds_short, token);
16002 type = short_integer_type_node;
16003 break;
16004 case RID_INT:
16005 if (decl_specs)
16006 decl_specs->explicit_int_p = true;
16007 type = integer_type_node;
16008 break;
16009 case RID_INT_N_0:
16010 case RID_INT_N_1:
16011 case RID_INT_N_2:
16012 case RID_INT_N_3:
16013 idx = token->keyword - RID_INT_N_0;
16014 if (! int_n_enabled_p [idx])
16015 break;
16016 if (decl_specs)
16018 decl_specs->explicit_intN_p = true;
16019 decl_specs->int_n_idx = idx;
16021 type = int_n_trees [idx].signed_type;
16022 break;
16023 case RID_LONG:
16024 if (decl_specs)
16025 set_and_check_decl_spec_loc (decl_specs, ds_long, token);
16026 type = long_integer_type_node;
16027 break;
16028 case RID_SIGNED:
16029 set_and_check_decl_spec_loc (decl_specs, ds_signed, token);
16030 type = integer_type_node;
16031 break;
16032 case RID_UNSIGNED:
16033 set_and_check_decl_spec_loc (decl_specs, ds_unsigned, token);
16034 type = unsigned_type_node;
16035 break;
16036 case RID_FLOAT:
16037 type = float_type_node;
16038 break;
16039 case RID_DOUBLE:
16040 type = double_type_node;
16041 break;
16042 case RID_VOID:
16043 type = void_type_node;
16044 break;
16046 case RID_AUTO:
16047 maybe_warn_cpp0x (CPP0X_AUTO);
16048 if (parser->auto_is_implicit_function_template_parm_p)
16050 /* The 'auto' might be the placeholder return type for a function decl
16051 with trailing return type. */
16052 bool have_trailing_return_fn_decl = false;
16054 cp_parser_parse_tentatively (parser);
16055 cp_lexer_consume_token (parser->lexer);
16056 while (cp_lexer_next_token_is_not (parser->lexer, CPP_EQ)
16057 && cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA)
16058 && cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN)
16059 && cp_lexer_next_token_is_not (parser->lexer, CPP_EOF))
16061 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
16063 cp_lexer_consume_token (parser->lexer);
16064 cp_parser_skip_to_closing_parenthesis (parser,
16065 /*recovering*/false,
16066 /*or_comma*/false,
16067 /*consume_paren*/true);
16068 continue;
16071 if (cp_lexer_next_token_is (parser->lexer, CPP_DEREF))
16073 have_trailing_return_fn_decl = true;
16074 break;
16077 cp_lexer_consume_token (parser->lexer);
16079 cp_parser_abort_tentative_parse (parser);
16081 if (have_trailing_return_fn_decl)
16083 type = make_auto ();
16084 break;
16087 if (cxx_dialect >= cxx14)
16089 type = synthesize_implicit_template_parm (parser, NULL_TREE);
16090 type = TREE_TYPE (type);
16092 else
16093 type = error_mark_node;
16095 if (current_class_type && LAMBDA_TYPE_P (current_class_type))
16097 if (cxx_dialect < cxx14)
16098 error_at (token->location,
16099 "use of %<auto%> in lambda parameter declaration "
16100 "only available with "
16101 "-std=c++14 or -std=gnu++14");
16103 else if (cxx_dialect < cxx14)
16104 error_at (token->location,
16105 "use of %<auto%> in parameter declaration "
16106 "only available with "
16107 "-std=c++14 or -std=gnu++14");
16108 else if (!flag_concepts)
16109 pedwarn (token->location, OPT_Wpedantic,
16110 "ISO C++ forbids use of %<auto%> in parameter "
16111 "declaration");
16113 else
16114 type = make_auto ();
16115 break;
16117 case RID_DECLTYPE:
16118 /* Since DR 743, decltype can either be a simple-type-specifier by
16119 itself or begin a nested-name-specifier. Parsing it will replace
16120 it with a CPP_DECLTYPE, so just rewind and let the CPP_DECLTYPE
16121 handling below decide what to do. */
16122 cp_parser_decltype (parser);
16123 cp_lexer_set_token_position (parser->lexer, token);
16124 break;
16126 case RID_TYPEOF:
16127 /* Consume the `typeof' token. */
16128 cp_lexer_consume_token (parser->lexer);
16129 /* Parse the operand to `typeof'. */
16130 type = cp_parser_sizeof_operand (parser, RID_TYPEOF);
16131 /* If it is not already a TYPE, take its type. */
16132 if (!TYPE_P (type))
16133 type = finish_typeof (type);
16135 if (decl_specs)
16136 cp_parser_set_decl_spec_type (decl_specs, type,
16137 token,
16138 /*type_definition_p=*/false);
16140 return type;
16142 case RID_UNDERLYING_TYPE:
16143 type = cp_parser_trait_expr (parser, RID_UNDERLYING_TYPE);
16144 if (decl_specs)
16145 cp_parser_set_decl_spec_type (decl_specs, type,
16146 token,
16147 /*type_definition_p=*/false);
16149 return type;
16151 case RID_BASES:
16152 case RID_DIRECT_BASES:
16153 type = cp_parser_trait_expr (parser, token->keyword);
16154 if (decl_specs)
16155 cp_parser_set_decl_spec_type (decl_specs, type,
16156 token,
16157 /*type_definition_p=*/false);
16158 return type;
16159 default:
16160 break;
16163 /* If token is an already-parsed decltype not followed by ::,
16164 it's a simple-type-specifier. */
16165 if (token->type == CPP_DECLTYPE
16166 && cp_lexer_peek_nth_token (parser->lexer, 2)->type != CPP_SCOPE)
16168 type = saved_checks_value (token->u.tree_check_value);
16169 if (decl_specs)
16171 cp_parser_set_decl_spec_type (decl_specs, type,
16172 token,
16173 /*type_definition_p=*/false);
16174 /* Remember that we are handling a decltype in order to
16175 implement the resolution of DR 1510 when the argument
16176 isn't instantiation dependent. */
16177 decl_specs->decltype_p = true;
16179 cp_lexer_consume_token (parser->lexer);
16180 return type;
16183 /* If the type-specifier was for a built-in type, we're done. */
16184 if (type)
16186 /* Record the type. */
16187 if (decl_specs
16188 && (token->keyword != RID_SIGNED
16189 && token->keyword != RID_UNSIGNED
16190 && token->keyword != RID_SHORT
16191 && token->keyword != RID_LONG))
16192 cp_parser_set_decl_spec_type (decl_specs,
16193 type,
16194 token,
16195 /*type_definition_p=*/false);
16196 if (decl_specs)
16197 decl_specs->any_specifiers_p = true;
16199 /* Consume the token. */
16200 cp_lexer_consume_token (parser->lexer);
16202 if (type == error_mark_node)
16203 return error_mark_node;
16205 /* There is no valid C++ program where a non-template type is
16206 followed by a "<". That usually indicates that the user thought
16207 that the type was a template. */
16208 cp_parser_check_for_invalid_template_id (parser, type, none_type,
16209 token->location);
16211 return TYPE_NAME (type);
16214 /* The type-specifier must be a user-defined type. */
16215 if (!(flags & CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES))
16217 bool qualified_p;
16218 bool global_p;
16220 /* Don't gobble tokens or issue error messages if this is an
16221 optional type-specifier. */
16222 if (flags & CP_PARSER_FLAGS_OPTIONAL)
16223 cp_parser_parse_tentatively (parser);
16225 /* Look for the optional `::' operator. */
16226 global_p
16227 = (cp_parser_global_scope_opt (parser,
16228 /*current_scope_valid_p=*/false)
16229 != NULL_TREE);
16230 /* Look for the nested-name specifier. */
16231 qualified_p
16232 = (cp_parser_nested_name_specifier_opt (parser,
16233 /*typename_keyword_p=*/false,
16234 /*check_dependency_p=*/true,
16235 /*type_p=*/false,
16236 /*is_declaration=*/false)
16237 != NULL_TREE);
16238 token = cp_lexer_peek_token (parser->lexer);
16239 /* If we have seen a nested-name-specifier, and the next token
16240 is `template', then we are using the template-id production. */
16241 if (parser->scope
16242 && cp_parser_optional_template_keyword (parser))
16244 /* Look for the template-id. */
16245 type = cp_parser_template_id (parser,
16246 /*template_keyword_p=*/true,
16247 /*check_dependency_p=*/true,
16248 none_type,
16249 /*is_declaration=*/false);
16250 /* If the template-id did not name a type, we are out of
16251 luck. */
16252 if (TREE_CODE (type) != TYPE_DECL)
16254 cp_parser_error (parser, "expected template-id for type");
16255 type = NULL_TREE;
16258 /* Otherwise, look for a type-name. */
16259 else
16260 type = cp_parser_type_name (parser);
16261 /* Keep track of all name-lookups performed in class scopes. */
16262 if (type
16263 && !global_p
16264 && !qualified_p
16265 && TREE_CODE (type) == TYPE_DECL
16266 && identifier_p (DECL_NAME (type)))
16267 maybe_note_name_used_in_class (DECL_NAME (type), type);
16268 /* If it didn't work out, we don't have a TYPE. */
16269 if ((flags & CP_PARSER_FLAGS_OPTIONAL)
16270 && !cp_parser_parse_definitely (parser))
16271 type = NULL_TREE;
16272 if (type && decl_specs)
16273 cp_parser_set_decl_spec_type (decl_specs, type,
16274 token,
16275 /*type_definition_p=*/false);
16278 /* If we didn't get a type-name, issue an error message. */
16279 if (!type && !(flags & CP_PARSER_FLAGS_OPTIONAL))
16281 cp_parser_error (parser, "expected type-name");
16282 return error_mark_node;
16285 if (type && type != error_mark_node)
16287 /* See if TYPE is an Objective-C type, and if so, parse and
16288 accept any protocol references following it. Do this before
16289 the cp_parser_check_for_invalid_template_id() call, because
16290 Objective-C types can be followed by '<...>' which would
16291 enclose protocol names rather than template arguments, and so
16292 everything is fine. */
16293 if (c_dialect_objc () && !parser->scope
16294 && (objc_is_id (type) || objc_is_class_name (type)))
16296 tree protos = cp_parser_objc_protocol_refs_opt (parser);
16297 tree qual_type = objc_get_protocol_qualified_type (type, protos);
16299 /* Clobber the "unqualified" type previously entered into
16300 DECL_SPECS with the new, improved protocol-qualified version. */
16301 if (decl_specs)
16302 decl_specs->type = qual_type;
16304 return qual_type;
16307 /* There is no valid C++ program where a non-template type is
16308 followed by a "<". That usually indicates that the user
16309 thought that the type was a template. */
16310 cp_parser_check_for_invalid_template_id (parser, TREE_TYPE (type),
16311 none_type,
16312 token->location);
16315 return type;
16318 /* Parse a type-name.
16320 type-name:
16321 class-name
16322 enum-name
16323 typedef-name
16324 simple-template-id [in c++0x]
16326 enum-name:
16327 identifier
16329 typedef-name:
16330 identifier
16332 Concepts:
16334 type-name:
16335 concept-name
16336 partial-concept-id
16338 concept-name:
16339 identifier
16341 Returns a TYPE_DECL for the type. */
16343 static tree
16344 cp_parser_type_name (cp_parser* parser)
16346 return cp_parser_type_name (parser, /*typename_keyword_p=*/false);
16349 /* See above. */
16350 static tree
16351 cp_parser_type_name (cp_parser* parser, bool typename_keyword_p)
16353 tree type_decl;
16355 /* We can't know yet whether it is a class-name or not. */
16356 cp_parser_parse_tentatively (parser);
16357 /* Try a class-name. */
16358 type_decl = cp_parser_class_name (parser,
16359 typename_keyword_p,
16360 /*template_keyword_p=*/false,
16361 none_type,
16362 /*check_dependency_p=*/true,
16363 /*class_head_p=*/false,
16364 /*is_declaration=*/false);
16365 /* If it's not a class-name, keep looking. */
16366 if (!cp_parser_parse_definitely (parser))
16368 if (cxx_dialect < cxx11)
16369 /* It must be a typedef-name or an enum-name. */
16370 return cp_parser_nonclass_name (parser);
16372 cp_parser_parse_tentatively (parser);
16373 /* It is either a simple-template-id representing an
16374 instantiation of an alias template... */
16375 type_decl = cp_parser_template_id (parser,
16376 /*template_keyword_p=*/false,
16377 /*check_dependency_p=*/true,
16378 none_type,
16379 /*is_declaration=*/false);
16380 /* Note that this must be an instantiation of an alias template
16381 because [temp.names]/6 says:
16383 A template-id that names an alias template specialization
16384 is a type-name.
16386 Whereas [temp.names]/7 says:
16388 A simple-template-id that names a class template
16389 specialization is a class-name.
16391 With concepts, this could also be a partial-concept-id that
16392 declares a non-type template parameter. */
16393 if (type_decl != NULL_TREE
16394 && TREE_CODE (type_decl) == TYPE_DECL
16395 && TYPE_DECL_ALIAS_P (type_decl))
16396 gcc_assert (DECL_TEMPLATE_INSTANTIATION (type_decl));
16397 else if (is_constrained_parameter (type_decl))
16398 /* Don't do anything. */ ;
16399 else
16400 cp_parser_simulate_error (parser);
16402 if (!cp_parser_parse_definitely (parser))
16403 /* ... Or a typedef-name or an enum-name. */
16404 return cp_parser_nonclass_name (parser);
16407 return type_decl;
16410 /* Check if DECL and ARGS can form a constrained-type-specifier.
16411 If ARGS is non-null, we try to form a concept check of the
16412 form DECL<?, ARGS> where ? is a wildcard that matches any
16413 kind of template argument. If ARGS is NULL, then we try to
16414 form a concept check of the form DECL<?>. */
16416 static tree
16417 cp_parser_maybe_constrained_type_specifier (cp_parser *parser,
16418 tree decl, tree args)
16420 gcc_assert (args ? TREE_CODE (args) == TREE_VEC : true);
16422 /* If we a constrained-type-specifier cannot be deduced. */
16423 if (parser->prevent_constrained_type_specifiers)
16424 return NULL_TREE;
16426 /* A constrained type specifier can only be found in an
16427 overload set or as a reference to a template declaration.
16429 FIXME: This might be masking a bug. It's possible that
16430 that the deduction below is causing template specializations
16431 to be formed with the wildcard as an argument. */
16432 if (TREE_CODE (decl) != OVERLOAD && TREE_CODE (decl) != TEMPLATE_DECL)
16433 return NULL_TREE;
16435 /* Try to build a call expression that evaluates the
16436 concept. This can fail if the overload set refers
16437 only to non-templates. */
16438 tree placeholder = build_nt (WILDCARD_DECL);
16439 tree check = build_concept_check (decl, placeholder, args);
16440 if (check == error_mark_node)
16441 return NULL_TREE;
16443 /* Deduce the checked constraint and the prototype parameter.
16445 FIXME: In certain cases, failure to deduce should be a
16446 diagnosable error. */
16447 tree conc;
16448 tree proto;
16449 if (!deduce_constrained_parameter (check, conc, proto))
16450 return NULL_TREE;
16452 /* In template parameter scope, this results in a constrained
16453 parameter. Return a descriptor of that parm. */
16454 if (processing_template_parmlist)
16455 return build_constrained_parameter (conc, proto, args);
16457 /* In a parameter-declaration-clause, constrained-type
16458 specifiers result in invented template parameters. */
16459 if (parser->auto_is_implicit_function_template_parm_p)
16461 tree x = build_constrained_parameter (conc, proto, args);
16462 return synthesize_implicit_template_parm (parser, x);
16464 else
16466 /* Otherwise, we're in a context where the constrained
16467 type name is deduced and the constraint applies
16468 after deduction. */
16469 return make_constrained_auto (conc, args);
16472 return NULL_TREE;
16475 /* If DECL refers to a concept, return a TYPE_DECL representing
16476 the result of using the constrained type specifier in the
16477 current context. DECL refers to a concept if
16479 - it is an overload set containing a function concept taking a single
16480 type argument, or
16482 - it is a variable concept taking a single type argument. */
16484 static tree
16485 cp_parser_maybe_concept_name (cp_parser* parser, tree decl)
16487 if (flag_concepts
16488 && (TREE_CODE (decl) == OVERLOAD
16489 || BASELINK_P (decl)
16490 || variable_concept_p (decl)))
16491 return cp_parser_maybe_constrained_type_specifier (parser, decl, NULL_TREE);
16492 else
16493 return NULL_TREE;
16496 /* Check if DECL and ARGS form a partial-concept-id. If so,
16497 assign ID to the resulting constrained placeholder.
16499 Returns true if the partial-concept-id designates a placeholder
16500 and false otherwise. Note that *id is set to NULL_TREE in
16501 this case. */
16503 static tree
16504 cp_parser_maybe_partial_concept_id (cp_parser *parser, tree decl, tree args)
16506 return cp_parser_maybe_constrained_type_specifier (parser, decl, args);
16509 /* Parse a non-class type-name, that is, either an enum-name, a typedef-name,
16510 or a concept-name.
16512 enum-name:
16513 identifier
16515 typedef-name:
16516 identifier
16518 concept-name:
16519 identifier
16521 Returns a TYPE_DECL for the type. */
16523 static tree
16524 cp_parser_nonclass_name (cp_parser* parser)
16526 tree type_decl;
16527 tree identifier;
16529 cp_token *token = cp_lexer_peek_token (parser->lexer);
16530 identifier = cp_parser_identifier (parser);
16531 if (identifier == error_mark_node)
16532 return error_mark_node;
16534 /* Look up the type-name. */
16535 type_decl = cp_parser_lookup_name_simple (parser, identifier, token->location);
16537 type_decl = strip_using_decl (type_decl);
16539 /* If we found an overload set, then it may refer to a concept-name. */
16540 if (tree decl = cp_parser_maybe_concept_name (parser, type_decl))
16541 type_decl = decl;
16543 if (TREE_CODE (type_decl) != TYPE_DECL
16544 && (objc_is_id (identifier) || objc_is_class_name (identifier)))
16546 /* See if this is an Objective-C type. */
16547 tree protos = cp_parser_objc_protocol_refs_opt (parser);
16548 tree type = objc_get_protocol_qualified_type (identifier, protos);
16549 if (type)
16550 type_decl = TYPE_NAME (type);
16553 /* Issue an error if we did not find a type-name. */
16554 if (TREE_CODE (type_decl) != TYPE_DECL
16555 /* In Objective-C, we have the complication that class names are
16556 normally type names and start declarations (eg, the
16557 "NSObject" in "NSObject *object;"), but can be used in an
16558 Objective-C 2.0 dot-syntax (as in "NSObject.version") which
16559 is an expression. So, a classname followed by a dot is not a
16560 valid type-name. */
16561 || (objc_is_class_name (TREE_TYPE (type_decl))
16562 && cp_lexer_peek_token (parser->lexer)->type == CPP_DOT))
16564 if (!cp_parser_simulate_error (parser))
16565 cp_parser_name_lookup_error (parser, identifier, type_decl,
16566 NLE_TYPE, token->location);
16567 return error_mark_node;
16569 /* Remember that the name was used in the definition of the
16570 current class so that we can check later to see if the
16571 meaning would have been different after the class was
16572 entirely defined. */
16573 else if (type_decl != error_mark_node
16574 && !parser->scope)
16575 maybe_note_name_used_in_class (identifier, type_decl);
16577 return type_decl;
16580 /* Parse an elaborated-type-specifier. Note that the grammar given
16581 here incorporates the resolution to DR68.
16583 elaborated-type-specifier:
16584 class-key :: [opt] nested-name-specifier [opt] identifier
16585 class-key :: [opt] nested-name-specifier [opt] template [opt] template-id
16586 enum-key :: [opt] nested-name-specifier [opt] identifier
16587 typename :: [opt] nested-name-specifier identifier
16588 typename :: [opt] nested-name-specifier template [opt]
16589 template-id
16591 GNU extension:
16593 elaborated-type-specifier:
16594 class-key attributes :: [opt] nested-name-specifier [opt] identifier
16595 class-key attributes :: [opt] nested-name-specifier [opt]
16596 template [opt] template-id
16597 enum attributes :: [opt] nested-name-specifier [opt] identifier
16599 If IS_FRIEND is TRUE, then this elaborated-type-specifier is being
16600 declared `friend'. If IS_DECLARATION is TRUE, then this
16601 elaborated-type-specifier appears in a decl-specifiers-seq, i.e.,
16602 something is being declared.
16604 Returns the TYPE specified. */
16606 static tree
16607 cp_parser_elaborated_type_specifier (cp_parser* parser,
16608 bool is_friend,
16609 bool is_declaration)
16611 enum tag_types tag_type;
16612 tree identifier;
16613 tree type = NULL_TREE;
16614 tree attributes = NULL_TREE;
16615 tree globalscope;
16616 cp_token *token = NULL;
16618 /* See if we're looking at the `enum' keyword. */
16619 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_ENUM))
16621 /* Consume the `enum' token. */
16622 cp_lexer_consume_token (parser->lexer);
16623 /* Remember that it's an enumeration type. */
16624 tag_type = enum_type;
16625 /* Issue a warning if the `struct' or `class' key (for C++0x scoped
16626 enums) is used here. */
16627 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_CLASS)
16628 || cp_lexer_next_token_is_keyword (parser->lexer, RID_STRUCT))
16630 pedwarn (input_location, 0, "elaborated-type-specifier "
16631 "for a scoped enum must not use the %<%D%> keyword",
16632 cp_lexer_peek_token (parser->lexer)->u.value);
16633 /* Consume the `struct' or `class' and parse it anyway. */
16634 cp_lexer_consume_token (parser->lexer);
16636 /* Parse the attributes. */
16637 attributes = cp_parser_attributes_opt (parser);
16639 /* Or, it might be `typename'. */
16640 else if (cp_lexer_next_token_is_keyword (parser->lexer,
16641 RID_TYPENAME))
16643 /* Consume the `typename' token. */
16644 cp_lexer_consume_token (parser->lexer);
16645 /* Remember that it's a `typename' type. */
16646 tag_type = typename_type;
16648 /* Otherwise it must be a class-key. */
16649 else
16651 tag_type = cp_parser_class_key (parser);
16652 if (tag_type == none_type)
16653 return error_mark_node;
16654 /* Parse the attributes. */
16655 attributes = cp_parser_attributes_opt (parser);
16658 /* Look for the `::' operator. */
16659 globalscope = cp_parser_global_scope_opt (parser,
16660 /*current_scope_valid_p=*/false);
16661 /* Look for the nested-name-specifier. */
16662 if (tag_type == typename_type && !globalscope)
16664 if (!cp_parser_nested_name_specifier (parser,
16665 /*typename_keyword_p=*/true,
16666 /*check_dependency_p=*/true,
16667 /*type_p=*/true,
16668 is_declaration))
16669 return error_mark_node;
16671 else
16672 /* Even though `typename' is not present, the proposed resolution
16673 to Core Issue 180 says that in `class A<T>::B', `B' should be
16674 considered a type-name, even if `A<T>' is dependent. */
16675 cp_parser_nested_name_specifier_opt (parser,
16676 /*typename_keyword_p=*/true,
16677 /*check_dependency_p=*/true,
16678 /*type_p=*/true,
16679 is_declaration);
16680 /* For everything but enumeration types, consider a template-id.
16681 For an enumeration type, consider only a plain identifier. */
16682 if (tag_type != enum_type)
16684 bool template_p = false;
16685 tree decl;
16687 /* Allow the `template' keyword. */
16688 template_p = cp_parser_optional_template_keyword (parser);
16689 /* If we didn't see `template', we don't know if there's a
16690 template-id or not. */
16691 if (!template_p)
16692 cp_parser_parse_tentatively (parser);
16693 /* Parse the template-id. */
16694 token = cp_lexer_peek_token (parser->lexer);
16695 decl = cp_parser_template_id (parser, template_p,
16696 /*check_dependency_p=*/true,
16697 tag_type,
16698 is_declaration);
16699 /* If we didn't find a template-id, look for an ordinary
16700 identifier. */
16701 if (!template_p && !cp_parser_parse_definitely (parser))
16703 /* We can get here when cp_parser_template_id, called by
16704 cp_parser_class_name with tag_type == none_type, succeeds
16705 and caches a BASELINK. Then, when called again here,
16706 instead of failing and returning an error_mark_node
16707 returns it (see template/typename17.C in C++11).
16708 ??? Could we diagnose this earlier? */
16709 else if (tag_type == typename_type && BASELINK_P (decl))
16711 cp_parser_diagnose_invalid_type_name (parser, decl, token->location);
16712 type = error_mark_node;
16714 /* If DECL is a TEMPLATE_ID_EXPR, and the `typename' keyword is
16715 in effect, then we must assume that, upon instantiation, the
16716 template will correspond to a class. */
16717 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
16718 && tag_type == typename_type)
16719 type = make_typename_type (parser->scope, decl,
16720 typename_type,
16721 /*complain=*/tf_error);
16722 /* If the `typename' keyword is in effect and DECL is not a type
16723 decl, then type is non existent. */
16724 else if (tag_type == typename_type && TREE_CODE (decl) != TYPE_DECL)
16726 else if (TREE_CODE (decl) == TYPE_DECL)
16727 type = check_elaborated_type_specifier (tag_type, decl,
16728 /*allow_template_p=*/true);
16729 else if (decl == error_mark_node)
16730 type = error_mark_node;
16733 if (!type)
16735 token = cp_lexer_peek_token (parser->lexer);
16736 identifier = cp_parser_identifier (parser);
16738 if (identifier == error_mark_node)
16740 parser->scope = NULL_TREE;
16741 return error_mark_node;
16744 /* For a `typename', we needn't call xref_tag. */
16745 if (tag_type == typename_type
16746 && TREE_CODE (parser->scope) != NAMESPACE_DECL)
16747 return cp_parser_make_typename_type (parser, identifier,
16748 token->location);
16750 /* Template parameter lists apply only if we are not within a
16751 function parameter list. */
16752 bool template_parm_lists_apply
16753 = parser->num_template_parameter_lists;
16754 if (template_parm_lists_apply)
16755 for (cp_binding_level *s = current_binding_level;
16756 s && s->kind != sk_template_parms;
16757 s = s->level_chain)
16758 if (s->kind == sk_function_parms)
16759 template_parm_lists_apply = false;
16761 /* Look up a qualified name in the usual way. */
16762 if (parser->scope)
16764 tree decl;
16765 tree ambiguous_decls;
16767 decl = cp_parser_lookup_name (parser, identifier,
16768 tag_type,
16769 /*is_template=*/false,
16770 /*is_namespace=*/false,
16771 /*check_dependency=*/true,
16772 &ambiguous_decls,
16773 token->location);
16775 /* If the lookup was ambiguous, an error will already have been
16776 issued. */
16777 if (ambiguous_decls)
16778 return error_mark_node;
16780 /* If we are parsing friend declaration, DECL may be a
16781 TEMPLATE_DECL tree node here. However, we need to check
16782 whether this TEMPLATE_DECL results in valid code. Consider
16783 the following example:
16785 namespace N {
16786 template <class T> class C {};
16788 class X {
16789 template <class T> friend class N::C; // #1, valid code
16791 template <class T> class Y {
16792 friend class N::C; // #2, invalid code
16795 For both case #1 and #2, we arrive at a TEMPLATE_DECL after
16796 name lookup of `N::C'. We see that friend declaration must
16797 be template for the code to be valid. Note that
16798 processing_template_decl does not work here since it is
16799 always 1 for the above two cases. */
16801 decl = (cp_parser_maybe_treat_template_as_class
16802 (decl, /*tag_name_p=*/is_friend
16803 && template_parm_lists_apply));
16805 if (TREE_CODE (decl) != TYPE_DECL)
16807 cp_parser_diagnose_invalid_type_name (parser,
16808 identifier,
16809 token->location);
16810 return error_mark_node;
16813 if (TREE_CODE (TREE_TYPE (decl)) != TYPENAME_TYPE)
16815 bool allow_template = (template_parm_lists_apply
16816 || DECL_SELF_REFERENCE_P (decl));
16817 type = check_elaborated_type_specifier (tag_type, decl,
16818 allow_template);
16820 if (type == error_mark_node)
16821 return error_mark_node;
16824 /* Forward declarations of nested types, such as
16826 class C1::C2;
16827 class C1::C2::C3;
16829 are invalid unless all components preceding the final '::'
16830 are complete. If all enclosing types are complete, these
16831 declarations become merely pointless.
16833 Invalid forward declarations of nested types are errors
16834 caught elsewhere in parsing. Those that are pointless arrive
16835 here. */
16837 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
16838 && !is_friend && !processing_explicit_instantiation)
16839 warning (0, "declaration %qD does not declare anything", decl);
16841 type = TREE_TYPE (decl);
16843 else
16845 /* An elaborated-type-specifier sometimes introduces a new type and
16846 sometimes names an existing type. Normally, the rule is that it
16847 introduces a new type only if there is not an existing type of
16848 the same name already in scope. For example, given:
16850 struct S {};
16851 void f() { struct S s; }
16853 the `struct S' in the body of `f' is the same `struct S' as in
16854 the global scope; the existing definition is used. However, if
16855 there were no global declaration, this would introduce a new
16856 local class named `S'.
16858 An exception to this rule applies to the following code:
16860 namespace N { struct S; }
16862 Here, the elaborated-type-specifier names a new type
16863 unconditionally; even if there is already an `S' in the
16864 containing scope this declaration names a new type.
16865 This exception only applies if the elaborated-type-specifier
16866 forms the complete declaration:
16868 [class.name]
16870 A declaration consisting solely of `class-key identifier ;' is
16871 either a redeclaration of the name in the current scope or a
16872 forward declaration of the identifier as a class name. It
16873 introduces the name into the current scope.
16875 We are in this situation precisely when the next token is a `;'.
16877 An exception to the exception is that a `friend' declaration does
16878 *not* name a new type; i.e., given:
16880 struct S { friend struct T; };
16882 `T' is not a new type in the scope of `S'.
16884 Also, `new struct S' or `sizeof (struct S)' never results in the
16885 definition of a new type; a new type can only be declared in a
16886 declaration context. */
16888 tag_scope ts;
16889 bool template_p;
16891 if (is_friend)
16892 /* Friends have special name lookup rules. */
16893 ts = ts_within_enclosing_non_class;
16894 else if (is_declaration
16895 && cp_lexer_next_token_is (parser->lexer,
16896 CPP_SEMICOLON))
16897 /* This is a `class-key identifier ;' */
16898 ts = ts_current;
16899 else
16900 ts = ts_global;
16902 template_p =
16903 (template_parm_lists_apply
16904 && (cp_parser_next_token_starts_class_definition_p (parser)
16905 || cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)));
16906 /* An unqualified name was used to reference this type, so
16907 there were no qualifying templates. */
16908 if (template_parm_lists_apply
16909 && !cp_parser_check_template_parameters (parser,
16910 /*num_templates=*/0,
16911 token->location,
16912 /*declarator=*/NULL))
16913 return error_mark_node;
16914 type = xref_tag (tag_type, identifier, ts, template_p);
16918 if (type == error_mark_node)
16919 return error_mark_node;
16921 /* Allow attributes on forward declarations of classes. */
16922 if (attributes)
16924 if (TREE_CODE (type) == TYPENAME_TYPE)
16925 warning (OPT_Wattributes,
16926 "attributes ignored on uninstantiated type");
16927 else if (tag_type != enum_type && CLASSTYPE_TEMPLATE_INSTANTIATION (type)
16928 && ! processing_explicit_instantiation)
16929 warning (OPT_Wattributes,
16930 "attributes ignored on template instantiation");
16931 else if (is_declaration && cp_parser_declares_only_class_p (parser))
16932 cplus_decl_attributes (&type, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
16933 else
16934 warning (OPT_Wattributes,
16935 "attributes ignored on elaborated-type-specifier that is not a forward declaration");
16938 if (tag_type != enum_type)
16940 /* Indicate whether this class was declared as a `class' or as a
16941 `struct'. */
16942 if (CLASS_TYPE_P (type))
16943 CLASSTYPE_DECLARED_CLASS (type) = (tag_type == class_type);
16944 cp_parser_check_class_key (tag_type, type);
16947 /* A "<" cannot follow an elaborated type specifier. If that
16948 happens, the user was probably trying to form a template-id. */
16949 cp_parser_check_for_invalid_template_id (parser, type, tag_type,
16950 token->location);
16952 return type;
16955 /* Parse an enum-specifier.
16957 enum-specifier:
16958 enum-head { enumerator-list [opt] }
16959 enum-head { enumerator-list , } [C++0x]
16961 enum-head:
16962 enum-key identifier [opt] enum-base [opt]
16963 enum-key nested-name-specifier identifier enum-base [opt]
16965 enum-key:
16966 enum
16967 enum class [C++0x]
16968 enum struct [C++0x]
16970 enum-base: [C++0x]
16971 : type-specifier-seq
16973 opaque-enum-specifier:
16974 enum-key identifier enum-base [opt] ;
16976 GNU Extensions:
16977 enum-key attributes[opt] identifier [opt] enum-base [opt]
16978 { enumerator-list [opt] }attributes[opt]
16979 enum-key attributes[opt] identifier [opt] enum-base [opt]
16980 { enumerator-list, }attributes[opt] [C++0x]
16982 Returns an ENUM_TYPE representing the enumeration, or NULL_TREE
16983 if the token stream isn't an enum-specifier after all. */
16985 static tree
16986 cp_parser_enum_specifier (cp_parser* parser)
16988 tree identifier;
16989 tree type = NULL_TREE;
16990 tree prev_scope;
16991 tree nested_name_specifier = NULL_TREE;
16992 tree attributes;
16993 bool scoped_enum_p = false;
16994 bool has_underlying_type = false;
16995 bool nested_being_defined = false;
16996 bool new_value_list = false;
16997 bool is_new_type = false;
16998 bool is_anonymous = false;
16999 tree underlying_type = NULL_TREE;
17000 cp_token *type_start_token = NULL;
17001 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
17003 parser->colon_corrects_to_scope_p = false;
17005 /* Parse tentatively so that we can back up if we don't find a
17006 enum-specifier. */
17007 cp_parser_parse_tentatively (parser);
17009 /* Caller guarantees that the current token is 'enum', an identifier
17010 possibly follows, and the token after that is an opening brace.
17011 If we don't have an identifier, fabricate an anonymous name for
17012 the enumeration being defined. */
17013 cp_lexer_consume_token (parser->lexer);
17015 /* Parse the "class" or "struct", which indicates a scoped
17016 enumeration type in C++0x. */
17017 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_CLASS)
17018 || cp_lexer_next_token_is_keyword (parser->lexer, RID_STRUCT))
17020 if (cxx_dialect < cxx11)
17021 maybe_warn_cpp0x (CPP0X_SCOPED_ENUMS);
17023 /* Consume the `struct' or `class' token. */
17024 cp_lexer_consume_token (parser->lexer);
17026 scoped_enum_p = true;
17029 attributes = cp_parser_attributes_opt (parser);
17031 /* Clear the qualification. */
17032 parser->scope = NULL_TREE;
17033 parser->qualifying_scope = NULL_TREE;
17034 parser->object_scope = NULL_TREE;
17036 /* Figure out in what scope the declaration is being placed. */
17037 prev_scope = current_scope ();
17039 type_start_token = cp_lexer_peek_token (parser->lexer);
17041 push_deferring_access_checks (dk_no_check);
17042 nested_name_specifier
17043 = cp_parser_nested_name_specifier_opt (parser,
17044 /*typename_keyword_p=*/true,
17045 /*check_dependency_p=*/false,
17046 /*type_p=*/false,
17047 /*is_declaration=*/false);
17049 if (nested_name_specifier)
17051 tree name;
17053 identifier = cp_parser_identifier (parser);
17054 name = cp_parser_lookup_name (parser, identifier,
17055 enum_type,
17056 /*is_template=*/false,
17057 /*is_namespace=*/false,
17058 /*check_dependency=*/true,
17059 /*ambiguous_decls=*/NULL,
17060 input_location);
17061 if (name && name != error_mark_node)
17063 type = TREE_TYPE (name);
17064 if (TREE_CODE (type) == TYPENAME_TYPE)
17066 /* Are template enums allowed in ISO? */
17067 if (template_parm_scope_p ())
17068 pedwarn (type_start_token->location, OPT_Wpedantic,
17069 "%qD is an enumeration template", name);
17070 /* ignore a typename reference, for it will be solved by name
17071 in start_enum. */
17072 type = NULL_TREE;
17075 else if (nested_name_specifier == error_mark_node)
17076 /* We already issued an error. */;
17077 else
17079 error_at (type_start_token->location,
17080 "%qD does not name an enumeration in %qT",
17081 identifier, nested_name_specifier);
17082 nested_name_specifier = error_mark_node;
17085 else
17087 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
17088 identifier = cp_parser_identifier (parser);
17089 else
17091 identifier = make_anon_name ();
17092 is_anonymous = true;
17093 if (scoped_enum_p)
17094 error_at (type_start_token->location,
17095 "anonymous scoped enum is not allowed");
17098 pop_deferring_access_checks ();
17100 /* Check for the `:' that denotes a specified underlying type in C++0x.
17101 Note that a ':' could also indicate a bitfield width, however. */
17102 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
17104 cp_decl_specifier_seq type_specifiers;
17106 /* Consume the `:'. */
17107 cp_lexer_consume_token (parser->lexer);
17109 /* Parse the type-specifier-seq. */
17110 cp_parser_type_specifier_seq (parser, /*is_declaration=*/false,
17111 /*is_trailing_return=*/false,
17112 &type_specifiers);
17114 /* At this point this is surely not elaborated type specifier. */
17115 if (!cp_parser_parse_definitely (parser))
17116 return NULL_TREE;
17118 if (cxx_dialect < cxx11)
17119 maybe_warn_cpp0x (CPP0X_SCOPED_ENUMS);
17121 has_underlying_type = true;
17123 /* If that didn't work, stop. */
17124 if (type_specifiers.type != error_mark_node)
17126 underlying_type = grokdeclarator (NULL, &type_specifiers, TYPENAME,
17127 /*initialized=*/0, NULL);
17128 if (underlying_type == error_mark_node
17129 || check_for_bare_parameter_packs (underlying_type))
17130 underlying_type = NULL_TREE;
17134 /* Look for the `{' but don't consume it yet. */
17135 if (!cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
17137 if (cxx_dialect < cxx11 || (!scoped_enum_p && !underlying_type))
17139 cp_parser_error (parser, "expected %<{%>");
17140 if (has_underlying_type)
17142 type = NULL_TREE;
17143 goto out;
17146 /* An opaque-enum-specifier must have a ';' here. */
17147 if ((scoped_enum_p || underlying_type)
17148 && cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
17150 cp_parser_error (parser, "expected %<;%> or %<{%>");
17151 if (has_underlying_type)
17153 type = NULL_TREE;
17154 goto out;
17159 if (!has_underlying_type && !cp_parser_parse_definitely (parser))
17160 return NULL_TREE;
17162 if (nested_name_specifier)
17164 if (CLASS_TYPE_P (nested_name_specifier))
17166 nested_being_defined = TYPE_BEING_DEFINED (nested_name_specifier);
17167 TYPE_BEING_DEFINED (nested_name_specifier) = 1;
17168 push_scope (nested_name_specifier);
17170 else if (TREE_CODE (nested_name_specifier) == NAMESPACE_DECL)
17172 push_nested_namespace (nested_name_specifier);
17176 /* Issue an error message if type-definitions are forbidden here. */
17177 if (!cp_parser_check_type_definition (parser))
17178 type = error_mark_node;
17179 else
17180 /* Create the new type. We do this before consuming the opening
17181 brace so the enum will be recorded as being on the line of its
17182 tag (or the 'enum' keyword, if there is no tag). */
17183 type = start_enum (identifier, type, underlying_type,
17184 attributes, scoped_enum_p, &is_new_type);
17186 /* If the next token is not '{' it is an opaque-enum-specifier or an
17187 elaborated-type-specifier. */
17188 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
17190 timevar_push (TV_PARSE_ENUM);
17191 if (nested_name_specifier
17192 && nested_name_specifier != error_mark_node)
17194 /* The following catches invalid code such as:
17195 enum class S<int>::E { A, B, C }; */
17196 if (!processing_specialization
17197 && CLASS_TYPE_P (nested_name_specifier)
17198 && CLASSTYPE_USE_TEMPLATE (nested_name_specifier))
17199 error_at (type_start_token->location, "cannot add an enumerator "
17200 "list to a template instantiation");
17202 if (TREE_CODE (nested_name_specifier) == TYPENAME_TYPE)
17204 error_at (type_start_token->location,
17205 "%<%T::%E%> has not been declared",
17206 TYPE_CONTEXT (nested_name_specifier),
17207 nested_name_specifier);
17208 type = error_mark_node;
17210 else if (TREE_CODE (nested_name_specifier) != NAMESPACE_DECL
17211 && !CLASS_TYPE_P (nested_name_specifier))
17213 error_at (type_start_token->location, "nested name specifier "
17214 "%qT for enum declaration does not name a class "
17215 "or namespace", nested_name_specifier);
17216 type = error_mark_node;
17218 /* If that scope does not contain the scope in which the
17219 class was originally declared, the program is invalid. */
17220 else if (prev_scope && !is_ancestor (prev_scope,
17221 nested_name_specifier))
17223 if (at_namespace_scope_p ())
17224 error_at (type_start_token->location,
17225 "declaration of %qD in namespace %qD which does not "
17226 "enclose %qD",
17227 type, prev_scope, nested_name_specifier);
17228 else
17229 error_at (type_start_token->location,
17230 "declaration of %qD in %qD which does not "
17231 "enclose %qD",
17232 type, prev_scope, nested_name_specifier);
17233 type = error_mark_node;
17235 /* If that scope is the scope where the declaration is being placed
17236 the program is invalid. */
17237 else if (CLASS_TYPE_P (nested_name_specifier)
17238 && CLASS_TYPE_P (prev_scope)
17239 && same_type_p (nested_name_specifier, prev_scope))
17241 permerror (type_start_token->location,
17242 "extra qualification not allowed");
17243 nested_name_specifier = NULL_TREE;
17247 if (scoped_enum_p)
17248 begin_scope (sk_scoped_enum, type);
17250 /* Consume the opening brace. */
17251 cp_lexer_consume_token (parser->lexer);
17253 if (type == error_mark_node)
17254 ; /* Nothing to add */
17255 else if (OPAQUE_ENUM_P (type)
17256 || (cxx_dialect > cxx98 && processing_specialization))
17258 new_value_list = true;
17259 SET_OPAQUE_ENUM_P (type, false);
17260 DECL_SOURCE_LOCATION (TYPE_NAME (type)) = type_start_token->location;
17262 else
17264 error_at (type_start_token->location,
17265 "multiple definition of %q#T", type);
17266 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)),
17267 "previous definition here");
17268 type = error_mark_node;
17271 if (type == error_mark_node)
17272 cp_parser_skip_to_end_of_block_or_statement (parser);
17273 /* If the next token is not '}', then there are some enumerators. */
17274 else if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
17276 if (is_anonymous && !scoped_enum_p)
17277 pedwarn (type_start_token->location, OPT_Wpedantic,
17278 "ISO C++ forbids empty anonymous enum");
17280 else
17281 cp_parser_enumerator_list (parser, type);
17283 /* Consume the final '}'. */
17284 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
17286 if (scoped_enum_p)
17287 finish_scope ();
17288 timevar_pop (TV_PARSE_ENUM);
17290 else
17292 /* If a ';' follows, then it is an opaque-enum-specifier
17293 and additional restrictions apply. */
17294 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
17296 if (is_anonymous)
17297 error_at (type_start_token->location,
17298 "opaque-enum-specifier without name");
17299 else if (nested_name_specifier)
17300 error_at (type_start_token->location,
17301 "opaque-enum-specifier must use a simple identifier");
17305 /* Look for trailing attributes to apply to this enumeration, and
17306 apply them if appropriate. */
17307 if (cp_parser_allow_gnu_extensions_p (parser))
17309 tree trailing_attr = cp_parser_gnu_attributes_opt (parser);
17310 cplus_decl_attributes (&type,
17311 trailing_attr,
17312 (int) ATTR_FLAG_TYPE_IN_PLACE);
17315 /* Finish up the enumeration. */
17316 if (type != error_mark_node)
17318 if (new_value_list)
17319 finish_enum_value_list (type);
17320 if (is_new_type)
17321 finish_enum (type);
17324 if (nested_name_specifier)
17326 if (CLASS_TYPE_P (nested_name_specifier))
17328 TYPE_BEING_DEFINED (nested_name_specifier) = nested_being_defined;
17329 pop_scope (nested_name_specifier);
17331 else if (TREE_CODE (nested_name_specifier) == NAMESPACE_DECL)
17333 pop_nested_namespace (nested_name_specifier);
17336 out:
17337 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
17338 return type;
17341 /* Parse an enumerator-list. The enumerators all have the indicated
17342 TYPE.
17344 enumerator-list:
17345 enumerator-definition
17346 enumerator-list , enumerator-definition */
17348 static void
17349 cp_parser_enumerator_list (cp_parser* parser, tree type)
17351 while (true)
17353 /* Parse an enumerator-definition. */
17354 cp_parser_enumerator_definition (parser, type);
17356 /* If the next token is not a ',', we've reached the end of
17357 the list. */
17358 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
17359 break;
17360 /* Otherwise, consume the `,' and keep going. */
17361 cp_lexer_consume_token (parser->lexer);
17362 /* If the next token is a `}', there is a trailing comma. */
17363 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
17365 if (cxx_dialect < cxx11 && !in_system_header_at (input_location))
17366 pedwarn (input_location, OPT_Wpedantic,
17367 "comma at end of enumerator list");
17368 break;
17373 /* Parse an enumerator-definition. The enumerator has the indicated
17374 TYPE.
17376 enumerator-definition:
17377 enumerator
17378 enumerator = constant-expression
17380 enumerator:
17381 identifier
17383 GNU Extensions:
17385 enumerator-definition:
17386 enumerator attributes [opt]
17387 enumerator attributes [opt] = constant-expression */
17389 static void
17390 cp_parser_enumerator_definition (cp_parser* parser, tree type)
17392 tree identifier;
17393 tree value;
17394 location_t loc;
17396 /* Save the input location because we are interested in the location
17397 of the identifier and not the location of the explicit value. */
17398 loc = cp_lexer_peek_token (parser->lexer)->location;
17400 /* Look for the identifier. */
17401 identifier = cp_parser_identifier (parser);
17402 if (identifier == error_mark_node)
17403 return;
17405 /* Parse any specified attributes. */
17406 tree attrs = cp_parser_attributes_opt (parser);
17408 /* If the next token is an '=', then there is an explicit value. */
17409 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
17411 /* Consume the `=' token. */
17412 cp_lexer_consume_token (parser->lexer);
17413 /* Parse the value. */
17414 value = cp_parser_constant_expression (parser);
17416 else
17417 value = NULL_TREE;
17419 /* If we are processing a template, make sure the initializer of the
17420 enumerator doesn't contain any bare template parameter pack. */
17421 if (check_for_bare_parameter_packs (value))
17422 value = error_mark_node;
17424 /* Create the enumerator. */
17425 build_enumerator (identifier, value, type, attrs, loc);
17428 /* Parse a namespace-name.
17430 namespace-name:
17431 original-namespace-name
17432 namespace-alias
17434 Returns the NAMESPACE_DECL for the namespace. */
17436 static tree
17437 cp_parser_namespace_name (cp_parser* parser)
17439 tree identifier;
17440 tree namespace_decl;
17442 cp_token *token = cp_lexer_peek_token (parser->lexer);
17444 /* Get the name of the namespace. */
17445 identifier = cp_parser_identifier (parser);
17446 if (identifier == error_mark_node)
17447 return error_mark_node;
17449 /* Look up the identifier in the currently active scope. Look only
17450 for namespaces, due to:
17452 [basic.lookup.udir]
17454 When looking up a namespace-name in a using-directive or alias
17455 definition, only namespace names are considered.
17457 And:
17459 [basic.lookup.qual]
17461 During the lookup of a name preceding the :: scope resolution
17462 operator, object, function, and enumerator names are ignored.
17464 (Note that cp_parser_qualifying_entity only calls this
17465 function if the token after the name is the scope resolution
17466 operator.) */
17467 namespace_decl = cp_parser_lookup_name (parser, identifier,
17468 none_type,
17469 /*is_template=*/false,
17470 /*is_namespace=*/true,
17471 /*check_dependency=*/true,
17472 /*ambiguous_decls=*/NULL,
17473 token->location);
17474 /* If it's not a namespace, issue an error. */
17475 if (namespace_decl == error_mark_node
17476 || TREE_CODE (namespace_decl) != NAMESPACE_DECL)
17478 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
17479 error_at (token->location, "%qD is not a namespace-name", identifier);
17480 cp_parser_error (parser, "expected namespace-name");
17481 namespace_decl = error_mark_node;
17484 return namespace_decl;
17487 /* Parse a namespace-definition.
17489 namespace-definition:
17490 named-namespace-definition
17491 unnamed-namespace-definition
17493 named-namespace-definition:
17494 original-namespace-definition
17495 extension-namespace-definition
17497 original-namespace-definition:
17498 namespace identifier { namespace-body }
17500 extension-namespace-definition:
17501 namespace original-namespace-name { namespace-body }
17503 unnamed-namespace-definition:
17504 namespace { namespace-body } */
17506 static void
17507 cp_parser_namespace_definition (cp_parser* parser)
17509 tree identifier, attribs;
17510 bool has_visibility;
17511 bool is_inline;
17512 cp_token* token;
17513 int nested_definition_count = 0;
17515 cp_ensure_no_omp_declare_simd (parser);
17516 cp_ensure_no_oacc_routine (parser);
17517 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_INLINE))
17519 maybe_warn_cpp0x (CPP0X_INLINE_NAMESPACES);
17520 is_inline = true;
17521 cp_lexer_consume_token (parser->lexer);
17523 else
17524 is_inline = false;
17526 /* Look for the `namespace' keyword. */
17527 token = cp_parser_require_keyword (parser, RID_NAMESPACE, RT_NAMESPACE);
17529 /* Parse any specified attributes before the identifier. */
17530 attribs = cp_parser_attributes_opt (parser);
17532 /* Get the name of the namespace. We do not attempt to distinguish
17533 between an original-namespace-definition and an
17534 extension-namespace-definition at this point. The semantic
17535 analysis routines are responsible for that. */
17536 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
17537 identifier = cp_parser_identifier (parser);
17538 else
17539 identifier = NULL_TREE;
17541 /* Parse any specified attributes after the identifier. */
17542 tree post_ident_attribs = cp_parser_attributes_opt (parser);
17543 if (post_ident_attribs)
17545 if (attribs)
17546 attribs = chainon (attribs, post_ident_attribs);
17547 else
17548 attribs = post_ident_attribs;
17551 /* Start the namespace. */
17552 bool ok = push_namespace (identifier);
17554 /* Parse any nested namespace definition. */
17555 if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
17557 if (attribs)
17558 error_at (token->location, "a nested namespace definition cannot have attributes");
17559 if (cxx_dialect < cxx1z)
17560 pedwarn (input_location, OPT_Wpedantic,
17561 "nested namespace definitions only available with "
17562 "-std=c++1z or -std=gnu++1z");
17563 if (is_inline)
17564 error_at (token->location, "a nested namespace definition cannot be inline");
17565 while (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
17567 cp_lexer_consume_token (parser->lexer);
17568 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
17569 identifier = cp_parser_identifier (parser);
17570 else
17572 cp_parser_error (parser, "nested identifier required");
17573 break;
17575 ++nested_definition_count;
17576 push_namespace (identifier);
17580 /* Look for the `{' to validate starting the namespace. */
17581 cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE);
17583 /* "inline namespace" is equivalent to a stub namespace definition
17584 followed by a strong using directive. */
17585 if (is_inline && ok)
17587 tree name_space = current_namespace;
17588 /* Set up namespace association. */
17589 DECL_NAMESPACE_ASSOCIATIONS (name_space)
17590 = tree_cons (CP_DECL_CONTEXT (name_space), NULL_TREE,
17591 DECL_NAMESPACE_ASSOCIATIONS (name_space));
17592 /* Import the contents of the inline namespace. */
17593 pop_namespace ();
17594 do_using_directive (name_space);
17595 push_namespace (identifier);
17598 has_visibility = handle_namespace_attrs (current_namespace, attribs);
17600 warning (OPT_Wnamespaces, "namespace %qD entered", current_namespace);
17602 /* Parse the body of the namespace. */
17603 cp_parser_namespace_body (parser);
17605 if (has_visibility)
17606 pop_visibility (1);
17608 /* Finish the nested namespace definitions. */
17609 while (nested_definition_count--)
17610 pop_namespace ();
17612 /* Finish the namespace. */
17613 if (ok)
17614 pop_namespace ();
17615 /* Look for the final `}'. */
17616 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
17619 /* Parse a namespace-body.
17621 namespace-body:
17622 declaration-seq [opt] */
17624 static void
17625 cp_parser_namespace_body (cp_parser* parser)
17627 cp_parser_declaration_seq_opt (parser);
17630 /* Parse a namespace-alias-definition.
17632 namespace-alias-definition:
17633 namespace identifier = qualified-namespace-specifier ; */
17635 static void
17636 cp_parser_namespace_alias_definition (cp_parser* parser)
17638 tree identifier;
17639 tree namespace_specifier;
17641 cp_token *token = cp_lexer_peek_token (parser->lexer);
17643 /* Look for the `namespace' keyword. */
17644 cp_parser_require_keyword (parser, RID_NAMESPACE, RT_NAMESPACE);
17645 /* Look for the identifier. */
17646 identifier = cp_parser_identifier (parser);
17647 if (identifier == error_mark_node)
17648 return;
17649 /* Look for the `=' token. */
17650 if (!cp_parser_uncommitted_to_tentative_parse_p (parser)
17651 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
17653 error_at (token->location, "%<namespace%> definition is not allowed here");
17654 /* Skip the definition. */
17655 cp_lexer_consume_token (parser->lexer);
17656 if (cp_parser_skip_to_closing_brace (parser))
17657 cp_lexer_consume_token (parser->lexer);
17658 return;
17660 cp_parser_require (parser, CPP_EQ, RT_EQ);
17661 /* Look for the qualified-namespace-specifier. */
17662 namespace_specifier
17663 = cp_parser_qualified_namespace_specifier (parser);
17664 /* Look for the `;' token. */
17665 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
17667 /* Register the alias in the symbol table. */
17668 do_namespace_alias (identifier, namespace_specifier);
17671 /* Parse a qualified-namespace-specifier.
17673 qualified-namespace-specifier:
17674 :: [opt] nested-name-specifier [opt] namespace-name
17676 Returns a NAMESPACE_DECL corresponding to the specified
17677 namespace. */
17679 static tree
17680 cp_parser_qualified_namespace_specifier (cp_parser* parser)
17682 /* Look for the optional `::'. */
17683 cp_parser_global_scope_opt (parser,
17684 /*current_scope_valid_p=*/false);
17686 /* Look for the optional nested-name-specifier. */
17687 cp_parser_nested_name_specifier_opt (parser,
17688 /*typename_keyword_p=*/false,
17689 /*check_dependency_p=*/true,
17690 /*type_p=*/false,
17691 /*is_declaration=*/true);
17693 return cp_parser_namespace_name (parser);
17696 /* Parse a using-declaration, or, if ACCESS_DECLARATION_P is true, an
17697 access declaration.
17699 using-declaration:
17700 using typename [opt] :: [opt] nested-name-specifier unqualified-id ;
17701 using :: unqualified-id ;
17703 access-declaration:
17704 qualified-id ;
17708 static bool
17709 cp_parser_using_declaration (cp_parser* parser,
17710 bool access_declaration_p)
17712 cp_token *token;
17713 bool typename_p = false;
17714 bool global_scope_p;
17715 tree decl;
17716 tree identifier;
17717 tree qscope;
17718 int oldcount = errorcount;
17719 cp_token *diag_token = NULL;
17721 if (access_declaration_p)
17723 diag_token = cp_lexer_peek_token (parser->lexer);
17724 cp_parser_parse_tentatively (parser);
17726 else
17728 /* Look for the `using' keyword. */
17729 cp_parser_require_keyword (parser, RID_USING, RT_USING);
17731 /* Peek at the next token. */
17732 token = cp_lexer_peek_token (parser->lexer);
17733 /* See if it's `typename'. */
17734 if (token->keyword == RID_TYPENAME)
17736 /* Remember that we've seen it. */
17737 typename_p = true;
17738 /* Consume the `typename' token. */
17739 cp_lexer_consume_token (parser->lexer);
17743 /* Look for the optional global scope qualification. */
17744 global_scope_p
17745 = (cp_parser_global_scope_opt (parser,
17746 /*current_scope_valid_p=*/false)
17747 != NULL_TREE);
17749 /* If we saw `typename', or didn't see `::', then there must be a
17750 nested-name-specifier present. */
17751 if (typename_p || !global_scope_p)
17753 qscope = cp_parser_nested_name_specifier (parser, typename_p,
17754 /*check_dependency_p=*/true,
17755 /*type_p=*/false,
17756 /*is_declaration=*/true);
17757 if (!qscope && !cp_parser_uncommitted_to_tentative_parse_p (parser))
17759 cp_parser_skip_to_end_of_block_or_statement (parser);
17760 return false;
17763 /* Otherwise, we could be in either of the two productions. In that
17764 case, treat the nested-name-specifier as optional. */
17765 else
17766 qscope = cp_parser_nested_name_specifier_opt (parser,
17767 /*typename_keyword_p=*/false,
17768 /*check_dependency_p=*/true,
17769 /*type_p=*/false,
17770 /*is_declaration=*/true);
17771 if (!qscope)
17772 qscope = global_namespace;
17773 else if (UNSCOPED_ENUM_P (qscope))
17774 qscope = CP_TYPE_CONTEXT (qscope);
17776 if (access_declaration_p && cp_parser_error_occurred (parser))
17777 /* Something has already gone wrong; there's no need to parse
17778 further. Since an error has occurred, the return value of
17779 cp_parser_parse_definitely will be false, as required. */
17780 return cp_parser_parse_definitely (parser);
17782 token = cp_lexer_peek_token (parser->lexer);
17783 /* Parse the unqualified-id. */
17784 identifier = cp_parser_unqualified_id (parser,
17785 /*template_keyword_p=*/false,
17786 /*check_dependency_p=*/true,
17787 /*declarator_p=*/true,
17788 /*optional_p=*/false);
17790 if (access_declaration_p)
17792 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
17793 cp_parser_simulate_error (parser);
17794 if (!cp_parser_parse_definitely (parser))
17795 return false;
17798 /* The function we call to handle a using-declaration is different
17799 depending on what scope we are in. */
17800 if (qscope == error_mark_node || identifier == error_mark_node)
17802 else if (!identifier_p (identifier)
17803 && TREE_CODE (identifier) != BIT_NOT_EXPR)
17804 /* [namespace.udecl]
17806 A using declaration shall not name a template-id. */
17807 error_at (token->location,
17808 "a template-id may not appear in a using-declaration");
17809 else
17811 if (at_class_scope_p ())
17813 /* Create the USING_DECL. */
17814 decl = do_class_using_decl (parser->scope, identifier);
17816 if (decl && typename_p)
17817 USING_DECL_TYPENAME_P (decl) = 1;
17819 if (check_for_bare_parameter_packs (decl))
17821 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
17822 return false;
17824 else
17825 /* Add it to the list of members in this class. */
17826 finish_member_declaration (decl);
17828 else
17830 decl = cp_parser_lookup_name_simple (parser,
17831 identifier,
17832 token->location);
17833 if (decl == error_mark_node)
17834 cp_parser_name_lookup_error (parser, identifier,
17835 decl, NLE_NULL,
17836 token->location);
17837 else if (check_for_bare_parameter_packs (decl))
17839 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
17840 return false;
17842 else if (!at_namespace_scope_p ())
17843 do_local_using_decl (decl, qscope, identifier);
17844 else
17845 do_toplevel_using_decl (decl, qscope, identifier);
17849 /* Look for the final `;'. */
17850 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
17852 if (access_declaration_p && errorcount == oldcount)
17853 warning_at (diag_token->location, OPT_Wdeprecated,
17854 "access declarations are deprecated "
17855 "in favour of using-declarations; "
17856 "suggestion: add the %<using%> keyword");
17858 return true;
17861 /* Parse an alias-declaration.
17863 alias-declaration:
17864 using identifier attribute-specifier-seq [opt] = type-id */
17866 static tree
17867 cp_parser_alias_declaration (cp_parser* parser)
17869 tree id, type, decl, pushed_scope = NULL_TREE, attributes;
17870 location_t id_location;
17871 cp_declarator *declarator;
17872 cp_decl_specifier_seq decl_specs;
17873 bool member_p;
17874 const char *saved_message = NULL;
17876 /* Look for the `using' keyword. */
17877 cp_token *using_token
17878 = cp_parser_require_keyword (parser, RID_USING, RT_USING);
17879 if (using_token == NULL)
17880 return error_mark_node;
17882 id_location = cp_lexer_peek_token (parser->lexer)->location;
17883 id = cp_parser_identifier (parser);
17884 if (id == error_mark_node)
17885 return error_mark_node;
17887 cp_token *attrs_token = cp_lexer_peek_token (parser->lexer);
17888 attributes = cp_parser_attributes_opt (parser);
17889 if (attributes == error_mark_node)
17890 return error_mark_node;
17892 cp_parser_require (parser, CPP_EQ, RT_EQ);
17894 if (cp_parser_error_occurred (parser))
17895 return error_mark_node;
17897 cp_parser_commit_to_tentative_parse (parser);
17899 /* Now we are going to parse the type-id of the declaration. */
17902 [dcl.type]/3 says:
17904 "A type-specifier-seq shall not define a class or enumeration
17905 unless it appears in the type-id of an alias-declaration (7.1.3) that
17906 is not the declaration of a template-declaration."
17908 In other words, if we currently are in an alias template, the
17909 type-id should not define a type.
17911 So let's set parser->type_definition_forbidden_message in that
17912 case; cp_parser_check_type_definition (called by
17913 cp_parser_class_specifier) will then emit an error if a type is
17914 defined in the type-id. */
17915 if (parser->num_template_parameter_lists)
17917 saved_message = parser->type_definition_forbidden_message;
17918 parser->type_definition_forbidden_message =
17919 G_("types may not be defined in alias template declarations");
17922 type = cp_parser_type_id (parser);
17924 /* Restore the error message if need be. */
17925 if (parser->num_template_parameter_lists)
17926 parser->type_definition_forbidden_message = saved_message;
17928 if (type == error_mark_node
17929 || !cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON))
17931 cp_parser_skip_to_end_of_block_or_statement (parser);
17932 return error_mark_node;
17935 /* A typedef-name can also be introduced by an alias-declaration. The
17936 identifier following the using keyword becomes a typedef-name. It has
17937 the same semantics as if it were introduced by the typedef
17938 specifier. In particular, it does not define a new type and it shall
17939 not appear in the type-id. */
17941 clear_decl_specs (&decl_specs);
17942 decl_specs.type = type;
17943 if (attributes != NULL_TREE)
17945 decl_specs.attributes = attributes;
17946 set_and_check_decl_spec_loc (&decl_specs,
17947 ds_attribute,
17948 attrs_token);
17950 set_and_check_decl_spec_loc (&decl_specs,
17951 ds_typedef,
17952 using_token);
17953 set_and_check_decl_spec_loc (&decl_specs,
17954 ds_alias,
17955 using_token);
17957 declarator = make_id_declarator (NULL_TREE, id, sfk_none);
17958 declarator->id_loc = id_location;
17960 member_p = at_class_scope_p ();
17961 if (member_p)
17962 decl = grokfield (declarator, &decl_specs, NULL_TREE, false,
17963 NULL_TREE, attributes);
17964 else
17965 decl = start_decl (declarator, &decl_specs, 0,
17966 attributes, NULL_TREE, &pushed_scope);
17967 if (decl == error_mark_node)
17968 return decl;
17970 // Attach constraints to the alias declaration.
17971 if (flag_concepts && current_template_parms)
17973 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
17974 tree constr = build_constraints (reqs, NULL_TREE);
17975 set_constraints (decl, constr);
17978 cp_finish_decl (decl, NULL_TREE, 0, NULL_TREE, 0);
17980 if (pushed_scope)
17981 pop_scope (pushed_scope);
17983 /* If decl is a template, return its TEMPLATE_DECL so that it gets
17984 added into the symbol table; otherwise, return the TYPE_DECL. */
17985 if (DECL_LANG_SPECIFIC (decl)
17986 && DECL_TEMPLATE_INFO (decl)
17987 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl)))
17989 decl = DECL_TI_TEMPLATE (decl);
17990 if (member_p)
17991 check_member_template (decl);
17994 return decl;
17997 /* Parse a using-directive.
17999 using-directive:
18000 using namespace :: [opt] nested-name-specifier [opt]
18001 namespace-name ; */
18003 static void
18004 cp_parser_using_directive (cp_parser* parser)
18006 tree namespace_decl;
18007 tree attribs;
18009 /* Look for the `using' keyword. */
18010 cp_parser_require_keyword (parser, RID_USING, RT_USING);
18011 /* And the `namespace' keyword. */
18012 cp_parser_require_keyword (parser, RID_NAMESPACE, RT_NAMESPACE);
18013 /* Look for the optional `::' operator. */
18014 cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/false);
18015 /* And the optional nested-name-specifier. */
18016 cp_parser_nested_name_specifier_opt (parser,
18017 /*typename_keyword_p=*/false,
18018 /*check_dependency_p=*/true,
18019 /*type_p=*/false,
18020 /*is_declaration=*/true);
18021 /* Get the namespace being used. */
18022 namespace_decl = cp_parser_namespace_name (parser);
18023 /* And any specified attributes. */
18024 attribs = cp_parser_attributes_opt (parser);
18025 /* Update the symbol table. */
18026 parse_using_directive (namespace_decl, attribs);
18027 /* Look for the final `;'. */
18028 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
18031 /* Parse an asm-definition.
18033 asm-definition:
18034 asm ( string-literal ) ;
18036 GNU Extension:
18038 asm-definition:
18039 asm volatile [opt] ( string-literal ) ;
18040 asm volatile [opt] ( string-literal : asm-operand-list [opt] ) ;
18041 asm volatile [opt] ( string-literal : asm-operand-list [opt]
18042 : asm-operand-list [opt] ) ;
18043 asm volatile [opt] ( string-literal : asm-operand-list [opt]
18044 : asm-operand-list [opt]
18045 : asm-clobber-list [opt] ) ;
18046 asm volatile [opt] goto ( string-literal : : asm-operand-list [opt]
18047 : asm-clobber-list [opt]
18048 : asm-goto-list ) ; */
18050 static void
18051 cp_parser_asm_definition (cp_parser* parser)
18053 tree string;
18054 tree outputs = NULL_TREE;
18055 tree inputs = NULL_TREE;
18056 tree clobbers = NULL_TREE;
18057 tree labels = NULL_TREE;
18058 tree asm_stmt;
18059 bool volatile_p = false;
18060 bool extended_p = false;
18061 bool invalid_inputs_p = false;
18062 bool invalid_outputs_p = false;
18063 bool goto_p = false;
18064 required_token missing = RT_NONE;
18066 /* Look for the `asm' keyword. */
18067 cp_parser_require_keyword (parser, RID_ASM, RT_ASM);
18069 if (parser->in_function_body
18070 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
18072 error ("%<asm%> in %<constexpr%> function");
18073 cp_function_chain->invalid_constexpr = true;
18076 /* See if the next token is `volatile'. */
18077 if (cp_parser_allow_gnu_extensions_p (parser)
18078 && cp_lexer_next_token_is_keyword (parser->lexer, RID_VOLATILE))
18080 /* Remember that we saw the `volatile' keyword. */
18081 volatile_p = true;
18082 /* Consume the token. */
18083 cp_lexer_consume_token (parser->lexer);
18085 if (cp_parser_allow_gnu_extensions_p (parser)
18086 && parser->in_function_body
18087 && cp_lexer_next_token_is_keyword (parser->lexer, RID_GOTO))
18089 /* Remember that we saw the `goto' keyword. */
18090 goto_p = true;
18091 /* Consume the token. */
18092 cp_lexer_consume_token (parser->lexer);
18094 /* Look for the opening `('. */
18095 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
18096 return;
18097 /* Look for the string. */
18098 string = cp_parser_string_literal (parser, false, false);
18099 if (string == error_mark_node)
18101 cp_parser_skip_to_closing_parenthesis (parser, true, false,
18102 /*consume_paren=*/true);
18103 return;
18106 /* If we're allowing GNU extensions, check for the extended assembly
18107 syntax. Unfortunately, the `:' tokens need not be separated by
18108 a space in C, and so, for compatibility, we tolerate that here
18109 too. Doing that means that we have to treat the `::' operator as
18110 two `:' tokens. */
18111 if (cp_parser_allow_gnu_extensions_p (parser)
18112 && parser->in_function_body
18113 && (cp_lexer_next_token_is (parser->lexer, CPP_COLON)
18114 || cp_lexer_next_token_is (parser->lexer, CPP_SCOPE)))
18116 bool inputs_p = false;
18117 bool clobbers_p = false;
18118 bool labels_p = false;
18120 /* The extended syntax was used. */
18121 extended_p = true;
18123 /* Look for outputs. */
18124 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
18126 /* Consume the `:'. */
18127 cp_lexer_consume_token (parser->lexer);
18128 /* Parse the output-operands. */
18129 if (cp_lexer_next_token_is_not (parser->lexer,
18130 CPP_COLON)
18131 && cp_lexer_next_token_is_not (parser->lexer,
18132 CPP_SCOPE)
18133 && cp_lexer_next_token_is_not (parser->lexer,
18134 CPP_CLOSE_PAREN)
18135 && !goto_p)
18137 outputs = cp_parser_asm_operand_list (parser);
18138 if (outputs == error_mark_node)
18139 invalid_outputs_p = true;
18142 /* If the next token is `::', there are no outputs, and the
18143 next token is the beginning of the inputs. */
18144 else if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
18145 /* The inputs are coming next. */
18146 inputs_p = true;
18148 /* Look for inputs. */
18149 if (inputs_p
18150 || cp_lexer_next_token_is (parser->lexer, CPP_COLON))
18152 /* Consume the `:' or `::'. */
18153 cp_lexer_consume_token (parser->lexer);
18154 /* Parse the output-operands. */
18155 if (cp_lexer_next_token_is_not (parser->lexer,
18156 CPP_COLON)
18157 && cp_lexer_next_token_is_not (parser->lexer,
18158 CPP_SCOPE)
18159 && cp_lexer_next_token_is_not (parser->lexer,
18160 CPP_CLOSE_PAREN))
18162 inputs = cp_parser_asm_operand_list (parser);
18163 if (inputs == error_mark_node)
18164 invalid_inputs_p = true;
18167 else if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
18168 /* The clobbers are coming next. */
18169 clobbers_p = true;
18171 /* Look for clobbers. */
18172 if (clobbers_p
18173 || cp_lexer_next_token_is (parser->lexer, CPP_COLON))
18175 clobbers_p = true;
18176 /* Consume the `:' or `::'. */
18177 cp_lexer_consume_token (parser->lexer);
18178 /* Parse the clobbers. */
18179 if (cp_lexer_next_token_is_not (parser->lexer,
18180 CPP_COLON)
18181 && cp_lexer_next_token_is_not (parser->lexer,
18182 CPP_CLOSE_PAREN))
18183 clobbers = cp_parser_asm_clobber_list (parser);
18185 else if (goto_p
18186 && cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
18187 /* The labels are coming next. */
18188 labels_p = true;
18190 /* Look for labels. */
18191 if (labels_p
18192 || (goto_p && cp_lexer_next_token_is (parser->lexer, CPP_COLON)))
18194 labels_p = true;
18195 /* Consume the `:' or `::'. */
18196 cp_lexer_consume_token (parser->lexer);
18197 /* Parse the labels. */
18198 labels = cp_parser_asm_label_list (parser);
18201 if (goto_p && !labels_p)
18202 missing = clobbers_p ? RT_COLON : RT_COLON_SCOPE;
18204 else if (goto_p)
18205 missing = RT_COLON_SCOPE;
18207 /* Look for the closing `)'. */
18208 if (!cp_parser_require (parser, missing ? CPP_COLON : CPP_CLOSE_PAREN,
18209 missing ? missing : RT_CLOSE_PAREN))
18210 cp_parser_skip_to_closing_parenthesis (parser, true, false,
18211 /*consume_paren=*/true);
18212 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
18214 if (!invalid_inputs_p && !invalid_outputs_p)
18216 /* Create the ASM_EXPR. */
18217 if (parser->in_function_body)
18219 asm_stmt = finish_asm_stmt (volatile_p, string, outputs,
18220 inputs, clobbers, labels);
18221 /* If the extended syntax was not used, mark the ASM_EXPR. */
18222 if (!extended_p)
18224 tree temp = asm_stmt;
18225 if (TREE_CODE (temp) == CLEANUP_POINT_EXPR)
18226 temp = TREE_OPERAND (temp, 0);
18228 ASM_INPUT_P (temp) = 1;
18231 else
18232 symtab->finalize_toplevel_asm (string);
18236 /* Given the type TYPE of a declaration with declarator DECLARATOR, return the
18237 type that comes from the decl-specifier-seq. */
18239 static tree
18240 strip_declarator_types (tree type, cp_declarator *declarator)
18242 for (cp_declarator *d = declarator; d;)
18243 switch (d->kind)
18245 case cdk_id:
18246 case cdk_error:
18247 d = NULL;
18248 break;
18250 default:
18251 if (TYPE_PTRMEMFUNC_P (type))
18252 type = TYPE_PTRMEMFUNC_FN_TYPE (type);
18253 type = TREE_TYPE (type);
18254 d = d->declarator;
18255 break;
18258 return type;
18261 /* Declarators [gram.dcl.decl] */
18263 /* Parse an init-declarator.
18265 init-declarator:
18266 declarator initializer [opt]
18268 GNU Extension:
18270 init-declarator:
18271 declarator asm-specification [opt] attributes [opt] initializer [opt]
18273 function-definition:
18274 decl-specifier-seq [opt] declarator ctor-initializer [opt]
18275 function-body
18276 decl-specifier-seq [opt] declarator function-try-block
18278 GNU Extension:
18280 function-definition:
18281 __extension__ function-definition
18283 TM Extension:
18285 function-definition:
18286 decl-specifier-seq [opt] declarator function-transaction-block
18288 The DECL_SPECIFIERS apply to this declarator. Returns a
18289 representation of the entity declared. If MEMBER_P is TRUE, then
18290 this declarator appears in a class scope. The new DECL created by
18291 this declarator is returned.
18293 The CHECKS are access checks that should be performed once we know
18294 what entity is being declared (and, therefore, what classes have
18295 befriended it).
18297 If FUNCTION_DEFINITION_ALLOWED_P then we handle the declarator and
18298 for a function-definition here as well. If the declarator is a
18299 declarator for a function-definition, *FUNCTION_DEFINITION_P will
18300 be TRUE upon return. By that point, the function-definition will
18301 have been completely parsed.
18303 FUNCTION_DEFINITION_P may be NULL if FUNCTION_DEFINITION_ALLOWED_P
18304 is FALSE.
18306 If MAYBE_RANGE_FOR_DECL is not NULL, the pointed tree will be set to the
18307 parsed declaration if it is an uninitialized single declarator not followed
18308 by a `;', or to error_mark_node otherwise. Either way, the trailing `;',
18309 if present, will not be consumed. If returned, this declarator will be
18310 created with SD_INITIALIZED but will not call cp_finish_decl.
18312 If INIT_LOC is not NULL, and *INIT_LOC is equal to UNKNOWN_LOCATION,
18313 and there is an initializer, the pointed location_t is set to the
18314 location of the '=' or `(', or '{' in C++11 token introducing the
18315 initializer. */
18317 static tree
18318 cp_parser_init_declarator (cp_parser* parser,
18319 cp_decl_specifier_seq *decl_specifiers,
18320 vec<deferred_access_check, va_gc> *checks,
18321 bool function_definition_allowed_p,
18322 bool member_p,
18323 int declares_class_or_enum,
18324 bool* function_definition_p,
18325 tree* maybe_range_for_decl,
18326 location_t* init_loc,
18327 tree* auto_result)
18329 cp_token *token = NULL, *asm_spec_start_token = NULL,
18330 *attributes_start_token = NULL;
18331 cp_declarator *declarator;
18332 tree prefix_attributes;
18333 tree attributes = NULL;
18334 tree asm_specification;
18335 tree initializer;
18336 tree decl = NULL_TREE;
18337 tree scope;
18338 int is_initialized;
18339 /* Only valid if IS_INITIALIZED is true. In that case, CPP_EQ if
18340 initialized with "= ..", CPP_OPEN_PAREN if initialized with
18341 "(...)". */
18342 enum cpp_ttype initialization_kind;
18343 bool is_direct_init = false;
18344 bool is_non_constant_init;
18345 int ctor_dtor_or_conv_p;
18346 bool friend_p = cp_parser_friend_p (decl_specifiers);
18347 tree pushed_scope = NULL_TREE;
18348 bool range_for_decl_p = false;
18349 bool saved_default_arg_ok_p = parser->default_arg_ok_p;
18350 location_t tmp_init_loc = UNKNOWN_LOCATION;
18352 /* Gather the attributes that were provided with the
18353 decl-specifiers. */
18354 prefix_attributes = decl_specifiers->attributes;
18356 /* Assume that this is not the declarator for a function
18357 definition. */
18358 if (function_definition_p)
18359 *function_definition_p = false;
18361 /* Default arguments are only permitted for function parameters. */
18362 if (decl_spec_seq_has_spec_p (decl_specifiers, ds_typedef))
18363 parser->default_arg_ok_p = false;
18365 /* Defer access checks while parsing the declarator; we cannot know
18366 what names are accessible until we know what is being
18367 declared. */
18368 resume_deferring_access_checks ();
18370 /* Parse the declarator. */
18371 token = cp_lexer_peek_token (parser->lexer);
18372 declarator
18373 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
18374 &ctor_dtor_or_conv_p,
18375 /*parenthesized_p=*/NULL,
18376 member_p, friend_p);
18377 /* Gather up the deferred checks. */
18378 stop_deferring_access_checks ();
18380 parser->default_arg_ok_p = saved_default_arg_ok_p;
18382 /* If the DECLARATOR was erroneous, there's no need to go
18383 further. */
18384 if (declarator == cp_error_declarator)
18385 return error_mark_node;
18387 /* Check that the number of template-parameter-lists is OK. */
18388 if (!cp_parser_check_declarator_template_parameters (parser, declarator,
18389 token->location))
18390 return error_mark_node;
18392 if (declares_class_or_enum & 2)
18393 cp_parser_check_for_definition_in_return_type (declarator,
18394 decl_specifiers->type,
18395 decl_specifiers->locations[ds_type_spec]);
18397 /* Figure out what scope the entity declared by the DECLARATOR is
18398 located in. `grokdeclarator' sometimes changes the scope, so
18399 we compute it now. */
18400 scope = get_scope_of_declarator (declarator);
18402 /* Perform any lookups in the declared type which were thought to be
18403 dependent, but are not in the scope of the declarator. */
18404 decl_specifiers->type
18405 = maybe_update_decl_type (decl_specifiers->type, scope);
18407 /* If we're allowing GNU extensions, look for an
18408 asm-specification. */
18409 if (cp_parser_allow_gnu_extensions_p (parser))
18411 /* Look for an asm-specification. */
18412 asm_spec_start_token = cp_lexer_peek_token (parser->lexer);
18413 asm_specification = cp_parser_asm_specification_opt (parser);
18415 else
18416 asm_specification = NULL_TREE;
18418 /* Look for attributes. */
18419 attributes_start_token = cp_lexer_peek_token (parser->lexer);
18420 attributes = cp_parser_attributes_opt (parser);
18422 /* Peek at the next token. */
18423 token = cp_lexer_peek_token (parser->lexer);
18425 bool bogus_implicit_tmpl = false;
18427 if (function_declarator_p (declarator))
18429 /* Check to see if the token indicates the start of a
18430 function-definition. */
18431 if (cp_parser_token_starts_function_definition_p (token))
18433 if (!function_definition_allowed_p)
18435 /* If a function-definition should not appear here, issue an
18436 error message. */
18437 cp_parser_error (parser,
18438 "a function-definition is not allowed here");
18439 return error_mark_node;
18442 location_t func_brace_location
18443 = cp_lexer_peek_token (parser->lexer)->location;
18445 /* Neither attributes nor an asm-specification are allowed
18446 on a function-definition. */
18447 if (asm_specification)
18448 error_at (asm_spec_start_token->location,
18449 "an asm-specification is not allowed "
18450 "on a function-definition");
18451 if (attributes)
18452 error_at (attributes_start_token->location,
18453 "attributes are not allowed "
18454 "on a function-definition");
18455 /* This is a function-definition. */
18456 *function_definition_p = true;
18458 /* Parse the function definition. */
18459 if (member_p)
18460 decl = cp_parser_save_member_function_body (parser,
18461 decl_specifiers,
18462 declarator,
18463 prefix_attributes);
18464 else
18465 decl =
18466 (cp_parser_function_definition_from_specifiers_and_declarator
18467 (parser, decl_specifiers, prefix_attributes, declarator));
18469 if (decl != error_mark_node && DECL_STRUCT_FUNCTION (decl))
18471 /* This is where the prologue starts... */
18472 DECL_STRUCT_FUNCTION (decl)->function_start_locus
18473 = func_brace_location;
18476 return decl;
18479 else if (parser->fully_implicit_function_template_p)
18481 /* A non-template declaration involving a function parameter list
18482 containing an implicit template parameter will be made into a
18483 template. If the resulting declaration is not going to be an
18484 actual function then finish the template scope here to prevent it.
18485 An error message will be issued once we have a decl to talk about.
18487 FIXME probably we should do type deduction rather than create an
18488 implicit template, but the standard currently doesn't allow it. */
18489 bogus_implicit_tmpl = true;
18490 finish_fully_implicit_template (parser, NULL_TREE);
18493 /* [dcl.dcl]
18495 Only in function declarations for constructors, destructors, and
18496 type conversions can the decl-specifier-seq be omitted.
18498 We explicitly postpone this check past the point where we handle
18499 function-definitions because we tolerate function-definitions
18500 that are missing their return types in some modes. */
18501 if (!decl_specifiers->any_specifiers_p && ctor_dtor_or_conv_p <= 0)
18503 cp_parser_error (parser,
18504 "expected constructor, destructor, or type conversion");
18505 return error_mark_node;
18508 /* An `=' or an `(', or an '{' in C++0x, indicates an initializer. */
18509 if (token->type == CPP_EQ
18510 || token->type == CPP_OPEN_PAREN
18511 || token->type == CPP_OPEN_BRACE)
18513 is_initialized = SD_INITIALIZED;
18514 initialization_kind = token->type;
18515 if (maybe_range_for_decl)
18516 *maybe_range_for_decl = error_mark_node;
18517 tmp_init_loc = token->location;
18518 if (init_loc && *init_loc == UNKNOWN_LOCATION)
18519 *init_loc = tmp_init_loc;
18521 if (token->type == CPP_EQ
18522 && function_declarator_p (declarator))
18524 cp_token *t2 = cp_lexer_peek_nth_token (parser->lexer, 2);
18525 if (t2->keyword == RID_DEFAULT)
18526 is_initialized = SD_DEFAULTED;
18527 else if (t2->keyword == RID_DELETE)
18528 is_initialized = SD_DELETED;
18531 else
18533 /* If the init-declarator isn't initialized and isn't followed by a
18534 `,' or `;', it's not a valid init-declarator. */
18535 if (token->type != CPP_COMMA
18536 && token->type != CPP_SEMICOLON)
18538 if (maybe_range_for_decl && *maybe_range_for_decl != error_mark_node)
18539 range_for_decl_p = true;
18540 else
18542 if (!maybe_range_for_decl)
18543 cp_parser_error (parser, "expected initializer");
18544 return error_mark_node;
18547 is_initialized = SD_UNINITIALIZED;
18548 initialization_kind = CPP_EOF;
18551 /* Because start_decl has side-effects, we should only call it if we
18552 know we're going ahead. By this point, we know that we cannot
18553 possibly be looking at any other construct. */
18554 cp_parser_commit_to_tentative_parse (parser);
18556 /* Enter the newly declared entry in the symbol table. If we're
18557 processing a declaration in a class-specifier, we wait until
18558 after processing the initializer. */
18559 if (!member_p)
18561 if (parser->in_unbraced_linkage_specification_p)
18562 decl_specifiers->storage_class = sc_extern;
18563 decl = start_decl (declarator, decl_specifiers,
18564 range_for_decl_p? SD_INITIALIZED : is_initialized,
18565 attributes, prefix_attributes, &pushed_scope);
18566 cp_finalize_omp_declare_simd (parser, decl);
18567 cp_finalize_oacc_routine (parser, decl, false);
18568 /* Adjust location of decl if declarator->id_loc is more appropriate:
18569 set, and decl wasn't merged with another decl, in which case its
18570 location would be different from input_location, and more accurate. */
18571 if (DECL_P (decl)
18572 && declarator->id_loc != UNKNOWN_LOCATION
18573 && DECL_SOURCE_LOCATION (decl) == input_location)
18574 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
18576 else if (scope)
18577 /* Enter the SCOPE. That way unqualified names appearing in the
18578 initializer will be looked up in SCOPE. */
18579 pushed_scope = push_scope (scope);
18581 /* Perform deferred access control checks, now that we know in which
18582 SCOPE the declared entity resides. */
18583 if (!member_p && decl)
18585 tree saved_current_function_decl = NULL_TREE;
18587 /* If the entity being declared is a function, pretend that we
18588 are in its scope. If it is a `friend', it may have access to
18589 things that would not otherwise be accessible. */
18590 if (TREE_CODE (decl) == FUNCTION_DECL)
18592 saved_current_function_decl = current_function_decl;
18593 current_function_decl = decl;
18596 /* Perform access checks for template parameters. */
18597 cp_parser_perform_template_parameter_access_checks (checks);
18599 /* Perform the access control checks for the declarator and the
18600 decl-specifiers. */
18601 perform_deferred_access_checks (tf_warning_or_error);
18603 /* Restore the saved value. */
18604 if (TREE_CODE (decl) == FUNCTION_DECL)
18605 current_function_decl = saved_current_function_decl;
18608 /* Parse the initializer. */
18609 initializer = NULL_TREE;
18610 is_direct_init = false;
18611 is_non_constant_init = true;
18612 if (is_initialized)
18614 if (function_declarator_p (declarator))
18616 if (initialization_kind == CPP_EQ)
18617 initializer = cp_parser_pure_specifier (parser);
18618 else
18620 /* If the declaration was erroneous, we don't really
18621 know what the user intended, so just silently
18622 consume the initializer. */
18623 if (decl != error_mark_node)
18624 error_at (tmp_init_loc, "initializer provided for function");
18625 cp_parser_skip_to_closing_parenthesis (parser,
18626 /*recovering=*/true,
18627 /*or_comma=*/false,
18628 /*consume_paren=*/true);
18631 else
18633 /* We want to record the extra mangling scope for in-class
18634 initializers of class members and initializers of static data
18635 member templates. The former involves deferring
18636 parsing of the initializer until end of class as with default
18637 arguments. So right here we only handle the latter. */
18638 if (!member_p && processing_template_decl)
18639 start_lambda_scope (decl);
18640 initializer = cp_parser_initializer (parser,
18641 &is_direct_init,
18642 &is_non_constant_init);
18643 if (!member_p && processing_template_decl)
18644 finish_lambda_scope ();
18645 if (initializer == error_mark_node)
18646 cp_parser_skip_to_end_of_statement (parser);
18650 /* The old parser allows attributes to appear after a parenthesized
18651 initializer. Mark Mitchell proposed removing this functionality
18652 on the GCC mailing lists on 2002-08-13. This parser accepts the
18653 attributes -- but ignores them. */
18654 if (cp_parser_allow_gnu_extensions_p (parser)
18655 && initialization_kind == CPP_OPEN_PAREN)
18656 if (cp_parser_attributes_opt (parser))
18657 warning (OPT_Wattributes,
18658 "attributes after parenthesized initializer ignored");
18660 /* And now complain about a non-function implicit template. */
18661 if (bogus_implicit_tmpl && decl != error_mark_node)
18662 error_at (DECL_SOURCE_LOCATION (decl),
18663 "non-function %qD declared as implicit template", decl);
18665 /* For an in-class declaration, use `grokfield' to create the
18666 declaration. */
18667 if (member_p)
18669 if (pushed_scope)
18671 pop_scope (pushed_scope);
18672 pushed_scope = NULL_TREE;
18674 decl = grokfield (declarator, decl_specifiers,
18675 initializer, !is_non_constant_init,
18676 /*asmspec=*/NULL_TREE,
18677 chainon (attributes, prefix_attributes));
18678 if (decl && TREE_CODE (decl) == FUNCTION_DECL)
18679 cp_parser_save_default_args (parser, decl);
18680 cp_finalize_omp_declare_simd (parser, decl);
18681 cp_finalize_oacc_routine (parser, decl, false);
18684 /* Finish processing the declaration. But, skip member
18685 declarations. */
18686 if (!member_p && decl && decl != error_mark_node && !range_for_decl_p)
18688 cp_finish_decl (decl,
18689 initializer, !is_non_constant_init,
18690 asm_specification,
18691 /* If the initializer is in parentheses, then this is
18692 a direct-initialization, which means that an
18693 `explicit' constructor is OK. Otherwise, an
18694 `explicit' constructor cannot be used. */
18695 ((is_direct_init || !is_initialized)
18696 ? LOOKUP_NORMAL : LOOKUP_IMPLICIT));
18698 else if ((cxx_dialect != cxx98) && friend_p
18699 && decl && TREE_CODE (decl) == FUNCTION_DECL)
18700 /* Core issue #226 (C++0x only): A default template-argument
18701 shall not be specified in a friend class template
18702 declaration. */
18703 check_default_tmpl_args (decl, current_template_parms, /*is_primary=*/true,
18704 /*is_partial=*/false, /*is_friend_decl=*/1);
18706 if (!friend_p && pushed_scope)
18707 pop_scope (pushed_scope);
18709 if (function_declarator_p (declarator)
18710 && parser->fully_implicit_function_template_p)
18712 if (member_p)
18713 decl = finish_fully_implicit_template (parser, decl);
18714 else
18715 finish_fully_implicit_template (parser, /*member_decl_opt=*/0);
18718 if (auto_result && is_initialized && decl_specifiers->type
18719 && type_uses_auto (decl_specifiers->type))
18720 *auto_result = strip_declarator_types (TREE_TYPE (decl), declarator);
18722 return decl;
18725 /* Parse a declarator.
18727 declarator:
18728 direct-declarator
18729 ptr-operator declarator
18731 abstract-declarator:
18732 ptr-operator abstract-declarator [opt]
18733 direct-abstract-declarator
18735 GNU Extensions:
18737 declarator:
18738 attributes [opt] direct-declarator
18739 attributes [opt] ptr-operator declarator
18741 abstract-declarator:
18742 attributes [opt] ptr-operator abstract-declarator [opt]
18743 attributes [opt] direct-abstract-declarator
18745 If CTOR_DTOR_OR_CONV_P is not NULL, *CTOR_DTOR_OR_CONV_P is used to
18746 detect constructor, destructor or conversion operators. It is set
18747 to -1 if the declarator is a name, and +1 if it is a
18748 function. Otherwise it is set to zero. Usually you just want to
18749 test for >0, but internally the negative value is used.
18751 (The reason for CTOR_DTOR_OR_CONV_P is that a declaration must have
18752 a decl-specifier-seq unless it declares a constructor, destructor,
18753 or conversion. It might seem that we could check this condition in
18754 semantic analysis, rather than parsing, but that makes it difficult
18755 to handle something like `f()'. We want to notice that there are
18756 no decl-specifiers, and therefore realize that this is an
18757 expression, not a declaration.)
18759 If PARENTHESIZED_P is non-NULL, *PARENTHESIZED_P is set to true iff
18760 the declarator is a direct-declarator of the form "(...)".
18762 MEMBER_P is true iff this declarator is a member-declarator.
18764 FRIEND_P is true iff this declarator is a friend. */
18766 static cp_declarator *
18767 cp_parser_declarator (cp_parser* parser,
18768 cp_parser_declarator_kind dcl_kind,
18769 int* ctor_dtor_or_conv_p,
18770 bool* parenthesized_p,
18771 bool member_p, bool friend_p)
18773 cp_declarator *declarator;
18774 enum tree_code code;
18775 cp_cv_quals cv_quals;
18776 tree class_type;
18777 tree gnu_attributes = NULL_TREE, std_attributes = NULL_TREE;
18779 /* Assume this is not a constructor, destructor, or type-conversion
18780 operator. */
18781 if (ctor_dtor_or_conv_p)
18782 *ctor_dtor_or_conv_p = 0;
18784 if (cp_parser_allow_gnu_extensions_p (parser))
18785 gnu_attributes = cp_parser_gnu_attributes_opt (parser);
18787 /* Check for the ptr-operator production. */
18788 cp_parser_parse_tentatively (parser);
18789 /* Parse the ptr-operator. */
18790 code = cp_parser_ptr_operator (parser,
18791 &class_type,
18792 &cv_quals,
18793 &std_attributes);
18795 /* If that worked, then we have a ptr-operator. */
18796 if (cp_parser_parse_definitely (parser))
18798 /* If a ptr-operator was found, then this declarator was not
18799 parenthesized. */
18800 if (parenthesized_p)
18801 *parenthesized_p = true;
18802 /* The dependent declarator is optional if we are parsing an
18803 abstract-declarator. */
18804 if (dcl_kind != CP_PARSER_DECLARATOR_NAMED)
18805 cp_parser_parse_tentatively (parser);
18807 /* Parse the dependent declarator. */
18808 declarator = cp_parser_declarator (parser, dcl_kind,
18809 /*ctor_dtor_or_conv_p=*/NULL,
18810 /*parenthesized_p=*/NULL,
18811 /*member_p=*/false,
18812 friend_p);
18814 /* If we are parsing an abstract-declarator, we must handle the
18815 case where the dependent declarator is absent. */
18816 if (dcl_kind != CP_PARSER_DECLARATOR_NAMED
18817 && !cp_parser_parse_definitely (parser))
18818 declarator = NULL;
18820 declarator = cp_parser_make_indirect_declarator
18821 (code, class_type, cv_quals, declarator, std_attributes);
18823 /* Everything else is a direct-declarator. */
18824 else
18826 if (parenthesized_p)
18827 *parenthesized_p = cp_lexer_next_token_is (parser->lexer,
18828 CPP_OPEN_PAREN);
18829 declarator = cp_parser_direct_declarator (parser, dcl_kind,
18830 ctor_dtor_or_conv_p,
18831 member_p, friend_p);
18834 if (gnu_attributes && declarator && declarator != cp_error_declarator)
18835 declarator->attributes = gnu_attributes;
18836 return declarator;
18839 /* Parse a direct-declarator or direct-abstract-declarator.
18841 direct-declarator:
18842 declarator-id
18843 direct-declarator ( parameter-declaration-clause )
18844 cv-qualifier-seq [opt]
18845 ref-qualifier [opt]
18846 exception-specification [opt]
18847 direct-declarator [ constant-expression [opt] ]
18848 ( declarator )
18850 direct-abstract-declarator:
18851 direct-abstract-declarator [opt]
18852 ( parameter-declaration-clause )
18853 cv-qualifier-seq [opt]
18854 ref-qualifier [opt]
18855 exception-specification [opt]
18856 direct-abstract-declarator [opt] [ constant-expression [opt] ]
18857 ( abstract-declarator )
18859 Returns a representation of the declarator. DCL_KIND is
18860 CP_PARSER_DECLARATOR_ABSTRACT, if we are parsing a
18861 direct-abstract-declarator. It is CP_PARSER_DECLARATOR_NAMED, if
18862 we are parsing a direct-declarator. It is
18863 CP_PARSER_DECLARATOR_EITHER, if we can accept either - in the case
18864 of ambiguity we prefer an abstract declarator, as per
18865 [dcl.ambig.res]. CTOR_DTOR_OR_CONV_P, MEMBER_P, and FRIEND_P are
18866 as for cp_parser_declarator. */
18868 static cp_declarator *
18869 cp_parser_direct_declarator (cp_parser* parser,
18870 cp_parser_declarator_kind dcl_kind,
18871 int* ctor_dtor_or_conv_p,
18872 bool member_p, bool friend_p)
18874 cp_token *token;
18875 cp_declarator *declarator = NULL;
18876 tree scope = NULL_TREE;
18877 bool saved_default_arg_ok_p = parser->default_arg_ok_p;
18878 bool saved_in_declarator_p = parser->in_declarator_p;
18879 bool first = true;
18880 tree pushed_scope = NULL_TREE;
18882 while (true)
18884 /* Peek at the next token. */
18885 token = cp_lexer_peek_token (parser->lexer);
18886 if (token->type == CPP_OPEN_PAREN)
18888 /* This is either a parameter-declaration-clause, or a
18889 parenthesized declarator. When we know we are parsing a
18890 named declarator, it must be a parenthesized declarator
18891 if FIRST is true. For instance, `(int)' is a
18892 parameter-declaration-clause, with an omitted
18893 direct-abstract-declarator. But `((*))', is a
18894 parenthesized abstract declarator. Finally, when T is a
18895 template parameter `(T)' is a
18896 parameter-declaration-clause, and not a parenthesized
18897 named declarator.
18899 We first try and parse a parameter-declaration-clause,
18900 and then try a nested declarator (if FIRST is true).
18902 It is not an error for it not to be a
18903 parameter-declaration-clause, even when FIRST is
18904 false. Consider,
18906 int i (int);
18907 int i (3);
18909 The first is the declaration of a function while the
18910 second is the definition of a variable, including its
18911 initializer.
18913 Having seen only the parenthesis, we cannot know which of
18914 these two alternatives should be selected. Even more
18915 complex are examples like:
18917 int i (int (a));
18918 int i (int (3));
18920 The former is a function-declaration; the latter is a
18921 variable initialization.
18923 Thus again, we try a parameter-declaration-clause, and if
18924 that fails, we back out and return. */
18926 if (!first || dcl_kind != CP_PARSER_DECLARATOR_NAMED)
18928 tree params;
18929 bool is_declarator = false;
18931 /* In a member-declarator, the only valid interpretation
18932 of a parenthesis is the start of a
18933 parameter-declaration-clause. (It is invalid to
18934 initialize a static data member with a parenthesized
18935 initializer; only the "=" form of initialization is
18936 permitted.) */
18937 if (!member_p)
18938 cp_parser_parse_tentatively (parser);
18940 /* Consume the `('. */
18941 cp_lexer_consume_token (parser->lexer);
18942 if (first)
18944 /* If this is going to be an abstract declarator, we're
18945 in a declarator and we can't have default args. */
18946 parser->default_arg_ok_p = false;
18947 parser->in_declarator_p = true;
18950 begin_scope (sk_function_parms, NULL_TREE);
18952 /* Parse the parameter-declaration-clause. */
18953 params = cp_parser_parameter_declaration_clause (parser);
18955 /* Consume the `)'. */
18956 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
18958 /* If all went well, parse the cv-qualifier-seq,
18959 ref-qualifier and the exception-specification. */
18960 if (member_p || cp_parser_parse_definitely (parser))
18962 cp_cv_quals cv_quals;
18963 cp_virt_specifiers virt_specifiers;
18964 cp_ref_qualifier ref_qual;
18965 tree exception_specification;
18966 tree late_return;
18967 tree attrs;
18968 bool memfn = (member_p || (pushed_scope
18969 && CLASS_TYPE_P (pushed_scope)));
18971 is_declarator = true;
18973 if (ctor_dtor_or_conv_p)
18974 *ctor_dtor_or_conv_p = *ctor_dtor_or_conv_p < 0;
18975 first = false;
18977 /* Parse the cv-qualifier-seq. */
18978 cv_quals = cp_parser_cv_qualifier_seq_opt (parser);
18979 /* Parse the ref-qualifier. */
18980 ref_qual = cp_parser_ref_qualifier_opt (parser);
18981 /* Parse the tx-qualifier. */
18982 tree tx_qual = cp_parser_tx_qualifier_opt (parser);
18983 /* And the exception-specification. */
18984 exception_specification
18985 = cp_parser_exception_specification_opt (parser);
18987 attrs = cp_parser_std_attribute_spec_seq (parser);
18989 /* In here, we handle cases where attribute is used after
18990 the function declaration. For example:
18991 void func (int x) __attribute__((vector(..))); */
18992 tree gnu_attrs = NULL_TREE;
18993 if (flag_cilkplus
18994 && cp_next_tokens_can_be_gnu_attribute_p (parser))
18996 cp_parser_parse_tentatively (parser);
18997 tree attr = cp_parser_gnu_attributes_opt (parser);
18998 if (cp_lexer_next_token_is_not (parser->lexer,
18999 CPP_SEMICOLON)
19000 && cp_lexer_next_token_is_not (parser->lexer,
19001 CPP_OPEN_BRACE))
19002 cp_parser_abort_tentative_parse (parser);
19003 else if (!cp_parser_parse_definitely (parser))
19005 else
19006 gnu_attrs = attr;
19008 tree requires_clause = NULL_TREE;
19009 late_return = (cp_parser_late_return_type_opt
19010 (parser, declarator, requires_clause,
19011 memfn ? cv_quals : -1));
19013 /* Parse the virt-specifier-seq. */
19014 virt_specifiers = cp_parser_virt_specifier_seq_opt (parser);
19016 /* Create the function-declarator. */
19017 declarator = make_call_declarator (declarator,
19018 params,
19019 cv_quals,
19020 virt_specifiers,
19021 ref_qual,
19022 tx_qual,
19023 exception_specification,
19024 late_return,
19025 requires_clause);
19026 declarator->std_attributes = attrs;
19027 declarator->attributes = gnu_attrs;
19028 /* Any subsequent parameter lists are to do with
19029 return type, so are not those of the declared
19030 function. */
19031 parser->default_arg_ok_p = false;
19034 /* Remove the function parms from scope. */
19035 pop_bindings_and_leave_scope ();
19037 if (is_declarator)
19038 /* Repeat the main loop. */
19039 continue;
19042 /* If this is the first, we can try a parenthesized
19043 declarator. */
19044 if (first)
19046 bool saved_in_type_id_in_expr_p;
19048 parser->default_arg_ok_p = saved_default_arg_ok_p;
19049 parser->in_declarator_p = saved_in_declarator_p;
19051 /* Consume the `('. */
19052 cp_lexer_consume_token (parser->lexer);
19053 /* Parse the nested declarator. */
19054 saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
19055 parser->in_type_id_in_expr_p = true;
19056 declarator
19057 = cp_parser_declarator (parser, dcl_kind, ctor_dtor_or_conv_p,
19058 /*parenthesized_p=*/NULL,
19059 member_p, friend_p);
19060 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
19061 first = false;
19062 /* Expect a `)'. */
19063 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
19064 declarator = cp_error_declarator;
19065 if (declarator == cp_error_declarator)
19066 break;
19068 goto handle_declarator;
19070 /* Otherwise, we must be done. */
19071 else
19072 break;
19074 else if ((!first || dcl_kind != CP_PARSER_DECLARATOR_NAMED)
19075 && token->type == CPP_OPEN_SQUARE
19076 && !cp_next_tokens_can_be_attribute_p (parser))
19078 /* Parse an array-declarator. */
19079 tree bounds, attrs;
19081 if (ctor_dtor_or_conv_p)
19082 *ctor_dtor_or_conv_p = 0;
19084 first = false;
19085 parser->default_arg_ok_p = false;
19086 parser->in_declarator_p = true;
19087 /* Consume the `['. */
19088 cp_lexer_consume_token (parser->lexer);
19089 /* Peek at the next token. */
19090 token = cp_lexer_peek_token (parser->lexer);
19091 /* If the next token is `]', then there is no
19092 constant-expression. */
19093 if (token->type != CPP_CLOSE_SQUARE)
19095 bool non_constant_p;
19096 bounds
19097 = cp_parser_constant_expression (parser,
19098 /*allow_non_constant=*/true,
19099 &non_constant_p);
19100 if (!non_constant_p)
19101 /* OK */;
19102 else if (error_operand_p (bounds))
19103 /* Already gave an error. */;
19104 else if (!parser->in_function_body
19105 || current_binding_level->kind == sk_function_parms)
19107 /* Normally, the array bound must be an integral constant
19108 expression. However, as an extension, we allow VLAs
19109 in function scopes as long as they aren't part of a
19110 parameter declaration. */
19111 cp_parser_error (parser,
19112 "array bound is not an integer constant");
19113 bounds = error_mark_node;
19115 else if (processing_template_decl
19116 && !type_dependent_expression_p (bounds))
19118 /* Remember this wasn't a constant-expression. */
19119 bounds = build_nop (TREE_TYPE (bounds), bounds);
19120 TREE_SIDE_EFFECTS (bounds) = 1;
19123 else
19124 bounds = NULL_TREE;
19125 /* Look for the closing `]'. */
19126 if (!cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE))
19128 declarator = cp_error_declarator;
19129 break;
19132 attrs = cp_parser_std_attribute_spec_seq (parser);
19133 declarator = make_array_declarator (declarator, bounds);
19134 declarator->std_attributes = attrs;
19136 else if (first && dcl_kind != CP_PARSER_DECLARATOR_ABSTRACT)
19139 tree qualifying_scope;
19140 tree unqualified_name;
19141 tree attrs;
19142 special_function_kind sfk;
19143 bool abstract_ok;
19144 bool pack_expansion_p = false;
19145 cp_token *declarator_id_start_token;
19147 /* Parse a declarator-id */
19148 abstract_ok = (dcl_kind == CP_PARSER_DECLARATOR_EITHER);
19149 if (abstract_ok)
19151 cp_parser_parse_tentatively (parser);
19153 /* If we see an ellipsis, we should be looking at a
19154 parameter pack. */
19155 if (token->type == CPP_ELLIPSIS)
19157 /* Consume the `...' */
19158 cp_lexer_consume_token (parser->lexer);
19160 pack_expansion_p = true;
19164 declarator_id_start_token = cp_lexer_peek_token (parser->lexer);
19165 unqualified_name
19166 = cp_parser_declarator_id (parser, /*optional_p=*/abstract_ok);
19167 qualifying_scope = parser->scope;
19168 if (abstract_ok)
19170 bool okay = false;
19172 if (!unqualified_name && pack_expansion_p)
19174 /* Check whether an error occurred. */
19175 okay = !cp_parser_error_occurred (parser);
19177 /* We already consumed the ellipsis to mark a
19178 parameter pack, but we have no way to report it,
19179 so abort the tentative parse. We will be exiting
19180 immediately anyway. */
19181 cp_parser_abort_tentative_parse (parser);
19183 else
19184 okay = cp_parser_parse_definitely (parser);
19186 if (!okay)
19187 unqualified_name = error_mark_node;
19188 else if (unqualified_name
19189 && (qualifying_scope
19190 || (!identifier_p (unqualified_name))))
19192 cp_parser_error (parser, "expected unqualified-id");
19193 unqualified_name = error_mark_node;
19197 if (!unqualified_name)
19198 return NULL;
19199 if (unqualified_name == error_mark_node)
19201 declarator = cp_error_declarator;
19202 pack_expansion_p = false;
19203 declarator->parameter_pack_p = false;
19204 break;
19207 attrs = cp_parser_std_attribute_spec_seq (parser);
19209 if (qualifying_scope && at_namespace_scope_p ()
19210 && TREE_CODE (qualifying_scope) == TYPENAME_TYPE)
19212 /* In the declaration of a member of a template class
19213 outside of the class itself, the SCOPE will sometimes
19214 be a TYPENAME_TYPE. For example, given:
19216 template <typename T>
19217 int S<T>::R::i = 3;
19219 the SCOPE will be a TYPENAME_TYPE for `S<T>::R'. In
19220 this context, we must resolve S<T>::R to an ordinary
19221 type, rather than a typename type.
19223 The reason we normally avoid resolving TYPENAME_TYPEs
19224 is that a specialization of `S' might render
19225 `S<T>::R' not a type. However, if `S' is
19226 specialized, then this `i' will not be used, so there
19227 is no harm in resolving the types here. */
19228 tree type;
19230 /* Resolve the TYPENAME_TYPE. */
19231 type = resolve_typename_type (qualifying_scope,
19232 /*only_current_p=*/false);
19233 /* If that failed, the declarator is invalid. */
19234 if (TREE_CODE (type) == TYPENAME_TYPE)
19236 if (typedef_variant_p (type))
19237 error_at (declarator_id_start_token->location,
19238 "cannot define member of dependent typedef "
19239 "%qT", type);
19240 else
19241 error_at (declarator_id_start_token->location,
19242 "%<%T::%E%> is not a type",
19243 TYPE_CONTEXT (qualifying_scope),
19244 TYPE_IDENTIFIER (qualifying_scope));
19246 qualifying_scope = type;
19249 sfk = sfk_none;
19251 if (unqualified_name)
19253 tree class_type;
19255 if (qualifying_scope
19256 && CLASS_TYPE_P (qualifying_scope))
19257 class_type = qualifying_scope;
19258 else
19259 class_type = current_class_type;
19261 if (TREE_CODE (unqualified_name) == TYPE_DECL)
19263 tree name_type = TREE_TYPE (unqualified_name);
19264 if (class_type && same_type_p (name_type, class_type))
19266 if (qualifying_scope
19267 && CLASSTYPE_USE_TEMPLATE (name_type))
19269 error_at (declarator_id_start_token->location,
19270 "invalid use of constructor as a template");
19271 inform (declarator_id_start_token->location,
19272 "use %<%T::%D%> instead of %<%T::%D%> to "
19273 "name the constructor in a qualified name",
19274 class_type,
19275 DECL_NAME (TYPE_TI_TEMPLATE (class_type)),
19276 class_type, name_type);
19277 declarator = cp_error_declarator;
19278 break;
19280 else
19281 unqualified_name = constructor_name (class_type);
19283 else
19285 /* We do not attempt to print the declarator
19286 here because we do not have enough
19287 information about its original syntactic
19288 form. */
19289 cp_parser_error (parser, "invalid declarator");
19290 declarator = cp_error_declarator;
19291 break;
19295 if (class_type)
19297 if (TREE_CODE (unqualified_name) == BIT_NOT_EXPR)
19298 sfk = sfk_destructor;
19299 else if (IDENTIFIER_TYPENAME_P (unqualified_name))
19300 sfk = sfk_conversion;
19301 else if (/* There's no way to declare a constructor
19302 for an anonymous type, even if the type
19303 got a name for linkage purposes. */
19304 !TYPE_WAS_ANONYMOUS (class_type)
19305 /* Handle correctly (c++/19200):
19307 struct S {
19308 struct T{};
19309 friend void S(T);
19312 and also:
19314 namespace N {
19315 void S();
19318 struct S {
19319 friend void N::S();
19320 }; */
19321 && !(friend_p
19322 && class_type != qualifying_scope)
19323 && constructor_name_p (unqualified_name,
19324 class_type))
19326 unqualified_name = constructor_name (class_type);
19327 sfk = sfk_constructor;
19329 else if (is_overloaded_fn (unqualified_name)
19330 && DECL_CONSTRUCTOR_P (get_first_fn
19331 (unqualified_name)))
19332 sfk = sfk_constructor;
19334 if (ctor_dtor_or_conv_p && sfk != sfk_none)
19335 *ctor_dtor_or_conv_p = -1;
19338 declarator = make_id_declarator (qualifying_scope,
19339 unqualified_name,
19340 sfk);
19341 declarator->std_attributes = attrs;
19342 declarator->id_loc = token->location;
19343 declarator->parameter_pack_p = pack_expansion_p;
19345 if (pack_expansion_p)
19346 maybe_warn_variadic_templates ();
19349 handle_declarator:;
19350 scope = get_scope_of_declarator (declarator);
19351 if (scope)
19353 /* Any names that appear after the declarator-id for a
19354 member are looked up in the containing scope. */
19355 if (at_function_scope_p ())
19357 /* But declarations with qualified-ids can't appear in a
19358 function. */
19359 cp_parser_error (parser, "qualified-id in declaration");
19360 declarator = cp_error_declarator;
19361 break;
19363 pushed_scope = push_scope (scope);
19365 parser->in_declarator_p = true;
19366 if ((ctor_dtor_or_conv_p && *ctor_dtor_or_conv_p)
19367 || (declarator && declarator->kind == cdk_id))
19368 /* Default args are only allowed on function
19369 declarations. */
19370 parser->default_arg_ok_p = saved_default_arg_ok_p;
19371 else
19372 parser->default_arg_ok_p = false;
19374 first = false;
19376 /* We're done. */
19377 else
19378 break;
19381 /* For an abstract declarator, we might wind up with nothing at this
19382 point. That's an error; the declarator is not optional. */
19383 if (!declarator)
19384 cp_parser_error (parser, "expected declarator");
19386 /* If we entered a scope, we must exit it now. */
19387 if (pushed_scope)
19388 pop_scope (pushed_scope);
19390 parser->default_arg_ok_p = saved_default_arg_ok_p;
19391 parser->in_declarator_p = saved_in_declarator_p;
19393 return declarator;
19396 /* Parse a ptr-operator.
19398 ptr-operator:
19399 * attribute-specifier-seq [opt] cv-qualifier-seq [opt] (C++11)
19400 * cv-qualifier-seq [opt]
19402 :: [opt] nested-name-specifier * cv-qualifier-seq [opt]
19403 nested-name-specifier * attribute-specifier-seq [opt] cv-qualifier-seq [opt] (C++11)
19405 GNU Extension:
19407 ptr-operator:
19408 & cv-qualifier-seq [opt]
19410 Returns INDIRECT_REF if a pointer, or pointer-to-member, was used.
19411 Returns ADDR_EXPR if a reference was used, or NON_LVALUE_EXPR for
19412 an rvalue reference. In the case of a pointer-to-member, *TYPE is
19413 filled in with the TYPE containing the member. *CV_QUALS is
19414 filled in with the cv-qualifier-seq, or TYPE_UNQUALIFIED, if there
19415 are no cv-qualifiers. Returns ERROR_MARK if an error occurred.
19416 Note that the tree codes returned by this function have nothing
19417 to do with the types of trees that will be eventually be created
19418 to represent the pointer or reference type being parsed. They are
19419 just constants with suggestive names. */
19420 static enum tree_code
19421 cp_parser_ptr_operator (cp_parser* parser,
19422 tree* type,
19423 cp_cv_quals *cv_quals,
19424 tree *attributes)
19426 enum tree_code code = ERROR_MARK;
19427 cp_token *token;
19428 tree attrs = NULL_TREE;
19430 /* Assume that it's not a pointer-to-member. */
19431 *type = NULL_TREE;
19432 /* And that there are no cv-qualifiers. */
19433 *cv_quals = TYPE_UNQUALIFIED;
19435 /* Peek at the next token. */
19436 token = cp_lexer_peek_token (parser->lexer);
19438 /* If it's a `*', `&' or `&&' we have a pointer or reference. */
19439 if (token->type == CPP_MULT)
19440 code = INDIRECT_REF;
19441 else if (token->type == CPP_AND)
19442 code = ADDR_EXPR;
19443 else if ((cxx_dialect != cxx98) &&
19444 token->type == CPP_AND_AND) /* C++0x only */
19445 code = NON_LVALUE_EXPR;
19447 if (code != ERROR_MARK)
19449 /* Consume the `*', `&' or `&&'. */
19450 cp_lexer_consume_token (parser->lexer);
19452 /* A `*' can be followed by a cv-qualifier-seq, and so can a
19453 `&', if we are allowing GNU extensions. (The only qualifier
19454 that can legally appear after `&' is `restrict', but that is
19455 enforced during semantic analysis. */
19456 if (code == INDIRECT_REF
19457 || cp_parser_allow_gnu_extensions_p (parser))
19458 *cv_quals = cp_parser_cv_qualifier_seq_opt (parser);
19460 attrs = cp_parser_std_attribute_spec_seq (parser);
19461 if (attributes != NULL)
19462 *attributes = attrs;
19464 else
19466 /* Try the pointer-to-member case. */
19467 cp_parser_parse_tentatively (parser);
19468 /* Look for the optional `::' operator. */
19469 cp_parser_global_scope_opt (parser,
19470 /*current_scope_valid_p=*/false);
19471 /* Look for the nested-name specifier. */
19472 token = cp_lexer_peek_token (parser->lexer);
19473 cp_parser_nested_name_specifier (parser,
19474 /*typename_keyword_p=*/false,
19475 /*check_dependency_p=*/true,
19476 /*type_p=*/false,
19477 /*is_declaration=*/false);
19478 /* If we found it, and the next token is a `*', then we are
19479 indeed looking at a pointer-to-member operator. */
19480 if (!cp_parser_error_occurred (parser)
19481 && cp_parser_require (parser, CPP_MULT, RT_MULT))
19483 /* Indicate that the `*' operator was used. */
19484 code = INDIRECT_REF;
19486 if (TREE_CODE (parser->scope) == NAMESPACE_DECL)
19487 error_at (token->location, "%qD is a namespace", parser->scope);
19488 else if (TREE_CODE (parser->scope) == ENUMERAL_TYPE)
19489 error_at (token->location, "cannot form pointer to member of "
19490 "non-class %q#T", parser->scope);
19491 else
19493 /* The type of which the member is a member is given by the
19494 current SCOPE. */
19495 *type = parser->scope;
19496 /* The next name will not be qualified. */
19497 parser->scope = NULL_TREE;
19498 parser->qualifying_scope = NULL_TREE;
19499 parser->object_scope = NULL_TREE;
19500 /* Look for optional c++11 attributes. */
19501 attrs = cp_parser_std_attribute_spec_seq (parser);
19502 if (attributes != NULL)
19503 *attributes = attrs;
19504 /* Look for the optional cv-qualifier-seq. */
19505 *cv_quals = cp_parser_cv_qualifier_seq_opt (parser);
19508 /* If that didn't work we don't have a ptr-operator. */
19509 if (!cp_parser_parse_definitely (parser))
19510 cp_parser_error (parser, "expected ptr-operator");
19513 return code;
19516 /* Parse an (optional) cv-qualifier-seq.
19518 cv-qualifier-seq:
19519 cv-qualifier cv-qualifier-seq [opt]
19521 cv-qualifier:
19522 const
19523 volatile
19525 GNU Extension:
19527 cv-qualifier:
19528 __restrict__
19530 Returns a bitmask representing the cv-qualifiers. */
19532 static cp_cv_quals
19533 cp_parser_cv_qualifier_seq_opt (cp_parser* parser)
19535 cp_cv_quals cv_quals = TYPE_UNQUALIFIED;
19537 while (true)
19539 cp_token *token;
19540 cp_cv_quals cv_qualifier;
19542 /* Peek at the next token. */
19543 token = cp_lexer_peek_token (parser->lexer);
19544 /* See if it's a cv-qualifier. */
19545 switch (token->keyword)
19547 case RID_CONST:
19548 cv_qualifier = TYPE_QUAL_CONST;
19549 break;
19551 case RID_VOLATILE:
19552 cv_qualifier = TYPE_QUAL_VOLATILE;
19553 break;
19555 case RID_RESTRICT:
19556 cv_qualifier = TYPE_QUAL_RESTRICT;
19557 break;
19559 default:
19560 cv_qualifier = TYPE_UNQUALIFIED;
19561 break;
19564 if (!cv_qualifier)
19565 break;
19567 if (cv_quals & cv_qualifier)
19569 error_at (token->location, "duplicate cv-qualifier");
19570 cp_lexer_purge_token (parser->lexer);
19572 else
19574 cp_lexer_consume_token (parser->lexer);
19575 cv_quals |= cv_qualifier;
19579 return cv_quals;
19582 /* Parse an (optional) ref-qualifier
19584 ref-qualifier:
19588 Returns cp_ref_qualifier representing ref-qualifier. */
19590 static cp_ref_qualifier
19591 cp_parser_ref_qualifier_opt (cp_parser* parser)
19593 cp_ref_qualifier ref_qual = REF_QUAL_NONE;
19595 /* Don't try to parse bitwise '&' as a ref-qualifier (c++/57532). */
19596 if (cxx_dialect < cxx11 && cp_parser_parsing_tentatively (parser))
19597 return ref_qual;
19599 while (true)
19601 cp_ref_qualifier curr_ref_qual = REF_QUAL_NONE;
19602 cp_token *token = cp_lexer_peek_token (parser->lexer);
19604 switch (token->type)
19606 case CPP_AND:
19607 curr_ref_qual = REF_QUAL_LVALUE;
19608 break;
19610 case CPP_AND_AND:
19611 curr_ref_qual = REF_QUAL_RVALUE;
19612 break;
19614 default:
19615 curr_ref_qual = REF_QUAL_NONE;
19616 break;
19619 if (!curr_ref_qual)
19620 break;
19621 else if (ref_qual)
19623 error_at (token->location, "multiple ref-qualifiers");
19624 cp_lexer_purge_token (parser->lexer);
19626 else
19628 ref_qual = curr_ref_qual;
19629 cp_lexer_consume_token (parser->lexer);
19633 return ref_qual;
19636 /* Parse an optional tx-qualifier.
19638 tx-qualifier:
19639 transaction_safe
19640 transaction_safe_dynamic */
19642 static tree
19643 cp_parser_tx_qualifier_opt (cp_parser *parser)
19645 cp_token *token = cp_lexer_peek_token (parser->lexer);
19646 if (token->type == CPP_NAME)
19648 tree name = token->u.value;
19649 const char *p = IDENTIFIER_POINTER (name);
19650 const int len = strlen ("transaction_safe");
19651 if (!strncmp (p, "transaction_safe", len))
19653 p += len;
19654 if (*p == '\0'
19655 || !strcmp (p, "_dynamic"))
19657 cp_lexer_consume_token (parser->lexer);
19658 if (!flag_tm)
19660 error ("%E requires %<-fgnu-tm%>", name);
19661 return NULL_TREE;
19663 else
19664 return name;
19668 return NULL_TREE;
19671 /* Parse an (optional) virt-specifier-seq.
19673 virt-specifier-seq:
19674 virt-specifier virt-specifier-seq [opt]
19676 virt-specifier:
19677 override
19678 final
19680 Returns a bitmask representing the virt-specifiers. */
19682 static cp_virt_specifiers
19683 cp_parser_virt_specifier_seq_opt (cp_parser* parser)
19685 cp_virt_specifiers virt_specifiers = VIRT_SPEC_UNSPECIFIED;
19687 while (true)
19689 cp_token *token;
19690 cp_virt_specifiers virt_specifier;
19692 /* Peek at the next token. */
19693 token = cp_lexer_peek_token (parser->lexer);
19694 /* See if it's a virt-specifier-qualifier. */
19695 if (token->type != CPP_NAME)
19696 break;
19697 if (!strcmp (IDENTIFIER_POINTER(token->u.value), "override"))
19699 maybe_warn_cpp0x (CPP0X_OVERRIDE_CONTROLS);
19700 virt_specifier = VIRT_SPEC_OVERRIDE;
19702 else if (!strcmp (IDENTIFIER_POINTER(token->u.value), "final"))
19704 maybe_warn_cpp0x (CPP0X_OVERRIDE_CONTROLS);
19705 virt_specifier = VIRT_SPEC_FINAL;
19707 else if (!strcmp (IDENTIFIER_POINTER(token->u.value), "__final"))
19709 virt_specifier = VIRT_SPEC_FINAL;
19711 else
19712 break;
19714 if (virt_specifiers & virt_specifier)
19716 error_at (token->location, "duplicate virt-specifier");
19717 cp_lexer_purge_token (parser->lexer);
19719 else
19721 cp_lexer_consume_token (parser->lexer);
19722 virt_specifiers |= virt_specifier;
19725 return virt_specifiers;
19728 /* Used by handling of trailing-return-types and NSDMI, in which 'this'
19729 is in scope even though it isn't real. */
19731 void
19732 inject_this_parameter (tree ctype, cp_cv_quals quals)
19734 tree this_parm;
19736 if (current_class_ptr)
19738 /* We don't clear this between NSDMIs. Is it already what we want? */
19739 tree type = TREE_TYPE (TREE_TYPE (current_class_ptr));
19740 if (same_type_ignoring_top_level_qualifiers_p (ctype, type)
19741 && cp_type_quals (type) == quals)
19742 return;
19745 this_parm = build_this_parm (ctype, quals);
19746 /* Clear this first to avoid shortcut in cp_build_indirect_ref. */
19747 current_class_ptr = NULL_TREE;
19748 current_class_ref
19749 = cp_build_indirect_ref (this_parm, RO_NULL, tf_warning_or_error);
19750 current_class_ptr = this_parm;
19753 /* Return true iff our current scope is a non-static data member
19754 initializer. */
19756 bool
19757 parsing_nsdmi (void)
19759 /* We recognize NSDMI context by the context-less 'this' pointer set up
19760 by the function above. */
19761 if (current_class_ptr
19762 && TREE_CODE (current_class_ptr) == PARM_DECL
19763 && DECL_CONTEXT (current_class_ptr) == NULL_TREE)
19764 return true;
19765 return false;
19768 /* Parse a late-specified return type, if any. This is not a separate
19769 non-terminal, but part of a function declarator, which looks like
19771 -> trailing-type-specifier-seq abstract-declarator(opt)
19773 Returns the type indicated by the type-id.
19775 In addition to this, parse any queued up omp declare simd
19776 clauses and Cilk Plus SIMD-enabled function's vector attributes.
19778 QUALS is either a bitmask of cv_qualifiers or -1 for a non-member
19779 function. */
19781 static tree
19782 cp_parser_late_return_type_opt (cp_parser* parser, cp_declarator *declarator,
19783 tree& requires_clause, cp_cv_quals quals)
19785 cp_token *token;
19786 tree type = NULL_TREE;
19787 bool declare_simd_p = (parser->omp_declare_simd
19788 && declarator
19789 && declarator->kind == cdk_id);
19791 bool cilk_simd_fn_vector_p = (parser->cilk_simd_fn_info
19792 && declarator && declarator->kind == cdk_id);
19794 bool oacc_routine_p = (parser->oacc_routine
19795 && declarator
19796 && declarator->kind == cdk_id);
19798 /* Peek at the next token. */
19799 token = cp_lexer_peek_token (parser->lexer);
19800 /* A late-specified return type is indicated by an initial '->'. */
19801 if (token->type != CPP_DEREF
19802 && token->keyword != RID_REQUIRES
19803 && !(token->type == CPP_NAME
19804 && token->u.value == ridpointers[RID_REQUIRES])
19805 && !(declare_simd_p || cilk_simd_fn_vector_p || oacc_routine_p))
19806 return NULL_TREE;
19808 tree save_ccp = current_class_ptr;
19809 tree save_ccr = current_class_ref;
19810 if (quals >= 0)
19812 /* DR 1207: 'this' is in scope in the trailing return type. */
19813 inject_this_parameter (current_class_type, quals);
19816 if (token->type == CPP_DEREF)
19818 /* Consume the ->. */
19819 cp_lexer_consume_token (parser->lexer);
19821 type = cp_parser_trailing_type_id (parser);
19824 /* Function declarations may be followed by a trailing
19825 requires-clause. */
19826 requires_clause = cp_parser_requires_clause_opt (parser);
19828 if (cilk_simd_fn_vector_p)
19829 declarator->attributes
19830 = cp_parser_late_parsing_cilk_simd_fn_info (parser,
19831 declarator->attributes);
19832 if (declare_simd_p)
19833 declarator->attributes
19834 = cp_parser_late_parsing_omp_declare_simd (parser,
19835 declarator->attributes);
19836 if (oacc_routine_p)
19837 declarator->attributes
19838 = cp_parser_late_parsing_oacc_routine (parser,
19839 declarator->attributes);
19841 if (quals >= 0)
19843 current_class_ptr = save_ccp;
19844 current_class_ref = save_ccr;
19847 return type;
19850 /* Parse a declarator-id.
19852 declarator-id:
19853 id-expression
19854 :: [opt] nested-name-specifier [opt] type-name
19856 In the `id-expression' case, the value returned is as for
19857 cp_parser_id_expression if the id-expression was an unqualified-id.
19858 If the id-expression was a qualified-id, then a SCOPE_REF is
19859 returned. The first operand is the scope (either a NAMESPACE_DECL
19860 or TREE_TYPE), but the second is still just a representation of an
19861 unqualified-id. */
19863 static tree
19864 cp_parser_declarator_id (cp_parser* parser, bool optional_p)
19866 tree id;
19867 /* The expression must be an id-expression. Assume that qualified
19868 names are the names of types so that:
19870 template <class T>
19871 int S<T>::R::i = 3;
19873 will work; we must treat `S<T>::R' as the name of a type.
19874 Similarly, assume that qualified names are templates, where
19875 required, so that:
19877 template <class T>
19878 int S<T>::R<T>::i = 3;
19880 will work, too. */
19881 id = cp_parser_id_expression (parser,
19882 /*template_keyword_p=*/false,
19883 /*check_dependency_p=*/false,
19884 /*template_p=*/NULL,
19885 /*declarator_p=*/true,
19886 optional_p);
19887 if (id && BASELINK_P (id))
19888 id = BASELINK_FUNCTIONS (id);
19889 return id;
19892 /* Parse a type-id.
19894 type-id:
19895 type-specifier-seq abstract-declarator [opt]
19897 Returns the TYPE specified. */
19899 static tree
19900 cp_parser_type_id_1 (cp_parser* parser, bool is_template_arg,
19901 bool is_trailing_return)
19903 cp_decl_specifier_seq type_specifier_seq;
19904 cp_declarator *abstract_declarator;
19906 /* Parse the type-specifier-seq. */
19907 cp_parser_type_specifier_seq (parser, /*is_declaration=*/false,
19908 is_trailing_return,
19909 &type_specifier_seq);
19910 if (type_specifier_seq.type == error_mark_node)
19911 return error_mark_node;
19913 /* There might or might not be an abstract declarator. */
19914 cp_parser_parse_tentatively (parser);
19915 /* Look for the declarator. */
19916 abstract_declarator
19917 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_ABSTRACT, NULL,
19918 /*parenthesized_p=*/NULL,
19919 /*member_p=*/false,
19920 /*friend_p=*/false);
19921 /* Check to see if there really was a declarator. */
19922 if (!cp_parser_parse_definitely (parser))
19923 abstract_declarator = NULL;
19925 if (type_specifier_seq.type
19926 /* The concepts TS allows 'auto' as a type-id. */
19927 && (!flag_concepts || parser->in_type_id_in_expr_p)
19928 /* None of the valid uses of 'auto' in C++14 involve the type-id
19929 nonterminal, but it is valid in a trailing-return-type. */
19930 && !(cxx_dialect >= cxx14 && is_trailing_return)
19931 && type_uses_auto (type_specifier_seq.type))
19933 /* A type-id with type 'auto' is only ok if the abstract declarator
19934 is a function declarator with a late-specified return type.
19936 A type-id with 'auto' is also valid in a trailing-return-type
19937 in a compound-requirement. */
19938 if (abstract_declarator
19939 && abstract_declarator->kind == cdk_function
19940 && abstract_declarator->u.function.late_return_type)
19941 /* OK */;
19942 else if (parser->in_result_type_constraint_p)
19943 /* OK */;
19944 else
19946 error ("invalid use of %<auto%>");
19947 return error_mark_node;
19951 return groktypename (&type_specifier_seq, abstract_declarator,
19952 is_template_arg);
19955 static tree
19956 cp_parser_type_id (cp_parser *parser)
19958 return cp_parser_type_id_1 (parser, false, false);
19961 static tree
19962 cp_parser_template_type_arg (cp_parser *parser)
19964 tree r;
19965 const char *saved_message = parser->type_definition_forbidden_message;
19966 parser->type_definition_forbidden_message
19967 = G_("types may not be defined in template arguments");
19968 r = cp_parser_type_id_1 (parser, true, false);
19969 parser->type_definition_forbidden_message = saved_message;
19970 if (cxx_dialect >= cxx14 && !flag_concepts && type_uses_auto (r))
19972 error ("invalid use of %<auto%> in template argument");
19973 r = error_mark_node;
19975 return r;
19978 static tree
19979 cp_parser_trailing_type_id (cp_parser *parser)
19981 return cp_parser_type_id_1 (parser, false, true);
19984 /* Parse a type-specifier-seq.
19986 type-specifier-seq:
19987 type-specifier type-specifier-seq [opt]
19989 GNU extension:
19991 type-specifier-seq:
19992 attributes type-specifier-seq [opt]
19994 If IS_DECLARATION is true, we are at the start of a "condition" or
19995 exception-declaration, so we might be followed by a declarator-id.
19997 If IS_TRAILING_RETURN is true, we are in a trailing-return-type,
19998 i.e. we've just seen "->".
20000 Sets *TYPE_SPECIFIER_SEQ to represent the sequence. */
20002 static void
20003 cp_parser_type_specifier_seq (cp_parser* parser,
20004 bool is_declaration,
20005 bool is_trailing_return,
20006 cp_decl_specifier_seq *type_specifier_seq)
20008 bool seen_type_specifier = false;
20009 cp_parser_flags flags = CP_PARSER_FLAGS_OPTIONAL;
20010 cp_token *start_token = NULL;
20012 /* Clear the TYPE_SPECIFIER_SEQ. */
20013 clear_decl_specs (type_specifier_seq);
20015 /* In the context of a trailing return type, enum E { } is an
20016 elaborated-type-specifier followed by a function-body, not an
20017 enum-specifier. */
20018 if (is_trailing_return)
20019 flags |= CP_PARSER_FLAGS_NO_TYPE_DEFINITIONS;
20021 /* Parse the type-specifiers and attributes. */
20022 while (true)
20024 tree type_specifier;
20025 bool is_cv_qualifier;
20027 /* Check for attributes first. */
20028 if (cp_next_tokens_can_be_attribute_p (parser))
20030 type_specifier_seq->attributes =
20031 chainon (type_specifier_seq->attributes,
20032 cp_parser_attributes_opt (parser));
20033 continue;
20036 /* record the token of the beginning of the type specifier seq,
20037 for error reporting purposes*/
20038 if (!start_token)
20039 start_token = cp_lexer_peek_token (parser->lexer);
20041 /* Look for the type-specifier. */
20042 type_specifier = cp_parser_type_specifier (parser,
20043 flags,
20044 type_specifier_seq,
20045 /*is_declaration=*/false,
20046 NULL,
20047 &is_cv_qualifier);
20048 if (!type_specifier)
20050 /* If the first type-specifier could not be found, this is not a
20051 type-specifier-seq at all. */
20052 if (!seen_type_specifier)
20054 /* Set in_declarator_p to avoid skipping to the semicolon. */
20055 int in_decl = parser->in_declarator_p;
20056 parser->in_declarator_p = true;
20058 if (cp_parser_uncommitted_to_tentative_parse_p (parser)
20059 || !cp_parser_parse_and_diagnose_invalid_type_name (parser))
20060 cp_parser_error (parser, "expected type-specifier");
20062 parser->in_declarator_p = in_decl;
20064 type_specifier_seq->type = error_mark_node;
20065 return;
20067 /* If subsequent type-specifiers could not be found, the
20068 type-specifier-seq is complete. */
20069 break;
20072 seen_type_specifier = true;
20073 /* The standard says that a condition can be:
20075 type-specifier-seq declarator = assignment-expression
20077 However, given:
20079 struct S {};
20080 if (int S = ...)
20082 we should treat the "S" as a declarator, not as a
20083 type-specifier. The standard doesn't say that explicitly for
20084 type-specifier-seq, but it does say that for
20085 decl-specifier-seq in an ordinary declaration. Perhaps it
20086 would be clearer just to allow a decl-specifier-seq here, and
20087 then add a semantic restriction that if any decl-specifiers
20088 that are not type-specifiers appear, the program is invalid. */
20089 if (is_declaration && !is_cv_qualifier)
20090 flags |= CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES;
20094 /* Return whether the function currently being declared has an associated
20095 template parameter list. */
20097 static bool
20098 function_being_declared_is_template_p (cp_parser* parser)
20100 if (!current_template_parms || processing_template_parmlist)
20101 return false;
20103 if (parser->implicit_template_scope)
20104 return true;
20106 if (at_class_scope_p ()
20107 && TYPE_BEING_DEFINED (current_class_type))
20108 return parser->num_template_parameter_lists != 0;
20110 return ((int) parser->num_template_parameter_lists > template_class_depth
20111 (current_class_type));
20114 /* Parse a parameter-declaration-clause.
20116 parameter-declaration-clause:
20117 parameter-declaration-list [opt] ... [opt]
20118 parameter-declaration-list , ...
20120 Returns a representation for the parameter declarations. A return
20121 value of NULL indicates a parameter-declaration-clause consisting
20122 only of an ellipsis. */
20124 static tree
20125 cp_parser_parameter_declaration_clause (cp_parser* parser)
20127 tree parameters;
20128 cp_token *token;
20129 bool ellipsis_p;
20130 bool is_error;
20132 struct cleanup {
20133 cp_parser* parser;
20134 int auto_is_implicit_function_template_parm_p;
20135 ~cleanup() {
20136 parser->auto_is_implicit_function_template_parm_p
20137 = auto_is_implicit_function_template_parm_p;
20139 } cleanup = { parser, parser->auto_is_implicit_function_template_parm_p };
20141 (void) cleanup;
20143 if (!processing_specialization
20144 && !processing_template_parmlist
20145 && !processing_explicit_instantiation)
20146 if (!current_function_decl
20147 || (current_class_type && LAMBDA_TYPE_P (current_class_type)))
20148 parser->auto_is_implicit_function_template_parm_p = true;
20150 /* Peek at the next token. */
20151 token = cp_lexer_peek_token (parser->lexer);
20152 /* Check for trivial parameter-declaration-clauses. */
20153 if (token->type == CPP_ELLIPSIS)
20155 /* Consume the `...' token. */
20156 cp_lexer_consume_token (parser->lexer);
20157 return NULL_TREE;
20159 else if (token->type == CPP_CLOSE_PAREN)
20160 /* There are no parameters. */
20162 #ifndef NO_IMPLICIT_EXTERN_C
20163 if (in_system_header_at (input_location)
20164 && current_class_type == NULL
20165 && current_lang_name == lang_name_c)
20166 return NULL_TREE;
20167 else
20168 #endif
20169 return void_list_node;
20171 /* Check for `(void)', too, which is a special case. */
20172 else if (token->keyword == RID_VOID
20173 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
20174 == CPP_CLOSE_PAREN))
20176 /* Consume the `void' token. */
20177 cp_lexer_consume_token (parser->lexer);
20178 /* There are no parameters. */
20179 return void_list_node;
20182 /* Parse the parameter-declaration-list. */
20183 parameters = cp_parser_parameter_declaration_list (parser, &is_error);
20184 /* If a parse error occurred while parsing the
20185 parameter-declaration-list, then the entire
20186 parameter-declaration-clause is erroneous. */
20187 if (is_error)
20188 return NULL;
20190 /* Peek at the next token. */
20191 token = cp_lexer_peek_token (parser->lexer);
20192 /* If it's a `,', the clause should terminate with an ellipsis. */
20193 if (token->type == CPP_COMMA)
20195 /* Consume the `,'. */
20196 cp_lexer_consume_token (parser->lexer);
20197 /* Expect an ellipsis. */
20198 ellipsis_p
20199 = (cp_parser_require (parser, CPP_ELLIPSIS, RT_ELLIPSIS) != NULL);
20201 /* It might also be `...' if the optional trailing `,' was
20202 omitted. */
20203 else if (token->type == CPP_ELLIPSIS)
20205 /* Consume the `...' token. */
20206 cp_lexer_consume_token (parser->lexer);
20207 /* And remember that we saw it. */
20208 ellipsis_p = true;
20210 else
20211 ellipsis_p = false;
20213 /* Finish the parameter list. */
20214 if (!ellipsis_p)
20215 parameters = chainon (parameters, void_list_node);
20217 return parameters;
20220 /* Parse a parameter-declaration-list.
20222 parameter-declaration-list:
20223 parameter-declaration
20224 parameter-declaration-list , parameter-declaration
20226 Returns a representation of the parameter-declaration-list, as for
20227 cp_parser_parameter_declaration_clause. However, the
20228 `void_list_node' is never appended to the list. Upon return,
20229 *IS_ERROR will be true iff an error occurred. */
20231 static tree
20232 cp_parser_parameter_declaration_list (cp_parser* parser, bool *is_error)
20234 tree parameters = NULL_TREE;
20235 tree *tail = &parameters;
20236 bool saved_in_unbraced_linkage_specification_p;
20237 int index = 0;
20239 /* Assume all will go well. */
20240 *is_error = false;
20241 /* The special considerations that apply to a function within an
20242 unbraced linkage specifications do not apply to the parameters
20243 to the function. */
20244 saved_in_unbraced_linkage_specification_p
20245 = parser->in_unbraced_linkage_specification_p;
20246 parser->in_unbraced_linkage_specification_p = false;
20248 /* Look for more parameters. */
20249 while (true)
20251 cp_parameter_declarator *parameter;
20252 tree decl = error_mark_node;
20253 bool parenthesized_p = false;
20254 int template_parm_idx = (function_being_declared_is_template_p (parser)?
20255 TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
20256 (current_template_parms)) : 0);
20258 /* Parse the parameter. */
20259 parameter
20260 = cp_parser_parameter_declaration (parser,
20261 /*template_parm_p=*/false,
20262 &parenthesized_p);
20264 /* We don't know yet if the enclosing context is deprecated, so wait
20265 and warn in grokparms if appropriate. */
20266 deprecated_state = DEPRECATED_SUPPRESS;
20268 if (parameter)
20270 /* If a function parameter pack was specified and an implicit template
20271 parameter was introduced during cp_parser_parameter_declaration,
20272 change any implicit parameters introduced into packs. */
20273 if (parser->implicit_template_parms
20274 && parameter->declarator
20275 && parameter->declarator->parameter_pack_p)
20277 int latest_template_parm_idx = TREE_VEC_LENGTH
20278 (INNERMOST_TEMPLATE_PARMS (current_template_parms));
20280 if (latest_template_parm_idx != template_parm_idx)
20281 parameter->decl_specifiers.type = convert_generic_types_to_packs
20282 (parameter->decl_specifiers.type,
20283 template_parm_idx, latest_template_parm_idx);
20286 decl = grokdeclarator (parameter->declarator,
20287 &parameter->decl_specifiers,
20288 PARM,
20289 parameter->default_argument != NULL_TREE,
20290 &parameter->decl_specifiers.attributes);
20293 deprecated_state = DEPRECATED_NORMAL;
20295 /* If a parse error occurred parsing the parameter declaration,
20296 then the entire parameter-declaration-list is erroneous. */
20297 if (decl == error_mark_node)
20299 *is_error = true;
20300 parameters = error_mark_node;
20301 break;
20304 if (parameter->decl_specifiers.attributes)
20305 cplus_decl_attributes (&decl,
20306 parameter->decl_specifiers.attributes,
20308 if (DECL_NAME (decl))
20309 decl = pushdecl (decl);
20311 if (decl != error_mark_node)
20313 retrofit_lang_decl (decl);
20314 DECL_PARM_INDEX (decl) = ++index;
20315 DECL_PARM_LEVEL (decl) = function_parm_depth ();
20318 /* Add the new parameter to the list. */
20319 *tail = build_tree_list (parameter->default_argument, decl);
20320 tail = &TREE_CHAIN (*tail);
20322 /* Peek at the next token. */
20323 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN)
20324 || cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS)
20325 /* These are for Objective-C++ */
20326 || cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
20327 || cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
20328 /* The parameter-declaration-list is complete. */
20329 break;
20330 else if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
20332 cp_token *token;
20334 /* Peek at the next token. */
20335 token = cp_lexer_peek_nth_token (parser->lexer, 2);
20336 /* If it's an ellipsis, then the list is complete. */
20337 if (token->type == CPP_ELLIPSIS)
20338 break;
20339 /* Otherwise, there must be more parameters. Consume the
20340 `,'. */
20341 cp_lexer_consume_token (parser->lexer);
20342 /* When parsing something like:
20344 int i(float f, double d)
20346 we can tell after seeing the declaration for "f" that we
20347 are not looking at an initialization of a variable "i",
20348 but rather at the declaration of a function "i".
20350 Due to the fact that the parsing of template arguments
20351 (as specified to a template-id) requires backtracking we
20352 cannot use this technique when inside a template argument
20353 list. */
20354 if (!parser->in_template_argument_list_p
20355 && !parser->in_type_id_in_expr_p
20356 && cp_parser_uncommitted_to_tentative_parse_p (parser)
20357 /* However, a parameter-declaration of the form
20358 "float(f)" (which is a valid declaration of a
20359 parameter "f") can also be interpreted as an
20360 expression (the conversion of "f" to "float"). */
20361 && !parenthesized_p)
20362 cp_parser_commit_to_tentative_parse (parser);
20364 else
20366 cp_parser_error (parser, "expected %<,%> or %<...%>");
20367 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
20368 cp_parser_skip_to_closing_parenthesis (parser,
20369 /*recovering=*/true,
20370 /*or_comma=*/false,
20371 /*consume_paren=*/false);
20372 break;
20376 parser->in_unbraced_linkage_specification_p
20377 = saved_in_unbraced_linkage_specification_p;
20379 /* Reset implicit_template_scope if we are about to leave the function
20380 parameter list that introduced it. Note that for out-of-line member
20381 definitions, there will be one or more class scopes before we get to
20382 the template parameter scope. */
20384 if (cp_binding_level *its = parser->implicit_template_scope)
20385 if (cp_binding_level *maybe_its = current_binding_level->level_chain)
20387 while (maybe_its->kind == sk_class)
20388 maybe_its = maybe_its->level_chain;
20389 if (maybe_its == its)
20391 parser->implicit_template_parms = 0;
20392 parser->implicit_template_scope = 0;
20396 return parameters;
20399 /* Parse a parameter declaration.
20401 parameter-declaration:
20402 decl-specifier-seq ... [opt] declarator
20403 decl-specifier-seq declarator = assignment-expression
20404 decl-specifier-seq ... [opt] abstract-declarator [opt]
20405 decl-specifier-seq abstract-declarator [opt] = assignment-expression
20407 If TEMPLATE_PARM_P is TRUE, then this parameter-declaration
20408 declares a template parameter. (In that case, a non-nested `>'
20409 token encountered during the parsing of the assignment-expression
20410 is not interpreted as a greater-than operator.)
20412 Returns a representation of the parameter, or NULL if an error
20413 occurs. If PARENTHESIZED_P is non-NULL, *PARENTHESIZED_P is set to
20414 true iff the declarator is of the form "(p)". */
20416 static cp_parameter_declarator *
20417 cp_parser_parameter_declaration (cp_parser *parser,
20418 bool template_parm_p,
20419 bool *parenthesized_p)
20421 int declares_class_or_enum;
20422 cp_decl_specifier_seq decl_specifiers;
20423 cp_declarator *declarator;
20424 tree default_argument;
20425 cp_token *token = NULL, *declarator_token_start = NULL;
20426 const char *saved_message;
20427 bool template_parameter_pack_p = false;
20429 /* In a template parameter, `>' is not an operator.
20431 [temp.param]
20433 When parsing a default template-argument for a non-type
20434 template-parameter, the first non-nested `>' is taken as the end
20435 of the template parameter-list rather than a greater-than
20436 operator. */
20438 /* Type definitions may not appear in parameter types. */
20439 saved_message = parser->type_definition_forbidden_message;
20440 parser->type_definition_forbidden_message
20441 = G_("types may not be defined in parameter types");
20443 /* Parse the declaration-specifiers. */
20444 cp_parser_decl_specifier_seq (parser,
20445 CP_PARSER_FLAGS_NONE,
20446 &decl_specifiers,
20447 &declares_class_or_enum);
20449 /* Complain about missing 'typename' or other invalid type names. */
20450 if (!decl_specifiers.any_type_specifiers_p
20451 && cp_parser_parse_and_diagnose_invalid_type_name (parser))
20452 decl_specifiers.type = error_mark_node;
20454 /* If an error occurred, there's no reason to attempt to parse the
20455 rest of the declaration. */
20456 if (cp_parser_error_occurred (parser))
20458 parser->type_definition_forbidden_message = saved_message;
20459 return NULL;
20462 /* Peek at the next token. */
20463 token = cp_lexer_peek_token (parser->lexer);
20465 /* If the next token is a `)', `,', `=', `>', or `...', then there
20466 is no declarator. However, when variadic templates are enabled,
20467 there may be a declarator following `...'. */
20468 if (token->type == CPP_CLOSE_PAREN
20469 || token->type == CPP_COMMA
20470 || token->type == CPP_EQ
20471 || token->type == CPP_GREATER)
20473 declarator = NULL;
20474 if (parenthesized_p)
20475 *parenthesized_p = false;
20477 /* Otherwise, there should be a declarator. */
20478 else
20480 bool saved_default_arg_ok_p = parser->default_arg_ok_p;
20481 parser->default_arg_ok_p = false;
20483 /* After seeing a decl-specifier-seq, if the next token is not a
20484 "(", there is no possibility that the code is a valid
20485 expression. Therefore, if parsing tentatively, we commit at
20486 this point. */
20487 if (!parser->in_template_argument_list_p
20488 /* In an expression context, having seen:
20490 (int((char ...
20492 we cannot be sure whether we are looking at a
20493 function-type (taking a "char" as a parameter) or a cast
20494 of some object of type "char" to "int". */
20495 && !parser->in_type_id_in_expr_p
20496 && cp_parser_uncommitted_to_tentative_parse_p (parser)
20497 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE)
20498 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_PAREN))
20499 cp_parser_commit_to_tentative_parse (parser);
20500 /* Parse the declarator. */
20501 declarator_token_start = token;
20502 declarator = cp_parser_declarator (parser,
20503 CP_PARSER_DECLARATOR_EITHER,
20504 /*ctor_dtor_or_conv_p=*/NULL,
20505 parenthesized_p,
20506 /*member_p=*/false,
20507 /*friend_p=*/false);
20508 parser->default_arg_ok_p = saved_default_arg_ok_p;
20509 /* After the declarator, allow more attributes. */
20510 decl_specifiers.attributes
20511 = chainon (decl_specifiers.attributes,
20512 cp_parser_attributes_opt (parser));
20514 /* If the declarator is a template parameter pack, remember that and
20515 clear the flag in the declarator itself so we don't get errors
20516 from grokdeclarator. */
20517 if (template_parm_p && declarator && declarator->parameter_pack_p)
20519 declarator->parameter_pack_p = false;
20520 template_parameter_pack_p = true;
20524 /* If the next token is an ellipsis, and we have not seen a declarator
20525 name, and if either the type of the declarator contains parameter
20526 packs but it is not a TYPE_PACK_EXPANSION or is null (this happens
20527 for, eg, abbreviated integral type names), then we actually have a
20528 parameter pack expansion expression. Otherwise, leave the ellipsis
20529 for a C-style variadic function. */
20530 token = cp_lexer_peek_token (parser->lexer);
20531 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
20533 tree type = decl_specifiers.type;
20535 if (type && DECL_P (type))
20536 type = TREE_TYPE (type);
20538 if (((type
20539 && TREE_CODE (type) != TYPE_PACK_EXPANSION
20540 && (template_parm_p || uses_parameter_packs (type)))
20541 || (!type && template_parm_p))
20542 && declarator_can_be_parameter_pack (declarator))
20544 /* Consume the `...'. */
20545 cp_lexer_consume_token (parser->lexer);
20546 maybe_warn_variadic_templates ();
20548 /* Build a pack expansion type */
20549 if (template_parm_p)
20550 template_parameter_pack_p = true;
20551 else if (declarator)
20552 declarator->parameter_pack_p = true;
20553 else
20554 decl_specifiers.type = make_pack_expansion (type);
20558 /* The restriction on defining new types applies only to the type
20559 of the parameter, not to the default argument. */
20560 parser->type_definition_forbidden_message = saved_message;
20562 /* If the next token is `=', then process a default argument. */
20563 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
20565 tree type = decl_specifiers.type;
20566 token = cp_lexer_peek_token (parser->lexer);
20567 /* If we are defining a class, then the tokens that make up the
20568 default argument must be saved and processed later. */
20569 if (!template_parm_p && at_class_scope_p ()
20570 && TYPE_BEING_DEFINED (current_class_type)
20571 && !LAMBDA_TYPE_P (current_class_type))
20572 default_argument = cp_parser_cache_defarg (parser, /*nsdmi=*/false);
20574 // A constrained-type-specifier may declare a type template-parameter.
20575 else if (declares_constrained_type_template_parameter (type))
20576 default_argument
20577 = cp_parser_default_type_template_argument (parser);
20579 // A constrained-type-specifier may declare a template-template-parameter.
20580 else if (declares_constrained_template_template_parameter (type))
20581 default_argument
20582 = cp_parser_default_template_template_argument (parser);
20584 /* Outside of a class definition, we can just parse the
20585 assignment-expression. */
20586 else
20587 default_argument
20588 = cp_parser_default_argument (parser, template_parm_p);
20590 if (!parser->default_arg_ok_p)
20592 permerror (token->location,
20593 "default arguments are only "
20594 "permitted for function parameters");
20596 else if ((declarator && declarator->parameter_pack_p)
20597 || template_parameter_pack_p
20598 || (decl_specifiers.type
20599 && PACK_EXPANSION_P (decl_specifiers.type)))
20601 /* Find the name of the parameter pack. */
20602 cp_declarator *id_declarator = declarator;
20603 while (id_declarator && id_declarator->kind != cdk_id)
20604 id_declarator = id_declarator->declarator;
20606 if (id_declarator && id_declarator->kind == cdk_id)
20607 error_at (declarator_token_start->location,
20608 template_parm_p
20609 ? G_("template parameter pack %qD "
20610 "cannot have a default argument")
20611 : G_("parameter pack %qD cannot have "
20612 "a default argument"),
20613 id_declarator->u.id.unqualified_name);
20614 else
20615 error_at (declarator_token_start->location,
20616 template_parm_p
20617 ? G_("template parameter pack cannot have "
20618 "a default argument")
20619 : G_("parameter pack cannot have a "
20620 "default argument"));
20622 default_argument = NULL_TREE;
20625 else
20626 default_argument = NULL_TREE;
20628 return make_parameter_declarator (&decl_specifiers,
20629 declarator,
20630 default_argument,
20631 template_parameter_pack_p);
20634 /* Parse a default argument and return it.
20636 TEMPLATE_PARM_P is true if this is a default argument for a
20637 non-type template parameter. */
20638 static tree
20639 cp_parser_default_argument (cp_parser *parser, bool template_parm_p)
20641 tree default_argument = NULL_TREE;
20642 bool saved_greater_than_is_operator_p;
20643 bool saved_local_variables_forbidden_p;
20644 bool non_constant_p, is_direct_init;
20646 /* Make sure that PARSER->GREATER_THAN_IS_OPERATOR_P is
20647 set correctly. */
20648 saved_greater_than_is_operator_p = parser->greater_than_is_operator_p;
20649 parser->greater_than_is_operator_p = !template_parm_p;
20650 /* Local variable names (and the `this' keyword) may not
20651 appear in a default argument. */
20652 saved_local_variables_forbidden_p = parser->local_variables_forbidden_p;
20653 parser->local_variables_forbidden_p = true;
20654 /* Parse the assignment-expression. */
20655 if (template_parm_p)
20656 push_deferring_access_checks (dk_no_deferred);
20657 tree saved_class_ptr = NULL_TREE;
20658 tree saved_class_ref = NULL_TREE;
20659 /* The "this" pointer is not valid in a default argument. */
20660 if (cfun)
20662 saved_class_ptr = current_class_ptr;
20663 cp_function_chain->x_current_class_ptr = NULL_TREE;
20664 saved_class_ref = current_class_ref;
20665 cp_function_chain->x_current_class_ref = NULL_TREE;
20667 default_argument
20668 = cp_parser_initializer (parser, &is_direct_init, &non_constant_p);
20669 /* Restore the "this" pointer. */
20670 if (cfun)
20672 cp_function_chain->x_current_class_ptr = saved_class_ptr;
20673 cp_function_chain->x_current_class_ref = saved_class_ref;
20675 if (BRACE_ENCLOSED_INITIALIZER_P (default_argument))
20676 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
20677 if (template_parm_p)
20678 pop_deferring_access_checks ();
20679 parser->greater_than_is_operator_p = saved_greater_than_is_operator_p;
20680 parser->local_variables_forbidden_p = saved_local_variables_forbidden_p;
20682 return default_argument;
20685 /* Parse a function-body.
20687 function-body:
20688 compound_statement */
20690 static void
20691 cp_parser_function_body (cp_parser *parser, bool in_function_try_block)
20693 cp_parser_compound_statement (parser, NULL, (in_function_try_block
20694 ? BCS_TRY_BLOCK : BCS_NORMAL),
20695 true);
20698 /* Parse a ctor-initializer-opt followed by a function-body. Return
20699 true if a ctor-initializer was present. When IN_FUNCTION_TRY_BLOCK
20700 is true we are parsing a function-try-block. */
20702 static bool
20703 cp_parser_ctor_initializer_opt_and_function_body (cp_parser *parser,
20704 bool in_function_try_block)
20706 tree body, list;
20707 bool ctor_initializer_p;
20708 const bool check_body_p =
20709 DECL_CONSTRUCTOR_P (current_function_decl)
20710 && DECL_DECLARED_CONSTEXPR_P (current_function_decl);
20711 tree last = NULL;
20713 /* Begin the function body. */
20714 body = begin_function_body ();
20715 /* Parse the optional ctor-initializer. */
20716 ctor_initializer_p = cp_parser_ctor_initializer_opt (parser);
20718 /* If we're parsing a constexpr constructor definition, we need
20719 to check that the constructor body is indeed empty. However,
20720 before we get to cp_parser_function_body lot of junk has been
20721 generated, so we can't just check that we have an empty block.
20722 Rather we take a snapshot of the outermost block, and check whether
20723 cp_parser_function_body changed its state. */
20724 if (check_body_p)
20726 list = cur_stmt_list;
20727 if (STATEMENT_LIST_TAIL (list))
20728 last = STATEMENT_LIST_TAIL (list)->stmt;
20730 /* Parse the function-body. */
20731 cp_parser_function_body (parser, in_function_try_block);
20732 if (check_body_p)
20733 check_constexpr_ctor_body (last, list, /*complain=*/true);
20734 /* Finish the function body. */
20735 finish_function_body (body);
20737 return ctor_initializer_p;
20740 /* Parse an initializer.
20742 initializer:
20743 = initializer-clause
20744 ( expression-list )
20746 Returns an expression representing the initializer. If no
20747 initializer is present, NULL_TREE is returned.
20749 *IS_DIRECT_INIT is set to FALSE if the `= initializer-clause'
20750 production is used, and TRUE otherwise. *IS_DIRECT_INIT is
20751 set to TRUE if there is no initializer present. If there is an
20752 initializer, and it is not a constant-expression, *NON_CONSTANT_P
20753 is set to true; otherwise it is set to false. */
20755 static tree
20756 cp_parser_initializer (cp_parser* parser, bool* is_direct_init,
20757 bool* non_constant_p)
20759 cp_token *token;
20760 tree init;
20762 /* Peek at the next token. */
20763 token = cp_lexer_peek_token (parser->lexer);
20765 /* Let our caller know whether or not this initializer was
20766 parenthesized. */
20767 *is_direct_init = (token->type != CPP_EQ);
20768 /* Assume that the initializer is constant. */
20769 *non_constant_p = false;
20771 if (token->type == CPP_EQ)
20773 /* Consume the `='. */
20774 cp_lexer_consume_token (parser->lexer);
20775 /* Parse the initializer-clause. */
20776 init = cp_parser_initializer_clause (parser, non_constant_p);
20778 else if (token->type == CPP_OPEN_PAREN)
20780 vec<tree, va_gc> *vec;
20781 vec = cp_parser_parenthesized_expression_list (parser, non_attr,
20782 /*cast_p=*/false,
20783 /*allow_expansion_p=*/true,
20784 non_constant_p);
20785 if (vec == NULL)
20786 return error_mark_node;
20787 init = build_tree_list_vec (vec);
20788 release_tree_vector (vec);
20790 else if (token->type == CPP_OPEN_BRACE)
20792 cp_lexer_set_source_position (parser->lexer);
20793 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
20794 init = cp_parser_braced_list (parser, non_constant_p);
20795 CONSTRUCTOR_IS_DIRECT_INIT (init) = 1;
20797 else
20799 /* Anything else is an error. */
20800 cp_parser_error (parser, "expected initializer");
20801 init = error_mark_node;
20804 if (check_for_bare_parameter_packs (init))
20805 init = error_mark_node;
20807 return init;
20810 /* Parse an initializer-clause.
20812 initializer-clause:
20813 assignment-expression
20814 braced-init-list
20816 Returns an expression representing the initializer.
20818 If the `assignment-expression' production is used the value
20819 returned is simply a representation for the expression.
20821 Otherwise, calls cp_parser_braced_list. */
20823 static cp_expr
20824 cp_parser_initializer_clause (cp_parser* parser, bool* non_constant_p)
20826 cp_expr initializer;
20828 /* Assume the expression is constant. */
20829 *non_constant_p = false;
20831 /* If it is not a `{', then we are looking at an
20832 assignment-expression. */
20833 if (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE))
20835 initializer
20836 = cp_parser_constant_expression (parser,
20837 /*allow_non_constant_p=*/true,
20838 non_constant_p);
20840 else
20841 initializer = cp_parser_braced_list (parser, non_constant_p);
20843 return initializer;
20846 /* Parse a brace-enclosed initializer list.
20848 braced-init-list:
20849 { initializer-list , [opt] }
20852 Returns a CONSTRUCTOR. The CONSTRUCTOR_ELTS will be
20853 the elements of the initializer-list (or NULL, if the last
20854 production is used). The TREE_TYPE for the CONSTRUCTOR will be
20855 NULL_TREE. There is no way to detect whether or not the optional
20856 trailing `,' was provided. NON_CONSTANT_P is as for
20857 cp_parser_initializer. */
20859 static cp_expr
20860 cp_parser_braced_list (cp_parser* parser, bool* non_constant_p)
20862 tree initializer;
20863 location_t start_loc = cp_lexer_peek_token (parser->lexer)->location;
20865 /* Consume the `{' token. */
20866 cp_lexer_consume_token (parser->lexer);
20867 /* Create a CONSTRUCTOR to represent the braced-initializer. */
20868 initializer = make_node (CONSTRUCTOR);
20869 /* If it's not a `}', then there is a non-trivial initializer. */
20870 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_BRACE))
20872 /* Parse the initializer list. */
20873 CONSTRUCTOR_ELTS (initializer)
20874 = cp_parser_initializer_list (parser, non_constant_p);
20875 /* A trailing `,' token is allowed. */
20876 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
20877 cp_lexer_consume_token (parser->lexer);
20879 else
20880 *non_constant_p = false;
20881 /* Now, there should be a trailing `}'. */
20882 location_t finish_loc = cp_lexer_peek_token (parser->lexer)->location;
20883 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
20884 TREE_TYPE (initializer) = init_list_type_node;
20886 cp_expr result (initializer);
20887 /* Build a location of the form:
20888 { ... }
20889 ^~~~~~~
20890 with caret==start at the open brace, finish at the close brace. */
20891 location_t combined_loc = make_location (start_loc, start_loc, finish_loc);
20892 result.set_location (combined_loc);
20893 return result;
20896 /* Consume tokens up to, and including, the next non-nested closing `]'.
20897 Returns true iff we found a closing `]'. */
20899 static bool
20900 cp_parser_skip_to_closing_square_bracket (cp_parser *parser)
20902 unsigned square_depth = 0;
20904 while (true)
20906 cp_token * token = cp_lexer_peek_token (parser->lexer);
20908 switch (token->type)
20910 case CPP_EOF:
20911 case CPP_PRAGMA_EOL:
20912 /* If we've run out of tokens, then there is no closing `]'. */
20913 return false;
20915 case CPP_OPEN_SQUARE:
20916 ++square_depth;
20917 break;
20919 case CPP_CLOSE_SQUARE:
20920 if (!square_depth--)
20922 cp_lexer_consume_token (parser->lexer);
20923 return true;
20925 break;
20927 default:
20928 break;
20931 /* Consume the token. */
20932 cp_lexer_consume_token (parser->lexer);
20936 /* Return true if we are looking at an array-designator, false otherwise. */
20938 static bool
20939 cp_parser_array_designator_p (cp_parser *parser)
20941 /* Consume the `['. */
20942 cp_lexer_consume_token (parser->lexer);
20944 cp_lexer_save_tokens (parser->lexer);
20946 /* Skip tokens until the next token is a closing square bracket.
20947 If we find the closing `]', and the next token is a `=', then
20948 we are looking at an array designator. */
20949 bool array_designator_p
20950 = (cp_parser_skip_to_closing_square_bracket (parser)
20951 && cp_lexer_next_token_is (parser->lexer, CPP_EQ));
20953 /* Roll back the tokens we skipped. */
20954 cp_lexer_rollback_tokens (parser->lexer);
20956 return array_designator_p;
20959 /* Parse an initializer-list.
20961 initializer-list:
20962 initializer-clause ... [opt]
20963 initializer-list , initializer-clause ... [opt]
20965 GNU Extension:
20967 initializer-list:
20968 designation initializer-clause ...[opt]
20969 initializer-list , designation initializer-clause ...[opt]
20971 designation:
20972 . identifier =
20973 identifier :
20974 [ constant-expression ] =
20976 Returns a vec of constructor_elt. The VALUE of each elt is an expression
20977 for the initializer. If the INDEX of the elt is non-NULL, it is the
20978 IDENTIFIER_NODE naming the field to initialize. NON_CONSTANT_P is
20979 as for cp_parser_initializer. */
20981 static vec<constructor_elt, va_gc> *
20982 cp_parser_initializer_list (cp_parser* parser, bool* non_constant_p)
20984 vec<constructor_elt, va_gc> *v = NULL;
20986 /* Assume all of the expressions are constant. */
20987 *non_constant_p = false;
20989 /* Parse the rest of the list. */
20990 while (true)
20992 cp_token *token;
20993 tree designator;
20994 tree initializer;
20995 bool clause_non_constant_p;
20997 /* If the next token is an identifier and the following one is a
20998 colon, we are looking at the GNU designated-initializer
20999 syntax. */
21000 if (cp_parser_allow_gnu_extensions_p (parser)
21001 && cp_lexer_next_token_is (parser->lexer, CPP_NAME)
21002 && cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_COLON)
21004 /* Warn the user that they are using an extension. */
21005 pedwarn (input_location, OPT_Wpedantic,
21006 "ISO C++ does not allow designated initializers");
21007 /* Consume the identifier. */
21008 designator = cp_lexer_consume_token (parser->lexer)->u.value;
21009 /* Consume the `:'. */
21010 cp_lexer_consume_token (parser->lexer);
21012 /* Also handle the C99 syntax, '. id ='. */
21013 else if (cp_parser_allow_gnu_extensions_p (parser)
21014 && cp_lexer_next_token_is (parser->lexer, CPP_DOT)
21015 && cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_NAME
21016 && cp_lexer_peek_nth_token (parser->lexer, 3)->type == CPP_EQ)
21018 /* Warn the user that they are using an extension. */
21019 pedwarn (input_location, OPT_Wpedantic,
21020 "ISO C++ does not allow C99 designated initializers");
21021 /* Consume the `.'. */
21022 cp_lexer_consume_token (parser->lexer);
21023 /* Consume the identifier. */
21024 designator = cp_lexer_consume_token (parser->lexer)->u.value;
21025 /* Consume the `='. */
21026 cp_lexer_consume_token (parser->lexer);
21028 /* Also handle C99 array designators, '[ const ] ='. */
21029 else if (cp_parser_allow_gnu_extensions_p (parser)
21030 && !c_dialect_objc ()
21031 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
21033 /* In C++11, [ could start a lambda-introducer. */
21034 bool non_const = false;
21036 cp_parser_parse_tentatively (parser);
21038 if (!cp_parser_array_designator_p (parser))
21040 cp_parser_simulate_error (parser);
21041 designator = NULL_TREE;
21043 else
21045 designator = cp_parser_constant_expression (parser, true,
21046 &non_const);
21047 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
21048 cp_parser_require (parser, CPP_EQ, RT_EQ);
21051 if (!cp_parser_parse_definitely (parser))
21052 designator = NULL_TREE;
21053 else if (non_const)
21054 require_potential_rvalue_constant_expression (designator);
21056 else
21057 designator = NULL_TREE;
21059 /* Parse the initializer. */
21060 initializer = cp_parser_initializer_clause (parser,
21061 &clause_non_constant_p);
21062 /* If any clause is non-constant, so is the entire initializer. */
21063 if (clause_non_constant_p)
21064 *non_constant_p = true;
21066 /* If we have an ellipsis, this is an initializer pack
21067 expansion. */
21068 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
21070 /* Consume the `...'. */
21071 cp_lexer_consume_token (parser->lexer);
21073 /* Turn the initializer into an initializer expansion. */
21074 initializer = make_pack_expansion (initializer);
21077 /* Add it to the vector. */
21078 CONSTRUCTOR_APPEND_ELT (v, designator, initializer);
21080 /* If the next token is not a comma, we have reached the end of
21081 the list. */
21082 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
21083 break;
21085 /* Peek at the next token. */
21086 token = cp_lexer_peek_nth_token (parser->lexer, 2);
21087 /* If the next token is a `}', then we're still done. An
21088 initializer-clause can have a trailing `,' after the
21089 initializer-list and before the closing `}'. */
21090 if (token->type == CPP_CLOSE_BRACE)
21091 break;
21093 /* Consume the `,' token. */
21094 cp_lexer_consume_token (parser->lexer);
21097 return v;
21100 /* Classes [gram.class] */
21102 /* Parse a class-name.
21104 class-name:
21105 identifier
21106 template-id
21108 TYPENAME_KEYWORD_P is true iff the `typename' keyword has been used
21109 to indicate that names looked up in dependent types should be
21110 assumed to be types. TEMPLATE_KEYWORD_P is true iff the `template'
21111 keyword has been used to indicate that the name that appears next
21112 is a template. TAG_TYPE indicates the explicit tag given before
21113 the type name, if any. If CHECK_DEPENDENCY_P is FALSE, names are
21114 looked up in dependent scopes. If CLASS_HEAD_P is TRUE, this class
21115 is the class being defined in a class-head. If ENUM_OK is TRUE,
21116 enum-names are also accepted.
21118 Returns the TYPE_DECL representing the class. */
21120 static tree
21121 cp_parser_class_name (cp_parser *parser,
21122 bool typename_keyword_p,
21123 bool template_keyword_p,
21124 enum tag_types tag_type,
21125 bool check_dependency_p,
21126 bool class_head_p,
21127 bool is_declaration,
21128 bool enum_ok)
21130 tree decl;
21131 tree scope;
21132 bool typename_p;
21133 cp_token *token;
21134 tree identifier = NULL_TREE;
21136 /* All class-names start with an identifier. */
21137 token = cp_lexer_peek_token (parser->lexer);
21138 if (token->type != CPP_NAME && token->type != CPP_TEMPLATE_ID)
21140 cp_parser_error (parser, "expected class-name");
21141 return error_mark_node;
21144 /* PARSER->SCOPE can be cleared when parsing the template-arguments
21145 to a template-id, so we save it here. */
21146 scope = parser->scope;
21147 if (scope == error_mark_node)
21148 return error_mark_node;
21150 /* Any name names a type if we're following the `typename' keyword
21151 in a qualified name where the enclosing scope is type-dependent. */
21152 typename_p = (typename_keyword_p && scope && TYPE_P (scope)
21153 && dependent_type_p (scope));
21154 /* Handle the common case (an identifier, but not a template-id)
21155 efficiently. */
21156 if (token->type == CPP_NAME
21157 && !cp_parser_nth_token_starts_template_argument_list_p (parser, 2))
21159 cp_token *identifier_token;
21160 bool ambiguous_p;
21162 /* Look for the identifier. */
21163 identifier_token = cp_lexer_peek_token (parser->lexer);
21164 ambiguous_p = identifier_token->error_reported;
21165 identifier = cp_parser_identifier (parser);
21166 /* If the next token isn't an identifier, we are certainly not
21167 looking at a class-name. */
21168 if (identifier == error_mark_node)
21169 decl = error_mark_node;
21170 /* If we know this is a type-name, there's no need to look it
21171 up. */
21172 else if (typename_p)
21173 decl = identifier;
21174 else
21176 tree ambiguous_decls;
21177 /* If we already know that this lookup is ambiguous, then
21178 we've already issued an error message; there's no reason
21179 to check again. */
21180 if (ambiguous_p)
21182 cp_parser_simulate_error (parser);
21183 return error_mark_node;
21185 /* If the next token is a `::', then the name must be a type
21186 name.
21188 [basic.lookup.qual]
21190 During the lookup for a name preceding the :: scope
21191 resolution operator, object, function, and enumerator
21192 names are ignored. */
21193 if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
21194 tag_type = scope_type;
21195 /* Look up the name. */
21196 decl = cp_parser_lookup_name (parser, identifier,
21197 tag_type,
21198 /*is_template=*/false,
21199 /*is_namespace=*/false,
21200 check_dependency_p,
21201 &ambiguous_decls,
21202 identifier_token->location);
21203 if (ambiguous_decls)
21205 if (cp_parser_parsing_tentatively (parser))
21206 cp_parser_simulate_error (parser);
21207 return error_mark_node;
21211 else
21213 /* Try a template-id. */
21214 decl = cp_parser_template_id (parser, template_keyword_p,
21215 check_dependency_p,
21216 tag_type,
21217 is_declaration);
21218 if (decl == error_mark_node)
21219 return error_mark_node;
21222 decl = cp_parser_maybe_treat_template_as_class (decl, class_head_p);
21224 /* If this is a typename, create a TYPENAME_TYPE. */
21225 if (typename_p && decl != error_mark_node)
21227 decl = make_typename_type (scope, decl, typename_type,
21228 /*complain=*/tf_error);
21229 if (decl != error_mark_node)
21230 decl = TYPE_NAME (decl);
21233 decl = strip_using_decl (decl);
21235 /* Check to see that it is really the name of a class. */
21236 if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
21237 && identifier_p (TREE_OPERAND (decl, 0))
21238 && cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
21239 /* Situations like this:
21241 template <typename T> struct A {
21242 typename T::template X<int>::I i;
21245 are problematic. Is `T::template X<int>' a class-name? The
21246 standard does not seem to be definitive, but there is no other
21247 valid interpretation of the following `::'. Therefore, those
21248 names are considered class-names. */
21250 decl = make_typename_type (scope, decl, tag_type, tf_error);
21251 if (decl != error_mark_node)
21252 decl = TYPE_NAME (decl);
21254 else if (TREE_CODE (decl) != TYPE_DECL
21255 || TREE_TYPE (decl) == error_mark_node
21256 || !(MAYBE_CLASS_TYPE_P (TREE_TYPE (decl))
21257 || (enum_ok && TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE))
21258 /* In Objective-C 2.0, a classname followed by '.' starts a
21259 dot-syntax expression, and it's not a type-name. */
21260 || (c_dialect_objc ()
21261 && cp_lexer_peek_token (parser->lexer)->type == CPP_DOT
21262 && objc_is_class_name (decl)))
21263 decl = error_mark_node;
21265 if (decl == error_mark_node)
21266 cp_parser_error (parser, "expected class-name");
21267 else if (identifier && !parser->scope)
21268 maybe_note_name_used_in_class (identifier, decl);
21270 return decl;
21273 /* Parse a class-specifier.
21275 class-specifier:
21276 class-head { member-specification [opt] }
21278 Returns the TREE_TYPE representing the class. */
21280 static tree
21281 cp_parser_class_specifier_1 (cp_parser* parser)
21283 tree type;
21284 tree attributes = NULL_TREE;
21285 bool nested_name_specifier_p;
21286 unsigned saved_num_template_parameter_lists;
21287 bool saved_in_function_body;
21288 unsigned char in_statement;
21289 bool in_switch_statement_p;
21290 bool saved_in_unbraced_linkage_specification_p;
21291 tree old_scope = NULL_TREE;
21292 tree scope = NULL_TREE;
21293 cp_token *closing_brace;
21295 push_deferring_access_checks (dk_no_deferred);
21297 /* Parse the class-head. */
21298 type = cp_parser_class_head (parser,
21299 &nested_name_specifier_p);
21300 /* If the class-head was a semantic disaster, skip the entire body
21301 of the class. */
21302 if (!type)
21304 cp_parser_skip_to_end_of_block_or_statement (parser);
21305 pop_deferring_access_checks ();
21306 return error_mark_node;
21309 /* Look for the `{'. */
21310 if (!cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
21312 pop_deferring_access_checks ();
21313 return error_mark_node;
21316 cp_ensure_no_omp_declare_simd (parser);
21317 cp_ensure_no_oacc_routine (parser);
21319 /* Issue an error message if type-definitions are forbidden here. */
21320 cp_parser_check_type_definition (parser);
21321 /* Remember that we are defining one more class. */
21322 ++parser->num_classes_being_defined;
21323 /* Inside the class, surrounding template-parameter-lists do not
21324 apply. */
21325 saved_num_template_parameter_lists
21326 = parser->num_template_parameter_lists;
21327 parser->num_template_parameter_lists = 0;
21328 /* We are not in a function body. */
21329 saved_in_function_body = parser->in_function_body;
21330 parser->in_function_body = false;
21331 /* Or in a loop. */
21332 in_statement = parser->in_statement;
21333 parser->in_statement = 0;
21334 /* Or in a switch. */
21335 in_switch_statement_p = parser->in_switch_statement_p;
21336 parser->in_switch_statement_p = false;
21337 /* We are not immediately inside an extern "lang" block. */
21338 saved_in_unbraced_linkage_specification_p
21339 = parser->in_unbraced_linkage_specification_p;
21340 parser->in_unbraced_linkage_specification_p = false;
21342 // Associate constraints with the type.
21343 if (flag_concepts)
21344 type = associate_classtype_constraints (type);
21346 /* Start the class. */
21347 if (nested_name_specifier_p)
21349 scope = CP_DECL_CONTEXT (TYPE_MAIN_DECL (type));
21350 old_scope = push_inner_scope (scope);
21352 type = begin_class_definition (type);
21354 if (type == error_mark_node)
21355 /* If the type is erroneous, skip the entire body of the class. */
21356 cp_parser_skip_to_closing_brace (parser);
21357 else
21358 /* Parse the member-specification. */
21359 cp_parser_member_specification_opt (parser);
21361 /* Look for the trailing `}'. */
21362 closing_brace = cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
21363 /* Look for trailing attributes to apply to this class. */
21364 if (cp_parser_allow_gnu_extensions_p (parser))
21365 attributes = cp_parser_gnu_attributes_opt (parser);
21366 if (type != error_mark_node)
21367 type = finish_struct (type, attributes);
21368 if (nested_name_specifier_p)
21369 pop_inner_scope (old_scope, scope);
21371 /* We've finished a type definition. Check for the common syntax
21372 error of forgetting a semicolon after the definition. We need to
21373 be careful, as we can't just check for not-a-semicolon and be done
21374 with it; the user might have typed:
21376 class X { } c = ...;
21377 class X { } *p = ...;
21379 and so forth. Instead, enumerate all the possible tokens that
21380 might follow this production; if we don't see one of them, then
21381 complain and silently insert the semicolon. */
21383 cp_token *token = cp_lexer_peek_token (parser->lexer);
21384 bool want_semicolon = true;
21386 if (cp_next_tokens_can_be_std_attribute_p (parser))
21387 /* Don't try to parse c++11 attributes here. As per the
21388 grammar, that should be a task for
21389 cp_parser_decl_specifier_seq. */
21390 want_semicolon = false;
21392 switch (token->type)
21394 case CPP_NAME:
21395 case CPP_SEMICOLON:
21396 case CPP_MULT:
21397 case CPP_AND:
21398 case CPP_OPEN_PAREN:
21399 case CPP_CLOSE_PAREN:
21400 case CPP_COMMA:
21401 want_semicolon = false;
21402 break;
21404 /* While it's legal for type qualifiers and storage class
21405 specifiers to follow type definitions in the grammar, only
21406 compiler testsuites contain code like that. Assume that if
21407 we see such code, then what we're really seeing is a case
21408 like:
21410 class X { }
21411 const <type> var = ...;
21415 class Y { }
21416 static <type> func (...) ...
21418 i.e. the qualifier or specifier applies to the next
21419 declaration. To do so, however, we need to look ahead one
21420 more token to see if *that* token is a type specifier.
21422 This code could be improved to handle:
21424 class Z { }
21425 static const <type> var = ...; */
21426 case CPP_KEYWORD:
21427 if (keyword_is_decl_specifier (token->keyword))
21429 cp_token *lookahead = cp_lexer_peek_nth_token (parser->lexer, 2);
21431 /* Handling user-defined types here would be nice, but very
21432 tricky. */
21433 want_semicolon
21434 = (lookahead->type == CPP_KEYWORD
21435 && keyword_begins_type_specifier (lookahead->keyword));
21437 break;
21438 default:
21439 break;
21442 /* If we don't have a type, then something is very wrong and we
21443 shouldn't try to do anything clever. Likewise for not seeing the
21444 closing brace. */
21445 if (closing_brace && TYPE_P (type) && want_semicolon)
21447 cp_token_position prev
21448 = cp_lexer_previous_token_position (parser->lexer);
21449 cp_token *prev_token = cp_lexer_token_at (parser->lexer, prev);
21450 location_t loc = prev_token->location;
21452 if (CLASSTYPE_DECLARED_CLASS (type))
21453 error_at (loc, "expected %<;%> after class definition");
21454 else if (TREE_CODE (type) == RECORD_TYPE)
21455 error_at (loc, "expected %<;%> after struct definition");
21456 else if (TREE_CODE (type) == UNION_TYPE)
21457 error_at (loc, "expected %<;%> after union definition");
21458 else
21459 gcc_unreachable ();
21461 /* Unget one token and smash it to look as though we encountered
21462 a semicolon in the input stream. */
21463 cp_lexer_set_token_position (parser->lexer, prev);
21464 token = cp_lexer_peek_token (parser->lexer);
21465 token->type = CPP_SEMICOLON;
21466 token->keyword = RID_MAX;
21470 /* If this class is not itself within the scope of another class,
21471 then we need to parse the bodies of all of the queued function
21472 definitions. Note that the queued functions defined in a class
21473 are not always processed immediately following the
21474 class-specifier for that class. Consider:
21476 struct A {
21477 struct B { void f() { sizeof (A); } };
21480 If `f' were processed before the processing of `A' were
21481 completed, there would be no way to compute the size of `A'.
21482 Note that the nesting we are interested in here is lexical --
21483 not the semantic nesting given by TYPE_CONTEXT. In particular,
21484 for:
21486 struct A { struct B; };
21487 struct A::B { void f() { } };
21489 there is no need to delay the parsing of `A::B::f'. */
21490 if (--parser->num_classes_being_defined == 0)
21492 tree decl;
21493 tree class_type = NULL_TREE;
21494 tree pushed_scope = NULL_TREE;
21495 unsigned ix;
21496 cp_default_arg_entry *e;
21497 tree save_ccp, save_ccr;
21499 /* In a first pass, parse default arguments to the functions.
21500 Then, in a second pass, parse the bodies of the functions.
21501 This two-phased approach handles cases like:
21503 struct S {
21504 void f() { g(); }
21505 void g(int i = 3);
21509 FOR_EACH_VEC_SAFE_ELT (unparsed_funs_with_default_args, ix, e)
21511 decl = e->decl;
21512 /* If there are default arguments that have not yet been processed,
21513 take care of them now. */
21514 if (class_type != e->class_type)
21516 if (pushed_scope)
21517 pop_scope (pushed_scope);
21518 class_type = e->class_type;
21519 pushed_scope = push_scope (class_type);
21521 /* Make sure that any template parameters are in scope. */
21522 maybe_begin_member_template_processing (decl);
21523 /* Parse the default argument expressions. */
21524 cp_parser_late_parsing_default_args (parser, decl);
21525 /* Remove any template parameters from the symbol table. */
21526 maybe_end_member_template_processing ();
21528 vec_safe_truncate (unparsed_funs_with_default_args, 0);
21529 /* Now parse any NSDMIs. */
21530 save_ccp = current_class_ptr;
21531 save_ccr = current_class_ref;
21532 FOR_EACH_VEC_SAFE_ELT (unparsed_nsdmis, ix, decl)
21534 if (class_type != DECL_CONTEXT (decl))
21536 if (pushed_scope)
21537 pop_scope (pushed_scope);
21538 class_type = DECL_CONTEXT (decl);
21539 pushed_scope = push_scope (class_type);
21541 inject_this_parameter (class_type, TYPE_UNQUALIFIED);
21542 cp_parser_late_parsing_nsdmi (parser, decl);
21544 vec_safe_truncate (unparsed_nsdmis, 0);
21545 current_class_ptr = save_ccp;
21546 current_class_ref = save_ccr;
21547 if (pushed_scope)
21548 pop_scope (pushed_scope);
21550 /* Now do some post-NSDMI bookkeeping. */
21551 FOR_EACH_VEC_SAFE_ELT (unparsed_classes, ix, class_type)
21552 after_nsdmi_defaulted_late_checks (class_type);
21553 vec_safe_truncate (unparsed_classes, 0);
21554 after_nsdmi_defaulted_late_checks (type);
21556 /* Now parse the body of the functions. */
21557 if (flag_openmp)
21559 /* OpenMP UDRs need to be parsed before all other functions. */
21560 FOR_EACH_VEC_SAFE_ELT (unparsed_funs_with_definitions, ix, decl)
21561 if (DECL_OMP_DECLARE_REDUCTION_P (decl))
21562 cp_parser_late_parsing_for_member (parser, decl);
21563 FOR_EACH_VEC_SAFE_ELT (unparsed_funs_with_definitions, ix, decl)
21564 if (!DECL_OMP_DECLARE_REDUCTION_P (decl))
21565 cp_parser_late_parsing_for_member (parser, decl);
21567 else
21568 FOR_EACH_VEC_SAFE_ELT (unparsed_funs_with_definitions, ix, decl)
21569 cp_parser_late_parsing_for_member (parser, decl);
21570 vec_safe_truncate (unparsed_funs_with_definitions, 0);
21572 else
21573 vec_safe_push (unparsed_classes, type);
21575 /* Put back any saved access checks. */
21576 pop_deferring_access_checks ();
21578 /* Restore saved state. */
21579 parser->in_switch_statement_p = in_switch_statement_p;
21580 parser->in_statement = in_statement;
21581 parser->in_function_body = saved_in_function_body;
21582 parser->num_template_parameter_lists
21583 = saved_num_template_parameter_lists;
21584 parser->in_unbraced_linkage_specification_p
21585 = saved_in_unbraced_linkage_specification_p;
21587 return type;
21590 static tree
21591 cp_parser_class_specifier (cp_parser* parser)
21593 tree ret;
21594 timevar_push (TV_PARSE_STRUCT);
21595 ret = cp_parser_class_specifier_1 (parser);
21596 timevar_pop (TV_PARSE_STRUCT);
21597 return ret;
21600 /* Parse a class-head.
21602 class-head:
21603 class-key identifier [opt] base-clause [opt]
21604 class-key nested-name-specifier identifier class-virt-specifier [opt] base-clause [opt]
21605 class-key nested-name-specifier [opt] template-id
21606 base-clause [opt]
21608 class-virt-specifier:
21609 final
21611 GNU Extensions:
21612 class-key attributes identifier [opt] base-clause [opt]
21613 class-key attributes nested-name-specifier identifier base-clause [opt]
21614 class-key attributes nested-name-specifier [opt] template-id
21615 base-clause [opt]
21617 Upon return BASES is initialized to the list of base classes (or
21618 NULL, if there are none) in the same form returned by
21619 cp_parser_base_clause.
21621 Returns the TYPE of the indicated class. Sets
21622 *NESTED_NAME_SPECIFIER_P to TRUE iff one of the productions
21623 involving a nested-name-specifier was used, and FALSE otherwise.
21625 Returns error_mark_node if this is not a class-head.
21627 Returns NULL_TREE if the class-head is syntactically valid, but
21628 semantically invalid in a way that means we should skip the entire
21629 body of the class. */
21631 static tree
21632 cp_parser_class_head (cp_parser* parser,
21633 bool* nested_name_specifier_p)
21635 tree nested_name_specifier;
21636 enum tag_types class_key;
21637 tree id = NULL_TREE;
21638 tree type = NULL_TREE;
21639 tree attributes;
21640 tree bases;
21641 cp_virt_specifiers virt_specifiers = VIRT_SPEC_UNSPECIFIED;
21642 bool template_id_p = false;
21643 bool qualified_p = false;
21644 bool invalid_nested_name_p = false;
21645 bool invalid_explicit_specialization_p = false;
21646 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
21647 tree pushed_scope = NULL_TREE;
21648 unsigned num_templates;
21649 cp_token *type_start_token = NULL, *nested_name_specifier_token_start = NULL;
21650 /* Assume no nested-name-specifier will be present. */
21651 *nested_name_specifier_p = false;
21652 /* Assume no template parameter lists will be used in defining the
21653 type. */
21654 num_templates = 0;
21655 parser->colon_corrects_to_scope_p = false;
21657 /* Look for the class-key. */
21658 class_key = cp_parser_class_key (parser);
21659 if (class_key == none_type)
21660 return error_mark_node;
21662 location_t class_head_start_location = input_location;
21664 /* Parse the attributes. */
21665 attributes = cp_parser_attributes_opt (parser);
21667 /* If the next token is `::', that is invalid -- but sometimes
21668 people do try to write:
21670 struct ::S {};
21672 Handle this gracefully by accepting the extra qualifier, and then
21673 issuing an error about it later if this really is a
21674 class-head. If it turns out just to be an elaborated type
21675 specifier, remain silent. */
21676 if (cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/false))
21677 qualified_p = true;
21679 push_deferring_access_checks (dk_no_check);
21681 /* Determine the name of the class. Begin by looking for an
21682 optional nested-name-specifier. */
21683 nested_name_specifier_token_start = cp_lexer_peek_token (parser->lexer);
21684 nested_name_specifier
21685 = cp_parser_nested_name_specifier_opt (parser,
21686 /*typename_keyword_p=*/false,
21687 /*check_dependency_p=*/false,
21688 /*type_p=*/true,
21689 /*is_declaration=*/false);
21690 /* If there was a nested-name-specifier, then there *must* be an
21691 identifier. */
21692 if (nested_name_specifier)
21694 type_start_token = cp_lexer_peek_token (parser->lexer);
21695 /* Although the grammar says `identifier', it really means
21696 `class-name' or `template-name'. You are only allowed to
21697 define a class that has already been declared with this
21698 syntax.
21700 The proposed resolution for Core Issue 180 says that wherever
21701 you see `class T::X' you should treat `X' as a type-name.
21703 It is OK to define an inaccessible class; for example:
21705 class A { class B; };
21706 class A::B {};
21708 We do not know if we will see a class-name, or a
21709 template-name. We look for a class-name first, in case the
21710 class-name is a template-id; if we looked for the
21711 template-name first we would stop after the template-name. */
21712 cp_parser_parse_tentatively (parser);
21713 type = cp_parser_class_name (parser,
21714 /*typename_keyword_p=*/false,
21715 /*template_keyword_p=*/false,
21716 class_type,
21717 /*check_dependency_p=*/false,
21718 /*class_head_p=*/true,
21719 /*is_declaration=*/false);
21720 /* If that didn't work, ignore the nested-name-specifier. */
21721 if (!cp_parser_parse_definitely (parser))
21723 invalid_nested_name_p = true;
21724 type_start_token = cp_lexer_peek_token (parser->lexer);
21725 id = cp_parser_identifier (parser);
21726 if (id == error_mark_node)
21727 id = NULL_TREE;
21729 /* If we could not find a corresponding TYPE, treat this
21730 declaration like an unqualified declaration. */
21731 if (type == error_mark_node)
21732 nested_name_specifier = NULL_TREE;
21733 /* Otherwise, count the number of templates used in TYPE and its
21734 containing scopes. */
21735 else
21737 tree scope;
21739 for (scope = TREE_TYPE (type);
21740 scope && TREE_CODE (scope) != NAMESPACE_DECL;
21741 scope = get_containing_scope (scope))
21742 if (TYPE_P (scope)
21743 && CLASS_TYPE_P (scope)
21744 && CLASSTYPE_TEMPLATE_INFO (scope)
21745 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (scope))
21746 && (!CLASSTYPE_TEMPLATE_SPECIALIZATION (scope)
21747 || uses_template_parms (CLASSTYPE_TI_ARGS (scope))))
21748 ++num_templates;
21751 /* Otherwise, the identifier is optional. */
21752 else
21754 /* We don't know whether what comes next is a template-id,
21755 an identifier, or nothing at all. */
21756 cp_parser_parse_tentatively (parser);
21757 /* Check for a template-id. */
21758 type_start_token = cp_lexer_peek_token (parser->lexer);
21759 id = cp_parser_template_id (parser,
21760 /*template_keyword_p=*/false,
21761 /*check_dependency_p=*/true,
21762 class_key,
21763 /*is_declaration=*/true);
21764 /* If that didn't work, it could still be an identifier. */
21765 if (!cp_parser_parse_definitely (parser))
21767 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
21769 type_start_token = cp_lexer_peek_token (parser->lexer);
21770 id = cp_parser_identifier (parser);
21772 else
21773 id = NULL_TREE;
21775 else
21777 template_id_p = true;
21778 ++num_templates;
21782 pop_deferring_access_checks ();
21784 if (id)
21786 cp_parser_check_for_invalid_template_id (parser, id,
21787 class_key,
21788 type_start_token->location);
21790 virt_specifiers = cp_parser_virt_specifier_seq_opt (parser);
21792 /* If it's not a `:' or a `{' then we can't really be looking at a
21793 class-head, since a class-head only appears as part of a
21794 class-specifier. We have to detect this situation before calling
21795 xref_tag, since that has irreversible side-effects. */
21796 if (!cp_parser_next_token_starts_class_definition_p (parser))
21798 cp_parser_error (parser, "expected %<{%> or %<:%>");
21799 type = error_mark_node;
21800 goto out;
21803 /* At this point, we're going ahead with the class-specifier, even
21804 if some other problem occurs. */
21805 cp_parser_commit_to_tentative_parse (parser);
21806 if (virt_specifiers & VIRT_SPEC_OVERRIDE)
21808 cp_parser_error (parser,
21809 "cannot specify %<override%> for a class");
21810 type = error_mark_node;
21811 goto out;
21813 /* Issue the error about the overly-qualified name now. */
21814 if (qualified_p)
21816 cp_parser_error (parser,
21817 "global qualification of class name is invalid");
21818 type = error_mark_node;
21819 goto out;
21821 else if (invalid_nested_name_p)
21823 cp_parser_error (parser,
21824 "qualified name does not name a class");
21825 type = error_mark_node;
21826 goto out;
21828 else if (nested_name_specifier)
21830 tree scope;
21832 /* Reject typedef-names in class heads. */
21833 if (!DECL_IMPLICIT_TYPEDEF_P (type))
21835 error_at (type_start_token->location,
21836 "invalid class name in declaration of %qD",
21837 type);
21838 type = NULL_TREE;
21839 goto done;
21842 /* Figure out in what scope the declaration is being placed. */
21843 scope = current_scope ();
21844 /* If that scope does not contain the scope in which the
21845 class was originally declared, the program is invalid. */
21846 if (scope && !is_ancestor (scope, nested_name_specifier))
21848 if (at_namespace_scope_p ())
21849 error_at (type_start_token->location,
21850 "declaration of %qD in namespace %qD which does not "
21851 "enclose %qD",
21852 type, scope, nested_name_specifier);
21853 else
21854 error_at (type_start_token->location,
21855 "declaration of %qD in %qD which does not enclose %qD",
21856 type, scope, nested_name_specifier);
21857 type = NULL_TREE;
21858 goto done;
21860 /* [dcl.meaning]
21862 A declarator-id shall not be qualified except for the
21863 definition of a ... nested class outside of its class
21864 ... [or] the definition or explicit instantiation of a
21865 class member of a namespace outside of its namespace. */
21866 if (scope == nested_name_specifier)
21868 permerror (nested_name_specifier_token_start->location,
21869 "extra qualification not allowed");
21870 nested_name_specifier = NULL_TREE;
21871 num_templates = 0;
21874 /* An explicit-specialization must be preceded by "template <>". If
21875 it is not, try to recover gracefully. */
21876 if (at_namespace_scope_p ()
21877 && parser->num_template_parameter_lists == 0
21878 && template_id_p)
21880 /* Build a location of this form:
21881 struct typename <ARGS>
21882 ^~~~~~~~~~~~~~~~~~~~~~
21883 with caret==start at the start token, and
21884 finishing at the end of the type. */
21885 location_t reported_loc
21886 = make_location (class_head_start_location,
21887 class_head_start_location,
21888 get_finish (type_start_token->location));
21889 rich_location richloc (line_table, reported_loc);
21890 richloc.add_fixit_insert (class_head_start_location, "template <> ");
21891 error_at_rich_loc
21892 (&richloc,
21893 "an explicit specialization must be preceded by %<template <>%>");
21894 invalid_explicit_specialization_p = true;
21895 /* Take the same action that would have been taken by
21896 cp_parser_explicit_specialization. */
21897 ++parser->num_template_parameter_lists;
21898 begin_specialization ();
21900 /* There must be no "return" statements between this point and the
21901 end of this function; set "type "to the correct return value and
21902 use "goto done;" to return. */
21903 /* Make sure that the right number of template parameters were
21904 present. */
21905 if (!cp_parser_check_template_parameters (parser, num_templates,
21906 type_start_token->location,
21907 /*declarator=*/NULL))
21909 /* If something went wrong, there is no point in even trying to
21910 process the class-definition. */
21911 type = NULL_TREE;
21912 goto done;
21915 /* Look up the type. */
21916 if (template_id_p)
21918 if (TREE_CODE (id) == TEMPLATE_ID_EXPR
21919 && (DECL_FUNCTION_TEMPLATE_P (TREE_OPERAND (id, 0))
21920 || TREE_CODE (TREE_OPERAND (id, 0)) == OVERLOAD))
21922 error_at (type_start_token->location,
21923 "function template %qD redeclared as a class template", id);
21924 type = error_mark_node;
21926 else
21928 type = TREE_TYPE (id);
21929 type = maybe_process_partial_specialization (type);
21931 if (nested_name_specifier)
21932 pushed_scope = push_scope (nested_name_specifier);
21934 else if (nested_name_specifier)
21936 tree class_type;
21938 /* Given:
21940 template <typename T> struct S { struct T };
21941 template <typename T> struct S<T>::T { };
21943 we will get a TYPENAME_TYPE when processing the definition of
21944 `S::T'. We need to resolve it to the actual type before we
21945 try to define it. */
21946 if (TREE_CODE (TREE_TYPE (type)) == TYPENAME_TYPE)
21948 class_type = resolve_typename_type (TREE_TYPE (type),
21949 /*only_current_p=*/false);
21950 if (TREE_CODE (class_type) != TYPENAME_TYPE)
21951 type = TYPE_NAME (class_type);
21952 else
21954 cp_parser_error (parser, "could not resolve typename type");
21955 type = error_mark_node;
21959 if (maybe_process_partial_specialization (TREE_TYPE (type))
21960 == error_mark_node)
21962 type = NULL_TREE;
21963 goto done;
21966 class_type = current_class_type;
21967 /* Enter the scope indicated by the nested-name-specifier. */
21968 pushed_scope = push_scope (nested_name_specifier);
21969 /* Get the canonical version of this type. */
21970 type = TYPE_MAIN_DECL (TREE_TYPE (type));
21971 /* Call push_template_decl if it seems like we should be defining a
21972 template either from the template headers or the type we're
21973 defining, so that we diagnose both extra and missing headers. */
21974 if ((PROCESSING_REAL_TEMPLATE_DECL_P ()
21975 || CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (type)))
21976 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (type)))
21978 type = push_template_decl (type);
21979 if (type == error_mark_node)
21981 type = NULL_TREE;
21982 goto done;
21986 type = TREE_TYPE (type);
21987 *nested_name_specifier_p = true;
21989 else /* The name is not a nested name. */
21991 /* If the class was unnamed, create a dummy name. */
21992 if (!id)
21993 id = make_anon_name ();
21994 type = xref_tag (class_key, id, /*tag_scope=*/ts_current,
21995 parser->num_template_parameter_lists);
21998 /* Indicate whether this class was declared as a `class' or as a
21999 `struct'. */
22000 if (TREE_CODE (type) == RECORD_TYPE)
22001 CLASSTYPE_DECLARED_CLASS (type) = (class_key == class_type);
22002 cp_parser_check_class_key (class_key, type);
22004 /* If this type was already complete, and we see another definition,
22005 that's an error. */
22006 if (type != error_mark_node && COMPLETE_TYPE_P (type))
22008 error_at (type_start_token->location, "redefinition of %q#T",
22009 type);
22010 error_at (type_start_token->location, "previous definition of %q+#T",
22011 type);
22012 type = NULL_TREE;
22013 goto done;
22015 else if (type == error_mark_node)
22016 type = NULL_TREE;
22018 if (type)
22020 /* Apply attributes now, before any use of the class as a template
22021 argument in its base list. */
22022 cplus_decl_attributes (&type, attributes, (int)ATTR_FLAG_TYPE_IN_PLACE);
22023 fixup_attribute_variants (type);
22026 /* We will have entered the scope containing the class; the names of
22027 base classes should be looked up in that context. For example:
22029 struct A { struct B {}; struct C; };
22030 struct A::C : B {};
22032 is valid. */
22034 /* Get the list of base-classes, if there is one. */
22035 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
22037 /* PR59482: enter the class scope so that base-specifiers are looked
22038 up correctly. */
22039 if (type)
22040 pushclass (type);
22041 bases = cp_parser_base_clause (parser);
22042 /* PR59482: get out of the previously pushed class scope so that the
22043 subsequent pops pop the right thing. */
22044 if (type)
22045 popclass ();
22047 else
22048 bases = NULL_TREE;
22050 /* If we're really defining a class, process the base classes.
22051 If they're invalid, fail. */
22052 if (type && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE)
22053 && !xref_basetypes (type, bases))
22054 type = NULL_TREE;
22056 done:
22057 /* Leave the scope given by the nested-name-specifier. We will
22058 enter the class scope itself while processing the members. */
22059 if (pushed_scope)
22060 pop_scope (pushed_scope);
22062 if (invalid_explicit_specialization_p)
22064 end_specialization ();
22065 --parser->num_template_parameter_lists;
22068 if (type)
22069 DECL_SOURCE_LOCATION (TYPE_NAME (type)) = type_start_token->location;
22070 if (type && (virt_specifiers & VIRT_SPEC_FINAL))
22071 CLASSTYPE_FINAL (type) = 1;
22072 out:
22073 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
22074 return type;
22077 /* Parse a class-key.
22079 class-key:
22080 class
22081 struct
22082 union
22084 Returns the kind of class-key specified, or none_type to indicate
22085 error. */
22087 static enum tag_types
22088 cp_parser_class_key (cp_parser* parser)
22090 cp_token *token;
22091 enum tag_types tag_type;
22093 /* Look for the class-key. */
22094 token = cp_parser_require (parser, CPP_KEYWORD, RT_CLASS_KEY);
22095 if (!token)
22096 return none_type;
22098 /* Check to see if the TOKEN is a class-key. */
22099 tag_type = cp_parser_token_is_class_key (token);
22100 if (!tag_type)
22101 cp_parser_error (parser, "expected class-key");
22102 return tag_type;
22105 /* Parse a type-parameter-key.
22107 type-parameter-key:
22108 class
22109 typename
22112 static void
22113 cp_parser_type_parameter_key (cp_parser* parser)
22115 /* Look for the type-parameter-key. */
22116 enum tag_types tag_type = none_type;
22117 cp_token *token = cp_lexer_peek_token (parser->lexer);
22118 if ((tag_type = cp_parser_token_is_type_parameter_key (token)) != none_type)
22120 cp_lexer_consume_token (parser->lexer);
22121 if (pedantic && tag_type == typename_type && cxx_dialect < cxx1z)
22122 /* typename is not allowed in a template template parameter
22123 by the standard until C++1Z. */
22124 pedwarn (token->location, OPT_Wpedantic,
22125 "ISO C++ forbids typename key in template template parameter;"
22126 " use -std=c++1z or -std=gnu++1z");
22128 else
22129 cp_parser_error (parser, "expected %<class%> or %<typename%>");
22131 return;
22134 /* Parse an (optional) member-specification.
22136 member-specification:
22137 member-declaration member-specification [opt]
22138 access-specifier : member-specification [opt] */
22140 static void
22141 cp_parser_member_specification_opt (cp_parser* parser)
22143 while (true)
22145 cp_token *token;
22146 enum rid keyword;
22148 /* Peek at the next token. */
22149 token = cp_lexer_peek_token (parser->lexer);
22150 /* If it's a `}', or EOF then we've seen all the members. */
22151 if (token->type == CPP_CLOSE_BRACE
22152 || token->type == CPP_EOF
22153 || token->type == CPP_PRAGMA_EOL)
22154 break;
22156 /* See if this token is a keyword. */
22157 keyword = token->keyword;
22158 switch (keyword)
22160 case RID_PUBLIC:
22161 case RID_PROTECTED:
22162 case RID_PRIVATE:
22163 /* Consume the access-specifier. */
22164 cp_lexer_consume_token (parser->lexer);
22165 /* Remember which access-specifier is active. */
22166 current_access_specifier = token->u.value;
22167 /* Look for the `:'. */
22168 cp_parser_require (parser, CPP_COLON, RT_COLON);
22169 break;
22171 default:
22172 /* Accept #pragmas at class scope. */
22173 if (token->type == CPP_PRAGMA)
22175 cp_parser_pragma (parser, pragma_member, NULL);
22176 break;
22179 /* Otherwise, the next construction must be a
22180 member-declaration. */
22181 cp_parser_member_declaration (parser);
22186 /* Parse a member-declaration.
22188 member-declaration:
22189 decl-specifier-seq [opt] member-declarator-list [opt] ;
22190 function-definition ; [opt]
22191 :: [opt] nested-name-specifier template [opt] unqualified-id ;
22192 using-declaration
22193 template-declaration
22194 alias-declaration
22196 member-declarator-list:
22197 member-declarator
22198 member-declarator-list , member-declarator
22200 member-declarator:
22201 declarator pure-specifier [opt]
22202 declarator constant-initializer [opt]
22203 identifier [opt] : constant-expression
22205 GNU Extensions:
22207 member-declaration:
22208 __extension__ member-declaration
22210 member-declarator:
22211 declarator attributes [opt] pure-specifier [opt]
22212 declarator attributes [opt] constant-initializer [opt]
22213 identifier [opt] attributes [opt] : constant-expression
22215 C++0x Extensions:
22217 member-declaration:
22218 static_assert-declaration */
22220 static void
22221 cp_parser_member_declaration (cp_parser* parser)
22223 cp_decl_specifier_seq decl_specifiers;
22224 tree prefix_attributes;
22225 tree decl;
22226 int declares_class_or_enum;
22227 bool friend_p;
22228 cp_token *token = NULL;
22229 cp_token *decl_spec_token_start = NULL;
22230 cp_token *initializer_token_start = NULL;
22231 int saved_pedantic;
22232 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
22234 /* Check for the `__extension__' keyword. */
22235 if (cp_parser_extension_opt (parser, &saved_pedantic))
22237 /* Recurse. */
22238 cp_parser_member_declaration (parser);
22239 /* Restore the old value of the PEDANTIC flag. */
22240 pedantic = saved_pedantic;
22242 return;
22245 /* Check for a template-declaration. */
22246 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
22248 /* An explicit specialization here is an error condition, and we
22249 expect the specialization handler to detect and report this. */
22250 if (cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_LESS
22251 && cp_lexer_peek_nth_token (parser->lexer, 3)->type == CPP_GREATER)
22252 cp_parser_explicit_specialization (parser);
22253 else
22254 cp_parser_template_declaration (parser, /*member_p=*/true);
22256 return;
22258 /* Check for a template introduction. */
22259 else if (cp_parser_template_declaration_after_export (parser, true))
22260 return;
22262 /* Check for a using-declaration. */
22263 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_USING))
22265 if (cxx_dialect < cxx11)
22267 /* Parse the using-declaration. */
22268 cp_parser_using_declaration (parser,
22269 /*access_declaration_p=*/false);
22270 return;
22272 else
22274 tree decl;
22275 bool alias_decl_expected;
22276 cp_parser_parse_tentatively (parser);
22277 decl = cp_parser_alias_declaration (parser);
22278 /* Note that if we actually see the '=' token after the
22279 identifier, cp_parser_alias_declaration commits the
22280 tentative parse. In that case, we really expect an
22281 alias-declaration. Otherwise, we expect a using
22282 declaration. */
22283 alias_decl_expected =
22284 !cp_parser_uncommitted_to_tentative_parse_p (parser);
22285 cp_parser_parse_definitely (parser);
22287 if (alias_decl_expected)
22288 finish_member_declaration (decl);
22289 else
22290 cp_parser_using_declaration (parser,
22291 /*access_declaration_p=*/false);
22292 return;
22296 /* Check for @defs. */
22297 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_AT_DEFS))
22299 tree ivar, member;
22300 tree ivar_chains = cp_parser_objc_defs_expression (parser);
22301 ivar = ivar_chains;
22302 while (ivar)
22304 member = ivar;
22305 ivar = TREE_CHAIN (member);
22306 TREE_CHAIN (member) = NULL_TREE;
22307 finish_member_declaration (member);
22309 return;
22312 /* If the next token is `static_assert' we have a static assertion. */
22313 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_STATIC_ASSERT))
22315 cp_parser_static_assert (parser, /*member_p=*/true);
22316 return;
22319 parser->colon_corrects_to_scope_p = false;
22321 if (cp_parser_using_declaration (parser, /*access_declaration=*/true))
22322 goto out;
22324 /* Parse the decl-specifier-seq. */
22325 decl_spec_token_start = cp_lexer_peek_token (parser->lexer);
22326 cp_parser_decl_specifier_seq (parser,
22327 CP_PARSER_FLAGS_OPTIONAL,
22328 &decl_specifiers,
22329 &declares_class_or_enum);
22330 /* Check for an invalid type-name. */
22331 if (!decl_specifiers.any_type_specifiers_p
22332 && cp_parser_parse_and_diagnose_invalid_type_name (parser))
22333 goto out;
22334 /* If there is no declarator, then the decl-specifier-seq should
22335 specify a type. */
22336 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
22338 /* If there was no decl-specifier-seq, and the next token is a
22339 `;', then we have something like:
22341 struct S { ; };
22343 [class.mem]
22345 Each member-declaration shall declare at least one member
22346 name of the class. */
22347 if (!decl_specifiers.any_specifiers_p)
22349 cp_token *token = cp_lexer_peek_token (parser->lexer);
22350 if (!in_system_header_at (token->location))
22351 pedwarn (token->location, OPT_Wpedantic, "extra %<;%>");
22353 else
22355 tree type;
22357 /* See if this declaration is a friend. */
22358 friend_p = cp_parser_friend_p (&decl_specifiers);
22359 /* If there were decl-specifiers, check to see if there was
22360 a class-declaration. */
22361 type = check_tag_decl (&decl_specifiers,
22362 /*explicit_type_instantiation_p=*/false);
22363 /* Nested classes have already been added to the class, but
22364 a `friend' needs to be explicitly registered. */
22365 if (friend_p)
22367 /* If the `friend' keyword was present, the friend must
22368 be introduced with a class-key. */
22369 if (!declares_class_or_enum && cxx_dialect < cxx11)
22370 pedwarn (decl_spec_token_start->location, OPT_Wpedantic,
22371 "in C++03 a class-key must be used "
22372 "when declaring a friend");
22373 /* In this case:
22375 template <typename T> struct A {
22376 friend struct A<T>::B;
22379 A<T>::B will be represented by a TYPENAME_TYPE, and
22380 therefore not recognized by check_tag_decl. */
22381 if (!type)
22383 type = decl_specifiers.type;
22384 if (type && TREE_CODE (type) == TYPE_DECL)
22385 type = TREE_TYPE (type);
22387 if (!type || !TYPE_P (type))
22388 error_at (decl_spec_token_start->location,
22389 "friend declaration does not name a class or "
22390 "function");
22391 else
22392 make_friend_class (current_class_type, type,
22393 /*complain=*/true);
22395 /* If there is no TYPE, an error message will already have
22396 been issued. */
22397 else if (!type || type == error_mark_node)
22399 /* An anonymous aggregate has to be handled specially; such
22400 a declaration really declares a data member (with a
22401 particular type), as opposed to a nested class. */
22402 else if (ANON_AGGR_TYPE_P (type))
22404 /* C++11 9.5/6. */
22405 if (decl_specifiers.storage_class != sc_none)
22406 error_at (decl_spec_token_start->location,
22407 "a storage class on an anonymous aggregate "
22408 "in class scope is not allowed");
22410 /* Remove constructors and such from TYPE, now that we
22411 know it is an anonymous aggregate. */
22412 fixup_anonymous_aggr (type);
22413 /* And make the corresponding data member. */
22414 decl = build_decl (decl_spec_token_start->location,
22415 FIELD_DECL, NULL_TREE, type);
22416 /* Add it to the class. */
22417 finish_member_declaration (decl);
22419 else
22420 cp_parser_check_access_in_redeclaration
22421 (TYPE_NAME (type),
22422 decl_spec_token_start->location);
22425 else
22427 bool assume_semicolon = false;
22429 /* Clear attributes from the decl_specifiers but keep them
22430 around as prefix attributes that apply them to the entity
22431 being declared. */
22432 prefix_attributes = decl_specifiers.attributes;
22433 decl_specifiers.attributes = NULL_TREE;
22435 /* See if these declarations will be friends. */
22436 friend_p = cp_parser_friend_p (&decl_specifiers);
22438 /* Keep going until we hit the `;' at the end of the
22439 declaration. */
22440 while (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
22442 tree attributes = NULL_TREE;
22443 tree first_attribute;
22445 /* Peek at the next token. */
22446 token = cp_lexer_peek_token (parser->lexer);
22448 /* Check for a bitfield declaration. */
22449 if (token->type == CPP_COLON
22450 || (token->type == CPP_NAME
22451 && cp_lexer_peek_nth_token (parser->lexer, 2)->type
22452 == CPP_COLON))
22454 tree identifier;
22455 tree width;
22457 /* Get the name of the bitfield. Note that we cannot just
22458 check TOKEN here because it may have been invalidated by
22459 the call to cp_lexer_peek_nth_token above. */
22460 if (cp_lexer_peek_token (parser->lexer)->type != CPP_COLON)
22461 identifier = cp_parser_identifier (parser);
22462 else
22463 identifier = NULL_TREE;
22465 /* Consume the `:' token. */
22466 cp_lexer_consume_token (parser->lexer);
22467 /* Get the width of the bitfield. */
22468 width
22469 = cp_parser_constant_expression (parser);
22471 /* Look for attributes that apply to the bitfield. */
22472 attributes = cp_parser_attributes_opt (parser);
22473 /* Remember which attributes are prefix attributes and
22474 which are not. */
22475 first_attribute = attributes;
22476 /* Combine the attributes. */
22477 attributes = chainon (prefix_attributes, attributes);
22479 /* Create the bitfield declaration. */
22480 decl = grokbitfield (identifier
22481 ? make_id_declarator (NULL_TREE,
22482 identifier,
22483 sfk_none)
22484 : NULL,
22485 &decl_specifiers,
22486 width,
22487 attributes);
22489 else
22491 cp_declarator *declarator;
22492 tree initializer;
22493 tree asm_specification;
22494 int ctor_dtor_or_conv_p;
22496 /* Parse the declarator. */
22497 declarator
22498 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
22499 &ctor_dtor_or_conv_p,
22500 /*parenthesized_p=*/NULL,
22501 /*member_p=*/true,
22502 friend_p);
22504 /* If something went wrong parsing the declarator, make sure
22505 that we at least consume some tokens. */
22506 if (declarator == cp_error_declarator)
22508 /* Skip to the end of the statement. */
22509 cp_parser_skip_to_end_of_statement (parser);
22510 /* If the next token is not a semicolon, that is
22511 probably because we just skipped over the body of
22512 a function. So, we consume a semicolon if
22513 present, but do not issue an error message if it
22514 is not present. */
22515 if (cp_lexer_next_token_is (parser->lexer,
22516 CPP_SEMICOLON))
22517 cp_lexer_consume_token (parser->lexer);
22518 goto out;
22521 if (declares_class_or_enum & 2)
22522 cp_parser_check_for_definition_in_return_type
22523 (declarator, decl_specifiers.type,
22524 decl_specifiers.locations[ds_type_spec]);
22526 /* Look for an asm-specification. */
22527 asm_specification = cp_parser_asm_specification_opt (parser);
22528 /* Look for attributes that apply to the declaration. */
22529 attributes = cp_parser_attributes_opt (parser);
22530 /* Remember which attributes are prefix attributes and
22531 which are not. */
22532 first_attribute = attributes;
22533 /* Combine the attributes. */
22534 attributes = chainon (prefix_attributes, attributes);
22536 /* If it's an `=', then we have a constant-initializer or a
22537 pure-specifier. It is not correct to parse the
22538 initializer before registering the member declaration
22539 since the member declaration should be in scope while
22540 its initializer is processed. However, the rest of the
22541 front end does not yet provide an interface that allows
22542 us to handle this correctly. */
22543 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
22545 /* In [class.mem]:
22547 A pure-specifier shall be used only in the declaration of
22548 a virtual function.
22550 A member-declarator can contain a constant-initializer
22551 only if it declares a static member of integral or
22552 enumeration type.
22554 Therefore, if the DECLARATOR is for a function, we look
22555 for a pure-specifier; otherwise, we look for a
22556 constant-initializer. When we call `grokfield', it will
22557 perform more stringent semantics checks. */
22558 initializer_token_start = cp_lexer_peek_token (parser->lexer);
22559 if (function_declarator_p (declarator)
22560 || (decl_specifiers.type
22561 && TREE_CODE (decl_specifiers.type) == TYPE_DECL
22562 && declarator->kind == cdk_id
22563 && (TREE_CODE (TREE_TYPE (decl_specifiers.type))
22564 == FUNCTION_TYPE)))
22565 initializer = cp_parser_pure_specifier (parser);
22566 else if (decl_specifiers.storage_class != sc_static)
22567 initializer = cp_parser_save_nsdmi (parser);
22568 else if (cxx_dialect >= cxx11)
22570 bool nonconst;
22571 /* Don't require a constant rvalue in C++11, since we
22572 might want a reference constant. We'll enforce
22573 constancy later. */
22574 cp_lexer_consume_token (parser->lexer);
22575 /* Parse the initializer. */
22576 initializer = cp_parser_initializer_clause (parser,
22577 &nonconst);
22579 else
22580 /* Parse the initializer. */
22581 initializer = cp_parser_constant_initializer (parser);
22583 else if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE)
22584 && !function_declarator_p (declarator))
22586 bool x;
22587 if (decl_specifiers.storage_class != sc_static)
22588 initializer = cp_parser_save_nsdmi (parser);
22589 else
22590 initializer = cp_parser_initializer (parser, &x, &x);
22592 /* Otherwise, there is no initializer. */
22593 else
22594 initializer = NULL_TREE;
22596 /* See if we are probably looking at a function
22597 definition. We are certainly not looking at a
22598 member-declarator. Calling `grokfield' has
22599 side-effects, so we must not do it unless we are sure
22600 that we are looking at a member-declarator. */
22601 if (cp_parser_token_starts_function_definition_p
22602 (cp_lexer_peek_token (parser->lexer)))
22604 /* The grammar does not allow a pure-specifier to be
22605 used when a member function is defined. (It is
22606 possible that this fact is an oversight in the
22607 standard, since a pure function may be defined
22608 outside of the class-specifier. */
22609 if (initializer && initializer_token_start)
22610 error_at (initializer_token_start->location,
22611 "pure-specifier on function-definition");
22612 decl = cp_parser_save_member_function_body (parser,
22613 &decl_specifiers,
22614 declarator,
22615 attributes);
22616 if (parser->fully_implicit_function_template_p)
22617 decl = finish_fully_implicit_template (parser, decl);
22618 /* If the member was not a friend, declare it here. */
22619 if (!friend_p)
22620 finish_member_declaration (decl);
22621 /* Peek at the next token. */
22622 token = cp_lexer_peek_token (parser->lexer);
22623 /* If the next token is a semicolon, consume it. */
22624 if (token->type == CPP_SEMICOLON)
22625 cp_lexer_consume_token (parser->lexer);
22626 goto out;
22628 else
22629 if (declarator->kind == cdk_function)
22630 declarator->id_loc = token->location;
22631 /* Create the declaration. */
22632 decl = grokfield (declarator, &decl_specifiers,
22633 initializer, /*init_const_expr_p=*/true,
22634 asm_specification, attributes);
22635 if (parser->fully_implicit_function_template_p)
22637 if (friend_p)
22638 finish_fully_implicit_template (parser, 0);
22639 else
22640 decl = finish_fully_implicit_template (parser, decl);
22644 cp_finalize_omp_declare_simd (parser, decl);
22645 cp_finalize_oacc_routine (parser, decl, false);
22647 /* Reset PREFIX_ATTRIBUTES. */
22648 while (attributes && TREE_CHAIN (attributes) != first_attribute)
22649 attributes = TREE_CHAIN (attributes);
22650 if (attributes)
22651 TREE_CHAIN (attributes) = NULL_TREE;
22653 /* If there is any qualification still in effect, clear it
22654 now; we will be starting fresh with the next declarator. */
22655 parser->scope = NULL_TREE;
22656 parser->qualifying_scope = NULL_TREE;
22657 parser->object_scope = NULL_TREE;
22658 /* If it's a `,', then there are more declarators. */
22659 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
22661 cp_lexer_consume_token (parser->lexer);
22662 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
22664 cp_token *token = cp_lexer_previous_token (parser->lexer);
22665 error_at (token->location,
22666 "stray %<,%> at end of member declaration");
22669 /* If the next token isn't a `;', then we have a parse error. */
22670 else if (cp_lexer_next_token_is_not (parser->lexer,
22671 CPP_SEMICOLON))
22673 /* The next token might be a ways away from where the
22674 actual semicolon is missing. Find the previous token
22675 and use that for our error position. */
22676 cp_token *token = cp_lexer_previous_token (parser->lexer);
22677 error_at (token->location,
22678 "expected %<;%> at end of member declaration");
22680 /* Assume that the user meant to provide a semicolon. If
22681 we were to cp_parser_skip_to_end_of_statement, we might
22682 skip to a semicolon inside a member function definition
22683 and issue nonsensical error messages. */
22684 assume_semicolon = true;
22687 if (decl)
22689 /* Add DECL to the list of members. */
22690 if (!friend_p
22691 /* Explicitly include, eg, NSDMIs, for better error
22692 recovery (c++/58650). */
22693 || !DECL_DECLARES_FUNCTION_P (decl))
22694 finish_member_declaration (decl);
22696 if (TREE_CODE (decl) == FUNCTION_DECL)
22697 cp_parser_save_default_args (parser, decl);
22698 else if (TREE_CODE (decl) == FIELD_DECL
22699 && !DECL_C_BIT_FIELD (decl)
22700 && DECL_INITIAL (decl))
22701 /* Add DECL to the queue of NSDMI to be parsed later. */
22702 vec_safe_push (unparsed_nsdmis, decl);
22705 if (assume_semicolon)
22706 goto out;
22710 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
22711 out:
22712 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
22715 /* Parse a pure-specifier.
22717 pure-specifier:
22720 Returns INTEGER_ZERO_NODE if a pure specifier is found.
22721 Otherwise, ERROR_MARK_NODE is returned. */
22723 static tree
22724 cp_parser_pure_specifier (cp_parser* parser)
22726 cp_token *token;
22728 /* Look for the `=' token. */
22729 if (!cp_parser_require (parser, CPP_EQ, RT_EQ))
22730 return error_mark_node;
22731 /* Look for the `0' token. */
22732 token = cp_lexer_peek_token (parser->lexer);
22734 if (token->type == CPP_EOF
22735 || token->type == CPP_PRAGMA_EOL)
22736 return error_mark_node;
22738 cp_lexer_consume_token (parser->lexer);
22740 /* Accept = default or = delete in c++0x mode. */
22741 if (token->keyword == RID_DEFAULT
22742 || token->keyword == RID_DELETE)
22744 maybe_warn_cpp0x (CPP0X_DEFAULTED_DELETED);
22745 return token->u.value;
22748 /* c_lex_with_flags marks a single digit '0' with PURE_ZERO. */
22749 if (token->type != CPP_NUMBER || !(token->flags & PURE_ZERO))
22751 cp_parser_error (parser,
22752 "invalid pure specifier (only %<= 0%> is allowed)");
22753 cp_parser_skip_to_end_of_statement (parser);
22754 return error_mark_node;
22756 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
22758 error_at (token->location, "templates may not be %<virtual%>");
22759 return error_mark_node;
22762 return integer_zero_node;
22765 /* Parse a constant-initializer.
22767 constant-initializer:
22768 = constant-expression
22770 Returns a representation of the constant-expression. */
22772 static tree
22773 cp_parser_constant_initializer (cp_parser* parser)
22775 /* Look for the `=' token. */
22776 if (!cp_parser_require (parser, CPP_EQ, RT_EQ))
22777 return error_mark_node;
22779 /* It is invalid to write:
22781 struct S { static const int i = { 7 }; };
22784 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
22786 cp_parser_error (parser,
22787 "a brace-enclosed initializer is not allowed here");
22788 /* Consume the opening brace. */
22789 cp_lexer_consume_token (parser->lexer);
22790 /* Skip the initializer. */
22791 cp_parser_skip_to_closing_brace (parser);
22792 /* Look for the trailing `}'. */
22793 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
22795 return error_mark_node;
22798 return cp_parser_constant_expression (parser);
22801 /* Derived classes [gram.class.derived] */
22803 /* Parse a base-clause.
22805 base-clause:
22806 : base-specifier-list
22808 base-specifier-list:
22809 base-specifier ... [opt]
22810 base-specifier-list , base-specifier ... [opt]
22812 Returns a TREE_LIST representing the base-classes, in the order in
22813 which they were declared. The representation of each node is as
22814 described by cp_parser_base_specifier.
22816 In the case that no bases are specified, this function will return
22817 NULL_TREE, not ERROR_MARK_NODE. */
22819 static tree
22820 cp_parser_base_clause (cp_parser* parser)
22822 tree bases = NULL_TREE;
22824 /* Look for the `:' that begins the list. */
22825 cp_parser_require (parser, CPP_COLON, RT_COLON);
22827 /* Scan the base-specifier-list. */
22828 while (true)
22830 cp_token *token;
22831 tree base;
22832 bool pack_expansion_p = false;
22834 /* Look for the base-specifier. */
22835 base = cp_parser_base_specifier (parser);
22836 /* Look for the (optional) ellipsis. */
22837 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
22839 /* Consume the `...'. */
22840 cp_lexer_consume_token (parser->lexer);
22842 pack_expansion_p = true;
22845 /* Add BASE to the front of the list. */
22846 if (base && base != error_mark_node)
22848 if (pack_expansion_p)
22849 /* Make this a pack expansion type. */
22850 TREE_VALUE (base) = make_pack_expansion (TREE_VALUE (base));
22852 if (!check_for_bare_parameter_packs (TREE_VALUE (base)))
22854 TREE_CHAIN (base) = bases;
22855 bases = base;
22858 /* Peek at the next token. */
22859 token = cp_lexer_peek_token (parser->lexer);
22860 /* If it's not a comma, then the list is complete. */
22861 if (token->type != CPP_COMMA)
22862 break;
22863 /* Consume the `,'. */
22864 cp_lexer_consume_token (parser->lexer);
22867 /* PARSER->SCOPE may still be non-NULL at this point, if the last
22868 base class had a qualified name. However, the next name that
22869 appears is certainly not qualified. */
22870 parser->scope = NULL_TREE;
22871 parser->qualifying_scope = NULL_TREE;
22872 parser->object_scope = NULL_TREE;
22874 return nreverse (bases);
22877 /* Parse a base-specifier.
22879 base-specifier:
22880 :: [opt] nested-name-specifier [opt] class-name
22881 virtual access-specifier [opt] :: [opt] nested-name-specifier
22882 [opt] class-name
22883 access-specifier virtual [opt] :: [opt] nested-name-specifier
22884 [opt] class-name
22886 Returns a TREE_LIST. The TREE_PURPOSE will be one of
22887 ACCESS_{DEFAULT,PUBLIC,PROTECTED,PRIVATE}_[VIRTUAL]_NODE to
22888 indicate the specifiers provided. The TREE_VALUE will be a TYPE
22889 (or the ERROR_MARK_NODE) indicating the type that was specified. */
22891 static tree
22892 cp_parser_base_specifier (cp_parser* parser)
22894 cp_token *token;
22895 bool done = false;
22896 bool virtual_p = false;
22897 bool duplicate_virtual_error_issued_p = false;
22898 bool duplicate_access_error_issued_p = false;
22899 bool class_scope_p, template_p;
22900 tree access = access_default_node;
22901 tree type;
22903 /* Process the optional `virtual' and `access-specifier'. */
22904 while (!done)
22906 /* Peek at the next token. */
22907 token = cp_lexer_peek_token (parser->lexer);
22908 /* Process `virtual'. */
22909 switch (token->keyword)
22911 case RID_VIRTUAL:
22912 /* If `virtual' appears more than once, issue an error. */
22913 if (virtual_p && !duplicate_virtual_error_issued_p)
22915 cp_parser_error (parser,
22916 "%<virtual%> specified more than once in base-specified");
22917 duplicate_virtual_error_issued_p = true;
22920 virtual_p = true;
22922 /* Consume the `virtual' token. */
22923 cp_lexer_consume_token (parser->lexer);
22925 break;
22927 case RID_PUBLIC:
22928 case RID_PROTECTED:
22929 case RID_PRIVATE:
22930 /* If more than one access specifier appears, issue an
22931 error. */
22932 if (access != access_default_node
22933 && !duplicate_access_error_issued_p)
22935 cp_parser_error (parser,
22936 "more than one access specifier in base-specified");
22937 duplicate_access_error_issued_p = true;
22940 access = ridpointers[(int) token->keyword];
22942 /* Consume the access-specifier. */
22943 cp_lexer_consume_token (parser->lexer);
22945 break;
22947 default:
22948 done = true;
22949 break;
22952 /* It is not uncommon to see programs mechanically, erroneously, use
22953 the 'typename' keyword to denote (dependent) qualified types
22954 as base classes. */
22955 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TYPENAME))
22957 token = cp_lexer_peek_token (parser->lexer);
22958 if (!processing_template_decl)
22959 error_at (token->location,
22960 "keyword %<typename%> not allowed outside of templates");
22961 else
22962 error_at (token->location,
22963 "keyword %<typename%> not allowed in this context "
22964 "(the base class is implicitly a type)");
22965 cp_lexer_consume_token (parser->lexer);
22968 /* Look for the optional `::' operator. */
22969 cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/false);
22970 /* Look for the nested-name-specifier. The simplest way to
22971 implement:
22973 [temp.res]
22975 The keyword `typename' is not permitted in a base-specifier or
22976 mem-initializer; in these contexts a qualified name that
22977 depends on a template-parameter is implicitly assumed to be a
22978 type name.
22980 is to pretend that we have seen the `typename' keyword at this
22981 point. */
22982 cp_parser_nested_name_specifier_opt (parser,
22983 /*typename_keyword_p=*/true,
22984 /*check_dependency_p=*/true,
22985 typename_type,
22986 /*is_declaration=*/true);
22987 /* If the base class is given by a qualified name, assume that names
22988 we see are type names or templates, as appropriate. */
22989 class_scope_p = (parser->scope && TYPE_P (parser->scope));
22990 template_p = class_scope_p && cp_parser_optional_template_keyword (parser);
22992 if (!parser->scope
22993 && cp_lexer_next_token_is_decltype (parser->lexer))
22994 /* DR 950 allows decltype as a base-specifier. */
22995 type = cp_parser_decltype (parser);
22996 else
22998 /* Otherwise, look for the class-name. */
22999 type = cp_parser_class_name (parser,
23000 class_scope_p,
23001 template_p,
23002 typename_type,
23003 /*check_dependency_p=*/true,
23004 /*class_head_p=*/false,
23005 /*is_declaration=*/true);
23006 type = TREE_TYPE (type);
23009 if (type == error_mark_node)
23010 return error_mark_node;
23012 return finish_base_specifier (type, access, virtual_p);
23015 /* Exception handling [gram.exception] */
23017 /* Parse an (optional) noexcept-specification.
23019 noexcept-specification:
23020 noexcept ( constant-expression ) [opt]
23022 If no noexcept-specification is present, returns NULL_TREE.
23023 Otherwise, if REQUIRE_CONSTEXPR is false, then either parse and return any
23024 expression if parentheses follow noexcept, or return BOOLEAN_TRUE_NODE if
23025 there are no parentheses. CONSUMED_EXPR will be set accordingly.
23026 Otherwise, returns a noexcept specification unless RETURN_COND is true,
23027 in which case a boolean condition is returned instead. */
23029 static tree
23030 cp_parser_noexcept_specification_opt (cp_parser* parser,
23031 bool require_constexpr,
23032 bool* consumed_expr,
23033 bool return_cond)
23035 cp_token *token;
23036 const char *saved_message;
23038 /* Peek at the next token. */
23039 token = cp_lexer_peek_token (parser->lexer);
23041 /* Is it a noexcept-specification? */
23042 if (cp_parser_is_keyword (token, RID_NOEXCEPT))
23044 tree expr;
23045 cp_lexer_consume_token (parser->lexer);
23047 if (cp_lexer_peek_token (parser->lexer)->type == CPP_OPEN_PAREN)
23049 cp_lexer_consume_token (parser->lexer);
23051 if (require_constexpr)
23053 /* Types may not be defined in an exception-specification. */
23054 saved_message = parser->type_definition_forbidden_message;
23055 parser->type_definition_forbidden_message
23056 = G_("types may not be defined in an exception-specification");
23058 expr = cp_parser_constant_expression (parser);
23060 /* Restore the saved message. */
23061 parser->type_definition_forbidden_message = saved_message;
23063 else
23065 expr = cp_parser_expression (parser);
23066 *consumed_expr = true;
23069 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
23071 else
23073 expr = boolean_true_node;
23074 if (!require_constexpr)
23075 *consumed_expr = false;
23078 /* We cannot build a noexcept-spec right away because this will check
23079 that expr is a constexpr. */
23080 if (!return_cond)
23081 return build_noexcept_spec (expr, tf_warning_or_error);
23082 else
23083 return expr;
23085 else
23086 return NULL_TREE;
23089 /* Parse an (optional) exception-specification.
23091 exception-specification:
23092 throw ( type-id-list [opt] )
23094 Returns a TREE_LIST representing the exception-specification. The
23095 TREE_VALUE of each node is a type. */
23097 static tree
23098 cp_parser_exception_specification_opt (cp_parser* parser)
23100 cp_token *token;
23101 tree type_id_list;
23102 const char *saved_message;
23104 /* Peek at the next token. */
23105 token = cp_lexer_peek_token (parser->lexer);
23107 /* Is it a noexcept-specification? */
23108 type_id_list = cp_parser_noexcept_specification_opt(parser, true, NULL,
23109 false);
23110 if (type_id_list != NULL_TREE)
23111 return type_id_list;
23113 /* If it's not `throw', then there's no exception-specification. */
23114 if (!cp_parser_is_keyword (token, RID_THROW))
23115 return NULL_TREE;
23117 #if 0
23118 /* Enable this once a lot of code has transitioned to noexcept? */
23119 if (cxx_dialect >= cxx11 && !in_system_header_at (input_location))
23120 warning (OPT_Wdeprecated, "dynamic exception specifications are "
23121 "deprecated in C++0x; use %<noexcept%> instead");
23122 #endif
23124 /* Consume the `throw'. */
23125 cp_lexer_consume_token (parser->lexer);
23127 /* Look for the `('. */
23128 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
23130 /* Peek at the next token. */
23131 token = cp_lexer_peek_token (parser->lexer);
23132 /* If it's not a `)', then there is a type-id-list. */
23133 if (token->type != CPP_CLOSE_PAREN)
23135 /* Types may not be defined in an exception-specification. */
23136 saved_message = parser->type_definition_forbidden_message;
23137 parser->type_definition_forbidden_message
23138 = G_("types may not be defined in an exception-specification");
23139 /* Parse the type-id-list. */
23140 type_id_list = cp_parser_type_id_list (parser);
23141 /* Restore the saved message. */
23142 parser->type_definition_forbidden_message = saved_message;
23144 else
23145 type_id_list = empty_except_spec;
23147 /* Look for the `)'. */
23148 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
23150 return type_id_list;
23153 /* Parse an (optional) type-id-list.
23155 type-id-list:
23156 type-id ... [opt]
23157 type-id-list , type-id ... [opt]
23159 Returns a TREE_LIST. The TREE_VALUE of each node is a TYPE,
23160 in the order that the types were presented. */
23162 static tree
23163 cp_parser_type_id_list (cp_parser* parser)
23165 tree types = NULL_TREE;
23167 while (true)
23169 cp_token *token;
23170 tree type;
23172 token = cp_lexer_peek_token (parser->lexer);
23174 /* Get the next type-id. */
23175 type = cp_parser_type_id (parser);
23176 /* Check for invalid 'auto'. */
23177 if (flag_concepts && type_uses_auto (type))
23179 error_at (token->location,
23180 "invalid use of %<auto%> in exception-specification");
23181 type = error_mark_node;
23183 /* Parse the optional ellipsis. */
23184 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
23186 /* Consume the `...'. */
23187 cp_lexer_consume_token (parser->lexer);
23189 /* Turn the type into a pack expansion expression. */
23190 type = make_pack_expansion (type);
23192 /* Add it to the list. */
23193 types = add_exception_specifier (types, type, /*complain=*/1);
23194 /* Peek at the next token. */
23195 token = cp_lexer_peek_token (parser->lexer);
23196 /* If it is not a `,', we are done. */
23197 if (token->type != CPP_COMMA)
23198 break;
23199 /* Consume the `,'. */
23200 cp_lexer_consume_token (parser->lexer);
23203 return nreverse (types);
23206 /* Parse a try-block.
23208 try-block:
23209 try compound-statement handler-seq */
23211 static tree
23212 cp_parser_try_block (cp_parser* parser)
23214 tree try_block;
23216 cp_parser_require_keyword (parser, RID_TRY, RT_TRY);
23217 if (parser->in_function_body
23218 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
23219 error ("%<try%> in %<constexpr%> function");
23221 try_block = begin_try_block ();
23222 cp_parser_compound_statement (parser, NULL, BCS_TRY_BLOCK, false);
23223 finish_try_block (try_block);
23224 cp_parser_handler_seq (parser);
23225 finish_handler_sequence (try_block);
23227 return try_block;
23230 /* Parse a function-try-block.
23232 function-try-block:
23233 try ctor-initializer [opt] function-body handler-seq */
23235 static bool
23236 cp_parser_function_try_block (cp_parser* parser)
23238 tree compound_stmt;
23239 tree try_block;
23240 bool ctor_initializer_p;
23242 /* Look for the `try' keyword. */
23243 if (!cp_parser_require_keyword (parser, RID_TRY, RT_TRY))
23244 return false;
23245 /* Let the rest of the front end know where we are. */
23246 try_block = begin_function_try_block (&compound_stmt);
23247 /* Parse the function-body. */
23248 ctor_initializer_p = cp_parser_ctor_initializer_opt_and_function_body
23249 (parser, /*in_function_try_block=*/true);
23250 /* We're done with the `try' part. */
23251 finish_function_try_block (try_block);
23252 /* Parse the handlers. */
23253 cp_parser_handler_seq (parser);
23254 /* We're done with the handlers. */
23255 finish_function_handler_sequence (try_block, compound_stmt);
23257 return ctor_initializer_p;
23260 /* Parse a handler-seq.
23262 handler-seq:
23263 handler handler-seq [opt] */
23265 static void
23266 cp_parser_handler_seq (cp_parser* parser)
23268 while (true)
23270 cp_token *token;
23272 /* Parse the handler. */
23273 cp_parser_handler (parser);
23274 /* Peek at the next token. */
23275 token = cp_lexer_peek_token (parser->lexer);
23276 /* If it's not `catch' then there are no more handlers. */
23277 if (!cp_parser_is_keyword (token, RID_CATCH))
23278 break;
23282 /* Parse a handler.
23284 handler:
23285 catch ( exception-declaration ) compound-statement */
23287 static void
23288 cp_parser_handler (cp_parser* parser)
23290 tree handler;
23291 tree declaration;
23293 cp_parser_require_keyword (parser, RID_CATCH, RT_CATCH);
23294 handler = begin_handler ();
23295 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
23296 declaration = cp_parser_exception_declaration (parser);
23297 finish_handler_parms (declaration, handler);
23298 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
23299 cp_parser_compound_statement (parser, NULL, BCS_NORMAL, false);
23300 finish_handler (handler);
23303 /* Parse an exception-declaration.
23305 exception-declaration:
23306 type-specifier-seq declarator
23307 type-specifier-seq abstract-declarator
23308 type-specifier-seq
23311 Returns a VAR_DECL for the declaration, or NULL_TREE if the
23312 ellipsis variant is used. */
23314 static tree
23315 cp_parser_exception_declaration (cp_parser* parser)
23317 cp_decl_specifier_seq type_specifiers;
23318 cp_declarator *declarator;
23319 const char *saved_message;
23321 /* If it's an ellipsis, it's easy to handle. */
23322 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
23324 /* Consume the `...' token. */
23325 cp_lexer_consume_token (parser->lexer);
23326 return NULL_TREE;
23329 /* Types may not be defined in exception-declarations. */
23330 saved_message = parser->type_definition_forbidden_message;
23331 parser->type_definition_forbidden_message
23332 = G_("types may not be defined in exception-declarations");
23334 /* Parse the type-specifier-seq. */
23335 cp_parser_type_specifier_seq (parser, /*is_declaration=*/true,
23336 /*is_trailing_return=*/false,
23337 &type_specifiers);
23338 /* If it's a `)', then there is no declarator. */
23339 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN))
23340 declarator = NULL;
23341 else
23342 declarator = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_EITHER,
23343 /*ctor_dtor_or_conv_p=*/NULL,
23344 /*parenthesized_p=*/NULL,
23345 /*member_p=*/false,
23346 /*friend_p=*/false);
23348 /* Restore the saved message. */
23349 parser->type_definition_forbidden_message = saved_message;
23351 if (!type_specifiers.any_specifiers_p)
23352 return error_mark_node;
23354 return grokdeclarator (declarator, &type_specifiers, CATCHPARM, 1, NULL);
23357 /* Parse a throw-expression.
23359 throw-expression:
23360 throw assignment-expression [opt]
23362 Returns a THROW_EXPR representing the throw-expression. */
23364 static tree
23365 cp_parser_throw_expression (cp_parser* parser)
23367 tree expression;
23368 cp_token* token;
23370 cp_parser_require_keyword (parser, RID_THROW, RT_THROW);
23371 token = cp_lexer_peek_token (parser->lexer);
23372 /* Figure out whether or not there is an assignment-expression
23373 following the "throw" keyword. */
23374 if (token->type == CPP_COMMA
23375 || token->type == CPP_SEMICOLON
23376 || token->type == CPP_CLOSE_PAREN
23377 || token->type == CPP_CLOSE_SQUARE
23378 || token->type == CPP_CLOSE_BRACE
23379 || token->type == CPP_COLON)
23380 expression = NULL_TREE;
23381 else
23382 expression = cp_parser_assignment_expression (parser);
23384 return build_throw (expression);
23387 /* GNU Extensions */
23389 /* Parse an (optional) asm-specification.
23391 asm-specification:
23392 asm ( string-literal )
23394 If the asm-specification is present, returns a STRING_CST
23395 corresponding to the string-literal. Otherwise, returns
23396 NULL_TREE. */
23398 static tree
23399 cp_parser_asm_specification_opt (cp_parser* parser)
23401 cp_token *token;
23402 tree asm_specification;
23404 /* Peek at the next token. */
23405 token = cp_lexer_peek_token (parser->lexer);
23406 /* If the next token isn't the `asm' keyword, then there's no
23407 asm-specification. */
23408 if (!cp_parser_is_keyword (token, RID_ASM))
23409 return NULL_TREE;
23411 /* Consume the `asm' token. */
23412 cp_lexer_consume_token (parser->lexer);
23413 /* Look for the `('. */
23414 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
23416 /* Look for the string-literal. */
23417 asm_specification = cp_parser_string_literal (parser, false, false);
23419 /* Look for the `)'. */
23420 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
23422 return asm_specification;
23425 /* Parse an asm-operand-list.
23427 asm-operand-list:
23428 asm-operand
23429 asm-operand-list , asm-operand
23431 asm-operand:
23432 string-literal ( expression )
23433 [ string-literal ] string-literal ( expression )
23435 Returns a TREE_LIST representing the operands. The TREE_VALUE of
23436 each node is the expression. The TREE_PURPOSE is itself a
23437 TREE_LIST whose TREE_PURPOSE is a STRING_CST for the bracketed
23438 string-literal (or NULL_TREE if not present) and whose TREE_VALUE
23439 is a STRING_CST for the string literal before the parenthesis. Returns
23440 ERROR_MARK_NODE if any of the operands are invalid. */
23442 static tree
23443 cp_parser_asm_operand_list (cp_parser* parser)
23445 tree asm_operands = NULL_TREE;
23446 bool invalid_operands = false;
23448 while (true)
23450 tree string_literal;
23451 tree expression;
23452 tree name;
23454 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
23456 /* Consume the `[' token. */
23457 cp_lexer_consume_token (parser->lexer);
23458 /* Read the operand name. */
23459 name = cp_parser_identifier (parser);
23460 if (name != error_mark_node)
23461 name = build_string (IDENTIFIER_LENGTH (name),
23462 IDENTIFIER_POINTER (name));
23463 /* Look for the closing `]'. */
23464 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
23466 else
23467 name = NULL_TREE;
23468 /* Look for the string-literal. */
23469 string_literal = cp_parser_string_literal (parser, false, false);
23471 /* Look for the `('. */
23472 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
23473 /* Parse the expression. */
23474 expression = cp_parser_expression (parser);
23475 /* Look for the `)'. */
23476 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
23478 if (name == error_mark_node
23479 || string_literal == error_mark_node
23480 || expression == error_mark_node)
23481 invalid_operands = true;
23483 /* Add this operand to the list. */
23484 asm_operands = tree_cons (build_tree_list (name, string_literal),
23485 expression,
23486 asm_operands);
23487 /* If the next token is not a `,', there are no more
23488 operands. */
23489 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
23490 break;
23491 /* Consume the `,'. */
23492 cp_lexer_consume_token (parser->lexer);
23495 return invalid_operands ? error_mark_node : nreverse (asm_operands);
23498 /* Parse an asm-clobber-list.
23500 asm-clobber-list:
23501 string-literal
23502 asm-clobber-list , string-literal
23504 Returns a TREE_LIST, indicating the clobbers in the order that they
23505 appeared. The TREE_VALUE of each node is a STRING_CST. */
23507 static tree
23508 cp_parser_asm_clobber_list (cp_parser* parser)
23510 tree clobbers = NULL_TREE;
23512 while (true)
23514 tree string_literal;
23516 /* Look for the string literal. */
23517 string_literal = cp_parser_string_literal (parser, false, false);
23518 /* Add it to the list. */
23519 clobbers = tree_cons (NULL_TREE, string_literal, clobbers);
23520 /* If the next token is not a `,', then the list is
23521 complete. */
23522 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
23523 break;
23524 /* Consume the `,' token. */
23525 cp_lexer_consume_token (parser->lexer);
23528 return clobbers;
23531 /* Parse an asm-label-list.
23533 asm-label-list:
23534 identifier
23535 asm-label-list , identifier
23537 Returns a TREE_LIST, indicating the labels in the order that they
23538 appeared. The TREE_VALUE of each node is a label. */
23540 static tree
23541 cp_parser_asm_label_list (cp_parser* parser)
23543 tree labels = NULL_TREE;
23545 while (true)
23547 tree identifier, label, name;
23549 /* Look for the identifier. */
23550 identifier = cp_parser_identifier (parser);
23551 if (!error_operand_p (identifier))
23553 label = lookup_label (identifier);
23554 if (TREE_CODE (label) == LABEL_DECL)
23556 TREE_USED (label) = 1;
23557 check_goto (label);
23558 name = build_string (IDENTIFIER_LENGTH (identifier),
23559 IDENTIFIER_POINTER (identifier));
23560 labels = tree_cons (name, label, labels);
23563 /* If the next token is not a `,', then the list is
23564 complete. */
23565 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
23566 break;
23567 /* Consume the `,' token. */
23568 cp_lexer_consume_token (parser->lexer);
23571 return nreverse (labels);
23574 /* Return TRUE iff the next tokens in the stream are possibly the
23575 beginning of a GNU extension attribute. */
23577 static bool
23578 cp_next_tokens_can_be_gnu_attribute_p (cp_parser *parser)
23580 return cp_nth_tokens_can_be_gnu_attribute_p (parser, 1);
23583 /* Return TRUE iff the next tokens in the stream are possibly the
23584 beginning of a standard C++-11 attribute specifier. */
23586 static bool
23587 cp_next_tokens_can_be_std_attribute_p (cp_parser *parser)
23589 return cp_nth_tokens_can_be_std_attribute_p (parser, 1);
23592 /* Return TRUE iff the next Nth tokens in the stream are possibly the
23593 beginning of a standard C++-11 attribute specifier. */
23595 static bool
23596 cp_nth_tokens_can_be_std_attribute_p (cp_parser *parser, size_t n)
23598 cp_token *token = cp_lexer_peek_nth_token (parser->lexer, n);
23600 return (cxx_dialect >= cxx11
23601 && ((token->type == CPP_KEYWORD && token->keyword == RID_ALIGNAS)
23602 || (token->type == CPP_OPEN_SQUARE
23603 && (token = cp_lexer_peek_nth_token (parser->lexer, n + 1))
23604 && token->type == CPP_OPEN_SQUARE)));
23607 /* Return TRUE iff the next Nth tokens in the stream are possibly the
23608 beginning of a GNU extension attribute. */
23610 static bool
23611 cp_nth_tokens_can_be_gnu_attribute_p (cp_parser *parser, size_t n)
23613 cp_token *token = cp_lexer_peek_nth_token (parser->lexer, n);
23615 return token->type == CPP_KEYWORD && token->keyword == RID_ATTRIBUTE;
23618 /* Return true iff the next tokens can be the beginning of either a
23619 GNU attribute list, or a standard C++11 attribute sequence. */
23621 static bool
23622 cp_next_tokens_can_be_attribute_p (cp_parser *parser)
23624 return (cp_next_tokens_can_be_gnu_attribute_p (parser)
23625 || cp_next_tokens_can_be_std_attribute_p (parser));
23628 /* Return true iff the next Nth tokens can be the beginning of either
23629 a GNU attribute list, or a standard C++11 attribute sequence. */
23631 static bool
23632 cp_nth_tokens_can_be_attribute_p (cp_parser *parser, size_t n)
23634 return (cp_nth_tokens_can_be_gnu_attribute_p (parser, n)
23635 || cp_nth_tokens_can_be_std_attribute_p (parser, n));
23638 /* Parse either a standard C++-11 attribute-specifier-seq, or a series
23639 of GNU attributes, or return NULL. */
23641 static tree
23642 cp_parser_attributes_opt (cp_parser *parser)
23644 if (cp_next_tokens_can_be_gnu_attribute_p (parser))
23645 return cp_parser_gnu_attributes_opt (parser);
23646 return cp_parser_std_attribute_spec_seq (parser);
23649 #define CILK_SIMD_FN_CLAUSE_MASK \
23650 ((OMP_CLAUSE_MASK_1 << PRAGMA_CILK_CLAUSE_VECTORLENGTH) \
23651 | (OMP_CLAUSE_MASK_1 << PRAGMA_CILK_CLAUSE_LINEAR) \
23652 | (OMP_CLAUSE_MASK_1 << PRAGMA_CILK_CLAUSE_UNIFORM) \
23653 | (OMP_CLAUSE_MASK_1 << PRAGMA_CILK_CLAUSE_MASK) \
23654 | (OMP_CLAUSE_MASK_1 << PRAGMA_CILK_CLAUSE_NOMASK))
23656 /* Parses the Cilk Plus SIMD-enabled function's attribute. Syntax:
23657 vector [(<clauses>)] */
23659 static void
23660 cp_parser_cilk_simd_fn_vector_attrs (cp_parser *parser, cp_token *v_token)
23662 bool first_p = parser->cilk_simd_fn_info == NULL;
23663 cp_token *token = v_token;
23664 if (first_p)
23666 parser->cilk_simd_fn_info = XNEW (cp_omp_declare_simd_data);
23667 parser->cilk_simd_fn_info->error_seen = false;
23668 parser->cilk_simd_fn_info->fndecl_seen = false;
23669 parser->cilk_simd_fn_info->tokens = vNULL;
23671 int paren_scope = 0;
23672 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
23674 cp_lexer_consume_token (parser->lexer);
23675 v_token = cp_lexer_peek_token (parser->lexer);
23676 paren_scope++;
23678 while (paren_scope > 0)
23680 token = cp_lexer_peek_token (parser->lexer);
23681 if (token->type == CPP_OPEN_PAREN)
23682 paren_scope++;
23683 else if (token->type == CPP_CLOSE_PAREN)
23684 paren_scope--;
23685 /* Do not push the last ')' */
23686 if (!(token->type == CPP_CLOSE_PAREN && paren_scope == 0))
23687 cp_lexer_consume_token (parser->lexer);
23690 token->type = CPP_PRAGMA_EOL;
23691 parser->lexer->next_token = token;
23692 cp_lexer_consume_token (parser->lexer);
23694 struct cp_token_cache *cp
23695 = cp_token_cache_new (v_token, cp_lexer_peek_token (parser->lexer));
23696 parser->cilk_simd_fn_info->tokens.safe_push (cp);
23699 /* Parse an (optional) series of attributes.
23701 attributes:
23702 attributes attribute
23704 attribute:
23705 __attribute__ (( attribute-list [opt] ))
23707 The return value is as for cp_parser_gnu_attribute_list. */
23709 static tree
23710 cp_parser_gnu_attributes_opt (cp_parser* parser)
23712 tree attributes = NULL_TREE;
23714 while (true)
23716 cp_token *token;
23717 tree attribute_list;
23718 bool ok = true;
23720 /* Peek at the next token. */
23721 token = cp_lexer_peek_token (parser->lexer);
23722 /* If it's not `__attribute__', then we're done. */
23723 if (token->keyword != RID_ATTRIBUTE)
23724 break;
23726 /* Consume the `__attribute__' keyword. */
23727 cp_lexer_consume_token (parser->lexer);
23728 /* Look for the two `(' tokens. */
23729 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
23730 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
23732 /* Peek at the next token. */
23733 token = cp_lexer_peek_token (parser->lexer);
23734 if (token->type != CPP_CLOSE_PAREN)
23735 /* Parse the attribute-list. */
23736 attribute_list = cp_parser_gnu_attribute_list (parser);
23737 else
23738 /* If the next token is a `)', then there is no attribute
23739 list. */
23740 attribute_list = NULL;
23742 /* Look for the two `)' tokens. */
23743 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
23744 ok = false;
23745 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
23746 ok = false;
23747 if (!ok)
23748 cp_parser_skip_to_end_of_statement (parser);
23750 /* Add these new attributes to the list. */
23751 attributes = chainon (attributes, attribute_list);
23754 return attributes;
23757 /* Parse a GNU attribute-list.
23759 attribute-list:
23760 attribute
23761 attribute-list , attribute
23763 attribute:
23764 identifier
23765 identifier ( identifier )
23766 identifier ( identifier , expression-list )
23767 identifier ( expression-list )
23769 Returns a TREE_LIST, or NULL_TREE on error. Each node corresponds
23770 to an attribute. The TREE_PURPOSE of each node is the identifier
23771 indicating which attribute is in use. The TREE_VALUE represents
23772 the arguments, if any. */
23774 static tree
23775 cp_parser_gnu_attribute_list (cp_parser* parser)
23777 tree attribute_list = NULL_TREE;
23778 bool save_translate_strings_p = parser->translate_strings_p;
23780 parser->translate_strings_p = false;
23781 while (true)
23783 cp_token *token;
23784 tree identifier;
23785 tree attribute;
23787 /* Look for the identifier. We also allow keywords here; for
23788 example `__attribute__ ((const))' is legal. */
23789 token = cp_lexer_peek_token (parser->lexer);
23790 if (token->type == CPP_NAME
23791 || token->type == CPP_KEYWORD)
23793 tree arguments = NULL_TREE;
23795 /* Consume the token, but save it since we need it for the
23796 SIMD enabled function parsing. */
23797 cp_token *id_token = cp_lexer_consume_token (parser->lexer);
23799 /* Save away the identifier that indicates which attribute
23800 this is. */
23801 identifier = (token->type == CPP_KEYWORD)
23802 /* For keywords, use the canonical spelling, not the
23803 parsed identifier. */
23804 ? ridpointers[(int) token->keyword]
23805 : id_token->u.value;
23807 attribute = build_tree_list (identifier, NULL_TREE);
23809 /* Peek at the next token. */
23810 token = cp_lexer_peek_token (parser->lexer);
23811 /* If it's an `(', then parse the attribute arguments. */
23812 if (token->type == CPP_OPEN_PAREN)
23814 vec<tree, va_gc> *vec;
23815 int attr_flag = (attribute_takes_identifier_p (identifier)
23816 ? id_attr : normal_attr);
23817 if (is_cilkplus_vector_p (identifier))
23819 cp_parser_cilk_simd_fn_vector_attrs (parser, id_token);
23820 continue;
23822 else
23823 vec = cp_parser_parenthesized_expression_list
23824 (parser, attr_flag, /*cast_p=*/false,
23825 /*allow_expansion_p=*/false,
23826 /*non_constant_p=*/NULL);
23827 if (vec == NULL)
23828 arguments = error_mark_node;
23829 else
23831 arguments = build_tree_list_vec (vec);
23832 release_tree_vector (vec);
23834 /* Save the arguments away. */
23835 TREE_VALUE (attribute) = arguments;
23837 else if (is_cilkplus_vector_p (identifier))
23839 cp_parser_cilk_simd_fn_vector_attrs (parser, id_token);
23840 continue;
23843 if (arguments != error_mark_node)
23845 /* Add this attribute to the list. */
23846 TREE_CHAIN (attribute) = attribute_list;
23847 attribute_list = attribute;
23850 token = cp_lexer_peek_token (parser->lexer);
23852 /* Now, look for more attributes. If the next token isn't a
23853 `,', we're done. */
23854 if (token->type != CPP_COMMA)
23855 break;
23857 /* Consume the comma and keep going. */
23858 cp_lexer_consume_token (parser->lexer);
23860 parser->translate_strings_p = save_translate_strings_p;
23862 /* We built up the list in reverse order. */
23863 return nreverse (attribute_list);
23866 /* Parse a standard C++11 attribute.
23868 The returned representation is a TREE_LIST which TREE_PURPOSE is
23869 the scoped name of the attribute, and the TREE_VALUE is its
23870 arguments list.
23872 Note that the scoped name of the attribute is itself a TREE_LIST
23873 which TREE_PURPOSE is the namespace of the attribute, and
23874 TREE_VALUE its name. This is unlike a GNU attribute -- as parsed
23875 by cp_parser_gnu_attribute_list -- that doesn't have any namespace
23876 and which TREE_PURPOSE is directly the attribute name.
23878 Clients of the attribute code should use get_attribute_namespace
23879 and get_attribute_name to get the actual namespace and name of
23880 attributes, regardless of their being GNU or C++11 attributes.
23882 attribute:
23883 attribute-token attribute-argument-clause [opt]
23885 attribute-token:
23886 identifier
23887 attribute-scoped-token
23889 attribute-scoped-token:
23890 attribute-namespace :: identifier
23892 attribute-namespace:
23893 identifier
23895 attribute-argument-clause:
23896 ( balanced-token-seq )
23898 balanced-token-seq:
23899 balanced-token [opt]
23900 balanced-token-seq balanced-token
23902 balanced-token:
23903 ( balanced-token-seq )
23904 [ balanced-token-seq ]
23905 { balanced-token-seq }. */
23907 static tree
23908 cp_parser_std_attribute (cp_parser *parser)
23910 tree attribute, attr_ns = NULL_TREE, attr_id = NULL_TREE, arguments;
23911 cp_token *token;
23913 /* First, parse name of the attribute, a.k.a attribute-token. */
23915 token = cp_lexer_peek_token (parser->lexer);
23916 if (token->type == CPP_NAME)
23917 attr_id = token->u.value;
23918 else if (token->type == CPP_KEYWORD)
23919 attr_id = ridpointers[(int) token->keyword];
23920 else if (token->flags & NAMED_OP)
23921 attr_id = get_identifier (cpp_type2name (token->type, token->flags));
23923 if (attr_id == NULL_TREE)
23924 return NULL_TREE;
23926 cp_lexer_consume_token (parser->lexer);
23928 token = cp_lexer_peek_token (parser->lexer);
23929 if (token->type == CPP_SCOPE)
23931 /* We are seeing a scoped attribute token. */
23933 cp_lexer_consume_token (parser->lexer);
23934 attr_ns = attr_id;
23936 token = cp_lexer_consume_token (parser->lexer);
23937 if (token->type == CPP_NAME)
23938 attr_id = token->u.value;
23939 else if (token->type == CPP_KEYWORD)
23940 attr_id = ridpointers[(int) token->keyword];
23941 else
23943 error_at (token->location,
23944 "expected an identifier for the attribute name");
23945 return error_mark_node;
23947 attribute = build_tree_list (build_tree_list (attr_ns, attr_id),
23948 NULL_TREE);
23949 token = cp_lexer_peek_token (parser->lexer);
23951 else
23953 attribute = build_tree_list (build_tree_list (NULL_TREE, attr_id),
23954 NULL_TREE);
23955 /* C++11 noreturn attribute is equivalent to GNU's. */
23956 if (is_attribute_p ("noreturn", attr_id))
23957 TREE_PURPOSE (TREE_PURPOSE (attribute)) = get_identifier ("gnu");
23958 /* C++14 deprecated attribute is equivalent to GNU's. */
23959 else if (cxx_dialect >= cxx11 && is_attribute_p ("deprecated", attr_id))
23961 if (cxx_dialect == cxx11)
23962 pedwarn (token->location, OPT_Wpedantic,
23963 "%<deprecated%> is a C++14 feature;"
23964 " use %<gnu::deprecated%>");
23965 TREE_PURPOSE (TREE_PURPOSE (attribute)) = get_identifier ("gnu");
23967 /* Transactional Memory TS optimize_for_synchronized attribute is
23968 equivalent to GNU transaction_callable. */
23969 else if (is_attribute_p ("optimize_for_synchronized", attr_id))
23970 TREE_PURPOSE (attribute)
23971 = get_identifier ("transaction_callable");
23972 /* Transactional Memory attributes are GNU attributes. */
23973 else if (tm_attr_to_mask (attr_id))
23974 TREE_PURPOSE (attribute) = attr_id;
23977 /* Now parse the optional argument clause of the attribute. */
23979 if (token->type != CPP_OPEN_PAREN)
23980 return attribute;
23983 vec<tree, va_gc> *vec;
23984 int attr_flag = normal_attr;
23986 if (attr_ns == get_identifier ("gnu")
23987 && attribute_takes_identifier_p (attr_id))
23988 /* A GNU attribute that takes an identifier in parameter. */
23989 attr_flag = id_attr;
23991 vec = cp_parser_parenthesized_expression_list
23992 (parser, attr_flag, /*cast_p=*/false,
23993 /*allow_expansion_p=*/true,
23994 /*non_constant_p=*/NULL);
23995 if (vec == NULL)
23996 arguments = error_mark_node;
23997 else
23999 arguments = build_tree_list_vec (vec);
24000 release_tree_vector (vec);
24003 if (arguments == error_mark_node)
24004 attribute = error_mark_node;
24005 else
24006 TREE_VALUE (attribute) = arguments;
24009 return attribute;
24012 /* Check that the attribute ATTRIBUTE appears at most once in the
24013 attribute-list ATTRIBUTES. This is enforced for noreturn (7.6.3)
24014 and deprecated (7.6.5). Note that carries_dependency (7.6.4)
24015 isn't implemented yet in GCC. */
24017 static void
24018 cp_parser_check_std_attribute (tree attributes, tree attribute)
24020 if (attributes)
24022 tree name = get_attribute_name (attribute);
24023 if (is_attribute_p ("noreturn", name)
24024 && lookup_attribute ("noreturn", attributes))
24025 error ("attribute noreturn can appear at most once "
24026 "in an attribute-list");
24027 else if (is_attribute_p ("deprecated", name)
24028 && lookup_attribute ("deprecated", attributes))
24029 error ("attribute deprecated can appear at most once "
24030 "in an attribute-list");
24034 /* Parse a list of standard C++-11 attributes.
24036 attribute-list:
24037 attribute [opt]
24038 attribute-list , attribute[opt]
24039 attribute ...
24040 attribute-list , attribute ...
24043 static tree
24044 cp_parser_std_attribute_list (cp_parser *parser)
24046 tree attributes = NULL_TREE, attribute = NULL_TREE;
24047 cp_token *token = NULL;
24049 while (true)
24051 attribute = cp_parser_std_attribute (parser);
24052 if (attribute == error_mark_node)
24053 break;
24054 if (attribute != NULL_TREE)
24056 cp_parser_check_std_attribute (attributes, attribute);
24057 TREE_CHAIN (attribute) = attributes;
24058 attributes = attribute;
24060 token = cp_lexer_peek_token (parser->lexer);
24061 if (token->type == CPP_ELLIPSIS)
24063 cp_lexer_consume_token (parser->lexer);
24064 TREE_VALUE (attribute)
24065 = make_pack_expansion (TREE_VALUE (attribute));
24066 token = cp_lexer_peek_token (parser->lexer);
24068 if (token->type != CPP_COMMA)
24069 break;
24070 cp_lexer_consume_token (parser->lexer);
24072 attributes = nreverse (attributes);
24073 return attributes;
24076 /* Parse a standard C++-11 attribute specifier.
24078 attribute-specifier:
24079 [ [ attribute-list ] ]
24080 alignment-specifier
24082 alignment-specifier:
24083 alignas ( type-id ... [opt] )
24084 alignas ( alignment-expression ... [opt] ). */
24086 static tree
24087 cp_parser_std_attribute_spec (cp_parser *parser)
24089 tree attributes = NULL_TREE;
24090 cp_token *token = cp_lexer_peek_token (parser->lexer);
24092 if (token->type == CPP_OPEN_SQUARE
24093 && cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_OPEN_SQUARE)
24095 cp_lexer_consume_token (parser->lexer);
24096 cp_lexer_consume_token (parser->lexer);
24098 attributes = cp_parser_std_attribute_list (parser);
24100 if (!cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE)
24101 || !cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE))
24102 cp_parser_skip_to_end_of_statement (parser);
24103 else
24104 /* Warn about parsing c++11 attribute in non-c++1 mode, only
24105 when we are sure that we have actually parsed them. */
24106 maybe_warn_cpp0x (CPP0X_ATTRIBUTES);
24108 else
24110 tree alignas_expr;
24112 /* Look for an alignment-specifier. */
24114 token = cp_lexer_peek_token (parser->lexer);
24116 if (token->type != CPP_KEYWORD
24117 || token->keyword != RID_ALIGNAS)
24118 return NULL_TREE;
24120 cp_lexer_consume_token (parser->lexer);
24121 maybe_warn_cpp0x (CPP0X_ATTRIBUTES);
24123 if (cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN) == NULL)
24125 cp_parser_error (parser, "expected %<(%>");
24126 return error_mark_node;
24129 cp_parser_parse_tentatively (parser);
24130 alignas_expr = cp_parser_type_id (parser);
24132 if (!cp_parser_parse_definitely (parser))
24134 gcc_assert (alignas_expr == error_mark_node
24135 || alignas_expr == NULL_TREE);
24137 alignas_expr =
24138 cp_parser_assignment_expression (parser);
24139 if (alignas_expr == error_mark_node)
24140 cp_parser_skip_to_end_of_statement (parser);
24141 if (alignas_expr == NULL_TREE
24142 || alignas_expr == error_mark_node)
24143 return alignas_expr;
24146 alignas_expr = cxx_alignas_expr (alignas_expr);
24147 alignas_expr = build_tree_list (NULL_TREE, alignas_expr);
24149 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
24151 cp_lexer_consume_token (parser->lexer);
24152 alignas_expr = make_pack_expansion (alignas_expr);
24155 if (cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN) == NULL)
24157 cp_parser_error (parser, "expected %<)%>");
24158 return error_mark_node;
24161 /* Build the C++-11 representation of an 'aligned'
24162 attribute. */
24163 attributes =
24164 build_tree_list (build_tree_list (get_identifier ("gnu"),
24165 get_identifier ("aligned")),
24166 alignas_expr);
24169 return attributes;
24172 /* Parse a standard C++-11 attribute-specifier-seq.
24174 attribute-specifier-seq:
24175 attribute-specifier-seq [opt] attribute-specifier
24178 static tree
24179 cp_parser_std_attribute_spec_seq (cp_parser *parser)
24181 tree attr_specs = NULL_TREE;
24182 tree attr_last = NULL_TREE;
24184 while (true)
24186 tree attr_spec = cp_parser_std_attribute_spec (parser);
24187 if (attr_spec == NULL_TREE)
24188 break;
24189 if (attr_spec == error_mark_node)
24190 return error_mark_node;
24192 if (attr_last)
24193 TREE_CHAIN (attr_last) = attr_spec;
24194 else
24195 attr_specs = attr_last = attr_spec;
24196 attr_last = tree_last (attr_last);
24199 return attr_specs;
24202 /* Parse an optional `__extension__' keyword. Returns TRUE if it is
24203 present, and FALSE otherwise. *SAVED_PEDANTIC is set to the
24204 current value of the PEDANTIC flag, regardless of whether or not
24205 the `__extension__' keyword is present. The caller is responsible
24206 for restoring the value of the PEDANTIC flag. */
24208 static bool
24209 cp_parser_extension_opt (cp_parser* parser, int* saved_pedantic)
24211 /* Save the old value of the PEDANTIC flag. */
24212 *saved_pedantic = pedantic;
24214 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_EXTENSION))
24216 /* Consume the `__extension__' token. */
24217 cp_lexer_consume_token (parser->lexer);
24218 /* We're not being pedantic while the `__extension__' keyword is
24219 in effect. */
24220 pedantic = 0;
24222 return true;
24225 return false;
24228 /* Parse a label declaration.
24230 label-declaration:
24231 __label__ label-declarator-seq ;
24233 label-declarator-seq:
24234 identifier , label-declarator-seq
24235 identifier */
24237 static void
24238 cp_parser_label_declaration (cp_parser* parser)
24240 /* Look for the `__label__' keyword. */
24241 cp_parser_require_keyword (parser, RID_LABEL, RT_LABEL);
24243 while (true)
24245 tree identifier;
24247 /* Look for an identifier. */
24248 identifier = cp_parser_identifier (parser);
24249 /* If we failed, stop. */
24250 if (identifier == error_mark_node)
24251 break;
24252 /* Declare it as a label. */
24253 finish_label_decl (identifier);
24254 /* If the next token is a `;', stop. */
24255 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
24256 break;
24257 /* Look for the `,' separating the label declarations. */
24258 cp_parser_require (parser, CPP_COMMA, RT_COMMA);
24261 /* Look for the final `;'. */
24262 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
24265 // -------------------------------------------------------------------------- //
24266 // Requires Clause
24268 // Parse a requires clause.
24270 // requires-clause:
24271 // 'requires' logical-or-expression
24273 // The required logical-or-expression must be a constant expression. Note
24274 // that we don't check that the expression is constepxr here. We defer until
24275 // we analyze constraints and then, we only check atomic constraints.
24276 static tree
24277 cp_parser_requires_clause (cp_parser *parser)
24279 // Parse the requires clause so that it is not automatically folded.
24280 ++processing_template_decl;
24281 tree expr = cp_parser_binary_expression (parser, false, false,
24282 PREC_NOT_OPERATOR, NULL);
24283 if (check_for_bare_parameter_packs (expr))
24284 expr = error_mark_node;
24285 --processing_template_decl;
24286 return expr;
24289 // Optionally parse a requires clause:
24290 static tree
24291 cp_parser_requires_clause_opt (cp_parser *parser)
24293 cp_token *tok = cp_lexer_peek_token (parser->lexer);
24294 if (tok->keyword != RID_REQUIRES)
24296 if (!flag_concepts && tok->type == CPP_NAME
24297 && tok->u.value == ridpointers[RID_REQUIRES])
24299 error_at (cp_lexer_peek_token (parser->lexer)->location,
24300 "%<requires%> only available with -fconcepts");
24301 /* Parse and discard the requires-clause. */
24302 cp_lexer_consume_token (parser->lexer);
24303 cp_parser_requires_clause (parser);
24305 return NULL_TREE;
24307 cp_lexer_consume_token (parser->lexer);
24308 return cp_parser_requires_clause (parser);
24312 /*---------------------------------------------------------------------------
24313 Requires expressions
24314 ---------------------------------------------------------------------------*/
24316 /* Parse a requires expression
24318 requirement-expression:
24319 'requires' requirement-parameter-list [opt] requirement-body */
24320 static tree
24321 cp_parser_requires_expression (cp_parser *parser)
24323 gcc_assert (cp_lexer_next_token_is_keyword (parser->lexer, RID_REQUIRES));
24324 location_t loc = cp_lexer_consume_token (parser->lexer)->location;
24326 /* A requires-expression shall appear only within a concept
24327 definition or a requires-clause.
24329 TODO: Implement this diagnostic correctly. */
24330 if (!processing_template_decl)
24332 error_at (loc, "a requires expression cannot appear outside a template");
24333 cp_parser_skip_to_end_of_statement (parser);
24334 return error_mark_node;
24337 tree parms, reqs;
24339 /* Local parameters are delared as variables within the scope
24340 of the expression. They are not visible past the end of
24341 the expression. Expressions within the requires-expression
24342 are unevaluated. */
24343 struct scope_sentinel
24345 scope_sentinel ()
24347 ++cp_unevaluated_operand;
24348 begin_scope (sk_block, NULL_TREE);
24351 ~scope_sentinel ()
24353 pop_bindings_and_leave_scope ();
24354 --cp_unevaluated_operand;
24356 } s;
24358 /* Parse the optional parameter list. */
24359 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
24361 parms = cp_parser_requirement_parameter_list (parser);
24362 if (parms == error_mark_node)
24363 return error_mark_node;
24365 else
24366 parms = NULL_TREE;
24368 /* Parse the requirement body. */
24369 reqs = cp_parser_requirement_body (parser);
24370 if (reqs == error_mark_node)
24371 return error_mark_node;
24374 /* This needs to happen after pop_bindings_and_leave_scope, as it reverses
24375 the parm chain. */
24376 grokparms (parms, &parms);
24377 return finish_requires_expr (parms, reqs);
24380 /* Parse a parameterized requirement.
24382 requirement-parameter-list:
24383 '(' parameter-declaration-clause ')' */
24384 static tree
24385 cp_parser_requirement_parameter_list (cp_parser *parser)
24387 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
24388 return error_mark_node;
24390 tree parms = cp_parser_parameter_declaration_clause (parser);
24392 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
24393 return error_mark_node;
24395 return parms;
24398 /* Parse the body of a requirement.
24400 requirement-body:
24401 '{' requirement-list '}' */
24402 static tree
24403 cp_parser_requirement_body (cp_parser *parser)
24405 if (!cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
24406 return error_mark_node;
24408 tree reqs = cp_parser_requirement_list (parser);
24410 if (!cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE))
24411 return error_mark_node;
24413 return reqs;
24416 /* Parse a list of requirements.
24418 requirement-list:
24419 requirement
24420 requirement-list ';' requirement[opt] */
24421 static tree
24422 cp_parser_requirement_list (cp_parser *parser)
24424 tree result = NULL_TREE;
24425 while (true)
24427 tree req = cp_parser_requirement (parser);
24428 if (req == error_mark_node)
24429 return error_mark_node;
24431 result = tree_cons (NULL_TREE, req, result);
24433 /* If we see a semi-colon, consume it. */
24434 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
24435 cp_lexer_consume_token (parser->lexer);
24437 /* Stop processing at the end of the list. */
24438 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
24439 break;
24442 /* Reverse the order of requirements so they are analyzed in
24443 declaration order. */
24444 return nreverse (result);
24447 /* Parse a syntactic requirement or type requirement.
24449 requirement:
24450 simple-requirement
24451 compound-requirement
24452 type-requirement
24453 nested-requirement */
24454 static tree
24455 cp_parser_requirement (cp_parser *parser)
24457 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
24458 return cp_parser_compound_requirement (parser);
24459 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TYPENAME))
24460 return cp_parser_type_requirement (parser);
24461 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_REQUIRES))
24462 return cp_parser_nested_requirement (parser);
24463 else
24464 return cp_parser_simple_requirement (parser);
24467 /* Parse a simple requirement.
24469 simple-requirement:
24470 expression ';' */
24471 static tree
24472 cp_parser_simple_requirement (cp_parser *parser)
24474 tree expr = cp_parser_expression (parser, NULL, false, false);
24475 if (!expr || expr == error_mark_node)
24476 return error_mark_node;
24478 if (!cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON))
24479 return error_mark_node;
24481 return finish_simple_requirement (expr);
24484 /* Parse a type requirement
24486 type-requirement
24487 nested-name-specifier [opt] required-type-name ';'
24489 required-type-name:
24490 type-name
24491 'template' [opt] simple-template-id */
24492 static tree
24493 cp_parser_type_requirement (cp_parser *parser)
24495 cp_lexer_consume_token (parser->lexer);
24497 // Save the scope before parsing name specifiers.
24498 tree saved_scope = parser->scope;
24499 tree saved_object_scope = parser->object_scope;
24500 tree saved_qualifying_scope = parser->qualifying_scope;
24501 cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/true);
24502 cp_parser_nested_name_specifier_opt (parser,
24503 /*typename_keyword_p=*/true,
24504 /*check_dependency_p=*/false,
24505 /*type_p=*/true,
24506 /*is_declaration=*/false);
24508 tree type;
24509 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
24511 cp_lexer_consume_token (parser->lexer);
24512 type = cp_parser_template_id (parser,
24513 /*template_keyword_p=*/true,
24514 /*check_dependency=*/false,
24515 /*tag_type=*/none_type,
24516 /*is_declaration=*/false);
24517 type = make_typename_type (parser->scope, type, typename_type,
24518 /*complain=*/tf_error);
24520 else
24521 type = cp_parser_type_name (parser, /*typename_keyword_p=*/true);
24523 if (TREE_CODE (type) == TYPE_DECL)
24524 type = TREE_TYPE (type);
24526 parser->scope = saved_scope;
24527 parser->object_scope = saved_object_scope;
24528 parser->qualifying_scope = saved_qualifying_scope;
24530 if (type == error_mark_node)
24531 cp_parser_skip_to_end_of_statement (parser);
24533 if (!cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON))
24534 return error_mark_node;
24535 if (type == error_mark_node)
24536 return error_mark_node;
24538 return finish_type_requirement (type);
24541 /* Parse a compound requirement
24543 compound-requirement:
24544 '{' expression '}' 'noexcept' [opt] trailing-return-type [opt] ';' */
24545 static tree
24546 cp_parser_compound_requirement (cp_parser *parser)
24548 /* Parse an expression enclosed in '{ }'s. */
24549 if (!cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
24550 return error_mark_node;
24552 tree expr = cp_parser_expression (parser, NULL, false, false);
24553 if (!expr || expr == error_mark_node)
24554 return error_mark_node;
24556 if (!cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE))
24557 return error_mark_node;
24559 /* Parse the optional noexcept. */
24560 bool noexcept_p = false;
24561 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_NOEXCEPT))
24563 cp_lexer_consume_token (parser->lexer);
24564 noexcept_p = true;
24567 /* Parse the optional trailing return type. */
24568 tree type = NULL_TREE;
24569 if (cp_lexer_next_token_is (parser->lexer, CPP_DEREF))
24571 cp_lexer_consume_token (parser->lexer);
24572 bool saved_result_type_constraint_p = parser->in_result_type_constraint_p;
24573 parser->in_result_type_constraint_p = true;
24574 type = cp_parser_trailing_type_id (parser);
24575 parser->in_result_type_constraint_p = saved_result_type_constraint_p;
24576 if (type == error_mark_node)
24577 return error_mark_node;
24580 return finish_compound_requirement (expr, type, noexcept_p);
24583 /* Parse a nested requirement. This is the same as a requires clause.
24585 nested-requirement:
24586 requires-clause */
24587 static tree
24588 cp_parser_nested_requirement (cp_parser *parser)
24590 cp_lexer_consume_token (parser->lexer);
24591 tree req = cp_parser_requires_clause (parser);
24592 if (req == error_mark_node)
24593 return error_mark_node;
24594 return finish_nested_requirement (req);
24597 /* Support Functions */
24599 /* Return the appropriate prefer_type argument for lookup_name_real based on
24600 tag_type and template_mem_access. */
24602 static inline int
24603 prefer_type_arg (tag_types tag_type, bool template_mem_access = false)
24605 /* DR 141: When looking in the current enclosing context for a template-name
24606 after -> or ., only consider class templates. */
24607 if (template_mem_access)
24608 return 2;
24609 switch (tag_type)
24611 case none_type: return 0; // No preference.
24612 case scope_type: return 1; // Type or namespace.
24613 default: return 2; // Type only.
24617 /* Looks up NAME in the current scope, as given by PARSER->SCOPE.
24618 NAME should have one of the representations used for an
24619 id-expression. If NAME is the ERROR_MARK_NODE, the ERROR_MARK_NODE
24620 is returned. If PARSER->SCOPE is a dependent type, then a
24621 SCOPE_REF is returned.
24623 If NAME is a TEMPLATE_ID_EXPR, then it will be immediately
24624 returned; the name was already resolved when the TEMPLATE_ID_EXPR
24625 was formed. Abstractly, such entities should not be passed to this
24626 function, because they do not need to be looked up, but it is
24627 simpler to check for this special case here, rather than at the
24628 call-sites.
24630 In cases not explicitly covered above, this function returns a
24631 DECL, OVERLOAD, or baselink representing the result of the lookup.
24632 If there was no entity with the indicated NAME, the ERROR_MARK_NODE
24633 is returned.
24635 If TAG_TYPE is not NONE_TYPE, it indicates an explicit type keyword
24636 (e.g., "struct") that was used. In that case bindings that do not
24637 refer to types are ignored.
24639 If IS_TEMPLATE is TRUE, bindings that do not refer to templates are
24640 ignored.
24642 If IS_NAMESPACE is TRUE, bindings that do not refer to namespaces
24643 are ignored.
24645 If CHECK_DEPENDENCY is TRUE, names are not looked up in dependent
24646 types.
24648 If AMBIGUOUS_DECLS is non-NULL, *AMBIGUOUS_DECLS is set to a
24649 TREE_LIST of candidates if name-lookup results in an ambiguity, and
24650 NULL_TREE otherwise. */
24652 static cp_expr
24653 cp_parser_lookup_name (cp_parser *parser, tree name,
24654 enum tag_types tag_type,
24655 bool is_template,
24656 bool is_namespace,
24657 bool check_dependency,
24658 tree *ambiguous_decls,
24659 location_t name_location)
24661 tree decl;
24662 tree object_type = parser->context->object_type;
24664 /* Assume that the lookup will be unambiguous. */
24665 if (ambiguous_decls)
24666 *ambiguous_decls = NULL_TREE;
24668 /* Now that we have looked up the name, the OBJECT_TYPE (if any) is
24669 no longer valid. Note that if we are parsing tentatively, and
24670 the parse fails, OBJECT_TYPE will be automatically restored. */
24671 parser->context->object_type = NULL_TREE;
24673 if (name == error_mark_node)
24674 return error_mark_node;
24676 /* A template-id has already been resolved; there is no lookup to
24677 do. */
24678 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
24679 return name;
24680 if (BASELINK_P (name))
24682 gcc_assert (TREE_CODE (BASELINK_FUNCTIONS (name))
24683 == TEMPLATE_ID_EXPR);
24684 return name;
24687 /* A BIT_NOT_EXPR is used to represent a destructor. By this point,
24688 it should already have been checked to make sure that the name
24689 used matches the type being destroyed. */
24690 if (TREE_CODE (name) == BIT_NOT_EXPR)
24692 tree type;
24694 /* Figure out to which type this destructor applies. */
24695 if (parser->scope)
24696 type = parser->scope;
24697 else if (object_type)
24698 type = object_type;
24699 else
24700 type = current_class_type;
24701 /* If that's not a class type, there is no destructor. */
24702 if (!type || !CLASS_TYPE_P (type))
24703 return error_mark_node;
24704 if (CLASSTYPE_LAZY_DESTRUCTOR (type))
24705 lazily_declare_fn (sfk_destructor, type);
24706 if (!CLASSTYPE_DESTRUCTORS (type))
24707 return error_mark_node;
24708 /* If it was a class type, return the destructor. */
24709 return CLASSTYPE_DESTRUCTORS (type);
24712 /* By this point, the NAME should be an ordinary identifier. If
24713 the id-expression was a qualified name, the qualifying scope is
24714 stored in PARSER->SCOPE at this point. */
24715 gcc_assert (identifier_p (name));
24717 /* Perform the lookup. */
24718 if (parser->scope)
24720 bool dependent_p;
24722 if (parser->scope == error_mark_node)
24723 return error_mark_node;
24725 /* If the SCOPE is dependent, the lookup must be deferred until
24726 the template is instantiated -- unless we are explicitly
24727 looking up names in uninstantiated templates. Even then, we
24728 cannot look up the name if the scope is not a class type; it
24729 might, for example, be a template type parameter. */
24730 dependent_p = (TYPE_P (parser->scope)
24731 && dependent_scope_p (parser->scope));
24732 if ((check_dependency || !CLASS_TYPE_P (parser->scope))
24733 && dependent_p)
24734 /* Defer lookup. */
24735 decl = error_mark_node;
24736 else
24738 tree pushed_scope = NULL_TREE;
24740 /* If PARSER->SCOPE is a dependent type, then it must be a
24741 class type, and we must not be checking dependencies;
24742 otherwise, we would have processed this lookup above. So
24743 that PARSER->SCOPE is not considered a dependent base by
24744 lookup_member, we must enter the scope here. */
24745 if (dependent_p)
24746 pushed_scope = push_scope (parser->scope);
24748 /* If the PARSER->SCOPE is a template specialization, it
24749 may be instantiated during name lookup. In that case,
24750 errors may be issued. Even if we rollback the current
24751 tentative parse, those errors are valid. */
24752 decl = lookup_qualified_name (parser->scope, name,
24753 prefer_type_arg (tag_type),
24754 /*complain=*/true);
24756 /* 3.4.3.1: In a lookup in which the constructor is an acceptable
24757 lookup result and the nested-name-specifier nominates a class C:
24758 * if the name specified after the nested-name-specifier, when
24759 looked up in C, is the injected-class-name of C (Clause 9), or
24760 * if the name specified after the nested-name-specifier is the
24761 same as the identifier or the simple-template-id's template-
24762 name in the last component of the nested-name-specifier,
24763 the name is instead considered to name the constructor of
24764 class C. [ Note: for example, the constructor is not an
24765 acceptable lookup result in an elaborated-type-specifier so
24766 the constructor would not be used in place of the
24767 injected-class-name. --end note ] Such a constructor name
24768 shall be used only in the declarator-id of a declaration that
24769 names a constructor or in a using-declaration. */
24770 if (tag_type == none_type
24771 && DECL_SELF_REFERENCE_P (decl)
24772 && same_type_p (DECL_CONTEXT (decl), parser->scope))
24773 decl = lookup_qualified_name (parser->scope, ctor_identifier,
24774 prefer_type_arg (tag_type),
24775 /*complain=*/true);
24777 /* If we have a single function from a using decl, pull it out. */
24778 if (TREE_CODE (decl) == OVERLOAD
24779 && !really_overloaded_fn (decl))
24780 decl = OVL_FUNCTION (decl);
24782 if (pushed_scope)
24783 pop_scope (pushed_scope);
24786 /* If the scope is a dependent type and either we deferred lookup or
24787 we did lookup but didn't find the name, rememeber the name. */
24788 if (decl == error_mark_node && TYPE_P (parser->scope)
24789 && dependent_type_p (parser->scope))
24791 if (tag_type)
24793 tree type;
24795 /* The resolution to Core Issue 180 says that `struct
24796 A::B' should be considered a type-name, even if `A'
24797 is dependent. */
24798 type = make_typename_type (parser->scope, name, tag_type,
24799 /*complain=*/tf_error);
24800 if (type != error_mark_node)
24801 decl = TYPE_NAME (type);
24803 else if (is_template
24804 && (cp_parser_next_token_ends_template_argument_p (parser)
24805 || cp_lexer_next_token_is (parser->lexer,
24806 CPP_CLOSE_PAREN)))
24807 decl = make_unbound_class_template (parser->scope,
24808 name, NULL_TREE,
24809 /*complain=*/tf_error);
24810 else
24811 decl = build_qualified_name (/*type=*/NULL_TREE,
24812 parser->scope, name,
24813 is_template);
24815 parser->qualifying_scope = parser->scope;
24816 parser->object_scope = NULL_TREE;
24818 else if (object_type)
24820 /* Look up the name in the scope of the OBJECT_TYPE, unless the
24821 OBJECT_TYPE is not a class. */
24822 if (CLASS_TYPE_P (object_type))
24823 /* If the OBJECT_TYPE is a template specialization, it may
24824 be instantiated during name lookup. In that case, errors
24825 may be issued. Even if we rollback the current tentative
24826 parse, those errors are valid. */
24827 decl = lookup_member (object_type,
24828 name,
24829 /*protect=*/0,
24830 prefer_type_arg (tag_type),
24831 tf_warning_or_error);
24832 else
24833 decl = NULL_TREE;
24835 if (!decl)
24836 /* Look it up in the enclosing context. DR 141: When looking for a
24837 template-name after -> or ., only consider class templates. */
24838 decl = lookup_name_real (name, prefer_type_arg (tag_type, is_template),
24839 /*nonclass=*/0,
24840 /*block_p=*/true, is_namespace, 0);
24841 if (object_type == unknown_type_node)
24842 /* The object is type-dependent, so we can't look anything up; we used
24843 this to get the DR 141 behavior. */
24844 object_type = NULL_TREE;
24845 parser->object_scope = object_type;
24846 parser->qualifying_scope = NULL_TREE;
24848 else
24850 decl = lookup_name_real (name, prefer_type_arg (tag_type),
24851 /*nonclass=*/0,
24852 /*block_p=*/true, is_namespace, 0);
24853 parser->qualifying_scope = NULL_TREE;
24854 parser->object_scope = NULL_TREE;
24857 /* If the lookup failed, let our caller know. */
24858 if (!decl || decl == error_mark_node)
24859 return error_mark_node;
24861 /* Pull out the template from an injected-class-name (or multiple). */
24862 if (is_template)
24863 decl = maybe_get_template_decl_from_type_decl (decl);
24865 /* If it's a TREE_LIST, the result of the lookup was ambiguous. */
24866 if (TREE_CODE (decl) == TREE_LIST)
24868 if (ambiguous_decls)
24869 *ambiguous_decls = decl;
24870 /* The error message we have to print is too complicated for
24871 cp_parser_error, so we incorporate its actions directly. */
24872 if (!cp_parser_simulate_error (parser))
24874 error_at (name_location, "reference to %qD is ambiguous",
24875 name);
24876 print_candidates (decl);
24878 return error_mark_node;
24881 gcc_assert (DECL_P (decl)
24882 || TREE_CODE (decl) == OVERLOAD
24883 || TREE_CODE (decl) == SCOPE_REF
24884 || TREE_CODE (decl) == UNBOUND_CLASS_TEMPLATE
24885 || BASELINK_P (decl));
24887 /* If we have resolved the name of a member declaration, check to
24888 see if the declaration is accessible. When the name resolves to
24889 set of overloaded functions, accessibility is checked when
24890 overload resolution is done.
24892 During an explicit instantiation, access is not checked at all,
24893 as per [temp.explicit]. */
24894 if (DECL_P (decl))
24895 check_accessibility_of_qualified_id (decl, object_type, parser->scope);
24897 maybe_record_typedef_use (decl);
24899 return cp_expr (decl, name_location);
24902 /* Like cp_parser_lookup_name, but for use in the typical case where
24903 CHECK_ACCESS is TRUE, IS_TYPE is FALSE, IS_TEMPLATE is FALSE,
24904 IS_NAMESPACE is FALSE, and CHECK_DEPENDENCY is TRUE. */
24906 static tree
24907 cp_parser_lookup_name_simple (cp_parser* parser, tree name, location_t location)
24909 return cp_parser_lookup_name (parser, name,
24910 none_type,
24911 /*is_template=*/false,
24912 /*is_namespace=*/false,
24913 /*check_dependency=*/true,
24914 /*ambiguous_decls=*/NULL,
24915 location);
24918 /* If DECL is a TEMPLATE_DECL that can be treated like a TYPE_DECL in
24919 the current context, return the TYPE_DECL. If TAG_NAME_P is
24920 true, the DECL indicates the class being defined in a class-head,
24921 or declared in an elaborated-type-specifier.
24923 Otherwise, return DECL. */
24925 static tree
24926 cp_parser_maybe_treat_template_as_class (tree decl, bool tag_name_p)
24928 /* If the TEMPLATE_DECL is being declared as part of a class-head,
24929 the translation from TEMPLATE_DECL to TYPE_DECL occurs:
24931 struct A {
24932 template <typename T> struct B;
24935 template <typename T> struct A::B {};
24937 Similarly, in an elaborated-type-specifier:
24939 namespace N { struct X{}; }
24941 struct A {
24942 template <typename T> friend struct N::X;
24945 However, if the DECL refers to a class type, and we are in
24946 the scope of the class, then the name lookup automatically
24947 finds the TYPE_DECL created by build_self_reference rather
24948 than a TEMPLATE_DECL. For example, in:
24950 template <class T> struct S {
24951 S s;
24954 there is no need to handle such case. */
24956 if (DECL_CLASS_TEMPLATE_P (decl) && tag_name_p)
24957 return DECL_TEMPLATE_RESULT (decl);
24959 return decl;
24962 /* If too many, or too few, template-parameter lists apply to the
24963 declarator, issue an error message. Returns TRUE if all went well,
24964 and FALSE otherwise. */
24966 static bool
24967 cp_parser_check_declarator_template_parameters (cp_parser* parser,
24968 cp_declarator *declarator,
24969 location_t declarator_location)
24971 switch (declarator->kind)
24973 case cdk_id:
24975 unsigned num_templates = 0;
24976 tree scope = declarator->u.id.qualifying_scope;
24978 if (scope)
24979 num_templates = num_template_headers_for_class (scope);
24980 else if (TREE_CODE (declarator->u.id.unqualified_name)
24981 == TEMPLATE_ID_EXPR)
24982 /* If the DECLARATOR has the form `X<y>' then it uses one
24983 additional level of template parameters. */
24984 ++num_templates;
24986 return cp_parser_check_template_parameters
24987 (parser, num_templates, declarator_location, declarator);
24990 case cdk_function:
24991 case cdk_array:
24992 case cdk_pointer:
24993 case cdk_reference:
24994 case cdk_ptrmem:
24995 return (cp_parser_check_declarator_template_parameters
24996 (parser, declarator->declarator, declarator_location));
24998 case cdk_error:
24999 return true;
25001 default:
25002 gcc_unreachable ();
25004 return false;
25007 /* NUM_TEMPLATES were used in the current declaration. If that is
25008 invalid, return FALSE and issue an error messages. Otherwise,
25009 return TRUE. If DECLARATOR is non-NULL, then we are checking a
25010 declarator and we can print more accurate diagnostics. */
25012 static bool
25013 cp_parser_check_template_parameters (cp_parser* parser,
25014 unsigned num_templates,
25015 location_t location,
25016 cp_declarator *declarator)
25018 /* If there are the same number of template classes and parameter
25019 lists, that's OK. */
25020 if (parser->num_template_parameter_lists == num_templates)
25021 return true;
25022 /* If there are more, but only one more, then we are referring to a
25023 member template. That's OK too. */
25024 if (parser->num_template_parameter_lists == num_templates + 1)
25025 return true;
25026 /* If there are more template classes than parameter lists, we have
25027 something like:
25029 template <class T> void S<T>::R<T>::f (); */
25030 if (parser->num_template_parameter_lists < num_templates)
25032 if (declarator && !current_function_decl)
25033 error_at (location, "specializing member %<%T::%E%> "
25034 "requires %<template<>%> syntax",
25035 declarator->u.id.qualifying_scope,
25036 declarator->u.id.unqualified_name);
25037 else if (declarator)
25038 error_at (location, "invalid declaration of %<%T::%E%>",
25039 declarator->u.id.qualifying_scope,
25040 declarator->u.id.unqualified_name);
25041 else
25042 error_at (location, "too few template-parameter-lists");
25043 return false;
25045 /* Otherwise, there are too many template parameter lists. We have
25046 something like:
25048 template <class T> template <class U> void S::f(); */
25049 error_at (location, "too many template-parameter-lists");
25050 return false;
25053 /* Parse an optional `::' token indicating that the following name is
25054 from the global namespace. If so, PARSER->SCOPE is set to the
25055 GLOBAL_NAMESPACE. Otherwise, PARSER->SCOPE is set to NULL_TREE,
25056 unless CURRENT_SCOPE_VALID_P is TRUE, in which case it is left alone.
25057 Returns the new value of PARSER->SCOPE, if the `::' token is
25058 present, and NULL_TREE otherwise. */
25060 static tree
25061 cp_parser_global_scope_opt (cp_parser* parser, bool current_scope_valid_p)
25063 cp_token *token;
25065 /* Peek at the next token. */
25066 token = cp_lexer_peek_token (parser->lexer);
25067 /* If we're looking at a `::' token then we're starting from the
25068 global namespace, not our current location. */
25069 if (token->type == CPP_SCOPE)
25071 /* Consume the `::' token. */
25072 cp_lexer_consume_token (parser->lexer);
25073 /* Set the SCOPE so that we know where to start the lookup. */
25074 parser->scope = global_namespace;
25075 parser->qualifying_scope = global_namespace;
25076 parser->object_scope = NULL_TREE;
25078 return parser->scope;
25080 else if (!current_scope_valid_p)
25082 parser->scope = NULL_TREE;
25083 parser->qualifying_scope = NULL_TREE;
25084 parser->object_scope = NULL_TREE;
25087 return NULL_TREE;
25090 /* Returns TRUE if the upcoming token sequence is the start of a
25091 constructor declarator. If FRIEND_P is true, the declarator is
25092 preceded by the `friend' specifier. */
25094 static bool
25095 cp_parser_constructor_declarator_p (cp_parser *parser, bool friend_p)
25097 bool constructor_p;
25098 bool outside_class_specifier_p;
25099 tree nested_name_specifier;
25100 cp_token *next_token;
25102 /* The common case is that this is not a constructor declarator, so
25103 try to avoid doing lots of work if at all possible. It's not
25104 valid declare a constructor at function scope. */
25105 if (parser->in_function_body)
25106 return false;
25107 /* And only certain tokens can begin a constructor declarator. */
25108 next_token = cp_lexer_peek_token (parser->lexer);
25109 if (next_token->type != CPP_NAME
25110 && next_token->type != CPP_SCOPE
25111 && next_token->type != CPP_NESTED_NAME_SPECIFIER
25112 && next_token->type != CPP_TEMPLATE_ID)
25113 return false;
25115 /* Parse tentatively; we are going to roll back all of the tokens
25116 consumed here. */
25117 cp_parser_parse_tentatively (parser);
25118 /* Assume that we are looking at a constructor declarator. */
25119 constructor_p = true;
25121 /* Look for the optional `::' operator. */
25122 cp_parser_global_scope_opt (parser,
25123 /*current_scope_valid_p=*/false);
25124 /* Look for the nested-name-specifier. */
25125 nested_name_specifier
25126 = (cp_parser_nested_name_specifier_opt (parser,
25127 /*typename_keyword_p=*/false,
25128 /*check_dependency_p=*/false,
25129 /*type_p=*/false,
25130 /*is_declaration=*/false));
25132 outside_class_specifier_p = (!at_class_scope_p ()
25133 || !TYPE_BEING_DEFINED (current_class_type)
25134 || friend_p);
25136 /* Outside of a class-specifier, there must be a
25137 nested-name-specifier. */
25138 if (!nested_name_specifier && outside_class_specifier_p)
25139 constructor_p = false;
25140 else if (nested_name_specifier == error_mark_node)
25141 constructor_p = false;
25143 /* If we have a class scope, this is easy; DR 147 says that S::S always
25144 names the constructor, and no other qualified name could. */
25145 if (constructor_p && nested_name_specifier
25146 && CLASS_TYPE_P (nested_name_specifier))
25148 tree id = cp_parser_unqualified_id (parser,
25149 /*template_keyword_p=*/false,
25150 /*check_dependency_p=*/false,
25151 /*declarator_p=*/true,
25152 /*optional_p=*/false);
25153 if (is_overloaded_fn (id))
25154 id = DECL_NAME (get_first_fn (id));
25155 if (!constructor_name_p (id, nested_name_specifier))
25156 constructor_p = false;
25158 /* If we still think that this might be a constructor-declarator,
25159 look for a class-name. */
25160 else if (constructor_p)
25162 /* If we have:
25164 template <typename T> struct S {
25165 S();
25168 we must recognize that the nested `S' names a class. */
25169 tree type_decl;
25170 type_decl = cp_parser_class_name (parser,
25171 /*typename_keyword_p=*/false,
25172 /*template_keyword_p=*/false,
25173 none_type,
25174 /*check_dependency_p=*/false,
25175 /*class_head_p=*/false,
25176 /*is_declaration=*/false);
25177 /* If there was no class-name, then this is not a constructor.
25178 Otherwise, if we are in a class-specifier and we aren't
25179 handling a friend declaration, check that its type matches
25180 current_class_type (c++/38313). Note: error_mark_node
25181 is left alone for error recovery purposes. */
25182 constructor_p = (!cp_parser_error_occurred (parser)
25183 && (outside_class_specifier_p
25184 || type_decl == error_mark_node
25185 || same_type_p (current_class_type,
25186 TREE_TYPE (type_decl))));
25188 /* If we're still considering a constructor, we have to see a `(',
25189 to begin the parameter-declaration-clause, followed by either a
25190 `)', an `...', or a decl-specifier. We need to check for a
25191 type-specifier to avoid being fooled into thinking that:
25193 S (f) (int);
25195 is a constructor. (It is actually a function named `f' that
25196 takes one parameter (of type `int') and returns a value of type
25197 `S'. */
25198 if (constructor_p
25199 && !cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
25200 constructor_p = false;
25202 if (constructor_p
25203 && cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN)
25204 && cp_lexer_next_token_is_not (parser->lexer, CPP_ELLIPSIS)
25205 /* A parameter declaration begins with a decl-specifier,
25206 which is either the "attribute" keyword, a storage class
25207 specifier, or (usually) a type-specifier. */
25208 && !cp_lexer_next_token_is_decl_specifier_keyword (parser->lexer))
25210 tree type;
25211 tree pushed_scope = NULL_TREE;
25212 unsigned saved_num_template_parameter_lists;
25214 /* Names appearing in the type-specifier should be looked up
25215 in the scope of the class. */
25216 if (current_class_type)
25217 type = NULL_TREE;
25218 else
25220 type = TREE_TYPE (type_decl);
25221 if (TREE_CODE (type) == TYPENAME_TYPE)
25223 type = resolve_typename_type (type,
25224 /*only_current_p=*/false);
25225 if (TREE_CODE (type) == TYPENAME_TYPE)
25227 cp_parser_abort_tentative_parse (parser);
25228 return false;
25231 pushed_scope = push_scope (type);
25234 /* Inside the constructor parameter list, surrounding
25235 template-parameter-lists do not apply. */
25236 saved_num_template_parameter_lists
25237 = parser->num_template_parameter_lists;
25238 parser->num_template_parameter_lists = 0;
25240 /* Look for the type-specifier. */
25241 cp_parser_type_specifier (parser,
25242 CP_PARSER_FLAGS_NONE,
25243 /*decl_specs=*/NULL,
25244 /*is_declarator=*/true,
25245 /*declares_class_or_enum=*/NULL,
25246 /*is_cv_qualifier=*/NULL);
25248 parser->num_template_parameter_lists
25249 = saved_num_template_parameter_lists;
25251 /* Leave the scope of the class. */
25252 if (pushed_scope)
25253 pop_scope (pushed_scope);
25255 constructor_p = !cp_parser_error_occurred (parser);
25259 /* We did not really want to consume any tokens. */
25260 cp_parser_abort_tentative_parse (parser);
25262 return constructor_p;
25265 /* Parse the definition of the function given by the DECL_SPECIFIERS,
25266 ATTRIBUTES, and DECLARATOR. The access checks have been deferred;
25267 they must be performed once we are in the scope of the function.
25269 Returns the function defined. */
25271 static tree
25272 cp_parser_function_definition_from_specifiers_and_declarator
25273 (cp_parser* parser,
25274 cp_decl_specifier_seq *decl_specifiers,
25275 tree attributes,
25276 const cp_declarator *declarator)
25278 tree fn;
25279 bool success_p;
25281 /* Begin the function-definition. */
25282 success_p = start_function (decl_specifiers, declarator, attributes);
25284 /* The things we're about to see are not directly qualified by any
25285 template headers we've seen thus far. */
25286 reset_specialization ();
25288 /* If there were names looked up in the decl-specifier-seq that we
25289 did not check, check them now. We must wait until we are in the
25290 scope of the function to perform the checks, since the function
25291 might be a friend. */
25292 perform_deferred_access_checks (tf_warning_or_error);
25294 if (success_p)
25296 cp_finalize_omp_declare_simd (parser, current_function_decl);
25297 parser->omp_declare_simd = NULL;
25298 cp_finalize_oacc_routine (parser, current_function_decl, true);
25299 parser->oacc_routine = NULL;
25302 if (!success_p)
25304 /* Skip the entire function. */
25305 cp_parser_skip_to_end_of_block_or_statement (parser);
25306 fn = error_mark_node;
25308 else if (DECL_INITIAL (current_function_decl) != error_mark_node)
25310 /* Seen already, skip it. An error message has already been output. */
25311 cp_parser_skip_to_end_of_block_or_statement (parser);
25312 fn = current_function_decl;
25313 current_function_decl = NULL_TREE;
25314 /* If this is a function from a class, pop the nested class. */
25315 if (current_class_name)
25316 pop_nested_class ();
25318 else
25320 timevar_id_t tv;
25321 if (DECL_DECLARED_INLINE_P (current_function_decl))
25322 tv = TV_PARSE_INLINE;
25323 else
25324 tv = TV_PARSE_FUNC;
25325 timevar_push (tv);
25326 fn = cp_parser_function_definition_after_declarator (parser,
25327 /*inline_p=*/false);
25328 timevar_pop (tv);
25331 return fn;
25334 /* Parse the part of a function-definition that follows the
25335 declarator. INLINE_P is TRUE iff this function is an inline
25336 function defined within a class-specifier.
25338 Returns the function defined. */
25340 static tree
25341 cp_parser_function_definition_after_declarator (cp_parser* parser,
25342 bool inline_p)
25344 tree fn;
25345 bool ctor_initializer_p = false;
25346 bool saved_in_unbraced_linkage_specification_p;
25347 bool saved_in_function_body;
25348 unsigned saved_num_template_parameter_lists;
25349 cp_token *token;
25350 bool fully_implicit_function_template_p
25351 = parser->fully_implicit_function_template_p;
25352 parser->fully_implicit_function_template_p = false;
25353 tree implicit_template_parms
25354 = parser->implicit_template_parms;
25355 parser->implicit_template_parms = 0;
25356 cp_binding_level* implicit_template_scope
25357 = parser->implicit_template_scope;
25358 parser->implicit_template_scope = 0;
25360 saved_in_function_body = parser->in_function_body;
25361 parser->in_function_body = true;
25362 /* If the next token is `return', then the code may be trying to
25363 make use of the "named return value" extension that G++ used to
25364 support. */
25365 token = cp_lexer_peek_token (parser->lexer);
25366 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_RETURN))
25368 /* Consume the `return' keyword. */
25369 cp_lexer_consume_token (parser->lexer);
25370 /* Look for the identifier that indicates what value is to be
25371 returned. */
25372 cp_parser_identifier (parser);
25373 /* Issue an error message. */
25374 error_at (token->location,
25375 "named return values are no longer supported");
25376 /* Skip tokens until we reach the start of the function body. */
25377 while (true)
25379 cp_token *token = cp_lexer_peek_token (parser->lexer);
25380 if (token->type == CPP_OPEN_BRACE
25381 || token->type == CPP_EOF
25382 || token->type == CPP_PRAGMA_EOL)
25383 break;
25384 cp_lexer_consume_token (parser->lexer);
25387 /* The `extern' in `extern "C" void f () { ... }' does not apply to
25388 anything declared inside `f'. */
25389 saved_in_unbraced_linkage_specification_p
25390 = parser->in_unbraced_linkage_specification_p;
25391 parser->in_unbraced_linkage_specification_p = false;
25392 /* Inside the function, surrounding template-parameter-lists do not
25393 apply. */
25394 saved_num_template_parameter_lists
25395 = parser->num_template_parameter_lists;
25396 parser->num_template_parameter_lists = 0;
25398 start_lambda_scope (current_function_decl);
25400 /* If the next token is `try', `__transaction_atomic', or
25401 `__transaction_relaxed`, then we are looking at either function-try-block
25402 or function-transaction-block. Note that all of these include the
25403 function-body. */
25404 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TRANSACTION_ATOMIC))
25405 ctor_initializer_p = cp_parser_function_transaction (parser,
25406 RID_TRANSACTION_ATOMIC);
25407 else if (cp_lexer_next_token_is_keyword (parser->lexer,
25408 RID_TRANSACTION_RELAXED))
25409 ctor_initializer_p = cp_parser_function_transaction (parser,
25410 RID_TRANSACTION_RELAXED);
25411 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TRY))
25412 ctor_initializer_p = cp_parser_function_try_block (parser);
25413 else
25414 ctor_initializer_p = cp_parser_ctor_initializer_opt_and_function_body
25415 (parser, /*in_function_try_block=*/false);
25417 finish_lambda_scope ();
25419 /* Finish the function. */
25420 fn = finish_function ((ctor_initializer_p ? 1 : 0) |
25421 (inline_p ? 2 : 0));
25422 /* Generate code for it, if necessary. */
25423 expand_or_defer_fn (fn);
25424 /* Restore the saved values. */
25425 parser->in_unbraced_linkage_specification_p
25426 = saved_in_unbraced_linkage_specification_p;
25427 parser->num_template_parameter_lists
25428 = saved_num_template_parameter_lists;
25429 parser->in_function_body = saved_in_function_body;
25431 parser->fully_implicit_function_template_p
25432 = fully_implicit_function_template_p;
25433 parser->implicit_template_parms
25434 = implicit_template_parms;
25435 parser->implicit_template_scope
25436 = implicit_template_scope;
25438 if (parser->fully_implicit_function_template_p)
25439 finish_fully_implicit_template (parser, /*member_decl_opt=*/0);
25441 return fn;
25444 /* Parse a template-declaration body (following argument list). */
25446 static void
25447 cp_parser_template_declaration_after_parameters (cp_parser* parser,
25448 tree parameter_list,
25449 bool member_p)
25451 tree decl = NULL_TREE;
25452 bool friend_p = false;
25454 /* We just processed one more parameter list. */
25455 ++parser->num_template_parameter_lists;
25457 /* Get the deferred access checks from the parameter list. These
25458 will be checked once we know what is being declared, as for a
25459 member template the checks must be performed in the scope of the
25460 class containing the member. */
25461 vec<deferred_access_check, va_gc> *checks = get_deferred_access_checks ();
25463 /* Tentatively parse for a new template parameter list, which can either be
25464 the template keyword or a template introduction. */
25465 if (cp_parser_template_declaration_after_export (parser, member_p))
25466 /* OK */;
25467 else if (cxx_dialect >= cxx11
25468 && cp_lexer_next_token_is_keyword (parser->lexer, RID_USING))
25469 decl = cp_parser_alias_declaration (parser);
25470 else
25472 /* There are no access checks when parsing a template, as we do not
25473 know if a specialization will be a friend. */
25474 push_deferring_access_checks (dk_no_check);
25475 cp_token *token = cp_lexer_peek_token (parser->lexer);
25476 decl = cp_parser_single_declaration (parser,
25477 checks,
25478 member_p,
25479 /*explicit_specialization_p=*/false,
25480 &friend_p);
25481 pop_deferring_access_checks ();
25483 /* If this is a member template declaration, let the front
25484 end know. */
25485 if (member_p && !friend_p && decl)
25487 if (TREE_CODE (decl) == TYPE_DECL)
25488 cp_parser_check_access_in_redeclaration (decl, token->location);
25490 decl = finish_member_template_decl (decl);
25492 else if (friend_p && decl
25493 && DECL_DECLARES_TYPE_P (decl))
25494 make_friend_class (current_class_type, TREE_TYPE (decl),
25495 /*complain=*/true);
25497 /* We are done with the current parameter list. */
25498 --parser->num_template_parameter_lists;
25500 pop_deferring_access_checks ();
25502 /* Finish up. */
25503 finish_template_decl (parameter_list);
25505 /* Check the template arguments for a literal operator template. */
25506 if (decl
25507 && DECL_DECLARES_FUNCTION_P (decl)
25508 && UDLIT_OPER_P (DECL_NAME (decl)))
25510 bool ok = true;
25511 if (parameter_list == NULL_TREE)
25512 ok = false;
25513 else
25515 int num_parms = TREE_VEC_LENGTH (parameter_list);
25516 if (num_parms == 1)
25518 tree parm_list = TREE_VEC_ELT (parameter_list, 0);
25519 tree parm = INNERMOST_TEMPLATE_PARMS (parm_list);
25520 if (TREE_TYPE (parm) != char_type_node
25521 || !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
25522 ok = false;
25524 else if (num_parms == 2 && cxx_dialect >= cxx14)
25526 tree parm_type = TREE_VEC_ELT (parameter_list, 0);
25527 tree type = INNERMOST_TEMPLATE_PARMS (parm_type);
25528 tree parm_list = TREE_VEC_ELT (parameter_list, 1);
25529 tree parm = INNERMOST_TEMPLATE_PARMS (parm_list);
25530 if (TREE_TYPE (parm) != TREE_TYPE (type)
25531 || !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
25532 ok = false;
25534 else
25535 ok = false;
25537 if (!ok)
25539 if (cxx_dialect >= cxx14)
25540 error ("literal operator template %qD has invalid parameter list."
25541 " Expected non-type template argument pack <char...>"
25542 " or <typename CharT, CharT...>",
25543 decl);
25544 else
25545 error ("literal operator template %qD has invalid parameter list."
25546 " Expected non-type template argument pack <char...>",
25547 decl);
25551 /* Register member declarations. */
25552 if (member_p && !friend_p && decl && !DECL_CLASS_TEMPLATE_P (decl))
25553 finish_member_declaration (decl);
25554 /* If DECL is a function template, we must return to parse it later.
25555 (Even though there is no definition, there might be default
25556 arguments that need handling.) */
25557 if (member_p && decl
25558 && DECL_DECLARES_FUNCTION_P (decl))
25559 vec_safe_push (unparsed_funs_with_definitions, decl);
25562 /* Parse a template introduction header for a template-declaration. Returns
25563 false if tentative parse fails. */
25565 static bool
25566 cp_parser_template_introduction (cp_parser* parser, bool member_p)
25568 cp_parser_parse_tentatively (parser);
25570 tree saved_scope = parser->scope;
25571 tree saved_object_scope = parser->object_scope;
25572 tree saved_qualifying_scope = parser->qualifying_scope;
25574 /* Look for the optional `::' operator. */
25575 cp_parser_global_scope_opt (parser,
25576 /*current_scope_valid_p=*/false);
25577 /* Look for the nested-name-specifier. */
25578 cp_parser_nested_name_specifier_opt (parser,
25579 /*typename_keyword_p=*/false,
25580 /*check_dependency_p=*/true,
25581 /*type_p=*/false,
25582 /*is_declaration=*/false);
25584 cp_token *token = cp_lexer_peek_token (parser->lexer);
25585 tree concept_name = cp_parser_identifier (parser);
25587 /* Look up the concept for which we will be matching
25588 template parameters. */
25589 tree tmpl_decl = cp_parser_lookup_name_simple (parser, concept_name,
25590 token->location);
25591 parser->scope = saved_scope;
25592 parser->object_scope = saved_object_scope;
25593 parser->qualifying_scope = saved_qualifying_scope;
25595 if (concept_name == error_mark_node)
25596 cp_parser_simulate_error (parser);
25598 /* Look for opening brace for introduction. */
25599 cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE);
25601 if (!cp_parser_parse_definitely (parser))
25602 return false;
25604 push_deferring_access_checks (dk_deferred);
25606 /* Build vector of placeholder parameters and grab
25607 matching identifiers. */
25608 tree introduction_list = cp_parser_introduction_list (parser);
25610 /* The introduction-list shall not be empty. */
25611 int nargs = TREE_VEC_LENGTH (introduction_list);
25612 if (nargs == 0)
25614 error ("empty introduction-list");
25615 return true;
25618 /* Look for closing brace for introduction. */
25619 if (!cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE))
25620 return true;
25622 if (tmpl_decl == error_mark_node)
25624 cp_parser_name_lookup_error (parser, concept_name, tmpl_decl, NLE_NULL,
25625 token->location);
25626 return true;
25629 /* Build and associate the constraint. */
25630 tree parms = finish_template_introduction (tmpl_decl, introduction_list);
25631 if (parms && parms != error_mark_node)
25633 cp_parser_template_declaration_after_parameters (parser, parms,
25634 member_p);
25635 return true;
25638 error_at (token->location, "no matching concept for template-introduction");
25639 return true;
25642 /* Parse a normal template-declaration following the template keyword. */
25644 static void
25645 cp_parser_explicit_template_declaration (cp_parser* parser, bool member_p)
25647 tree parameter_list;
25648 bool need_lang_pop;
25649 location_t location = input_location;
25651 /* Look for the `<' token. */
25652 if (!cp_parser_require (parser, CPP_LESS, RT_LESS))
25653 return;
25654 if (at_class_scope_p () && current_function_decl)
25656 /* 14.5.2.2 [temp.mem]
25658 A local class shall not have member templates. */
25659 error_at (location,
25660 "invalid declaration of member template in local class");
25661 cp_parser_skip_to_end_of_block_or_statement (parser);
25662 return;
25664 /* [temp]
25666 A template ... shall not have C linkage. */
25667 if (current_lang_name == lang_name_c)
25669 error_at (location, "template with C linkage");
25670 /* Give it C++ linkage to avoid confusing other parts of the
25671 front end. */
25672 push_lang_context (lang_name_cplusplus);
25673 need_lang_pop = true;
25675 else
25676 need_lang_pop = false;
25678 /* We cannot perform access checks on the template parameter
25679 declarations until we know what is being declared, just as we
25680 cannot check the decl-specifier list. */
25681 push_deferring_access_checks (dk_deferred);
25683 /* If the next token is `>', then we have an invalid
25684 specialization. Rather than complain about an invalid template
25685 parameter, issue an error message here. */
25686 if (cp_lexer_next_token_is (parser->lexer, CPP_GREATER))
25688 cp_parser_error (parser, "invalid explicit specialization");
25689 begin_specialization ();
25690 parameter_list = NULL_TREE;
25692 else
25694 /* Parse the template parameters. */
25695 parameter_list = cp_parser_template_parameter_list (parser);
25698 /* Look for the `>'. */
25699 cp_parser_skip_to_end_of_template_parameter_list (parser);
25701 /* Manage template requirements */
25702 tree reqs = get_shorthand_constraints (current_template_parms);
25703 if (tree r = cp_parser_requires_clause_opt (parser))
25704 reqs = conjoin_constraints (reqs, make_predicate_constraint (r));
25705 TEMPLATE_PARMS_CONSTRAINTS (current_template_parms) = reqs;
25707 cp_parser_template_declaration_after_parameters (parser, parameter_list,
25708 member_p);
25710 /* For the erroneous case of a template with C linkage, we pushed an
25711 implicit C++ linkage scope; exit that scope now. */
25712 if (need_lang_pop)
25713 pop_lang_context ();
25716 /* Parse a template-declaration, assuming that the `export' (and
25717 `extern') keywords, if present, has already been scanned. MEMBER_P
25718 is as for cp_parser_template_declaration. */
25720 static bool
25721 cp_parser_template_declaration_after_export (cp_parser* parser, bool member_p)
25723 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
25725 cp_lexer_consume_token (parser->lexer);
25726 cp_parser_explicit_template_declaration (parser, member_p);
25727 return true;
25729 else if (flag_concepts)
25730 return cp_parser_template_introduction (parser, member_p);
25732 return false;
25735 /* Perform the deferred access checks from a template-parameter-list.
25736 CHECKS is a TREE_LIST of access checks, as returned by
25737 get_deferred_access_checks. */
25739 static void
25740 cp_parser_perform_template_parameter_access_checks (vec<deferred_access_check, va_gc> *checks)
25742 ++processing_template_parmlist;
25743 perform_access_checks (checks, tf_warning_or_error);
25744 --processing_template_parmlist;
25747 /* Parse a `decl-specifier-seq [opt] init-declarator [opt] ;' or
25748 `function-definition' sequence that follows a template header.
25749 If MEMBER_P is true, this declaration appears in a class scope.
25751 Returns the DECL for the declared entity. If FRIEND_P is non-NULL,
25752 *FRIEND_P is set to TRUE iff the declaration is a friend. */
25754 static tree
25755 cp_parser_single_declaration (cp_parser* parser,
25756 vec<deferred_access_check, va_gc> *checks,
25757 bool member_p,
25758 bool explicit_specialization_p,
25759 bool* friend_p)
25761 int declares_class_or_enum;
25762 tree decl = NULL_TREE;
25763 cp_decl_specifier_seq decl_specifiers;
25764 bool function_definition_p = false;
25765 cp_token *decl_spec_token_start;
25767 /* This function is only used when processing a template
25768 declaration. */
25769 gcc_assert (innermost_scope_kind () == sk_template_parms
25770 || innermost_scope_kind () == sk_template_spec);
25772 /* Defer access checks until we know what is being declared. */
25773 push_deferring_access_checks (dk_deferred);
25775 /* Try the `decl-specifier-seq [opt] init-declarator [opt]'
25776 alternative. */
25777 decl_spec_token_start = cp_lexer_peek_token (parser->lexer);
25778 cp_parser_decl_specifier_seq (parser,
25779 CP_PARSER_FLAGS_OPTIONAL,
25780 &decl_specifiers,
25781 &declares_class_or_enum);
25782 if (friend_p)
25783 *friend_p = cp_parser_friend_p (&decl_specifiers);
25785 /* There are no template typedefs. */
25786 if (decl_spec_seq_has_spec_p (&decl_specifiers, ds_typedef))
25788 error_at (decl_spec_token_start->location,
25789 "template declaration of %<typedef%>");
25790 decl = error_mark_node;
25793 /* Gather up the access checks that occurred the
25794 decl-specifier-seq. */
25795 stop_deferring_access_checks ();
25797 /* Check for the declaration of a template class. */
25798 if (declares_class_or_enum)
25800 if (cp_parser_declares_only_class_p (parser)
25801 || (declares_class_or_enum & 2))
25803 // If this is a declaration, but not a definition, associate
25804 // any constraints with the type declaration. Constraints
25805 // are associated with definitions in cp_parser_class_specifier.
25806 if (declares_class_or_enum == 1)
25807 associate_classtype_constraints (decl_specifiers.type);
25809 decl = shadow_tag (&decl_specifiers);
25811 /* In this case:
25813 struct C {
25814 friend template <typename T> struct A<T>::B;
25817 A<T>::B will be represented by a TYPENAME_TYPE, and
25818 therefore not recognized by shadow_tag. */
25819 if (friend_p && *friend_p
25820 && !decl
25821 && decl_specifiers.type
25822 && TYPE_P (decl_specifiers.type))
25823 decl = decl_specifiers.type;
25825 if (decl && decl != error_mark_node)
25826 decl = TYPE_NAME (decl);
25827 else
25828 decl = error_mark_node;
25830 /* Perform access checks for template parameters. */
25831 cp_parser_perform_template_parameter_access_checks (checks);
25833 /* Give a helpful diagnostic for
25834 template <class T> struct A { } a;
25835 if we aren't already recovering from an error. */
25836 if (!cp_parser_declares_only_class_p (parser)
25837 && !seen_error ())
25839 error_at (cp_lexer_peek_token (parser->lexer)->location,
25840 "a class template declaration must not declare "
25841 "anything else");
25842 cp_parser_skip_to_end_of_block_or_statement (parser);
25843 goto out;
25848 /* Complain about missing 'typename' or other invalid type names. */
25849 if (!decl_specifiers.any_type_specifiers_p
25850 && cp_parser_parse_and_diagnose_invalid_type_name (parser))
25852 /* cp_parser_parse_and_diagnose_invalid_type_name calls
25853 cp_parser_skip_to_end_of_block_or_statement, so don't try to parse
25854 the rest of this declaration. */
25855 decl = error_mark_node;
25856 goto out;
25859 /* If it's not a template class, try for a template function. If
25860 the next token is a `;', then this declaration does not declare
25861 anything. But, if there were errors in the decl-specifiers, then
25862 the error might well have come from an attempted class-specifier.
25863 In that case, there's no need to warn about a missing declarator. */
25864 if (!decl
25865 && (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON)
25866 || decl_specifiers.type != error_mark_node))
25868 decl = cp_parser_init_declarator (parser,
25869 &decl_specifiers,
25870 checks,
25871 /*function_definition_allowed_p=*/true,
25872 member_p,
25873 declares_class_or_enum,
25874 &function_definition_p,
25875 NULL, NULL, NULL);
25877 /* 7.1.1-1 [dcl.stc]
25879 A storage-class-specifier shall not be specified in an explicit
25880 specialization... */
25881 if (decl
25882 && explicit_specialization_p
25883 && decl_specifiers.storage_class != sc_none)
25885 error_at (decl_spec_token_start->location,
25886 "explicit template specialization cannot have a storage class");
25887 decl = error_mark_node;
25890 if (decl && VAR_P (decl))
25891 check_template_variable (decl);
25894 /* Look for a trailing `;' after the declaration. */
25895 if (!function_definition_p
25896 && (decl == error_mark_node
25897 || !cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON)))
25898 cp_parser_skip_to_end_of_block_or_statement (parser);
25900 out:
25901 pop_deferring_access_checks ();
25903 /* Clear any current qualification; whatever comes next is the start
25904 of something new. */
25905 parser->scope = NULL_TREE;
25906 parser->qualifying_scope = NULL_TREE;
25907 parser->object_scope = NULL_TREE;
25909 return decl;
25912 /* Parse a cast-expression that is not the operand of a unary "&". */
25914 static cp_expr
25915 cp_parser_simple_cast_expression (cp_parser *parser)
25917 return cp_parser_cast_expression (parser, /*address_p=*/false,
25918 /*cast_p=*/false, /*decltype*/false, NULL);
25921 /* Parse a functional cast to TYPE. Returns an expression
25922 representing the cast. */
25924 static cp_expr
25925 cp_parser_functional_cast (cp_parser* parser, tree type)
25927 vec<tree, va_gc> *vec;
25928 tree expression_list;
25929 cp_expr cast;
25930 bool nonconst_p;
25932 location_t start_loc = input_location;
25934 if (!type)
25935 type = error_mark_node;
25937 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
25939 cp_lexer_set_source_position (parser->lexer);
25940 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
25941 expression_list = cp_parser_braced_list (parser, &nonconst_p);
25942 CONSTRUCTOR_IS_DIRECT_INIT (expression_list) = 1;
25943 if (TREE_CODE (type) == TYPE_DECL)
25944 type = TREE_TYPE (type);
25946 cast = finish_compound_literal (type, expression_list,
25947 tf_warning_or_error);
25948 /* Create a location of the form:
25949 type_name{i, f}
25950 ^~~~~~~~~~~~~~~
25951 with caret == start at the start of the type name,
25952 finishing at the closing brace. */
25953 location_t finish_loc
25954 = get_finish (cp_lexer_previous_token (parser->lexer)->location);
25955 location_t combined_loc = make_location (start_loc, start_loc,
25956 finish_loc);
25957 cast.set_location (combined_loc);
25958 return cast;
25962 vec = cp_parser_parenthesized_expression_list (parser, non_attr,
25963 /*cast_p=*/true,
25964 /*allow_expansion_p=*/true,
25965 /*non_constant_p=*/NULL);
25966 if (vec == NULL)
25967 expression_list = error_mark_node;
25968 else
25970 expression_list = build_tree_list_vec (vec);
25971 release_tree_vector (vec);
25974 cast = build_functional_cast (type, expression_list,
25975 tf_warning_or_error);
25976 /* [expr.const]/1: In an integral constant expression "only type
25977 conversions to integral or enumeration type can be used". */
25978 if (TREE_CODE (type) == TYPE_DECL)
25979 type = TREE_TYPE (type);
25980 if (cast != error_mark_node
25981 && !cast_valid_in_integral_constant_expression_p (type)
25982 && cp_parser_non_integral_constant_expression (parser,
25983 NIC_CONSTRUCTOR))
25984 return error_mark_node;
25986 /* Create a location of the form:
25987 float(i)
25988 ^~~~~~~~
25989 with caret == start at the start of the type name,
25990 finishing at the closing paren. */
25991 location_t finish_loc
25992 = get_finish (cp_lexer_previous_token (parser->lexer)->location);
25993 location_t combined_loc = make_location (start_loc, start_loc, finish_loc);
25994 cast.set_location (combined_loc);
25995 return cast;
25998 /* Save the tokens that make up the body of a member function defined
25999 in a class-specifier. The DECL_SPECIFIERS and DECLARATOR have
26000 already been parsed. The ATTRIBUTES are any GNU "__attribute__"
26001 specifiers applied to the declaration. Returns the FUNCTION_DECL
26002 for the member function. */
26004 static tree
26005 cp_parser_save_member_function_body (cp_parser* parser,
26006 cp_decl_specifier_seq *decl_specifiers,
26007 cp_declarator *declarator,
26008 tree attributes)
26010 cp_token *first;
26011 cp_token *last;
26012 tree fn;
26014 /* Create the FUNCTION_DECL. */
26015 fn = grokmethod (decl_specifiers, declarator, attributes);
26016 cp_finalize_omp_declare_simd (parser, fn);
26017 cp_finalize_oacc_routine (parser, fn, true);
26018 /* If something went badly wrong, bail out now. */
26019 if (fn == error_mark_node)
26021 /* If there's a function-body, skip it. */
26022 if (cp_parser_token_starts_function_definition_p
26023 (cp_lexer_peek_token (parser->lexer)))
26024 cp_parser_skip_to_end_of_block_or_statement (parser);
26025 return error_mark_node;
26028 /* Remember it, if there default args to post process. */
26029 cp_parser_save_default_args (parser, fn);
26031 /* Save away the tokens that make up the body of the
26032 function. */
26033 first = parser->lexer->next_token;
26034 /* Handle function try blocks. */
26035 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TRY))
26036 cp_lexer_consume_token (parser->lexer);
26037 /* We can have braced-init-list mem-initializers before the fn body. */
26038 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
26040 cp_lexer_consume_token (parser->lexer);
26041 while (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE))
26043 /* cache_group will stop after an un-nested { } pair, too. */
26044 if (cp_parser_cache_group (parser, CPP_CLOSE_PAREN, /*depth=*/0))
26045 break;
26047 /* variadic mem-inits have ... after the ')'. */
26048 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
26049 cp_lexer_consume_token (parser->lexer);
26052 cp_parser_cache_group (parser, CPP_CLOSE_BRACE, /*depth=*/0);
26053 /* Handle function try blocks. */
26054 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_CATCH))
26055 cp_parser_cache_group (parser, CPP_CLOSE_BRACE, /*depth=*/0);
26056 last = parser->lexer->next_token;
26058 /* Save away the inline definition; we will process it when the
26059 class is complete. */
26060 DECL_PENDING_INLINE_INFO (fn) = cp_token_cache_new (first, last);
26061 DECL_PENDING_INLINE_P (fn) = 1;
26063 /* We need to know that this was defined in the class, so that
26064 friend templates are handled correctly. */
26065 DECL_INITIALIZED_IN_CLASS_P (fn) = 1;
26067 /* Add FN to the queue of functions to be parsed later. */
26068 vec_safe_push (unparsed_funs_with_definitions, fn);
26070 return fn;
26073 /* Save the tokens that make up the in-class initializer for a non-static
26074 data member. Returns a DEFAULT_ARG. */
26076 static tree
26077 cp_parser_save_nsdmi (cp_parser* parser)
26079 return cp_parser_cache_defarg (parser, /*nsdmi=*/true);
26082 /* Parse a template-argument-list, as well as the trailing ">" (but
26083 not the opening "<"). See cp_parser_template_argument_list for the
26084 return value. */
26086 static tree
26087 cp_parser_enclosed_template_argument_list (cp_parser* parser)
26089 tree arguments;
26090 tree saved_scope;
26091 tree saved_qualifying_scope;
26092 tree saved_object_scope;
26093 bool saved_greater_than_is_operator_p;
26094 int saved_unevaluated_operand;
26095 int saved_inhibit_evaluation_warnings;
26097 /* [temp.names]
26099 When parsing a template-id, the first non-nested `>' is taken as
26100 the end of the template-argument-list rather than a greater-than
26101 operator. */
26102 saved_greater_than_is_operator_p
26103 = parser->greater_than_is_operator_p;
26104 parser->greater_than_is_operator_p = false;
26105 /* Parsing the argument list may modify SCOPE, so we save it
26106 here. */
26107 saved_scope = parser->scope;
26108 saved_qualifying_scope = parser->qualifying_scope;
26109 saved_object_scope = parser->object_scope;
26110 /* We need to evaluate the template arguments, even though this
26111 template-id may be nested within a "sizeof". */
26112 saved_unevaluated_operand = cp_unevaluated_operand;
26113 cp_unevaluated_operand = 0;
26114 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
26115 c_inhibit_evaluation_warnings = 0;
26116 /* Parse the template-argument-list itself. */
26117 if (cp_lexer_next_token_is (parser->lexer, CPP_GREATER)
26118 || cp_lexer_next_token_is (parser->lexer, CPP_RSHIFT))
26119 arguments = NULL_TREE;
26120 else
26121 arguments = cp_parser_template_argument_list (parser);
26122 /* Look for the `>' that ends the template-argument-list. If we find
26123 a '>>' instead, it's probably just a typo. */
26124 if (cp_lexer_next_token_is (parser->lexer, CPP_RSHIFT))
26126 if (cxx_dialect != cxx98)
26128 /* In C++0x, a `>>' in a template argument list or cast
26129 expression is considered to be two separate `>'
26130 tokens. So, change the current token to a `>', but don't
26131 consume it: it will be consumed later when the outer
26132 template argument list (or cast expression) is parsed.
26133 Note that this replacement of `>' for `>>' is necessary
26134 even if we are parsing tentatively: in the tentative
26135 case, after calling
26136 cp_parser_enclosed_template_argument_list we will always
26137 throw away all of the template arguments and the first
26138 closing `>', either because the template argument list
26139 was erroneous or because we are replacing those tokens
26140 with a CPP_TEMPLATE_ID token. The second `>' (which will
26141 not have been thrown away) is needed either to close an
26142 outer template argument list or to complete a new-style
26143 cast. */
26144 cp_token *token = cp_lexer_peek_token (parser->lexer);
26145 token->type = CPP_GREATER;
26147 else if (!saved_greater_than_is_operator_p)
26149 /* If we're in a nested template argument list, the '>>' has
26150 to be a typo for '> >'. We emit the error message, but we
26151 continue parsing and we push a '>' as next token, so that
26152 the argument list will be parsed correctly. Note that the
26153 global source location is still on the token before the
26154 '>>', so we need to say explicitly where we want it. */
26155 cp_token *token = cp_lexer_peek_token (parser->lexer);
26156 error_at (token->location, "%<>>%> should be %<> >%> "
26157 "within a nested template argument list");
26159 token->type = CPP_GREATER;
26161 else
26163 /* If this is not a nested template argument list, the '>>'
26164 is a typo for '>'. Emit an error message and continue.
26165 Same deal about the token location, but here we can get it
26166 right by consuming the '>>' before issuing the diagnostic. */
26167 cp_token *token = cp_lexer_consume_token (parser->lexer);
26168 error_at (token->location,
26169 "spurious %<>>%>, use %<>%> to terminate "
26170 "a template argument list");
26173 else
26174 cp_parser_skip_to_end_of_template_parameter_list (parser);
26175 /* The `>' token might be a greater-than operator again now. */
26176 parser->greater_than_is_operator_p
26177 = saved_greater_than_is_operator_p;
26178 /* Restore the SAVED_SCOPE. */
26179 parser->scope = saved_scope;
26180 parser->qualifying_scope = saved_qualifying_scope;
26181 parser->object_scope = saved_object_scope;
26182 cp_unevaluated_operand = saved_unevaluated_operand;
26183 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
26185 return arguments;
26188 /* MEMBER_FUNCTION is a member function, or a friend. If default
26189 arguments, or the body of the function have not yet been parsed,
26190 parse them now. */
26192 static void
26193 cp_parser_late_parsing_for_member (cp_parser* parser, tree member_function)
26195 timevar_push (TV_PARSE_INMETH);
26196 /* If this member is a template, get the underlying
26197 FUNCTION_DECL. */
26198 if (DECL_FUNCTION_TEMPLATE_P (member_function))
26199 member_function = DECL_TEMPLATE_RESULT (member_function);
26201 /* There should not be any class definitions in progress at this
26202 point; the bodies of members are only parsed outside of all class
26203 definitions. */
26204 gcc_assert (parser->num_classes_being_defined == 0);
26205 /* While we're parsing the member functions we might encounter more
26206 classes. We want to handle them right away, but we don't want
26207 them getting mixed up with functions that are currently in the
26208 queue. */
26209 push_unparsed_function_queues (parser);
26211 /* Make sure that any template parameters are in scope. */
26212 maybe_begin_member_template_processing (member_function);
26214 /* If the body of the function has not yet been parsed, parse it
26215 now. */
26216 if (DECL_PENDING_INLINE_P (member_function))
26218 tree function_scope;
26219 cp_token_cache *tokens;
26221 /* The function is no longer pending; we are processing it. */
26222 tokens = DECL_PENDING_INLINE_INFO (member_function);
26223 DECL_PENDING_INLINE_INFO (member_function) = NULL;
26224 DECL_PENDING_INLINE_P (member_function) = 0;
26226 /* If this is a local class, enter the scope of the containing
26227 function. */
26228 function_scope = current_function_decl;
26229 if (function_scope)
26230 push_function_context ();
26232 /* Push the body of the function onto the lexer stack. */
26233 cp_parser_push_lexer_for_tokens (parser, tokens);
26235 /* Let the front end know that we going to be defining this
26236 function. */
26237 start_preparsed_function (member_function, NULL_TREE,
26238 SF_PRE_PARSED | SF_INCLASS_INLINE);
26240 /* Don't do access checking if it is a templated function. */
26241 if (processing_template_decl)
26242 push_deferring_access_checks (dk_no_check);
26244 /* #pragma omp declare reduction needs special parsing. */
26245 if (DECL_OMP_DECLARE_REDUCTION_P (member_function))
26247 parser->lexer->in_pragma = true;
26248 cp_parser_omp_declare_reduction_exprs (member_function, parser);
26249 finish_function (/*inline*/2);
26250 cp_check_omp_declare_reduction (member_function);
26252 else
26253 /* Now, parse the body of the function. */
26254 cp_parser_function_definition_after_declarator (parser,
26255 /*inline_p=*/true);
26257 if (processing_template_decl)
26258 pop_deferring_access_checks ();
26260 /* Leave the scope of the containing function. */
26261 if (function_scope)
26262 pop_function_context ();
26263 cp_parser_pop_lexer (parser);
26266 /* Remove any template parameters from the symbol table. */
26267 maybe_end_member_template_processing ();
26269 /* Restore the queue. */
26270 pop_unparsed_function_queues (parser);
26271 timevar_pop (TV_PARSE_INMETH);
26274 /* If DECL contains any default args, remember it on the unparsed
26275 functions queue. */
26277 static void
26278 cp_parser_save_default_args (cp_parser* parser, tree decl)
26280 tree probe;
26282 for (probe = TYPE_ARG_TYPES (TREE_TYPE (decl));
26283 probe;
26284 probe = TREE_CHAIN (probe))
26285 if (TREE_PURPOSE (probe))
26287 cp_default_arg_entry entry = {current_class_type, decl};
26288 vec_safe_push (unparsed_funs_with_default_args, entry);
26289 break;
26293 /* DEFAULT_ARG contains the saved tokens for the initializer of DECL,
26294 which is either a FIELD_DECL or PARM_DECL. Parse it and return
26295 the result. For a PARM_DECL, PARMTYPE is the corresponding type
26296 from the parameter-type-list. */
26298 static tree
26299 cp_parser_late_parse_one_default_arg (cp_parser *parser, tree decl,
26300 tree default_arg, tree parmtype)
26302 cp_token_cache *tokens;
26303 tree parsed_arg;
26304 bool dummy;
26306 if (default_arg == error_mark_node)
26307 return error_mark_node;
26309 /* Push the saved tokens for the default argument onto the parser's
26310 lexer stack. */
26311 tokens = DEFARG_TOKENS (default_arg);
26312 cp_parser_push_lexer_for_tokens (parser, tokens);
26314 start_lambda_scope (decl);
26316 /* Parse the default argument. */
26317 parsed_arg = cp_parser_initializer (parser, &dummy, &dummy);
26318 if (BRACE_ENCLOSED_INITIALIZER_P (parsed_arg))
26319 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
26321 finish_lambda_scope ();
26323 if (parsed_arg == error_mark_node)
26324 cp_parser_skip_to_end_of_statement (parser);
26326 if (!processing_template_decl)
26328 /* In a non-template class, check conversions now. In a template,
26329 we'll wait and instantiate these as needed. */
26330 if (TREE_CODE (decl) == PARM_DECL)
26331 parsed_arg = check_default_argument (parmtype, parsed_arg,
26332 tf_warning_or_error);
26333 else
26334 parsed_arg = digest_nsdmi_init (decl, parsed_arg);
26337 /* If the token stream has not been completely used up, then
26338 there was extra junk after the end of the default
26339 argument. */
26340 if (!cp_lexer_next_token_is (parser->lexer, CPP_EOF))
26342 if (TREE_CODE (decl) == PARM_DECL)
26343 cp_parser_error (parser, "expected %<,%>");
26344 else
26345 cp_parser_error (parser, "expected %<;%>");
26348 /* Revert to the main lexer. */
26349 cp_parser_pop_lexer (parser);
26351 return parsed_arg;
26354 /* FIELD is a non-static data member with an initializer which we saved for
26355 later; parse it now. */
26357 static void
26358 cp_parser_late_parsing_nsdmi (cp_parser *parser, tree field)
26360 tree def;
26362 maybe_begin_member_template_processing (field);
26364 push_unparsed_function_queues (parser);
26365 def = cp_parser_late_parse_one_default_arg (parser, field,
26366 DECL_INITIAL (field),
26367 NULL_TREE);
26368 pop_unparsed_function_queues (parser);
26370 maybe_end_member_template_processing ();
26372 DECL_INITIAL (field) = def;
26375 /* FN is a FUNCTION_DECL which may contains a parameter with an
26376 unparsed DEFAULT_ARG. Parse the default args now. This function
26377 assumes that the current scope is the scope in which the default
26378 argument should be processed. */
26380 static void
26381 cp_parser_late_parsing_default_args (cp_parser *parser, tree fn)
26383 bool saved_local_variables_forbidden_p;
26384 tree parm, parmdecl;
26386 /* While we're parsing the default args, we might (due to the
26387 statement expression extension) encounter more classes. We want
26388 to handle them right away, but we don't want them getting mixed
26389 up with default args that are currently in the queue. */
26390 push_unparsed_function_queues (parser);
26392 /* Local variable names (and the `this' keyword) may not appear
26393 in a default argument. */
26394 saved_local_variables_forbidden_p = parser->local_variables_forbidden_p;
26395 parser->local_variables_forbidden_p = true;
26397 push_defarg_context (fn);
26399 for (parm = TYPE_ARG_TYPES (TREE_TYPE (fn)),
26400 parmdecl = DECL_ARGUMENTS (fn);
26401 parm && parm != void_list_node;
26402 parm = TREE_CHAIN (parm),
26403 parmdecl = DECL_CHAIN (parmdecl))
26405 tree default_arg = TREE_PURPOSE (parm);
26406 tree parsed_arg;
26407 vec<tree, va_gc> *insts;
26408 tree copy;
26409 unsigned ix;
26411 if (!default_arg)
26412 continue;
26414 if (TREE_CODE (default_arg) != DEFAULT_ARG)
26415 /* This can happen for a friend declaration for a function
26416 already declared with default arguments. */
26417 continue;
26419 parsed_arg
26420 = cp_parser_late_parse_one_default_arg (parser, parmdecl,
26421 default_arg,
26422 TREE_VALUE (parm));
26423 if (parsed_arg == error_mark_node)
26425 continue;
26428 TREE_PURPOSE (parm) = parsed_arg;
26430 /* Update any instantiations we've already created. */
26431 for (insts = DEFARG_INSTANTIATIONS (default_arg), ix = 0;
26432 vec_safe_iterate (insts, ix, &copy); ix++)
26433 TREE_PURPOSE (copy) = parsed_arg;
26436 pop_defarg_context ();
26438 /* Make sure no default arg is missing. */
26439 check_default_args (fn);
26441 /* Restore the state of local_variables_forbidden_p. */
26442 parser->local_variables_forbidden_p = saved_local_variables_forbidden_p;
26444 /* Restore the queue. */
26445 pop_unparsed_function_queues (parser);
26448 /* Subroutine of cp_parser_sizeof_operand, for handling C++11
26450 sizeof ... ( identifier )
26452 where the 'sizeof' token has already been consumed. */
26454 static tree
26455 cp_parser_sizeof_pack (cp_parser *parser)
26457 /* Consume the `...'. */
26458 cp_lexer_consume_token (parser->lexer);
26459 maybe_warn_variadic_templates ();
26461 bool paren = cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN);
26462 if (paren)
26463 cp_lexer_consume_token (parser->lexer);
26464 else
26465 permerror (cp_lexer_peek_token (parser->lexer)->location,
26466 "%<sizeof...%> argument must be surrounded by parentheses");
26468 cp_token *token = cp_lexer_peek_token (parser->lexer);
26469 tree name = cp_parser_identifier (parser);
26470 if (name == error_mark_node)
26471 return error_mark_node;
26472 /* The name is not qualified. */
26473 parser->scope = NULL_TREE;
26474 parser->qualifying_scope = NULL_TREE;
26475 parser->object_scope = NULL_TREE;
26476 tree expr = cp_parser_lookup_name_simple (parser, name, token->location);
26477 if (expr == error_mark_node)
26478 cp_parser_name_lookup_error (parser, name, expr, NLE_NULL,
26479 token->location);
26480 if (TREE_CODE (expr) == TYPE_DECL || TREE_CODE (expr) == TEMPLATE_DECL)
26481 expr = TREE_TYPE (expr);
26482 else if (TREE_CODE (expr) == CONST_DECL)
26483 expr = DECL_INITIAL (expr);
26484 expr = make_pack_expansion (expr);
26485 PACK_EXPANSION_SIZEOF_P (expr) = true;
26487 if (paren)
26488 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
26490 return expr;
26493 /* Parse the operand of `sizeof' (or a similar operator). Returns
26494 either a TYPE or an expression, depending on the form of the
26495 input. The KEYWORD indicates which kind of expression we have
26496 encountered. */
26498 static tree
26499 cp_parser_sizeof_operand (cp_parser* parser, enum rid keyword)
26501 tree expr = NULL_TREE;
26502 const char *saved_message;
26503 char *tmp;
26504 bool saved_integral_constant_expression_p;
26505 bool saved_non_integral_constant_expression_p;
26507 /* If it's a `...', then we are computing the length of a parameter
26508 pack. */
26509 if (keyword == RID_SIZEOF
26510 && cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
26511 return cp_parser_sizeof_pack (parser);
26513 /* Types cannot be defined in a `sizeof' expression. Save away the
26514 old message. */
26515 saved_message = parser->type_definition_forbidden_message;
26516 /* And create the new one. */
26517 tmp = concat ("types may not be defined in %<",
26518 IDENTIFIER_POINTER (ridpointers[keyword]),
26519 "%> expressions", NULL);
26520 parser->type_definition_forbidden_message = tmp;
26522 /* The restrictions on constant-expressions do not apply inside
26523 sizeof expressions. */
26524 saved_integral_constant_expression_p
26525 = parser->integral_constant_expression_p;
26526 saved_non_integral_constant_expression_p
26527 = parser->non_integral_constant_expression_p;
26528 parser->integral_constant_expression_p = false;
26530 /* Do not actually evaluate the expression. */
26531 ++cp_unevaluated_operand;
26532 ++c_inhibit_evaluation_warnings;
26533 /* If it's a `(', then we might be looking at the type-id
26534 construction. */
26535 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
26537 tree type = NULL_TREE;
26539 /* We can't be sure yet whether we're looking at a type-id or an
26540 expression. */
26541 cp_parser_parse_tentatively (parser);
26542 /* Note: as a GNU Extension, compound literals are considered
26543 postfix-expressions as they are in C99, so they are valid
26544 arguments to sizeof. See comment in cp_parser_cast_expression
26545 for details. */
26546 if (cp_parser_compound_literal_p (parser))
26547 cp_parser_simulate_error (parser);
26548 else
26550 bool saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
26551 parser->in_type_id_in_expr_p = true;
26552 /* Look for the type-id. */
26553 type = cp_parser_type_id (parser);
26554 /* Look for the closing `)'. */
26555 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
26556 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
26559 /* If all went well, then we're done. */
26560 if (cp_parser_parse_definitely (parser))
26562 cp_decl_specifier_seq decl_specs;
26564 /* Build a trivial decl-specifier-seq. */
26565 clear_decl_specs (&decl_specs);
26566 decl_specs.type = type;
26568 /* Call grokdeclarator to figure out what type this is. */
26569 expr = grokdeclarator (NULL,
26570 &decl_specs,
26571 TYPENAME,
26572 /*initialized=*/0,
26573 /*attrlist=*/NULL);
26577 /* If the type-id production did not work out, then we must be
26578 looking at the unary-expression production. */
26579 if (!expr)
26580 expr = cp_parser_unary_expression (parser);
26582 /* Go back to evaluating expressions. */
26583 --cp_unevaluated_operand;
26584 --c_inhibit_evaluation_warnings;
26586 /* Free the message we created. */
26587 free (tmp);
26588 /* And restore the old one. */
26589 parser->type_definition_forbidden_message = saved_message;
26590 parser->integral_constant_expression_p
26591 = saved_integral_constant_expression_p;
26592 parser->non_integral_constant_expression_p
26593 = saved_non_integral_constant_expression_p;
26595 return expr;
26598 /* If the current declaration has no declarator, return true. */
26600 static bool
26601 cp_parser_declares_only_class_p (cp_parser *parser)
26603 /* If the next token is a `;' or a `,' then there is no
26604 declarator. */
26605 return (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
26606 || cp_lexer_next_token_is (parser->lexer, CPP_COMMA));
26609 /* Update the DECL_SPECS to reflect the storage class indicated by
26610 KEYWORD. */
26612 static void
26613 cp_parser_set_storage_class (cp_parser *parser,
26614 cp_decl_specifier_seq *decl_specs,
26615 enum rid keyword,
26616 cp_token *token)
26618 cp_storage_class storage_class;
26620 if (parser->in_unbraced_linkage_specification_p)
26622 error_at (token->location, "invalid use of %qD in linkage specification",
26623 ridpointers[keyword]);
26624 return;
26626 else if (decl_specs->storage_class != sc_none)
26628 decl_specs->conflicting_specifiers_p = true;
26629 return;
26632 if ((keyword == RID_EXTERN || keyword == RID_STATIC)
26633 && decl_spec_seq_has_spec_p (decl_specs, ds_thread)
26634 && decl_specs->gnu_thread_keyword_p)
26636 pedwarn (decl_specs->locations[ds_thread], 0,
26637 "%<__thread%> before %qD", ridpointers[keyword]);
26640 switch (keyword)
26642 case RID_AUTO:
26643 storage_class = sc_auto;
26644 break;
26645 case RID_REGISTER:
26646 storage_class = sc_register;
26647 break;
26648 case RID_STATIC:
26649 storage_class = sc_static;
26650 break;
26651 case RID_EXTERN:
26652 storage_class = sc_extern;
26653 break;
26654 case RID_MUTABLE:
26655 storage_class = sc_mutable;
26656 break;
26657 default:
26658 gcc_unreachable ();
26660 decl_specs->storage_class = storage_class;
26661 set_and_check_decl_spec_loc (decl_specs, ds_storage_class, token);
26663 /* A storage class specifier cannot be applied alongside a typedef
26664 specifier. If there is a typedef specifier present then set
26665 conflicting_specifiers_p which will trigger an error later
26666 on in grokdeclarator. */
26667 if (decl_spec_seq_has_spec_p (decl_specs, ds_typedef))
26668 decl_specs->conflicting_specifiers_p = true;
26671 /* Update the DECL_SPECS to reflect the TYPE_SPEC. If TYPE_DEFINITION_P
26672 is true, the type is a class or enum definition. */
26674 static void
26675 cp_parser_set_decl_spec_type (cp_decl_specifier_seq *decl_specs,
26676 tree type_spec,
26677 cp_token *token,
26678 bool type_definition_p)
26680 decl_specs->any_specifiers_p = true;
26682 /* If the user tries to redeclare bool, char16_t, char32_t, or wchar_t
26683 (with, for example, in "typedef int wchar_t;") we remember that
26684 this is what happened. In system headers, we ignore these
26685 declarations so that G++ can work with system headers that are not
26686 C++-safe. */
26687 if (decl_spec_seq_has_spec_p (decl_specs, ds_typedef)
26688 && !type_definition_p
26689 && (type_spec == boolean_type_node
26690 || type_spec == char16_type_node
26691 || type_spec == char32_type_node
26692 || type_spec == wchar_type_node)
26693 && (decl_specs->type
26694 || decl_spec_seq_has_spec_p (decl_specs, ds_long)
26695 || decl_spec_seq_has_spec_p (decl_specs, ds_short)
26696 || decl_spec_seq_has_spec_p (decl_specs, ds_unsigned)
26697 || decl_spec_seq_has_spec_p (decl_specs, ds_signed)))
26699 decl_specs->redefined_builtin_type = type_spec;
26700 set_and_check_decl_spec_loc (decl_specs,
26701 ds_redefined_builtin_type_spec,
26702 token);
26703 if (!decl_specs->type)
26705 decl_specs->type = type_spec;
26706 decl_specs->type_definition_p = false;
26707 set_and_check_decl_spec_loc (decl_specs,ds_type_spec, token);
26710 else if (decl_specs->type)
26711 decl_specs->multiple_types_p = true;
26712 else
26714 decl_specs->type = type_spec;
26715 decl_specs->type_definition_p = type_definition_p;
26716 decl_specs->redefined_builtin_type = NULL_TREE;
26717 set_and_check_decl_spec_loc (decl_specs, ds_type_spec, token);
26721 /* True iff TOKEN is the GNU keyword __thread. */
26723 static bool
26724 token_is__thread (cp_token *token)
26726 gcc_assert (token->keyword == RID_THREAD);
26727 return !strcmp (IDENTIFIER_POINTER (token->u.value), "__thread");
26730 /* Set the location for a declarator specifier and check if it is
26731 duplicated.
26733 DECL_SPECS is the sequence of declarator specifiers onto which to
26734 set the location.
26736 DS is the single declarator specifier to set which location is to
26737 be set onto the existing sequence of declarators.
26739 LOCATION is the location for the declarator specifier to
26740 consider. */
26742 static void
26743 set_and_check_decl_spec_loc (cp_decl_specifier_seq *decl_specs,
26744 cp_decl_spec ds, cp_token *token)
26746 gcc_assert (ds < ds_last);
26748 if (decl_specs == NULL)
26749 return;
26751 source_location location = token->location;
26753 if (decl_specs->locations[ds] == 0)
26755 decl_specs->locations[ds] = location;
26756 if (ds == ds_thread)
26757 decl_specs->gnu_thread_keyword_p = token_is__thread (token);
26759 else
26761 if (ds == ds_long)
26763 if (decl_specs->locations[ds_long_long] != 0)
26764 error_at (location,
26765 "%<long long long%> is too long for GCC");
26766 else
26768 decl_specs->locations[ds_long_long] = location;
26769 pedwarn_cxx98 (location,
26770 OPT_Wlong_long,
26771 "ISO C++ 1998 does not support %<long long%>");
26774 else if (ds == ds_thread)
26776 bool gnu = token_is__thread (token);
26777 if (gnu != decl_specs->gnu_thread_keyword_p)
26778 error_at (location,
26779 "both %<__thread%> and %<thread_local%> specified");
26780 else
26781 error_at (location, "duplicate %qD", token->u.value);
26783 else
26785 static const char *const decl_spec_names[] = {
26786 "signed",
26787 "unsigned",
26788 "short",
26789 "long",
26790 "const",
26791 "volatile",
26792 "restrict",
26793 "inline",
26794 "virtual",
26795 "explicit",
26796 "friend",
26797 "typedef",
26798 "using",
26799 "constexpr",
26800 "__complex"
26802 error_at (location,
26803 "duplicate %qs", decl_spec_names[ds]);
26808 /* Return true iff the declarator specifier DS is present in the
26809 sequence of declarator specifiers DECL_SPECS. */
26811 bool
26812 decl_spec_seq_has_spec_p (const cp_decl_specifier_seq * decl_specs,
26813 cp_decl_spec ds)
26815 gcc_assert (ds < ds_last);
26817 if (decl_specs == NULL)
26818 return false;
26820 return decl_specs->locations[ds] != 0;
26823 /* DECL_SPECIFIERS is the representation of a decl-specifier-seq.
26824 Returns TRUE iff `friend' appears among the DECL_SPECIFIERS. */
26826 static bool
26827 cp_parser_friend_p (const cp_decl_specifier_seq *decl_specifiers)
26829 return decl_spec_seq_has_spec_p (decl_specifiers, ds_friend);
26832 /* Issue an error message indicating that TOKEN_DESC was expected.
26833 If KEYWORD is true, it indicated this function is called by
26834 cp_parser_require_keword and the required token can only be
26835 a indicated keyword. */
26837 static void
26838 cp_parser_required_error (cp_parser *parser,
26839 required_token token_desc,
26840 bool keyword)
26842 switch (token_desc)
26844 case RT_NEW:
26845 cp_parser_error (parser, "expected %<new%>");
26846 return;
26847 case RT_DELETE:
26848 cp_parser_error (parser, "expected %<delete%>");
26849 return;
26850 case RT_RETURN:
26851 cp_parser_error (parser, "expected %<return%>");
26852 return;
26853 case RT_WHILE:
26854 cp_parser_error (parser, "expected %<while%>");
26855 return;
26856 case RT_EXTERN:
26857 cp_parser_error (parser, "expected %<extern%>");
26858 return;
26859 case RT_STATIC_ASSERT:
26860 cp_parser_error (parser, "expected %<static_assert%>");
26861 return;
26862 case RT_DECLTYPE:
26863 cp_parser_error (parser, "expected %<decltype%>");
26864 return;
26865 case RT_OPERATOR:
26866 cp_parser_error (parser, "expected %<operator%>");
26867 return;
26868 case RT_CLASS:
26869 cp_parser_error (parser, "expected %<class%>");
26870 return;
26871 case RT_TEMPLATE:
26872 cp_parser_error (parser, "expected %<template%>");
26873 return;
26874 case RT_NAMESPACE:
26875 cp_parser_error (parser, "expected %<namespace%>");
26876 return;
26877 case RT_USING:
26878 cp_parser_error (parser, "expected %<using%>");
26879 return;
26880 case RT_ASM:
26881 cp_parser_error (parser, "expected %<asm%>");
26882 return;
26883 case RT_TRY:
26884 cp_parser_error (parser, "expected %<try%>");
26885 return;
26886 case RT_CATCH:
26887 cp_parser_error (parser, "expected %<catch%>");
26888 return;
26889 case RT_THROW:
26890 cp_parser_error (parser, "expected %<throw%>");
26891 return;
26892 case RT_LABEL:
26893 cp_parser_error (parser, "expected %<__label__%>");
26894 return;
26895 case RT_AT_TRY:
26896 cp_parser_error (parser, "expected %<@try%>");
26897 return;
26898 case RT_AT_SYNCHRONIZED:
26899 cp_parser_error (parser, "expected %<@synchronized%>");
26900 return;
26901 case RT_AT_THROW:
26902 cp_parser_error (parser, "expected %<@throw%>");
26903 return;
26904 case RT_TRANSACTION_ATOMIC:
26905 cp_parser_error (parser, "expected %<__transaction_atomic%>");
26906 return;
26907 case RT_TRANSACTION_RELAXED:
26908 cp_parser_error (parser, "expected %<__transaction_relaxed%>");
26909 return;
26910 default:
26911 break;
26913 if (!keyword)
26915 switch (token_desc)
26917 case RT_SEMICOLON:
26918 cp_parser_error (parser, "expected %<;%>");
26919 return;
26920 case RT_OPEN_PAREN:
26921 cp_parser_error (parser, "expected %<(%>");
26922 return;
26923 case RT_CLOSE_BRACE:
26924 cp_parser_error (parser, "expected %<}%>");
26925 return;
26926 case RT_OPEN_BRACE:
26927 cp_parser_error (parser, "expected %<{%>");
26928 return;
26929 case RT_CLOSE_SQUARE:
26930 cp_parser_error (parser, "expected %<]%>");
26931 return;
26932 case RT_OPEN_SQUARE:
26933 cp_parser_error (parser, "expected %<[%>");
26934 return;
26935 case RT_COMMA:
26936 cp_parser_error (parser, "expected %<,%>");
26937 return;
26938 case RT_SCOPE:
26939 cp_parser_error (parser, "expected %<::%>");
26940 return;
26941 case RT_LESS:
26942 cp_parser_error (parser, "expected %<<%>");
26943 return;
26944 case RT_GREATER:
26945 cp_parser_error (parser, "expected %<>%>");
26946 return;
26947 case RT_EQ:
26948 cp_parser_error (parser, "expected %<=%>");
26949 return;
26950 case RT_ELLIPSIS:
26951 cp_parser_error (parser, "expected %<...%>");
26952 return;
26953 case RT_MULT:
26954 cp_parser_error (parser, "expected %<*%>");
26955 return;
26956 case RT_COMPL:
26957 cp_parser_error (parser, "expected %<~%>");
26958 return;
26959 case RT_COLON:
26960 cp_parser_error (parser, "expected %<:%>");
26961 return;
26962 case RT_COLON_SCOPE:
26963 cp_parser_error (parser, "expected %<:%> or %<::%>");
26964 return;
26965 case RT_CLOSE_PAREN:
26966 cp_parser_error (parser, "expected %<)%>");
26967 return;
26968 case RT_COMMA_CLOSE_PAREN:
26969 cp_parser_error (parser, "expected %<,%> or %<)%>");
26970 return;
26971 case RT_PRAGMA_EOL:
26972 cp_parser_error (parser, "expected end of line");
26973 return;
26974 case RT_NAME:
26975 cp_parser_error (parser, "expected identifier");
26976 return;
26977 case RT_SELECT:
26978 cp_parser_error (parser, "expected selection-statement");
26979 return;
26980 case RT_INTERATION:
26981 cp_parser_error (parser, "expected iteration-statement");
26982 return;
26983 case RT_JUMP:
26984 cp_parser_error (parser, "expected jump-statement");
26985 return;
26986 case RT_CLASS_KEY:
26987 cp_parser_error (parser, "expected class-key");
26988 return;
26989 case RT_CLASS_TYPENAME_TEMPLATE:
26990 cp_parser_error (parser,
26991 "expected %<class%>, %<typename%>, or %<template%>");
26992 return;
26993 default:
26994 gcc_unreachable ();
26997 else
26998 gcc_unreachable ();
27003 /* If the next token is of the indicated TYPE, consume it. Otherwise,
27004 issue an error message indicating that TOKEN_DESC was expected.
27006 Returns the token consumed, if the token had the appropriate type.
27007 Otherwise, returns NULL. */
27009 static cp_token *
27010 cp_parser_require (cp_parser* parser,
27011 enum cpp_ttype type,
27012 required_token token_desc)
27014 if (cp_lexer_next_token_is (parser->lexer, type))
27015 return cp_lexer_consume_token (parser->lexer);
27016 else
27018 /* Output the MESSAGE -- unless we're parsing tentatively. */
27019 if (!cp_parser_simulate_error (parser))
27020 cp_parser_required_error (parser, token_desc, /*keyword=*/false);
27021 return NULL;
27025 /* An error message is produced if the next token is not '>'.
27026 All further tokens are skipped until the desired token is
27027 found or '{', '}', ';' or an unbalanced ')' or ']'. */
27029 static void
27030 cp_parser_skip_to_end_of_template_parameter_list (cp_parser* parser)
27032 /* Current level of '< ... >'. */
27033 unsigned level = 0;
27034 /* Ignore '<' and '>' nested inside '( ... )' or '[ ... ]'. */
27035 unsigned nesting_depth = 0;
27037 /* Are we ready, yet? If not, issue error message. */
27038 if (cp_parser_require (parser, CPP_GREATER, RT_GREATER))
27039 return;
27041 /* Skip tokens until the desired token is found. */
27042 while (true)
27044 /* Peek at the next token. */
27045 switch (cp_lexer_peek_token (parser->lexer)->type)
27047 case CPP_LESS:
27048 if (!nesting_depth)
27049 ++level;
27050 break;
27052 case CPP_RSHIFT:
27053 if (cxx_dialect == cxx98)
27054 /* C++0x views the `>>' operator as two `>' tokens, but
27055 C++98 does not. */
27056 break;
27057 else if (!nesting_depth && level-- == 0)
27059 /* We've hit a `>>' where the first `>' closes the
27060 template argument list, and the second `>' is
27061 spurious. Just consume the `>>' and stop; we've
27062 already produced at least one error. */
27063 cp_lexer_consume_token (parser->lexer);
27064 return;
27066 /* Fall through for C++0x, so we handle the second `>' in
27067 the `>>'. */
27069 case CPP_GREATER:
27070 if (!nesting_depth && level-- == 0)
27072 /* We've reached the token we want, consume it and stop. */
27073 cp_lexer_consume_token (parser->lexer);
27074 return;
27076 break;
27078 case CPP_OPEN_PAREN:
27079 case CPP_OPEN_SQUARE:
27080 ++nesting_depth;
27081 break;
27083 case CPP_CLOSE_PAREN:
27084 case CPP_CLOSE_SQUARE:
27085 if (nesting_depth-- == 0)
27086 return;
27087 break;
27089 case CPP_EOF:
27090 case CPP_PRAGMA_EOL:
27091 case CPP_SEMICOLON:
27092 case CPP_OPEN_BRACE:
27093 case CPP_CLOSE_BRACE:
27094 /* The '>' was probably forgotten, don't look further. */
27095 return;
27097 default:
27098 break;
27101 /* Consume this token. */
27102 cp_lexer_consume_token (parser->lexer);
27106 /* If the next token is the indicated keyword, consume it. Otherwise,
27107 issue an error message indicating that TOKEN_DESC was expected.
27109 Returns the token consumed, if the token had the appropriate type.
27110 Otherwise, returns NULL. */
27112 static cp_token *
27113 cp_parser_require_keyword (cp_parser* parser,
27114 enum rid keyword,
27115 required_token token_desc)
27117 cp_token *token = cp_parser_require (parser, CPP_KEYWORD, token_desc);
27119 if (token && token->keyword != keyword)
27121 cp_parser_required_error (parser, token_desc, /*keyword=*/true);
27122 return NULL;
27125 return token;
27128 /* Returns TRUE iff TOKEN is a token that can begin the body of a
27129 function-definition. */
27131 static bool
27132 cp_parser_token_starts_function_definition_p (cp_token* token)
27134 return (/* An ordinary function-body begins with an `{'. */
27135 token->type == CPP_OPEN_BRACE
27136 /* A ctor-initializer begins with a `:'. */
27137 || token->type == CPP_COLON
27138 /* A function-try-block begins with `try'. */
27139 || token->keyword == RID_TRY
27140 /* A function-transaction-block begins with `__transaction_atomic'
27141 or `__transaction_relaxed'. */
27142 || token->keyword == RID_TRANSACTION_ATOMIC
27143 || token->keyword == RID_TRANSACTION_RELAXED
27144 /* The named return value extension begins with `return'. */
27145 || token->keyword == RID_RETURN);
27148 /* Returns TRUE iff the next token is the ":" or "{" beginning a class
27149 definition. */
27151 static bool
27152 cp_parser_next_token_starts_class_definition_p (cp_parser *parser)
27154 cp_token *token;
27156 token = cp_lexer_peek_token (parser->lexer);
27157 return (token->type == CPP_OPEN_BRACE
27158 || (token->type == CPP_COLON
27159 && !parser->colon_doesnt_start_class_def_p));
27162 /* Returns TRUE iff the next token is the "," or ">" (or `>>', in
27163 C++0x) ending a template-argument. */
27165 static bool
27166 cp_parser_next_token_ends_template_argument_p (cp_parser *parser)
27168 cp_token *token;
27170 token = cp_lexer_peek_token (parser->lexer);
27171 return (token->type == CPP_COMMA
27172 || token->type == CPP_GREATER
27173 || token->type == CPP_ELLIPSIS
27174 || ((cxx_dialect != cxx98) && token->type == CPP_RSHIFT));
27177 /* Returns TRUE iff the n-th token is a "<", or the n-th is a "[" and the
27178 (n+1)-th is a ":" (which is a possible digraph typo for "< ::"). */
27180 static bool
27181 cp_parser_nth_token_starts_template_argument_list_p (cp_parser * parser,
27182 size_t n)
27184 cp_token *token;
27186 token = cp_lexer_peek_nth_token (parser->lexer, n);
27187 if (token->type == CPP_LESS)
27188 return true;
27189 /* Check for the sequence `<::' in the original code. It would be lexed as
27190 `[:', where `[' is a digraph, and there is no whitespace before
27191 `:'. */
27192 if (token->type == CPP_OPEN_SQUARE && token->flags & DIGRAPH)
27194 cp_token *token2;
27195 token2 = cp_lexer_peek_nth_token (parser->lexer, n+1);
27196 if (token2->type == CPP_COLON && !(token2->flags & PREV_WHITE))
27197 return true;
27199 return false;
27202 /* Returns the kind of tag indicated by TOKEN, if it is a class-key,
27203 or none_type otherwise. */
27205 static enum tag_types
27206 cp_parser_token_is_class_key (cp_token* token)
27208 switch (token->keyword)
27210 case RID_CLASS:
27211 return class_type;
27212 case RID_STRUCT:
27213 return record_type;
27214 case RID_UNION:
27215 return union_type;
27217 default:
27218 return none_type;
27222 /* Returns the kind of tag indicated by TOKEN, if it is a type-parameter-key,
27223 or none_type otherwise or if the token is null. */
27225 static enum tag_types
27226 cp_parser_token_is_type_parameter_key (cp_token* token)
27228 if (!token)
27229 return none_type;
27231 switch (token->keyword)
27233 case RID_CLASS:
27234 return class_type;
27235 case RID_TYPENAME:
27236 return typename_type;
27238 default:
27239 return none_type;
27243 /* Issue an error message if the CLASS_KEY does not match the TYPE. */
27245 static void
27246 cp_parser_check_class_key (enum tag_types class_key, tree type)
27248 if (type == error_mark_node)
27249 return;
27250 if ((TREE_CODE (type) == UNION_TYPE) != (class_key == union_type))
27252 if (permerror (input_location, "%qs tag used in naming %q#T",
27253 class_key == union_type ? "union"
27254 : class_key == record_type ? "struct" : "class",
27255 type))
27256 inform (DECL_SOURCE_LOCATION (TYPE_NAME (type)),
27257 "%q#T was previously declared here", type);
27261 /* Issue an error message if DECL is redeclared with different
27262 access than its original declaration [class.access.spec/3].
27263 This applies to nested classes, nested class templates and
27264 enumerations [class.mem/1]. */
27266 static void
27267 cp_parser_check_access_in_redeclaration (tree decl, location_t location)
27269 if (!decl
27270 || (!CLASS_TYPE_P (TREE_TYPE (decl))
27271 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE))
27272 return;
27274 if ((TREE_PRIVATE (decl)
27275 != (current_access_specifier == access_private_node))
27276 || (TREE_PROTECTED (decl)
27277 != (current_access_specifier == access_protected_node)))
27278 error_at (location, "%qD redeclared with different access", decl);
27281 /* Look for the `template' keyword, as a syntactic disambiguator.
27282 Return TRUE iff it is present, in which case it will be
27283 consumed. */
27285 static bool
27286 cp_parser_optional_template_keyword (cp_parser *parser)
27288 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
27290 /* In C++98 the `template' keyword can only be used within templates;
27291 outside templates the parser can always figure out what is a
27292 template and what is not. In C++11, per the resolution of DR 468,
27293 `template' is allowed in cases where it is not strictly necessary. */
27294 if (!processing_template_decl
27295 && pedantic && cxx_dialect == cxx98)
27297 cp_token *token = cp_lexer_peek_token (parser->lexer);
27298 pedwarn (token->location, OPT_Wpedantic,
27299 "in C++98 %<template%> (as a disambiguator) is only "
27300 "allowed within templates");
27301 /* If this part of the token stream is rescanned, the same
27302 error message would be generated. So, we purge the token
27303 from the stream. */
27304 cp_lexer_purge_token (parser->lexer);
27305 return false;
27307 else
27309 /* Consume the `template' keyword. */
27310 cp_lexer_consume_token (parser->lexer);
27311 return true;
27314 return false;
27317 /* The next token is a CPP_NESTED_NAME_SPECIFIER. Consume the token,
27318 set PARSER->SCOPE, and perform other related actions. */
27320 static void
27321 cp_parser_pre_parsed_nested_name_specifier (cp_parser *parser)
27323 struct tree_check *check_value;
27325 /* Get the stored value. */
27326 check_value = cp_lexer_consume_token (parser->lexer)->u.tree_check_value;
27327 /* Set the scope from the stored value. */
27328 parser->scope = saved_checks_value (check_value);
27329 parser->qualifying_scope = check_value->qualifying_scope;
27330 parser->object_scope = NULL_TREE;
27333 /* Consume tokens up through a non-nested END token. Returns TRUE if we
27334 encounter the end of a block before what we were looking for. */
27336 static bool
27337 cp_parser_cache_group (cp_parser *parser,
27338 enum cpp_ttype end,
27339 unsigned depth)
27341 while (true)
27343 cp_token *token = cp_lexer_peek_token (parser->lexer);
27345 /* Abort a parenthesized expression if we encounter a semicolon. */
27346 if ((end == CPP_CLOSE_PAREN || depth == 0)
27347 && token->type == CPP_SEMICOLON)
27348 return true;
27349 /* If we've reached the end of the file, stop. */
27350 if (token->type == CPP_EOF
27351 || (end != CPP_PRAGMA_EOL
27352 && token->type == CPP_PRAGMA_EOL))
27353 return true;
27354 if (token->type == CPP_CLOSE_BRACE && depth == 0)
27355 /* We've hit the end of an enclosing block, so there's been some
27356 kind of syntax error. */
27357 return true;
27359 /* Consume the token. */
27360 cp_lexer_consume_token (parser->lexer);
27361 /* See if it starts a new group. */
27362 if (token->type == CPP_OPEN_BRACE)
27364 cp_parser_cache_group (parser, CPP_CLOSE_BRACE, depth + 1);
27365 /* In theory this should probably check end == '}', but
27366 cp_parser_save_member_function_body needs it to exit
27367 after either '}' or ')' when called with ')'. */
27368 if (depth == 0)
27369 return false;
27371 else if (token->type == CPP_OPEN_PAREN)
27373 cp_parser_cache_group (parser, CPP_CLOSE_PAREN, depth + 1);
27374 if (depth == 0 && end == CPP_CLOSE_PAREN)
27375 return false;
27377 else if (token->type == CPP_PRAGMA)
27378 cp_parser_cache_group (parser, CPP_PRAGMA_EOL, depth + 1);
27379 else if (token->type == end)
27380 return false;
27384 /* Like above, for caching a default argument or NSDMI. Both of these are
27385 terminated by a non-nested comma, but it can be unclear whether or not a
27386 comma is nested in a template argument list unless we do more parsing.
27387 In order to handle this ambiguity, when we encounter a ',' after a '<'
27388 we try to parse what follows as a parameter-declaration-list (in the
27389 case of a default argument) or a member-declarator (in the case of an
27390 NSDMI). If that succeeds, then we stop caching. */
27392 static tree
27393 cp_parser_cache_defarg (cp_parser *parser, bool nsdmi)
27395 unsigned depth = 0;
27396 int maybe_template_id = 0;
27397 cp_token *first_token;
27398 cp_token *token;
27399 tree default_argument;
27401 /* Add tokens until we have processed the entire default
27402 argument. We add the range [first_token, token). */
27403 first_token = cp_lexer_peek_token (parser->lexer);
27404 if (first_token->type == CPP_OPEN_BRACE)
27406 /* For list-initialization, this is straightforward. */
27407 cp_parser_cache_group (parser, CPP_CLOSE_BRACE, /*depth=*/0);
27408 token = cp_lexer_peek_token (parser->lexer);
27410 else while (true)
27412 bool done = false;
27414 /* Peek at the next token. */
27415 token = cp_lexer_peek_token (parser->lexer);
27416 /* What we do depends on what token we have. */
27417 switch (token->type)
27419 /* In valid code, a default argument must be
27420 immediately followed by a `,' `)', or `...'. */
27421 case CPP_COMMA:
27422 if (depth == 0 && maybe_template_id)
27424 /* If we've seen a '<', we might be in a
27425 template-argument-list. Until Core issue 325 is
27426 resolved, we don't know how this situation ought
27427 to be handled, so try to DTRT. We check whether
27428 what comes after the comma is a valid parameter
27429 declaration list. If it is, then the comma ends
27430 the default argument; otherwise the default
27431 argument continues. */
27432 bool error = false;
27433 cp_token *peek;
27435 /* Set ITALP so cp_parser_parameter_declaration_list
27436 doesn't decide to commit to this parse. */
27437 bool saved_italp = parser->in_template_argument_list_p;
27438 parser->in_template_argument_list_p = true;
27440 cp_parser_parse_tentatively (parser);
27442 if (nsdmi)
27444 /* Parse declarators until we reach a non-comma or
27445 somthing that cannot be an initializer.
27446 Just checking whether we're looking at a single
27447 declarator is insufficient. Consider:
27448 int var = tuple<T,U>::x;
27449 The template parameter 'U' looks exactly like a
27450 declarator. */
27453 int ctor_dtor_or_conv_p;
27454 cp_lexer_consume_token (parser->lexer);
27455 cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
27456 &ctor_dtor_or_conv_p,
27457 /*parenthesized_p=*/NULL,
27458 /*member_p=*/true,
27459 /*friend_p=*/false);
27460 peek = cp_lexer_peek_token (parser->lexer);
27461 if (cp_parser_error_occurred (parser))
27462 break;
27464 while (peek->type == CPP_COMMA);
27465 /* If we met an '=' or ';' then the original comma
27466 was the end of the NSDMI. Otherwise assume
27467 we're still in the NSDMI. */
27468 error = (peek->type != CPP_EQ
27469 && peek->type != CPP_SEMICOLON);
27471 else
27473 cp_lexer_consume_token (parser->lexer);
27474 begin_scope (sk_function_parms, NULL_TREE);
27475 cp_parser_parameter_declaration_list (parser, &error);
27476 pop_bindings_and_leave_scope ();
27478 if (!cp_parser_error_occurred (parser) && !error)
27479 done = true;
27480 cp_parser_abort_tentative_parse (parser);
27482 parser->in_template_argument_list_p = saved_italp;
27483 break;
27485 case CPP_CLOSE_PAREN:
27486 case CPP_ELLIPSIS:
27487 /* If we run into a non-nested `;', `}', or `]',
27488 then the code is invalid -- but the default
27489 argument is certainly over. */
27490 case CPP_SEMICOLON:
27491 case CPP_CLOSE_BRACE:
27492 case CPP_CLOSE_SQUARE:
27493 if (depth == 0
27494 /* Handle correctly int n = sizeof ... ( p ); */
27495 && token->type != CPP_ELLIPSIS)
27496 done = true;
27497 /* Update DEPTH, if necessary. */
27498 else if (token->type == CPP_CLOSE_PAREN
27499 || token->type == CPP_CLOSE_BRACE
27500 || token->type == CPP_CLOSE_SQUARE)
27501 --depth;
27502 break;
27504 case CPP_OPEN_PAREN:
27505 case CPP_OPEN_SQUARE:
27506 case CPP_OPEN_BRACE:
27507 ++depth;
27508 break;
27510 case CPP_LESS:
27511 if (depth == 0)
27512 /* This might be the comparison operator, or it might
27513 start a template argument list. */
27514 ++maybe_template_id;
27515 break;
27517 case CPP_RSHIFT:
27518 if (cxx_dialect == cxx98)
27519 break;
27520 /* Fall through for C++0x, which treats the `>>'
27521 operator like two `>' tokens in certain
27522 cases. */
27524 case CPP_GREATER:
27525 if (depth == 0)
27527 /* This might be an operator, or it might close a
27528 template argument list. But if a previous '<'
27529 started a template argument list, this will have
27530 closed it, so we can't be in one anymore. */
27531 maybe_template_id -= 1 + (token->type == CPP_RSHIFT);
27532 if (maybe_template_id < 0)
27533 maybe_template_id = 0;
27535 break;
27537 /* If we run out of tokens, issue an error message. */
27538 case CPP_EOF:
27539 case CPP_PRAGMA_EOL:
27540 error_at (token->location, "file ends in default argument");
27541 return error_mark_node;
27543 case CPP_NAME:
27544 case CPP_SCOPE:
27545 /* In these cases, we should look for template-ids.
27546 For example, if the default argument is
27547 `X<int, double>()', we need to do name lookup to
27548 figure out whether or not `X' is a template; if
27549 so, the `,' does not end the default argument.
27551 That is not yet done. */
27552 break;
27554 default:
27555 break;
27558 /* If we've reached the end, stop. */
27559 if (done)
27560 break;
27562 /* Add the token to the token block. */
27563 token = cp_lexer_consume_token (parser->lexer);
27566 /* Create a DEFAULT_ARG to represent the unparsed default
27567 argument. */
27568 default_argument = make_node (DEFAULT_ARG);
27569 DEFARG_TOKENS (default_argument)
27570 = cp_token_cache_new (first_token, token);
27571 DEFARG_INSTANTIATIONS (default_argument) = NULL;
27573 return default_argument;
27576 /* Begin parsing tentatively. We always save tokens while parsing
27577 tentatively so that if the tentative parsing fails we can restore the
27578 tokens. */
27580 static void
27581 cp_parser_parse_tentatively (cp_parser* parser)
27583 /* Enter a new parsing context. */
27584 parser->context = cp_parser_context_new (parser->context);
27585 /* Begin saving tokens. */
27586 cp_lexer_save_tokens (parser->lexer);
27587 /* In order to avoid repetitive access control error messages,
27588 access checks are queued up until we are no longer parsing
27589 tentatively. */
27590 push_deferring_access_checks (dk_deferred);
27593 /* Commit to the currently active tentative parse. */
27595 static void
27596 cp_parser_commit_to_tentative_parse (cp_parser* parser)
27598 cp_parser_context *context;
27599 cp_lexer *lexer;
27601 /* Mark all of the levels as committed. */
27602 lexer = parser->lexer;
27603 for (context = parser->context; context->next; context = context->next)
27605 if (context->status == CP_PARSER_STATUS_KIND_COMMITTED)
27606 break;
27607 context->status = CP_PARSER_STATUS_KIND_COMMITTED;
27608 while (!cp_lexer_saving_tokens (lexer))
27609 lexer = lexer->next;
27610 cp_lexer_commit_tokens (lexer);
27614 /* Commit to the topmost currently active tentative parse.
27616 Note that this function shouldn't be called when there are
27617 irreversible side-effects while in a tentative state. For
27618 example, we shouldn't create a permanent entry in the symbol
27619 table, or issue an error message that might not apply if the
27620 tentative parse is aborted. */
27622 static void
27623 cp_parser_commit_to_topmost_tentative_parse (cp_parser* parser)
27625 cp_parser_context *context = parser->context;
27626 cp_lexer *lexer = parser->lexer;
27628 if (context)
27630 if (context->status == CP_PARSER_STATUS_KIND_COMMITTED)
27631 return;
27632 context->status = CP_PARSER_STATUS_KIND_COMMITTED;
27634 while (!cp_lexer_saving_tokens (lexer))
27635 lexer = lexer->next;
27636 cp_lexer_commit_tokens (lexer);
27640 /* Abort the currently active tentative parse. All consumed tokens
27641 will be rolled back, and no diagnostics will be issued. */
27643 static void
27644 cp_parser_abort_tentative_parse (cp_parser* parser)
27646 gcc_assert (parser->context->status != CP_PARSER_STATUS_KIND_COMMITTED
27647 || errorcount > 0);
27648 cp_parser_simulate_error (parser);
27649 /* Now, pretend that we want to see if the construct was
27650 successfully parsed. */
27651 cp_parser_parse_definitely (parser);
27654 /* Stop parsing tentatively. If a parse error has occurred, restore the
27655 token stream. Otherwise, commit to the tokens we have consumed.
27656 Returns true if no error occurred; false otherwise. */
27658 static bool
27659 cp_parser_parse_definitely (cp_parser* parser)
27661 bool error_occurred;
27662 cp_parser_context *context;
27664 /* Remember whether or not an error occurred, since we are about to
27665 destroy that information. */
27666 error_occurred = cp_parser_error_occurred (parser);
27667 /* Remove the topmost context from the stack. */
27668 context = parser->context;
27669 parser->context = context->next;
27670 /* If no parse errors occurred, commit to the tentative parse. */
27671 if (!error_occurred)
27673 /* Commit to the tokens read tentatively, unless that was
27674 already done. */
27675 if (context->status != CP_PARSER_STATUS_KIND_COMMITTED)
27676 cp_lexer_commit_tokens (parser->lexer);
27678 pop_to_parent_deferring_access_checks ();
27680 /* Otherwise, if errors occurred, roll back our state so that things
27681 are just as they were before we began the tentative parse. */
27682 else
27684 cp_lexer_rollback_tokens (parser->lexer);
27685 pop_deferring_access_checks ();
27687 /* Add the context to the front of the free list. */
27688 context->next = cp_parser_context_free_list;
27689 cp_parser_context_free_list = context;
27691 return !error_occurred;
27694 /* Returns true if we are parsing tentatively and are not committed to
27695 this tentative parse. */
27697 static bool
27698 cp_parser_uncommitted_to_tentative_parse_p (cp_parser* parser)
27700 return (cp_parser_parsing_tentatively (parser)
27701 && parser->context->status != CP_PARSER_STATUS_KIND_COMMITTED);
27704 /* Returns nonzero iff an error has occurred during the most recent
27705 tentative parse. */
27707 static bool
27708 cp_parser_error_occurred (cp_parser* parser)
27710 return (cp_parser_parsing_tentatively (parser)
27711 && parser->context->status == CP_PARSER_STATUS_KIND_ERROR);
27714 /* Returns nonzero if GNU extensions are allowed. */
27716 static bool
27717 cp_parser_allow_gnu_extensions_p (cp_parser* parser)
27719 return parser->allow_gnu_extensions_p;
27722 /* Objective-C++ Productions */
27725 /* Parse an Objective-C expression, which feeds into a primary-expression
27726 above.
27728 objc-expression:
27729 objc-message-expression
27730 objc-string-literal
27731 objc-encode-expression
27732 objc-protocol-expression
27733 objc-selector-expression
27735 Returns a tree representation of the expression. */
27737 static cp_expr
27738 cp_parser_objc_expression (cp_parser* parser)
27740 /* Try to figure out what kind of declaration is present. */
27741 cp_token *kwd = cp_lexer_peek_token (parser->lexer);
27743 switch (kwd->type)
27745 case CPP_OPEN_SQUARE:
27746 return cp_parser_objc_message_expression (parser);
27748 case CPP_OBJC_STRING:
27749 kwd = cp_lexer_consume_token (parser->lexer);
27750 return objc_build_string_object (kwd->u.value);
27752 case CPP_KEYWORD:
27753 switch (kwd->keyword)
27755 case RID_AT_ENCODE:
27756 return cp_parser_objc_encode_expression (parser);
27758 case RID_AT_PROTOCOL:
27759 return cp_parser_objc_protocol_expression (parser);
27761 case RID_AT_SELECTOR:
27762 return cp_parser_objc_selector_expression (parser);
27764 default:
27765 break;
27767 default:
27768 error_at (kwd->location,
27769 "misplaced %<@%D%> Objective-C++ construct",
27770 kwd->u.value);
27771 cp_parser_skip_to_end_of_block_or_statement (parser);
27774 return error_mark_node;
27777 /* Parse an Objective-C message expression.
27779 objc-message-expression:
27780 [ objc-message-receiver objc-message-args ]
27782 Returns a representation of an Objective-C message. */
27784 static tree
27785 cp_parser_objc_message_expression (cp_parser* parser)
27787 tree receiver, messageargs;
27789 location_t start_loc = cp_lexer_peek_token (parser->lexer)->location;
27790 cp_lexer_consume_token (parser->lexer); /* Eat '['. */
27791 receiver = cp_parser_objc_message_receiver (parser);
27792 messageargs = cp_parser_objc_message_args (parser);
27793 location_t end_loc = cp_lexer_peek_token (parser->lexer)->location;
27794 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
27796 tree result = objc_build_message_expr (receiver, messageargs);
27798 /* Construct a location e.g.
27799 [self func1:5]
27800 ^~~~~~~~~~~~~~
27801 ranging from the '[' to the ']', with the caret at the start. */
27802 location_t combined_loc = make_location (start_loc, start_loc, end_loc);
27803 protected_set_expr_location (result, combined_loc);
27805 return result;
27808 /* Parse an objc-message-receiver.
27810 objc-message-receiver:
27811 expression
27812 simple-type-specifier
27814 Returns a representation of the type or expression. */
27816 static tree
27817 cp_parser_objc_message_receiver (cp_parser* parser)
27819 tree rcv;
27821 /* An Objective-C message receiver may be either (1) a type
27822 or (2) an expression. */
27823 cp_parser_parse_tentatively (parser);
27824 rcv = cp_parser_expression (parser);
27826 /* If that worked out, fine. */
27827 if (cp_parser_parse_definitely (parser))
27828 return rcv;
27830 cp_parser_parse_tentatively (parser);
27831 rcv = cp_parser_simple_type_specifier (parser,
27832 /*decl_specs=*/NULL,
27833 CP_PARSER_FLAGS_NONE);
27835 if (cp_parser_parse_definitely (parser))
27836 return objc_get_class_reference (rcv);
27838 cp_parser_error (parser, "objective-c++ message receiver expected");
27839 return error_mark_node;
27842 /* Parse the arguments and selectors comprising an Objective-C message.
27844 objc-message-args:
27845 objc-selector
27846 objc-selector-args
27847 objc-selector-args , objc-comma-args
27849 objc-selector-args:
27850 objc-selector [opt] : assignment-expression
27851 objc-selector-args objc-selector [opt] : assignment-expression
27853 objc-comma-args:
27854 assignment-expression
27855 objc-comma-args , assignment-expression
27857 Returns a TREE_LIST, with TREE_PURPOSE containing a list of
27858 selector arguments and TREE_VALUE containing a list of comma
27859 arguments. */
27861 static tree
27862 cp_parser_objc_message_args (cp_parser* parser)
27864 tree sel_args = NULL_TREE, addl_args = NULL_TREE;
27865 bool maybe_unary_selector_p = true;
27866 cp_token *token = cp_lexer_peek_token (parser->lexer);
27868 while (cp_parser_objc_selector_p (token->type) || token->type == CPP_COLON)
27870 tree selector = NULL_TREE, arg;
27872 if (token->type != CPP_COLON)
27873 selector = cp_parser_objc_selector (parser);
27875 /* Detect if we have a unary selector. */
27876 if (maybe_unary_selector_p
27877 && cp_lexer_next_token_is_not (parser->lexer, CPP_COLON))
27878 return build_tree_list (selector, NULL_TREE);
27880 maybe_unary_selector_p = false;
27881 cp_parser_require (parser, CPP_COLON, RT_COLON);
27882 arg = cp_parser_assignment_expression (parser);
27884 sel_args
27885 = chainon (sel_args,
27886 build_tree_list (selector, arg));
27888 token = cp_lexer_peek_token (parser->lexer);
27891 /* Handle non-selector arguments, if any. */
27892 while (token->type == CPP_COMMA)
27894 tree arg;
27896 cp_lexer_consume_token (parser->lexer);
27897 arg = cp_parser_assignment_expression (parser);
27899 addl_args
27900 = chainon (addl_args,
27901 build_tree_list (NULL_TREE, arg));
27903 token = cp_lexer_peek_token (parser->lexer);
27906 if (sel_args == NULL_TREE && addl_args == NULL_TREE)
27908 cp_parser_error (parser, "objective-c++ message argument(s) are expected");
27909 return build_tree_list (error_mark_node, error_mark_node);
27912 return build_tree_list (sel_args, addl_args);
27915 /* Parse an Objective-C encode expression.
27917 objc-encode-expression:
27918 @encode objc-typename
27920 Returns an encoded representation of the type argument. */
27922 static cp_expr
27923 cp_parser_objc_encode_expression (cp_parser* parser)
27925 tree type;
27926 cp_token *token;
27927 location_t start_loc = cp_lexer_peek_token (parser->lexer)->location;
27929 cp_lexer_consume_token (parser->lexer); /* Eat '@encode'. */
27930 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
27931 token = cp_lexer_peek_token (parser->lexer);
27932 type = complete_type (cp_parser_type_id (parser));
27933 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
27935 if (!type)
27937 error_at (token->location,
27938 "%<@encode%> must specify a type as an argument");
27939 return error_mark_node;
27942 /* This happens if we find @encode(T) (where T is a template
27943 typename or something dependent on a template typename) when
27944 parsing a template. In that case, we can't compile it
27945 immediately, but we rather create an AT_ENCODE_EXPR which will
27946 need to be instantiated when the template is used.
27948 if (dependent_type_p (type))
27950 tree value = build_min (AT_ENCODE_EXPR, size_type_node, type);
27951 TREE_READONLY (value) = 1;
27952 return value;
27956 /* Build a location of the form:
27957 @encode(int)
27958 ^~~~~~~~~~~~
27959 with caret==start at the @ token, finishing at the close paren. */
27960 location_t combined_loc
27961 = make_location (start_loc, start_loc,
27962 cp_lexer_previous_token (parser->lexer)->location);
27964 return cp_expr (objc_build_encode_expr (type), combined_loc);
27967 /* Parse an Objective-C @defs expression. */
27969 static tree
27970 cp_parser_objc_defs_expression (cp_parser *parser)
27972 tree name;
27974 cp_lexer_consume_token (parser->lexer); /* Eat '@defs'. */
27975 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
27976 name = cp_parser_identifier (parser);
27977 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
27979 return objc_get_class_ivars (name);
27982 /* Parse an Objective-C protocol expression.
27984 objc-protocol-expression:
27985 @protocol ( identifier )
27987 Returns a representation of the protocol expression. */
27989 static tree
27990 cp_parser_objc_protocol_expression (cp_parser* parser)
27992 tree proto;
27993 location_t start_loc = cp_lexer_peek_token (parser->lexer)->location;
27995 cp_lexer_consume_token (parser->lexer); /* Eat '@protocol'. */
27996 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
27997 proto = cp_parser_identifier (parser);
27998 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
28000 /* Build a location of the form:
28001 @protocol(prot)
28002 ^~~~~~~~~~~~~~~
28003 with caret==start at the @ token, finishing at the close paren. */
28004 location_t combined_loc
28005 = make_location (start_loc, start_loc,
28006 cp_lexer_previous_token (parser->lexer)->location);
28007 tree result = objc_build_protocol_expr (proto);
28008 protected_set_expr_location (result, combined_loc);
28009 return result;
28012 /* Parse an Objective-C selector expression.
28014 objc-selector-expression:
28015 @selector ( objc-method-signature )
28017 objc-method-signature:
28018 objc-selector
28019 objc-selector-seq
28021 objc-selector-seq:
28022 objc-selector :
28023 objc-selector-seq objc-selector :
28025 Returns a representation of the method selector. */
28027 static tree
28028 cp_parser_objc_selector_expression (cp_parser* parser)
28030 tree sel_seq = NULL_TREE;
28031 bool maybe_unary_selector_p = true;
28032 cp_token *token;
28033 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
28035 cp_lexer_consume_token (parser->lexer); /* Eat '@selector'. */
28036 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
28037 token = cp_lexer_peek_token (parser->lexer);
28039 while (cp_parser_objc_selector_p (token->type) || token->type == CPP_COLON
28040 || token->type == CPP_SCOPE)
28042 tree selector = NULL_TREE;
28044 if (token->type != CPP_COLON
28045 || token->type == CPP_SCOPE)
28046 selector = cp_parser_objc_selector (parser);
28048 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COLON)
28049 && cp_lexer_next_token_is_not (parser->lexer, CPP_SCOPE))
28051 /* Detect if we have a unary selector. */
28052 if (maybe_unary_selector_p)
28054 sel_seq = selector;
28055 goto finish_selector;
28057 else
28059 cp_parser_error (parser, "expected %<:%>");
28062 maybe_unary_selector_p = false;
28063 token = cp_lexer_consume_token (parser->lexer);
28065 if (token->type == CPP_SCOPE)
28067 sel_seq
28068 = chainon (sel_seq,
28069 build_tree_list (selector, NULL_TREE));
28070 sel_seq
28071 = chainon (sel_seq,
28072 build_tree_list (NULL_TREE, NULL_TREE));
28074 else
28075 sel_seq
28076 = chainon (sel_seq,
28077 build_tree_list (selector, NULL_TREE));
28079 token = cp_lexer_peek_token (parser->lexer);
28082 finish_selector:
28083 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
28086 /* Build a location of the form:
28087 @selector(func)
28088 ^~~~~~~~~~~~~~~
28089 with caret==start at the @ token, finishing at the close paren. */
28090 location_t combined_loc
28091 = make_location (loc, loc,
28092 cp_lexer_previous_token (parser->lexer)->location);
28093 tree result = objc_build_selector_expr (combined_loc, sel_seq);
28094 /* TODO: objc_build_selector_expr doesn't always honor the location. */
28095 protected_set_expr_location (result, combined_loc);
28096 return result;
28099 /* Parse a list of identifiers.
28101 objc-identifier-list:
28102 identifier
28103 objc-identifier-list , identifier
28105 Returns a TREE_LIST of identifier nodes. */
28107 static tree
28108 cp_parser_objc_identifier_list (cp_parser* parser)
28110 tree identifier;
28111 tree list;
28112 cp_token *sep;
28114 identifier = cp_parser_identifier (parser);
28115 if (identifier == error_mark_node)
28116 return error_mark_node;
28118 list = build_tree_list (NULL_TREE, identifier);
28119 sep = cp_lexer_peek_token (parser->lexer);
28121 while (sep->type == CPP_COMMA)
28123 cp_lexer_consume_token (parser->lexer); /* Eat ','. */
28124 identifier = cp_parser_identifier (parser);
28125 if (identifier == error_mark_node)
28126 return list;
28128 list = chainon (list, build_tree_list (NULL_TREE,
28129 identifier));
28130 sep = cp_lexer_peek_token (parser->lexer);
28133 return list;
28136 /* Parse an Objective-C alias declaration.
28138 objc-alias-declaration:
28139 @compatibility_alias identifier identifier ;
28141 This function registers the alias mapping with the Objective-C front end.
28142 It returns nothing. */
28144 static void
28145 cp_parser_objc_alias_declaration (cp_parser* parser)
28147 tree alias, orig;
28149 cp_lexer_consume_token (parser->lexer); /* Eat '@compatibility_alias'. */
28150 alias = cp_parser_identifier (parser);
28151 orig = cp_parser_identifier (parser);
28152 objc_declare_alias (alias, orig);
28153 cp_parser_consume_semicolon_at_end_of_statement (parser);
28156 /* Parse an Objective-C class forward-declaration.
28158 objc-class-declaration:
28159 @class objc-identifier-list ;
28161 The function registers the forward declarations with the Objective-C
28162 front end. It returns nothing. */
28164 static void
28165 cp_parser_objc_class_declaration (cp_parser* parser)
28167 cp_lexer_consume_token (parser->lexer); /* Eat '@class'. */
28168 while (true)
28170 tree id;
28172 id = cp_parser_identifier (parser);
28173 if (id == error_mark_node)
28174 break;
28176 objc_declare_class (id);
28178 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
28179 cp_lexer_consume_token (parser->lexer);
28180 else
28181 break;
28183 cp_parser_consume_semicolon_at_end_of_statement (parser);
28186 /* Parse a list of Objective-C protocol references.
28188 objc-protocol-refs-opt:
28189 objc-protocol-refs [opt]
28191 objc-protocol-refs:
28192 < objc-identifier-list >
28194 Returns a TREE_LIST of identifiers, if any. */
28196 static tree
28197 cp_parser_objc_protocol_refs_opt (cp_parser* parser)
28199 tree protorefs = NULL_TREE;
28201 if(cp_lexer_next_token_is (parser->lexer, CPP_LESS))
28203 cp_lexer_consume_token (parser->lexer); /* Eat '<'. */
28204 protorefs = cp_parser_objc_identifier_list (parser);
28205 cp_parser_require (parser, CPP_GREATER, RT_GREATER);
28208 return protorefs;
28211 /* Parse a Objective-C visibility specification. */
28213 static void
28214 cp_parser_objc_visibility_spec (cp_parser* parser)
28216 cp_token *vis = cp_lexer_peek_token (parser->lexer);
28218 switch (vis->keyword)
28220 case RID_AT_PRIVATE:
28221 objc_set_visibility (OBJC_IVAR_VIS_PRIVATE);
28222 break;
28223 case RID_AT_PROTECTED:
28224 objc_set_visibility (OBJC_IVAR_VIS_PROTECTED);
28225 break;
28226 case RID_AT_PUBLIC:
28227 objc_set_visibility (OBJC_IVAR_VIS_PUBLIC);
28228 break;
28229 case RID_AT_PACKAGE:
28230 objc_set_visibility (OBJC_IVAR_VIS_PACKAGE);
28231 break;
28232 default:
28233 return;
28236 /* Eat '@private'/'@protected'/'@public'. */
28237 cp_lexer_consume_token (parser->lexer);
28240 /* Parse an Objective-C method type. Return 'true' if it is a class
28241 (+) method, and 'false' if it is an instance (-) method. */
28243 static inline bool
28244 cp_parser_objc_method_type (cp_parser* parser)
28246 if (cp_lexer_consume_token (parser->lexer)->type == CPP_PLUS)
28247 return true;
28248 else
28249 return false;
28252 /* Parse an Objective-C protocol qualifier. */
28254 static tree
28255 cp_parser_objc_protocol_qualifiers (cp_parser* parser)
28257 tree quals = NULL_TREE, node;
28258 cp_token *token = cp_lexer_peek_token (parser->lexer);
28260 node = token->u.value;
28262 while (node && identifier_p (node)
28263 && (node == ridpointers [(int) RID_IN]
28264 || node == ridpointers [(int) RID_OUT]
28265 || node == ridpointers [(int) RID_INOUT]
28266 || node == ridpointers [(int) RID_BYCOPY]
28267 || node == ridpointers [(int) RID_BYREF]
28268 || node == ridpointers [(int) RID_ONEWAY]))
28270 quals = tree_cons (NULL_TREE, node, quals);
28271 cp_lexer_consume_token (parser->lexer);
28272 token = cp_lexer_peek_token (parser->lexer);
28273 node = token->u.value;
28276 return quals;
28279 /* Parse an Objective-C typename. */
28281 static tree
28282 cp_parser_objc_typename (cp_parser* parser)
28284 tree type_name = NULL_TREE;
28286 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
28288 tree proto_quals, cp_type = NULL_TREE;
28290 cp_lexer_consume_token (parser->lexer); /* Eat '('. */
28291 proto_quals = cp_parser_objc_protocol_qualifiers (parser);
28293 /* An ObjC type name may consist of just protocol qualifiers, in which
28294 case the type shall default to 'id'. */
28295 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN))
28297 cp_type = cp_parser_type_id (parser);
28299 /* If the type could not be parsed, an error has already
28300 been produced. For error recovery, behave as if it had
28301 not been specified, which will use the default type
28302 'id'. */
28303 if (cp_type == error_mark_node)
28305 cp_type = NULL_TREE;
28306 /* We need to skip to the closing parenthesis as
28307 cp_parser_type_id() does not seem to do it for
28308 us. */
28309 cp_parser_skip_to_closing_parenthesis (parser,
28310 /*recovering=*/true,
28311 /*or_comma=*/false,
28312 /*consume_paren=*/false);
28316 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
28317 type_name = build_tree_list (proto_quals, cp_type);
28320 return type_name;
28323 /* Check to see if TYPE refers to an Objective-C selector name. */
28325 static bool
28326 cp_parser_objc_selector_p (enum cpp_ttype type)
28328 return (type == CPP_NAME || type == CPP_KEYWORD
28329 || type == CPP_AND_AND || type == CPP_AND_EQ || type == CPP_AND
28330 || type == CPP_OR || type == CPP_COMPL || type == CPP_NOT
28331 || type == CPP_NOT_EQ || type == CPP_OR_OR || type == CPP_OR_EQ
28332 || type == CPP_XOR || type == CPP_XOR_EQ);
28335 /* Parse an Objective-C selector. */
28337 static tree
28338 cp_parser_objc_selector (cp_parser* parser)
28340 cp_token *token = cp_lexer_consume_token (parser->lexer);
28342 if (!cp_parser_objc_selector_p (token->type))
28344 error_at (token->location, "invalid Objective-C++ selector name");
28345 return error_mark_node;
28348 /* C++ operator names are allowed to appear in ObjC selectors. */
28349 switch (token->type)
28351 case CPP_AND_AND: return get_identifier ("and");
28352 case CPP_AND_EQ: return get_identifier ("and_eq");
28353 case CPP_AND: return get_identifier ("bitand");
28354 case CPP_OR: return get_identifier ("bitor");
28355 case CPP_COMPL: return get_identifier ("compl");
28356 case CPP_NOT: return get_identifier ("not");
28357 case CPP_NOT_EQ: return get_identifier ("not_eq");
28358 case CPP_OR_OR: return get_identifier ("or");
28359 case CPP_OR_EQ: return get_identifier ("or_eq");
28360 case CPP_XOR: return get_identifier ("xor");
28361 case CPP_XOR_EQ: return get_identifier ("xor_eq");
28362 default: return token->u.value;
28366 /* Parse an Objective-C params list. */
28368 static tree
28369 cp_parser_objc_method_keyword_params (cp_parser* parser, tree* attributes)
28371 tree params = NULL_TREE;
28372 bool maybe_unary_selector_p = true;
28373 cp_token *token = cp_lexer_peek_token (parser->lexer);
28375 while (cp_parser_objc_selector_p (token->type) || token->type == CPP_COLON)
28377 tree selector = NULL_TREE, type_name, identifier;
28378 tree parm_attr = NULL_TREE;
28380 if (token->keyword == RID_ATTRIBUTE)
28381 break;
28383 if (token->type != CPP_COLON)
28384 selector = cp_parser_objc_selector (parser);
28386 /* Detect if we have a unary selector. */
28387 if (maybe_unary_selector_p
28388 && cp_lexer_next_token_is_not (parser->lexer, CPP_COLON))
28390 params = selector; /* Might be followed by attributes. */
28391 break;
28394 maybe_unary_selector_p = false;
28395 if (!cp_parser_require (parser, CPP_COLON, RT_COLON))
28397 /* Something went quite wrong. There should be a colon
28398 here, but there is not. Stop parsing parameters. */
28399 break;
28401 type_name = cp_parser_objc_typename (parser);
28402 /* New ObjC allows attributes on parameters too. */
28403 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_ATTRIBUTE))
28404 parm_attr = cp_parser_attributes_opt (parser);
28405 identifier = cp_parser_identifier (parser);
28407 params
28408 = chainon (params,
28409 objc_build_keyword_decl (selector,
28410 type_name,
28411 identifier,
28412 parm_attr));
28414 token = cp_lexer_peek_token (parser->lexer);
28417 if (params == NULL_TREE)
28419 cp_parser_error (parser, "objective-c++ method declaration is expected");
28420 return error_mark_node;
28423 /* We allow tail attributes for the method. */
28424 if (token->keyword == RID_ATTRIBUTE)
28426 *attributes = cp_parser_attributes_opt (parser);
28427 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
28428 || cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
28429 return params;
28430 cp_parser_error (parser,
28431 "method attributes must be specified at the end");
28432 return error_mark_node;
28435 if (params == NULL_TREE)
28437 cp_parser_error (parser, "objective-c++ method declaration is expected");
28438 return error_mark_node;
28440 return params;
28443 /* Parse the non-keyword Objective-C params. */
28445 static tree
28446 cp_parser_objc_method_tail_params_opt (cp_parser* parser, bool *ellipsisp,
28447 tree* attributes)
28449 tree params = make_node (TREE_LIST);
28450 cp_token *token = cp_lexer_peek_token (parser->lexer);
28451 *ellipsisp = false; /* Initially, assume no ellipsis. */
28453 while (token->type == CPP_COMMA)
28455 cp_parameter_declarator *parmdecl;
28456 tree parm;
28458 cp_lexer_consume_token (parser->lexer); /* Eat ','. */
28459 token = cp_lexer_peek_token (parser->lexer);
28461 if (token->type == CPP_ELLIPSIS)
28463 cp_lexer_consume_token (parser->lexer); /* Eat '...'. */
28464 *ellipsisp = true;
28465 token = cp_lexer_peek_token (parser->lexer);
28466 break;
28469 /* TODO: parse attributes for tail parameters. */
28470 parmdecl = cp_parser_parameter_declaration (parser, false, NULL);
28471 parm = grokdeclarator (parmdecl->declarator,
28472 &parmdecl->decl_specifiers,
28473 PARM, /*initialized=*/0,
28474 /*attrlist=*/NULL);
28476 chainon (params, build_tree_list (NULL_TREE, parm));
28477 token = cp_lexer_peek_token (parser->lexer);
28480 /* We allow tail attributes for the method. */
28481 if (token->keyword == RID_ATTRIBUTE)
28483 if (*attributes == NULL_TREE)
28485 *attributes = cp_parser_attributes_opt (parser);
28486 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
28487 || cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
28488 return params;
28490 else
28491 /* We have an error, but parse the attributes, so that we can
28492 carry on. */
28493 *attributes = cp_parser_attributes_opt (parser);
28495 cp_parser_error (parser,
28496 "method attributes must be specified at the end");
28497 return error_mark_node;
28500 return params;
28503 /* Parse a linkage specification, a pragma, an extra semicolon or a block. */
28505 static void
28506 cp_parser_objc_interstitial_code (cp_parser* parser)
28508 cp_token *token = cp_lexer_peek_token (parser->lexer);
28510 /* If the next token is `extern' and the following token is a string
28511 literal, then we have a linkage specification. */
28512 if (token->keyword == RID_EXTERN
28513 && cp_parser_is_pure_string_literal
28514 (cp_lexer_peek_nth_token (parser->lexer, 2)))
28515 cp_parser_linkage_specification (parser);
28516 /* Handle #pragma, if any. */
28517 else if (token->type == CPP_PRAGMA)
28518 cp_parser_pragma (parser, pragma_objc_icode, NULL);
28519 /* Allow stray semicolons. */
28520 else if (token->type == CPP_SEMICOLON)
28521 cp_lexer_consume_token (parser->lexer);
28522 /* Mark methods as optional or required, when building protocols. */
28523 else if (token->keyword == RID_AT_OPTIONAL)
28525 cp_lexer_consume_token (parser->lexer);
28526 objc_set_method_opt (true);
28528 else if (token->keyword == RID_AT_REQUIRED)
28530 cp_lexer_consume_token (parser->lexer);
28531 objc_set_method_opt (false);
28533 else if (token->keyword == RID_NAMESPACE)
28534 cp_parser_namespace_definition (parser);
28535 /* Other stray characters must generate errors. */
28536 else if (token->type == CPP_OPEN_BRACE || token->type == CPP_CLOSE_BRACE)
28538 cp_lexer_consume_token (parser->lexer);
28539 error ("stray %qs between Objective-C++ methods",
28540 token->type == CPP_OPEN_BRACE ? "{" : "}");
28542 /* Finally, try to parse a block-declaration, or a function-definition. */
28543 else
28544 cp_parser_block_declaration (parser, /*statement_p=*/false);
28547 /* Parse a method signature. */
28549 static tree
28550 cp_parser_objc_method_signature (cp_parser* parser, tree* attributes)
28552 tree rettype, kwdparms, optparms;
28553 bool ellipsis = false;
28554 bool is_class_method;
28556 is_class_method = cp_parser_objc_method_type (parser);
28557 rettype = cp_parser_objc_typename (parser);
28558 *attributes = NULL_TREE;
28559 kwdparms = cp_parser_objc_method_keyword_params (parser, attributes);
28560 if (kwdparms == error_mark_node)
28561 return error_mark_node;
28562 optparms = cp_parser_objc_method_tail_params_opt (parser, &ellipsis, attributes);
28563 if (optparms == error_mark_node)
28564 return error_mark_node;
28566 return objc_build_method_signature (is_class_method, rettype, kwdparms, optparms, ellipsis);
28569 static bool
28570 cp_parser_objc_method_maybe_bad_prefix_attributes (cp_parser* parser)
28572 tree tattr;
28573 cp_lexer_save_tokens (parser->lexer);
28574 tattr = cp_parser_attributes_opt (parser);
28575 gcc_assert (tattr) ;
28577 /* If the attributes are followed by a method introducer, this is not allowed.
28578 Dump the attributes and flag the situation. */
28579 if (cp_lexer_next_token_is (parser->lexer, CPP_PLUS)
28580 || cp_lexer_next_token_is (parser->lexer, CPP_MINUS))
28581 return true;
28583 /* Otherwise, the attributes introduce some interstitial code, possibly so
28584 rewind to allow that check. */
28585 cp_lexer_rollback_tokens (parser->lexer);
28586 return false;
28589 /* Parse an Objective-C method prototype list. */
28591 static void
28592 cp_parser_objc_method_prototype_list (cp_parser* parser)
28594 cp_token *token = cp_lexer_peek_token (parser->lexer);
28596 while (token->keyword != RID_AT_END && token->type != CPP_EOF)
28598 if (token->type == CPP_PLUS || token->type == CPP_MINUS)
28600 tree attributes, sig;
28601 bool is_class_method;
28602 if (token->type == CPP_PLUS)
28603 is_class_method = true;
28604 else
28605 is_class_method = false;
28606 sig = cp_parser_objc_method_signature (parser, &attributes);
28607 if (sig == error_mark_node)
28609 cp_parser_skip_to_end_of_block_or_statement (parser);
28610 token = cp_lexer_peek_token (parser->lexer);
28611 continue;
28613 objc_add_method_declaration (is_class_method, sig, attributes);
28614 cp_parser_consume_semicolon_at_end_of_statement (parser);
28616 else if (token->keyword == RID_AT_PROPERTY)
28617 cp_parser_objc_at_property_declaration (parser);
28618 else if (token->keyword == RID_ATTRIBUTE
28619 && cp_parser_objc_method_maybe_bad_prefix_attributes(parser))
28620 warning_at (cp_lexer_peek_token (parser->lexer)->location,
28621 OPT_Wattributes,
28622 "prefix attributes are ignored for methods");
28623 else
28624 /* Allow for interspersed non-ObjC++ code. */
28625 cp_parser_objc_interstitial_code (parser);
28627 token = cp_lexer_peek_token (parser->lexer);
28630 if (token->type != CPP_EOF)
28631 cp_lexer_consume_token (parser->lexer); /* Eat '@end'. */
28632 else
28633 cp_parser_error (parser, "expected %<@end%>");
28635 objc_finish_interface ();
28638 /* Parse an Objective-C method definition list. */
28640 static void
28641 cp_parser_objc_method_definition_list (cp_parser* parser)
28643 cp_token *token = cp_lexer_peek_token (parser->lexer);
28645 while (token->keyword != RID_AT_END && token->type != CPP_EOF)
28647 tree meth;
28649 if (token->type == CPP_PLUS || token->type == CPP_MINUS)
28651 cp_token *ptk;
28652 tree sig, attribute;
28653 bool is_class_method;
28654 if (token->type == CPP_PLUS)
28655 is_class_method = true;
28656 else
28657 is_class_method = false;
28658 push_deferring_access_checks (dk_deferred);
28659 sig = cp_parser_objc_method_signature (parser, &attribute);
28660 if (sig == error_mark_node)
28662 cp_parser_skip_to_end_of_block_or_statement (parser);
28663 token = cp_lexer_peek_token (parser->lexer);
28664 continue;
28666 objc_start_method_definition (is_class_method, sig, attribute,
28667 NULL_TREE);
28669 /* For historical reasons, we accept an optional semicolon. */
28670 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
28671 cp_lexer_consume_token (parser->lexer);
28673 ptk = cp_lexer_peek_token (parser->lexer);
28674 if (!(ptk->type == CPP_PLUS || ptk->type == CPP_MINUS
28675 || ptk->type == CPP_EOF || ptk->keyword == RID_AT_END))
28677 perform_deferred_access_checks (tf_warning_or_error);
28678 stop_deferring_access_checks ();
28679 meth = cp_parser_function_definition_after_declarator (parser,
28680 false);
28681 pop_deferring_access_checks ();
28682 objc_finish_method_definition (meth);
28685 /* The following case will be removed once @synthesize is
28686 completely implemented. */
28687 else if (token->keyword == RID_AT_PROPERTY)
28688 cp_parser_objc_at_property_declaration (parser);
28689 else if (token->keyword == RID_AT_SYNTHESIZE)
28690 cp_parser_objc_at_synthesize_declaration (parser);
28691 else if (token->keyword == RID_AT_DYNAMIC)
28692 cp_parser_objc_at_dynamic_declaration (parser);
28693 else if (token->keyword == RID_ATTRIBUTE
28694 && cp_parser_objc_method_maybe_bad_prefix_attributes(parser))
28695 warning_at (token->location, OPT_Wattributes,
28696 "prefix attributes are ignored for methods");
28697 else
28698 /* Allow for interspersed non-ObjC++ code. */
28699 cp_parser_objc_interstitial_code (parser);
28701 token = cp_lexer_peek_token (parser->lexer);
28704 if (token->type != CPP_EOF)
28705 cp_lexer_consume_token (parser->lexer); /* Eat '@end'. */
28706 else
28707 cp_parser_error (parser, "expected %<@end%>");
28709 objc_finish_implementation ();
28712 /* Parse Objective-C ivars. */
28714 static void
28715 cp_parser_objc_class_ivars (cp_parser* parser)
28717 cp_token *token = cp_lexer_peek_token (parser->lexer);
28719 if (token->type != CPP_OPEN_BRACE)
28720 return; /* No ivars specified. */
28722 cp_lexer_consume_token (parser->lexer); /* Eat '{'. */
28723 token = cp_lexer_peek_token (parser->lexer);
28725 while (token->type != CPP_CLOSE_BRACE
28726 && token->keyword != RID_AT_END && token->type != CPP_EOF)
28728 cp_decl_specifier_seq declspecs;
28729 int decl_class_or_enum_p;
28730 tree prefix_attributes;
28732 cp_parser_objc_visibility_spec (parser);
28734 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
28735 break;
28737 cp_parser_decl_specifier_seq (parser,
28738 CP_PARSER_FLAGS_OPTIONAL,
28739 &declspecs,
28740 &decl_class_or_enum_p);
28742 /* auto, register, static, extern, mutable. */
28743 if (declspecs.storage_class != sc_none)
28745 cp_parser_error (parser, "invalid type for instance variable");
28746 declspecs.storage_class = sc_none;
28749 /* thread_local. */
28750 if (decl_spec_seq_has_spec_p (&declspecs, ds_thread))
28752 cp_parser_error (parser, "invalid type for instance variable");
28753 declspecs.locations[ds_thread] = 0;
28756 /* typedef. */
28757 if (decl_spec_seq_has_spec_p (&declspecs, ds_typedef))
28759 cp_parser_error (parser, "invalid type for instance variable");
28760 declspecs.locations[ds_typedef] = 0;
28763 prefix_attributes = declspecs.attributes;
28764 declspecs.attributes = NULL_TREE;
28766 /* Keep going until we hit the `;' at the end of the
28767 declaration. */
28768 while (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
28770 tree width = NULL_TREE, attributes, first_attribute, decl;
28771 cp_declarator *declarator = NULL;
28772 int ctor_dtor_or_conv_p;
28774 /* Check for a (possibly unnamed) bitfield declaration. */
28775 token = cp_lexer_peek_token (parser->lexer);
28776 if (token->type == CPP_COLON)
28777 goto eat_colon;
28779 if (token->type == CPP_NAME
28780 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
28781 == CPP_COLON))
28783 /* Get the name of the bitfield. */
28784 declarator = make_id_declarator (NULL_TREE,
28785 cp_parser_identifier (parser),
28786 sfk_none);
28788 eat_colon:
28789 cp_lexer_consume_token (parser->lexer); /* Eat ':'. */
28790 /* Get the width of the bitfield. */
28791 width
28792 = cp_parser_constant_expression (parser);
28794 else
28796 /* Parse the declarator. */
28797 declarator
28798 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
28799 &ctor_dtor_or_conv_p,
28800 /*parenthesized_p=*/NULL,
28801 /*member_p=*/false,
28802 /*friend_p=*/false);
28805 /* Look for attributes that apply to the ivar. */
28806 attributes = cp_parser_attributes_opt (parser);
28807 /* Remember which attributes are prefix attributes and
28808 which are not. */
28809 first_attribute = attributes;
28810 /* Combine the attributes. */
28811 attributes = chainon (prefix_attributes, attributes);
28813 if (width)
28814 /* Create the bitfield declaration. */
28815 decl = grokbitfield (declarator, &declspecs,
28816 width,
28817 attributes);
28818 else
28819 decl = grokfield (declarator, &declspecs,
28820 NULL_TREE, /*init_const_expr_p=*/false,
28821 NULL_TREE, attributes);
28823 /* Add the instance variable. */
28824 if (decl != error_mark_node && decl != NULL_TREE)
28825 objc_add_instance_variable (decl);
28827 /* Reset PREFIX_ATTRIBUTES. */
28828 while (attributes && TREE_CHAIN (attributes) != first_attribute)
28829 attributes = TREE_CHAIN (attributes);
28830 if (attributes)
28831 TREE_CHAIN (attributes) = NULL_TREE;
28833 token = cp_lexer_peek_token (parser->lexer);
28835 if (token->type == CPP_COMMA)
28837 cp_lexer_consume_token (parser->lexer); /* Eat ','. */
28838 continue;
28840 break;
28843 cp_parser_consume_semicolon_at_end_of_statement (parser);
28844 token = cp_lexer_peek_token (parser->lexer);
28847 if (token->keyword == RID_AT_END)
28848 cp_parser_error (parser, "expected %<}%>");
28850 /* Do not consume the RID_AT_END, so it will be read again as terminating
28851 the @interface of @implementation. */
28852 if (token->keyword != RID_AT_END && token->type != CPP_EOF)
28853 cp_lexer_consume_token (parser->lexer); /* Eat '}'. */
28855 /* For historical reasons, we accept an optional semicolon. */
28856 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
28857 cp_lexer_consume_token (parser->lexer);
28860 /* Parse an Objective-C protocol declaration. */
28862 static void
28863 cp_parser_objc_protocol_declaration (cp_parser* parser, tree attributes)
28865 tree proto, protorefs;
28866 cp_token *tok;
28868 cp_lexer_consume_token (parser->lexer); /* Eat '@protocol'. */
28869 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NAME))
28871 tok = cp_lexer_peek_token (parser->lexer);
28872 error_at (tok->location, "identifier expected after %<@protocol%>");
28873 cp_parser_consume_semicolon_at_end_of_statement (parser);
28874 return;
28877 /* See if we have a forward declaration or a definition. */
28878 tok = cp_lexer_peek_nth_token (parser->lexer, 2);
28880 /* Try a forward declaration first. */
28881 if (tok->type == CPP_COMMA || tok->type == CPP_SEMICOLON)
28883 while (true)
28885 tree id;
28887 id = cp_parser_identifier (parser);
28888 if (id == error_mark_node)
28889 break;
28891 objc_declare_protocol (id, attributes);
28893 if(cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
28894 cp_lexer_consume_token (parser->lexer);
28895 else
28896 break;
28898 cp_parser_consume_semicolon_at_end_of_statement (parser);
28901 /* Ok, we got a full-fledged definition (or at least should). */
28902 else
28904 proto = cp_parser_identifier (parser);
28905 protorefs = cp_parser_objc_protocol_refs_opt (parser);
28906 objc_start_protocol (proto, protorefs, attributes);
28907 cp_parser_objc_method_prototype_list (parser);
28911 /* Parse an Objective-C superclass or category. */
28913 static void
28914 cp_parser_objc_superclass_or_category (cp_parser *parser,
28915 bool iface_p,
28916 tree *super,
28917 tree *categ, bool *is_class_extension)
28919 cp_token *next = cp_lexer_peek_token (parser->lexer);
28921 *super = *categ = NULL_TREE;
28922 *is_class_extension = false;
28923 if (next->type == CPP_COLON)
28925 cp_lexer_consume_token (parser->lexer); /* Eat ':'. */
28926 *super = cp_parser_identifier (parser);
28928 else if (next->type == CPP_OPEN_PAREN)
28930 cp_lexer_consume_token (parser->lexer); /* Eat '('. */
28932 /* If there is no category name, and this is an @interface, we
28933 have a class extension. */
28934 if (iface_p && cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN))
28936 *categ = NULL_TREE;
28937 *is_class_extension = true;
28939 else
28940 *categ = cp_parser_identifier (parser);
28942 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
28946 /* Parse an Objective-C class interface. */
28948 static void
28949 cp_parser_objc_class_interface (cp_parser* parser, tree attributes)
28951 tree name, super, categ, protos;
28952 bool is_class_extension;
28954 cp_lexer_consume_token (parser->lexer); /* Eat '@interface'. */
28955 name = cp_parser_identifier (parser);
28956 if (name == error_mark_node)
28958 /* It's hard to recover because even if valid @interface stuff
28959 is to follow, we can't compile it (or validate it) if we
28960 don't even know which class it refers to. Let's assume this
28961 was a stray '@interface' token in the stream and skip it.
28963 return;
28965 cp_parser_objc_superclass_or_category (parser, true, &super, &categ,
28966 &is_class_extension);
28967 protos = cp_parser_objc_protocol_refs_opt (parser);
28969 /* We have either a class or a category on our hands. */
28970 if (categ || is_class_extension)
28971 objc_start_category_interface (name, categ, protos, attributes);
28972 else
28974 objc_start_class_interface (name, super, protos, attributes);
28975 /* Handle instance variable declarations, if any. */
28976 cp_parser_objc_class_ivars (parser);
28977 objc_continue_interface ();
28980 cp_parser_objc_method_prototype_list (parser);
28983 /* Parse an Objective-C class implementation. */
28985 static void
28986 cp_parser_objc_class_implementation (cp_parser* parser)
28988 tree name, super, categ;
28989 bool is_class_extension;
28991 cp_lexer_consume_token (parser->lexer); /* Eat '@implementation'. */
28992 name = cp_parser_identifier (parser);
28993 if (name == error_mark_node)
28995 /* It's hard to recover because even if valid @implementation
28996 stuff is to follow, we can't compile it (or validate it) if
28997 we don't even know which class it refers to. Let's assume
28998 this was a stray '@implementation' token in the stream and
28999 skip it.
29001 return;
29003 cp_parser_objc_superclass_or_category (parser, false, &super, &categ,
29004 &is_class_extension);
29006 /* We have either a class or a category on our hands. */
29007 if (categ)
29008 objc_start_category_implementation (name, categ);
29009 else
29011 objc_start_class_implementation (name, super);
29012 /* Handle instance variable declarations, if any. */
29013 cp_parser_objc_class_ivars (parser);
29014 objc_continue_implementation ();
29017 cp_parser_objc_method_definition_list (parser);
29020 /* Consume the @end token and finish off the implementation. */
29022 static void
29023 cp_parser_objc_end_implementation (cp_parser* parser)
29025 cp_lexer_consume_token (parser->lexer); /* Eat '@end'. */
29026 objc_finish_implementation ();
29029 /* Parse an Objective-C declaration. */
29031 static void
29032 cp_parser_objc_declaration (cp_parser* parser, tree attributes)
29034 /* Try to figure out what kind of declaration is present. */
29035 cp_token *kwd = cp_lexer_peek_token (parser->lexer);
29037 if (attributes)
29038 switch (kwd->keyword)
29040 case RID_AT_ALIAS:
29041 case RID_AT_CLASS:
29042 case RID_AT_END:
29043 error_at (kwd->location, "attributes may not be specified before"
29044 " the %<@%D%> Objective-C++ keyword",
29045 kwd->u.value);
29046 attributes = NULL;
29047 break;
29048 case RID_AT_IMPLEMENTATION:
29049 warning_at (kwd->location, OPT_Wattributes,
29050 "prefix attributes are ignored before %<@%D%>",
29051 kwd->u.value);
29052 attributes = NULL;
29053 default:
29054 break;
29057 switch (kwd->keyword)
29059 case RID_AT_ALIAS:
29060 cp_parser_objc_alias_declaration (parser);
29061 break;
29062 case RID_AT_CLASS:
29063 cp_parser_objc_class_declaration (parser);
29064 break;
29065 case RID_AT_PROTOCOL:
29066 cp_parser_objc_protocol_declaration (parser, attributes);
29067 break;
29068 case RID_AT_INTERFACE:
29069 cp_parser_objc_class_interface (parser, attributes);
29070 break;
29071 case RID_AT_IMPLEMENTATION:
29072 cp_parser_objc_class_implementation (parser);
29073 break;
29074 case RID_AT_END:
29075 cp_parser_objc_end_implementation (parser);
29076 break;
29077 default:
29078 error_at (kwd->location, "misplaced %<@%D%> Objective-C++ construct",
29079 kwd->u.value);
29080 cp_parser_skip_to_end_of_block_or_statement (parser);
29084 /* Parse an Objective-C try-catch-finally statement.
29086 objc-try-catch-finally-stmt:
29087 @try compound-statement objc-catch-clause-seq [opt]
29088 objc-finally-clause [opt]
29090 objc-catch-clause-seq:
29091 objc-catch-clause objc-catch-clause-seq [opt]
29093 objc-catch-clause:
29094 @catch ( objc-exception-declaration ) compound-statement
29096 objc-finally-clause:
29097 @finally compound-statement
29099 objc-exception-declaration:
29100 parameter-declaration
29101 '...'
29103 where '...' is to be interpreted literally, that is, it means CPP_ELLIPSIS.
29105 Returns NULL_TREE.
29107 PS: This function is identical to c_parser_objc_try_catch_finally_statement
29108 for C. Keep them in sync. */
29110 static tree
29111 cp_parser_objc_try_catch_finally_statement (cp_parser *parser)
29113 location_t location;
29114 tree stmt;
29116 cp_parser_require_keyword (parser, RID_AT_TRY, RT_AT_TRY);
29117 location = cp_lexer_peek_token (parser->lexer)->location;
29118 objc_maybe_warn_exceptions (location);
29119 /* NB: The @try block needs to be wrapped in its own STATEMENT_LIST
29120 node, lest it get absorbed into the surrounding block. */
29121 stmt = push_stmt_list ();
29122 cp_parser_compound_statement (parser, NULL, BCS_NORMAL, false);
29123 objc_begin_try_stmt (location, pop_stmt_list (stmt));
29125 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_AT_CATCH))
29127 cp_parameter_declarator *parm;
29128 tree parameter_declaration = error_mark_node;
29129 bool seen_open_paren = false;
29131 cp_lexer_consume_token (parser->lexer);
29132 if (cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
29133 seen_open_paren = true;
29134 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
29136 /* We have "@catch (...)" (where the '...' are literally
29137 what is in the code). Skip the '...'.
29138 parameter_declaration is set to NULL_TREE, and
29139 objc_being_catch_clauses() knows that that means
29140 '...'. */
29141 cp_lexer_consume_token (parser->lexer);
29142 parameter_declaration = NULL_TREE;
29144 else
29146 /* We have "@catch (NSException *exception)" or something
29147 like that. Parse the parameter declaration. */
29148 parm = cp_parser_parameter_declaration (parser, false, NULL);
29149 if (parm == NULL)
29150 parameter_declaration = error_mark_node;
29151 else
29152 parameter_declaration = grokdeclarator (parm->declarator,
29153 &parm->decl_specifiers,
29154 PARM, /*initialized=*/0,
29155 /*attrlist=*/NULL);
29157 if (seen_open_paren)
29158 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
29159 else
29161 /* If there was no open parenthesis, we are recovering from
29162 an error, and we are trying to figure out what mistake
29163 the user has made. */
29165 /* If there is an immediate closing parenthesis, the user
29166 probably forgot the opening one (ie, they typed "@catch
29167 NSException *e)". Parse the closing parenthesis and keep
29168 going. */
29169 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN))
29170 cp_lexer_consume_token (parser->lexer);
29172 /* If these is no immediate closing parenthesis, the user
29173 probably doesn't know that parenthesis are required at
29174 all (ie, they typed "@catch NSException *e"). So, just
29175 forget about the closing parenthesis and keep going. */
29177 objc_begin_catch_clause (parameter_declaration);
29178 cp_parser_compound_statement (parser, NULL, BCS_NORMAL, false);
29179 objc_finish_catch_clause ();
29181 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_AT_FINALLY))
29183 cp_lexer_consume_token (parser->lexer);
29184 location = cp_lexer_peek_token (parser->lexer)->location;
29185 /* NB: The @finally block needs to be wrapped in its own STATEMENT_LIST
29186 node, lest it get absorbed into the surrounding block. */
29187 stmt = push_stmt_list ();
29188 cp_parser_compound_statement (parser, NULL, BCS_NORMAL, false);
29189 objc_build_finally_clause (location, pop_stmt_list (stmt));
29192 return objc_finish_try_stmt ();
29195 /* Parse an Objective-C synchronized statement.
29197 objc-synchronized-stmt:
29198 @synchronized ( expression ) compound-statement
29200 Returns NULL_TREE. */
29202 static tree
29203 cp_parser_objc_synchronized_statement (cp_parser *parser)
29205 location_t location;
29206 tree lock, stmt;
29208 cp_parser_require_keyword (parser, RID_AT_SYNCHRONIZED, RT_AT_SYNCHRONIZED);
29210 location = cp_lexer_peek_token (parser->lexer)->location;
29211 objc_maybe_warn_exceptions (location);
29212 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
29213 lock = cp_parser_expression (parser);
29214 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
29216 /* NB: The @synchronized block needs to be wrapped in its own STATEMENT_LIST
29217 node, lest it get absorbed into the surrounding block. */
29218 stmt = push_stmt_list ();
29219 cp_parser_compound_statement (parser, NULL, BCS_NORMAL, false);
29221 return objc_build_synchronized (location, lock, pop_stmt_list (stmt));
29224 /* Parse an Objective-C throw statement.
29226 objc-throw-stmt:
29227 @throw assignment-expression [opt] ;
29229 Returns a constructed '@throw' statement. */
29231 static tree
29232 cp_parser_objc_throw_statement (cp_parser *parser)
29234 tree expr = NULL_TREE;
29235 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
29237 cp_parser_require_keyword (parser, RID_AT_THROW, RT_AT_THROW);
29239 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
29240 expr = cp_parser_expression (parser);
29242 cp_parser_consume_semicolon_at_end_of_statement (parser);
29244 return objc_build_throw_stmt (loc, expr);
29247 /* Parse an Objective-C statement. */
29249 static tree
29250 cp_parser_objc_statement (cp_parser * parser)
29252 /* Try to figure out what kind of declaration is present. */
29253 cp_token *kwd = cp_lexer_peek_token (parser->lexer);
29255 switch (kwd->keyword)
29257 case RID_AT_TRY:
29258 return cp_parser_objc_try_catch_finally_statement (parser);
29259 case RID_AT_SYNCHRONIZED:
29260 return cp_parser_objc_synchronized_statement (parser);
29261 case RID_AT_THROW:
29262 return cp_parser_objc_throw_statement (parser);
29263 default:
29264 error_at (kwd->location, "misplaced %<@%D%> Objective-C++ construct",
29265 kwd->u.value);
29266 cp_parser_skip_to_end_of_block_or_statement (parser);
29269 return error_mark_node;
29272 /* If we are compiling ObjC++ and we see an __attribute__ we neeed to
29273 look ahead to see if an objc keyword follows the attributes. This
29274 is to detect the use of prefix attributes on ObjC @interface and
29275 @protocol. */
29277 static bool
29278 cp_parser_objc_valid_prefix_attributes (cp_parser* parser, tree *attrib)
29280 cp_lexer_save_tokens (parser->lexer);
29281 *attrib = cp_parser_attributes_opt (parser);
29282 gcc_assert (*attrib);
29283 if (OBJC_IS_AT_KEYWORD (cp_lexer_peek_token (parser->lexer)->keyword))
29285 cp_lexer_commit_tokens (parser->lexer);
29286 return true;
29288 cp_lexer_rollback_tokens (parser->lexer);
29289 return false;
29292 /* This routine is a minimal replacement for
29293 c_parser_struct_declaration () used when parsing the list of
29294 types/names or ObjC++ properties. For example, when parsing the
29295 code
29297 @property (readonly) int a, b, c;
29299 this function is responsible for parsing "int a, int b, int c" and
29300 returning the declarations as CHAIN of DECLs.
29302 TODO: Share this code with cp_parser_objc_class_ivars. It's very
29303 similar parsing. */
29304 static tree
29305 cp_parser_objc_struct_declaration (cp_parser *parser)
29307 tree decls = NULL_TREE;
29308 cp_decl_specifier_seq declspecs;
29309 int decl_class_or_enum_p;
29310 tree prefix_attributes;
29312 cp_parser_decl_specifier_seq (parser,
29313 CP_PARSER_FLAGS_NONE,
29314 &declspecs,
29315 &decl_class_or_enum_p);
29317 if (declspecs.type == error_mark_node)
29318 return error_mark_node;
29320 /* auto, register, static, extern, mutable. */
29321 if (declspecs.storage_class != sc_none)
29323 cp_parser_error (parser, "invalid type for property");
29324 declspecs.storage_class = sc_none;
29327 /* thread_local. */
29328 if (decl_spec_seq_has_spec_p (&declspecs, ds_thread))
29330 cp_parser_error (parser, "invalid type for property");
29331 declspecs.locations[ds_thread] = 0;
29334 /* typedef. */
29335 if (decl_spec_seq_has_spec_p (&declspecs, ds_typedef))
29337 cp_parser_error (parser, "invalid type for property");
29338 declspecs.locations[ds_typedef] = 0;
29341 prefix_attributes = declspecs.attributes;
29342 declspecs.attributes = NULL_TREE;
29344 /* Keep going until we hit the `;' at the end of the declaration. */
29345 while (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
29347 tree attributes, first_attribute, decl;
29348 cp_declarator *declarator;
29349 cp_token *token;
29351 /* Parse the declarator. */
29352 declarator = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
29353 NULL, NULL, false, false);
29355 /* Look for attributes that apply to the ivar. */
29356 attributes = cp_parser_attributes_opt (parser);
29357 /* Remember which attributes are prefix attributes and
29358 which are not. */
29359 first_attribute = attributes;
29360 /* Combine the attributes. */
29361 attributes = chainon (prefix_attributes, attributes);
29363 decl = grokfield (declarator, &declspecs,
29364 NULL_TREE, /*init_const_expr_p=*/false,
29365 NULL_TREE, attributes);
29367 if (decl == error_mark_node || decl == NULL_TREE)
29368 return error_mark_node;
29370 /* Reset PREFIX_ATTRIBUTES. */
29371 while (attributes && TREE_CHAIN (attributes) != first_attribute)
29372 attributes = TREE_CHAIN (attributes);
29373 if (attributes)
29374 TREE_CHAIN (attributes) = NULL_TREE;
29376 DECL_CHAIN (decl) = decls;
29377 decls = decl;
29379 token = cp_lexer_peek_token (parser->lexer);
29380 if (token->type == CPP_COMMA)
29382 cp_lexer_consume_token (parser->lexer); /* Eat ','. */
29383 continue;
29385 else
29386 break;
29388 return decls;
29391 /* Parse an Objective-C @property declaration. The syntax is:
29393 objc-property-declaration:
29394 '@property' objc-property-attributes[opt] struct-declaration ;
29396 objc-property-attributes:
29397 '(' objc-property-attribute-list ')'
29399 objc-property-attribute-list:
29400 objc-property-attribute
29401 objc-property-attribute-list, objc-property-attribute
29403 objc-property-attribute
29404 'getter' = identifier
29405 'setter' = identifier
29406 'readonly'
29407 'readwrite'
29408 'assign'
29409 'retain'
29410 'copy'
29411 'nonatomic'
29413 For example:
29414 @property NSString *name;
29415 @property (readonly) id object;
29416 @property (retain, nonatomic, getter=getTheName) id name;
29417 @property int a, b, c;
29419 PS: This function is identical to
29420 c_parser_objc_at_property_declaration for C. Keep them in sync. */
29421 static void
29422 cp_parser_objc_at_property_declaration (cp_parser *parser)
29424 /* The following variables hold the attributes of the properties as
29425 parsed. They are 'false' or 'NULL_TREE' if the attribute was not
29426 seen. When we see an attribute, we set them to 'true' (if they
29427 are boolean properties) or to the identifier (if they have an
29428 argument, ie, for getter and setter). Note that here we only
29429 parse the list of attributes, check the syntax and accumulate the
29430 attributes that we find. objc_add_property_declaration() will
29431 then process the information. */
29432 bool property_assign = false;
29433 bool property_copy = false;
29434 tree property_getter_ident = NULL_TREE;
29435 bool property_nonatomic = false;
29436 bool property_readonly = false;
29437 bool property_readwrite = false;
29438 bool property_retain = false;
29439 tree property_setter_ident = NULL_TREE;
29441 /* 'properties' is the list of properties that we read. Usually a
29442 single one, but maybe more (eg, in "@property int a, b, c;" there
29443 are three). */
29444 tree properties;
29445 location_t loc;
29447 loc = cp_lexer_peek_token (parser->lexer)->location;
29449 cp_lexer_consume_token (parser->lexer); /* Eat '@property'. */
29451 /* Parse the optional attribute list... */
29452 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
29454 /* Eat the '('. */
29455 cp_lexer_consume_token (parser->lexer);
29457 while (true)
29459 bool syntax_error = false;
29460 cp_token *token = cp_lexer_peek_token (parser->lexer);
29461 enum rid keyword;
29463 if (token->type != CPP_NAME)
29465 cp_parser_error (parser, "expected identifier");
29466 break;
29468 keyword = C_RID_CODE (token->u.value);
29469 cp_lexer_consume_token (parser->lexer);
29470 switch (keyword)
29472 case RID_ASSIGN: property_assign = true; break;
29473 case RID_COPY: property_copy = true; break;
29474 case RID_NONATOMIC: property_nonatomic = true; break;
29475 case RID_READONLY: property_readonly = true; break;
29476 case RID_READWRITE: property_readwrite = true; break;
29477 case RID_RETAIN: property_retain = true; break;
29479 case RID_GETTER:
29480 case RID_SETTER:
29481 if (cp_lexer_next_token_is_not (parser->lexer, CPP_EQ))
29483 if (keyword == RID_GETTER)
29484 cp_parser_error (parser,
29485 "missing %<=%> (after %<getter%> attribute)");
29486 else
29487 cp_parser_error (parser,
29488 "missing %<=%> (after %<setter%> attribute)");
29489 syntax_error = true;
29490 break;
29492 cp_lexer_consume_token (parser->lexer); /* eat the = */
29493 if (!cp_parser_objc_selector_p (cp_lexer_peek_token (parser->lexer)->type))
29495 cp_parser_error (parser, "expected identifier");
29496 syntax_error = true;
29497 break;
29499 if (keyword == RID_SETTER)
29501 if (property_setter_ident != NULL_TREE)
29503 cp_parser_error (parser, "the %<setter%> attribute may only be specified once");
29504 cp_lexer_consume_token (parser->lexer);
29506 else
29507 property_setter_ident = cp_parser_objc_selector (parser);
29508 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COLON))
29509 cp_parser_error (parser, "setter name must terminate with %<:%>");
29510 else
29511 cp_lexer_consume_token (parser->lexer);
29513 else
29515 if (property_getter_ident != NULL_TREE)
29517 cp_parser_error (parser, "the %<getter%> attribute may only be specified once");
29518 cp_lexer_consume_token (parser->lexer);
29520 else
29521 property_getter_ident = cp_parser_objc_selector (parser);
29523 break;
29524 default:
29525 cp_parser_error (parser, "unknown property attribute");
29526 syntax_error = true;
29527 break;
29530 if (syntax_error)
29531 break;
29533 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
29534 cp_lexer_consume_token (parser->lexer);
29535 else
29536 break;
29539 /* FIXME: "@property (setter, assign);" will generate a spurious
29540 "error: expected ‘)’ before ‘,’ token". This is because
29541 cp_parser_require, unlike the C counterpart, will produce an
29542 error even if we are in error recovery. */
29543 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
29545 cp_parser_skip_to_closing_parenthesis (parser,
29546 /*recovering=*/true,
29547 /*or_comma=*/false,
29548 /*consume_paren=*/true);
29552 /* ... and the property declaration(s). */
29553 properties = cp_parser_objc_struct_declaration (parser);
29555 if (properties == error_mark_node)
29557 cp_parser_skip_to_end_of_statement (parser);
29558 /* If the next token is now a `;', consume it. */
29559 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
29560 cp_lexer_consume_token (parser->lexer);
29561 return;
29564 if (properties == NULL_TREE)
29565 cp_parser_error (parser, "expected identifier");
29566 else
29568 /* Comma-separated properties are chained together in
29569 reverse order; add them one by one. */
29570 properties = nreverse (properties);
29572 for (; properties; properties = TREE_CHAIN (properties))
29573 objc_add_property_declaration (loc, copy_node (properties),
29574 property_readonly, property_readwrite,
29575 property_assign, property_retain,
29576 property_copy, property_nonatomic,
29577 property_getter_ident, property_setter_ident);
29580 cp_parser_consume_semicolon_at_end_of_statement (parser);
29583 /* Parse an Objective-C++ @synthesize declaration. The syntax is:
29585 objc-synthesize-declaration:
29586 @synthesize objc-synthesize-identifier-list ;
29588 objc-synthesize-identifier-list:
29589 objc-synthesize-identifier
29590 objc-synthesize-identifier-list, objc-synthesize-identifier
29592 objc-synthesize-identifier
29593 identifier
29594 identifier = identifier
29596 For example:
29597 @synthesize MyProperty;
29598 @synthesize OneProperty, AnotherProperty=MyIvar, YetAnotherProperty;
29600 PS: This function is identical to c_parser_objc_at_synthesize_declaration
29601 for C. Keep them in sync.
29603 static void
29604 cp_parser_objc_at_synthesize_declaration (cp_parser *parser)
29606 tree list = NULL_TREE;
29607 location_t loc;
29608 loc = cp_lexer_peek_token (parser->lexer)->location;
29610 cp_lexer_consume_token (parser->lexer); /* Eat '@synthesize'. */
29611 while (true)
29613 tree property, ivar;
29614 property = cp_parser_identifier (parser);
29615 if (property == error_mark_node)
29617 cp_parser_consume_semicolon_at_end_of_statement (parser);
29618 return;
29620 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
29622 cp_lexer_consume_token (parser->lexer);
29623 ivar = cp_parser_identifier (parser);
29624 if (ivar == error_mark_node)
29626 cp_parser_consume_semicolon_at_end_of_statement (parser);
29627 return;
29630 else
29631 ivar = NULL_TREE;
29632 list = chainon (list, build_tree_list (ivar, property));
29633 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
29634 cp_lexer_consume_token (parser->lexer);
29635 else
29636 break;
29638 cp_parser_consume_semicolon_at_end_of_statement (parser);
29639 objc_add_synthesize_declaration (loc, list);
29642 /* Parse an Objective-C++ @dynamic declaration. The syntax is:
29644 objc-dynamic-declaration:
29645 @dynamic identifier-list ;
29647 For example:
29648 @dynamic MyProperty;
29649 @dynamic MyProperty, AnotherProperty;
29651 PS: This function is identical to c_parser_objc_at_dynamic_declaration
29652 for C. Keep them in sync.
29654 static void
29655 cp_parser_objc_at_dynamic_declaration (cp_parser *parser)
29657 tree list = NULL_TREE;
29658 location_t loc;
29659 loc = cp_lexer_peek_token (parser->lexer)->location;
29661 cp_lexer_consume_token (parser->lexer); /* Eat '@dynamic'. */
29662 while (true)
29664 tree property;
29665 property = cp_parser_identifier (parser);
29666 if (property == error_mark_node)
29668 cp_parser_consume_semicolon_at_end_of_statement (parser);
29669 return;
29671 list = chainon (list, build_tree_list (NULL, property));
29672 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
29673 cp_lexer_consume_token (parser->lexer);
29674 else
29675 break;
29677 cp_parser_consume_semicolon_at_end_of_statement (parser);
29678 objc_add_dynamic_declaration (loc, list);
29682 /* OpenMP 2.5 / 3.0 / 3.1 / 4.0 parsing routines. */
29684 /* Returns name of the next clause.
29685 If the clause is not recognized PRAGMA_OMP_CLAUSE_NONE is returned and
29686 the token is not consumed. Otherwise appropriate pragma_omp_clause is
29687 returned and the token is consumed. */
29689 static pragma_omp_clause
29690 cp_parser_omp_clause_name (cp_parser *parser)
29692 pragma_omp_clause result = PRAGMA_OMP_CLAUSE_NONE;
29694 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_AUTO))
29695 result = PRAGMA_OACC_CLAUSE_AUTO;
29696 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_IF))
29697 result = PRAGMA_OMP_CLAUSE_IF;
29698 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_DEFAULT))
29699 result = PRAGMA_OMP_CLAUSE_DEFAULT;
29700 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_DELETE))
29701 result = PRAGMA_OACC_CLAUSE_DELETE;
29702 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_PRIVATE))
29703 result = PRAGMA_OMP_CLAUSE_PRIVATE;
29704 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_FOR))
29705 result = PRAGMA_OMP_CLAUSE_FOR;
29706 else if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
29708 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
29709 const char *p = IDENTIFIER_POINTER (id);
29711 switch (p[0])
29713 case 'a':
29714 if (!strcmp ("aligned", p))
29715 result = PRAGMA_OMP_CLAUSE_ALIGNED;
29716 else if (!strcmp ("async", p))
29717 result = PRAGMA_OACC_CLAUSE_ASYNC;
29718 break;
29719 case 'c':
29720 if (!strcmp ("collapse", p))
29721 result = PRAGMA_OMP_CLAUSE_COLLAPSE;
29722 else if (!strcmp ("copy", p))
29723 result = PRAGMA_OACC_CLAUSE_COPY;
29724 else if (!strcmp ("copyin", p))
29725 result = PRAGMA_OMP_CLAUSE_COPYIN;
29726 else if (!strcmp ("copyout", p))
29727 result = PRAGMA_OACC_CLAUSE_COPYOUT;
29728 else if (!strcmp ("copyprivate", p))
29729 result = PRAGMA_OMP_CLAUSE_COPYPRIVATE;
29730 else if (!strcmp ("create", p))
29731 result = PRAGMA_OACC_CLAUSE_CREATE;
29732 break;
29733 case 'd':
29734 if (!strcmp ("defaultmap", p))
29735 result = PRAGMA_OMP_CLAUSE_DEFAULTMAP;
29736 else if (!strcmp ("depend", p))
29737 result = PRAGMA_OMP_CLAUSE_DEPEND;
29738 else if (!strcmp ("device", p))
29739 result = PRAGMA_OMP_CLAUSE_DEVICE;
29740 else if (!strcmp ("deviceptr", p))
29741 result = PRAGMA_OACC_CLAUSE_DEVICEPTR;
29742 else if (!strcmp ("device_resident", p))
29743 result = PRAGMA_OACC_CLAUSE_DEVICE_RESIDENT;
29744 else if (!strcmp ("dist_schedule", p))
29745 result = PRAGMA_OMP_CLAUSE_DIST_SCHEDULE;
29746 break;
29747 case 'f':
29748 if (!strcmp ("final", p))
29749 result = PRAGMA_OMP_CLAUSE_FINAL;
29750 else if (!strcmp ("firstprivate", p))
29751 result = PRAGMA_OMP_CLAUSE_FIRSTPRIVATE;
29752 else if (!strcmp ("from", p))
29753 result = PRAGMA_OMP_CLAUSE_FROM;
29754 break;
29755 case 'g':
29756 if (!strcmp ("gang", p))
29757 result = PRAGMA_OACC_CLAUSE_GANG;
29758 else if (!strcmp ("grainsize", p))
29759 result = PRAGMA_OMP_CLAUSE_GRAINSIZE;
29760 break;
29761 case 'h':
29762 if (!strcmp ("hint", p))
29763 result = PRAGMA_OMP_CLAUSE_HINT;
29764 else if (!strcmp ("host", p))
29765 result = PRAGMA_OACC_CLAUSE_HOST;
29766 break;
29767 case 'i':
29768 if (!strcmp ("inbranch", p))
29769 result = PRAGMA_OMP_CLAUSE_INBRANCH;
29770 else if (!strcmp ("independent", p))
29771 result = PRAGMA_OACC_CLAUSE_INDEPENDENT;
29772 else if (!strcmp ("is_device_ptr", p))
29773 result = PRAGMA_OMP_CLAUSE_IS_DEVICE_PTR;
29774 break;
29775 case 'l':
29776 if (!strcmp ("lastprivate", p))
29777 result = PRAGMA_OMP_CLAUSE_LASTPRIVATE;
29778 else if (!strcmp ("linear", p))
29779 result = PRAGMA_OMP_CLAUSE_LINEAR;
29780 else if (!strcmp ("link", p))
29781 result = PRAGMA_OMP_CLAUSE_LINK;
29782 break;
29783 case 'm':
29784 if (!strcmp ("map", p))
29785 result = PRAGMA_OMP_CLAUSE_MAP;
29786 else if (!strcmp ("mergeable", p))
29787 result = PRAGMA_OMP_CLAUSE_MERGEABLE;
29788 else if (flag_cilkplus && !strcmp ("mask", p))
29789 result = PRAGMA_CILK_CLAUSE_MASK;
29790 break;
29791 case 'n':
29792 if (!strcmp ("nogroup", p))
29793 result = PRAGMA_OMP_CLAUSE_NOGROUP;
29794 else if (!strcmp ("notinbranch", p))
29795 result = PRAGMA_OMP_CLAUSE_NOTINBRANCH;
29796 else if (!strcmp ("nowait", p))
29797 result = PRAGMA_OMP_CLAUSE_NOWAIT;
29798 else if (flag_cilkplus && !strcmp ("nomask", p))
29799 result = PRAGMA_CILK_CLAUSE_NOMASK;
29800 else if (!strcmp ("num_gangs", p))
29801 result = PRAGMA_OACC_CLAUSE_NUM_GANGS;
29802 else if (!strcmp ("num_tasks", p))
29803 result = PRAGMA_OMP_CLAUSE_NUM_TASKS;
29804 else if (!strcmp ("num_teams", p))
29805 result = PRAGMA_OMP_CLAUSE_NUM_TEAMS;
29806 else if (!strcmp ("num_threads", p))
29807 result = PRAGMA_OMP_CLAUSE_NUM_THREADS;
29808 else if (!strcmp ("num_workers", p))
29809 result = PRAGMA_OACC_CLAUSE_NUM_WORKERS;
29810 break;
29811 case 'o':
29812 if (!strcmp ("ordered", p))
29813 result = PRAGMA_OMP_CLAUSE_ORDERED;
29814 break;
29815 case 'p':
29816 if (!strcmp ("parallel", p))
29817 result = PRAGMA_OMP_CLAUSE_PARALLEL;
29818 else if (!strcmp ("present", p))
29819 result = PRAGMA_OACC_CLAUSE_PRESENT;
29820 else if (!strcmp ("present_or_copy", p)
29821 || !strcmp ("pcopy", p))
29822 result = PRAGMA_OACC_CLAUSE_PRESENT_OR_COPY;
29823 else if (!strcmp ("present_or_copyin", p)
29824 || !strcmp ("pcopyin", p))
29825 result = PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN;
29826 else if (!strcmp ("present_or_copyout", p)
29827 || !strcmp ("pcopyout", p))
29828 result = PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYOUT;
29829 else if (!strcmp ("present_or_create", p)
29830 || !strcmp ("pcreate", p))
29831 result = PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE;
29832 else if (!strcmp ("priority", p))
29833 result = PRAGMA_OMP_CLAUSE_PRIORITY;
29834 else if (!strcmp ("proc_bind", p))
29835 result = PRAGMA_OMP_CLAUSE_PROC_BIND;
29836 break;
29837 case 'r':
29838 if (!strcmp ("reduction", p))
29839 result = PRAGMA_OMP_CLAUSE_REDUCTION;
29840 break;
29841 case 's':
29842 if (!strcmp ("safelen", p))
29843 result = PRAGMA_OMP_CLAUSE_SAFELEN;
29844 else if (!strcmp ("schedule", p))
29845 result = PRAGMA_OMP_CLAUSE_SCHEDULE;
29846 else if (!strcmp ("sections", p))
29847 result = PRAGMA_OMP_CLAUSE_SECTIONS;
29848 else if (!strcmp ("self", p))
29849 result = PRAGMA_OACC_CLAUSE_SELF;
29850 else if (!strcmp ("seq", p))
29851 result = PRAGMA_OACC_CLAUSE_SEQ;
29852 else if (!strcmp ("shared", p))
29853 result = PRAGMA_OMP_CLAUSE_SHARED;
29854 else if (!strcmp ("simd", p))
29855 result = PRAGMA_OMP_CLAUSE_SIMD;
29856 else if (!strcmp ("simdlen", p))
29857 result = PRAGMA_OMP_CLAUSE_SIMDLEN;
29858 break;
29859 case 't':
29860 if (!strcmp ("taskgroup", p))
29861 result = PRAGMA_OMP_CLAUSE_TASKGROUP;
29862 else if (!strcmp ("thread_limit", p))
29863 result = PRAGMA_OMP_CLAUSE_THREAD_LIMIT;
29864 else if (!strcmp ("threads", p))
29865 result = PRAGMA_OMP_CLAUSE_THREADS;
29866 else if (!strcmp ("tile", p))
29867 result = PRAGMA_OACC_CLAUSE_TILE;
29868 else if (!strcmp ("to", p))
29869 result = PRAGMA_OMP_CLAUSE_TO;
29870 break;
29871 case 'u':
29872 if (!strcmp ("uniform", p))
29873 result = PRAGMA_OMP_CLAUSE_UNIFORM;
29874 else if (!strcmp ("untied", p))
29875 result = PRAGMA_OMP_CLAUSE_UNTIED;
29876 else if (!strcmp ("use_device", p))
29877 result = PRAGMA_OACC_CLAUSE_USE_DEVICE;
29878 else if (!strcmp ("use_device_ptr", p))
29879 result = PRAGMA_OMP_CLAUSE_USE_DEVICE_PTR;
29880 break;
29881 case 'v':
29882 if (!strcmp ("vector", p))
29883 result = PRAGMA_OACC_CLAUSE_VECTOR;
29884 else if (!strcmp ("vector_length", p))
29885 result = PRAGMA_OACC_CLAUSE_VECTOR_LENGTH;
29886 else if (flag_cilkplus && !strcmp ("vectorlength", p))
29887 result = PRAGMA_CILK_CLAUSE_VECTORLENGTH;
29888 break;
29889 case 'w':
29890 if (!strcmp ("wait", p))
29891 result = PRAGMA_OACC_CLAUSE_WAIT;
29892 else if (!strcmp ("worker", p))
29893 result = PRAGMA_OACC_CLAUSE_WORKER;
29894 break;
29898 if (result != PRAGMA_OMP_CLAUSE_NONE)
29899 cp_lexer_consume_token (parser->lexer);
29901 return result;
29904 /* Validate that a clause of the given type does not already exist. */
29906 static void
29907 check_no_duplicate_clause (tree clauses, enum omp_clause_code code,
29908 const char *name, location_t location)
29910 tree c;
29912 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
29913 if (OMP_CLAUSE_CODE (c) == code)
29915 error_at (location, "too many %qs clauses", name);
29916 break;
29920 /* OpenMP 2.5:
29921 variable-list:
29922 identifier
29923 variable-list , identifier
29925 In addition, we match a closing parenthesis (or, if COLON is non-NULL,
29926 colon). An opening parenthesis will have been consumed by the caller.
29928 If KIND is nonzero, create the appropriate node and install the decl
29929 in OMP_CLAUSE_DECL and add the node to the head of the list.
29931 If KIND is zero, create a TREE_LIST with the decl in TREE_PURPOSE;
29932 return the list created.
29934 COLON can be NULL if only closing parenthesis should end the list,
29935 or pointer to bool which will receive false if the list is terminated
29936 by closing parenthesis or true if the list is terminated by colon. */
29938 static tree
29939 cp_parser_omp_var_list_no_open (cp_parser *parser, enum omp_clause_code kind,
29940 tree list, bool *colon)
29942 cp_token *token;
29943 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
29944 if (colon)
29946 parser->colon_corrects_to_scope_p = false;
29947 *colon = false;
29949 while (1)
29951 tree name, decl;
29953 token = cp_lexer_peek_token (parser->lexer);
29954 if (kind != 0
29955 && current_class_ptr
29956 && cp_parser_is_keyword (token, RID_THIS))
29958 decl = finish_this_expr ();
29959 if (TREE_CODE (decl) == NON_LVALUE_EXPR
29960 || CONVERT_EXPR_P (decl))
29961 decl = TREE_OPERAND (decl, 0);
29962 cp_lexer_consume_token (parser->lexer);
29964 else
29966 name = cp_parser_id_expression (parser, /*template_p=*/false,
29967 /*check_dependency_p=*/true,
29968 /*template_p=*/NULL,
29969 /*declarator_p=*/false,
29970 /*optional_p=*/false);
29971 if (name == error_mark_node)
29972 goto skip_comma;
29974 decl = cp_parser_lookup_name_simple (parser, name, token->location);
29975 if (decl == error_mark_node)
29976 cp_parser_name_lookup_error (parser, name, decl, NLE_NULL,
29977 token->location);
29979 if (decl == error_mark_node)
29981 else if (kind != 0)
29983 switch (kind)
29985 case OMP_CLAUSE__CACHE_:
29986 if (cp_lexer_peek_token (parser->lexer)->type != CPP_OPEN_SQUARE)
29988 error_at (token->location, "expected %<[%>");
29989 decl = error_mark_node;
29990 break;
29992 /* FALLTHROUGH. */
29993 case OMP_CLAUSE_MAP:
29994 case OMP_CLAUSE_FROM:
29995 case OMP_CLAUSE_TO:
29996 while (cp_lexer_next_token_is (parser->lexer, CPP_DOT))
29998 location_t loc
29999 = cp_lexer_peek_token (parser->lexer)->location;
30000 cp_id_kind idk = CP_ID_KIND_NONE;
30001 cp_lexer_consume_token (parser->lexer);
30002 decl
30003 = cp_parser_postfix_dot_deref_expression (parser, CPP_DOT,
30004 decl, false,
30005 &idk, loc);
30007 /* FALLTHROUGH. */
30008 case OMP_CLAUSE_DEPEND:
30009 case OMP_CLAUSE_REDUCTION:
30010 while (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
30012 tree low_bound = NULL_TREE, length = NULL_TREE;
30014 parser->colon_corrects_to_scope_p = false;
30015 cp_lexer_consume_token (parser->lexer);
30016 if (!cp_lexer_next_token_is (parser->lexer, CPP_COLON))
30017 low_bound = cp_parser_expression (parser);
30018 if (!colon)
30019 parser->colon_corrects_to_scope_p
30020 = saved_colon_corrects_to_scope_p;
30021 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_SQUARE))
30022 length = integer_one_node;
30023 else
30025 /* Look for `:'. */
30026 if (!cp_parser_require (parser, CPP_COLON, RT_COLON))
30027 goto skip_comma;
30028 if (!cp_lexer_next_token_is (parser->lexer,
30029 CPP_CLOSE_SQUARE))
30030 length = cp_parser_expression (parser);
30032 /* Look for the closing `]'. */
30033 if (!cp_parser_require (parser, CPP_CLOSE_SQUARE,
30034 RT_CLOSE_SQUARE))
30035 goto skip_comma;
30037 if (kind == OMP_CLAUSE__CACHE_)
30039 if (TREE_CODE (low_bound) != INTEGER_CST
30040 && !TREE_READONLY (low_bound))
30042 error_at (token->location,
30043 "%qD is not a constant", low_bound);
30044 decl = error_mark_node;
30047 if (TREE_CODE (length) != INTEGER_CST
30048 && !TREE_READONLY (length))
30050 error_at (token->location,
30051 "%qD is not a constant", length);
30052 decl = error_mark_node;
30056 decl = tree_cons (low_bound, length, decl);
30058 break;
30059 default:
30060 break;
30063 tree u = build_omp_clause (token->location, kind);
30064 OMP_CLAUSE_DECL (u) = decl;
30065 OMP_CLAUSE_CHAIN (u) = list;
30066 list = u;
30068 else
30069 list = tree_cons (decl, NULL_TREE, list);
30071 get_comma:
30072 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
30073 break;
30074 cp_lexer_consume_token (parser->lexer);
30077 if (colon)
30078 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
30080 if (colon != NULL && cp_lexer_next_token_is (parser->lexer, CPP_COLON))
30082 *colon = true;
30083 cp_parser_require (parser, CPP_COLON, RT_COLON);
30084 return list;
30087 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30089 int ending;
30091 /* Try to resync to an unnested comma. Copied from
30092 cp_parser_parenthesized_expression_list. */
30093 skip_comma:
30094 if (colon)
30095 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
30096 ending = cp_parser_skip_to_closing_parenthesis (parser,
30097 /*recovering=*/true,
30098 /*or_comma=*/true,
30099 /*consume_paren=*/true);
30100 if (ending < 0)
30101 goto get_comma;
30104 return list;
30107 /* Similarly, but expect leading and trailing parenthesis. This is a very
30108 common case for omp clauses. */
30110 static tree
30111 cp_parser_omp_var_list (cp_parser *parser, enum omp_clause_code kind, tree list)
30113 if (cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30114 return cp_parser_omp_var_list_no_open (parser, kind, list, NULL);
30115 return list;
30118 /* OpenACC 2.0:
30119 copy ( variable-list )
30120 copyin ( variable-list )
30121 copyout ( variable-list )
30122 create ( variable-list )
30123 delete ( variable-list )
30124 present ( variable-list )
30125 present_or_copy ( variable-list )
30126 pcopy ( variable-list )
30127 present_or_copyin ( variable-list )
30128 pcopyin ( variable-list )
30129 present_or_copyout ( variable-list )
30130 pcopyout ( variable-list )
30131 present_or_create ( variable-list )
30132 pcreate ( variable-list ) */
30134 static tree
30135 cp_parser_oacc_data_clause (cp_parser *parser, pragma_omp_clause c_kind,
30136 tree list)
30138 enum gomp_map_kind kind;
30139 switch (c_kind)
30141 case PRAGMA_OACC_CLAUSE_COPY:
30142 kind = GOMP_MAP_FORCE_TOFROM;
30143 break;
30144 case PRAGMA_OACC_CLAUSE_COPYIN:
30145 kind = GOMP_MAP_FORCE_TO;
30146 break;
30147 case PRAGMA_OACC_CLAUSE_COPYOUT:
30148 kind = GOMP_MAP_FORCE_FROM;
30149 break;
30150 case PRAGMA_OACC_CLAUSE_CREATE:
30151 kind = GOMP_MAP_FORCE_ALLOC;
30152 break;
30153 case PRAGMA_OACC_CLAUSE_DELETE:
30154 kind = GOMP_MAP_DELETE;
30155 break;
30156 case PRAGMA_OACC_CLAUSE_DEVICE:
30157 kind = GOMP_MAP_FORCE_TO;
30158 break;
30159 case PRAGMA_OACC_CLAUSE_DEVICE_RESIDENT:
30160 kind = GOMP_MAP_DEVICE_RESIDENT;
30161 break;
30162 case PRAGMA_OACC_CLAUSE_HOST:
30163 case PRAGMA_OACC_CLAUSE_SELF:
30164 kind = GOMP_MAP_FORCE_FROM;
30165 break;
30166 case PRAGMA_OACC_CLAUSE_LINK:
30167 kind = GOMP_MAP_LINK;
30168 break;
30169 case PRAGMA_OACC_CLAUSE_PRESENT:
30170 kind = GOMP_MAP_FORCE_PRESENT;
30171 break;
30172 case PRAGMA_OACC_CLAUSE_PRESENT_OR_COPY:
30173 kind = GOMP_MAP_TOFROM;
30174 break;
30175 case PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN:
30176 kind = GOMP_MAP_TO;
30177 break;
30178 case PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYOUT:
30179 kind = GOMP_MAP_FROM;
30180 break;
30181 case PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE:
30182 kind = GOMP_MAP_ALLOC;
30183 break;
30184 default:
30185 gcc_unreachable ();
30187 tree nl, c;
30188 nl = cp_parser_omp_var_list (parser, OMP_CLAUSE_MAP, list);
30190 for (c = nl; c != list; c = OMP_CLAUSE_CHAIN (c))
30191 OMP_CLAUSE_SET_MAP_KIND (c, kind);
30193 return nl;
30196 /* OpenACC 2.0:
30197 deviceptr ( variable-list ) */
30199 static tree
30200 cp_parser_oacc_data_clause_deviceptr (cp_parser *parser, tree list)
30202 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
30203 tree vars, t;
30205 /* Can't use OMP_CLAUSE_MAP here (that is, can't use the generic
30206 cp_parser_oacc_data_clause), as for PRAGMA_OACC_CLAUSE_DEVICEPTR,
30207 variable-list must only allow for pointer variables. */
30208 vars = cp_parser_omp_var_list (parser, OMP_CLAUSE_ERROR, NULL);
30209 for (t = vars; t; t = TREE_CHAIN (t))
30211 tree v = TREE_PURPOSE (t);
30212 tree u = build_omp_clause (loc, OMP_CLAUSE_MAP);
30213 OMP_CLAUSE_SET_MAP_KIND (u, GOMP_MAP_FORCE_DEVICEPTR);
30214 OMP_CLAUSE_DECL (u) = v;
30215 OMP_CLAUSE_CHAIN (u) = list;
30216 list = u;
30219 return list;
30222 /* OpenACC 2.0:
30223 auto
30224 independent
30225 nohost
30226 seq */
30228 static tree
30229 cp_parser_oacc_simple_clause (cp_parser * /* parser */,
30230 enum omp_clause_code code,
30231 tree list, location_t location)
30233 check_no_duplicate_clause (list, code, omp_clause_code_name[code], location);
30234 tree c = build_omp_clause (location, code);
30235 OMP_CLAUSE_CHAIN (c) = list;
30236 return c;
30239 /* OpenACC:
30240 num_gangs ( expression )
30241 num_workers ( expression )
30242 vector_length ( expression ) */
30244 static tree
30245 cp_parser_oacc_single_int_clause (cp_parser *parser, omp_clause_code code,
30246 const char *str, tree list)
30248 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
30250 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30251 return list;
30253 tree t = cp_parser_assignment_expression (parser, NULL, false, false);
30255 if (t == error_mark_node
30256 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30258 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
30259 /*or_comma=*/false,
30260 /*consume_paren=*/true);
30261 return list;
30264 check_no_duplicate_clause (list, code, str, loc);
30266 tree c = build_omp_clause (loc, code);
30267 OMP_CLAUSE_OPERAND (c, 0) = t;
30268 OMP_CLAUSE_CHAIN (c) = list;
30269 return c;
30272 /* OpenACC:
30274 gang [( gang-arg-list )]
30275 worker [( [num:] int-expr )]
30276 vector [( [length:] int-expr )]
30278 where gang-arg is one of:
30280 [num:] int-expr
30281 static: size-expr
30283 and size-expr may be:
30286 int-expr
30289 static tree
30290 cp_parser_oacc_shape_clause (cp_parser *parser, omp_clause_code kind,
30291 const char *str, tree list)
30293 const char *id = "num";
30294 cp_lexer *lexer = parser->lexer;
30295 tree ops[2] = { NULL_TREE, NULL_TREE }, c;
30296 location_t loc = cp_lexer_peek_token (lexer)->location;
30298 if (kind == OMP_CLAUSE_VECTOR)
30299 id = "length";
30301 if (cp_lexer_next_token_is (lexer, CPP_OPEN_PAREN))
30303 cp_lexer_consume_token (lexer);
30307 cp_token *next = cp_lexer_peek_token (lexer);
30308 int idx = 0;
30310 /* Gang static argument. */
30311 if (kind == OMP_CLAUSE_GANG
30312 && cp_lexer_next_token_is_keyword (lexer, RID_STATIC))
30314 cp_lexer_consume_token (lexer);
30316 if (!cp_parser_require (parser, CPP_COLON, RT_COLON))
30317 goto cleanup_error;
30319 idx = 1;
30320 if (ops[idx] != NULL)
30322 cp_parser_error (parser, "too many %<static%> arguments");
30323 goto cleanup_error;
30326 /* Check for the '*' argument. */
30327 if (cp_lexer_next_token_is (lexer, CPP_MULT)
30328 && (cp_lexer_nth_token_is (parser->lexer, 2, CPP_COMMA)
30329 || cp_lexer_nth_token_is (parser->lexer, 2,
30330 CPP_CLOSE_PAREN)))
30332 cp_lexer_consume_token (lexer);
30333 ops[idx] = integer_minus_one_node;
30335 if (cp_lexer_next_token_is (lexer, CPP_COMMA))
30337 cp_lexer_consume_token (lexer);
30338 continue;
30340 else break;
30343 /* Worker num: argument and vector length: arguments. */
30344 else if (cp_lexer_next_token_is (lexer, CPP_NAME)
30345 && strcmp (id, IDENTIFIER_POINTER (next->u.value)) == 0
30346 && cp_lexer_nth_token_is (lexer, 2, CPP_COLON))
30348 cp_lexer_consume_token (lexer); /* id */
30349 cp_lexer_consume_token (lexer); /* ':' */
30352 /* Now collect the actual argument. */
30353 if (ops[idx] != NULL_TREE)
30355 cp_parser_error (parser, "unexpected argument");
30356 goto cleanup_error;
30359 tree expr = cp_parser_assignment_expression (parser, NULL, false,
30360 false);
30361 if (expr == error_mark_node)
30362 goto cleanup_error;
30364 mark_exp_read (expr);
30365 ops[idx] = expr;
30367 if (kind == OMP_CLAUSE_GANG
30368 && cp_lexer_next_token_is (lexer, CPP_COMMA))
30370 cp_lexer_consume_token (lexer);
30371 continue;
30373 break;
30375 while (1);
30377 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30378 goto cleanup_error;
30381 check_no_duplicate_clause (list, kind, str, loc);
30383 c = build_omp_clause (loc, kind);
30385 if (ops[1])
30386 OMP_CLAUSE_OPERAND (c, 1) = ops[1];
30388 OMP_CLAUSE_OPERAND (c, 0) = ops[0];
30389 OMP_CLAUSE_CHAIN (c) = list;
30391 return c;
30393 cleanup_error:
30394 cp_parser_skip_to_closing_parenthesis (parser, false, false, true);
30395 return list;
30398 /* OpenACC 2.0:
30399 tile ( size-expr-list ) */
30401 static tree
30402 cp_parser_oacc_clause_tile (cp_parser *parser, location_t clause_loc, tree list)
30404 tree c, expr = error_mark_node;
30405 tree tile = NULL_TREE;
30407 check_no_duplicate_clause (list, OMP_CLAUSE_TILE, "tile", clause_loc);
30409 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30410 return list;
30414 if (cp_lexer_next_token_is (parser->lexer, CPP_MULT)
30415 && (cp_lexer_nth_token_is (parser->lexer, 2, CPP_COMMA)
30416 || cp_lexer_nth_token_is (parser->lexer, 2, CPP_CLOSE_PAREN)))
30418 cp_lexer_consume_token (parser->lexer);
30419 expr = integer_minus_one_node;
30421 else
30422 expr = cp_parser_assignment_expression (parser, NULL, false, false);
30424 if (expr == error_mark_node)
30425 return list;
30427 tile = tree_cons (NULL_TREE, expr, tile);
30429 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
30430 cp_lexer_consume_token (parser->lexer);
30432 while (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN));
30434 /* Consume the trailing ')'. */
30435 cp_lexer_consume_token (parser->lexer);
30437 c = build_omp_clause (clause_loc, OMP_CLAUSE_TILE);
30438 tile = nreverse (tile);
30439 OMP_CLAUSE_TILE_LIST (c) = tile;
30440 OMP_CLAUSE_CHAIN (c) = list;
30441 return c;
30444 /* OpenACC 2.0
30445 Parse wait clause or directive parameters. */
30447 static tree
30448 cp_parser_oacc_wait_list (cp_parser *parser, location_t clause_loc, tree list)
30450 vec<tree, va_gc> *args;
30451 tree t, args_tree;
30453 args = cp_parser_parenthesized_expression_list (parser, non_attr,
30454 /*cast_p=*/false,
30455 /*allow_expansion_p=*/true,
30456 /*non_constant_p=*/NULL);
30458 if (args == NULL || args->length () == 0)
30460 cp_parser_error (parser, "expected integer expression before ')'");
30461 if (args != NULL)
30462 release_tree_vector (args);
30463 return list;
30466 args_tree = build_tree_list_vec (args);
30468 release_tree_vector (args);
30470 for (t = args_tree; t; t = TREE_CHAIN (t))
30472 tree targ = TREE_VALUE (t);
30474 if (targ != error_mark_node)
30476 if (!INTEGRAL_TYPE_P (TREE_TYPE (targ)))
30477 error ("%<wait%> expression must be integral");
30478 else
30480 tree c = build_omp_clause (clause_loc, OMP_CLAUSE_WAIT);
30482 mark_rvalue_use (targ);
30483 OMP_CLAUSE_DECL (c) = targ;
30484 OMP_CLAUSE_CHAIN (c) = list;
30485 list = c;
30490 return list;
30493 /* OpenACC:
30494 wait ( int-expr-list ) */
30496 static tree
30497 cp_parser_oacc_clause_wait (cp_parser *parser, tree list)
30499 location_t location = cp_lexer_peek_token (parser->lexer)->location;
30501 if (cp_lexer_peek_token (parser->lexer)->type != CPP_OPEN_PAREN)
30502 return list;
30504 list = cp_parser_oacc_wait_list (parser, location, list);
30506 return list;
30509 /* OpenMP 3.0:
30510 collapse ( constant-expression ) */
30512 static tree
30513 cp_parser_omp_clause_collapse (cp_parser *parser, tree list, location_t location)
30515 tree c, num;
30516 location_t loc;
30517 HOST_WIDE_INT n;
30519 loc = cp_lexer_peek_token (parser->lexer)->location;
30520 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30521 return list;
30523 num = cp_parser_constant_expression (parser);
30525 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30526 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
30527 /*or_comma=*/false,
30528 /*consume_paren=*/true);
30530 if (num == error_mark_node)
30531 return list;
30532 num = fold_non_dependent_expr (num);
30533 if (!tree_fits_shwi_p (num)
30534 || !INTEGRAL_TYPE_P (TREE_TYPE (num))
30535 || (n = tree_to_shwi (num)) <= 0
30536 || (int) n != n)
30538 error_at (loc, "collapse argument needs positive constant integer expression");
30539 return list;
30542 check_no_duplicate_clause (list, OMP_CLAUSE_COLLAPSE, "collapse", location);
30543 c = build_omp_clause (loc, OMP_CLAUSE_COLLAPSE);
30544 OMP_CLAUSE_CHAIN (c) = list;
30545 OMP_CLAUSE_COLLAPSE_EXPR (c) = num;
30547 return c;
30550 /* OpenMP 2.5:
30551 default ( shared | none )
30553 OpenACC 2.0
30554 default (none) */
30556 static tree
30557 cp_parser_omp_clause_default (cp_parser *parser, tree list,
30558 location_t location, bool is_oacc)
30560 enum omp_clause_default_kind kind = OMP_CLAUSE_DEFAULT_UNSPECIFIED;
30561 tree c;
30563 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30564 return list;
30565 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
30567 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
30568 const char *p = IDENTIFIER_POINTER (id);
30570 switch (p[0])
30572 case 'n':
30573 if (strcmp ("none", p) != 0)
30574 goto invalid_kind;
30575 kind = OMP_CLAUSE_DEFAULT_NONE;
30576 break;
30578 case 's':
30579 if (strcmp ("shared", p) != 0 || is_oacc)
30580 goto invalid_kind;
30581 kind = OMP_CLAUSE_DEFAULT_SHARED;
30582 break;
30584 default:
30585 goto invalid_kind;
30588 cp_lexer_consume_token (parser->lexer);
30590 else
30592 invalid_kind:
30593 if (is_oacc)
30594 cp_parser_error (parser, "expected %<none%>");
30595 else
30596 cp_parser_error (parser, "expected %<none%> or %<shared%>");
30599 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30600 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
30601 /*or_comma=*/false,
30602 /*consume_paren=*/true);
30604 if (kind == OMP_CLAUSE_DEFAULT_UNSPECIFIED)
30605 return list;
30607 check_no_duplicate_clause (list, OMP_CLAUSE_DEFAULT, "default", location);
30608 c = build_omp_clause (location, OMP_CLAUSE_DEFAULT);
30609 OMP_CLAUSE_CHAIN (c) = list;
30610 OMP_CLAUSE_DEFAULT_KIND (c) = kind;
30612 return c;
30615 /* OpenMP 3.1:
30616 final ( expression ) */
30618 static tree
30619 cp_parser_omp_clause_final (cp_parser *parser, tree list, location_t location)
30621 tree t, c;
30623 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30624 return list;
30626 t = cp_parser_condition (parser);
30628 if (t == error_mark_node
30629 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30630 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
30631 /*or_comma=*/false,
30632 /*consume_paren=*/true);
30634 check_no_duplicate_clause (list, OMP_CLAUSE_FINAL, "final", location);
30636 c = build_omp_clause (location, OMP_CLAUSE_FINAL);
30637 OMP_CLAUSE_FINAL_EXPR (c) = t;
30638 OMP_CLAUSE_CHAIN (c) = list;
30640 return c;
30643 /* OpenMP 2.5:
30644 if ( expression )
30646 OpenMP 4.5:
30647 if ( directive-name-modifier : expression )
30649 directive-name-modifier:
30650 parallel | task | taskloop | target data | target | target update
30651 | target enter data | target exit data */
30653 static tree
30654 cp_parser_omp_clause_if (cp_parser *parser, tree list, location_t location,
30655 bool is_omp)
30657 tree t, c;
30658 enum tree_code if_modifier = ERROR_MARK;
30660 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30661 return list;
30663 if (is_omp && cp_lexer_next_token_is (parser->lexer, CPP_NAME))
30665 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
30666 const char *p = IDENTIFIER_POINTER (id);
30667 int n = 2;
30669 if (strcmp ("parallel", p) == 0)
30670 if_modifier = OMP_PARALLEL;
30671 else if (strcmp ("task", p) == 0)
30672 if_modifier = OMP_TASK;
30673 else if (strcmp ("taskloop", p) == 0)
30674 if_modifier = OMP_TASKLOOP;
30675 else if (strcmp ("target", p) == 0)
30677 if_modifier = OMP_TARGET;
30678 if (cp_lexer_nth_token_is (parser->lexer, 2, CPP_NAME))
30680 id = cp_lexer_peek_nth_token (parser->lexer, 2)->u.value;
30681 p = IDENTIFIER_POINTER (id);
30682 if (strcmp ("data", p) == 0)
30683 if_modifier = OMP_TARGET_DATA;
30684 else if (strcmp ("update", p) == 0)
30685 if_modifier = OMP_TARGET_UPDATE;
30686 else if (strcmp ("enter", p) == 0)
30687 if_modifier = OMP_TARGET_ENTER_DATA;
30688 else if (strcmp ("exit", p) == 0)
30689 if_modifier = OMP_TARGET_EXIT_DATA;
30690 if (if_modifier != OMP_TARGET)
30691 n = 3;
30692 else
30694 location_t loc
30695 = cp_lexer_peek_nth_token (parser->lexer, 2)->location;
30696 error_at (loc, "expected %<data%>, %<update%>, %<enter%> "
30697 "or %<exit%>");
30698 if_modifier = ERROR_MARK;
30700 if (if_modifier == OMP_TARGET_ENTER_DATA
30701 || if_modifier == OMP_TARGET_EXIT_DATA)
30703 if (cp_lexer_nth_token_is (parser->lexer, 3, CPP_NAME))
30705 id = cp_lexer_peek_nth_token (parser->lexer, 3)->u.value;
30706 p = IDENTIFIER_POINTER (id);
30707 if (strcmp ("data", p) == 0)
30708 n = 4;
30710 if (n != 4)
30712 location_t loc
30713 = cp_lexer_peek_nth_token (parser->lexer, 3)->location;
30714 error_at (loc, "expected %<data%>");
30715 if_modifier = ERROR_MARK;
30720 if (if_modifier != ERROR_MARK)
30722 if (cp_lexer_nth_token_is (parser->lexer, n, CPP_COLON))
30724 while (n-- > 0)
30725 cp_lexer_consume_token (parser->lexer);
30727 else
30729 if (n > 2)
30731 location_t loc
30732 = cp_lexer_peek_nth_token (parser->lexer, n)->location;
30733 error_at (loc, "expected %<:%>");
30735 if_modifier = ERROR_MARK;
30740 t = cp_parser_condition (parser);
30742 if (t == error_mark_node
30743 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30744 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
30745 /*or_comma=*/false,
30746 /*consume_paren=*/true);
30748 for (c = list; c ; c = OMP_CLAUSE_CHAIN (c))
30749 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_IF)
30751 if (if_modifier != ERROR_MARK
30752 && OMP_CLAUSE_IF_MODIFIER (c) == if_modifier)
30754 const char *p = NULL;
30755 switch (if_modifier)
30757 case OMP_PARALLEL: p = "parallel"; break;
30758 case OMP_TASK: p = "task"; break;
30759 case OMP_TASKLOOP: p = "taskloop"; break;
30760 case OMP_TARGET_DATA: p = "target data"; break;
30761 case OMP_TARGET: p = "target"; break;
30762 case OMP_TARGET_UPDATE: p = "target update"; break;
30763 case OMP_TARGET_ENTER_DATA: p = "enter data"; break;
30764 case OMP_TARGET_EXIT_DATA: p = "exit data"; break;
30765 default: gcc_unreachable ();
30767 error_at (location, "too many %<if%> clauses with %qs modifier",
30769 return list;
30771 else if (OMP_CLAUSE_IF_MODIFIER (c) == if_modifier)
30773 if (!is_omp)
30774 error_at (location, "too many %<if%> clauses");
30775 else
30776 error_at (location, "too many %<if%> clauses without modifier");
30777 return list;
30779 else if (if_modifier == ERROR_MARK
30780 || OMP_CLAUSE_IF_MODIFIER (c) == ERROR_MARK)
30782 error_at (location, "if any %<if%> clause has modifier, then all "
30783 "%<if%> clauses have to use modifier");
30784 return list;
30788 c = build_omp_clause (location, OMP_CLAUSE_IF);
30789 OMP_CLAUSE_IF_MODIFIER (c) = if_modifier;
30790 OMP_CLAUSE_IF_EXPR (c) = t;
30791 OMP_CLAUSE_CHAIN (c) = list;
30793 return c;
30796 /* OpenMP 3.1:
30797 mergeable */
30799 static tree
30800 cp_parser_omp_clause_mergeable (cp_parser * /*parser*/,
30801 tree list, location_t location)
30803 tree c;
30805 check_no_duplicate_clause (list, OMP_CLAUSE_MERGEABLE, "mergeable",
30806 location);
30808 c = build_omp_clause (location, OMP_CLAUSE_MERGEABLE);
30809 OMP_CLAUSE_CHAIN (c) = list;
30810 return c;
30813 /* OpenMP 2.5:
30814 nowait */
30816 static tree
30817 cp_parser_omp_clause_nowait (cp_parser * /*parser*/,
30818 tree list, location_t location)
30820 tree c;
30822 check_no_duplicate_clause (list, OMP_CLAUSE_NOWAIT, "nowait", location);
30824 c = build_omp_clause (location, OMP_CLAUSE_NOWAIT);
30825 OMP_CLAUSE_CHAIN (c) = list;
30826 return c;
30829 /* OpenMP 2.5:
30830 num_threads ( expression ) */
30832 static tree
30833 cp_parser_omp_clause_num_threads (cp_parser *parser, tree list,
30834 location_t location)
30836 tree t, c;
30838 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30839 return list;
30841 t = cp_parser_expression (parser);
30843 if (t == error_mark_node
30844 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30845 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
30846 /*or_comma=*/false,
30847 /*consume_paren=*/true);
30849 check_no_duplicate_clause (list, OMP_CLAUSE_NUM_THREADS,
30850 "num_threads", location);
30852 c = build_omp_clause (location, OMP_CLAUSE_NUM_THREADS);
30853 OMP_CLAUSE_NUM_THREADS_EXPR (c) = t;
30854 OMP_CLAUSE_CHAIN (c) = list;
30856 return c;
30859 /* OpenMP 4.5:
30860 num_tasks ( expression ) */
30862 static tree
30863 cp_parser_omp_clause_num_tasks (cp_parser *parser, tree list,
30864 location_t location)
30866 tree t, c;
30868 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30869 return list;
30871 t = cp_parser_expression (parser);
30873 if (t == error_mark_node
30874 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30875 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
30876 /*or_comma=*/false,
30877 /*consume_paren=*/true);
30879 check_no_duplicate_clause (list, OMP_CLAUSE_NUM_TASKS,
30880 "num_tasks", location);
30882 c = build_omp_clause (location, OMP_CLAUSE_NUM_TASKS);
30883 OMP_CLAUSE_NUM_TASKS_EXPR (c) = t;
30884 OMP_CLAUSE_CHAIN (c) = list;
30886 return c;
30889 /* OpenMP 4.5:
30890 grainsize ( expression ) */
30892 static tree
30893 cp_parser_omp_clause_grainsize (cp_parser *parser, tree list,
30894 location_t location)
30896 tree t, c;
30898 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30899 return list;
30901 t = cp_parser_expression (parser);
30903 if (t == error_mark_node
30904 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30905 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
30906 /*or_comma=*/false,
30907 /*consume_paren=*/true);
30909 check_no_duplicate_clause (list, OMP_CLAUSE_GRAINSIZE,
30910 "grainsize", location);
30912 c = build_omp_clause (location, OMP_CLAUSE_GRAINSIZE);
30913 OMP_CLAUSE_GRAINSIZE_EXPR (c) = t;
30914 OMP_CLAUSE_CHAIN (c) = list;
30916 return c;
30919 /* OpenMP 4.5:
30920 priority ( expression ) */
30922 static tree
30923 cp_parser_omp_clause_priority (cp_parser *parser, tree list,
30924 location_t location)
30926 tree t, c;
30928 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30929 return list;
30931 t = cp_parser_expression (parser);
30933 if (t == error_mark_node
30934 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30935 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
30936 /*or_comma=*/false,
30937 /*consume_paren=*/true);
30939 check_no_duplicate_clause (list, OMP_CLAUSE_PRIORITY,
30940 "priority", location);
30942 c = build_omp_clause (location, OMP_CLAUSE_PRIORITY);
30943 OMP_CLAUSE_PRIORITY_EXPR (c) = t;
30944 OMP_CLAUSE_CHAIN (c) = list;
30946 return c;
30949 /* OpenMP 4.5:
30950 hint ( expression ) */
30952 static tree
30953 cp_parser_omp_clause_hint (cp_parser *parser, tree list,
30954 location_t location)
30956 tree t, c;
30958 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30959 return list;
30961 t = cp_parser_expression (parser);
30963 if (t == error_mark_node
30964 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30965 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
30966 /*or_comma=*/false,
30967 /*consume_paren=*/true);
30969 check_no_duplicate_clause (list, OMP_CLAUSE_HINT, "hint", location);
30971 c = build_omp_clause (location, OMP_CLAUSE_HINT);
30972 OMP_CLAUSE_HINT_EXPR (c) = t;
30973 OMP_CLAUSE_CHAIN (c) = list;
30975 return c;
30978 /* OpenMP 4.5:
30979 defaultmap ( tofrom : scalar ) */
30981 static tree
30982 cp_parser_omp_clause_defaultmap (cp_parser *parser, tree list,
30983 location_t location)
30985 tree c, id;
30986 const char *p;
30988 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30989 return list;
30991 if (!cp_lexer_next_token_is (parser->lexer, CPP_NAME))
30993 cp_parser_error (parser, "expected %<tofrom%>");
30994 goto out_err;
30996 id = cp_lexer_peek_token (parser->lexer)->u.value;
30997 p = IDENTIFIER_POINTER (id);
30998 if (strcmp (p, "tofrom") != 0)
31000 cp_parser_error (parser, "expected %<tofrom%>");
31001 goto out_err;
31003 cp_lexer_consume_token (parser->lexer);
31004 if (!cp_parser_require (parser, CPP_COLON, RT_COLON))
31005 goto out_err;
31007 if (!cp_lexer_next_token_is (parser->lexer, CPP_NAME))
31009 cp_parser_error (parser, "expected %<scalar%>");
31010 goto out_err;
31012 id = cp_lexer_peek_token (parser->lexer)->u.value;
31013 p = IDENTIFIER_POINTER (id);
31014 if (strcmp (p, "scalar") != 0)
31016 cp_parser_error (parser, "expected %<scalar%>");
31017 goto out_err;
31019 cp_lexer_consume_token (parser->lexer);
31020 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31021 goto out_err;
31023 check_no_duplicate_clause (list, OMP_CLAUSE_DEFAULTMAP, "defaultmap",
31024 location);
31026 c = build_omp_clause (location, OMP_CLAUSE_DEFAULTMAP);
31027 OMP_CLAUSE_CHAIN (c) = list;
31028 return c;
31030 out_err:
31031 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31032 /*or_comma=*/false,
31033 /*consume_paren=*/true);
31034 return list;
31037 /* OpenMP 2.5:
31038 ordered
31040 OpenMP 4.5:
31041 ordered ( constant-expression ) */
31043 static tree
31044 cp_parser_omp_clause_ordered (cp_parser *parser,
31045 tree list, location_t location)
31047 tree c, num = NULL_TREE;
31048 HOST_WIDE_INT n;
31050 check_no_duplicate_clause (list, OMP_CLAUSE_ORDERED,
31051 "ordered", location);
31053 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
31055 cp_lexer_consume_token (parser->lexer);
31057 num = cp_parser_constant_expression (parser);
31059 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31060 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31061 /*or_comma=*/false,
31062 /*consume_paren=*/true);
31064 if (num == error_mark_node)
31065 return list;
31066 num = fold_non_dependent_expr (num);
31067 if (!tree_fits_shwi_p (num)
31068 || !INTEGRAL_TYPE_P (TREE_TYPE (num))
31069 || (n = tree_to_shwi (num)) <= 0
31070 || (int) n != n)
31072 error_at (location,
31073 "ordered argument needs positive constant integer "
31074 "expression");
31075 return list;
31079 c = build_omp_clause (location, OMP_CLAUSE_ORDERED);
31080 OMP_CLAUSE_ORDERED_EXPR (c) = num;
31081 OMP_CLAUSE_CHAIN (c) = list;
31082 return c;
31085 /* OpenMP 2.5:
31086 reduction ( reduction-operator : variable-list )
31088 reduction-operator:
31089 One of: + * - & ^ | && ||
31091 OpenMP 3.1:
31093 reduction-operator:
31094 One of: + * - & ^ | && || min max
31096 OpenMP 4.0:
31098 reduction-operator:
31099 One of: + * - & ^ | && ||
31100 id-expression */
31102 static tree
31103 cp_parser_omp_clause_reduction (cp_parser *parser, tree list)
31105 enum tree_code code = ERROR_MARK;
31106 tree nlist, c, id = NULL_TREE;
31108 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31109 return list;
31111 switch (cp_lexer_peek_token (parser->lexer)->type)
31113 case CPP_PLUS: code = PLUS_EXPR; break;
31114 case CPP_MULT: code = MULT_EXPR; break;
31115 case CPP_MINUS: code = MINUS_EXPR; break;
31116 case CPP_AND: code = BIT_AND_EXPR; break;
31117 case CPP_XOR: code = BIT_XOR_EXPR; break;
31118 case CPP_OR: code = BIT_IOR_EXPR; break;
31119 case CPP_AND_AND: code = TRUTH_ANDIF_EXPR; break;
31120 case CPP_OR_OR: code = TRUTH_ORIF_EXPR; break;
31121 default: break;
31124 if (code != ERROR_MARK)
31125 cp_lexer_consume_token (parser->lexer);
31126 else
31128 bool saved_colon_corrects_to_scope_p;
31129 saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
31130 parser->colon_corrects_to_scope_p = false;
31131 id = cp_parser_id_expression (parser, /*template_p=*/false,
31132 /*check_dependency_p=*/true,
31133 /*template_p=*/NULL,
31134 /*declarator_p=*/false,
31135 /*optional_p=*/false);
31136 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
31137 if (identifier_p (id))
31139 const char *p = IDENTIFIER_POINTER (id);
31141 if (strcmp (p, "min") == 0)
31142 code = MIN_EXPR;
31143 else if (strcmp (p, "max") == 0)
31144 code = MAX_EXPR;
31145 else if (id == ansi_opname (PLUS_EXPR))
31146 code = PLUS_EXPR;
31147 else if (id == ansi_opname (MULT_EXPR))
31148 code = MULT_EXPR;
31149 else if (id == ansi_opname (MINUS_EXPR))
31150 code = MINUS_EXPR;
31151 else if (id == ansi_opname (BIT_AND_EXPR))
31152 code = BIT_AND_EXPR;
31153 else if (id == ansi_opname (BIT_IOR_EXPR))
31154 code = BIT_IOR_EXPR;
31155 else if (id == ansi_opname (BIT_XOR_EXPR))
31156 code = BIT_XOR_EXPR;
31157 else if (id == ansi_opname (TRUTH_ANDIF_EXPR))
31158 code = TRUTH_ANDIF_EXPR;
31159 else if (id == ansi_opname (TRUTH_ORIF_EXPR))
31160 code = TRUTH_ORIF_EXPR;
31161 id = omp_reduction_id (code, id, NULL_TREE);
31162 tree scope = parser->scope;
31163 if (scope)
31164 id = build_qualified_name (NULL_TREE, scope, id, false);
31165 parser->scope = NULL_TREE;
31166 parser->qualifying_scope = NULL_TREE;
31167 parser->object_scope = NULL_TREE;
31169 else
31171 error ("invalid reduction-identifier");
31172 resync_fail:
31173 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31174 /*or_comma=*/false,
31175 /*consume_paren=*/true);
31176 return list;
31180 if (!cp_parser_require (parser, CPP_COLON, RT_COLON))
31181 goto resync_fail;
31183 nlist = cp_parser_omp_var_list_no_open (parser, OMP_CLAUSE_REDUCTION, list,
31184 NULL);
31185 for (c = nlist; c != list; c = OMP_CLAUSE_CHAIN (c))
31187 OMP_CLAUSE_REDUCTION_CODE (c) = code;
31188 OMP_CLAUSE_REDUCTION_PLACEHOLDER (c) = id;
31191 return nlist;
31194 /* OpenMP 2.5:
31195 schedule ( schedule-kind )
31196 schedule ( schedule-kind , expression )
31198 schedule-kind:
31199 static | dynamic | guided | runtime | auto
31201 OpenMP 4.5:
31202 schedule ( schedule-modifier : schedule-kind )
31203 schedule ( schedule-modifier [ , schedule-modifier ] : schedule-kind , expression )
31205 schedule-modifier:
31206 simd
31207 monotonic
31208 nonmonotonic */
31210 static tree
31211 cp_parser_omp_clause_schedule (cp_parser *parser, tree list, location_t location)
31213 tree c, t;
31214 int modifiers = 0, nmodifiers = 0;
31216 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31217 return list;
31219 c = build_omp_clause (location, OMP_CLAUSE_SCHEDULE);
31221 while (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
31223 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
31224 const char *p = IDENTIFIER_POINTER (id);
31225 if (strcmp ("simd", p) == 0)
31226 OMP_CLAUSE_SCHEDULE_SIMD (c) = 1;
31227 else if (strcmp ("monotonic", p) == 0)
31228 modifiers |= OMP_CLAUSE_SCHEDULE_MONOTONIC;
31229 else if (strcmp ("nonmonotonic", p) == 0)
31230 modifiers |= OMP_CLAUSE_SCHEDULE_NONMONOTONIC;
31231 else
31232 break;
31233 cp_lexer_consume_token (parser->lexer);
31234 if (nmodifiers++ == 0
31235 && cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
31236 cp_lexer_consume_token (parser->lexer);
31237 else
31239 cp_parser_require (parser, CPP_COLON, RT_COLON);
31240 break;
31244 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
31246 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
31247 const char *p = IDENTIFIER_POINTER (id);
31249 switch (p[0])
31251 case 'd':
31252 if (strcmp ("dynamic", p) != 0)
31253 goto invalid_kind;
31254 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_DYNAMIC;
31255 break;
31257 case 'g':
31258 if (strcmp ("guided", p) != 0)
31259 goto invalid_kind;
31260 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_GUIDED;
31261 break;
31263 case 'r':
31264 if (strcmp ("runtime", p) != 0)
31265 goto invalid_kind;
31266 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_RUNTIME;
31267 break;
31269 default:
31270 goto invalid_kind;
31273 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_STATIC))
31274 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_STATIC;
31275 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_AUTO))
31276 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_AUTO;
31277 else
31278 goto invalid_kind;
31279 cp_lexer_consume_token (parser->lexer);
31281 if ((modifiers & (OMP_CLAUSE_SCHEDULE_MONOTONIC
31282 | OMP_CLAUSE_SCHEDULE_NONMONOTONIC))
31283 == (OMP_CLAUSE_SCHEDULE_MONOTONIC
31284 | OMP_CLAUSE_SCHEDULE_NONMONOTONIC))
31286 error_at (location, "both %<monotonic%> and %<nonmonotonic%> modifiers "
31287 "specified");
31288 modifiers = 0;
31291 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
31293 cp_token *token;
31294 cp_lexer_consume_token (parser->lexer);
31296 token = cp_lexer_peek_token (parser->lexer);
31297 t = cp_parser_assignment_expression (parser);
31299 if (t == error_mark_node)
31300 goto resync_fail;
31301 else if (OMP_CLAUSE_SCHEDULE_KIND (c) == OMP_CLAUSE_SCHEDULE_RUNTIME)
31302 error_at (token->location, "schedule %<runtime%> does not take "
31303 "a %<chunk_size%> parameter");
31304 else if (OMP_CLAUSE_SCHEDULE_KIND (c) == OMP_CLAUSE_SCHEDULE_AUTO)
31305 error_at (token->location, "schedule %<auto%> does not take "
31306 "a %<chunk_size%> parameter");
31307 else
31308 OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c) = t;
31310 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31311 goto resync_fail;
31313 else if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_COMMA_CLOSE_PAREN))
31314 goto resync_fail;
31316 OMP_CLAUSE_SCHEDULE_KIND (c)
31317 = (enum omp_clause_schedule_kind)
31318 (OMP_CLAUSE_SCHEDULE_KIND (c) | modifiers);
31320 check_no_duplicate_clause (list, OMP_CLAUSE_SCHEDULE, "schedule", location);
31321 OMP_CLAUSE_CHAIN (c) = list;
31322 return c;
31324 invalid_kind:
31325 cp_parser_error (parser, "invalid schedule kind");
31326 resync_fail:
31327 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31328 /*or_comma=*/false,
31329 /*consume_paren=*/true);
31330 return list;
31333 /* OpenMP 3.0:
31334 untied */
31336 static tree
31337 cp_parser_omp_clause_untied (cp_parser * /*parser*/,
31338 tree list, location_t location)
31340 tree c;
31342 check_no_duplicate_clause (list, OMP_CLAUSE_UNTIED, "untied", location);
31344 c = build_omp_clause (location, OMP_CLAUSE_UNTIED);
31345 OMP_CLAUSE_CHAIN (c) = list;
31346 return c;
31349 /* OpenMP 4.0:
31350 inbranch
31351 notinbranch */
31353 static tree
31354 cp_parser_omp_clause_branch (cp_parser * /*parser*/, enum omp_clause_code code,
31355 tree list, location_t location)
31357 check_no_duplicate_clause (list, code, omp_clause_code_name[code], location);
31358 tree c = build_omp_clause (location, code);
31359 OMP_CLAUSE_CHAIN (c) = list;
31360 return c;
31363 /* OpenMP 4.0:
31364 parallel
31366 sections
31367 taskgroup */
31369 static tree
31370 cp_parser_omp_clause_cancelkind (cp_parser * /*parser*/,
31371 enum omp_clause_code code,
31372 tree list, location_t location)
31374 tree c = build_omp_clause (location, code);
31375 OMP_CLAUSE_CHAIN (c) = list;
31376 return c;
31379 /* OpenMP 4.5:
31380 nogroup */
31382 static tree
31383 cp_parser_omp_clause_nogroup (cp_parser * /*parser*/,
31384 tree list, location_t location)
31386 check_no_duplicate_clause (list, OMP_CLAUSE_NOGROUP, "nogroup", location);
31387 tree c = build_omp_clause (location, OMP_CLAUSE_NOGROUP);
31388 OMP_CLAUSE_CHAIN (c) = list;
31389 return c;
31392 /* OpenMP 4.5:
31393 simd
31394 threads */
31396 static tree
31397 cp_parser_omp_clause_orderedkind (cp_parser * /*parser*/,
31398 enum omp_clause_code code,
31399 tree list, location_t location)
31401 check_no_duplicate_clause (list, code, omp_clause_code_name[code], location);
31402 tree c = build_omp_clause (location, code);
31403 OMP_CLAUSE_CHAIN (c) = list;
31404 return c;
31407 /* OpenMP 4.0:
31408 num_teams ( expression ) */
31410 static tree
31411 cp_parser_omp_clause_num_teams (cp_parser *parser, tree list,
31412 location_t location)
31414 tree t, c;
31416 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31417 return list;
31419 t = cp_parser_expression (parser);
31421 if (t == error_mark_node
31422 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31423 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31424 /*or_comma=*/false,
31425 /*consume_paren=*/true);
31427 check_no_duplicate_clause (list, OMP_CLAUSE_NUM_TEAMS,
31428 "num_teams", location);
31430 c = build_omp_clause (location, OMP_CLAUSE_NUM_TEAMS);
31431 OMP_CLAUSE_NUM_TEAMS_EXPR (c) = t;
31432 OMP_CLAUSE_CHAIN (c) = list;
31434 return c;
31437 /* OpenMP 4.0:
31438 thread_limit ( expression ) */
31440 static tree
31441 cp_parser_omp_clause_thread_limit (cp_parser *parser, tree list,
31442 location_t location)
31444 tree t, c;
31446 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31447 return list;
31449 t = cp_parser_expression (parser);
31451 if (t == error_mark_node
31452 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31453 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31454 /*or_comma=*/false,
31455 /*consume_paren=*/true);
31457 check_no_duplicate_clause (list, OMP_CLAUSE_THREAD_LIMIT,
31458 "thread_limit", location);
31460 c = build_omp_clause (location, OMP_CLAUSE_THREAD_LIMIT);
31461 OMP_CLAUSE_THREAD_LIMIT_EXPR (c) = t;
31462 OMP_CLAUSE_CHAIN (c) = list;
31464 return c;
31467 /* OpenMP 4.0:
31468 aligned ( variable-list )
31469 aligned ( variable-list : constant-expression ) */
31471 static tree
31472 cp_parser_omp_clause_aligned (cp_parser *parser, tree list)
31474 tree nlist, c, alignment = NULL_TREE;
31475 bool colon;
31477 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31478 return list;
31480 nlist = cp_parser_omp_var_list_no_open (parser, OMP_CLAUSE_ALIGNED, list,
31481 &colon);
31483 if (colon)
31485 alignment = cp_parser_constant_expression (parser);
31487 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31488 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31489 /*or_comma=*/false,
31490 /*consume_paren=*/true);
31492 if (alignment == error_mark_node)
31493 alignment = NULL_TREE;
31496 for (c = nlist; c != list; c = OMP_CLAUSE_CHAIN (c))
31497 OMP_CLAUSE_ALIGNED_ALIGNMENT (c) = alignment;
31499 return nlist;
31502 /* OpenMP 4.0:
31503 linear ( variable-list )
31504 linear ( variable-list : expression )
31506 OpenMP 4.5:
31507 linear ( modifier ( variable-list ) )
31508 linear ( modifier ( variable-list ) : expression ) */
31510 static tree
31511 cp_parser_omp_clause_linear (cp_parser *parser, tree list,
31512 bool is_cilk_simd_fn, bool declare_simd)
31514 tree nlist, c, step = integer_one_node;
31515 bool colon;
31516 enum omp_clause_linear_kind kind = OMP_CLAUSE_LINEAR_DEFAULT;
31518 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31519 return list;
31521 if (!is_cilk_simd_fn
31522 && cp_lexer_next_token_is (parser->lexer, CPP_NAME))
31524 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
31525 const char *p = IDENTIFIER_POINTER (id);
31527 if (strcmp ("ref", p) == 0)
31528 kind = OMP_CLAUSE_LINEAR_REF;
31529 else if (strcmp ("val", p) == 0)
31530 kind = OMP_CLAUSE_LINEAR_VAL;
31531 else if (strcmp ("uval", p) == 0)
31532 kind = OMP_CLAUSE_LINEAR_UVAL;
31533 if (cp_lexer_nth_token_is (parser->lexer, 2, CPP_OPEN_PAREN))
31534 cp_lexer_consume_token (parser->lexer);
31535 else
31536 kind = OMP_CLAUSE_LINEAR_DEFAULT;
31539 if (kind == OMP_CLAUSE_LINEAR_DEFAULT)
31540 nlist = cp_parser_omp_var_list_no_open (parser, OMP_CLAUSE_LINEAR, list,
31541 &colon);
31542 else
31544 nlist = cp_parser_omp_var_list (parser, OMP_CLAUSE_LINEAR, list);
31545 colon = cp_lexer_next_token_is (parser->lexer, CPP_COLON);
31546 if (colon)
31547 cp_parser_require (parser, CPP_COLON, RT_COLON);
31548 else if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31549 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31550 /*or_comma=*/false,
31551 /*consume_paren=*/true);
31554 if (colon)
31556 step = NULL_TREE;
31557 if (declare_simd
31558 && cp_lexer_next_token_is (parser->lexer, CPP_NAME)
31559 && cp_lexer_nth_token_is (parser->lexer, 2, CPP_CLOSE_PAREN))
31561 cp_token *token = cp_lexer_peek_token (parser->lexer);
31562 cp_parser_parse_tentatively (parser);
31563 step = cp_parser_id_expression (parser, /*template_p=*/false,
31564 /*check_dependency_p=*/true,
31565 /*template_p=*/NULL,
31566 /*declarator_p=*/false,
31567 /*optional_p=*/false);
31568 if (step != error_mark_node)
31569 step = cp_parser_lookup_name_simple (parser, step, token->location);
31570 if (step == error_mark_node)
31572 step = NULL_TREE;
31573 cp_parser_abort_tentative_parse (parser);
31575 else if (!cp_parser_parse_definitely (parser))
31576 step = NULL_TREE;
31578 if (!step)
31579 step = cp_parser_expression (parser);
31581 if (is_cilk_simd_fn && TREE_CODE (step) == PARM_DECL)
31583 sorry ("using parameters for %<linear%> step is not supported yet");
31584 step = integer_one_node;
31586 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31587 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31588 /*or_comma=*/false,
31589 /*consume_paren=*/true);
31591 if (step == error_mark_node)
31592 return list;
31595 for (c = nlist; c != list; c = OMP_CLAUSE_CHAIN (c))
31597 OMP_CLAUSE_LINEAR_STEP (c) = step;
31598 OMP_CLAUSE_LINEAR_KIND (c) = kind;
31601 return nlist;
31604 /* OpenMP 4.0:
31605 safelen ( constant-expression ) */
31607 static tree
31608 cp_parser_omp_clause_safelen (cp_parser *parser, tree list,
31609 location_t location)
31611 tree t, c;
31613 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31614 return list;
31616 t = cp_parser_constant_expression (parser);
31618 if (t == error_mark_node
31619 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31620 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31621 /*or_comma=*/false,
31622 /*consume_paren=*/true);
31624 check_no_duplicate_clause (list, OMP_CLAUSE_SAFELEN, "safelen", location);
31626 c = build_omp_clause (location, OMP_CLAUSE_SAFELEN);
31627 OMP_CLAUSE_SAFELEN_EXPR (c) = t;
31628 OMP_CLAUSE_CHAIN (c) = list;
31630 return c;
31633 /* OpenMP 4.0:
31634 simdlen ( constant-expression ) */
31636 static tree
31637 cp_parser_omp_clause_simdlen (cp_parser *parser, tree list,
31638 location_t location)
31640 tree t, c;
31642 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31643 return list;
31645 t = cp_parser_constant_expression (parser);
31647 if (t == error_mark_node
31648 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31649 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31650 /*or_comma=*/false,
31651 /*consume_paren=*/true);
31653 check_no_duplicate_clause (list, OMP_CLAUSE_SIMDLEN, "simdlen", location);
31655 c = build_omp_clause (location, OMP_CLAUSE_SIMDLEN);
31656 OMP_CLAUSE_SIMDLEN_EXPR (c) = t;
31657 OMP_CLAUSE_CHAIN (c) = list;
31659 return c;
31662 /* OpenMP 4.5:
31663 vec:
31664 identifier [+/- integer]
31665 vec , identifier [+/- integer]
31668 static tree
31669 cp_parser_omp_clause_depend_sink (cp_parser *parser, location_t clause_loc,
31670 tree list)
31672 tree vec = NULL;
31674 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NAME))
31676 cp_parser_error (parser, "expected identifier");
31677 return list;
31680 while (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
31682 location_t id_loc = cp_lexer_peek_token (parser->lexer)->location;
31683 tree t, identifier = cp_parser_identifier (parser);
31684 tree addend = NULL;
31686 if (identifier == error_mark_node)
31687 t = error_mark_node;
31688 else
31690 t = cp_parser_lookup_name_simple
31691 (parser, identifier,
31692 cp_lexer_peek_token (parser->lexer)->location);
31693 if (t == error_mark_node)
31694 cp_parser_name_lookup_error (parser, identifier, t, NLE_NULL,
31695 id_loc);
31698 bool neg = false;
31699 if (cp_lexer_next_token_is (parser->lexer, CPP_MINUS))
31700 neg = true;
31701 else if (!cp_lexer_next_token_is (parser->lexer, CPP_PLUS))
31703 addend = integer_zero_node;
31704 goto add_to_vector;
31706 cp_lexer_consume_token (parser->lexer);
31708 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NUMBER))
31710 cp_parser_error (parser, "expected integer");
31711 return list;
31714 addend = cp_lexer_peek_token (parser->lexer)->u.value;
31715 if (TREE_CODE (addend) != INTEGER_CST)
31717 cp_parser_error (parser, "expected integer");
31718 return list;
31720 cp_lexer_consume_token (parser->lexer);
31722 add_to_vector:
31723 if (t != error_mark_node)
31725 vec = tree_cons (addend, t, vec);
31726 if (neg)
31727 OMP_CLAUSE_DEPEND_SINK_NEGATIVE (vec) = 1;
31730 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
31731 break;
31733 cp_lexer_consume_token (parser->lexer);
31736 if (cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN) && vec)
31738 tree u = build_omp_clause (clause_loc, OMP_CLAUSE_DEPEND);
31739 OMP_CLAUSE_DEPEND_KIND (u) = OMP_CLAUSE_DEPEND_SINK;
31740 OMP_CLAUSE_DECL (u) = nreverse (vec);
31741 OMP_CLAUSE_CHAIN (u) = list;
31742 return u;
31744 return list;
31747 /* OpenMP 4.0:
31748 depend ( depend-kind : variable-list )
31750 depend-kind:
31751 in | out | inout
31753 OpenMP 4.5:
31754 depend ( source )
31756 depend ( sink : vec ) */
31758 static tree
31759 cp_parser_omp_clause_depend (cp_parser *parser, tree list, location_t loc)
31761 tree nlist, c;
31762 enum omp_clause_depend_kind kind = OMP_CLAUSE_DEPEND_INOUT;
31764 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31765 return list;
31767 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
31769 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
31770 const char *p = IDENTIFIER_POINTER (id);
31772 if (strcmp ("in", p) == 0)
31773 kind = OMP_CLAUSE_DEPEND_IN;
31774 else if (strcmp ("inout", p) == 0)
31775 kind = OMP_CLAUSE_DEPEND_INOUT;
31776 else if (strcmp ("out", p) == 0)
31777 kind = OMP_CLAUSE_DEPEND_OUT;
31778 else if (strcmp ("source", p) == 0)
31779 kind = OMP_CLAUSE_DEPEND_SOURCE;
31780 else if (strcmp ("sink", p) == 0)
31781 kind = OMP_CLAUSE_DEPEND_SINK;
31782 else
31783 goto invalid_kind;
31785 else
31786 goto invalid_kind;
31788 cp_lexer_consume_token (parser->lexer);
31790 if (kind == OMP_CLAUSE_DEPEND_SOURCE)
31792 c = build_omp_clause (loc, OMP_CLAUSE_DEPEND);
31793 OMP_CLAUSE_DEPEND_KIND (c) = kind;
31794 OMP_CLAUSE_DECL (c) = NULL_TREE;
31795 OMP_CLAUSE_CHAIN (c) = list;
31796 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31797 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31798 /*or_comma=*/false,
31799 /*consume_paren=*/true);
31800 return c;
31803 if (!cp_parser_require (parser, CPP_COLON, RT_COLON))
31804 goto resync_fail;
31806 if (kind == OMP_CLAUSE_DEPEND_SINK)
31807 nlist = cp_parser_omp_clause_depend_sink (parser, loc, list);
31808 else
31810 nlist = cp_parser_omp_var_list_no_open (parser, OMP_CLAUSE_DEPEND,
31811 list, NULL);
31813 for (c = nlist; c != list; c = OMP_CLAUSE_CHAIN (c))
31814 OMP_CLAUSE_DEPEND_KIND (c) = kind;
31816 return nlist;
31818 invalid_kind:
31819 cp_parser_error (parser, "invalid depend kind");
31820 resync_fail:
31821 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31822 /*or_comma=*/false,
31823 /*consume_paren=*/true);
31824 return list;
31827 /* OpenMP 4.0:
31828 map ( map-kind : variable-list )
31829 map ( variable-list )
31831 map-kind:
31832 alloc | to | from | tofrom
31834 OpenMP 4.5:
31835 map-kind:
31836 alloc | to | from | tofrom | release | delete
31838 map ( always [,] map-kind: variable-list ) */
31840 static tree
31841 cp_parser_omp_clause_map (cp_parser *parser, tree list)
31843 tree nlist, c;
31844 enum gomp_map_kind kind = GOMP_MAP_TOFROM;
31845 bool always = false;
31847 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31848 return list;
31850 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
31852 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
31853 const char *p = IDENTIFIER_POINTER (id);
31855 if (strcmp ("always", p) == 0)
31857 int nth = 2;
31858 if (cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_COMMA)
31859 nth++;
31860 if ((cp_lexer_peek_nth_token (parser->lexer, nth)->type == CPP_NAME
31861 || (cp_lexer_peek_nth_token (parser->lexer, nth)->keyword
31862 == RID_DELETE))
31863 && (cp_lexer_peek_nth_token (parser->lexer, nth + 1)->type
31864 == CPP_COLON))
31866 always = true;
31867 cp_lexer_consume_token (parser->lexer);
31868 if (nth == 3)
31869 cp_lexer_consume_token (parser->lexer);
31874 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME)
31875 && cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_COLON)
31877 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
31878 const char *p = IDENTIFIER_POINTER (id);
31880 if (strcmp ("alloc", p) == 0)
31881 kind = GOMP_MAP_ALLOC;
31882 else if (strcmp ("to", p) == 0)
31883 kind = always ? GOMP_MAP_ALWAYS_TO : GOMP_MAP_TO;
31884 else if (strcmp ("from", p) == 0)
31885 kind = always ? GOMP_MAP_ALWAYS_FROM : GOMP_MAP_FROM;
31886 else if (strcmp ("tofrom", p) == 0)
31887 kind = always ? GOMP_MAP_ALWAYS_TOFROM : GOMP_MAP_TOFROM;
31888 else if (strcmp ("release", p) == 0)
31889 kind = GOMP_MAP_RELEASE;
31890 else
31892 cp_parser_error (parser, "invalid map kind");
31893 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31894 /*or_comma=*/false,
31895 /*consume_paren=*/true);
31896 return list;
31898 cp_lexer_consume_token (parser->lexer);
31899 cp_lexer_consume_token (parser->lexer);
31901 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_DELETE)
31902 && cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_COLON)
31904 kind = GOMP_MAP_DELETE;
31905 cp_lexer_consume_token (parser->lexer);
31906 cp_lexer_consume_token (parser->lexer);
31909 nlist = cp_parser_omp_var_list_no_open (parser, OMP_CLAUSE_MAP, list,
31910 NULL);
31912 for (c = nlist; c != list; c = OMP_CLAUSE_CHAIN (c))
31913 OMP_CLAUSE_SET_MAP_KIND (c, kind);
31915 return nlist;
31918 /* OpenMP 4.0:
31919 device ( expression ) */
31921 static tree
31922 cp_parser_omp_clause_device (cp_parser *parser, tree list,
31923 location_t location)
31925 tree t, c;
31927 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31928 return list;
31930 t = cp_parser_expression (parser);
31932 if (t == error_mark_node
31933 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31934 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31935 /*or_comma=*/false,
31936 /*consume_paren=*/true);
31938 check_no_duplicate_clause (list, OMP_CLAUSE_DEVICE,
31939 "device", location);
31941 c = build_omp_clause (location, OMP_CLAUSE_DEVICE);
31942 OMP_CLAUSE_DEVICE_ID (c) = t;
31943 OMP_CLAUSE_CHAIN (c) = list;
31945 return c;
31948 /* OpenMP 4.0:
31949 dist_schedule ( static )
31950 dist_schedule ( static , expression ) */
31952 static tree
31953 cp_parser_omp_clause_dist_schedule (cp_parser *parser, tree list,
31954 location_t location)
31956 tree c, t;
31958 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31959 return list;
31961 c = build_omp_clause (location, OMP_CLAUSE_DIST_SCHEDULE);
31963 if (!cp_lexer_next_token_is_keyword (parser->lexer, RID_STATIC))
31964 goto invalid_kind;
31965 cp_lexer_consume_token (parser->lexer);
31967 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
31969 cp_lexer_consume_token (parser->lexer);
31971 t = cp_parser_assignment_expression (parser);
31973 if (t == error_mark_node)
31974 goto resync_fail;
31975 OMP_CLAUSE_DIST_SCHEDULE_CHUNK_EXPR (c) = t;
31977 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31978 goto resync_fail;
31980 else if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_COMMA_CLOSE_PAREN))
31981 goto resync_fail;
31983 check_no_duplicate_clause (list, OMP_CLAUSE_DIST_SCHEDULE, "dist_schedule",
31984 location);
31985 OMP_CLAUSE_CHAIN (c) = list;
31986 return c;
31988 invalid_kind:
31989 cp_parser_error (parser, "invalid dist_schedule kind");
31990 resync_fail:
31991 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31992 /*or_comma=*/false,
31993 /*consume_paren=*/true);
31994 return list;
31997 /* OpenMP 4.0:
31998 proc_bind ( proc-bind-kind )
32000 proc-bind-kind:
32001 master | close | spread */
32003 static tree
32004 cp_parser_omp_clause_proc_bind (cp_parser *parser, tree list,
32005 location_t location)
32007 tree c;
32008 enum omp_clause_proc_bind_kind kind;
32010 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
32011 return list;
32013 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
32015 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
32016 const char *p = IDENTIFIER_POINTER (id);
32018 if (strcmp ("master", p) == 0)
32019 kind = OMP_CLAUSE_PROC_BIND_MASTER;
32020 else if (strcmp ("close", p) == 0)
32021 kind = OMP_CLAUSE_PROC_BIND_CLOSE;
32022 else if (strcmp ("spread", p) == 0)
32023 kind = OMP_CLAUSE_PROC_BIND_SPREAD;
32024 else
32025 goto invalid_kind;
32027 else
32028 goto invalid_kind;
32030 cp_lexer_consume_token (parser->lexer);
32031 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_COMMA_CLOSE_PAREN))
32032 goto resync_fail;
32034 c = build_omp_clause (location, OMP_CLAUSE_PROC_BIND);
32035 check_no_duplicate_clause (list, OMP_CLAUSE_PROC_BIND, "proc_bind",
32036 location);
32037 OMP_CLAUSE_PROC_BIND_KIND (c) = kind;
32038 OMP_CLAUSE_CHAIN (c) = list;
32039 return c;
32041 invalid_kind:
32042 cp_parser_error (parser, "invalid depend kind");
32043 resync_fail:
32044 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
32045 /*or_comma=*/false,
32046 /*consume_paren=*/true);
32047 return list;
32050 /* OpenACC:
32051 async [( int-expr )] */
32053 static tree
32054 cp_parser_oacc_clause_async (cp_parser *parser, tree list)
32056 tree c, t;
32057 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
32059 t = build_int_cst (integer_type_node, GOMP_ASYNC_NOVAL);
32061 if (cp_lexer_peek_token (parser->lexer)->type == CPP_OPEN_PAREN)
32063 cp_lexer_consume_token (parser->lexer);
32065 t = cp_parser_expression (parser);
32066 if (t == error_mark_node
32067 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
32068 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
32069 /*or_comma=*/false,
32070 /*consume_paren=*/true);
32073 check_no_duplicate_clause (list, OMP_CLAUSE_ASYNC, "async", loc);
32075 c = build_omp_clause (loc, OMP_CLAUSE_ASYNC);
32076 OMP_CLAUSE_ASYNC_EXPR (c) = t;
32077 OMP_CLAUSE_CHAIN (c) = list;
32078 list = c;
32080 return list;
32083 /* Parse all OpenACC clauses. The set clauses allowed by the directive
32084 is a bitmask in MASK. Return the list of clauses found. */
32086 static tree
32087 cp_parser_oacc_all_clauses (cp_parser *parser, omp_clause_mask mask,
32088 const char *where, cp_token *pragma_tok,
32089 bool finish_p = true)
32091 tree clauses = NULL;
32092 bool first = true;
32094 while (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL))
32096 location_t here;
32097 pragma_omp_clause c_kind;
32098 omp_clause_code code;
32099 const char *c_name;
32100 tree prev = clauses;
32102 if (!first && cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
32103 cp_lexer_consume_token (parser->lexer);
32105 here = cp_lexer_peek_token (parser->lexer)->location;
32106 c_kind = cp_parser_omp_clause_name (parser);
32108 switch (c_kind)
32110 case PRAGMA_OACC_CLAUSE_ASYNC:
32111 clauses = cp_parser_oacc_clause_async (parser, clauses);
32112 c_name = "async";
32113 break;
32114 case PRAGMA_OACC_CLAUSE_AUTO:
32115 clauses = cp_parser_oacc_simple_clause (parser, OMP_CLAUSE_AUTO,
32116 clauses, here);
32117 c_name = "auto";
32118 break;
32119 case PRAGMA_OACC_CLAUSE_COLLAPSE:
32120 clauses = cp_parser_omp_clause_collapse (parser, clauses, here);
32121 c_name = "collapse";
32122 break;
32123 case PRAGMA_OACC_CLAUSE_COPY:
32124 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32125 c_name = "copy";
32126 break;
32127 case PRAGMA_OACC_CLAUSE_COPYIN:
32128 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32129 c_name = "copyin";
32130 break;
32131 case PRAGMA_OACC_CLAUSE_COPYOUT:
32132 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32133 c_name = "copyout";
32134 break;
32135 case PRAGMA_OACC_CLAUSE_CREATE:
32136 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32137 c_name = "create";
32138 break;
32139 case PRAGMA_OACC_CLAUSE_DELETE:
32140 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32141 c_name = "delete";
32142 break;
32143 case PRAGMA_OMP_CLAUSE_DEFAULT:
32144 clauses = cp_parser_omp_clause_default (parser, clauses, here, true);
32145 c_name = "default";
32146 break;
32147 case PRAGMA_OACC_CLAUSE_DEVICE:
32148 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32149 c_name = "device";
32150 break;
32151 case PRAGMA_OACC_CLAUSE_DEVICEPTR:
32152 clauses = cp_parser_oacc_data_clause_deviceptr (parser, clauses);
32153 c_name = "deviceptr";
32154 break;
32155 case PRAGMA_OACC_CLAUSE_DEVICE_RESIDENT:
32156 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32157 c_name = "device_resident";
32158 break;
32159 case PRAGMA_OACC_CLAUSE_FIRSTPRIVATE:
32160 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_FIRSTPRIVATE,
32161 clauses);
32162 c_name = "firstprivate";
32163 break;
32164 case PRAGMA_OACC_CLAUSE_GANG:
32165 c_name = "gang";
32166 clauses = cp_parser_oacc_shape_clause (parser, OMP_CLAUSE_GANG,
32167 c_name, clauses);
32168 break;
32169 case PRAGMA_OACC_CLAUSE_HOST:
32170 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32171 c_name = "host";
32172 break;
32173 case PRAGMA_OACC_CLAUSE_IF:
32174 clauses = cp_parser_omp_clause_if (parser, clauses, here, false);
32175 c_name = "if";
32176 break;
32177 case PRAGMA_OACC_CLAUSE_INDEPENDENT:
32178 clauses = cp_parser_oacc_simple_clause (parser,
32179 OMP_CLAUSE_INDEPENDENT,
32180 clauses, here);
32181 c_name = "independent";
32182 break;
32183 case PRAGMA_OACC_CLAUSE_LINK:
32184 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32185 c_name = "link";
32186 break;
32187 case PRAGMA_OACC_CLAUSE_NUM_GANGS:
32188 code = OMP_CLAUSE_NUM_GANGS;
32189 c_name = "num_gangs";
32190 clauses = cp_parser_oacc_single_int_clause (parser, code, c_name,
32191 clauses);
32192 break;
32193 case PRAGMA_OACC_CLAUSE_NUM_WORKERS:
32194 c_name = "num_workers";
32195 code = OMP_CLAUSE_NUM_WORKERS;
32196 clauses = cp_parser_oacc_single_int_clause (parser, code, c_name,
32197 clauses);
32198 break;
32199 case PRAGMA_OACC_CLAUSE_PRESENT:
32200 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32201 c_name = "present";
32202 break;
32203 case PRAGMA_OACC_CLAUSE_PRESENT_OR_COPY:
32204 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32205 c_name = "present_or_copy";
32206 break;
32207 case PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN:
32208 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32209 c_name = "present_or_copyin";
32210 break;
32211 case PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYOUT:
32212 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32213 c_name = "present_or_copyout";
32214 break;
32215 case PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE:
32216 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32217 c_name = "present_or_create";
32218 break;
32219 case PRAGMA_OACC_CLAUSE_PRIVATE:
32220 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_PRIVATE,
32221 clauses);
32222 c_name = "private";
32223 break;
32224 case PRAGMA_OACC_CLAUSE_REDUCTION:
32225 clauses = cp_parser_omp_clause_reduction (parser, clauses);
32226 c_name = "reduction";
32227 break;
32228 case PRAGMA_OACC_CLAUSE_SELF:
32229 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32230 c_name = "self";
32231 break;
32232 case PRAGMA_OACC_CLAUSE_SEQ:
32233 clauses = cp_parser_oacc_simple_clause (parser, OMP_CLAUSE_SEQ,
32234 clauses, here);
32235 c_name = "seq";
32236 break;
32237 case PRAGMA_OACC_CLAUSE_TILE:
32238 clauses = cp_parser_oacc_clause_tile (parser, here, clauses);
32239 c_name = "tile";
32240 break;
32241 case PRAGMA_OACC_CLAUSE_USE_DEVICE:
32242 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_USE_DEVICE_PTR,
32243 clauses);
32244 c_name = "use_device";
32245 break;
32246 case PRAGMA_OACC_CLAUSE_VECTOR:
32247 c_name = "vector";
32248 clauses = cp_parser_oacc_shape_clause (parser, OMP_CLAUSE_VECTOR,
32249 c_name, clauses);
32250 break;
32251 case PRAGMA_OACC_CLAUSE_VECTOR_LENGTH:
32252 c_name = "vector_length";
32253 code = OMP_CLAUSE_VECTOR_LENGTH;
32254 clauses = cp_parser_oacc_single_int_clause (parser, code, c_name,
32255 clauses);
32256 break;
32257 case PRAGMA_OACC_CLAUSE_WAIT:
32258 clauses = cp_parser_oacc_clause_wait (parser, clauses);
32259 c_name = "wait";
32260 break;
32261 case PRAGMA_OACC_CLAUSE_WORKER:
32262 c_name = "worker";
32263 clauses = cp_parser_oacc_shape_clause (parser, OMP_CLAUSE_WORKER,
32264 c_name, clauses);
32265 break;
32266 default:
32267 cp_parser_error (parser, "expected %<#pragma acc%> clause");
32268 goto saw_error;
32271 first = false;
32273 if (((mask >> c_kind) & 1) == 0)
32275 /* Remove the invalid clause(s) from the list to avoid
32276 confusing the rest of the compiler. */
32277 clauses = prev;
32278 error_at (here, "%qs is not valid for %qs", c_name, where);
32282 saw_error:
32283 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
32285 if (finish_p)
32286 return finish_omp_clauses (clauses, C_ORT_ACC);
32288 return clauses;
32291 /* Parse all OpenMP clauses. The set clauses allowed by the directive
32292 is a bitmask in MASK. Return the list of clauses found; the result
32293 of clause default goes in *pdefault. */
32295 static tree
32296 cp_parser_omp_all_clauses (cp_parser *parser, omp_clause_mask mask,
32297 const char *where, cp_token *pragma_tok,
32298 bool finish_p = true)
32300 tree clauses = NULL;
32301 bool first = true;
32302 cp_token *token = NULL;
32304 while (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL))
32306 pragma_omp_clause c_kind;
32307 const char *c_name;
32308 tree prev = clauses;
32310 if (!first && cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
32311 cp_lexer_consume_token (parser->lexer);
32313 token = cp_lexer_peek_token (parser->lexer);
32314 c_kind = cp_parser_omp_clause_name (parser);
32316 switch (c_kind)
32318 case PRAGMA_OMP_CLAUSE_COLLAPSE:
32319 clauses = cp_parser_omp_clause_collapse (parser, clauses,
32320 token->location);
32321 c_name = "collapse";
32322 break;
32323 case PRAGMA_OMP_CLAUSE_COPYIN:
32324 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_COPYIN, clauses);
32325 c_name = "copyin";
32326 break;
32327 case PRAGMA_OMP_CLAUSE_COPYPRIVATE:
32328 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_COPYPRIVATE,
32329 clauses);
32330 c_name = "copyprivate";
32331 break;
32332 case PRAGMA_OMP_CLAUSE_DEFAULT:
32333 clauses = cp_parser_omp_clause_default (parser, clauses,
32334 token->location, false);
32335 c_name = "default";
32336 break;
32337 case PRAGMA_OMP_CLAUSE_FINAL:
32338 clauses = cp_parser_omp_clause_final (parser, clauses, token->location);
32339 c_name = "final";
32340 break;
32341 case PRAGMA_OMP_CLAUSE_FIRSTPRIVATE:
32342 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_FIRSTPRIVATE,
32343 clauses);
32344 c_name = "firstprivate";
32345 break;
32346 case PRAGMA_OMP_CLAUSE_GRAINSIZE:
32347 clauses = cp_parser_omp_clause_grainsize (parser, clauses,
32348 token->location);
32349 c_name = "grainsize";
32350 break;
32351 case PRAGMA_OMP_CLAUSE_HINT:
32352 clauses = cp_parser_omp_clause_hint (parser, clauses,
32353 token->location);
32354 c_name = "hint";
32355 break;
32356 case PRAGMA_OMP_CLAUSE_DEFAULTMAP:
32357 clauses = cp_parser_omp_clause_defaultmap (parser, clauses,
32358 token->location);
32359 c_name = "defaultmap";
32360 break;
32361 case PRAGMA_OMP_CLAUSE_USE_DEVICE_PTR:
32362 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_USE_DEVICE_PTR,
32363 clauses);
32364 c_name = "use_device_ptr";
32365 break;
32366 case PRAGMA_OMP_CLAUSE_IS_DEVICE_PTR:
32367 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_IS_DEVICE_PTR,
32368 clauses);
32369 c_name = "is_device_ptr";
32370 break;
32371 case PRAGMA_OMP_CLAUSE_IF:
32372 clauses = cp_parser_omp_clause_if (parser, clauses, token->location,
32373 true);
32374 c_name = "if";
32375 break;
32376 case PRAGMA_OMP_CLAUSE_LASTPRIVATE:
32377 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_LASTPRIVATE,
32378 clauses);
32379 c_name = "lastprivate";
32380 break;
32381 case PRAGMA_OMP_CLAUSE_MERGEABLE:
32382 clauses = cp_parser_omp_clause_mergeable (parser, clauses,
32383 token->location);
32384 c_name = "mergeable";
32385 break;
32386 case PRAGMA_OMP_CLAUSE_NOWAIT:
32387 clauses = cp_parser_omp_clause_nowait (parser, clauses, token->location);
32388 c_name = "nowait";
32389 break;
32390 case PRAGMA_OMP_CLAUSE_NUM_TASKS:
32391 clauses = cp_parser_omp_clause_num_tasks (parser, clauses,
32392 token->location);
32393 c_name = "num_tasks";
32394 break;
32395 case PRAGMA_OMP_CLAUSE_NUM_THREADS:
32396 clauses = cp_parser_omp_clause_num_threads (parser, clauses,
32397 token->location);
32398 c_name = "num_threads";
32399 break;
32400 case PRAGMA_OMP_CLAUSE_ORDERED:
32401 clauses = cp_parser_omp_clause_ordered (parser, clauses,
32402 token->location);
32403 c_name = "ordered";
32404 break;
32405 case PRAGMA_OMP_CLAUSE_PRIORITY:
32406 clauses = cp_parser_omp_clause_priority (parser, clauses,
32407 token->location);
32408 c_name = "priority";
32409 break;
32410 case PRAGMA_OMP_CLAUSE_PRIVATE:
32411 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_PRIVATE,
32412 clauses);
32413 c_name = "private";
32414 break;
32415 case PRAGMA_OMP_CLAUSE_REDUCTION:
32416 clauses = cp_parser_omp_clause_reduction (parser, clauses);
32417 c_name = "reduction";
32418 break;
32419 case PRAGMA_OMP_CLAUSE_SCHEDULE:
32420 clauses = cp_parser_omp_clause_schedule (parser, clauses,
32421 token->location);
32422 c_name = "schedule";
32423 break;
32424 case PRAGMA_OMP_CLAUSE_SHARED:
32425 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_SHARED,
32426 clauses);
32427 c_name = "shared";
32428 break;
32429 case PRAGMA_OMP_CLAUSE_UNTIED:
32430 clauses = cp_parser_omp_clause_untied (parser, clauses,
32431 token->location);
32432 c_name = "untied";
32433 break;
32434 case PRAGMA_OMP_CLAUSE_INBRANCH:
32435 case PRAGMA_CILK_CLAUSE_MASK:
32436 clauses = cp_parser_omp_clause_branch (parser, OMP_CLAUSE_INBRANCH,
32437 clauses, token->location);
32438 c_name = "inbranch";
32439 break;
32440 case PRAGMA_OMP_CLAUSE_NOTINBRANCH:
32441 case PRAGMA_CILK_CLAUSE_NOMASK:
32442 clauses = cp_parser_omp_clause_branch (parser,
32443 OMP_CLAUSE_NOTINBRANCH,
32444 clauses, token->location);
32445 c_name = "notinbranch";
32446 break;
32447 case PRAGMA_OMP_CLAUSE_PARALLEL:
32448 clauses = cp_parser_omp_clause_cancelkind (parser, OMP_CLAUSE_PARALLEL,
32449 clauses, token->location);
32450 c_name = "parallel";
32451 if (!first)
32453 clause_not_first:
32454 error_at (token->location, "%qs must be the first clause of %qs",
32455 c_name, where);
32456 clauses = prev;
32458 break;
32459 case PRAGMA_OMP_CLAUSE_FOR:
32460 clauses = cp_parser_omp_clause_cancelkind (parser, OMP_CLAUSE_FOR,
32461 clauses, token->location);
32462 c_name = "for";
32463 if (!first)
32464 goto clause_not_first;
32465 break;
32466 case PRAGMA_OMP_CLAUSE_SECTIONS:
32467 clauses = cp_parser_omp_clause_cancelkind (parser, OMP_CLAUSE_SECTIONS,
32468 clauses, token->location);
32469 c_name = "sections";
32470 if (!first)
32471 goto clause_not_first;
32472 break;
32473 case PRAGMA_OMP_CLAUSE_TASKGROUP:
32474 clauses = cp_parser_omp_clause_cancelkind (parser, OMP_CLAUSE_TASKGROUP,
32475 clauses, token->location);
32476 c_name = "taskgroup";
32477 if (!first)
32478 goto clause_not_first;
32479 break;
32480 case PRAGMA_OMP_CLAUSE_LINK:
32481 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_LINK, clauses);
32482 c_name = "to";
32483 break;
32484 case PRAGMA_OMP_CLAUSE_TO:
32485 if ((mask & (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LINK)) != 0)
32486 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_TO_DECLARE,
32487 clauses);
32488 else
32489 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_TO, clauses);
32490 c_name = "to";
32491 break;
32492 case PRAGMA_OMP_CLAUSE_FROM:
32493 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_FROM, clauses);
32494 c_name = "from";
32495 break;
32496 case PRAGMA_OMP_CLAUSE_UNIFORM:
32497 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_UNIFORM,
32498 clauses);
32499 c_name = "uniform";
32500 break;
32501 case PRAGMA_OMP_CLAUSE_NUM_TEAMS:
32502 clauses = cp_parser_omp_clause_num_teams (parser, clauses,
32503 token->location);
32504 c_name = "num_teams";
32505 break;
32506 case PRAGMA_OMP_CLAUSE_THREAD_LIMIT:
32507 clauses = cp_parser_omp_clause_thread_limit (parser, clauses,
32508 token->location);
32509 c_name = "thread_limit";
32510 break;
32511 case PRAGMA_OMP_CLAUSE_ALIGNED:
32512 clauses = cp_parser_omp_clause_aligned (parser, clauses);
32513 c_name = "aligned";
32514 break;
32515 case PRAGMA_OMP_CLAUSE_LINEAR:
32517 bool cilk_simd_fn = false, declare_simd = false;
32518 if (((mask >> PRAGMA_CILK_CLAUSE_VECTORLENGTH) & 1) != 0)
32519 cilk_simd_fn = true;
32520 else if (((mask >> PRAGMA_OMP_CLAUSE_UNIFORM) & 1) != 0)
32521 declare_simd = true;
32522 clauses = cp_parser_omp_clause_linear (parser, clauses,
32523 cilk_simd_fn, declare_simd);
32525 c_name = "linear";
32526 break;
32527 case PRAGMA_OMP_CLAUSE_DEPEND:
32528 clauses = cp_parser_omp_clause_depend (parser, clauses,
32529 token->location);
32530 c_name = "depend";
32531 break;
32532 case PRAGMA_OMP_CLAUSE_MAP:
32533 clauses = cp_parser_omp_clause_map (parser, clauses);
32534 c_name = "map";
32535 break;
32536 case PRAGMA_OMP_CLAUSE_DEVICE:
32537 clauses = cp_parser_omp_clause_device (parser, clauses,
32538 token->location);
32539 c_name = "device";
32540 break;
32541 case PRAGMA_OMP_CLAUSE_DIST_SCHEDULE:
32542 clauses = cp_parser_omp_clause_dist_schedule (parser, clauses,
32543 token->location);
32544 c_name = "dist_schedule";
32545 break;
32546 case PRAGMA_OMP_CLAUSE_PROC_BIND:
32547 clauses = cp_parser_omp_clause_proc_bind (parser, clauses,
32548 token->location);
32549 c_name = "proc_bind";
32550 break;
32551 case PRAGMA_OMP_CLAUSE_SAFELEN:
32552 clauses = cp_parser_omp_clause_safelen (parser, clauses,
32553 token->location);
32554 c_name = "safelen";
32555 break;
32556 case PRAGMA_OMP_CLAUSE_SIMDLEN:
32557 clauses = cp_parser_omp_clause_simdlen (parser, clauses,
32558 token->location);
32559 c_name = "simdlen";
32560 break;
32561 case PRAGMA_OMP_CLAUSE_NOGROUP:
32562 clauses = cp_parser_omp_clause_nogroup (parser, clauses,
32563 token->location);
32564 c_name = "nogroup";
32565 break;
32566 case PRAGMA_OMP_CLAUSE_THREADS:
32567 clauses
32568 = cp_parser_omp_clause_orderedkind (parser, OMP_CLAUSE_THREADS,
32569 clauses, token->location);
32570 c_name = "threads";
32571 break;
32572 case PRAGMA_OMP_CLAUSE_SIMD:
32573 clauses
32574 = cp_parser_omp_clause_orderedkind (parser, OMP_CLAUSE_SIMD,
32575 clauses, token->location);
32576 c_name = "simd";
32577 break;
32578 case PRAGMA_CILK_CLAUSE_VECTORLENGTH:
32579 clauses = cp_parser_cilk_simd_vectorlength (parser, clauses, true);
32580 c_name = "simdlen";
32581 break;
32582 default:
32583 cp_parser_error (parser, "expected %<#pragma omp%> clause");
32584 goto saw_error;
32587 first = false;
32589 if (((mask >> c_kind) & 1) == 0)
32591 /* Remove the invalid clause(s) from the list to avoid
32592 confusing the rest of the compiler. */
32593 clauses = prev;
32594 error_at (token->location, "%qs is not valid for %qs", c_name, where);
32597 saw_error:
32598 /* In Cilk Plus SIMD enabled functions there is no pragma_token, so
32599 no reason to skip to the end. */
32600 if (!(flag_cilkplus && pragma_tok == NULL))
32601 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
32602 if (finish_p)
32604 if ((mask & (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_UNIFORM)) != 0)
32605 return finish_omp_clauses (clauses, C_ORT_OMP_DECLARE_SIMD);
32606 else
32607 return finish_omp_clauses (clauses, C_ORT_OMP);
32609 return clauses;
32612 /* OpenMP 2.5:
32613 structured-block:
32614 statement
32616 In practice, we're also interested in adding the statement to an
32617 outer node. So it is convenient if we work around the fact that
32618 cp_parser_statement calls add_stmt. */
32620 static unsigned
32621 cp_parser_begin_omp_structured_block (cp_parser *parser)
32623 unsigned save = parser->in_statement;
32625 /* Only move the values to IN_OMP_BLOCK if they weren't false.
32626 This preserves the "not within loop or switch" style error messages
32627 for nonsense cases like
32628 void foo() {
32629 #pragma omp single
32630 break;
32633 if (parser->in_statement)
32634 parser->in_statement = IN_OMP_BLOCK;
32636 return save;
32639 static void
32640 cp_parser_end_omp_structured_block (cp_parser *parser, unsigned save)
32642 parser->in_statement = save;
32645 static tree
32646 cp_parser_omp_structured_block (cp_parser *parser, bool *if_p)
32648 tree stmt = begin_omp_structured_block ();
32649 unsigned int save = cp_parser_begin_omp_structured_block (parser);
32651 cp_parser_statement (parser, NULL_TREE, false, if_p);
32653 cp_parser_end_omp_structured_block (parser, save);
32654 return finish_omp_structured_block (stmt);
32657 /* OpenMP 2.5:
32658 # pragma omp atomic new-line
32659 expression-stmt
32661 expression-stmt:
32662 x binop= expr | x++ | ++x | x-- | --x
32663 binop:
32664 +, *, -, /, &, ^, |, <<, >>
32666 where x is an lvalue expression with scalar type.
32668 OpenMP 3.1:
32669 # pragma omp atomic new-line
32670 update-stmt
32672 # pragma omp atomic read new-line
32673 read-stmt
32675 # pragma omp atomic write new-line
32676 write-stmt
32678 # pragma omp atomic update new-line
32679 update-stmt
32681 # pragma omp atomic capture new-line
32682 capture-stmt
32684 # pragma omp atomic capture new-line
32685 capture-block
32687 read-stmt:
32688 v = x
32689 write-stmt:
32690 x = expr
32691 update-stmt:
32692 expression-stmt | x = x binop expr
32693 capture-stmt:
32694 v = expression-stmt
32695 capture-block:
32696 { v = x; update-stmt; } | { update-stmt; v = x; }
32698 OpenMP 4.0:
32699 update-stmt:
32700 expression-stmt | x = x binop expr | x = expr binop x
32701 capture-stmt:
32702 v = update-stmt
32703 capture-block:
32704 { v = x; update-stmt; } | { update-stmt; v = x; } | { v = x; x = expr; }
32706 where x and v are lvalue expressions with scalar type. */
32708 static void
32709 cp_parser_omp_atomic (cp_parser *parser, cp_token *pragma_tok)
32711 tree lhs = NULL_TREE, rhs = NULL_TREE, v = NULL_TREE, lhs1 = NULL_TREE;
32712 tree rhs1 = NULL_TREE, orig_lhs;
32713 enum tree_code code = OMP_ATOMIC, opcode = NOP_EXPR;
32714 bool structured_block = false;
32715 bool seq_cst = false;
32717 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
32719 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
32720 const char *p = IDENTIFIER_POINTER (id);
32722 if (!strcmp (p, "seq_cst"))
32724 seq_cst = true;
32725 cp_lexer_consume_token (parser->lexer);
32726 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA)
32727 && cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_NAME)
32728 cp_lexer_consume_token (parser->lexer);
32731 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
32733 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
32734 const char *p = IDENTIFIER_POINTER (id);
32736 if (!strcmp (p, "read"))
32737 code = OMP_ATOMIC_READ;
32738 else if (!strcmp (p, "write"))
32739 code = NOP_EXPR;
32740 else if (!strcmp (p, "update"))
32741 code = OMP_ATOMIC;
32742 else if (!strcmp (p, "capture"))
32743 code = OMP_ATOMIC_CAPTURE_NEW;
32744 else
32745 p = NULL;
32746 if (p)
32747 cp_lexer_consume_token (parser->lexer);
32749 if (!seq_cst)
32751 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA)
32752 && cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_NAME)
32753 cp_lexer_consume_token (parser->lexer);
32755 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
32757 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
32758 const char *p = IDENTIFIER_POINTER (id);
32760 if (!strcmp (p, "seq_cst"))
32762 seq_cst = true;
32763 cp_lexer_consume_token (parser->lexer);
32767 cp_parser_require_pragma_eol (parser, pragma_tok);
32769 switch (code)
32771 case OMP_ATOMIC_READ:
32772 case NOP_EXPR: /* atomic write */
32773 v = cp_parser_unary_expression (parser);
32774 if (v == error_mark_node)
32775 goto saw_error;
32776 if (!cp_parser_require (parser, CPP_EQ, RT_EQ))
32777 goto saw_error;
32778 if (code == NOP_EXPR)
32779 lhs = cp_parser_expression (parser);
32780 else
32781 lhs = cp_parser_unary_expression (parser);
32782 if (lhs == error_mark_node)
32783 goto saw_error;
32784 if (code == NOP_EXPR)
32786 /* atomic write is represented by OMP_ATOMIC with NOP_EXPR
32787 opcode. */
32788 code = OMP_ATOMIC;
32789 rhs = lhs;
32790 lhs = v;
32791 v = NULL_TREE;
32793 goto done;
32794 case OMP_ATOMIC_CAPTURE_NEW:
32795 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
32797 cp_lexer_consume_token (parser->lexer);
32798 structured_block = true;
32800 else
32802 v = cp_parser_unary_expression (parser);
32803 if (v == error_mark_node)
32804 goto saw_error;
32805 if (!cp_parser_require (parser, CPP_EQ, RT_EQ))
32806 goto saw_error;
32808 default:
32809 break;
32812 restart:
32813 lhs = cp_parser_unary_expression (parser);
32814 orig_lhs = lhs;
32815 switch (TREE_CODE (lhs))
32817 case ERROR_MARK:
32818 goto saw_error;
32820 case POSTINCREMENT_EXPR:
32821 if (code == OMP_ATOMIC_CAPTURE_NEW && !structured_block)
32822 code = OMP_ATOMIC_CAPTURE_OLD;
32823 /* FALLTHROUGH */
32824 case PREINCREMENT_EXPR:
32825 lhs = TREE_OPERAND (lhs, 0);
32826 opcode = PLUS_EXPR;
32827 rhs = integer_one_node;
32828 break;
32830 case POSTDECREMENT_EXPR:
32831 if (code == OMP_ATOMIC_CAPTURE_NEW && !structured_block)
32832 code = OMP_ATOMIC_CAPTURE_OLD;
32833 /* FALLTHROUGH */
32834 case PREDECREMENT_EXPR:
32835 lhs = TREE_OPERAND (lhs, 0);
32836 opcode = MINUS_EXPR;
32837 rhs = integer_one_node;
32838 break;
32840 case COMPOUND_EXPR:
32841 if (TREE_CODE (TREE_OPERAND (lhs, 0)) == SAVE_EXPR
32842 && TREE_CODE (TREE_OPERAND (lhs, 1)) == COMPOUND_EXPR
32843 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (lhs, 1), 0)) == MODIFY_EXPR
32844 && TREE_OPERAND (TREE_OPERAND (lhs, 1), 1) == TREE_OPERAND (lhs, 0)
32845 && TREE_CODE (TREE_TYPE (TREE_OPERAND (TREE_OPERAND
32846 (TREE_OPERAND (lhs, 1), 0), 0)))
32847 == BOOLEAN_TYPE)
32848 /* Undo effects of boolean_increment for post {in,de}crement. */
32849 lhs = TREE_OPERAND (TREE_OPERAND (lhs, 1), 0);
32850 /* FALLTHRU */
32851 case MODIFY_EXPR:
32852 if (TREE_CODE (lhs) == MODIFY_EXPR
32853 && TREE_CODE (TREE_TYPE (TREE_OPERAND (lhs, 0))) == BOOLEAN_TYPE)
32855 /* Undo effects of boolean_increment. */
32856 if (integer_onep (TREE_OPERAND (lhs, 1)))
32858 /* This is pre or post increment. */
32859 rhs = TREE_OPERAND (lhs, 1);
32860 lhs = TREE_OPERAND (lhs, 0);
32861 opcode = NOP_EXPR;
32862 if (code == OMP_ATOMIC_CAPTURE_NEW
32863 && !structured_block
32864 && TREE_CODE (orig_lhs) == COMPOUND_EXPR)
32865 code = OMP_ATOMIC_CAPTURE_OLD;
32866 break;
32869 /* FALLTHRU */
32870 default:
32871 switch (cp_lexer_peek_token (parser->lexer)->type)
32873 case CPP_MULT_EQ:
32874 opcode = MULT_EXPR;
32875 break;
32876 case CPP_DIV_EQ:
32877 opcode = TRUNC_DIV_EXPR;
32878 break;
32879 case CPP_PLUS_EQ:
32880 opcode = PLUS_EXPR;
32881 break;
32882 case CPP_MINUS_EQ:
32883 opcode = MINUS_EXPR;
32884 break;
32885 case CPP_LSHIFT_EQ:
32886 opcode = LSHIFT_EXPR;
32887 break;
32888 case CPP_RSHIFT_EQ:
32889 opcode = RSHIFT_EXPR;
32890 break;
32891 case CPP_AND_EQ:
32892 opcode = BIT_AND_EXPR;
32893 break;
32894 case CPP_OR_EQ:
32895 opcode = BIT_IOR_EXPR;
32896 break;
32897 case CPP_XOR_EQ:
32898 opcode = BIT_XOR_EXPR;
32899 break;
32900 case CPP_EQ:
32901 enum cp_parser_prec oprec;
32902 cp_token *token;
32903 cp_lexer_consume_token (parser->lexer);
32904 cp_parser_parse_tentatively (parser);
32905 rhs1 = cp_parser_simple_cast_expression (parser);
32906 if (rhs1 == error_mark_node)
32908 cp_parser_abort_tentative_parse (parser);
32909 cp_parser_simple_cast_expression (parser);
32910 goto saw_error;
32912 token = cp_lexer_peek_token (parser->lexer);
32913 if (token->type != CPP_SEMICOLON && !cp_tree_equal (lhs, rhs1))
32915 cp_parser_abort_tentative_parse (parser);
32916 cp_parser_parse_tentatively (parser);
32917 rhs = cp_parser_binary_expression (parser, false, true,
32918 PREC_NOT_OPERATOR, NULL);
32919 if (rhs == error_mark_node)
32921 cp_parser_abort_tentative_parse (parser);
32922 cp_parser_binary_expression (parser, false, true,
32923 PREC_NOT_OPERATOR, NULL);
32924 goto saw_error;
32926 switch (TREE_CODE (rhs))
32928 case MULT_EXPR:
32929 case TRUNC_DIV_EXPR:
32930 case RDIV_EXPR:
32931 case PLUS_EXPR:
32932 case MINUS_EXPR:
32933 case LSHIFT_EXPR:
32934 case RSHIFT_EXPR:
32935 case BIT_AND_EXPR:
32936 case BIT_IOR_EXPR:
32937 case BIT_XOR_EXPR:
32938 if (cp_tree_equal (lhs, TREE_OPERAND (rhs, 1)))
32940 if (cp_parser_parse_definitely (parser))
32942 opcode = TREE_CODE (rhs);
32943 rhs1 = TREE_OPERAND (rhs, 0);
32944 rhs = TREE_OPERAND (rhs, 1);
32945 goto stmt_done;
32947 else
32948 goto saw_error;
32950 break;
32951 default:
32952 break;
32954 cp_parser_abort_tentative_parse (parser);
32955 if (structured_block && code == OMP_ATOMIC_CAPTURE_OLD)
32957 rhs = cp_parser_expression (parser);
32958 if (rhs == error_mark_node)
32959 goto saw_error;
32960 opcode = NOP_EXPR;
32961 rhs1 = NULL_TREE;
32962 goto stmt_done;
32964 cp_parser_error (parser,
32965 "invalid form of %<#pragma omp atomic%>");
32966 goto saw_error;
32968 if (!cp_parser_parse_definitely (parser))
32969 goto saw_error;
32970 switch (token->type)
32972 case CPP_SEMICOLON:
32973 if (structured_block && code == OMP_ATOMIC_CAPTURE_NEW)
32975 code = OMP_ATOMIC_CAPTURE_OLD;
32976 v = lhs;
32977 lhs = NULL_TREE;
32978 lhs1 = rhs1;
32979 rhs1 = NULL_TREE;
32980 cp_lexer_consume_token (parser->lexer);
32981 goto restart;
32983 else if (structured_block)
32985 opcode = NOP_EXPR;
32986 rhs = rhs1;
32987 rhs1 = NULL_TREE;
32988 goto stmt_done;
32990 cp_parser_error (parser,
32991 "invalid form of %<#pragma omp atomic%>");
32992 goto saw_error;
32993 case CPP_MULT:
32994 opcode = MULT_EXPR;
32995 break;
32996 case CPP_DIV:
32997 opcode = TRUNC_DIV_EXPR;
32998 break;
32999 case CPP_PLUS:
33000 opcode = PLUS_EXPR;
33001 break;
33002 case CPP_MINUS:
33003 opcode = MINUS_EXPR;
33004 break;
33005 case CPP_LSHIFT:
33006 opcode = LSHIFT_EXPR;
33007 break;
33008 case CPP_RSHIFT:
33009 opcode = RSHIFT_EXPR;
33010 break;
33011 case CPP_AND:
33012 opcode = BIT_AND_EXPR;
33013 break;
33014 case CPP_OR:
33015 opcode = BIT_IOR_EXPR;
33016 break;
33017 case CPP_XOR:
33018 opcode = BIT_XOR_EXPR;
33019 break;
33020 default:
33021 cp_parser_error (parser,
33022 "invalid operator for %<#pragma omp atomic%>");
33023 goto saw_error;
33025 oprec = TOKEN_PRECEDENCE (token);
33026 gcc_assert (oprec != PREC_NOT_OPERATOR);
33027 if (commutative_tree_code (opcode))
33028 oprec = (enum cp_parser_prec) (oprec - 1);
33029 cp_lexer_consume_token (parser->lexer);
33030 rhs = cp_parser_binary_expression (parser, false, false,
33031 oprec, NULL);
33032 if (rhs == error_mark_node)
33033 goto saw_error;
33034 goto stmt_done;
33035 /* FALLTHROUGH */
33036 default:
33037 cp_parser_error (parser,
33038 "invalid operator for %<#pragma omp atomic%>");
33039 goto saw_error;
33041 cp_lexer_consume_token (parser->lexer);
33043 rhs = cp_parser_expression (parser);
33044 if (rhs == error_mark_node)
33045 goto saw_error;
33046 break;
33048 stmt_done:
33049 if (structured_block && code == OMP_ATOMIC_CAPTURE_NEW)
33051 if (!cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON))
33052 goto saw_error;
33053 v = cp_parser_unary_expression (parser);
33054 if (v == error_mark_node)
33055 goto saw_error;
33056 if (!cp_parser_require (parser, CPP_EQ, RT_EQ))
33057 goto saw_error;
33058 lhs1 = cp_parser_unary_expression (parser);
33059 if (lhs1 == error_mark_node)
33060 goto saw_error;
33062 if (structured_block)
33064 cp_parser_consume_semicolon_at_end_of_statement (parser);
33065 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
33067 done:
33068 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1, seq_cst);
33069 if (!structured_block)
33070 cp_parser_consume_semicolon_at_end_of_statement (parser);
33071 return;
33073 saw_error:
33074 cp_parser_skip_to_end_of_block_or_statement (parser);
33075 if (structured_block)
33077 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
33078 cp_lexer_consume_token (parser->lexer);
33079 else if (code == OMP_ATOMIC_CAPTURE_NEW)
33081 cp_parser_skip_to_end_of_block_or_statement (parser);
33082 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
33083 cp_lexer_consume_token (parser->lexer);
33089 /* OpenMP 2.5:
33090 # pragma omp barrier new-line */
33092 static void
33093 cp_parser_omp_barrier (cp_parser *parser, cp_token *pragma_tok)
33095 cp_parser_require_pragma_eol (parser, pragma_tok);
33096 finish_omp_barrier ();
33099 /* OpenMP 2.5:
33100 # pragma omp critical [(name)] new-line
33101 structured-block
33103 OpenMP 4.5:
33104 # pragma omp critical [(name) [hint(expression)]] new-line
33105 structured-block */
33107 #define OMP_CRITICAL_CLAUSE_MASK \
33108 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_HINT) )
33110 static tree
33111 cp_parser_omp_critical (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
33113 tree stmt, name = NULL_TREE, clauses = NULL_TREE;
33115 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
33117 cp_lexer_consume_token (parser->lexer);
33119 name = cp_parser_identifier (parser);
33121 if (name == error_mark_node
33122 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
33123 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
33124 /*or_comma=*/false,
33125 /*consume_paren=*/true);
33126 if (name == error_mark_node)
33127 name = NULL;
33129 clauses = cp_parser_omp_all_clauses (parser,
33130 OMP_CRITICAL_CLAUSE_MASK,
33131 "#pragma omp critical", pragma_tok);
33133 else
33134 cp_parser_require_pragma_eol (parser, pragma_tok);
33136 stmt = cp_parser_omp_structured_block (parser, if_p);
33137 return c_finish_omp_critical (input_location, stmt, name, clauses);
33140 /* OpenMP 2.5:
33141 # pragma omp flush flush-vars[opt] new-line
33143 flush-vars:
33144 ( variable-list ) */
33146 static void
33147 cp_parser_omp_flush (cp_parser *parser, cp_token *pragma_tok)
33149 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
33150 (void) cp_parser_omp_var_list (parser, OMP_CLAUSE_ERROR, NULL);
33151 cp_parser_require_pragma_eol (parser, pragma_tok);
33153 finish_omp_flush ();
33156 /* Helper function, to parse omp for increment expression. */
33158 static tree
33159 cp_parser_omp_for_cond (cp_parser *parser, tree decl, enum tree_code code)
33161 tree cond = cp_parser_binary_expression (parser, false, true,
33162 PREC_NOT_OPERATOR, NULL);
33163 if (cond == error_mark_node
33164 || cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
33166 cp_parser_skip_to_end_of_statement (parser);
33167 return error_mark_node;
33170 switch (TREE_CODE (cond))
33172 case GT_EXPR:
33173 case GE_EXPR:
33174 case LT_EXPR:
33175 case LE_EXPR:
33176 break;
33177 case NE_EXPR:
33178 if (code == CILK_SIMD || code == CILK_FOR)
33179 break;
33180 /* Fall through: OpenMP disallows NE_EXPR. */
33181 default:
33182 return error_mark_node;
33185 /* If decl is an iterator, preserve LHS and RHS of the relational
33186 expr until finish_omp_for. */
33187 if (decl
33188 && (type_dependent_expression_p (decl)
33189 || CLASS_TYPE_P (TREE_TYPE (decl))))
33190 return cond;
33192 return build_x_binary_op (EXPR_LOC_OR_LOC (cond, input_location),
33193 TREE_CODE (cond),
33194 TREE_OPERAND (cond, 0), ERROR_MARK,
33195 TREE_OPERAND (cond, 1), ERROR_MARK,
33196 /*overload=*/NULL, tf_warning_or_error);
33199 /* Helper function, to parse omp for increment expression. */
33201 static tree
33202 cp_parser_omp_for_incr (cp_parser *parser, tree decl)
33204 cp_token *token = cp_lexer_peek_token (parser->lexer);
33205 enum tree_code op;
33206 tree lhs, rhs;
33207 cp_id_kind idk;
33208 bool decl_first;
33210 if (token->type == CPP_PLUS_PLUS || token->type == CPP_MINUS_MINUS)
33212 op = (token->type == CPP_PLUS_PLUS
33213 ? PREINCREMENT_EXPR : PREDECREMENT_EXPR);
33214 cp_lexer_consume_token (parser->lexer);
33215 lhs = cp_parser_simple_cast_expression (parser);
33216 if (lhs != decl
33217 && (!processing_template_decl || !cp_tree_equal (lhs, decl)))
33218 return error_mark_node;
33219 return build2 (op, TREE_TYPE (decl), decl, NULL_TREE);
33222 lhs = cp_parser_primary_expression (parser, false, false, false, &idk);
33223 if (lhs != decl
33224 && (!processing_template_decl || !cp_tree_equal (lhs, decl)))
33225 return error_mark_node;
33227 token = cp_lexer_peek_token (parser->lexer);
33228 if (token->type == CPP_PLUS_PLUS || token->type == CPP_MINUS_MINUS)
33230 op = (token->type == CPP_PLUS_PLUS
33231 ? POSTINCREMENT_EXPR : POSTDECREMENT_EXPR);
33232 cp_lexer_consume_token (parser->lexer);
33233 return build2 (op, TREE_TYPE (decl), decl, NULL_TREE);
33236 op = cp_parser_assignment_operator_opt (parser);
33237 if (op == ERROR_MARK)
33238 return error_mark_node;
33240 if (op != NOP_EXPR)
33242 rhs = cp_parser_assignment_expression (parser);
33243 rhs = build2 (op, TREE_TYPE (decl), decl, rhs);
33244 return build2 (MODIFY_EXPR, TREE_TYPE (decl), decl, rhs);
33247 lhs = cp_parser_binary_expression (parser, false, false,
33248 PREC_ADDITIVE_EXPRESSION, NULL);
33249 token = cp_lexer_peek_token (parser->lexer);
33250 decl_first = (lhs == decl
33251 || (processing_template_decl && cp_tree_equal (lhs, decl)));
33252 if (decl_first)
33253 lhs = NULL_TREE;
33254 if (token->type != CPP_PLUS
33255 && token->type != CPP_MINUS)
33256 return error_mark_node;
33260 op = token->type == CPP_PLUS ? PLUS_EXPR : MINUS_EXPR;
33261 cp_lexer_consume_token (parser->lexer);
33262 rhs = cp_parser_binary_expression (parser, false, false,
33263 PREC_ADDITIVE_EXPRESSION, NULL);
33264 token = cp_lexer_peek_token (parser->lexer);
33265 if (token->type == CPP_PLUS || token->type == CPP_MINUS || decl_first)
33267 if (lhs == NULL_TREE)
33269 if (op == PLUS_EXPR)
33270 lhs = rhs;
33271 else
33272 lhs = build_x_unary_op (input_location, NEGATE_EXPR, rhs,
33273 tf_warning_or_error);
33275 else
33276 lhs = build_x_binary_op (input_location, op, lhs, ERROR_MARK, rhs,
33277 ERROR_MARK, NULL, tf_warning_or_error);
33280 while (token->type == CPP_PLUS || token->type == CPP_MINUS);
33282 if (!decl_first)
33284 if ((rhs != decl
33285 && (!processing_template_decl || !cp_tree_equal (rhs, decl)))
33286 || op == MINUS_EXPR)
33287 return error_mark_node;
33288 rhs = build2 (op, TREE_TYPE (decl), lhs, decl);
33290 else
33291 rhs = build2 (PLUS_EXPR, TREE_TYPE (decl), decl, lhs);
33293 return build2 (MODIFY_EXPR, TREE_TYPE (decl), decl, rhs);
33296 /* Parse the initialization statement of either an OpenMP for loop or
33297 a Cilk Plus for loop.
33299 Return true if the resulting construct should have an
33300 OMP_CLAUSE_PRIVATE added to it. */
33302 static tree
33303 cp_parser_omp_for_loop_init (cp_parser *parser,
33304 enum tree_code code,
33305 tree &this_pre_body,
33306 vec<tree, va_gc> *for_block,
33307 tree &init,
33308 tree &orig_init,
33309 tree &decl,
33310 tree &real_decl)
33312 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
33313 return NULL_TREE;
33315 tree add_private_clause = NULL_TREE;
33317 /* See 2.5.1 (in OpenMP 3.0, similar wording is in 2.5 standard too):
33319 init-expr:
33320 var = lb
33321 integer-type var = lb
33322 random-access-iterator-type var = lb
33323 pointer-type var = lb
33325 cp_decl_specifier_seq type_specifiers;
33327 /* First, try to parse as an initialized declaration. See
33328 cp_parser_condition, from whence the bulk of this is copied. */
33330 cp_parser_parse_tentatively (parser);
33331 cp_parser_type_specifier_seq (parser, /*is_declaration=*/true,
33332 /*is_trailing_return=*/false,
33333 &type_specifiers);
33334 if (cp_parser_parse_definitely (parser))
33336 /* If parsing a type specifier seq succeeded, then this
33337 MUST be a initialized declaration. */
33338 tree asm_specification, attributes;
33339 cp_declarator *declarator;
33341 declarator = cp_parser_declarator (parser,
33342 CP_PARSER_DECLARATOR_NAMED,
33343 /*ctor_dtor_or_conv_p=*/NULL,
33344 /*parenthesized_p=*/NULL,
33345 /*member_p=*/false,
33346 /*friend_p=*/false);
33347 attributes = cp_parser_attributes_opt (parser);
33348 asm_specification = cp_parser_asm_specification_opt (parser);
33350 if (declarator == cp_error_declarator)
33351 cp_parser_skip_to_end_of_statement (parser);
33353 else
33355 tree pushed_scope, auto_node;
33357 decl = start_decl (declarator, &type_specifiers,
33358 SD_INITIALIZED, attributes,
33359 /*prefix_attributes=*/NULL_TREE,
33360 &pushed_scope);
33362 auto_node = type_uses_auto (TREE_TYPE (decl));
33363 if (cp_lexer_next_token_is_not (parser->lexer, CPP_EQ))
33365 if (cp_lexer_next_token_is (parser->lexer,
33366 CPP_OPEN_PAREN))
33368 if (code != CILK_SIMD && code != CILK_FOR)
33369 error ("parenthesized initialization is not allowed in "
33370 "OpenMP %<for%> loop");
33371 else
33372 error ("parenthesized initialization is "
33373 "not allowed in for-loop");
33375 else
33376 /* Trigger an error. */
33377 cp_parser_require (parser, CPP_EQ, RT_EQ);
33379 init = error_mark_node;
33380 cp_parser_skip_to_end_of_statement (parser);
33382 else if (CLASS_TYPE_P (TREE_TYPE (decl))
33383 || type_dependent_expression_p (decl)
33384 || auto_node)
33386 bool is_direct_init, is_non_constant_init;
33388 init = cp_parser_initializer (parser,
33389 &is_direct_init,
33390 &is_non_constant_init);
33392 if (auto_node)
33394 TREE_TYPE (decl)
33395 = do_auto_deduction (TREE_TYPE (decl), init,
33396 auto_node);
33398 if (!CLASS_TYPE_P (TREE_TYPE (decl))
33399 && !type_dependent_expression_p (decl))
33400 goto non_class;
33403 cp_finish_decl (decl, init, !is_non_constant_init,
33404 asm_specification,
33405 LOOKUP_ONLYCONVERTING);
33406 orig_init = init;
33407 if (CLASS_TYPE_P (TREE_TYPE (decl)))
33409 vec_safe_push (for_block, this_pre_body);
33410 init = NULL_TREE;
33412 else
33413 init = pop_stmt_list (this_pre_body);
33414 this_pre_body = NULL_TREE;
33416 else
33418 /* Consume '='. */
33419 cp_lexer_consume_token (parser->lexer);
33420 init = cp_parser_assignment_expression (parser);
33422 non_class:
33423 if (TREE_CODE (TREE_TYPE (decl)) == REFERENCE_TYPE)
33424 init = error_mark_node;
33425 else
33426 cp_finish_decl (decl, NULL_TREE,
33427 /*init_const_expr_p=*/false,
33428 asm_specification,
33429 LOOKUP_ONLYCONVERTING);
33432 if (pushed_scope)
33433 pop_scope (pushed_scope);
33436 else
33438 cp_id_kind idk;
33439 /* If parsing a type specifier sequence failed, then
33440 this MUST be a simple expression. */
33441 if (code == CILK_FOR)
33442 error ("%<_Cilk_for%> allows expression instead of declaration only "
33443 "in C, not in C++");
33444 cp_parser_parse_tentatively (parser);
33445 decl = cp_parser_primary_expression (parser, false, false,
33446 false, &idk);
33447 cp_token *last_tok = cp_lexer_peek_token (parser->lexer);
33448 if (!cp_parser_error_occurred (parser)
33449 && decl
33450 && (TREE_CODE (decl) == COMPONENT_REF
33451 || (TREE_CODE (decl) == SCOPE_REF && TREE_TYPE (decl))))
33453 cp_parser_abort_tentative_parse (parser);
33454 cp_parser_parse_tentatively (parser);
33455 cp_token *token = cp_lexer_peek_token (parser->lexer);
33456 tree name = cp_parser_id_expression (parser, /*template_p=*/false,
33457 /*check_dependency_p=*/true,
33458 /*template_p=*/NULL,
33459 /*declarator_p=*/false,
33460 /*optional_p=*/false);
33461 if (name != error_mark_node
33462 && last_tok == cp_lexer_peek_token (parser->lexer))
33464 decl = cp_parser_lookup_name_simple (parser, name,
33465 token->location);
33466 if (TREE_CODE (decl) == FIELD_DECL)
33467 add_private_clause = omp_privatize_field (decl, false);
33469 cp_parser_abort_tentative_parse (parser);
33470 cp_parser_parse_tentatively (parser);
33471 decl = cp_parser_primary_expression (parser, false, false,
33472 false, &idk);
33474 if (!cp_parser_error_occurred (parser)
33475 && decl
33476 && DECL_P (decl)
33477 && CLASS_TYPE_P (TREE_TYPE (decl)))
33479 tree rhs;
33481 cp_parser_parse_definitely (parser);
33482 cp_parser_require (parser, CPP_EQ, RT_EQ);
33483 rhs = cp_parser_assignment_expression (parser);
33484 orig_init = rhs;
33485 finish_expr_stmt (build_x_modify_expr (EXPR_LOCATION (rhs),
33486 decl, NOP_EXPR,
33487 rhs,
33488 tf_warning_or_error));
33489 if (!add_private_clause)
33490 add_private_clause = decl;
33492 else
33494 decl = NULL;
33495 cp_parser_abort_tentative_parse (parser);
33496 init = cp_parser_expression (parser);
33497 if (init)
33499 if (TREE_CODE (init) == MODIFY_EXPR
33500 || TREE_CODE (init) == MODOP_EXPR)
33501 real_decl = TREE_OPERAND (init, 0);
33505 return add_private_clause;
33508 /* Parse the restricted form of the for statement allowed by OpenMP. */
33510 static tree
33511 cp_parser_omp_for_loop (cp_parser *parser, enum tree_code code, tree clauses,
33512 tree *cclauses, bool *if_p)
33514 tree init, orig_init, cond, incr, body, decl, pre_body = NULL_TREE, ret;
33515 tree real_decl, initv, condv, incrv, declv;
33516 tree this_pre_body, cl, ordered_cl = NULL_TREE;
33517 location_t loc_first;
33518 bool collapse_err = false;
33519 int i, collapse = 1, ordered = 0, count, nbraces = 0;
33520 vec<tree, va_gc> *for_block = make_tree_vector ();
33521 auto_vec<tree, 4> orig_inits;
33523 for (cl = clauses; cl; cl = OMP_CLAUSE_CHAIN (cl))
33524 if (OMP_CLAUSE_CODE (cl) == OMP_CLAUSE_COLLAPSE)
33525 collapse = tree_to_shwi (OMP_CLAUSE_COLLAPSE_EXPR (cl));
33526 else if (OMP_CLAUSE_CODE (cl) == OMP_CLAUSE_ORDERED
33527 && OMP_CLAUSE_ORDERED_EXPR (cl))
33529 ordered_cl = cl;
33530 ordered = tree_to_shwi (OMP_CLAUSE_ORDERED_EXPR (cl));
33533 if (ordered && ordered < collapse)
33535 error_at (OMP_CLAUSE_LOCATION (ordered_cl),
33536 "%<ordered%> clause parameter is less than %<collapse%>");
33537 OMP_CLAUSE_ORDERED_EXPR (ordered_cl)
33538 = build_int_cst (NULL_TREE, collapse);
33539 ordered = collapse;
33541 if (ordered)
33543 for (tree *pc = &clauses; *pc; )
33544 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_LINEAR)
33546 error_at (OMP_CLAUSE_LOCATION (*pc),
33547 "%<linear%> clause may not be specified together "
33548 "with %<ordered%> clause with a parameter");
33549 *pc = OMP_CLAUSE_CHAIN (*pc);
33551 else
33552 pc = &OMP_CLAUSE_CHAIN (*pc);
33555 gcc_assert (collapse >= 1 && ordered >= 0);
33556 count = ordered ? ordered : collapse;
33558 declv = make_tree_vec (count);
33559 initv = make_tree_vec (count);
33560 condv = make_tree_vec (count);
33561 incrv = make_tree_vec (count);
33563 loc_first = cp_lexer_peek_token (parser->lexer)->location;
33565 for (i = 0; i < count; i++)
33567 int bracecount = 0;
33568 tree add_private_clause = NULL_TREE;
33569 location_t loc;
33571 if (code != CILK_FOR
33572 && !cp_lexer_next_token_is_keyword (parser->lexer, RID_FOR))
33574 cp_parser_error (parser, "for statement expected");
33575 return NULL;
33577 if (code == CILK_FOR
33578 && !cp_lexer_next_token_is_keyword (parser->lexer, RID_CILK_FOR))
33580 cp_parser_error (parser, "_Cilk_for statement expected");
33581 return NULL;
33583 loc = cp_lexer_consume_token (parser->lexer)->location;
33585 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
33586 return NULL;
33588 init = orig_init = decl = real_decl = NULL;
33589 this_pre_body = push_stmt_list ();
33591 add_private_clause
33592 = cp_parser_omp_for_loop_init (parser, code,
33593 this_pre_body, for_block,
33594 init, orig_init, decl, real_decl);
33596 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
33597 if (this_pre_body)
33599 this_pre_body = pop_stmt_list (this_pre_body);
33600 if (pre_body)
33602 tree t = pre_body;
33603 pre_body = push_stmt_list ();
33604 add_stmt (t);
33605 add_stmt (this_pre_body);
33606 pre_body = pop_stmt_list (pre_body);
33608 else
33609 pre_body = this_pre_body;
33612 if (decl)
33613 real_decl = decl;
33614 if (cclauses != NULL
33615 && cclauses[C_OMP_CLAUSE_SPLIT_PARALLEL] != NULL
33616 && real_decl != NULL_TREE)
33618 tree *c;
33619 for (c = &cclauses[C_OMP_CLAUSE_SPLIT_PARALLEL]; *c ; )
33620 if (OMP_CLAUSE_CODE (*c) == OMP_CLAUSE_FIRSTPRIVATE
33621 && OMP_CLAUSE_DECL (*c) == real_decl)
33623 error_at (loc, "iteration variable %qD"
33624 " should not be firstprivate", real_decl);
33625 *c = OMP_CLAUSE_CHAIN (*c);
33627 else if (OMP_CLAUSE_CODE (*c) == OMP_CLAUSE_LASTPRIVATE
33628 && OMP_CLAUSE_DECL (*c) == real_decl)
33630 /* Move lastprivate (decl) clause to OMP_FOR_CLAUSES. */
33631 tree l = *c;
33632 *c = OMP_CLAUSE_CHAIN (*c);
33633 if (code == OMP_SIMD)
33635 OMP_CLAUSE_CHAIN (l) = cclauses[C_OMP_CLAUSE_SPLIT_FOR];
33636 cclauses[C_OMP_CLAUSE_SPLIT_FOR] = l;
33638 else
33640 OMP_CLAUSE_CHAIN (l) = clauses;
33641 clauses = l;
33643 add_private_clause = NULL_TREE;
33645 else
33647 if (OMP_CLAUSE_CODE (*c) == OMP_CLAUSE_PRIVATE
33648 && OMP_CLAUSE_DECL (*c) == real_decl)
33649 add_private_clause = NULL_TREE;
33650 c = &OMP_CLAUSE_CHAIN (*c);
33654 if (add_private_clause)
33656 tree c;
33657 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
33659 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_PRIVATE
33660 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE)
33661 && OMP_CLAUSE_DECL (c) == decl)
33662 break;
33663 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
33664 && OMP_CLAUSE_DECL (c) == decl)
33665 error_at (loc, "iteration variable %qD "
33666 "should not be firstprivate",
33667 decl);
33668 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
33669 && OMP_CLAUSE_DECL (c) == decl)
33670 error_at (loc, "iteration variable %qD should not be reduction",
33671 decl);
33673 if (c == NULL)
33675 if (code != OMP_SIMD)
33676 c = build_omp_clause (loc, OMP_CLAUSE_PRIVATE);
33677 else if (collapse == 1)
33678 c = build_omp_clause (loc, OMP_CLAUSE_LINEAR);
33679 else
33680 c = build_omp_clause (loc, OMP_CLAUSE_LASTPRIVATE);
33681 OMP_CLAUSE_DECL (c) = add_private_clause;
33682 c = finish_omp_clauses (c, C_ORT_OMP);
33683 if (c)
33685 OMP_CLAUSE_CHAIN (c) = clauses;
33686 clauses = c;
33687 /* For linear, signal that we need to fill up
33688 the so far unknown linear step. */
33689 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LINEAR)
33690 OMP_CLAUSE_LINEAR_STEP (c) = NULL_TREE;
33695 cond = NULL;
33696 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
33697 cond = cp_parser_omp_for_cond (parser, decl, code);
33698 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
33700 incr = NULL;
33701 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN))
33703 /* If decl is an iterator, preserve the operator on decl
33704 until finish_omp_for. */
33705 if (real_decl
33706 && ((processing_template_decl
33707 && (TREE_TYPE (real_decl) == NULL_TREE
33708 || !POINTER_TYPE_P (TREE_TYPE (real_decl))))
33709 || CLASS_TYPE_P (TREE_TYPE (real_decl))))
33710 incr = cp_parser_omp_for_incr (parser, real_decl);
33711 else
33712 incr = cp_parser_expression (parser);
33713 if (!EXPR_HAS_LOCATION (incr))
33714 protected_set_expr_location (incr, input_location);
33717 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
33718 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
33719 /*or_comma=*/false,
33720 /*consume_paren=*/true);
33722 TREE_VEC_ELT (declv, i) = decl;
33723 TREE_VEC_ELT (initv, i) = init;
33724 TREE_VEC_ELT (condv, i) = cond;
33725 TREE_VEC_ELT (incrv, i) = incr;
33726 if (orig_init)
33728 orig_inits.safe_grow_cleared (i + 1);
33729 orig_inits[i] = orig_init;
33732 if (i == count - 1)
33733 break;
33735 /* FIXME: OpenMP 3.0 draft isn't very clear on what exactly is allowed
33736 in between the collapsed for loops to be still considered perfectly
33737 nested. Hopefully the final version clarifies this.
33738 For now handle (multiple) {'s and empty statements. */
33739 cp_parser_parse_tentatively (parser);
33742 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_FOR))
33743 break;
33744 else if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
33746 cp_lexer_consume_token (parser->lexer);
33747 bracecount++;
33749 else if (bracecount
33750 && cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
33751 cp_lexer_consume_token (parser->lexer);
33752 else
33754 loc = cp_lexer_peek_token (parser->lexer)->location;
33755 error_at (loc, "not enough collapsed for loops");
33756 collapse_err = true;
33757 cp_parser_abort_tentative_parse (parser);
33758 declv = NULL_TREE;
33759 break;
33762 while (1);
33764 if (declv)
33766 cp_parser_parse_definitely (parser);
33767 nbraces += bracecount;
33771 if (nbraces)
33772 if_p = NULL;
33774 /* Note that we saved the original contents of this flag when we entered
33775 the structured block, and so we don't need to re-save it here. */
33776 if (code == CILK_SIMD || code == CILK_FOR)
33777 parser->in_statement = IN_CILK_SIMD_FOR;
33778 else
33779 parser->in_statement = IN_OMP_FOR;
33781 /* Note that the grammar doesn't call for a structured block here,
33782 though the loop as a whole is a structured block. */
33783 body = push_stmt_list ();
33784 cp_parser_statement (parser, NULL_TREE, false, if_p);
33785 body = pop_stmt_list (body);
33787 if (declv == NULL_TREE)
33788 ret = NULL_TREE;
33789 else
33790 ret = finish_omp_for (loc_first, code, declv, NULL, initv, condv, incrv,
33791 body, pre_body, &orig_inits, clauses);
33793 while (nbraces)
33795 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
33797 cp_lexer_consume_token (parser->lexer);
33798 nbraces--;
33800 else if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
33801 cp_lexer_consume_token (parser->lexer);
33802 else
33804 if (!collapse_err)
33806 error_at (cp_lexer_peek_token (parser->lexer)->location,
33807 "collapsed loops not perfectly nested");
33809 collapse_err = true;
33810 cp_parser_statement_seq_opt (parser, NULL);
33811 if (cp_lexer_next_token_is (parser->lexer, CPP_EOF))
33812 break;
33816 while (!for_block->is_empty ())
33817 add_stmt (pop_stmt_list (for_block->pop ()));
33818 release_tree_vector (for_block);
33820 return ret;
33823 /* Helper function for OpenMP parsing, split clauses and call
33824 finish_omp_clauses on each of the set of clauses afterwards. */
33826 static void
33827 cp_omp_split_clauses (location_t loc, enum tree_code code,
33828 omp_clause_mask mask, tree clauses, tree *cclauses)
33830 int i;
33831 c_omp_split_clauses (loc, code, mask, clauses, cclauses);
33832 for (i = 0; i < C_OMP_CLAUSE_SPLIT_COUNT; i++)
33833 if (cclauses[i])
33834 cclauses[i] = finish_omp_clauses (cclauses[i], C_ORT_OMP);
33837 /* OpenMP 4.0:
33838 #pragma omp simd simd-clause[optseq] new-line
33839 for-loop */
33841 #define OMP_SIMD_CLAUSE_MASK \
33842 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SAFELEN) \
33843 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SIMDLEN) \
33844 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LINEAR) \
33845 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_ALIGNED) \
33846 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
33847 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
33848 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_REDUCTION) \
33849 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COLLAPSE))
33851 static tree
33852 cp_parser_omp_simd (cp_parser *parser, cp_token *pragma_tok,
33853 char *p_name, omp_clause_mask mask, tree *cclauses,
33854 bool *if_p)
33856 tree clauses, sb, ret;
33857 unsigned int save;
33858 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
33860 strcat (p_name, " simd");
33861 mask |= OMP_SIMD_CLAUSE_MASK;
33863 clauses = cp_parser_omp_all_clauses (parser, mask, p_name, pragma_tok,
33864 cclauses == NULL);
33865 if (cclauses)
33867 cp_omp_split_clauses (loc, OMP_SIMD, mask, clauses, cclauses);
33868 clauses = cclauses[C_OMP_CLAUSE_SPLIT_SIMD];
33869 tree c = find_omp_clause (cclauses[C_OMP_CLAUSE_SPLIT_FOR],
33870 OMP_CLAUSE_ORDERED);
33871 if (c && OMP_CLAUSE_ORDERED_EXPR (c))
33873 error_at (OMP_CLAUSE_LOCATION (c),
33874 "%<ordered%> clause with parameter may not be specified "
33875 "on %qs construct", p_name);
33876 OMP_CLAUSE_ORDERED_EXPR (c) = NULL_TREE;
33880 sb = begin_omp_structured_block ();
33881 save = cp_parser_begin_omp_structured_block (parser);
33883 ret = cp_parser_omp_for_loop (parser, OMP_SIMD, clauses, cclauses, if_p);
33885 cp_parser_end_omp_structured_block (parser, save);
33886 add_stmt (finish_omp_structured_block (sb));
33888 return ret;
33891 /* OpenMP 2.5:
33892 #pragma omp for for-clause[optseq] new-line
33893 for-loop
33895 OpenMP 4.0:
33896 #pragma omp for simd for-simd-clause[optseq] new-line
33897 for-loop */
33899 #define OMP_FOR_CLAUSE_MASK \
33900 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
33901 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
33902 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
33903 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LINEAR) \
33904 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_REDUCTION) \
33905 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_ORDERED) \
33906 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SCHEDULE) \
33907 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT) \
33908 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COLLAPSE))
33910 static tree
33911 cp_parser_omp_for (cp_parser *parser, cp_token *pragma_tok,
33912 char *p_name, omp_clause_mask mask, tree *cclauses,
33913 bool *if_p)
33915 tree clauses, sb, ret;
33916 unsigned int save;
33917 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
33919 strcat (p_name, " for");
33920 mask |= OMP_FOR_CLAUSE_MASK;
33921 if (cclauses)
33922 mask &= ~(OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT);
33923 /* Composite distribute parallel for{, simd} disallows ordered clause. */
33924 if ((mask & (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DIST_SCHEDULE)) != 0)
33925 mask &= ~(OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_ORDERED);
33927 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
33929 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
33930 const char *p = IDENTIFIER_POINTER (id);
33932 if (strcmp (p, "simd") == 0)
33934 tree cclauses_buf[C_OMP_CLAUSE_SPLIT_COUNT];
33935 if (cclauses == NULL)
33936 cclauses = cclauses_buf;
33938 cp_lexer_consume_token (parser->lexer);
33939 if (!flag_openmp) /* flag_openmp_simd */
33940 return cp_parser_omp_simd (parser, pragma_tok, p_name, mask,
33941 cclauses, if_p);
33942 sb = begin_omp_structured_block ();
33943 save = cp_parser_begin_omp_structured_block (parser);
33944 ret = cp_parser_omp_simd (parser, pragma_tok, p_name, mask,
33945 cclauses, if_p);
33946 cp_parser_end_omp_structured_block (parser, save);
33947 tree body = finish_omp_structured_block (sb);
33948 if (ret == NULL)
33949 return ret;
33950 ret = make_node (OMP_FOR);
33951 TREE_TYPE (ret) = void_type_node;
33952 OMP_FOR_BODY (ret) = body;
33953 OMP_FOR_CLAUSES (ret) = cclauses[C_OMP_CLAUSE_SPLIT_FOR];
33954 SET_EXPR_LOCATION (ret, loc);
33955 add_stmt (ret);
33956 return ret;
33959 if (!flag_openmp) /* flag_openmp_simd */
33961 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
33962 return NULL_TREE;
33965 /* Composite distribute parallel for disallows linear clause. */
33966 if ((mask & (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DIST_SCHEDULE)) != 0)
33967 mask &= ~(OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LINEAR);
33969 clauses = cp_parser_omp_all_clauses (parser, mask, p_name, pragma_tok,
33970 cclauses == NULL);
33971 if (cclauses)
33973 cp_omp_split_clauses (loc, OMP_FOR, mask, clauses, cclauses);
33974 clauses = cclauses[C_OMP_CLAUSE_SPLIT_FOR];
33977 sb = begin_omp_structured_block ();
33978 save = cp_parser_begin_omp_structured_block (parser);
33980 ret = cp_parser_omp_for_loop (parser, OMP_FOR, clauses, cclauses, if_p);
33982 cp_parser_end_omp_structured_block (parser, save);
33983 add_stmt (finish_omp_structured_block (sb));
33985 return ret;
33988 /* OpenMP 2.5:
33989 # pragma omp master new-line
33990 structured-block */
33992 static tree
33993 cp_parser_omp_master (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
33995 cp_parser_require_pragma_eol (parser, pragma_tok);
33996 return c_finish_omp_master (input_location,
33997 cp_parser_omp_structured_block (parser, if_p));
34000 /* OpenMP 2.5:
34001 # pragma omp ordered new-line
34002 structured-block
34004 OpenMP 4.5:
34005 # pragma omp ordered ordered-clauses new-line
34006 structured-block */
34008 #define OMP_ORDERED_CLAUSE_MASK \
34009 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_THREADS) \
34010 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SIMD))
34012 #define OMP_ORDERED_DEPEND_CLAUSE_MASK \
34013 (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEPEND)
34015 static bool
34016 cp_parser_omp_ordered (cp_parser *parser, cp_token *pragma_tok,
34017 enum pragma_context context, bool *if_p)
34019 location_t loc = pragma_tok->location;
34021 if (context != pragma_stmt && context != pragma_compound)
34023 cp_parser_error (parser, "expected declaration specifiers");
34024 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
34025 return false;
34028 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
34030 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
34031 const char *p = IDENTIFIER_POINTER (id);
34033 if (strcmp (p, "depend") == 0)
34035 if (context == pragma_stmt)
34037 error_at (pragma_tok->location, "%<#pragma omp ordered%> with "
34038 "%<depend%> clause may only be used in compound "
34039 "statements");
34040 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
34041 return false;
34043 tree clauses
34044 = cp_parser_omp_all_clauses (parser,
34045 OMP_ORDERED_DEPEND_CLAUSE_MASK,
34046 "#pragma omp ordered", pragma_tok);
34047 c_finish_omp_ordered (loc, clauses, NULL_TREE);
34048 return false;
34052 tree clauses
34053 = cp_parser_omp_all_clauses (parser, OMP_ORDERED_CLAUSE_MASK,
34054 "#pragma omp ordered", pragma_tok);
34055 c_finish_omp_ordered (loc, clauses,
34056 cp_parser_omp_structured_block (parser, if_p));
34057 return true;
34060 /* OpenMP 2.5:
34062 section-scope:
34063 { section-sequence }
34065 section-sequence:
34066 section-directive[opt] structured-block
34067 section-sequence section-directive structured-block */
34069 static tree
34070 cp_parser_omp_sections_scope (cp_parser *parser)
34072 tree stmt, substmt;
34073 bool error_suppress = false;
34074 cp_token *tok;
34076 if (!cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
34077 return NULL_TREE;
34079 stmt = push_stmt_list ();
34081 if (cp_parser_pragma_kind (cp_lexer_peek_token (parser->lexer))
34082 != PRAGMA_OMP_SECTION)
34084 substmt = cp_parser_omp_structured_block (parser, NULL);
34085 substmt = build1 (OMP_SECTION, void_type_node, substmt);
34086 add_stmt (substmt);
34089 while (1)
34091 tok = cp_lexer_peek_token (parser->lexer);
34092 if (tok->type == CPP_CLOSE_BRACE)
34093 break;
34094 if (tok->type == CPP_EOF)
34095 break;
34097 if (cp_parser_pragma_kind (tok) == PRAGMA_OMP_SECTION)
34099 cp_lexer_consume_token (parser->lexer);
34100 cp_parser_require_pragma_eol (parser, tok);
34101 error_suppress = false;
34103 else if (!error_suppress)
34105 cp_parser_error (parser, "expected %<#pragma omp section%> or %<}%>");
34106 error_suppress = true;
34109 substmt = cp_parser_omp_structured_block (parser, NULL);
34110 substmt = build1 (OMP_SECTION, void_type_node, substmt);
34111 add_stmt (substmt);
34113 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
34115 substmt = pop_stmt_list (stmt);
34117 stmt = make_node (OMP_SECTIONS);
34118 TREE_TYPE (stmt) = void_type_node;
34119 OMP_SECTIONS_BODY (stmt) = substmt;
34121 add_stmt (stmt);
34122 return stmt;
34125 /* OpenMP 2.5:
34126 # pragma omp sections sections-clause[optseq] newline
34127 sections-scope */
34129 #define OMP_SECTIONS_CLAUSE_MASK \
34130 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
34131 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
34132 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
34133 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_REDUCTION) \
34134 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT))
34136 static tree
34137 cp_parser_omp_sections (cp_parser *parser, cp_token *pragma_tok,
34138 char *p_name, omp_clause_mask mask, tree *cclauses)
34140 tree clauses, ret;
34141 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
34143 strcat (p_name, " sections");
34144 mask |= OMP_SECTIONS_CLAUSE_MASK;
34145 if (cclauses)
34146 mask &= ~(OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT);
34148 clauses = cp_parser_omp_all_clauses (parser, mask, p_name, pragma_tok,
34149 cclauses == NULL);
34150 if (cclauses)
34152 cp_omp_split_clauses (loc, OMP_SECTIONS, mask, clauses, cclauses);
34153 clauses = cclauses[C_OMP_CLAUSE_SPLIT_SECTIONS];
34156 ret = cp_parser_omp_sections_scope (parser);
34157 if (ret)
34158 OMP_SECTIONS_CLAUSES (ret) = clauses;
34160 return ret;
34163 /* OpenMP 2.5:
34164 # pragma omp parallel parallel-clause[optseq] new-line
34165 structured-block
34166 # pragma omp parallel for parallel-for-clause[optseq] new-line
34167 structured-block
34168 # pragma omp parallel sections parallel-sections-clause[optseq] new-line
34169 structured-block
34171 OpenMP 4.0:
34172 # pragma omp parallel for simd parallel-for-simd-clause[optseq] new-line
34173 structured-block */
34175 #define OMP_PARALLEL_CLAUSE_MASK \
34176 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
34177 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
34178 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
34179 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEFAULT) \
34180 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SHARED) \
34181 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COPYIN) \
34182 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_REDUCTION) \
34183 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NUM_THREADS) \
34184 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PROC_BIND))
34186 static tree
34187 cp_parser_omp_parallel (cp_parser *parser, cp_token *pragma_tok,
34188 char *p_name, omp_clause_mask mask, tree *cclauses,
34189 bool *if_p)
34191 tree stmt, clauses, block;
34192 unsigned int save;
34193 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
34195 strcat (p_name, " parallel");
34196 mask |= OMP_PARALLEL_CLAUSE_MASK;
34197 /* #pragma omp target parallel{, for, for simd} disallow copyin clause. */
34198 if ((mask & (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MAP)) != 0
34199 && (mask & (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DIST_SCHEDULE)) == 0)
34200 mask &= ~(OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COPYIN);
34202 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_FOR))
34204 tree cclauses_buf[C_OMP_CLAUSE_SPLIT_COUNT];
34205 if (cclauses == NULL)
34206 cclauses = cclauses_buf;
34208 cp_lexer_consume_token (parser->lexer);
34209 if (!flag_openmp) /* flag_openmp_simd */
34210 return cp_parser_omp_for (parser, pragma_tok, p_name, mask, cclauses,
34211 if_p);
34212 block = begin_omp_parallel ();
34213 save = cp_parser_begin_omp_structured_block (parser);
34214 tree ret = cp_parser_omp_for (parser, pragma_tok, p_name, mask, cclauses,
34215 if_p);
34216 cp_parser_end_omp_structured_block (parser, save);
34217 stmt = finish_omp_parallel (cclauses[C_OMP_CLAUSE_SPLIT_PARALLEL],
34218 block);
34219 if (ret == NULL_TREE)
34220 return ret;
34221 OMP_PARALLEL_COMBINED (stmt) = 1;
34222 return stmt;
34224 /* When combined with distribute, parallel has to be followed by for.
34225 #pragma omp target parallel is allowed though. */
34226 else if (cclauses
34227 && (mask & (OMP_CLAUSE_MASK_1
34228 << PRAGMA_OMP_CLAUSE_DIST_SCHEDULE)) != 0)
34230 error_at (loc, "expected %<for%> after %qs", p_name);
34231 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
34232 return NULL_TREE;
34234 else if (!flag_openmp) /* flag_openmp_simd */
34236 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
34237 return NULL_TREE;
34239 else if (cclauses == NULL && cp_lexer_next_token_is (parser->lexer, CPP_NAME))
34241 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
34242 const char *p = IDENTIFIER_POINTER (id);
34243 if (strcmp (p, "sections") == 0)
34245 tree cclauses_buf[C_OMP_CLAUSE_SPLIT_COUNT];
34246 cclauses = cclauses_buf;
34248 cp_lexer_consume_token (parser->lexer);
34249 block = begin_omp_parallel ();
34250 save = cp_parser_begin_omp_structured_block (parser);
34251 cp_parser_omp_sections (parser, pragma_tok, p_name, mask, cclauses);
34252 cp_parser_end_omp_structured_block (parser, save);
34253 stmt = finish_omp_parallel (cclauses[C_OMP_CLAUSE_SPLIT_PARALLEL],
34254 block);
34255 OMP_PARALLEL_COMBINED (stmt) = 1;
34256 return stmt;
34260 clauses = cp_parser_omp_all_clauses (parser, mask, p_name, pragma_tok);
34261 if (cclauses)
34263 cp_omp_split_clauses (loc, OMP_PARALLEL, mask, clauses, cclauses);
34264 clauses = cclauses[C_OMP_CLAUSE_SPLIT_PARALLEL];
34267 block = begin_omp_parallel ();
34268 save = cp_parser_begin_omp_structured_block (parser);
34269 cp_parser_statement (parser, NULL_TREE, false, if_p);
34270 cp_parser_end_omp_structured_block (parser, save);
34271 stmt = finish_omp_parallel (clauses, block);
34272 return stmt;
34275 /* OpenMP 2.5:
34276 # pragma omp single single-clause[optseq] new-line
34277 structured-block */
34279 #define OMP_SINGLE_CLAUSE_MASK \
34280 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
34281 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
34282 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COPYPRIVATE) \
34283 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT))
34285 static tree
34286 cp_parser_omp_single (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
34288 tree stmt = make_node (OMP_SINGLE);
34289 TREE_TYPE (stmt) = void_type_node;
34291 OMP_SINGLE_CLAUSES (stmt)
34292 = cp_parser_omp_all_clauses (parser, OMP_SINGLE_CLAUSE_MASK,
34293 "#pragma omp single", pragma_tok);
34294 OMP_SINGLE_BODY (stmt) = cp_parser_omp_structured_block (parser, if_p);
34296 return add_stmt (stmt);
34299 /* OpenMP 3.0:
34300 # pragma omp task task-clause[optseq] new-line
34301 structured-block */
34303 #define OMP_TASK_CLAUSE_MASK \
34304 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
34305 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_UNTIED) \
34306 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEFAULT) \
34307 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
34308 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
34309 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SHARED) \
34310 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FINAL) \
34311 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MERGEABLE) \
34312 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEPEND) \
34313 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIORITY))
34315 static tree
34316 cp_parser_omp_task (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
34318 tree clauses, block;
34319 unsigned int save;
34321 clauses = cp_parser_omp_all_clauses (parser, OMP_TASK_CLAUSE_MASK,
34322 "#pragma omp task", pragma_tok);
34323 block = begin_omp_task ();
34324 save = cp_parser_begin_omp_structured_block (parser);
34325 cp_parser_statement (parser, NULL_TREE, false, if_p);
34326 cp_parser_end_omp_structured_block (parser, save);
34327 return finish_omp_task (clauses, block);
34330 /* OpenMP 3.0:
34331 # pragma omp taskwait new-line */
34333 static void
34334 cp_parser_omp_taskwait (cp_parser *parser, cp_token *pragma_tok)
34336 cp_parser_require_pragma_eol (parser, pragma_tok);
34337 finish_omp_taskwait ();
34340 /* OpenMP 3.1:
34341 # pragma omp taskyield new-line */
34343 static void
34344 cp_parser_omp_taskyield (cp_parser *parser, cp_token *pragma_tok)
34346 cp_parser_require_pragma_eol (parser, pragma_tok);
34347 finish_omp_taskyield ();
34350 /* OpenMP 4.0:
34351 # pragma omp taskgroup new-line
34352 structured-block */
34354 static tree
34355 cp_parser_omp_taskgroup (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
34357 cp_parser_require_pragma_eol (parser, pragma_tok);
34358 return c_finish_omp_taskgroup (input_location,
34359 cp_parser_omp_structured_block (parser,
34360 if_p));
34364 /* OpenMP 2.5:
34365 # pragma omp threadprivate (variable-list) */
34367 static void
34368 cp_parser_omp_threadprivate (cp_parser *parser, cp_token *pragma_tok)
34370 tree vars;
34372 vars = cp_parser_omp_var_list (parser, OMP_CLAUSE_ERROR, NULL);
34373 cp_parser_require_pragma_eol (parser, pragma_tok);
34375 finish_omp_threadprivate (vars);
34378 /* OpenMP 4.0:
34379 # pragma omp cancel cancel-clause[optseq] new-line */
34381 #define OMP_CANCEL_CLAUSE_MASK \
34382 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PARALLEL) \
34383 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FOR) \
34384 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SECTIONS) \
34385 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_TASKGROUP) \
34386 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF))
34388 static void
34389 cp_parser_omp_cancel (cp_parser *parser, cp_token *pragma_tok)
34391 tree clauses = cp_parser_omp_all_clauses (parser, OMP_CANCEL_CLAUSE_MASK,
34392 "#pragma omp cancel", pragma_tok);
34393 finish_omp_cancel (clauses);
34396 /* OpenMP 4.0:
34397 # pragma omp cancellation point cancelpt-clause[optseq] new-line */
34399 #define OMP_CANCELLATION_POINT_CLAUSE_MASK \
34400 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PARALLEL) \
34401 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FOR) \
34402 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SECTIONS) \
34403 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_TASKGROUP))
34405 static void
34406 cp_parser_omp_cancellation_point (cp_parser *parser, cp_token *pragma_tok)
34408 tree clauses;
34409 bool point_seen = false;
34411 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
34413 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
34414 const char *p = IDENTIFIER_POINTER (id);
34416 if (strcmp (p, "point") == 0)
34418 cp_lexer_consume_token (parser->lexer);
34419 point_seen = true;
34422 if (!point_seen)
34424 cp_parser_error (parser, "expected %<point%>");
34425 cp_parser_require_pragma_eol (parser, pragma_tok);
34426 return;
34429 clauses = cp_parser_omp_all_clauses (parser,
34430 OMP_CANCELLATION_POINT_CLAUSE_MASK,
34431 "#pragma omp cancellation point",
34432 pragma_tok);
34433 finish_omp_cancellation_point (clauses);
34436 /* OpenMP 4.0:
34437 #pragma omp distribute distribute-clause[optseq] new-line
34438 for-loop */
34440 #define OMP_DISTRIBUTE_CLAUSE_MASK \
34441 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
34442 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
34443 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
34444 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DIST_SCHEDULE)\
34445 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COLLAPSE))
34447 static tree
34448 cp_parser_omp_distribute (cp_parser *parser, cp_token *pragma_tok,
34449 char *p_name, omp_clause_mask mask, tree *cclauses,
34450 bool *if_p)
34452 tree clauses, sb, ret;
34453 unsigned int save;
34454 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
34456 strcat (p_name, " distribute");
34457 mask |= OMP_DISTRIBUTE_CLAUSE_MASK;
34459 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
34461 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
34462 const char *p = IDENTIFIER_POINTER (id);
34463 bool simd = false;
34464 bool parallel = false;
34466 if (strcmp (p, "simd") == 0)
34467 simd = true;
34468 else
34469 parallel = strcmp (p, "parallel") == 0;
34470 if (parallel || simd)
34472 tree cclauses_buf[C_OMP_CLAUSE_SPLIT_COUNT];
34473 if (cclauses == NULL)
34474 cclauses = cclauses_buf;
34475 cp_lexer_consume_token (parser->lexer);
34476 if (!flag_openmp) /* flag_openmp_simd */
34478 if (simd)
34479 return cp_parser_omp_simd (parser, pragma_tok, p_name, mask,
34480 cclauses, if_p);
34481 else
34482 return cp_parser_omp_parallel (parser, pragma_tok, p_name, mask,
34483 cclauses, if_p);
34485 sb = begin_omp_structured_block ();
34486 save = cp_parser_begin_omp_structured_block (parser);
34487 if (simd)
34488 ret = cp_parser_omp_simd (parser, pragma_tok, p_name, mask,
34489 cclauses, if_p);
34490 else
34491 ret = cp_parser_omp_parallel (parser, pragma_tok, p_name, mask,
34492 cclauses, if_p);
34493 cp_parser_end_omp_structured_block (parser, save);
34494 tree body = finish_omp_structured_block (sb);
34495 if (ret == NULL)
34496 return ret;
34497 ret = make_node (OMP_DISTRIBUTE);
34498 TREE_TYPE (ret) = void_type_node;
34499 OMP_FOR_BODY (ret) = body;
34500 OMP_FOR_CLAUSES (ret) = cclauses[C_OMP_CLAUSE_SPLIT_DISTRIBUTE];
34501 SET_EXPR_LOCATION (ret, loc);
34502 add_stmt (ret);
34503 return ret;
34506 if (!flag_openmp) /* flag_openmp_simd */
34508 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
34509 return NULL_TREE;
34512 clauses = cp_parser_omp_all_clauses (parser, mask, p_name, pragma_tok,
34513 cclauses == NULL);
34514 if (cclauses)
34516 cp_omp_split_clauses (loc, OMP_DISTRIBUTE, mask, clauses, cclauses);
34517 clauses = cclauses[C_OMP_CLAUSE_SPLIT_DISTRIBUTE];
34520 sb = begin_omp_structured_block ();
34521 save = cp_parser_begin_omp_structured_block (parser);
34523 ret = cp_parser_omp_for_loop (parser, OMP_DISTRIBUTE, clauses, NULL, if_p);
34525 cp_parser_end_omp_structured_block (parser, save);
34526 add_stmt (finish_omp_structured_block (sb));
34528 return ret;
34531 /* OpenMP 4.0:
34532 # pragma omp teams teams-clause[optseq] new-line
34533 structured-block */
34535 #define OMP_TEAMS_CLAUSE_MASK \
34536 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
34537 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
34538 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SHARED) \
34539 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_REDUCTION) \
34540 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NUM_TEAMS) \
34541 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_THREAD_LIMIT) \
34542 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEFAULT))
34544 static tree
34545 cp_parser_omp_teams (cp_parser *parser, cp_token *pragma_tok,
34546 char *p_name, omp_clause_mask mask, tree *cclauses,
34547 bool *if_p)
34549 tree clauses, sb, ret;
34550 unsigned int save;
34551 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
34553 strcat (p_name, " teams");
34554 mask |= OMP_TEAMS_CLAUSE_MASK;
34556 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
34558 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
34559 const char *p = IDENTIFIER_POINTER (id);
34560 if (strcmp (p, "distribute") == 0)
34562 tree cclauses_buf[C_OMP_CLAUSE_SPLIT_COUNT];
34563 if (cclauses == NULL)
34564 cclauses = cclauses_buf;
34566 cp_lexer_consume_token (parser->lexer);
34567 if (!flag_openmp) /* flag_openmp_simd */
34568 return cp_parser_omp_distribute (parser, pragma_tok, p_name, mask,
34569 cclauses, if_p);
34570 sb = begin_omp_structured_block ();
34571 save = cp_parser_begin_omp_structured_block (parser);
34572 ret = cp_parser_omp_distribute (parser, pragma_tok, p_name, mask,
34573 cclauses, if_p);
34574 cp_parser_end_omp_structured_block (parser, save);
34575 tree body = finish_omp_structured_block (sb);
34576 if (ret == NULL)
34577 return ret;
34578 clauses = cclauses[C_OMP_CLAUSE_SPLIT_TEAMS];
34579 ret = make_node (OMP_TEAMS);
34580 TREE_TYPE (ret) = void_type_node;
34581 OMP_TEAMS_CLAUSES (ret) = clauses;
34582 OMP_TEAMS_BODY (ret) = body;
34583 OMP_TEAMS_COMBINED (ret) = 1;
34584 return add_stmt (ret);
34587 if (!flag_openmp) /* flag_openmp_simd */
34589 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
34590 return NULL_TREE;
34593 clauses = cp_parser_omp_all_clauses (parser, mask, p_name, pragma_tok,
34594 cclauses == NULL);
34595 if (cclauses)
34597 cp_omp_split_clauses (loc, OMP_TEAMS, mask, clauses, cclauses);
34598 clauses = cclauses[C_OMP_CLAUSE_SPLIT_TEAMS];
34601 tree stmt = make_node (OMP_TEAMS);
34602 TREE_TYPE (stmt) = void_type_node;
34603 OMP_TEAMS_CLAUSES (stmt) = clauses;
34604 OMP_TEAMS_BODY (stmt) = cp_parser_omp_structured_block (parser, if_p);
34606 return add_stmt (stmt);
34609 /* OpenMP 4.0:
34610 # pragma omp target data target-data-clause[optseq] new-line
34611 structured-block */
34613 #define OMP_TARGET_DATA_CLAUSE_MASK \
34614 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEVICE) \
34615 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MAP) \
34616 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
34617 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_USE_DEVICE_PTR))
34619 static tree
34620 cp_parser_omp_target_data (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
34622 tree clauses
34623 = cp_parser_omp_all_clauses (parser, OMP_TARGET_DATA_CLAUSE_MASK,
34624 "#pragma omp target data", pragma_tok);
34625 int map_seen = 0;
34626 for (tree *pc = &clauses; *pc;)
34628 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_MAP)
34629 switch (OMP_CLAUSE_MAP_KIND (*pc))
34631 case GOMP_MAP_TO:
34632 case GOMP_MAP_ALWAYS_TO:
34633 case GOMP_MAP_FROM:
34634 case GOMP_MAP_ALWAYS_FROM:
34635 case GOMP_MAP_TOFROM:
34636 case GOMP_MAP_ALWAYS_TOFROM:
34637 case GOMP_MAP_ALLOC:
34638 map_seen = 3;
34639 break;
34640 case GOMP_MAP_FIRSTPRIVATE_POINTER:
34641 case GOMP_MAP_FIRSTPRIVATE_REFERENCE:
34642 case GOMP_MAP_ALWAYS_POINTER:
34643 break;
34644 default:
34645 map_seen |= 1;
34646 error_at (OMP_CLAUSE_LOCATION (*pc),
34647 "%<#pragma omp target data%> with map-type other "
34648 "than %<to%>, %<from%>, %<tofrom%> or %<alloc%> "
34649 "on %<map%> clause");
34650 *pc = OMP_CLAUSE_CHAIN (*pc);
34651 continue;
34653 pc = &OMP_CLAUSE_CHAIN (*pc);
34656 if (map_seen != 3)
34658 if (map_seen == 0)
34659 error_at (pragma_tok->location,
34660 "%<#pragma omp target data%> must contain at least "
34661 "one %<map%> clause");
34662 return NULL_TREE;
34665 tree stmt = make_node (OMP_TARGET_DATA);
34666 TREE_TYPE (stmt) = void_type_node;
34667 OMP_TARGET_DATA_CLAUSES (stmt) = clauses;
34669 keep_next_level (true);
34670 OMP_TARGET_DATA_BODY (stmt) = cp_parser_omp_structured_block (parser, if_p);
34672 SET_EXPR_LOCATION (stmt, pragma_tok->location);
34673 return add_stmt (stmt);
34676 /* OpenMP 4.5:
34677 # pragma omp target enter data target-enter-data-clause[optseq] new-line
34678 structured-block */
34680 #define OMP_TARGET_ENTER_DATA_CLAUSE_MASK \
34681 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEVICE) \
34682 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MAP) \
34683 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
34684 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEPEND) \
34685 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT))
34687 static tree
34688 cp_parser_omp_target_enter_data (cp_parser *parser, cp_token *pragma_tok,
34689 enum pragma_context context)
34691 bool data_seen = false;
34692 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
34694 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
34695 const char *p = IDENTIFIER_POINTER (id);
34697 if (strcmp (p, "data") == 0)
34699 cp_lexer_consume_token (parser->lexer);
34700 data_seen = true;
34703 if (!data_seen)
34705 cp_parser_error (parser, "expected %<data%>");
34706 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
34707 return NULL_TREE;
34710 if (context == pragma_stmt)
34712 error_at (pragma_tok->location,
34713 "%<#pragma omp target enter data%> may only be "
34714 "used in compound statements");
34715 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
34716 return NULL_TREE;
34719 tree clauses
34720 = cp_parser_omp_all_clauses (parser, OMP_TARGET_ENTER_DATA_CLAUSE_MASK,
34721 "#pragma omp target enter data", pragma_tok);
34722 int map_seen = 0;
34723 for (tree *pc = &clauses; *pc;)
34725 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_MAP)
34726 switch (OMP_CLAUSE_MAP_KIND (*pc))
34728 case GOMP_MAP_TO:
34729 case GOMP_MAP_ALWAYS_TO:
34730 case GOMP_MAP_ALLOC:
34731 map_seen = 3;
34732 break;
34733 case GOMP_MAP_FIRSTPRIVATE_POINTER:
34734 case GOMP_MAP_FIRSTPRIVATE_REFERENCE:
34735 case GOMP_MAP_ALWAYS_POINTER:
34736 break;
34737 default:
34738 map_seen |= 1;
34739 error_at (OMP_CLAUSE_LOCATION (*pc),
34740 "%<#pragma omp target enter data%> with map-type other "
34741 "than %<to%> or %<alloc%> on %<map%> clause");
34742 *pc = OMP_CLAUSE_CHAIN (*pc);
34743 continue;
34745 pc = &OMP_CLAUSE_CHAIN (*pc);
34748 if (map_seen != 3)
34750 if (map_seen == 0)
34751 error_at (pragma_tok->location,
34752 "%<#pragma omp target enter data%> must contain at least "
34753 "one %<map%> clause");
34754 return NULL_TREE;
34757 tree stmt = make_node (OMP_TARGET_ENTER_DATA);
34758 TREE_TYPE (stmt) = void_type_node;
34759 OMP_TARGET_ENTER_DATA_CLAUSES (stmt) = clauses;
34760 SET_EXPR_LOCATION (stmt, pragma_tok->location);
34761 return add_stmt (stmt);
34764 /* OpenMP 4.5:
34765 # pragma omp target exit data target-enter-data-clause[optseq] new-line
34766 structured-block */
34768 #define OMP_TARGET_EXIT_DATA_CLAUSE_MASK \
34769 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEVICE) \
34770 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MAP) \
34771 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
34772 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEPEND) \
34773 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT))
34775 static tree
34776 cp_parser_omp_target_exit_data (cp_parser *parser, cp_token *pragma_tok,
34777 enum pragma_context context)
34779 bool data_seen = false;
34780 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
34782 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
34783 const char *p = IDENTIFIER_POINTER (id);
34785 if (strcmp (p, "data") == 0)
34787 cp_lexer_consume_token (parser->lexer);
34788 data_seen = true;
34791 if (!data_seen)
34793 cp_parser_error (parser, "expected %<data%>");
34794 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
34795 return NULL_TREE;
34798 if (context == pragma_stmt)
34800 error_at (pragma_tok->location,
34801 "%<#pragma omp target exit data%> may only be "
34802 "used in compound statements");
34803 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
34804 return NULL_TREE;
34807 tree clauses
34808 = cp_parser_omp_all_clauses (parser, OMP_TARGET_EXIT_DATA_CLAUSE_MASK,
34809 "#pragma omp target exit data", pragma_tok);
34810 int map_seen = 0;
34811 for (tree *pc = &clauses; *pc;)
34813 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_MAP)
34814 switch (OMP_CLAUSE_MAP_KIND (*pc))
34816 case GOMP_MAP_FROM:
34817 case GOMP_MAP_ALWAYS_FROM:
34818 case GOMP_MAP_RELEASE:
34819 case GOMP_MAP_DELETE:
34820 map_seen = 3;
34821 break;
34822 case GOMP_MAP_FIRSTPRIVATE_POINTER:
34823 case GOMP_MAP_FIRSTPRIVATE_REFERENCE:
34824 case GOMP_MAP_ALWAYS_POINTER:
34825 break;
34826 default:
34827 map_seen |= 1;
34828 error_at (OMP_CLAUSE_LOCATION (*pc),
34829 "%<#pragma omp target exit data%> with map-type other "
34830 "than %<from%>, %<release%> or %<delete%> on %<map%>"
34831 " clause");
34832 *pc = OMP_CLAUSE_CHAIN (*pc);
34833 continue;
34835 pc = &OMP_CLAUSE_CHAIN (*pc);
34838 if (map_seen != 3)
34840 if (map_seen == 0)
34841 error_at (pragma_tok->location,
34842 "%<#pragma omp target exit data%> must contain at least "
34843 "one %<map%> clause");
34844 return NULL_TREE;
34847 tree stmt = make_node (OMP_TARGET_EXIT_DATA);
34848 TREE_TYPE (stmt) = void_type_node;
34849 OMP_TARGET_EXIT_DATA_CLAUSES (stmt) = clauses;
34850 SET_EXPR_LOCATION (stmt, pragma_tok->location);
34851 return add_stmt (stmt);
34854 /* OpenMP 4.0:
34855 # pragma omp target update target-update-clause[optseq] new-line */
34857 #define OMP_TARGET_UPDATE_CLAUSE_MASK \
34858 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FROM) \
34859 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_TO) \
34860 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEVICE) \
34861 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
34862 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEPEND) \
34863 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT))
34865 static bool
34866 cp_parser_omp_target_update (cp_parser *parser, cp_token *pragma_tok,
34867 enum pragma_context context)
34869 if (context == pragma_stmt)
34871 error_at (pragma_tok->location,
34872 "%<#pragma omp target update%> may only be "
34873 "used in compound statements");
34874 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
34875 return false;
34878 tree clauses
34879 = cp_parser_omp_all_clauses (parser, OMP_TARGET_UPDATE_CLAUSE_MASK,
34880 "#pragma omp target update", pragma_tok);
34881 if (find_omp_clause (clauses, OMP_CLAUSE_TO) == NULL_TREE
34882 && find_omp_clause (clauses, OMP_CLAUSE_FROM) == NULL_TREE)
34884 error_at (pragma_tok->location,
34885 "%<#pragma omp target update%> must contain at least one "
34886 "%<from%> or %<to%> clauses");
34887 return false;
34890 tree stmt = make_node (OMP_TARGET_UPDATE);
34891 TREE_TYPE (stmt) = void_type_node;
34892 OMP_TARGET_UPDATE_CLAUSES (stmt) = clauses;
34893 SET_EXPR_LOCATION (stmt, pragma_tok->location);
34894 add_stmt (stmt);
34895 return false;
34898 /* OpenMP 4.0:
34899 # pragma omp target target-clause[optseq] new-line
34900 structured-block */
34902 #define OMP_TARGET_CLAUSE_MASK \
34903 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEVICE) \
34904 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MAP) \
34905 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
34906 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEPEND) \
34907 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT) \
34908 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
34909 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
34910 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEFAULTMAP) \
34911 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IS_DEVICE_PTR))
34913 static bool
34914 cp_parser_omp_target (cp_parser *parser, cp_token *pragma_tok,
34915 enum pragma_context context, bool *if_p)
34917 tree *pc = NULL, stmt;
34919 if (context != pragma_stmt && context != pragma_compound)
34921 cp_parser_error (parser, "expected declaration specifiers");
34922 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
34923 return false;
34926 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
34928 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
34929 const char *p = IDENTIFIER_POINTER (id);
34930 enum tree_code ccode = ERROR_MARK;
34932 if (strcmp (p, "teams") == 0)
34933 ccode = OMP_TEAMS;
34934 else if (strcmp (p, "parallel") == 0)
34935 ccode = OMP_PARALLEL;
34936 else if (strcmp (p, "simd") == 0)
34937 ccode = OMP_SIMD;
34938 if (ccode != ERROR_MARK)
34940 tree cclauses[C_OMP_CLAUSE_SPLIT_COUNT];
34941 char p_name[sizeof ("#pragma omp target teams distribute "
34942 "parallel for simd")];
34944 cp_lexer_consume_token (parser->lexer);
34945 strcpy (p_name, "#pragma omp target");
34946 if (!flag_openmp) /* flag_openmp_simd */
34948 tree stmt;
34949 switch (ccode)
34951 case OMP_TEAMS:
34952 stmt = cp_parser_omp_teams (parser, pragma_tok, p_name,
34953 OMP_TARGET_CLAUSE_MASK,
34954 cclauses, if_p);
34955 break;
34956 case OMP_PARALLEL:
34957 stmt = cp_parser_omp_parallel (parser, pragma_tok, p_name,
34958 OMP_TARGET_CLAUSE_MASK,
34959 cclauses, if_p);
34960 break;
34961 case OMP_SIMD:
34962 stmt = cp_parser_omp_simd (parser, pragma_tok, p_name,
34963 OMP_TARGET_CLAUSE_MASK,
34964 cclauses, if_p);
34965 break;
34966 default:
34967 gcc_unreachable ();
34969 return stmt != NULL_TREE;
34971 keep_next_level (true);
34972 tree sb = begin_omp_structured_block (), ret;
34973 unsigned save = cp_parser_begin_omp_structured_block (parser);
34974 switch (ccode)
34976 case OMP_TEAMS:
34977 ret = cp_parser_omp_teams (parser, pragma_tok, p_name,
34978 OMP_TARGET_CLAUSE_MASK, cclauses,
34979 if_p);
34980 break;
34981 case OMP_PARALLEL:
34982 ret = cp_parser_omp_parallel (parser, pragma_tok, p_name,
34983 OMP_TARGET_CLAUSE_MASK, cclauses,
34984 if_p);
34985 break;
34986 case OMP_SIMD:
34987 ret = cp_parser_omp_simd (parser, pragma_tok, p_name,
34988 OMP_TARGET_CLAUSE_MASK, cclauses,
34989 if_p);
34990 break;
34991 default:
34992 gcc_unreachable ();
34994 cp_parser_end_omp_structured_block (parser, save);
34995 tree body = finish_omp_structured_block (sb);
34996 if (ret == NULL_TREE)
34997 return false;
34998 if (ccode == OMP_TEAMS && !processing_template_decl)
35000 /* For combined target teams, ensure the num_teams and
35001 thread_limit clause expressions are evaluated on the host,
35002 before entering the target construct. */
35003 tree c;
35004 for (c = cclauses[C_OMP_CLAUSE_SPLIT_TEAMS];
35005 c; c = OMP_CLAUSE_CHAIN (c))
35006 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_NUM_TEAMS
35007 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_THREAD_LIMIT)
35008 && TREE_CODE (OMP_CLAUSE_OPERAND (c, 0)) != INTEGER_CST)
35010 tree expr = OMP_CLAUSE_OPERAND (c, 0);
35011 expr = force_target_expr (TREE_TYPE (expr), expr, tf_none);
35012 if (expr == error_mark_node)
35013 continue;
35014 tree tmp = TARGET_EXPR_SLOT (expr);
35015 add_stmt (expr);
35016 OMP_CLAUSE_OPERAND (c, 0) = expr;
35017 tree tc = build_omp_clause (OMP_CLAUSE_LOCATION (c),
35018 OMP_CLAUSE_FIRSTPRIVATE);
35019 OMP_CLAUSE_DECL (tc) = tmp;
35020 OMP_CLAUSE_CHAIN (tc)
35021 = cclauses[C_OMP_CLAUSE_SPLIT_TARGET];
35022 cclauses[C_OMP_CLAUSE_SPLIT_TARGET] = tc;
35025 tree stmt = make_node (OMP_TARGET);
35026 TREE_TYPE (stmt) = void_type_node;
35027 OMP_TARGET_CLAUSES (stmt) = cclauses[C_OMP_CLAUSE_SPLIT_TARGET];
35028 OMP_TARGET_BODY (stmt) = body;
35029 OMP_TARGET_COMBINED (stmt) = 1;
35030 add_stmt (stmt);
35031 pc = &OMP_TARGET_CLAUSES (stmt);
35032 goto check_clauses;
35034 else if (!flag_openmp) /* flag_openmp_simd */
35036 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
35037 return false;
35039 else if (strcmp (p, "data") == 0)
35041 cp_lexer_consume_token (parser->lexer);
35042 cp_parser_omp_target_data (parser, pragma_tok, if_p);
35043 return true;
35045 else if (strcmp (p, "enter") == 0)
35047 cp_lexer_consume_token (parser->lexer);
35048 cp_parser_omp_target_enter_data (parser, pragma_tok, context);
35049 return false;
35051 else if (strcmp (p, "exit") == 0)
35053 cp_lexer_consume_token (parser->lexer);
35054 cp_parser_omp_target_exit_data (parser, pragma_tok, context);
35055 return false;
35057 else if (strcmp (p, "update") == 0)
35059 cp_lexer_consume_token (parser->lexer);
35060 return cp_parser_omp_target_update (parser, pragma_tok, context);
35064 stmt = make_node (OMP_TARGET);
35065 TREE_TYPE (stmt) = void_type_node;
35067 OMP_TARGET_CLAUSES (stmt)
35068 = cp_parser_omp_all_clauses (parser, OMP_TARGET_CLAUSE_MASK,
35069 "#pragma omp target", pragma_tok);
35070 pc = &OMP_TARGET_CLAUSES (stmt);
35071 keep_next_level (true);
35072 OMP_TARGET_BODY (stmt) = cp_parser_omp_structured_block (parser, if_p);
35074 SET_EXPR_LOCATION (stmt, pragma_tok->location);
35075 add_stmt (stmt);
35077 check_clauses:
35078 while (*pc)
35080 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_MAP)
35081 switch (OMP_CLAUSE_MAP_KIND (*pc))
35083 case GOMP_MAP_TO:
35084 case GOMP_MAP_ALWAYS_TO:
35085 case GOMP_MAP_FROM:
35086 case GOMP_MAP_ALWAYS_FROM:
35087 case GOMP_MAP_TOFROM:
35088 case GOMP_MAP_ALWAYS_TOFROM:
35089 case GOMP_MAP_ALLOC:
35090 case GOMP_MAP_FIRSTPRIVATE_POINTER:
35091 case GOMP_MAP_FIRSTPRIVATE_REFERENCE:
35092 case GOMP_MAP_ALWAYS_POINTER:
35093 break;
35094 default:
35095 error_at (OMP_CLAUSE_LOCATION (*pc),
35096 "%<#pragma omp target%> with map-type other "
35097 "than %<to%>, %<from%>, %<tofrom%> or %<alloc%> "
35098 "on %<map%> clause");
35099 *pc = OMP_CLAUSE_CHAIN (*pc);
35100 continue;
35102 pc = &OMP_CLAUSE_CHAIN (*pc);
35104 return true;
35107 /* OpenACC 2.0:
35108 # pragma acc cache (variable-list) new-line
35111 static tree
35112 cp_parser_oacc_cache (cp_parser *parser, cp_token *pragma_tok)
35114 tree stmt, clauses;
35116 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE__CACHE_, NULL_TREE);
35117 clauses = finish_omp_clauses (clauses, C_ORT_ACC);
35119 cp_parser_require_pragma_eol (parser, cp_lexer_peek_token (parser->lexer));
35121 stmt = make_node (OACC_CACHE);
35122 TREE_TYPE (stmt) = void_type_node;
35123 OACC_CACHE_CLAUSES (stmt) = clauses;
35124 SET_EXPR_LOCATION (stmt, pragma_tok->location);
35125 add_stmt (stmt);
35127 return stmt;
35130 /* OpenACC 2.0:
35131 # pragma acc data oacc-data-clause[optseq] new-line
35132 structured-block */
35134 #define OACC_DATA_CLAUSE_MASK \
35135 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPY) \
35136 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYIN) \
35137 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYOUT) \
35138 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_CREATE) \
35139 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DEVICEPTR) \
35140 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_IF) \
35141 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT) \
35142 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPY) \
35143 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN) \
35144 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYOUT) \
35145 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE))
35147 static tree
35148 cp_parser_oacc_data (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
35150 tree stmt, clauses, block;
35151 unsigned int save;
35153 clauses = cp_parser_oacc_all_clauses (parser, OACC_DATA_CLAUSE_MASK,
35154 "#pragma acc data", pragma_tok);
35156 block = begin_omp_parallel ();
35157 save = cp_parser_begin_omp_structured_block (parser);
35158 cp_parser_statement (parser, NULL_TREE, false, if_p);
35159 cp_parser_end_omp_structured_block (parser, save);
35160 stmt = finish_oacc_data (clauses, block);
35161 return stmt;
35164 /* OpenACC 2.0:
35165 # pragma acc host_data <clauses> new-line
35166 structured-block */
35168 #define OACC_HOST_DATA_CLAUSE_MASK \
35169 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_USE_DEVICE) )
35171 static tree
35172 cp_parser_oacc_host_data (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
35174 tree stmt, clauses, block;
35175 unsigned int save;
35177 clauses = cp_parser_oacc_all_clauses (parser, OACC_HOST_DATA_CLAUSE_MASK,
35178 "#pragma acc host_data", pragma_tok);
35180 block = begin_omp_parallel ();
35181 save = cp_parser_begin_omp_structured_block (parser);
35182 cp_parser_statement (parser, NULL_TREE, false, if_p);
35183 cp_parser_end_omp_structured_block (parser, save);
35184 stmt = finish_oacc_host_data (clauses, block);
35185 return stmt;
35188 /* OpenACC 2.0:
35189 # pragma acc declare oacc-data-clause[optseq] new-line
35192 #define OACC_DECLARE_CLAUSE_MASK \
35193 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPY) \
35194 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYIN) \
35195 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYOUT) \
35196 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_CREATE) \
35197 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DEVICEPTR) \
35198 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DEVICE_RESIDENT) \
35199 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_LINK) \
35200 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT) \
35201 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPY) \
35202 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN) \
35203 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYOUT) \
35204 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE))
35206 static tree
35207 cp_parser_oacc_declare (cp_parser *parser, cp_token *pragma_tok)
35209 tree clauses, stmt;
35210 bool error = false;
35212 clauses = cp_parser_oacc_all_clauses (parser, OACC_DECLARE_CLAUSE_MASK,
35213 "#pragma acc declare", pragma_tok, true);
35216 if (find_omp_clause (clauses, OMP_CLAUSE_MAP) == NULL_TREE)
35218 error_at (pragma_tok->location,
35219 "no valid clauses specified in %<#pragma acc declare%>");
35220 return NULL_TREE;
35223 for (tree t = clauses; t; t = OMP_CLAUSE_CHAIN (t))
35225 location_t loc = OMP_CLAUSE_LOCATION (t);
35226 tree decl = OMP_CLAUSE_DECL (t);
35227 if (!DECL_P (decl))
35229 error_at (loc, "array section in %<#pragma acc declare%>");
35230 error = true;
35231 continue;
35233 gcc_assert (OMP_CLAUSE_CODE (t) == OMP_CLAUSE_MAP);
35234 switch (OMP_CLAUSE_MAP_KIND (t))
35236 case GOMP_MAP_FIRSTPRIVATE_POINTER:
35237 case GOMP_MAP_FORCE_ALLOC:
35238 case GOMP_MAP_FORCE_TO:
35239 case GOMP_MAP_FORCE_DEVICEPTR:
35240 case GOMP_MAP_DEVICE_RESIDENT:
35241 break;
35243 case GOMP_MAP_POINTER:
35244 /* Generated by c_finish_omp_clauses from array sections;
35245 avoid spurious diagnostics. */
35246 break;
35248 case GOMP_MAP_LINK:
35249 if (!global_bindings_p ()
35250 && (TREE_STATIC (decl)
35251 || !DECL_EXTERNAL (decl)))
35253 error_at (loc,
35254 "%qD must be a global variable in"
35255 "%<#pragma acc declare link%>",
35256 decl);
35257 error = true;
35258 continue;
35260 break;
35262 default:
35263 if (global_bindings_p ())
35265 error_at (loc, "invalid OpenACC clause at file scope");
35266 error = true;
35267 continue;
35269 if (DECL_EXTERNAL (decl))
35271 error_at (loc,
35272 "invalid use of %<extern%> variable %qD "
35273 "in %<#pragma acc declare%>", decl);
35274 error = true;
35275 continue;
35277 else if (TREE_PUBLIC (decl))
35279 error_at (loc,
35280 "invalid use of %<global%> variable %qD "
35281 "in %<#pragma acc declare%>", decl);
35282 error = true;
35283 continue;
35285 break;
35288 if (lookup_attribute ("omp declare target", DECL_ATTRIBUTES (decl))
35289 || lookup_attribute ("omp declare target link",
35290 DECL_ATTRIBUTES (decl)))
35292 error_at (loc, "variable %qD used more than once with "
35293 "%<#pragma acc declare%>", decl);
35294 error = true;
35295 continue;
35298 if (!error)
35300 tree id;
35302 if (OMP_CLAUSE_MAP_KIND (t) == GOMP_MAP_LINK)
35303 id = get_identifier ("omp declare target link");
35304 else
35305 id = get_identifier ("omp declare target");
35307 DECL_ATTRIBUTES (decl)
35308 = tree_cons (id, NULL_TREE, DECL_ATTRIBUTES (decl));
35309 if (global_bindings_p ())
35311 symtab_node *node = symtab_node::get (decl);
35312 if (node != NULL)
35314 node->offloadable = 1;
35315 if (ENABLE_OFFLOADING)
35317 g->have_offload = true;
35318 if (is_a <varpool_node *> (node))
35319 vec_safe_push (offload_vars, decl);
35326 if (error || global_bindings_p ())
35327 return NULL_TREE;
35329 stmt = make_node (OACC_DECLARE);
35330 TREE_TYPE (stmt) = void_type_node;
35331 OACC_DECLARE_CLAUSES (stmt) = clauses;
35332 SET_EXPR_LOCATION (stmt, pragma_tok->location);
35334 add_stmt (stmt);
35336 return NULL_TREE;
35339 /* OpenACC 2.0:
35340 # pragma acc enter data oacc-enter-data-clause[optseq] new-line
35344 # pragma acc exit data oacc-exit-data-clause[optseq] new-line
35346 LOC is the location of the #pragma token.
35349 #define OACC_ENTER_DATA_CLAUSE_MASK \
35350 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_IF) \
35351 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_ASYNC) \
35352 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYIN) \
35353 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_CREATE) \
35354 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN) \
35355 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE) \
35356 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_WAIT) )
35358 #define OACC_EXIT_DATA_CLAUSE_MASK \
35359 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_IF) \
35360 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_ASYNC) \
35361 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYOUT) \
35362 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DELETE) \
35363 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_WAIT) )
35365 static tree
35366 cp_parser_oacc_enter_exit_data (cp_parser *parser, cp_token *pragma_tok,
35367 bool enter)
35369 tree stmt, clauses;
35371 if (cp_lexer_next_token_is (parser->lexer, CPP_PRAGMA_EOL)
35372 || cp_lexer_next_token_is_not (parser->lexer, CPP_NAME))
35374 cp_parser_error (parser, enter
35375 ? "expected %<data%> in %<#pragma acc enter data%>"
35376 : "expected %<data%> in %<#pragma acc exit data%>");
35377 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
35378 return NULL_TREE;
35381 const char *p =
35382 IDENTIFIER_POINTER (cp_lexer_peek_token (parser->lexer)->u.value);
35383 if (strcmp (p, "data") != 0)
35385 cp_parser_error (parser, "invalid pragma");
35386 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
35387 return NULL_TREE;
35390 cp_lexer_consume_token (parser->lexer);
35392 if (enter)
35393 clauses = cp_parser_oacc_all_clauses (parser, OACC_ENTER_DATA_CLAUSE_MASK,
35394 "#pragma acc enter data", pragma_tok);
35395 else
35396 clauses = cp_parser_oacc_all_clauses (parser, OACC_EXIT_DATA_CLAUSE_MASK,
35397 "#pragma acc exit data", pragma_tok);
35399 if (find_omp_clause (clauses, OMP_CLAUSE_MAP) == NULL_TREE)
35401 error_at (pragma_tok->location,
35402 "%<#pragma acc enter data%> has no data movement clause");
35403 return NULL_TREE;
35406 stmt = enter ? make_node (OACC_ENTER_DATA) : make_node (OACC_EXIT_DATA);
35407 TREE_TYPE (stmt) = void_type_node;
35408 OMP_STANDALONE_CLAUSES (stmt) = clauses;
35409 SET_EXPR_LOCATION (stmt, pragma_tok->location);
35410 add_stmt (stmt);
35411 return stmt;
35414 /* OpenACC 2.0:
35415 # pragma acc loop oacc-loop-clause[optseq] new-line
35416 structured-block */
35418 #define OACC_LOOP_CLAUSE_MASK \
35419 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COLLAPSE) \
35420 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRIVATE) \
35421 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_REDUCTION) \
35422 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_GANG) \
35423 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_VECTOR) \
35424 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_WORKER) \
35425 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_AUTO) \
35426 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_INDEPENDENT) \
35427 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_SEQ) \
35428 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_TILE))
35430 static tree
35431 cp_parser_oacc_loop (cp_parser *parser, cp_token *pragma_tok, char *p_name,
35432 omp_clause_mask mask, tree *cclauses, bool *if_p)
35434 bool is_parallel = ((mask >> PRAGMA_OACC_CLAUSE_REDUCTION) & 1) == 1;
35436 strcat (p_name, " loop");
35437 mask |= OACC_LOOP_CLAUSE_MASK;
35439 tree clauses = cp_parser_oacc_all_clauses (parser, mask, p_name, pragma_tok,
35440 cclauses == NULL);
35441 if (cclauses)
35443 clauses = c_oacc_split_loop_clauses (clauses, cclauses, is_parallel);
35444 if (*cclauses)
35445 *cclauses = finish_omp_clauses (*cclauses, C_ORT_ACC);
35446 if (clauses)
35447 clauses = finish_omp_clauses (clauses, C_ORT_ACC);
35450 tree block = begin_omp_structured_block ();
35451 int save = cp_parser_begin_omp_structured_block (parser);
35452 tree stmt = cp_parser_omp_for_loop (parser, OACC_LOOP, clauses, NULL, if_p);
35453 cp_parser_end_omp_structured_block (parser, save);
35454 add_stmt (finish_omp_structured_block (block));
35456 return stmt;
35459 /* OpenACC 2.0:
35460 # pragma acc kernels oacc-kernels-clause[optseq] new-line
35461 structured-block
35465 # pragma acc parallel oacc-parallel-clause[optseq] new-line
35466 structured-block
35469 #define OACC_KERNELS_CLAUSE_MASK \
35470 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_ASYNC) \
35471 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPY) \
35472 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYIN) \
35473 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYOUT) \
35474 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_CREATE) \
35475 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DEFAULT) \
35476 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DEVICEPTR) \
35477 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_IF) \
35478 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT) \
35479 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPY) \
35480 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN) \
35481 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYOUT) \
35482 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE) \
35483 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_WAIT) )
35485 #define OACC_PARALLEL_CLAUSE_MASK \
35486 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_ASYNC) \
35487 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPY) \
35488 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYIN) \
35489 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYOUT) \
35490 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_CREATE) \
35491 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DEFAULT) \
35492 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DEVICEPTR) \
35493 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_FIRSTPRIVATE) \
35494 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_IF) \
35495 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_NUM_GANGS) \
35496 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_NUM_WORKERS) \
35497 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT) \
35498 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPY) \
35499 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN) \
35500 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYOUT) \
35501 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE) \
35502 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRIVATE) \
35503 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_REDUCTION) \
35504 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_VECTOR_LENGTH) \
35505 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_WAIT) )
35507 static tree
35508 cp_parser_oacc_kernels_parallel (cp_parser *parser, cp_token *pragma_tok,
35509 char *p_name, bool *if_p)
35511 omp_clause_mask mask;
35512 enum tree_code code;
35513 switch (cp_parser_pragma_kind (pragma_tok))
35515 case PRAGMA_OACC_KERNELS:
35516 strcat (p_name, " kernels");
35517 mask = OACC_KERNELS_CLAUSE_MASK;
35518 code = OACC_KERNELS;
35519 break;
35520 case PRAGMA_OACC_PARALLEL:
35521 strcat (p_name, " parallel");
35522 mask = OACC_PARALLEL_CLAUSE_MASK;
35523 code = OACC_PARALLEL;
35524 break;
35525 default:
35526 gcc_unreachable ();
35529 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
35531 const char *p
35532 = IDENTIFIER_POINTER (cp_lexer_peek_token (parser->lexer)->u.value);
35533 if (strcmp (p, "loop") == 0)
35535 cp_lexer_consume_token (parser->lexer);
35536 tree block = begin_omp_parallel ();
35537 tree clauses;
35538 cp_parser_oacc_loop (parser, pragma_tok, p_name, mask, &clauses,
35539 if_p);
35540 return finish_omp_construct (code, block, clauses);
35544 tree clauses = cp_parser_oacc_all_clauses (parser, mask, p_name, pragma_tok);
35546 tree block = begin_omp_parallel ();
35547 unsigned int save = cp_parser_begin_omp_structured_block (parser);
35548 cp_parser_statement (parser, NULL_TREE, false, if_p);
35549 cp_parser_end_omp_structured_block (parser, save);
35550 return finish_omp_construct (code, block, clauses);
35553 /* OpenACC 2.0:
35554 # pragma acc update oacc-update-clause[optseq] new-line
35557 #define OACC_UPDATE_CLAUSE_MASK \
35558 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_ASYNC) \
35559 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DEVICE) \
35560 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_HOST) \
35561 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_IF) \
35562 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_SELF) \
35563 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_WAIT))
35565 static tree
35566 cp_parser_oacc_update (cp_parser *parser, cp_token *pragma_tok)
35568 tree stmt, clauses;
35570 clauses = cp_parser_oacc_all_clauses (parser, OACC_UPDATE_CLAUSE_MASK,
35571 "#pragma acc update", pragma_tok);
35573 if (find_omp_clause (clauses, OMP_CLAUSE_MAP) == NULL_TREE)
35575 error_at (pragma_tok->location,
35576 "%<#pragma acc update%> must contain at least one "
35577 "%<device%> or %<host%> or %<self%> clause");
35578 return NULL_TREE;
35581 stmt = make_node (OACC_UPDATE);
35582 TREE_TYPE (stmt) = void_type_node;
35583 OACC_UPDATE_CLAUSES (stmt) = clauses;
35584 SET_EXPR_LOCATION (stmt, pragma_tok->location);
35585 add_stmt (stmt);
35586 return stmt;
35589 /* OpenACC 2.0:
35590 # pragma acc wait [(intseq)] oacc-wait-clause[optseq] new-line
35592 LOC is the location of the #pragma token.
35595 #define OACC_WAIT_CLAUSE_MASK \
35596 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_ASYNC))
35598 static tree
35599 cp_parser_oacc_wait (cp_parser *parser, cp_token *pragma_tok)
35601 tree clauses, list = NULL_TREE, stmt = NULL_TREE;
35602 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
35604 if (cp_lexer_peek_token (parser->lexer)->type == CPP_OPEN_PAREN)
35605 list = cp_parser_oacc_wait_list (parser, loc, list);
35607 clauses = cp_parser_oacc_all_clauses (parser, OACC_WAIT_CLAUSE_MASK,
35608 "#pragma acc wait", pragma_tok);
35610 stmt = c_finish_oacc_wait (loc, list, clauses);
35611 stmt = finish_expr_stmt (stmt);
35613 return stmt;
35616 /* OpenMP 4.0:
35617 # pragma omp declare simd declare-simd-clauses[optseq] new-line */
35619 #define OMP_DECLARE_SIMD_CLAUSE_MASK \
35620 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SIMDLEN) \
35621 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LINEAR) \
35622 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_ALIGNED) \
35623 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_UNIFORM) \
35624 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_INBRANCH) \
35625 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOTINBRANCH))
35627 static void
35628 cp_parser_omp_declare_simd (cp_parser *parser, cp_token *pragma_tok,
35629 enum pragma_context context)
35631 bool first_p = parser->omp_declare_simd == NULL;
35632 cp_omp_declare_simd_data data;
35633 if (first_p)
35635 data.error_seen = false;
35636 data.fndecl_seen = false;
35637 data.tokens = vNULL;
35638 parser->omp_declare_simd = &data;
35640 while (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL)
35641 && cp_lexer_next_token_is_not (parser->lexer, CPP_EOF))
35642 cp_lexer_consume_token (parser->lexer);
35643 if (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL))
35644 parser->omp_declare_simd->error_seen = true;
35645 cp_parser_require_pragma_eol (parser, pragma_tok);
35646 struct cp_token_cache *cp
35647 = cp_token_cache_new (pragma_tok, cp_lexer_peek_token (parser->lexer));
35648 parser->omp_declare_simd->tokens.safe_push (cp);
35649 if (first_p)
35651 while (cp_lexer_next_token_is (parser->lexer, CPP_PRAGMA))
35652 cp_parser_pragma (parser, context, NULL);
35653 switch (context)
35655 case pragma_external:
35656 cp_parser_declaration (parser);
35657 break;
35658 case pragma_member:
35659 cp_parser_member_declaration (parser);
35660 break;
35661 case pragma_objc_icode:
35662 cp_parser_block_declaration (parser, /*statement_p=*/false);
35663 break;
35664 default:
35665 cp_parser_declaration_statement (parser);
35666 break;
35668 if (parser->omp_declare_simd
35669 && !parser->omp_declare_simd->error_seen
35670 && !parser->omp_declare_simd->fndecl_seen)
35671 error_at (pragma_tok->location,
35672 "%<#pragma omp declare simd%> not immediately followed by "
35673 "function declaration or definition");
35674 data.tokens.release ();
35675 parser->omp_declare_simd = NULL;
35679 /* Handles the delayed parsing of the Cilk Plus SIMD-enabled function.
35680 This function is modelled similar to the late parsing of omp declare
35681 simd. */
35683 static tree
35684 cp_parser_late_parsing_cilk_simd_fn_info (cp_parser *parser, tree attrs)
35686 struct cp_token_cache *ce;
35687 cp_omp_declare_simd_data *info = parser->cilk_simd_fn_info;
35688 int ii = 0;
35690 if (parser->omp_declare_simd != NULL
35691 || lookup_attribute ("simd", attrs))
35693 error ("%<#pragma omp declare simd%> of %<simd%> attribute cannot be "
35694 "used in the same function marked as a Cilk Plus SIMD-enabled "
35695 " function");
35696 parser->cilk_simd_fn_info->tokens.release ();
35697 XDELETE (parser->cilk_simd_fn_info);
35698 parser->cilk_simd_fn_info = NULL;
35699 return attrs;
35701 if (!info->error_seen && info->fndecl_seen)
35703 error ("vector attribute not immediately followed by a single function"
35704 " declaration or definition");
35705 info->error_seen = true;
35707 if (info->error_seen)
35708 return attrs;
35710 FOR_EACH_VEC_ELT (info->tokens, ii, ce)
35712 tree c, cl;
35714 cp_parser_push_lexer_for_tokens (parser, ce);
35715 parser->lexer->in_pragma = true;
35716 cl = cp_parser_omp_all_clauses (parser, CILK_SIMD_FN_CLAUSE_MASK,
35717 "SIMD-enabled functions attribute",
35718 NULL);
35719 cp_parser_pop_lexer (parser);
35720 if (cl)
35721 cl = tree_cons (NULL_TREE, cl, NULL_TREE);
35723 c = build_tree_list (get_identifier ("cilk simd function"), NULL_TREE);
35724 TREE_CHAIN (c) = attrs;
35725 attrs = c;
35727 c = build_tree_list (get_identifier ("omp declare simd"), cl);
35728 TREE_CHAIN (c) = attrs;
35729 if (processing_template_decl)
35730 ATTR_IS_DEPENDENT (c) = 1;
35731 attrs = c;
35733 info->fndecl_seen = true;
35734 parser->cilk_simd_fn_info->tokens.release ();
35735 XDELETE (parser->cilk_simd_fn_info);
35736 parser->cilk_simd_fn_info = NULL;
35737 return attrs;
35740 /* Finalize #pragma omp declare simd clauses after direct declarator has
35741 been parsed, and put that into "omp declare simd" attribute. */
35743 static tree
35744 cp_parser_late_parsing_omp_declare_simd (cp_parser *parser, tree attrs)
35746 struct cp_token_cache *ce;
35747 cp_omp_declare_simd_data *data = parser->omp_declare_simd;
35748 int i;
35750 if (!data->error_seen && data->fndecl_seen)
35752 error ("%<#pragma omp declare simd%> not immediately followed by "
35753 "a single function declaration or definition");
35754 data->error_seen = true;
35755 return attrs;
35757 if (data->error_seen)
35758 return attrs;
35760 FOR_EACH_VEC_ELT (data->tokens, i, ce)
35762 tree c, cl;
35764 cp_parser_push_lexer_for_tokens (parser, ce);
35765 parser->lexer->in_pragma = true;
35766 gcc_assert (cp_lexer_peek_token (parser->lexer)->type == CPP_PRAGMA);
35767 cp_token *pragma_tok = cp_lexer_consume_token (parser->lexer);
35768 cp_lexer_consume_token (parser->lexer);
35769 cl = cp_parser_omp_all_clauses (parser, OMP_DECLARE_SIMD_CLAUSE_MASK,
35770 "#pragma omp declare simd", pragma_tok);
35771 cp_parser_pop_lexer (parser);
35772 if (cl)
35773 cl = tree_cons (NULL_TREE, cl, NULL_TREE);
35774 c = build_tree_list (get_identifier ("omp declare simd"), cl);
35775 TREE_CHAIN (c) = attrs;
35776 if (processing_template_decl)
35777 ATTR_IS_DEPENDENT (c) = 1;
35778 attrs = c;
35781 data->fndecl_seen = true;
35782 return attrs;
35786 /* OpenMP 4.0:
35787 # pragma omp declare target new-line
35788 declarations and definitions
35789 # pragma omp end declare target new-line
35791 OpenMP 4.5:
35792 # pragma omp declare target ( extended-list ) new-line
35794 # pragma omp declare target declare-target-clauses[seq] new-line */
35796 #define OMP_DECLARE_TARGET_CLAUSE_MASK \
35797 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_TO) \
35798 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LINK))
35800 static void
35801 cp_parser_omp_declare_target (cp_parser *parser, cp_token *pragma_tok)
35803 tree clauses = NULL_TREE;
35804 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
35805 clauses
35806 = cp_parser_omp_all_clauses (parser, OMP_DECLARE_TARGET_CLAUSE_MASK,
35807 "#pragma omp declare target", pragma_tok);
35808 else if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
35810 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_TO_DECLARE,
35811 clauses);
35812 clauses = finish_omp_clauses (clauses, C_ORT_OMP);
35813 cp_parser_require_pragma_eol (parser, pragma_tok);
35815 else
35817 cp_parser_require_pragma_eol (parser, pragma_tok);
35818 scope_chain->omp_declare_target_attribute++;
35819 return;
35821 if (scope_chain->omp_declare_target_attribute)
35822 error_at (pragma_tok->location,
35823 "%<#pragma omp declare target%> with clauses in between "
35824 "%<#pragma omp declare target%> without clauses and "
35825 "%<#pragma omp end declare target%>");
35826 for (tree c = clauses; c; c = OMP_CLAUSE_CHAIN (c))
35828 tree t = OMP_CLAUSE_DECL (c), id;
35829 tree at1 = lookup_attribute ("omp declare target", DECL_ATTRIBUTES (t));
35830 tree at2 = lookup_attribute ("omp declare target link",
35831 DECL_ATTRIBUTES (t));
35832 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LINK)
35834 id = get_identifier ("omp declare target link");
35835 std::swap (at1, at2);
35837 else
35838 id = get_identifier ("omp declare target");
35839 if (at2)
35841 error_at (OMP_CLAUSE_LOCATION (c),
35842 "%qD specified both in declare target %<link%> and %<to%>"
35843 " clauses", t);
35844 continue;
35846 if (!at1)
35848 symtab_node *node = symtab_node::get (t);
35849 DECL_ATTRIBUTES (t) = tree_cons (id, NULL_TREE, DECL_ATTRIBUTES (t));
35850 if (node != NULL)
35852 node->offloadable = 1;
35853 if (ENABLE_OFFLOADING)
35855 g->have_offload = true;
35856 if (is_a <varpool_node *> (node))
35857 vec_safe_push (offload_vars, t);
35864 static void
35865 cp_parser_omp_end_declare_target (cp_parser *parser, cp_token *pragma_tok)
35867 const char *p = "";
35868 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
35870 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
35871 p = IDENTIFIER_POINTER (id);
35873 if (strcmp (p, "declare") == 0)
35875 cp_lexer_consume_token (parser->lexer);
35876 p = "";
35877 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
35879 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
35880 p = IDENTIFIER_POINTER (id);
35882 if (strcmp (p, "target") == 0)
35883 cp_lexer_consume_token (parser->lexer);
35884 else
35886 cp_parser_error (parser, "expected %<target%>");
35887 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
35888 return;
35891 else
35893 cp_parser_error (parser, "expected %<declare%>");
35894 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
35895 return;
35897 cp_parser_require_pragma_eol (parser, pragma_tok);
35898 if (!scope_chain->omp_declare_target_attribute)
35899 error_at (pragma_tok->location,
35900 "%<#pragma omp end declare target%> without corresponding "
35901 "%<#pragma omp declare target%>");
35902 else
35903 scope_chain->omp_declare_target_attribute--;
35906 /* Helper function of cp_parser_omp_declare_reduction. Parse the combiner
35907 expression and optional initializer clause of
35908 #pragma omp declare reduction. We store the expression(s) as
35909 either 3, 6 or 7 special statements inside of the artificial function's
35910 body. The first two statements are DECL_EXPRs for the artificial
35911 OMP_OUT resp. OMP_IN variables, followed by a statement with the combiner
35912 expression that uses those variables.
35913 If there was any INITIALIZER clause, this is followed by further statements,
35914 the fourth and fifth statements are DECL_EXPRs for the artificial
35915 OMP_PRIV resp. OMP_ORIG variables. If the INITIALIZER clause wasn't the
35916 constructor variant (first token after open paren is not omp_priv),
35917 then the sixth statement is a statement with the function call expression
35918 that uses the OMP_PRIV and optionally OMP_ORIG variable.
35919 Otherwise, the sixth statement is whatever statement cp_finish_decl emits
35920 to initialize the OMP_PRIV artificial variable and there is seventh
35921 statement, a DECL_EXPR of the OMP_PRIV statement again. */
35923 static bool
35924 cp_parser_omp_declare_reduction_exprs (tree fndecl, cp_parser *parser)
35926 tree type = TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (fndecl)));
35927 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
35928 type = TREE_TYPE (type);
35929 tree omp_out = build_lang_decl (VAR_DECL, get_identifier ("omp_out"), type);
35930 DECL_ARTIFICIAL (omp_out) = 1;
35931 pushdecl (omp_out);
35932 add_decl_expr (omp_out);
35933 tree omp_in = build_lang_decl (VAR_DECL, get_identifier ("omp_in"), type);
35934 DECL_ARTIFICIAL (omp_in) = 1;
35935 pushdecl (omp_in);
35936 add_decl_expr (omp_in);
35937 tree combiner;
35938 tree omp_priv = NULL_TREE, omp_orig = NULL_TREE, initializer = NULL_TREE;
35940 keep_next_level (true);
35941 tree block = begin_omp_structured_block ();
35942 combiner = cp_parser_expression (parser);
35943 finish_expr_stmt (combiner);
35944 block = finish_omp_structured_block (block);
35945 add_stmt (block);
35947 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
35948 return false;
35950 const char *p = "";
35951 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
35953 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
35954 p = IDENTIFIER_POINTER (id);
35957 if (strcmp (p, "initializer") == 0)
35959 cp_lexer_consume_token (parser->lexer);
35960 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
35961 return false;
35963 p = "";
35964 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
35966 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
35967 p = IDENTIFIER_POINTER (id);
35970 omp_priv = build_lang_decl (VAR_DECL, get_identifier ("omp_priv"), type);
35971 DECL_ARTIFICIAL (omp_priv) = 1;
35972 pushdecl (omp_priv);
35973 add_decl_expr (omp_priv);
35974 omp_orig = build_lang_decl (VAR_DECL, get_identifier ("omp_orig"), type);
35975 DECL_ARTIFICIAL (omp_orig) = 1;
35976 pushdecl (omp_orig);
35977 add_decl_expr (omp_orig);
35979 keep_next_level (true);
35980 block = begin_omp_structured_block ();
35982 bool ctor = false;
35983 if (strcmp (p, "omp_priv") == 0)
35985 bool is_direct_init, is_non_constant_init;
35986 ctor = true;
35987 cp_lexer_consume_token (parser->lexer);
35988 /* Reject initializer (omp_priv) and initializer (omp_priv ()). */
35989 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN)
35990 || (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN)
35991 && cp_lexer_peek_nth_token (parser->lexer, 2)->type
35992 == CPP_CLOSE_PAREN
35993 && cp_lexer_peek_nth_token (parser->lexer, 3)->type
35994 == CPP_CLOSE_PAREN))
35996 finish_omp_structured_block (block);
35997 error ("invalid initializer clause");
35998 return false;
36000 initializer = cp_parser_initializer (parser, &is_direct_init,
36001 &is_non_constant_init);
36002 cp_finish_decl (omp_priv, initializer, !is_non_constant_init,
36003 NULL_TREE, LOOKUP_ONLYCONVERTING);
36005 else
36007 cp_parser_parse_tentatively (parser);
36008 tree fn_name = cp_parser_id_expression (parser, /*template_p=*/false,
36009 /*check_dependency_p=*/true,
36010 /*template_p=*/NULL,
36011 /*declarator_p=*/false,
36012 /*optional_p=*/false);
36013 vec<tree, va_gc> *args;
36014 if (fn_name == error_mark_node
36015 || cp_parser_error_occurred (parser)
36016 || !cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN)
36017 || ((args = cp_parser_parenthesized_expression_list
36018 (parser, non_attr, /*cast_p=*/false,
36019 /*allow_expansion_p=*/true,
36020 /*non_constant_p=*/NULL)),
36021 cp_parser_error_occurred (parser)))
36023 finish_omp_structured_block (block);
36024 cp_parser_abort_tentative_parse (parser);
36025 cp_parser_error (parser, "expected id-expression (arguments)");
36026 return false;
36028 unsigned int i;
36029 tree arg;
36030 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
36031 if (arg == omp_priv
36032 || (TREE_CODE (arg) == ADDR_EXPR
36033 && TREE_OPERAND (arg, 0) == omp_priv))
36034 break;
36035 cp_parser_abort_tentative_parse (parser);
36036 if (arg == NULL_TREE)
36037 error ("one of the initializer call arguments should be %<omp_priv%>"
36038 " or %<&omp_priv%>");
36039 initializer = cp_parser_postfix_expression (parser, false, false, false,
36040 false, NULL);
36041 finish_expr_stmt (initializer);
36044 block = finish_omp_structured_block (block);
36045 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
36046 add_stmt (block);
36048 if (ctor)
36049 add_decl_expr (omp_orig);
36051 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
36052 return false;
36055 if (!cp_lexer_next_token_is (parser->lexer, CPP_PRAGMA_EOL))
36056 cp_parser_required_error (parser, RT_PRAGMA_EOL, /*keyword=*/false);
36058 return true;
36061 /* OpenMP 4.0
36062 #pragma omp declare reduction (reduction-id : typename-list : expression) \
36063 initializer-clause[opt] new-line
36065 initializer-clause:
36066 initializer (omp_priv initializer)
36067 initializer (function-name (argument-list)) */
36069 static void
36070 cp_parser_omp_declare_reduction (cp_parser *parser, cp_token *pragma_tok,
36071 enum pragma_context)
36073 auto_vec<tree> types;
36074 enum tree_code reduc_code = ERROR_MARK;
36075 tree reduc_id = NULL_TREE, orig_reduc_id = NULL_TREE, type;
36076 unsigned int i;
36077 cp_token *first_token;
36078 cp_token_cache *cp;
36079 int errs;
36080 void *p;
36082 /* Get the high-water mark for the DECLARATOR_OBSTACK. */
36083 p = obstack_alloc (&declarator_obstack, 0);
36085 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
36086 goto fail;
36088 switch (cp_lexer_peek_token (parser->lexer)->type)
36090 case CPP_PLUS:
36091 reduc_code = PLUS_EXPR;
36092 break;
36093 case CPP_MULT:
36094 reduc_code = MULT_EXPR;
36095 break;
36096 case CPP_MINUS:
36097 reduc_code = MINUS_EXPR;
36098 break;
36099 case CPP_AND:
36100 reduc_code = BIT_AND_EXPR;
36101 break;
36102 case CPP_XOR:
36103 reduc_code = BIT_XOR_EXPR;
36104 break;
36105 case CPP_OR:
36106 reduc_code = BIT_IOR_EXPR;
36107 break;
36108 case CPP_AND_AND:
36109 reduc_code = TRUTH_ANDIF_EXPR;
36110 break;
36111 case CPP_OR_OR:
36112 reduc_code = TRUTH_ORIF_EXPR;
36113 break;
36114 case CPP_NAME:
36115 reduc_id = orig_reduc_id = cp_parser_identifier (parser);
36116 break;
36117 default:
36118 cp_parser_error (parser, "expected %<+%>, %<*%>, %<-%>, %<&%>, %<^%>, "
36119 "%<|%>, %<&&%>, %<||%> or identifier");
36120 goto fail;
36123 if (reduc_code != ERROR_MARK)
36124 cp_lexer_consume_token (parser->lexer);
36126 reduc_id = omp_reduction_id (reduc_code, reduc_id, NULL_TREE);
36127 if (reduc_id == error_mark_node)
36128 goto fail;
36130 if (!cp_parser_require (parser, CPP_COLON, RT_COLON))
36131 goto fail;
36133 /* Types may not be defined in declare reduction type list. */
36134 const char *saved_message;
36135 saved_message = parser->type_definition_forbidden_message;
36136 parser->type_definition_forbidden_message
36137 = G_("types may not be defined in declare reduction type list");
36138 bool saved_colon_corrects_to_scope_p;
36139 saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
36140 parser->colon_corrects_to_scope_p = false;
36141 bool saved_colon_doesnt_start_class_def_p;
36142 saved_colon_doesnt_start_class_def_p
36143 = parser->colon_doesnt_start_class_def_p;
36144 parser->colon_doesnt_start_class_def_p = true;
36146 while (true)
36148 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
36149 type = cp_parser_type_id (parser);
36150 if (type == error_mark_node)
36152 else if (ARITHMETIC_TYPE_P (type)
36153 && (orig_reduc_id == NULL_TREE
36154 || (TREE_CODE (type) != COMPLEX_TYPE
36155 && (strcmp (IDENTIFIER_POINTER (orig_reduc_id),
36156 "min") == 0
36157 || strcmp (IDENTIFIER_POINTER (orig_reduc_id),
36158 "max") == 0))))
36159 error_at (loc, "predeclared arithmetic type %qT in "
36160 "%<#pragma omp declare reduction%>", type);
36161 else if (TREE_CODE (type) == FUNCTION_TYPE
36162 || TREE_CODE (type) == METHOD_TYPE
36163 || TREE_CODE (type) == ARRAY_TYPE)
36164 error_at (loc, "function or array type %qT in "
36165 "%<#pragma omp declare reduction%>", type);
36166 else if (TREE_CODE (type) == REFERENCE_TYPE)
36167 error_at (loc, "reference type %qT in "
36168 "%<#pragma omp declare reduction%>", type);
36169 else if (TYPE_QUALS_NO_ADDR_SPACE (type))
36170 error_at (loc, "const, volatile or __restrict qualified type %qT in "
36171 "%<#pragma omp declare reduction%>", type);
36172 else
36173 types.safe_push (type);
36175 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
36176 cp_lexer_consume_token (parser->lexer);
36177 else
36178 break;
36181 /* Restore the saved message. */
36182 parser->type_definition_forbidden_message = saved_message;
36183 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
36184 parser->colon_doesnt_start_class_def_p
36185 = saved_colon_doesnt_start_class_def_p;
36187 if (!cp_parser_require (parser, CPP_COLON, RT_COLON)
36188 || types.is_empty ())
36190 fail:
36191 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
36192 goto done;
36195 first_token = cp_lexer_peek_token (parser->lexer);
36196 cp = NULL;
36197 errs = errorcount;
36198 FOR_EACH_VEC_ELT (types, i, type)
36200 tree fntype
36201 = build_function_type_list (void_type_node,
36202 cp_build_reference_type (type, false),
36203 NULL_TREE);
36204 tree this_reduc_id = reduc_id;
36205 if (!dependent_type_p (type))
36206 this_reduc_id = omp_reduction_id (ERROR_MARK, reduc_id, type);
36207 tree fndecl = build_lang_decl (FUNCTION_DECL, this_reduc_id, fntype);
36208 DECL_SOURCE_LOCATION (fndecl) = pragma_tok->location;
36209 DECL_ARTIFICIAL (fndecl) = 1;
36210 DECL_EXTERNAL (fndecl) = 1;
36211 DECL_DECLARED_INLINE_P (fndecl) = 1;
36212 DECL_IGNORED_P (fndecl) = 1;
36213 DECL_OMP_DECLARE_REDUCTION_P (fndecl) = 1;
36214 SET_DECL_ASSEMBLER_NAME (fndecl, get_identifier ("<udr>"));
36215 DECL_ATTRIBUTES (fndecl)
36216 = tree_cons (get_identifier ("gnu_inline"), NULL_TREE,
36217 DECL_ATTRIBUTES (fndecl));
36218 if (processing_template_decl)
36219 fndecl = push_template_decl (fndecl);
36220 bool block_scope = false;
36221 tree block = NULL_TREE;
36222 if (current_function_decl)
36224 block_scope = true;
36225 DECL_CONTEXT (fndecl) = global_namespace;
36226 if (!processing_template_decl)
36227 pushdecl (fndecl);
36229 else if (current_class_type)
36231 if (cp == NULL)
36233 while (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL)
36234 && cp_lexer_next_token_is_not (parser->lexer, CPP_EOF))
36235 cp_lexer_consume_token (parser->lexer);
36236 if (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL))
36237 goto fail;
36238 cp = cp_token_cache_new (first_token,
36239 cp_lexer_peek_nth_token (parser->lexer,
36240 2));
36242 DECL_STATIC_FUNCTION_P (fndecl) = 1;
36243 finish_member_declaration (fndecl);
36244 DECL_PENDING_INLINE_INFO (fndecl) = cp;
36245 DECL_PENDING_INLINE_P (fndecl) = 1;
36246 vec_safe_push (unparsed_funs_with_definitions, fndecl);
36247 continue;
36249 else
36251 DECL_CONTEXT (fndecl) = current_namespace;
36252 pushdecl (fndecl);
36254 if (!block_scope)
36255 start_preparsed_function (fndecl, NULL_TREE, SF_PRE_PARSED);
36256 else
36257 block = begin_omp_structured_block ();
36258 if (cp)
36260 cp_parser_push_lexer_for_tokens (parser, cp);
36261 parser->lexer->in_pragma = true;
36263 if (!cp_parser_omp_declare_reduction_exprs (fndecl, parser))
36265 if (!block_scope)
36266 finish_function (0);
36267 else
36268 DECL_CONTEXT (fndecl) = current_function_decl;
36269 if (cp)
36270 cp_parser_pop_lexer (parser);
36271 goto fail;
36273 if (cp)
36274 cp_parser_pop_lexer (parser);
36275 if (!block_scope)
36276 finish_function (0);
36277 else
36279 DECL_CONTEXT (fndecl) = current_function_decl;
36280 block = finish_omp_structured_block (block);
36281 if (TREE_CODE (block) == BIND_EXPR)
36282 DECL_SAVED_TREE (fndecl) = BIND_EXPR_BODY (block);
36283 else if (TREE_CODE (block) == STATEMENT_LIST)
36284 DECL_SAVED_TREE (fndecl) = block;
36285 if (processing_template_decl)
36286 add_decl_expr (fndecl);
36288 cp_check_omp_declare_reduction (fndecl);
36289 if (cp == NULL && types.length () > 1)
36290 cp = cp_token_cache_new (first_token,
36291 cp_lexer_peek_nth_token (parser->lexer, 2));
36292 if (errs != errorcount)
36293 break;
36296 cp_parser_require_pragma_eol (parser, pragma_tok);
36298 done:
36299 /* Free any declarators allocated. */
36300 obstack_free (&declarator_obstack, p);
36303 /* OpenMP 4.0
36304 #pragma omp declare simd declare-simd-clauses[optseq] new-line
36305 #pragma omp declare reduction (reduction-id : typename-list : expression) \
36306 initializer-clause[opt] new-line
36307 #pragma omp declare target new-line */
36309 static void
36310 cp_parser_omp_declare (cp_parser *parser, cp_token *pragma_tok,
36311 enum pragma_context context)
36313 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
36315 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
36316 const char *p = IDENTIFIER_POINTER (id);
36318 if (strcmp (p, "simd") == 0)
36320 cp_lexer_consume_token (parser->lexer);
36321 cp_parser_omp_declare_simd (parser, pragma_tok,
36322 context);
36323 return;
36325 cp_ensure_no_omp_declare_simd (parser);
36326 if (strcmp (p, "reduction") == 0)
36328 cp_lexer_consume_token (parser->lexer);
36329 cp_parser_omp_declare_reduction (parser, pragma_tok,
36330 context);
36331 return;
36333 if (!flag_openmp) /* flag_openmp_simd */
36335 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
36336 return;
36338 if (strcmp (p, "target") == 0)
36340 cp_lexer_consume_token (parser->lexer);
36341 cp_parser_omp_declare_target (parser, pragma_tok);
36342 return;
36345 cp_parser_error (parser, "expected %<simd%> or %<reduction%> "
36346 "or %<target%>");
36347 cp_parser_require_pragma_eol (parser, pragma_tok);
36350 /* OpenMP 4.5:
36351 #pragma omp taskloop taskloop-clause[optseq] new-line
36352 for-loop
36354 #pragma omp taskloop simd taskloop-simd-clause[optseq] new-line
36355 for-loop */
36357 #define OMP_TASKLOOP_CLAUSE_MASK \
36358 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SHARED) \
36359 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
36360 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
36361 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
36362 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEFAULT) \
36363 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_GRAINSIZE) \
36364 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NUM_TASKS) \
36365 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COLLAPSE) \
36366 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_UNTIED) \
36367 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
36368 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FINAL) \
36369 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MERGEABLE) \
36370 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOGROUP) \
36371 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIORITY))
36373 static tree
36374 cp_parser_omp_taskloop (cp_parser *parser, cp_token *pragma_tok,
36375 char *p_name, omp_clause_mask mask, tree *cclauses,
36376 bool *if_p)
36378 tree clauses, sb, ret;
36379 unsigned int save;
36380 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
36382 strcat (p_name, " taskloop");
36383 mask |= OMP_TASKLOOP_CLAUSE_MASK;
36385 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
36387 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
36388 const char *p = IDENTIFIER_POINTER (id);
36390 if (strcmp (p, "simd") == 0)
36392 tree cclauses_buf[C_OMP_CLAUSE_SPLIT_COUNT];
36393 if (cclauses == NULL)
36394 cclauses = cclauses_buf;
36396 cp_lexer_consume_token (parser->lexer);
36397 if (!flag_openmp) /* flag_openmp_simd */
36398 return cp_parser_omp_simd (parser, pragma_tok, p_name, mask,
36399 cclauses, if_p);
36400 sb = begin_omp_structured_block ();
36401 save = cp_parser_begin_omp_structured_block (parser);
36402 ret = cp_parser_omp_simd (parser, pragma_tok, p_name, mask,
36403 cclauses, if_p);
36404 cp_parser_end_omp_structured_block (parser, save);
36405 tree body = finish_omp_structured_block (sb);
36406 if (ret == NULL)
36407 return ret;
36408 ret = make_node (OMP_TASKLOOP);
36409 TREE_TYPE (ret) = void_type_node;
36410 OMP_FOR_BODY (ret) = body;
36411 OMP_FOR_CLAUSES (ret) = cclauses[C_OMP_CLAUSE_SPLIT_TASKLOOP];
36412 SET_EXPR_LOCATION (ret, loc);
36413 add_stmt (ret);
36414 return ret;
36417 if (!flag_openmp) /* flag_openmp_simd */
36419 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
36420 return NULL_TREE;
36423 clauses = cp_parser_omp_all_clauses (parser, mask, p_name, pragma_tok,
36424 cclauses == NULL);
36425 if (cclauses)
36427 cp_omp_split_clauses (loc, OMP_TASKLOOP, mask, clauses, cclauses);
36428 clauses = cclauses[C_OMP_CLAUSE_SPLIT_TASKLOOP];
36431 sb = begin_omp_structured_block ();
36432 save = cp_parser_begin_omp_structured_block (parser);
36434 ret = cp_parser_omp_for_loop (parser, OMP_TASKLOOP, clauses, cclauses,
36435 if_p);
36437 cp_parser_end_omp_structured_block (parser, save);
36438 add_stmt (finish_omp_structured_block (sb));
36440 return ret;
36444 /* OpenACC 2.0:
36445 # pragma acc routine oacc-routine-clause[optseq] new-line
36446 function-definition
36448 # pragma acc routine ( name ) oacc-routine-clause[optseq] new-line
36451 #define OACC_ROUTINE_CLAUSE_MASK \
36452 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_GANG) \
36453 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_WORKER) \
36454 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_VECTOR) \
36455 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_SEQ))
36458 /* Parse the OpenACC routine pragma. This has an optional '( name )'
36459 component, which must resolve to a declared namespace-scope
36460 function. The clauses are either processed directly (for a named
36461 function), or defered until the immediatley following declaration
36462 is parsed. */
36464 static void
36465 cp_parser_oacc_routine (cp_parser *parser, cp_token *pragma_tok,
36466 enum pragma_context context)
36468 bool first_p = parser->oacc_routine == NULL;
36469 location_t loc = pragma_tok->location;
36470 cp_omp_declare_simd_data data;
36471 if (first_p)
36473 data.error_seen = false;
36474 data.fndecl_seen = false;
36475 data.tokens = vNULL;
36476 data.clauses = NULL_TREE;
36477 parser->oacc_routine = &data;
36480 tree decl = NULL_TREE;
36481 /* Create a dummy claue, to record location. */
36482 tree c_head = build_omp_clause (pragma_tok->location, OMP_CLAUSE_SEQ);
36484 if (context != pragma_external)
36486 cp_parser_error (parser, "%<#pragma acc routine%> not at file scope");
36487 parser->oacc_routine->error_seen = true;
36488 parser->oacc_routine = NULL;
36489 return;
36492 /* Look for optional '( name )'. */
36493 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
36495 if (!first_p)
36497 while (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL)
36498 && cp_lexer_next_token_is_not (parser->lexer, CPP_EOF))
36499 cp_lexer_consume_token (parser->lexer);
36500 if (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL))
36501 parser->oacc_routine->error_seen = true;
36502 cp_parser_require_pragma_eol (parser, pragma_tok);
36504 error_at (OMP_CLAUSE_LOCATION (parser->oacc_routine->clauses),
36505 "%<#pragma acc routine%> not followed by a "
36506 "function declaration or definition");
36508 parser->oacc_routine->error_seen = true;
36509 return;
36512 cp_lexer_consume_token (parser->lexer);
36513 cp_token *token = cp_lexer_peek_token (parser->lexer);
36515 /* We parse the name as an id-expression. If it resolves to
36516 anything other than a non-overloaded function at namespace
36517 scope, it's an error. */
36518 tree id = cp_parser_id_expression (parser,
36519 /*template_keyword_p=*/false,
36520 /*check_dependency_p=*/false,
36521 /*template_p=*/NULL,
36522 /*declarator_p=*/false,
36523 /*optional_p=*/false);
36524 decl = cp_parser_lookup_name_simple (parser, id, token->location);
36525 if (id != error_mark_node && decl == error_mark_node)
36526 cp_parser_name_lookup_error (parser, id, decl, NLE_NULL,
36527 token->location);
36529 if (decl == error_mark_node
36530 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
36532 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
36533 parser->oacc_routine = NULL;
36534 return;
36537 /* Build a chain of clauses. */
36538 parser->lexer->in_pragma = true;
36539 tree clauses = NULL_TREE;
36540 clauses = cp_parser_oacc_all_clauses (parser, OACC_ROUTINE_CLAUSE_MASK,
36541 "#pragma acc routine",
36542 cp_lexer_peek_token
36543 (parser->lexer));
36545 /* Force clauses to be non-null, by attaching context to it. */
36546 clauses = tree_cons (c_head, clauses, NULL_TREE);
36548 if (decl && is_overloaded_fn (decl)
36549 && (TREE_CODE (decl) != FUNCTION_DECL
36550 || DECL_FUNCTION_TEMPLATE_P (decl)))
36552 error_at (loc, "%<#pragma acc routine%> names a set of overloads");
36553 parser->oacc_routine = NULL;
36554 return;
36557 /* Perhaps we should use the same rule as declarations in different
36558 namespaces? */
36559 if (!DECL_NAMESPACE_SCOPE_P (decl))
36561 error_at (loc, "%<#pragma acc routine%> does not refer to a "
36562 "namespace scope function");
36563 parser->oacc_routine = NULL;
36564 return;
36567 if (!decl || TREE_CODE (decl) != FUNCTION_DECL)
36569 error_at (loc,
36570 "%<#pragma acc routine%> does not refer to a function");
36571 parser->oacc_routine = NULL;
36572 return;
36575 data.clauses = clauses;
36577 cp_finalize_oacc_routine (parser, decl, false);
36578 data.tokens.release ();
36579 parser->oacc_routine = NULL;
36581 else
36583 while (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL)
36584 && cp_lexer_next_token_is_not (parser->lexer, CPP_EOF))
36585 cp_lexer_consume_token (parser->lexer);
36586 if (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL))
36587 parser->oacc_routine->error_seen = true;
36588 cp_parser_require_pragma_eol (parser, pragma_tok);
36590 struct cp_token_cache *cp
36591 = cp_token_cache_new (pragma_tok, cp_lexer_peek_token (parser->lexer));
36592 parser->oacc_routine->tokens.safe_push (cp);
36594 if (first_p)
36595 parser->oacc_routine->clauses = c_head;
36597 while (cp_lexer_next_token_is (parser->lexer, CPP_PRAGMA))
36598 cp_parser_pragma (parser, context, NULL);
36600 if (first_p)
36602 /* Create an empty list of clauses. */
36603 parser->oacc_routine->clauses = tree_cons (c_head, NULL_TREE,
36604 NULL_TREE);
36605 cp_parser_declaration (parser);
36607 if (parser->oacc_routine
36608 && !parser->oacc_routine->error_seen
36609 && !parser->oacc_routine->fndecl_seen)
36610 error_at (loc, "%<#pragma acc routine%> not followed by a "
36611 "function declaration or definition");
36613 data.tokens.release ();
36614 parser->oacc_routine = NULL;
36619 /* Finalize #pragma acc routine clauses after direct declarator has
36620 been parsed, and put that into "oacc function" attribute. */
36622 static tree
36623 cp_parser_late_parsing_oacc_routine (cp_parser *parser, tree attrs)
36625 struct cp_token_cache *ce;
36626 cp_omp_declare_simd_data *data = parser->oacc_routine;
36627 tree cl, clauses = parser->oacc_routine->clauses;
36628 location_t loc;
36630 loc = OMP_CLAUSE_LOCATION (TREE_PURPOSE(clauses));
36632 if ((!data->error_seen && data->fndecl_seen)
36633 || data->tokens.length () != 1)
36635 error_at (loc, "%<#pragma acc routine%> not followed by a "
36636 "function declaration or definition");
36637 data->error_seen = true;
36638 return attrs;
36640 if (data->error_seen)
36641 return attrs;
36643 ce = data->tokens[0];
36645 cp_parser_push_lexer_for_tokens (parser, ce);
36646 parser->lexer->in_pragma = true;
36647 gcc_assert (cp_lexer_peek_token (parser->lexer)->type == CPP_PRAGMA);
36649 cp_token *pragma_tok = cp_lexer_consume_token (parser->lexer);
36650 cl = cp_parser_oacc_all_clauses (parser, OACC_ROUTINE_CLAUSE_MASK,
36651 "#pragma acc routine", pragma_tok);
36652 cp_parser_pop_lexer (parser);
36654 tree c_head = build_omp_clause (loc, OMP_CLAUSE_SEQ);
36656 /* Force clauses to be non-null, by attaching context to it. */
36657 parser->oacc_routine->clauses = tree_cons (c_head, cl, NULL_TREE);
36659 data->fndecl_seen = true;
36660 return attrs;
36663 /* Apply any saved OpenACC routine clauses to a just-parsed
36664 declaration. */
36666 static void
36667 cp_finalize_oacc_routine (cp_parser *parser, tree fndecl, bool is_defn)
36669 if (__builtin_expect (parser->oacc_routine != NULL, 0))
36671 tree clauses = parser->oacc_routine->clauses;
36672 location_t loc = OMP_CLAUSE_LOCATION (TREE_PURPOSE(clauses));
36674 if (parser->oacc_routine->error_seen)
36675 return;
36677 if (fndecl == error_mark_node)
36679 parser->oacc_routine = NULL;
36680 return;
36683 if (TREE_CODE (fndecl) != FUNCTION_DECL)
36685 cp_ensure_no_oacc_routine (parser);
36686 return;
36689 if (!fndecl || TREE_CODE (fndecl) != FUNCTION_DECL)
36691 error_at (loc,
36692 "%<#pragma acc routine%> not followed by a function "
36693 "declaration or definition");
36694 parser->oacc_routine = NULL;
36697 if (get_oacc_fn_attrib (fndecl))
36699 error_at (loc, "%<#pragma acc routine%> already applied to %D",
36700 fndecl);
36701 parser->oacc_routine = NULL;
36704 if (TREE_USED (fndecl) || (!is_defn && DECL_SAVED_TREE (fndecl)))
36706 error_at (loc, "%<#pragma acc routine%> must be applied before %s",
36707 TREE_USED (fndecl) ? "use" : "definition");
36708 parser->oacc_routine = NULL;
36711 /* Process for function attrib */
36712 tree dims = build_oacc_routine_dims (TREE_VALUE (clauses));
36713 replace_oacc_fn_attrib (fndecl, dims);
36715 /* Add an "omp target" attribute. */
36716 DECL_ATTRIBUTES (fndecl)
36717 = tree_cons (get_identifier ("omp declare target"),
36718 NULL_TREE, DECL_ATTRIBUTES (fndecl));
36722 /* Main entry point to OpenMP statement pragmas. */
36724 static void
36725 cp_parser_omp_construct (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
36727 tree stmt;
36728 char p_name[sizeof "#pragma omp teams distribute parallel for simd"];
36729 omp_clause_mask mask (0);
36731 switch (cp_parser_pragma_kind (pragma_tok))
36733 case PRAGMA_OACC_ATOMIC:
36734 cp_parser_omp_atomic (parser, pragma_tok);
36735 return;
36736 case PRAGMA_OACC_CACHE:
36737 stmt = cp_parser_oacc_cache (parser, pragma_tok);
36738 break;
36739 case PRAGMA_OACC_DATA:
36740 stmt = cp_parser_oacc_data (parser, pragma_tok, if_p);
36741 break;
36742 case PRAGMA_OACC_ENTER_DATA:
36743 stmt = cp_parser_oacc_enter_exit_data (parser, pragma_tok, true);
36744 break;
36745 case PRAGMA_OACC_EXIT_DATA:
36746 stmt = cp_parser_oacc_enter_exit_data (parser, pragma_tok, false);
36747 break;
36748 case PRAGMA_OACC_HOST_DATA:
36749 stmt = cp_parser_oacc_host_data (parser, pragma_tok, if_p);
36750 break;
36751 case PRAGMA_OACC_KERNELS:
36752 case PRAGMA_OACC_PARALLEL:
36753 strcpy (p_name, "#pragma acc");
36754 stmt = cp_parser_oacc_kernels_parallel (parser, pragma_tok, p_name,
36755 if_p);
36756 break;
36757 case PRAGMA_OACC_LOOP:
36758 strcpy (p_name, "#pragma acc");
36759 stmt = cp_parser_oacc_loop (parser, pragma_tok, p_name, mask, NULL,
36760 if_p);
36761 break;
36762 case PRAGMA_OACC_UPDATE:
36763 stmt = cp_parser_oacc_update (parser, pragma_tok);
36764 break;
36765 case PRAGMA_OACC_WAIT:
36766 stmt = cp_parser_oacc_wait (parser, pragma_tok);
36767 break;
36768 case PRAGMA_OMP_ATOMIC:
36769 cp_parser_omp_atomic (parser, pragma_tok);
36770 return;
36771 case PRAGMA_OMP_CRITICAL:
36772 stmt = cp_parser_omp_critical (parser, pragma_tok, if_p);
36773 break;
36774 case PRAGMA_OMP_DISTRIBUTE:
36775 strcpy (p_name, "#pragma omp");
36776 stmt = cp_parser_omp_distribute (parser, pragma_tok, p_name, mask, NULL,
36777 if_p);
36778 break;
36779 case PRAGMA_OMP_FOR:
36780 strcpy (p_name, "#pragma omp");
36781 stmt = cp_parser_omp_for (parser, pragma_tok, p_name, mask, NULL,
36782 if_p);
36783 break;
36784 case PRAGMA_OMP_MASTER:
36785 stmt = cp_parser_omp_master (parser, pragma_tok, if_p);
36786 break;
36787 case PRAGMA_OMP_PARALLEL:
36788 strcpy (p_name, "#pragma omp");
36789 stmt = cp_parser_omp_parallel (parser, pragma_tok, p_name, mask, NULL,
36790 if_p);
36791 break;
36792 case PRAGMA_OMP_SECTIONS:
36793 strcpy (p_name, "#pragma omp");
36794 stmt = cp_parser_omp_sections (parser, pragma_tok, p_name, mask, NULL);
36795 break;
36796 case PRAGMA_OMP_SIMD:
36797 strcpy (p_name, "#pragma omp");
36798 stmt = cp_parser_omp_simd (parser, pragma_tok, p_name, mask, NULL,
36799 if_p);
36800 break;
36801 case PRAGMA_OMP_SINGLE:
36802 stmt = cp_parser_omp_single (parser, pragma_tok, if_p);
36803 break;
36804 case PRAGMA_OMP_TASK:
36805 stmt = cp_parser_omp_task (parser, pragma_tok, if_p);
36806 break;
36807 case PRAGMA_OMP_TASKGROUP:
36808 stmt = cp_parser_omp_taskgroup (parser, pragma_tok, if_p);
36809 break;
36810 case PRAGMA_OMP_TASKLOOP:
36811 strcpy (p_name, "#pragma omp");
36812 stmt = cp_parser_omp_taskloop (parser, pragma_tok, p_name, mask, NULL,
36813 if_p);
36814 break;
36815 case PRAGMA_OMP_TEAMS:
36816 strcpy (p_name, "#pragma omp");
36817 stmt = cp_parser_omp_teams (parser, pragma_tok, p_name, mask, NULL,
36818 if_p);
36819 break;
36820 default:
36821 gcc_unreachable ();
36824 protected_set_expr_location (stmt, pragma_tok->location);
36827 /* Transactional Memory parsing routines. */
36829 /* Parse a transaction attribute.
36831 txn-attribute:
36832 attribute
36833 [ [ identifier ] ]
36835 We use this instead of cp_parser_attributes_opt for transactions to avoid
36836 the pedwarn in C++98 mode. */
36838 static tree
36839 cp_parser_txn_attribute_opt (cp_parser *parser)
36841 cp_token *token;
36842 tree attr_name, attr = NULL;
36844 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_ATTRIBUTE))
36845 return cp_parser_attributes_opt (parser);
36847 if (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_SQUARE))
36848 return NULL_TREE;
36849 cp_lexer_consume_token (parser->lexer);
36850 if (!cp_parser_require (parser, CPP_OPEN_SQUARE, RT_OPEN_SQUARE))
36851 goto error1;
36853 token = cp_lexer_peek_token (parser->lexer);
36854 if (token->type == CPP_NAME || token->type == CPP_KEYWORD)
36856 token = cp_lexer_consume_token (parser->lexer);
36858 attr_name = (token->type == CPP_KEYWORD
36859 /* For keywords, use the canonical spelling,
36860 not the parsed identifier. */
36861 ? ridpointers[(int) token->keyword]
36862 : token->u.value);
36863 attr = build_tree_list (attr_name, NULL_TREE);
36865 else
36866 cp_parser_error (parser, "expected identifier");
36868 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
36869 error1:
36870 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
36871 return attr;
36874 /* Parse a __transaction_atomic or __transaction_relaxed statement.
36876 transaction-statement:
36877 __transaction_atomic txn-attribute[opt] txn-noexcept-spec[opt]
36878 compound-statement
36879 __transaction_relaxed txn-noexcept-spec[opt] compound-statement
36882 static tree
36883 cp_parser_transaction (cp_parser *parser, cp_token *token)
36885 unsigned char old_in = parser->in_transaction;
36886 unsigned char this_in = 1, new_in;
36887 enum rid keyword = token->keyword;
36888 tree stmt, attrs, noex;
36890 cp_lexer_consume_token (parser->lexer);
36892 if (keyword == RID_TRANSACTION_RELAXED
36893 || keyword == RID_SYNCHRONIZED)
36894 this_in |= TM_STMT_ATTR_RELAXED;
36895 else
36897 attrs = cp_parser_txn_attribute_opt (parser);
36898 if (attrs)
36899 this_in |= parse_tm_stmt_attr (attrs, TM_STMT_ATTR_OUTER);
36902 /* Parse a noexcept specification. */
36903 if (keyword == RID_ATOMIC_NOEXCEPT)
36904 noex = boolean_true_node;
36905 else if (keyword == RID_ATOMIC_CANCEL)
36907 /* cancel-and-throw is unimplemented. */
36908 sorry ("atomic_cancel");
36909 noex = NULL_TREE;
36911 else
36912 noex = cp_parser_noexcept_specification_opt (parser, true, NULL, true);
36914 /* Keep track if we're in the lexical scope of an outer transaction. */
36915 new_in = this_in | (old_in & TM_STMT_ATTR_OUTER);
36917 stmt = begin_transaction_stmt (token->location, NULL, this_in);
36919 parser->in_transaction = new_in;
36920 cp_parser_compound_statement (parser, NULL, BCS_TRANSACTION, false);
36921 parser->in_transaction = old_in;
36923 finish_transaction_stmt (stmt, NULL, this_in, noex);
36925 return stmt;
36928 /* Parse a __transaction_atomic or __transaction_relaxed expression.
36930 transaction-expression:
36931 __transaction_atomic txn-noexcept-spec[opt] ( expression )
36932 __transaction_relaxed txn-noexcept-spec[opt] ( expression )
36935 static tree
36936 cp_parser_transaction_expression (cp_parser *parser, enum rid keyword)
36938 unsigned char old_in = parser->in_transaction;
36939 unsigned char this_in = 1;
36940 cp_token *token;
36941 tree expr, noex;
36942 bool noex_expr;
36943 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
36945 gcc_assert (keyword == RID_TRANSACTION_ATOMIC
36946 || keyword == RID_TRANSACTION_RELAXED);
36948 if (!flag_tm)
36949 error_at (loc,
36950 keyword == RID_TRANSACTION_RELAXED
36951 ? G_("%<__transaction_relaxed%> without transactional memory "
36952 "support enabled")
36953 : G_("%<__transaction_atomic%> without transactional memory "
36954 "support enabled"));
36956 token = cp_parser_require_keyword (parser, keyword,
36957 (keyword == RID_TRANSACTION_ATOMIC ? RT_TRANSACTION_ATOMIC
36958 : RT_TRANSACTION_RELAXED));
36959 gcc_assert (token != NULL);
36961 if (keyword == RID_TRANSACTION_RELAXED)
36962 this_in |= TM_STMT_ATTR_RELAXED;
36964 /* Set this early. This might mean that we allow transaction_cancel in
36965 an expression that we find out later actually has to be a constexpr.
36966 However, we expect that cxx_constant_value will be able to deal with
36967 this; also, if the noexcept has no constexpr, then what we parse next
36968 really is a transaction's body. */
36969 parser->in_transaction = this_in;
36971 /* Parse a noexcept specification. */
36972 noex = cp_parser_noexcept_specification_opt (parser, false, &noex_expr,
36973 true);
36975 if (!noex || !noex_expr
36976 || cp_lexer_peek_token (parser->lexer)->type == CPP_OPEN_PAREN)
36978 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
36980 expr = cp_parser_expression (parser);
36981 expr = finish_parenthesized_expr (expr);
36983 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
36985 else
36987 /* The only expression that is available got parsed for the noexcept
36988 already. noexcept is true then. */
36989 expr = noex;
36990 noex = boolean_true_node;
36993 expr = build_transaction_expr (token->location, expr, this_in, noex);
36994 parser->in_transaction = old_in;
36996 if (cp_parser_non_integral_constant_expression (parser, NIC_TRANSACTION))
36997 return error_mark_node;
36999 return (flag_tm ? expr : error_mark_node);
37002 /* Parse a function-transaction-block.
37004 function-transaction-block:
37005 __transaction_atomic txn-attribute[opt] ctor-initializer[opt]
37006 function-body
37007 __transaction_atomic txn-attribute[opt] function-try-block
37008 __transaction_relaxed ctor-initializer[opt] function-body
37009 __transaction_relaxed function-try-block
37012 static bool
37013 cp_parser_function_transaction (cp_parser *parser, enum rid keyword)
37015 unsigned char old_in = parser->in_transaction;
37016 unsigned char new_in = 1;
37017 tree compound_stmt, stmt, attrs;
37018 bool ctor_initializer_p;
37019 cp_token *token;
37021 gcc_assert (keyword == RID_TRANSACTION_ATOMIC
37022 || keyword == RID_TRANSACTION_RELAXED);
37023 token = cp_parser_require_keyword (parser, keyword,
37024 (keyword == RID_TRANSACTION_ATOMIC ? RT_TRANSACTION_ATOMIC
37025 : RT_TRANSACTION_RELAXED));
37026 gcc_assert (token != NULL);
37028 if (keyword == RID_TRANSACTION_RELAXED)
37029 new_in |= TM_STMT_ATTR_RELAXED;
37030 else
37032 attrs = cp_parser_txn_attribute_opt (parser);
37033 if (attrs)
37034 new_in |= parse_tm_stmt_attr (attrs, TM_STMT_ATTR_OUTER);
37037 stmt = begin_transaction_stmt (token->location, &compound_stmt, new_in);
37039 parser->in_transaction = new_in;
37041 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TRY))
37042 ctor_initializer_p = cp_parser_function_try_block (parser);
37043 else
37044 ctor_initializer_p = cp_parser_ctor_initializer_opt_and_function_body
37045 (parser, /*in_function_try_block=*/false);
37047 parser->in_transaction = old_in;
37049 finish_transaction_stmt (stmt, compound_stmt, new_in, NULL_TREE);
37051 return ctor_initializer_p;
37054 /* Parse a __transaction_cancel statement.
37056 cancel-statement:
37057 __transaction_cancel txn-attribute[opt] ;
37058 __transaction_cancel txn-attribute[opt] throw-expression ;
37060 ??? Cancel and throw is not yet implemented. */
37062 static tree
37063 cp_parser_transaction_cancel (cp_parser *parser)
37065 cp_token *token;
37066 bool is_outer = false;
37067 tree stmt, attrs;
37069 token = cp_parser_require_keyword (parser, RID_TRANSACTION_CANCEL,
37070 RT_TRANSACTION_CANCEL);
37071 gcc_assert (token != NULL);
37073 attrs = cp_parser_txn_attribute_opt (parser);
37074 if (attrs)
37075 is_outer = (parse_tm_stmt_attr (attrs, TM_STMT_ATTR_OUTER) != 0);
37077 /* ??? Parse cancel-and-throw here. */
37079 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
37081 if (!flag_tm)
37083 error_at (token->location, "%<__transaction_cancel%> without "
37084 "transactional memory support enabled");
37085 return error_mark_node;
37087 else if (parser->in_transaction & TM_STMT_ATTR_RELAXED)
37089 error_at (token->location, "%<__transaction_cancel%> within a "
37090 "%<__transaction_relaxed%>");
37091 return error_mark_node;
37093 else if (is_outer)
37095 if ((parser->in_transaction & TM_STMT_ATTR_OUTER) == 0
37096 && !is_tm_may_cancel_outer (current_function_decl))
37098 error_at (token->location, "outer %<__transaction_cancel%> not "
37099 "within outer %<__transaction_atomic%>");
37100 error_at (token->location,
37101 " or a %<transaction_may_cancel_outer%> function");
37102 return error_mark_node;
37105 else if (parser->in_transaction == 0)
37107 error_at (token->location, "%<__transaction_cancel%> not within "
37108 "%<__transaction_atomic%>");
37109 return error_mark_node;
37112 stmt = build_tm_abort_call (token->location, is_outer);
37113 add_stmt (stmt);
37115 return stmt;
37118 /* The parser. */
37120 static GTY (()) cp_parser *the_parser;
37123 /* Special handling for the first token or line in the file. The first
37124 thing in the file might be #pragma GCC pch_preprocess, which loads a
37125 PCH file, which is a GC collection point. So we need to handle this
37126 first pragma without benefit of an existing lexer structure.
37128 Always returns one token to the caller in *FIRST_TOKEN. This is
37129 either the true first token of the file, or the first token after
37130 the initial pragma. */
37132 static void
37133 cp_parser_initial_pragma (cp_token *first_token)
37135 tree name = NULL;
37137 cp_lexer_get_preprocessor_token (NULL, first_token);
37138 if (cp_parser_pragma_kind (first_token) != PRAGMA_GCC_PCH_PREPROCESS)
37139 return;
37141 cp_lexer_get_preprocessor_token (NULL, first_token);
37142 if (first_token->type == CPP_STRING)
37144 name = first_token->u.value;
37146 cp_lexer_get_preprocessor_token (NULL, first_token);
37147 if (first_token->type != CPP_PRAGMA_EOL)
37148 error_at (first_token->location,
37149 "junk at end of %<#pragma GCC pch_preprocess%>");
37151 else
37152 error_at (first_token->location, "expected string literal");
37154 /* Skip to the end of the pragma. */
37155 while (first_token->type != CPP_PRAGMA_EOL && first_token->type != CPP_EOF)
37156 cp_lexer_get_preprocessor_token (NULL, first_token);
37158 /* Now actually load the PCH file. */
37159 if (name)
37160 c_common_pch_pragma (parse_in, TREE_STRING_POINTER (name));
37162 /* Read one more token to return to our caller. We have to do this
37163 after reading the PCH file in, since its pointers have to be
37164 live. */
37165 cp_lexer_get_preprocessor_token (NULL, first_token);
37168 /* Parses the grainsize pragma for the _Cilk_for statement.
37169 Syntax:
37170 #pragma cilk grainsize = <VALUE>. */
37172 static void
37173 cp_parser_cilk_grainsize (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
37175 if (cp_parser_require (parser, CPP_EQ, RT_EQ))
37177 tree exp = cp_parser_binary_expression (parser, false, false,
37178 PREC_NOT_OPERATOR, NULL);
37179 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
37180 if (!exp || exp == error_mark_node)
37182 error_at (pragma_tok->location, "invalid grainsize for _Cilk_for");
37183 return;
37186 /* Make sure the next token is _Cilk_for, it is invalid otherwise. */
37187 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_CILK_FOR))
37188 cp_parser_cilk_for (parser, exp, if_p);
37189 else
37190 warning_at (cp_lexer_peek_token (parser->lexer)->location, 0,
37191 "%<#pragma cilk grainsize%> is not followed by "
37192 "%<_Cilk_for%>");
37193 return;
37195 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
37198 /* Normal parsing of a pragma token. Here we can (and must) use the
37199 regular lexer. */
37201 static bool
37202 cp_parser_pragma (cp_parser *parser, enum pragma_context context, bool *if_p)
37204 cp_token *pragma_tok;
37205 unsigned int id;
37206 tree stmt;
37207 bool ret;
37209 pragma_tok = cp_lexer_consume_token (parser->lexer);
37210 gcc_assert (pragma_tok->type == CPP_PRAGMA);
37211 parser->lexer->in_pragma = true;
37213 id = cp_parser_pragma_kind (pragma_tok);
37214 if (id != PRAGMA_OMP_DECLARE_REDUCTION && id != PRAGMA_OACC_ROUTINE)
37215 cp_ensure_no_omp_declare_simd (parser);
37216 switch (id)
37218 case PRAGMA_GCC_PCH_PREPROCESS:
37219 error_at (pragma_tok->location,
37220 "%<#pragma GCC pch_preprocess%> must be first");
37221 break;
37223 case PRAGMA_OMP_BARRIER:
37224 switch (context)
37226 case pragma_compound:
37227 cp_parser_omp_barrier (parser, pragma_tok);
37228 return false;
37229 case pragma_stmt:
37230 error_at (pragma_tok->location, "%<#pragma omp barrier%> may only be "
37231 "used in compound statements");
37232 break;
37233 default:
37234 goto bad_stmt;
37236 break;
37238 case PRAGMA_OMP_FLUSH:
37239 switch (context)
37241 case pragma_compound:
37242 cp_parser_omp_flush (parser, pragma_tok);
37243 return false;
37244 case pragma_stmt:
37245 error_at (pragma_tok->location, "%<#pragma omp flush%> may only be "
37246 "used in compound statements");
37247 break;
37248 default:
37249 goto bad_stmt;
37251 break;
37253 case PRAGMA_OMP_TASKWAIT:
37254 switch (context)
37256 case pragma_compound:
37257 cp_parser_omp_taskwait (parser, pragma_tok);
37258 return false;
37259 case pragma_stmt:
37260 error_at (pragma_tok->location,
37261 "%<#pragma omp taskwait%> may only be "
37262 "used in compound statements");
37263 break;
37264 default:
37265 goto bad_stmt;
37267 break;
37269 case PRAGMA_OMP_TASKYIELD:
37270 switch (context)
37272 case pragma_compound:
37273 cp_parser_omp_taskyield (parser, pragma_tok);
37274 return false;
37275 case pragma_stmt:
37276 error_at (pragma_tok->location,
37277 "%<#pragma omp taskyield%> may only be "
37278 "used in compound statements");
37279 break;
37280 default:
37281 goto bad_stmt;
37283 break;
37285 case PRAGMA_OMP_CANCEL:
37286 switch (context)
37288 case pragma_compound:
37289 cp_parser_omp_cancel (parser, pragma_tok);
37290 return false;
37291 case pragma_stmt:
37292 error_at (pragma_tok->location,
37293 "%<#pragma omp cancel%> may only be "
37294 "used in compound statements");
37295 break;
37296 default:
37297 goto bad_stmt;
37299 break;
37301 case PRAGMA_OMP_CANCELLATION_POINT:
37302 switch (context)
37304 case pragma_compound:
37305 cp_parser_omp_cancellation_point (parser, pragma_tok);
37306 return false;
37307 case pragma_stmt:
37308 error_at (pragma_tok->location,
37309 "%<#pragma omp cancellation point%> may only be "
37310 "used in compound statements");
37311 break;
37312 default:
37313 goto bad_stmt;
37315 break;
37317 case PRAGMA_OMP_THREADPRIVATE:
37318 cp_parser_omp_threadprivate (parser, pragma_tok);
37319 return false;
37321 case PRAGMA_OMP_DECLARE_REDUCTION:
37322 cp_parser_omp_declare (parser, pragma_tok, context);
37323 return false;
37325 case PRAGMA_OACC_DECLARE:
37326 cp_parser_oacc_declare (parser, pragma_tok);
37327 return false;
37329 case PRAGMA_OACC_ROUTINE:
37330 cp_parser_oacc_routine (parser, pragma_tok, context);
37331 return false;
37333 case PRAGMA_OACC_ATOMIC:
37334 case PRAGMA_OACC_CACHE:
37335 case PRAGMA_OACC_DATA:
37336 case PRAGMA_OACC_ENTER_DATA:
37337 case PRAGMA_OACC_EXIT_DATA:
37338 case PRAGMA_OACC_HOST_DATA:
37339 case PRAGMA_OACC_KERNELS:
37340 case PRAGMA_OACC_PARALLEL:
37341 case PRAGMA_OACC_LOOP:
37342 case PRAGMA_OACC_UPDATE:
37343 case PRAGMA_OACC_WAIT:
37344 case PRAGMA_OMP_ATOMIC:
37345 case PRAGMA_OMP_CRITICAL:
37346 case PRAGMA_OMP_DISTRIBUTE:
37347 case PRAGMA_OMP_FOR:
37348 case PRAGMA_OMP_MASTER:
37349 case PRAGMA_OMP_PARALLEL:
37350 case PRAGMA_OMP_SECTIONS:
37351 case PRAGMA_OMP_SIMD:
37352 case PRAGMA_OMP_SINGLE:
37353 case PRAGMA_OMP_TASK:
37354 case PRAGMA_OMP_TASKGROUP:
37355 case PRAGMA_OMP_TASKLOOP:
37356 case PRAGMA_OMP_TEAMS:
37357 if (context != pragma_stmt && context != pragma_compound)
37358 goto bad_stmt;
37359 stmt = push_omp_privatization_clauses (false);
37360 cp_parser_omp_construct (parser, pragma_tok, if_p);
37361 pop_omp_privatization_clauses (stmt);
37362 return true;
37364 case PRAGMA_OMP_ORDERED:
37365 stmt = push_omp_privatization_clauses (false);
37366 ret = cp_parser_omp_ordered (parser, pragma_tok, context, if_p);
37367 pop_omp_privatization_clauses (stmt);
37368 return ret;
37370 case PRAGMA_OMP_TARGET:
37371 stmt = push_omp_privatization_clauses (false);
37372 ret = cp_parser_omp_target (parser, pragma_tok, context, if_p);
37373 pop_omp_privatization_clauses (stmt);
37374 return ret;
37376 case PRAGMA_OMP_END_DECLARE_TARGET:
37377 cp_parser_omp_end_declare_target (parser, pragma_tok);
37378 return false;
37380 case PRAGMA_OMP_SECTION:
37381 error_at (pragma_tok->location,
37382 "%<#pragma omp section%> may only be used in "
37383 "%<#pragma omp sections%> construct");
37384 break;
37386 case PRAGMA_IVDEP:
37388 if (context == pragma_external)
37390 error_at (pragma_tok->location,
37391 "%<#pragma GCC ivdep%> must be inside a function");
37392 break;
37394 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
37395 cp_token *tok;
37396 tok = cp_lexer_peek_token (the_parser->lexer);
37397 if (tok->type != CPP_KEYWORD
37398 || (tok->keyword != RID_FOR && tok->keyword != RID_WHILE
37399 && tok->keyword != RID_DO))
37401 cp_parser_error (parser, "for, while or do statement expected");
37402 return false;
37404 cp_parser_iteration_statement (parser, if_p, true);
37405 return true;
37408 case PRAGMA_CILK_SIMD:
37409 if (context == pragma_external)
37411 error_at (pragma_tok->location,
37412 "%<#pragma simd%> must be inside a function");
37413 break;
37415 stmt = push_omp_privatization_clauses (false);
37416 cp_parser_cilk_simd (parser, pragma_tok, if_p);
37417 pop_omp_privatization_clauses (stmt);
37418 return true;
37420 case PRAGMA_CILK_GRAINSIZE:
37421 if (context == pragma_external)
37423 error_at (pragma_tok->location,
37424 "%<#pragma cilk grainsize%> must be inside a function");
37425 break;
37428 /* Ignore the pragma if Cilk Plus is not enabled. */
37429 if (flag_cilkplus)
37431 cp_parser_cilk_grainsize (parser, pragma_tok, if_p);
37432 return true;
37434 else
37436 error_at (pragma_tok->location, "-fcilkplus must be enabled to use "
37437 "%<#pragma cilk grainsize%>");
37438 break;
37441 default:
37442 gcc_assert (id >= PRAGMA_FIRST_EXTERNAL);
37443 c_invoke_pragma_handler (id);
37444 break;
37446 bad_stmt:
37447 cp_parser_error (parser, "expected declaration specifiers");
37448 break;
37451 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
37452 return false;
37455 /* The interface the pragma parsers have to the lexer. */
37457 enum cpp_ttype
37458 pragma_lex (tree *value, location_t *loc)
37460 cp_token *tok = cp_lexer_peek_token (the_parser->lexer);
37461 enum cpp_ttype ret = tok->type;
37463 *value = tok->u.value;
37464 if (loc)
37465 *loc = tok->location;
37467 if (ret == CPP_PRAGMA_EOL || ret == CPP_EOF)
37468 ret = CPP_EOF;
37469 else if (ret == CPP_STRING)
37470 *value = cp_parser_string_literal (the_parser, false, false);
37471 else
37473 if (ret == CPP_KEYWORD)
37474 ret = CPP_NAME;
37475 cp_lexer_consume_token (the_parser->lexer);
37478 return ret;
37482 /* External interface. */
37484 /* Parse one entire translation unit. */
37486 void
37487 c_parse_file (void)
37489 static bool already_called = false;
37491 if (already_called)
37492 fatal_error (input_location,
37493 "inter-module optimizations not implemented for C++");
37494 already_called = true;
37496 the_parser = cp_parser_new ();
37497 push_deferring_access_checks (flag_access_control
37498 ? dk_no_deferred : dk_no_check);
37499 cp_parser_translation_unit (the_parser);
37500 the_parser = NULL;
37503 /* Parses the Cilk Plus #pragma simd and SIMD-enabled function attribute's
37504 vectorlength clause:
37505 Syntax:
37506 vectorlength ( constant-expression ) */
37508 static tree
37509 cp_parser_cilk_simd_vectorlength (cp_parser *parser, tree clauses,
37510 bool is_simd_fn)
37512 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
37513 tree expr;
37514 /* The vectorlength clause in #pragma simd behaves exactly like OpenMP's
37515 safelen clause. Thus, vectorlength is represented as OMP 4.0
37516 safelen. For SIMD-enabled function it is represented by OMP 4.0
37517 simdlen. */
37518 if (!is_simd_fn)
37519 check_no_duplicate_clause (clauses, OMP_CLAUSE_SAFELEN, "vectorlength",
37520 loc);
37521 else
37522 check_no_duplicate_clause (clauses, OMP_CLAUSE_SIMDLEN, "vectorlength",
37523 loc);
37525 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
37526 return error_mark_node;
37528 expr = cp_parser_constant_expression (parser);
37529 expr = maybe_constant_value (expr);
37531 /* If expr == error_mark_node, then don't emit any errors nor
37532 create a clause. if any of the above functions returns
37533 error mark node then they would have emitted an error message. */
37534 if (expr == error_mark_node)
37536 else if (!TREE_TYPE (expr)
37537 || !TREE_CONSTANT (expr)
37538 || !INTEGRAL_TYPE_P (TREE_TYPE (expr)))
37539 error_at (loc, "vectorlength must be an integer constant");
37540 else if (TREE_CONSTANT (expr)
37541 && exact_log2 (TREE_INT_CST_LOW (expr)) == -1)
37542 error_at (loc, "vectorlength must be a power of 2");
37543 else
37545 tree c;
37546 if (!is_simd_fn)
37548 c = build_omp_clause (loc, OMP_CLAUSE_SAFELEN);
37549 OMP_CLAUSE_SAFELEN_EXPR (c) = expr;
37550 OMP_CLAUSE_CHAIN (c) = clauses;
37551 clauses = c;
37553 else
37555 c = build_omp_clause (loc, OMP_CLAUSE_SIMDLEN);
37556 OMP_CLAUSE_SIMDLEN_EXPR (c) = expr;
37557 OMP_CLAUSE_CHAIN (c) = clauses;
37558 clauses = c;
37562 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
37563 return error_mark_node;
37564 return clauses;
37567 /* Handles the Cilk Plus #pragma simd linear clause.
37568 Syntax:
37569 linear ( simd-linear-variable-list )
37571 simd-linear-variable-list:
37572 simd-linear-variable
37573 simd-linear-variable-list , simd-linear-variable
37575 simd-linear-variable:
37576 id-expression
37577 id-expression : simd-linear-step
37579 simd-linear-step:
37580 conditional-expression */
37582 static tree
37583 cp_parser_cilk_simd_linear (cp_parser *parser, tree clauses)
37585 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
37587 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
37588 return clauses;
37589 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NAME))
37591 cp_parser_error (parser, "expected identifier");
37592 cp_parser_skip_to_closing_parenthesis (parser, false, false, true);
37593 return error_mark_node;
37596 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
37597 parser->colon_corrects_to_scope_p = false;
37598 while (1)
37600 cp_token *token = cp_lexer_peek_token (parser->lexer);
37601 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NAME))
37603 cp_parser_error (parser, "expected variable-name");
37604 clauses = error_mark_node;
37605 break;
37608 tree var_name = cp_parser_id_expression (parser, false, true, NULL,
37609 false, false);
37610 tree decl = cp_parser_lookup_name_simple (parser, var_name,
37611 token->location);
37612 if (decl == error_mark_node)
37614 cp_parser_name_lookup_error (parser, var_name, decl, NLE_NULL,
37615 token->location);
37616 clauses = error_mark_node;
37618 else
37620 tree e = NULL_TREE;
37621 tree step_size = integer_one_node;
37623 /* If present, parse the linear step. Otherwise, assume the default
37624 value of 1. */
37625 if (cp_lexer_peek_token (parser->lexer)->type == CPP_COLON)
37627 cp_lexer_consume_token (parser->lexer);
37629 e = cp_parser_assignment_expression (parser);
37630 e = maybe_constant_value (e);
37632 if (e == error_mark_node)
37634 /* If an error has occurred, then the whole pragma is
37635 considered ill-formed. Thus, no reason to keep
37636 parsing. */
37637 clauses = error_mark_node;
37638 break;
37640 else if (type_dependent_expression_p (e)
37641 || value_dependent_expression_p (e)
37642 || (TREE_TYPE (e)
37643 && INTEGRAL_TYPE_P (TREE_TYPE (e))
37644 && (TREE_CONSTANT (e)
37645 || DECL_P (e))))
37646 step_size = e;
37647 else
37648 cp_parser_error (parser,
37649 "step size must be an integer constant "
37650 "expression or an integer variable");
37653 /* Use the OMP_CLAUSE_LINEAR, which has the same semantics. */
37654 tree l = build_omp_clause (loc, OMP_CLAUSE_LINEAR);
37655 OMP_CLAUSE_DECL (l) = decl;
37656 OMP_CLAUSE_LINEAR_STEP (l) = step_size;
37657 OMP_CLAUSE_CHAIN (l) = clauses;
37658 clauses = l;
37660 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
37661 cp_lexer_consume_token (parser->lexer);
37662 else if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN))
37663 break;
37664 else
37666 error_at (cp_lexer_peek_token (parser->lexer)->location,
37667 "expected %<,%> or %<)%> after %qE", decl);
37668 clauses = error_mark_node;
37669 break;
37672 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
37673 cp_parser_skip_to_closing_parenthesis (parser, false, false, true);
37674 return clauses;
37677 /* Returns the name of the next clause. If the clause is not
37678 recognized, then PRAGMA_CILK_CLAUSE_NONE is returned and the next
37679 token is not consumed. Otherwise, the appropriate enum from the
37680 pragma_simd_clause is returned and the token is consumed. */
37682 static pragma_omp_clause
37683 cp_parser_cilk_simd_clause_name (cp_parser *parser)
37685 pragma_omp_clause clause_type;
37686 cp_token *token = cp_lexer_peek_token (parser->lexer);
37688 if (token->keyword == RID_PRIVATE)
37689 clause_type = PRAGMA_CILK_CLAUSE_PRIVATE;
37690 else if (!token->u.value || token->type != CPP_NAME)
37691 return PRAGMA_CILK_CLAUSE_NONE;
37692 else if (!strcmp (IDENTIFIER_POINTER (token->u.value), "vectorlength"))
37693 clause_type = PRAGMA_CILK_CLAUSE_VECTORLENGTH;
37694 else if (!strcmp (IDENTIFIER_POINTER (token->u.value), "linear"))
37695 clause_type = PRAGMA_CILK_CLAUSE_LINEAR;
37696 else if (!strcmp (IDENTIFIER_POINTER (token->u.value), "firstprivate"))
37697 clause_type = PRAGMA_CILK_CLAUSE_FIRSTPRIVATE;
37698 else if (!strcmp (IDENTIFIER_POINTER (token->u.value), "lastprivate"))
37699 clause_type = PRAGMA_CILK_CLAUSE_LASTPRIVATE;
37700 else if (!strcmp (IDENTIFIER_POINTER (token->u.value), "reduction"))
37701 clause_type = PRAGMA_CILK_CLAUSE_REDUCTION;
37702 else
37703 return PRAGMA_CILK_CLAUSE_NONE;
37705 cp_lexer_consume_token (parser->lexer);
37706 return clause_type;
37709 /* Parses all the #pragma simd clauses. Returns a list of clauses found. */
37711 static tree
37712 cp_parser_cilk_simd_all_clauses (cp_parser *parser, cp_token *pragma_token)
37714 tree clauses = NULL_TREE;
37716 while (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL)
37717 && clauses != error_mark_node)
37719 pragma_omp_clause c_kind;
37720 c_kind = cp_parser_cilk_simd_clause_name (parser);
37721 if (c_kind == PRAGMA_CILK_CLAUSE_VECTORLENGTH)
37722 clauses = cp_parser_cilk_simd_vectorlength (parser, clauses, false);
37723 else if (c_kind == PRAGMA_CILK_CLAUSE_LINEAR)
37724 clauses = cp_parser_cilk_simd_linear (parser, clauses);
37725 else if (c_kind == PRAGMA_CILK_CLAUSE_PRIVATE)
37726 /* Use the OpenMP 4.0 equivalent function. */
37727 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_PRIVATE, clauses);
37728 else if (c_kind == PRAGMA_CILK_CLAUSE_FIRSTPRIVATE)
37729 /* Use the OpenMP 4.0 equivalent function. */
37730 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_FIRSTPRIVATE,
37731 clauses);
37732 else if (c_kind == PRAGMA_CILK_CLAUSE_LASTPRIVATE)
37733 /* Use the OMP 4.0 equivalent function. */
37734 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_LASTPRIVATE,
37735 clauses);
37736 else if (c_kind == PRAGMA_CILK_CLAUSE_REDUCTION)
37737 /* Use the OMP 4.0 equivalent function. */
37738 clauses = cp_parser_omp_clause_reduction (parser, clauses);
37739 else
37741 clauses = error_mark_node;
37742 cp_parser_error (parser, "expected %<#pragma simd%> clause");
37743 break;
37747 cp_parser_skip_to_pragma_eol (parser, pragma_token);
37749 if (clauses == error_mark_node)
37750 return error_mark_node;
37751 else
37752 return finish_omp_clauses (clauses, C_ORT_CILK);
37755 /* Main entry-point for parsing Cilk Plus <#pragma simd> for loops. */
37757 static void
37758 cp_parser_cilk_simd (cp_parser *parser, cp_token *pragma_token, bool *if_p)
37760 tree clauses = cp_parser_cilk_simd_all_clauses (parser, pragma_token);
37762 if (clauses == error_mark_node)
37763 return;
37765 if (cp_lexer_next_token_is_not_keyword (parser->lexer, RID_FOR))
37767 error_at (cp_lexer_peek_token (parser->lexer)->location,
37768 "for statement expected");
37769 return;
37772 tree sb = begin_omp_structured_block ();
37773 int save = cp_parser_begin_omp_structured_block (parser);
37774 tree ret = cp_parser_omp_for_loop (parser, CILK_SIMD, clauses, NULL, if_p);
37775 if (ret)
37776 cpp_validate_cilk_plus_loop (OMP_FOR_BODY (ret));
37777 cp_parser_end_omp_structured_block (parser, save);
37778 add_stmt (finish_omp_structured_block (sb));
37781 /* Main entry-point for parsing Cilk Plus _Cilk_for
37782 loops. The return value is error_mark_node
37783 when errors happen and CILK_FOR tree on success. */
37785 static tree
37786 cp_parser_cilk_for (cp_parser *parser, tree grain, bool *if_p)
37788 if (cp_lexer_next_token_is_not_keyword (parser->lexer, RID_CILK_FOR))
37789 gcc_unreachable ();
37791 tree sb = begin_omp_structured_block ();
37792 int save = cp_parser_begin_omp_structured_block (parser);
37794 tree clauses = build_omp_clause (EXPR_LOCATION (grain), OMP_CLAUSE_SCHEDULE);
37795 OMP_CLAUSE_SCHEDULE_KIND (clauses) = OMP_CLAUSE_SCHEDULE_CILKFOR;
37796 OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (clauses) = grain;
37797 clauses = finish_omp_clauses (clauses, C_ORT_CILK);
37799 tree ret = cp_parser_omp_for_loop (parser, CILK_FOR, clauses, NULL, if_p);
37800 if (ret)
37801 cpp_validate_cilk_plus_loop (ret);
37802 else
37803 ret = error_mark_node;
37805 cp_parser_end_omp_structured_block (parser, save);
37806 add_stmt (finish_omp_structured_block (sb));
37807 return ret;
37810 /* Create an identifier for a generic parameter type (a synthesized
37811 template parameter implied by `auto' or a concept identifier). */
37813 static GTY(()) int generic_parm_count;
37814 static tree
37815 make_generic_type_name ()
37817 char buf[32];
37818 sprintf (buf, "auto:%d", ++generic_parm_count);
37819 return get_identifier (buf);
37822 /* Predicate that behaves as is_auto_or_concept but matches the parent
37823 node of the generic type rather than the generic type itself. This
37824 allows for type transformation in add_implicit_template_parms. */
37826 static inline bool
37827 tree_type_is_auto_or_concept (const_tree t)
37829 return TREE_TYPE (t) && is_auto_or_concept (TREE_TYPE (t));
37832 /* Add an implicit template type parameter to the CURRENT_TEMPLATE_PARMS
37833 (creating a new template parameter list if necessary). Returns the newly
37834 created template type parm. */
37836 static tree
37837 synthesize_implicit_template_parm (cp_parser *parser, tree constr)
37839 gcc_assert (current_binding_level->kind == sk_function_parms);
37841 /* Before committing to modifying any scope, if we're in an
37842 implicit template scope, and we're trying to synthesize a
37843 constrained parameter, try to find a previous parameter with
37844 the same name. This is the same-type rule for abbreviated
37845 function templates. */
37846 if (parser->implicit_template_scope && constr)
37848 tree t = parser->implicit_template_parms;
37849 while (t)
37851 if (equivalent_placeholder_constraints (TREE_TYPE (t), constr))
37853 tree d = TREE_VALUE (t);
37854 if (TREE_CODE (d) == PARM_DECL)
37855 /* Return the TEMPLATE_PARM_INDEX. */
37856 d = DECL_INITIAL (d);
37857 return d;
37859 t = TREE_CHAIN (t);
37863 /* We are either continuing a function template that already contains implicit
37864 template parameters, creating a new fully-implicit function template, or
37865 extending an existing explicit function template with implicit template
37866 parameters. */
37868 cp_binding_level *const entry_scope = current_binding_level;
37870 bool become_template = false;
37871 cp_binding_level *parent_scope = 0;
37873 if (parser->implicit_template_scope)
37875 gcc_assert (parser->implicit_template_parms);
37877 current_binding_level = parser->implicit_template_scope;
37879 else
37881 /* Roll back to the existing template parameter scope (in the case of
37882 extending an explicit function template) or introduce a new template
37883 parameter scope ahead of the function parameter scope (or class scope
37884 in the case of out-of-line member definitions). The function scope is
37885 added back after template parameter synthesis below. */
37887 cp_binding_level *scope = entry_scope;
37889 while (scope->kind == sk_function_parms)
37891 parent_scope = scope;
37892 scope = scope->level_chain;
37894 if (current_class_type && !LAMBDA_TYPE_P (current_class_type))
37896 /* If not defining a class, then any class scope is a scope level in
37897 an out-of-line member definition. In this case simply wind back
37898 beyond the first such scope to inject the template parameter list.
37899 Otherwise wind back to the class being defined. The latter can
37900 occur in class member friend declarations such as:
37902 class A {
37903 void foo (auto);
37905 class B {
37906 friend void A::foo (auto);
37909 The template parameter list synthesized for the friend declaration
37910 must be injected in the scope of 'B'. This can also occur in
37911 erroneous cases such as:
37913 struct A {
37914 struct B {
37915 void foo (auto);
37917 void B::foo (auto) {}
37920 Here the attempted definition of 'B::foo' within 'A' is ill-formed
37921 but, nevertheless, the template parameter list synthesized for the
37922 declarator should be injected into the scope of 'A' as if the
37923 ill-formed template was specified explicitly. */
37925 while (scope->kind == sk_class && !scope->defining_class_p)
37927 parent_scope = scope;
37928 scope = scope->level_chain;
37932 current_binding_level = scope;
37934 if (scope->kind != sk_template_parms
37935 || !function_being_declared_is_template_p (parser))
37937 /* Introduce a new template parameter list for implicit template
37938 parameters. */
37940 become_template = true;
37942 parser->implicit_template_scope
37943 = begin_scope (sk_template_parms, NULL);
37945 ++processing_template_decl;
37947 parser->fully_implicit_function_template_p = true;
37948 ++parser->num_template_parameter_lists;
37950 else
37952 /* Synthesize implicit template parameters at the end of the explicit
37953 template parameter list. */
37955 gcc_assert (current_template_parms);
37957 parser->implicit_template_scope = scope;
37959 tree v = INNERMOST_TEMPLATE_PARMS (current_template_parms);
37960 parser->implicit_template_parms
37961 = TREE_VEC_ELT (v, TREE_VEC_LENGTH (v) - 1);
37965 /* Synthesize a new template parameter and track the current template
37966 parameter chain with implicit_template_parms. */
37968 tree proto = constr ? DECL_INITIAL (constr) : NULL_TREE;
37969 tree synth_id = make_generic_type_name ();
37970 tree synth_tmpl_parm;
37971 bool non_type = false;
37973 if (proto == NULL_TREE || TREE_CODE (proto) == TYPE_DECL)
37974 synth_tmpl_parm
37975 = finish_template_type_parm (class_type_node, synth_id);
37976 else if (TREE_CODE (proto) == TEMPLATE_DECL)
37977 synth_tmpl_parm
37978 = finish_constrained_template_template_parm (proto, synth_id);
37979 else
37981 synth_tmpl_parm = copy_decl (proto);
37982 DECL_NAME (synth_tmpl_parm) = synth_id;
37983 non_type = true;
37986 // Attach the constraint to the parm before processing.
37987 tree node = build_tree_list (NULL_TREE, synth_tmpl_parm);
37988 TREE_TYPE (node) = constr;
37989 tree new_parm
37990 = process_template_parm (parser->implicit_template_parms,
37991 input_location,
37992 node,
37993 /*non_type=*/non_type,
37994 /*param_pack=*/false);
37996 // Chain the new parameter to the list of implicit parameters.
37997 if (parser->implicit_template_parms)
37998 parser->implicit_template_parms
37999 = TREE_CHAIN (parser->implicit_template_parms);
38000 else
38001 parser->implicit_template_parms = new_parm;
38003 tree new_decl = getdecls ();
38004 if (non_type)
38005 /* Return the TEMPLATE_PARM_INDEX, not the PARM_DECL. */
38006 new_decl = DECL_INITIAL (new_decl);
38008 /* If creating a fully implicit function template, start the new implicit
38009 template parameter list with this synthesized type, otherwise grow the
38010 current template parameter list. */
38012 if (become_template)
38014 parent_scope->level_chain = current_binding_level;
38016 tree new_parms = make_tree_vec (1);
38017 TREE_VEC_ELT (new_parms, 0) = parser->implicit_template_parms;
38018 current_template_parms = tree_cons (size_int (processing_template_decl),
38019 new_parms, current_template_parms);
38021 else
38023 tree& new_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
38024 int new_parm_idx = TREE_VEC_LENGTH (new_parms);
38025 new_parms = grow_tree_vec (new_parms, new_parm_idx + 1);
38026 TREE_VEC_ELT (new_parms, new_parm_idx) = parser->implicit_template_parms;
38029 // If the new parameter was constrained, we need to add that to the
38030 // constraints in the template parameter list.
38031 if (tree req = TEMPLATE_PARM_CONSTRAINTS (tree_last (new_parm)))
38033 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
38034 reqs = conjoin_constraints (reqs, req);
38035 TEMPLATE_PARMS_CONSTRAINTS (current_template_parms) = reqs;
38038 current_binding_level = entry_scope;
38040 return new_decl;
38043 /* Finish the declaration of a fully implicit function template. Such a
38044 template has no explicit template parameter list so has not been through the
38045 normal template head and tail processing. synthesize_implicit_template_parm
38046 tries to do the head; this tries to do the tail. MEMBER_DECL_OPT should be
38047 provided if the declaration is a class member such that its template
38048 declaration can be completed. If MEMBER_DECL_OPT is provided the finished
38049 form is returned. Otherwise NULL_TREE is returned. */
38051 static tree
38052 finish_fully_implicit_template (cp_parser *parser, tree member_decl_opt)
38054 gcc_assert (parser->fully_implicit_function_template_p);
38056 if (member_decl_opt && member_decl_opt != error_mark_node
38057 && DECL_VIRTUAL_P (member_decl_opt))
38059 error_at (DECL_SOURCE_LOCATION (member_decl_opt),
38060 "implicit templates may not be %<virtual%>");
38061 DECL_VIRTUAL_P (member_decl_opt) = false;
38064 if (member_decl_opt)
38065 member_decl_opt = finish_member_template_decl (member_decl_opt);
38066 end_template_decl ();
38068 parser->fully_implicit_function_template_p = false;
38069 --parser->num_template_parameter_lists;
38071 return member_decl_opt;
38074 #include "gt-cp-parser.h"