* tree-loop-distribution.c (bb_top_order_index): New.
[official-gcc.git] / gcc / cp / parser.c
blobdbe0052792454c2e32edddb10d1b8b5d96409388
1 /* -*- C++ -*- Parser.
2 Copyright (C) 2000-2017 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 "gomp-constants.h"
39 #include "omp-general.h"
40 #include "omp-offload.h"
41 #include "c-family/c-indentation.h"
42 #include "context.h"
43 #include "cp-cilkplus.h"
44 #include "gcc-rich-location.h"
45 #include "tree-iterator.h"
48 /* The lexer. */
50 /* The cp_lexer_* routines mediate between the lexer proper (in libcpp
51 and c-lex.c) and the C++ parser. */
53 static cp_token eof_token =
55 CPP_EOF, RID_MAX, 0, false, false, false, 0, { NULL }
58 /* The various kinds of non integral constant we encounter. */
59 enum non_integral_constant {
60 NIC_NONE,
61 /* floating-point literal */
62 NIC_FLOAT,
63 /* %<this%> */
64 NIC_THIS,
65 /* %<__FUNCTION__%> */
66 NIC_FUNC_NAME,
67 /* %<__PRETTY_FUNCTION__%> */
68 NIC_PRETTY_FUNC,
69 /* %<__func__%> */
70 NIC_C99_FUNC,
71 /* "%<va_arg%> */
72 NIC_VA_ARG,
73 /* a cast */
74 NIC_CAST,
75 /* %<typeid%> operator */
76 NIC_TYPEID,
77 /* non-constant compound literals */
78 NIC_NCC,
79 /* a function call */
80 NIC_FUNC_CALL,
81 /* an increment */
82 NIC_INC,
83 /* an decrement */
84 NIC_DEC,
85 /* an array reference */
86 NIC_ARRAY_REF,
87 /* %<->%> */
88 NIC_ARROW,
89 /* %<.%> */
90 NIC_POINT,
91 /* the address of a label */
92 NIC_ADDR_LABEL,
93 /* %<*%> */
94 NIC_STAR,
95 /* %<&%> */
96 NIC_ADDR,
97 /* %<++%> */
98 NIC_PREINCREMENT,
99 /* %<--%> */
100 NIC_PREDECREMENT,
101 /* %<new%> */
102 NIC_NEW,
103 /* %<delete%> */
104 NIC_DEL,
105 /* calls to overloaded operators */
106 NIC_OVERLOADED,
107 /* an assignment */
108 NIC_ASSIGNMENT,
109 /* a comma operator */
110 NIC_COMMA,
111 /* a call to a constructor */
112 NIC_CONSTRUCTOR,
113 /* a transaction expression */
114 NIC_TRANSACTION
117 /* The various kinds of errors about name-lookup failing. */
118 enum name_lookup_error {
119 /* NULL */
120 NLE_NULL,
121 /* is not a type */
122 NLE_TYPE,
123 /* is not a class or namespace */
124 NLE_CXX98,
125 /* is not a class, namespace, or enumeration */
126 NLE_NOT_CXX98
129 /* The various kinds of required token */
130 enum required_token {
131 RT_NONE,
132 RT_SEMICOLON, /* ';' */
133 RT_OPEN_PAREN, /* '(' */
134 RT_CLOSE_BRACE, /* '}' */
135 RT_OPEN_BRACE, /* '{' */
136 RT_CLOSE_SQUARE, /* ']' */
137 RT_OPEN_SQUARE, /* '[' */
138 RT_COMMA, /* ',' */
139 RT_SCOPE, /* '::' */
140 RT_LESS, /* '<' */
141 RT_GREATER, /* '>' */
142 RT_EQ, /* '=' */
143 RT_ELLIPSIS, /* '...' */
144 RT_MULT, /* '*' */
145 RT_COMPL, /* '~' */
146 RT_COLON, /* ':' */
147 RT_COLON_SCOPE, /* ':' or '::' */
148 RT_CLOSE_PAREN, /* ')' */
149 RT_COMMA_CLOSE_PAREN, /* ',' or ')' */
150 RT_PRAGMA_EOL, /* end of line */
151 RT_NAME, /* identifier */
153 /* The type is CPP_KEYWORD */
154 RT_NEW, /* new */
155 RT_DELETE, /* delete */
156 RT_RETURN, /* return */
157 RT_WHILE, /* while */
158 RT_EXTERN, /* extern */
159 RT_STATIC_ASSERT, /* static_assert */
160 RT_DECLTYPE, /* decltype */
161 RT_OPERATOR, /* operator */
162 RT_CLASS, /* class */
163 RT_TEMPLATE, /* template */
164 RT_NAMESPACE, /* namespace */
165 RT_USING, /* using */
166 RT_ASM, /* asm */
167 RT_TRY, /* try */
168 RT_CATCH, /* catch */
169 RT_THROW, /* throw */
170 RT_LABEL, /* __label__ */
171 RT_AT_TRY, /* @try */
172 RT_AT_SYNCHRONIZED, /* @synchronized */
173 RT_AT_THROW, /* @throw */
175 RT_SELECT, /* selection-statement */
176 RT_ITERATION, /* iteration-statement */
177 RT_JUMP, /* jump-statement */
178 RT_CLASS_KEY, /* class-key */
179 RT_CLASS_TYPENAME_TEMPLATE, /* class, typename, or template */
180 RT_TRANSACTION_ATOMIC, /* __transaction_atomic */
181 RT_TRANSACTION_RELAXED, /* __transaction_relaxed */
182 RT_TRANSACTION_CANCEL /* __transaction_cancel */
185 /* RAII wrapper for parser->in_type_id_in_expr_p, setting it on creation and
186 reverting it on destruction. */
188 class type_id_in_expr_sentinel
190 cp_parser *parser;
191 bool saved;
192 public:
193 type_id_in_expr_sentinel (cp_parser *parser, bool set = true)
194 : parser (parser),
195 saved (parser->in_type_id_in_expr_p)
196 { parser->in_type_id_in_expr_p = set; }
197 ~type_id_in_expr_sentinel ()
198 { parser->in_type_id_in_expr_p = saved; }
201 /* Prototypes. */
203 static cp_lexer *cp_lexer_new_main
204 (void);
205 static cp_lexer *cp_lexer_new_from_tokens
206 (cp_token_cache *tokens);
207 static void cp_lexer_destroy
208 (cp_lexer *);
209 static int cp_lexer_saving_tokens
210 (const cp_lexer *);
211 static cp_token *cp_lexer_token_at
212 (cp_lexer *, cp_token_position);
213 static void cp_lexer_get_preprocessor_token
214 (cp_lexer *, cp_token *);
215 static inline cp_token *cp_lexer_peek_token
216 (cp_lexer *);
217 static cp_token *cp_lexer_peek_nth_token
218 (cp_lexer *, size_t);
219 static inline bool cp_lexer_next_token_is
220 (cp_lexer *, enum cpp_ttype);
221 static bool cp_lexer_next_token_is_not
222 (cp_lexer *, enum cpp_ttype);
223 static bool cp_lexer_next_token_is_keyword
224 (cp_lexer *, enum rid);
225 static cp_token *cp_lexer_consume_token
226 (cp_lexer *);
227 static void cp_lexer_purge_token
228 (cp_lexer *);
229 static void cp_lexer_purge_tokens_after
230 (cp_lexer *, cp_token_position);
231 static void cp_lexer_save_tokens
232 (cp_lexer *);
233 static void cp_lexer_commit_tokens
234 (cp_lexer *);
235 static void cp_lexer_rollback_tokens
236 (cp_lexer *);
237 static void cp_lexer_print_token
238 (FILE *, cp_token *);
239 static inline bool cp_lexer_debugging_p
240 (cp_lexer *);
241 static void cp_lexer_start_debugging
242 (cp_lexer *) ATTRIBUTE_UNUSED;
243 static void cp_lexer_stop_debugging
244 (cp_lexer *) ATTRIBUTE_UNUSED;
246 static cp_token_cache *cp_token_cache_new
247 (cp_token *, cp_token *);
249 static void cp_parser_initial_pragma
250 (cp_token *);
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 != vec_safe_address (lexer->buffer));
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 (IDENTIFIER_KEYWORD_P (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 KEYWORD can start a decl-specifier. */
942 bool
943 cp_keyword_starts_decl_specifier_p (enum rid keyword)
945 switch (keyword)
947 /* auto specifier: storage-class-specifier in C++,
948 simple-type-specifier in C++0x. */
949 case RID_AUTO:
950 /* Storage classes. */
951 case RID_REGISTER:
952 case RID_STATIC:
953 case RID_EXTERN:
954 case RID_MUTABLE:
955 case RID_THREAD:
956 /* Elaborated type specifiers. */
957 case RID_ENUM:
958 case RID_CLASS:
959 case RID_STRUCT:
960 case RID_UNION:
961 case RID_TYPENAME:
962 /* Simple type specifiers. */
963 case RID_CHAR:
964 case RID_CHAR16:
965 case RID_CHAR32:
966 case RID_WCHAR:
967 case RID_BOOL:
968 case RID_SHORT:
969 case RID_INT:
970 case RID_LONG:
971 case RID_SIGNED:
972 case RID_UNSIGNED:
973 case RID_FLOAT:
974 case RID_DOUBLE:
975 case RID_VOID:
976 /* GNU extensions. */
977 case RID_ATTRIBUTE:
978 case RID_TYPEOF:
979 /* C++0x extensions. */
980 case RID_DECLTYPE:
981 case RID_UNDERLYING_TYPE:
982 case RID_CONSTEXPR:
983 return true;
985 default:
986 if (keyword >= RID_FIRST_INT_N
987 && keyword < RID_FIRST_INT_N + NUM_INT_N_ENTS
988 && int_n_enabled_p[keyword - RID_FIRST_INT_N])
989 return true;
990 return false;
994 /* Return true if the next token is a keyword for a decl-specifier. */
996 static bool
997 cp_lexer_next_token_is_decl_specifier_keyword (cp_lexer *lexer)
999 cp_token *token;
1001 token = cp_lexer_peek_token (lexer);
1002 return cp_keyword_starts_decl_specifier_p (token->keyword);
1005 /* Returns TRUE iff the token T begins a decltype type. */
1007 static bool
1008 token_is_decltype (cp_token *t)
1010 return (t->keyword == RID_DECLTYPE
1011 || t->type == CPP_DECLTYPE);
1014 /* Returns TRUE iff the next token begins a decltype type. */
1016 static bool
1017 cp_lexer_next_token_is_decltype (cp_lexer *lexer)
1019 cp_token *t = cp_lexer_peek_token (lexer);
1020 return token_is_decltype (t);
1023 /* Called when processing a token with tree_check_value; perform or defer the
1024 associated checks and return the value. */
1026 static tree
1027 saved_checks_value (struct tree_check *check_value)
1029 /* Perform any access checks that were deferred. */
1030 vec<deferred_access_check, va_gc> *checks;
1031 deferred_access_check *chk;
1032 checks = check_value->checks;
1033 if (checks)
1035 int i;
1036 FOR_EACH_VEC_SAFE_ELT (checks, i, chk)
1037 perform_or_defer_access_check (chk->binfo,
1038 chk->decl,
1039 chk->diag_decl, tf_warning_or_error);
1041 /* Return the stored value. */
1042 return check_value->value;
1045 /* Return a pointer to the Nth token in the token stream. If N is 1,
1046 then this is precisely equivalent to cp_lexer_peek_token (except
1047 that it is not inline). One would like to disallow that case, but
1048 there is one case (cp_parser_nth_token_starts_template_id) where
1049 the caller passes a variable for N and it might be 1. */
1051 static cp_token *
1052 cp_lexer_peek_nth_token (cp_lexer* lexer, size_t n)
1054 cp_token *token;
1056 /* N is 1-based, not zero-based. */
1057 gcc_assert (n > 0);
1059 if (cp_lexer_debugging_p (lexer))
1060 fprintf (cp_lexer_debug_stream,
1061 "cp_lexer: peeking ahead %ld at token: ", (long)n);
1063 --n;
1064 token = lexer->next_token;
1065 gcc_assert (!n || token != &eof_token);
1066 while (n != 0)
1068 ++token;
1069 if (token == lexer->last_token)
1071 token = &eof_token;
1072 break;
1075 if (!token->purged_p)
1076 --n;
1079 if (cp_lexer_debugging_p (lexer))
1081 cp_lexer_print_token (cp_lexer_debug_stream, token);
1082 putc ('\n', cp_lexer_debug_stream);
1085 return token;
1088 /* Return the next token, and advance the lexer's next_token pointer
1089 to point to the next non-purged token. */
1091 static cp_token *
1092 cp_lexer_consume_token (cp_lexer* lexer)
1094 cp_token *token = lexer->next_token;
1096 gcc_assert (token != &eof_token);
1097 gcc_assert (!lexer->in_pragma || token->type != CPP_PRAGMA_EOL);
1101 lexer->next_token++;
1102 if (lexer->next_token == lexer->last_token)
1104 lexer->next_token = &eof_token;
1105 break;
1109 while (lexer->next_token->purged_p);
1111 cp_lexer_set_source_position_from_token (token);
1113 /* Provide debugging output. */
1114 if (cp_lexer_debugging_p (lexer))
1116 fputs ("cp_lexer: consuming token: ", cp_lexer_debug_stream);
1117 cp_lexer_print_token (cp_lexer_debug_stream, token);
1118 putc ('\n', cp_lexer_debug_stream);
1121 return token;
1124 /* Permanently remove the next token from the token stream, and
1125 advance the next_token pointer to refer to the next non-purged
1126 token. */
1128 static void
1129 cp_lexer_purge_token (cp_lexer *lexer)
1131 cp_token *tok = lexer->next_token;
1133 gcc_assert (tok != &eof_token);
1134 tok->purged_p = true;
1135 tok->location = UNKNOWN_LOCATION;
1136 tok->u.value = NULL_TREE;
1137 tok->keyword = RID_MAX;
1141 tok++;
1142 if (tok == lexer->last_token)
1144 tok = &eof_token;
1145 break;
1148 while (tok->purged_p);
1149 lexer->next_token = tok;
1152 /* Permanently remove all tokens after TOK, up to, but not
1153 including, the token that will be returned next by
1154 cp_lexer_peek_token. */
1156 static void
1157 cp_lexer_purge_tokens_after (cp_lexer *lexer, cp_token *tok)
1159 cp_token *peek = lexer->next_token;
1161 if (peek == &eof_token)
1162 peek = lexer->last_token;
1164 gcc_assert (tok < peek);
1166 for ( tok += 1; tok != peek; tok += 1)
1168 tok->purged_p = true;
1169 tok->location = UNKNOWN_LOCATION;
1170 tok->u.value = NULL_TREE;
1171 tok->keyword = RID_MAX;
1175 /* Begin saving tokens. All tokens consumed after this point will be
1176 preserved. */
1178 static void
1179 cp_lexer_save_tokens (cp_lexer* lexer)
1181 /* Provide debugging output. */
1182 if (cp_lexer_debugging_p (lexer))
1183 fprintf (cp_lexer_debug_stream, "cp_lexer: saving tokens\n");
1185 lexer->saved_tokens.safe_push (lexer->next_token);
1188 /* Commit to the portion of the token stream most recently saved. */
1190 static void
1191 cp_lexer_commit_tokens (cp_lexer* lexer)
1193 /* Provide debugging output. */
1194 if (cp_lexer_debugging_p (lexer))
1195 fprintf (cp_lexer_debug_stream, "cp_lexer: committing tokens\n");
1197 lexer->saved_tokens.pop ();
1200 /* Return all tokens saved since the last call to cp_lexer_save_tokens
1201 to the token stream. Stop saving tokens. */
1203 static void
1204 cp_lexer_rollback_tokens (cp_lexer* lexer)
1206 /* Provide debugging output. */
1207 if (cp_lexer_debugging_p (lexer))
1208 fprintf (cp_lexer_debug_stream, "cp_lexer: restoring tokens\n");
1210 lexer->next_token = lexer->saved_tokens.pop ();
1213 /* RAII wrapper around the above functions, with sanity checking. Creating
1214 a variable saves tokens, which are committed when the variable is
1215 destroyed unless they are explicitly rolled back by calling the rollback
1216 member function. */
1218 struct saved_token_sentinel
1220 cp_lexer *lexer;
1221 unsigned len;
1222 bool commit;
1223 saved_token_sentinel(cp_lexer *lexer): lexer(lexer), commit(true)
1225 len = lexer->saved_tokens.length ();
1226 cp_lexer_save_tokens (lexer);
1228 void rollback ()
1230 cp_lexer_rollback_tokens (lexer);
1231 commit = false;
1233 ~saved_token_sentinel()
1235 if (commit)
1236 cp_lexer_commit_tokens (lexer);
1237 gcc_assert (lexer->saved_tokens.length () == len);
1241 /* Print a representation of the TOKEN on the STREAM. */
1243 static void
1244 cp_lexer_print_token (FILE * stream, cp_token *token)
1246 /* We don't use cpp_type2name here because the parser defines
1247 a few tokens of its own. */
1248 static const char *const token_names[] = {
1249 /* cpplib-defined token types */
1250 #define OP(e, s) #e,
1251 #define TK(e, s) #e,
1252 TTYPE_TABLE
1253 #undef OP
1254 #undef TK
1255 /* C++ parser token types - see "Manifest constants", above. */
1256 "KEYWORD",
1257 "TEMPLATE_ID",
1258 "NESTED_NAME_SPECIFIER",
1261 /* For some tokens, print the associated data. */
1262 switch (token->type)
1264 case CPP_KEYWORD:
1265 /* Some keywords have a value that is not an IDENTIFIER_NODE.
1266 For example, `struct' is mapped to an INTEGER_CST. */
1267 if (!identifier_p (token->u.value))
1268 break;
1269 /* fall through */
1270 case CPP_NAME:
1271 fputs (IDENTIFIER_POINTER (token->u.value), stream);
1272 break;
1274 case CPP_STRING:
1275 case CPP_STRING16:
1276 case CPP_STRING32:
1277 case CPP_WSTRING:
1278 case CPP_UTF8STRING:
1279 fprintf (stream, " \"%s\"", TREE_STRING_POINTER (token->u.value));
1280 break;
1282 case CPP_NUMBER:
1283 print_generic_expr (stream, token->u.value);
1284 break;
1286 default:
1287 /* If we have a name for the token, print it out. Otherwise, we
1288 simply give the numeric code. */
1289 if (token->type < ARRAY_SIZE(token_names))
1290 fputs (token_names[token->type], stream);
1291 else
1292 fprintf (stream, "[%d]", token->type);
1293 break;
1297 DEBUG_FUNCTION void
1298 debug (cp_token &ref)
1300 cp_lexer_print_token (stderr, &ref);
1301 fprintf (stderr, "\n");
1304 DEBUG_FUNCTION void
1305 debug (cp_token *ptr)
1307 if (ptr)
1308 debug (*ptr);
1309 else
1310 fprintf (stderr, "<nil>\n");
1314 /* Start emitting debugging information. */
1316 static void
1317 cp_lexer_start_debugging (cp_lexer* lexer)
1319 if (!LEXER_DEBUGGING_ENABLED_P)
1320 fatal_error (input_location,
1321 "LEXER_DEBUGGING_ENABLED_P is not set to true");
1323 lexer->debugging_p = true;
1324 cp_lexer_debug_stream = stderr;
1327 /* Stop emitting debugging information. */
1329 static void
1330 cp_lexer_stop_debugging (cp_lexer* lexer)
1332 if (!LEXER_DEBUGGING_ENABLED_P)
1333 fatal_error (input_location,
1334 "LEXER_DEBUGGING_ENABLED_P is not set to true");
1336 lexer->debugging_p = false;
1337 cp_lexer_debug_stream = NULL;
1340 /* Create a new cp_token_cache, representing a range of tokens. */
1342 static cp_token_cache *
1343 cp_token_cache_new (cp_token *first, cp_token *last)
1345 cp_token_cache *cache = ggc_alloc<cp_token_cache> ();
1346 cache->first = first;
1347 cache->last = last;
1348 return cache;
1351 /* Diagnose if #pragma omp declare simd isn't followed immediately
1352 by function declaration or definition. */
1354 static inline void
1355 cp_ensure_no_omp_declare_simd (cp_parser *parser)
1357 if (parser->omp_declare_simd && !parser->omp_declare_simd->error_seen)
1359 error ("%<#pragma omp declare simd%> not immediately followed by "
1360 "function declaration or definition");
1361 parser->omp_declare_simd = NULL;
1365 /* Finalize #pragma omp declare simd clauses after FNDECL has been parsed,
1366 and put that into "omp declare simd" attribute. */
1368 static inline void
1369 cp_finalize_omp_declare_simd (cp_parser *parser, tree fndecl)
1371 if (__builtin_expect (parser->omp_declare_simd != NULL, 0))
1373 if (fndecl == error_mark_node)
1375 parser->omp_declare_simd = NULL;
1376 return;
1378 if (TREE_CODE (fndecl) != FUNCTION_DECL)
1380 cp_ensure_no_omp_declare_simd (parser);
1381 return;
1386 /* Diagnose if #pragma acc routine isn't followed immediately by function
1387 declaration or definition. */
1389 static inline void
1390 cp_ensure_no_oacc_routine (cp_parser *parser)
1392 if (parser->oacc_routine && !parser->oacc_routine->error_seen)
1394 error_at (parser->oacc_routine->loc,
1395 "%<#pragma acc routine%> not immediately followed by "
1396 "function declaration or definition");
1397 parser->oacc_routine = NULL;
1401 /* Decl-specifiers. */
1403 /* Set *DECL_SPECS to represent an empty decl-specifier-seq. */
1405 static void
1406 clear_decl_specs (cp_decl_specifier_seq *decl_specs)
1408 memset (decl_specs, 0, sizeof (cp_decl_specifier_seq));
1411 /* Declarators. */
1413 /* Nothing other than the parser should be creating declarators;
1414 declarators are a semi-syntactic representation of C++ entities.
1415 Other parts of the front end that need to create entities (like
1416 VAR_DECLs or FUNCTION_DECLs) should do that directly. */
1418 static cp_declarator *make_call_declarator
1419 (cp_declarator *, tree, cp_cv_quals, cp_virt_specifiers, cp_ref_qualifier, tree, tree, tree, tree);
1420 static cp_declarator *make_array_declarator
1421 (cp_declarator *, tree);
1422 static cp_declarator *make_pointer_declarator
1423 (cp_cv_quals, cp_declarator *, tree);
1424 static cp_declarator *make_reference_declarator
1425 (cp_cv_quals, cp_declarator *, bool, tree);
1426 static cp_declarator *make_ptrmem_declarator
1427 (cp_cv_quals, tree, cp_declarator *, tree);
1429 /* An erroneous declarator. */
1430 static cp_declarator *cp_error_declarator;
1432 /* The obstack on which declarators and related data structures are
1433 allocated. */
1434 static struct obstack declarator_obstack;
1436 /* Alloc BYTES from the declarator memory pool. */
1438 static inline void *
1439 alloc_declarator (size_t bytes)
1441 return obstack_alloc (&declarator_obstack, bytes);
1444 /* Allocate a declarator of the indicated KIND. Clear fields that are
1445 common to all declarators. */
1447 static cp_declarator *
1448 make_declarator (cp_declarator_kind kind)
1450 cp_declarator *declarator;
1452 declarator = (cp_declarator *) alloc_declarator (sizeof (cp_declarator));
1453 declarator->kind = kind;
1454 declarator->attributes = NULL_TREE;
1455 declarator->std_attributes = NULL_TREE;
1456 declarator->declarator = NULL;
1457 declarator->parameter_pack_p = false;
1458 declarator->id_loc = UNKNOWN_LOCATION;
1460 return declarator;
1463 /* Make a declarator for a generalized identifier. If
1464 QUALIFYING_SCOPE is non-NULL, the identifier is
1465 QUALIFYING_SCOPE::UNQUALIFIED_NAME; otherwise, it is just
1466 UNQUALIFIED_NAME. SFK indicates the kind of special function this
1467 is, if any. */
1469 static cp_declarator *
1470 make_id_declarator (tree qualifying_scope, tree unqualified_name,
1471 special_function_kind sfk)
1473 cp_declarator *declarator;
1475 /* It is valid to write:
1477 class C { void f(); };
1478 typedef C D;
1479 void D::f();
1481 The standard is not clear about whether `typedef const C D' is
1482 legal; as of 2002-09-15 the committee is considering that
1483 question. EDG 3.0 allows that syntax. Therefore, we do as
1484 well. */
1485 if (qualifying_scope && TYPE_P (qualifying_scope))
1486 qualifying_scope = TYPE_MAIN_VARIANT (qualifying_scope);
1488 gcc_assert (identifier_p (unqualified_name)
1489 || TREE_CODE (unqualified_name) == BIT_NOT_EXPR
1490 || TREE_CODE (unqualified_name) == TEMPLATE_ID_EXPR);
1492 declarator = make_declarator (cdk_id);
1493 declarator->u.id.qualifying_scope = qualifying_scope;
1494 declarator->u.id.unqualified_name = unqualified_name;
1495 declarator->u.id.sfk = sfk;
1497 return declarator;
1500 /* Make a declarator for a pointer to TARGET. CV_QUALIFIERS is a list
1501 of modifiers such as const or volatile to apply to the pointer
1502 type, represented as identifiers. ATTRIBUTES represent the attributes that
1503 appertain to the pointer or reference. */
1505 cp_declarator *
1506 make_pointer_declarator (cp_cv_quals cv_qualifiers, cp_declarator *target,
1507 tree attributes)
1509 cp_declarator *declarator;
1511 declarator = make_declarator (cdk_pointer);
1512 declarator->declarator = target;
1513 declarator->u.pointer.qualifiers = cv_qualifiers;
1514 declarator->u.pointer.class_type = NULL_TREE;
1515 if (target)
1517 declarator->id_loc = target->id_loc;
1518 declarator->parameter_pack_p = target->parameter_pack_p;
1519 target->parameter_pack_p = false;
1521 else
1522 declarator->parameter_pack_p = false;
1524 declarator->std_attributes = attributes;
1526 return declarator;
1529 /* Like make_pointer_declarator -- but for references. ATTRIBUTES
1530 represent the attributes that appertain to the pointer or
1531 reference. */
1533 cp_declarator *
1534 make_reference_declarator (cp_cv_quals cv_qualifiers, cp_declarator *target,
1535 bool rvalue_ref, tree attributes)
1537 cp_declarator *declarator;
1539 declarator = make_declarator (cdk_reference);
1540 declarator->declarator = target;
1541 declarator->u.reference.qualifiers = cv_qualifiers;
1542 declarator->u.reference.rvalue_ref = rvalue_ref;
1543 if (target)
1545 declarator->id_loc = target->id_loc;
1546 declarator->parameter_pack_p = target->parameter_pack_p;
1547 target->parameter_pack_p = false;
1549 else
1550 declarator->parameter_pack_p = false;
1552 declarator->std_attributes = attributes;
1554 return declarator;
1557 /* Like make_pointer_declarator -- but for a pointer to a non-static
1558 member of CLASS_TYPE. ATTRIBUTES represent the attributes that
1559 appertain to the pointer or reference. */
1561 cp_declarator *
1562 make_ptrmem_declarator (cp_cv_quals cv_qualifiers, tree class_type,
1563 cp_declarator *pointee,
1564 tree attributes)
1566 cp_declarator *declarator;
1568 declarator = make_declarator (cdk_ptrmem);
1569 declarator->declarator = pointee;
1570 declarator->u.pointer.qualifiers = cv_qualifiers;
1571 declarator->u.pointer.class_type = class_type;
1573 if (pointee)
1575 declarator->parameter_pack_p = pointee->parameter_pack_p;
1576 pointee->parameter_pack_p = false;
1578 else
1579 declarator->parameter_pack_p = false;
1581 declarator->std_attributes = attributes;
1583 return declarator;
1586 /* Make a declarator for the function given by TARGET, with the
1587 indicated PARMS. The CV_QUALIFIERS apply to the function, as in
1588 "const"-qualified member function. The EXCEPTION_SPECIFICATION
1589 indicates what exceptions can be thrown. */
1591 cp_declarator *
1592 make_call_declarator (cp_declarator *target,
1593 tree parms,
1594 cp_cv_quals cv_qualifiers,
1595 cp_virt_specifiers virt_specifiers,
1596 cp_ref_qualifier ref_qualifier,
1597 tree tx_qualifier,
1598 tree exception_specification,
1599 tree late_return_type,
1600 tree requires_clause)
1602 cp_declarator *declarator;
1604 declarator = make_declarator (cdk_function);
1605 declarator->declarator = target;
1606 declarator->u.function.parameters = parms;
1607 declarator->u.function.qualifiers = cv_qualifiers;
1608 declarator->u.function.virt_specifiers = virt_specifiers;
1609 declarator->u.function.ref_qualifier = ref_qualifier;
1610 declarator->u.function.tx_qualifier = tx_qualifier;
1611 declarator->u.function.exception_specification = exception_specification;
1612 declarator->u.function.late_return_type = late_return_type;
1613 declarator->u.function.requires_clause = requires_clause;
1614 if (target)
1616 declarator->id_loc = target->id_loc;
1617 declarator->parameter_pack_p = target->parameter_pack_p;
1618 target->parameter_pack_p = false;
1620 else
1621 declarator->parameter_pack_p = false;
1623 return declarator;
1626 /* Make a declarator for an array of BOUNDS elements, each of which is
1627 defined by ELEMENT. */
1629 cp_declarator *
1630 make_array_declarator (cp_declarator *element, tree bounds)
1632 cp_declarator *declarator;
1634 declarator = make_declarator (cdk_array);
1635 declarator->declarator = element;
1636 declarator->u.array.bounds = bounds;
1637 if (element)
1639 declarator->id_loc = element->id_loc;
1640 declarator->parameter_pack_p = element->parameter_pack_p;
1641 element->parameter_pack_p = false;
1643 else
1644 declarator->parameter_pack_p = false;
1646 return declarator;
1649 /* Determine whether the declarator we've seen so far can be a
1650 parameter pack, when followed by an ellipsis. */
1651 static bool
1652 declarator_can_be_parameter_pack (cp_declarator *declarator)
1654 if (declarator && declarator->parameter_pack_p)
1655 /* We already saw an ellipsis. */
1656 return false;
1658 /* Search for a declarator name, or any other declarator that goes
1659 after the point where the ellipsis could appear in a parameter
1660 pack. If we find any of these, then this declarator can not be
1661 made into a parameter pack. */
1662 bool found = false;
1663 while (declarator && !found)
1665 switch ((int)declarator->kind)
1667 case cdk_id:
1668 case cdk_array:
1669 case cdk_decomp:
1670 found = true;
1671 break;
1673 case cdk_error:
1674 return true;
1676 default:
1677 declarator = declarator->declarator;
1678 break;
1682 return !found;
1685 cp_parameter_declarator *no_parameters;
1687 /* Create a parameter declarator with the indicated DECL_SPECIFIERS,
1688 DECLARATOR and DEFAULT_ARGUMENT. */
1690 cp_parameter_declarator *
1691 make_parameter_declarator (cp_decl_specifier_seq *decl_specifiers,
1692 cp_declarator *declarator,
1693 tree default_argument,
1694 bool template_parameter_pack_p = false)
1696 cp_parameter_declarator *parameter;
1698 parameter = ((cp_parameter_declarator *)
1699 alloc_declarator (sizeof (cp_parameter_declarator)));
1700 parameter->next = NULL;
1701 if (decl_specifiers)
1702 parameter->decl_specifiers = *decl_specifiers;
1703 else
1704 clear_decl_specs (&parameter->decl_specifiers);
1705 parameter->declarator = declarator;
1706 parameter->default_argument = default_argument;
1707 parameter->template_parameter_pack_p = template_parameter_pack_p;
1709 return parameter;
1712 /* Returns true iff DECLARATOR is a declaration for a function. */
1714 static bool
1715 function_declarator_p (const cp_declarator *declarator)
1717 while (declarator)
1719 if (declarator->kind == cdk_function
1720 && declarator->declarator->kind == cdk_id)
1721 return true;
1722 if (declarator->kind == cdk_id
1723 || declarator->kind == cdk_decomp
1724 || declarator->kind == cdk_error)
1725 return false;
1726 declarator = declarator->declarator;
1728 return false;
1731 /* The parser. */
1733 /* Overview
1734 --------
1736 A cp_parser parses the token stream as specified by the C++
1737 grammar. Its job is purely parsing, not semantic analysis. For
1738 example, the parser breaks the token stream into declarators,
1739 expressions, statements, and other similar syntactic constructs.
1740 It does not check that the types of the expressions on either side
1741 of an assignment-statement are compatible, or that a function is
1742 not declared with a parameter of type `void'.
1744 The parser invokes routines elsewhere in the compiler to perform
1745 semantic analysis and to build up the abstract syntax tree for the
1746 code processed.
1748 The parser (and the template instantiation code, which is, in a
1749 way, a close relative of parsing) are the only parts of the
1750 compiler that should be calling push_scope and pop_scope, or
1751 related functions. The parser (and template instantiation code)
1752 keeps track of what scope is presently active; everything else
1753 should simply honor that. (The code that generates static
1754 initializers may also need to set the scope, in order to check
1755 access control correctly when emitting the initializers.)
1757 Methodology
1758 -----------
1760 The parser is of the standard recursive-descent variety. Upcoming
1761 tokens in the token stream are examined in order to determine which
1762 production to use when parsing a non-terminal. Some C++ constructs
1763 require arbitrary look ahead to disambiguate. For example, it is
1764 impossible, in the general case, to tell whether a statement is an
1765 expression or declaration without scanning the entire statement.
1766 Therefore, the parser is capable of "parsing tentatively." When the
1767 parser is not sure what construct comes next, it enters this mode.
1768 Then, while we attempt to parse the construct, the parser queues up
1769 error messages, rather than issuing them immediately, and saves the
1770 tokens it consumes. If the construct is parsed successfully, the
1771 parser "commits", i.e., it issues any queued error messages and
1772 the tokens that were being preserved are permanently discarded.
1773 If, however, the construct is not parsed successfully, the parser
1774 rolls back its state completely so that it can resume parsing using
1775 a different alternative.
1777 Future Improvements
1778 -------------------
1780 The performance of the parser could probably be improved substantially.
1781 We could often eliminate the need to parse tentatively by looking ahead
1782 a little bit. In some places, this approach might not entirely eliminate
1783 the need to parse tentatively, but it might still speed up the average
1784 case. */
1786 /* Flags that are passed to some parsing functions. These values can
1787 be bitwise-ored together. */
1789 enum
1791 /* No flags. */
1792 CP_PARSER_FLAGS_NONE = 0x0,
1793 /* The construct is optional. If it is not present, then no error
1794 should be issued. */
1795 CP_PARSER_FLAGS_OPTIONAL = 0x1,
1796 /* When parsing a type-specifier, treat user-defined type-names
1797 as non-type identifiers. */
1798 CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES = 0x2,
1799 /* When parsing a type-specifier, do not try to parse a class-specifier
1800 or enum-specifier. */
1801 CP_PARSER_FLAGS_NO_TYPE_DEFINITIONS = 0x4,
1802 /* When parsing a decl-specifier-seq, only allow type-specifier or
1803 constexpr. */
1804 CP_PARSER_FLAGS_ONLY_TYPE_OR_CONSTEXPR = 0x8,
1805 /* When parsing a decl-specifier-seq, only allow mutable or constexpr. */
1806 CP_PARSER_FLAGS_ONLY_MUTABLE_OR_CONSTEXPR = 0x10
1809 /* This type is used for parameters and variables which hold
1810 combinations of the above flags. */
1811 typedef int cp_parser_flags;
1813 /* The different kinds of declarators we want to parse. */
1815 enum cp_parser_declarator_kind
1817 /* We want an abstract declarator. */
1818 CP_PARSER_DECLARATOR_ABSTRACT,
1819 /* We want a named declarator. */
1820 CP_PARSER_DECLARATOR_NAMED,
1821 /* We don't mind, but the name must be an unqualified-id. */
1822 CP_PARSER_DECLARATOR_EITHER
1825 /* The precedence values used to parse binary expressions. The minimum value
1826 of PREC must be 1, because zero is reserved to quickly discriminate
1827 binary operators from other tokens. */
1829 enum cp_parser_prec
1831 PREC_NOT_OPERATOR,
1832 PREC_LOGICAL_OR_EXPRESSION,
1833 PREC_LOGICAL_AND_EXPRESSION,
1834 PREC_INCLUSIVE_OR_EXPRESSION,
1835 PREC_EXCLUSIVE_OR_EXPRESSION,
1836 PREC_AND_EXPRESSION,
1837 PREC_EQUALITY_EXPRESSION,
1838 PREC_RELATIONAL_EXPRESSION,
1839 PREC_SHIFT_EXPRESSION,
1840 PREC_ADDITIVE_EXPRESSION,
1841 PREC_MULTIPLICATIVE_EXPRESSION,
1842 PREC_PM_EXPRESSION,
1843 NUM_PREC_VALUES = PREC_PM_EXPRESSION
1846 /* A mapping from a token type to a corresponding tree node type, with a
1847 precedence value. */
1849 struct cp_parser_binary_operations_map_node
1851 /* The token type. */
1852 enum cpp_ttype token_type;
1853 /* The corresponding tree code. */
1854 enum tree_code tree_type;
1855 /* The precedence of this operator. */
1856 enum cp_parser_prec prec;
1859 struct cp_parser_expression_stack_entry
1861 /* Left hand side of the binary operation we are currently
1862 parsing. */
1863 cp_expr lhs;
1864 /* Original tree code for left hand side, if it was a binary
1865 expression itself (used for -Wparentheses). */
1866 enum tree_code lhs_type;
1867 /* Tree code for the binary operation we are parsing. */
1868 enum tree_code tree_type;
1869 /* Precedence of the binary operation we are parsing. */
1870 enum cp_parser_prec prec;
1871 /* Location of the binary operation we are parsing. */
1872 location_t loc;
1875 /* The stack for storing partial expressions. We only need NUM_PREC_VALUES
1876 entries because precedence levels on the stack are monotonically
1877 increasing. */
1878 typedef struct cp_parser_expression_stack_entry
1879 cp_parser_expression_stack[NUM_PREC_VALUES];
1881 /* Prototypes. */
1883 /* Constructors and destructors. */
1885 static cp_parser_context *cp_parser_context_new
1886 (cp_parser_context *);
1888 /* Class variables. */
1890 static GTY((deletable)) cp_parser_context* cp_parser_context_free_list;
1892 /* The operator-precedence table used by cp_parser_binary_expression.
1893 Transformed into an associative array (binops_by_token) by
1894 cp_parser_new. */
1896 static const cp_parser_binary_operations_map_node binops[] = {
1897 { CPP_DEREF_STAR, MEMBER_REF, PREC_PM_EXPRESSION },
1898 { CPP_DOT_STAR, DOTSTAR_EXPR, PREC_PM_EXPRESSION },
1900 { CPP_MULT, MULT_EXPR, PREC_MULTIPLICATIVE_EXPRESSION },
1901 { CPP_DIV, TRUNC_DIV_EXPR, PREC_MULTIPLICATIVE_EXPRESSION },
1902 { CPP_MOD, TRUNC_MOD_EXPR, PREC_MULTIPLICATIVE_EXPRESSION },
1904 { CPP_PLUS, PLUS_EXPR, PREC_ADDITIVE_EXPRESSION },
1905 { CPP_MINUS, MINUS_EXPR, PREC_ADDITIVE_EXPRESSION },
1907 { CPP_LSHIFT, LSHIFT_EXPR, PREC_SHIFT_EXPRESSION },
1908 { CPP_RSHIFT, RSHIFT_EXPR, PREC_SHIFT_EXPRESSION },
1910 { CPP_LESS, LT_EXPR, PREC_RELATIONAL_EXPRESSION },
1911 { CPP_GREATER, GT_EXPR, PREC_RELATIONAL_EXPRESSION },
1912 { CPP_LESS_EQ, LE_EXPR, PREC_RELATIONAL_EXPRESSION },
1913 { CPP_GREATER_EQ, GE_EXPR, PREC_RELATIONAL_EXPRESSION },
1915 { CPP_EQ_EQ, EQ_EXPR, PREC_EQUALITY_EXPRESSION },
1916 { CPP_NOT_EQ, NE_EXPR, PREC_EQUALITY_EXPRESSION },
1918 { CPP_AND, BIT_AND_EXPR, PREC_AND_EXPRESSION },
1920 { CPP_XOR, BIT_XOR_EXPR, PREC_EXCLUSIVE_OR_EXPRESSION },
1922 { CPP_OR, BIT_IOR_EXPR, PREC_INCLUSIVE_OR_EXPRESSION },
1924 { CPP_AND_AND, TRUTH_ANDIF_EXPR, PREC_LOGICAL_AND_EXPRESSION },
1926 { CPP_OR_OR, TRUTH_ORIF_EXPR, PREC_LOGICAL_OR_EXPRESSION }
1929 /* The same as binops, but initialized by cp_parser_new so that
1930 binops_by_token[N].token_type == N. Used in cp_parser_binary_expression
1931 for speed. */
1932 static cp_parser_binary_operations_map_node binops_by_token[N_CP_TTYPES];
1934 /* Constructors and destructors. */
1936 /* Construct a new context. The context below this one on the stack
1937 is given by NEXT. */
1939 static cp_parser_context *
1940 cp_parser_context_new (cp_parser_context* next)
1942 cp_parser_context *context;
1944 /* Allocate the storage. */
1945 if (cp_parser_context_free_list != NULL)
1947 /* Pull the first entry from the free list. */
1948 context = cp_parser_context_free_list;
1949 cp_parser_context_free_list = context->next;
1950 memset (context, 0, sizeof (*context));
1952 else
1953 context = ggc_cleared_alloc<cp_parser_context> ();
1955 /* No errors have occurred yet in this context. */
1956 context->status = CP_PARSER_STATUS_KIND_NO_ERROR;
1957 /* If this is not the bottommost context, copy information that we
1958 need from the previous context. */
1959 if (next)
1961 /* If, in the NEXT context, we are parsing an `x->' or `x.'
1962 expression, then we are parsing one in this context, too. */
1963 context->object_type = next->object_type;
1964 /* Thread the stack. */
1965 context->next = next;
1968 return context;
1971 /* Managing the unparsed function queues. */
1973 #define unparsed_funs_with_default_args \
1974 parser->unparsed_queues->last ().funs_with_default_args
1975 #define unparsed_funs_with_definitions \
1976 parser->unparsed_queues->last ().funs_with_definitions
1977 #define unparsed_nsdmis \
1978 parser->unparsed_queues->last ().nsdmis
1979 #define unparsed_classes \
1980 parser->unparsed_queues->last ().classes
1982 static void
1983 push_unparsed_function_queues (cp_parser *parser)
1985 cp_unparsed_functions_entry e = {NULL, make_tree_vector (), NULL, NULL};
1986 vec_safe_push (parser->unparsed_queues, e);
1989 static void
1990 pop_unparsed_function_queues (cp_parser *parser)
1992 release_tree_vector (unparsed_funs_with_definitions);
1993 parser->unparsed_queues->pop ();
1996 /* Prototypes. */
1998 /* Constructors and destructors. */
2000 static cp_parser *cp_parser_new
2001 (void);
2003 /* Routines to parse various constructs.
2005 Those that return `tree' will return the error_mark_node (rather
2006 than NULL_TREE) if a parse error occurs, unless otherwise noted.
2007 Sometimes, they will return an ordinary node if error-recovery was
2008 attempted, even though a parse error occurred. So, to check
2009 whether or not a parse error occurred, you should always use
2010 cp_parser_error_occurred. If the construct is optional (indicated
2011 either by an `_opt' in the name of the function that does the
2012 parsing or via a FLAGS parameter), then NULL_TREE is returned if
2013 the construct is not present. */
2015 /* Lexical conventions [gram.lex] */
2017 static cp_expr cp_parser_identifier
2018 (cp_parser *);
2019 static cp_expr cp_parser_string_literal
2020 (cp_parser *, bool, bool, bool);
2021 static cp_expr cp_parser_userdef_char_literal
2022 (cp_parser *);
2023 static tree cp_parser_userdef_string_literal
2024 (tree);
2025 static cp_expr cp_parser_userdef_numeric_literal
2026 (cp_parser *);
2028 /* Basic concepts [gram.basic] */
2030 static bool cp_parser_translation_unit
2031 (cp_parser *);
2033 /* Expressions [gram.expr] */
2035 static cp_expr cp_parser_primary_expression
2036 (cp_parser *, bool, bool, bool, cp_id_kind *);
2037 static cp_expr cp_parser_id_expression
2038 (cp_parser *, bool, bool, bool *, bool, bool);
2039 static cp_expr cp_parser_unqualified_id
2040 (cp_parser *, bool, bool, bool, bool);
2041 static tree cp_parser_nested_name_specifier_opt
2042 (cp_parser *, bool, bool, bool, bool, bool = false);
2043 static tree cp_parser_nested_name_specifier
2044 (cp_parser *, bool, bool, bool, bool);
2045 static tree cp_parser_qualifying_entity
2046 (cp_parser *, bool, bool, bool, bool, bool);
2047 static cp_expr cp_parser_postfix_expression
2048 (cp_parser *, bool, bool, bool, bool, cp_id_kind *);
2049 static tree cp_parser_postfix_open_square_expression
2050 (cp_parser *, tree, bool, bool);
2051 static tree cp_parser_postfix_dot_deref_expression
2052 (cp_parser *, enum cpp_ttype, cp_expr, bool, cp_id_kind *, location_t);
2053 static vec<tree, va_gc> *cp_parser_parenthesized_expression_list
2054 (cp_parser *, int, bool, bool, bool *, location_t * = NULL);
2055 /* Values for the second parameter of cp_parser_parenthesized_expression_list. */
2056 enum { non_attr = 0, normal_attr = 1, id_attr = 2 };
2057 static void cp_parser_pseudo_destructor_name
2058 (cp_parser *, tree, tree *, tree *);
2059 static cp_expr cp_parser_unary_expression
2060 (cp_parser *, cp_id_kind * = NULL, bool = false, bool = false, bool = false);
2061 static enum tree_code cp_parser_unary_operator
2062 (cp_token *);
2063 static tree cp_parser_new_expression
2064 (cp_parser *);
2065 static vec<tree, va_gc> *cp_parser_new_placement
2066 (cp_parser *);
2067 static tree cp_parser_new_type_id
2068 (cp_parser *, tree *);
2069 static cp_declarator *cp_parser_new_declarator_opt
2070 (cp_parser *);
2071 static cp_declarator *cp_parser_direct_new_declarator
2072 (cp_parser *);
2073 static vec<tree, va_gc> *cp_parser_new_initializer
2074 (cp_parser *);
2075 static tree cp_parser_delete_expression
2076 (cp_parser *);
2077 static cp_expr cp_parser_cast_expression
2078 (cp_parser *, bool, bool, bool, cp_id_kind *);
2079 static cp_expr cp_parser_binary_expression
2080 (cp_parser *, bool, bool, enum cp_parser_prec, cp_id_kind *);
2081 static tree cp_parser_question_colon_clause
2082 (cp_parser *, cp_expr);
2083 static cp_expr cp_parser_assignment_expression
2084 (cp_parser *, cp_id_kind * = NULL, bool = false, bool = false);
2085 static enum tree_code cp_parser_assignment_operator_opt
2086 (cp_parser *);
2087 static cp_expr cp_parser_expression
2088 (cp_parser *, cp_id_kind * = NULL, bool = false, bool = false);
2089 static cp_expr cp_parser_constant_expression
2090 (cp_parser *, bool = false, bool * = NULL);
2091 static cp_expr cp_parser_builtin_offsetof
2092 (cp_parser *);
2093 static cp_expr cp_parser_lambda_expression
2094 (cp_parser *);
2095 static void cp_parser_lambda_introducer
2096 (cp_parser *, tree);
2097 static bool cp_parser_lambda_declarator_opt
2098 (cp_parser *, tree);
2099 static void cp_parser_lambda_body
2100 (cp_parser *, tree);
2102 /* Statements [gram.stmt.stmt] */
2104 static void cp_parser_statement
2105 (cp_parser *, tree, bool, bool *, vec<tree> * = NULL, location_t * = NULL);
2106 static void cp_parser_label_for_labeled_statement
2107 (cp_parser *, tree);
2108 static tree cp_parser_expression_statement
2109 (cp_parser *, tree);
2110 static tree cp_parser_compound_statement
2111 (cp_parser *, tree, int, bool);
2112 static void cp_parser_statement_seq_opt
2113 (cp_parser *, tree);
2114 static tree cp_parser_selection_statement
2115 (cp_parser *, bool *, vec<tree> *);
2116 static tree cp_parser_condition
2117 (cp_parser *);
2118 static tree cp_parser_iteration_statement
2119 (cp_parser *, bool *, bool);
2120 static bool cp_parser_init_statement
2121 (cp_parser *, tree *decl);
2122 static tree cp_parser_for
2123 (cp_parser *, bool);
2124 static tree cp_parser_c_for
2125 (cp_parser *, tree, tree, bool);
2126 static tree cp_parser_range_for
2127 (cp_parser *, tree, tree, tree, bool);
2128 static void do_range_for_auto_deduction
2129 (tree, tree);
2130 static tree cp_parser_perform_range_for_lookup
2131 (tree, tree *, tree *);
2132 static tree cp_parser_range_for_member_function
2133 (tree, tree);
2134 static tree cp_parser_jump_statement
2135 (cp_parser *);
2136 static void cp_parser_declaration_statement
2137 (cp_parser *);
2139 static tree cp_parser_implicitly_scoped_statement
2140 (cp_parser *, bool *, const token_indent_info &, vec<tree> * = NULL);
2141 static void cp_parser_already_scoped_statement
2142 (cp_parser *, bool *, const token_indent_info &);
2144 /* Declarations [gram.dcl.dcl] */
2146 static void cp_parser_declaration_seq_opt
2147 (cp_parser *);
2148 static void cp_parser_declaration
2149 (cp_parser *);
2150 static void cp_parser_block_declaration
2151 (cp_parser *, bool);
2152 static void cp_parser_simple_declaration
2153 (cp_parser *, bool, tree *);
2154 static void cp_parser_decl_specifier_seq
2155 (cp_parser *, cp_parser_flags, cp_decl_specifier_seq *, int *);
2156 static tree cp_parser_storage_class_specifier_opt
2157 (cp_parser *);
2158 static tree cp_parser_function_specifier_opt
2159 (cp_parser *, cp_decl_specifier_seq *);
2160 static tree cp_parser_type_specifier
2161 (cp_parser *, cp_parser_flags, cp_decl_specifier_seq *, bool,
2162 int *, bool *);
2163 static tree cp_parser_simple_type_specifier
2164 (cp_parser *, cp_decl_specifier_seq *, cp_parser_flags);
2165 static tree cp_parser_type_name
2166 (cp_parser *, bool);
2167 static tree cp_parser_type_name
2168 (cp_parser *);
2169 static tree cp_parser_nonclass_name
2170 (cp_parser* parser);
2171 static tree cp_parser_elaborated_type_specifier
2172 (cp_parser *, bool, bool);
2173 static tree cp_parser_enum_specifier
2174 (cp_parser *);
2175 static void cp_parser_enumerator_list
2176 (cp_parser *, tree);
2177 static void cp_parser_enumerator_definition
2178 (cp_parser *, tree);
2179 static tree cp_parser_namespace_name
2180 (cp_parser *);
2181 static void cp_parser_namespace_definition
2182 (cp_parser *);
2183 static void cp_parser_namespace_body
2184 (cp_parser *);
2185 static tree cp_parser_qualified_namespace_specifier
2186 (cp_parser *);
2187 static void cp_parser_namespace_alias_definition
2188 (cp_parser *);
2189 static bool cp_parser_using_declaration
2190 (cp_parser *, bool);
2191 static void cp_parser_using_directive
2192 (cp_parser *);
2193 static tree cp_parser_alias_declaration
2194 (cp_parser *);
2195 static void cp_parser_asm_definition
2196 (cp_parser *);
2197 static void cp_parser_linkage_specification
2198 (cp_parser *);
2199 static void cp_parser_static_assert
2200 (cp_parser *, bool);
2201 static tree cp_parser_decltype
2202 (cp_parser *);
2203 static tree cp_parser_decomposition_declaration
2204 (cp_parser *, cp_decl_specifier_seq *, tree *, location_t *);
2206 /* Declarators [gram.dcl.decl] */
2208 static tree cp_parser_init_declarator
2209 (cp_parser *, cp_decl_specifier_seq *, vec<deferred_access_check, va_gc> *,
2210 bool, bool, int, bool *, tree *, location_t *, tree *);
2211 static cp_declarator *cp_parser_declarator
2212 (cp_parser *, cp_parser_declarator_kind, int *, bool *, bool, bool);
2213 static cp_declarator *cp_parser_direct_declarator
2214 (cp_parser *, cp_parser_declarator_kind, int *, bool, bool);
2215 static enum tree_code cp_parser_ptr_operator
2216 (cp_parser *, tree *, cp_cv_quals *, tree *);
2217 static cp_cv_quals cp_parser_cv_qualifier_seq_opt
2218 (cp_parser *);
2219 static cp_virt_specifiers cp_parser_virt_specifier_seq_opt
2220 (cp_parser *);
2221 static cp_ref_qualifier cp_parser_ref_qualifier_opt
2222 (cp_parser *);
2223 static tree cp_parser_tx_qualifier_opt
2224 (cp_parser *);
2225 static tree cp_parser_late_return_type_opt
2226 (cp_parser *, cp_declarator *, tree &, cp_cv_quals);
2227 static tree cp_parser_declarator_id
2228 (cp_parser *, bool);
2229 static tree cp_parser_type_id
2230 (cp_parser *);
2231 static tree cp_parser_template_type_arg
2232 (cp_parser *);
2233 static tree cp_parser_trailing_type_id (cp_parser *);
2234 static tree cp_parser_type_id_1
2235 (cp_parser *, bool, bool);
2236 static void cp_parser_type_specifier_seq
2237 (cp_parser *, bool, bool, cp_decl_specifier_seq *);
2238 static tree cp_parser_parameter_declaration_clause
2239 (cp_parser *);
2240 static tree cp_parser_parameter_declaration_list
2241 (cp_parser *, bool *);
2242 static cp_parameter_declarator *cp_parser_parameter_declaration
2243 (cp_parser *, bool, bool *);
2244 static tree cp_parser_default_argument
2245 (cp_parser *, bool);
2246 static void cp_parser_function_body
2247 (cp_parser *, bool);
2248 static tree cp_parser_initializer
2249 (cp_parser *, bool *, bool *);
2250 static cp_expr cp_parser_initializer_clause
2251 (cp_parser *, bool *);
2252 static cp_expr cp_parser_braced_list
2253 (cp_parser*, bool*);
2254 static vec<constructor_elt, va_gc> *cp_parser_initializer_list
2255 (cp_parser *, bool *);
2257 static bool cp_parser_ctor_initializer_opt_and_function_body
2258 (cp_parser *, bool);
2260 static tree cp_parser_late_parsing_omp_declare_simd
2261 (cp_parser *, tree);
2263 static tree cp_parser_late_parsing_cilk_simd_fn_info
2264 (cp_parser *, tree);
2266 static tree cp_parser_late_parsing_oacc_routine
2267 (cp_parser *, tree);
2269 static tree synthesize_implicit_template_parm
2270 (cp_parser *, tree);
2271 static tree finish_fully_implicit_template
2272 (cp_parser *, tree);
2274 /* Classes [gram.class] */
2276 static tree cp_parser_class_name
2277 (cp_parser *, bool, bool, enum tag_types, bool, bool, bool, bool = false);
2278 static tree cp_parser_class_specifier
2279 (cp_parser *);
2280 static tree cp_parser_class_head
2281 (cp_parser *, bool *);
2282 static enum tag_types cp_parser_class_key
2283 (cp_parser *);
2284 static void cp_parser_type_parameter_key
2285 (cp_parser* parser);
2286 static void cp_parser_member_specification_opt
2287 (cp_parser *);
2288 static void cp_parser_member_declaration
2289 (cp_parser *);
2290 static tree cp_parser_pure_specifier
2291 (cp_parser *);
2292 static tree cp_parser_constant_initializer
2293 (cp_parser *);
2295 /* Derived classes [gram.class.derived] */
2297 static tree cp_parser_base_clause
2298 (cp_parser *);
2299 static tree cp_parser_base_specifier
2300 (cp_parser *);
2302 /* Special member functions [gram.special] */
2304 static tree cp_parser_conversion_function_id
2305 (cp_parser *);
2306 static tree cp_parser_conversion_type_id
2307 (cp_parser *);
2308 static cp_declarator *cp_parser_conversion_declarator_opt
2309 (cp_parser *);
2310 static bool cp_parser_ctor_initializer_opt
2311 (cp_parser *);
2312 static void cp_parser_mem_initializer_list
2313 (cp_parser *);
2314 static tree cp_parser_mem_initializer
2315 (cp_parser *);
2316 static tree cp_parser_mem_initializer_id
2317 (cp_parser *);
2319 /* Overloading [gram.over] */
2321 static cp_expr cp_parser_operator_function_id
2322 (cp_parser *);
2323 static cp_expr cp_parser_operator
2324 (cp_parser *);
2326 /* Templates [gram.temp] */
2328 static void cp_parser_template_declaration
2329 (cp_parser *, bool);
2330 static tree cp_parser_template_parameter_list
2331 (cp_parser *);
2332 static tree cp_parser_template_parameter
2333 (cp_parser *, bool *, bool *);
2334 static tree cp_parser_type_parameter
2335 (cp_parser *, bool *);
2336 static tree cp_parser_template_id
2337 (cp_parser *, bool, bool, enum tag_types, bool);
2338 static tree cp_parser_template_name
2339 (cp_parser *, bool, bool, bool, enum tag_types, bool *);
2340 static tree cp_parser_template_argument_list
2341 (cp_parser *);
2342 static tree cp_parser_template_argument
2343 (cp_parser *);
2344 static void cp_parser_explicit_instantiation
2345 (cp_parser *);
2346 static void cp_parser_explicit_specialization
2347 (cp_parser *);
2349 /* Exception handling [gram.exception] */
2351 static tree cp_parser_try_block
2352 (cp_parser *);
2353 static bool cp_parser_function_try_block
2354 (cp_parser *);
2355 static void cp_parser_handler_seq
2356 (cp_parser *);
2357 static void cp_parser_handler
2358 (cp_parser *);
2359 static tree cp_parser_exception_declaration
2360 (cp_parser *);
2361 static tree cp_parser_throw_expression
2362 (cp_parser *);
2363 static tree cp_parser_exception_specification_opt
2364 (cp_parser *);
2365 static tree cp_parser_type_id_list
2366 (cp_parser *);
2368 /* GNU Extensions */
2370 static tree cp_parser_asm_specification_opt
2371 (cp_parser *);
2372 static tree cp_parser_asm_operand_list
2373 (cp_parser *);
2374 static tree cp_parser_asm_clobber_list
2375 (cp_parser *);
2376 static tree cp_parser_asm_label_list
2377 (cp_parser *);
2378 static bool cp_next_tokens_can_be_attribute_p
2379 (cp_parser *);
2380 static bool cp_next_tokens_can_be_gnu_attribute_p
2381 (cp_parser *);
2382 static bool cp_next_tokens_can_be_std_attribute_p
2383 (cp_parser *);
2384 static bool cp_nth_tokens_can_be_std_attribute_p
2385 (cp_parser *, size_t);
2386 static bool cp_nth_tokens_can_be_gnu_attribute_p
2387 (cp_parser *, size_t);
2388 static bool cp_nth_tokens_can_be_attribute_p
2389 (cp_parser *, size_t);
2390 static tree cp_parser_attributes_opt
2391 (cp_parser *);
2392 static tree cp_parser_gnu_attributes_opt
2393 (cp_parser *);
2394 static tree cp_parser_gnu_attribute_list
2395 (cp_parser *);
2396 static tree cp_parser_std_attribute
2397 (cp_parser *, tree);
2398 static tree cp_parser_std_attribute_spec
2399 (cp_parser *);
2400 static tree cp_parser_std_attribute_spec_seq
2401 (cp_parser *);
2402 static bool cp_parser_extension_opt
2403 (cp_parser *, int *);
2404 static void cp_parser_label_declaration
2405 (cp_parser *);
2407 /* Concept Extensions */
2409 static tree cp_parser_requires_clause
2410 (cp_parser *);
2411 static tree cp_parser_requires_clause_opt
2412 (cp_parser *);
2413 static tree cp_parser_requires_expression
2414 (cp_parser *);
2415 static tree cp_parser_requirement_parameter_list
2416 (cp_parser *);
2417 static tree cp_parser_requirement_body
2418 (cp_parser *);
2419 static tree cp_parser_requirement_list
2420 (cp_parser *);
2421 static tree cp_parser_requirement
2422 (cp_parser *);
2423 static tree cp_parser_simple_requirement
2424 (cp_parser *);
2425 static tree cp_parser_compound_requirement
2426 (cp_parser *);
2427 static tree cp_parser_type_requirement
2428 (cp_parser *);
2429 static tree cp_parser_nested_requirement
2430 (cp_parser *);
2432 /* Transactional Memory Extensions */
2434 static tree cp_parser_transaction
2435 (cp_parser *, cp_token *);
2436 static tree cp_parser_transaction_expression
2437 (cp_parser *, enum rid);
2438 static bool cp_parser_function_transaction
2439 (cp_parser *, enum rid);
2440 static tree cp_parser_transaction_cancel
2441 (cp_parser *);
2443 enum pragma_context {
2444 pragma_external,
2445 pragma_member,
2446 pragma_objc_icode,
2447 pragma_stmt,
2448 pragma_compound
2450 static bool cp_parser_pragma
2451 (cp_parser *, enum pragma_context, bool *);
2453 /* Objective-C++ Productions */
2455 static tree cp_parser_objc_message_receiver
2456 (cp_parser *);
2457 static tree cp_parser_objc_message_args
2458 (cp_parser *);
2459 static tree cp_parser_objc_message_expression
2460 (cp_parser *);
2461 static cp_expr cp_parser_objc_encode_expression
2462 (cp_parser *);
2463 static tree cp_parser_objc_defs_expression
2464 (cp_parser *);
2465 static tree cp_parser_objc_protocol_expression
2466 (cp_parser *);
2467 static tree cp_parser_objc_selector_expression
2468 (cp_parser *);
2469 static cp_expr cp_parser_objc_expression
2470 (cp_parser *);
2471 static bool cp_parser_objc_selector_p
2472 (enum cpp_ttype);
2473 static tree cp_parser_objc_selector
2474 (cp_parser *);
2475 static tree cp_parser_objc_protocol_refs_opt
2476 (cp_parser *);
2477 static void cp_parser_objc_declaration
2478 (cp_parser *, tree);
2479 static tree cp_parser_objc_statement
2480 (cp_parser *);
2481 static bool cp_parser_objc_valid_prefix_attributes
2482 (cp_parser *, tree *);
2483 static void cp_parser_objc_at_property_declaration
2484 (cp_parser *) ;
2485 static void cp_parser_objc_at_synthesize_declaration
2486 (cp_parser *) ;
2487 static void cp_parser_objc_at_dynamic_declaration
2488 (cp_parser *) ;
2489 static tree cp_parser_objc_struct_declaration
2490 (cp_parser *) ;
2492 /* Utility Routines */
2494 static cp_expr cp_parser_lookup_name
2495 (cp_parser *, tree, enum tag_types, bool, bool, bool, tree *, location_t);
2496 static tree cp_parser_lookup_name_simple
2497 (cp_parser *, tree, location_t);
2498 static tree cp_parser_maybe_treat_template_as_class
2499 (tree, bool);
2500 static bool cp_parser_check_declarator_template_parameters
2501 (cp_parser *, cp_declarator *, location_t);
2502 static bool cp_parser_check_template_parameters
2503 (cp_parser *, unsigned, location_t, cp_declarator *);
2504 static cp_expr cp_parser_simple_cast_expression
2505 (cp_parser *);
2506 static tree cp_parser_global_scope_opt
2507 (cp_parser *, bool);
2508 static bool cp_parser_constructor_declarator_p
2509 (cp_parser *, bool);
2510 static tree cp_parser_function_definition_from_specifiers_and_declarator
2511 (cp_parser *, cp_decl_specifier_seq *, tree, const cp_declarator *);
2512 static tree cp_parser_function_definition_after_declarator
2513 (cp_parser *, bool);
2514 static bool cp_parser_template_declaration_after_export
2515 (cp_parser *, bool);
2516 static void cp_parser_perform_template_parameter_access_checks
2517 (vec<deferred_access_check, va_gc> *);
2518 static tree cp_parser_single_declaration
2519 (cp_parser *, vec<deferred_access_check, va_gc> *, bool, bool, bool *);
2520 static cp_expr cp_parser_functional_cast
2521 (cp_parser *, tree);
2522 static tree cp_parser_save_member_function_body
2523 (cp_parser *, cp_decl_specifier_seq *, cp_declarator *, tree);
2524 static tree cp_parser_save_nsdmi
2525 (cp_parser *);
2526 static tree cp_parser_enclosed_template_argument_list
2527 (cp_parser *);
2528 static void cp_parser_save_default_args
2529 (cp_parser *, tree);
2530 static void cp_parser_late_parsing_for_member
2531 (cp_parser *, tree);
2532 static tree cp_parser_late_parse_one_default_arg
2533 (cp_parser *, tree, tree, tree);
2534 static void cp_parser_late_parsing_nsdmi
2535 (cp_parser *, tree);
2536 static void cp_parser_late_parsing_default_args
2537 (cp_parser *, tree);
2538 static tree cp_parser_sizeof_operand
2539 (cp_parser *, enum rid);
2540 static tree cp_parser_trait_expr
2541 (cp_parser *, enum rid);
2542 static bool cp_parser_declares_only_class_p
2543 (cp_parser *);
2544 static void cp_parser_set_storage_class
2545 (cp_parser *, cp_decl_specifier_seq *, enum rid, cp_token *);
2546 static void cp_parser_set_decl_spec_type
2547 (cp_decl_specifier_seq *, tree, cp_token *, bool);
2548 static void set_and_check_decl_spec_loc
2549 (cp_decl_specifier_seq *decl_specs,
2550 cp_decl_spec ds, cp_token *);
2551 static bool cp_parser_friend_p
2552 (const cp_decl_specifier_seq *);
2553 static void cp_parser_required_error
2554 (cp_parser *, required_token, bool);
2555 static cp_token *cp_parser_require
2556 (cp_parser *, enum cpp_ttype, required_token);
2557 static cp_token *cp_parser_require_keyword
2558 (cp_parser *, enum rid, required_token);
2559 static bool cp_parser_token_starts_function_definition_p
2560 (cp_token *);
2561 static bool cp_parser_next_token_starts_class_definition_p
2562 (cp_parser *);
2563 static bool cp_parser_next_token_ends_template_argument_p
2564 (cp_parser *);
2565 static bool cp_parser_nth_token_starts_template_argument_list_p
2566 (cp_parser *, size_t);
2567 static enum tag_types cp_parser_token_is_class_key
2568 (cp_token *);
2569 static enum tag_types cp_parser_token_is_type_parameter_key
2570 (cp_token *);
2571 static void cp_parser_check_class_key
2572 (enum tag_types, tree type);
2573 static void cp_parser_check_access_in_redeclaration
2574 (tree type, location_t location);
2575 static bool cp_parser_optional_template_keyword
2576 (cp_parser *);
2577 static void cp_parser_pre_parsed_nested_name_specifier
2578 (cp_parser *);
2579 static bool cp_parser_cache_group
2580 (cp_parser *, enum cpp_ttype, unsigned);
2581 static tree cp_parser_cache_defarg
2582 (cp_parser *parser, bool nsdmi);
2583 static void cp_parser_parse_tentatively
2584 (cp_parser *);
2585 static void cp_parser_commit_to_tentative_parse
2586 (cp_parser *);
2587 static void cp_parser_commit_to_topmost_tentative_parse
2588 (cp_parser *);
2589 static void cp_parser_abort_tentative_parse
2590 (cp_parser *);
2591 static bool cp_parser_parse_definitely
2592 (cp_parser *);
2593 static inline bool cp_parser_parsing_tentatively
2594 (cp_parser *);
2595 static bool cp_parser_uncommitted_to_tentative_parse_p
2596 (cp_parser *);
2597 static void cp_parser_error
2598 (cp_parser *, const char *);
2599 static void cp_parser_name_lookup_error
2600 (cp_parser *, tree, tree, name_lookup_error, location_t);
2601 static bool cp_parser_simulate_error
2602 (cp_parser *);
2603 static bool cp_parser_check_type_definition
2604 (cp_parser *);
2605 static void cp_parser_check_for_definition_in_return_type
2606 (cp_declarator *, tree, location_t type_location);
2607 static void cp_parser_check_for_invalid_template_id
2608 (cp_parser *, tree, enum tag_types, location_t location);
2609 static bool cp_parser_non_integral_constant_expression
2610 (cp_parser *, non_integral_constant);
2611 static void cp_parser_diagnose_invalid_type_name
2612 (cp_parser *, tree, location_t);
2613 static bool cp_parser_parse_and_diagnose_invalid_type_name
2614 (cp_parser *);
2615 static int cp_parser_skip_to_closing_parenthesis
2616 (cp_parser *, bool, bool, bool);
2617 static void cp_parser_skip_to_end_of_statement
2618 (cp_parser *);
2619 static void cp_parser_consume_semicolon_at_end_of_statement
2620 (cp_parser *);
2621 static void cp_parser_skip_to_end_of_block_or_statement
2622 (cp_parser *);
2623 static bool cp_parser_skip_to_closing_brace
2624 (cp_parser *);
2625 static void cp_parser_skip_to_end_of_template_parameter_list
2626 (cp_parser *);
2627 static void cp_parser_skip_to_pragma_eol
2628 (cp_parser*, cp_token *);
2629 static bool cp_parser_error_occurred
2630 (cp_parser *);
2631 static bool cp_parser_allow_gnu_extensions_p
2632 (cp_parser *);
2633 static bool cp_parser_is_pure_string_literal
2634 (cp_token *);
2635 static bool cp_parser_is_string_literal
2636 (cp_token *);
2637 static bool cp_parser_is_keyword
2638 (cp_token *, enum rid);
2639 static tree cp_parser_make_typename_type
2640 (cp_parser *, tree, location_t location);
2641 static cp_declarator * cp_parser_make_indirect_declarator
2642 (enum tree_code, tree, cp_cv_quals, cp_declarator *, tree);
2643 static bool cp_parser_compound_literal_p
2644 (cp_parser *);
2645 static bool cp_parser_array_designator_p
2646 (cp_parser *);
2647 static bool cp_parser_init_statement_p
2648 (cp_parser *);
2649 static bool cp_parser_skip_to_closing_square_bracket
2650 (cp_parser *);
2652 /* Concept-related syntactic transformations */
2654 static tree cp_parser_maybe_concept_name (cp_parser *, tree);
2655 static tree cp_parser_maybe_partial_concept_id (cp_parser *, tree, tree);
2657 // -------------------------------------------------------------------------- //
2658 // Unevaluated Operand Guard
2660 // Implementation of an RAII helper for unevaluated operand parsing.
2661 cp_unevaluated::cp_unevaluated ()
2663 ++cp_unevaluated_operand;
2664 ++c_inhibit_evaluation_warnings;
2667 cp_unevaluated::~cp_unevaluated ()
2669 --c_inhibit_evaluation_warnings;
2670 --cp_unevaluated_operand;
2673 // -------------------------------------------------------------------------- //
2674 // Tentative Parsing
2676 /* Returns nonzero if we are parsing tentatively. */
2678 static inline bool
2679 cp_parser_parsing_tentatively (cp_parser* parser)
2681 return parser->context->next != NULL;
2684 /* Returns nonzero if TOKEN is a string literal. */
2686 static bool
2687 cp_parser_is_pure_string_literal (cp_token* token)
2689 return (token->type == CPP_STRING ||
2690 token->type == CPP_STRING16 ||
2691 token->type == CPP_STRING32 ||
2692 token->type == CPP_WSTRING ||
2693 token->type == CPP_UTF8STRING);
2696 /* Returns nonzero if TOKEN is a string literal
2697 of a user-defined string literal. */
2699 static bool
2700 cp_parser_is_string_literal (cp_token* token)
2702 return (cp_parser_is_pure_string_literal (token) ||
2703 token->type == CPP_STRING_USERDEF ||
2704 token->type == CPP_STRING16_USERDEF ||
2705 token->type == CPP_STRING32_USERDEF ||
2706 token->type == CPP_WSTRING_USERDEF ||
2707 token->type == CPP_UTF8STRING_USERDEF);
2710 /* Returns nonzero if TOKEN is the indicated KEYWORD. */
2712 static bool
2713 cp_parser_is_keyword (cp_token* token, enum rid keyword)
2715 return token->keyword == keyword;
2718 /* Return TOKEN's pragma_kind if it is CPP_PRAGMA, otherwise
2719 PRAGMA_NONE. */
2721 static enum pragma_kind
2722 cp_parser_pragma_kind (cp_token *token)
2724 if (token->type != CPP_PRAGMA)
2725 return PRAGMA_NONE;
2726 /* We smuggled the cpp_token->u.pragma value in an INTEGER_CST. */
2727 return (enum pragma_kind) TREE_INT_CST_LOW (token->u.value);
2730 /* Helper function for cp_parser_error.
2731 Having peeked a token of kind TOK1_KIND that might signify
2732 a conflict marker, peek successor tokens to determine
2733 if we actually do have a conflict marker.
2734 Specifically, we consider a run of 7 '<', '=' or '>' characters
2735 at the start of a line as a conflict marker.
2736 These come through the lexer as three pairs and a single,
2737 e.g. three CPP_LSHIFT tokens ("<<") and a CPP_LESS token ('<').
2738 If it returns true, *OUT_LOC is written to with the location/range
2739 of the marker. */
2741 static bool
2742 cp_lexer_peek_conflict_marker (cp_lexer *lexer, enum cpp_ttype tok1_kind,
2743 location_t *out_loc)
2745 cp_token *token2 = cp_lexer_peek_nth_token (lexer, 2);
2746 if (token2->type != tok1_kind)
2747 return false;
2748 cp_token *token3 = cp_lexer_peek_nth_token (lexer, 3);
2749 if (token3->type != tok1_kind)
2750 return false;
2751 cp_token *token4 = cp_lexer_peek_nth_token (lexer, 4);
2752 if (token4->type != conflict_marker_get_final_tok_kind (tok1_kind))
2753 return false;
2755 /* It must be at the start of the line. */
2756 location_t start_loc = cp_lexer_peek_token (lexer)->location;
2757 if (LOCATION_COLUMN (start_loc) != 1)
2758 return false;
2760 /* We have a conflict marker. Construct a location of the form:
2761 <<<<<<<
2762 ^~~~~~~
2763 with start == caret, finishing at the end of the marker. */
2764 location_t finish_loc = get_finish (token4->location);
2765 *out_loc = make_location (start_loc, start_loc, finish_loc);
2767 return true;
2770 /* If not parsing tentatively, issue a diagnostic of the form
2771 FILE:LINE: MESSAGE before TOKEN
2772 where TOKEN is the next token in the input stream. MESSAGE
2773 (specified by the caller) is usually of the form "expected
2774 OTHER-TOKEN". */
2776 static void
2777 cp_parser_error (cp_parser* parser, const char* gmsgid)
2779 if (!cp_parser_simulate_error (parser))
2781 cp_token *token = cp_lexer_peek_token (parser->lexer);
2782 /* This diagnostic makes more sense if it is tagged to the line
2783 of the token we just peeked at. */
2784 cp_lexer_set_source_position_from_token (token);
2786 if (token->type == CPP_PRAGMA)
2788 error_at (token->location,
2789 "%<#pragma%> is not allowed here");
2790 cp_parser_skip_to_pragma_eol (parser, token);
2791 return;
2794 /* If this is actually a conflict marker, report it as such. */
2795 if (token->type == CPP_LSHIFT
2796 || token->type == CPP_RSHIFT
2797 || token->type == CPP_EQ_EQ)
2799 location_t loc;
2800 if (cp_lexer_peek_conflict_marker (parser->lexer, token->type, &loc))
2802 error_at (loc, "version control conflict marker in file");
2803 return;
2807 c_parse_error (gmsgid,
2808 /* Because c_parser_error does not understand
2809 CPP_KEYWORD, keywords are treated like
2810 identifiers. */
2811 (token->type == CPP_KEYWORD ? CPP_NAME : token->type),
2812 token->u.value, token->flags);
2816 /* Issue an error about name-lookup failing. NAME is the
2817 IDENTIFIER_NODE DECL is the result of
2818 the lookup (as returned from cp_parser_lookup_name). DESIRED is
2819 the thing that we hoped to find. */
2821 static void
2822 cp_parser_name_lookup_error (cp_parser* parser,
2823 tree name,
2824 tree decl,
2825 name_lookup_error desired,
2826 location_t location)
2828 /* If name lookup completely failed, tell the user that NAME was not
2829 declared. */
2830 if (decl == error_mark_node)
2832 if (parser->scope && parser->scope != global_namespace)
2833 error_at (location, "%<%E::%E%> has not been declared",
2834 parser->scope, name);
2835 else if (parser->scope == global_namespace)
2836 error_at (location, "%<::%E%> has not been declared", name);
2837 else if (parser->object_scope
2838 && !CLASS_TYPE_P (parser->object_scope))
2839 error_at (location, "request for member %qE in non-class type %qT",
2840 name, parser->object_scope);
2841 else if (parser->object_scope)
2842 error_at (location, "%<%T::%E%> has not been declared",
2843 parser->object_scope, name);
2844 else
2845 error_at (location, "%qE has not been declared", name);
2847 else if (parser->scope && parser->scope != global_namespace)
2849 switch (desired)
2851 case NLE_TYPE:
2852 error_at (location, "%<%E::%E%> is not a type",
2853 parser->scope, name);
2854 break;
2855 case NLE_CXX98:
2856 error_at (location, "%<%E::%E%> is not a class or namespace",
2857 parser->scope, name);
2858 break;
2859 case NLE_NOT_CXX98:
2860 error_at (location,
2861 "%<%E::%E%> is not a class, namespace, or enumeration",
2862 parser->scope, name);
2863 break;
2864 default:
2865 gcc_unreachable ();
2869 else if (parser->scope == global_namespace)
2871 switch (desired)
2873 case NLE_TYPE:
2874 error_at (location, "%<::%E%> is not a type", name);
2875 break;
2876 case NLE_CXX98:
2877 error_at (location, "%<::%E%> is not a class or namespace", name);
2878 break;
2879 case NLE_NOT_CXX98:
2880 error_at (location,
2881 "%<::%E%> is not a class, namespace, or enumeration",
2882 name);
2883 break;
2884 default:
2885 gcc_unreachable ();
2888 else
2890 switch (desired)
2892 case NLE_TYPE:
2893 error_at (location, "%qE is not a type", name);
2894 break;
2895 case NLE_CXX98:
2896 error_at (location, "%qE is not a class or namespace", name);
2897 break;
2898 case NLE_NOT_CXX98:
2899 error_at (location,
2900 "%qE is not a class, namespace, or enumeration", name);
2901 break;
2902 default:
2903 gcc_unreachable ();
2908 /* If we are parsing tentatively, remember that an error has occurred
2909 during this tentative parse. Returns true if the error was
2910 simulated; false if a message should be issued by the caller. */
2912 static bool
2913 cp_parser_simulate_error (cp_parser* parser)
2915 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
2917 parser->context->status = CP_PARSER_STATUS_KIND_ERROR;
2918 return true;
2920 return false;
2923 /* This function is called when a type is defined. If type
2924 definitions are forbidden at this point, an error message is
2925 issued. */
2927 static bool
2928 cp_parser_check_type_definition (cp_parser* parser)
2930 /* If types are forbidden here, issue a message. */
2931 if (parser->type_definition_forbidden_message)
2933 /* Don't use `%s' to print the string, because quotations (`%<', `%>')
2934 in the message need to be interpreted. */
2935 error (parser->type_definition_forbidden_message);
2936 return false;
2938 return true;
2941 /* This function is called when the DECLARATOR is processed. The TYPE
2942 was a type defined in the decl-specifiers. If it is invalid to
2943 define a type in the decl-specifiers for DECLARATOR, an error is
2944 issued. TYPE_LOCATION is the location of TYPE and is used
2945 for error reporting. */
2947 static void
2948 cp_parser_check_for_definition_in_return_type (cp_declarator *declarator,
2949 tree type, location_t type_location)
2951 /* [dcl.fct] forbids type definitions in return types.
2952 Unfortunately, it's not easy to know whether or not we are
2953 processing a return type until after the fact. */
2954 while (declarator
2955 && (declarator->kind == cdk_pointer
2956 || declarator->kind == cdk_reference
2957 || declarator->kind == cdk_ptrmem))
2958 declarator = declarator->declarator;
2959 if (declarator
2960 && declarator->kind == cdk_function)
2962 error_at (type_location,
2963 "new types may not be defined in a return type");
2964 inform (type_location,
2965 "(perhaps a semicolon is missing after the definition of %qT)",
2966 type);
2970 /* A type-specifier (TYPE) has been parsed which cannot be followed by
2971 "<" in any valid C++ program. If the next token is indeed "<",
2972 issue a message warning the user about what appears to be an
2973 invalid attempt to form a template-id. LOCATION is the location
2974 of the type-specifier (TYPE) */
2976 static void
2977 cp_parser_check_for_invalid_template_id (cp_parser* parser,
2978 tree type,
2979 enum tag_types tag_type,
2980 location_t location)
2982 cp_token_position start = 0;
2984 if (cp_lexer_next_token_is (parser->lexer, CPP_LESS))
2986 if (TREE_CODE (type) == TYPE_DECL)
2987 type = TREE_TYPE (type);
2988 if (TYPE_P (type) && !template_placeholder_p (type))
2989 error_at (location, "%qT is not a template", type);
2990 else if (identifier_p (type))
2992 if (tag_type != none_type)
2993 error_at (location, "%qE is not a class template", type);
2994 else
2995 error_at (location, "%qE is not a template", type);
2997 else
2998 error_at (location, "invalid template-id");
2999 /* Remember the location of the invalid "<". */
3000 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
3001 start = cp_lexer_token_position (parser->lexer, true);
3002 /* Consume the "<". */
3003 cp_lexer_consume_token (parser->lexer);
3004 /* Parse the template arguments. */
3005 cp_parser_enclosed_template_argument_list (parser);
3006 /* Permanently remove the invalid template arguments so that
3007 this error message is not issued again. */
3008 if (start)
3009 cp_lexer_purge_tokens_after (parser->lexer, start);
3013 /* If parsing an integral constant-expression, issue an error message
3014 about the fact that THING appeared and return true. Otherwise,
3015 return false. In either case, set
3016 PARSER->NON_INTEGRAL_CONSTANT_EXPRESSION_P. */
3018 static bool
3019 cp_parser_non_integral_constant_expression (cp_parser *parser,
3020 non_integral_constant thing)
3022 parser->non_integral_constant_expression_p = true;
3023 if (parser->integral_constant_expression_p)
3025 if (!parser->allow_non_integral_constant_expression_p)
3027 const char *msg = NULL;
3028 switch (thing)
3030 case NIC_FLOAT:
3031 pedwarn (input_location, OPT_Wpedantic,
3032 "ISO C++ forbids using a floating-point literal "
3033 "in a constant-expression");
3034 return true;
3035 case NIC_CAST:
3036 error ("a cast to a type other than an integral or "
3037 "enumeration type cannot appear in a "
3038 "constant-expression");
3039 return true;
3040 case NIC_TYPEID:
3041 error ("%<typeid%> operator "
3042 "cannot appear in a constant-expression");
3043 return true;
3044 case NIC_NCC:
3045 error ("non-constant compound literals "
3046 "cannot appear in a constant-expression");
3047 return true;
3048 case NIC_FUNC_CALL:
3049 error ("a function call "
3050 "cannot appear in a constant-expression");
3051 return true;
3052 case NIC_INC:
3053 error ("an increment "
3054 "cannot appear in a constant-expression");
3055 return true;
3056 case NIC_DEC:
3057 error ("an decrement "
3058 "cannot appear in a constant-expression");
3059 return true;
3060 case NIC_ARRAY_REF:
3061 error ("an array reference "
3062 "cannot appear in a constant-expression");
3063 return true;
3064 case NIC_ADDR_LABEL:
3065 error ("the address of a label "
3066 "cannot appear in a constant-expression");
3067 return true;
3068 case NIC_OVERLOADED:
3069 error ("calls to overloaded operators "
3070 "cannot appear in a constant-expression");
3071 return true;
3072 case NIC_ASSIGNMENT:
3073 error ("an assignment cannot appear in a constant-expression");
3074 return true;
3075 case NIC_COMMA:
3076 error ("a comma operator "
3077 "cannot appear in a constant-expression");
3078 return true;
3079 case NIC_CONSTRUCTOR:
3080 error ("a call to a constructor "
3081 "cannot appear in a constant-expression");
3082 return true;
3083 case NIC_TRANSACTION:
3084 error ("a transaction expression "
3085 "cannot appear in a constant-expression");
3086 return true;
3087 case NIC_THIS:
3088 msg = "this";
3089 break;
3090 case NIC_FUNC_NAME:
3091 msg = "__FUNCTION__";
3092 break;
3093 case NIC_PRETTY_FUNC:
3094 msg = "__PRETTY_FUNCTION__";
3095 break;
3096 case NIC_C99_FUNC:
3097 msg = "__func__";
3098 break;
3099 case NIC_VA_ARG:
3100 msg = "va_arg";
3101 break;
3102 case NIC_ARROW:
3103 msg = "->";
3104 break;
3105 case NIC_POINT:
3106 msg = ".";
3107 break;
3108 case NIC_STAR:
3109 msg = "*";
3110 break;
3111 case NIC_ADDR:
3112 msg = "&";
3113 break;
3114 case NIC_PREINCREMENT:
3115 msg = "++";
3116 break;
3117 case NIC_PREDECREMENT:
3118 msg = "--";
3119 break;
3120 case NIC_NEW:
3121 msg = "new";
3122 break;
3123 case NIC_DEL:
3124 msg = "delete";
3125 break;
3126 default:
3127 gcc_unreachable ();
3129 if (msg)
3130 error ("%qs cannot appear in a constant-expression", msg);
3131 return true;
3134 return false;
3137 /* Emit a diagnostic for an invalid type name. This function commits
3138 to the current active tentative parse, if any. (Otherwise, the
3139 problematic construct might be encountered again later, resulting
3140 in duplicate error messages.) LOCATION is the location of ID. */
3142 static void
3143 cp_parser_diagnose_invalid_type_name (cp_parser *parser, tree id,
3144 location_t location)
3146 tree decl, ambiguous_decls;
3147 cp_parser_commit_to_tentative_parse (parser);
3148 /* Try to lookup the identifier. */
3149 decl = cp_parser_lookup_name (parser, id, none_type,
3150 /*is_template=*/false,
3151 /*is_namespace=*/false,
3152 /*check_dependency=*/true,
3153 &ambiguous_decls, location);
3154 if (ambiguous_decls)
3155 /* If the lookup was ambiguous, an error will already have
3156 been issued. */
3157 return;
3158 /* If the lookup found a template-name, it means that the user forgot
3159 to specify an argument list. Emit a useful error message. */
3160 if (DECL_TYPE_TEMPLATE_P (decl))
3162 error_at (location,
3163 "invalid use of template-name %qE without an argument list",
3164 decl);
3165 if (DECL_CLASS_TEMPLATE_P (decl) && cxx_dialect < cxx1z)
3166 inform (location, "class template argument deduction is only available "
3167 "with -std=c++1z or -std=gnu++1z");
3168 inform (DECL_SOURCE_LOCATION (decl), "%qD declared here", decl);
3170 else if (TREE_CODE (id) == BIT_NOT_EXPR)
3171 error_at (location, "invalid use of destructor %qD as a type", id);
3172 else if (TREE_CODE (decl) == TYPE_DECL)
3173 /* Something like 'unsigned A a;' */
3174 error_at (location, "invalid combination of multiple type-specifiers");
3175 else if (!parser->scope)
3177 /* Issue an error message. */
3178 const char *suggestion = NULL;
3179 if (TREE_CODE (id) == IDENTIFIER_NODE)
3180 suggestion = lookup_name_fuzzy (id, FUZZY_LOOKUP_TYPENAME);
3181 if (suggestion)
3183 gcc_rich_location richloc (location);
3184 richloc.add_fixit_replace (suggestion);
3185 error_at_rich_loc (&richloc,
3186 "%qE does not name a type; did you mean %qs?",
3187 id, suggestion);
3189 else
3190 error_at (location, "%qE does not name a type", id);
3191 /* If we're in a template class, it's possible that the user was
3192 referring to a type from a base class. For example:
3194 template <typename T> struct A { typedef T X; };
3195 template <typename T> struct B : public A<T> { X x; };
3197 The user should have said "typename A<T>::X". */
3198 if (cxx_dialect < cxx11 && id == ridpointers[(int)RID_CONSTEXPR])
3199 inform (location, "C++11 %<constexpr%> only available with "
3200 "-std=c++11 or -std=gnu++11");
3201 else if (cxx_dialect < cxx11 && id == ridpointers[(int)RID_NOEXCEPT])
3202 inform (location, "C++11 %<noexcept%> only available with "
3203 "-std=c++11 or -std=gnu++11");
3204 else if (cxx_dialect < cxx11
3205 && TREE_CODE (id) == IDENTIFIER_NODE
3206 && id_equal (id, "thread_local"))
3207 inform (location, "C++11 %<thread_local%> only available with "
3208 "-std=c++11 or -std=gnu++11");
3209 else if (!flag_concepts && id == ridpointers[(int)RID_CONCEPT])
3210 inform (location, "%<concept%> only available with -fconcepts");
3211 else if (processing_template_decl && current_class_type
3212 && TYPE_BINFO (current_class_type))
3214 tree b;
3216 for (b = TREE_CHAIN (TYPE_BINFO (current_class_type));
3218 b = TREE_CHAIN (b))
3220 tree base_type = BINFO_TYPE (b);
3221 if (CLASS_TYPE_P (base_type)
3222 && dependent_type_p (base_type))
3224 tree field;
3225 /* Go from a particular instantiation of the
3226 template (which will have an empty TYPE_FIELDs),
3227 to the main version. */
3228 base_type = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (base_type);
3229 for (field = TYPE_FIELDS (base_type);
3230 field;
3231 field = DECL_CHAIN (field))
3232 if (TREE_CODE (field) == TYPE_DECL
3233 && DECL_NAME (field) == id)
3235 inform (location,
3236 "(perhaps %<typename %T::%E%> was intended)",
3237 BINFO_TYPE (b), id);
3238 break;
3240 if (field)
3241 break;
3246 /* Here we diagnose qualified-ids where the scope is actually correct,
3247 but the identifier does not resolve to a valid type name. */
3248 else if (parser->scope != error_mark_node)
3250 if (TREE_CODE (parser->scope) == NAMESPACE_DECL)
3252 if (cp_lexer_next_token_is (parser->lexer, CPP_LESS))
3253 error_at (location_of (id),
3254 "%qE in namespace %qE does not name a template type",
3255 id, parser->scope);
3256 else if (TREE_CODE (id) == TEMPLATE_ID_EXPR)
3257 error_at (location_of (id),
3258 "%qE in namespace %qE does not name a template type",
3259 TREE_OPERAND (id, 0), parser->scope);
3260 else
3261 error_at (location_of (id),
3262 "%qE in namespace %qE does not name a type",
3263 id, parser->scope);
3264 if (DECL_P (decl))
3265 inform (DECL_SOURCE_LOCATION (decl), "%qD declared here", decl);
3267 else if (CLASS_TYPE_P (parser->scope)
3268 && constructor_name_p (id, parser->scope))
3270 /* A<T>::A<T>() */
3271 error_at (location, "%<%T::%E%> names the constructor, not"
3272 " the type", parser->scope, id);
3273 if (cp_lexer_next_token_is (parser->lexer, CPP_LESS))
3274 error_at (location, "and %qT has no template constructors",
3275 parser->scope);
3277 else if (TYPE_P (parser->scope)
3278 && dependent_scope_p (parser->scope))
3280 if (TREE_CODE (parser->scope) == TYPENAME_TYPE)
3281 error_at (location,
3282 "need %<typename%> before %<%T::%D::%E%> because "
3283 "%<%T::%D%> is a dependent scope",
3284 TYPE_CONTEXT (parser->scope),
3285 TYPENAME_TYPE_FULLNAME (parser->scope),
3287 TYPE_CONTEXT (parser->scope),
3288 TYPENAME_TYPE_FULLNAME (parser->scope));
3289 else
3290 error_at (location, "need %<typename%> before %<%T::%E%> because "
3291 "%qT is a dependent scope",
3292 parser->scope, id, parser->scope);
3294 else if (TYPE_P (parser->scope))
3296 if (!COMPLETE_TYPE_P (parser->scope))
3297 cxx_incomplete_type_error (location_of (id), NULL_TREE,
3298 parser->scope);
3299 else if (cp_lexer_next_token_is (parser->lexer, CPP_LESS))
3300 error_at (location_of (id),
3301 "%qE in %q#T does not name a template type",
3302 id, parser->scope);
3303 else if (TREE_CODE (id) == TEMPLATE_ID_EXPR)
3304 error_at (location_of (id),
3305 "%qE in %q#T does not name a template type",
3306 TREE_OPERAND (id, 0), parser->scope);
3307 else
3308 error_at (location_of (id),
3309 "%qE in %q#T does not name a type",
3310 id, parser->scope);
3311 if (DECL_P (decl))
3312 inform (DECL_SOURCE_LOCATION (decl), "%qD declared here", decl);
3314 else
3315 gcc_unreachable ();
3319 /* Check for a common situation where a type-name should be present,
3320 but is not, and issue a sensible error message. Returns true if an
3321 invalid type-name was detected.
3323 The situation handled by this function are variable declarations of the
3324 form `ID a', where `ID' is an id-expression and `a' is a plain identifier.
3325 Usually, `ID' should name a type, but if we got here it means that it
3326 does not. We try to emit the best possible error message depending on
3327 how exactly the id-expression looks like. */
3329 static bool
3330 cp_parser_parse_and_diagnose_invalid_type_name (cp_parser *parser)
3332 tree id;
3333 cp_token *token = cp_lexer_peek_token (parser->lexer);
3335 /* Avoid duplicate error about ambiguous lookup. */
3336 if (token->type == CPP_NESTED_NAME_SPECIFIER)
3338 cp_token *next = cp_lexer_peek_nth_token (parser->lexer, 2);
3339 if (next->type == CPP_NAME && next->error_reported)
3340 goto out;
3343 cp_parser_parse_tentatively (parser);
3344 id = cp_parser_id_expression (parser,
3345 /*template_keyword_p=*/false,
3346 /*check_dependency_p=*/true,
3347 /*template_p=*/NULL,
3348 /*declarator_p=*/true,
3349 /*optional_p=*/false);
3350 /* If the next token is a (, this is a function with no explicit return
3351 type, i.e. constructor, destructor or conversion op. */
3352 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN)
3353 || TREE_CODE (id) == TYPE_DECL)
3355 cp_parser_abort_tentative_parse (parser);
3356 return false;
3358 if (!cp_parser_parse_definitely (parser))
3359 return false;
3361 /* Emit a diagnostic for the invalid type. */
3362 cp_parser_diagnose_invalid_type_name (parser, id, token->location);
3363 out:
3364 /* If we aren't in the middle of a declarator (i.e. in a
3365 parameter-declaration-clause), skip to the end of the declaration;
3366 there's no point in trying to process it. */
3367 if (!parser->in_declarator_p)
3368 cp_parser_skip_to_end_of_block_or_statement (parser);
3369 return true;
3372 /* Consume tokens up to, and including, the next non-nested closing `)'.
3373 Returns 1 iff we found a closing `)'. RECOVERING is true, if we
3374 are doing error recovery. Returns -1 if OR_TTYPE is not CPP_EOF and we
3375 found an unnested token of that type. */
3377 static int
3378 cp_parser_skip_to_closing_parenthesis_1 (cp_parser *parser,
3379 bool recovering,
3380 cpp_ttype or_ttype,
3381 bool consume_paren)
3383 unsigned paren_depth = 0;
3384 unsigned brace_depth = 0;
3385 unsigned square_depth = 0;
3387 if (recovering && or_ttype == CPP_EOF
3388 && cp_parser_uncommitted_to_tentative_parse_p (parser))
3389 return 0;
3391 while (true)
3393 cp_token * token = cp_lexer_peek_token (parser->lexer);
3395 /* Have we found what we're looking for before the closing paren? */
3396 if (token->type == or_ttype && or_ttype != CPP_EOF
3397 && !brace_depth && !paren_depth && !square_depth)
3398 return -1;
3400 switch (token->type)
3402 case CPP_EOF:
3403 case CPP_PRAGMA_EOL:
3404 /* If we've run out of tokens, then there is no closing `)'. */
3405 return 0;
3407 /* This is good for lambda expression capture-lists. */
3408 case CPP_OPEN_SQUARE:
3409 ++square_depth;
3410 break;
3411 case CPP_CLOSE_SQUARE:
3412 if (!square_depth--)
3413 return 0;
3414 break;
3416 case CPP_SEMICOLON:
3417 /* This matches the processing in skip_to_end_of_statement. */
3418 if (!brace_depth)
3419 return 0;
3420 break;
3422 case CPP_OPEN_BRACE:
3423 ++brace_depth;
3424 break;
3425 case CPP_CLOSE_BRACE:
3426 if (!brace_depth--)
3427 return 0;
3428 break;
3430 case CPP_OPEN_PAREN:
3431 if (!brace_depth)
3432 ++paren_depth;
3433 break;
3435 case CPP_CLOSE_PAREN:
3436 if (!brace_depth && !paren_depth--)
3438 if (consume_paren)
3439 cp_lexer_consume_token (parser->lexer);
3440 return 1;
3442 break;
3444 default:
3445 break;
3448 /* Consume the token. */
3449 cp_lexer_consume_token (parser->lexer);
3453 /* Consume tokens up to, and including, the next non-nested closing `)'.
3454 Returns 1 iff we found a closing `)'. RECOVERING is true, if we
3455 are doing error recovery. Returns -1 if OR_COMMA is true and we
3456 found an unnested token of that type. */
3458 static int
3459 cp_parser_skip_to_closing_parenthesis (cp_parser *parser,
3460 bool recovering,
3461 bool or_comma,
3462 bool consume_paren)
3464 cpp_ttype ttype = or_comma ? CPP_COMMA : CPP_EOF;
3465 return cp_parser_skip_to_closing_parenthesis_1 (parser, recovering,
3466 ttype, consume_paren);
3469 /* Consume tokens until we reach the end of the current statement.
3470 Normally, that will be just before consuming a `;'. However, if a
3471 non-nested `}' comes first, then we stop before consuming that. */
3473 static void
3474 cp_parser_skip_to_end_of_statement (cp_parser* parser)
3476 unsigned nesting_depth = 0;
3478 /* Unwind generic function template scope if necessary. */
3479 if (parser->fully_implicit_function_template_p)
3480 finish_fully_implicit_template (parser, /*member_decl_opt=*/0);
3482 while (true)
3484 cp_token *token = cp_lexer_peek_token (parser->lexer);
3486 switch (token->type)
3488 case CPP_EOF:
3489 case CPP_PRAGMA_EOL:
3490 /* If we've run out of tokens, stop. */
3491 return;
3493 case CPP_SEMICOLON:
3494 /* If the next token is a `;', we have reached the end of the
3495 statement. */
3496 if (!nesting_depth)
3497 return;
3498 break;
3500 case CPP_CLOSE_BRACE:
3501 /* If this is a non-nested '}', stop before consuming it.
3502 That way, when confronted with something like:
3504 { 3 + }
3506 we stop before consuming the closing '}', even though we
3507 have not yet reached a `;'. */
3508 if (nesting_depth == 0)
3509 return;
3511 /* If it is the closing '}' for a block that we have
3512 scanned, stop -- but only after consuming the token.
3513 That way given:
3515 void f g () { ... }
3516 typedef int I;
3518 we will stop after the body of the erroneously declared
3519 function, but before consuming the following `typedef'
3520 declaration. */
3521 if (--nesting_depth == 0)
3523 cp_lexer_consume_token (parser->lexer);
3524 return;
3526 break;
3528 case CPP_OPEN_BRACE:
3529 ++nesting_depth;
3530 break;
3532 default:
3533 break;
3536 /* Consume the token. */
3537 cp_lexer_consume_token (parser->lexer);
3541 /* This function is called at the end of a statement or declaration.
3542 If the next token is a semicolon, it is consumed; otherwise, error
3543 recovery is attempted. */
3545 static void
3546 cp_parser_consume_semicolon_at_end_of_statement (cp_parser *parser)
3548 /* Look for the trailing `;'. */
3549 if (!cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON))
3551 /* If there is additional (erroneous) input, skip to the end of
3552 the statement. */
3553 cp_parser_skip_to_end_of_statement (parser);
3554 /* If the next token is now a `;', consume it. */
3555 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
3556 cp_lexer_consume_token (parser->lexer);
3560 /* Skip tokens until we have consumed an entire block, or until we
3561 have consumed a non-nested `;'. */
3563 static void
3564 cp_parser_skip_to_end_of_block_or_statement (cp_parser* parser)
3566 int nesting_depth = 0;
3568 /* Unwind generic function template scope if necessary. */
3569 if (parser->fully_implicit_function_template_p)
3570 finish_fully_implicit_template (parser, /*member_decl_opt=*/0);
3572 while (nesting_depth >= 0)
3574 cp_token *token = cp_lexer_peek_token (parser->lexer);
3576 switch (token->type)
3578 case CPP_EOF:
3579 case CPP_PRAGMA_EOL:
3580 /* If we've run out of tokens, stop. */
3581 return;
3583 case CPP_SEMICOLON:
3584 /* Stop if this is an unnested ';'. */
3585 if (!nesting_depth)
3586 nesting_depth = -1;
3587 break;
3589 case CPP_CLOSE_BRACE:
3590 /* Stop if this is an unnested '}', or closes the outermost
3591 nesting level. */
3592 nesting_depth--;
3593 if (nesting_depth < 0)
3594 return;
3595 if (!nesting_depth)
3596 nesting_depth = -1;
3597 break;
3599 case CPP_OPEN_BRACE:
3600 /* Nest. */
3601 nesting_depth++;
3602 break;
3604 default:
3605 break;
3608 /* Consume the token. */
3609 cp_lexer_consume_token (parser->lexer);
3613 /* Skip tokens until a non-nested closing curly brace is the next
3614 token, or there are no more tokens. Return true in the first case,
3615 false otherwise. */
3617 static bool
3618 cp_parser_skip_to_closing_brace (cp_parser *parser)
3620 unsigned nesting_depth = 0;
3622 while (true)
3624 cp_token *token = cp_lexer_peek_token (parser->lexer);
3626 switch (token->type)
3628 case CPP_EOF:
3629 case CPP_PRAGMA_EOL:
3630 /* If we've run out of tokens, stop. */
3631 return false;
3633 case CPP_CLOSE_BRACE:
3634 /* If the next token is a non-nested `}', then we have reached
3635 the end of the current block. */
3636 if (nesting_depth-- == 0)
3637 return true;
3638 break;
3640 case CPP_OPEN_BRACE:
3641 /* If it the next token is a `{', then we are entering a new
3642 block. Consume the entire block. */
3643 ++nesting_depth;
3644 break;
3646 default:
3647 break;
3650 /* Consume the token. */
3651 cp_lexer_consume_token (parser->lexer);
3655 /* Consume tokens until we reach the end of the pragma. The PRAGMA_TOK
3656 parameter is the PRAGMA token, allowing us to purge the entire pragma
3657 sequence. */
3659 static void
3660 cp_parser_skip_to_pragma_eol (cp_parser* parser, cp_token *pragma_tok)
3662 cp_token *token;
3664 parser->lexer->in_pragma = false;
3667 token = cp_lexer_consume_token (parser->lexer);
3668 while (token->type != CPP_PRAGMA_EOL && token->type != CPP_EOF);
3670 /* Ensure that the pragma is not parsed again. */
3671 cp_lexer_purge_tokens_after (parser->lexer, pragma_tok);
3674 /* Require pragma end of line, resyncing with it as necessary. The
3675 arguments are as for cp_parser_skip_to_pragma_eol. */
3677 static void
3678 cp_parser_require_pragma_eol (cp_parser *parser, cp_token *pragma_tok)
3680 parser->lexer->in_pragma = false;
3681 if (!cp_parser_require (parser, CPP_PRAGMA_EOL, RT_PRAGMA_EOL))
3682 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
3685 /* This is a simple wrapper around make_typename_type. When the id is
3686 an unresolved identifier node, we can provide a superior diagnostic
3687 using cp_parser_diagnose_invalid_type_name. */
3689 static tree
3690 cp_parser_make_typename_type (cp_parser *parser, tree id,
3691 location_t id_location)
3693 tree result;
3694 if (identifier_p (id))
3696 result = make_typename_type (parser->scope, id, typename_type,
3697 /*complain=*/tf_none);
3698 if (result == error_mark_node)
3699 cp_parser_diagnose_invalid_type_name (parser, id, id_location);
3700 return result;
3702 return make_typename_type (parser->scope, id, typename_type, tf_error);
3705 /* This is a wrapper around the
3706 make_{pointer,ptrmem,reference}_declarator functions that decides
3707 which one to call based on the CODE and CLASS_TYPE arguments. The
3708 CODE argument should be one of the values returned by
3709 cp_parser_ptr_operator. ATTRIBUTES represent the attributes that
3710 appertain to the pointer or reference. */
3712 static cp_declarator *
3713 cp_parser_make_indirect_declarator (enum tree_code code, tree class_type,
3714 cp_cv_quals cv_qualifiers,
3715 cp_declarator *target,
3716 tree attributes)
3718 if (code == ERROR_MARK)
3719 return cp_error_declarator;
3721 if (code == INDIRECT_REF)
3722 if (class_type == NULL_TREE)
3723 return make_pointer_declarator (cv_qualifiers, target, attributes);
3724 else
3725 return make_ptrmem_declarator (cv_qualifiers, class_type,
3726 target, attributes);
3727 else if (code == ADDR_EXPR && class_type == NULL_TREE)
3728 return make_reference_declarator (cv_qualifiers, target,
3729 false, attributes);
3730 else if (code == NON_LVALUE_EXPR && class_type == NULL_TREE)
3731 return make_reference_declarator (cv_qualifiers, target,
3732 true, attributes);
3733 gcc_unreachable ();
3736 /* Create a new C++ parser. */
3738 static cp_parser *
3739 cp_parser_new (void)
3741 cp_parser *parser;
3742 cp_lexer *lexer;
3743 unsigned i;
3745 /* cp_lexer_new_main is called before doing GC allocation because
3746 cp_lexer_new_main might load a PCH file. */
3747 lexer = cp_lexer_new_main ();
3749 /* Initialize the binops_by_token so that we can get the tree
3750 directly from the token. */
3751 for (i = 0; i < sizeof (binops) / sizeof (binops[0]); i++)
3752 binops_by_token[binops[i].token_type] = binops[i];
3754 parser = ggc_cleared_alloc<cp_parser> ();
3755 parser->lexer = lexer;
3756 parser->context = cp_parser_context_new (NULL);
3758 /* For now, we always accept GNU extensions. */
3759 parser->allow_gnu_extensions_p = 1;
3761 /* The `>' token is a greater-than operator, not the end of a
3762 template-id. */
3763 parser->greater_than_is_operator_p = true;
3765 parser->default_arg_ok_p = true;
3767 /* We are not parsing a constant-expression. */
3768 parser->integral_constant_expression_p = false;
3769 parser->allow_non_integral_constant_expression_p = false;
3770 parser->non_integral_constant_expression_p = false;
3772 /* Local variable names are not forbidden. */
3773 parser->local_variables_forbidden_p = false;
3775 /* We are not processing an `extern "C"' declaration. */
3776 parser->in_unbraced_linkage_specification_p = false;
3778 /* We are not processing a declarator. */
3779 parser->in_declarator_p = false;
3781 /* We are not processing a template-argument-list. */
3782 parser->in_template_argument_list_p = false;
3784 /* We are not in an iteration statement. */
3785 parser->in_statement = 0;
3787 /* We are not in a switch statement. */
3788 parser->in_switch_statement_p = false;
3790 /* We are not parsing a type-id inside an expression. */
3791 parser->in_type_id_in_expr_p = false;
3793 /* Declarations aren't implicitly extern "C". */
3794 parser->implicit_extern_c = false;
3796 /* String literals should be translated to the execution character set. */
3797 parser->translate_strings_p = true;
3799 /* We are not parsing a function body. */
3800 parser->in_function_body = false;
3802 /* We can correct until told otherwise. */
3803 parser->colon_corrects_to_scope_p = true;
3805 /* The unparsed function queue is empty. */
3806 push_unparsed_function_queues (parser);
3808 /* There are no classes being defined. */
3809 parser->num_classes_being_defined = 0;
3811 /* No template parameters apply. */
3812 parser->num_template_parameter_lists = 0;
3814 /* Special parsing data structures. */
3815 parser->omp_declare_simd = NULL;
3816 parser->cilk_simd_fn_info = NULL;
3817 parser->oacc_routine = NULL;
3819 /* Not declaring an implicit function template. */
3820 parser->auto_is_implicit_function_template_parm_p = false;
3821 parser->fully_implicit_function_template_p = false;
3822 parser->implicit_template_parms = 0;
3823 parser->implicit_template_scope = 0;
3825 /* Allow constrained-type-specifiers. */
3826 parser->prevent_constrained_type_specifiers = 0;
3828 return parser;
3831 /* Create a cp_lexer structure which will emit the tokens in CACHE
3832 and push it onto the parser's lexer stack. This is used for delayed
3833 parsing of in-class method bodies and default arguments, and should
3834 not be confused with tentative parsing. */
3835 static void
3836 cp_parser_push_lexer_for_tokens (cp_parser *parser, cp_token_cache *cache)
3838 cp_lexer *lexer = cp_lexer_new_from_tokens (cache);
3839 lexer->next = parser->lexer;
3840 parser->lexer = lexer;
3842 /* Move the current source position to that of the first token in the
3843 new lexer. */
3844 cp_lexer_set_source_position_from_token (lexer->next_token);
3847 /* Pop the top lexer off the parser stack. This is never used for the
3848 "main" lexer, only for those pushed by cp_parser_push_lexer_for_tokens. */
3849 static void
3850 cp_parser_pop_lexer (cp_parser *parser)
3852 cp_lexer *lexer = parser->lexer;
3853 parser->lexer = lexer->next;
3854 cp_lexer_destroy (lexer);
3856 /* Put the current source position back where it was before this
3857 lexer was pushed. */
3858 cp_lexer_set_source_position_from_token (parser->lexer->next_token);
3861 /* Lexical conventions [gram.lex] */
3863 /* Parse an identifier. Returns an IDENTIFIER_NODE representing the
3864 identifier. */
3866 static cp_expr
3867 cp_parser_identifier (cp_parser* parser)
3869 cp_token *token;
3871 /* Look for the identifier. */
3872 token = cp_parser_require (parser, CPP_NAME, RT_NAME);
3873 /* Return the value. */
3874 if (token)
3875 return cp_expr (token->u.value, token->location);
3876 else
3877 return error_mark_node;
3880 /* Parse a sequence of adjacent string constants. Returns a
3881 TREE_STRING representing the combined, nul-terminated string
3882 constant. If TRANSLATE is true, translate the string to the
3883 execution character set. If WIDE_OK is true, a wide string is
3884 invalid here.
3886 C++98 [lex.string] says that if a narrow string literal token is
3887 adjacent to a wide string literal token, the behavior is undefined.
3888 However, C99 6.4.5p4 says that this results in a wide string literal.
3889 We follow C99 here, for consistency with the C front end.
3891 This code is largely lifted from lex_string() in c-lex.c.
3893 FUTURE: ObjC++ will need to handle @-strings here. */
3894 static cp_expr
3895 cp_parser_string_literal (cp_parser *parser, bool translate, bool wide_ok,
3896 bool lookup_udlit = true)
3898 tree value;
3899 size_t count;
3900 struct obstack str_ob;
3901 cpp_string str, istr, *strs;
3902 cp_token *tok;
3903 enum cpp_ttype type, curr_type;
3904 int have_suffix_p = 0;
3905 tree string_tree;
3906 tree suffix_id = NULL_TREE;
3907 bool curr_tok_is_userdef_p = false;
3909 tok = cp_lexer_peek_token (parser->lexer);
3910 if (!cp_parser_is_string_literal (tok))
3912 cp_parser_error (parser, "expected string-literal");
3913 return error_mark_node;
3916 location_t loc = tok->location;
3918 if (cpp_userdef_string_p (tok->type))
3920 string_tree = USERDEF_LITERAL_VALUE (tok->u.value);
3921 curr_type = cpp_userdef_string_remove_type (tok->type);
3922 curr_tok_is_userdef_p = true;
3924 else
3926 string_tree = tok->u.value;
3927 curr_type = tok->type;
3929 type = curr_type;
3931 /* Try to avoid the overhead of creating and destroying an obstack
3932 for the common case of just one string. */
3933 if (!cp_parser_is_string_literal
3934 (cp_lexer_peek_nth_token (parser->lexer, 2)))
3936 cp_lexer_consume_token (parser->lexer);
3938 str.text = (const unsigned char *)TREE_STRING_POINTER (string_tree);
3939 str.len = TREE_STRING_LENGTH (string_tree);
3940 count = 1;
3942 if (curr_tok_is_userdef_p)
3944 suffix_id = USERDEF_LITERAL_SUFFIX_ID (tok->u.value);
3945 have_suffix_p = 1;
3946 curr_type = cpp_userdef_string_remove_type (tok->type);
3948 else
3949 curr_type = tok->type;
3951 strs = &str;
3953 else
3955 location_t last_tok_loc = tok->location;
3956 gcc_obstack_init (&str_ob);
3957 count = 0;
3961 cp_lexer_consume_token (parser->lexer);
3962 count++;
3963 str.text = (const unsigned char *)TREE_STRING_POINTER (string_tree);
3964 str.len = TREE_STRING_LENGTH (string_tree);
3966 if (curr_tok_is_userdef_p)
3968 tree curr_suffix_id = USERDEF_LITERAL_SUFFIX_ID (tok->u.value);
3969 if (have_suffix_p == 0)
3971 suffix_id = curr_suffix_id;
3972 have_suffix_p = 1;
3974 else if (have_suffix_p == 1
3975 && curr_suffix_id != suffix_id)
3977 error ("inconsistent user-defined literal suffixes"
3978 " %qD and %qD in string literal",
3979 suffix_id, curr_suffix_id);
3980 have_suffix_p = -1;
3982 curr_type = cpp_userdef_string_remove_type (tok->type);
3984 else
3985 curr_type = tok->type;
3987 if (type != curr_type)
3989 if (type == CPP_STRING)
3990 type = curr_type;
3991 else if (curr_type != CPP_STRING)
3993 rich_location rich_loc (line_table, tok->location);
3994 rich_loc.add_range (last_tok_loc, false);
3995 error_at_rich_loc (&rich_loc,
3996 "unsupported non-standard concatenation "
3997 "of string literals");
4001 obstack_grow (&str_ob, &str, sizeof (cpp_string));
4003 last_tok_loc = tok->location;
4005 tok = cp_lexer_peek_token (parser->lexer);
4006 if (cpp_userdef_string_p (tok->type))
4008 string_tree = USERDEF_LITERAL_VALUE (tok->u.value);
4009 curr_type = cpp_userdef_string_remove_type (tok->type);
4010 curr_tok_is_userdef_p = true;
4012 else
4014 string_tree = tok->u.value;
4015 curr_type = tok->type;
4016 curr_tok_is_userdef_p = false;
4019 while (cp_parser_is_string_literal (tok));
4021 /* A string literal built by concatenation has its caret=start at
4022 the start of the initial string, and its finish at the finish of
4023 the final string literal. */
4024 loc = make_location (loc, loc, get_finish (last_tok_loc));
4026 strs = (cpp_string *) obstack_finish (&str_ob);
4029 if (type != CPP_STRING && !wide_ok)
4031 cp_parser_error (parser, "a wide string is invalid in this context");
4032 type = CPP_STRING;
4035 if ((translate ? cpp_interpret_string : cpp_interpret_string_notranslate)
4036 (parse_in, strs, count, &istr, type))
4038 value = build_string (istr.len, (const char *)istr.text);
4039 free (CONST_CAST (unsigned char *, istr.text));
4041 switch (type)
4043 default:
4044 case CPP_STRING:
4045 case CPP_UTF8STRING:
4046 TREE_TYPE (value) = char_array_type_node;
4047 break;
4048 case CPP_STRING16:
4049 TREE_TYPE (value) = char16_array_type_node;
4050 break;
4051 case CPP_STRING32:
4052 TREE_TYPE (value) = char32_array_type_node;
4053 break;
4054 case CPP_WSTRING:
4055 TREE_TYPE (value) = wchar_array_type_node;
4056 break;
4059 value = fix_string_type (value);
4061 if (have_suffix_p)
4063 tree literal = build_userdef_literal (suffix_id, value,
4064 OT_NONE, NULL_TREE);
4065 if (lookup_udlit)
4066 value = cp_parser_userdef_string_literal (literal);
4067 else
4068 value = literal;
4071 else
4072 /* cpp_interpret_string has issued an error. */
4073 value = error_mark_node;
4075 if (count > 1)
4076 obstack_free (&str_ob, 0);
4078 return cp_expr (value, loc);
4081 /* Look up a literal operator with the name and the exact arguments. */
4083 static tree
4084 lookup_literal_operator (tree name, vec<tree, va_gc> *args)
4086 tree decl;
4087 decl = lookup_name (name);
4088 if (!decl || !is_overloaded_fn (decl))
4089 return error_mark_node;
4091 for (lkp_iterator iter (decl); iter; ++iter)
4093 unsigned int ix;
4094 bool found = true;
4095 tree fn = *iter;
4096 tree parmtypes = TYPE_ARG_TYPES (TREE_TYPE (fn));
4097 if (parmtypes != NULL_TREE)
4099 for (ix = 0; ix < vec_safe_length (args) && parmtypes != NULL_TREE;
4100 ++ix, parmtypes = TREE_CHAIN (parmtypes))
4102 tree tparm = TREE_VALUE (parmtypes);
4103 tree targ = TREE_TYPE ((*args)[ix]);
4104 bool ptr = TYPE_PTR_P (tparm);
4105 bool arr = TREE_CODE (targ) == ARRAY_TYPE;
4106 if ((ptr || arr || !same_type_p (tparm, targ))
4107 && (!ptr || !arr
4108 || !same_type_p (TREE_TYPE (tparm),
4109 TREE_TYPE (targ))))
4110 found = false;
4112 if (found
4113 && ix == vec_safe_length (args)
4114 /* May be this should be sufficient_parms_p instead,
4115 depending on how exactly should user-defined literals
4116 work in presence of default arguments on the literal
4117 operator parameters. */
4118 && parmtypes == void_list_node)
4119 return decl;
4123 return error_mark_node;
4126 /* Parse a user-defined char constant. Returns a call to a user-defined
4127 literal operator taking the character as an argument. */
4129 static cp_expr
4130 cp_parser_userdef_char_literal (cp_parser *parser)
4132 cp_token *token = cp_lexer_consume_token (parser->lexer);
4133 tree literal = token->u.value;
4134 tree suffix_id = USERDEF_LITERAL_SUFFIX_ID (literal);
4135 tree value = USERDEF_LITERAL_VALUE (literal);
4136 tree name = cp_literal_operator_id (IDENTIFIER_POINTER (suffix_id));
4137 tree decl, result;
4139 /* Build up a call to the user-defined operator */
4140 /* Lookup the name we got back from the id-expression. */
4141 vec<tree, va_gc> *args = make_tree_vector ();
4142 vec_safe_push (args, value);
4143 decl = lookup_literal_operator (name, args);
4144 if (!decl || decl == error_mark_node)
4146 error ("unable to find character literal operator %qD with %qT argument",
4147 name, TREE_TYPE (value));
4148 release_tree_vector (args);
4149 return error_mark_node;
4151 result = finish_call_expr (decl, &args, false, true, tf_warning_or_error);
4152 release_tree_vector (args);
4153 return result;
4156 /* A subroutine of cp_parser_userdef_numeric_literal to
4157 create a char... template parameter pack from a string node. */
4159 static tree
4160 make_char_string_pack (tree value)
4162 tree charvec;
4163 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
4164 const char *str = TREE_STRING_POINTER (value);
4165 int i, len = TREE_STRING_LENGTH (value) - 1;
4166 tree argvec = make_tree_vec (1);
4168 /* Fill in CHARVEC with all of the parameters. */
4169 charvec = make_tree_vec (len);
4170 for (i = 0; i < len; ++i)
4171 TREE_VEC_ELT (charvec, i) = build_int_cst (char_type_node, str[i]);
4173 /* Build the argument packs. */
4174 SET_ARGUMENT_PACK_ARGS (argpack, charvec);
4176 TREE_VEC_ELT (argvec, 0) = argpack;
4178 return argvec;
4181 /* A subroutine of cp_parser_userdef_numeric_literal to
4182 create a char... template parameter pack from a string node. */
4184 static tree
4185 make_string_pack (tree value)
4187 tree charvec;
4188 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
4189 const unsigned char *str
4190 = (const unsigned char *) TREE_STRING_POINTER (value);
4191 int sz = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (value))));
4192 int len = TREE_STRING_LENGTH (value) / sz - 1;
4193 tree argvec = make_tree_vec (2);
4195 tree str_char_type_node = TREE_TYPE (TREE_TYPE (value));
4196 str_char_type_node = TYPE_MAIN_VARIANT (str_char_type_node);
4198 /* First template parm is character type. */
4199 TREE_VEC_ELT (argvec, 0) = str_char_type_node;
4201 /* Fill in CHARVEC with all of the parameters. */
4202 charvec = make_tree_vec (len);
4203 for (int i = 0; i < len; ++i)
4204 TREE_VEC_ELT (charvec, i)
4205 = double_int_to_tree (str_char_type_node,
4206 double_int::from_buffer (str + i * sz, sz));
4208 /* Build the argument packs. */
4209 SET_ARGUMENT_PACK_ARGS (argpack, charvec);
4211 TREE_VEC_ELT (argvec, 1) = argpack;
4213 return argvec;
4216 /* Parse a user-defined numeric constant. returns a call to a user-defined
4217 literal operator. */
4219 static cp_expr
4220 cp_parser_userdef_numeric_literal (cp_parser *parser)
4222 cp_token *token = cp_lexer_consume_token (parser->lexer);
4223 tree literal = token->u.value;
4224 tree suffix_id = USERDEF_LITERAL_SUFFIX_ID (literal);
4225 tree value = USERDEF_LITERAL_VALUE (literal);
4226 int overflow = USERDEF_LITERAL_OVERFLOW (literal);
4227 tree num_string = USERDEF_LITERAL_NUM_STRING (literal);
4228 tree name = cp_literal_operator_id (IDENTIFIER_POINTER (suffix_id));
4229 tree decl, result;
4230 vec<tree, va_gc> *args;
4232 /* Look for a literal operator taking the exact type of numeric argument
4233 as the literal value. */
4234 args = make_tree_vector ();
4235 vec_safe_push (args, value);
4236 decl = lookup_literal_operator (name, args);
4237 if (decl && decl != error_mark_node)
4239 result = finish_call_expr (decl, &args, false, true,
4240 tf_warning_or_error);
4242 if (TREE_CODE (TREE_TYPE (value)) == INTEGER_TYPE && overflow > 0)
4244 warning_at (token->location, OPT_Woverflow,
4245 "integer literal exceeds range of %qT type",
4246 long_long_unsigned_type_node);
4248 else
4250 if (overflow > 0)
4251 warning_at (token->location, OPT_Woverflow,
4252 "floating literal exceeds range of %qT type",
4253 long_double_type_node);
4254 else if (overflow < 0)
4255 warning_at (token->location, OPT_Woverflow,
4256 "floating literal truncated to zero");
4259 release_tree_vector (args);
4260 return result;
4262 release_tree_vector (args);
4264 /* If the numeric argument didn't work, look for a raw literal
4265 operator taking a const char* argument consisting of the number
4266 in string format. */
4267 args = make_tree_vector ();
4268 vec_safe_push (args, num_string);
4269 decl = lookup_literal_operator (name, args);
4270 if (decl && decl != error_mark_node)
4272 result = finish_call_expr (decl, &args, false, true,
4273 tf_warning_or_error);
4274 release_tree_vector (args);
4275 return result;
4277 release_tree_vector (args);
4279 /* If the raw literal didn't work, look for a non-type template
4280 function with parameter pack char.... Call the function with
4281 template parameter characters representing the number. */
4282 args = make_tree_vector ();
4283 decl = lookup_literal_operator (name, args);
4284 if (decl && decl != error_mark_node)
4286 tree tmpl_args = make_char_string_pack (num_string);
4287 decl = lookup_template_function (decl, tmpl_args);
4288 result = finish_call_expr (decl, &args, false, true,
4289 tf_warning_or_error);
4290 release_tree_vector (args);
4291 return result;
4294 release_tree_vector (args);
4296 error ("unable to find numeric literal operator %qD", name);
4297 if (!cpp_get_options (parse_in)->ext_numeric_literals)
4298 inform (token->location, "use -std=gnu++11 or -fext-numeric-literals "
4299 "to enable more built-in suffixes");
4300 return error_mark_node;
4303 /* Parse a user-defined string constant. Returns a call to a user-defined
4304 literal operator taking a character pointer and the length of the string
4305 as arguments. */
4307 static tree
4308 cp_parser_userdef_string_literal (tree literal)
4310 tree suffix_id = USERDEF_LITERAL_SUFFIX_ID (literal);
4311 tree name = cp_literal_operator_id (IDENTIFIER_POINTER (suffix_id));
4312 tree value = USERDEF_LITERAL_VALUE (literal);
4313 int len = TREE_STRING_LENGTH (value)
4314 / TREE_INT_CST_LOW (TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (value)))) - 1;
4315 tree decl, result;
4316 vec<tree, va_gc> *args;
4318 /* Build up a call to the user-defined operator. */
4319 /* Lookup the name we got back from the id-expression. */
4320 args = make_tree_vector ();
4321 vec_safe_push (args, value);
4322 vec_safe_push (args, build_int_cst (size_type_node, len));
4323 decl = lookup_literal_operator (name, args);
4325 if (decl && decl != error_mark_node)
4327 result = finish_call_expr (decl, &args, false, true,
4328 tf_warning_or_error);
4329 release_tree_vector (args);
4330 return result;
4332 release_tree_vector (args);
4334 /* Look for a template function with typename parameter CharT
4335 and parameter pack CharT... Call the function with
4336 template parameter characters representing the string. */
4337 args = make_tree_vector ();
4338 decl = lookup_literal_operator (name, args);
4339 if (decl && decl != error_mark_node)
4341 tree tmpl_args = make_string_pack (value);
4342 decl = lookup_template_function (decl, tmpl_args);
4343 result = finish_call_expr (decl, &args, false, true,
4344 tf_warning_or_error);
4345 release_tree_vector (args);
4346 return result;
4348 release_tree_vector (args);
4350 error ("unable to find string literal operator %qD with %qT, %qT arguments",
4351 name, TREE_TYPE (value), size_type_node);
4352 return error_mark_node;
4356 /* Basic concepts [gram.basic] */
4358 /* Parse a translation-unit.
4360 translation-unit:
4361 declaration-seq [opt]
4363 Returns TRUE if all went well. */
4365 static bool
4366 cp_parser_translation_unit (cp_parser* parser)
4368 /* The address of the first non-permanent object on the declarator
4369 obstack. */
4370 static void *declarator_obstack_base;
4372 bool success;
4374 /* Create the declarator obstack, if necessary. */
4375 if (!cp_error_declarator)
4377 gcc_obstack_init (&declarator_obstack);
4378 /* Create the error declarator. */
4379 cp_error_declarator = make_declarator (cdk_error);
4380 /* Create the empty parameter list. */
4381 no_parameters = make_parameter_declarator (NULL, NULL, NULL_TREE);
4382 /* Remember where the base of the declarator obstack lies. */
4383 declarator_obstack_base = obstack_next_free (&declarator_obstack);
4386 cp_parser_declaration_seq_opt (parser);
4388 /* If there are no tokens left then all went well. */
4389 if (cp_lexer_next_token_is (parser->lexer, CPP_EOF))
4391 /* Get rid of the token array; we don't need it any more. */
4392 cp_lexer_destroy (parser->lexer);
4393 parser->lexer = NULL;
4395 /* This file might have been a context that's implicitly extern
4396 "C". If so, pop the lang context. (Only relevant for PCH.) */
4397 if (parser->implicit_extern_c)
4399 pop_lang_context ();
4400 parser->implicit_extern_c = false;
4403 /* Finish up. */
4404 finish_translation_unit ();
4406 success = true;
4408 else
4410 cp_parser_error (parser, "expected declaration");
4411 success = false;
4414 /* Make sure the declarator obstack was fully cleaned up. */
4415 gcc_assert (obstack_next_free (&declarator_obstack)
4416 == declarator_obstack_base);
4418 /* All went well. */
4419 return success;
4422 /* Return the appropriate tsubst flags for parsing, possibly in N3276
4423 decltype context. */
4425 static inline tsubst_flags_t
4426 complain_flags (bool decltype_p)
4428 tsubst_flags_t complain = tf_warning_or_error;
4429 if (decltype_p)
4430 complain |= tf_decltype;
4431 return complain;
4434 /* We're about to parse a collection of statements. If we're currently
4435 parsing tentatively, set up a firewall so that any nested
4436 cp_parser_commit_to_tentative_parse won't affect the current context. */
4438 static cp_token_position
4439 cp_parser_start_tentative_firewall (cp_parser *parser)
4441 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
4442 return 0;
4444 cp_parser_parse_tentatively (parser);
4445 cp_parser_commit_to_topmost_tentative_parse (parser);
4446 return cp_lexer_token_position (parser->lexer, false);
4449 /* We've finished parsing the collection of statements. Wrap up the
4450 firewall and replace the relevant tokens with the parsed form. */
4452 static void
4453 cp_parser_end_tentative_firewall (cp_parser *parser, cp_token_position start,
4454 tree expr)
4456 if (!start)
4457 return;
4459 /* Finish the firewall level. */
4460 cp_parser_parse_definitely (parser);
4461 /* And remember the result of the parse for when we try again. */
4462 cp_token *token = cp_lexer_token_at (parser->lexer, start);
4463 token->type = CPP_PREPARSED_EXPR;
4464 token->u.value = expr;
4465 token->keyword = RID_MAX;
4466 cp_lexer_purge_tokens_after (parser->lexer, start);
4469 /* Like the above functions, but let the user modify the tokens. Used by
4470 CPP_DECLTYPE and CPP_TEMPLATE_ID, where we are saving the side-effects for
4471 later parses, so it makes sense to localize the effects of
4472 cp_parser_commit_to_tentative_parse. */
4474 struct tentative_firewall
4476 cp_parser *parser;
4477 bool set;
4479 tentative_firewall (cp_parser *p): parser(p)
4481 /* If we're currently parsing tentatively, start a committed level as a
4482 firewall and then an inner tentative parse. */
4483 if ((set = cp_parser_uncommitted_to_tentative_parse_p (parser)))
4485 cp_parser_parse_tentatively (parser);
4486 cp_parser_commit_to_topmost_tentative_parse (parser);
4487 cp_parser_parse_tentatively (parser);
4491 ~tentative_firewall()
4493 if (set)
4495 /* Finish the inner tentative parse and the firewall, propagating any
4496 uncommitted error state to the outer tentative parse. */
4497 bool err = cp_parser_error_occurred (parser);
4498 cp_parser_parse_definitely (parser);
4499 cp_parser_parse_definitely (parser);
4500 if (err)
4501 cp_parser_simulate_error (parser);
4506 /* Parse a GNU statement-expression, i.e. ({ stmts }), except for the
4507 enclosing parentheses. */
4509 static cp_expr
4510 cp_parser_statement_expr (cp_parser *parser)
4512 cp_token_position start = cp_parser_start_tentative_firewall (parser);
4514 /* Consume the '('. */
4515 location_t start_loc = cp_lexer_peek_token (parser->lexer)->location;
4516 cp_lexer_consume_token (parser->lexer);
4517 /* Start the statement-expression. */
4518 tree expr = begin_stmt_expr ();
4519 /* Parse the compound-statement. */
4520 cp_parser_compound_statement (parser, expr, BCS_NORMAL, false);
4521 /* Finish up. */
4522 expr = finish_stmt_expr (expr, false);
4523 /* Consume the ')'. */
4524 location_t finish_loc = cp_lexer_peek_token (parser->lexer)->location;
4525 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
4526 cp_parser_skip_to_end_of_statement (parser);
4528 cp_parser_end_tentative_firewall (parser, start, expr);
4529 location_t combined_loc = make_location (start_loc, start_loc, finish_loc);
4530 return cp_expr (expr, combined_loc);
4533 /* Expressions [gram.expr] */
4535 /* Parse a fold-operator.
4537 fold-operator:
4538 - * / % ^ & | = < > << >>
4539 = -= *= /= %= ^= &= |= <<= >>=
4540 == != <= >= && || , .* ->*
4542 This returns the tree code corresponding to the matched operator
4543 as an int. When the current token matches a compound assignment
4544 opertor, the resulting tree code is the negative value of the
4545 non-assignment operator. */
4547 static int
4548 cp_parser_fold_operator (cp_token *token)
4550 switch (token->type)
4552 case CPP_PLUS: return PLUS_EXPR;
4553 case CPP_MINUS: return MINUS_EXPR;
4554 case CPP_MULT: return MULT_EXPR;
4555 case CPP_DIV: return TRUNC_DIV_EXPR;
4556 case CPP_MOD: return TRUNC_MOD_EXPR;
4557 case CPP_XOR: return BIT_XOR_EXPR;
4558 case CPP_AND: return BIT_AND_EXPR;
4559 case CPP_OR: return BIT_IOR_EXPR;
4560 case CPP_LSHIFT: return LSHIFT_EXPR;
4561 case CPP_RSHIFT: return RSHIFT_EXPR;
4563 case CPP_EQ: return -NOP_EXPR;
4564 case CPP_PLUS_EQ: return -PLUS_EXPR;
4565 case CPP_MINUS_EQ: return -MINUS_EXPR;
4566 case CPP_MULT_EQ: return -MULT_EXPR;
4567 case CPP_DIV_EQ: return -TRUNC_DIV_EXPR;
4568 case CPP_MOD_EQ: return -TRUNC_MOD_EXPR;
4569 case CPP_XOR_EQ: return -BIT_XOR_EXPR;
4570 case CPP_AND_EQ: return -BIT_AND_EXPR;
4571 case CPP_OR_EQ: return -BIT_IOR_EXPR;
4572 case CPP_LSHIFT_EQ: return -LSHIFT_EXPR;
4573 case CPP_RSHIFT_EQ: return -RSHIFT_EXPR;
4575 case CPP_EQ_EQ: return EQ_EXPR;
4576 case CPP_NOT_EQ: return NE_EXPR;
4577 case CPP_LESS: return LT_EXPR;
4578 case CPP_GREATER: return GT_EXPR;
4579 case CPP_LESS_EQ: return LE_EXPR;
4580 case CPP_GREATER_EQ: return GE_EXPR;
4582 case CPP_AND_AND: return TRUTH_ANDIF_EXPR;
4583 case CPP_OR_OR: return TRUTH_ORIF_EXPR;
4585 case CPP_COMMA: return COMPOUND_EXPR;
4587 case CPP_DOT_STAR: return DOTSTAR_EXPR;
4588 case CPP_DEREF_STAR: return MEMBER_REF;
4590 default: return ERROR_MARK;
4594 /* Returns true if CODE indicates a binary expression, which is not allowed in
4595 the LHS of a fold-expression. More codes will need to be added to use this
4596 function in other contexts. */
4598 static bool
4599 is_binary_op (tree_code code)
4601 switch (code)
4603 case PLUS_EXPR:
4604 case POINTER_PLUS_EXPR:
4605 case MINUS_EXPR:
4606 case MULT_EXPR:
4607 case TRUNC_DIV_EXPR:
4608 case TRUNC_MOD_EXPR:
4609 case BIT_XOR_EXPR:
4610 case BIT_AND_EXPR:
4611 case BIT_IOR_EXPR:
4612 case LSHIFT_EXPR:
4613 case RSHIFT_EXPR:
4615 case MODOP_EXPR:
4617 case EQ_EXPR:
4618 case NE_EXPR:
4619 case LE_EXPR:
4620 case GE_EXPR:
4621 case LT_EXPR:
4622 case GT_EXPR:
4624 case TRUTH_ANDIF_EXPR:
4625 case TRUTH_ORIF_EXPR:
4627 case COMPOUND_EXPR:
4629 case DOTSTAR_EXPR:
4630 case MEMBER_REF:
4631 return true;
4633 default:
4634 return false;
4638 /* If the next token is a suitable fold operator, consume it and return as
4639 the function above. */
4641 static int
4642 cp_parser_fold_operator (cp_parser *parser)
4644 cp_token* token = cp_lexer_peek_token (parser->lexer);
4645 int code = cp_parser_fold_operator (token);
4646 if (code != ERROR_MARK)
4647 cp_lexer_consume_token (parser->lexer);
4648 return code;
4651 /* Parse a fold-expression.
4653 fold-expression:
4654 ( ... folding-operator cast-expression)
4655 ( cast-expression folding-operator ... )
4656 ( cast-expression folding operator ... folding-operator cast-expression)
4658 Note that the '(' and ')' are matched in primary expression. */
4660 static cp_expr
4661 cp_parser_fold_expression (cp_parser *parser, tree expr1)
4663 cp_id_kind pidk;
4665 // Left fold.
4666 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
4668 cp_lexer_consume_token (parser->lexer);
4669 int op = cp_parser_fold_operator (parser);
4670 if (op == ERROR_MARK)
4672 cp_parser_error (parser, "expected binary operator");
4673 return error_mark_node;
4676 tree expr = cp_parser_cast_expression (parser, false, false,
4677 false, &pidk);
4678 if (expr == error_mark_node)
4679 return error_mark_node;
4680 return finish_left_unary_fold_expr (expr, op);
4683 const cp_token* token = cp_lexer_peek_token (parser->lexer);
4684 int op = cp_parser_fold_operator (parser);
4685 if (op == ERROR_MARK)
4687 cp_parser_error (parser, "expected binary operator");
4688 return error_mark_node;
4691 if (cp_lexer_next_token_is_not (parser->lexer, CPP_ELLIPSIS))
4693 cp_parser_error (parser, "expected ...");
4694 return error_mark_node;
4696 cp_lexer_consume_token (parser->lexer);
4698 /* The operands of a fold-expression are cast-expressions, so binary or
4699 conditional expressions are not allowed. We check this here to avoid
4700 tentative parsing. */
4701 if (EXPR_P (expr1) && TREE_NO_WARNING (expr1))
4702 /* OK, the expression was parenthesized. */;
4703 else if (is_binary_op (TREE_CODE (expr1)))
4704 error_at (location_of (expr1),
4705 "binary expression in operand of fold-expression");
4706 else if (TREE_CODE (expr1) == COND_EXPR)
4707 error_at (location_of (expr1),
4708 "conditional expression in operand of fold-expression");
4710 // Right fold.
4711 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN))
4712 return finish_right_unary_fold_expr (expr1, op);
4714 if (cp_lexer_next_token_is_not (parser->lexer, token->type))
4716 cp_parser_error (parser, "mismatched operator in fold-expression");
4717 return error_mark_node;
4719 cp_lexer_consume_token (parser->lexer);
4721 // Binary left or right fold.
4722 tree expr2 = cp_parser_cast_expression (parser, false, false, false, &pidk);
4723 if (expr2 == error_mark_node)
4724 return error_mark_node;
4725 return finish_binary_fold_expr (expr1, expr2, op);
4728 /* Parse a primary-expression.
4730 primary-expression:
4731 literal
4732 this
4733 ( expression )
4734 id-expression
4735 lambda-expression (C++11)
4737 GNU Extensions:
4739 primary-expression:
4740 ( compound-statement )
4741 __builtin_va_arg ( assignment-expression , type-id )
4742 __builtin_offsetof ( type-id , offsetof-expression )
4744 C++ Extensions:
4745 __has_nothrow_assign ( type-id )
4746 __has_nothrow_constructor ( type-id )
4747 __has_nothrow_copy ( type-id )
4748 __has_trivial_assign ( type-id )
4749 __has_trivial_constructor ( type-id )
4750 __has_trivial_copy ( type-id )
4751 __has_trivial_destructor ( type-id )
4752 __has_virtual_destructor ( type-id )
4753 __is_abstract ( type-id )
4754 __is_base_of ( type-id , type-id )
4755 __is_class ( type-id )
4756 __is_empty ( type-id )
4757 __is_enum ( type-id )
4758 __is_final ( type-id )
4759 __is_literal_type ( type-id )
4760 __is_pod ( type-id )
4761 __is_polymorphic ( type-id )
4762 __is_std_layout ( type-id )
4763 __is_trivial ( type-id )
4764 __is_union ( type-id )
4766 Objective-C++ Extension:
4768 primary-expression:
4769 objc-expression
4771 literal:
4772 __null
4774 ADDRESS_P is true iff this expression was immediately preceded by
4775 "&" and therefore might denote a pointer-to-member. CAST_P is true
4776 iff this expression is the target of a cast. TEMPLATE_ARG_P is
4777 true iff this expression is a template argument.
4779 Returns a representation of the expression. Upon return, *IDK
4780 indicates what kind of id-expression (if any) was present. */
4782 static cp_expr
4783 cp_parser_primary_expression (cp_parser *parser,
4784 bool address_p,
4785 bool cast_p,
4786 bool template_arg_p,
4787 bool decltype_p,
4788 cp_id_kind *idk)
4790 cp_token *token = NULL;
4792 /* Assume the primary expression is not an id-expression. */
4793 *idk = CP_ID_KIND_NONE;
4795 /* Peek at the next token. */
4796 token = cp_lexer_peek_token (parser->lexer);
4797 switch ((int) token->type)
4799 /* literal:
4800 integer-literal
4801 character-literal
4802 floating-literal
4803 string-literal
4804 boolean-literal
4805 pointer-literal
4806 user-defined-literal */
4807 case CPP_CHAR:
4808 case CPP_CHAR16:
4809 case CPP_CHAR32:
4810 case CPP_WCHAR:
4811 case CPP_UTF8CHAR:
4812 case CPP_NUMBER:
4813 case CPP_PREPARSED_EXPR:
4814 if (TREE_CODE (token->u.value) == USERDEF_LITERAL)
4815 return cp_parser_userdef_numeric_literal (parser);
4816 token = cp_lexer_consume_token (parser->lexer);
4817 if (TREE_CODE (token->u.value) == FIXED_CST)
4819 error_at (token->location,
4820 "fixed-point types not supported in C++");
4821 return error_mark_node;
4823 /* Floating-point literals are only allowed in an integral
4824 constant expression if they are cast to an integral or
4825 enumeration type. */
4826 if (TREE_CODE (token->u.value) == REAL_CST
4827 && parser->integral_constant_expression_p
4828 && pedantic)
4830 /* CAST_P will be set even in invalid code like "int(2.7 +
4831 ...)". Therefore, we have to check that the next token
4832 is sure to end the cast. */
4833 if (cast_p)
4835 cp_token *next_token;
4837 next_token = cp_lexer_peek_token (parser->lexer);
4838 if (/* The comma at the end of an
4839 enumerator-definition. */
4840 next_token->type != CPP_COMMA
4841 /* The curly brace at the end of an enum-specifier. */
4842 && next_token->type != CPP_CLOSE_BRACE
4843 /* The end of a statement. */
4844 && next_token->type != CPP_SEMICOLON
4845 /* The end of the cast-expression. */
4846 && next_token->type != CPP_CLOSE_PAREN
4847 /* The end of an array bound. */
4848 && next_token->type != CPP_CLOSE_SQUARE
4849 /* The closing ">" in a template-argument-list. */
4850 && (next_token->type != CPP_GREATER
4851 || parser->greater_than_is_operator_p)
4852 /* C++0x only: A ">>" treated like two ">" tokens,
4853 in a template-argument-list. */
4854 && (next_token->type != CPP_RSHIFT
4855 || (cxx_dialect == cxx98)
4856 || parser->greater_than_is_operator_p))
4857 cast_p = false;
4860 /* If we are within a cast, then the constraint that the
4861 cast is to an integral or enumeration type will be
4862 checked at that point. If we are not within a cast, then
4863 this code is invalid. */
4864 if (!cast_p)
4865 cp_parser_non_integral_constant_expression (parser, NIC_FLOAT);
4867 return cp_expr (token->u.value, token->location);
4869 case CPP_CHAR_USERDEF:
4870 case CPP_CHAR16_USERDEF:
4871 case CPP_CHAR32_USERDEF:
4872 case CPP_WCHAR_USERDEF:
4873 case CPP_UTF8CHAR_USERDEF:
4874 return cp_parser_userdef_char_literal (parser);
4876 case CPP_STRING:
4877 case CPP_STRING16:
4878 case CPP_STRING32:
4879 case CPP_WSTRING:
4880 case CPP_UTF8STRING:
4881 case CPP_STRING_USERDEF:
4882 case CPP_STRING16_USERDEF:
4883 case CPP_STRING32_USERDEF:
4884 case CPP_WSTRING_USERDEF:
4885 case CPP_UTF8STRING_USERDEF:
4886 /* ??? Should wide strings be allowed when parser->translate_strings_p
4887 is false (i.e. in attributes)? If not, we can kill the third
4888 argument to cp_parser_string_literal. */
4889 return cp_parser_string_literal (parser,
4890 parser->translate_strings_p,
4891 true);
4893 case CPP_OPEN_PAREN:
4894 /* If we see `( { ' then we are looking at the beginning of
4895 a GNU statement-expression. */
4896 if (cp_parser_allow_gnu_extensions_p (parser)
4897 && cp_lexer_nth_token_is (parser->lexer, 2, CPP_OPEN_BRACE))
4899 /* Statement-expressions are not allowed by the standard. */
4900 pedwarn (token->location, OPT_Wpedantic,
4901 "ISO C++ forbids braced-groups within expressions");
4903 /* And they're not allowed outside of a function-body; you
4904 cannot, for example, write:
4906 int i = ({ int j = 3; j + 1; });
4908 at class or namespace scope. */
4909 if (!parser->in_function_body
4910 || parser->in_template_argument_list_p)
4912 error_at (token->location,
4913 "statement-expressions are not allowed outside "
4914 "functions nor in template-argument lists");
4915 cp_parser_skip_to_end_of_block_or_statement (parser);
4916 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN))
4917 cp_lexer_consume_token (parser->lexer);
4918 return error_mark_node;
4920 else
4921 return cp_parser_statement_expr (parser);
4923 /* Otherwise it's a normal parenthesized expression. */
4925 cp_expr expr;
4926 bool saved_greater_than_is_operator_p;
4928 location_t open_paren_loc = token->location;
4930 /* Consume the `('. */
4931 cp_lexer_consume_token (parser->lexer);
4932 /* Within a parenthesized expression, a `>' token is always
4933 the greater-than operator. */
4934 saved_greater_than_is_operator_p
4935 = parser->greater_than_is_operator_p;
4936 parser->greater_than_is_operator_p = true;
4938 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
4939 /* Left fold expression. */
4940 expr = NULL_TREE;
4941 else
4942 /* Parse the parenthesized expression. */
4943 expr = cp_parser_expression (parser, idk, cast_p, decltype_p);
4945 token = cp_lexer_peek_token (parser->lexer);
4946 if (token->type == CPP_ELLIPSIS || cp_parser_fold_operator (token))
4948 expr = cp_parser_fold_expression (parser, expr);
4949 if (expr != error_mark_node
4950 && cxx_dialect < cxx1z
4951 && !in_system_header_at (input_location))
4952 pedwarn (input_location, 0, "fold-expressions only available "
4953 "with -std=c++1z or -std=gnu++1z");
4955 else
4956 /* Let the front end know that this expression was
4957 enclosed in parentheses. This matters in case, for
4958 example, the expression is of the form `A::B', since
4959 `&A::B' might be a pointer-to-member, but `&(A::B)' is
4960 not. */
4961 expr = finish_parenthesized_expr (expr);
4963 /* DR 705: Wrapping an unqualified name in parentheses
4964 suppresses arg-dependent lookup. We want to pass back
4965 CP_ID_KIND_QUALIFIED for suppressing vtable lookup
4966 (c++/37862), but none of the others. */
4967 if (*idk != CP_ID_KIND_QUALIFIED)
4968 *idk = CP_ID_KIND_NONE;
4970 /* The `>' token might be the end of a template-id or
4971 template-parameter-list now. */
4972 parser->greater_than_is_operator_p
4973 = saved_greater_than_is_operator_p;
4975 /* Consume the `)'. */
4976 token = cp_lexer_peek_token (parser->lexer);
4977 location_t close_paren_loc = token->location;
4978 expr.set_range (open_paren_loc, close_paren_loc);
4979 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN)
4980 && !cp_parser_uncommitted_to_tentative_parse_p (parser))
4981 cp_parser_skip_to_end_of_statement (parser);
4983 return expr;
4986 case CPP_OPEN_SQUARE:
4988 if (c_dialect_objc ())
4990 /* We might have an Objective-C++ message. */
4991 cp_parser_parse_tentatively (parser);
4992 tree msg = cp_parser_objc_message_expression (parser);
4993 /* If that works out, we're done ... */
4994 if (cp_parser_parse_definitely (parser))
4995 return msg;
4996 /* ... else, fall though to see if it's a lambda. */
4998 cp_expr lam = cp_parser_lambda_expression (parser);
4999 /* Don't warn about a failed tentative parse. */
5000 if (cp_parser_error_occurred (parser))
5001 return error_mark_node;
5002 maybe_warn_cpp0x (CPP0X_LAMBDA_EXPR);
5003 return lam;
5006 case CPP_OBJC_STRING:
5007 if (c_dialect_objc ())
5008 /* We have an Objective-C++ string literal. */
5009 return cp_parser_objc_expression (parser);
5010 cp_parser_error (parser, "expected primary-expression");
5011 return error_mark_node;
5013 case CPP_KEYWORD:
5014 switch (token->keyword)
5016 /* These two are the boolean literals. */
5017 case RID_TRUE:
5018 cp_lexer_consume_token (parser->lexer);
5019 return cp_expr (boolean_true_node, token->location);
5020 case RID_FALSE:
5021 cp_lexer_consume_token (parser->lexer);
5022 return cp_expr (boolean_false_node, token->location);
5024 /* The `__null' literal. */
5025 case RID_NULL:
5026 cp_lexer_consume_token (parser->lexer);
5027 return cp_expr (null_node, token->location);
5029 /* The `nullptr' literal. */
5030 case RID_NULLPTR:
5031 cp_lexer_consume_token (parser->lexer);
5032 return cp_expr (nullptr_node, token->location);
5034 /* Recognize the `this' keyword. */
5035 case RID_THIS:
5036 cp_lexer_consume_token (parser->lexer);
5037 if (parser->local_variables_forbidden_p)
5039 error_at (token->location,
5040 "%<this%> may not be used in this context");
5041 return error_mark_node;
5043 /* Pointers cannot appear in constant-expressions. */
5044 if (cp_parser_non_integral_constant_expression (parser, NIC_THIS))
5045 return error_mark_node;
5046 return cp_expr (finish_this_expr (), token->location);
5048 /* The `operator' keyword can be the beginning of an
5049 id-expression. */
5050 case RID_OPERATOR:
5051 goto id_expression;
5053 case RID_FUNCTION_NAME:
5054 case RID_PRETTY_FUNCTION_NAME:
5055 case RID_C99_FUNCTION_NAME:
5057 non_integral_constant name;
5059 /* The symbols __FUNCTION__, __PRETTY_FUNCTION__, and
5060 __func__ are the names of variables -- but they are
5061 treated specially. Therefore, they are handled here,
5062 rather than relying on the generic id-expression logic
5063 below. Grammatically, these names are id-expressions.
5065 Consume the token. */
5066 token = cp_lexer_consume_token (parser->lexer);
5068 switch (token->keyword)
5070 case RID_FUNCTION_NAME:
5071 name = NIC_FUNC_NAME;
5072 break;
5073 case RID_PRETTY_FUNCTION_NAME:
5074 name = NIC_PRETTY_FUNC;
5075 break;
5076 case RID_C99_FUNCTION_NAME:
5077 name = NIC_C99_FUNC;
5078 break;
5079 default:
5080 gcc_unreachable ();
5083 if (cp_parser_non_integral_constant_expression (parser, name))
5084 return error_mark_node;
5086 /* Look up the name. */
5087 return finish_fname (token->u.value);
5090 case RID_VA_ARG:
5092 tree expression;
5093 tree type;
5094 source_location type_location;
5095 location_t start_loc
5096 = cp_lexer_peek_token (parser->lexer)->location;
5097 /* The `__builtin_va_arg' construct is used to handle
5098 `va_arg'. Consume the `__builtin_va_arg' token. */
5099 cp_lexer_consume_token (parser->lexer);
5100 /* Look for the opening `('. */
5101 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
5102 /* Now, parse the assignment-expression. */
5103 expression = cp_parser_assignment_expression (parser);
5104 /* Look for the `,'. */
5105 cp_parser_require (parser, CPP_COMMA, RT_COMMA);
5106 type_location = cp_lexer_peek_token (parser->lexer)->location;
5107 /* Parse the type-id. */
5109 type_id_in_expr_sentinel s (parser);
5110 type = cp_parser_type_id (parser);
5112 /* Look for the closing `)'. */
5113 location_t finish_loc
5114 = cp_lexer_peek_token (parser->lexer)->location;
5115 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
5116 /* Using `va_arg' in a constant-expression is not
5117 allowed. */
5118 if (cp_parser_non_integral_constant_expression (parser,
5119 NIC_VA_ARG))
5120 return error_mark_node;
5121 /* Construct a location of the form:
5122 __builtin_va_arg (v, int)
5123 ~~~~~~~~~~~~~~~~~~~~~^~~~
5124 with the caret at the type, ranging from the start of the
5125 "__builtin_va_arg" token to the close paren. */
5126 location_t combined_loc
5127 = make_location (type_location, start_loc, finish_loc);
5128 return build_x_va_arg (combined_loc, expression, type);
5131 case RID_OFFSETOF:
5132 return cp_parser_builtin_offsetof (parser);
5134 case RID_HAS_NOTHROW_ASSIGN:
5135 case RID_HAS_NOTHROW_CONSTRUCTOR:
5136 case RID_HAS_NOTHROW_COPY:
5137 case RID_HAS_TRIVIAL_ASSIGN:
5138 case RID_HAS_TRIVIAL_CONSTRUCTOR:
5139 case RID_HAS_TRIVIAL_COPY:
5140 case RID_HAS_TRIVIAL_DESTRUCTOR:
5141 case RID_HAS_UNIQUE_OBJ_REPRESENTATIONS:
5142 case RID_HAS_VIRTUAL_DESTRUCTOR:
5143 case RID_IS_ABSTRACT:
5144 case RID_IS_AGGREGATE:
5145 case RID_IS_BASE_OF:
5146 case RID_IS_CLASS:
5147 case RID_IS_EMPTY:
5148 case RID_IS_ENUM:
5149 case RID_IS_FINAL:
5150 case RID_IS_LITERAL_TYPE:
5151 case RID_IS_POD:
5152 case RID_IS_POLYMORPHIC:
5153 case RID_IS_SAME_AS:
5154 case RID_IS_STD_LAYOUT:
5155 case RID_IS_TRIVIAL:
5156 case RID_IS_TRIVIALLY_ASSIGNABLE:
5157 case RID_IS_TRIVIALLY_CONSTRUCTIBLE:
5158 case RID_IS_TRIVIALLY_COPYABLE:
5159 case RID_IS_UNION:
5160 case RID_IS_ASSIGNABLE:
5161 case RID_IS_CONSTRUCTIBLE:
5162 return cp_parser_trait_expr (parser, token->keyword);
5164 // C++ concepts
5165 case RID_REQUIRES:
5166 return cp_parser_requires_expression (parser);
5168 /* Objective-C++ expressions. */
5169 case RID_AT_ENCODE:
5170 case RID_AT_PROTOCOL:
5171 case RID_AT_SELECTOR:
5172 return cp_parser_objc_expression (parser);
5174 case RID_TEMPLATE:
5175 if (parser->in_function_body
5176 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
5177 == CPP_LESS))
5179 error_at (token->location,
5180 "a template declaration cannot appear at block scope");
5181 cp_parser_skip_to_end_of_block_or_statement (parser);
5182 return error_mark_node;
5184 /* FALLTHRU */
5185 default:
5186 cp_parser_error (parser, "expected primary-expression");
5187 return error_mark_node;
5190 /* An id-expression can start with either an identifier, a
5191 `::' as the beginning of a qualified-id, or the "operator"
5192 keyword. */
5193 case CPP_NAME:
5194 case CPP_SCOPE:
5195 case CPP_TEMPLATE_ID:
5196 case CPP_NESTED_NAME_SPECIFIER:
5198 id_expression:
5199 cp_expr id_expression;
5200 cp_expr decl;
5201 const char *error_msg;
5202 bool template_p;
5203 bool done;
5204 cp_token *id_expr_token;
5206 /* Parse the id-expression. */
5207 id_expression
5208 = cp_parser_id_expression (parser,
5209 /*template_keyword_p=*/false,
5210 /*check_dependency_p=*/true,
5211 &template_p,
5212 /*declarator_p=*/false,
5213 /*optional_p=*/false);
5214 if (id_expression == error_mark_node)
5215 return error_mark_node;
5216 id_expr_token = token;
5217 token = cp_lexer_peek_token (parser->lexer);
5218 done = (token->type != CPP_OPEN_SQUARE
5219 && token->type != CPP_OPEN_PAREN
5220 && token->type != CPP_DOT
5221 && token->type != CPP_DEREF
5222 && token->type != CPP_PLUS_PLUS
5223 && token->type != CPP_MINUS_MINUS);
5224 /* If we have a template-id, then no further lookup is
5225 required. If the template-id was for a template-class, we
5226 will sometimes have a TYPE_DECL at this point. */
5227 if (TREE_CODE (id_expression) == TEMPLATE_ID_EXPR
5228 || TREE_CODE (id_expression) == TYPE_DECL)
5229 decl = id_expression;
5230 /* Look up the name. */
5231 else
5233 tree ambiguous_decls;
5235 /* If we already know that this lookup is ambiguous, then
5236 we've already issued an error message; there's no reason
5237 to check again. */
5238 if (id_expr_token->type == CPP_NAME
5239 && id_expr_token->error_reported)
5241 cp_parser_simulate_error (parser);
5242 return error_mark_node;
5245 decl = cp_parser_lookup_name (parser, id_expression,
5246 none_type,
5247 template_p,
5248 /*is_namespace=*/false,
5249 /*check_dependency=*/true,
5250 &ambiguous_decls,
5251 id_expr_token->location);
5252 /* If the lookup was ambiguous, an error will already have
5253 been issued. */
5254 if (ambiguous_decls)
5255 return error_mark_node;
5257 /* In Objective-C++, we may have an Objective-C 2.0
5258 dot-syntax for classes here. */
5259 if (c_dialect_objc ()
5260 && cp_lexer_peek_token (parser->lexer)->type == CPP_DOT
5261 && TREE_CODE (decl) == TYPE_DECL
5262 && objc_is_class_name (decl))
5264 tree component;
5265 cp_lexer_consume_token (parser->lexer);
5266 component = cp_parser_identifier (parser);
5267 if (component == error_mark_node)
5268 return error_mark_node;
5270 tree result = objc_build_class_component_ref (id_expression,
5271 component);
5272 /* Build a location of the form:
5273 expr.component
5274 ~~~~~^~~~~~~~~
5275 with caret at the start of the component name (at
5276 input_location), ranging from the start of the id_expression
5277 to the end of the component name. */
5278 location_t combined_loc
5279 = make_location (input_location, id_expression.get_start (),
5280 get_finish (input_location));
5281 protected_set_expr_location (result, combined_loc);
5282 return result;
5285 /* In Objective-C++, an instance variable (ivar) may be preferred
5286 to whatever cp_parser_lookup_name() found.
5287 Call objc_lookup_ivar. To avoid exposing cp_expr to the
5288 rest of c-family, we have to do a little extra work to preserve
5289 any location information in cp_expr "decl". Given that
5290 objc_lookup_ivar is implemented in "c-family" and "objc", we
5291 have a trip through the pure "tree" type, rather than cp_expr.
5292 Naively copying it back to "decl" would implicitly give the
5293 new cp_expr value an UNKNOWN_LOCATION for nodes that don't
5294 store an EXPR_LOCATION. Hence we only update "decl" (and
5295 hence its location_t) if we get back a different tree node. */
5296 tree decl_tree = objc_lookup_ivar (decl.get_value (),
5297 id_expression);
5298 if (decl_tree != decl.get_value ())
5299 decl = cp_expr (decl_tree);
5301 /* If name lookup gives us a SCOPE_REF, then the
5302 qualifying scope was dependent. */
5303 if (TREE_CODE (decl) == SCOPE_REF)
5305 /* At this point, we do not know if DECL is a valid
5306 integral constant expression. We assume that it is
5307 in fact such an expression, so that code like:
5309 template <int N> struct A {
5310 int a[B<N>::i];
5313 is accepted. At template-instantiation time, we
5314 will check that B<N>::i is actually a constant. */
5315 return decl;
5317 /* Check to see if DECL is a local variable in a context
5318 where that is forbidden. */
5319 if (parser->local_variables_forbidden_p
5320 && local_variable_p (decl))
5322 /* It might be that we only found DECL because we are
5323 trying to be generous with pre-ISO scoping rules.
5324 For example, consider:
5326 int i;
5327 void g() {
5328 for (int i = 0; i < 10; ++i) {}
5329 extern void f(int j = i);
5332 Here, name look up will originally find the out
5333 of scope `i'. We need to issue a warning message,
5334 but then use the global `i'. */
5335 decl = check_for_out_of_scope_variable (decl);
5336 if (local_variable_p (decl))
5338 error_at (id_expr_token->location,
5339 "local variable %qD may not appear in this context",
5340 decl.get_value ());
5341 return error_mark_node;
5346 decl = (finish_id_expression
5347 (id_expression, decl, parser->scope,
5348 idk,
5349 parser->integral_constant_expression_p,
5350 parser->allow_non_integral_constant_expression_p,
5351 &parser->non_integral_constant_expression_p,
5352 template_p, done, address_p,
5353 template_arg_p,
5354 &error_msg,
5355 id_expression.get_location ()));
5356 if (error_msg)
5357 cp_parser_error (parser, error_msg);
5358 decl.set_location (id_expr_token->location);
5359 return decl;
5362 /* Anything else is an error. */
5363 default:
5364 cp_parser_error (parser, "expected primary-expression");
5365 return error_mark_node;
5369 static inline cp_expr
5370 cp_parser_primary_expression (cp_parser *parser,
5371 bool address_p,
5372 bool cast_p,
5373 bool template_arg_p,
5374 cp_id_kind *idk)
5376 return cp_parser_primary_expression (parser, address_p, cast_p, template_arg_p,
5377 /*decltype*/false, idk);
5380 /* Parse an id-expression.
5382 id-expression:
5383 unqualified-id
5384 qualified-id
5386 qualified-id:
5387 :: [opt] nested-name-specifier template [opt] unqualified-id
5388 :: identifier
5389 :: operator-function-id
5390 :: template-id
5392 Return a representation of the unqualified portion of the
5393 identifier. Sets PARSER->SCOPE to the qualifying scope if there is
5394 a `::' or nested-name-specifier.
5396 Often, if the id-expression was a qualified-id, the caller will
5397 want to make a SCOPE_REF to represent the qualified-id. This
5398 function does not do this in order to avoid wastefully creating
5399 SCOPE_REFs when they are not required.
5401 If TEMPLATE_KEYWORD_P is true, then we have just seen the
5402 `template' keyword.
5404 If CHECK_DEPENDENCY_P is false, then names are looked up inside
5405 uninstantiated templates.
5407 If *TEMPLATE_P is non-NULL, it is set to true iff the
5408 `template' keyword is used to explicitly indicate that the entity
5409 named is a template.
5411 If DECLARATOR_P is true, the id-expression is appearing as part of
5412 a declarator, rather than as part of an expression. */
5414 static cp_expr
5415 cp_parser_id_expression (cp_parser *parser,
5416 bool template_keyword_p,
5417 bool check_dependency_p,
5418 bool *template_p,
5419 bool declarator_p,
5420 bool optional_p)
5422 bool global_scope_p;
5423 bool nested_name_specifier_p;
5425 /* Assume the `template' keyword was not used. */
5426 if (template_p)
5427 *template_p = template_keyword_p;
5429 /* Look for the optional `::' operator. */
5430 global_scope_p
5431 = (!template_keyword_p
5432 && (cp_parser_global_scope_opt (parser,
5433 /*current_scope_valid_p=*/false)
5434 != NULL_TREE));
5436 /* Look for the optional nested-name-specifier. */
5437 nested_name_specifier_p
5438 = (cp_parser_nested_name_specifier_opt (parser,
5439 /*typename_keyword_p=*/false,
5440 check_dependency_p,
5441 /*type_p=*/false,
5442 declarator_p,
5443 template_keyword_p)
5444 != NULL_TREE);
5446 /* If there is a nested-name-specifier, then we are looking at
5447 the first qualified-id production. */
5448 if (nested_name_specifier_p)
5450 tree saved_scope;
5451 tree saved_object_scope;
5452 tree saved_qualifying_scope;
5453 cp_expr unqualified_id;
5454 bool is_template;
5456 /* See if the next token is the `template' keyword. */
5457 if (!template_p)
5458 template_p = &is_template;
5459 *template_p = cp_parser_optional_template_keyword (parser);
5460 /* Name lookup we do during the processing of the
5461 unqualified-id might obliterate SCOPE. */
5462 saved_scope = parser->scope;
5463 saved_object_scope = parser->object_scope;
5464 saved_qualifying_scope = parser->qualifying_scope;
5465 /* Process the final unqualified-id. */
5466 unqualified_id = cp_parser_unqualified_id (parser, *template_p,
5467 check_dependency_p,
5468 declarator_p,
5469 /*optional_p=*/false);
5470 /* Restore the SAVED_SCOPE for our caller. */
5471 parser->scope = saved_scope;
5472 parser->object_scope = saved_object_scope;
5473 parser->qualifying_scope = saved_qualifying_scope;
5475 return unqualified_id;
5477 /* Otherwise, if we are in global scope, then we are looking at one
5478 of the other qualified-id productions. */
5479 else if (global_scope_p)
5481 cp_token *token;
5482 tree id;
5484 /* Peek at the next token. */
5485 token = cp_lexer_peek_token (parser->lexer);
5487 /* If it's an identifier, and the next token is not a "<", then
5488 we can avoid the template-id case. This is an optimization
5489 for this common case. */
5490 if (token->type == CPP_NAME
5491 && !cp_parser_nth_token_starts_template_argument_list_p
5492 (parser, 2))
5493 return cp_parser_identifier (parser);
5495 cp_parser_parse_tentatively (parser);
5496 /* Try a template-id. */
5497 id = cp_parser_template_id (parser,
5498 /*template_keyword_p=*/false,
5499 /*check_dependency_p=*/true,
5500 none_type,
5501 declarator_p);
5502 /* If that worked, we're done. */
5503 if (cp_parser_parse_definitely (parser))
5504 return id;
5506 /* Peek at the next token. (Changes in the token buffer may
5507 have invalidated the pointer obtained above.) */
5508 token = cp_lexer_peek_token (parser->lexer);
5510 switch (token->type)
5512 case CPP_NAME:
5513 return cp_parser_identifier (parser);
5515 case CPP_KEYWORD:
5516 if (token->keyword == RID_OPERATOR)
5517 return cp_parser_operator_function_id (parser);
5518 /* Fall through. */
5520 default:
5521 cp_parser_error (parser, "expected id-expression");
5522 return error_mark_node;
5525 else
5526 return cp_parser_unqualified_id (parser, template_keyword_p,
5527 /*check_dependency_p=*/true,
5528 declarator_p,
5529 optional_p);
5532 /* Parse an unqualified-id.
5534 unqualified-id:
5535 identifier
5536 operator-function-id
5537 conversion-function-id
5538 ~ class-name
5539 template-id
5541 If TEMPLATE_KEYWORD_P is TRUE, we have just seen the `template'
5542 keyword, in a construct like `A::template ...'.
5544 Returns a representation of unqualified-id. For the `identifier'
5545 production, an IDENTIFIER_NODE is returned. For the `~ class-name'
5546 production a BIT_NOT_EXPR is returned; the operand of the
5547 BIT_NOT_EXPR is an IDENTIFIER_NODE for the class-name. For the
5548 other productions, see the documentation accompanying the
5549 corresponding parsing functions. If CHECK_DEPENDENCY_P is false,
5550 names are looked up in uninstantiated templates. If DECLARATOR_P
5551 is true, the unqualified-id is appearing as part of a declarator,
5552 rather than as part of an expression. */
5554 static cp_expr
5555 cp_parser_unqualified_id (cp_parser* parser,
5556 bool template_keyword_p,
5557 bool check_dependency_p,
5558 bool declarator_p,
5559 bool optional_p)
5561 cp_token *token;
5563 /* Peek at the next token. */
5564 token = cp_lexer_peek_token (parser->lexer);
5566 switch ((int) token->type)
5568 case CPP_NAME:
5570 tree id;
5572 /* We don't know yet whether or not this will be a
5573 template-id. */
5574 cp_parser_parse_tentatively (parser);
5575 /* Try a template-id. */
5576 id = cp_parser_template_id (parser, template_keyword_p,
5577 check_dependency_p,
5578 none_type,
5579 declarator_p);
5580 /* If it worked, we're done. */
5581 if (cp_parser_parse_definitely (parser))
5582 return id;
5583 /* Otherwise, it's an ordinary identifier. */
5584 return cp_parser_identifier (parser);
5587 case CPP_TEMPLATE_ID:
5588 return cp_parser_template_id (parser, template_keyword_p,
5589 check_dependency_p,
5590 none_type,
5591 declarator_p);
5593 case CPP_COMPL:
5595 tree type_decl;
5596 tree qualifying_scope;
5597 tree object_scope;
5598 tree scope;
5599 bool done;
5601 /* Consume the `~' token. */
5602 cp_lexer_consume_token (parser->lexer);
5603 /* Parse the class-name. The standard, as written, seems to
5604 say that:
5606 template <typename T> struct S { ~S (); };
5607 template <typename T> S<T>::~S() {}
5609 is invalid, since `~' must be followed by a class-name, but
5610 `S<T>' is dependent, and so not known to be a class.
5611 That's not right; we need to look in uninstantiated
5612 templates. A further complication arises from:
5614 template <typename T> void f(T t) {
5615 t.T::~T();
5618 Here, it is not possible to look up `T' in the scope of `T'
5619 itself. We must look in both the current scope, and the
5620 scope of the containing complete expression.
5622 Yet another issue is:
5624 struct S {
5625 int S;
5626 ~S();
5629 S::~S() {}
5631 The standard does not seem to say that the `S' in `~S'
5632 should refer to the type `S' and not the data member
5633 `S::S'. */
5635 /* DR 244 says that we look up the name after the "~" in the
5636 same scope as we looked up the qualifying name. That idea
5637 isn't fully worked out; it's more complicated than that. */
5638 scope = parser->scope;
5639 object_scope = parser->object_scope;
5640 qualifying_scope = parser->qualifying_scope;
5642 /* Check for invalid scopes. */
5643 if (scope == error_mark_node)
5645 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
5646 cp_lexer_consume_token (parser->lexer);
5647 return error_mark_node;
5649 if (scope && TREE_CODE (scope) == NAMESPACE_DECL)
5651 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
5652 error_at (token->location,
5653 "scope %qT before %<~%> is not a class-name",
5654 scope);
5655 cp_parser_simulate_error (parser);
5656 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
5657 cp_lexer_consume_token (parser->lexer);
5658 return error_mark_node;
5660 gcc_assert (!scope || TYPE_P (scope));
5662 /* If the name is of the form "X::~X" it's OK even if X is a
5663 typedef. */
5664 token = cp_lexer_peek_token (parser->lexer);
5665 if (scope
5666 && token->type == CPP_NAME
5667 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
5668 != CPP_LESS)
5669 && (token->u.value == TYPE_IDENTIFIER (scope)
5670 || (CLASS_TYPE_P (scope)
5671 && constructor_name_p (token->u.value, scope))))
5673 cp_lexer_consume_token (parser->lexer);
5674 return build_nt (BIT_NOT_EXPR, scope);
5677 /* ~auto means the destructor of whatever the object is. */
5678 if (cp_parser_is_keyword (token, RID_AUTO))
5680 if (cxx_dialect < cxx14)
5681 pedwarn (input_location, 0,
5682 "%<~auto%> only available with "
5683 "-std=c++14 or -std=gnu++14");
5684 cp_lexer_consume_token (parser->lexer);
5685 return build_nt (BIT_NOT_EXPR, make_auto ());
5688 /* If there was an explicit qualification (S::~T), first look
5689 in the scope given by the qualification (i.e., S).
5691 Note: in the calls to cp_parser_class_name below we pass
5692 typename_type so that lookup finds the injected-class-name
5693 rather than the constructor. */
5694 done = false;
5695 type_decl = NULL_TREE;
5696 if (scope)
5698 cp_parser_parse_tentatively (parser);
5699 type_decl = cp_parser_class_name (parser,
5700 /*typename_keyword_p=*/false,
5701 /*template_keyword_p=*/false,
5702 typename_type,
5703 /*check_dependency=*/false,
5704 /*class_head_p=*/false,
5705 declarator_p);
5706 if (cp_parser_parse_definitely (parser))
5707 done = true;
5709 /* In "N::S::~S", look in "N" as well. */
5710 if (!done && scope && qualifying_scope)
5712 cp_parser_parse_tentatively (parser);
5713 parser->scope = qualifying_scope;
5714 parser->object_scope = NULL_TREE;
5715 parser->qualifying_scope = NULL_TREE;
5716 type_decl
5717 = cp_parser_class_name (parser,
5718 /*typename_keyword_p=*/false,
5719 /*template_keyword_p=*/false,
5720 typename_type,
5721 /*check_dependency=*/false,
5722 /*class_head_p=*/false,
5723 declarator_p);
5724 if (cp_parser_parse_definitely (parser))
5725 done = true;
5727 /* In "p->S::~T", look in the scope given by "*p" as well. */
5728 else if (!done && object_scope)
5730 cp_parser_parse_tentatively (parser);
5731 parser->scope = object_scope;
5732 parser->object_scope = NULL_TREE;
5733 parser->qualifying_scope = NULL_TREE;
5734 type_decl
5735 = cp_parser_class_name (parser,
5736 /*typename_keyword_p=*/false,
5737 /*template_keyword_p=*/false,
5738 typename_type,
5739 /*check_dependency=*/false,
5740 /*class_head_p=*/false,
5741 declarator_p);
5742 if (cp_parser_parse_definitely (parser))
5743 done = true;
5745 /* Look in the surrounding context. */
5746 if (!done)
5748 parser->scope = NULL_TREE;
5749 parser->object_scope = NULL_TREE;
5750 parser->qualifying_scope = NULL_TREE;
5751 if (processing_template_decl)
5752 cp_parser_parse_tentatively (parser);
5753 type_decl
5754 = cp_parser_class_name (parser,
5755 /*typename_keyword_p=*/false,
5756 /*template_keyword_p=*/false,
5757 typename_type,
5758 /*check_dependency=*/false,
5759 /*class_head_p=*/false,
5760 declarator_p);
5761 if (processing_template_decl
5762 && ! cp_parser_parse_definitely (parser))
5764 /* We couldn't find a type with this name. If we're parsing
5765 tentatively, fail and try something else. */
5766 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
5768 cp_parser_simulate_error (parser);
5769 return error_mark_node;
5771 /* Otherwise, accept it and check for a match at instantiation
5772 time. */
5773 type_decl = cp_parser_identifier (parser);
5774 if (type_decl != error_mark_node)
5775 type_decl = build_nt (BIT_NOT_EXPR, type_decl);
5776 return type_decl;
5779 /* If an error occurred, assume that the name of the
5780 destructor is the same as the name of the qualifying
5781 class. That allows us to keep parsing after running
5782 into ill-formed destructor names. */
5783 if (type_decl == error_mark_node && scope)
5784 return build_nt (BIT_NOT_EXPR, scope);
5785 else if (type_decl == error_mark_node)
5786 return error_mark_node;
5788 /* Check that destructor name and scope match. */
5789 if (declarator_p && scope && !check_dtor_name (scope, type_decl))
5791 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
5792 error_at (token->location,
5793 "declaration of %<~%T%> as member of %qT",
5794 type_decl, scope);
5795 cp_parser_simulate_error (parser);
5796 return error_mark_node;
5799 /* [class.dtor]
5801 A typedef-name that names a class shall not be used as the
5802 identifier in the declarator for a destructor declaration. */
5803 if (declarator_p
5804 && !DECL_IMPLICIT_TYPEDEF_P (type_decl)
5805 && !DECL_SELF_REFERENCE_P (type_decl)
5806 && !cp_parser_uncommitted_to_tentative_parse_p (parser))
5807 error_at (token->location,
5808 "typedef-name %qD used as destructor declarator",
5809 type_decl);
5811 return build_nt (BIT_NOT_EXPR, TREE_TYPE (type_decl));
5814 case CPP_KEYWORD:
5815 if (token->keyword == RID_OPERATOR)
5817 cp_expr id;
5819 /* This could be a template-id, so we try that first. */
5820 cp_parser_parse_tentatively (parser);
5821 /* Try a template-id. */
5822 id = cp_parser_template_id (parser, template_keyword_p,
5823 /*check_dependency_p=*/true,
5824 none_type,
5825 declarator_p);
5826 /* If that worked, we're done. */
5827 if (cp_parser_parse_definitely (parser))
5828 return id;
5829 /* We still don't know whether we're looking at an
5830 operator-function-id or a conversion-function-id. */
5831 cp_parser_parse_tentatively (parser);
5832 /* Try an operator-function-id. */
5833 id = cp_parser_operator_function_id (parser);
5834 /* If that didn't work, try a conversion-function-id. */
5835 if (!cp_parser_parse_definitely (parser))
5836 id = cp_parser_conversion_function_id (parser);
5837 else if (UDLIT_OPER_P (id))
5839 /* 17.6.3.3.5 */
5840 const char *name = UDLIT_OP_SUFFIX (id);
5841 if (name[0] != '_' && !in_system_header_at (input_location)
5842 && declarator_p)
5843 warning (OPT_Wliteral_suffix,
5844 "literal operator suffixes not preceded by %<_%>"
5845 " are reserved for future standardization");
5848 return id;
5850 /* Fall through. */
5852 default:
5853 if (optional_p)
5854 return NULL_TREE;
5855 cp_parser_error (parser, "expected unqualified-id");
5856 return error_mark_node;
5860 /* Parse an (optional) nested-name-specifier.
5862 nested-name-specifier: [C++98]
5863 class-or-namespace-name :: nested-name-specifier [opt]
5864 class-or-namespace-name :: template nested-name-specifier [opt]
5866 nested-name-specifier: [C++0x]
5867 type-name ::
5868 namespace-name ::
5869 nested-name-specifier identifier ::
5870 nested-name-specifier template [opt] simple-template-id ::
5872 PARSER->SCOPE should be set appropriately before this function is
5873 called. TYPENAME_KEYWORD_P is TRUE if the `typename' keyword is in
5874 effect. TYPE_P is TRUE if we non-type bindings should be ignored
5875 in name lookups.
5877 Sets PARSER->SCOPE to the class (TYPE) or namespace
5878 (NAMESPACE_DECL) specified by the nested-name-specifier, or leaves
5879 it unchanged if there is no nested-name-specifier. Returns the new
5880 scope iff there is a nested-name-specifier, or NULL_TREE otherwise.
5882 If IS_DECLARATION is TRUE, the nested-name-specifier is known to be
5883 part of a declaration and/or decl-specifier. */
5885 static tree
5886 cp_parser_nested_name_specifier_opt (cp_parser *parser,
5887 bool typename_keyword_p,
5888 bool check_dependency_p,
5889 bool type_p,
5890 bool is_declaration,
5891 bool template_keyword_p /* = false */)
5893 bool success = false;
5894 cp_token_position start = 0;
5895 cp_token *token;
5897 /* Remember where the nested-name-specifier starts. */
5898 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
5900 start = cp_lexer_token_position (parser->lexer, false);
5901 push_deferring_access_checks (dk_deferred);
5904 while (true)
5906 tree new_scope;
5907 tree old_scope;
5908 tree saved_qualifying_scope;
5910 /* Spot cases that cannot be the beginning of a
5911 nested-name-specifier. */
5912 token = cp_lexer_peek_token (parser->lexer);
5914 /* If the next token is CPP_NESTED_NAME_SPECIFIER, just process
5915 the already parsed nested-name-specifier. */
5916 if (token->type == CPP_NESTED_NAME_SPECIFIER)
5918 /* Grab the nested-name-specifier and continue the loop. */
5919 cp_parser_pre_parsed_nested_name_specifier (parser);
5920 /* If we originally encountered this nested-name-specifier
5921 with IS_DECLARATION set to false, we will not have
5922 resolved TYPENAME_TYPEs, so we must do so here. */
5923 if (is_declaration
5924 && TREE_CODE (parser->scope) == TYPENAME_TYPE)
5926 new_scope = resolve_typename_type (parser->scope,
5927 /*only_current_p=*/false);
5928 if (TREE_CODE (new_scope) != TYPENAME_TYPE)
5929 parser->scope = new_scope;
5931 success = true;
5932 continue;
5935 /* Spot cases that cannot be the beginning of a
5936 nested-name-specifier. On the second and subsequent times
5937 through the loop, we look for the `template' keyword. */
5938 if (success && token->keyword == RID_TEMPLATE)
5940 /* A template-id can start a nested-name-specifier. */
5941 else if (token->type == CPP_TEMPLATE_ID)
5943 /* DR 743: decltype can be used in a nested-name-specifier. */
5944 else if (token_is_decltype (token))
5946 else
5948 /* If the next token is not an identifier, then it is
5949 definitely not a type-name or namespace-name. */
5950 if (token->type != CPP_NAME)
5951 break;
5952 /* If the following token is neither a `<' (to begin a
5953 template-id), nor a `::', then we are not looking at a
5954 nested-name-specifier. */
5955 token = cp_lexer_peek_nth_token (parser->lexer, 2);
5957 if (token->type == CPP_COLON
5958 && parser->colon_corrects_to_scope_p
5959 && cp_lexer_peek_nth_token (parser->lexer, 3)->type == CPP_NAME)
5961 gcc_rich_location richloc (token->location);
5962 richloc.add_fixit_replace ("::");
5963 error_at_rich_loc (&richloc,
5964 "found %<:%> in nested-name-specifier, "
5965 "expected %<::%>");
5966 token->type = CPP_SCOPE;
5969 if (token->type != CPP_SCOPE
5970 && !cp_parser_nth_token_starts_template_argument_list_p
5971 (parser, 2))
5972 break;
5975 /* The nested-name-specifier is optional, so we parse
5976 tentatively. */
5977 cp_parser_parse_tentatively (parser);
5979 /* Look for the optional `template' keyword, if this isn't the
5980 first time through the loop. */
5981 if (success)
5982 template_keyword_p = cp_parser_optional_template_keyword (parser);
5984 /* Save the old scope since the name lookup we are about to do
5985 might destroy it. */
5986 old_scope = parser->scope;
5987 saved_qualifying_scope = parser->qualifying_scope;
5988 /* In a declarator-id like "X<T>::I::Y<T>" we must be able to
5989 look up names in "X<T>::I" in order to determine that "Y" is
5990 a template. So, if we have a typename at this point, we make
5991 an effort to look through it. */
5992 if (is_declaration
5993 && !typename_keyword_p
5994 && parser->scope
5995 && TREE_CODE (parser->scope) == TYPENAME_TYPE)
5996 parser->scope = resolve_typename_type (parser->scope,
5997 /*only_current_p=*/false);
5998 /* Parse the qualifying entity. */
5999 new_scope
6000 = cp_parser_qualifying_entity (parser,
6001 typename_keyword_p,
6002 template_keyword_p,
6003 check_dependency_p,
6004 type_p,
6005 is_declaration);
6006 /* Look for the `::' token. */
6007 cp_parser_require (parser, CPP_SCOPE, RT_SCOPE);
6009 /* If we found what we wanted, we keep going; otherwise, we're
6010 done. */
6011 if (!cp_parser_parse_definitely (parser))
6013 bool error_p = false;
6015 /* Restore the OLD_SCOPE since it was valid before the
6016 failed attempt at finding the last
6017 class-or-namespace-name. */
6018 parser->scope = old_scope;
6019 parser->qualifying_scope = saved_qualifying_scope;
6021 /* If the next token is a decltype, and the one after that is a
6022 `::', then the decltype has failed to resolve to a class or
6023 enumeration type. Give this error even when parsing
6024 tentatively since it can't possibly be valid--and we're going
6025 to replace it with a CPP_NESTED_NAME_SPECIFIER below, so we
6026 won't get another chance.*/
6027 if (cp_lexer_next_token_is (parser->lexer, CPP_DECLTYPE)
6028 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
6029 == CPP_SCOPE))
6031 token = cp_lexer_consume_token (parser->lexer);
6032 error_at (token->location, "decltype evaluates to %qT, "
6033 "which is not a class or enumeration type",
6034 token->u.tree_check_value->value);
6035 parser->scope = error_mark_node;
6036 error_p = true;
6037 /* As below. */
6038 success = true;
6039 cp_lexer_consume_token (parser->lexer);
6042 if (cp_lexer_next_token_is (parser->lexer, CPP_TEMPLATE_ID)
6043 && cp_lexer_nth_token_is (parser->lexer, 2, CPP_SCOPE))
6045 /* If we have a non-type template-id followed by ::, it can't
6046 possibly be valid. */
6047 token = cp_lexer_peek_token (parser->lexer);
6048 tree tid = token->u.tree_check_value->value;
6049 if (TREE_CODE (tid) == TEMPLATE_ID_EXPR
6050 && TREE_CODE (TREE_OPERAND (tid, 0)) != IDENTIFIER_NODE)
6052 tree tmpl = NULL_TREE;
6053 if (is_overloaded_fn (tid))
6055 tree fns = get_fns (tid);
6056 if (OVL_SINGLE_P (fns))
6057 tmpl = OVL_FIRST (fns);
6058 error_at (token->location, "function template-id %qD "
6059 "in nested-name-specifier", tid);
6061 else
6063 /* Variable template. */
6064 tmpl = TREE_OPERAND (tid, 0);
6065 gcc_assert (variable_template_p (tmpl));
6066 error_at (token->location, "variable template-id %qD "
6067 "in nested-name-specifier", tid);
6069 if (tmpl)
6070 inform (DECL_SOURCE_LOCATION (tmpl),
6071 "%qD declared here", tmpl);
6073 parser->scope = error_mark_node;
6074 error_p = true;
6075 /* As below. */
6076 success = true;
6077 cp_lexer_consume_token (parser->lexer);
6078 cp_lexer_consume_token (parser->lexer);
6082 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
6083 break;
6084 /* If the next token is an identifier, and the one after
6085 that is a `::', then any valid interpretation would have
6086 found a class-or-namespace-name. */
6087 while (cp_lexer_next_token_is (parser->lexer, CPP_NAME)
6088 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
6089 == CPP_SCOPE)
6090 && (cp_lexer_peek_nth_token (parser->lexer, 3)->type
6091 != CPP_COMPL))
6093 token = cp_lexer_consume_token (parser->lexer);
6094 if (!error_p)
6096 if (!token->error_reported)
6098 tree decl;
6099 tree ambiguous_decls;
6101 decl = cp_parser_lookup_name (parser, token->u.value,
6102 none_type,
6103 /*is_template=*/false,
6104 /*is_namespace=*/false,
6105 /*check_dependency=*/true,
6106 &ambiguous_decls,
6107 token->location);
6108 if (TREE_CODE (decl) == TEMPLATE_DECL)
6109 error_at (token->location,
6110 "%qD used without template parameters",
6111 decl);
6112 else if (ambiguous_decls)
6114 // cp_parser_lookup_name has the same diagnostic,
6115 // thus make sure to emit it at most once.
6116 if (cp_parser_uncommitted_to_tentative_parse_p
6117 (parser))
6119 error_at (token->location,
6120 "reference to %qD is ambiguous",
6121 token->u.value);
6122 print_candidates (ambiguous_decls);
6124 decl = error_mark_node;
6126 else
6128 if (cxx_dialect != cxx98)
6129 cp_parser_name_lookup_error
6130 (parser, token->u.value, decl, NLE_NOT_CXX98,
6131 token->location);
6132 else
6133 cp_parser_name_lookup_error
6134 (parser, token->u.value, decl, NLE_CXX98,
6135 token->location);
6138 parser->scope = error_mark_node;
6139 error_p = true;
6140 /* Treat this as a successful nested-name-specifier
6141 due to:
6143 [basic.lookup.qual]
6145 If the name found is not a class-name (clause
6146 _class_) or namespace-name (_namespace.def_), the
6147 program is ill-formed. */
6148 success = true;
6150 cp_lexer_consume_token (parser->lexer);
6152 break;
6154 /* We've found one valid nested-name-specifier. */
6155 success = true;
6156 /* Name lookup always gives us a DECL. */
6157 if (TREE_CODE (new_scope) == TYPE_DECL)
6158 new_scope = TREE_TYPE (new_scope);
6159 /* Uses of "template" must be followed by actual templates. */
6160 if (template_keyword_p
6161 && !(CLASS_TYPE_P (new_scope)
6162 && ((CLASSTYPE_USE_TEMPLATE (new_scope)
6163 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (new_scope)))
6164 || CLASSTYPE_IS_TEMPLATE (new_scope)))
6165 && !(TREE_CODE (new_scope) == TYPENAME_TYPE
6166 && (TREE_CODE (TYPENAME_TYPE_FULLNAME (new_scope))
6167 == TEMPLATE_ID_EXPR)))
6168 permerror (input_location, TYPE_P (new_scope)
6169 ? G_("%qT is not a template")
6170 : G_("%qD is not a template"),
6171 new_scope);
6172 /* If it is a class scope, try to complete it; we are about to
6173 be looking up names inside the class. */
6174 if (TYPE_P (new_scope)
6175 /* Since checking types for dependency can be expensive,
6176 avoid doing it if the type is already complete. */
6177 && !COMPLETE_TYPE_P (new_scope)
6178 /* Do not try to complete dependent types. */
6179 && !dependent_type_p (new_scope))
6181 new_scope = complete_type (new_scope);
6182 /* If it is a typedef to current class, use the current
6183 class instead, as the typedef won't have any names inside
6184 it yet. */
6185 if (!COMPLETE_TYPE_P (new_scope)
6186 && currently_open_class (new_scope))
6187 new_scope = TYPE_MAIN_VARIANT (new_scope);
6189 /* Make sure we look in the right scope the next time through
6190 the loop. */
6191 parser->scope = new_scope;
6194 /* If parsing tentatively, replace the sequence of tokens that makes
6195 up the nested-name-specifier with a CPP_NESTED_NAME_SPECIFIER
6196 token. That way, should we re-parse the token stream, we will
6197 not have to repeat the effort required to do the parse, nor will
6198 we issue duplicate error messages. */
6199 if (success && start)
6201 cp_token *token;
6203 token = cp_lexer_token_at (parser->lexer, start);
6204 /* Reset the contents of the START token. */
6205 token->type = CPP_NESTED_NAME_SPECIFIER;
6206 /* Retrieve any deferred checks. Do not pop this access checks yet
6207 so the memory will not be reclaimed during token replacing below. */
6208 token->u.tree_check_value = ggc_cleared_alloc<struct tree_check> ();
6209 token->u.tree_check_value->value = parser->scope;
6210 token->u.tree_check_value->checks = get_deferred_access_checks ();
6211 token->u.tree_check_value->qualifying_scope =
6212 parser->qualifying_scope;
6213 token->keyword = RID_MAX;
6215 /* Purge all subsequent tokens. */
6216 cp_lexer_purge_tokens_after (parser->lexer, start);
6219 if (start)
6220 pop_to_parent_deferring_access_checks ();
6222 return success ? parser->scope : NULL_TREE;
6225 /* Parse a nested-name-specifier. See
6226 cp_parser_nested_name_specifier_opt for details. This function
6227 behaves identically, except that it will an issue an error if no
6228 nested-name-specifier is present. */
6230 static tree
6231 cp_parser_nested_name_specifier (cp_parser *parser,
6232 bool typename_keyword_p,
6233 bool check_dependency_p,
6234 bool type_p,
6235 bool is_declaration)
6237 tree scope;
6239 /* Look for the nested-name-specifier. */
6240 scope = cp_parser_nested_name_specifier_opt (parser,
6241 typename_keyword_p,
6242 check_dependency_p,
6243 type_p,
6244 is_declaration);
6245 /* If it was not present, issue an error message. */
6246 if (!scope)
6248 cp_parser_error (parser, "expected nested-name-specifier");
6249 parser->scope = NULL_TREE;
6252 return scope;
6255 /* Parse the qualifying entity in a nested-name-specifier. For C++98,
6256 this is either a class-name or a namespace-name (which corresponds
6257 to the class-or-namespace-name production in the grammar). For
6258 C++0x, it can also be a type-name that refers to an enumeration
6259 type or a simple-template-id.
6261 TYPENAME_KEYWORD_P is TRUE iff the `typename' keyword is in effect.
6262 TEMPLATE_KEYWORD_P is TRUE iff the `template' keyword is in effect.
6263 CHECK_DEPENDENCY_P is FALSE iff dependent names should be looked up.
6264 TYPE_P is TRUE iff the next name should be taken as a class-name,
6265 even the same name is declared to be another entity in the same
6266 scope.
6268 Returns the class (TYPE_DECL) or namespace (NAMESPACE_DECL)
6269 specified by the class-or-namespace-name. If neither is found the
6270 ERROR_MARK_NODE is returned. */
6272 static tree
6273 cp_parser_qualifying_entity (cp_parser *parser,
6274 bool typename_keyword_p,
6275 bool template_keyword_p,
6276 bool check_dependency_p,
6277 bool type_p,
6278 bool is_declaration)
6280 tree saved_scope;
6281 tree saved_qualifying_scope;
6282 tree saved_object_scope;
6283 tree scope;
6284 bool only_class_p;
6285 bool successful_parse_p;
6287 /* DR 743: decltype can appear in a nested-name-specifier. */
6288 if (cp_lexer_next_token_is_decltype (parser->lexer))
6290 scope = cp_parser_decltype (parser);
6291 if (TREE_CODE (scope) != ENUMERAL_TYPE
6292 && !MAYBE_CLASS_TYPE_P (scope))
6294 cp_parser_simulate_error (parser);
6295 return error_mark_node;
6297 if (TYPE_NAME (scope))
6298 scope = TYPE_NAME (scope);
6299 return scope;
6302 /* Before we try to parse the class-name, we must save away the
6303 current PARSER->SCOPE since cp_parser_class_name will destroy
6304 it. */
6305 saved_scope = parser->scope;
6306 saved_qualifying_scope = parser->qualifying_scope;
6307 saved_object_scope = parser->object_scope;
6308 /* Try for a class-name first. If the SAVED_SCOPE is a type, then
6309 there is no need to look for a namespace-name. */
6310 only_class_p = template_keyword_p
6311 || (saved_scope && TYPE_P (saved_scope) && cxx_dialect == cxx98);
6312 if (!only_class_p)
6313 cp_parser_parse_tentatively (parser);
6314 scope = cp_parser_class_name (parser,
6315 typename_keyword_p,
6316 template_keyword_p,
6317 type_p ? class_type : none_type,
6318 check_dependency_p,
6319 /*class_head_p=*/false,
6320 is_declaration,
6321 /*enum_ok=*/cxx_dialect > cxx98);
6322 successful_parse_p = only_class_p || cp_parser_parse_definitely (parser);
6323 /* If that didn't work, try for a namespace-name. */
6324 if (!only_class_p && !successful_parse_p)
6326 /* Restore the saved scope. */
6327 parser->scope = saved_scope;
6328 parser->qualifying_scope = saved_qualifying_scope;
6329 parser->object_scope = saved_object_scope;
6330 /* If we are not looking at an identifier followed by the scope
6331 resolution operator, then this is not part of a
6332 nested-name-specifier. (Note that this function is only used
6333 to parse the components of a nested-name-specifier.) */
6334 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NAME)
6335 || cp_lexer_peek_nth_token (parser->lexer, 2)->type != CPP_SCOPE)
6336 return error_mark_node;
6337 scope = cp_parser_namespace_name (parser);
6340 return scope;
6343 /* Return true if we are looking at a compound-literal, false otherwise. */
6345 static bool
6346 cp_parser_compound_literal_p (cp_parser *parser)
6348 /* Consume the `('. */
6349 cp_lexer_consume_token (parser->lexer);
6351 cp_lexer_save_tokens (parser->lexer);
6353 /* Skip tokens until the next token is a closing parenthesis.
6354 If we find the closing `)', and the next token is a `{', then
6355 we are looking at a compound-literal. */
6356 bool compound_literal_p
6357 = (cp_parser_skip_to_closing_parenthesis (parser, false, false,
6358 /*consume_paren=*/true)
6359 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE));
6361 /* Roll back the tokens we skipped. */
6362 cp_lexer_rollback_tokens (parser->lexer);
6364 return compound_literal_p;
6367 /* Parse a postfix-expression.
6369 postfix-expression:
6370 primary-expression
6371 postfix-expression [ expression ]
6372 postfix-expression ( expression-list [opt] )
6373 simple-type-specifier ( expression-list [opt] )
6374 typename :: [opt] nested-name-specifier identifier
6375 ( expression-list [opt] )
6376 typename :: [opt] nested-name-specifier template [opt] template-id
6377 ( expression-list [opt] )
6378 postfix-expression . template [opt] id-expression
6379 postfix-expression -> template [opt] id-expression
6380 postfix-expression . pseudo-destructor-name
6381 postfix-expression -> pseudo-destructor-name
6382 postfix-expression ++
6383 postfix-expression --
6384 dynamic_cast < type-id > ( expression )
6385 static_cast < type-id > ( expression )
6386 reinterpret_cast < type-id > ( expression )
6387 const_cast < type-id > ( expression )
6388 typeid ( expression )
6389 typeid ( type-id )
6391 GNU Extension:
6393 postfix-expression:
6394 ( type-id ) { initializer-list , [opt] }
6396 This extension is a GNU version of the C99 compound-literal
6397 construct. (The C99 grammar uses `type-name' instead of `type-id',
6398 but they are essentially the same concept.)
6400 If ADDRESS_P is true, the postfix expression is the operand of the
6401 `&' operator. CAST_P is true if this expression is the target of a
6402 cast.
6404 If MEMBER_ACCESS_ONLY_P, we only allow postfix expressions that are
6405 class member access expressions [expr.ref].
6407 Returns a representation of the expression. */
6409 static cp_expr
6410 cp_parser_postfix_expression (cp_parser *parser, bool address_p, bool cast_p,
6411 bool member_access_only_p, bool decltype_p,
6412 cp_id_kind * pidk_return)
6414 cp_token *token;
6415 location_t loc;
6416 enum rid keyword;
6417 cp_id_kind idk = CP_ID_KIND_NONE;
6418 cp_expr postfix_expression = NULL_TREE;
6419 bool is_member_access = false;
6420 int saved_in_statement = -1;
6422 /* Peek at the next token. */
6423 token = cp_lexer_peek_token (parser->lexer);
6424 loc = token->location;
6425 location_t start_loc = get_range_from_loc (line_table, loc).m_start;
6427 /* Some of the productions are determined by keywords. */
6428 keyword = token->keyword;
6429 switch (keyword)
6431 case RID_DYNCAST:
6432 case RID_STATCAST:
6433 case RID_REINTCAST:
6434 case RID_CONSTCAST:
6436 tree type;
6437 cp_expr expression;
6438 const char *saved_message;
6439 bool saved_in_type_id_in_expr_p;
6441 /* All of these can be handled in the same way from the point
6442 of view of parsing. Begin by consuming the token
6443 identifying the cast. */
6444 cp_lexer_consume_token (parser->lexer);
6446 /* New types cannot be defined in the cast. */
6447 saved_message = parser->type_definition_forbidden_message;
6448 parser->type_definition_forbidden_message
6449 = G_("types may not be defined in casts");
6451 /* Look for the opening `<'. */
6452 cp_parser_require (parser, CPP_LESS, RT_LESS);
6453 /* Parse the type to which we are casting. */
6454 saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
6455 parser->in_type_id_in_expr_p = true;
6456 type = cp_parser_type_id (parser);
6457 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
6458 /* Look for the closing `>'. */
6459 cp_parser_require (parser, CPP_GREATER, RT_GREATER);
6460 /* Restore the old message. */
6461 parser->type_definition_forbidden_message = saved_message;
6463 bool saved_greater_than_is_operator_p
6464 = parser->greater_than_is_operator_p;
6465 parser->greater_than_is_operator_p = true;
6467 /* And the expression which is being cast. */
6468 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
6469 expression = cp_parser_expression (parser, & idk, /*cast_p=*/true);
6470 cp_token *close_paren = cp_parser_require (parser, CPP_CLOSE_PAREN,
6471 RT_CLOSE_PAREN);
6472 location_t end_loc = close_paren ?
6473 close_paren->location : UNKNOWN_LOCATION;
6475 parser->greater_than_is_operator_p
6476 = saved_greater_than_is_operator_p;
6478 /* Only type conversions to integral or enumeration types
6479 can be used in constant-expressions. */
6480 if (!cast_valid_in_integral_constant_expression_p (type)
6481 && cp_parser_non_integral_constant_expression (parser, NIC_CAST))
6483 postfix_expression = error_mark_node;
6484 break;
6487 switch (keyword)
6489 case RID_DYNCAST:
6490 postfix_expression
6491 = build_dynamic_cast (type, expression, tf_warning_or_error);
6492 break;
6493 case RID_STATCAST:
6494 postfix_expression
6495 = build_static_cast (type, expression, tf_warning_or_error);
6496 break;
6497 case RID_REINTCAST:
6498 postfix_expression
6499 = build_reinterpret_cast (type, expression,
6500 tf_warning_or_error);
6501 break;
6502 case RID_CONSTCAST:
6503 postfix_expression
6504 = build_const_cast (type, expression, tf_warning_or_error);
6505 break;
6506 default:
6507 gcc_unreachable ();
6510 /* Construct a location e.g. :
6511 reinterpret_cast <int *> (expr)
6512 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6513 ranging from the start of the "*_cast" token to the final closing
6514 paren, with the caret at the start. */
6515 location_t cp_cast_loc = make_location (start_loc, start_loc, end_loc);
6516 postfix_expression.set_location (cp_cast_loc);
6518 break;
6520 case RID_TYPEID:
6522 tree type;
6523 const char *saved_message;
6524 bool saved_in_type_id_in_expr_p;
6526 /* Consume the `typeid' token. */
6527 cp_lexer_consume_token (parser->lexer);
6528 /* Look for the `(' token. */
6529 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
6530 /* Types cannot be defined in a `typeid' expression. */
6531 saved_message = parser->type_definition_forbidden_message;
6532 parser->type_definition_forbidden_message
6533 = G_("types may not be defined in a %<typeid%> expression");
6534 /* We can't be sure yet whether we're looking at a type-id or an
6535 expression. */
6536 cp_parser_parse_tentatively (parser);
6537 /* Try a type-id first. */
6538 saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
6539 parser->in_type_id_in_expr_p = true;
6540 type = cp_parser_type_id (parser);
6541 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
6542 /* Look for the `)' token. Otherwise, we can't be sure that
6543 we're not looking at an expression: consider `typeid (int
6544 (3))', for example. */
6545 cp_token *close_paren = cp_parser_require (parser, CPP_CLOSE_PAREN,
6546 RT_CLOSE_PAREN);
6547 /* If all went well, simply lookup the type-id. */
6548 if (cp_parser_parse_definitely (parser))
6549 postfix_expression = get_typeid (type, tf_warning_or_error);
6550 /* Otherwise, fall back to the expression variant. */
6551 else
6553 tree expression;
6555 /* Look for an expression. */
6556 expression = cp_parser_expression (parser, & idk);
6557 /* Compute its typeid. */
6558 postfix_expression = build_typeid (expression, tf_warning_or_error);
6559 /* Look for the `)' token. */
6560 close_paren
6561 = cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
6563 /* Restore the saved message. */
6564 parser->type_definition_forbidden_message = saved_message;
6565 /* `typeid' may not appear in an integral constant expression. */
6566 if (cp_parser_non_integral_constant_expression (parser, NIC_TYPEID))
6567 postfix_expression = error_mark_node;
6569 /* Construct a location e.g. :
6570 typeid (expr)
6571 ^~~~~~~~~~~~~
6572 ranging from the start of the "typeid" token to the final closing
6573 paren, with the caret at the start. */
6574 if (close_paren)
6576 location_t typeid_loc
6577 = make_location (start_loc, start_loc, close_paren->location);
6578 postfix_expression.set_location (typeid_loc);
6581 break;
6583 case RID_TYPENAME:
6585 tree type;
6586 /* The syntax permitted here is the same permitted for an
6587 elaborated-type-specifier. */
6588 ++parser->prevent_constrained_type_specifiers;
6589 type = cp_parser_elaborated_type_specifier (parser,
6590 /*is_friend=*/false,
6591 /*is_declaration=*/false);
6592 --parser->prevent_constrained_type_specifiers;
6593 postfix_expression = cp_parser_functional_cast (parser, type);
6595 break;
6597 case RID_CILK_SPAWN:
6599 location_t cilk_spawn_loc
6600 = cp_lexer_peek_token (parser->lexer)->location;
6601 cp_lexer_consume_token (parser->lexer);
6602 token = cp_lexer_peek_token (parser->lexer);
6603 if (token->type == CPP_SEMICOLON)
6605 error_at (token->location, "%<_Cilk_spawn%> must be followed by "
6606 "an expression");
6607 postfix_expression = error_mark_node;
6608 break;
6610 else if (!current_function_decl)
6612 error_at (token->location, "%<_Cilk_spawn%> may only be used "
6613 "inside a function");
6614 postfix_expression = error_mark_node;
6615 break;
6617 else
6619 /* Consecutive _Cilk_spawns are not allowed in a statement. */
6620 saved_in_statement = parser->in_statement;
6621 parser->in_statement |= IN_CILK_SPAWN;
6623 cfun->calls_cilk_spawn = 1;
6624 postfix_expression =
6625 cp_parser_postfix_expression (parser, false, false,
6626 false, false, &idk);
6627 if (!flag_cilkplus)
6629 error_at (token->location, "-fcilkplus must be enabled to use"
6630 " %<_Cilk_spawn%>");
6631 cfun->calls_cilk_spawn = 0;
6633 else if (saved_in_statement & IN_CILK_SPAWN)
6635 error_at (token->location, "consecutive %<_Cilk_spawn%> keywords "
6636 "are not permitted");
6637 postfix_expression = error_mark_node;
6638 cfun->calls_cilk_spawn = 0;
6640 else
6642 location_t loc = postfix_expression.get_location ();
6643 postfix_expression = build_cilk_spawn (token->location,
6644 postfix_expression);
6645 /* Build a location of the form:
6646 _Cilk_spawn expr
6647 ~~~~~~~~~~~~^~~~
6648 with caret at the expr, ranging from the start of the
6649 _Cilk_spawn token to the end of the expression. */
6650 location_t combined_loc =
6651 make_location (loc, cilk_spawn_loc, get_finish (loc));
6652 postfix_expression.set_location (combined_loc);
6653 if (postfix_expression != error_mark_node)
6654 SET_EXPR_LOCATION (postfix_expression, input_location);
6655 parser->in_statement = parser->in_statement & ~IN_CILK_SPAWN;
6657 break;
6660 case RID_ADDRESSOF:
6661 case RID_BUILTIN_SHUFFLE:
6662 case RID_BUILTIN_LAUNDER:
6664 vec<tree, va_gc> *vec;
6665 unsigned int i;
6666 tree p;
6668 cp_lexer_consume_token (parser->lexer);
6669 vec = cp_parser_parenthesized_expression_list (parser, non_attr,
6670 /*cast_p=*/false, /*allow_expansion_p=*/true,
6671 /*non_constant_p=*/NULL);
6672 if (vec == NULL)
6674 postfix_expression = error_mark_node;
6675 break;
6678 FOR_EACH_VEC_ELT (*vec, i, p)
6679 mark_exp_read (p);
6681 switch (keyword)
6683 case RID_ADDRESSOF:
6684 if (vec->length () == 1)
6685 postfix_expression
6686 = cp_build_addressof (loc, (*vec)[0], tf_warning_or_error);
6687 else
6689 error_at (loc, "wrong number of arguments to "
6690 "%<__builtin_addressof%>");
6691 postfix_expression = error_mark_node;
6693 break;
6695 case RID_BUILTIN_LAUNDER:
6696 if (vec->length () == 1)
6697 postfix_expression = finish_builtin_launder (loc, (*vec)[0],
6698 tf_warning_or_error);
6699 else
6701 error_at (loc, "wrong number of arguments to "
6702 "%<__builtin_launder%>");
6703 postfix_expression = error_mark_node;
6705 break;
6707 case RID_BUILTIN_SHUFFLE:
6708 if (vec->length () == 2)
6709 postfix_expression
6710 = build_x_vec_perm_expr (loc, (*vec)[0], NULL_TREE,
6711 (*vec)[1], tf_warning_or_error);
6712 else if (vec->length () == 3)
6713 postfix_expression
6714 = build_x_vec_perm_expr (loc, (*vec)[0], (*vec)[1],
6715 (*vec)[2], tf_warning_or_error);
6716 else
6718 error_at (loc, "wrong number of arguments to "
6719 "%<__builtin_shuffle%>");
6720 postfix_expression = error_mark_node;
6722 break;
6724 default:
6725 gcc_unreachable ();
6727 break;
6730 default:
6732 tree type;
6734 /* If the next thing is a simple-type-specifier, we may be
6735 looking at a functional cast. We could also be looking at
6736 an id-expression. So, we try the functional cast, and if
6737 that doesn't work we fall back to the primary-expression. */
6738 cp_parser_parse_tentatively (parser);
6739 /* Look for the simple-type-specifier. */
6740 ++parser->prevent_constrained_type_specifiers;
6741 type = cp_parser_simple_type_specifier (parser,
6742 /*decl_specs=*/NULL,
6743 CP_PARSER_FLAGS_NONE);
6744 --parser->prevent_constrained_type_specifiers;
6745 /* Parse the cast itself. */
6746 if (!cp_parser_error_occurred (parser))
6747 postfix_expression
6748 = cp_parser_functional_cast (parser, type);
6749 /* If that worked, we're done. */
6750 if (cp_parser_parse_definitely (parser))
6751 break;
6753 /* If the functional-cast didn't work out, try a
6754 compound-literal. */
6755 if (cp_parser_allow_gnu_extensions_p (parser)
6756 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
6758 cp_expr initializer = NULL_TREE;
6760 cp_parser_parse_tentatively (parser);
6762 /* Avoid calling cp_parser_type_id pointlessly, see comment
6763 in cp_parser_cast_expression about c++/29234. */
6764 if (!cp_parser_compound_literal_p (parser))
6765 cp_parser_simulate_error (parser);
6766 else
6768 /* Parse the type. */
6769 bool saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
6770 parser->in_type_id_in_expr_p = true;
6771 type = cp_parser_type_id (parser);
6772 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
6773 /* Look for the `)'. */
6774 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
6777 /* If things aren't going well, there's no need to
6778 keep going. */
6779 if (!cp_parser_error_occurred (parser))
6781 bool non_constant_p;
6782 /* Parse the brace-enclosed initializer list. */
6783 initializer = cp_parser_braced_list (parser,
6784 &non_constant_p);
6786 /* If that worked, we're definitely looking at a
6787 compound-literal expression. */
6788 if (cp_parser_parse_definitely (parser))
6790 /* Warn the user that a compound literal is not
6791 allowed in standard C++. */
6792 pedwarn (input_location, OPT_Wpedantic,
6793 "ISO C++ forbids compound-literals");
6794 /* For simplicity, we disallow compound literals in
6795 constant-expressions. We could
6796 allow compound literals of integer type, whose
6797 initializer was a constant, in constant
6798 expressions. Permitting that usage, as a further
6799 extension, would not change the meaning of any
6800 currently accepted programs. (Of course, as
6801 compound literals are not part of ISO C++, the
6802 standard has nothing to say.) */
6803 if (cp_parser_non_integral_constant_expression (parser,
6804 NIC_NCC))
6806 postfix_expression = error_mark_node;
6807 break;
6809 /* Form the representation of the compound-literal. */
6810 postfix_expression
6811 = finish_compound_literal (type, initializer,
6812 tf_warning_or_error, fcl_c99);
6813 postfix_expression.set_location (initializer.get_location ());
6814 break;
6818 /* It must be a primary-expression. */
6819 postfix_expression
6820 = cp_parser_primary_expression (parser, address_p, cast_p,
6821 /*template_arg_p=*/false,
6822 decltype_p,
6823 &idk);
6825 break;
6828 /* Note that we don't need to worry about calling build_cplus_new on a
6829 class-valued CALL_EXPR in decltype when it isn't the end of the
6830 postfix-expression; unary_complex_lvalue will take care of that for
6831 all these cases. */
6833 /* Keep looping until the postfix-expression is complete. */
6834 while (true)
6836 if (idk == CP_ID_KIND_UNQUALIFIED
6837 && identifier_p (postfix_expression)
6838 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_PAREN))
6839 /* It is not a Koenig lookup function call. */
6840 postfix_expression
6841 = unqualified_name_lookup_error (postfix_expression);
6843 /* Peek at the next token. */
6844 token = cp_lexer_peek_token (parser->lexer);
6846 switch (token->type)
6848 case CPP_OPEN_SQUARE:
6849 if (cp_next_tokens_can_be_std_attribute_p (parser))
6851 cp_parser_error (parser,
6852 "two consecutive %<[%> shall "
6853 "only introduce an attribute");
6854 return error_mark_node;
6856 postfix_expression
6857 = cp_parser_postfix_open_square_expression (parser,
6858 postfix_expression,
6859 false,
6860 decltype_p);
6861 postfix_expression.set_range (start_loc,
6862 postfix_expression.get_location ());
6864 idk = CP_ID_KIND_NONE;
6865 is_member_access = false;
6866 break;
6868 case CPP_OPEN_PAREN:
6869 /* postfix-expression ( expression-list [opt] ) */
6871 bool koenig_p;
6872 bool is_builtin_constant_p;
6873 bool saved_integral_constant_expression_p = false;
6874 bool saved_non_integral_constant_expression_p = false;
6875 tsubst_flags_t complain = complain_flags (decltype_p);
6876 vec<tree, va_gc> *args;
6877 location_t close_paren_loc = UNKNOWN_LOCATION;
6879 is_member_access = false;
6881 is_builtin_constant_p
6882 = DECL_IS_BUILTIN_CONSTANT_P (postfix_expression);
6883 if (is_builtin_constant_p)
6885 /* The whole point of __builtin_constant_p is to allow
6886 non-constant expressions to appear as arguments. */
6887 saved_integral_constant_expression_p
6888 = parser->integral_constant_expression_p;
6889 saved_non_integral_constant_expression_p
6890 = parser->non_integral_constant_expression_p;
6891 parser->integral_constant_expression_p = false;
6893 args = (cp_parser_parenthesized_expression_list
6894 (parser, non_attr,
6895 /*cast_p=*/false, /*allow_expansion_p=*/true,
6896 /*non_constant_p=*/NULL,
6897 /*close_paren_loc=*/&close_paren_loc));
6898 if (is_builtin_constant_p)
6900 parser->integral_constant_expression_p
6901 = saved_integral_constant_expression_p;
6902 parser->non_integral_constant_expression_p
6903 = saved_non_integral_constant_expression_p;
6906 if (args == NULL)
6908 postfix_expression = error_mark_node;
6909 break;
6912 /* Function calls are not permitted in
6913 constant-expressions. */
6914 if (! builtin_valid_in_constant_expr_p (postfix_expression)
6915 && cp_parser_non_integral_constant_expression (parser,
6916 NIC_FUNC_CALL))
6918 postfix_expression = error_mark_node;
6919 release_tree_vector (args);
6920 break;
6923 koenig_p = false;
6924 if (idk == CP_ID_KIND_UNQUALIFIED
6925 || idk == CP_ID_KIND_TEMPLATE_ID)
6927 if (identifier_p (postfix_expression))
6929 if (!args->is_empty ())
6931 koenig_p = true;
6932 if (!any_type_dependent_arguments_p (args))
6933 postfix_expression
6934 = perform_koenig_lookup (postfix_expression, args,
6935 complain);
6937 else
6938 postfix_expression
6939 = unqualified_fn_lookup_error (postfix_expression);
6941 /* We do not perform argument-dependent lookup if
6942 normal lookup finds a non-function, in accordance
6943 with the expected resolution of DR 218. */
6944 else if (!args->is_empty ()
6945 && is_overloaded_fn (postfix_expression))
6947 tree fn = get_first_fn (postfix_expression);
6948 fn = STRIP_TEMPLATE (fn);
6950 /* Do not do argument dependent lookup if regular
6951 lookup finds a member function or a block-scope
6952 function declaration. [basic.lookup.argdep]/3 */
6953 if (!DECL_FUNCTION_MEMBER_P (fn)
6954 && !DECL_LOCAL_FUNCTION_P (fn))
6956 koenig_p = true;
6957 if (!any_type_dependent_arguments_p (args))
6958 postfix_expression
6959 = perform_koenig_lookup (postfix_expression, args,
6960 complain);
6965 if (TREE_CODE (postfix_expression) == FUNCTION_DECL
6966 && DECL_BUILT_IN_CLASS (postfix_expression) == BUILT_IN_NORMAL
6967 && DECL_FUNCTION_CODE (postfix_expression) == BUILT_IN_MEMSET
6968 && vec_safe_length (args) == 3)
6970 tree arg0 = (*args)[0];
6971 tree arg1 = (*args)[1];
6972 tree arg2 = (*args)[2];
6973 int literal_mask = ((!!integer_zerop (arg1) << 1)
6974 | (!!integer_zerop (arg2) << 2));
6975 if (TREE_CODE (arg2) == CONST_DECL)
6976 arg2 = DECL_INITIAL (arg2);
6977 warn_for_memset (input_location, arg0, arg2, literal_mask);
6980 if (TREE_CODE (postfix_expression) == COMPONENT_REF)
6982 tree instance = TREE_OPERAND (postfix_expression, 0);
6983 tree fn = TREE_OPERAND (postfix_expression, 1);
6985 if (processing_template_decl
6986 && (type_dependent_object_expression_p (instance)
6987 || (!BASELINK_P (fn)
6988 && TREE_CODE (fn) != FIELD_DECL)
6989 || type_dependent_expression_p (fn)
6990 || any_type_dependent_arguments_p (args)))
6992 maybe_generic_this_capture (instance, fn);
6993 postfix_expression
6994 = build_min_nt_call_vec (postfix_expression, args);
6995 release_tree_vector (args);
6996 break;
6999 if (BASELINK_P (fn))
7001 postfix_expression
7002 = (build_new_method_call
7003 (instance, fn, &args, NULL_TREE,
7004 (idk == CP_ID_KIND_QUALIFIED
7005 ? LOOKUP_NORMAL|LOOKUP_NONVIRTUAL
7006 : LOOKUP_NORMAL),
7007 /*fn_p=*/NULL,
7008 complain));
7010 else
7011 postfix_expression
7012 = finish_call_expr (postfix_expression, &args,
7013 /*disallow_virtual=*/false,
7014 /*koenig_p=*/false,
7015 complain);
7017 else if (TREE_CODE (postfix_expression) == OFFSET_REF
7018 || TREE_CODE (postfix_expression) == MEMBER_REF
7019 || TREE_CODE (postfix_expression) == DOTSTAR_EXPR)
7020 postfix_expression = (build_offset_ref_call_from_tree
7021 (postfix_expression, &args,
7022 complain));
7023 else if (idk == CP_ID_KIND_QUALIFIED)
7024 /* A call to a static class member, or a namespace-scope
7025 function. */
7026 postfix_expression
7027 = finish_call_expr (postfix_expression, &args,
7028 /*disallow_virtual=*/true,
7029 koenig_p,
7030 complain);
7031 else
7032 /* All other function calls. */
7033 postfix_expression
7034 = finish_call_expr (postfix_expression, &args,
7035 /*disallow_virtual=*/false,
7036 koenig_p,
7037 complain);
7039 if (close_paren_loc != UNKNOWN_LOCATION)
7041 location_t combined_loc = make_location (token->location,
7042 start_loc,
7043 close_paren_loc);
7044 postfix_expression.set_location (combined_loc);
7047 /* The POSTFIX_EXPRESSION is certainly no longer an id. */
7048 idk = CP_ID_KIND_NONE;
7050 release_tree_vector (args);
7052 break;
7054 case CPP_DOT:
7055 case CPP_DEREF:
7056 /* postfix-expression . template [opt] id-expression
7057 postfix-expression . pseudo-destructor-name
7058 postfix-expression -> template [opt] id-expression
7059 postfix-expression -> pseudo-destructor-name */
7061 /* Consume the `.' or `->' operator. */
7062 cp_lexer_consume_token (parser->lexer);
7064 postfix_expression
7065 = cp_parser_postfix_dot_deref_expression (parser, token->type,
7066 postfix_expression,
7067 false, &idk, loc);
7069 is_member_access = true;
7070 break;
7072 case CPP_PLUS_PLUS:
7073 /* postfix-expression ++ */
7074 /* Consume the `++' token. */
7075 cp_lexer_consume_token (parser->lexer);
7076 /* Generate a representation for the complete expression. */
7077 postfix_expression
7078 = finish_increment_expr (postfix_expression,
7079 POSTINCREMENT_EXPR);
7080 /* Increments may not appear in constant-expressions. */
7081 if (cp_parser_non_integral_constant_expression (parser, NIC_INC))
7082 postfix_expression = error_mark_node;
7083 idk = CP_ID_KIND_NONE;
7084 is_member_access = false;
7085 break;
7087 case CPP_MINUS_MINUS:
7088 /* postfix-expression -- */
7089 /* Consume the `--' token. */
7090 cp_lexer_consume_token (parser->lexer);
7091 /* Generate a representation for the complete expression. */
7092 postfix_expression
7093 = finish_increment_expr (postfix_expression,
7094 POSTDECREMENT_EXPR);
7095 /* Decrements may not appear in constant-expressions. */
7096 if (cp_parser_non_integral_constant_expression (parser, NIC_DEC))
7097 postfix_expression = error_mark_node;
7098 idk = CP_ID_KIND_NONE;
7099 is_member_access = false;
7100 break;
7102 default:
7103 if (pidk_return != NULL)
7104 * pidk_return = idk;
7105 if (member_access_only_p)
7106 return is_member_access
7107 ? postfix_expression
7108 : cp_expr (error_mark_node);
7109 else
7110 return postfix_expression;
7114 /* We should never get here. */
7115 gcc_unreachable ();
7116 return error_mark_node;
7119 /* This function parses Cilk Plus array notations. If a normal array expr. is
7120 parsed then the array index is passed back to the caller through *INIT_INDEX
7121 and the function returns a NULL_TREE. If array notation expr. is parsed,
7122 then *INIT_INDEX is ignored by the caller and the function returns
7123 a tree of type ARRAY_NOTATION_REF. If some error occurred it returns
7124 error_mark_node. */
7126 static tree
7127 cp_parser_array_notation (location_t loc, cp_parser *parser, tree *init_index,
7128 tree array_value)
7130 cp_token *token = NULL;
7131 tree length_index, stride = NULL_TREE, value_tree, array_type;
7132 if (!array_value || array_value == error_mark_node)
7134 cp_parser_skip_to_end_of_statement (parser);
7135 return error_mark_node;
7138 array_type = TREE_TYPE (array_value);
7140 bool saved_colon_corrects = parser->colon_corrects_to_scope_p;
7141 parser->colon_corrects_to_scope_p = false;
7142 token = cp_lexer_peek_token (parser->lexer);
7144 if (!token)
7146 cp_parser_error (parser, "expected %<:%> or numeral");
7147 return error_mark_node;
7149 else if (token->type == CPP_COLON)
7151 /* Consume the ':'. */
7152 cp_lexer_consume_token (parser->lexer);
7154 /* If we are here, then we have a case like this A[:]. */
7155 if (cp_lexer_peek_token (parser->lexer)->type != CPP_CLOSE_SQUARE)
7157 cp_parser_error (parser, "expected %<]%>");
7158 cp_parser_skip_to_end_of_statement (parser);
7159 return error_mark_node;
7161 *init_index = NULL_TREE;
7162 stride = NULL_TREE;
7163 length_index = NULL_TREE;
7165 else
7167 /* If we are here, then there are three valid possibilities:
7168 1. ARRAY [ EXP ]
7169 2. ARRAY [ EXP : EXP ]
7170 3. ARRAY [ EXP : EXP : EXP ] */
7172 *init_index = cp_parser_expression (parser);
7173 if (cp_lexer_peek_token (parser->lexer)->type != CPP_COLON)
7175 /* This indicates that we have a normal array expression. */
7176 parser->colon_corrects_to_scope_p = saved_colon_corrects;
7177 return NULL_TREE;
7180 /* Consume the ':'. */
7181 cp_lexer_consume_token (parser->lexer);
7182 length_index = cp_parser_expression (parser);
7183 if (cp_lexer_peek_token (parser->lexer)->type == CPP_COLON)
7185 cp_lexer_consume_token (parser->lexer);
7186 stride = cp_parser_expression (parser);
7189 parser->colon_corrects_to_scope_p = saved_colon_corrects;
7191 if (*init_index == error_mark_node || length_index == error_mark_node
7192 || stride == error_mark_node || array_type == error_mark_node)
7194 if (cp_lexer_peek_token (parser->lexer)->type == CPP_CLOSE_SQUARE)
7195 cp_lexer_consume_token (parser->lexer);
7196 return error_mark_node;
7198 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
7200 value_tree = build_array_notation_ref (loc, array_value, *init_index,
7201 length_index, stride, array_type);
7202 return value_tree;
7205 /* A subroutine of cp_parser_postfix_expression that also gets hijacked
7206 by cp_parser_builtin_offsetof. We're looking for
7208 postfix-expression [ expression ]
7209 postfix-expression [ braced-init-list ] (C++11)
7211 FOR_OFFSETOF is set if we're being called in that context, which
7212 changes how we deal with integer constant expressions. */
7214 static tree
7215 cp_parser_postfix_open_square_expression (cp_parser *parser,
7216 tree postfix_expression,
7217 bool for_offsetof,
7218 bool decltype_p)
7220 tree index = NULL_TREE;
7221 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
7222 bool saved_greater_than_is_operator_p;
7224 /* Consume the `[' token. */
7225 cp_lexer_consume_token (parser->lexer);
7227 saved_greater_than_is_operator_p = parser->greater_than_is_operator_p;
7228 parser->greater_than_is_operator_p = true;
7230 /* Parse the index expression. */
7231 /* ??? For offsetof, there is a question of what to allow here. If
7232 offsetof is not being used in an integral constant expression context,
7233 then we *could* get the right answer by computing the value at runtime.
7234 If we are in an integral constant expression context, then we might
7235 could accept any constant expression; hard to say without analysis.
7236 Rather than open the barn door too wide right away, allow only integer
7237 constant expressions here. */
7238 if (for_offsetof)
7239 index = cp_parser_constant_expression (parser);
7240 else
7242 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
7244 bool expr_nonconst_p;
7245 cp_lexer_set_source_position (parser->lexer);
7246 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
7247 index = cp_parser_braced_list (parser, &expr_nonconst_p);
7248 if (flag_cilkplus
7249 && cp_lexer_peek_token (parser->lexer)->type == CPP_COLON)
7251 error_at (cp_lexer_peek_token (parser->lexer)->location,
7252 "braced list index is not allowed with array "
7253 "notation");
7254 cp_parser_skip_to_end_of_statement (parser);
7255 return error_mark_node;
7258 else if (flag_cilkplus)
7260 /* Here are have these two options:
7261 ARRAY[EXP : EXP] - Array notation expr with default
7262 stride of 1.
7263 ARRAY[EXP : EXP : EXP] - Array Notation with user-defined
7264 stride. */
7265 tree an_exp = cp_parser_array_notation (loc, parser, &index,
7266 postfix_expression);
7267 if (an_exp)
7268 return an_exp;
7270 else
7271 index = cp_parser_expression (parser);
7274 parser->greater_than_is_operator_p = saved_greater_than_is_operator_p;
7276 /* Look for the closing `]'. */
7277 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
7279 /* Build the ARRAY_REF. */
7280 postfix_expression = grok_array_decl (loc, postfix_expression,
7281 index, decltype_p);
7283 /* When not doing offsetof, array references are not permitted in
7284 constant-expressions. */
7285 if (!for_offsetof
7286 && (cp_parser_non_integral_constant_expression (parser, NIC_ARRAY_REF)))
7287 postfix_expression = error_mark_node;
7289 return postfix_expression;
7292 /* A subroutine of cp_parser_postfix_expression that also gets hijacked
7293 by cp_parser_builtin_offsetof. We're looking for
7295 postfix-expression . template [opt] id-expression
7296 postfix-expression . pseudo-destructor-name
7297 postfix-expression -> template [opt] id-expression
7298 postfix-expression -> pseudo-destructor-name
7300 FOR_OFFSETOF is set if we're being called in that context. That sorta
7301 limits what of the above we'll actually accept, but nevermind.
7302 TOKEN_TYPE is the "." or "->" token, which will already have been
7303 removed from the stream. */
7305 static tree
7306 cp_parser_postfix_dot_deref_expression (cp_parser *parser,
7307 enum cpp_ttype token_type,
7308 cp_expr postfix_expression,
7309 bool for_offsetof, cp_id_kind *idk,
7310 location_t location)
7312 tree name;
7313 bool dependent_p;
7314 bool pseudo_destructor_p;
7315 tree scope = NULL_TREE;
7316 location_t start_loc = postfix_expression.get_start ();
7318 /* If this is a `->' operator, dereference the pointer. */
7319 if (token_type == CPP_DEREF)
7320 postfix_expression = build_x_arrow (location, postfix_expression,
7321 tf_warning_or_error);
7322 /* Check to see whether or not the expression is type-dependent and
7323 not the current instantiation. */
7324 dependent_p = type_dependent_object_expression_p (postfix_expression);
7325 /* The identifier following the `->' or `.' is not qualified. */
7326 parser->scope = NULL_TREE;
7327 parser->qualifying_scope = NULL_TREE;
7328 parser->object_scope = NULL_TREE;
7329 *idk = CP_ID_KIND_NONE;
7331 /* Enter the scope corresponding to the type of the object
7332 given by the POSTFIX_EXPRESSION. */
7333 if (!dependent_p)
7335 scope = TREE_TYPE (postfix_expression);
7336 /* According to the standard, no expression should ever have
7337 reference type. Unfortunately, we do not currently match
7338 the standard in this respect in that our internal representation
7339 of an expression may have reference type even when the standard
7340 says it does not. Therefore, we have to manually obtain the
7341 underlying type here. */
7342 scope = non_reference (scope);
7343 /* The type of the POSTFIX_EXPRESSION must be complete. */
7344 /* Unlike the object expression in other contexts, *this is not
7345 required to be of complete type for purposes of class member
7346 access (5.2.5) outside the member function body. */
7347 if (postfix_expression != current_class_ref
7348 && scope != error_mark_node
7349 && !(processing_template_decl
7350 && current_class_type
7351 && (same_type_ignoring_top_level_qualifiers_p
7352 (scope, current_class_type))))
7354 scope = complete_type (scope);
7355 if (!COMPLETE_TYPE_P (scope)
7356 /* Avoid clobbering e.g. OVERLOADs or DECLs. */
7357 && EXPR_P (postfix_expression))
7359 /* In a template, be permissive by treating an object expression
7360 of incomplete type as dependent (after a pedwarn). */
7361 diagnostic_t kind = (processing_template_decl
7362 ? DK_PEDWARN
7363 : DK_ERROR);
7364 cxx_incomplete_type_diagnostic
7365 (location_of (postfix_expression),
7366 postfix_expression, scope, kind);
7367 if (processing_template_decl)
7369 dependent_p = true;
7370 scope = TREE_TYPE (postfix_expression) = NULL_TREE;
7375 if (!dependent_p)
7377 /* Let the name lookup machinery know that we are processing a
7378 class member access expression. */
7379 parser->context->object_type = scope;
7380 /* If something went wrong, we want to be able to discern that case,
7381 as opposed to the case where there was no SCOPE due to the type
7382 of expression being dependent. */
7383 if (!scope)
7384 scope = error_mark_node;
7385 /* If the SCOPE was erroneous, make the various semantic analysis
7386 functions exit quickly -- and without issuing additional error
7387 messages. */
7388 if (scope == error_mark_node)
7389 postfix_expression = error_mark_node;
7393 if (dependent_p)
7394 /* Tell cp_parser_lookup_name that there was an object, even though it's
7395 type-dependent. */
7396 parser->context->object_type = unknown_type_node;
7398 /* Assume this expression is not a pseudo-destructor access. */
7399 pseudo_destructor_p = false;
7401 /* If the SCOPE is a scalar type, then, if this is a valid program,
7402 we must be looking at a pseudo-destructor-name. If POSTFIX_EXPRESSION
7403 is type dependent, it can be pseudo-destructor-name or something else.
7404 Try to parse it as pseudo-destructor-name first. */
7405 if ((scope && SCALAR_TYPE_P (scope)) || dependent_p)
7407 tree s;
7408 tree type;
7410 cp_parser_parse_tentatively (parser);
7411 /* Parse the pseudo-destructor-name. */
7412 s = NULL_TREE;
7413 cp_parser_pseudo_destructor_name (parser, postfix_expression,
7414 &s, &type);
7415 if (dependent_p
7416 && (cp_parser_error_occurred (parser)
7417 || !SCALAR_TYPE_P (type)))
7418 cp_parser_abort_tentative_parse (parser);
7419 else if (cp_parser_parse_definitely (parser))
7421 pseudo_destructor_p = true;
7422 postfix_expression
7423 = finish_pseudo_destructor_expr (postfix_expression,
7424 s, type, location);
7428 if (!pseudo_destructor_p)
7430 /* If the SCOPE is not a scalar type, we are looking at an
7431 ordinary class member access expression, rather than a
7432 pseudo-destructor-name. */
7433 bool template_p;
7434 cp_token *token = cp_lexer_peek_token (parser->lexer);
7435 /* Parse the id-expression. */
7436 name = (cp_parser_id_expression
7437 (parser,
7438 cp_parser_optional_template_keyword (parser),
7439 /*check_dependency_p=*/true,
7440 &template_p,
7441 /*declarator_p=*/false,
7442 /*optional_p=*/false));
7443 /* In general, build a SCOPE_REF if the member name is qualified.
7444 However, if the name was not dependent and has already been
7445 resolved; there is no need to build the SCOPE_REF. For example;
7447 struct X { void f(); };
7448 template <typename T> void f(T* t) { t->X::f(); }
7450 Even though "t" is dependent, "X::f" is not and has been resolved
7451 to a BASELINK; there is no need to include scope information. */
7453 /* But we do need to remember that there was an explicit scope for
7454 virtual function calls. */
7455 if (parser->scope)
7456 *idk = CP_ID_KIND_QUALIFIED;
7458 /* If the name is a template-id that names a type, we will get a
7459 TYPE_DECL here. That is invalid code. */
7460 if (TREE_CODE (name) == TYPE_DECL)
7462 error_at (token->location, "invalid use of %qD", name);
7463 postfix_expression = error_mark_node;
7465 else
7467 if (name != error_mark_node && !BASELINK_P (name) && parser->scope)
7469 if (TREE_CODE (parser->scope) == NAMESPACE_DECL)
7471 error_at (token->location, "%<%D::%D%> is not a class member",
7472 parser->scope, name);
7473 postfix_expression = error_mark_node;
7475 else
7476 name = build_qualified_name (/*type=*/NULL_TREE,
7477 parser->scope,
7478 name,
7479 template_p);
7480 parser->scope = NULL_TREE;
7481 parser->qualifying_scope = NULL_TREE;
7482 parser->object_scope = NULL_TREE;
7484 if (parser->scope && name && BASELINK_P (name))
7485 adjust_result_of_qualified_name_lookup
7486 (name, parser->scope, scope);
7487 postfix_expression
7488 = finish_class_member_access_expr (postfix_expression, name,
7489 template_p,
7490 tf_warning_or_error);
7491 /* Build a location e.g.:
7492 ptr->access_expr
7493 ~~~^~~~~~~~~~~~~
7494 where the caret is at the deref token, ranging from
7495 the start of postfix_expression to the end of the access expr. */
7496 location_t end_loc
7497 = get_finish (cp_lexer_previous_token (parser->lexer)->location);
7498 location_t combined_loc
7499 = make_location (input_location, start_loc, end_loc);
7500 protected_set_expr_location (postfix_expression, combined_loc);
7504 /* We no longer need to look up names in the scope of the object on
7505 the left-hand side of the `.' or `->' operator. */
7506 parser->context->object_type = NULL_TREE;
7508 /* Outside of offsetof, these operators may not appear in
7509 constant-expressions. */
7510 if (!for_offsetof
7511 && (cp_parser_non_integral_constant_expression
7512 (parser, token_type == CPP_DEREF ? NIC_ARROW : NIC_POINT)))
7513 postfix_expression = error_mark_node;
7515 return postfix_expression;
7518 /* Parse a parenthesized expression-list.
7520 expression-list:
7521 assignment-expression
7522 expression-list, assignment-expression
7524 attribute-list:
7525 expression-list
7526 identifier
7527 identifier, expression-list
7529 CAST_P is true if this expression is the target of a cast.
7531 ALLOW_EXPANSION_P is true if this expression allows expansion of an
7532 argument pack.
7534 Returns a vector of trees. Each element is a representation of an
7535 assignment-expression. NULL is returned if the ( and or ) are
7536 missing. An empty, but allocated, vector is returned on no
7537 expressions. The parentheses are eaten. IS_ATTRIBUTE_LIST is id_attr
7538 if we are parsing an attribute list for an attribute that wants a
7539 plain identifier argument, normal_attr for an attribute that wants
7540 an expression, or non_attr if we aren't parsing an attribute list. If
7541 NON_CONSTANT_P is non-NULL, *NON_CONSTANT_P indicates whether or
7542 not all of the expressions in the list were constant.
7543 If CLOSE_PAREN_LOC is non-NULL, and no errors occur, then *CLOSE_PAREN_LOC
7544 will be written to with the location of the closing parenthesis. If
7545 an error occurs, it may or may not be written to. */
7547 static vec<tree, va_gc> *
7548 cp_parser_parenthesized_expression_list (cp_parser* parser,
7549 int is_attribute_list,
7550 bool cast_p,
7551 bool allow_expansion_p,
7552 bool *non_constant_p,
7553 location_t *close_paren_loc)
7555 vec<tree, va_gc> *expression_list;
7556 bool fold_expr_p = is_attribute_list != non_attr;
7557 tree identifier = NULL_TREE;
7558 bool saved_greater_than_is_operator_p;
7560 /* Assume all the expressions will be constant. */
7561 if (non_constant_p)
7562 *non_constant_p = false;
7564 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
7565 return NULL;
7567 expression_list = make_tree_vector ();
7569 /* Within a parenthesized expression, a `>' token is always
7570 the greater-than operator. */
7571 saved_greater_than_is_operator_p
7572 = parser->greater_than_is_operator_p;
7573 parser->greater_than_is_operator_p = true;
7575 /* Consume expressions until there are no more. */
7576 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN))
7577 while (true)
7579 tree expr;
7581 /* At the beginning of attribute lists, check to see if the
7582 next token is an identifier. */
7583 if (is_attribute_list == id_attr
7584 && cp_lexer_peek_token (parser->lexer)->type == CPP_NAME)
7586 cp_token *token;
7588 /* Consume the identifier. */
7589 token = cp_lexer_consume_token (parser->lexer);
7590 /* Save the identifier. */
7591 identifier = token->u.value;
7593 else
7595 bool expr_non_constant_p;
7597 /* Parse the next assignment-expression. */
7598 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
7600 /* A braced-init-list. */
7601 cp_lexer_set_source_position (parser->lexer);
7602 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
7603 expr = cp_parser_braced_list (parser, &expr_non_constant_p);
7604 if (non_constant_p && expr_non_constant_p)
7605 *non_constant_p = true;
7607 else if (non_constant_p)
7609 expr = (cp_parser_constant_expression
7610 (parser, /*allow_non_constant_p=*/true,
7611 &expr_non_constant_p));
7612 if (expr_non_constant_p)
7613 *non_constant_p = true;
7615 else
7616 expr = cp_parser_assignment_expression (parser, /*pidk=*/NULL,
7617 cast_p);
7619 if (fold_expr_p)
7620 expr = instantiate_non_dependent_expr (expr);
7622 /* If we have an ellipsis, then this is an expression
7623 expansion. */
7624 if (allow_expansion_p
7625 && cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
7627 /* Consume the `...'. */
7628 cp_lexer_consume_token (parser->lexer);
7630 /* Build the argument pack. */
7631 expr = make_pack_expansion (expr);
7634 /* Add it to the list. We add error_mark_node
7635 expressions to the list, so that we can still tell if
7636 the correct form for a parenthesized expression-list
7637 is found. That gives better errors. */
7638 vec_safe_push (expression_list, expr);
7640 if (expr == error_mark_node)
7641 goto skip_comma;
7644 /* After the first item, attribute lists look the same as
7645 expression lists. */
7646 is_attribute_list = non_attr;
7648 get_comma:;
7649 /* If the next token isn't a `,', then we are done. */
7650 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
7651 break;
7653 /* Otherwise, consume the `,' and keep going. */
7654 cp_lexer_consume_token (parser->lexer);
7657 if (close_paren_loc)
7658 *close_paren_loc = cp_lexer_peek_token (parser->lexer)->location;
7660 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
7662 int ending;
7664 skip_comma:;
7665 /* We try and resync to an unnested comma, as that will give the
7666 user better diagnostics. */
7667 ending = cp_parser_skip_to_closing_parenthesis (parser,
7668 /*recovering=*/true,
7669 /*or_comma=*/true,
7670 /*consume_paren=*/true);
7671 if (ending < 0)
7672 goto get_comma;
7673 if (!ending)
7675 parser->greater_than_is_operator_p
7676 = saved_greater_than_is_operator_p;
7677 return NULL;
7681 parser->greater_than_is_operator_p
7682 = saved_greater_than_is_operator_p;
7684 if (identifier)
7685 vec_safe_insert (expression_list, 0, identifier);
7687 return expression_list;
7690 /* Parse a pseudo-destructor-name.
7692 pseudo-destructor-name:
7693 :: [opt] nested-name-specifier [opt] type-name :: ~ type-name
7694 :: [opt] nested-name-specifier template template-id :: ~ type-name
7695 :: [opt] nested-name-specifier [opt] ~ type-name
7697 If either of the first two productions is used, sets *SCOPE to the
7698 TYPE specified before the final `::'. Otherwise, *SCOPE is set to
7699 NULL_TREE. *TYPE is set to the TYPE_DECL for the final type-name,
7700 or ERROR_MARK_NODE if the parse fails. */
7702 static void
7703 cp_parser_pseudo_destructor_name (cp_parser* parser,
7704 tree object,
7705 tree* scope,
7706 tree* type)
7708 bool nested_name_specifier_p;
7710 /* Handle ~auto. */
7711 if (cp_lexer_next_token_is (parser->lexer, CPP_COMPL)
7712 && cp_lexer_nth_token_is_keyword (parser->lexer, 2, RID_AUTO)
7713 && !type_dependent_expression_p (object))
7715 if (cxx_dialect < cxx14)
7716 pedwarn (input_location, 0,
7717 "%<~auto%> only available with "
7718 "-std=c++14 or -std=gnu++14");
7719 cp_lexer_consume_token (parser->lexer);
7720 cp_lexer_consume_token (parser->lexer);
7721 *scope = NULL_TREE;
7722 *type = TREE_TYPE (object);
7723 return;
7726 /* Assume that things will not work out. */
7727 *type = error_mark_node;
7729 /* Look for the optional `::' operator. */
7730 cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/true);
7731 /* Look for the optional nested-name-specifier. */
7732 nested_name_specifier_p
7733 = (cp_parser_nested_name_specifier_opt (parser,
7734 /*typename_keyword_p=*/false,
7735 /*check_dependency_p=*/true,
7736 /*type_p=*/false,
7737 /*is_declaration=*/false)
7738 != NULL_TREE);
7739 /* Now, if we saw a nested-name-specifier, we might be doing the
7740 second production. */
7741 if (nested_name_specifier_p
7742 && cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
7744 /* Consume the `template' keyword. */
7745 cp_lexer_consume_token (parser->lexer);
7746 /* Parse the template-id. */
7747 cp_parser_template_id (parser,
7748 /*template_keyword_p=*/true,
7749 /*check_dependency_p=*/false,
7750 class_type,
7751 /*is_declaration=*/true);
7752 /* Look for the `::' token. */
7753 cp_parser_require (parser, CPP_SCOPE, RT_SCOPE);
7755 /* If the next token is not a `~', then there might be some
7756 additional qualification. */
7757 else if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMPL))
7759 /* At this point, we're looking for "type-name :: ~". The type-name
7760 must not be a class-name, since this is a pseudo-destructor. So,
7761 it must be either an enum-name, or a typedef-name -- both of which
7762 are just identifiers. So, we peek ahead to check that the "::"
7763 and "~" tokens are present; if they are not, then we can avoid
7764 calling type_name. */
7765 if (cp_lexer_peek_token (parser->lexer)->type != CPP_NAME
7766 || cp_lexer_peek_nth_token (parser->lexer, 2)->type != CPP_SCOPE
7767 || cp_lexer_peek_nth_token (parser->lexer, 3)->type != CPP_COMPL)
7769 cp_parser_error (parser, "non-scalar type");
7770 return;
7773 /* Look for the type-name. */
7774 *scope = TREE_TYPE (cp_parser_nonclass_name (parser));
7775 if (*scope == error_mark_node)
7776 return;
7778 /* Look for the `::' token. */
7779 cp_parser_require (parser, CPP_SCOPE, RT_SCOPE);
7781 else
7782 *scope = NULL_TREE;
7784 /* Look for the `~'. */
7785 cp_parser_require (parser, CPP_COMPL, RT_COMPL);
7787 /* Once we see the ~, this has to be a pseudo-destructor. */
7788 if (!processing_template_decl && !cp_parser_error_occurred (parser))
7789 cp_parser_commit_to_topmost_tentative_parse (parser);
7791 /* Look for the type-name again. We are not responsible for
7792 checking that it matches the first type-name. */
7793 *type = TREE_TYPE (cp_parser_nonclass_name (parser));
7796 /* Parse a unary-expression.
7798 unary-expression:
7799 postfix-expression
7800 ++ cast-expression
7801 -- cast-expression
7802 unary-operator cast-expression
7803 sizeof unary-expression
7804 sizeof ( type-id )
7805 alignof ( type-id ) [C++0x]
7806 new-expression
7807 delete-expression
7809 GNU Extensions:
7811 unary-expression:
7812 __extension__ cast-expression
7813 __alignof__ unary-expression
7814 __alignof__ ( type-id )
7815 alignof unary-expression [C++0x]
7816 __real__ cast-expression
7817 __imag__ cast-expression
7818 && identifier
7819 sizeof ( type-id ) { initializer-list , [opt] }
7820 alignof ( type-id ) { initializer-list , [opt] } [C++0x]
7821 __alignof__ ( type-id ) { initializer-list , [opt] }
7823 ADDRESS_P is true iff the unary-expression is appearing as the
7824 operand of the `&' operator. CAST_P is true if this expression is
7825 the target of a cast.
7827 Returns a representation of the expression. */
7829 static cp_expr
7830 cp_parser_unary_expression (cp_parser *parser, cp_id_kind * pidk,
7831 bool address_p, bool cast_p, bool decltype_p)
7833 cp_token *token;
7834 enum tree_code unary_operator;
7836 /* Peek at the next token. */
7837 token = cp_lexer_peek_token (parser->lexer);
7838 /* Some keywords give away the kind of expression. */
7839 if (token->type == CPP_KEYWORD)
7841 enum rid keyword = token->keyword;
7843 switch (keyword)
7845 case RID_ALIGNOF:
7846 case RID_SIZEOF:
7848 tree operand, ret;
7849 enum tree_code op;
7850 location_t start_loc = token->location;
7852 op = keyword == RID_ALIGNOF ? ALIGNOF_EXPR : SIZEOF_EXPR;
7853 /* Consume the token. */
7854 cp_lexer_consume_token (parser->lexer);
7855 /* Parse the operand. */
7856 operand = cp_parser_sizeof_operand (parser, keyword);
7858 if (TYPE_P (operand))
7859 ret = cxx_sizeof_or_alignof_type (operand, op, true);
7860 else
7862 /* ISO C++ defines alignof only with types, not with
7863 expressions. So pedwarn if alignof is used with a non-
7864 type expression. However, __alignof__ is ok. */
7865 if (id_equal (token->u.value, "alignof"))
7866 pedwarn (token->location, OPT_Wpedantic,
7867 "ISO C++ does not allow %<alignof%> "
7868 "with a non-type");
7870 ret = cxx_sizeof_or_alignof_expr (operand, op, true);
7872 /* For SIZEOF_EXPR, just issue diagnostics, but keep
7873 SIZEOF_EXPR with the original operand. */
7874 if (op == SIZEOF_EXPR && ret != error_mark_node)
7876 if (TREE_CODE (ret) != SIZEOF_EXPR || TYPE_P (operand))
7878 if (!processing_template_decl && TYPE_P (operand))
7880 ret = build_min (SIZEOF_EXPR, size_type_node,
7881 build1 (NOP_EXPR, operand,
7882 error_mark_node));
7883 SIZEOF_EXPR_TYPE_P (ret) = 1;
7885 else
7886 ret = build_min (SIZEOF_EXPR, size_type_node, operand);
7887 TREE_SIDE_EFFECTS (ret) = 0;
7888 TREE_READONLY (ret) = 1;
7892 /* Construct a location e.g. :
7893 alignof (expr)
7894 ^~~~~~~~~~~~~~
7895 with start == caret at the start of the "alignof"/"sizeof"
7896 token, with the endpoint at the final closing paren. */
7897 location_t finish_loc
7898 = cp_lexer_previous_token (parser->lexer)->location;
7899 location_t compound_loc
7900 = make_location (start_loc, start_loc, finish_loc);
7902 cp_expr ret_expr (ret);
7903 ret_expr.set_location (compound_loc);
7904 return ret_expr;
7907 case RID_NEW:
7908 return cp_parser_new_expression (parser);
7910 case RID_DELETE:
7911 return cp_parser_delete_expression (parser);
7913 case RID_EXTENSION:
7915 /* The saved value of the PEDANTIC flag. */
7916 int saved_pedantic;
7917 tree expr;
7919 /* Save away the PEDANTIC flag. */
7920 cp_parser_extension_opt (parser, &saved_pedantic);
7921 /* Parse the cast-expression. */
7922 expr = cp_parser_simple_cast_expression (parser);
7923 /* Restore the PEDANTIC flag. */
7924 pedantic = saved_pedantic;
7926 return expr;
7929 case RID_REALPART:
7930 case RID_IMAGPART:
7932 tree expression;
7934 /* Consume the `__real__' or `__imag__' token. */
7935 cp_lexer_consume_token (parser->lexer);
7936 /* Parse the cast-expression. */
7937 expression = cp_parser_simple_cast_expression (parser);
7938 /* Create the complete representation. */
7939 return build_x_unary_op (token->location,
7940 (keyword == RID_REALPART
7941 ? REALPART_EXPR : IMAGPART_EXPR),
7942 expression,
7943 tf_warning_or_error);
7945 break;
7947 case RID_TRANSACTION_ATOMIC:
7948 case RID_TRANSACTION_RELAXED:
7949 return cp_parser_transaction_expression (parser, keyword);
7951 case RID_NOEXCEPT:
7953 tree expr;
7954 const char *saved_message;
7955 bool saved_integral_constant_expression_p;
7956 bool saved_non_integral_constant_expression_p;
7957 bool saved_greater_than_is_operator_p;
7959 cp_lexer_consume_token (parser->lexer);
7960 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
7962 saved_message = parser->type_definition_forbidden_message;
7963 parser->type_definition_forbidden_message
7964 = G_("types may not be defined in %<noexcept%> expressions");
7966 saved_integral_constant_expression_p
7967 = parser->integral_constant_expression_p;
7968 saved_non_integral_constant_expression_p
7969 = parser->non_integral_constant_expression_p;
7970 parser->integral_constant_expression_p = false;
7972 saved_greater_than_is_operator_p
7973 = parser->greater_than_is_operator_p;
7974 parser->greater_than_is_operator_p = true;
7976 ++cp_unevaluated_operand;
7977 ++c_inhibit_evaluation_warnings;
7978 ++cp_noexcept_operand;
7979 expr = cp_parser_expression (parser);
7980 --cp_noexcept_operand;
7981 --c_inhibit_evaluation_warnings;
7982 --cp_unevaluated_operand;
7984 parser->greater_than_is_operator_p
7985 = saved_greater_than_is_operator_p;
7987 parser->integral_constant_expression_p
7988 = saved_integral_constant_expression_p;
7989 parser->non_integral_constant_expression_p
7990 = saved_non_integral_constant_expression_p;
7992 parser->type_definition_forbidden_message = saved_message;
7994 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
7995 return finish_noexcept_expr (expr, tf_warning_or_error);
7998 default:
7999 break;
8003 /* Look for the `:: new' and `:: delete', which also signal the
8004 beginning of a new-expression, or delete-expression,
8005 respectively. If the next token is `::', then it might be one of
8006 these. */
8007 if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
8009 enum rid keyword;
8011 /* See if the token after the `::' is one of the keywords in
8012 which we're interested. */
8013 keyword = cp_lexer_peek_nth_token (parser->lexer, 2)->keyword;
8014 /* If it's `new', we have a new-expression. */
8015 if (keyword == RID_NEW)
8016 return cp_parser_new_expression (parser);
8017 /* Similarly, for `delete'. */
8018 else if (keyword == RID_DELETE)
8019 return cp_parser_delete_expression (parser);
8022 /* Look for a unary operator. */
8023 unary_operator = cp_parser_unary_operator (token);
8024 /* The `++' and `--' operators can be handled similarly, even though
8025 they are not technically unary-operators in the grammar. */
8026 if (unary_operator == ERROR_MARK)
8028 if (token->type == CPP_PLUS_PLUS)
8029 unary_operator = PREINCREMENT_EXPR;
8030 else if (token->type == CPP_MINUS_MINUS)
8031 unary_operator = PREDECREMENT_EXPR;
8032 /* Handle the GNU address-of-label extension. */
8033 else if (cp_parser_allow_gnu_extensions_p (parser)
8034 && token->type == CPP_AND_AND)
8036 tree identifier;
8037 tree expression;
8038 location_t start_loc = token->location;
8040 /* Consume the '&&' token. */
8041 cp_lexer_consume_token (parser->lexer);
8042 /* Look for the identifier. */
8043 location_t finish_loc
8044 = get_finish (cp_lexer_peek_token (parser->lexer)->location);
8045 identifier = cp_parser_identifier (parser);
8046 /* Construct a location of the form:
8047 &&label
8048 ^~~~~~~
8049 with caret==start at the "&&", finish at the end of the label. */
8050 location_t combined_loc
8051 = make_location (start_loc, start_loc, finish_loc);
8052 /* Create an expression representing the address. */
8053 expression = finish_label_address_expr (identifier, combined_loc);
8054 if (cp_parser_non_integral_constant_expression (parser,
8055 NIC_ADDR_LABEL))
8056 expression = error_mark_node;
8057 return expression;
8060 if (unary_operator != ERROR_MARK)
8062 cp_expr cast_expression;
8063 cp_expr expression = error_mark_node;
8064 non_integral_constant non_constant_p = NIC_NONE;
8065 location_t loc = token->location;
8066 tsubst_flags_t complain = complain_flags (decltype_p);
8068 /* Consume the operator token. */
8069 token = cp_lexer_consume_token (parser->lexer);
8070 enum cpp_ttype op_ttype = cp_lexer_peek_token (parser->lexer)->type;
8072 /* Parse the cast-expression. */
8073 cast_expression
8074 = cp_parser_cast_expression (parser,
8075 unary_operator == ADDR_EXPR,
8076 /*cast_p=*/false,
8077 /*decltype*/false,
8078 pidk);
8080 /* Make a location:
8081 OP_TOKEN CAST_EXPRESSION
8082 ^~~~~~~~~~~~~~~~~~~~~~~~~
8083 with start==caret at the operator token, and
8084 extending to the end of the cast_expression. */
8085 loc = make_location (loc, loc, cast_expression.get_finish ());
8087 /* Now, build an appropriate representation. */
8088 switch (unary_operator)
8090 case INDIRECT_REF:
8091 non_constant_p = NIC_STAR;
8092 expression = build_x_indirect_ref (loc, cast_expression,
8093 RO_UNARY_STAR,
8094 complain);
8095 /* TODO: build_x_indirect_ref does not always honor the
8096 location, so ensure it is set. */
8097 expression.set_location (loc);
8098 break;
8100 case ADDR_EXPR:
8101 non_constant_p = NIC_ADDR;
8102 /* Fall through. */
8103 case BIT_NOT_EXPR:
8104 expression = build_x_unary_op (loc, unary_operator,
8105 cast_expression,
8106 complain);
8107 /* TODO: build_x_unary_op does not always honor the location,
8108 so ensure it is set. */
8109 expression.set_location (loc);
8110 break;
8112 case PREINCREMENT_EXPR:
8113 case PREDECREMENT_EXPR:
8114 non_constant_p = unary_operator == PREINCREMENT_EXPR
8115 ? NIC_PREINCREMENT : NIC_PREDECREMENT;
8116 /* Fall through. */
8117 case NEGATE_EXPR:
8118 /* Immediately fold negation of a constant, unless the constant is 0
8119 (since -0 == 0) or it would overflow. */
8120 if (unary_operator == NEGATE_EXPR && op_ttype == CPP_NUMBER
8121 && CONSTANT_CLASS_P (cast_expression)
8122 && !integer_zerop (cast_expression)
8123 && !TREE_OVERFLOW (cast_expression))
8125 tree folded = fold_build1 (unary_operator,
8126 TREE_TYPE (cast_expression),
8127 cast_expression);
8128 if (CONSTANT_CLASS_P (folded) && !TREE_OVERFLOW (folded))
8130 expression = cp_expr (folded, loc);
8131 break;
8134 /* Fall through. */
8135 case UNARY_PLUS_EXPR:
8136 case TRUTH_NOT_EXPR:
8137 expression = finish_unary_op_expr (loc, unary_operator,
8138 cast_expression, complain);
8139 break;
8141 default:
8142 gcc_unreachable ();
8145 if (non_constant_p != NIC_NONE
8146 && cp_parser_non_integral_constant_expression (parser,
8147 non_constant_p))
8148 expression = error_mark_node;
8150 return expression;
8153 return cp_parser_postfix_expression (parser, address_p, cast_p,
8154 /*member_access_only_p=*/false,
8155 decltype_p,
8156 pidk);
8159 /* Returns ERROR_MARK if TOKEN is not a unary-operator. If TOKEN is a
8160 unary-operator, the corresponding tree code is returned. */
8162 static enum tree_code
8163 cp_parser_unary_operator (cp_token* token)
8165 switch (token->type)
8167 case CPP_MULT:
8168 return INDIRECT_REF;
8170 case CPP_AND:
8171 return ADDR_EXPR;
8173 case CPP_PLUS:
8174 return UNARY_PLUS_EXPR;
8176 case CPP_MINUS:
8177 return NEGATE_EXPR;
8179 case CPP_NOT:
8180 return TRUTH_NOT_EXPR;
8182 case CPP_COMPL:
8183 return BIT_NOT_EXPR;
8185 default:
8186 return ERROR_MARK;
8190 /* Parse a new-expression.
8192 new-expression:
8193 :: [opt] new new-placement [opt] new-type-id new-initializer [opt]
8194 :: [opt] new new-placement [opt] ( type-id ) new-initializer [opt]
8196 Returns a representation of the expression. */
8198 static tree
8199 cp_parser_new_expression (cp_parser* parser)
8201 bool global_scope_p;
8202 vec<tree, va_gc> *placement;
8203 tree type;
8204 vec<tree, va_gc> *initializer;
8205 tree nelts = NULL_TREE;
8206 tree ret;
8208 location_t start_loc = cp_lexer_peek_token (parser->lexer)->location;
8210 /* Look for the optional `::' operator. */
8211 global_scope_p
8212 = (cp_parser_global_scope_opt (parser,
8213 /*current_scope_valid_p=*/false)
8214 != NULL_TREE);
8215 /* Look for the `new' operator. */
8216 cp_parser_require_keyword (parser, RID_NEW, RT_NEW);
8217 /* There's no easy way to tell a new-placement from the
8218 `( type-id )' construct. */
8219 cp_parser_parse_tentatively (parser);
8220 /* Look for a new-placement. */
8221 placement = cp_parser_new_placement (parser);
8222 /* If that didn't work out, there's no new-placement. */
8223 if (!cp_parser_parse_definitely (parser))
8225 if (placement != NULL)
8226 release_tree_vector (placement);
8227 placement = NULL;
8230 /* If the next token is a `(', then we have a parenthesized
8231 type-id. */
8232 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
8234 cp_token *token;
8235 const char *saved_message = parser->type_definition_forbidden_message;
8237 /* Consume the `('. */
8238 cp_lexer_consume_token (parser->lexer);
8240 /* Parse the type-id. */
8241 parser->type_definition_forbidden_message
8242 = G_("types may not be defined in a new-expression");
8244 type_id_in_expr_sentinel s (parser);
8245 type = cp_parser_type_id (parser);
8247 parser->type_definition_forbidden_message = saved_message;
8249 /* Look for the closing `)'. */
8250 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
8251 token = cp_lexer_peek_token (parser->lexer);
8252 /* There should not be a direct-new-declarator in this production,
8253 but GCC used to allowed this, so we check and emit a sensible error
8254 message for this case. */
8255 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
8257 error_at (token->location,
8258 "array bound forbidden after parenthesized type-id");
8259 inform (token->location,
8260 "try removing the parentheses around the type-id");
8261 cp_parser_direct_new_declarator (parser);
8264 /* Otherwise, there must be a new-type-id. */
8265 else
8266 type = cp_parser_new_type_id (parser, &nelts);
8268 /* If the next token is a `(' or '{', then we have a new-initializer. */
8269 cp_token *token = cp_lexer_peek_token (parser->lexer);
8270 if (token->type == CPP_OPEN_PAREN
8271 || token->type == CPP_OPEN_BRACE)
8272 initializer = cp_parser_new_initializer (parser);
8273 else
8274 initializer = NULL;
8276 /* A new-expression may not appear in an integral constant
8277 expression. */
8278 if (cp_parser_non_integral_constant_expression (parser, NIC_NEW))
8279 ret = error_mark_node;
8280 /* 5.3.4/2: "If the auto type-specifier appears in the type-specifier-seq
8281 of a new-type-id or type-id of a new-expression, the new-expression shall
8282 contain a new-initializer of the form ( assignment-expression )".
8283 Additionally, consistently with the spirit of DR 1467, we want to accept
8284 'new auto { 2 }' too. */
8285 else if ((ret = type_uses_auto (type))
8286 && !CLASS_PLACEHOLDER_TEMPLATE (ret)
8287 && (vec_safe_length (initializer) != 1
8288 || (BRACE_ENCLOSED_INITIALIZER_P ((*initializer)[0])
8289 && CONSTRUCTOR_NELTS ((*initializer)[0]) != 1)))
8291 error_at (token->location,
8292 "initialization of new-expression for type %<auto%> "
8293 "requires exactly one element");
8294 ret = error_mark_node;
8296 else
8298 /* Construct a location e.g.:
8299 ptr = new int[100]
8300 ^~~~~~~~~~~~
8301 with caret == start at the start of the "new" token, and the end
8302 at the end of the final token we consumed. */
8303 cp_token *end_tok = cp_lexer_previous_token (parser->lexer);
8304 location_t end_loc = get_finish (end_tok->location);
8305 location_t combined_loc = make_location (start_loc, start_loc, end_loc);
8307 /* Create a representation of the new-expression. */
8308 ret = build_new (&placement, type, nelts, &initializer, global_scope_p,
8309 tf_warning_or_error);
8310 protected_set_expr_location (ret, combined_loc);
8313 if (placement != NULL)
8314 release_tree_vector (placement);
8315 if (initializer != NULL)
8316 release_tree_vector (initializer);
8318 return ret;
8321 /* Parse a new-placement.
8323 new-placement:
8324 ( expression-list )
8326 Returns the same representation as for an expression-list. */
8328 static vec<tree, va_gc> *
8329 cp_parser_new_placement (cp_parser* parser)
8331 vec<tree, va_gc> *expression_list;
8333 /* Parse the expression-list. */
8334 expression_list = (cp_parser_parenthesized_expression_list
8335 (parser, non_attr, /*cast_p=*/false,
8336 /*allow_expansion_p=*/true,
8337 /*non_constant_p=*/NULL));
8339 if (expression_list && expression_list->is_empty ())
8340 error ("expected expression-list or type-id");
8342 return expression_list;
8345 /* Parse a new-type-id.
8347 new-type-id:
8348 type-specifier-seq new-declarator [opt]
8350 Returns the TYPE allocated. If the new-type-id indicates an array
8351 type, *NELTS is set to the number of elements in the last array
8352 bound; the TYPE will not include the last array bound. */
8354 static tree
8355 cp_parser_new_type_id (cp_parser* parser, tree *nelts)
8357 cp_decl_specifier_seq type_specifier_seq;
8358 cp_declarator *new_declarator;
8359 cp_declarator *declarator;
8360 cp_declarator *outer_declarator;
8361 const char *saved_message;
8363 /* The type-specifier sequence must not contain type definitions.
8364 (It cannot contain declarations of new types either, but if they
8365 are not definitions we will catch that because they are not
8366 complete.) */
8367 saved_message = parser->type_definition_forbidden_message;
8368 parser->type_definition_forbidden_message
8369 = G_("types may not be defined in a new-type-id");
8370 /* Parse the type-specifier-seq. */
8371 cp_parser_type_specifier_seq (parser, /*is_declaration=*/false,
8372 /*is_trailing_return=*/false,
8373 &type_specifier_seq);
8374 /* Restore the old message. */
8375 parser->type_definition_forbidden_message = saved_message;
8377 if (type_specifier_seq.type == error_mark_node)
8378 return error_mark_node;
8380 /* Parse the new-declarator. */
8381 new_declarator = cp_parser_new_declarator_opt (parser);
8383 /* Determine the number of elements in the last array dimension, if
8384 any. */
8385 *nelts = NULL_TREE;
8386 /* Skip down to the last array dimension. */
8387 declarator = new_declarator;
8388 outer_declarator = NULL;
8389 while (declarator && (declarator->kind == cdk_pointer
8390 || declarator->kind == cdk_ptrmem))
8392 outer_declarator = declarator;
8393 declarator = declarator->declarator;
8395 while (declarator
8396 && declarator->kind == cdk_array
8397 && declarator->declarator
8398 && declarator->declarator->kind == cdk_array)
8400 outer_declarator = declarator;
8401 declarator = declarator->declarator;
8404 if (declarator && declarator->kind == cdk_array)
8406 *nelts = declarator->u.array.bounds;
8407 if (*nelts == error_mark_node)
8408 *nelts = integer_one_node;
8410 if (outer_declarator)
8411 outer_declarator->declarator = declarator->declarator;
8412 else
8413 new_declarator = NULL;
8416 return groktypename (&type_specifier_seq, new_declarator, false);
8419 /* Parse an (optional) new-declarator.
8421 new-declarator:
8422 ptr-operator new-declarator [opt]
8423 direct-new-declarator
8425 Returns the declarator. */
8427 static cp_declarator *
8428 cp_parser_new_declarator_opt (cp_parser* parser)
8430 enum tree_code code;
8431 tree type, std_attributes = NULL_TREE;
8432 cp_cv_quals cv_quals;
8434 /* We don't know if there's a ptr-operator next, or not. */
8435 cp_parser_parse_tentatively (parser);
8436 /* Look for a ptr-operator. */
8437 code = cp_parser_ptr_operator (parser, &type, &cv_quals, &std_attributes);
8438 /* If that worked, look for more new-declarators. */
8439 if (cp_parser_parse_definitely (parser))
8441 cp_declarator *declarator;
8443 /* Parse another optional declarator. */
8444 declarator = cp_parser_new_declarator_opt (parser);
8446 declarator = cp_parser_make_indirect_declarator
8447 (code, type, cv_quals, declarator, std_attributes);
8449 return declarator;
8452 /* If the next token is a `[', there is a direct-new-declarator. */
8453 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
8454 return cp_parser_direct_new_declarator (parser);
8456 return NULL;
8459 /* Parse a direct-new-declarator.
8461 direct-new-declarator:
8462 [ expression ]
8463 direct-new-declarator [constant-expression]
8467 static cp_declarator *
8468 cp_parser_direct_new_declarator (cp_parser* parser)
8470 cp_declarator *declarator = NULL;
8472 while (true)
8474 tree expression;
8475 cp_token *token;
8477 /* Look for the opening `['. */
8478 cp_parser_require (parser, CPP_OPEN_SQUARE, RT_OPEN_SQUARE);
8480 token = cp_lexer_peek_token (parser->lexer);
8481 expression = cp_parser_expression (parser);
8482 /* The standard requires that the expression have integral
8483 type. DR 74 adds enumeration types. We believe that the
8484 real intent is that these expressions be handled like the
8485 expression in a `switch' condition, which also allows
8486 classes with a single conversion to integral or
8487 enumeration type. */
8488 if (!processing_template_decl)
8490 expression
8491 = build_expr_type_conversion (WANT_INT | WANT_ENUM,
8492 expression,
8493 /*complain=*/true);
8494 if (!expression)
8496 error_at (token->location,
8497 "expression in new-declarator must have integral "
8498 "or enumeration type");
8499 expression = error_mark_node;
8503 /* Look for the closing `]'. */
8504 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
8506 /* Add this bound to the declarator. */
8507 declarator = make_array_declarator (declarator, expression);
8509 /* If the next token is not a `[', then there are no more
8510 bounds. */
8511 if (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_SQUARE))
8512 break;
8515 return declarator;
8518 /* Parse a new-initializer.
8520 new-initializer:
8521 ( expression-list [opt] )
8522 braced-init-list
8524 Returns a representation of the expression-list. */
8526 static vec<tree, va_gc> *
8527 cp_parser_new_initializer (cp_parser* parser)
8529 vec<tree, va_gc> *expression_list;
8531 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
8533 tree t;
8534 bool expr_non_constant_p;
8535 cp_lexer_set_source_position (parser->lexer);
8536 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
8537 t = cp_parser_braced_list (parser, &expr_non_constant_p);
8538 CONSTRUCTOR_IS_DIRECT_INIT (t) = 1;
8539 expression_list = make_tree_vector_single (t);
8541 else
8542 expression_list = (cp_parser_parenthesized_expression_list
8543 (parser, non_attr, /*cast_p=*/false,
8544 /*allow_expansion_p=*/true,
8545 /*non_constant_p=*/NULL));
8547 return expression_list;
8550 /* Parse a delete-expression.
8552 delete-expression:
8553 :: [opt] delete cast-expression
8554 :: [opt] delete [ ] cast-expression
8556 Returns a representation of the expression. */
8558 static tree
8559 cp_parser_delete_expression (cp_parser* parser)
8561 bool global_scope_p;
8562 bool array_p;
8563 tree expression;
8565 /* Look for the optional `::' operator. */
8566 global_scope_p
8567 = (cp_parser_global_scope_opt (parser,
8568 /*current_scope_valid_p=*/false)
8569 != NULL_TREE);
8570 /* Look for the `delete' keyword. */
8571 cp_parser_require_keyword (parser, RID_DELETE, RT_DELETE);
8572 /* See if the array syntax is in use. */
8573 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
8575 /* Consume the `[' token. */
8576 cp_lexer_consume_token (parser->lexer);
8577 /* Look for the `]' token. */
8578 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
8579 /* Remember that this is the `[]' construct. */
8580 array_p = true;
8582 else
8583 array_p = false;
8585 /* Parse the cast-expression. */
8586 expression = cp_parser_simple_cast_expression (parser);
8588 /* A delete-expression may not appear in an integral constant
8589 expression. */
8590 if (cp_parser_non_integral_constant_expression (parser, NIC_DEL))
8591 return error_mark_node;
8593 return delete_sanity (expression, NULL_TREE, array_p, global_scope_p,
8594 tf_warning_or_error);
8597 /* Returns 1 if TOKEN may start a cast-expression and isn't '++', '--',
8598 neither '[' in C++11; -1 if TOKEN is '++', '--', or '[' in C++11;
8599 0 otherwise. */
8601 static int
8602 cp_parser_tokens_start_cast_expression (cp_parser *parser)
8604 cp_token *token = cp_lexer_peek_token (parser->lexer);
8605 switch (token->type)
8607 case CPP_COMMA:
8608 case CPP_SEMICOLON:
8609 case CPP_QUERY:
8610 case CPP_COLON:
8611 case CPP_CLOSE_SQUARE:
8612 case CPP_CLOSE_PAREN:
8613 case CPP_CLOSE_BRACE:
8614 case CPP_OPEN_BRACE:
8615 case CPP_DOT:
8616 case CPP_DOT_STAR:
8617 case CPP_DEREF:
8618 case CPP_DEREF_STAR:
8619 case CPP_DIV:
8620 case CPP_MOD:
8621 case CPP_LSHIFT:
8622 case CPP_RSHIFT:
8623 case CPP_LESS:
8624 case CPP_GREATER:
8625 case CPP_LESS_EQ:
8626 case CPP_GREATER_EQ:
8627 case CPP_EQ_EQ:
8628 case CPP_NOT_EQ:
8629 case CPP_EQ:
8630 case CPP_MULT_EQ:
8631 case CPP_DIV_EQ:
8632 case CPP_MOD_EQ:
8633 case CPP_PLUS_EQ:
8634 case CPP_MINUS_EQ:
8635 case CPP_RSHIFT_EQ:
8636 case CPP_LSHIFT_EQ:
8637 case CPP_AND_EQ:
8638 case CPP_XOR_EQ:
8639 case CPP_OR_EQ:
8640 case CPP_XOR:
8641 case CPP_OR:
8642 case CPP_OR_OR:
8643 case CPP_EOF:
8644 case CPP_ELLIPSIS:
8645 return 0;
8647 case CPP_OPEN_PAREN:
8648 /* In ((type ()) () the last () isn't a valid cast-expression,
8649 so the whole must be parsed as postfix-expression. */
8650 return cp_lexer_peek_nth_token (parser->lexer, 2)->type
8651 != CPP_CLOSE_PAREN;
8653 case CPP_OPEN_SQUARE:
8654 /* '[' may start a primary-expression in obj-c++ and in C++11,
8655 as a lambda-expression, eg, '(void)[]{}'. */
8656 if (cxx_dialect >= cxx11)
8657 return -1;
8658 return c_dialect_objc ();
8660 case CPP_PLUS_PLUS:
8661 case CPP_MINUS_MINUS:
8662 /* '++' and '--' may or may not start a cast-expression:
8664 struct T { void operator++(int); };
8665 void f() { (T())++; }
8669 int a;
8670 (int)++a; */
8671 return -1;
8673 default:
8674 return 1;
8678 /* Try to find a legal C++-style cast to DST_TYPE for ORIG_EXPR, trying them
8679 in the order: const_cast, static_cast, reinterpret_cast.
8681 Don't suggest dynamic_cast.
8683 Return the first legal cast kind found, or NULL otherwise. */
8685 static const char *
8686 get_cast_suggestion (tree dst_type, tree orig_expr)
8688 tree trial;
8690 /* Reuse the parser logic by attempting to build the various kinds of
8691 cast, with "complain" disabled.
8692 Identify the first such cast that is valid. */
8694 /* Don't attempt to run such logic within template processing. */
8695 if (processing_template_decl)
8696 return NULL;
8698 /* First try const_cast. */
8699 trial = build_const_cast (dst_type, orig_expr, tf_none);
8700 if (trial != error_mark_node)
8701 return "const_cast";
8703 /* If that fails, try static_cast. */
8704 trial = build_static_cast (dst_type, orig_expr, tf_none);
8705 if (trial != error_mark_node)
8706 return "static_cast";
8708 /* Finally, try reinterpret_cast. */
8709 trial = build_reinterpret_cast (dst_type, orig_expr, tf_none);
8710 if (trial != error_mark_node)
8711 return "reinterpret_cast";
8713 /* No such cast possible. */
8714 return NULL;
8717 /* If -Wold-style-cast is enabled, add fix-its to RICHLOC,
8718 suggesting how to convert a C-style cast of the form:
8720 (DST_TYPE)ORIG_EXPR
8722 to a C++-style cast.
8724 The primary range of RICHLOC is asssumed to be that of the original
8725 expression. OPEN_PAREN_LOC and CLOSE_PAREN_LOC give the locations
8726 of the parens in the C-style cast. */
8728 static void
8729 maybe_add_cast_fixit (rich_location *rich_loc, location_t open_paren_loc,
8730 location_t close_paren_loc, tree orig_expr,
8731 tree dst_type)
8733 /* This function is non-trivial, so bail out now if the warning isn't
8734 going to be emitted. */
8735 if (!warn_old_style_cast)
8736 return;
8738 /* Try to find a legal C++ cast, trying them in order:
8739 const_cast, static_cast, reinterpret_cast. */
8740 const char *cast_suggestion = get_cast_suggestion (dst_type, orig_expr);
8741 if (!cast_suggestion)
8742 return;
8744 /* Replace the open paren with "CAST_SUGGESTION<". */
8745 pretty_printer pp;
8746 pp_printf (&pp, "%s<", cast_suggestion);
8747 rich_loc->add_fixit_replace (open_paren_loc, pp_formatted_text (&pp));
8749 /* Replace the close paren with "> (". */
8750 rich_loc->add_fixit_replace (close_paren_loc, "> (");
8752 /* Add a closing paren after the expr (the primary range of RICH_LOC). */
8753 rich_loc->add_fixit_insert_after (")");
8757 /* Parse a cast-expression.
8759 cast-expression:
8760 unary-expression
8761 ( type-id ) cast-expression
8763 ADDRESS_P is true iff the unary-expression is appearing as the
8764 operand of the `&' operator. CAST_P is true if this expression is
8765 the target of a cast.
8767 Returns a representation of the expression. */
8769 static cp_expr
8770 cp_parser_cast_expression (cp_parser *parser, bool address_p, bool cast_p,
8771 bool decltype_p, cp_id_kind * pidk)
8773 /* If it's a `(', then we might be looking at a cast. */
8774 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
8776 tree type = NULL_TREE;
8777 cp_expr expr (NULL_TREE);
8778 int cast_expression = 0;
8779 const char *saved_message;
8781 /* There's no way to know yet whether or not this is a cast.
8782 For example, `(int (3))' is a unary-expression, while `(int)
8783 3' is a cast. So, we resort to parsing tentatively. */
8784 cp_parser_parse_tentatively (parser);
8785 /* Types may not be defined in a cast. */
8786 saved_message = parser->type_definition_forbidden_message;
8787 parser->type_definition_forbidden_message
8788 = G_("types may not be defined in casts");
8789 /* Consume the `('. */
8790 cp_token *open_paren = cp_lexer_consume_token (parser->lexer);
8791 location_t open_paren_loc = open_paren->location;
8792 location_t close_paren_loc = UNKNOWN_LOCATION;
8794 /* A very tricky bit is that `(struct S) { 3 }' is a
8795 compound-literal (which we permit in C++ as an extension).
8796 But, that construct is not a cast-expression -- it is a
8797 postfix-expression. (The reason is that `(struct S) { 3 }.i'
8798 is legal; if the compound-literal were a cast-expression,
8799 you'd need an extra set of parentheses.) But, if we parse
8800 the type-id, and it happens to be a class-specifier, then we
8801 will commit to the parse at that point, because we cannot
8802 undo the action that is done when creating a new class. So,
8803 then we cannot back up and do a postfix-expression.
8805 Another tricky case is the following (c++/29234):
8807 struct S { void operator () (); };
8809 void foo ()
8811 ( S()() );
8814 As a type-id we parse the parenthesized S()() as a function
8815 returning a function, groktypename complains and we cannot
8816 back up in this case either.
8818 Therefore, we scan ahead to the closing `)', and check to see
8819 if the tokens after the `)' can start a cast-expression. Otherwise
8820 we are dealing with an unary-expression, a postfix-expression
8821 or something else.
8823 Yet another tricky case, in C++11, is the following (c++/54891):
8825 (void)[]{};
8827 The issue is that usually, besides the case of lambda-expressions,
8828 the parenthesized type-id cannot be followed by '[', and, eg, we
8829 want to parse '(C ())[2];' in parse/pr26997.C as unary-expression.
8830 Thus, if cp_parser_tokens_start_cast_expression returns -1, below
8831 we don't commit, we try a cast-expression, then an unary-expression.
8833 Save tokens so that we can put them back. */
8834 cp_lexer_save_tokens (parser->lexer);
8836 /* We may be looking at a cast-expression. */
8837 if (cp_parser_skip_to_closing_parenthesis (parser, false, false,
8838 /*consume_paren=*/true))
8839 cast_expression
8840 = cp_parser_tokens_start_cast_expression (parser);
8842 /* Roll back the tokens we skipped. */
8843 cp_lexer_rollback_tokens (parser->lexer);
8844 /* If we aren't looking at a cast-expression, simulate an error so
8845 that the call to cp_parser_error_occurred below returns true. */
8846 if (!cast_expression)
8847 cp_parser_simulate_error (parser);
8848 else
8850 bool saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
8851 parser->in_type_id_in_expr_p = true;
8852 /* Look for the type-id. */
8853 type = cp_parser_type_id (parser);
8854 /* Look for the closing `)'. */
8855 cp_token *close_paren
8856 = cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
8857 if (close_paren)
8858 close_paren_loc = close_paren->location;
8859 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
8862 /* Restore the saved message. */
8863 parser->type_definition_forbidden_message = saved_message;
8865 /* At this point this can only be either a cast or a
8866 parenthesized ctor such as `(T ())' that looks like a cast to
8867 function returning T. */
8868 if (!cp_parser_error_occurred (parser))
8870 /* Only commit if the cast-expression doesn't start with
8871 '++', '--', or '[' in C++11. */
8872 if (cast_expression > 0)
8873 cp_parser_commit_to_topmost_tentative_parse (parser);
8875 expr = cp_parser_cast_expression (parser,
8876 /*address_p=*/false,
8877 /*cast_p=*/true,
8878 /*decltype_p=*/false,
8879 pidk);
8881 if (cp_parser_parse_definitely (parser))
8883 /* Warn about old-style casts, if so requested. */
8884 if (warn_old_style_cast
8885 && !in_system_header_at (input_location)
8886 && !VOID_TYPE_P (type)
8887 && current_lang_name != lang_name_c)
8889 gcc_rich_location rich_loc (input_location);
8890 maybe_add_cast_fixit (&rich_loc, open_paren_loc, close_paren_loc,
8891 expr, type);
8892 warning_at_rich_loc (&rich_loc, OPT_Wold_style_cast,
8893 "use of old-style cast to %qT", type);
8896 /* Only type conversions to integral or enumeration types
8897 can be used in constant-expressions. */
8898 if (!cast_valid_in_integral_constant_expression_p (type)
8899 && cp_parser_non_integral_constant_expression (parser,
8900 NIC_CAST))
8901 return error_mark_node;
8903 /* Perform the cast. */
8904 /* Make a location:
8905 (TYPE) EXPR
8906 ^~~~~~~~~~~
8907 with start==caret at the open paren, extending to the
8908 end of "expr". */
8909 location_t cast_loc = make_location (open_paren_loc,
8910 open_paren_loc,
8911 expr.get_finish ());
8912 expr = build_c_cast (cast_loc, type, expr);
8913 return expr;
8916 else
8917 cp_parser_abort_tentative_parse (parser);
8920 /* If we get here, then it's not a cast, so it must be a
8921 unary-expression. */
8922 return cp_parser_unary_expression (parser, pidk, address_p,
8923 cast_p, decltype_p);
8926 /* Parse a binary expression of the general form:
8928 pm-expression:
8929 cast-expression
8930 pm-expression .* cast-expression
8931 pm-expression ->* cast-expression
8933 multiplicative-expression:
8934 pm-expression
8935 multiplicative-expression * pm-expression
8936 multiplicative-expression / pm-expression
8937 multiplicative-expression % pm-expression
8939 additive-expression:
8940 multiplicative-expression
8941 additive-expression + multiplicative-expression
8942 additive-expression - multiplicative-expression
8944 shift-expression:
8945 additive-expression
8946 shift-expression << additive-expression
8947 shift-expression >> additive-expression
8949 relational-expression:
8950 shift-expression
8951 relational-expression < shift-expression
8952 relational-expression > shift-expression
8953 relational-expression <= shift-expression
8954 relational-expression >= shift-expression
8956 GNU Extension:
8958 relational-expression:
8959 relational-expression <? shift-expression
8960 relational-expression >? shift-expression
8962 equality-expression:
8963 relational-expression
8964 equality-expression == relational-expression
8965 equality-expression != relational-expression
8967 and-expression:
8968 equality-expression
8969 and-expression & equality-expression
8971 exclusive-or-expression:
8972 and-expression
8973 exclusive-or-expression ^ and-expression
8975 inclusive-or-expression:
8976 exclusive-or-expression
8977 inclusive-or-expression | exclusive-or-expression
8979 logical-and-expression:
8980 inclusive-or-expression
8981 logical-and-expression && inclusive-or-expression
8983 logical-or-expression:
8984 logical-and-expression
8985 logical-or-expression || logical-and-expression
8987 All these are implemented with a single function like:
8989 binary-expression:
8990 simple-cast-expression
8991 binary-expression <token> binary-expression
8993 CAST_P is true if this expression is the target of a cast.
8995 The binops_by_token map is used to get the tree codes for each <token> type.
8996 binary-expressions are associated according to a precedence table. */
8998 #define TOKEN_PRECEDENCE(token) \
8999 (((token->type == CPP_GREATER \
9000 || ((cxx_dialect != cxx98) && token->type == CPP_RSHIFT)) \
9001 && !parser->greater_than_is_operator_p) \
9002 ? PREC_NOT_OPERATOR \
9003 : binops_by_token[token->type].prec)
9005 static cp_expr
9006 cp_parser_binary_expression (cp_parser* parser, bool cast_p,
9007 bool no_toplevel_fold_p,
9008 bool decltype_p,
9009 enum cp_parser_prec prec,
9010 cp_id_kind * pidk)
9012 cp_parser_expression_stack stack;
9013 cp_parser_expression_stack_entry *sp = &stack[0];
9014 cp_parser_expression_stack_entry current;
9015 cp_expr rhs;
9016 cp_token *token;
9017 enum tree_code rhs_type;
9018 enum cp_parser_prec new_prec, lookahead_prec;
9019 tree overload;
9021 /* Parse the first expression. */
9022 current.lhs_type = (cp_lexer_next_token_is (parser->lexer, CPP_NOT)
9023 ? TRUTH_NOT_EXPR : ERROR_MARK);
9024 current.lhs = cp_parser_cast_expression (parser, /*address_p=*/false,
9025 cast_p, decltype_p, pidk);
9026 current.prec = prec;
9028 if (cp_parser_error_occurred (parser))
9029 return error_mark_node;
9031 for (;;)
9033 /* Get an operator token. */
9034 token = cp_lexer_peek_token (parser->lexer);
9036 if (warn_cxx11_compat
9037 && token->type == CPP_RSHIFT
9038 && !parser->greater_than_is_operator_p)
9040 if (warning_at (token->location, OPT_Wc__11_compat,
9041 "%<>>%> operator is treated"
9042 " as two right angle brackets in C++11"))
9043 inform (token->location,
9044 "suggest parentheses around %<>>%> expression");
9047 new_prec = TOKEN_PRECEDENCE (token);
9048 if (new_prec != PREC_NOT_OPERATOR
9049 && cp_lexer_nth_token_is (parser->lexer, 2, CPP_ELLIPSIS))
9050 /* This is a fold-expression; handle it later. */
9051 new_prec = PREC_NOT_OPERATOR;
9053 /* Popping an entry off the stack means we completed a subexpression:
9054 - either we found a token which is not an operator (`>' where it is not
9055 an operator, or prec == PREC_NOT_OPERATOR), in which case popping
9056 will happen repeatedly;
9057 - or, we found an operator which has lower priority. This is the case
9058 where the recursive descent *ascends*, as in `3 * 4 + 5' after
9059 parsing `3 * 4'. */
9060 if (new_prec <= current.prec)
9062 if (sp == stack)
9063 break;
9064 else
9065 goto pop;
9068 get_rhs:
9069 current.tree_type = binops_by_token[token->type].tree_type;
9070 current.loc = token->location;
9072 /* We used the operator token. */
9073 cp_lexer_consume_token (parser->lexer);
9075 /* For "false && x" or "true || x", x will never be executed;
9076 disable warnings while evaluating it. */
9077 if (current.tree_type == TRUTH_ANDIF_EXPR)
9078 c_inhibit_evaluation_warnings +=
9079 cp_fully_fold (current.lhs) == truthvalue_false_node;
9080 else if (current.tree_type == TRUTH_ORIF_EXPR)
9081 c_inhibit_evaluation_warnings +=
9082 cp_fully_fold (current.lhs) == truthvalue_true_node;
9084 /* Extract another operand. It may be the RHS of this expression
9085 or the LHS of a new, higher priority expression. */
9086 rhs_type = (cp_lexer_next_token_is (parser->lexer, CPP_NOT)
9087 ? TRUTH_NOT_EXPR : ERROR_MARK);
9088 rhs = cp_parser_simple_cast_expression (parser);
9090 /* Get another operator token. Look up its precedence to avoid
9091 building a useless (immediately popped) stack entry for common
9092 cases such as 3 + 4 + 5 or 3 * 4 + 5. */
9093 token = cp_lexer_peek_token (parser->lexer);
9094 lookahead_prec = TOKEN_PRECEDENCE (token);
9095 if (lookahead_prec != PREC_NOT_OPERATOR
9096 && cp_lexer_nth_token_is (parser->lexer, 2, CPP_ELLIPSIS))
9097 lookahead_prec = PREC_NOT_OPERATOR;
9098 if (lookahead_prec > new_prec)
9100 /* ... and prepare to parse the RHS of the new, higher priority
9101 expression. Since precedence levels on the stack are
9102 monotonically increasing, we do not have to care about
9103 stack overflows. */
9104 *sp = current;
9105 ++sp;
9106 current.lhs = rhs;
9107 current.lhs_type = rhs_type;
9108 current.prec = new_prec;
9109 new_prec = lookahead_prec;
9110 goto get_rhs;
9112 pop:
9113 lookahead_prec = new_prec;
9114 /* If the stack is not empty, we have parsed into LHS the right side
9115 (`4' in the example above) of an expression we had suspended.
9116 We can use the information on the stack to recover the LHS (`3')
9117 from the stack together with the tree code (`MULT_EXPR'), and
9118 the precedence of the higher level subexpression
9119 (`PREC_ADDITIVE_EXPRESSION'). TOKEN is the CPP_PLUS token,
9120 which will be used to actually build the additive expression. */
9121 rhs = current.lhs;
9122 rhs_type = current.lhs_type;
9123 --sp;
9124 current = *sp;
9127 /* Undo the disabling of warnings done above. */
9128 if (current.tree_type == TRUTH_ANDIF_EXPR)
9129 c_inhibit_evaluation_warnings -=
9130 cp_fully_fold (current.lhs) == truthvalue_false_node;
9131 else if (current.tree_type == TRUTH_ORIF_EXPR)
9132 c_inhibit_evaluation_warnings -=
9133 cp_fully_fold (current.lhs) == truthvalue_true_node;
9135 if (warn_logical_not_paren
9136 && TREE_CODE_CLASS (current.tree_type) == tcc_comparison
9137 && current.lhs_type == TRUTH_NOT_EXPR
9138 /* Avoid warning for !!x == y. */
9139 && (TREE_CODE (current.lhs) != NE_EXPR
9140 || !integer_zerop (TREE_OPERAND (current.lhs, 1)))
9141 && (TREE_CODE (current.lhs) != TRUTH_NOT_EXPR
9142 || (TREE_CODE (TREE_OPERAND (current.lhs, 0)) != TRUTH_NOT_EXPR
9143 /* Avoid warning for !b == y where b is boolean. */
9144 && (TREE_TYPE (TREE_OPERAND (current.lhs, 0)) == NULL_TREE
9145 || (TREE_CODE (TREE_TYPE (TREE_OPERAND (current.lhs, 0)))
9146 != BOOLEAN_TYPE))))
9147 /* Avoid warning for !!b == y where b is boolean. */
9148 && (!DECL_P (current.lhs)
9149 || TREE_TYPE (current.lhs) == NULL_TREE
9150 || TREE_CODE (TREE_TYPE (current.lhs)) != BOOLEAN_TYPE))
9151 warn_logical_not_parentheses (current.loc, current.tree_type,
9152 current.lhs, maybe_constant_value (rhs));
9154 overload = NULL;
9156 location_t combined_loc = make_location (current.loc,
9157 current.lhs.get_start (),
9158 rhs.get_finish ());
9160 /* ??? Currently we pass lhs_type == ERROR_MARK and rhs_type ==
9161 ERROR_MARK for everything that is not a binary expression.
9162 This makes warn_about_parentheses miss some warnings that
9163 involve unary operators. For unary expressions we should
9164 pass the correct tree_code unless the unary expression was
9165 surrounded by parentheses.
9167 if (no_toplevel_fold_p
9168 && lookahead_prec <= current.prec
9169 && sp == stack)
9170 current.lhs = build2_loc (combined_loc,
9171 current.tree_type,
9172 TREE_CODE_CLASS (current.tree_type)
9173 == tcc_comparison
9174 ? boolean_type_node : TREE_TYPE (current.lhs),
9175 current.lhs, rhs);
9176 else
9178 current.lhs = build_x_binary_op (combined_loc, current.tree_type,
9179 current.lhs, current.lhs_type,
9180 rhs, rhs_type, &overload,
9181 complain_flags (decltype_p));
9182 /* TODO: build_x_binary_op doesn't always honor the location. */
9183 current.lhs.set_location (combined_loc);
9185 current.lhs_type = current.tree_type;
9187 /* If the binary operator required the use of an overloaded operator,
9188 then this expression cannot be an integral constant-expression.
9189 An overloaded operator can be used even if both operands are
9190 otherwise permissible in an integral constant-expression if at
9191 least one of the operands is of enumeration type. */
9193 if (overload
9194 && cp_parser_non_integral_constant_expression (parser,
9195 NIC_OVERLOADED))
9196 return error_mark_node;
9199 return current.lhs;
9202 static cp_expr
9203 cp_parser_binary_expression (cp_parser* parser, bool cast_p,
9204 bool no_toplevel_fold_p,
9205 enum cp_parser_prec prec,
9206 cp_id_kind * pidk)
9208 return cp_parser_binary_expression (parser, cast_p, no_toplevel_fold_p,
9209 /*decltype*/false, prec, pidk);
9212 /* Parse the `? expression : assignment-expression' part of a
9213 conditional-expression. The LOGICAL_OR_EXPR is the
9214 logical-or-expression that started the conditional-expression.
9215 Returns a representation of the entire conditional-expression.
9217 This routine is used by cp_parser_assignment_expression.
9219 ? expression : assignment-expression
9221 GNU Extensions:
9223 ? : assignment-expression */
9225 static tree
9226 cp_parser_question_colon_clause (cp_parser* parser, cp_expr logical_or_expr)
9228 tree expr, folded_logical_or_expr = cp_fully_fold (logical_or_expr);
9229 cp_expr assignment_expr;
9230 struct cp_token *token;
9231 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
9233 /* Consume the `?' token. */
9234 cp_lexer_consume_token (parser->lexer);
9235 token = cp_lexer_peek_token (parser->lexer);
9236 if (cp_parser_allow_gnu_extensions_p (parser)
9237 && token->type == CPP_COLON)
9239 pedwarn (token->location, OPT_Wpedantic,
9240 "ISO C++ does not allow ?: with omitted middle operand");
9241 /* Implicit true clause. */
9242 expr = NULL_TREE;
9243 c_inhibit_evaluation_warnings +=
9244 folded_logical_or_expr == truthvalue_true_node;
9245 warn_for_omitted_condop (token->location, logical_or_expr);
9247 else
9249 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
9250 parser->colon_corrects_to_scope_p = false;
9251 /* Parse the expression. */
9252 c_inhibit_evaluation_warnings +=
9253 folded_logical_or_expr == truthvalue_false_node;
9254 expr = cp_parser_expression (parser);
9255 c_inhibit_evaluation_warnings +=
9256 ((folded_logical_or_expr == truthvalue_true_node)
9257 - (folded_logical_or_expr == truthvalue_false_node));
9258 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
9261 /* The next token should be a `:'. */
9262 cp_parser_require (parser, CPP_COLON, RT_COLON);
9263 /* Parse the assignment-expression. */
9264 assignment_expr = cp_parser_assignment_expression (parser);
9265 c_inhibit_evaluation_warnings -=
9266 folded_logical_or_expr == truthvalue_true_node;
9268 /* Make a location:
9269 LOGICAL_OR_EXPR ? EXPR : ASSIGNMENT_EXPR
9270 ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
9271 with the caret at the "?", ranging from the start of
9272 the logical_or_expr to the end of the assignment_expr. */
9273 loc = make_location (loc,
9274 logical_or_expr.get_start (),
9275 assignment_expr.get_finish ());
9277 /* Build the conditional-expression. */
9278 return build_x_conditional_expr (loc, logical_or_expr,
9279 expr,
9280 assignment_expr,
9281 tf_warning_or_error);
9284 /* Parse an assignment-expression.
9286 assignment-expression:
9287 conditional-expression
9288 logical-or-expression assignment-operator assignment_expression
9289 throw-expression
9291 CAST_P is true if this expression is the target of a cast.
9292 DECLTYPE_P is true if this expression is the operand of decltype.
9294 Returns a representation for the expression. */
9296 static cp_expr
9297 cp_parser_assignment_expression (cp_parser* parser, cp_id_kind * pidk,
9298 bool cast_p, bool decltype_p)
9300 cp_expr expr;
9302 /* If the next token is the `throw' keyword, then we're looking at
9303 a throw-expression. */
9304 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_THROW))
9305 expr = cp_parser_throw_expression (parser);
9306 /* Otherwise, it must be that we are looking at a
9307 logical-or-expression. */
9308 else
9310 /* Parse the binary expressions (logical-or-expression). */
9311 expr = cp_parser_binary_expression (parser, cast_p, false,
9312 decltype_p,
9313 PREC_NOT_OPERATOR, pidk);
9314 /* If the next token is a `?' then we're actually looking at a
9315 conditional-expression. */
9316 if (cp_lexer_next_token_is (parser->lexer, CPP_QUERY))
9317 return cp_parser_question_colon_clause (parser, expr);
9318 else
9320 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
9322 /* If it's an assignment-operator, we're using the second
9323 production. */
9324 enum tree_code assignment_operator
9325 = cp_parser_assignment_operator_opt (parser);
9326 if (assignment_operator != ERROR_MARK)
9328 bool non_constant_p;
9330 /* Parse the right-hand side of the assignment. */
9331 cp_expr rhs = cp_parser_initializer_clause (parser,
9332 &non_constant_p);
9334 if (BRACE_ENCLOSED_INITIALIZER_P (rhs))
9335 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
9337 /* An assignment may not appear in a
9338 constant-expression. */
9339 if (cp_parser_non_integral_constant_expression (parser,
9340 NIC_ASSIGNMENT))
9341 return error_mark_node;
9342 /* Build the assignment expression. Its default
9343 location:
9344 LHS = RHS
9345 ~~~~^~~~~
9346 is the location of the '=' token as the
9347 caret, ranging from the start of the lhs to the
9348 end of the rhs. */
9349 loc = make_location (loc,
9350 expr.get_start (),
9351 rhs.get_finish ());
9352 expr = build_x_modify_expr (loc, expr,
9353 assignment_operator,
9354 rhs,
9355 complain_flags (decltype_p));
9356 /* TODO: build_x_modify_expr doesn't honor the location,
9357 so we must set it here. */
9358 expr.set_location (loc);
9363 return expr;
9366 /* Parse an (optional) assignment-operator.
9368 assignment-operator: one of
9369 = *= /= %= += -= >>= <<= &= ^= |=
9371 GNU Extension:
9373 assignment-operator: one of
9374 <?= >?=
9376 If the next token is an assignment operator, the corresponding tree
9377 code is returned, and the token is consumed. For example, for
9378 `+=', PLUS_EXPR is returned. For `=' itself, the code returned is
9379 NOP_EXPR. For `/', TRUNC_DIV_EXPR is returned; for `%',
9380 TRUNC_MOD_EXPR is returned. If TOKEN is not an assignment
9381 operator, ERROR_MARK is returned. */
9383 static enum tree_code
9384 cp_parser_assignment_operator_opt (cp_parser* parser)
9386 enum tree_code op;
9387 cp_token *token;
9389 /* Peek at the next token. */
9390 token = cp_lexer_peek_token (parser->lexer);
9392 switch (token->type)
9394 case CPP_EQ:
9395 op = NOP_EXPR;
9396 break;
9398 case CPP_MULT_EQ:
9399 op = MULT_EXPR;
9400 break;
9402 case CPP_DIV_EQ:
9403 op = TRUNC_DIV_EXPR;
9404 break;
9406 case CPP_MOD_EQ:
9407 op = TRUNC_MOD_EXPR;
9408 break;
9410 case CPP_PLUS_EQ:
9411 op = PLUS_EXPR;
9412 break;
9414 case CPP_MINUS_EQ:
9415 op = MINUS_EXPR;
9416 break;
9418 case CPP_RSHIFT_EQ:
9419 op = RSHIFT_EXPR;
9420 break;
9422 case CPP_LSHIFT_EQ:
9423 op = LSHIFT_EXPR;
9424 break;
9426 case CPP_AND_EQ:
9427 op = BIT_AND_EXPR;
9428 break;
9430 case CPP_XOR_EQ:
9431 op = BIT_XOR_EXPR;
9432 break;
9434 case CPP_OR_EQ:
9435 op = BIT_IOR_EXPR;
9436 break;
9438 default:
9439 /* Nothing else is an assignment operator. */
9440 op = ERROR_MARK;
9443 /* An operator followed by ... is a fold-expression, handled elsewhere. */
9444 if (op != ERROR_MARK
9445 && cp_lexer_nth_token_is (parser->lexer, 2, CPP_ELLIPSIS))
9446 op = ERROR_MARK;
9448 /* If it was an assignment operator, consume it. */
9449 if (op != ERROR_MARK)
9450 cp_lexer_consume_token (parser->lexer);
9452 return op;
9455 /* Parse an expression.
9457 expression:
9458 assignment-expression
9459 expression , assignment-expression
9461 CAST_P is true if this expression is the target of a cast.
9462 DECLTYPE_P is true if this expression is the immediate operand of decltype,
9463 except possibly parenthesized or on the RHS of a comma (N3276).
9465 Returns a representation of the expression. */
9467 static cp_expr
9468 cp_parser_expression (cp_parser* parser, cp_id_kind * pidk,
9469 bool cast_p, bool decltype_p)
9471 cp_expr expression = NULL_TREE;
9472 location_t loc = UNKNOWN_LOCATION;
9474 while (true)
9476 cp_expr assignment_expression;
9478 /* Parse the next assignment-expression. */
9479 assignment_expression
9480 = cp_parser_assignment_expression (parser, pidk, cast_p, decltype_p);
9482 /* We don't create a temporary for a call that is the immediate operand
9483 of decltype or on the RHS of a comma. But when we see a comma, we
9484 need to create a temporary for a call on the LHS. */
9485 if (decltype_p && !processing_template_decl
9486 && TREE_CODE (assignment_expression) == CALL_EXPR
9487 && CLASS_TYPE_P (TREE_TYPE (assignment_expression))
9488 && cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
9489 assignment_expression
9490 = build_cplus_new (TREE_TYPE (assignment_expression),
9491 assignment_expression, tf_warning_or_error);
9493 /* If this is the first assignment-expression, we can just
9494 save it away. */
9495 if (!expression)
9496 expression = assignment_expression;
9497 else
9499 /* Create a location with caret at the comma, ranging
9500 from the start of the LHS to the end of the RHS. */
9501 loc = make_location (loc,
9502 expression.get_start (),
9503 assignment_expression.get_finish ());
9504 expression = build_x_compound_expr (loc, expression,
9505 assignment_expression,
9506 complain_flags (decltype_p));
9507 expression.set_location (loc);
9509 /* If the next token is not a comma, or we're in a fold-expression, then
9510 we are done with the expression. */
9511 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA)
9512 || cp_lexer_nth_token_is (parser->lexer, 2, CPP_ELLIPSIS))
9513 break;
9514 /* Consume the `,'. */
9515 loc = cp_lexer_peek_token (parser->lexer)->location;
9516 cp_lexer_consume_token (parser->lexer);
9517 /* A comma operator cannot appear in a constant-expression. */
9518 if (cp_parser_non_integral_constant_expression (parser, NIC_COMMA))
9519 expression = error_mark_node;
9522 return expression;
9525 /* Parse a constant-expression.
9527 constant-expression:
9528 conditional-expression
9530 If ALLOW_NON_CONSTANT_P a non-constant expression is silently
9531 accepted. If ALLOW_NON_CONSTANT_P is true and the expression is not
9532 constant, *NON_CONSTANT_P is set to TRUE. If ALLOW_NON_CONSTANT_P
9533 is false, NON_CONSTANT_P should be NULL. */
9535 static cp_expr
9536 cp_parser_constant_expression (cp_parser* parser,
9537 bool allow_non_constant_p,
9538 bool *non_constant_p)
9540 bool saved_integral_constant_expression_p;
9541 bool saved_allow_non_integral_constant_expression_p;
9542 bool saved_non_integral_constant_expression_p;
9543 cp_expr expression;
9545 /* It might seem that we could simply parse the
9546 conditional-expression, and then check to see if it were
9547 TREE_CONSTANT. However, an expression that is TREE_CONSTANT is
9548 one that the compiler can figure out is constant, possibly after
9549 doing some simplifications or optimizations. The standard has a
9550 precise definition of constant-expression, and we must honor
9551 that, even though it is somewhat more restrictive.
9553 For example:
9555 int i[(2, 3)];
9557 is not a legal declaration, because `(2, 3)' is not a
9558 constant-expression. The `,' operator is forbidden in a
9559 constant-expression. However, GCC's constant-folding machinery
9560 will fold this operation to an INTEGER_CST for `3'. */
9562 /* Save the old settings. */
9563 saved_integral_constant_expression_p = parser->integral_constant_expression_p;
9564 saved_allow_non_integral_constant_expression_p
9565 = parser->allow_non_integral_constant_expression_p;
9566 saved_non_integral_constant_expression_p = parser->non_integral_constant_expression_p;
9567 /* We are now parsing a constant-expression. */
9568 parser->integral_constant_expression_p = true;
9569 parser->allow_non_integral_constant_expression_p
9570 = (allow_non_constant_p || cxx_dialect >= cxx11);
9571 parser->non_integral_constant_expression_p = false;
9572 /* Although the grammar says "conditional-expression", we parse an
9573 "assignment-expression", which also permits "throw-expression"
9574 and the use of assignment operators. In the case that
9575 ALLOW_NON_CONSTANT_P is false, we get better errors than we would
9576 otherwise. In the case that ALLOW_NON_CONSTANT_P is true, it is
9577 actually essential that we look for an assignment-expression.
9578 For example, cp_parser_initializer_clauses uses this function to
9579 determine whether a particular assignment-expression is in fact
9580 constant. */
9581 expression = cp_parser_assignment_expression (parser);
9582 /* Restore the old settings. */
9583 parser->integral_constant_expression_p
9584 = saved_integral_constant_expression_p;
9585 parser->allow_non_integral_constant_expression_p
9586 = saved_allow_non_integral_constant_expression_p;
9587 if (cxx_dialect >= cxx11)
9589 /* Require an rvalue constant expression here; that's what our
9590 callers expect. Reference constant expressions are handled
9591 separately in e.g. cp_parser_template_argument. */
9592 tree decay = expression;
9593 if (TREE_TYPE (expression)
9594 && TREE_CODE (TREE_TYPE (expression)) == ARRAY_TYPE)
9595 decay = build_address (expression);
9596 bool is_const = potential_rvalue_constant_expression (decay);
9597 parser->non_integral_constant_expression_p = !is_const;
9598 if (!is_const && !allow_non_constant_p)
9599 require_potential_rvalue_constant_expression (decay);
9601 if (allow_non_constant_p)
9602 *non_constant_p = parser->non_integral_constant_expression_p;
9603 parser->non_integral_constant_expression_p
9604 = saved_non_integral_constant_expression_p;
9606 return expression;
9609 /* Parse __builtin_offsetof.
9611 offsetof-expression:
9612 "__builtin_offsetof" "(" type-id "," offsetof-member-designator ")"
9614 offsetof-member-designator:
9615 id-expression
9616 | offsetof-member-designator "." id-expression
9617 | offsetof-member-designator "[" expression "]"
9618 | offsetof-member-designator "->" id-expression */
9620 static cp_expr
9621 cp_parser_builtin_offsetof (cp_parser *parser)
9623 int save_ice_p, save_non_ice_p;
9624 tree type;
9625 cp_expr expr;
9626 cp_id_kind dummy;
9627 cp_token *token;
9628 location_t finish_loc;
9630 /* We're about to accept non-integral-constant things, but will
9631 definitely yield an integral constant expression. Save and
9632 restore these values around our local parsing. */
9633 save_ice_p = parser->integral_constant_expression_p;
9634 save_non_ice_p = parser->non_integral_constant_expression_p;
9636 location_t start_loc = cp_lexer_peek_token (parser->lexer)->location;
9638 /* Consume the "__builtin_offsetof" token. */
9639 cp_lexer_consume_token (parser->lexer);
9640 /* Consume the opening `('. */
9641 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
9642 /* Parse the type-id. */
9643 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
9644 type = cp_parser_type_id (parser);
9645 /* Look for the `,'. */
9646 cp_parser_require (parser, CPP_COMMA, RT_COMMA);
9647 token = cp_lexer_peek_token (parser->lexer);
9649 /* Build the (type *)null that begins the traditional offsetof macro. */
9650 tree object_ptr
9651 = build_static_cast (build_pointer_type (type), null_pointer_node,
9652 tf_warning_or_error);
9654 /* Parse the offsetof-member-designator. We begin as if we saw "expr->". */
9655 expr = cp_parser_postfix_dot_deref_expression (parser, CPP_DEREF, object_ptr,
9656 true, &dummy, token->location);
9657 while (true)
9659 token = cp_lexer_peek_token (parser->lexer);
9660 switch (token->type)
9662 case CPP_OPEN_SQUARE:
9663 /* offsetof-member-designator "[" expression "]" */
9664 expr = cp_parser_postfix_open_square_expression (parser, expr,
9665 true, false);
9666 break;
9668 case CPP_DEREF:
9669 /* offsetof-member-designator "->" identifier */
9670 expr = grok_array_decl (token->location, expr,
9671 integer_zero_node, false);
9672 /* FALLTHRU */
9674 case CPP_DOT:
9675 /* offsetof-member-designator "." identifier */
9676 cp_lexer_consume_token (parser->lexer);
9677 expr = cp_parser_postfix_dot_deref_expression (parser, CPP_DOT,
9678 expr, true, &dummy,
9679 token->location);
9680 break;
9682 case CPP_CLOSE_PAREN:
9683 /* Consume the ")" token. */
9684 finish_loc = cp_lexer_peek_token (parser->lexer)->location;
9685 cp_lexer_consume_token (parser->lexer);
9686 goto success;
9688 default:
9689 /* Error. We know the following require will fail, but
9690 that gives the proper error message. */
9691 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
9692 cp_parser_skip_to_closing_parenthesis (parser, true, false, true);
9693 expr = error_mark_node;
9694 goto failure;
9698 success:
9699 /* Make a location of the form:
9700 __builtin_offsetof (struct s, f)
9701 ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
9702 with caret at the type-id, ranging from the start of the
9703 "_builtin_offsetof" token to the close paren. */
9704 loc = make_location (loc, start_loc, finish_loc);
9705 /* The result will be an INTEGER_CST, so we need to explicitly
9706 preserve the location. */
9707 expr = cp_expr (finish_offsetof (object_ptr, expr, loc), loc);
9709 failure:
9710 parser->integral_constant_expression_p = save_ice_p;
9711 parser->non_integral_constant_expression_p = save_non_ice_p;
9713 return expr;
9716 /* Parse a trait expression.
9718 Returns a representation of the expression, the underlying type
9719 of the type at issue when KEYWORD is RID_UNDERLYING_TYPE. */
9721 static tree
9722 cp_parser_trait_expr (cp_parser* parser, enum rid keyword)
9724 cp_trait_kind kind;
9725 tree type1, type2 = NULL_TREE;
9726 bool binary = false;
9727 bool variadic = false;
9729 switch (keyword)
9731 case RID_HAS_NOTHROW_ASSIGN:
9732 kind = CPTK_HAS_NOTHROW_ASSIGN;
9733 break;
9734 case RID_HAS_NOTHROW_CONSTRUCTOR:
9735 kind = CPTK_HAS_NOTHROW_CONSTRUCTOR;
9736 break;
9737 case RID_HAS_NOTHROW_COPY:
9738 kind = CPTK_HAS_NOTHROW_COPY;
9739 break;
9740 case RID_HAS_TRIVIAL_ASSIGN:
9741 kind = CPTK_HAS_TRIVIAL_ASSIGN;
9742 break;
9743 case RID_HAS_TRIVIAL_CONSTRUCTOR:
9744 kind = CPTK_HAS_TRIVIAL_CONSTRUCTOR;
9745 break;
9746 case RID_HAS_TRIVIAL_COPY:
9747 kind = CPTK_HAS_TRIVIAL_COPY;
9748 break;
9749 case RID_HAS_TRIVIAL_DESTRUCTOR:
9750 kind = CPTK_HAS_TRIVIAL_DESTRUCTOR;
9751 break;
9752 case RID_HAS_UNIQUE_OBJ_REPRESENTATIONS:
9753 kind = CPTK_HAS_UNIQUE_OBJ_REPRESENTATIONS;
9754 break;
9755 case RID_HAS_VIRTUAL_DESTRUCTOR:
9756 kind = CPTK_HAS_VIRTUAL_DESTRUCTOR;
9757 break;
9758 case RID_IS_ABSTRACT:
9759 kind = CPTK_IS_ABSTRACT;
9760 break;
9761 case RID_IS_AGGREGATE:
9762 kind = CPTK_IS_AGGREGATE;
9763 break;
9764 case RID_IS_BASE_OF:
9765 kind = CPTK_IS_BASE_OF;
9766 binary = true;
9767 break;
9768 case RID_IS_CLASS:
9769 kind = CPTK_IS_CLASS;
9770 break;
9771 case RID_IS_EMPTY:
9772 kind = CPTK_IS_EMPTY;
9773 break;
9774 case RID_IS_ENUM:
9775 kind = CPTK_IS_ENUM;
9776 break;
9777 case RID_IS_FINAL:
9778 kind = CPTK_IS_FINAL;
9779 break;
9780 case RID_IS_LITERAL_TYPE:
9781 kind = CPTK_IS_LITERAL_TYPE;
9782 break;
9783 case RID_IS_POD:
9784 kind = CPTK_IS_POD;
9785 break;
9786 case RID_IS_POLYMORPHIC:
9787 kind = CPTK_IS_POLYMORPHIC;
9788 break;
9789 case RID_IS_SAME_AS:
9790 kind = CPTK_IS_SAME_AS;
9791 binary = true;
9792 break;
9793 case RID_IS_STD_LAYOUT:
9794 kind = CPTK_IS_STD_LAYOUT;
9795 break;
9796 case RID_IS_TRIVIAL:
9797 kind = CPTK_IS_TRIVIAL;
9798 break;
9799 case RID_IS_TRIVIALLY_ASSIGNABLE:
9800 kind = CPTK_IS_TRIVIALLY_ASSIGNABLE;
9801 binary = true;
9802 break;
9803 case RID_IS_TRIVIALLY_CONSTRUCTIBLE:
9804 kind = CPTK_IS_TRIVIALLY_CONSTRUCTIBLE;
9805 variadic = true;
9806 break;
9807 case RID_IS_TRIVIALLY_COPYABLE:
9808 kind = CPTK_IS_TRIVIALLY_COPYABLE;
9809 break;
9810 case RID_IS_UNION:
9811 kind = CPTK_IS_UNION;
9812 break;
9813 case RID_UNDERLYING_TYPE:
9814 kind = CPTK_UNDERLYING_TYPE;
9815 break;
9816 case RID_BASES:
9817 kind = CPTK_BASES;
9818 break;
9819 case RID_DIRECT_BASES:
9820 kind = CPTK_DIRECT_BASES;
9821 break;
9822 case RID_IS_ASSIGNABLE:
9823 kind = CPTK_IS_ASSIGNABLE;
9824 binary = true;
9825 break;
9826 case RID_IS_CONSTRUCTIBLE:
9827 kind = CPTK_IS_CONSTRUCTIBLE;
9828 variadic = true;
9829 break;
9830 default:
9831 gcc_unreachable ();
9834 /* Consume the token. */
9835 cp_lexer_consume_token (parser->lexer);
9837 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
9840 type_id_in_expr_sentinel s (parser);
9841 type1 = cp_parser_type_id (parser);
9844 if (type1 == error_mark_node)
9845 return error_mark_node;
9847 if (binary)
9849 cp_parser_require (parser, CPP_COMMA, RT_COMMA);
9852 type_id_in_expr_sentinel s (parser);
9853 type2 = cp_parser_type_id (parser);
9856 if (type2 == error_mark_node)
9857 return error_mark_node;
9859 else if (variadic)
9861 while (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
9863 cp_lexer_consume_token (parser->lexer);
9864 tree elt = cp_parser_type_id (parser);
9865 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
9867 cp_lexer_consume_token (parser->lexer);
9868 elt = make_pack_expansion (elt);
9870 if (elt == error_mark_node)
9871 return error_mark_node;
9872 type2 = tree_cons (NULL_TREE, elt, type2);
9876 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
9878 /* Complete the trait expression, which may mean either processing
9879 the trait expr now or saving it for template instantiation. */
9880 switch (kind)
9882 case CPTK_UNDERLYING_TYPE:
9883 return finish_underlying_type (type1);
9884 case CPTK_BASES:
9885 return finish_bases (type1, false);
9886 case CPTK_DIRECT_BASES:
9887 return finish_bases (type1, true);
9888 default:
9889 return finish_trait_expr (kind, type1, type2);
9893 /* Lambdas that appear in variable initializer or default argument scope
9894 get that in their mangling, so we need to record it. We might as well
9895 use the count for function and namespace scopes as well. */
9896 static GTY(()) tree lambda_scope;
9897 static GTY(()) int lambda_count;
9898 struct GTY(()) tree_int
9900 tree t;
9901 int i;
9903 static GTY(()) vec<tree_int, va_gc> *lambda_scope_stack;
9905 static void
9906 start_lambda_scope (tree decl)
9908 tree_int ti;
9909 gcc_assert (decl);
9910 /* Once we're inside a function, we ignore other scopes and just push
9911 the function again so that popping works properly. */
9912 if (current_function_decl && TREE_CODE (decl) != FUNCTION_DECL)
9913 decl = current_function_decl;
9914 ti.t = lambda_scope;
9915 ti.i = lambda_count;
9916 vec_safe_push (lambda_scope_stack, ti);
9917 if (lambda_scope != decl)
9919 /* Don't reset the count if we're still in the same function. */
9920 lambda_scope = decl;
9921 lambda_count = 0;
9925 static void
9926 record_lambda_scope (tree lambda)
9928 LAMBDA_EXPR_EXTRA_SCOPE (lambda) = lambda_scope;
9929 LAMBDA_EXPR_DISCRIMINATOR (lambda) = lambda_count++;
9932 static void
9933 finish_lambda_scope (void)
9935 tree_int *p = &lambda_scope_stack->last ();
9936 if (lambda_scope != p->t)
9938 lambda_scope = p->t;
9939 lambda_count = p->i;
9941 lambda_scope_stack->pop ();
9944 /* Parse a lambda expression.
9946 lambda-expression:
9947 lambda-introducer lambda-declarator [opt] compound-statement
9949 Returns a representation of the expression. */
9951 static cp_expr
9952 cp_parser_lambda_expression (cp_parser* parser)
9954 tree lambda_expr = build_lambda_expr ();
9955 tree type;
9956 bool ok = true;
9957 cp_token *token = cp_lexer_peek_token (parser->lexer);
9958 cp_token_position start = 0;
9960 LAMBDA_EXPR_LOCATION (lambda_expr) = token->location;
9962 if (cp_unevaluated_operand)
9964 if (!token->error_reported)
9966 error_at (LAMBDA_EXPR_LOCATION (lambda_expr),
9967 "lambda-expression in unevaluated context");
9968 token->error_reported = true;
9970 ok = false;
9972 else if (parser->in_template_argument_list_p)
9974 if (!token->error_reported)
9976 error_at (token->location, "lambda-expression in template-argument");
9977 token->error_reported = true;
9979 ok = false;
9982 /* We may be in the middle of deferred access check. Disable
9983 it now. */
9984 push_deferring_access_checks (dk_no_deferred);
9986 cp_parser_lambda_introducer (parser, lambda_expr);
9988 type = begin_lambda_type (lambda_expr);
9989 if (type == error_mark_node)
9990 return error_mark_node;
9992 record_lambda_scope (lambda_expr);
9994 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
9995 determine_visibility (TYPE_NAME (type));
9997 /* Now that we've started the type, add the capture fields for any
9998 explicit captures. */
9999 register_capture_members (LAMBDA_EXPR_CAPTURE_LIST (lambda_expr));
10002 /* Inside the class, surrounding template-parameter-lists do not apply. */
10003 unsigned int saved_num_template_parameter_lists
10004 = parser->num_template_parameter_lists;
10005 unsigned char in_statement = parser->in_statement;
10006 bool in_switch_statement_p = parser->in_switch_statement_p;
10007 bool fully_implicit_function_template_p
10008 = parser->fully_implicit_function_template_p;
10009 tree implicit_template_parms = parser->implicit_template_parms;
10010 cp_binding_level* implicit_template_scope = parser->implicit_template_scope;
10011 bool auto_is_implicit_function_template_parm_p
10012 = parser->auto_is_implicit_function_template_parm_p;
10014 parser->num_template_parameter_lists = 0;
10015 parser->in_statement = 0;
10016 parser->in_switch_statement_p = false;
10017 parser->fully_implicit_function_template_p = false;
10018 parser->implicit_template_parms = 0;
10019 parser->implicit_template_scope = 0;
10020 parser->auto_is_implicit_function_template_parm_p = false;
10022 /* By virtue of defining a local class, a lambda expression has access to
10023 the private variables of enclosing classes. */
10025 ok &= cp_parser_lambda_declarator_opt (parser, lambda_expr);
10027 if (ok && cp_parser_error_occurred (parser))
10028 ok = false;
10030 if (ok)
10032 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE)
10033 && cp_parser_start_tentative_firewall (parser))
10034 start = token;
10035 cp_parser_lambda_body (parser, lambda_expr);
10037 else if (cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
10039 if (cp_parser_skip_to_closing_brace (parser))
10040 cp_lexer_consume_token (parser->lexer);
10043 /* The capture list was built up in reverse order; fix that now. */
10044 LAMBDA_EXPR_CAPTURE_LIST (lambda_expr)
10045 = nreverse (LAMBDA_EXPR_CAPTURE_LIST (lambda_expr));
10047 if (ok)
10048 maybe_add_lambda_conv_op (type);
10050 type = finish_struct (type, /*attributes=*/NULL_TREE);
10052 parser->num_template_parameter_lists = saved_num_template_parameter_lists;
10053 parser->in_statement = in_statement;
10054 parser->in_switch_statement_p = in_switch_statement_p;
10055 parser->fully_implicit_function_template_p
10056 = fully_implicit_function_template_p;
10057 parser->implicit_template_parms = implicit_template_parms;
10058 parser->implicit_template_scope = implicit_template_scope;
10059 parser->auto_is_implicit_function_template_parm_p
10060 = auto_is_implicit_function_template_parm_p;
10063 /* This field is only used during parsing of the lambda. */
10064 LAMBDA_EXPR_THIS_CAPTURE (lambda_expr) = NULL_TREE;
10066 /* This lambda shouldn't have any proxies left at this point. */
10067 gcc_assert (LAMBDA_EXPR_PENDING_PROXIES (lambda_expr) == NULL);
10068 /* And now that we're done, push proxies for an enclosing lambda. */
10069 insert_pending_capture_proxies ();
10071 if (ok)
10072 lambda_expr = build_lambda_object (lambda_expr);
10073 else
10074 lambda_expr = error_mark_node;
10076 cp_parser_end_tentative_firewall (parser, start, lambda_expr);
10078 pop_deferring_access_checks ();
10080 return lambda_expr;
10083 /* Parse the beginning of a lambda expression.
10085 lambda-introducer:
10086 [ lambda-capture [opt] ]
10088 LAMBDA_EXPR is the current representation of the lambda expression. */
10090 static void
10091 cp_parser_lambda_introducer (cp_parser* parser, tree lambda_expr)
10093 /* Need commas after the first capture. */
10094 bool first = true;
10096 /* Eat the leading `['. */
10097 cp_parser_require (parser, CPP_OPEN_SQUARE, RT_OPEN_SQUARE);
10099 /* Record default capture mode. "[&" "[=" "[&," "[=," */
10100 if (cp_lexer_next_token_is (parser->lexer, CPP_AND)
10101 && cp_lexer_peek_nth_token (parser->lexer, 2)->type != CPP_NAME)
10102 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) = CPLD_REFERENCE;
10103 else if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
10104 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) = CPLD_COPY;
10106 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) != CPLD_NONE)
10108 cp_lexer_consume_token (parser->lexer);
10109 first = false;
10112 while (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_SQUARE))
10114 cp_token* capture_token;
10115 tree capture_id;
10116 tree capture_init_expr;
10117 cp_id_kind idk = CP_ID_KIND_NONE;
10118 bool explicit_init_p = false;
10120 enum capture_kind_type
10122 BY_COPY,
10123 BY_REFERENCE
10125 enum capture_kind_type capture_kind = BY_COPY;
10127 if (cp_lexer_next_token_is (parser->lexer, CPP_EOF))
10129 error ("expected end of capture-list");
10130 return;
10133 if (first)
10134 first = false;
10135 else
10136 cp_parser_require (parser, CPP_COMMA, RT_COMMA);
10138 /* Possibly capture `this'. */
10139 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_THIS))
10141 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
10142 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) == CPLD_COPY)
10143 pedwarn (loc, 0, "explicit by-copy capture of %<this%> redundant "
10144 "with by-copy capture default");
10145 cp_lexer_consume_token (parser->lexer);
10146 add_capture (lambda_expr,
10147 /*id=*/this_identifier,
10148 /*initializer=*/finish_this_expr (),
10149 /*by_reference_p=*/true,
10150 explicit_init_p);
10151 continue;
10154 /* Possibly capture `*this'. */
10155 if (cp_lexer_next_token_is (parser->lexer, CPP_MULT)
10156 && cp_lexer_nth_token_is_keyword (parser->lexer, 2, RID_THIS))
10158 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
10159 if (cxx_dialect < cxx1z)
10160 pedwarn (loc, 0, "%<*this%> capture only available with "
10161 "-std=c++1z or -std=gnu++1z");
10162 cp_lexer_consume_token (parser->lexer);
10163 cp_lexer_consume_token (parser->lexer);
10164 add_capture (lambda_expr,
10165 /*id=*/this_identifier,
10166 /*initializer=*/finish_this_expr (),
10167 /*by_reference_p=*/false,
10168 explicit_init_p);
10169 continue;
10172 /* Remember whether we want to capture as a reference or not. */
10173 if (cp_lexer_next_token_is (parser->lexer, CPP_AND))
10175 capture_kind = BY_REFERENCE;
10176 cp_lexer_consume_token (parser->lexer);
10179 /* Get the identifier. */
10180 capture_token = cp_lexer_peek_token (parser->lexer);
10181 capture_id = cp_parser_identifier (parser);
10183 if (capture_id == error_mark_node)
10184 /* Would be nice to have a cp_parser_skip_to_closing_x for general
10185 delimiters, but I modified this to stop on unnested ']' as well. It
10186 was already changed to stop on unnested '}', so the
10187 "closing_parenthesis" name is no more misleading with my change. */
10189 cp_parser_skip_to_closing_parenthesis (parser,
10190 /*recovering=*/true,
10191 /*or_comma=*/true,
10192 /*consume_paren=*/true);
10193 break;
10196 /* Find the initializer for this capture. */
10197 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ)
10198 || cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN)
10199 || cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
10201 bool direct, non_constant;
10202 /* An explicit initializer exists. */
10203 if (cxx_dialect < cxx14)
10204 pedwarn (input_location, 0,
10205 "lambda capture initializers "
10206 "only available with -std=c++14 or -std=gnu++14");
10207 capture_init_expr = cp_parser_initializer (parser, &direct,
10208 &non_constant);
10209 explicit_init_p = true;
10210 if (capture_init_expr == NULL_TREE)
10212 error ("empty initializer for lambda init-capture");
10213 capture_init_expr = error_mark_node;
10216 else
10218 const char* error_msg;
10220 /* Turn the identifier into an id-expression. */
10221 capture_init_expr
10222 = cp_parser_lookup_name_simple (parser, capture_id,
10223 capture_token->location);
10225 if (capture_init_expr == error_mark_node)
10227 unqualified_name_lookup_error (capture_id);
10228 continue;
10230 else if (DECL_P (capture_init_expr)
10231 && (!VAR_P (capture_init_expr)
10232 && TREE_CODE (capture_init_expr) != PARM_DECL))
10234 error_at (capture_token->location,
10235 "capture of non-variable %qD ",
10236 capture_init_expr);
10237 inform (DECL_SOURCE_LOCATION (capture_init_expr),
10238 "%q#D declared here", capture_init_expr);
10239 continue;
10241 if (VAR_P (capture_init_expr)
10242 && decl_storage_duration (capture_init_expr) != dk_auto)
10244 if (pedwarn (capture_token->location, 0, "capture of variable "
10245 "%qD with non-automatic storage duration",
10246 capture_init_expr))
10247 inform (DECL_SOURCE_LOCATION (capture_init_expr),
10248 "%q#D declared here", capture_init_expr);
10249 continue;
10252 capture_init_expr
10253 = finish_id_expression
10254 (capture_id,
10255 capture_init_expr,
10256 parser->scope,
10257 &idk,
10258 /*integral_constant_expression_p=*/false,
10259 /*allow_non_integral_constant_expression_p=*/false,
10260 /*non_integral_constant_expression_p=*/NULL,
10261 /*template_p=*/false,
10262 /*done=*/true,
10263 /*address_p=*/false,
10264 /*template_arg_p=*/false,
10265 &error_msg,
10266 capture_token->location);
10268 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
10270 cp_lexer_consume_token (parser->lexer);
10271 capture_init_expr = make_pack_expansion (capture_init_expr);
10273 else
10274 check_for_bare_parameter_packs (capture_init_expr);
10277 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) != CPLD_NONE
10278 && !explicit_init_p)
10280 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) == CPLD_COPY
10281 && capture_kind == BY_COPY)
10282 pedwarn (capture_token->location, 0, "explicit by-copy capture "
10283 "of %qD redundant with by-copy capture default",
10284 capture_id);
10285 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) == CPLD_REFERENCE
10286 && capture_kind == BY_REFERENCE)
10287 pedwarn (capture_token->location, 0, "explicit by-reference "
10288 "capture of %qD redundant with by-reference capture "
10289 "default", capture_id);
10292 add_capture (lambda_expr,
10293 capture_id,
10294 capture_init_expr,
10295 /*by_reference_p=*/capture_kind == BY_REFERENCE,
10296 explicit_init_p);
10299 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
10302 /* Parse the (optional) middle of a lambda expression.
10304 lambda-declarator:
10305 < template-parameter-list [opt] >
10306 ( parameter-declaration-clause [opt] )
10307 attribute-specifier [opt]
10308 decl-specifier-seq [opt]
10309 exception-specification [opt]
10310 lambda-return-type-clause [opt]
10312 LAMBDA_EXPR is the current representation of the lambda expression. */
10314 static bool
10315 cp_parser_lambda_declarator_opt (cp_parser* parser, tree lambda_expr)
10317 /* 5.1.1.4 of the standard says:
10318 If a lambda-expression does not include a lambda-declarator, it is as if
10319 the lambda-declarator were ().
10320 This means an empty parameter list, no attributes, and no exception
10321 specification. */
10322 tree param_list = void_list_node;
10323 tree attributes = NULL_TREE;
10324 tree exception_spec = NULL_TREE;
10325 tree template_param_list = NULL_TREE;
10326 tree tx_qual = NULL_TREE;
10327 cp_decl_specifier_seq lambda_specs;
10328 clear_decl_specs (&lambda_specs);
10330 /* The template-parameter-list is optional, but must begin with
10331 an opening angle if present. */
10332 if (cp_lexer_next_token_is (parser->lexer, CPP_LESS))
10334 if (cxx_dialect < cxx14)
10335 pedwarn (parser->lexer->next_token->location, 0,
10336 "lambda templates are only available with "
10337 "-std=c++14 or -std=gnu++14");
10338 else
10339 pedwarn (parser->lexer->next_token->location, OPT_Wpedantic,
10340 "ISO C++ does not support lambda templates");
10342 cp_lexer_consume_token (parser->lexer);
10344 template_param_list = cp_parser_template_parameter_list (parser);
10346 cp_parser_skip_to_end_of_template_parameter_list (parser);
10348 /* We just processed one more parameter list. */
10349 ++parser->num_template_parameter_lists;
10352 /* The parameter-declaration-clause is optional (unless
10353 template-parameter-list was given), but must begin with an
10354 opening parenthesis if present. */
10355 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
10357 cp_lexer_consume_token (parser->lexer);
10359 begin_scope (sk_function_parms, /*entity=*/NULL_TREE);
10361 /* Parse parameters. */
10362 param_list = cp_parser_parameter_declaration_clause (parser);
10364 /* Default arguments shall not be specified in the
10365 parameter-declaration-clause of a lambda-declarator. */
10366 if (cxx_dialect < cxx14)
10367 for (tree t = param_list; t; t = TREE_CHAIN (t))
10368 if (TREE_PURPOSE (t) && DECL_P (TREE_VALUE (t)))
10369 pedwarn (DECL_SOURCE_LOCATION (TREE_VALUE (t)), OPT_Wpedantic,
10370 "default argument specified for lambda parameter");
10372 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
10374 attributes = cp_parser_attributes_opt (parser);
10376 /* In the decl-specifier-seq of the lambda-declarator, each
10377 decl-specifier shall either be mutable or constexpr. */
10378 int declares_class_or_enum;
10379 if (cp_lexer_next_token_is_decl_specifier_keyword (parser->lexer))
10380 cp_parser_decl_specifier_seq (parser,
10381 CP_PARSER_FLAGS_ONLY_MUTABLE_OR_CONSTEXPR,
10382 &lambda_specs, &declares_class_or_enum);
10383 if (lambda_specs.storage_class == sc_mutable)
10385 LAMBDA_EXPR_MUTABLE_P (lambda_expr) = 1;
10386 if (lambda_specs.conflicting_specifiers_p)
10387 error_at (lambda_specs.locations[ds_storage_class],
10388 "duplicate %<mutable%>");
10391 tx_qual = cp_parser_tx_qualifier_opt (parser);
10393 /* Parse optional exception specification. */
10394 exception_spec = cp_parser_exception_specification_opt (parser);
10396 /* Parse optional trailing return type. */
10397 if (cp_lexer_next_token_is (parser->lexer, CPP_DEREF))
10399 cp_lexer_consume_token (parser->lexer);
10400 LAMBDA_EXPR_RETURN_TYPE (lambda_expr)
10401 = cp_parser_trailing_type_id (parser);
10404 /* The function parameters must be in scope all the way until after the
10405 trailing-return-type in case of decltype. */
10406 pop_bindings_and_leave_scope ();
10408 else if (template_param_list != NULL_TREE) // generate diagnostic
10409 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
10411 /* Create the function call operator.
10413 Messing with declarators like this is no uglier than building up the
10414 FUNCTION_DECL by hand, and this is less likely to get out of sync with
10415 other code. */
10417 cp_decl_specifier_seq return_type_specs;
10418 cp_declarator* declarator;
10419 tree fco;
10420 int quals;
10421 void *p;
10423 clear_decl_specs (&return_type_specs);
10424 if (LAMBDA_EXPR_RETURN_TYPE (lambda_expr))
10425 return_type_specs.type = LAMBDA_EXPR_RETURN_TYPE (lambda_expr);
10426 else
10427 /* Maybe we will deduce the return type later. */
10428 return_type_specs.type = make_auto ();
10430 if (lambda_specs.locations[ds_constexpr])
10432 if (cxx_dialect >= cxx1z)
10433 return_type_specs.locations[ds_constexpr]
10434 = lambda_specs.locations[ds_constexpr];
10435 else
10436 error_at (lambda_specs.locations[ds_constexpr], "%<constexpr%> "
10437 "lambda only available with -std=c++1z or -std=gnu++1z");
10440 p = obstack_alloc (&declarator_obstack, 0);
10442 declarator = make_id_declarator (NULL_TREE, cp_operator_id (CALL_EXPR),
10443 sfk_none);
10445 quals = (LAMBDA_EXPR_MUTABLE_P (lambda_expr)
10446 ? TYPE_UNQUALIFIED : TYPE_QUAL_CONST);
10447 declarator = make_call_declarator (declarator, param_list, quals,
10448 VIRT_SPEC_UNSPECIFIED,
10449 REF_QUAL_NONE,
10450 tx_qual,
10451 exception_spec,
10452 /*late_return_type=*/NULL_TREE,
10453 /*requires_clause*/NULL_TREE);
10454 declarator->id_loc = LAMBDA_EXPR_LOCATION (lambda_expr);
10456 fco = grokmethod (&return_type_specs,
10457 declarator,
10458 attributes);
10459 if (fco != error_mark_node)
10461 DECL_INITIALIZED_IN_CLASS_P (fco) = 1;
10462 DECL_ARTIFICIAL (fco) = 1;
10463 /* Give the object parameter a different name. */
10464 DECL_NAME (DECL_ARGUMENTS (fco)) = get_identifier ("__closure");
10465 if (LAMBDA_EXPR_RETURN_TYPE (lambda_expr))
10466 TYPE_HAS_LATE_RETURN_TYPE (TREE_TYPE (fco)) = 1;
10468 if (template_param_list)
10470 fco = finish_member_template_decl (fco);
10471 finish_template_decl (template_param_list);
10472 --parser->num_template_parameter_lists;
10474 else if (parser->fully_implicit_function_template_p)
10475 fco = finish_fully_implicit_template (parser, fco);
10477 finish_member_declaration (fco);
10479 obstack_free (&declarator_obstack, p);
10481 return (fco != error_mark_node);
10485 /* Parse the body of a lambda expression, which is simply
10487 compound-statement
10489 but which requires special handling.
10490 LAMBDA_EXPR is the current representation of the lambda expression. */
10492 static void
10493 cp_parser_lambda_body (cp_parser* parser, tree lambda_expr)
10495 bool nested = (current_function_decl != NULL_TREE);
10496 bool local_variables_forbidden_p = parser->local_variables_forbidden_p;
10497 if (nested)
10498 push_function_context ();
10499 else
10500 /* Still increment function_depth so that we don't GC in the
10501 middle of an expression. */
10502 ++function_depth;
10503 vec<tree> omp_privatization_save;
10504 save_omp_privatization_clauses (omp_privatization_save);
10505 /* Clear this in case we're in the middle of a default argument. */
10506 parser->local_variables_forbidden_p = false;
10508 /* Finish the function call operator
10509 - class_specifier
10510 + late_parsing_for_member
10511 + function_definition_after_declarator
10512 + ctor_initializer_opt_and_function_body */
10514 tree fco = lambda_function (lambda_expr);
10515 tree body;
10516 bool done = false;
10517 tree compound_stmt;
10518 tree cap;
10520 /* Let the front end know that we are going to be defining this
10521 function. */
10522 start_preparsed_function (fco,
10523 NULL_TREE,
10524 SF_PRE_PARSED | SF_INCLASS_INLINE);
10526 start_lambda_scope (fco);
10527 body = begin_function_body ();
10529 if (!cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
10530 goto out;
10532 /* Push the proxies for any explicit captures. */
10533 for (cap = LAMBDA_EXPR_CAPTURE_LIST (lambda_expr); cap;
10534 cap = TREE_CHAIN (cap))
10535 build_capture_proxy (TREE_PURPOSE (cap));
10537 compound_stmt = begin_compound_stmt (0);
10539 /* 5.1.1.4 of the standard says:
10540 If a lambda-expression does not include a trailing-return-type, it
10541 is as if the trailing-return-type denotes the following type:
10542 * if the compound-statement is of the form
10543 { return attribute-specifier [opt] expression ; }
10544 the type of the returned expression after lvalue-to-rvalue
10545 conversion (_conv.lval_ 4.1), array-to-pointer conversion
10546 (_conv.array_ 4.2), and function-to-pointer conversion
10547 (_conv.func_ 4.3);
10548 * otherwise, void. */
10550 /* In a lambda that has neither a lambda-return-type-clause
10551 nor a deducible form, errors should be reported for return statements
10552 in the body. Since we used void as the placeholder return type, parsing
10553 the body as usual will give such desired behavior. */
10554 if (!LAMBDA_EXPR_RETURN_TYPE (lambda_expr)
10555 && cp_lexer_peek_nth_token (parser->lexer, 1)->keyword == RID_RETURN
10556 && cp_lexer_peek_nth_token (parser->lexer, 2)->type != CPP_SEMICOLON)
10558 tree expr = NULL_TREE;
10559 cp_id_kind idk = CP_ID_KIND_NONE;
10561 /* Parse tentatively in case there's more after the initial return
10562 statement. */
10563 cp_parser_parse_tentatively (parser);
10565 cp_parser_require_keyword (parser, RID_RETURN, RT_RETURN);
10567 expr = cp_parser_expression (parser, &idk);
10569 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
10570 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
10572 if (cp_parser_parse_definitely (parser))
10574 if (!processing_template_decl)
10576 tree type = lambda_return_type (expr);
10577 apply_deduced_return_type (fco, type);
10578 if (type == error_mark_node)
10579 expr = error_mark_node;
10582 /* Will get error here if type not deduced yet. */
10583 finish_return_stmt (expr);
10585 done = true;
10589 if (!done)
10591 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_LABEL))
10592 cp_parser_label_declaration (parser);
10593 cp_parser_statement_seq_opt (parser, NULL_TREE);
10594 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
10597 finish_compound_stmt (compound_stmt);
10599 out:
10600 finish_function_body (body);
10601 finish_lambda_scope ();
10603 /* Finish the function and generate code for it if necessary. */
10604 tree fn = finish_function (/*inline*/2);
10606 /* Only expand if the call op is not a template. */
10607 if (!DECL_TEMPLATE_INFO (fco))
10608 expand_or_defer_fn (fn);
10611 restore_omp_privatization_clauses (omp_privatization_save);
10612 parser->local_variables_forbidden_p = local_variables_forbidden_p;
10613 if (nested)
10614 pop_function_context();
10615 else
10616 --function_depth;
10619 /* Statements [gram.stmt.stmt] */
10621 /* Parse a statement.
10623 statement:
10624 labeled-statement
10625 expression-statement
10626 compound-statement
10627 selection-statement
10628 iteration-statement
10629 jump-statement
10630 declaration-statement
10631 try-block
10633 C++11:
10635 statement:
10636 labeled-statement
10637 attribute-specifier-seq (opt) expression-statement
10638 attribute-specifier-seq (opt) compound-statement
10639 attribute-specifier-seq (opt) selection-statement
10640 attribute-specifier-seq (opt) iteration-statement
10641 attribute-specifier-seq (opt) jump-statement
10642 declaration-statement
10643 attribute-specifier-seq (opt) try-block
10645 init-statement:
10646 expression-statement
10647 simple-declaration
10649 TM Extension:
10651 statement:
10652 atomic-statement
10654 IN_COMPOUND is true when the statement is nested inside a
10655 cp_parser_compound_statement; this matters for certain pragmas.
10657 If IF_P is not NULL, *IF_P is set to indicate whether the statement
10658 is a (possibly labeled) if statement which is not enclosed in braces
10659 and has an else clause. This is used to implement -Wparentheses.
10661 CHAIN is a vector of if-else-if conditions. */
10663 static void
10664 cp_parser_statement (cp_parser* parser, tree in_statement_expr,
10665 bool in_compound, bool *if_p, vec<tree> *chain,
10666 location_t *loc_after_labels)
10668 tree statement, std_attrs = NULL_TREE;
10669 cp_token *token;
10670 location_t statement_location, attrs_location;
10672 restart:
10673 if (if_p != NULL)
10674 *if_p = false;
10675 /* There is no statement yet. */
10676 statement = NULL_TREE;
10678 saved_token_sentinel saved_tokens (parser->lexer);
10679 attrs_location = cp_lexer_peek_token (parser->lexer)->location;
10680 if (c_dialect_objc ())
10681 /* In obj-c++, seeing '[[' might be the either the beginning of
10682 c++11 attributes, or a nested objc-message-expression. So
10683 let's parse the c++11 attributes tentatively. */
10684 cp_parser_parse_tentatively (parser);
10685 std_attrs = cp_parser_std_attribute_spec_seq (parser);
10686 if (c_dialect_objc ())
10688 if (!cp_parser_parse_definitely (parser))
10689 std_attrs = NULL_TREE;
10692 /* Peek at the next token. */
10693 token = cp_lexer_peek_token (parser->lexer);
10694 /* Remember the location of the first token in the statement. */
10695 statement_location = token->location;
10696 /* If this is a keyword, then that will often determine what kind of
10697 statement we have. */
10698 if (token->type == CPP_KEYWORD)
10700 enum rid keyword = token->keyword;
10702 switch (keyword)
10704 case RID_CASE:
10705 case RID_DEFAULT:
10706 /* Looks like a labeled-statement with a case label.
10707 Parse the label, and then use tail recursion to parse
10708 the statement. */
10709 cp_parser_label_for_labeled_statement (parser, std_attrs);
10710 in_compound = false;
10711 goto restart;
10713 case RID_IF:
10714 case RID_SWITCH:
10715 statement = cp_parser_selection_statement (parser, if_p, chain);
10716 break;
10718 case RID_WHILE:
10719 case RID_DO:
10720 case RID_FOR:
10721 statement = cp_parser_iteration_statement (parser, if_p, false);
10722 break;
10724 case RID_CILK_FOR:
10725 if (!flag_cilkplus)
10727 error_at (cp_lexer_peek_token (parser->lexer)->location,
10728 "-fcilkplus must be enabled to use %<_Cilk_for%>");
10729 cp_lexer_consume_token (parser->lexer);
10730 statement = error_mark_node;
10732 else
10733 statement = cp_parser_cilk_for (parser, integer_zero_node, if_p);
10734 break;
10736 case RID_BREAK:
10737 case RID_CONTINUE:
10738 case RID_RETURN:
10739 case RID_GOTO:
10740 statement = cp_parser_jump_statement (parser);
10741 break;
10743 case RID_CILK_SYNC:
10744 cp_lexer_consume_token (parser->lexer);
10745 if (flag_cilkplus)
10747 tree sync_expr = build_cilk_sync ();
10748 SET_EXPR_LOCATION (sync_expr,
10749 token->location);
10750 statement = finish_expr_stmt (sync_expr);
10752 else
10754 error_at (token->location, "-fcilkplus must be enabled to use"
10755 " %<_Cilk_sync%>");
10756 statement = error_mark_node;
10758 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
10759 break;
10761 /* Objective-C++ exception-handling constructs. */
10762 case RID_AT_TRY:
10763 case RID_AT_CATCH:
10764 case RID_AT_FINALLY:
10765 case RID_AT_SYNCHRONIZED:
10766 case RID_AT_THROW:
10767 statement = cp_parser_objc_statement (parser);
10768 break;
10770 case RID_TRY:
10771 statement = cp_parser_try_block (parser);
10772 break;
10774 case RID_NAMESPACE:
10775 /* This must be a namespace alias definition. */
10776 cp_parser_declaration_statement (parser);
10777 return;
10779 case RID_TRANSACTION_ATOMIC:
10780 case RID_TRANSACTION_RELAXED:
10781 case RID_SYNCHRONIZED:
10782 case RID_ATOMIC_NOEXCEPT:
10783 case RID_ATOMIC_CANCEL:
10784 statement = cp_parser_transaction (parser, token);
10785 break;
10786 case RID_TRANSACTION_CANCEL:
10787 statement = cp_parser_transaction_cancel (parser);
10788 break;
10790 default:
10791 /* It might be a keyword like `int' that can start a
10792 declaration-statement. */
10793 break;
10796 else if (token->type == CPP_NAME)
10798 /* If the next token is a `:', then we are looking at a
10799 labeled-statement. */
10800 token = cp_lexer_peek_nth_token (parser->lexer, 2);
10801 if (token->type == CPP_COLON)
10803 /* Looks like a labeled-statement with an ordinary label.
10804 Parse the label, and then use tail recursion to parse
10805 the statement. */
10807 cp_parser_label_for_labeled_statement (parser, std_attrs);
10808 in_compound = false;
10809 goto restart;
10812 /* Anything that starts with a `{' must be a compound-statement. */
10813 else if (token->type == CPP_OPEN_BRACE)
10814 statement = cp_parser_compound_statement (parser, NULL, BCS_NORMAL, false);
10815 /* CPP_PRAGMA is a #pragma inside a function body, which constitutes
10816 a statement all its own. */
10817 else if (token->type == CPP_PRAGMA)
10819 /* Only certain OpenMP pragmas are attached to statements, and thus
10820 are considered statements themselves. All others are not. In
10821 the context of a compound, accept the pragma as a "statement" and
10822 return so that we can check for a close brace. Otherwise we
10823 require a real statement and must go back and read one. */
10824 if (in_compound)
10825 cp_parser_pragma (parser, pragma_compound, if_p);
10826 else if (!cp_parser_pragma (parser, pragma_stmt, if_p))
10827 goto restart;
10828 return;
10830 else if (token->type == CPP_EOF)
10832 cp_parser_error (parser, "expected statement");
10833 return;
10836 /* Everything else must be a declaration-statement or an
10837 expression-statement. Try for the declaration-statement
10838 first, unless we are looking at a `;', in which case we know that
10839 we have an expression-statement. */
10840 if (!statement)
10842 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
10844 if (std_attrs != NULL_TREE)
10846 /* Attributes should be parsed as part of the the
10847 declaration, so let's un-parse them. */
10848 saved_tokens.rollback();
10849 std_attrs = NULL_TREE;
10852 cp_parser_parse_tentatively (parser);
10853 /* Try to parse the declaration-statement. */
10854 cp_parser_declaration_statement (parser);
10855 /* If that worked, we're done. */
10856 if (cp_parser_parse_definitely (parser))
10857 return;
10859 /* All preceding labels have been parsed at this point. */
10860 if (loc_after_labels != NULL)
10861 *loc_after_labels = statement_location;
10863 /* Look for an expression-statement instead. */
10864 statement = cp_parser_expression_statement (parser, in_statement_expr);
10866 /* Handle [[fallthrough]];. */
10867 if (attribute_fallthrough_p (std_attrs))
10869 /* The next token after the fallthrough attribute is ';'. */
10870 if (statement == NULL_TREE)
10872 /* Turn [[fallthrough]]; into FALLTHROUGH ();. */
10873 statement = build_call_expr_internal_loc (statement_location,
10874 IFN_FALLTHROUGH,
10875 void_type_node, 0);
10876 finish_expr_stmt (statement);
10878 else
10879 warning_at (statement_location, OPT_Wattributes,
10880 "%<fallthrough%> attribute not followed by %<;%>");
10881 std_attrs = NULL_TREE;
10885 /* Set the line number for the statement. */
10886 if (statement && STATEMENT_CODE_P (TREE_CODE (statement)))
10887 SET_EXPR_LOCATION (statement, statement_location);
10889 /* Allow "[[fallthrough]];", but warn otherwise. */
10890 if (std_attrs != NULL_TREE)
10891 warning_at (attrs_location,
10892 OPT_Wattributes,
10893 "attributes at the beginning of statement are ignored");
10896 /* Parse the label for a labeled-statement, i.e.
10898 identifier :
10899 case constant-expression :
10900 default :
10902 GNU Extension:
10903 case constant-expression ... constant-expression : statement
10905 When a label is parsed without errors, the label is added to the
10906 parse tree by the finish_* functions, so this function doesn't
10907 have to return the label. */
10909 static void
10910 cp_parser_label_for_labeled_statement (cp_parser* parser, tree attributes)
10912 cp_token *token;
10913 tree label = NULL_TREE;
10914 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
10916 /* The next token should be an identifier. */
10917 token = cp_lexer_peek_token (parser->lexer);
10918 if (token->type != CPP_NAME
10919 && token->type != CPP_KEYWORD)
10921 cp_parser_error (parser, "expected labeled-statement");
10922 return;
10925 /* Remember whether this case or a user-defined label is allowed to fall
10926 through to. */
10927 bool fallthrough_p = token->flags & PREV_FALLTHROUGH;
10929 parser->colon_corrects_to_scope_p = false;
10930 switch (token->keyword)
10932 case RID_CASE:
10934 tree expr, expr_hi;
10935 cp_token *ellipsis;
10937 /* Consume the `case' token. */
10938 cp_lexer_consume_token (parser->lexer);
10939 /* Parse the constant-expression. */
10940 expr = cp_parser_constant_expression (parser);
10941 if (check_for_bare_parameter_packs (expr))
10942 expr = error_mark_node;
10944 ellipsis = cp_lexer_peek_token (parser->lexer);
10945 if (ellipsis->type == CPP_ELLIPSIS)
10947 /* Consume the `...' token. */
10948 cp_lexer_consume_token (parser->lexer);
10949 expr_hi = cp_parser_constant_expression (parser);
10950 if (check_for_bare_parameter_packs (expr_hi))
10951 expr_hi = error_mark_node;
10953 /* We don't need to emit warnings here, as the common code
10954 will do this for us. */
10956 else
10957 expr_hi = NULL_TREE;
10959 if (parser->in_switch_statement_p)
10961 tree l = finish_case_label (token->location, expr, expr_hi);
10962 if (l && TREE_CODE (l) == CASE_LABEL_EXPR)
10963 FALLTHROUGH_LABEL_P (CASE_LABEL (l)) = fallthrough_p;
10965 else
10966 error_at (token->location,
10967 "case label %qE not within a switch statement",
10968 expr);
10970 break;
10972 case RID_DEFAULT:
10973 /* Consume the `default' token. */
10974 cp_lexer_consume_token (parser->lexer);
10976 if (parser->in_switch_statement_p)
10978 tree l = finish_case_label (token->location, NULL_TREE, NULL_TREE);
10979 if (l && TREE_CODE (l) == CASE_LABEL_EXPR)
10980 FALLTHROUGH_LABEL_P (CASE_LABEL (l)) = fallthrough_p;
10982 else
10983 error_at (token->location, "case label not within a switch statement");
10984 break;
10986 default:
10987 /* Anything else must be an ordinary label. */
10988 label = finish_label_stmt (cp_parser_identifier (parser));
10989 if (label && TREE_CODE (label) == LABEL_DECL)
10990 FALLTHROUGH_LABEL_P (label) = fallthrough_p;
10991 break;
10994 /* Require the `:' token. */
10995 cp_parser_require (parser, CPP_COLON, RT_COLON);
10997 /* An ordinary label may optionally be followed by attributes.
10998 However, this is only permitted if the attributes are then
10999 followed by a semicolon. This is because, for backward
11000 compatibility, when parsing
11001 lab: __attribute__ ((unused)) int i;
11002 we want the attribute to attach to "i", not "lab". */
11003 if (label != NULL_TREE
11004 && cp_next_tokens_can_be_gnu_attribute_p (parser))
11006 tree attrs;
11007 cp_parser_parse_tentatively (parser);
11008 attrs = cp_parser_gnu_attributes_opt (parser);
11009 if (attrs == NULL_TREE
11010 || cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
11011 cp_parser_abort_tentative_parse (parser);
11012 else if (!cp_parser_parse_definitely (parser))
11014 else
11015 attributes = chainon (attributes, attrs);
11018 if (attributes != NULL_TREE)
11019 cplus_decl_attributes (&label, attributes, 0);
11021 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
11024 /* Parse an expression-statement.
11026 expression-statement:
11027 expression [opt] ;
11029 Returns the new EXPR_STMT -- or NULL_TREE if the expression
11030 statement consists of nothing more than an `;'. IN_STATEMENT_EXPR_P
11031 indicates whether this expression-statement is part of an
11032 expression statement. */
11034 static tree
11035 cp_parser_expression_statement (cp_parser* parser, tree in_statement_expr)
11037 tree statement = NULL_TREE;
11038 cp_token *token = cp_lexer_peek_token (parser->lexer);
11039 location_t loc = token->location;
11041 /* There might be attribute fallthrough. */
11042 tree attr = cp_parser_gnu_attributes_opt (parser);
11044 /* If the next token is a ';', then there is no expression
11045 statement. */
11046 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
11048 statement = cp_parser_expression (parser);
11049 if (statement == error_mark_node
11050 && !cp_parser_uncommitted_to_tentative_parse_p (parser))
11052 cp_parser_skip_to_end_of_block_or_statement (parser);
11053 return error_mark_node;
11057 /* Handle [[fallthrough]];. */
11058 if (attribute_fallthrough_p (attr))
11060 /* The next token after the fallthrough attribute is ';'. */
11061 if (statement == NULL_TREE)
11062 /* Turn [[fallthrough]]; into FALLTHROUGH ();. */
11063 statement = build_call_expr_internal_loc (loc, IFN_FALLTHROUGH,
11064 void_type_node, 0);
11065 else
11066 warning_at (loc, OPT_Wattributes,
11067 "%<fallthrough%> attribute not followed by %<;%>");
11068 attr = NULL_TREE;
11071 /* Allow "[[fallthrough]];", but warn otherwise. */
11072 if (attr != NULL_TREE)
11073 warning_at (loc, OPT_Wattributes,
11074 "attributes at the beginning of statement are ignored");
11076 /* Give a helpful message for "A<T>::type t;" and the like. */
11077 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON)
11078 && !cp_parser_uncommitted_to_tentative_parse_p (parser))
11080 if (TREE_CODE (statement) == SCOPE_REF)
11081 error_at (token->location, "need %<typename%> before %qE because "
11082 "%qT is a dependent scope",
11083 statement, TREE_OPERAND (statement, 0));
11084 else if (is_overloaded_fn (statement)
11085 && DECL_CONSTRUCTOR_P (get_first_fn (statement)))
11087 /* A::A a; */
11088 tree fn = get_first_fn (statement);
11089 error_at (token->location,
11090 "%<%T::%D%> names the constructor, not the type",
11091 DECL_CONTEXT (fn), DECL_NAME (fn));
11095 /* Consume the final `;'. */
11096 cp_parser_consume_semicolon_at_end_of_statement (parser);
11098 if (in_statement_expr
11099 && cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
11100 /* This is the final expression statement of a statement
11101 expression. */
11102 statement = finish_stmt_expr_expr (statement, in_statement_expr);
11103 else if (statement)
11104 statement = finish_expr_stmt (statement);
11106 return statement;
11109 /* Parse a compound-statement.
11111 compound-statement:
11112 { statement-seq [opt] }
11114 GNU extension:
11116 compound-statement:
11117 { label-declaration-seq [opt] statement-seq [opt] }
11119 label-declaration-seq:
11120 label-declaration
11121 label-declaration-seq label-declaration
11123 Returns a tree representing the statement. */
11125 static tree
11126 cp_parser_compound_statement (cp_parser *parser, tree in_statement_expr,
11127 int bcs_flags, bool function_body)
11129 tree compound_stmt;
11131 /* Consume the `{'. */
11132 if (!cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
11133 return error_mark_node;
11134 if (DECL_DECLARED_CONSTEXPR_P (current_function_decl)
11135 && !function_body && cxx_dialect < cxx14)
11136 pedwarn (input_location, OPT_Wpedantic,
11137 "compound-statement in constexpr function");
11138 /* Begin the compound-statement. */
11139 compound_stmt = begin_compound_stmt (bcs_flags);
11140 /* If the next keyword is `__label__' we have a label declaration. */
11141 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_LABEL))
11142 cp_parser_label_declaration (parser);
11143 /* Parse an (optional) statement-seq. */
11144 cp_parser_statement_seq_opt (parser, in_statement_expr);
11145 /* Finish the compound-statement. */
11146 finish_compound_stmt (compound_stmt);
11147 /* Consume the `}'. */
11148 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
11150 return compound_stmt;
11153 /* Parse an (optional) statement-seq.
11155 statement-seq:
11156 statement
11157 statement-seq [opt] statement */
11159 static void
11160 cp_parser_statement_seq_opt (cp_parser* parser, tree in_statement_expr)
11162 /* Scan statements until there aren't any more. */
11163 while (true)
11165 cp_token *token = cp_lexer_peek_token (parser->lexer);
11167 /* If we are looking at a `}', then we have run out of
11168 statements; the same is true if we have reached the end
11169 of file, or have stumbled upon a stray '@end'. */
11170 if (token->type == CPP_CLOSE_BRACE
11171 || token->type == CPP_EOF
11172 || token->type == CPP_PRAGMA_EOL
11173 || (token->type == CPP_KEYWORD && token->keyword == RID_AT_END))
11174 break;
11176 /* If we are in a compound statement and find 'else' then
11177 something went wrong. */
11178 else if (token->type == CPP_KEYWORD && token->keyword == RID_ELSE)
11180 if (parser->in_statement & IN_IF_STMT)
11181 break;
11182 else
11184 token = cp_lexer_consume_token (parser->lexer);
11185 error_at (token->location, "%<else%> without a previous %<if%>");
11189 /* Parse the statement. */
11190 cp_parser_statement (parser, in_statement_expr, true, NULL);
11194 /* Return true if we're looking at (init; cond), false otherwise. */
11196 static bool
11197 cp_parser_init_statement_p (cp_parser *parser)
11199 /* Save tokens so that we can put them back. */
11200 cp_lexer_save_tokens (parser->lexer);
11202 /* Look for ';' that is not nested in () or {}. */
11203 int ret = cp_parser_skip_to_closing_parenthesis_1 (parser,
11204 /*recovering=*/false,
11205 CPP_SEMICOLON,
11206 /*consume_paren=*/false);
11208 /* Roll back the tokens we skipped. */
11209 cp_lexer_rollback_tokens (parser->lexer);
11211 return ret == -1;
11214 /* Parse a selection-statement.
11216 selection-statement:
11217 if ( init-statement [opt] condition ) statement
11218 if ( init-statement [opt] condition ) statement else statement
11219 switch ( init-statement [opt] condition ) statement
11221 Returns the new IF_STMT or SWITCH_STMT.
11223 If IF_P is not NULL, *IF_P is set to indicate whether the statement
11224 is a (possibly labeled) if statement which is not enclosed in
11225 braces and has an else clause. This is used to implement
11226 -Wparentheses.
11228 CHAIN is a vector of if-else-if conditions. This is used to implement
11229 -Wduplicated-cond. */
11231 static tree
11232 cp_parser_selection_statement (cp_parser* parser, bool *if_p,
11233 vec<tree> *chain)
11235 cp_token *token;
11236 enum rid keyword;
11237 token_indent_info guard_tinfo;
11239 if (if_p != NULL)
11240 *if_p = false;
11242 /* Peek at the next token. */
11243 token = cp_parser_require (parser, CPP_KEYWORD, RT_SELECT);
11244 guard_tinfo = get_token_indent_info (token);
11246 /* See what kind of keyword it is. */
11247 keyword = token->keyword;
11248 switch (keyword)
11250 case RID_IF:
11251 case RID_SWITCH:
11253 tree statement;
11254 tree condition;
11256 bool cx = false;
11257 if (keyword == RID_IF
11258 && cp_lexer_next_token_is_keyword (parser->lexer,
11259 RID_CONSTEXPR))
11261 cx = true;
11262 cp_token *tok = cp_lexer_consume_token (parser->lexer);
11263 if (cxx_dialect < cxx1z && !in_system_header_at (tok->location))
11264 pedwarn (tok->location, 0, "%<if constexpr%> only available "
11265 "with -std=c++1z or -std=gnu++1z");
11268 /* Look for the `('. */
11269 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
11271 cp_parser_skip_to_end_of_statement (parser);
11272 return error_mark_node;
11275 /* Begin the selection-statement. */
11276 if (keyword == RID_IF)
11278 statement = begin_if_stmt ();
11279 IF_STMT_CONSTEXPR_P (statement) = cx;
11281 else
11282 statement = begin_switch_stmt ();
11284 /* Parse the optional init-statement. */
11285 if (cp_parser_init_statement_p (parser))
11287 tree decl;
11288 if (cxx_dialect < cxx1z)
11289 pedwarn (cp_lexer_peek_token (parser->lexer)->location, 0,
11290 "init-statement in selection statements only available "
11291 "with -std=c++1z or -std=gnu++1z");
11292 cp_parser_init_statement (parser, &decl);
11295 /* Parse the condition. */
11296 condition = cp_parser_condition (parser);
11297 /* Look for the `)'. */
11298 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
11299 cp_parser_skip_to_closing_parenthesis (parser, true, false,
11300 /*consume_paren=*/true);
11302 if (keyword == RID_IF)
11304 bool nested_if;
11305 unsigned char in_statement;
11307 /* Add the condition. */
11308 condition = finish_if_stmt_cond (condition, statement);
11310 if (warn_duplicated_cond)
11311 warn_duplicated_cond_add_or_warn (token->location, condition,
11312 &chain);
11314 /* Parse the then-clause. */
11315 in_statement = parser->in_statement;
11316 parser->in_statement |= IN_IF_STMT;
11318 /* Outside a template, the non-selected branch of a constexpr
11319 if is a 'discarded statement', i.e. unevaluated. */
11320 bool was_discarded = in_discarded_stmt;
11321 bool discard_then = (cx && !processing_template_decl
11322 && integer_zerop (condition));
11323 if (discard_then)
11325 in_discarded_stmt = true;
11326 ++c_inhibit_evaluation_warnings;
11329 cp_parser_implicitly_scoped_statement (parser, &nested_if,
11330 guard_tinfo);
11332 parser->in_statement = in_statement;
11334 finish_then_clause (statement);
11336 if (discard_then)
11338 THEN_CLAUSE (statement) = NULL_TREE;
11339 in_discarded_stmt = was_discarded;
11340 --c_inhibit_evaluation_warnings;
11343 /* If the next token is `else', parse the else-clause. */
11344 if (cp_lexer_next_token_is_keyword (parser->lexer,
11345 RID_ELSE))
11347 bool discard_else = (cx && !processing_template_decl
11348 && integer_nonzerop (condition));
11349 if (discard_else)
11351 in_discarded_stmt = true;
11352 ++c_inhibit_evaluation_warnings;
11355 guard_tinfo
11356 = get_token_indent_info (cp_lexer_peek_token (parser->lexer));
11357 /* Consume the `else' keyword. */
11358 cp_lexer_consume_token (parser->lexer);
11359 if (warn_duplicated_cond)
11361 if (cp_lexer_next_token_is_keyword (parser->lexer,
11362 RID_IF)
11363 && chain == NULL)
11365 /* We've got "if (COND) else if (COND2)". Start
11366 the condition chain and add COND as the first
11367 element. */
11368 chain = new vec<tree> ();
11369 if (!CONSTANT_CLASS_P (condition)
11370 && !TREE_SIDE_EFFECTS (condition))
11372 /* Wrap it in a NOP_EXPR so that we can set the
11373 location of the condition. */
11374 tree e = build1 (NOP_EXPR, TREE_TYPE (condition),
11375 condition);
11376 SET_EXPR_LOCATION (e, token->location);
11377 chain->safe_push (e);
11380 else if (!cp_lexer_next_token_is_keyword (parser->lexer,
11381 RID_IF))
11383 /* This is if-else without subsequent if. Zap the
11384 condition chain; we would have already warned at
11385 this point. */
11386 delete chain;
11387 chain = NULL;
11390 begin_else_clause (statement);
11391 /* Parse the else-clause. */
11392 cp_parser_implicitly_scoped_statement (parser, NULL,
11393 guard_tinfo, chain);
11395 finish_else_clause (statement);
11397 /* If we are currently parsing a then-clause, then
11398 IF_P will not be NULL. We set it to true to
11399 indicate that this if statement has an else clause.
11400 This may trigger the Wparentheses warning below
11401 when we get back up to the parent if statement. */
11402 if (if_p != NULL)
11403 *if_p = true;
11405 if (discard_else)
11407 ELSE_CLAUSE (statement) = NULL_TREE;
11408 in_discarded_stmt = was_discarded;
11409 --c_inhibit_evaluation_warnings;
11412 else
11414 /* This if statement does not have an else clause. If
11415 NESTED_IF is true, then the then-clause has an if
11416 statement which does have an else clause. We warn
11417 about the potential ambiguity. */
11418 if (nested_if)
11419 warning_at (EXPR_LOCATION (statement), OPT_Wdangling_else,
11420 "suggest explicit braces to avoid ambiguous"
11421 " %<else%>");
11422 if (warn_duplicated_cond)
11424 /* We don't need the condition chain anymore. */
11425 delete chain;
11426 chain = NULL;
11430 /* Now we're all done with the if-statement. */
11431 finish_if_stmt (statement);
11433 else
11435 bool in_switch_statement_p;
11436 unsigned char in_statement;
11438 /* Add the condition. */
11439 finish_switch_cond (condition, statement);
11441 /* Parse the body of the switch-statement. */
11442 in_switch_statement_p = parser->in_switch_statement_p;
11443 in_statement = parser->in_statement;
11444 parser->in_switch_statement_p = true;
11445 parser->in_statement |= IN_SWITCH_STMT;
11446 cp_parser_implicitly_scoped_statement (parser, if_p,
11447 guard_tinfo);
11448 parser->in_switch_statement_p = in_switch_statement_p;
11449 parser->in_statement = in_statement;
11451 /* Now we're all done with the switch-statement. */
11452 finish_switch_stmt (statement);
11455 return statement;
11457 break;
11459 default:
11460 cp_parser_error (parser, "expected selection-statement");
11461 return error_mark_node;
11465 /* Parse a condition.
11467 condition:
11468 expression
11469 type-specifier-seq declarator = initializer-clause
11470 type-specifier-seq declarator braced-init-list
11472 GNU Extension:
11474 condition:
11475 type-specifier-seq declarator asm-specification [opt]
11476 attributes [opt] = assignment-expression
11478 Returns the expression that should be tested. */
11480 static tree
11481 cp_parser_condition (cp_parser* parser)
11483 cp_decl_specifier_seq type_specifiers;
11484 const char *saved_message;
11485 int declares_class_or_enum;
11487 /* Try the declaration first. */
11488 cp_parser_parse_tentatively (parser);
11489 /* New types are not allowed in the type-specifier-seq for a
11490 condition. */
11491 saved_message = parser->type_definition_forbidden_message;
11492 parser->type_definition_forbidden_message
11493 = G_("types may not be defined in conditions");
11494 /* Parse the type-specifier-seq. */
11495 cp_parser_decl_specifier_seq (parser,
11496 CP_PARSER_FLAGS_ONLY_TYPE_OR_CONSTEXPR,
11497 &type_specifiers,
11498 &declares_class_or_enum);
11499 /* Restore the saved message. */
11500 parser->type_definition_forbidden_message = saved_message;
11501 /* If all is well, we might be looking at a declaration. */
11502 if (!cp_parser_error_occurred (parser))
11504 tree decl;
11505 tree asm_specification;
11506 tree attributes;
11507 cp_declarator *declarator;
11508 tree initializer = NULL_TREE;
11510 /* Parse the declarator. */
11511 declarator = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
11512 /*ctor_dtor_or_conv_p=*/NULL,
11513 /*parenthesized_p=*/NULL,
11514 /*member_p=*/false,
11515 /*friend_p=*/false);
11516 /* Parse the attributes. */
11517 attributes = cp_parser_attributes_opt (parser);
11518 /* Parse the asm-specification. */
11519 asm_specification = cp_parser_asm_specification_opt (parser);
11520 /* If the next token is not an `=' or '{', then we might still be
11521 looking at an expression. For example:
11523 if (A(a).x)
11525 looks like a decl-specifier-seq and a declarator -- but then
11526 there is no `=', so this is an expression. */
11527 if (cp_lexer_next_token_is_not (parser->lexer, CPP_EQ)
11528 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE))
11529 cp_parser_simulate_error (parser);
11531 /* If we did see an `=' or '{', then we are looking at a declaration
11532 for sure. */
11533 if (cp_parser_parse_definitely (parser))
11535 tree pushed_scope;
11536 bool non_constant_p;
11537 int flags = LOOKUP_ONLYCONVERTING;
11539 /* Create the declaration. */
11540 decl = start_decl (declarator, &type_specifiers,
11541 /*initialized_p=*/true,
11542 attributes, /*prefix_attributes=*/NULL_TREE,
11543 &pushed_scope);
11545 /* Parse the initializer. */
11546 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
11548 initializer = cp_parser_braced_list (parser, &non_constant_p);
11549 CONSTRUCTOR_IS_DIRECT_INIT (initializer) = 1;
11550 flags = 0;
11552 else
11554 /* Consume the `='. */
11555 cp_parser_require (parser, CPP_EQ, RT_EQ);
11556 initializer = cp_parser_initializer_clause (parser, &non_constant_p);
11558 if (BRACE_ENCLOSED_INITIALIZER_P (initializer))
11559 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
11561 /* Process the initializer. */
11562 cp_finish_decl (decl,
11563 initializer, !non_constant_p,
11564 asm_specification,
11565 flags);
11567 if (pushed_scope)
11568 pop_scope (pushed_scope);
11570 return convert_from_reference (decl);
11573 /* If we didn't even get past the declarator successfully, we are
11574 definitely not looking at a declaration. */
11575 else
11576 cp_parser_abort_tentative_parse (parser);
11578 /* Otherwise, we are looking at an expression. */
11579 return cp_parser_expression (parser);
11582 /* Parses a for-statement or range-for-statement until the closing ')',
11583 not included. */
11585 static tree
11586 cp_parser_for (cp_parser *parser, bool ivdep)
11588 tree init, scope, decl;
11589 bool is_range_for;
11591 /* Begin the for-statement. */
11592 scope = begin_for_scope (&init);
11594 /* Parse the initialization. */
11595 is_range_for = cp_parser_init_statement (parser, &decl);
11597 if (is_range_for)
11598 return cp_parser_range_for (parser, scope, init, decl, ivdep);
11599 else
11600 return cp_parser_c_for (parser, scope, init, ivdep);
11603 static tree
11604 cp_parser_c_for (cp_parser *parser, tree scope, tree init, bool ivdep)
11606 /* Normal for loop */
11607 tree condition = NULL_TREE;
11608 tree expression = NULL_TREE;
11609 tree stmt;
11611 stmt = begin_for_stmt (scope, init);
11612 /* The init-statement has already been parsed in
11613 cp_parser_init_statement, so no work is needed here. */
11614 finish_init_stmt (stmt);
11616 /* If there's a condition, process it. */
11617 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
11618 condition = cp_parser_condition (parser);
11619 else if (ivdep)
11621 cp_parser_error (parser, "missing loop condition in loop with "
11622 "%<GCC ivdep%> pragma");
11623 condition = error_mark_node;
11625 finish_for_cond (condition, stmt, ivdep);
11626 /* Look for the `;'. */
11627 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
11629 /* If there's an expression, process it. */
11630 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN))
11631 expression = cp_parser_expression (parser);
11632 finish_for_expr (expression, stmt);
11634 return stmt;
11637 /* Tries to parse a range-based for-statement:
11639 range-based-for:
11640 decl-specifier-seq declarator : expression
11642 The decl-specifier-seq declarator and the `:' are already parsed by
11643 cp_parser_init_statement. If processing_template_decl it returns a
11644 newly created RANGE_FOR_STMT; if not, it is converted to a
11645 regular FOR_STMT. */
11647 static tree
11648 cp_parser_range_for (cp_parser *parser, tree scope, tree init, tree range_decl,
11649 bool ivdep)
11651 tree stmt, range_expr;
11652 auto_vec <cxx_binding *, 16> bindings;
11653 auto_vec <tree, 16> names;
11654 tree decomp_first_name = NULL_TREE;
11655 unsigned int decomp_cnt = 0;
11657 /* Get the range declaration momentarily out of the way so that
11658 the range expression doesn't clash with it. */
11659 if (range_decl != error_mark_node)
11661 if (DECL_HAS_VALUE_EXPR_P (range_decl))
11663 tree v = DECL_VALUE_EXPR (range_decl);
11664 /* For decomposition declaration get all of the corresponding
11665 declarations out of the way. */
11666 if (TREE_CODE (v) == ARRAY_REF
11667 && VAR_P (TREE_OPERAND (v, 0))
11668 && DECL_DECOMPOSITION_P (TREE_OPERAND (v, 0)))
11670 tree d = range_decl;
11671 range_decl = TREE_OPERAND (v, 0);
11672 decomp_cnt = tree_to_uhwi (TREE_OPERAND (v, 1)) + 1;
11673 decomp_first_name = d;
11674 for (unsigned int i = 0; i < decomp_cnt; i++, d = DECL_CHAIN (d))
11676 tree name = DECL_NAME (d);
11677 names.safe_push (name);
11678 bindings.safe_push (IDENTIFIER_BINDING (name));
11679 IDENTIFIER_BINDING (name)
11680 = IDENTIFIER_BINDING (name)->previous;
11684 if (names.is_empty ())
11686 tree name = DECL_NAME (range_decl);
11687 names.safe_push (name);
11688 bindings.safe_push (IDENTIFIER_BINDING (name));
11689 IDENTIFIER_BINDING (name) = IDENTIFIER_BINDING (name)->previous;
11693 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
11695 bool expr_non_constant_p;
11696 range_expr = cp_parser_braced_list (parser, &expr_non_constant_p);
11698 else
11699 range_expr = cp_parser_expression (parser);
11701 /* Put the range declaration(s) back into scope. */
11702 for (unsigned int i = 0; i < names.length (); i++)
11704 cxx_binding *binding = bindings[i];
11705 binding->previous = IDENTIFIER_BINDING (names[i]);
11706 IDENTIFIER_BINDING (names[i]) = binding;
11709 /* If in template, STMT is converted to a normal for-statement
11710 at instantiation. If not, it is done just ahead. */
11711 if (processing_template_decl)
11713 if (check_for_bare_parameter_packs (range_expr))
11714 range_expr = error_mark_node;
11715 stmt = begin_range_for_stmt (scope, init);
11716 if (ivdep)
11717 RANGE_FOR_IVDEP (stmt) = 1;
11718 finish_range_for_decl (stmt, range_decl, range_expr);
11719 if (!type_dependent_expression_p (range_expr)
11720 /* do_auto_deduction doesn't mess with template init-lists. */
11721 && !BRACE_ENCLOSED_INITIALIZER_P (range_expr))
11722 do_range_for_auto_deduction (range_decl, range_expr);
11724 else
11726 stmt = begin_for_stmt (scope, init);
11727 stmt = cp_convert_range_for (stmt, range_decl, range_expr,
11728 decomp_first_name, decomp_cnt, ivdep);
11730 return stmt;
11733 /* Subroutine of cp_convert_range_for: given the initializer expression,
11734 builds up the range temporary. */
11736 static tree
11737 build_range_temp (tree range_expr)
11739 tree range_type, range_temp;
11741 /* Find out the type deduced by the declaration
11742 `auto &&__range = range_expr'. */
11743 range_type = cp_build_reference_type (make_auto (), true);
11744 range_type = do_auto_deduction (range_type, range_expr,
11745 type_uses_auto (range_type));
11747 /* Create the __range variable. */
11748 range_temp = build_decl (input_location, VAR_DECL,
11749 get_identifier ("__for_range"), range_type);
11750 TREE_USED (range_temp) = 1;
11751 DECL_ARTIFICIAL (range_temp) = 1;
11753 return range_temp;
11756 /* Used by cp_parser_range_for in template context: we aren't going to
11757 do a full conversion yet, but we still need to resolve auto in the
11758 type of the for-range-declaration if present. This is basically
11759 a shortcut version of cp_convert_range_for. */
11761 static void
11762 do_range_for_auto_deduction (tree decl, tree range_expr)
11764 tree auto_node = type_uses_auto (TREE_TYPE (decl));
11765 if (auto_node)
11767 tree begin_dummy, end_dummy, range_temp, iter_type, iter_decl;
11768 range_temp = convert_from_reference (build_range_temp (range_expr));
11769 iter_type = (cp_parser_perform_range_for_lookup
11770 (range_temp, &begin_dummy, &end_dummy));
11771 if (iter_type)
11773 iter_decl = build_decl (input_location, VAR_DECL, NULL_TREE,
11774 iter_type);
11775 iter_decl = build_x_indirect_ref (input_location, iter_decl, RO_NULL,
11776 tf_warning_or_error);
11777 TREE_TYPE (decl) = do_auto_deduction (TREE_TYPE (decl),
11778 iter_decl, auto_node);
11783 /* Converts a range-based for-statement into a normal
11784 for-statement, as per the definition.
11786 for (RANGE_DECL : RANGE_EXPR)
11787 BLOCK
11789 should be equivalent to:
11792 auto &&__range = RANGE_EXPR;
11793 for (auto __begin = BEGIN_EXPR, end = END_EXPR;
11794 __begin != __end;
11795 ++__begin)
11797 RANGE_DECL = *__begin;
11798 BLOCK
11802 If RANGE_EXPR is an array:
11803 BEGIN_EXPR = __range
11804 END_EXPR = __range + ARRAY_SIZE(__range)
11805 Else if RANGE_EXPR has a member 'begin' or 'end':
11806 BEGIN_EXPR = __range.begin()
11807 END_EXPR = __range.end()
11808 Else:
11809 BEGIN_EXPR = begin(__range)
11810 END_EXPR = end(__range);
11812 If __range has a member 'begin' but not 'end', or vice versa, we must
11813 still use the second alternative (it will surely fail, however).
11814 When calling begin()/end() in the third alternative we must use
11815 argument dependent lookup, but always considering 'std' as an associated
11816 namespace. */
11818 tree
11819 cp_convert_range_for (tree statement, tree range_decl, tree range_expr,
11820 tree decomp_first_name, unsigned int decomp_cnt,
11821 bool ivdep)
11823 tree begin, end;
11824 tree iter_type, begin_expr, end_expr;
11825 tree condition, expression;
11827 if (range_decl == error_mark_node || range_expr == error_mark_node)
11828 /* If an error happened previously do nothing or else a lot of
11829 unhelpful errors would be issued. */
11830 begin_expr = end_expr = iter_type = error_mark_node;
11831 else
11833 tree range_temp;
11835 if (VAR_P (range_expr)
11836 && array_of_runtime_bound_p (TREE_TYPE (range_expr)))
11837 /* Can't bind a reference to an array of runtime bound. */
11838 range_temp = range_expr;
11839 else
11841 range_temp = build_range_temp (range_expr);
11842 pushdecl (range_temp);
11843 cp_finish_decl (range_temp, range_expr,
11844 /*is_constant_init*/false, NULL_TREE,
11845 LOOKUP_ONLYCONVERTING);
11846 range_temp = convert_from_reference (range_temp);
11848 iter_type = cp_parser_perform_range_for_lookup (range_temp,
11849 &begin_expr, &end_expr);
11852 /* The new for initialization statement. */
11853 begin = build_decl (input_location, VAR_DECL,
11854 get_identifier ("__for_begin"), iter_type);
11855 TREE_USED (begin) = 1;
11856 DECL_ARTIFICIAL (begin) = 1;
11857 pushdecl (begin);
11858 cp_finish_decl (begin, begin_expr,
11859 /*is_constant_init*/false, NULL_TREE,
11860 LOOKUP_ONLYCONVERTING);
11862 if (cxx_dialect >= cxx1z)
11863 iter_type = cv_unqualified (TREE_TYPE (end_expr));
11864 end = build_decl (input_location, VAR_DECL,
11865 get_identifier ("__for_end"), iter_type);
11866 TREE_USED (end) = 1;
11867 DECL_ARTIFICIAL (end) = 1;
11868 pushdecl (end);
11869 cp_finish_decl (end, end_expr,
11870 /*is_constant_init*/false, NULL_TREE,
11871 LOOKUP_ONLYCONVERTING);
11873 finish_init_stmt (statement);
11875 /* The new for condition. */
11876 condition = build_x_binary_op (input_location, NE_EXPR,
11877 begin, ERROR_MARK,
11878 end, ERROR_MARK,
11879 NULL, tf_warning_or_error);
11880 finish_for_cond (condition, statement, ivdep);
11882 /* The new increment expression. */
11883 expression = finish_unary_op_expr (input_location,
11884 PREINCREMENT_EXPR, begin,
11885 tf_warning_or_error);
11886 finish_for_expr (expression, statement);
11888 /* The declaration is initialized with *__begin inside the loop body. */
11889 cp_finish_decl (range_decl,
11890 build_x_indirect_ref (input_location, begin, RO_NULL,
11891 tf_warning_or_error),
11892 /*is_constant_init*/false, NULL_TREE,
11893 LOOKUP_ONLYCONVERTING);
11894 if (VAR_P (range_decl) && DECL_DECOMPOSITION_P (range_decl))
11895 cp_finish_decomp (range_decl, decomp_first_name, decomp_cnt);
11897 return statement;
11900 /* Solves BEGIN_EXPR and END_EXPR as described in cp_convert_range_for.
11901 We need to solve both at the same time because the method used
11902 depends on the existence of members begin or end.
11903 Returns the type deduced for the iterator expression. */
11905 static tree
11906 cp_parser_perform_range_for_lookup (tree range, tree *begin, tree *end)
11908 if (error_operand_p (range))
11910 *begin = *end = error_mark_node;
11911 return error_mark_node;
11914 if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (range))))
11916 error ("range-based %<for%> expression of type %qT "
11917 "has incomplete type", TREE_TYPE (range));
11918 *begin = *end = error_mark_node;
11919 return error_mark_node;
11921 if (TREE_CODE (TREE_TYPE (range)) == ARRAY_TYPE)
11923 /* If RANGE is an array, we will use pointer arithmetic. */
11924 *begin = decay_conversion (range, tf_warning_or_error);
11925 *end = build_binary_op (input_location, PLUS_EXPR,
11926 range,
11927 array_type_nelts_top (TREE_TYPE (range)),
11929 return TREE_TYPE (*begin);
11931 else
11933 /* If it is not an array, we must do a bit of magic. */
11934 tree id_begin, id_end;
11935 tree member_begin, member_end;
11937 *begin = *end = error_mark_node;
11939 id_begin = get_identifier ("begin");
11940 id_end = get_identifier ("end");
11941 member_begin = lookup_member (TREE_TYPE (range), id_begin,
11942 /*protect=*/2, /*want_type=*/false,
11943 tf_warning_or_error);
11944 member_end = lookup_member (TREE_TYPE (range), id_end,
11945 /*protect=*/2, /*want_type=*/false,
11946 tf_warning_or_error);
11948 if (member_begin != NULL_TREE || member_end != NULL_TREE)
11950 /* Use the member functions. */
11951 if (member_begin != NULL_TREE)
11952 *begin = cp_parser_range_for_member_function (range, id_begin);
11953 else
11954 error ("range-based %<for%> expression of type %qT has an "
11955 "%<end%> member but not a %<begin%>", TREE_TYPE (range));
11957 if (member_end != NULL_TREE)
11958 *end = cp_parser_range_for_member_function (range, id_end);
11959 else
11960 error ("range-based %<for%> expression of type %qT has a "
11961 "%<begin%> member but not an %<end%>", TREE_TYPE (range));
11963 else
11965 /* Use global functions with ADL. */
11966 vec<tree, va_gc> *vec;
11967 vec = make_tree_vector ();
11969 vec_safe_push (vec, range);
11971 member_begin = perform_koenig_lookup (id_begin, vec,
11972 tf_warning_or_error);
11973 *begin = finish_call_expr (member_begin, &vec, false, true,
11974 tf_warning_or_error);
11975 member_end = perform_koenig_lookup (id_end, vec,
11976 tf_warning_or_error);
11977 *end = finish_call_expr (member_end, &vec, false, true,
11978 tf_warning_or_error);
11980 release_tree_vector (vec);
11983 /* Last common checks. */
11984 if (*begin == error_mark_node || *end == error_mark_node)
11986 /* If one of the expressions is an error do no more checks. */
11987 *begin = *end = error_mark_node;
11988 return error_mark_node;
11990 else if (type_dependent_expression_p (*begin)
11991 || type_dependent_expression_p (*end))
11992 /* Can happen, when, eg, in a template context, Koenig lookup
11993 can't resolve begin/end (c++/58503). */
11994 return NULL_TREE;
11995 else
11997 tree iter_type = cv_unqualified (TREE_TYPE (*begin));
11998 /* The unqualified type of the __begin and __end temporaries should
11999 be the same, as required by the multiple auto declaration. */
12000 if (!same_type_p (iter_type, cv_unqualified (TREE_TYPE (*end))))
12002 if (cxx_dialect >= cxx1z
12003 && (build_x_binary_op (input_location, NE_EXPR,
12004 *begin, ERROR_MARK,
12005 *end, ERROR_MARK,
12006 NULL, tf_none)
12007 != error_mark_node))
12008 /* P0184R0 allows __begin and __end to have different types,
12009 but make sure they are comparable so we can give a better
12010 diagnostic. */;
12011 else
12012 error ("inconsistent begin/end types in range-based %<for%> "
12013 "statement: %qT and %qT",
12014 TREE_TYPE (*begin), TREE_TYPE (*end));
12016 return iter_type;
12021 /* Helper function for cp_parser_perform_range_for_lookup.
12022 Builds a tree for RANGE.IDENTIFIER(). */
12024 static tree
12025 cp_parser_range_for_member_function (tree range, tree identifier)
12027 tree member, res;
12028 vec<tree, va_gc> *vec;
12030 member = finish_class_member_access_expr (range, identifier,
12031 false, tf_warning_or_error);
12032 if (member == error_mark_node)
12033 return error_mark_node;
12035 vec = make_tree_vector ();
12036 res = finish_call_expr (member, &vec,
12037 /*disallow_virtual=*/false,
12038 /*koenig_p=*/false,
12039 tf_warning_or_error);
12040 release_tree_vector (vec);
12041 return res;
12044 /* Parse an iteration-statement.
12046 iteration-statement:
12047 while ( condition ) statement
12048 do statement while ( expression ) ;
12049 for ( init-statement condition [opt] ; expression [opt] )
12050 statement
12052 Returns the new WHILE_STMT, DO_STMT, FOR_STMT or RANGE_FOR_STMT. */
12054 static tree
12055 cp_parser_iteration_statement (cp_parser* parser, bool *if_p, bool ivdep)
12057 cp_token *token;
12058 enum rid keyword;
12059 tree statement;
12060 unsigned char in_statement;
12061 token_indent_info guard_tinfo;
12063 /* Peek at the next token. */
12064 token = cp_parser_require (parser, CPP_KEYWORD, RT_ITERATION);
12065 if (!token)
12066 return error_mark_node;
12068 guard_tinfo = get_token_indent_info (token);
12070 /* Remember whether or not we are already within an iteration
12071 statement. */
12072 in_statement = parser->in_statement;
12074 /* See what kind of keyword it is. */
12075 keyword = token->keyword;
12076 switch (keyword)
12078 case RID_WHILE:
12080 tree condition;
12082 /* Begin the while-statement. */
12083 statement = begin_while_stmt ();
12084 /* Look for the `('. */
12085 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
12086 /* Parse the condition. */
12087 condition = cp_parser_condition (parser);
12088 finish_while_stmt_cond (condition, statement, ivdep);
12089 /* Look for the `)'. */
12090 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
12091 /* Parse the dependent statement. */
12092 parser->in_statement = IN_ITERATION_STMT;
12093 cp_parser_already_scoped_statement (parser, if_p, guard_tinfo);
12094 parser->in_statement = in_statement;
12095 /* We're done with the while-statement. */
12096 finish_while_stmt (statement);
12098 break;
12100 case RID_DO:
12102 tree expression;
12104 /* Begin the do-statement. */
12105 statement = begin_do_stmt ();
12106 /* Parse the body of the do-statement. */
12107 parser->in_statement = IN_ITERATION_STMT;
12108 cp_parser_implicitly_scoped_statement (parser, NULL, guard_tinfo);
12109 parser->in_statement = in_statement;
12110 finish_do_body (statement);
12111 /* Look for the `while' keyword. */
12112 cp_parser_require_keyword (parser, RID_WHILE, RT_WHILE);
12113 /* Look for the `('. */
12114 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
12115 /* Parse the expression. */
12116 expression = cp_parser_expression (parser);
12117 /* We're done with the do-statement. */
12118 finish_do_stmt (expression, statement, ivdep);
12119 /* Look for the `)'. */
12120 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
12121 /* Look for the `;'. */
12122 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
12124 break;
12126 case RID_FOR:
12128 /* Look for the `('. */
12129 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
12131 statement = cp_parser_for (parser, ivdep);
12133 /* Look for the `)'. */
12134 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
12136 /* Parse the body of the for-statement. */
12137 parser->in_statement = IN_ITERATION_STMT;
12138 cp_parser_already_scoped_statement (parser, if_p, guard_tinfo);
12139 parser->in_statement = in_statement;
12141 /* We're done with the for-statement. */
12142 finish_for_stmt (statement);
12144 break;
12146 default:
12147 cp_parser_error (parser, "expected iteration-statement");
12148 statement = error_mark_node;
12149 break;
12152 return statement;
12155 /* Parse a init-statement or the declarator of a range-based-for.
12156 Returns true if a range-based-for declaration is seen.
12158 init-statement:
12159 expression-statement
12160 simple-declaration */
12162 static bool
12163 cp_parser_init_statement (cp_parser* parser, tree *decl)
12165 /* If the next token is a `;', then we have an empty
12166 expression-statement. Grammatically, this is also a
12167 simple-declaration, but an invalid one, because it does not
12168 declare anything. Therefore, if we did not handle this case
12169 specially, we would issue an error message about an invalid
12170 declaration. */
12171 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
12173 bool is_range_for = false;
12174 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
12176 /* A colon is used in range-based for. */
12177 parser->colon_corrects_to_scope_p = false;
12179 /* We're going to speculatively look for a declaration, falling back
12180 to an expression, if necessary. */
12181 cp_parser_parse_tentatively (parser);
12182 /* Parse the declaration. */
12183 cp_parser_simple_declaration (parser,
12184 /*function_definition_allowed_p=*/false,
12185 decl);
12186 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
12187 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
12189 /* It is a range-for, consume the ':' */
12190 cp_lexer_consume_token (parser->lexer);
12191 is_range_for = true;
12192 if (cxx_dialect < cxx11)
12194 pedwarn (cp_lexer_peek_token (parser->lexer)->location, 0,
12195 "range-based %<for%> loops only available with "
12196 "-std=c++11 or -std=gnu++11");
12197 *decl = error_mark_node;
12200 else
12201 /* The ';' is not consumed yet because we told
12202 cp_parser_simple_declaration not to. */
12203 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
12205 if (cp_parser_parse_definitely (parser))
12206 return is_range_for;
12207 /* If the tentative parse failed, then we shall need to look for an
12208 expression-statement. */
12210 /* If we are here, it is an expression-statement. */
12211 cp_parser_expression_statement (parser, NULL_TREE);
12212 return false;
12215 /* Parse a jump-statement.
12217 jump-statement:
12218 break ;
12219 continue ;
12220 return expression [opt] ;
12221 return braced-init-list ;
12222 goto identifier ;
12224 GNU extension:
12226 jump-statement:
12227 goto * expression ;
12229 Returns the new BREAK_STMT, CONTINUE_STMT, RETURN_EXPR, or GOTO_EXPR. */
12231 static tree
12232 cp_parser_jump_statement (cp_parser* parser)
12234 tree statement = error_mark_node;
12235 cp_token *token;
12236 enum rid keyword;
12237 unsigned char in_statement;
12239 /* Peek at the next token. */
12240 token = cp_parser_require (parser, CPP_KEYWORD, RT_JUMP);
12241 if (!token)
12242 return error_mark_node;
12244 /* See what kind of keyword it is. */
12245 keyword = token->keyword;
12246 switch (keyword)
12248 case RID_BREAK:
12249 in_statement = parser->in_statement & ~IN_IF_STMT;
12250 switch (in_statement)
12252 case 0:
12253 error_at (token->location, "break statement not within loop or switch");
12254 break;
12255 default:
12256 gcc_assert ((in_statement & IN_SWITCH_STMT)
12257 || in_statement == IN_ITERATION_STMT);
12258 statement = finish_break_stmt ();
12259 if (in_statement == IN_ITERATION_STMT)
12260 break_maybe_infinite_loop ();
12261 break;
12262 case IN_OMP_BLOCK:
12263 error_at (token->location, "invalid exit from OpenMP structured block");
12264 break;
12265 case IN_OMP_FOR:
12266 error_at (token->location, "break statement used with OpenMP for loop");
12267 break;
12268 case IN_CILK_SIMD_FOR:
12269 error_at (token->location, "break statement used with Cilk Plus for loop");
12270 break;
12272 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
12273 break;
12275 case RID_CONTINUE:
12276 switch (parser->in_statement & ~(IN_SWITCH_STMT | IN_IF_STMT))
12278 case 0:
12279 error_at (token->location, "continue statement not within a loop");
12280 break;
12281 case IN_CILK_SIMD_FOR:
12282 error_at (token->location,
12283 "continue statement within %<#pragma simd%> loop body");
12284 /* Fall through. */
12285 case IN_ITERATION_STMT:
12286 case IN_OMP_FOR:
12287 statement = finish_continue_stmt ();
12288 break;
12289 case IN_OMP_BLOCK:
12290 error_at (token->location, "invalid exit from OpenMP structured block");
12291 break;
12292 default:
12293 gcc_unreachable ();
12295 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
12296 break;
12298 case RID_RETURN:
12300 tree expr;
12301 bool expr_non_constant_p;
12303 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
12305 cp_lexer_set_source_position (parser->lexer);
12306 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
12307 expr = cp_parser_braced_list (parser, &expr_non_constant_p);
12309 else if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
12310 expr = cp_parser_expression (parser);
12311 else
12312 /* If the next token is a `;', then there is no
12313 expression. */
12314 expr = NULL_TREE;
12315 /* Build the return-statement. */
12316 if (current_function_auto_return_pattern && in_discarded_stmt)
12317 /* Don't deduce from a discarded return statement. */;
12318 else
12319 statement = finish_return_stmt (expr);
12320 /* Look for the final `;'. */
12321 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
12323 break;
12325 case RID_GOTO:
12326 if (parser->in_function_body
12327 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
12329 error ("%<goto%> in %<constexpr%> function");
12330 cp_function_chain->invalid_constexpr = true;
12333 /* Create the goto-statement. */
12334 if (cp_lexer_next_token_is (parser->lexer, CPP_MULT))
12336 /* Issue a warning about this use of a GNU extension. */
12337 pedwarn (token->location, OPT_Wpedantic, "ISO C++ forbids computed gotos");
12338 /* Consume the '*' token. */
12339 cp_lexer_consume_token (parser->lexer);
12340 /* Parse the dependent expression. */
12341 finish_goto_stmt (cp_parser_expression (parser));
12343 else
12344 finish_goto_stmt (cp_parser_identifier (parser));
12345 /* Look for the final `;'. */
12346 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
12347 break;
12349 default:
12350 cp_parser_error (parser, "expected jump-statement");
12351 break;
12354 return statement;
12357 /* Parse a declaration-statement.
12359 declaration-statement:
12360 block-declaration */
12362 static void
12363 cp_parser_declaration_statement (cp_parser* parser)
12365 void *p;
12367 /* Get the high-water mark for the DECLARATOR_OBSTACK. */
12368 p = obstack_alloc (&declarator_obstack, 0);
12370 /* Parse the block-declaration. */
12371 cp_parser_block_declaration (parser, /*statement_p=*/true);
12373 /* Free any declarators allocated. */
12374 obstack_free (&declarator_obstack, p);
12377 /* Some dependent statements (like `if (cond) statement'), are
12378 implicitly in their own scope. In other words, if the statement is
12379 a single statement (as opposed to a compound-statement), it is
12380 none-the-less treated as if it were enclosed in braces. Any
12381 declarations appearing in the dependent statement are out of scope
12382 after control passes that point. This function parses a statement,
12383 but ensures that is in its own scope, even if it is not a
12384 compound-statement.
12386 If IF_P is not NULL, *IF_P is set to indicate whether the statement
12387 is a (possibly labeled) if statement which is not enclosed in
12388 braces and has an else clause. This is used to implement
12389 -Wparentheses.
12391 CHAIN is a vector of if-else-if conditions. This is used to implement
12392 -Wduplicated-cond.
12394 Returns the new statement. */
12396 static tree
12397 cp_parser_implicitly_scoped_statement (cp_parser* parser, bool *if_p,
12398 const token_indent_info &guard_tinfo,
12399 vec<tree> *chain)
12401 tree statement;
12402 location_t body_loc = cp_lexer_peek_token (parser->lexer)->location;
12403 location_t body_loc_after_labels = UNKNOWN_LOCATION;
12404 token_indent_info body_tinfo
12405 = get_token_indent_info (cp_lexer_peek_token (parser->lexer));
12407 if (if_p != NULL)
12408 *if_p = false;
12410 /* Mark if () ; with a special NOP_EXPR. */
12411 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
12413 cp_lexer_consume_token (parser->lexer);
12414 statement = add_stmt (build_empty_stmt (body_loc));
12416 if (guard_tinfo.keyword == RID_IF
12417 && !cp_lexer_next_token_is_keyword (parser->lexer, RID_ELSE))
12418 warning_at (body_loc, OPT_Wempty_body,
12419 "suggest braces around empty body in an %<if%> statement");
12420 else if (guard_tinfo.keyword == RID_ELSE)
12421 warning_at (body_loc, OPT_Wempty_body,
12422 "suggest braces around empty body in an %<else%> statement");
12424 /* if a compound is opened, we simply parse the statement directly. */
12425 else if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
12426 statement = cp_parser_compound_statement (parser, NULL, BCS_NORMAL, false);
12427 /* If the token is not a `{', then we must take special action. */
12428 else
12430 /* Create a compound-statement. */
12431 statement = begin_compound_stmt (0);
12432 /* Parse the dependent-statement. */
12433 cp_parser_statement (parser, NULL_TREE, false, if_p, chain,
12434 &body_loc_after_labels);
12435 /* Finish the dummy compound-statement. */
12436 finish_compound_stmt (statement);
12439 token_indent_info next_tinfo
12440 = get_token_indent_info (cp_lexer_peek_token (parser->lexer));
12441 warn_for_misleading_indentation (guard_tinfo, body_tinfo, next_tinfo);
12443 if (body_loc_after_labels != UNKNOWN_LOCATION
12444 && next_tinfo.type != CPP_SEMICOLON)
12445 warn_for_multistatement_macros (body_loc_after_labels, next_tinfo.location,
12446 guard_tinfo.location, guard_tinfo.keyword);
12448 /* Return the statement. */
12449 return statement;
12452 /* For some dependent statements (like `while (cond) statement'), we
12453 have already created a scope. Therefore, even if the dependent
12454 statement is a compound-statement, we do not want to create another
12455 scope. */
12457 static void
12458 cp_parser_already_scoped_statement (cp_parser* parser, bool *if_p,
12459 const token_indent_info &guard_tinfo)
12461 /* If the token is a `{', then we must take special action. */
12462 if (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE))
12464 token_indent_info body_tinfo
12465 = get_token_indent_info (cp_lexer_peek_token (parser->lexer));
12466 location_t loc_after_labels = UNKNOWN_LOCATION;
12468 cp_parser_statement (parser, NULL_TREE, false, if_p, NULL,
12469 &loc_after_labels);
12470 token_indent_info next_tinfo
12471 = get_token_indent_info (cp_lexer_peek_token (parser->lexer));
12472 warn_for_misleading_indentation (guard_tinfo, body_tinfo, next_tinfo);
12474 if (loc_after_labels != UNKNOWN_LOCATION
12475 && next_tinfo.type != CPP_SEMICOLON)
12476 warn_for_multistatement_macros (loc_after_labels, next_tinfo.location,
12477 guard_tinfo.location,
12478 guard_tinfo.keyword);
12480 else
12482 /* Avoid calling cp_parser_compound_statement, so that we
12483 don't create a new scope. Do everything else by hand. */
12484 cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE);
12485 /* If the next keyword is `__label__' we have a label declaration. */
12486 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_LABEL))
12487 cp_parser_label_declaration (parser);
12488 /* Parse an (optional) statement-seq. */
12489 cp_parser_statement_seq_opt (parser, NULL_TREE);
12490 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
12494 /* Declarations [gram.dcl.dcl] */
12496 /* Parse an optional declaration-sequence.
12498 declaration-seq:
12499 declaration
12500 declaration-seq declaration */
12502 static void
12503 cp_parser_declaration_seq_opt (cp_parser* parser)
12505 while (true)
12507 cp_token *token;
12509 token = cp_lexer_peek_token (parser->lexer);
12511 if (token->type == CPP_CLOSE_BRACE
12512 || token->type == CPP_EOF
12513 || token->type == CPP_PRAGMA_EOL)
12514 break;
12516 if (token->type == CPP_SEMICOLON)
12518 /* A declaration consisting of a single semicolon is
12519 invalid. Allow it unless we're being pedantic. */
12520 cp_lexer_consume_token (parser->lexer);
12521 if (!in_system_header_at (input_location))
12522 pedwarn (input_location, OPT_Wpedantic, "extra %<;%>");
12523 continue;
12526 /* If we're entering or exiting a region that's implicitly
12527 extern "C", modify the lang context appropriately. */
12528 if (!parser->implicit_extern_c && token->implicit_extern_c)
12530 push_lang_context (lang_name_c);
12531 parser->implicit_extern_c = true;
12533 else if (parser->implicit_extern_c && !token->implicit_extern_c)
12535 pop_lang_context ();
12536 parser->implicit_extern_c = false;
12539 if (token->type == CPP_PRAGMA)
12541 /* A top-level declaration can consist solely of a #pragma.
12542 A nested declaration cannot, so this is done here and not
12543 in cp_parser_declaration. (A #pragma at block scope is
12544 handled in cp_parser_statement.) */
12545 cp_parser_pragma (parser, pragma_external, NULL);
12546 continue;
12549 /* Parse the declaration itself. */
12550 cp_parser_declaration (parser);
12554 /* Parse a declaration.
12556 declaration:
12557 block-declaration
12558 function-definition
12559 template-declaration
12560 explicit-instantiation
12561 explicit-specialization
12562 linkage-specification
12563 namespace-definition
12565 C++17:
12566 deduction-guide
12568 GNU extension:
12570 declaration:
12571 __extension__ declaration */
12573 static void
12574 cp_parser_declaration (cp_parser* parser)
12576 cp_token token1;
12577 cp_token token2;
12578 int saved_pedantic;
12579 void *p;
12580 tree attributes = NULL_TREE;
12582 /* Check for the `__extension__' keyword. */
12583 if (cp_parser_extension_opt (parser, &saved_pedantic))
12585 /* Parse the qualified declaration. */
12586 cp_parser_declaration (parser);
12587 /* Restore the PEDANTIC flag. */
12588 pedantic = saved_pedantic;
12590 return;
12593 /* Try to figure out what kind of declaration is present. */
12594 token1 = *cp_lexer_peek_token (parser->lexer);
12596 if (token1.type != CPP_EOF)
12597 token2 = *cp_lexer_peek_nth_token (parser->lexer, 2);
12598 else
12600 token2.type = CPP_EOF;
12601 token2.keyword = RID_MAX;
12604 /* Get the high-water mark for the DECLARATOR_OBSTACK. */
12605 p = obstack_alloc (&declarator_obstack, 0);
12607 /* If the next token is `extern' and the following token is a string
12608 literal, then we have a linkage specification. */
12609 if (token1.keyword == RID_EXTERN
12610 && cp_parser_is_pure_string_literal (&token2))
12611 cp_parser_linkage_specification (parser);
12612 /* If the next token is `template', then we have either a template
12613 declaration, an explicit instantiation, or an explicit
12614 specialization. */
12615 else if (token1.keyword == RID_TEMPLATE)
12617 /* `template <>' indicates a template specialization. */
12618 if (token2.type == CPP_LESS
12619 && cp_lexer_peek_nth_token (parser->lexer, 3)->type == CPP_GREATER)
12620 cp_parser_explicit_specialization (parser);
12621 /* `template <' indicates a template declaration. */
12622 else if (token2.type == CPP_LESS)
12623 cp_parser_template_declaration (parser, /*member_p=*/false);
12624 /* Anything else must be an explicit instantiation. */
12625 else
12626 cp_parser_explicit_instantiation (parser);
12628 /* If the next token is `export', then we have a template
12629 declaration. */
12630 else if (token1.keyword == RID_EXPORT)
12631 cp_parser_template_declaration (parser, /*member_p=*/false);
12632 /* If the next token is `extern', 'static' or 'inline' and the one
12633 after that is `template', we have a GNU extended explicit
12634 instantiation directive. */
12635 else if (cp_parser_allow_gnu_extensions_p (parser)
12636 && (token1.keyword == RID_EXTERN
12637 || token1.keyword == RID_STATIC
12638 || token1.keyword == RID_INLINE)
12639 && token2.keyword == RID_TEMPLATE)
12640 cp_parser_explicit_instantiation (parser);
12641 /* If the next token is `namespace', check for a named or unnamed
12642 namespace definition. */
12643 else if (token1.keyword == RID_NAMESPACE
12644 && (/* A named namespace definition. */
12645 (token2.type == CPP_NAME
12646 && (cp_lexer_peek_nth_token (parser->lexer, 3)->type
12647 != CPP_EQ))
12648 || (token2.type == CPP_OPEN_SQUARE
12649 && cp_lexer_peek_nth_token (parser->lexer, 3)->type
12650 == CPP_OPEN_SQUARE)
12651 /* An unnamed namespace definition. */
12652 || token2.type == CPP_OPEN_BRACE
12653 || token2.keyword == RID_ATTRIBUTE))
12654 cp_parser_namespace_definition (parser);
12655 /* An inline (associated) namespace definition. */
12656 else if (token1.keyword == RID_INLINE
12657 && token2.keyword == RID_NAMESPACE)
12658 cp_parser_namespace_definition (parser);
12659 /* Objective-C++ declaration/definition. */
12660 else if (c_dialect_objc () && OBJC_IS_AT_KEYWORD (token1.keyword))
12661 cp_parser_objc_declaration (parser, NULL_TREE);
12662 else if (c_dialect_objc ()
12663 && token1.keyword == RID_ATTRIBUTE
12664 && cp_parser_objc_valid_prefix_attributes (parser, &attributes))
12665 cp_parser_objc_declaration (parser, attributes);
12666 /* At this point we may have a template declared by a concept
12667 introduction. */
12668 else if (flag_concepts
12669 && cp_parser_template_declaration_after_export (parser,
12670 /*member_p=*/false))
12671 /* We did. */;
12672 else
12673 /* Try to parse a block-declaration, or a function-definition. */
12674 cp_parser_block_declaration (parser, /*statement_p=*/false);
12676 /* Free any declarators allocated. */
12677 obstack_free (&declarator_obstack, p);
12680 /* Parse a block-declaration.
12682 block-declaration:
12683 simple-declaration
12684 asm-definition
12685 namespace-alias-definition
12686 using-declaration
12687 using-directive
12689 GNU Extension:
12691 block-declaration:
12692 __extension__ block-declaration
12694 C++0x Extension:
12696 block-declaration:
12697 static_assert-declaration
12699 If STATEMENT_P is TRUE, then this block-declaration is occurring as
12700 part of a declaration-statement. */
12702 static void
12703 cp_parser_block_declaration (cp_parser *parser,
12704 bool statement_p)
12706 cp_token *token1;
12707 int saved_pedantic;
12709 /* Check for the `__extension__' keyword. */
12710 if (cp_parser_extension_opt (parser, &saved_pedantic))
12712 /* Parse the qualified declaration. */
12713 cp_parser_block_declaration (parser, statement_p);
12714 /* Restore the PEDANTIC flag. */
12715 pedantic = saved_pedantic;
12717 return;
12720 /* Peek at the next token to figure out which kind of declaration is
12721 present. */
12722 token1 = cp_lexer_peek_token (parser->lexer);
12724 /* If the next keyword is `asm', we have an asm-definition. */
12725 if (token1->keyword == RID_ASM)
12727 if (statement_p)
12728 cp_parser_commit_to_tentative_parse (parser);
12729 cp_parser_asm_definition (parser);
12731 /* If the next keyword is `namespace', we have a
12732 namespace-alias-definition. */
12733 else if (token1->keyword == RID_NAMESPACE)
12734 cp_parser_namespace_alias_definition (parser);
12735 /* If the next keyword is `using', we have a
12736 using-declaration, a using-directive, or an alias-declaration. */
12737 else if (token1->keyword == RID_USING)
12739 cp_token *token2;
12741 if (statement_p)
12742 cp_parser_commit_to_tentative_parse (parser);
12743 /* If the token after `using' is `namespace', then we have a
12744 using-directive. */
12745 token2 = cp_lexer_peek_nth_token (parser->lexer, 2);
12746 if (token2->keyword == RID_NAMESPACE)
12747 cp_parser_using_directive (parser);
12748 /* If the second token after 'using' is '=', then we have an
12749 alias-declaration. */
12750 else if (cxx_dialect >= cxx11
12751 && token2->type == CPP_NAME
12752 && ((cp_lexer_peek_nth_token (parser->lexer, 3)->type == CPP_EQ)
12753 || (cp_nth_tokens_can_be_attribute_p (parser, 3))))
12754 cp_parser_alias_declaration (parser);
12755 /* Otherwise, it's a using-declaration. */
12756 else
12757 cp_parser_using_declaration (parser,
12758 /*access_declaration_p=*/false);
12760 /* If the next keyword is `__label__' we have a misplaced label
12761 declaration. */
12762 else if (token1->keyword == RID_LABEL)
12764 cp_lexer_consume_token (parser->lexer);
12765 error_at (token1->location, "%<__label__%> not at the beginning of a block");
12766 cp_parser_skip_to_end_of_statement (parser);
12767 /* If the next token is now a `;', consume it. */
12768 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
12769 cp_lexer_consume_token (parser->lexer);
12771 /* If the next token is `static_assert' we have a static assertion. */
12772 else if (token1->keyword == RID_STATIC_ASSERT)
12773 cp_parser_static_assert (parser, /*member_p=*/false);
12774 /* Anything else must be a simple-declaration. */
12775 else
12776 cp_parser_simple_declaration (parser, !statement_p,
12777 /*maybe_range_for_decl*/NULL);
12780 /* Parse a simple-declaration.
12782 simple-declaration:
12783 decl-specifier-seq [opt] init-declarator-list [opt] ;
12784 decl-specifier-seq ref-qualifier [opt] [ identifier-list ]
12785 brace-or-equal-initializer ;
12787 init-declarator-list:
12788 init-declarator
12789 init-declarator-list , init-declarator
12791 If FUNCTION_DEFINITION_ALLOWED_P is TRUE, then we also recognize a
12792 function-definition as a simple-declaration.
12794 If MAYBE_RANGE_FOR_DECL is not NULL, the pointed tree will be set to the
12795 parsed declaration if it is an uninitialized single declarator not followed
12796 by a `;', or to error_mark_node otherwise. Either way, the trailing `;',
12797 if present, will not be consumed. */
12799 static void
12800 cp_parser_simple_declaration (cp_parser* parser,
12801 bool function_definition_allowed_p,
12802 tree *maybe_range_for_decl)
12804 cp_decl_specifier_seq decl_specifiers;
12805 int declares_class_or_enum;
12806 bool saw_declarator;
12807 location_t comma_loc = UNKNOWN_LOCATION;
12808 location_t init_loc = UNKNOWN_LOCATION;
12810 if (maybe_range_for_decl)
12811 *maybe_range_for_decl = NULL_TREE;
12813 /* Defer access checks until we know what is being declared; the
12814 checks for names appearing in the decl-specifier-seq should be
12815 done as if we were in the scope of the thing being declared. */
12816 push_deferring_access_checks (dk_deferred);
12818 /* Parse the decl-specifier-seq. We have to keep track of whether
12819 or not the decl-specifier-seq declares a named class or
12820 enumeration type, since that is the only case in which the
12821 init-declarator-list is allowed to be empty.
12823 [dcl.dcl]
12825 In a simple-declaration, the optional init-declarator-list can be
12826 omitted only when declaring a class or enumeration, that is when
12827 the decl-specifier-seq contains either a class-specifier, an
12828 elaborated-type-specifier, or an enum-specifier. */
12829 cp_parser_decl_specifier_seq (parser,
12830 CP_PARSER_FLAGS_OPTIONAL,
12831 &decl_specifiers,
12832 &declares_class_or_enum);
12833 /* We no longer need to defer access checks. */
12834 stop_deferring_access_checks ();
12836 /* In a block scope, a valid declaration must always have a
12837 decl-specifier-seq. By not trying to parse declarators, we can
12838 resolve the declaration/expression ambiguity more quickly. */
12839 if (!function_definition_allowed_p
12840 && !decl_specifiers.any_specifiers_p)
12842 cp_parser_error (parser, "expected declaration");
12843 goto done;
12846 /* If the next two tokens are both identifiers, the code is
12847 erroneous. The usual cause of this situation is code like:
12849 T t;
12851 where "T" should name a type -- but does not. */
12852 if (!decl_specifiers.any_type_specifiers_p
12853 && cp_parser_parse_and_diagnose_invalid_type_name (parser))
12855 /* If parsing tentatively, we should commit; we really are
12856 looking at a declaration. */
12857 cp_parser_commit_to_tentative_parse (parser);
12858 /* Give up. */
12859 goto done;
12862 /* If we have seen at least one decl-specifier, and the next token
12863 is not a parenthesis, then we must be looking at a declaration.
12864 (After "int (" we might be looking at a functional cast.) */
12865 if (decl_specifiers.any_specifiers_p
12866 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_PAREN)
12867 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE)
12868 && !cp_parser_error_occurred (parser))
12869 cp_parser_commit_to_tentative_parse (parser);
12871 /* Look for C++17 decomposition declaration. */
12872 for (size_t n = 1; ; n++)
12873 if (cp_lexer_nth_token_is (parser->lexer, n, CPP_AND)
12874 || cp_lexer_nth_token_is (parser->lexer, n, CPP_AND_AND))
12875 continue;
12876 else if (cp_lexer_nth_token_is (parser->lexer, n, CPP_OPEN_SQUARE)
12877 && !cp_lexer_nth_token_is (parser->lexer, n + 1, CPP_OPEN_SQUARE)
12878 && decl_specifiers.any_specifiers_p)
12880 tree decl
12881 = cp_parser_decomposition_declaration (parser, &decl_specifiers,
12882 maybe_range_for_decl,
12883 &init_loc);
12885 /* The next token should be either a `,' or a `;'. */
12886 cp_token *token = cp_lexer_peek_token (parser->lexer);
12887 /* If it's a `;', we are done. */
12888 if (token->type == CPP_SEMICOLON || maybe_range_for_decl)
12889 goto finish;
12890 /* Anything else is an error. */
12891 else
12893 /* If we have already issued an error message we don't need
12894 to issue another one. */
12895 if ((decl != error_mark_node
12896 && DECL_INITIAL (decl) != error_mark_node)
12897 || cp_parser_uncommitted_to_tentative_parse_p (parser))
12898 cp_parser_error (parser, "expected %<,%> or %<;%>");
12899 /* Skip tokens until we reach the end of the statement. */
12900 cp_parser_skip_to_end_of_statement (parser);
12901 /* If the next token is now a `;', consume it. */
12902 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
12903 cp_lexer_consume_token (parser->lexer);
12904 goto done;
12907 else
12908 break;
12910 tree last_type;
12911 bool auto_specifier_p;
12912 /* NULL_TREE if both variable and function declaration are allowed,
12913 error_mark_node if function declaration are not allowed and
12914 a FUNCTION_DECL that should be diagnosed if it is followed by
12915 variable declarations. */
12916 tree auto_function_declaration;
12918 last_type = NULL_TREE;
12919 auto_specifier_p
12920 = decl_specifiers.type && type_uses_auto (decl_specifiers.type);
12921 auto_function_declaration = NULL_TREE;
12923 /* Keep going until we hit the `;' at the end of the simple
12924 declaration. */
12925 saw_declarator = false;
12926 while (cp_lexer_next_token_is_not (parser->lexer,
12927 CPP_SEMICOLON))
12929 cp_token *token;
12930 bool function_definition_p;
12931 tree decl;
12932 tree auto_result = NULL_TREE;
12934 if (saw_declarator)
12936 /* If we are processing next declarator, comma is expected */
12937 token = cp_lexer_peek_token (parser->lexer);
12938 gcc_assert (token->type == CPP_COMMA);
12939 cp_lexer_consume_token (parser->lexer);
12940 if (maybe_range_for_decl)
12942 *maybe_range_for_decl = error_mark_node;
12943 if (comma_loc == UNKNOWN_LOCATION)
12944 comma_loc = token->location;
12947 else
12948 saw_declarator = true;
12950 /* Parse the init-declarator. */
12951 decl = cp_parser_init_declarator (parser, &decl_specifiers,
12952 /*checks=*/NULL,
12953 function_definition_allowed_p,
12954 /*member_p=*/false,
12955 declares_class_or_enum,
12956 &function_definition_p,
12957 maybe_range_for_decl,
12958 &init_loc,
12959 &auto_result);
12960 /* If an error occurred while parsing tentatively, exit quickly.
12961 (That usually happens when in the body of a function; each
12962 statement is treated as a declaration-statement until proven
12963 otherwise.) */
12964 if (cp_parser_error_occurred (parser))
12965 goto done;
12967 if (auto_specifier_p && cxx_dialect >= cxx14)
12969 /* If the init-declarator-list contains more than one
12970 init-declarator, they shall all form declarations of
12971 variables. */
12972 if (auto_function_declaration == NULL_TREE)
12973 auto_function_declaration
12974 = TREE_CODE (decl) == FUNCTION_DECL ? decl : error_mark_node;
12975 else if (TREE_CODE (decl) == FUNCTION_DECL
12976 || auto_function_declaration != error_mark_node)
12978 error_at (decl_specifiers.locations[ds_type_spec],
12979 "non-variable %qD in declaration with more than one "
12980 "declarator with placeholder type",
12981 TREE_CODE (decl) == FUNCTION_DECL
12982 ? decl : auto_function_declaration);
12983 auto_function_declaration = error_mark_node;
12987 if (auto_result
12988 && (!processing_template_decl || !type_uses_auto (auto_result)))
12990 if (last_type
12991 && last_type != error_mark_node
12992 && !same_type_p (auto_result, last_type))
12994 /* If the list of declarators contains more than one declarator,
12995 the type of each declared variable is determined as described
12996 above. If the type deduced for the template parameter U is not
12997 the same in each deduction, the program is ill-formed. */
12998 error_at (decl_specifiers.locations[ds_type_spec],
12999 "inconsistent deduction for %qT: %qT and then %qT",
13000 decl_specifiers.type, last_type, auto_result);
13001 last_type = error_mark_node;
13003 else
13004 last_type = auto_result;
13007 /* Handle function definitions specially. */
13008 if (function_definition_p)
13010 /* If the next token is a `,', then we are probably
13011 processing something like:
13013 void f() {}, *p;
13015 which is erroneous. */
13016 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
13018 cp_token *token = cp_lexer_peek_token (parser->lexer);
13019 error_at (token->location,
13020 "mixing"
13021 " declarations and function-definitions is forbidden");
13023 /* Otherwise, we're done with the list of declarators. */
13024 else
13026 pop_deferring_access_checks ();
13027 return;
13030 if (maybe_range_for_decl && *maybe_range_for_decl == NULL_TREE)
13031 *maybe_range_for_decl = decl;
13032 /* The next token should be either a `,' or a `;'. */
13033 token = cp_lexer_peek_token (parser->lexer);
13034 /* If it's a `,', there are more declarators to come. */
13035 if (token->type == CPP_COMMA)
13036 /* will be consumed next time around */;
13037 /* If it's a `;', we are done. */
13038 else if (token->type == CPP_SEMICOLON)
13039 break;
13040 else if (maybe_range_for_decl)
13042 if ((declares_class_or_enum & 2) && token->type == CPP_COLON)
13043 permerror (decl_specifiers.locations[ds_type_spec],
13044 "types may not be defined in a for-range-declaration");
13045 break;
13047 /* Anything else is an error. */
13048 else
13050 /* If we have already issued an error message we don't need
13051 to issue another one. */
13052 if ((decl != error_mark_node
13053 && DECL_INITIAL (decl) != error_mark_node)
13054 || cp_parser_uncommitted_to_tentative_parse_p (parser))
13055 cp_parser_error (parser, "expected %<,%> or %<;%>");
13056 /* Skip tokens until we reach the end of the statement. */
13057 cp_parser_skip_to_end_of_statement (parser);
13058 /* If the next token is now a `;', consume it. */
13059 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
13060 cp_lexer_consume_token (parser->lexer);
13061 goto done;
13063 /* After the first time around, a function-definition is not
13064 allowed -- even if it was OK at first. For example:
13066 int i, f() {}
13068 is not valid. */
13069 function_definition_allowed_p = false;
13072 /* Issue an error message if no declarators are present, and the
13073 decl-specifier-seq does not itself declare a class or
13074 enumeration: [dcl.dcl]/3. */
13075 if (!saw_declarator)
13077 if (cp_parser_declares_only_class_p (parser))
13079 if (!declares_class_or_enum
13080 && decl_specifiers.type
13081 && OVERLOAD_TYPE_P (decl_specifiers.type))
13082 /* Ensure an error is issued anyway when finish_decltype_type,
13083 called via cp_parser_decl_specifier_seq, returns a class or
13084 an enumeration (c++/51786). */
13085 decl_specifiers.type = NULL_TREE;
13086 shadow_tag (&decl_specifiers);
13088 /* Perform any deferred access checks. */
13089 perform_deferred_access_checks (tf_warning_or_error);
13092 /* Consume the `;'. */
13093 finish:
13094 if (!maybe_range_for_decl)
13095 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
13096 else if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
13098 if (init_loc != UNKNOWN_LOCATION)
13099 error_at (init_loc, "initializer in range-based %<for%> loop");
13100 if (comma_loc != UNKNOWN_LOCATION)
13101 error_at (comma_loc,
13102 "multiple declarations in range-based %<for%> loop");
13105 done:
13106 pop_deferring_access_checks ();
13109 /* Helper of cp_parser_simple_declaration, parse a decomposition declaration.
13110 decl-specifier-seq ref-qualifier [opt] [ identifier-list ]
13111 initializer ; */
13113 static tree
13114 cp_parser_decomposition_declaration (cp_parser *parser,
13115 cp_decl_specifier_seq *decl_specifiers,
13116 tree *maybe_range_for_decl,
13117 location_t *init_loc)
13119 cp_ref_qualifier ref_qual = cp_parser_ref_qualifier_opt (parser);
13120 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
13121 cp_parser_require (parser, CPP_OPEN_SQUARE, RT_OPEN_SQUARE);
13123 /* Parse the identifier-list. */
13124 auto_vec<cp_expr, 10> v;
13125 if (!cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_SQUARE))
13126 while (true)
13128 cp_expr e = cp_parser_identifier (parser);
13129 if (e.get_value () == error_mark_node)
13130 break;
13131 v.safe_push (e);
13132 if (!cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
13133 break;
13134 cp_lexer_consume_token (parser->lexer);
13137 location_t end_loc = cp_lexer_peek_token (parser->lexer)->location;
13138 if (!cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE))
13140 end_loc = UNKNOWN_LOCATION;
13141 cp_parser_skip_to_closing_parenthesis_1 (parser, true, CPP_CLOSE_SQUARE,
13142 false);
13143 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_SQUARE))
13144 cp_lexer_consume_token (parser->lexer);
13145 else
13147 cp_parser_skip_to_end_of_statement (parser);
13148 return error_mark_node;
13152 if (cxx_dialect < cxx1z)
13153 pedwarn (loc, 0, "structured bindings only available with "
13154 "-std=c++1z or -std=gnu++1z");
13156 tree pushed_scope;
13157 cp_declarator *declarator = make_declarator (cdk_decomp);
13158 loc = end_loc == UNKNOWN_LOCATION ? loc : make_location (loc, loc, end_loc);
13159 declarator->id_loc = loc;
13160 if (ref_qual != REF_QUAL_NONE)
13161 declarator = make_reference_declarator (TYPE_UNQUALIFIED, declarator,
13162 ref_qual == REF_QUAL_RVALUE,
13163 NULL_TREE);
13164 tree decl = start_decl (declarator, decl_specifiers, SD_INITIALIZED,
13165 NULL_TREE, decl_specifiers->attributes,
13166 &pushed_scope);
13167 tree orig_decl = decl;
13169 unsigned int i;
13170 cp_expr e;
13171 cp_decl_specifier_seq decl_specs;
13172 clear_decl_specs (&decl_specs);
13173 decl_specs.type = make_auto ();
13174 tree prev = decl;
13175 FOR_EACH_VEC_ELT (v, i, e)
13177 if (i == 0)
13178 declarator = make_id_declarator (NULL_TREE, e.get_value (), sfk_none);
13179 else
13180 declarator->u.id.unqualified_name = e.get_value ();
13181 declarator->id_loc = e.get_location ();
13182 tree elt_pushed_scope;
13183 tree decl2 = start_decl (declarator, &decl_specs, SD_INITIALIZED,
13184 NULL_TREE, NULL_TREE, &elt_pushed_scope);
13185 if (decl2 == error_mark_node)
13186 decl = error_mark_node;
13187 else if (decl != error_mark_node && DECL_CHAIN (decl2) != prev)
13189 /* Ensure we've diagnosed redeclaration if we aren't creating
13190 a new VAR_DECL. */
13191 gcc_assert (errorcount);
13192 decl = error_mark_node;
13194 else
13195 prev = decl2;
13196 if (elt_pushed_scope)
13197 pop_scope (elt_pushed_scope);
13200 if (v.is_empty ())
13202 error_at (loc, "empty structured binding declaration");
13203 decl = error_mark_node;
13206 if (maybe_range_for_decl == NULL
13207 || cp_lexer_next_token_is_not (parser->lexer, CPP_COLON))
13209 bool non_constant_p = false, is_direct_init = false;
13210 *init_loc = cp_lexer_peek_token (parser->lexer)->location;
13211 tree initializer = cp_parser_initializer (parser, &is_direct_init,
13212 &non_constant_p);
13213 if (initializer == NULL_TREE
13214 || (TREE_CODE (initializer) == TREE_LIST
13215 && TREE_CHAIN (initializer))
13216 || (TREE_CODE (initializer) == CONSTRUCTOR
13217 && CONSTRUCTOR_NELTS (initializer) != 1))
13219 error_at (loc, "invalid initializer for structured binding "
13220 "declaration");
13221 initializer = error_mark_node;
13224 if (decl != error_mark_node)
13226 cp_finish_decl (decl, initializer, non_constant_p, NULL_TREE,
13227 is_direct_init ? LOOKUP_NORMAL : LOOKUP_IMPLICIT);
13228 cp_finish_decomp (decl, prev, v.length ());
13231 else if (decl != error_mark_node)
13233 *maybe_range_for_decl = prev;
13234 /* Ensure DECL_VALUE_EXPR is created for all the decls but
13235 the underlying DECL. */
13236 cp_finish_decomp (decl, prev, v.length ());
13239 if (pushed_scope)
13240 pop_scope (pushed_scope);
13242 if (decl == error_mark_node && DECL_P (orig_decl))
13244 if (DECL_NAMESPACE_SCOPE_P (orig_decl))
13245 SET_DECL_ASSEMBLER_NAME (orig_decl, get_identifier ("<decomp>"));
13248 return decl;
13251 /* Parse a decl-specifier-seq.
13253 decl-specifier-seq:
13254 decl-specifier-seq [opt] decl-specifier
13255 decl-specifier attribute-specifier-seq [opt] (C++11)
13257 decl-specifier:
13258 storage-class-specifier
13259 type-specifier
13260 function-specifier
13261 friend
13262 typedef
13264 GNU Extension:
13266 decl-specifier:
13267 attributes
13269 Concepts Extension:
13271 decl-specifier:
13272 concept
13274 Set *DECL_SPECS to a representation of the decl-specifier-seq.
13276 The parser flags FLAGS is used to control type-specifier parsing.
13278 *DECLARES_CLASS_OR_ENUM is set to the bitwise or of the following
13279 flags:
13281 1: one of the decl-specifiers is an elaborated-type-specifier
13282 (i.e., a type declaration)
13283 2: one of the decl-specifiers is an enum-specifier or a
13284 class-specifier (i.e., a type definition)
13288 static void
13289 cp_parser_decl_specifier_seq (cp_parser* parser,
13290 cp_parser_flags flags,
13291 cp_decl_specifier_seq *decl_specs,
13292 int* declares_class_or_enum)
13294 bool constructor_possible_p = !parser->in_declarator_p;
13295 bool found_decl_spec = false;
13296 cp_token *start_token = NULL;
13297 cp_decl_spec ds;
13299 /* Clear DECL_SPECS. */
13300 clear_decl_specs (decl_specs);
13302 /* Assume no class or enumeration type is declared. */
13303 *declares_class_or_enum = 0;
13305 /* Keep reading specifiers until there are no more to read. */
13306 while (true)
13308 bool constructor_p;
13309 cp_token *token;
13310 ds = ds_last;
13312 /* Peek at the next token. */
13313 token = cp_lexer_peek_token (parser->lexer);
13315 /* Save the first token of the decl spec list for error
13316 reporting. */
13317 if (!start_token)
13318 start_token = token;
13319 /* Handle attributes. */
13320 if (cp_next_tokens_can_be_attribute_p (parser))
13322 /* Parse the attributes. */
13323 tree attrs = cp_parser_attributes_opt (parser);
13325 /* In a sequence of declaration specifiers, c++11 attributes
13326 appertain to the type that precede them. In that case
13327 [dcl.spec]/1 says:
13329 The attribute-specifier-seq affects the type only for
13330 the declaration it appears in, not other declarations
13331 involving the same type.
13333 But for now let's force the user to position the
13334 attribute either at the beginning of the declaration or
13335 after the declarator-id, which would clearly mean that it
13336 applies to the declarator. */
13337 if (cxx11_attribute_p (attrs))
13339 if (!found_decl_spec)
13340 /* The c++11 attribute is at the beginning of the
13341 declaration. It appertains to the entity being
13342 declared. */;
13343 else
13345 if (decl_specs->type && CLASS_TYPE_P (decl_specs->type))
13347 /* This is an attribute following a
13348 class-specifier. */
13349 if (decl_specs->type_definition_p)
13350 warn_misplaced_attr_for_class_type (token->location,
13351 decl_specs->type);
13352 attrs = NULL_TREE;
13354 else
13356 decl_specs->std_attributes
13357 = chainon (decl_specs->std_attributes,
13358 attrs);
13359 if (decl_specs->locations[ds_std_attribute] == 0)
13360 decl_specs->locations[ds_std_attribute] = token->location;
13362 continue;
13366 decl_specs->attributes
13367 = chainon (decl_specs->attributes,
13368 attrs);
13369 if (decl_specs->locations[ds_attribute] == 0)
13370 decl_specs->locations[ds_attribute] = token->location;
13371 continue;
13373 /* Assume we will find a decl-specifier keyword. */
13374 found_decl_spec = true;
13375 /* If the next token is an appropriate keyword, we can simply
13376 add it to the list. */
13377 switch (token->keyword)
13379 /* decl-specifier:
13380 friend
13381 constexpr */
13382 case RID_FRIEND:
13383 if (!at_class_scope_p ())
13385 error_at (token->location, "%<friend%> used outside of class");
13386 cp_lexer_purge_token (parser->lexer);
13388 else
13390 ds = ds_friend;
13391 /* Consume the token. */
13392 cp_lexer_consume_token (parser->lexer);
13394 break;
13396 case RID_CONSTEXPR:
13397 ds = ds_constexpr;
13398 cp_lexer_consume_token (parser->lexer);
13399 break;
13401 case RID_CONCEPT:
13402 ds = ds_concept;
13403 cp_lexer_consume_token (parser->lexer);
13404 break;
13406 /* function-specifier:
13407 inline
13408 virtual
13409 explicit */
13410 case RID_INLINE:
13411 case RID_VIRTUAL:
13412 case RID_EXPLICIT:
13413 cp_parser_function_specifier_opt (parser, decl_specs);
13414 break;
13416 /* decl-specifier:
13417 typedef */
13418 case RID_TYPEDEF:
13419 ds = ds_typedef;
13420 /* Consume the token. */
13421 cp_lexer_consume_token (parser->lexer);
13422 /* A constructor declarator cannot appear in a typedef. */
13423 constructor_possible_p = false;
13424 /* The "typedef" keyword can only occur in a declaration; we
13425 may as well commit at this point. */
13426 cp_parser_commit_to_tentative_parse (parser);
13428 if (decl_specs->storage_class != sc_none)
13429 decl_specs->conflicting_specifiers_p = true;
13430 break;
13432 /* storage-class-specifier:
13433 auto
13434 register
13435 static
13436 extern
13437 mutable
13439 GNU Extension:
13440 thread */
13441 case RID_AUTO:
13442 if (cxx_dialect == cxx98)
13444 /* Consume the token. */
13445 cp_lexer_consume_token (parser->lexer);
13447 /* Complain about `auto' as a storage specifier, if
13448 we're complaining about C++0x compatibility. */
13449 warning_at (token->location, OPT_Wc__11_compat, "%<auto%>"
13450 " changes meaning in C++11; please remove it");
13452 /* Set the storage class anyway. */
13453 cp_parser_set_storage_class (parser, decl_specs, RID_AUTO,
13454 token);
13456 else
13457 /* C++0x auto type-specifier. */
13458 found_decl_spec = false;
13459 break;
13461 case RID_REGISTER:
13462 case RID_STATIC:
13463 case RID_EXTERN:
13464 case RID_MUTABLE:
13465 /* Consume the token. */
13466 cp_lexer_consume_token (parser->lexer);
13467 cp_parser_set_storage_class (parser, decl_specs, token->keyword,
13468 token);
13469 break;
13470 case RID_THREAD:
13471 /* Consume the token. */
13472 ds = ds_thread;
13473 cp_lexer_consume_token (parser->lexer);
13474 break;
13476 default:
13477 /* We did not yet find a decl-specifier yet. */
13478 found_decl_spec = false;
13479 break;
13482 if (found_decl_spec
13483 && (flags & CP_PARSER_FLAGS_ONLY_TYPE_OR_CONSTEXPR)
13484 && token->keyword != RID_CONSTEXPR)
13485 error ("decl-specifier invalid in condition");
13487 if (found_decl_spec
13488 && (flags & CP_PARSER_FLAGS_ONLY_MUTABLE_OR_CONSTEXPR)
13489 && token->keyword != RID_MUTABLE
13490 && token->keyword != RID_CONSTEXPR)
13491 error_at (token->location, "%qD invalid in lambda",
13492 ridpointers[token->keyword]);
13494 if (ds != ds_last)
13495 set_and_check_decl_spec_loc (decl_specs, ds, token);
13497 /* Constructors are a special case. The `S' in `S()' is not a
13498 decl-specifier; it is the beginning of the declarator. */
13499 constructor_p
13500 = (!found_decl_spec
13501 && constructor_possible_p
13502 && (cp_parser_constructor_declarator_p
13503 (parser, decl_spec_seq_has_spec_p (decl_specs, ds_friend))));
13505 /* If we don't have a DECL_SPEC yet, then we must be looking at
13506 a type-specifier. */
13507 if (!found_decl_spec && !constructor_p)
13509 int decl_spec_declares_class_or_enum;
13510 bool is_cv_qualifier;
13511 tree type_spec;
13513 type_spec
13514 = cp_parser_type_specifier (parser, flags,
13515 decl_specs,
13516 /*is_declaration=*/true,
13517 &decl_spec_declares_class_or_enum,
13518 &is_cv_qualifier);
13519 *declares_class_or_enum |= decl_spec_declares_class_or_enum;
13521 /* If this type-specifier referenced a user-defined type
13522 (a typedef, class-name, etc.), then we can't allow any
13523 more such type-specifiers henceforth.
13525 [dcl.spec]
13527 The longest sequence of decl-specifiers that could
13528 possibly be a type name is taken as the
13529 decl-specifier-seq of a declaration. The sequence shall
13530 be self-consistent as described below.
13532 [dcl.type]
13534 As a general rule, at most one type-specifier is allowed
13535 in the complete decl-specifier-seq of a declaration. The
13536 only exceptions are the following:
13538 -- const or volatile can be combined with any other
13539 type-specifier.
13541 -- signed or unsigned can be combined with char, long,
13542 short, or int.
13544 -- ..
13546 Example:
13548 typedef char* Pc;
13549 void g (const int Pc);
13551 Here, Pc is *not* part of the decl-specifier seq; it's
13552 the declarator. Therefore, once we see a type-specifier
13553 (other than a cv-qualifier), we forbid any additional
13554 user-defined types. We *do* still allow things like `int
13555 int' to be considered a decl-specifier-seq, and issue the
13556 error message later. */
13557 if (type_spec && !is_cv_qualifier)
13558 flags |= CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES;
13559 /* A constructor declarator cannot follow a type-specifier. */
13560 if (type_spec)
13562 constructor_possible_p = false;
13563 found_decl_spec = true;
13564 if (!is_cv_qualifier)
13565 decl_specs->any_type_specifiers_p = true;
13569 /* If we still do not have a DECL_SPEC, then there are no more
13570 decl-specifiers. */
13571 if (!found_decl_spec)
13572 break;
13574 decl_specs->any_specifiers_p = true;
13575 /* After we see one decl-specifier, further decl-specifiers are
13576 always optional. */
13577 flags |= CP_PARSER_FLAGS_OPTIONAL;
13580 /* Don't allow a friend specifier with a class definition. */
13581 if (decl_spec_seq_has_spec_p (decl_specs, ds_friend)
13582 && (*declares_class_or_enum & 2))
13583 error_at (decl_specs->locations[ds_friend],
13584 "class definition may not be declared a friend");
13587 /* Parse an (optional) storage-class-specifier.
13589 storage-class-specifier:
13590 auto
13591 register
13592 static
13593 extern
13594 mutable
13596 GNU Extension:
13598 storage-class-specifier:
13599 thread
13601 Returns an IDENTIFIER_NODE corresponding to the keyword used. */
13603 static tree
13604 cp_parser_storage_class_specifier_opt (cp_parser* parser)
13606 switch (cp_lexer_peek_token (parser->lexer)->keyword)
13608 case RID_AUTO:
13609 if (cxx_dialect != cxx98)
13610 return NULL_TREE;
13611 /* Fall through for C++98. */
13612 gcc_fallthrough ();
13614 case RID_REGISTER:
13615 case RID_STATIC:
13616 case RID_EXTERN:
13617 case RID_MUTABLE:
13618 case RID_THREAD:
13619 /* Consume the token. */
13620 return cp_lexer_consume_token (parser->lexer)->u.value;
13622 default:
13623 return NULL_TREE;
13627 /* Parse an (optional) function-specifier.
13629 function-specifier:
13630 inline
13631 virtual
13632 explicit
13634 Returns an IDENTIFIER_NODE corresponding to the keyword used.
13635 Updates DECL_SPECS, if it is non-NULL. */
13637 static tree
13638 cp_parser_function_specifier_opt (cp_parser* parser,
13639 cp_decl_specifier_seq *decl_specs)
13641 cp_token *token = cp_lexer_peek_token (parser->lexer);
13642 switch (token->keyword)
13644 case RID_INLINE:
13645 set_and_check_decl_spec_loc (decl_specs, ds_inline, token);
13646 break;
13648 case RID_VIRTUAL:
13649 /* 14.5.2.3 [temp.mem]
13651 A member function template shall not be virtual. */
13652 if (PROCESSING_REAL_TEMPLATE_DECL_P ()
13653 && current_class_type)
13654 error_at (token->location, "templates may not be %<virtual%>");
13655 else
13656 set_and_check_decl_spec_loc (decl_specs, ds_virtual, token);
13657 break;
13659 case RID_EXPLICIT:
13660 set_and_check_decl_spec_loc (decl_specs, ds_explicit, token);
13661 break;
13663 default:
13664 return NULL_TREE;
13667 /* Consume the token. */
13668 return cp_lexer_consume_token (parser->lexer)->u.value;
13671 /* Parse a linkage-specification.
13673 linkage-specification:
13674 extern string-literal { declaration-seq [opt] }
13675 extern string-literal declaration */
13677 static void
13678 cp_parser_linkage_specification (cp_parser* parser)
13680 tree linkage;
13682 /* Look for the `extern' keyword. */
13683 cp_parser_require_keyword (parser, RID_EXTERN, RT_EXTERN);
13685 /* Look for the string-literal. */
13686 linkage = cp_parser_string_literal (parser, false, false);
13688 /* Transform the literal into an identifier. If the literal is a
13689 wide-character string, or contains embedded NULs, then we can't
13690 handle it as the user wants. */
13691 if (strlen (TREE_STRING_POINTER (linkage))
13692 != (size_t) (TREE_STRING_LENGTH (linkage) - 1))
13694 cp_parser_error (parser, "invalid linkage-specification");
13695 /* Assume C++ linkage. */
13696 linkage = lang_name_cplusplus;
13698 else
13699 linkage = get_identifier (TREE_STRING_POINTER (linkage));
13701 /* We're now using the new linkage. */
13702 push_lang_context (linkage);
13704 /* If the next token is a `{', then we're using the first
13705 production. */
13706 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
13708 cp_ensure_no_omp_declare_simd (parser);
13709 cp_ensure_no_oacc_routine (parser);
13711 /* Consume the `{' token. */
13712 cp_lexer_consume_token (parser->lexer);
13713 /* Parse the declarations. */
13714 cp_parser_declaration_seq_opt (parser);
13715 /* Look for the closing `}'. */
13716 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
13718 /* Otherwise, there's just one declaration. */
13719 else
13721 bool saved_in_unbraced_linkage_specification_p;
13723 saved_in_unbraced_linkage_specification_p
13724 = parser->in_unbraced_linkage_specification_p;
13725 parser->in_unbraced_linkage_specification_p = true;
13726 cp_parser_declaration (parser);
13727 parser->in_unbraced_linkage_specification_p
13728 = saved_in_unbraced_linkage_specification_p;
13731 /* We're done with the linkage-specification. */
13732 pop_lang_context ();
13735 /* Parse a static_assert-declaration.
13737 static_assert-declaration:
13738 static_assert ( constant-expression , string-literal ) ;
13739 static_assert ( constant-expression ) ; (C++1Z)
13741 If MEMBER_P, this static_assert is a class member. */
13743 static void
13744 cp_parser_static_assert(cp_parser *parser, bool member_p)
13746 tree condition;
13747 tree message;
13748 cp_token *token;
13749 location_t saved_loc;
13750 bool dummy;
13752 /* Peek at the `static_assert' token so we can keep track of exactly
13753 where the static assertion started. */
13754 token = cp_lexer_peek_token (parser->lexer);
13755 saved_loc = token->location;
13757 /* Look for the `static_assert' keyword. */
13758 if (!cp_parser_require_keyword (parser, RID_STATIC_ASSERT,
13759 RT_STATIC_ASSERT))
13760 return;
13762 /* We know we are in a static assertion; commit to any tentative
13763 parse. */
13764 if (cp_parser_parsing_tentatively (parser))
13765 cp_parser_commit_to_tentative_parse (parser);
13767 /* Parse the `(' starting the static assertion condition. */
13768 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
13770 /* Parse the constant-expression. Allow a non-constant expression
13771 here in order to give better diagnostics in finish_static_assert. */
13772 condition =
13773 cp_parser_constant_expression (parser,
13774 /*allow_non_constant_p=*/true,
13775 /*non_constant_p=*/&dummy);
13777 if (cp_lexer_peek_token (parser->lexer)->type == CPP_CLOSE_PAREN)
13779 if (cxx_dialect < cxx1z)
13780 pedwarn (input_location, OPT_Wpedantic,
13781 "static_assert without a message "
13782 "only available with -std=c++1z or -std=gnu++1z");
13783 /* Eat the ')' */
13784 cp_lexer_consume_token (parser->lexer);
13785 message = build_string (1, "");
13786 TREE_TYPE (message) = char_array_type_node;
13787 fix_string_type (message);
13789 else
13791 /* Parse the separating `,'. */
13792 cp_parser_require (parser, CPP_COMMA, RT_COMMA);
13794 /* Parse the string-literal message. */
13795 message = cp_parser_string_literal (parser,
13796 /*translate=*/false,
13797 /*wide_ok=*/true);
13799 /* A `)' completes the static assertion. */
13800 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
13801 cp_parser_skip_to_closing_parenthesis (parser,
13802 /*recovering=*/true,
13803 /*or_comma=*/false,
13804 /*consume_paren=*/true);
13807 /* A semicolon terminates the declaration. */
13808 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
13810 /* Complete the static assertion, which may mean either processing
13811 the static assert now or saving it for template instantiation. */
13812 finish_static_assert (condition, message, saved_loc, member_p);
13815 /* Parse the expression in decltype ( expression ). */
13817 static tree
13818 cp_parser_decltype_expr (cp_parser *parser,
13819 bool &id_expression_or_member_access_p)
13821 cp_token *id_expr_start_token;
13822 tree expr;
13824 /* Since we're going to preserve any side-effects from this parse, set up a
13825 firewall to protect our callers from cp_parser_commit_to_tentative_parse
13826 in the expression. */
13827 tentative_firewall firewall (parser);
13829 /* First, try parsing an id-expression. */
13830 id_expr_start_token = cp_lexer_peek_token (parser->lexer);
13831 cp_parser_parse_tentatively (parser);
13832 expr = cp_parser_id_expression (parser,
13833 /*template_keyword_p=*/false,
13834 /*check_dependency_p=*/true,
13835 /*template_p=*/NULL,
13836 /*declarator_p=*/false,
13837 /*optional_p=*/false);
13839 if (!cp_parser_error_occurred (parser) && expr != error_mark_node)
13841 bool non_integral_constant_expression_p = false;
13842 tree id_expression = expr;
13843 cp_id_kind idk;
13844 const char *error_msg;
13846 if (identifier_p (expr))
13847 /* Lookup the name we got back from the id-expression. */
13848 expr = cp_parser_lookup_name_simple (parser, expr,
13849 id_expr_start_token->location);
13851 if (expr
13852 && expr != error_mark_node
13853 && TREE_CODE (expr) != TYPE_DECL
13854 && (TREE_CODE (expr) != BIT_NOT_EXPR
13855 || !TYPE_P (TREE_OPERAND (expr, 0)))
13856 && cp_lexer_peek_token (parser->lexer)->type == CPP_CLOSE_PAREN)
13858 /* Complete lookup of the id-expression. */
13859 expr = (finish_id_expression
13860 (id_expression, expr, parser->scope, &idk,
13861 /*integral_constant_expression_p=*/false,
13862 /*allow_non_integral_constant_expression_p=*/true,
13863 &non_integral_constant_expression_p,
13864 /*template_p=*/false,
13865 /*done=*/true,
13866 /*address_p=*/false,
13867 /*template_arg_p=*/false,
13868 &error_msg,
13869 id_expr_start_token->location));
13871 if (expr == error_mark_node)
13872 /* We found an id-expression, but it was something that we
13873 should not have found. This is an error, not something
13874 we can recover from, so note that we found an
13875 id-expression and we'll recover as gracefully as
13876 possible. */
13877 id_expression_or_member_access_p = true;
13880 if (expr
13881 && expr != error_mark_node
13882 && cp_lexer_peek_token (parser->lexer)->type == CPP_CLOSE_PAREN)
13883 /* We have an id-expression. */
13884 id_expression_or_member_access_p = true;
13887 if (!id_expression_or_member_access_p)
13889 /* Abort the id-expression parse. */
13890 cp_parser_abort_tentative_parse (parser);
13892 /* Parsing tentatively, again. */
13893 cp_parser_parse_tentatively (parser);
13895 /* Parse a class member access. */
13896 expr = cp_parser_postfix_expression (parser, /*address_p=*/false,
13897 /*cast_p=*/false, /*decltype*/true,
13898 /*member_access_only_p=*/true, NULL);
13900 if (expr
13901 && expr != error_mark_node
13902 && cp_lexer_peek_token (parser->lexer)->type == CPP_CLOSE_PAREN)
13903 /* We have an id-expression. */
13904 id_expression_or_member_access_p = true;
13907 if (id_expression_or_member_access_p)
13908 /* We have parsed the complete id-expression or member access. */
13909 cp_parser_parse_definitely (parser);
13910 else
13912 /* Abort our attempt to parse an id-expression or member access
13913 expression. */
13914 cp_parser_abort_tentative_parse (parser);
13916 /* Parse a full expression. */
13917 expr = cp_parser_expression (parser, /*pidk=*/NULL, /*cast_p=*/false,
13918 /*decltype_p=*/true);
13921 return expr;
13924 /* Parse a `decltype' type. Returns the type.
13926 simple-type-specifier:
13927 decltype ( expression )
13928 C++14 proposal:
13929 decltype ( auto ) */
13931 static tree
13932 cp_parser_decltype (cp_parser *parser)
13934 tree expr;
13935 bool id_expression_or_member_access_p = false;
13936 const char *saved_message;
13937 bool saved_integral_constant_expression_p;
13938 bool saved_non_integral_constant_expression_p;
13939 bool saved_greater_than_is_operator_p;
13940 cp_token *start_token = cp_lexer_peek_token (parser->lexer);
13942 if (start_token->type == CPP_DECLTYPE)
13944 /* Already parsed. */
13945 cp_lexer_consume_token (parser->lexer);
13946 return saved_checks_value (start_token->u.tree_check_value);
13949 /* Look for the `decltype' token. */
13950 if (!cp_parser_require_keyword (parser, RID_DECLTYPE, RT_DECLTYPE))
13951 return error_mark_node;
13953 /* Parse the opening `('. */
13954 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
13955 return error_mark_node;
13957 /* decltype (auto) */
13958 if (cxx_dialect >= cxx14
13959 && cp_lexer_next_token_is_keyword (parser->lexer, RID_AUTO))
13961 cp_lexer_consume_token (parser->lexer);
13962 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
13963 return error_mark_node;
13964 expr = make_decltype_auto ();
13965 AUTO_IS_DECLTYPE (expr) = true;
13966 goto rewrite;
13969 /* Types cannot be defined in a `decltype' expression. Save away the
13970 old message. */
13971 saved_message = parser->type_definition_forbidden_message;
13973 /* And create the new one. */
13974 parser->type_definition_forbidden_message
13975 = G_("types may not be defined in %<decltype%> expressions");
13977 /* The restrictions on constant-expressions do not apply inside
13978 decltype expressions. */
13979 saved_integral_constant_expression_p
13980 = parser->integral_constant_expression_p;
13981 saved_non_integral_constant_expression_p
13982 = parser->non_integral_constant_expression_p;
13983 parser->integral_constant_expression_p = false;
13985 /* Within a parenthesized expression, a `>' token is always
13986 the greater-than operator. */
13987 saved_greater_than_is_operator_p
13988 = parser->greater_than_is_operator_p;
13989 parser->greater_than_is_operator_p = true;
13991 /* Do not actually evaluate the expression. */
13992 ++cp_unevaluated_operand;
13994 /* Do not warn about problems with the expression. */
13995 ++c_inhibit_evaluation_warnings;
13997 expr = cp_parser_decltype_expr (parser, id_expression_or_member_access_p);
13999 /* Go back to evaluating expressions. */
14000 --cp_unevaluated_operand;
14001 --c_inhibit_evaluation_warnings;
14003 /* The `>' token might be the end of a template-id or
14004 template-parameter-list now. */
14005 parser->greater_than_is_operator_p
14006 = saved_greater_than_is_operator_p;
14008 /* Restore the old message and the integral constant expression
14009 flags. */
14010 parser->type_definition_forbidden_message = saved_message;
14011 parser->integral_constant_expression_p
14012 = saved_integral_constant_expression_p;
14013 parser->non_integral_constant_expression_p
14014 = saved_non_integral_constant_expression_p;
14016 /* Parse to the closing `)'. */
14017 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
14019 cp_parser_skip_to_closing_parenthesis (parser, true, false,
14020 /*consume_paren=*/true);
14021 return error_mark_node;
14024 expr = finish_decltype_type (expr, id_expression_or_member_access_p,
14025 tf_warning_or_error);
14027 rewrite:
14028 /* Replace the decltype with a CPP_DECLTYPE so we don't need to parse
14029 it again. */
14030 start_token->type = CPP_DECLTYPE;
14031 start_token->u.tree_check_value = ggc_cleared_alloc<struct tree_check> ();
14032 start_token->u.tree_check_value->value = expr;
14033 start_token->u.tree_check_value->checks = get_deferred_access_checks ();
14034 start_token->keyword = RID_MAX;
14035 cp_lexer_purge_tokens_after (parser->lexer, start_token);
14037 return expr;
14040 /* Special member functions [gram.special] */
14042 /* Parse a conversion-function-id.
14044 conversion-function-id:
14045 operator conversion-type-id
14047 Returns an IDENTIFIER_NODE representing the operator. */
14049 static tree
14050 cp_parser_conversion_function_id (cp_parser* parser)
14052 tree type;
14053 tree saved_scope;
14054 tree saved_qualifying_scope;
14055 tree saved_object_scope;
14056 tree pushed_scope = NULL_TREE;
14058 /* Look for the `operator' token. */
14059 if (!cp_parser_require_keyword (parser, RID_OPERATOR, RT_OPERATOR))
14060 return error_mark_node;
14061 /* When we parse the conversion-type-id, the current scope will be
14062 reset. However, we need that information in able to look up the
14063 conversion function later, so we save it here. */
14064 saved_scope = parser->scope;
14065 saved_qualifying_scope = parser->qualifying_scope;
14066 saved_object_scope = parser->object_scope;
14067 /* We must enter the scope of the class so that the names of
14068 entities declared within the class are available in the
14069 conversion-type-id. For example, consider:
14071 struct S {
14072 typedef int I;
14073 operator I();
14076 S::operator I() { ... }
14078 In order to see that `I' is a type-name in the definition, we
14079 must be in the scope of `S'. */
14080 if (saved_scope)
14081 pushed_scope = push_scope (saved_scope);
14082 /* Parse the conversion-type-id. */
14083 type = cp_parser_conversion_type_id (parser);
14084 /* Leave the scope of the class, if any. */
14085 if (pushed_scope)
14086 pop_scope (pushed_scope);
14087 /* Restore the saved scope. */
14088 parser->scope = saved_scope;
14089 parser->qualifying_scope = saved_qualifying_scope;
14090 parser->object_scope = saved_object_scope;
14091 /* If the TYPE is invalid, indicate failure. */
14092 if (type == error_mark_node)
14093 return error_mark_node;
14094 return make_conv_op_name (type);
14097 /* Parse a conversion-type-id:
14099 conversion-type-id:
14100 type-specifier-seq conversion-declarator [opt]
14102 Returns the TYPE specified. */
14104 static tree
14105 cp_parser_conversion_type_id (cp_parser* parser)
14107 tree attributes;
14108 cp_decl_specifier_seq type_specifiers;
14109 cp_declarator *declarator;
14110 tree type_specified;
14111 const char *saved_message;
14113 /* Parse the attributes. */
14114 attributes = cp_parser_attributes_opt (parser);
14116 saved_message = parser->type_definition_forbidden_message;
14117 parser->type_definition_forbidden_message
14118 = G_("types may not be defined in a conversion-type-id");
14120 /* Parse the type-specifiers. */
14121 cp_parser_type_specifier_seq (parser, /*is_declaration=*/false,
14122 /*is_trailing_return=*/false,
14123 &type_specifiers);
14125 parser->type_definition_forbidden_message = saved_message;
14127 /* If that didn't work, stop. */
14128 if (type_specifiers.type == error_mark_node)
14129 return error_mark_node;
14130 /* Parse the conversion-declarator. */
14131 declarator = cp_parser_conversion_declarator_opt (parser);
14133 type_specified = grokdeclarator (declarator, &type_specifiers, TYPENAME,
14134 /*initialized=*/0, &attributes);
14135 if (attributes)
14136 cplus_decl_attributes (&type_specified, attributes, /*flags=*/0);
14138 /* Don't give this error when parsing tentatively. This happens to
14139 work because we always parse this definitively once. */
14140 if (! cp_parser_uncommitted_to_tentative_parse_p (parser)
14141 && type_uses_auto (type_specified))
14143 if (cxx_dialect < cxx14)
14145 error ("invalid use of %<auto%> in conversion operator");
14146 return error_mark_node;
14148 else if (template_parm_scope_p ())
14149 warning (0, "use of %<auto%> in member template "
14150 "conversion operator can never be deduced");
14153 return type_specified;
14156 /* Parse an (optional) conversion-declarator.
14158 conversion-declarator:
14159 ptr-operator conversion-declarator [opt]
14163 static cp_declarator *
14164 cp_parser_conversion_declarator_opt (cp_parser* parser)
14166 enum tree_code code;
14167 tree class_type, std_attributes = NULL_TREE;
14168 cp_cv_quals cv_quals;
14170 /* We don't know if there's a ptr-operator next, or not. */
14171 cp_parser_parse_tentatively (parser);
14172 /* Try the ptr-operator. */
14173 code = cp_parser_ptr_operator (parser, &class_type, &cv_quals,
14174 &std_attributes);
14175 /* If it worked, look for more conversion-declarators. */
14176 if (cp_parser_parse_definitely (parser))
14178 cp_declarator *declarator;
14180 /* Parse another optional declarator. */
14181 declarator = cp_parser_conversion_declarator_opt (parser);
14183 declarator = cp_parser_make_indirect_declarator
14184 (code, class_type, cv_quals, declarator, std_attributes);
14186 return declarator;
14189 return NULL;
14192 /* Parse an (optional) ctor-initializer.
14194 ctor-initializer:
14195 : mem-initializer-list
14197 Returns TRUE iff the ctor-initializer was actually present. */
14199 static bool
14200 cp_parser_ctor_initializer_opt (cp_parser* parser)
14202 /* If the next token is not a `:', then there is no
14203 ctor-initializer. */
14204 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COLON))
14206 /* Do default initialization of any bases and members. */
14207 if (DECL_CONSTRUCTOR_P (current_function_decl))
14208 finish_mem_initializers (NULL_TREE);
14210 return false;
14213 /* Consume the `:' token. */
14214 cp_lexer_consume_token (parser->lexer);
14215 /* And the mem-initializer-list. */
14216 cp_parser_mem_initializer_list (parser);
14218 return true;
14221 /* Parse a mem-initializer-list.
14223 mem-initializer-list:
14224 mem-initializer ... [opt]
14225 mem-initializer ... [opt] , mem-initializer-list */
14227 static void
14228 cp_parser_mem_initializer_list (cp_parser* parser)
14230 tree mem_initializer_list = NULL_TREE;
14231 tree target_ctor = error_mark_node;
14232 cp_token *token = cp_lexer_peek_token (parser->lexer);
14234 /* Let the semantic analysis code know that we are starting the
14235 mem-initializer-list. */
14236 if (!DECL_CONSTRUCTOR_P (current_function_decl))
14237 error_at (token->location,
14238 "only constructors take member initializers");
14240 /* Loop through the list. */
14241 while (true)
14243 tree mem_initializer;
14245 token = cp_lexer_peek_token (parser->lexer);
14246 /* Parse the mem-initializer. */
14247 mem_initializer = cp_parser_mem_initializer (parser);
14248 /* If the next token is a `...', we're expanding member initializers. */
14249 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
14251 /* Consume the `...'. */
14252 cp_lexer_consume_token (parser->lexer);
14254 /* The TREE_PURPOSE must be a _TYPE, because base-specifiers
14255 can be expanded but members cannot. */
14256 if (mem_initializer != error_mark_node
14257 && !TYPE_P (TREE_PURPOSE (mem_initializer)))
14259 error_at (token->location,
14260 "cannot expand initializer for member %qD",
14261 TREE_PURPOSE (mem_initializer));
14262 mem_initializer = error_mark_node;
14265 /* Construct the pack expansion type. */
14266 if (mem_initializer != error_mark_node)
14267 mem_initializer = make_pack_expansion (mem_initializer);
14269 if (target_ctor != error_mark_node
14270 && mem_initializer != error_mark_node)
14272 error ("mem-initializer for %qD follows constructor delegation",
14273 TREE_PURPOSE (mem_initializer));
14274 mem_initializer = error_mark_node;
14276 /* Look for a target constructor. */
14277 if (mem_initializer != error_mark_node
14278 && CLASS_TYPE_P (TREE_PURPOSE (mem_initializer))
14279 && same_type_p (TREE_PURPOSE (mem_initializer), current_class_type))
14281 maybe_warn_cpp0x (CPP0X_DELEGATING_CTORS);
14282 if (mem_initializer_list)
14284 error ("constructor delegation follows mem-initializer for %qD",
14285 TREE_PURPOSE (mem_initializer_list));
14286 mem_initializer = error_mark_node;
14288 target_ctor = mem_initializer;
14290 /* Add it to the list, unless it was erroneous. */
14291 if (mem_initializer != error_mark_node)
14293 TREE_CHAIN (mem_initializer) = mem_initializer_list;
14294 mem_initializer_list = mem_initializer;
14296 /* If the next token is not a `,', we're done. */
14297 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
14298 break;
14299 /* Consume the `,' token. */
14300 cp_lexer_consume_token (parser->lexer);
14303 /* Perform semantic analysis. */
14304 if (DECL_CONSTRUCTOR_P (current_function_decl))
14305 finish_mem_initializers (mem_initializer_list);
14308 /* Parse a mem-initializer.
14310 mem-initializer:
14311 mem-initializer-id ( expression-list [opt] )
14312 mem-initializer-id braced-init-list
14314 GNU extension:
14316 mem-initializer:
14317 ( expression-list [opt] )
14319 Returns a TREE_LIST. The TREE_PURPOSE is the TYPE (for a base
14320 class) or FIELD_DECL (for a non-static data member) to initialize;
14321 the TREE_VALUE is the expression-list. An empty initialization
14322 list is represented by void_list_node. */
14324 static tree
14325 cp_parser_mem_initializer (cp_parser* parser)
14327 tree mem_initializer_id;
14328 tree expression_list;
14329 tree member;
14330 cp_token *token = cp_lexer_peek_token (parser->lexer);
14332 /* Find out what is being initialized. */
14333 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
14335 permerror (token->location,
14336 "anachronistic old-style base class initializer");
14337 mem_initializer_id = NULL_TREE;
14339 else
14341 mem_initializer_id = cp_parser_mem_initializer_id (parser);
14342 if (mem_initializer_id == error_mark_node)
14343 return mem_initializer_id;
14345 member = expand_member_init (mem_initializer_id);
14346 if (member && !DECL_P (member))
14347 in_base_initializer = 1;
14349 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
14351 bool expr_non_constant_p;
14352 cp_lexer_set_source_position (parser->lexer);
14353 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
14354 expression_list = cp_parser_braced_list (parser, &expr_non_constant_p);
14355 CONSTRUCTOR_IS_DIRECT_INIT (expression_list) = 1;
14356 expression_list = build_tree_list (NULL_TREE, expression_list);
14358 else
14360 vec<tree, va_gc> *vec;
14361 vec = cp_parser_parenthesized_expression_list (parser, non_attr,
14362 /*cast_p=*/false,
14363 /*allow_expansion_p=*/true,
14364 /*non_constant_p=*/NULL);
14365 if (vec == NULL)
14366 return error_mark_node;
14367 expression_list = build_tree_list_vec (vec);
14368 release_tree_vector (vec);
14371 if (expression_list == error_mark_node)
14372 return error_mark_node;
14373 if (!expression_list)
14374 expression_list = void_type_node;
14376 in_base_initializer = 0;
14378 return member ? build_tree_list (member, expression_list) : error_mark_node;
14381 /* Parse a mem-initializer-id.
14383 mem-initializer-id:
14384 :: [opt] nested-name-specifier [opt] class-name
14385 decltype-specifier (C++11)
14386 identifier
14388 Returns a TYPE indicating the class to be initialized for the first
14389 production (and the second in C++11). Returns an IDENTIFIER_NODE
14390 indicating the data member to be initialized for the last production. */
14392 static tree
14393 cp_parser_mem_initializer_id (cp_parser* parser)
14395 bool global_scope_p;
14396 bool nested_name_specifier_p;
14397 bool template_p = false;
14398 tree id;
14400 cp_token *token = cp_lexer_peek_token (parser->lexer);
14402 /* `typename' is not allowed in this context ([temp.res]). */
14403 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TYPENAME))
14405 error_at (token->location,
14406 "keyword %<typename%> not allowed in this context (a qualified "
14407 "member initializer is implicitly a type)");
14408 cp_lexer_consume_token (parser->lexer);
14410 /* Look for the optional `::' operator. */
14411 global_scope_p
14412 = (cp_parser_global_scope_opt (parser,
14413 /*current_scope_valid_p=*/false)
14414 != NULL_TREE);
14415 /* Look for the optional nested-name-specifier. The simplest way to
14416 implement:
14418 [temp.res]
14420 The keyword `typename' is not permitted in a base-specifier or
14421 mem-initializer; in these contexts a qualified name that
14422 depends on a template-parameter is implicitly assumed to be a
14423 type name.
14425 is to assume that we have seen the `typename' keyword at this
14426 point. */
14427 nested_name_specifier_p
14428 = (cp_parser_nested_name_specifier_opt (parser,
14429 /*typename_keyword_p=*/true,
14430 /*check_dependency_p=*/true,
14431 /*type_p=*/true,
14432 /*is_declaration=*/true)
14433 != NULL_TREE);
14434 if (nested_name_specifier_p)
14435 template_p = cp_parser_optional_template_keyword (parser);
14436 /* If there is a `::' operator or a nested-name-specifier, then we
14437 are definitely looking for a class-name. */
14438 if (global_scope_p || nested_name_specifier_p)
14439 return cp_parser_class_name (parser,
14440 /*typename_keyword_p=*/true,
14441 /*template_keyword_p=*/template_p,
14442 typename_type,
14443 /*check_dependency_p=*/true,
14444 /*class_head_p=*/false,
14445 /*is_declaration=*/true);
14446 /* Otherwise, we could also be looking for an ordinary identifier. */
14447 cp_parser_parse_tentatively (parser);
14448 if (cp_lexer_next_token_is_decltype (parser->lexer))
14449 /* Try a decltype-specifier. */
14450 id = cp_parser_decltype (parser);
14451 else
14452 /* Otherwise, try a class-name. */
14453 id = cp_parser_class_name (parser,
14454 /*typename_keyword_p=*/true,
14455 /*template_keyword_p=*/false,
14456 none_type,
14457 /*check_dependency_p=*/true,
14458 /*class_head_p=*/false,
14459 /*is_declaration=*/true);
14460 /* If we found one, we're done. */
14461 if (cp_parser_parse_definitely (parser))
14462 return id;
14463 /* Otherwise, look for an ordinary identifier. */
14464 return cp_parser_identifier (parser);
14467 /* Overloading [gram.over] */
14469 /* Parse an operator-function-id.
14471 operator-function-id:
14472 operator operator
14474 Returns an IDENTIFIER_NODE for the operator which is a
14475 human-readable spelling of the identifier, e.g., `operator +'. */
14477 static cp_expr
14478 cp_parser_operator_function_id (cp_parser* parser)
14480 /* Look for the `operator' keyword. */
14481 if (!cp_parser_require_keyword (parser, RID_OPERATOR, RT_OPERATOR))
14482 return error_mark_node;
14483 /* And then the name of the operator itself. */
14484 return cp_parser_operator (parser);
14487 /* Return an identifier node for a user-defined literal operator.
14488 The suffix identifier is chained to the operator name identifier. */
14490 tree
14491 cp_literal_operator_id (const char* name)
14493 tree identifier;
14494 char *buffer = XNEWVEC (char, strlen (UDLIT_OP_ANSI_PREFIX)
14495 + strlen (name) + 10);
14496 sprintf (buffer, UDLIT_OP_ANSI_FORMAT, name);
14497 identifier = get_identifier (buffer);
14499 return identifier;
14502 /* Parse an operator.
14504 operator:
14505 new delete new[] delete[] + - * / % ^ & | ~ ! = < >
14506 += -= *= /= %= ^= &= |= << >> >>= <<= == != <= >= &&
14507 || ++ -- , ->* -> () []
14509 GNU Extensions:
14511 operator:
14512 <? >? <?= >?=
14514 Returns an IDENTIFIER_NODE for the operator which is a
14515 human-readable spelling of the identifier, e.g., `operator +'. */
14517 static cp_expr
14518 cp_parser_operator (cp_parser* parser)
14520 tree id = NULL_TREE;
14521 cp_token *token;
14522 bool utf8 = false;
14524 /* Peek at the next token. */
14525 token = cp_lexer_peek_token (parser->lexer);
14527 location_t start_loc = token->location;
14529 /* Figure out which operator we have. */
14530 switch (token->type)
14532 case CPP_KEYWORD:
14534 enum tree_code op;
14536 /* The keyword should be either `new' or `delete'. */
14537 if (token->keyword == RID_NEW)
14538 op = NEW_EXPR;
14539 else if (token->keyword == RID_DELETE)
14540 op = DELETE_EXPR;
14541 else
14542 break;
14544 /* Consume the `new' or `delete' token. */
14545 location_t end_loc = cp_lexer_consume_token (parser->lexer)->location;
14547 /* Peek at the next token. */
14548 token = cp_lexer_peek_token (parser->lexer);
14549 /* If it's a `[' token then this is the array variant of the
14550 operator. */
14551 if (token->type == CPP_OPEN_SQUARE)
14553 /* Consume the `[' token. */
14554 cp_lexer_consume_token (parser->lexer);
14555 /* Look for the `]' token. */
14556 if (cp_token *close_token
14557 = cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE))
14558 end_loc = close_token->location;
14559 id = cp_operator_id (op == NEW_EXPR
14560 ? VEC_NEW_EXPR : VEC_DELETE_EXPR);
14562 /* Otherwise, we have the non-array variant. */
14563 else
14564 id = cp_operator_id (op);
14566 location_t loc = make_location (start_loc, start_loc, end_loc);
14568 return cp_expr (id, loc);
14571 case CPP_PLUS:
14572 id = cp_operator_id (PLUS_EXPR);
14573 break;
14575 case CPP_MINUS:
14576 id = cp_operator_id (MINUS_EXPR);
14577 break;
14579 case CPP_MULT:
14580 id = cp_operator_id (MULT_EXPR);
14581 break;
14583 case CPP_DIV:
14584 id = cp_operator_id (TRUNC_DIV_EXPR);
14585 break;
14587 case CPP_MOD:
14588 id = cp_operator_id (TRUNC_MOD_EXPR);
14589 break;
14591 case CPP_XOR:
14592 id = cp_operator_id (BIT_XOR_EXPR);
14593 break;
14595 case CPP_AND:
14596 id = cp_operator_id (BIT_AND_EXPR);
14597 break;
14599 case CPP_OR:
14600 id = cp_operator_id (BIT_IOR_EXPR);
14601 break;
14603 case CPP_COMPL:
14604 id = cp_operator_id (BIT_NOT_EXPR);
14605 break;
14607 case CPP_NOT:
14608 id = cp_operator_id (TRUTH_NOT_EXPR);
14609 break;
14611 case CPP_EQ:
14612 id = cp_assignment_operator_id (NOP_EXPR);
14613 break;
14615 case CPP_LESS:
14616 id = cp_operator_id (LT_EXPR);
14617 break;
14619 case CPP_GREATER:
14620 id = cp_operator_id (GT_EXPR);
14621 break;
14623 case CPP_PLUS_EQ:
14624 id = cp_assignment_operator_id (PLUS_EXPR);
14625 break;
14627 case CPP_MINUS_EQ:
14628 id = cp_assignment_operator_id (MINUS_EXPR);
14629 break;
14631 case CPP_MULT_EQ:
14632 id = cp_assignment_operator_id (MULT_EXPR);
14633 break;
14635 case CPP_DIV_EQ:
14636 id = cp_assignment_operator_id (TRUNC_DIV_EXPR);
14637 break;
14639 case CPP_MOD_EQ:
14640 id = cp_assignment_operator_id (TRUNC_MOD_EXPR);
14641 break;
14643 case CPP_XOR_EQ:
14644 id = cp_assignment_operator_id (BIT_XOR_EXPR);
14645 break;
14647 case CPP_AND_EQ:
14648 id = cp_assignment_operator_id (BIT_AND_EXPR);
14649 break;
14651 case CPP_OR_EQ:
14652 id = cp_assignment_operator_id (BIT_IOR_EXPR);
14653 break;
14655 case CPP_LSHIFT:
14656 id = cp_operator_id (LSHIFT_EXPR);
14657 break;
14659 case CPP_RSHIFT:
14660 id = cp_operator_id (RSHIFT_EXPR);
14661 break;
14663 case CPP_LSHIFT_EQ:
14664 id = cp_assignment_operator_id (LSHIFT_EXPR);
14665 break;
14667 case CPP_RSHIFT_EQ:
14668 id = cp_assignment_operator_id (RSHIFT_EXPR);
14669 break;
14671 case CPP_EQ_EQ:
14672 id = cp_operator_id (EQ_EXPR);
14673 break;
14675 case CPP_NOT_EQ:
14676 id = cp_operator_id (NE_EXPR);
14677 break;
14679 case CPP_LESS_EQ:
14680 id = cp_operator_id (LE_EXPR);
14681 break;
14683 case CPP_GREATER_EQ:
14684 id = cp_operator_id (GE_EXPR);
14685 break;
14687 case CPP_AND_AND:
14688 id = cp_operator_id (TRUTH_ANDIF_EXPR);
14689 break;
14691 case CPP_OR_OR:
14692 id = cp_operator_id (TRUTH_ORIF_EXPR);
14693 break;
14695 case CPP_PLUS_PLUS:
14696 id = cp_operator_id (POSTINCREMENT_EXPR);
14697 break;
14699 case CPP_MINUS_MINUS:
14700 id = cp_operator_id (PREDECREMENT_EXPR);
14701 break;
14703 case CPP_COMMA:
14704 id = cp_operator_id (COMPOUND_EXPR);
14705 break;
14707 case CPP_DEREF_STAR:
14708 id = cp_operator_id (MEMBER_REF);
14709 break;
14711 case CPP_DEREF:
14712 id = cp_operator_id (COMPONENT_REF);
14713 break;
14715 case CPP_OPEN_PAREN:
14716 /* Consume the `('. */
14717 cp_lexer_consume_token (parser->lexer);
14718 /* Look for the matching `)'. */
14719 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
14720 return cp_operator_id (CALL_EXPR);
14722 case CPP_OPEN_SQUARE:
14723 /* Consume the `['. */
14724 cp_lexer_consume_token (parser->lexer);
14725 /* Look for the matching `]'. */
14726 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
14727 return cp_operator_id (ARRAY_REF);
14729 case CPP_UTF8STRING:
14730 case CPP_UTF8STRING_USERDEF:
14731 utf8 = true;
14732 /* FALLTHRU */
14733 case CPP_STRING:
14734 case CPP_WSTRING:
14735 case CPP_STRING16:
14736 case CPP_STRING32:
14737 case CPP_STRING_USERDEF:
14738 case CPP_WSTRING_USERDEF:
14739 case CPP_STRING16_USERDEF:
14740 case CPP_STRING32_USERDEF:
14742 tree str, string_tree;
14743 int sz, len;
14745 if (cxx_dialect == cxx98)
14746 maybe_warn_cpp0x (CPP0X_USER_DEFINED_LITERALS);
14748 /* Consume the string. */
14749 str = cp_parser_string_literal (parser, /*translate=*/true,
14750 /*wide_ok=*/true, /*lookup_udlit=*/false);
14751 if (str == error_mark_node)
14752 return error_mark_node;
14753 else if (TREE_CODE (str) == USERDEF_LITERAL)
14755 string_tree = USERDEF_LITERAL_VALUE (str);
14756 id = USERDEF_LITERAL_SUFFIX_ID (str);
14758 else
14760 string_tree = str;
14761 /* Look for the suffix identifier. */
14762 token = cp_lexer_peek_token (parser->lexer);
14763 if (token->type == CPP_NAME)
14764 id = cp_parser_identifier (parser);
14765 else if (token->type == CPP_KEYWORD)
14767 error ("unexpected keyword;"
14768 " remove space between quotes and suffix identifier");
14769 return error_mark_node;
14771 else
14773 error ("expected suffix identifier");
14774 return error_mark_node;
14777 sz = TREE_INT_CST_LOW (TYPE_SIZE_UNIT
14778 (TREE_TYPE (TREE_TYPE (string_tree))));
14779 len = TREE_STRING_LENGTH (string_tree) / sz - 1;
14780 if (len != 0)
14782 error ("expected empty string after %<operator%> keyword");
14783 return error_mark_node;
14785 if (utf8 || TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (string_tree)))
14786 != char_type_node)
14788 error ("invalid encoding prefix in literal operator");
14789 return error_mark_node;
14791 if (id != error_mark_node)
14793 const char *name = IDENTIFIER_POINTER (id);
14794 id = cp_literal_operator_id (name);
14796 return id;
14799 default:
14800 /* Anything else is an error. */
14801 break;
14804 /* If we have selected an identifier, we need to consume the
14805 operator token. */
14806 if (id)
14807 cp_lexer_consume_token (parser->lexer);
14808 /* Otherwise, no valid operator name was present. */
14809 else
14811 cp_parser_error (parser, "expected operator");
14812 id = error_mark_node;
14815 return cp_expr (id, start_loc);
14818 /* Parse a template-declaration.
14820 template-declaration:
14821 export [opt] template < template-parameter-list > declaration
14823 If MEMBER_P is TRUE, this template-declaration occurs within a
14824 class-specifier.
14826 The grammar rule given by the standard isn't correct. What
14827 is really meant is:
14829 template-declaration:
14830 export [opt] template-parameter-list-seq
14831 decl-specifier-seq [opt] init-declarator [opt] ;
14832 export [opt] template-parameter-list-seq
14833 function-definition
14835 template-parameter-list-seq:
14836 template-parameter-list-seq [opt]
14837 template < template-parameter-list >
14839 Concept Extensions:
14841 template-parameter-list-seq:
14842 template < template-parameter-list > requires-clause [opt]
14844 requires-clause:
14845 requires logical-or-expression */
14847 static void
14848 cp_parser_template_declaration (cp_parser* parser, bool member_p)
14850 /* Check for `export'. */
14851 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_EXPORT))
14853 /* Consume the `export' token. */
14854 cp_lexer_consume_token (parser->lexer);
14855 /* Warn that we do not support `export'. */
14856 warning (0, "keyword %<export%> not implemented, and will be ignored");
14859 cp_parser_template_declaration_after_export (parser, member_p);
14862 /* Parse a template-parameter-list.
14864 template-parameter-list:
14865 template-parameter
14866 template-parameter-list , template-parameter
14868 Returns a TREE_LIST. Each node represents a template parameter.
14869 The nodes are connected via their TREE_CHAINs. */
14871 static tree
14872 cp_parser_template_parameter_list (cp_parser* parser)
14874 tree parameter_list = NULL_TREE;
14876 begin_template_parm_list ();
14878 /* The loop below parses the template parms. We first need to know
14879 the total number of template parms to be able to compute proper
14880 canonical types of each dependent type. So after the loop, when
14881 we know the total number of template parms,
14882 end_template_parm_list computes the proper canonical types and
14883 fixes up the dependent types accordingly. */
14884 while (true)
14886 tree parameter;
14887 bool is_non_type;
14888 bool is_parameter_pack;
14889 location_t parm_loc;
14891 /* Parse the template-parameter. */
14892 parm_loc = cp_lexer_peek_token (parser->lexer)->location;
14893 parameter = cp_parser_template_parameter (parser,
14894 &is_non_type,
14895 &is_parameter_pack);
14896 /* Add it to the list. */
14897 if (parameter != error_mark_node)
14898 parameter_list = process_template_parm (parameter_list,
14899 parm_loc,
14900 parameter,
14901 is_non_type,
14902 is_parameter_pack);
14903 else
14905 tree err_parm = build_tree_list (parameter, parameter);
14906 parameter_list = chainon (parameter_list, err_parm);
14909 /* If the next token is not a `,', we're done. */
14910 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
14911 break;
14912 /* Otherwise, consume the `,' token. */
14913 cp_lexer_consume_token (parser->lexer);
14916 return end_template_parm_list (parameter_list);
14919 /* Parse a introduction-list.
14921 introduction-list:
14922 introduced-parameter
14923 introduction-list , introduced-parameter
14925 introduced-parameter:
14926 ...[opt] identifier
14928 Returns a TREE_VEC of WILDCARD_DECLs. If the parameter is a pack
14929 then the introduced parm will have WILDCARD_PACK_P set. In addition, the
14930 WILDCARD_DECL will also have DECL_NAME set and token location in
14931 DECL_SOURCE_LOCATION. */
14933 static tree
14934 cp_parser_introduction_list (cp_parser *parser)
14936 vec<tree, va_gc> *introduction_vec = make_tree_vector ();
14938 while (true)
14940 bool is_pack = cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS);
14941 if (is_pack)
14942 cp_lexer_consume_token (parser->lexer);
14944 /* Build placeholder. */
14945 tree parm = build_nt (WILDCARD_DECL);
14946 DECL_SOURCE_LOCATION (parm)
14947 = cp_lexer_peek_token (parser->lexer)->location;
14948 DECL_NAME (parm) = cp_parser_identifier (parser);
14949 WILDCARD_PACK_P (parm) = is_pack;
14950 vec_safe_push (introduction_vec, parm);
14952 /* If the next token is not a `,', we're done. */
14953 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
14954 break;
14955 /* Otherwise, consume the `,' token. */
14956 cp_lexer_consume_token (parser->lexer);
14959 /* Convert the vec into a TREE_VEC. */
14960 tree introduction_list = make_tree_vec (introduction_vec->length ());
14961 unsigned int n;
14962 tree parm;
14963 FOR_EACH_VEC_ELT (*introduction_vec, n, parm)
14964 TREE_VEC_ELT (introduction_list, n) = parm;
14966 release_tree_vector (introduction_vec);
14967 return introduction_list;
14970 /* Given a declarator, get the declarator-id part, or NULL_TREE if this
14971 is an abstract declarator. */
14973 static inline cp_declarator*
14974 get_id_declarator (cp_declarator *declarator)
14976 cp_declarator *d = declarator;
14977 while (d && d->kind != cdk_id)
14978 d = d->declarator;
14979 return d;
14982 /* Get the unqualified-id from the DECLARATOR or NULL_TREE if this
14983 is an abstract declarator. */
14985 static inline tree
14986 get_unqualified_id (cp_declarator *declarator)
14988 declarator = get_id_declarator (declarator);
14989 if (declarator)
14990 return declarator->u.id.unqualified_name;
14991 else
14992 return NULL_TREE;
14995 /* Returns true if DECL represents a constrained-parameter. */
14997 static inline bool
14998 is_constrained_parameter (tree decl)
15000 return (decl
15001 && TREE_CODE (decl) == TYPE_DECL
15002 && CONSTRAINED_PARM_CONCEPT (decl)
15003 && DECL_P (CONSTRAINED_PARM_CONCEPT (decl)));
15006 /* Returns true if PARM declares a constrained-parameter. */
15008 static inline bool
15009 is_constrained_parameter (cp_parameter_declarator *parm)
15011 return is_constrained_parameter (parm->decl_specifiers.type);
15014 /* Check that the type parameter is only a declarator-id, and that its
15015 type is not cv-qualified. */
15017 bool
15018 cp_parser_check_constrained_type_parm (cp_parser *parser,
15019 cp_parameter_declarator *parm)
15021 if (!parm->declarator)
15022 return true;
15024 if (parm->declarator->kind != cdk_id)
15026 cp_parser_error (parser, "invalid constrained type parameter");
15027 return false;
15030 /* Don't allow cv-qualified type parameters. */
15031 if (decl_spec_seq_has_spec_p (&parm->decl_specifiers, ds_const)
15032 || decl_spec_seq_has_spec_p (&parm->decl_specifiers, ds_volatile))
15034 cp_parser_error (parser, "cv-qualified type parameter");
15035 return false;
15038 return true;
15041 /* Finish parsing/processing a template type parameter and checking
15042 various restrictions. */
15044 static inline tree
15045 cp_parser_constrained_type_template_parm (cp_parser *parser,
15046 tree id,
15047 cp_parameter_declarator* parmdecl)
15049 if (cp_parser_check_constrained_type_parm (parser, parmdecl))
15050 return finish_template_type_parm (class_type_node, id);
15051 else
15052 return error_mark_node;
15055 static tree
15056 finish_constrained_template_template_parm (tree proto, tree id)
15058 /* FIXME: This should probably be copied, and we may need to adjust
15059 the template parameter depths. */
15060 tree saved_parms = current_template_parms;
15061 begin_template_parm_list ();
15062 current_template_parms = DECL_TEMPLATE_PARMS (proto);
15063 end_template_parm_list ();
15065 tree parm = finish_template_template_parm (class_type_node, id);
15066 current_template_parms = saved_parms;
15068 return parm;
15071 /* Finish parsing/processing a template template parameter by borrowing
15072 the template parameter list from the prototype parameter. */
15074 static tree
15075 cp_parser_constrained_template_template_parm (cp_parser *parser,
15076 tree proto,
15077 tree id,
15078 cp_parameter_declarator *parmdecl)
15080 if (!cp_parser_check_constrained_type_parm (parser, parmdecl))
15081 return error_mark_node;
15082 return finish_constrained_template_template_parm (proto, id);
15085 /* Create a new non-type template parameter from the given PARM
15086 declarator. */
15088 static tree
15089 constrained_non_type_template_parm (bool *is_non_type,
15090 cp_parameter_declarator *parm)
15092 *is_non_type = true;
15093 cp_declarator *decl = parm->declarator;
15094 cp_decl_specifier_seq *specs = &parm->decl_specifiers;
15095 specs->type = TREE_TYPE (DECL_INITIAL (specs->type));
15096 return grokdeclarator (decl, specs, TPARM, 0, NULL);
15099 /* Build a constrained template parameter based on the PARMDECL
15100 declarator. The type of PARMDECL is the constrained type, which
15101 refers to the prototype template parameter that ultimately
15102 specifies the type of the declared parameter. */
15104 static tree
15105 finish_constrained_parameter (cp_parser *parser,
15106 cp_parameter_declarator *parmdecl,
15107 bool *is_non_type,
15108 bool *is_parameter_pack)
15110 tree decl = parmdecl->decl_specifiers.type;
15111 tree id = get_unqualified_id (parmdecl->declarator);
15112 tree def = parmdecl->default_argument;
15113 tree proto = DECL_INITIAL (decl);
15115 /* A template parameter constrained by a variadic concept shall also
15116 be declared as a template parameter pack. */
15117 bool is_variadic = template_parameter_pack_p (proto);
15118 if (is_variadic && !*is_parameter_pack)
15119 cp_parser_error (parser, "variadic constraint introduced without %<...%>");
15121 /* Build the parameter. Return an error if the declarator was invalid. */
15122 tree parm;
15123 if (TREE_CODE (proto) == TYPE_DECL)
15124 parm = cp_parser_constrained_type_template_parm (parser, id, parmdecl);
15125 else if (TREE_CODE (proto) == TEMPLATE_DECL)
15126 parm = cp_parser_constrained_template_template_parm (parser, proto, id,
15127 parmdecl);
15128 else
15129 parm = constrained_non_type_template_parm (is_non_type, parmdecl);
15130 if (parm == error_mark_node)
15131 return error_mark_node;
15133 /* Finish the parameter decl and create a node attaching the
15134 default argument and constraint. */
15135 parm = build_tree_list (def, parm);
15136 TEMPLATE_PARM_CONSTRAINTS (parm) = decl;
15138 return parm;
15141 /* Returns true if the parsed type actually represents the declaration
15142 of a type template-parameter. */
15144 static inline bool
15145 declares_constrained_type_template_parameter (tree type)
15147 return (is_constrained_parameter (type)
15148 && TREE_CODE (TREE_TYPE (type)) == TEMPLATE_TYPE_PARM);
15152 /* Returns true if the parsed type actually represents the declaration of
15153 a template template-parameter. */
15155 static bool
15156 declares_constrained_template_template_parameter (tree type)
15158 return (is_constrained_parameter (type)
15159 && TREE_CODE (TREE_TYPE (type)) == TEMPLATE_TEMPLATE_PARM);
15162 /* Parse a default argument for a type template-parameter.
15163 Note that diagnostics are handled in cp_parser_template_parameter. */
15165 static tree
15166 cp_parser_default_type_template_argument (cp_parser *parser)
15168 gcc_assert (cp_lexer_next_token_is (parser->lexer, CPP_EQ));
15170 /* Consume the `=' token. */
15171 cp_lexer_consume_token (parser->lexer);
15173 cp_token *token = cp_lexer_peek_token (parser->lexer);
15175 /* Parse the default-argument. */
15176 push_deferring_access_checks (dk_no_deferred);
15177 tree default_argument = cp_parser_type_id (parser);
15178 pop_deferring_access_checks ();
15180 if (flag_concepts && type_uses_auto (default_argument))
15182 error_at (token->location,
15183 "invalid use of %<auto%> in default template argument");
15184 return error_mark_node;
15187 return default_argument;
15190 /* Parse a default argument for a template template-parameter. */
15192 static tree
15193 cp_parser_default_template_template_argument (cp_parser *parser)
15195 gcc_assert (cp_lexer_next_token_is (parser->lexer, CPP_EQ));
15197 bool is_template;
15199 /* Consume the `='. */
15200 cp_lexer_consume_token (parser->lexer);
15201 /* Parse the id-expression. */
15202 push_deferring_access_checks (dk_no_deferred);
15203 /* save token before parsing the id-expression, for error
15204 reporting */
15205 const cp_token* token = cp_lexer_peek_token (parser->lexer);
15206 tree default_argument
15207 = cp_parser_id_expression (parser,
15208 /*template_keyword_p=*/false,
15209 /*check_dependency_p=*/true,
15210 /*template_p=*/&is_template,
15211 /*declarator_p=*/false,
15212 /*optional_p=*/false);
15213 if (TREE_CODE (default_argument) == TYPE_DECL)
15214 /* If the id-expression was a template-id that refers to
15215 a template-class, we already have the declaration here,
15216 so no further lookup is needed. */
15218 else
15219 /* Look up the name. */
15220 default_argument
15221 = cp_parser_lookup_name (parser, default_argument,
15222 none_type,
15223 /*is_template=*/is_template,
15224 /*is_namespace=*/false,
15225 /*check_dependency=*/true,
15226 /*ambiguous_decls=*/NULL,
15227 token->location);
15228 /* See if the default argument is valid. */
15229 default_argument = check_template_template_default_arg (default_argument);
15230 pop_deferring_access_checks ();
15231 return default_argument;
15234 /* Parse a template-parameter.
15236 template-parameter:
15237 type-parameter
15238 parameter-declaration
15240 If all goes well, returns a TREE_LIST. The TREE_VALUE represents
15241 the parameter. The TREE_PURPOSE is the default value, if any.
15242 Returns ERROR_MARK_NODE on failure. *IS_NON_TYPE is set to true
15243 iff this parameter is a non-type parameter. *IS_PARAMETER_PACK is
15244 set to true iff this parameter is a parameter pack. */
15246 static tree
15247 cp_parser_template_parameter (cp_parser* parser, bool *is_non_type,
15248 bool *is_parameter_pack)
15250 cp_token *token;
15251 cp_parameter_declarator *parameter_declarator;
15252 tree parm;
15254 /* Assume it is a type parameter or a template parameter. */
15255 *is_non_type = false;
15256 /* Assume it not a parameter pack. */
15257 *is_parameter_pack = false;
15258 /* Peek at the next token. */
15259 token = cp_lexer_peek_token (parser->lexer);
15260 /* If it is `template', we have a type-parameter. */
15261 if (token->keyword == RID_TEMPLATE)
15262 return cp_parser_type_parameter (parser, is_parameter_pack);
15263 /* If it is `class' or `typename' we do not know yet whether it is a
15264 type parameter or a non-type parameter. Consider:
15266 template <typename T, typename T::X X> ...
15270 template <class C, class D*> ...
15272 Here, the first parameter is a type parameter, and the second is
15273 a non-type parameter. We can tell by looking at the token after
15274 the identifier -- if it is a `,', `=', or `>' then we have a type
15275 parameter. */
15276 if (token->keyword == RID_TYPENAME || token->keyword == RID_CLASS)
15278 /* Peek at the token after `class' or `typename'. */
15279 token = cp_lexer_peek_nth_token (parser->lexer, 2);
15280 /* If it's an ellipsis, we have a template type parameter
15281 pack. */
15282 if (token->type == CPP_ELLIPSIS)
15283 return cp_parser_type_parameter (parser, is_parameter_pack);
15284 /* If it's an identifier, skip it. */
15285 if (token->type == CPP_NAME)
15286 token = cp_lexer_peek_nth_token (parser->lexer, 3);
15287 /* Now, see if the token looks like the end of a template
15288 parameter. */
15289 if (token->type == CPP_COMMA
15290 || token->type == CPP_EQ
15291 || token->type == CPP_GREATER)
15292 return cp_parser_type_parameter (parser, is_parameter_pack);
15295 /* Otherwise, it is a non-type parameter or a constrained parameter.
15297 [temp.param]
15299 When parsing a default template-argument for a non-type
15300 template-parameter, the first non-nested `>' is taken as the end
15301 of the template parameter-list rather than a greater-than
15302 operator. */
15303 parameter_declarator
15304 = cp_parser_parameter_declaration (parser, /*template_parm_p=*/true,
15305 /*parenthesized_p=*/NULL);
15307 if (!parameter_declarator)
15308 return error_mark_node;
15310 /* If the parameter declaration is marked as a parameter pack, set
15311 *IS_PARAMETER_PACK to notify the caller. */
15312 if (parameter_declarator->template_parameter_pack_p)
15313 *is_parameter_pack = true;
15315 if (parameter_declarator->default_argument)
15317 /* Can happen in some cases of erroneous input (c++/34892). */
15318 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
15319 /* Consume the `...' for better error recovery. */
15320 cp_lexer_consume_token (parser->lexer);
15323 // The parameter may have been constrained.
15324 if (is_constrained_parameter (parameter_declarator))
15325 return finish_constrained_parameter (parser,
15326 parameter_declarator,
15327 is_non_type,
15328 is_parameter_pack);
15330 // Now we're sure that the parameter is a non-type parameter.
15331 *is_non_type = true;
15333 parm = grokdeclarator (parameter_declarator->declarator,
15334 &parameter_declarator->decl_specifiers,
15335 TPARM, /*initialized=*/0,
15336 /*attrlist=*/NULL);
15337 if (parm == error_mark_node)
15338 return error_mark_node;
15340 return build_tree_list (parameter_declarator->default_argument, parm);
15343 /* Parse a type-parameter.
15345 type-parameter:
15346 class identifier [opt]
15347 class identifier [opt] = type-id
15348 typename identifier [opt]
15349 typename identifier [opt] = type-id
15350 template < template-parameter-list > class identifier [opt]
15351 template < template-parameter-list > class identifier [opt]
15352 = id-expression
15354 GNU Extension (variadic templates):
15356 type-parameter:
15357 class ... identifier [opt]
15358 typename ... identifier [opt]
15360 Returns a TREE_LIST. The TREE_VALUE is itself a TREE_LIST. The
15361 TREE_PURPOSE is the default-argument, if any. The TREE_VALUE is
15362 the declaration of the parameter.
15364 Sets *IS_PARAMETER_PACK if this is a template parameter pack. */
15366 static tree
15367 cp_parser_type_parameter (cp_parser* parser, bool *is_parameter_pack)
15369 cp_token *token;
15370 tree parameter;
15372 /* Look for a keyword to tell us what kind of parameter this is. */
15373 token = cp_parser_require (parser, CPP_KEYWORD, RT_CLASS_TYPENAME_TEMPLATE);
15374 if (!token)
15375 return error_mark_node;
15377 switch (token->keyword)
15379 case RID_CLASS:
15380 case RID_TYPENAME:
15382 tree identifier;
15383 tree default_argument;
15385 /* If the next token is an ellipsis, we have a template
15386 argument pack. */
15387 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
15389 /* Consume the `...' token. */
15390 cp_lexer_consume_token (parser->lexer);
15391 maybe_warn_variadic_templates ();
15393 *is_parameter_pack = true;
15396 /* If the next token is an identifier, then it names the
15397 parameter. */
15398 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
15399 identifier = cp_parser_identifier (parser);
15400 else
15401 identifier = NULL_TREE;
15403 /* Create the parameter. */
15404 parameter = finish_template_type_parm (class_type_node, identifier);
15406 /* If the next token is an `=', we have a default argument. */
15407 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
15409 default_argument
15410 = cp_parser_default_type_template_argument (parser);
15412 /* Template parameter packs cannot have default
15413 arguments. */
15414 if (*is_parameter_pack)
15416 if (identifier)
15417 error_at (token->location,
15418 "template parameter pack %qD cannot have a "
15419 "default argument", identifier);
15420 else
15421 error_at (token->location,
15422 "template parameter packs cannot have "
15423 "default arguments");
15424 default_argument = NULL_TREE;
15426 else if (check_for_bare_parameter_packs (default_argument))
15427 default_argument = error_mark_node;
15429 else
15430 default_argument = NULL_TREE;
15432 /* Create the combined representation of the parameter and the
15433 default argument. */
15434 parameter = build_tree_list (default_argument, parameter);
15436 break;
15438 case RID_TEMPLATE:
15440 tree identifier;
15441 tree default_argument;
15443 /* Look for the `<'. */
15444 cp_parser_require (parser, CPP_LESS, RT_LESS);
15445 /* Parse the template-parameter-list. */
15446 cp_parser_template_parameter_list (parser);
15447 /* Look for the `>'. */
15448 cp_parser_require (parser, CPP_GREATER, RT_GREATER);
15450 // If template requirements are present, parse them.
15451 if (flag_concepts)
15453 tree reqs = get_shorthand_constraints (current_template_parms);
15454 if (tree r = cp_parser_requires_clause_opt (parser))
15455 reqs = conjoin_constraints (reqs, normalize_expression (r));
15456 TEMPLATE_PARMS_CONSTRAINTS (current_template_parms) = reqs;
15459 /* Look for the `class' or 'typename' keywords. */
15460 cp_parser_type_parameter_key (parser);
15461 /* If the next token is an ellipsis, we have a template
15462 argument pack. */
15463 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
15465 /* Consume the `...' token. */
15466 cp_lexer_consume_token (parser->lexer);
15467 maybe_warn_variadic_templates ();
15469 *is_parameter_pack = true;
15471 /* If the next token is an `=', then there is a
15472 default-argument. If the next token is a `>', we are at
15473 the end of the parameter-list. If the next token is a `,',
15474 then we are at the end of this parameter. */
15475 if (cp_lexer_next_token_is_not (parser->lexer, CPP_EQ)
15476 && cp_lexer_next_token_is_not (parser->lexer, CPP_GREATER)
15477 && cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
15479 identifier = cp_parser_identifier (parser);
15480 /* Treat invalid names as if the parameter were nameless. */
15481 if (identifier == error_mark_node)
15482 identifier = NULL_TREE;
15484 else
15485 identifier = NULL_TREE;
15487 /* Create the template parameter. */
15488 parameter = finish_template_template_parm (class_type_node,
15489 identifier);
15491 /* If the next token is an `=', then there is a
15492 default-argument. */
15493 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
15495 default_argument
15496 = cp_parser_default_template_template_argument (parser);
15498 /* Template parameter packs cannot have default
15499 arguments. */
15500 if (*is_parameter_pack)
15502 if (identifier)
15503 error_at (token->location,
15504 "template parameter pack %qD cannot "
15505 "have a default argument",
15506 identifier);
15507 else
15508 error_at (token->location, "template parameter packs cannot "
15509 "have default arguments");
15510 default_argument = NULL_TREE;
15513 else
15514 default_argument = NULL_TREE;
15516 /* Create the combined representation of the parameter and the
15517 default argument. */
15518 parameter = build_tree_list (default_argument, parameter);
15520 break;
15522 default:
15523 gcc_unreachable ();
15524 break;
15527 return parameter;
15530 /* Parse a template-id.
15532 template-id:
15533 template-name < template-argument-list [opt] >
15535 If TEMPLATE_KEYWORD_P is TRUE, then we have just seen the
15536 `template' keyword. In this case, a TEMPLATE_ID_EXPR will be
15537 returned. Otherwise, if the template-name names a function, or set
15538 of functions, returns a TEMPLATE_ID_EXPR. If the template-name
15539 names a class, returns a TYPE_DECL for the specialization.
15541 If CHECK_DEPENDENCY_P is FALSE, names are looked up in
15542 uninstantiated templates. */
15544 static tree
15545 cp_parser_template_id (cp_parser *parser,
15546 bool template_keyword_p,
15547 bool check_dependency_p,
15548 enum tag_types tag_type,
15549 bool is_declaration)
15551 tree templ;
15552 tree arguments;
15553 tree template_id;
15554 cp_token_position start_of_id = 0;
15555 cp_token *next_token = NULL, *next_token_2 = NULL;
15556 bool is_identifier;
15558 /* If the next token corresponds to a template-id, there is no need
15559 to reparse it. */
15560 cp_token *token = cp_lexer_peek_token (parser->lexer);
15561 if (token->type == CPP_TEMPLATE_ID)
15563 cp_lexer_consume_token (parser->lexer);
15564 return saved_checks_value (token->u.tree_check_value);
15567 /* Avoid performing name lookup if there is no possibility of
15568 finding a template-id. */
15569 if ((token->type != CPP_NAME && token->keyword != RID_OPERATOR)
15570 || (token->type == CPP_NAME
15571 && !cp_parser_nth_token_starts_template_argument_list_p
15572 (parser, 2)))
15574 cp_parser_error (parser, "expected template-id");
15575 return error_mark_node;
15578 /* Remember where the template-id starts. */
15579 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
15580 start_of_id = cp_lexer_token_position (parser->lexer, false);
15582 push_deferring_access_checks (dk_deferred);
15584 /* Parse the template-name. */
15585 is_identifier = false;
15586 templ = cp_parser_template_name (parser, template_keyword_p,
15587 check_dependency_p,
15588 is_declaration,
15589 tag_type,
15590 &is_identifier);
15591 if (templ == error_mark_node || is_identifier)
15593 pop_deferring_access_checks ();
15594 return templ;
15597 /* Since we're going to preserve any side-effects from this parse, set up a
15598 firewall to protect our callers from cp_parser_commit_to_tentative_parse
15599 in the template arguments. */
15600 tentative_firewall firewall (parser);
15602 /* If we find the sequence `[:' after a template-name, it's probably
15603 a digraph-typo for `< ::'. Substitute the tokens and check if we can
15604 parse correctly the argument list. */
15605 if (((next_token = cp_lexer_peek_token (parser->lexer))->type
15606 == CPP_OPEN_SQUARE)
15607 && next_token->flags & DIGRAPH
15608 && ((next_token_2 = cp_lexer_peek_nth_token (parser->lexer, 2))->type
15609 == CPP_COLON)
15610 && !(next_token_2->flags & PREV_WHITE))
15612 cp_parser_parse_tentatively (parser);
15613 /* Change `:' into `::'. */
15614 next_token_2->type = CPP_SCOPE;
15615 /* Consume the first token (CPP_OPEN_SQUARE - which we pretend it is
15616 CPP_LESS. */
15617 cp_lexer_consume_token (parser->lexer);
15619 /* Parse the arguments. */
15620 arguments = cp_parser_enclosed_template_argument_list (parser);
15621 if (!cp_parser_parse_definitely (parser))
15623 /* If we couldn't parse an argument list, then we revert our changes
15624 and return simply an error. Maybe this is not a template-id
15625 after all. */
15626 next_token_2->type = CPP_COLON;
15627 cp_parser_error (parser, "expected %<<%>");
15628 pop_deferring_access_checks ();
15629 return error_mark_node;
15631 /* Otherwise, emit an error about the invalid digraph, but continue
15632 parsing because we got our argument list. */
15633 if (permerror (next_token->location,
15634 "%<<::%> cannot begin a template-argument list"))
15636 static bool hint = false;
15637 inform (next_token->location,
15638 "%<<:%> is an alternate spelling for %<[%>."
15639 " Insert whitespace between %<<%> and %<::%>");
15640 if (!hint && !flag_permissive)
15642 inform (next_token->location, "(if you use %<-fpermissive%> "
15643 "or %<-std=c++11%>, or %<-std=gnu++11%> G++ will "
15644 "accept your code)");
15645 hint = true;
15649 else
15651 /* Look for the `<' that starts the template-argument-list. */
15652 if (!cp_parser_require (parser, CPP_LESS, RT_LESS))
15654 pop_deferring_access_checks ();
15655 return error_mark_node;
15657 /* Parse the arguments. */
15658 arguments = cp_parser_enclosed_template_argument_list (parser);
15661 /* Set the location to be of the form:
15662 template-name < template-argument-list [opt] >
15663 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15664 with caret == start at the start of the template-name,
15665 ranging until the closing '>'. */
15666 location_t finish_loc
15667 = get_finish (cp_lexer_previous_token (parser->lexer)->location);
15668 location_t combined_loc
15669 = make_location (token->location, token->location, finish_loc);
15671 /* Build a representation of the specialization. */
15672 if (identifier_p (templ))
15673 template_id = build_min_nt_loc (combined_loc,
15674 TEMPLATE_ID_EXPR,
15675 templ, arguments);
15676 else if (DECL_TYPE_TEMPLATE_P (templ)
15677 || DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
15679 bool entering_scope;
15680 /* In "template <typename T> ... A<T>::", A<T> is the abstract A
15681 template (rather than some instantiation thereof) only if
15682 is not nested within some other construct. For example, in
15683 "template <typename T> void f(T) { A<T>::", A<T> is just an
15684 instantiation of A. */
15685 entering_scope = (template_parm_scope_p ()
15686 && cp_lexer_next_token_is (parser->lexer,
15687 CPP_SCOPE));
15688 template_id
15689 = finish_template_type (templ, arguments, entering_scope);
15691 /* A template-like identifier may be a partial concept id. */
15692 else if (flag_concepts
15693 && (template_id = (cp_parser_maybe_partial_concept_id
15694 (parser, templ, arguments))))
15695 return template_id;
15696 else if (variable_template_p (templ))
15698 template_id = lookup_template_variable (templ, arguments);
15699 if (TREE_CODE (template_id) == TEMPLATE_ID_EXPR)
15700 SET_EXPR_LOCATION (template_id, combined_loc);
15702 else
15704 /* If it's not a class-template or a template-template, it should be
15705 a function-template. */
15706 gcc_assert ((DECL_FUNCTION_TEMPLATE_P (templ)
15707 || TREE_CODE (templ) == OVERLOAD
15708 || BASELINK_P (templ)));
15710 template_id = lookup_template_function (templ, arguments);
15711 if (TREE_CODE (template_id) == TEMPLATE_ID_EXPR)
15712 SET_EXPR_LOCATION (template_id, combined_loc);
15715 /* If parsing tentatively, replace the sequence of tokens that makes
15716 up the template-id with a CPP_TEMPLATE_ID token. That way,
15717 should we re-parse the token stream, we will not have to repeat
15718 the effort required to do the parse, nor will we issue duplicate
15719 error messages about problems during instantiation of the
15720 template. */
15721 if (start_of_id
15722 /* Don't do this if we had a parse error in a declarator; re-parsing
15723 might succeed if a name changes meaning (60361). */
15724 && !(cp_parser_error_occurred (parser)
15725 && cp_parser_parsing_tentatively (parser)
15726 && parser->in_declarator_p))
15728 /* Reset the contents of the START_OF_ID token. */
15729 token->type = CPP_TEMPLATE_ID;
15730 token->location = combined_loc;
15732 /* We must mark the lookup as kept, so we don't throw it away on
15733 the first parse. */
15734 if (is_overloaded_fn (template_id))
15735 lookup_keep (get_fns (template_id), true);
15737 /* Retrieve any deferred checks. Do not pop this access checks yet
15738 so the memory will not be reclaimed during token replacing below. */
15739 token->u.tree_check_value = ggc_cleared_alloc<struct tree_check> ();
15740 token->u.tree_check_value->value = template_id;
15741 token->u.tree_check_value->checks = get_deferred_access_checks ();
15742 token->keyword = RID_MAX;
15744 /* Purge all subsequent tokens. */
15745 cp_lexer_purge_tokens_after (parser->lexer, start_of_id);
15747 /* ??? Can we actually assume that, if template_id ==
15748 error_mark_node, we will have issued a diagnostic to the
15749 user, as opposed to simply marking the tentative parse as
15750 failed? */
15751 if (cp_parser_error_occurred (parser) && template_id != error_mark_node)
15752 error_at (token->location, "parse error in template argument list");
15755 pop_to_parent_deferring_access_checks ();
15756 return template_id;
15759 /* Parse a template-name.
15761 template-name:
15762 identifier
15764 The standard should actually say:
15766 template-name:
15767 identifier
15768 operator-function-id
15770 A defect report has been filed about this issue.
15772 A conversion-function-id cannot be a template name because they cannot
15773 be part of a template-id. In fact, looking at this code:
15775 a.operator K<int>()
15777 the conversion-function-id is "operator K<int>", and K<int> is a type-id.
15778 It is impossible to call a templated conversion-function-id with an
15779 explicit argument list, since the only allowed template parameter is
15780 the type to which it is converting.
15782 If TEMPLATE_KEYWORD_P is true, then we have just seen the
15783 `template' keyword, in a construction like:
15785 T::template f<3>()
15787 In that case `f' is taken to be a template-name, even though there
15788 is no way of knowing for sure.
15790 Returns the TEMPLATE_DECL for the template, or an OVERLOAD if the
15791 name refers to a set of overloaded functions, at least one of which
15792 is a template, or an IDENTIFIER_NODE with the name of the template,
15793 if TEMPLATE_KEYWORD_P is true. If CHECK_DEPENDENCY_P is FALSE,
15794 names are looked up inside uninstantiated templates. */
15796 static tree
15797 cp_parser_template_name (cp_parser* parser,
15798 bool template_keyword_p,
15799 bool check_dependency_p,
15800 bool is_declaration,
15801 enum tag_types tag_type,
15802 bool *is_identifier)
15804 tree identifier;
15805 tree decl;
15806 cp_token *token = cp_lexer_peek_token (parser->lexer);
15808 /* If the next token is `operator', then we have either an
15809 operator-function-id or a conversion-function-id. */
15810 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_OPERATOR))
15812 /* We don't know whether we're looking at an
15813 operator-function-id or a conversion-function-id. */
15814 cp_parser_parse_tentatively (parser);
15815 /* Try an operator-function-id. */
15816 identifier = cp_parser_operator_function_id (parser);
15817 /* If that didn't work, try a conversion-function-id. */
15818 if (!cp_parser_parse_definitely (parser))
15820 cp_parser_error (parser, "expected template-name");
15821 return error_mark_node;
15824 /* Look for the identifier. */
15825 else
15826 identifier = cp_parser_identifier (parser);
15828 /* If we didn't find an identifier, we don't have a template-id. */
15829 if (identifier == error_mark_node)
15830 return error_mark_node;
15832 /* If the name immediately followed the `template' keyword, then it
15833 is a template-name. However, if the next token is not `<', then
15834 we do not treat it as a template-name, since it is not being used
15835 as part of a template-id. This enables us to handle constructs
15836 like:
15838 template <typename T> struct S { S(); };
15839 template <typename T> S<T>::S();
15841 correctly. We would treat `S' as a template -- if it were `S<T>'
15842 -- but we do not if there is no `<'. */
15844 if (processing_template_decl
15845 && cp_parser_nth_token_starts_template_argument_list_p (parser, 1))
15847 /* In a declaration, in a dependent context, we pretend that the
15848 "template" keyword was present in order to improve error
15849 recovery. For example, given:
15851 template <typename T> void f(T::X<int>);
15853 we want to treat "X<int>" as a template-id. */
15854 if (is_declaration
15855 && !template_keyword_p
15856 && parser->scope && TYPE_P (parser->scope)
15857 && check_dependency_p
15858 && dependent_scope_p (parser->scope)
15859 /* Do not do this for dtors (or ctors), since they never
15860 need the template keyword before their name. */
15861 && !constructor_name_p (identifier, parser->scope))
15863 cp_token_position start = 0;
15865 /* Explain what went wrong. */
15866 error_at (token->location, "non-template %qD used as template",
15867 identifier);
15868 inform (token->location, "use %<%T::template %D%> to indicate that it is a template",
15869 parser->scope, identifier);
15870 /* If parsing tentatively, find the location of the "<" token. */
15871 if (cp_parser_simulate_error (parser))
15872 start = cp_lexer_token_position (parser->lexer, true);
15873 /* Parse the template arguments so that we can issue error
15874 messages about them. */
15875 cp_lexer_consume_token (parser->lexer);
15876 cp_parser_enclosed_template_argument_list (parser);
15877 /* Skip tokens until we find a good place from which to
15878 continue parsing. */
15879 cp_parser_skip_to_closing_parenthesis (parser,
15880 /*recovering=*/true,
15881 /*or_comma=*/true,
15882 /*consume_paren=*/false);
15883 /* If parsing tentatively, permanently remove the
15884 template argument list. That will prevent duplicate
15885 error messages from being issued about the missing
15886 "template" keyword. */
15887 if (start)
15888 cp_lexer_purge_tokens_after (parser->lexer, start);
15889 if (is_identifier)
15890 *is_identifier = true;
15891 parser->context->object_type = NULL_TREE;
15892 return identifier;
15895 /* If the "template" keyword is present, then there is generally
15896 no point in doing name-lookup, so we just return IDENTIFIER.
15897 But, if the qualifying scope is non-dependent then we can
15898 (and must) do name-lookup normally. */
15899 if (template_keyword_p)
15901 tree scope = (parser->scope ? parser->scope
15902 : parser->context->object_type);
15903 if (scope && TYPE_P (scope)
15904 && (!CLASS_TYPE_P (scope)
15905 || (check_dependency_p && dependent_type_p (scope))))
15907 /* We're optimizing away the call to cp_parser_lookup_name, but
15908 we still need to do this. */
15909 parser->context->object_type = NULL_TREE;
15910 return identifier;
15915 /* Look up the name. */
15916 decl = cp_parser_lookup_name (parser, identifier,
15917 tag_type,
15918 /*is_template=*/true,
15919 /*is_namespace=*/false,
15920 check_dependency_p,
15921 /*ambiguous_decls=*/NULL,
15922 token->location);
15924 decl = strip_using_decl (decl);
15926 /* If DECL is a template, then the name was a template-name. */
15927 if (TREE_CODE (decl) == TEMPLATE_DECL)
15929 if (TREE_DEPRECATED (decl)
15930 && deprecated_state != DEPRECATED_SUPPRESS)
15931 warn_deprecated_use (decl, NULL_TREE);
15933 else
15935 /* The standard does not explicitly indicate whether a name that
15936 names a set of overloaded declarations, some of which are
15937 templates, is a template-name. However, such a name should
15938 be a template-name; otherwise, there is no way to form a
15939 template-id for the overloaded templates. */
15940 bool found = false;
15942 for (lkp_iterator iter (MAYBE_BASELINK_FUNCTIONS (decl));
15943 !found && iter; ++iter)
15944 if (TREE_CODE (*iter) == TEMPLATE_DECL)
15945 found = true;
15947 if (!found)
15949 /* The name does not name a template. */
15950 cp_parser_error (parser, "expected template-name");
15951 return error_mark_node;
15955 /* If DECL is dependent, and refers to a function, then just return
15956 its name; we will look it up again during template instantiation. */
15957 if (DECL_FUNCTION_TEMPLATE_P (decl) || !DECL_P (decl))
15959 tree scope = ovl_scope (decl);
15960 if (TYPE_P (scope) && dependent_type_p (scope))
15961 return identifier;
15964 return decl;
15967 /* Parse a template-argument-list.
15969 template-argument-list:
15970 template-argument ... [opt]
15971 template-argument-list , template-argument ... [opt]
15973 Returns a TREE_VEC containing the arguments. */
15975 static tree
15976 cp_parser_template_argument_list (cp_parser* parser)
15978 tree fixed_args[10];
15979 unsigned n_args = 0;
15980 unsigned alloced = 10;
15981 tree *arg_ary = fixed_args;
15982 tree vec;
15983 bool saved_in_template_argument_list_p;
15984 bool saved_ice_p;
15985 bool saved_non_ice_p;
15987 saved_in_template_argument_list_p = parser->in_template_argument_list_p;
15988 parser->in_template_argument_list_p = true;
15989 /* Even if the template-id appears in an integral
15990 constant-expression, the contents of the argument list do
15991 not. */
15992 saved_ice_p = parser->integral_constant_expression_p;
15993 parser->integral_constant_expression_p = false;
15994 saved_non_ice_p = parser->non_integral_constant_expression_p;
15995 parser->non_integral_constant_expression_p = false;
15997 /* Parse the arguments. */
16000 tree argument;
16002 if (n_args)
16003 /* Consume the comma. */
16004 cp_lexer_consume_token (parser->lexer);
16006 /* Parse the template-argument. */
16007 argument = cp_parser_template_argument (parser);
16009 /* If the next token is an ellipsis, we're expanding a template
16010 argument pack. */
16011 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
16013 if (argument == error_mark_node)
16015 cp_token *token = cp_lexer_peek_token (parser->lexer);
16016 error_at (token->location,
16017 "expected parameter pack before %<...%>");
16019 /* Consume the `...' token. */
16020 cp_lexer_consume_token (parser->lexer);
16022 /* Make the argument into a TYPE_PACK_EXPANSION or
16023 EXPR_PACK_EXPANSION. */
16024 argument = make_pack_expansion (argument);
16027 if (n_args == alloced)
16029 alloced *= 2;
16031 if (arg_ary == fixed_args)
16033 arg_ary = XNEWVEC (tree, alloced);
16034 memcpy (arg_ary, fixed_args, sizeof (tree) * n_args);
16036 else
16037 arg_ary = XRESIZEVEC (tree, arg_ary, alloced);
16039 arg_ary[n_args++] = argument;
16041 while (cp_lexer_next_token_is (parser->lexer, CPP_COMMA));
16043 vec = make_tree_vec (n_args);
16045 while (n_args--)
16046 TREE_VEC_ELT (vec, n_args) = arg_ary[n_args];
16048 if (arg_ary != fixed_args)
16049 free (arg_ary);
16050 parser->non_integral_constant_expression_p = saved_non_ice_p;
16051 parser->integral_constant_expression_p = saved_ice_p;
16052 parser->in_template_argument_list_p = saved_in_template_argument_list_p;
16053 if (CHECKING_P)
16054 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
16055 return vec;
16058 /* Parse a template-argument.
16060 template-argument:
16061 assignment-expression
16062 type-id
16063 id-expression
16065 The representation is that of an assignment-expression, type-id, or
16066 id-expression -- except that the qualified id-expression is
16067 evaluated, so that the value returned is either a DECL or an
16068 OVERLOAD.
16070 Although the standard says "assignment-expression", it forbids
16071 throw-expressions or assignments in the template argument.
16072 Therefore, we use "conditional-expression" instead. */
16074 static tree
16075 cp_parser_template_argument (cp_parser* parser)
16077 tree argument;
16078 bool template_p;
16079 bool address_p;
16080 bool maybe_type_id = false;
16081 cp_token *token = NULL, *argument_start_token = NULL;
16082 location_t loc = 0;
16083 cp_id_kind idk;
16085 /* There's really no way to know what we're looking at, so we just
16086 try each alternative in order.
16088 [temp.arg]
16090 In a template-argument, an ambiguity between a type-id and an
16091 expression is resolved to a type-id, regardless of the form of
16092 the corresponding template-parameter.
16094 Therefore, we try a type-id first. */
16095 cp_parser_parse_tentatively (parser);
16096 argument = cp_parser_template_type_arg (parser);
16097 /* If there was no error parsing the type-id but the next token is a
16098 '>>', our behavior depends on which dialect of C++ we're
16099 parsing. In C++98, we probably found a typo for '> >'. But there
16100 are type-id which are also valid expressions. For instance:
16102 struct X { int operator >> (int); };
16103 template <int V> struct Foo {};
16104 Foo<X () >> 5> r;
16106 Here 'X()' is a valid type-id of a function type, but the user just
16107 wanted to write the expression "X() >> 5". Thus, we remember that we
16108 found a valid type-id, but we still try to parse the argument as an
16109 expression to see what happens.
16111 In C++0x, the '>>' will be considered two separate '>'
16112 tokens. */
16113 if (!cp_parser_error_occurred (parser)
16114 && cxx_dialect == cxx98
16115 && cp_lexer_next_token_is (parser->lexer, CPP_RSHIFT))
16117 maybe_type_id = true;
16118 cp_parser_abort_tentative_parse (parser);
16120 else
16122 /* If the next token isn't a `,' or a `>', then this argument wasn't
16123 really finished. This means that the argument is not a valid
16124 type-id. */
16125 if (!cp_parser_next_token_ends_template_argument_p (parser))
16126 cp_parser_error (parser, "expected template-argument");
16127 /* If that worked, we're done. */
16128 if (cp_parser_parse_definitely (parser))
16129 return argument;
16131 /* We're still not sure what the argument will be. */
16132 cp_parser_parse_tentatively (parser);
16133 /* Try a template. */
16134 argument_start_token = cp_lexer_peek_token (parser->lexer);
16135 argument = cp_parser_id_expression (parser,
16136 /*template_keyword_p=*/false,
16137 /*check_dependency_p=*/true,
16138 &template_p,
16139 /*declarator_p=*/false,
16140 /*optional_p=*/false);
16141 /* If the next token isn't a `,' or a `>', then this argument wasn't
16142 really finished. */
16143 if (!cp_parser_next_token_ends_template_argument_p (parser))
16144 cp_parser_error (parser, "expected template-argument");
16145 if (!cp_parser_error_occurred (parser))
16147 /* Figure out what is being referred to. If the id-expression
16148 was for a class template specialization, then we will have a
16149 TYPE_DECL at this point. There is no need to do name lookup
16150 at this point in that case. */
16151 if (TREE_CODE (argument) != TYPE_DECL)
16152 argument = cp_parser_lookup_name (parser, argument,
16153 none_type,
16154 /*is_template=*/template_p,
16155 /*is_namespace=*/false,
16156 /*check_dependency=*/true,
16157 /*ambiguous_decls=*/NULL,
16158 argument_start_token->location);
16159 /* Handle a constrained-type-specifier for a non-type template
16160 parameter. */
16161 if (tree decl = cp_parser_maybe_concept_name (parser, argument))
16162 argument = decl;
16163 else if (TREE_CODE (argument) != TEMPLATE_DECL
16164 && TREE_CODE (argument) != UNBOUND_CLASS_TEMPLATE)
16165 cp_parser_error (parser, "expected template-name");
16167 if (cp_parser_parse_definitely (parser))
16169 if (TREE_DEPRECATED (argument))
16170 warn_deprecated_use (argument, NULL_TREE);
16171 return argument;
16173 /* It must be a non-type argument. In C++17 any constant-expression is
16174 allowed. */
16175 if (cxx_dialect > cxx14)
16176 goto general_expr;
16178 /* Otherwise, the permitted cases are given in [temp.arg.nontype]:
16180 -- an integral constant-expression of integral or enumeration
16181 type; or
16183 -- the name of a non-type template-parameter; or
16185 -- the name of an object or function with external linkage...
16187 -- the address of an object or function with external linkage...
16189 -- a pointer to member... */
16190 /* Look for a non-type template parameter. */
16191 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
16193 cp_parser_parse_tentatively (parser);
16194 argument = cp_parser_primary_expression (parser,
16195 /*address_p=*/false,
16196 /*cast_p=*/false,
16197 /*template_arg_p=*/true,
16198 &idk);
16199 if (TREE_CODE (argument) != TEMPLATE_PARM_INDEX
16200 || !cp_parser_next_token_ends_template_argument_p (parser))
16201 cp_parser_simulate_error (parser);
16202 if (cp_parser_parse_definitely (parser))
16203 return argument;
16206 /* If the next token is "&", the argument must be the address of an
16207 object or function with external linkage. */
16208 address_p = cp_lexer_next_token_is (parser->lexer, CPP_AND);
16209 if (address_p)
16211 loc = cp_lexer_peek_token (parser->lexer)->location;
16212 cp_lexer_consume_token (parser->lexer);
16214 /* See if we might have an id-expression. */
16215 token = cp_lexer_peek_token (parser->lexer);
16216 if (token->type == CPP_NAME
16217 || token->keyword == RID_OPERATOR
16218 || token->type == CPP_SCOPE
16219 || token->type == CPP_TEMPLATE_ID
16220 || token->type == CPP_NESTED_NAME_SPECIFIER)
16222 cp_parser_parse_tentatively (parser);
16223 argument = cp_parser_primary_expression (parser,
16224 address_p,
16225 /*cast_p=*/false,
16226 /*template_arg_p=*/true,
16227 &idk);
16228 if (cp_parser_error_occurred (parser)
16229 || !cp_parser_next_token_ends_template_argument_p (parser))
16230 cp_parser_abort_tentative_parse (parser);
16231 else
16233 tree probe;
16235 if (INDIRECT_REF_P (argument))
16237 /* Strip the dereference temporarily. */
16238 gcc_assert (REFERENCE_REF_P (argument));
16239 argument = TREE_OPERAND (argument, 0);
16242 /* If we're in a template, we represent a qualified-id referring
16243 to a static data member as a SCOPE_REF even if the scope isn't
16244 dependent so that we can check access control later. */
16245 probe = argument;
16246 if (TREE_CODE (probe) == SCOPE_REF)
16247 probe = TREE_OPERAND (probe, 1);
16248 if (VAR_P (probe))
16250 /* A variable without external linkage might still be a
16251 valid constant-expression, so no error is issued here
16252 if the external-linkage check fails. */
16253 if (!address_p && !DECL_EXTERNAL_LINKAGE_P (probe))
16254 cp_parser_simulate_error (parser);
16256 else if (is_overloaded_fn (argument))
16257 /* All overloaded functions are allowed; if the external
16258 linkage test does not pass, an error will be issued
16259 later. */
16261 else if (address_p
16262 && (TREE_CODE (argument) == OFFSET_REF
16263 || TREE_CODE (argument) == SCOPE_REF))
16264 /* A pointer-to-member. */
16266 else if (TREE_CODE (argument) == TEMPLATE_PARM_INDEX)
16268 else
16269 cp_parser_simulate_error (parser);
16271 if (cp_parser_parse_definitely (parser))
16273 if (address_p)
16274 argument = build_x_unary_op (loc, ADDR_EXPR, argument,
16275 tf_warning_or_error);
16276 else
16277 argument = convert_from_reference (argument);
16278 return argument;
16282 /* If the argument started with "&", there are no other valid
16283 alternatives at this point. */
16284 if (address_p)
16286 cp_parser_error (parser, "invalid non-type template argument");
16287 return error_mark_node;
16290 general_expr:
16291 /* If the argument wasn't successfully parsed as a type-id followed
16292 by '>>', the argument can only be a constant expression now.
16293 Otherwise, we try parsing the constant-expression tentatively,
16294 because the argument could really be a type-id. */
16295 if (maybe_type_id)
16296 cp_parser_parse_tentatively (parser);
16298 if (cxx_dialect <= cxx14)
16299 argument = cp_parser_constant_expression (parser);
16300 else
16302 /* With C++17 generalized non-type template arguments we need to handle
16303 lvalue constant expressions, too. */
16304 argument = cp_parser_assignment_expression (parser);
16305 require_potential_constant_expression (argument);
16308 if (!maybe_type_id)
16309 return argument;
16310 if (!cp_parser_next_token_ends_template_argument_p (parser))
16311 cp_parser_error (parser, "expected template-argument");
16312 if (cp_parser_parse_definitely (parser))
16313 return argument;
16314 /* We did our best to parse the argument as a non type-id, but that
16315 was the only alternative that matched (albeit with a '>' after
16316 it). We can assume it's just a typo from the user, and a
16317 diagnostic will then be issued. */
16318 return cp_parser_template_type_arg (parser);
16321 /* Parse an explicit-instantiation.
16323 explicit-instantiation:
16324 template declaration
16326 Although the standard says `declaration', what it really means is:
16328 explicit-instantiation:
16329 template decl-specifier-seq [opt] declarator [opt] ;
16331 Things like `template int S<int>::i = 5, int S<double>::j;' are not
16332 supposed to be allowed. A defect report has been filed about this
16333 issue.
16335 GNU Extension:
16337 explicit-instantiation:
16338 storage-class-specifier template
16339 decl-specifier-seq [opt] declarator [opt] ;
16340 function-specifier template
16341 decl-specifier-seq [opt] declarator [opt] ; */
16343 static void
16344 cp_parser_explicit_instantiation (cp_parser* parser)
16346 int declares_class_or_enum;
16347 cp_decl_specifier_seq decl_specifiers;
16348 tree extension_specifier = NULL_TREE;
16350 timevar_push (TV_TEMPLATE_INST);
16352 /* Look for an (optional) storage-class-specifier or
16353 function-specifier. */
16354 if (cp_parser_allow_gnu_extensions_p (parser))
16356 extension_specifier
16357 = cp_parser_storage_class_specifier_opt (parser);
16358 if (!extension_specifier)
16359 extension_specifier
16360 = cp_parser_function_specifier_opt (parser,
16361 /*decl_specs=*/NULL);
16364 /* Look for the `template' keyword. */
16365 cp_parser_require_keyword (parser, RID_TEMPLATE, RT_TEMPLATE);
16366 /* Let the front end know that we are processing an explicit
16367 instantiation. */
16368 begin_explicit_instantiation ();
16369 /* [temp.explicit] says that we are supposed to ignore access
16370 control while processing explicit instantiation directives. */
16371 push_deferring_access_checks (dk_no_check);
16372 /* Parse a decl-specifier-seq. */
16373 cp_parser_decl_specifier_seq (parser,
16374 CP_PARSER_FLAGS_OPTIONAL,
16375 &decl_specifiers,
16376 &declares_class_or_enum);
16377 /* If there was exactly one decl-specifier, and it declared a class,
16378 and there's no declarator, then we have an explicit type
16379 instantiation. */
16380 if (declares_class_or_enum && cp_parser_declares_only_class_p (parser))
16382 tree type;
16384 type = check_tag_decl (&decl_specifiers,
16385 /*explicit_type_instantiation_p=*/true);
16386 /* Turn access control back on for names used during
16387 template instantiation. */
16388 pop_deferring_access_checks ();
16389 if (type)
16390 do_type_instantiation (type, extension_specifier,
16391 /*complain=*/tf_error);
16393 else
16395 cp_declarator *declarator;
16396 tree decl;
16398 /* Parse the declarator. */
16399 declarator
16400 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
16401 /*ctor_dtor_or_conv_p=*/NULL,
16402 /*parenthesized_p=*/NULL,
16403 /*member_p=*/false,
16404 /*friend_p=*/false);
16405 if (declares_class_or_enum & 2)
16406 cp_parser_check_for_definition_in_return_type (declarator,
16407 decl_specifiers.type,
16408 decl_specifiers.locations[ds_type_spec]);
16409 if (declarator != cp_error_declarator)
16411 if (decl_spec_seq_has_spec_p (&decl_specifiers, ds_inline))
16412 permerror (decl_specifiers.locations[ds_inline],
16413 "explicit instantiation shall not use"
16414 " %<inline%> specifier");
16415 if (decl_spec_seq_has_spec_p (&decl_specifiers, ds_constexpr))
16416 permerror (decl_specifiers.locations[ds_constexpr],
16417 "explicit instantiation shall not use"
16418 " %<constexpr%> specifier");
16420 decl = grokdeclarator (declarator, &decl_specifiers,
16421 NORMAL, 0, &decl_specifiers.attributes);
16422 /* Turn access control back on for names used during
16423 template instantiation. */
16424 pop_deferring_access_checks ();
16425 /* Do the explicit instantiation. */
16426 do_decl_instantiation (decl, extension_specifier);
16428 else
16430 pop_deferring_access_checks ();
16431 /* Skip the body of the explicit instantiation. */
16432 cp_parser_skip_to_end_of_statement (parser);
16435 /* We're done with the instantiation. */
16436 end_explicit_instantiation ();
16438 cp_parser_consume_semicolon_at_end_of_statement (parser);
16440 timevar_pop (TV_TEMPLATE_INST);
16443 /* Parse an explicit-specialization.
16445 explicit-specialization:
16446 template < > declaration
16448 Although the standard says `declaration', what it really means is:
16450 explicit-specialization:
16451 template <> decl-specifier [opt] init-declarator [opt] ;
16452 template <> function-definition
16453 template <> explicit-specialization
16454 template <> template-declaration */
16456 static void
16457 cp_parser_explicit_specialization (cp_parser* parser)
16459 bool need_lang_pop;
16460 cp_token *token = cp_lexer_peek_token (parser->lexer);
16462 /* Look for the `template' keyword. */
16463 cp_parser_require_keyword (parser, RID_TEMPLATE, RT_TEMPLATE);
16464 /* Look for the `<'. */
16465 cp_parser_require (parser, CPP_LESS, RT_LESS);
16466 /* Look for the `>'. */
16467 cp_parser_require (parser, CPP_GREATER, RT_GREATER);
16468 /* We have processed another parameter list. */
16469 ++parser->num_template_parameter_lists;
16470 /* [temp]
16472 A template ... explicit specialization ... shall not have C
16473 linkage. */
16474 if (current_lang_name == lang_name_c)
16476 error_at (token->location, "template specialization with C linkage");
16477 /* Give it C++ linkage to avoid confusing other parts of the
16478 front end. */
16479 push_lang_context (lang_name_cplusplus);
16480 need_lang_pop = true;
16482 else
16483 need_lang_pop = false;
16484 /* Let the front end know that we are beginning a specialization. */
16485 if (!begin_specialization ())
16487 end_specialization ();
16488 return;
16491 /* If the next keyword is `template', we need to figure out whether
16492 or not we're looking a template-declaration. */
16493 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
16495 if (cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_LESS
16496 && cp_lexer_peek_nth_token (parser->lexer, 3)->type != CPP_GREATER)
16497 cp_parser_template_declaration_after_export (parser,
16498 /*member_p=*/false);
16499 else
16500 cp_parser_explicit_specialization (parser);
16502 else
16503 /* Parse the dependent declaration. */
16504 cp_parser_single_declaration (parser,
16505 /*checks=*/NULL,
16506 /*member_p=*/false,
16507 /*explicit_specialization_p=*/true,
16508 /*friend_p=*/NULL);
16509 /* We're done with the specialization. */
16510 end_specialization ();
16511 /* For the erroneous case of a template with C linkage, we pushed an
16512 implicit C++ linkage scope; exit that scope now. */
16513 if (need_lang_pop)
16514 pop_lang_context ();
16515 /* We're done with this parameter list. */
16516 --parser->num_template_parameter_lists;
16519 /* Parse a type-specifier.
16521 type-specifier:
16522 simple-type-specifier
16523 class-specifier
16524 enum-specifier
16525 elaborated-type-specifier
16526 cv-qualifier
16528 GNU Extension:
16530 type-specifier:
16531 __complex__
16533 Returns a representation of the type-specifier. For a
16534 class-specifier, enum-specifier, or elaborated-type-specifier, a
16535 TREE_TYPE is returned; otherwise, a TYPE_DECL is returned.
16537 The parser flags FLAGS is used to control type-specifier parsing.
16539 If IS_DECLARATION is TRUE, then this type-specifier is appearing
16540 in a decl-specifier-seq.
16542 If DECLARES_CLASS_OR_ENUM is non-NULL, and the type-specifier is a
16543 class-specifier, enum-specifier, or elaborated-type-specifier, then
16544 *DECLARES_CLASS_OR_ENUM is set to a nonzero value. The value is 1
16545 if a type is declared; 2 if it is defined. Otherwise, it is set to
16546 zero.
16548 If IS_CV_QUALIFIER is non-NULL, and the type-specifier is a
16549 cv-qualifier, then IS_CV_QUALIFIER is set to TRUE. Otherwise, it
16550 is set to FALSE. */
16552 static tree
16553 cp_parser_type_specifier (cp_parser* parser,
16554 cp_parser_flags flags,
16555 cp_decl_specifier_seq *decl_specs,
16556 bool is_declaration,
16557 int* declares_class_or_enum,
16558 bool* is_cv_qualifier)
16560 tree type_spec = NULL_TREE;
16561 cp_token *token;
16562 enum rid keyword;
16563 cp_decl_spec ds = ds_last;
16565 /* Assume this type-specifier does not declare a new type. */
16566 if (declares_class_or_enum)
16567 *declares_class_or_enum = 0;
16568 /* And that it does not specify a cv-qualifier. */
16569 if (is_cv_qualifier)
16570 *is_cv_qualifier = false;
16571 /* Peek at the next token. */
16572 token = cp_lexer_peek_token (parser->lexer);
16574 /* If we're looking at a keyword, we can use that to guide the
16575 production we choose. */
16576 keyword = token->keyword;
16577 switch (keyword)
16579 case RID_ENUM:
16580 if ((flags & CP_PARSER_FLAGS_NO_TYPE_DEFINITIONS))
16581 goto elaborated_type_specifier;
16583 /* Look for the enum-specifier. */
16584 type_spec = cp_parser_enum_specifier (parser);
16585 /* If that worked, we're done. */
16586 if (type_spec)
16588 if (declares_class_or_enum)
16589 *declares_class_or_enum = 2;
16590 if (decl_specs)
16591 cp_parser_set_decl_spec_type (decl_specs,
16592 type_spec,
16593 token,
16594 /*type_definition_p=*/true);
16595 return type_spec;
16597 else
16598 goto elaborated_type_specifier;
16600 /* Any of these indicate either a class-specifier, or an
16601 elaborated-type-specifier. */
16602 case RID_CLASS:
16603 case RID_STRUCT:
16604 case RID_UNION:
16605 if ((flags & CP_PARSER_FLAGS_NO_TYPE_DEFINITIONS))
16606 goto elaborated_type_specifier;
16608 /* Parse tentatively so that we can back up if we don't find a
16609 class-specifier. */
16610 cp_parser_parse_tentatively (parser);
16611 /* Look for the class-specifier. */
16612 type_spec = cp_parser_class_specifier (parser);
16613 invoke_plugin_callbacks (PLUGIN_FINISH_TYPE, type_spec);
16614 /* If that worked, we're done. */
16615 if (cp_parser_parse_definitely (parser))
16617 if (declares_class_or_enum)
16618 *declares_class_or_enum = 2;
16619 if (decl_specs)
16620 cp_parser_set_decl_spec_type (decl_specs,
16621 type_spec,
16622 token,
16623 /*type_definition_p=*/true);
16624 return type_spec;
16627 /* Fall through. */
16628 elaborated_type_specifier:
16629 /* We're declaring (not defining) a class or enum. */
16630 if (declares_class_or_enum)
16631 *declares_class_or_enum = 1;
16633 /* Fall through. */
16634 case RID_TYPENAME:
16635 /* Look for an elaborated-type-specifier. */
16636 type_spec
16637 = (cp_parser_elaborated_type_specifier
16638 (parser,
16639 decl_spec_seq_has_spec_p (decl_specs, ds_friend),
16640 is_declaration));
16641 if (decl_specs)
16642 cp_parser_set_decl_spec_type (decl_specs,
16643 type_spec,
16644 token,
16645 /*type_definition_p=*/false);
16646 return type_spec;
16648 case RID_CONST:
16649 ds = ds_const;
16650 if (is_cv_qualifier)
16651 *is_cv_qualifier = true;
16652 break;
16654 case RID_VOLATILE:
16655 ds = ds_volatile;
16656 if (is_cv_qualifier)
16657 *is_cv_qualifier = true;
16658 break;
16660 case RID_RESTRICT:
16661 ds = ds_restrict;
16662 if (is_cv_qualifier)
16663 *is_cv_qualifier = true;
16664 break;
16666 case RID_COMPLEX:
16667 /* The `__complex__' keyword is a GNU extension. */
16668 ds = ds_complex;
16669 break;
16671 default:
16672 break;
16675 /* Handle simple keywords. */
16676 if (ds != ds_last)
16678 if (decl_specs)
16680 set_and_check_decl_spec_loc (decl_specs, ds, token);
16681 decl_specs->any_specifiers_p = true;
16683 return cp_lexer_consume_token (parser->lexer)->u.value;
16686 /* If we do not already have a type-specifier, assume we are looking
16687 at a simple-type-specifier. */
16688 type_spec = cp_parser_simple_type_specifier (parser,
16689 decl_specs,
16690 flags);
16692 /* If we didn't find a type-specifier, and a type-specifier was not
16693 optional in this context, issue an error message. */
16694 if (!type_spec && !(flags & CP_PARSER_FLAGS_OPTIONAL))
16696 cp_parser_error (parser, "expected type specifier");
16697 return error_mark_node;
16700 return type_spec;
16703 /* Parse a simple-type-specifier.
16705 simple-type-specifier:
16706 :: [opt] nested-name-specifier [opt] type-name
16707 :: [opt] nested-name-specifier template template-id
16708 char
16709 wchar_t
16710 bool
16711 short
16713 long
16714 signed
16715 unsigned
16716 float
16717 double
16718 void
16720 C++11 Extension:
16722 simple-type-specifier:
16723 auto
16724 decltype ( expression )
16725 char16_t
16726 char32_t
16727 __underlying_type ( type-id )
16729 C++17 extension:
16731 nested-name-specifier(opt) template-name
16733 GNU Extension:
16735 simple-type-specifier:
16736 __int128
16737 __typeof__ unary-expression
16738 __typeof__ ( type-id )
16739 __typeof__ ( type-id ) { initializer-list , [opt] }
16741 Concepts Extension:
16743 simple-type-specifier:
16744 constrained-type-specifier
16746 Returns the indicated TYPE_DECL. If DECL_SPECS is not NULL, it is
16747 appropriately updated. */
16749 static tree
16750 cp_parser_simple_type_specifier (cp_parser* parser,
16751 cp_decl_specifier_seq *decl_specs,
16752 cp_parser_flags flags)
16754 tree type = NULL_TREE;
16755 cp_token *token;
16756 int idx;
16758 /* Peek at the next token. */
16759 token = cp_lexer_peek_token (parser->lexer);
16761 /* If we're looking at a keyword, things are easy. */
16762 switch (token->keyword)
16764 case RID_CHAR:
16765 if (decl_specs)
16766 decl_specs->explicit_char_p = true;
16767 type = char_type_node;
16768 break;
16769 case RID_CHAR16:
16770 type = char16_type_node;
16771 break;
16772 case RID_CHAR32:
16773 type = char32_type_node;
16774 break;
16775 case RID_WCHAR:
16776 type = wchar_type_node;
16777 break;
16778 case RID_BOOL:
16779 type = boolean_type_node;
16780 break;
16781 case RID_SHORT:
16782 set_and_check_decl_spec_loc (decl_specs, ds_short, token);
16783 type = short_integer_type_node;
16784 break;
16785 case RID_INT:
16786 if (decl_specs)
16787 decl_specs->explicit_int_p = true;
16788 type = integer_type_node;
16789 break;
16790 case RID_INT_N_0:
16791 case RID_INT_N_1:
16792 case RID_INT_N_2:
16793 case RID_INT_N_3:
16794 idx = token->keyword - RID_INT_N_0;
16795 if (! int_n_enabled_p [idx])
16796 break;
16797 if (decl_specs)
16799 decl_specs->explicit_intN_p = true;
16800 decl_specs->int_n_idx = idx;
16802 type = int_n_trees [idx].signed_type;
16803 break;
16804 case RID_LONG:
16805 if (decl_specs)
16806 set_and_check_decl_spec_loc (decl_specs, ds_long, token);
16807 type = long_integer_type_node;
16808 break;
16809 case RID_SIGNED:
16810 set_and_check_decl_spec_loc (decl_specs, ds_signed, token);
16811 type = integer_type_node;
16812 break;
16813 case RID_UNSIGNED:
16814 set_and_check_decl_spec_loc (decl_specs, ds_unsigned, token);
16815 type = unsigned_type_node;
16816 break;
16817 case RID_FLOAT:
16818 type = float_type_node;
16819 break;
16820 case RID_DOUBLE:
16821 type = double_type_node;
16822 break;
16823 case RID_VOID:
16824 type = void_type_node;
16825 break;
16827 case RID_AUTO:
16828 maybe_warn_cpp0x (CPP0X_AUTO);
16829 if (parser->auto_is_implicit_function_template_parm_p)
16831 /* The 'auto' might be the placeholder return type for a function decl
16832 with trailing return type. */
16833 bool have_trailing_return_fn_decl = false;
16835 cp_parser_parse_tentatively (parser);
16836 cp_lexer_consume_token (parser->lexer);
16837 while (cp_lexer_next_token_is_not (parser->lexer, CPP_EQ)
16838 && cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA)
16839 && cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN)
16840 && cp_lexer_next_token_is_not (parser->lexer, CPP_EOF))
16842 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
16844 cp_lexer_consume_token (parser->lexer);
16845 cp_parser_skip_to_closing_parenthesis (parser,
16846 /*recovering*/false,
16847 /*or_comma*/false,
16848 /*consume_paren*/true);
16849 continue;
16852 if (cp_lexer_next_token_is (parser->lexer, CPP_DEREF))
16854 have_trailing_return_fn_decl = true;
16855 break;
16858 cp_lexer_consume_token (parser->lexer);
16860 cp_parser_abort_tentative_parse (parser);
16862 if (have_trailing_return_fn_decl)
16864 type = make_auto ();
16865 break;
16868 if (cxx_dialect >= cxx14)
16870 type = synthesize_implicit_template_parm (parser, NULL_TREE);
16871 type = TREE_TYPE (type);
16873 else
16874 type = error_mark_node;
16876 if (current_class_type && LAMBDA_TYPE_P (current_class_type))
16878 if (cxx_dialect < cxx14)
16879 error_at (token->location,
16880 "use of %<auto%> in lambda parameter declaration "
16881 "only available with "
16882 "-std=c++14 or -std=gnu++14");
16884 else if (cxx_dialect < cxx14)
16885 error_at (token->location,
16886 "use of %<auto%> in parameter declaration "
16887 "only available with "
16888 "-std=c++14 or -std=gnu++14");
16889 else if (!flag_concepts)
16890 pedwarn (token->location, OPT_Wpedantic,
16891 "ISO C++ forbids use of %<auto%> in parameter "
16892 "declaration");
16894 else
16895 type = make_auto ();
16896 break;
16898 case RID_DECLTYPE:
16899 /* Since DR 743, decltype can either be a simple-type-specifier by
16900 itself or begin a nested-name-specifier. Parsing it will replace
16901 it with a CPP_DECLTYPE, so just rewind and let the CPP_DECLTYPE
16902 handling below decide what to do. */
16903 cp_parser_decltype (parser);
16904 cp_lexer_set_token_position (parser->lexer, token);
16905 break;
16907 case RID_TYPEOF:
16908 /* Consume the `typeof' token. */
16909 cp_lexer_consume_token (parser->lexer);
16910 /* Parse the operand to `typeof'. */
16911 type = cp_parser_sizeof_operand (parser, RID_TYPEOF);
16912 /* If it is not already a TYPE, take its type. */
16913 if (!TYPE_P (type))
16914 type = finish_typeof (type);
16916 if (decl_specs)
16917 cp_parser_set_decl_spec_type (decl_specs, type,
16918 token,
16919 /*type_definition_p=*/false);
16921 return type;
16923 case RID_UNDERLYING_TYPE:
16924 type = cp_parser_trait_expr (parser, RID_UNDERLYING_TYPE);
16925 if (decl_specs)
16926 cp_parser_set_decl_spec_type (decl_specs, type,
16927 token,
16928 /*type_definition_p=*/false);
16930 return type;
16932 case RID_BASES:
16933 case RID_DIRECT_BASES:
16934 type = cp_parser_trait_expr (parser, token->keyword);
16935 if (decl_specs)
16936 cp_parser_set_decl_spec_type (decl_specs, type,
16937 token,
16938 /*type_definition_p=*/false);
16939 return type;
16940 default:
16941 break;
16944 /* If token is an already-parsed decltype not followed by ::,
16945 it's a simple-type-specifier. */
16946 if (token->type == CPP_DECLTYPE
16947 && cp_lexer_peek_nth_token (parser->lexer, 2)->type != CPP_SCOPE)
16949 type = saved_checks_value (token->u.tree_check_value);
16950 if (decl_specs)
16952 cp_parser_set_decl_spec_type (decl_specs, type,
16953 token,
16954 /*type_definition_p=*/false);
16955 /* Remember that we are handling a decltype in order to
16956 implement the resolution of DR 1510 when the argument
16957 isn't instantiation dependent. */
16958 decl_specs->decltype_p = true;
16960 cp_lexer_consume_token (parser->lexer);
16961 return type;
16964 /* If the type-specifier was for a built-in type, we're done. */
16965 if (type)
16967 /* Record the type. */
16968 if (decl_specs
16969 && (token->keyword != RID_SIGNED
16970 && token->keyword != RID_UNSIGNED
16971 && token->keyword != RID_SHORT
16972 && token->keyword != RID_LONG))
16973 cp_parser_set_decl_spec_type (decl_specs,
16974 type,
16975 token,
16976 /*type_definition_p=*/false);
16977 if (decl_specs)
16978 decl_specs->any_specifiers_p = true;
16980 /* Consume the token. */
16981 cp_lexer_consume_token (parser->lexer);
16983 if (type == error_mark_node)
16984 return error_mark_node;
16986 /* There is no valid C++ program where a non-template type is
16987 followed by a "<". That usually indicates that the user thought
16988 that the type was a template. */
16989 cp_parser_check_for_invalid_template_id (parser, type, none_type,
16990 token->location);
16992 return TYPE_NAME (type);
16995 /* The type-specifier must be a user-defined type. */
16996 if (!(flags & CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES))
16998 bool qualified_p;
16999 bool global_p;
17001 /* Don't gobble tokens or issue error messages if this is an
17002 optional type-specifier. */
17003 if ((flags & CP_PARSER_FLAGS_OPTIONAL) || cxx_dialect >= cxx1z)
17004 cp_parser_parse_tentatively (parser);
17006 token = cp_lexer_peek_token (parser->lexer);
17008 /* Look for the optional `::' operator. */
17009 global_p
17010 = (cp_parser_global_scope_opt (parser,
17011 /*current_scope_valid_p=*/false)
17012 != NULL_TREE);
17013 /* Look for the nested-name specifier. */
17014 qualified_p
17015 = (cp_parser_nested_name_specifier_opt (parser,
17016 /*typename_keyword_p=*/false,
17017 /*check_dependency_p=*/true,
17018 /*type_p=*/false,
17019 /*is_declaration=*/false)
17020 != NULL_TREE);
17021 /* If we have seen a nested-name-specifier, and the next token
17022 is `template', then we are using the template-id production. */
17023 if (parser->scope
17024 && cp_parser_optional_template_keyword (parser))
17026 /* Look for the template-id. */
17027 type = cp_parser_template_id (parser,
17028 /*template_keyword_p=*/true,
17029 /*check_dependency_p=*/true,
17030 none_type,
17031 /*is_declaration=*/false);
17032 /* If the template-id did not name a type, we are out of
17033 luck. */
17034 if (TREE_CODE (type) != TYPE_DECL)
17036 cp_parser_error (parser, "expected template-id for type");
17037 type = NULL_TREE;
17040 /* Otherwise, look for a type-name. */
17041 else
17042 type = cp_parser_type_name (parser);
17043 /* Keep track of all name-lookups performed in class scopes. */
17044 if (type
17045 && !global_p
17046 && !qualified_p
17047 && TREE_CODE (type) == TYPE_DECL
17048 && identifier_p (DECL_NAME (type)))
17049 maybe_note_name_used_in_class (DECL_NAME (type), type);
17050 /* If it didn't work out, we don't have a TYPE. */
17051 if (((flags & CP_PARSER_FLAGS_OPTIONAL) || cxx_dialect >= cxx1z)
17052 && !cp_parser_parse_definitely (parser))
17053 type = NULL_TREE;
17054 if (!type && cxx_dialect >= cxx1z)
17056 if (flags & CP_PARSER_FLAGS_OPTIONAL)
17057 cp_parser_parse_tentatively (parser);
17059 cp_parser_global_scope_opt (parser,
17060 /*current_scope_valid_p=*/false);
17061 cp_parser_nested_name_specifier_opt (parser,
17062 /*typename_keyword_p=*/false,
17063 /*check_dependency_p=*/true,
17064 /*type_p=*/false,
17065 /*is_declaration=*/false);
17066 tree name = cp_parser_identifier (parser);
17067 if (name && TREE_CODE (name) == IDENTIFIER_NODE
17068 && parser->scope != error_mark_node)
17070 tree tmpl = cp_parser_lookup_name (parser, name,
17071 none_type,
17072 /*is_template=*/false,
17073 /*is_namespace=*/false,
17074 /*check_dependency=*/true,
17075 /*ambiguous_decls=*/NULL,
17076 token->location);
17077 if (tmpl && tmpl != error_mark_node
17078 && (DECL_CLASS_TEMPLATE_P (tmpl)
17079 || DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)))
17080 type = make_template_placeholder (tmpl);
17081 else
17083 type = error_mark_node;
17084 if (!cp_parser_simulate_error (parser))
17085 cp_parser_name_lookup_error (parser, name, tmpl,
17086 NLE_TYPE, token->location);
17089 else
17090 type = error_mark_node;
17092 if ((flags & CP_PARSER_FLAGS_OPTIONAL)
17093 && !cp_parser_parse_definitely (parser))
17094 type = NULL_TREE;
17096 if (type && decl_specs)
17097 cp_parser_set_decl_spec_type (decl_specs, type,
17098 token,
17099 /*type_definition_p=*/false);
17102 /* If we didn't get a type-name, issue an error message. */
17103 if (!type && !(flags & CP_PARSER_FLAGS_OPTIONAL))
17105 cp_parser_error (parser, "expected type-name");
17106 return error_mark_node;
17109 if (type && type != error_mark_node)
17111 /* See if TYPE is an Objective-C type, and if so, parse and
17112 accept any protocol references following it. Do this before
17113 the cp_parser_check_for_invalid_template_id() call, because
17114 Objective-C types can be followed by '<...>' which would
17115 enclose protocol names rather than template arguments, and so
17116 everything is fine. */
17117 if (c_dialect_objc () && !parser->scope
17118 && (objc_is_id (type) || objc_is_class_name (type)))
17120 tree protos = cp_parser_objc_protocol_refs_opt (parser);
17121 tree qual_type = objc_get_protocol_qualified_type (type, protos);
17123 /* Clobber the "unqualified" type previously entered into
17124 DECL_SPECS with the new, improved protocol-qualified version. */
17125 if (decl_specs)
17126 decl_specs->type = qual_type;
17128 return qual_type;
17131 /* There is no valid C++ program where a non-template type is
17132 followed by a "<". That usually indicates that the user
17133 thought that the type was a template. */
17134 cp_parser_check_for_invalid_template_id (parser, type,
17135 none_type,
17136 token->location);
17139 return type;
17142 /* Parse a type-name.
17144 type-name:
17145 class-name
17146 enum-name
17147 typedef-name
17148 simple-template-id [in c++0x]
17150 enum-name:
17151 identifier
17153 typedef-name:
17154 identifier
17156 Concepts:
17158 type-name:
17159 concept-name
17160 partial-concept-id
17162 concept-name:
17163 identifier
17165 Returns a TYPE_DECL for the type. */
17167 static tree
17168 cp_parser_type_name (cp_parser* parser)
17170 return cp_parser_type_name (parser, /*typename_keyword_p=*/false);
17173 /* See above. */
17174 static tree
17175 cp_parser_type_name (cp_parser* parser, bool typename_keyword_p)
17177 tree type_decl;
17179 /* We can't know yet whether it is a class-name or not. */
17180 cp_parser_parse_tentatively (parser);
17181 /* Try a class-name. */
17182 type_decl = cp_parser_class_name (parser,
17183 typename_keyword_p,
17184 /*template_keyword_p=*/false,
17185 none_type,
17186 /*check_dependency_p=*/true,
17187 /*class_head_p=*/false,
17188 /*is_declaration=*/false);
17189 /* If it's not a class-name, keep looking. */
17190 if (!cp_parser_parse_definitely (parser))
17192 if (cxx_dialect < cxx11)
17193 /* It must be a typedef-name or an enum-name. */
17194 return cp_parser_nonclass_name (parser);
17196 cp_parser_parse_tentatively (parser);
17197 /* It is either a simple-template-id representing an
17198 instantiation of an alias template... */
17199 type_decl = cp_parser_template_id (parser,
17200 /*template_keyword_p=*/false,
17201 /*check_dependency_p=*/true,
17202 none_type,
17203 /*is_declaration=*/false);
17204 /* Note that this must be an instantiation of an alias template
17205 because [temp.names]/6 says:
17207 A template-id that names an alias template specialization
17208 is a type-name.
17210 Whereas [temp.names]/7 says:
17212 A simple-template-id that names a class template
17213 specialization is a class-name.
17215 With concepts, this could also be a partial-concept-id that
17216 declares a non-type template parameter. */
17217 if (type_decl != NULL_TREE
17218 && TREE_CODE (type_decl) == TYPE_DECL
17219 && TYPE_DECL_ALIAS_P (type_decl))
17220 gcc_assert (DECL_TEMPLATE_INSTANTIATION (type_decl));
17221 else if (is_constrained_parameter (type_decl))
17222 /* Don't do anything. */ ;
17223 else
17224 cp_parser_simulate_error (parser);
17226 if (!cp_parser_parse_definitely (parser))
17227 /* ... Or a typedef-name or an enum-name. */
17228 return cp_parser_nonclass_name (parser);
17231 return type_decl;
17234 /* Check if DECL and ARGS can form a constrained-type-specifier.
17235 If ARGS is non-null, we try to form a concept check of the
17236 form DECL<?, ARGS> where ? is a wildcard that matches any
17237 kind of template argument. If ARGS is NULL, then we try to
17238 form a concept check of the form DECL<?>. */
17240 static tree
17241 cp_parser_maybe_constrained_type_specifier (cp_parser *parser,
17242 tree decl, tree args)
17244 gcc_assert (args ? TREE_CODE (args) == TREE_VEC : true);
17246 /* If we a constrained-type-specifier cannot be deduced. */
17247 if (parser->prevent_constrained_type_specifiers)
17248 return NULL_TREE;
17250 /* A constrained type specifier can only be found in an
17251 overload set or as a reference to a template declaration.
17253 FIXME: This might be masking a bug. It's possible that
17254 that the deduction below is causing template specializations
17255 to be formed with the wildcard as an argument. */
17256 if (TREE_CODE (decl) != OVERLOAD && TREE_CODE (decl) != TEMPLATE_DECL)
17257 return NULL_TREE;
17259 /* Try to build a call expression that evaluates the
17260 concept. This can fail if the overload set refers
17261 only to non-templates. */
17262 tree placeholder = build_nt (WILDCARD_DECL);
17263 tree check = build_concept_check (decl, placeholder, args);
17264 if (check == error_mark_node)
17265 return NULL_TREE;
17267 /* Deduce the checked constraint and the prototype parameter.
17269 FIXME: In certain cases, failure to deduce should be a
17270 diagnosable error. */
17271 tree conc;
17272 tree proto;
17273 if (!deduce_constrained_parameter (check, conc, proto))
17274 return NULL_TREE;
17276 /* In template parameter scope, this results in a constrained
17277 parameter. Return a descriptor of that parm. */
17278 if (processing_template_parmlist)
17279 return build_constrained_parameter (conc, proto, args);
17281 /* In a parameter-declaration-clause, constrained-type
17282 specifiers result in invented template parameters. */
17283 if (parser->auto_is_implicit_function_template_parm_p)
17285 tree x = build_constrained_parameter (conc, proto, args);
17286 return synthesize_implicit_template_parm (parser, x);
17288 else
17290 /* Otherwise, we're in a context where the constrained
17291 type name is deduced and the constraint applies
17292 after deduction. */
17293 return make_constrained_auto (conc, args);
17296 return NULL_TREE;
17299 /* If DECL refers to a concept, return a TYPE_DECL representing
17300 the result of using the constrained type specifier in the
17301 current context. DECL refers to a concept if
17303 - it is an overload set containing a function concept taking a single
17304 type argument, or
17306 - it is a variable concept taking a single type argument. */
17308 static tree
17309 cp_parser_maybe_concept_name (cp_parser* parser, tree decl)
17311 if (flag_concepts
17312 && (TREE_CODE (decl) == OVERLOAD
17313 || BASELINK_P (decl)
17314 || variable_concept_p (decl)))
17315 return cp_parser_maybe_constrained_type_specifier (parser, decl, NULL_TREE);
17316 else
17317 return NULL_TREE;
17320 /* Check if DECL and ARGS form a partial-concept-id. If so,
17321 assign ID to the resulting constrained placeholder.
17323 Returns true if the partial-concept-id designates a placeholder
17324 and false otherwise. Note that *id is set to NULL_TREE in
17325 this case. */
17327 static tree
17328 cp_parser_maybe_partial_concept_id (cp_parser *parser, tree decl, tree args)
17330 return cp_parser_maybe_constrained_type_specifier (parser, decl, args);
17333 /* Parse a non-class type-name, that is, either an enum-name, a typedef-name,
17334 or a concept-name.
17336 enum-name:
17337 identifier
17339 typedef-name:
17340 identifier
17342 concept-name:
17343 identifier
17345 Returns a TYPE_DECL for the type. */
17347 static tree
17348 cp_parser_nonclass_name (cp_parser* parser)
17350 tree type_decl;
17351 tree identifier;
17353 cp_token *token = cp_lexer_peek_token (parser->lexer);
17354 identifier = cp_parser_identifier (parser);
17355 if (identifier == error_mark_node)
17356 return error_mark_node;
17358 /* Look up the type-name. */
17359 type_decl = cp_parser_lookup_name_simple (parser, identifier, token->location);
17361 type_decl = strip_using_decl (type_decl);
17363 /* If we found an overload set, then it may refer to a concept-name. */
17364 if (tree decl = cp_parser_maybe_concept_name (parser, type_decl))
17365 type_decl = decl;
17367 if (TREE_CODE (type_decl) != TYPE_DECL
17368 && (objc_is_id (identifier) || objc_is_class_name (identifier)))
17370 /* See if this is an Objective-C type. */
17371 tree protos = cp_parser_objc_protocol_refs_opt (parser);
17372 tree type = objc_get_protocol_qualified_type (identifier, protos);
17373 if (type)
17374 type_decl = TYPE_NAME (type);
17377 /* Issue an error if we did not find a type-name. */
17378 if (TREE_CODE (type_decl) != TYPE_DECL
17379 /* In Objective-C, we have the complication that class names are
17380 normally type names and start declarations (eg, the
17381 "NSObject" in "NSObject *object;"), but can be used in an
17382 Objective-C 2.0 dot-syntax (as in "NSObject.version") which
17383 is an expression. So, a classname followed by a dot is not a
17384 valid type-name. */
17385 || (objc_is_class_name (TREE_TYPE (type_decl))
17386 && cp_lexer_peek_token (parser->lexer)->type == CPP_DOT))
17388 if (!cp_parser_simulate_error (parser))
17389 cp_parser_name_lookup_error (parser, identifier, type_decl,
17390 NLE_TYPE, token->location);
17391 return error_mark_node;
17393 /* Remember that the name was used in the definition of the
17394 current class so that we can check later to see if the
17395 meaning would have been different after the class was
17396 entirely defined. */
17397 else if (type_decl != error_mark_node
17398 && !parser->scope)
17399 maybe_note_name_used_in_class (identifier, type_decl);
17401 return type_decl;
17404 /* Parse an elaborated-type-specifier. Note that the grammar given
17405 here incorporates the resolution to DR68.
17407 elaborated-type-specifier:
17408 class-key :: [opt] nested-name-specifier [opt] identifier
17409 class-key :: [opt] nested-name-specifier [opt] template [opt] template-id
17410 enum-key :: [opt] nested-name-specifier [opt] identifier
17411 typename :: [opt] nested-name-specifier identifier
17412 typename :: [opt] nested-name-specifier template [opt]
17413 template-id
17415 GNU extension:
17417 elaborated-type-specifier:
17418 class-key attributes :: [opt] nested-name-specifier [opt] identifier
17419 class-key attributes :: [opt] nested-name-specifier [opt]
17420 template [opt] template-id
17421 enum attributes :: [opt] nested-name-specifier [opt] identifier
17423 If IS_FRIEND is TRUE, then this elaborated-type-specifier is being
17424 declared `friend'. If IS_DECLARATION is TRUE, then this
17425 elaborated-type-specifier appears in a decl-specifiers-seq, i.e.,
17426 something is being declared.
17428 Returns the TYPE specified. */
17430 static tree
17431 cp_parser_elaborated_type_specifier (cp_parser* parser,
17432 bool is_friend,
17433 bool is_declaration)
17435 enum tag_types tag_type;
17436 tree identifier;
17437 tree type = NULL_TREE;
17438 tree attributes = NULL_TREE;
17439 tree globalscope;
17440 cp_token *token = NULL;
17442 /* See if we're looking at the `enum' keyword. */
17443 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_ENUM))
17445 /* Consume the `enum' token. */
17446 cp_lexer_consume_token (parser->lexer);
17447 /* Remember that it's an enumeration type. */
17448 tag_type = enum_type;
17449 /* Issue a warning if the `struct' or `class' key (for C++0x scoped
17450 enums) is used here. */
17451 cp_token *token = cp_lexer_peek_token (parser->lexer);
17452 if (cp_parser_is_keyword (token, RID_CLASS)
17453 || cp_parser_is_keyword (token, RID_STRUCT))
17455 gcc_rich_location richloc (token->location);
17456 richloc.add_range (input_location, false);
17457 richloc.add_fixit_remove ();
17458 pedwarn_at_rich_loc (&richloc, 0, "elaborated-type-specifier for "
17459 "a scoped enum must not use the %qD keyword",
17460 token->u.value);
17461 /* Consume the `struct' or `class' and parse it anyway. */
17462 cp_lexer_consume_token (parser->lexer);
17464 /* Parse the attributes. */
17465 attributes = cp_parser_attributes_opt (parser);
17467 /* Or, it might be `typename'. */
17468 else if (cp_lexer_next_token_is_keyword (parser->lexer,
17469 RID_TYPENAME))
17471 /* Consume the `typename' token. */
17472 cp_lexer_consume_token (parser->lexer);
17473 /* Remember that it's a `typename' type. */
17474 tag_type = typename_type;
17476 /* Otherwise it must be a class-key. */
17477 else
17479 tag_type = cp_parser_class_key (parser);
17480 if (tag_type == none_type)
17481 return error_mark_node;
17482 /* Parse the attributes. */
17483 attributes = cp_parser_attributes_opt (parser);
17486 /* Look for the `::' operator. */
17487 globalscope = cp_parser_global_scope_opt (parser,
17488 /*current_scope_valid_p=*/false);
17489 /* Look for the nested-name-specifier. */
17490 tree nested_name_specifier;
17491 if (tag_type == typename_type && !globalscope)
17493 nested_name_specifier
17494 = cp_parser_nested_name_specifier (parser,
17495 /*typename_keyword_p=*/true,
17496 /*check_dependency_p=*/true,
17497 /*type_p=*/true,
17498 is_declaration);
17499 if (!nested_name_specifier)
17500 return error_mark_node;
17502 else
17503 /* Even though `typename' is not present, the proposed resolution
17504 to Core Issue 180 says that in `class A<T>::B', `B' should be
17505 considered a type-name, even if `A<T>' is dependent. */
17506 nested_name_specifier
17507 = cp_parser_nested_name_specifier_opt (parser,
17508 /*typename_keyword_p=*/true,
17509 /*check_dependency_p=*/true,
17510 /*type_p=*/true,
17511 is_declaration);
17512 /* For everything but enumeration types, consider a template-id.
17513 For an enumeration type, consider only a plain identifier. */
17514 if (tag_type != enum_type)
17516 bool template_p = false;
17517 tree decl;
17519 /* Allow the `template' keyword. */
17520 template_p = cp_parser_optional_template_keyword (parser);
17521 /* If we didn't see `template', we don't know if there's a
17522 template-id or not. */
17523 if (!template_p)
17524 cp_parser_parse_tentatively (parser);
17525 /* Parse the template-id. */
17526 token = cp_lexer_peek_token (parser->lexer);
17527 decl = cp_parser_template_id (parser, template_p,
17528 /*check_dependency_p=*/true,
17529 tag_type,
17530 is_declaration);
17531 /* If we didn't find a template-id, look for an ordinary
17532 identifier. */
17533 if (!template_p && !cp_parser_parse_definitely (parser))
17535 /* We can get here when cp_parser_template_id, called by
17536 cp_parser_class_name with tag_type == none_type, succeeds
17537 and caches a BASELINK. Then, when called again here,
17538 instead of failing and returning an error_mark_node
17539 returns it (see template/typename17.C in C++11).
17540 ??? Could we diagnose this earlier? */
17541 else if (tag_type == typename_type && BASELINK_P (decl))
17543 cp_parser_diagnose_invalid_type_name (parser, decl, token->location);
17544 type = error_mark_node;
17546 /* If DECL is a TEMPLATE_ID_EXPR, and the `typename' keyword is
17547 in effect, then we must assume that, upon instantiation, the
17548 template will correspond to a class. */
17549 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
17550 && tag_type == typename_type)
17551 type = make_typename_type (parser->scope, decl,
17552 typename_type,
17553 /*complain=*/tf_error);
17554 /* If the `typename' keyword is in effect and DECL is not a type
17555 decl, then type is non existent. */
17556 else if (tag_type == typename_type && TREE_CODE (decl) != TYPE_DECL)
17558 else if (TREE_CODE (decl) == TYPE_DECL)
17560 type = check_elaborated_type_specifier (tag_type, decl,
17561 /*allow_template_p=*/true);
17563 /* If the next token is a semicolon, this must be a specialization,
17564 instantiation, or friend declaration. Check the scope while we
17565 still know whether or not we had a nested-name-specifier. */
17566 if (type != error_mark_node
17567 && !nested_name_specifier && !is_friend
17568 && cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
17569 check_unqualified_spec_or_inst (type, token->location);
17571 else if (decl == error_mark_node)
17572 type = error_mark_node;
17575 if (!type)
17577 token = cp_lexer_peek_token (parser->lexer);
17578 identifier = cp_parser_identifier (parser);
17580 if (identifier == error_mark_node)
17582 parser->scope = NULL_TREE;
17583 return error_mark_node;
17586 /* For a `typename', we needn't call xref_tag. */
17587 if (tag_type == typename_type
17588 && TREE_CODE (parser->scope) != NAMESPACE_DECL)
17589 return cp_parser_make_typename_type (parser, identifier,
17590 token->location);
17592 /* Template parameter lists apply only if we are not within a
17593 function parameter list. */
17594 bool template_parm_lists_apply
17595 = parser->num_template_parameter_lists;
17596 if (template_parm_lists_apply)
17597 for (cp_binding_level *s = current_binding_level;
17598 s && s->kind != sk_template_parms;
17599 s = s->level_chain)
17600 if (s->kind == sk_function_parms)
17601 template_parm_lists_apply = false;
17603 /* Look up a qualified name in the usual way. */
17604 if (parser->scope)
17606 tree decl;
17607 tree ambiguous_decls;
17609 decl = cp_parser_lookup_name (parser, identifier,
17610 tag_type,
17611 /*is_template=*/false,
17612 /*is_namespace=*/false,
17613 /*check_dependency=*/true,
17614 &ambiguous_decls,
17615 token->location);
17617 /* If the lookup was ambiguous, an error will already have been
17618 issued. */
17619 if (ambiguous_decls)
17620 return error_mark_node;
17622 /* If we are parsing friend declaration, DECL may be a
17623 TEMPLATE_DECL tree node here. However, we need to check
17624 whether this TEMPLATE_DECL results in valid code. Consider
17625 the following example:
17627 namespace N {
17628 template <class T> class C {};
17630 class X {
17631 template <class T> friend class N::C; // #1, valid code
17633 template <class T> class Y {
17634 friend class N::C; // #2, invalid code
17637 For both case #1 and #2, we arrive at a TEMPLATE_DECL after
17638 name lookup of `N::C'. We see that friend declaration must
17639 be template for the code to be valid. Note that
17640 processing_template_decl does not work here since it is
17641 always 1 for the above two cases. */
17643 decl = (cp_parser_maybe_treat_template_as_class
17644 (decl, /*tag_name_p=*/is_friend
17645 && template_parm_lists_apply));
17647 if (TREE_CODE (decl) != TYPE_DECL)
17649 cp_parser_diagnose_invalid_type_name (parser,
17650 identifier,
17651 token->location);
17652 return error_mark_node;
17655 if (TREE_CODE (TREE_TYPE (decl)) != TYPENAME_TYPE)
17657 bool allow_template = (template_parm_lists_apply
17658 || DECL_SELF_REFERENCE_P (decl));
17659 type = check_elaborated_type_specifier (tag_type, decl,
17660 allow_template);
17662 if (type == error_mark_node)
17663 return error_mark_node;
17666 /* Forward declarations of nested types, such as
17668 class C1::C2;
17669 class C1::C2::C3;
17671 are invalid unless all components preceding the final '::'
17672 are complete. If all enclosing types are complete, these
17673 declarations become merely pointless.
17675 Invalid forward declarations of nested types are errors
17676 caught elsewhere in parsing. Those that are pointless arrive
17677 here. */
17679 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
17680 && !is_friend && !processing_explicit_instantiation)
17681 warning (0, "declaration %qD does not declare anything", decl);
17683 type = TREE_TYPE (decl);
17685 else
17687 /* An elaborated-type-specifier sometimes introduces a new type and
17688 sometimes names an existing type. Normally, the rule is that it
17689 introduces a new type only if there is not an existing type of
17690 the same name already in scope. For example, given:
17692 struct S {};
17693 void f() { struct S s; }
17695 the `struct S' in the body of `f' is the same `struct S' as in
17696 the global scope; the existing definition is used. However, if
17697 there were no global declaration, this would introduce a new
17698 local class named `S'.
17700 An exception to this rule applies to the following code:
17702 namespace N { struct S; }
17704 Here, the elaborated-type-specifier names a new type
17705 unconditionally; even if there is already an `S' in the
17706 containing scope this declaration names a new type.
17707 This exception only applies if the elaborated-type-specifier
17708 forms the complete declaration:
17710 [class.name]
17712 A declaration consisting solely of `class-key identifier ;' is
17713 either a redeclaration of the name in the current scope or a
17714 forward declaration of the identifier as a class name. It
17715 introduces the name into the current scope.
17717 We are in this situation precisely when the next token is a `;'.
17719 An exception to the exception is that a `friend' declaration does
17720 *not* name a new type; i.e., given:
17722 struct S { friend struct T; };
17724 `T' is not a new type in the scope of `S'.
17726 Also, `new struct S' or `sizeof (struct S)' never results in the
17727 definition of a new type; a new type can only be declared in a
17728 declaration context. */
17730 tag_scope ts;
17731 bool template_p;
17733 if (is_friend)
17734 /* Friends have special name lookup rules. */
17735 ts = ts_within_enclosing_non_class;
17736 else if (is_declaration
17737 && cp_lexer_next_token_is (parser->lexer,
17738 CPP_SEMICOLON))
17739 /* This is a `class-key identifier ;' */
17740 ts = ts_current;
17741 else
17742 ts = ts_global;
17744 template_p =
17745 (template_parm_lists_apply
17746 && (cp_parser_next_token_starts_class_definition_p (parser)
17747 || cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)));
17748 /* An unqualified name was used to reference this type, so
17749 there were no qualifying templates. */
17750 if (template_parm_lists_apply
17751 && !cp_parser_check_template_parameters (parser,
17752 /*num_templates=*/0,
17753 token->location,
17754 /*declarator=*/NULL))
17755 return error_mark_node;
17756 type = xref_tag (tag_type, identifier, ts, template_p);
17760 if (type == error_mark_node)
17761 return error_mark_node;
17763 /* Allow attributes on forward declarations of classes. */
17764 if (attributes)
17766 if (TREE_CODE (type) == TYPENAME_TYPE)
17767 warning (OPT_Wattributes,
17768 "attributes ignored on uninstantiated type");
17769 else if (tag_type != enum_type && CLASSTYPE_TEMPLATE_INSTANTIATION (type)
17770 && ! processing_explicit_instantiation)
17771 warning (OPT_Wattributes,
17772 "attributes ignored on template instantiation");
17773 else if (is_declaration && cp_parser_declares_only_class_p (parser))
17774 cplus_decl_attributes (&type, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
17775 else
17776 warning (OPT_Wattributes,
17777 "attributes ignored on elaborated-type-specifier that is not a forward declaration");
17780 if (tag_type != enum_type)
17782 /* Indicate whether this class was declared as a `class' or as a
17783 `struct'. */
17784 if (CLASS_TYPE_P (type))
17785 CLASSTYPE_DECLARED_CLASS (type) = (tag_type == class_type);
17786 cp_parser_check_class_key (tag_type, type);
17789 /* A "<" cannot follow an elaborated type specifier. If that
17790 happens, the user was probably trying to form a template-id. */
17791 cp_parser_check_for_invalid_template_id (parser, type, tag_type,
17792 token->location);
17794 return type;
17797 /* Parse an enum-specifier.
17799 enum-specifier:
17800 enum-head { enumerator-list [opt] }
17801 enum-head { enumerator-list , } [C++0x]
17803 enum-head:
17804 enum-key identifier [opt] enum-base [opt]
17805 enum-key nested-name-specifier identifier enum-base [opt]
17807 enum-key:
17808 enum
17809 enum class [C++0x]
17810 enum struct [C++0x]
17812 enum-base: [C++0x]
17813 : type-specifier-seq
17815 opaque-enum-specifier:
17816 enum-key identifier enum-base [opt] ;
17818 GNU Extensions:
17819 enum-key attributes[opt] identifier [opt] enum-base [opt]
17820 { enumerator-list [opt] }attributes[opt]
17821 enum-key attributes[opt] identifier [opt] enum-base [opt]
17822 { enumerator-list, }attributes[opt] [C++0x]
17824 Returns an ENUM_TYPE representing the enumeration, or NULL_TREE
17825 if the token stream isn't an enum-specifier after all. */
17827 static tree
17828 cp_parser_enum_specifier (cp_parser* parser)
17830 tree identifier;
17831 tree type = NULL_TREE;
17832 tree prev_scope;
17833 tree nested_name_specifier = NULL_TREE;
17834 tree attributes;
17835 bool scoped_enum_p = false;
17836 bool has_underlying_type = false;
17837 bool nested_being_defined = false;
17838 bool new_value_list = false;
17839 bool is_new_type = false;
17840 bool is_unnamed = false;
17841 tree underlying_type = NULL_TREE;
17842 cp_token *type_start_token = NULL;
17843 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
17845 parser->colon_corrects_to_scope_p = false;
17847 /* Parse tentatively so that we can back up if we don't find a
17848 enum-specifier. */
17849 cp_parser_parse_tentatively (parser);
17851 /* Caller guarantees that the current token is 'enum', an identifier
17852 possibly follows, and the token after that is an opening brace.
17853 If we don't have an identifier, fabricate an anonymous name for
17854 the enumeration being defined. */
17855 cp_lexer_consume_token (parser->lexer);
17857 /* Parse the "class" or "struct", which indicates a scoped
17858 enumeration type in C++0x. */
17859 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_CLASS)
17860 || cp_lexer_next_token_is_keyword (parser->lexer, RID_STRUCT))
17862 if (cxx_dialect < cxx11)
17863 maybe_warn_cpp0x (CPP0X_SCOPED_ENUMS);
17865 /* Consume the `struct' or `class' token. */
17866 cp_lexer_consume_token (parser->lexer);
17868 scoped_enum_p = true;
17871 attributes = cp_parser_attributes_opt (parser);
17873 /* Clear the qualification. */
17874 parser->scope = NULL_TREE;
17875 parser->qualifying_scope = NULL_TREE;
17876 parser->object_scope = NULL_TREE;
17878 /* Figure out in what scope the declaration is being placed. */
17879 prev_scope = current_scope ();
17881 type_start_token = cp_lexer_peek_token (parser->lexer);
17883 push_deferring_access_checks (dk_no_check);
17884 nested_name_specifier
17885 = cp_parser_nested_name_specifier_opt (parser,
17886 /*typename_keyword_p=*/true,
17887 /*check_dependency_p=*/false,
17888 /*type_p=*/false,
17889 /*is_declaration=*/false);
17891 if (nested_name_specifier)
17893 tree name;
17895 identifier = cp_parser_identifier (parser);
17896 name = cp_parser_lookup_name (parser, identifier,
17897 enum_type,
17898 /*is_template=*/false,
17899 /*is_namespace=*/false,
17900 /*check_dependency=*/true,
17901 /*ambiguous_decls=*/NULL,
17902 input_location);
17903 if (name && name != error_mark_node)
17905 type = TREE_TYPE (name);
17906 if (TREE_CODE (type) == TYPENAME_TYPE)
17908 /* Are template enums allowed in ISO? */
17909 if (template_parm_scope_p ())
17910 pedwarn (type_start_token->location, OPT_Wpedantic,
17911 "%qD is an enumeration template", name);
17912 /* ignore a typename reference, for it will be solved by name
17913 in start_enum. */
17914 type = NULL_TREE;
17917 else if (nested_name_specifier == error_mark_node)
17918 /* We already issued an error. */;
17919 else
17921 error_at (type_start_token->location,
17922 "%qD does not name an enumeration in %qT",
17923 identifier, nested_name_specifier);
17924 nested_name_specifier = error_mark_node;
17927 else
17929 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
17930 identifier = cp_parser_identifier (parser);
17931 else
17933 identifier = make_anon_name ();
17934 is_unnamed = true;
17935 if (scoped_enum_p)
17936 error_at (type_start_token->location,
17937 "unnamed scoped enum is not allowed");
17940 pop_deferring_access_checks ();
17942 /* Check for the `:' that denotes a specified underlying type in C++0x.
17943 Note that a ':' could also indicate a bitfield width, however. */
17944 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
17946 cp_decl_specifier_seq type_specifiers;
17948 /* Consume the `:'. */
17949 cp_lexer_consume_token (parser->lexer);
17951 /* Parse the type-specifier-seq. */
17952 cp_parser_type_specifier_seq (parser, /*is_declaration=*/false,
17953 /*is_trailing_return=*/false,
17954 &type_specifiers);
17956 /* At this point this is surely not elaborated type specifier. */
17957 if (!cp_parser_parse_definitely (parser))
17958 return NULL_TREE;
17960 if (cxx_dialect < cxx11)
17961 maybe_warn_cpp0x (CPP0X_SCOPED_ENUMS);
17963 has_underlying_type = true;
17965 /* If that didn't work, stop. */
17966 if (type_specifiers.type != error_mark_node)
17968 underlying_type = grokdeclarator (NULL, &type_specifiers, TYPENAME,
17969 /*initialized=*/0, NULL);
17970 if (underlying_type == error_mark_node
17971 || check_for_bare_parameter_packs (underlying_type))
17972 underlying_type = NULL_TREE;
17976 /* Look for the `{' but don't consume it yet. */
17977 if (!cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
17979 if (cxx_dialect < cxx11 || (!scoped_enum_p && !underlying_type))
17981 cp_parser_error (parser, "expected %<{%>");
17982 if (has_underlying_type)
17984 type = NULL_TREE;
17985 goto out;
17988 /* An opaque-enum-specifier must have a ';' here. */
17989 if ((scoped_enum_p || underlying_type)
17990 && cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
17992 cp_parser_error (parser, "expected %<;%> or %<{%>");
17993 if (has_underlying_type)
17995 type = NULL_TREE;
17996 goto out;
18001 if (!has_underlying_type && !cp_parser_parse_definitely (parser))
18002 return NULL_TREE;
18004 if (nested_name_specifier)
18006 if (CLASS_TYPE_P (nested_name_specifier))
18008 nested_being_defined = TYPE_BEING_DEFINED (nested_name_specifier);
18009 TYPE_BEING_DEFINED (nested_name_specifier) = 1;
18010 push_scope (nested_name_specifier);
18012 else if (TREE_CODE (nested_name_specifier) == NAMESPACE_DECL)
18014 push_nested_namespace (nested_name_specifier);
18018 /* Issue an error message if type-definitions are forbidden here. */
18019 if (!cp_parser_check_type_definition (parser))
18020 type = error_mark_node;
18021 else
18022 /* Create the new type. We do this before consuming the opening
18023 brace so the enum will be recorded as being on the line of its
18024 tag (or the 'enum' keyword, if there is no tag). */
18025 type = start_enum (identifier, type, underlying_type,
18026 attributes, scoped_enum_p, &is_new_type);
18028 /* If the next token is not '{' it is an opaque-enum-specifier or an
18029 elaborated-type-specifier. */
18030 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
18032 timevar_push (TV_PARSE_ENUM);
18033 if (nested_name_specifier
18034 && nested_name_specifier != error_mark_node)
18036 /* The following catches invalid code such as:
18037 enum class S<int>::E { A, B, C }; */
18038 if (!processing_specialization
18039 && CLASS_TYPE_P (nested_name_specifier)
18040 && CLASSTYPE_USE_TEMPLATE (nested_name_specifier))
18041 error_at (type_start_token->location, "cannot add an enumerator "
18042 "list to a template instantiation");
18044 if (TREE_CODE (nested_name_specifier) == TYPENAME_TYPE)
18046 error_at (type_start_token->location,
18047 "%<%T::%E%> has not been declared",
18048 TYPE_CONTEXT (nested_name_specifier),
18049 nested_name_specifier);
18050 type = error_mark_node;
18052 else if (TREE_CODE (nested_name_specifier) != NAMESPACE_DECL
18053 && !CLASS_TYPE_P (nested_name_specifier))
18055 error_at (type_start_token->location, "nested name specifier "
18056 "%qT for enum declaration does not name a class "
18057 "or namespace", nested_name_specifier);
18058 type = error_mark_node;
18060 /* If that scope does not contain the scope in which the
18061 class was originally declared, the program is invalid. */
18062 else if (prev_scope && !is_ancestor (prev_scope,
18063 nested_name_specifier))
18065 if (at_namespace_scope_p ())
18066 error_at (type_start_token->location,
18067 "declaration of %qD in namespace %qD which does not "
18068 "enclose %qD",
18069 type, prev_scope, nested_name_specifier);
18070 else
18071 error_at (type_start_token->location,
18072 "declaration of %qD in %qD which does not "
18073 "enclose %qD",
18074 type, prev_scope, nested_name_specifier);
18075 type = error_mark_node;
18077 /* If that scope is the scope where the declaration is being placed
18078 the program is invalid. */
18079 else if (CLASS_TYPE_P (nested_name_specifier)
18080 && CLASS_TYPE_P (prev_scope)
18081 && same_type_p (nested_name_specifier, prev_scope))
18083 permerror (type_start_token->location,
18084 "extra qualification not allowed");
18085 nested_name_specifier = NULL_TREE;
18089 if (scoped_enum_p)
18090 begin_scope (sk_scoped_enum, type);
18092 /* Consume the opening brace. */
18093 cp_lexer_consume_token (parser->lexer);
18095 if (type == error_mark_node)
18096 ; /* Nothing to add */
18097 else if (OPAQUE_ENUM_P (type)
18098 || (cxx_dialect > cxx98 && processing_specialization))
18100 new_value_list = true;
18101 SET_OPAQUE_ENUM_P (type, false);
18102 DECL_SOURCE_LOCATION (TYPE_NAME (type)) = type_start_token->location;
18104 else
18106 error_at (type_start_token->location,
18107 "multiple definition of %q#T", type);
18108 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)),
18109 "previous definition here");
18110 type = error_mark_node;
18113 if (type == error_mark_node)
18114 cp_parser_skip_to_end_of_block_or_statement (parser);
18115 /* If the next token is not '}', then there are some enumerators. */
18116 else if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
18118 if (is_unnamed && !scoped_enum_p)
18119 pedwarn (type_start_token->location, OPT_Wpedantic,
18120 "ISO C++ forbids empty unnamed enum");
18122 else
18123 cp_parser_enumerator_list (parser, type);
18125 /* Consume the final '}'. */
18126 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
18128 if (scoped_enum_p)
18129 finish_scope ();
18130 timevar_pop (TV_PARSE_ENUM);
18132 else
18134 /* If a ';' follows, then it is an opaque-enum-specifier
18135 and additional restrictions apply. */
18136 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
18138 if (is_unnamed)
18139 error_at (type_start_token->location,
18140 "opaque-enum-specifier without name");
18141 else if (nested_name_specifier)
18142 error_at (type_start_token->location,
18143 "opaque-enum-specifier must use a simple identifier");
18147 /* Look for trailing attributes to apply to this enumeration, and
18148 apply them if appropriate. */
18149 if (cp_parser_allow_gnu_extensions_p (parser))
18151 tree trailing_attr = cp_parser_gnu_attributes_opt (parser);
18152 cplus_decl_attributes (&type,
18153 trailing_attr,
18154 (int) ATTR_FLAG_TYPE_IN_PLACE);
18157 /* Finish up the enumeration. */
18158 if (type != error_mark_node)
18160 if (new_value_list)
18161 finish_enum_value_list (type);
18162 if (is_new_type)
18163 finish_enum (type);
18166 if (nested_name_specifier)
18168 if (CLASS_TYPE_P (nested_name_specifier))
18170 TYPE_BEING_DEFINED (nested_name_specifier) = nested_being_defined;
18171 pop_scope (nested_name_specifier);
18173 else if (TREE_CODE (nested_name_specifier) == NAMESPACE_DECL)
18175 pop_nested_namespace (nested_name_specifier);
18178 out:
18179 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
18180 return type;
18183 /* Parse an enumerator-list. The enumerators all have the indicated
18184 TYPE.
18186 enumerator-list:
18187 enumerator-definition
18188 enumerator-list , enumerator-definition */
18190 static void
18191 cp_parser_enumerator_list (cp_parser* parser, tree type)
18193 while (true)
18195 /* Parse an enumerator-definition. */
18196 cp_parser_enumerator_definition (parser, type);
18198 /* If the next token is not a ',', we've reached the end of
18199 the list. */
18200 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
18201 break;
18202 /* Otherwise, consume the `,' and keep going. */
18203 cp_lexer_consume_token (parser->lexer);
18204 /* If the next token is a `}', there is a trailing comma. */
18205 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
18207 if (cxx_dialect < cxx11 && !in_system_header_at (input_location))
18208 pedwarn (input_location, OPT_Wpedantic,
18209 "comma at end of enumerator list");
18210 break;
18215 /* Parse an enumerator-definition. The enumerator has the indicated
18216 TYPE.
18218 enumerator-definition:
18219 enumerator
18220 enumerator = constant-expression
18222 enumerator:
18223 identifier
18225 GNU Extensions:
18227 enumerator-definition:
18228 enumerator attributes [opt]
18229 enumerator attributes [opt] = constant-expression */
18231 static void
18232 cp_parser_enumerator_definition (cp_parser* parser, tree type)
18234 tree identifier;
18235 tree value;
18236 location_t loc;
18238 /* Save the input location because we are interested in the location
18239 of the identifier and not the location of the explicit value. */
18240 loc = cp_lexer_peek_token (parser->lexer)->location;
18242 /* Look for the identifier. */
18243 identifier = cp_parser_identifier (parser);
18244 if (identifier == error_mark_node)
18245 return;
18247 /* Parse any specified attributes. */
18248 tree attrs = cp_parser_attributes_opt (parser);
18250 /* If the next token is an '=', then there is an explicit value. */
18251 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
18253 /* Consume the `=' token. */
18254 cp_lexer_consume_token (parser->lexer);
18255 /* Parse the value. */
18256 value = cp_parser_constant_expression (parser);
18258 else
18259 value = NULL_TREE;
18261 /* If we are processing a template, make sure the initializer of the
18262 enumerator doesn't contain any bare template parameter pack. */
18263 if (check_for_bare_parameter_packs (value))
18264 value = error_mark_node;
18266 /* Create the enumerator. */
18267 build_enumerator (identifier, value, type, attrs, loc);
18270 /* Parse a namespace-name.
18272 namespace-name:
18273 original-namespace-name
18274 namespace-alias
18276 Returns the NAMESPACE_DECL for the namespace. */
18278 static tree
18279 cp_parser_namespace_name (cp_parser* parser)
18281 tree identifier;
18282 tree namespace_decl;
18284 cp_token *token = cp_lexer_peek_token (parser->lexer);
18286 /* Get the name of the namespace. */
18287 identifier = cp_parser_identifier (parser);
18288 if (identifier == error_mark_node)
18289 return error_mark_node;
18291 /* Look up the identifier in the currently active scope. Look only
18292 for namespaces, due to:
18294 [basic.lookup.udir]
18296 When looking up a namespace-name in a using-directive or alias
18297 definition, only namespace names are considered.
18299 And:
18301 [basic.lookup.qual]
18303 During the lookup of a name preceding the :: scope resolution
18304 operator, object, function, and enumerator names are ignored.
18306 (Note that cp_parser_qualifying_entity only calls this
18307 function if the token after the name is the scope resolution
18308 operator.) */
18309 namespace_decl = cp_parser_lookup_name (parser, identifier,
18310 none_type,
18311 /*is_template=*/false,
18312 /*is_namespace=*/true,
18313 /*check_dependency=*/true,
18314 /*ambiguous_decls=*/NULL,
18315 token->location);
18316 /* If it's not a namespace, issue an error. */
18317 if (namespace_decl == error_mark_node
18318 || TREE_CODE (namespace_decl) != NAMESPACE_DECL)
18320 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
18321 error_at (token->location, "%qD is not a namespace-name", identifier);
18322 cp_parser_error (parser, "expected namespace-name");
18323 namespace_decl = error_mark_node;
18326 return namespace_decl;
18329 /* Parse a namespace-definition.
18331 namespace-definition:
18332 named-namespace-definition
18333 unnamed-namespace-definition
18335 named-namespace-definition:
18336 original-namespace-definition
18337 extension-namespace-definition
18339 original-namespace-definition:
18340 namespace identifier { namespace-body }
18342 extension-namespace-definition:
18343 namespace original-namespace-name { namespace-body }
18345 unnamed-namespace-definition:
18346 namespace { namespace-body } */
18348 static void
18349 cp_parser_namespace_definition (cp_parser* parser)
18351 tree identifier;
18352 int nested_definition_count = 0;
18354 cp_ensure_no_omp_declare_simd (parser);
18355 cp_ensure_no_oacc_routine (parser);
18357 bool is_inline = cp_lexer_next_token_is_keyword (parser->lexer, RID_INLINE);
18359 if (is_inline)
18361 maybe_warn_cpp0x (CPP0X_INLINE_NAMESPACES);
18362 cp_lexer_consume_token (parser->lexer);
18365 /* Look for the `namespace' keyword. */
18366 cp_token* token
18367 = cp_parser_require_keyword (parser, RID_NAMESPACE, RT_NAMESPACE);
18369 /* Parse any specified attributes before the identifier. */
18370 tree attribs = cp_parser_attributes_opt (parser);
18372 for (;;)
18374 identifier = NULL_TREE;
18376 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
18378 identifier = cp_parser_identifier (parser);
18380 /* Parse any attributes specified after the identifier. */
18381 attribs = chainon (attribs, cp_parser_attributes_opt (parser));
18384 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SCOPE))
18385 break;
18387 if (!nested_definition_count && cxx_dialect < cxx1z)
18388 pedwarn (input_location, OPT_Wpedantic,
18389 "nested namespace definitions only available with "
18390 "-std=c++1z or -std=gnu++1z");
18392 /* Nested namespace names can create new namespaces (unlike
18393 other qualified-ids). */
18394 if (int count = identifier ? push_namespace (identifier) : 0)
18395 nested_definition_count += count;
18396 else
18397 cp_parser_error (parser, "nested namespace name required");
18398 cp_lexer_consume_token (parser->lexer);
18401 if (nested_definition_count && !identifier)
18402 cp_parser_error (parser, "namespace name required");
18404 if (nested_definition_count && attribs)
18405 error_at (token->location,
18406 "a nested namespace definition cannot have attributes");
18407 if (nested_definition_count && is_inline)
18408 error_at (token->location,
18409 "a nested namespace definition cannot be inline");
18411 /* Start the namespace. */
18412 nested_definition_count += push_namespace (identifier, is_inline);
18414 bool has_visibility = handle_namespace_attrs (current_namespace, attribs);
18416 warning (OPT_Wnamespaces, "namespace %qD entered", current_namespace);
18418 /* Look for the `{' to validate starting the namespace. */
18419 if (cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
18421 /* Parse the body of the namespace. */
18422 cp_parser_namespace_body (parser);
18424 /* Look for the final `}'. */
18425 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
18428 if (has_visibility)
18429 pop_visibility (1);
18431 /* Pop the nested namespace definitions. */
18432 while (nested_definition_count--)
18433 pop_namespace ();
18436 /* Parse a namespace-body.
18438 namespace-body:
18439 declaration-seq [opt] */
18441 static void
18442 cp_parser_namespace_body (cp_parser* parser)
18444 cp_parser_declaration_seq_opt (parser);
18447 /* Parse a namespace-alias-definition.
18449 namespace-alias-definition:
18450 namespace identifier = qualified-namespace-specifier ; */
18452 static void
18453 cp_parser_namespace_alias_definition (cp_parser* parser)
18455 tree identifier;
18456 tree namespace_specifier;
18458 cp_token *token = cp_lexer_peek_token (parser->lexer);
18460 /* Look for the `namespace' keyword. */
18461 cp_parser_require_keyword (parser, RID_NAMESPACE, RT_NAMESPACE);
18462 /* Look for the identifier. */
18463 identifier = cp_parser_identifier (parser);
18464 if (identifier == error_mark_node)
18465 return;
18466 /* Look for the `=' token. */
18467 if (!cp_parser_uncommitted_to_tentative_parse_p (parser)
18468 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
18470 error_at (token->location, "%<namespace%> definition is not allowed here");
18471 /* Skip the definition. */
18472 cp_lexer_consume_token (parser->lexer);
18473 if (cp_parser_skip_to_closing_brace (parser))
18474 cp_lexer_consume_token (parser->lexer);
18475 return;
18477 cp_parser_require (parser, CPP_EQ, RT_EQ);
18478 /* Look for the qualified-namespace-specifier. */
18479 namespace_specifier
18480 = cp_parser_qualified_namespace_specifier (parser);
18481 /* Look for the `;' token. */
18482 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
18484 /* Register the alias in the symbol table. */
18485 do_namespace_alias (identifier, namespace_specifier);
18488 /* Parse a qualified-namespace-specifier.
18490 qualified-namespace-specifier:
18491 :: [opt] nested-name-specifier [opt] namespace-name
18493 Returns a NAMESPACE_DECL corresponding to the specified
18494 namespace. */
18496 static tree
18497 cp_parser_qualified_namespace_specifier (cp_parser* parser)
18499 /* Look for the optional `::'. */
18500 cp_parser_global_scope_opt (parser,
18501 /*current_scope_valid_p=*/false);
18503 /* Look for the optional nested-name-specifier. */
18504 cp_parser_nested_name_specifier_opt (parser,
18505 /*typename_keyword_p=*/false,
18506 /*check_dependency_p=*/true,
18507 /*type_p=*/false,
18508 /*is_declaration=*/true);
18510 return cp_parser_namespace_name (parser);
18513 /* Parse a using-declaration, or, if ACCESS_DECLARATION_P is true, an
18514 access declaration.
18516 using-declaration:
18517 using typename [opt] :: [opt] nested-name-specifier unqualified-id ;
18518 using :: unqualified-id ;
18520 access-declaration:
18521 qualified-id ;
18525 static bool
18526 cp_parser_using_declaration (cp_parser* parser,
18527 bool access_declaration_p)
18529 cp_token *token;
18530 bool typename_p = false;
18531 bool global_scope_p;
18532 tree decl;
18533 tree identifier;
18534 tree qscope;
18535 int oldcount = errorcount;
18536 cp_token *diag_token = NULL;
18538 if (access_declaration_p)
18540 diag_token = cp_lexer_peek_token (parser->lexer);
18541 cp_parser_parse_tentatively (parser);
18543 else
18545 /* Look for the `using' keyword. */
18546 cp_parser_require_keyword (parser, RID_USING, RT_USING);
18548 again:
18549 /* Peek at the next token. */
18550 token = cp_lexer_peek_token (parser->lexer);
18551 /* See if it's `typename'. */
18552 if (token->keyword == RID_TYPENAME)
18554 /* Remember that we've seen it. */
18555 typename_p = true;
18556 /* Consume the `typename' token. */
18557 cp_lexer_consume_token (parser->lexer);
18561 /* Look for the optional global scope qualification. */
18562 global_scope_p
18563 = (cp_parser_global_scope_opt (parser,
18564 /*current_scope_valid_p=*/false)
18565 != NULL_TREE);
18567 /* If we saw `typename', or didn't see `::', then there must be a
18568 nested-name-specifier present. */
18569 if (typename_p || !global_scope_p)
18571 qscope = cp_parser_nested_name_specifier (parser, typename_p,
18572 /*check_dependency_p=*/true,
18573 /*type_p=*/false,
18574 /*is_declaration=*/true);
18575 if (!qscope && !cp_parser_uncommitted_to_tentative_parse_p (parser))
18577 cp_parser_skip_to_end_of_block_or_statement (parser);
18578 return false;
18581 /* Otherwise, we could be in either of the two productions. In that
18582 case, treat the nested-name-specifier as optional. */
18583 else
18584 qscope = cp_parser_nested_name_specifier_opt (parser,
18585 /*typename_keyword_p=*/false,
18586 /*check_dependency_p=*/true,
18587 /*type_p=*/false,
18588 /*is_declaration=*/true);
18589 if (!qscope)
18590 qscope = global_namespace;
18591 else if (UNSCOPED_ENUM_P (qscope))
18592 qscope = CP_TYPE_CONTEXT (qscope);
18594 if (access_declaration_p && cp_parser_error_occurred (parser))
18595 /* Something has already gone wrong; there's no need to parse
18596 further. Since an error has occurred, the return value of
18597 cp_parser_parse_definitely will be false, as required. */
18598 return cp_parser_parse_definitely (parser);
18600 token = cp_lexer_peek_token (parser->lexer);
18601 /* Parse the unqualified-id. */
18602 identifier = cp_parser_unqualified_id (parser,
18603 /*template_keyword_p=*/false,
18604 /*check_dependency_p=*/true,
18605 /*declarator_p=*/true,
18606 /*optional_p=*/false);
18608 if (access_declaration_p)
18610 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
18611 cp_parser_simulate_error (parser);
18612 if (!cp_parser_parse_definitely (parser))
18613 return false;
18615 else if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
18617 cp_token *ell = cp_lexer_consume_token (parser->lexer);
18618 if (cxx_dialect < cxx1z
18619 && !in_system_header_at (ell->location))
18620 pedwarn (ell->location, 0,
18621 "pack expansion in using-declaration only available "
18622 "with -std=c++1z or -std=gnu++1z");
18623 qscope = make_pack_expansion (qscope);
18626 /* The function we call to handle a using-declaration is different
18627 depending on what scope we are in. */
18628 if (qscope == error_mark_node || identifier == error_mark_node)
18630 else if (!identifier_p (identifier)
18631 && TREE_CODE (identifier) != BIT_NOT_EXPR)
18632 /* [namespace.udecl]
18634 A using declaration shall not name a template-id. */
18635 error_at (token->location,
18636 "a template-id may not appear in a using-declaration");
18637 else
18639 if (at_class_scope_p ())
18641 /* Create the USING_DECL. */
18642 decl = do_class_using_decl (qscope, identifier);
18644 if (decl && typename_p)
18645 USING_DECL_TYPENAME_P (decl) = 1;
18647 if (check_for_bare_parameter_packs (decl))
18649 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
18650 return false;
18652 else
18653 /* Add it to the list of members in this class. */
18654 finish_member_declaration (decl);
18656 else
18658 decl = cp_parser_lookup_name_simple (parser,
18659 identifier,
18660 token->location);
18661 if (decl == error_mark_node)
18662 cp_parser_name_lookup_error (parser, identifier,
18663 decl, NLE_NULL,
18664 token->location);
18665 else if (check_for_bare_parameter_packs (decl))
18667 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
18668 return false;
18670 else if (!at_namespace_scope_p ())
18671 finish_local_using_decl (decl, qscope, identifier);
18672 else
18673 finish_namespace_using_decl (decl, qscope, identifier);
18677 if (!access_declaration_p
18678 && cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
18680 cp_token *comma = cp_lexer_consume_token (parser->lexer);
18681 if (cxx_dialect < cxx1z)
18682 pedwarn (comma->location, 0,
18683 "comma-separated list in using-declaration only available "
18684 "with -std=c++1z or -std=gnu++1z");
18685 goto again;
18688 /* Look for the final `;'. */
18689 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
18691 if (access_declaration_p && errorcount == oldcount)
18692 warning_at (diag_token->location, OPT_Wdeprecated,
18693 "access declarations are deprecated "
18694 "in favour of using-declarations; "
18695 "suggestion: add the %<using%> keyword");
18697 return true;
18700 /* Parse an alias-declaration.
18702 alias-declaration:
18703 using identifier attribute-specifier-seq [opt] = type-id */
18705 static tree
18706 cp_parser_alias_declaration (cp_parser* parser)
18708 tree id, type, decl, pushed_scope = NULL_TREE, attributes;
18709 location_t id_location;
18710 cp_declarator *declarator;
18711 cp_decl_specifier_seq decl_specs;
18712 bool member_p;
18713 const char *saved_message = NULL;
18715 /* Look for the `using' keyword. */
18716 cp_token *using_token
18717 = cp_parser_require_keyword (parser, RID_USING, RT_USING);
18718 if (using_token == NULL)
18719 return error_mark_node;
18721 id_location = cp_lexer_peek_token (parser->lexer)->location;
18722 id = cp_parser_identifier (parser);
18723 if (id == error_mark_node)
18724 return error_mark_node;
18726 cp_token *attrs_token = cp_lexer_peek_token (parser->lexer);
18727 attributes = cp_parser_attributes_opt (parser);
18728 if (attributes == error_mark_node)
18729 return error_mark_node;
18731 cp_parser_require (parser, CPP_EQ, RT_EQ);
18733 if (cp_parser_error_occurred (parser))
18734 return error_mark_node;
18736 cp_parser_commit_to_tentative_parse (parser);
18738 /* Now we are going to parse the type-id of the declaration. */
18741 [dcl.type]/3 says:
18743 "A type-specifier-seq shall not define a class or enumeration
18744 unless it appears in the type-id of an alias-declaration (7.1.3) that
18745 is not the declaration of a template-declaration."
18747 In other words, if we currently are in an alias template, the
18748 type-id should not define a type.
18750 So let's set parser->type_definition_forbidden_message in that
18751 case; cp_parser_check_type_definition (called by
18752 cp_parser_class_specifier) will then emit an error if a type is
18753 defined in the type-id. */
18754 if (parser->num_template_parameter_lists)
18756 saved_message = parser->type_definition_forbidden_message;
18757 parser->type_definition_forbidden_message =
18758 G_("types may not be defined in alias template declarations");
18761 type = cp_parser_type_id (parser);
18763 /* Restore the error message if need be. */
18764 if (parser->num_template_parameter_lists)
18765 parser->type_definition_forbidden_message = saved_message;
18767 if (type == error_mark_node
18768 || !cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON))
18770 cp_parser_skip_to_end_of_block_or_statement (parser);
18771 return error_mark_node;
18774 /* A typedef-name can also be introduced by an alias-declaration. The
18775 identifier following the using keyword becomes a typedef-name. It has
18776 the same semantics as if it were introduced by the typedef
18777 specifier. In particular, it does not define a new type and it shall
18778 not appear in the type-id. */
18780 clear_decl_specs (&decl_specs);
18781 decl_specs.type = type;
18782 if (attributes != NULL_TREE)
18784 decl_specs.attributes = attributes;
18785 set_and_check_decl_spec_loc (&decl_specs,
18786 ds_attribute,
18787 attrs_token);
18789 set_and_check_decl_spec_loc (&decl_specs,
18790 ds_typedef,
18791 using_token);
18792 set_and_check_decl_spec_loc (&decl_specs,
18793 ds_alias,
18794 using_token);
18796 declarator = make_id_declarator (NULL_TREE, id, sfk_none);
18797 declarator->id_loc = id_location;
18799 member_p = at_class_scope_p ();
18800 if (member_p)
18801 decl = grokfield (declarator, &decl_specs, NULL_TREE, false,
18802 NULL_TREE, attributes);
18803 else
18804 decl = start_decl (declarator, &decl_specs, 0,
18805 attributes, NULL_TREE, &pushed_scope);
18806 if (decl == error_mark_node)
18807 return decl;
18809 // Attach constraints to the alias declaration.
18810 if (flag_concepts && current_template_parms)
18812 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
18813 tree constr = build_constraints (reqs, NULL_TREE);
18814 set_constraints (decl, constr);
18817 cp_finish_decl (decl, NULL_TREE, 0, NULL_TREE, 0);
18819 if (pushed_scope)
18820 pop_scope (pushed_scope);
18822 /* If decl is a template, return its TEMPLATE_DECL so that it gets
18823 added into the symbol table; otherwise, return the TYPE_DECL. */
18824 if (DECL_LANG_SPECIFIC (decl)
18825 && DECL_TEMPLATE_INFO (decl)
18826 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl)))
18828 decl = DECL_TI_TEMPLATE (decl);
18829 if (member_p)
18830 check_member_template (decl);
18833 return decl;
18836 /* Parse a using-directive.
18838 using-directive:
18839 using namespace :: [opt] nested-name-specifier [opt]
18840 namespace-name ; */
18842 static void
18843 cp_parser_using_directive (cp_parser* parser)
18845 tree namespace_decl;
18846 tree attribs;
18848 /* Look for the `using' keyword. */
18849 cp_parser_require_keyword (parser, RID_USING, RT_USING);
18850 /* And the `namespace' keyword. */
18851 cp_parser_require_keyword (parser, RID_NAMESPACE, RT_NAMESPACE);
18852 /* Look for the optional `::' operator. */
18853 cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/false);
18854 /* And the optional nested-name-specifier. */
18855 cp_parser_nested_name_specifier_opt (parser,
18856 /*typename_keyword_p=*/false,
18857 /*check_dependency_p=*/true,
18858 /*type_p=*/false,
18859 /*is_declaration=*/true);
18860 /* Get the namespace being used. */
18861 namespace_decl = cp_parser_namespace_name (parser);
18862 /* And any specified attributes. */
18863 attribs = cp_parser_attributes_opt (parser);
18865 /* Update the symbol table. */
18866 if (namespace_bindings_p ())
18867 finish_namespace_using_directive (namespace_decl, attribs);
18868 else
18869 finish_local_using_directive (namespace_decl, attribs);
18871 /* Look for the final `;'. */
18872 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
18875 /* Parse an asm-definition.
18877 asm-definition:
18878 asm ( string-literal ) ;
18880 GNU Extension:
18882 asm-definition:
18883 asm volatile [opt] ( string-literal ) ;
18884 asm volatile [opt] ( string-literal : asm-operand-list [opt] ) ;
18885 asm volatile [opt] ( string-literal : asm-operand-list [opt]
18886 : asm-operand-list [opt] ) ;
18887 asm volatile [opt] ( string-literal : asm-operand-list [opt]
18888 : asm-operand-list [opt]
18889 : asm-clobber-list [opt] ) ;
18890 asm volatile [opt] goto ( string-literal : : asm-operand-list [opt]
18891 : asm-clobber-list [opt]
18892 : asm-goto-list ) ; */
18894 static void
18895 cp_parser_asm_definition (cp_parser* parser)
18897 tree string;
18898 tree outputs = NULL_TREE;
18899 tree inputs = NULL_TREE;
18900 tree clobbers = NULL_TREE;
18901 tree labels = NULL_TREE;
18902 tree asm_stmt;
18903 bool volatile_p = false;
18904 bool extended_p = false;
18905 bool invalid_inputs_p = false;
18906 bool invalid_outputs_p = false;
18907 bool goto_p = false;
18908 required_token missing = RT_NONE;
18910 /* Look for the `asm' keyword. */
18911 cp_parser_require_keyword (parser, RID_ASM, RT_ASM);
18913 if (parser->in_function_body
18914 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
18916 error ("%<asm%> in %<constexpr%> function");
18917 cp_function_chain->invalid_constexpr = true;
18920 /* See if the next token is `volatile'. */
18921 if (cp_parser_allow_gnu_extensions_p (parser)
18922 && cp_lexer_next_token_is_keyword (parser->lexer, RID_VOLATILE))
18924 /* Remember that we saw the `volatile' keyword. */
18925 volatile_p = true;
18926 /* Consume the token. */
18927 cp_lexer_consume_token (parser->lexer);
18929 if (cp_parser_allow_gnu_extensions_p (parser)
18930 && parser->in_function_body
18931 && cp_lexer_next_token_is_keyword (parser->lexer, RID_GOTO))
18933 /* Remember that we saw the `goto' keyword. */
18934 goto_p = true;
18935 /* Consume the token. */
18936 cp_lexer_consume_token (parser->lexer);
18938 /* Look for the opening `('. */
18939 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
18940 return;
18941 /* Look for the string. */
18942 string = cp_parser_string_literal (parser, false, false);
18943 if (string == error_mark_node)
18945 cp_parser_skip_to_closing_parenthesis (parser, true, false,
18946 /*consume_paren=*/true);
18947 return;
18950 /* If we're allowing GNU extensions, check for the extended assembly
18951 syntax. Unfortunately, the `:' tokens need not be separated by
18952 a space in C, and so, for compatibility, we tolerate that here
18953 too. Doing that means that we have to treat the `::' operator as
18954 two `:' tokens. */
18955 if (cp_parser_allow_gnu_extensions_p (parser)
18956 && parser->in_function_body
18957 && (cp_lexer_next_token_is (parser->lexer, CPP_COLON)
18958 || cp_lexer_next_token_is (parser->lexer, CPP_SCOPE)))
18960 bool inputs_p = false;
18961 bool clobbers_p = false;
18962 bool labels_p = false;
18964 /* The extended syntax was used. */
18965 extended_p = true;
18967 /* Look for outputs. */
18968 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
18970 /* Consume the `:'. */
18971 cp_lexer_consume_token (parser->lexer);
18972 /* Parse the output-operands. */
18973 if (cp_lexer_next_token_is_not (parser->lexer,
18974 CPP_COLON)
18975 && cp_lexer_next_token_is_not (parser->lexer,
18976 CPP_SCOPE)
18977 && cp_lexer_next_token_is_not (parser->lexer,
18978 CPP_CLOSE_PAREN)
18979 && !goto_p)
18981 outputs = cp_parser_asm_operand_list (parser);
18982 if (outputs == error_mark_node)
18983 invalid_outputs_p = true;
18986 /* If the next token is `::', there are no outputs, and the
18987 next token is the beginning of the inputs. */
18988 else if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
18989 /* The inputs are coming next. */
18990 inputs_p = true;
18992 /* Look for inputs. */
18993 if (inputs_p
18994 || cp_lexer_next_token_is (parser->lexer, CPP_COLON))
18996 /* Consume the `:' or `::'. */
18997 cp_lexer_consume_token (parser->lexer);
18998 /* Parse the output-operands. */
18999 if (cp_lexer_next_token_is_not (parser->lexer,
19000 CPP_COLON)
19001 && cp_lexer_next_token_is_not (parser->lexer,
19002 CPP_SCOPE)
19003 && cp_lexer_next_token_is_not (parser->lexer,
19004 CPP_CLOSE_PAREN))
19006 inputs = cp_parser_asm_operand_list (parser);
19007 if (inputs == error_mark_node)
19008 invalid_inputs_p = true;
19011 else if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
19012 /* The clobbers are coming next. */
19013 clobbers_p = true;
19015 /* Look for clobbers. */
19016 if (clobbers_p
19017 || cp_lexer_next_token_is (parser->lexer, CPP_COLON))
19019 clobbers_p = true;
19020 /* Consume the `:' or `::'. */
19021 cp_lexer_consume_token (parser->lexer);
19022 /* Parse the clobbers. */
19023 if (cp_lexer_next_token_is_not (parser->lexer,
19024 CPP_COLON)
19025 && cp_lexer_next_token_is_not (parser->lexer,
19026 CPP_CLOSE_PAREN))
19027 clobbers = cp_parser_asm_clobber_list (parser);
19029 else if (goto_p
19030 && cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
19031 /* The labels are coming next. */
19032 labels_p = true;
19034 /* Look for labels. */
19035 if (labels_p
19036 || (goto_p && cp_lexer_next_token_is (parser->lexer, CPP_COLON)))
19038 labels_p = true;
19039 /* Consume the `:' or `::'. */
19040 cp_lexer_consume_token (parser->lexer);
19041 /* Parse the labels. */
19042 labels = cp_parser_asm_label_list (parser);
19045 if (goto_p && !labels_p)
19046 missing = clobbers_p ? RT_COLON : RT_COLON_SCOPE;
19048 else if (goto_p)
19049 missing = RT_COLON_SCOPE;
19051 /* Look for the closing `)'. */
19052 if (!cp_parser_require (parser, missing ? CPP_COLON : CPP_CLOSE_PAREN,
19053 missing ? missing : RT_CLOSE_PAREN))
19054 cp_parser_skip_to_closing_parenthesis (parser, true, false,
19055 /*consume_paren=*/true);
19056 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
19058 if (!invalid_inputs_p && !invalid_outputs_p)
19060 /* Create the ASM_EXPR. */
19061 if (parser->in_function_body)
19063 asm_stmt = finish_asm_stmt (volatile_p, string, outputs,
19064 inputs, clobbers, labels);
19065 /* If the extended syntax was not used, mark the ASM_EXPR. */
19066 if (!extended_p)
19068 tree temp = asm_stmt;
19069 if (TREE_CODE (temp) == CLEANUP_POINT_EXPR)
19070 temp = TREE_OPERAND (temp, 0);
19072 ASM_INPUT_P (temp) = 1;
19075 else
19076 symtab->finalize_toplevel_asm (string);
19080 /* Given the type TYPE of a declaration with declarator DECLARATOR, return the
19081 type that comes from the decl-specifier-seq. */
19083 static tree
19084 strip_declarator_types (tree type, cp_declarator *declarator)
19086 for (cp_declarator *d = declarator; d;)
19087 switch (d->kind)
19089 case cdk_id:
19090 case cdk_decomp:
19091 case cdk_error:
19092 d = NULL;
19093 break;
19095 default:
19096 if (TYPE_PTRMEMFUNC_P (type))
19097 type = TYPE_PTRMEMFUNC_FN_TYPE (type);
19098 type = TREE_TYPE (type);
19099 d = d->declarator;
19100 break;
19103 return type;
19106 /* Declarators [gram.dcl.decl] */
19108 /* Parse an init-declarator.
19110 init-declarator:
19111 declarator initializer [opt]
19113 GNU Extension:
19115 init-declarator:
19116 declarator asm-specification [opt] attributes [opt] initializer [opt]
19118 function-definition:
19119 decl-specifier-seq [opt] declarator ctor-initializer [opt]
19120 function-body
19121 decl-specifier-seq [opt] declarator function-try-block
19123 GNU Extension:
19125 function-definition:
19126 __extension__ function-definition
19128 TM Extension:
19130 function-definition:
19131 decl-specifier-seq [opt] declarator function-transaction-block
19133 The DECL_SPECIFIERS apply to this declarator. Returns a
19134 representation of the entity declared. If MEMBER_P is TRUE, then
19135 this declarator appears in a class scope. The new DECL created by
19136 this declarator is returned.
19138 The CHECKS are access checks that should be performed once we know
19139 what entity is being declared (and, therefore, what classes have
19140 befriended it).
19142 If FUNCTION_DEFINITION_ALLOWED_P then we handle the declarator and
19143 for a function-definition here as well. If the declarator is a
19144 declarator for a function-definition, *FUNCTION_DEFINITION_P will
19145 be TRUE upon return. By that point, the function-definition will
19146 have been completely parsed.
19148 FUNCTION_DEFINITION_P may be NULL if FUNCTION_DEFINITION_ALLOWED_P
19149 is FALSE.
19151 If MAYBE_RANGE_FOR_DECL is not NULL, the pointed tree will be set to the
19152 parsed declaration if it is an uninitialized single declarator not followed
19153 by a `;', or to error_mark_node otherwise. Either way, the trailing `;',
19154 if present, will not be consumed. If returned, this declarator will be
19155 created with SD_INITIALIZED but will not call cp_finish_decl.
19157 If INIT_LOC is not NULL, and *INIT_LOC is equal to UNKNOWN_LOCATION,
19158 and there is an initializer, the pointed location_t is set to the
19159 location of the '=' or `(', or '{' in C++11 token introducing the
19160 initializer. */
19162 static tree
19163 cp_parser_init_declarator (cp_parser* parser,
19164 cp_decl_specifier_seq *decl_specifiers,
19165 vec<deferred_access_check, va_gc> *checks,
19166 bool function_definition_allowed_p,
19167 bool member_p,
19168 int declares_class_or_enum,
19169 bool* function_definition_p,
19170 tree* maybe_range_for_decl,
19171 location_t* init_loc,
19172 tree* auto_result)
19174 cp_token *token = NULL, *asm_spec_start_token = NULL,
19175 *attributes_start_token = NULL;
19176 cp_declarator *declarator;
19177 tree prefix_attributes;
19178 tree attributes = NULL;
19179 tree asm_specification;
19180 tree initializer;
19181 tree decl = NULL_TREE;
19182 tree scope;
19183 int is_initialized;
19184 /* Only valid if IS_INITIALIZED is true. In that case, CPP_EQ if
19185 initialized with "= ..", CPP_OPEN_PAREN if initialized with
19186 "(...)". */
19187 enum cpp_ttype initialization_kind;
19188 bool is_direct_init = false;
19189 bool is_non_constant_init;
19190 int ctor_dtor_or_conv_p;
19191 bool friend_p = cp_parser_friend_p (decl_specifiers);
19192 tree pushed_scope = NULL_TREE;
19193 bool range_for_decl_p = false;
19194 bool saved_default_arg_ok_p = parser->default_arg_ok_p;
19195 location_t tmp_init_loc = UNKNOWN_LOCATION;
19197 /* Gather the attributes that were provided with the
19198 decl-specifiers. */
19199 prefix_attributes = decl_specifiers->attributes;
19201 /* Assume that this is not the declarator for a function
19202 definition. */
19203 if (function_definition_p)
19204 *function_definition_p = false;
19206 /* Default arguments are only permitted for function parameters. */
19207 if (decl_spec_seq_has_spec_p (decl_specifiers, ds_typedef))
19208 parser->default_arg_ok_p = false;
19210 /* Defer access checks while parsing the declarator; we cannot know
19211 what names are accessible until we know what is being
19212 declared. */
19213 resume_deferring_access_checks ();
19215 token = cp_lexer_peek_token (parser->lexer);
19217 /* Parse the declarator. */
19218 declarator
19219 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
19220 &ctor_dtor_or_conv_p,
19221 /*parenthesized_p=*/NULL,
19222 member_p, friend_p);
19223 /* Gather up the deferred checks. */
19224 stop_deferring_access_checks ();
19226 parser->default_arg_ok_p = saved_default_arg_ok_p;
19228 /* If the DECLARATOR was erroneous, there's no need to go
19229 further. */
19230 if (declarator == cp_error_declarator)
19231 return error_mark_node;
19233 /* Check that the number of template-parameter-lists is OK. */
19234 if (!cp_parser_check_declarator_template_parameters (parser, declarator,
19235 token->location))
19236 return error_mark_node;
19238 if (declares_class_or_enum & 2)
19239 cp_parser_check_for_definition_in_return_type (declarator,
19240 decl_specifiers->type,
19241 decl_specifiers->locations[ds_type_spec]);
19243 /* Figure out what scope the entity declared by the DECLARATOR is
19244 located in. `grokdeclarator' sometimes changes the scope, so
19245 we compute it now. */
19246 scope = get_scope_of_declarator (declarator);
19248 /* Perform any lookups in the declared type which were thought to be
19249 dependent, but are not in the scope of the declarator. */
19250 decl_specifiers->type
19251 = maybe_update_decl_type (decl_specifiers->type, scope);
19253 /* If we're allowing GNU extensions, look for an
19254 asm-specification. */
19255 if (cp_parser_allow_gnu_extensions_p (parser))
19257 /* Look for an asm-specification. */
19258 asm_spec_start_token = cp_lexer_peek_token (parser->lexer);
19259 asm_specification = cp_parser_asm_specification_opt (parser);
19261 else
19262 asm_specification = NULL_TREE;
19264 /* Look for attributes. */
19265 attributes_start_token = cp_lexer_peek_token (parser->lexer);
19266 attributes = cp_parser_attributes_opt (parser);
19268 /* Peek at the next token. */
19269 token = cp_lexer_peek_token (parser->lexer);
19271 bool bogus_implicit_tmpl = false;
19273 if (function_declarator_p (declarator))
19275 /* Handle C++17 deduction guides. */
19276 if (!decl_specifiers->type
19277 && ctor_dtor_or_conv_p <= 0
19278 && cxx_dialect >= cxx1z)
19280 cp_declarator *id = get_id_declarator (declarator);
19281 tree name = id->u.id.unqualified_name;
19282 parser->scope = id->u.id.qualifying_scope;
19283 tree tmpl = cp_parser_lookup_name_simple (parser, name, id->id_loc);
19284 if (tmpl
19285 && (DECL_CLASS_TEMPLATE_P (tmpl)
19286 || DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)))
19288 id->u.id.unqualified_name = dguide_name (tmpl);
19289 id->u.id.sfk = sfk_deduction_guide;
19290 ctor_dtor_or_conv_p = 1;
19294 /* Check to see if the token indicates the start of a
19295 function-definition. */
19296 if (cp_parser_token_starts_function_definition_p (token))
19298 if (!function_definition_allowed_p)
19300 /* If a function-definition should not appear here, issue an
19301 error message. */
19302 cp_parser_error (parser,
19303 "a function-definition is not allowed here");
19304 return error_mark_node;
19307 location_t func_brace_location
19308 = cp_lexer_peek_token (parser->lexer)->location;
19310 /* Neither attributes nor an asm-specification are allowed
19311 on a function-definition. */
19312 if (asm_specification)
19313 error_at (asm_spec_start_token->location,
19314 "an asm-specification is not allowed "
19315 "on a function-definition");
19316 if (attributes)
19317 error_at (attributes_start_token->location,
19318 "attributes are not allowed "
19319 "on a function-definition");
19320 /* This is a function-definition. */
19321 *function_definition_p = true;
19323 /* Parse the function definition. */
19324 if (member_p)
19325 decl = cp_parser_save_member_function_body (parser,
19326 decl_specifiers,
19327 declarator,
19328 prefix_attributes);
19329 else
19330 decl =
19331 (cp_parser_function_definition_from_specifiers_and_declarator
19332 (parser, decl_specifiers, prefix_attributes, declarator));
19334 if (decl != error_mark_node && DECL_STRUCT_FUNCTION (decl))
19336 /* This is where the prologue starts... */
19337 DECL_STRUCT_FUNCTION (decl)->function_start_locus
19338 = func_brace_location;
19341 return decl;
19344 else if (parser->fully_implicit_function_template_p)
19346 /* A non-template declaration involving a function parameter list
19347 containing an implicit template parameter will be made into a
19348 template. If the resulting declaration is not going to be an
19349 actual function then finish the template scope here to prevent it.
19350 An error message will be issued once we have a decl to talk about.
19352 FIXME probably we should do type deduction rather than create an
19353 implicit template, but the standard currently doesn't allow it. */
19354 bogus_implicit_tmpl = true;
19355 finish_fully_implicit_template (parser, NULL_TREE);
19358 /* [dcl.dcl]
19360 Only in function declarations for constructors, destructors, type
19361 conversions, and deduction guides can the decl-specifier-seq be omitted.
19363 We explicitly postpone this check past the point where we handle
19364 function-definitions because we tolerate function-definitions
19365 that are missing their return types in some modes. */
19366 if (!decl_specifiers->any_specifiers_p && ctor_dtor_or_conv_p <= 0)
19368 cp_parser_error (parser,
19369 "expected constructor, destructor, or type conversion");
19370 return error_mark_node;
19373 /* An `=' or an `(', or an '{' in C++0x, indicates an initializer. */
19374 if (token->type == CPP_EQ
19375 || token->type == CPP_OPEN_PAREN
19376 || token->type == CPP_OPEN_BRACE)
19378 is_initialized = SD_INITIALIZED;
19379 initialization_kind = token->type;
19380 if (maybe_range_for_decl)
19381 *maybe_range_for_decl = error_mark_node;
19382 tmp_init_loc = token->location;
19383 if (init_loc && *init_loc == UNKNOWN_LOCATION)
19384 *init_loc = tmp_init_loc;
19386 if (token->type == CPP_EQ
19387 && function_declarator_p (declarator))
19389 cp_token *t2 = cp_lexer_peek_nth_token (parser->lexer, 2);
19390 if (t2->keyword == RID_DEFAULT)
19391 is_initialized = SD_DEFAULTED;
19392 else if (t2->keyword == RID_DELETE)
19393 is_initialized = SD_DELETED;
19396 else
19398 /* If the init-declarator isn't initialized and isn't followed by a
19399 `,' or `;', it's not a valid init-declarator. */
19400 if (token->type != CPP_COMMA
19401 && token->type != CPP_SEMICOLON)
19403 if (maybe_range_for_decl && *maybe_range_for_decl != error_mark_node)
19404 range_for_decl_p = true;
19405 else
19407 if (!maybe_range_for_decl)
19408 cp_parser_error (parser, "expected initializer");
19409 return error_mark_node;
19412 is_initialized = SD_UNINITIALIZED;
19413 initialization_kind = CPP_EOF;
19416 /* Because start_decl has side-effects, we should only call it if we
19417 know we're going ahead. By this point, we know that we cannot
19418 possibly be looking at any other construct. */
19419 cp_parser_commit_to_tentative_parse (parser);
19421 /* Enter the newly declared entry in the symbol table. If we're
19422 processing a declaration in a class-specifier, we wait until
19423 after processing the initializer. */
19424 if (!member_p)
19426 if (parser->in_unbraced_linkage_specification_p)
19427 decl_specifiers->storage_class = sc_extern;
19428 decl = start_decl (declarator, decl_specifiers,
19429 range_for_decl_p? SD_INITIALIZED : is_initialized,
19430 attributes, prefix_attributes, &pushed_scope);
19431 cp_finalize_omp_declare_simd (parser, decl);
19432 cp_finalize_oacc_routine (parser, decl, false);
19433 /* Adjust location of decl if declarator->id_loc is more appropriate:
19434 set, and decl wasn't merged with another decl, in which case its
19435 location would be different from input_location, and more accurate. */
19436 if (DECL_P (decl)
19437 && declarator->id_loc != UNKNOWN_LOCATION
19438 && DECL_SOURCE_LOCATION (decl) == input_location)
19439 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
19441 else if (scope)
19442 /* Enter the SCOPE. That way unqualified names appearing in the
19443 initializer will be looked up in SCOPE. */
19444 pushed_scope = push_scope (scope);
19446 /* Perform deferred access control checks, now that we know in which
19447 SCOPE the declared entity resides. */
19448 if (!member_p && decl)
19450 tree saved_current_function_decl = NULL_TREE;
19452 /* If the entity being declared is a function, pretend that we
19453 are in its scope. If it is a `friend', it may have access to
19454 things that would not otherwise be accessible. */
19455 if (TREE_CODE (decl) == FUNCTION_DECL)
19457 saved_current_function_decl = current_function_decl;
19458 current_function_decl = decl;
19461 /* Perform access checks for template parameters. */
19462 cp_parser_perform_template_parameter_access_checks (checks);
19464 /* Perform the access control checks for the declarator and the
19465 decl-specifiers. */
19466 perform_deferred_access_checks (tf_warning_or_error);
19468 /* Restore the saved value. */
19469 if (TREE_CODE (decl) == FUNCTION_DECL)
19470 current_function_decl = saved_current_function_decl;
19473 /* Parse the initializer. */
19474 initializer = NULL_TREE;
19475 is_direct_init = false;
19476 is_non_constant_init = true;
19477 if (is_initialized)
19479 if (function_declarator_p (declarator))
19481 if (initialization_kind == CPP_EQ)
19482 initializer = cp_parser_pure_specifier (parser);
19483 else
19485 /* If the declaration was erroneous, we don't really
19486 know what the user intended, so just silently
19487 consume the initializer. */
19488 if (decl != error_mark_node)
19489 error_at (tmp_init_loc, "initializer provided for function");
19490 cp_parser_skip_to_closing_parenthesis (parser,
19491 /*recovering=*/true,
19492 /*or_comma=*/false,
19493 /*consume_paren=*/true);
19496 else
19498 /* We want to record the extra mangling scope for in-class
19499 initializers of class members and initializers of static data
19500 member templates. The former involves deferring
19501 parsing of the initializer until end of class as with default
19502 arguments. So right here we only handle the latter. */
19503 if (!member_p && processing_template_decl)
19504 start_lambda_scope (decl);
19505 initializer = cp_parser_initializer (parser,
19506 &is_direct_init,
19507 &is_non_constant_init);
19508 if (!member_p && processing_template_decl)
19509 finish_lambda_scope ();
19510 if (initializer == error_mark_node)
19511 cp_parser_skip_to_end_of_statement (parser);
19515 /* The old parser allows attributes to appear after a parenthesized
19516 initializer. Mark Mitchell proposed removing this functionality
19517 on the GCC mailing lists on 2002-08-13. This parser accepts the
19518 attributes -- but ignores them. */
19519 if (cp_parser_allow_gnu_extensions_p (parser)
19520 && initialization_kind == CPP_OPEN_PAREN)
19521 if (cp_parser_attributes_opt (parser))
19522 warning (OPT_Wattributes,
19523 "attributes after parenthesized initializer ignored");
19525 /* And now complain about a non-function implicit template. */
19526 if (bogus_implicit_tmpl && decl != error_mark_node)
19527 error_at (DECL_SOURCE_LOCATION (decl),
19528 "non-function %qD declared as implicit template", decl);
19530 /* For an in-class declaration, use `grokfield' to create the
19531 declaration. */
19532 if (member_p)
19534 if (pushed_scope)
19536 pop_scope (pushed_scope);
19537 pushed_scope = NULL_TREE;
19539 decl = grokfield (declarator, decl_specifiers,
19540 initializer, !is_non_constant_init,
19541 /*asmspec=*/NULL_TREE,
19542 chainon (attributes, prefix_attributes));
19543 if (decl && TREE_CODE (decl) == FUNCTION_DECL)
19544 cp_parser_save_default_args (parser, decl);
19545 cp_finalize_omp_declare_simd (parser, decl);
19546 cp_finalize_oacc_routine (parser, decl, false);
19549 /* Finish processing the declaration. But, skip member
19550 declarations. */
19551 if (!member_p && decl && decl != error_mark_node && !range_for_decl_p)
19553 cp_finish_decl (decl,
19554 initializer, !is_non_constant_init,
19555 asm_specification,
19556 /* If the initializer is in parentheses, then this is
19557 a direct-initialization, which means that an
19558 `explicit' constructor is OK. Otherwise, an
19559 `explicit' constructor cannot be used. */
19560 ((is_direct_init || !is_initialized)
19561 ? LOOKUP_NORMAL : LOOKUP_IMPLICIT));
19563 else if ((cxx_dialect != cxx98) && friend_p
19564 && decl && TREE_CODE (decl) == FUNCTION_DECL)
19565 /* Core issue #226 (C++0x only): A default template-argument
19566 shall not be specified in a friend class template
19567 declaration. */
19568 check_default_tmpl_args (decl, current_template_parms, /*is_primary=*/true,
19569 /*is_partial=*/false, /*is_friend_decl=*/1);
19571 if (!friend_p && pushed_scope)
19572 pop_scope (pushed_scope);
19574 if (function_declarator_p (declarator)
19575 && parser->fully_implicit_function_template_p)
19577 if (member_p)
19578 decl = finish_fully_implicit_template (parser, decl);
19579 else
19580 finish_fully_implicit_template (parser, /*member_decl_opt=*/0);
19583 if (auto_result && is_initialized && decl_specifiers->type
19584 && type_uses_auto (decl_specifiers->type))
19585 *auto_result = strip_declarator_types (TREE_TYPE (decl), declarator);
19587 return decl;
19590 /* Parse a declarator.
19592 declarator:
19593 direct-declarator
19594 ptr-operator declarator
19596 abstract-declarator:
19597 ptr-operator abstract-declarator [opt]
19598 direct-abstract-declarator
19600 GNU Extensions:
19602 declarator:
19603 attributes [opt] direct-declarator
19604 attributes [opt] ptr-operator declarator
19606 abstract-declarator:
19607 attributes [opt] ptr-operator abstract-declarator [opt]
19608 attributes [opt] direct-abstract-declarator
19610 If CTOR_DTOR_OR_CONV_P is not NULL, *CTOR_DTOR_OR_CONV_P is used to
19611 detect constructors, destructors, deduction guides, or conversion operators.
19612 It is set to -1 if the declarator is a name, and +1 if it is a
19613 function. Otherwise it is set to zero. Usually you just want to
19614 test for >0, but internally the negative value is used.
19616 (The reason for CTOR_DTOR_OR_CONV_P is that a declaration must have
19617 a decl-specifier-seq unless it declares a constructor, destructor,
19618 or conversion. It might seem that we could check this condition in
19619 semantic analysis, rather than parsing, but that makes it difficult
19620 to handle something like `f()'. We want to notice that there are
19621 no decl-specifiers, and therefore realize that this is an
19622 expression, not a declaration.)
19624 If PARENTHESIZED_P is non-NULL, *PARENTHESIZED_P is set to true iff
19625 the declarator is a direct-declarator of the form "(...)".
19627 MEMBER_P is true iff this declarator is a member-declarator.
19629 FRIEND_P is true iff this declarator is a friend. */
19631 static cp_declarator *
19632 cp_parser_declarator (cp_parser* parser,
19633 cp_parser_declarator_kind dcl_kind,
19634 int* ctor_dtor_or_conv_p,
19635 bool* parenthesized_p,
19636 bool member_p, bool friend_p)
19638 cp_declarator *declarator;
19639 enum tree_code code;
19640 cp_cv_quals cv_quals;
19641 tree class_type;
19642 tree gnu_attributes = NULL_TREE, std_attributes = NULL_TREE;
19644 /* Assume this is not a constructor, destructor, or type-conversion
19645 operator. */
19646 if (ctor_dtor_or_conv_p)
19647 *ctor_dtor_or_conv_p = 0;
19649 if (cp_parser_allow_gnu_extensions_p (parser))
19650 gnu_attributes = cp_parser_gnu_attributes_opt (parser);
19652 /* Check for the ptr-operator production. */
19653 cp_parser_parse_tentatively (parser);
19654 /* Parse the ptr-operator. */
19655 code = cp_parser_ptr_operator (parser,
19656 &class_type,
19657 &cv_quals,
19658 &std_attributes);
19660 /* If that worked, then we have a ptr-operator. */
19661 if (cp_parser_parse_definitely (parser))
19663 /* If a ptr-operator was found, then this declarator was not
19664 parenthesized. */
19665 if (parenthesized_p)
19666 *parenthesized_p = true;
19667 /* The dependent declarator is optional if we are parsing an
19668 abstract-declarator. */
19669 if (dcl_kind != CP_PARSER_DECLARATOR_NAMED)
19670 cp_parser_parse_tentatively (parser);
19672 /* Parse the dependent declarator. */
19673 declarator = cp_parser_declarator (parser, dcl_kind,
19674 /*ctor_dtor_or_conv_p=*/NULL,
19675 /*parenthesized_p=*/NULL,
19676 /*member_p=*/false,
19677 friend_p);
19679 /* If we are parsing an abstract-declarator, we must handle the
19680 case where the dependent declarator is absent. */
19681 if (dcl_kind != CP_PARSER_DECLARATOR_NAMED
19682 && !cp_parser_parse_definitely (parser))
19683 declarator = NULL;
19685 declarator = cp_parser_make_indirect_declarator
19686 (code, class_type, cv_quals, declarator, std_attributes);
19688 /* Everything else is a direct-declarator. */
19689 else
19691 if (parenthesized_p)
19692 *parenthesized_p = cp_lexer_next_token_is (parser->lexer,
19693 CPP_OPEN_PAREN);
19694 declarator = cp_parser_direct_declarator (parser, dcl_kind,
19695 ctor_dtor_or_conv_p,
19696 member_p, friend_p);
19699 if (gnu_attributes && declarator && declarator != cp_error_declarator)
19700 declarator->attributes = gnu_attributes;
19701 return declarator;
19704 /* Parse a direct-declarator or direct-abstract-declarator.
19706 direct-declarator:
19707 declarator-id
19708 direct-declarator ( parameter-declaration-clause )
19709 cv-qualifier-seq [opt]
19710 ref-qualifier [opt]
19711 exception-specification [opt]
19712 direct-declarator [ constant-expression [opt] ]
19713 ( declarator )
19715 direct-abstract-declarator:
19716 direct-abstract-declarator [opt]
19717 ( parameter-declaration-clause )
19718 cv-qualifier-seq [opt]
19719 ref-qualifier [opt]
19720 exception-specification [opt]
19721 direct-abstract-declarator [opt] [ constant-expression [opt] ]
19722 ( abstract-declarator )
19724 Returns a representation of the declarator. DCL_KIND is
19725 CP_PARSER_DECLARATOR_ABSTRACT, if we are parsing a
19726 direct-abstract-declarator. It is CP_PARSER_DECLARATOR_NAMED, if
19727 we are parsing a direct-declarator. It is
19728 CP_PARSER_DECLARATOR_EITHER, if we can accept either - in the case
19729 of ambiguity we prefer an abstract declarator, as per
19730 [dcl.ambig.res]. CTOR_DTOR_OR_CONV_P, MEMBER_P, and FRIEND_P are
19731 as for cp_parser_declarator. */
19733 static cp_declarator *
19734 cp_parser_direct_declarator (cp_parser* parser,
19735 cp_parser_declarator_kind dcl_kind,
19736 int* ctor_dtor_or_conv_p,
19737 bool member_p, bool friend_p)
19739 cp_token *token;
19740 cp_declarator *declarator = NULL;
19741 tree scope = NULL_TREE;
19742 bool saved_default_arg_ok_p = parser->default_arg_ok_p;
19743 bool saved_in_declarator_p = parser->in_declarator_p;
19744 bool first = true;
19745 tree pushed_scope = NULL_TREE;
19747 while (true)
19749 /* Peek at the next token. */
19750 token = cp_lexer_peek_token (parser->lexer);
19751 if (token->type == CPP_OPEN_PAREN)
19753 /* This is either a parameter-declaration-clause, or a
19754 parenthesized declarator. When we know we are parsing a
19755 named declarator, it must be a parenthesized declarator
19756 if FIRST is true. For instance, `(int)' is a
19757 parameter-declaration-clause, with an omitted
19758 direct-abstract-declarator. But `((*))', is a
19759 parenthesized abstract declarator. Finally, when T is a
19760 template parameter `(T)' is a
19761 parameter-declaration-clause, and not a parenthesized
19762 named declarator.
19764 We first try and parse a parameter-declaration-clause,
19765 and then try a nested declarator (if FIRST is true).
19767 It is not an error for it not to be a
19768 parameter-declaration-clause, even when FIRST is
19769 false. Consider,
19771 int i (int);
19772 int i (3);
19774 The first is the declaration of a function while the
19775 second is the definition of a variable, including its
19776 initializer.
19778 Having seen only the parenthesis, we cannot know which of
19779 these two alternatives should be selected. Even more
19780 complex are examples like:
19782 int i (int (a));
19783 int i (int (3));
19785 The former is a function-declaration; the latter is a
19786 variable initialization.
19788 Thus again, we try a parameter-declaration-clause, and if
19789 that fails, we back out and return. */
19791 if (!first || dcl_kind != CP_PARSER_DECLARATOR_NAMED)
19793 tree params;
19794 bool is_declarator = false;
19796 /* In a member-declarator, the only valid interpretation
19797 of a parenthesis is the start of a
19798 parameter-declaration-clause. (It is invalid to
19799 initialize a static data member with a parenthesized
19800 initializer; only the "=" form of initialization is
19801 permitted.) */
19802 if (!member_p)
19803 cp_parser_parse_tentatively (parser);
19805 /* Consume the `('. */
19806 cp_lexer_consume_token (parser->lexer);
19807 if (first)
19809 /* If this is going to be an abstract declarator, we're
19810 in a declarator and we can't have default args. */
19811 parser->default_arg_ok_p = false;
19812 parser->in_declarator_p = true;
19815 begin_scope (sk_function_parms, NULL_TREE);
19817 /* Parse the parameter-declaration-clause. */
19818 params = cp_parser_parameter_declaration_clause (parser);
19820 /* Consume the `)'. */
19821 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
19823 /* If all went well, parse the cv-qualifier-seq,
19824 ref-qualifier and the exception-specification. */
19825 if (member_p || cp_parser_parse_definitely (parser))
19827 cp_cv_quals cv_quals;
19828 cp_virt_specifiers virt_specifiers;
19829 cp_ref_qualifier ref_qual;
19830 tree exception_specification;
19831 tree late_return;
19832 tree attrs;
19833 bool memfn = (member_p || (pushed_scope
19834 && CLASS_TYPE_P (pushed_scope)));
19836 is_declarator = true;
19838 if (ctor_dtor_or_conv_p)
19839 *ctor_dtor_or_conv_p = *ctor_dtor_or_conv_p < 0;
19840 first = false;
19842 /* Parse the cv-qualifier-seq. */
19843 cv_quals = cp_parser_cv_qualifier_seq_opt (parser);
19844 /* Parse the ref-qualifier. */
19845 ref_qual = cp_parser_ref_qualifier_opt (parser);
19846 /* Parse the tx-qualifier. */
19847 tree tx_qual = cp_parser_tx_qualifier_opt (parser);
19848 /* And the exception-specification. */
19849 exception_specification
19850 = cp_parser_exception_specification_opt (parser);
19852 attrs = cp_parser_std_attribute_spec_seq (parser);
19854 /* In here, we handle cases where attribute is used after
19855 the function declaration. For example:
19856 void func (int x) __attribute__((vector(..))); */
19857 tree gnu_attrs = NULL_TREE;
19858 if (flag_cilkplus
19859 && cp_next_tokens_can_be_gnu_attribute_p (parser))
19861 cp_parser_parse_tentatively (parser);
19862 tree attr = cp_parser_gnu_attributes_opt (parser);
19863 if (cp_lexer_next_token_is_not (parser->lexer,
19864 CPP_SEMICOLON)
19865 && cp_lexer_next_token_is_not (parser->lexer,
19866 CPP_OPEN_BRACE))
19867 cp_parser_abort_tentative_parse (parser);
19868 else if (!cp_parser_parse_definitely (parser))
19870 else
19871 gnu_attrs = attr;
19873 tree requires_clause = NULL_TREE;
19874 late_return = (cp_parser_late_return_type_opt
19875 (parser, declarator, requires_clause,
19876 memfn ? cv_quals : -1));
19878 /* Parse the virt-specifier-seq. */
19879 virt_specifiers = cp_parser_virt_specifier_seq_opt (parser);
19881 /* Create the function-declarator. */
19882 declarator = make_call_declarator (declarator,
19883 params,
19884 cv_quals,
19885 virt_specifiers,
19886 ref_qual,
19887 tx_qual,
19888 exception_specification,
19889 late_return,
19890 requires_clause);
19891 declarator->std_attributes = attrs;
19892 declarator->attributes = gnu_attrs;
19893 /* Any subsequent parameter lists are to do with
19894 return type, so are not those of the declared
19895 function. */
19896 parser->default_arg_ok_p = false;
19899 /* Remove the function parms from scope. */
19900 pop_bindings_and_leave_scope ();
19902 if (is_declarator)
19903 /* Repeat the main loop. */
19904 continue;
19907 /* If this is the first, we can try a parenthesized
19908 declarator. */
19909 if (first)
19911 bool saved_in_type_id_in_expr_p;
19913 parser->default_arg_ok_p = saved_default_arg_ok_p;
19914 parser->in_declarator_p = saved_in_declarator_p;
19916 /* Consume the `('. */
19917 cp_lexer_consume_token (parser->lexer);
19918 /* Parse the nested declarator. */
19919 saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
19920 parser->in_type_id_in_expr_p = true;
19921 declarator
19922 = cp_parser_declarator (parser, dcl_kind, ctor_dtor_or_conv_p,
19923 /*parenthesized_p=*/NULL,
19924 member_p, friend_p);
19925 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
19926 first = false;
19927 /* Expect a `)'. */
19928 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
19929 declarator = cp_error_declarator;
19930 if (declarator == cp_error_declarator)
19931 break;
19933 goto handle_declarator;
19935 /* Otherwise, we must be done. */
19936 else
19937 break;
19939 else if ((!first || dcl_kind != CP_PARSER_DECLARATOR_NAMED)
19940 && token->type == CPP_OPEN_SQUARE
19941 && !cp_next_tokens_can_be_attribute_p (parser))
19943 /* Parse an array-declarator. */
19944 tree bounds, attrs;
19946 if (ctor_dtor_or_conv_p)
19947 *ctor_dtor_or_conv_p = 0;
19949 first = false;
19950 parser->default_arg_ok_p = false;
19951 parser->in_declarator_p = true;
19952 /* Consume the `['. */
19953 cp_lexer_consume_token (parser->lexer);
19954 /* Peek at the next token. */
19955 token = cp_lexer_peek_token (parser->lexer);
19956 /* If the next token is `]', then there is no
19957 constant-expression. */
19958 if (token->type != CPP_CLOSE_SQUARE)
19960 bool non_constant_p;
19961 bounds
19962 = cp_parser_constant_expression (parser,
19963 /*allow_non_constant=*/true,
19964 &non_constant_p);
19965 if (!non_constant_p)
19966 /* OK */;
19967 else if (error_operand_p (bounds))
19968 /* Already gave an error. */;
19969 else if (!parser->in_function_body
19970 || current_binding_level->kind == sk_function_parms)
19972 /* Normally, the array bound must be an integral constant
19973 expression. However, as an extension, we allow VLAs
19974 in function scopes as long as they aren't part of a
19975 parameter declaration. */
19976 cp_parser_error (parser,
19977 "array bound is not an integer constant");
19978 bounds = error_mark_node;
19980 else if (processing_template_decl
19981 && !type_dependent_expression_p (bounds))
19983 /* Remember this wasn't a constant-expression. */
19984 bounds = build_nop (TREE_TYPE (bounds), bounds);
19985 TREE_SIDE_EFFECTS (bounds) = 1;
19988 else
19989 bounds = NULL_TREE;
19990 /* Look for the closing `]'. */
19991 if (!cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE))
19993 declarator = cp_error_declarator;
19994 break;
19997 attrs = cp_parser_std_attribute_spec_seq (parser);
19998 declarator = make_array_declarator (declarator, bounds);
19999 declarator->std_attributes = attrs;
20001 else if (first && dcl_kind != CP_PARSER_DECLARATOR_ABSTRACT)
20004 tree qualifying_scope;
20005 tree unqualified_name;
20006 tree attrs;
20007 special_function_kind sfk;
20008 bool abstract_ok;
20009 bool pack_expansion_p = false;
20010 cp_token *declarator_id_start_token;
20012 /* Parse a declarator-id */
20013 abstract_ok = (dcl_kind == CP_PARSER_DECLARATOR_EITHER);
20014 if (abstract_ok)
20016 cp_parser_parse_tentatively (parser);
20018 /* If we see an ellipsis, we should be looking at a
20019 parameter pack. */
20020 if (token->type == CPP_ELLIPSIS)
20022 /* Consume the `...' */
20023 cp_lexer_consume_token (parser->lexer);
20025 pack_expansion_p = true;
20029 declarator_id_start_token = cp_lexer_peek_token (parser->lexer);
20030 unqualified_name
20031 = cp_parser_declarator_id (parser, /*optional_p=*/abstract_ok);
20032 qualifying_scope = parser->scope;
20033 if (abstract_ok)
20035 bool okay = false;
20037 if (!unqualified_name && pack_expansion_p)
20039 /* Check whether an error occurred. */
20040 okay = !cp_parser_error_occurred (parser);
20042 /* We already consumed the ellipsis to mark a
20043 parameter pack, but we have no way to report it,
20044 so abort the tentative parse. We will be exiting
20045 immediately anyway. */
20046 cp_parser_abort_tentative_parse (parser);
20048 else
20049 okay = cp_parser_parse_definitely (parser);
20051 if (!okay)
20052 unqualified_name = error_mark_node;
20053 else if (unqualified_name
20054 && (qualifying_scope
20055 || (!identifier_p (unqualified_name))))
20057 cp_parser_error (parser, "expected unqualified-id");
20058 unqualified_name = error_mark_node;
20062 if (!unqualified_name)
20063 return NULL;
20064 if (unqualified_name == error_mark_node)
20066 declarator = cp_error_declarator;
20067 pack_expansion_p = false;
20068 declarator->parameter_pack_p = false;
20069 break;
20072 attrs = cp_parser_std_attribute_spec_seq (parser);
20074 if (qualifying_scope && at_namespace_scope_p ()
20075 && TREE_CODE (qualifying_scope) == TYPENAME_TYPE)
20077 /* In the declaration of a member of a template class
20078 outside of the class itself, the SCOPE will sometimes
20079 be a TYPENAME_TYPE. For example, given:
20081 template <typename T>
20082 int S<T>::R::i = 3;
20084 the SCOPE will be a TYPENAME_TYPE for `S<T>::R'. In
20085 this context, we must resolve S<T>::R to an ordinary
20086 type, rather than a typename type.
20088 The reason we normally avoid resolving TYPENAME_TYPEs
20089 is that a specialization of `S' might render
20090 `S<T>::R' not a type. However, if `S' is
20091 specialized, then this `i' will not be used, so there
20092 is no harm in resolving the types here. */
20093 tree type;
20095 /* Resolve the TYPENAME_TYPE. */
20096 type = resolve_typename_type (qualifying_scope,
20097 /*only_current_p=*/false);
20098 /* If that failed, the declarator is invalid. */
20099 if (TREE_CODE (type) == TYPENAME_TYPE)
20101 if (typedef_variant_p (type))
20102 error_at (declarator_id_start_token->location,
20103 "cannot define member of dependent typedef "
20104 "%qT", type);
20105 else
20106 error_at (declarator_id_start_token->location,
20107 "%<%T::%E%> is not a type",
20108 TYPE_CONTEXT (qualifying_scope),
20109 TYPE_IDENTIFIER (qualifying_scope));
20111 qualifying_scope = type;
20114 sfk = sfk_none;
20116 if (unqualified_name)
20118 tree class_type;
20120 if (qualifying_scope
20121 && CLASS_TYPE_P (qualifying_scope))
20122 class_type = qualifying_scope;
20123 else
20124 class_type = current_class_type;
20126 if (TREE_CODE (unqualified_name) == TYPE_DECL)
20128 tree name_type = TREE_TYPE (unqualified_name);
20130 if (!class_type || !same_type_p (name_type, class_type))
20132 /* We do not attempt to print the declarator
20133 here because we do not have enough
20134 information about its original syntactic
20135 form. */
20136 cp_parser_error (parser, "invalid declarator");
20137 declarator = cp_error_declarator;
20138 break;
20140 else if (qualifying_scope
20141 && CLASSTYPE_USE_TEMPLATE (name_type))
20143 error_at (declarator_id_start_token->location,
20144 "invalid use of constructor as a template");
20145 inform (declarator_id_start_token->location,
20146 "use %<%T::%D%> instead of %<%T::%D%> to "
20147 "name the constructor in a qualified name",
20148 class_type,
20149 DECL_NAME (TYPE_TI_TEMPLATE (class_type)),
20150 class_type, name_type);
20151 declarator = cp_error_declarator;
20152 break;
20154 unqualified_name = constructor_name (class_type);
20157 if (class_type)
20159 if (TREE_CODE (unqualified_name) == BIT_NOT_EXPR)
20160 sfk = sfk_destructor;
20161 else if (identifier_p (unqualified_name)
20162 && IDENTIFIER_CONV_OP_P (unqualified_name))
20163 sfk = sfk_conversion;
20164 else if (/* There's no way to declare a constructor
20165 for an unnamed type, even if the type
20166 got a name for linkage purposes. */
20167 !TYPE_WAS_UNNAMED (class_type)
20168 /* Handle correctly (c++/19200):
20170 struct S {
20171 struct T{};
20172 friend void S(T);
20175 and also:
20177 namespace N {
20178 void S();
20181 struct S {
20182 friend void N::S();
20183 }; */
20184 && (!friend_p || class_type == qualifying_scope)
20185 && constructor_name_p (unqualified_name,
20186 class_type))
20187 sfk = sfk_constructor;
20188 else if (is_overloaded_fn (unqualified_name)
20189 && DECL_CONSTRUCTOR_P (get_first_fn
20190 (unqualified_name)))
20191 sfk = sfk_constructor;
20193 if (ctor_dtor_or_conv_p && sfk != sfk_none)
20194 *ctor_dtor_or_conv_p = -1;
20197 declarator = make_id_declarator (qualifying_scope,
20198 unqualified_name,
20199 sfk);
20200 declarator->std_attributes = attrs;
20201 declarator->id_loc = token->location;
20202 declarator->parameter_pack_p = pack_expansion_p;
20204 if (pack_expansion_p)
20205 maybe_warn_variadic_templates ();
20208 handle_declarator:;
20209 scope = get_scope_of_declarator (declarator);
20210 if (scope)
20212 /* Any names that appear after the declarator-id for a
20213 member are looked up in the containing scope. */
20214 if (at_function_scope_p ())
20216 /* But declarations with qualified-ids can't appear in a
20217 function. */
20218 cp_parser_error (parser, "qualified-id in declaration");
20219 declarator = cp_error_declarator;
20220 break;
20222 pushed_scope = push_scope (scope);
20224 parser->in_declarator_p = true;
20225 if ((ctor_dtor_or_conv_p && *ctor_dtor_or_conv_p)
20226 || (declarator && declarator->kind == cdk_id))
20227 /* Default args are only allowed on function
20228 declarations. */
20229 parser->default_arg_ok_p = saved_default_arg_ok_p;
20230 else
20231 parser->default_arg_ok_p = false;
20233 first = false;
20235 /* We're done. */
20236 else
20237 break;
20240 /* For an abstract declarator, we might wind up with nothing at this
20241 point. That's an error; the declarator is not optional. */
20242 if (!declarator)
20243 cp_parser_error (parser, "expected declarator");
20245 /* If we entered a scope, we must exit it now. */
20246 if (pushed_scope)
20247 pop_scope (pushed_scope);
20249 parser->default_arg_ok_p = saved_default_arg_ok_p;
20250 parser->in_declarator_p = saved_in_declarator_p;
20252 return declarator;
20255 /* Parse a ptr-operator.
20257 ptr-operator:
20258 * attribute-specifier-seq [opt] cv-qualifier-seq [opt] (C++11)
20259 * cv-qualifier-seq [opt]
20261 :: [opt] nested-name-specifier * cv-qualifier-seq [opt]
20262 nested-name-specifier * attribute-specifier-seq [opt] cv-qualifier-seq [opt] (C++11)
20264 GNU Extension:
20266 ptr-operator:
20267 & cv-qualifier-seq [opt]
20269 Returns INDIRECT_REF if a pointer, or pointer-to-member, was used.
20270 Returns ADDR_EXPR if a reference was used, or NON_LVALUE_EXPR for
20271 an rvalue reference. In the case of a pointer-to-member, *TYPE is
20272 filled in with the TYPE containing the member. *CV_QUALS is
20273 filled in with the cv-qualifier-seq, or TYPE_UNQUALIFIED, if there
20274 are no cv-qualifiers. Returns ERROR_MARK if an error occurred.
20275 Note that the tree codes returned by this function have nothing
20276 to do with the types of trees that will be eventually be created
20277 to represent the pointer or reference type being parsed. They are
20278 just constants with suggestive names. */
20279 static enum tree_code
20280 cp_parser_ptr_operator (cp_parser* parser,
20281 tree* type,
20282 cp_cv_quals *cv_quals,
20283 tree *attributes)
20285 enum tree_code code = ERROR_MARK;
20286 cp_token *token;
20287 tree attrs = NULL_TREE;
20289 /* Assume that it's not a pointer-to-member. */
20290 *type = NULL_TREE;
20291 /* And that there are no cv-qualifiers. */
20292 *cv_quals = TYPE_UNQUALIFIED;
20294 /* Peek at the next token. */
20295 token = cp_lexer_peek_token (parser->lexer);
20297 /* If it's a `*', `&' or `&&' we have a pointer or reference. */
20298 if (token->type == CPP_MULT)
20299 code = INDIRECT_REF;
20300 else if (token->type == CPP_AND)
20301 code = ADDR_EXPR;
20302 else if ((cxx_dialect != cxx98) &&
20303 token->type == CPP_AND_AND) /* C++0x only */
20304 code = NON_LVALUE_EXPR;
20306 if (code != ERROR_MARK)
20308 /* Consume the `*', `&' or `&&'. */
20309 cp_lexer_consume_token (parser->lexer);
20311 /* A `*' can be followed by a cv-qualifier-seq, and so can a
20312 `&', if we are allowing GNU extensions. (The only qualifier
20313 that can legally appear after `&' is `restrict', but that is
20314 enforced during semantic analysis. */
20315 if (code == INDIRECT_REF
20316 || cp_parser_allow_gnu_extensions_p (parser))
20317 *cv_quals = cp_parser_cv_qualifier_seq_opt (parser);
20319 attrs = cp_parser_std_attribute_spec_seq (parser);
20320 if (attributes != NULL)
20321 *attributes = attrs;
20323 else
20325 /* Try the pointer-to-member case. */
20326 cp_parser_parse_tentatively (parser);
20327 /* Look for the optional `::' operator. */
20328 cp_parser_global_scope_opt (parser,
20329 /*current_scope_valid_p=*/false);
20330 /* Look for the nested-name specifier. */
20331 token = cp_lexer_peek_token (parser->lexer);
20332 cp_parser_nested_name_specifier (parser,
20333 /*typename_keyword_p=*/false,
20334 /*check_dependency_p=*/true,
20335 /*type_p=*/false,
20336 /*is_declaration=*/false);
20337 /* If we found it, and the next token is a `*', then we are
20338 indeed looking at a pointer-to-member operator. */
20339 if (!cp_parser_error_occurred (parser)
20340 && cp_parser_require (parser, CPP_MULT, RT_MULT))
20342 /* Indicate that the `*' operator was used. */
20343 code = INDIRECT_REF;
20345 if (TREE_CODE (parser->scope) == NAMESPACE_DECL)
20346 error_at (token->location, "%qD is a namespace", parser->scope);
20347 else if (TREE_CODE (parser->scope) == ENUMERAL_TYPE)
20348 error_at (token->location, "cannot form pointer to member of "
20349 "non-class %q#T", parser->scope);
20350 else
20352 /* The type of which the member is a member is given by the
20353 current SCOPE. */
20354 *type = parser->scope;
20355 /* The next name will not be qualified. */
20356 parser->scope = NULL_TREE;
20357 parser->qualifying_scope = NULL_TREE;
20358 parser->object_scope = NULL_TREE;
20359 /* Look for optional c++11 attributes. */
20360 attrs = cp_parser_std_attribute_spec_seq (parser);
20361 if (attributes != NULL)
20362 *attributes = attrs;
20363 /* Look for the optional cv-qualifier-seq. */
20364 *cv_quals = cp_parser_cv_qualifier_seq_opt (parser);
20367 /* If that didn't work we don't have a ptr-operator. */
20368 if (!cp_parser_parse_definitely (parser))
20369 cp_parser_error (parser, "expected ptr-operator");
20372 return code;
20375 /* Parse an (optional) cv-qualifier-seq.
20377 cv-qualifier-seq:
20378 cv-qualifier cv-qualifier-seq [opt]
20380 cv-qualifier:
20381 const
20382 volatile
20384 GNU Extension:
20386 cv-qualifier:
20387 __restrict__
20389 Returns a bitmask representing the cv-qualifiers. */
20391 static cp_cv_quals
20392 cp_parser_cv_qualifier_seq_opt (cp_parser* parser)
20394 cp_cv_quals cv_quals = TYPE_UNQUALIFIED;
20396 while (true)
20398 cp_token *token;
20399 cp_cv_quals cv_qualifier;
20401 /* Peek at the next token. */
20402 token = cp_lexer_peek_token (parser->lexer);
20403 /* See if it's a cv-qualifier. */
20404 switch (token->keyword)
20406 case RID_CONST:
20407 cv_qualifier = TYPE_QUAL_CONST;
20408 break;
20410 case RID_VOLATILE:
20411 cv_qualifier = TYPE_QUAL_VOLATILE;
20412 break;
20414 case RID_RESTRICT:
20415 cv_qualifier = TYPE_QUAL_RESTRICT;
20416 break;
20418 default:
20419 cv_qualifier = TYPE_UNQUALIFIED;
20420 break;
20423 if (!cv_qualifier)
20424 break;
20426 if (cv_quals & cv_qualifier)
20428 gcc_rich_location richloc (token->location);
20429 richloc.add_fixit_remove ();
20430 error_at_rich_loc (&richloc, "duplicate cv-qualifier");
20431 cp_lexer_purge_token (parser->lexer);
20433 else
20435 cp_lexer_consume_token (parser->lexer);
20436 cv_quals |= cv_qualifier;
20440 return cv_quals;
20443 /* Parse an (optional) ref-qualifier
20445 ref-qualifier:
20449 Returns cp_ref_qualifier representing ref-qualifier. */
20451 static cp_ref_qualifier
20452 cp_parser_ref_qualifier_opt (cp_parser* parser)
20454 cp_ref_qualifier ref_qual = REF_QUAL_NONE;
20456 /* Don't try to parse bitwise '&' as a ref-qualifier (c++/57532). */
20457 if (cxx_dialect < cxx11 && cp_parser_parsing_tentatively (parser))
20458 return ref_qual;
20460 while (true)
20462 cp_ref_qualifier curr_ref_qual = REF_QUAL_NONE;
20463 cp_token *token = cp_lexer_peek_token (parser->lexer);
20465 switch (token->type)
20467 case CPP_AND:
20468 curr_ref_qual = REF_QUAL_LVALUE;
20469 break;
20471 case CPP_AND_AND:
20472 curr_ref_qual = REF_QUAL_RVALUE;
20473 break;
20475 default:
20476 curr_ref_qual = REF_QUAL_NONE;
20477 break;
20480 if (!curr_ref_qual)
20481 break;
20482 else if (ref_qual)
20484 error_at (token->location, "multiple ref-qualifiers");
20485 cp_lexer_purge_token (parser->lexer);
20487 else
20489 ref_qual = curr_ref_qual;
20490 cp_lexer_consume_token (parser->lexer);
20494 return ref_qual;
20497 /* Parse an optional tx-qualifier.
20499 tx-qualifier:
20500 transaction_safe
20501 transaction_safe_dynamic */
20503 static tree
20504 cp_parser_tx_qualifier_opt (cp_parser *parser)
20506 cp_token *token = cp_lexer_peek_token (parser->lexer);
20507 if (token->type == CPP_NAME)
20509 tree name = token->u.value;
20510 const char *p = IDENTIFIER_POINTER (name);
20511 const int len = strlen ("transaction_safe");
20512 if (!strncmp (p, "transaction_safe", len))
20514 p += len;
20515 if (*p == '\0'
20516 || !strcmp (p, "_dynamic"))
20518 cp_lexer_consume_token (parser->lexer);
20519 if (!flag_tm)
20521 error ("%qE requires %<-fgnu-tm%>", name);
20522 return NULL_TREE;
20524 else
20525 return name;
20529 return NULL_TREE;
20532 /* Parse an (optional) virt-specifier-seq.
20534 virt-specifier-seq:
20535 virt-specifier virt-specifier-seq [opt]
20537 virt-specifier:
20538 override
20539 final
20541 Returns a bitmask representing the virt-specifiers. */
20543 static cp_virt_specifiers
20544 cp_parser_virt_specifier_seq_opt (cp_parser* parser)
20546 cp_virt_specifiers virt_specifiers = VIRT_SPEC_UNSPECIFIED;
20548 while (true)
20550 cp_token *token;
20551 cp_virt_specifiers virt_specifier;
20553 /* Peek at the next token. */
20554 token = cp_lexer_peek_token (parser->lexer);
20555 /* See if it's a virt-specifier-qualifier. */
20556 if (token->type != CPP_NAME)
20557 break;
20558 if (id_equal (token->u.value, "override"))
20560 maybe_warn_cpp0x (CPP0X_OVERRIDE_CONTROLS);
20561 virt_specifier = VIRT_SPEC_OVERRIDE;
20563 else if (id_equal (token->u.value, "final"))
20565 maybe_warn_cpp0x (CPP0X_OVERRIDE_CONTROLS);
20566 virt_specifier = VIRT_SPEC_FINAL;
20568 else if (id_equal (token->u.value, "__final"))
20570 virt_specifier = VIRT_SPEC_FINAL;
20572 else
20573 break;
20575 if (virt_specifiers & virt_specifier)
20577 gcc_rich_location richloc (token->location);
20578 richloc.add_fixit_remove ();
20579 error_at_rich_loc (&richloc, "duplicate virt-specifier");
20580 cp_lexer_purge_token (parser->lexer);
20582 else
20584 cp_lexer_consume_token (parser->lexer);
20585 virt_specifiers |= virt_specifier;
20588 return virt_specifiers;
20591 /* Used by handling of trailing-return-types and NSDMI, in which 'this'
20592 is in scope even though it isn't real. */
20594 void
20595 inject_this_parameter (tree ctype, cp_cv_quals quals)
20597 tree this_parm;
20599 if (current_class_ptr)
20601 /* We don't clear this between NSDMIs. Is it already what we want? */
20602 tree type = TREE_TYPE (TREE_TYPE (current_class_ptr));
20603 if (same_type_ignoring_top_level_qualifiers_p (ctype, type)
20604 && cp_type_quals (type) == quals)
20605 return;
20608 this_parm = build_this_parm (NULL_TREE, ctype, quals);
20609 /* Clear this first to avoid shortcut in cp_build_indirect_ref. */
20610 current_class_ptr = NULL_TREE;
20611 current_class_ref
20612 = cp_build_indirect_ref (this_parm, RO_NULL, tf_warning_or_error);
20613 current_class_ptr = this_parm;
20616 /* Return true iff our current scope is a non-static data member
20617 initializer. */
20619 bool
20620 parsing_nsdmi (void)
20622 /* We recognize NSDMI context by the context-less 'this' pointer set up
20623 by the function above. */
20624 if (current_class_ptr
20625 && TREE_CODE (current_class_ptr) == PARM_DECL
20626 && DECL_CONTEXT (current_class_ptr) == NULL_TREE)
20627 return true;
20628 return false;
20631 /* Return true iff our current scope is a default capturing generic lambda
20632 defined within a template. FIXME: This is part of a workaround (see
20633 semantics.c) to handle building lambda closure types correctly in templates
20634 which we ultimately want to defer to instantiation time. */
20636 bool
20637 parsing_default_capturing_generic_lambda_in_template (void)
20639 if (!processing_template_decl || !current_class_type)
20640 return false;
20642 tree lam = CLASSTYPE_LAMBDA_EXPR (current_class_type);
20643 if (!lam || LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lam) == CPLD_NONE)
20644 return false;
20646 tree callop = lambda_function (lam);
20647 if (!callop)
20648 return false;
20650 return (DECL_TEMPLATE_INFO (callop)
20651 && (DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (callop)) == callop)
20652 && ((current_nonlambda_class_type ()
20653 && CLASSTYPE_TEMPLATE_INFO (current_nonlambda_class_type ()))
20654 || ((current_nonlambda_function ()
20655 && DECL_TEMPLATE_INFO (current_nonlambda_function ())))));
20658 /* Parse a late-specified return type, if any. This is not a separate
20659 non-terminal, but part of a function declarator, which looks like
20661 -> trailing-type-specifier-seq abstract-declarator(opt)
20663 Returns the type indicated by the type-id.
20665 In addition to this, parse any queued up #pragma omp declare simd
20666 clauses, Cilk Plus SIMD-enabled functions' vector attributes, and
20667 #pragma acc routine clauses.
20669 QUALS is either a bitmask of cv_qualifiers or -1 for a non-member
20670 function. */
20672 static tree
20673 cp_parser_late_return_type_opt (cp_parser* parser, cp_declarator *declarator,
20674 tree& requires_clause, cp_cv_quals quals)
20676 cp_token *token;
20677 tree type = NULL_TREE;
20678 bool declare_simd_p = (parser->omp_declare_simd
20679 && declarator
20680 && declarator->kind == cdk_id);
20682 bool cilk_simd_fn_vector_p = (parser->cilk_simd_fn_info
20683 && declarator && declarator->kind == cdk_id);
20685 bool oacc_routine_p = (parser->oacc_routine
20686 && declarator
20687 && declarator->kind == cdk_id);
20689 /* Peek at the next token. */
20690 token = cp_lexer_peek_token (parser->lexer);
20691 /* A late-specified return type is indicated by an initial '->'. */
20692 if (token->type != CPP_DEREF
20693 && token->keyword != RID_REQUIRES
20694 && !(token->type == CPP_NAME
20695 && token->u.value == ridpointers[RID_REQUIRES])
20696 && !(declare_simd_p || cilk_simd_fn_vector_p || oacc_routine_p))
20697 return NULL_TREE;
20699 tree save_ccp = current_class_ptr;
20700 tree save_ccr = current_class_ref;
20701 if (quals >= 0)
20703 /* DR 1207: 'this' is in scope in the trailing return type. */
20704 inject_this_parameter (current_class_type, quals);
20707 if (token->type == CPP_DEREF)
20709 /* Consume the ->. */
20710 cp_lexer_consume_token (parser->lexer);
20712 type = cp_parser_trailing_type_id (parser);
20715 /* Function declarations may be followed by a trailing
20716 requires-clause. */
20717 requires_clause = cp_parser_requires_clause_opt (parser);
20719 if (cilk_simd_fn_vector_p)
20720 declarator->attributes
20721 = cp_parser_late_parsing_cilk_simd_fn_info (parser,
20722 declarator->attributes);
20723 if (declare_simd_p)
20724 declarator->attributes
20725 = cp_parser_late_parsing_omp_declare_simd (parser,
20726 declarator->attributes);
20727 if (oacc_routine_p)
20728 declarator->attributes
20729 = cp_parser_late_parsing_oacc_routine (parser,
20730 declarator->attributes);
20732 if (quals >= 0)
20734 current_class_ptr = save_ccp;
20735 current_class_ref = save_ccr;
20738 return type;
20741 /* Parse a declarator-id.
20743 declarator-id:
20744 id-expression
20745 :: [opt] nested-name-specifier [opt] type-name
20747 In the `id-expression' case, the value returned is as for
20748 cp_parser_id_expression if the id-expression was an unqualified-id.
20749 If the id-expression was a qualified-id, then a SCOPE_REF is
20750 returned. The first operand is the scope (either a NAMESPACE_DECL
20751 or TREE_TYPE), but the second is still just a representation of an
20752 unqualified-id. */
20754 static tree
20755 cp_parser_declarator_id (cp_parser* parser, bool optional_p)
20757 tree id;
20758 /* The expression must be an id-expression. Assume that qualified
20759 names are the names of types so that:
20761 template <class T>
20762 int S<T>::R::i = 3;
20764 will work; we must treat `S<T>::R' as the name of a type.
20765 Similarly, assume that qualified names are templates, where
20766 required, so that:
20768 template <class T>
20769 int S<T>::R<T>::i = 3;
20771 will work, too. */
20772 id = cp_parser_id_expression (parser,
20773 /*template_keyword_p=*/false,
20774 /*check_dependency_p=*/false,
20775 /*template_p=*/NULL,
20776 /*declarator_p=*/true,
20777 optional_p);
20778 if (id && BASELINK_P (id))
20779 id = BASELINK_FUNCTIONS (id);
20780 return id;
20783 /* Parse a type-id.
20785 type-id:
20786 type-specifier-seq abstract-declarator [opt]
20788 Returns the TYPE specified. */
20790 static tree
20791 cp_parser_type_id_1 (cp_parser* parser, bool is_template_arg,
20792 bool is_trailing_return)
20794 cp_decl_specifier_seq type_specifier_seq;
20795 cp_declarator *abstract_declarator;
20797 /* Parse the type-specifier-seq. */
20798 cp_parser_type_specifier_seq (parser, /*is_declaration=*/false,
20799 is_trailing_return,
20800 &type_specifier_seq);
20801 if (is_template_arg && type_specifier_seq.type
20802 && TREE_CODE (type_specifier_seq.type) == TEMPLATE_TYPE_PARM
20803 && CLASS_PLACEHOLDER_TEMPLATE (type_specifier_seq.type))
20804 /* A bare template name as a template argument is a template template
20805 argument, not a placeholder, so fail parsing it as a type argument. */
20807 gcc_assert (cp_parser_uncommitted_to_tentative_parse_p (parser));
20808 cp_parser_simulate_error (parser);
20809 return error_mark_node;
20811 if (type_specifier_seq.type == error_mark_node)
20812 return error_mark_node;
20814 /* There might or might not be an abstract declarator. */
20815 cp_parser_parse_tentatively (parser);
20816 /* Look for the declarator. */
20817 abstract_declarator
20818 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_ABSTRACT, NULL,
20819 /*parenthesized_p=*/NULL,
20820 /*member_p=*/false,
20821 /*friend_p=*/false);
20822 /* Check to see if there really was a declarator. */
20823 if (!cp_parser_parse_definitely (parser))
20824 abstract_declarator = NULL;
20826 if (type_specifier_seq.type
20827 /* The concepts TS allows 'auto' as a type-id. */
20828 && (!flag_concepts || parser->in_type_id_in_expr_p)
20829 /* None of the valid uses of 'auto' in C++14 involve the type-id
20830 nonterminal, but it is valid in a trailing-return-type. */
20831 && !(cxx_dialect >= cxx14 && is_trailing_return))
20832 if (tree auto_node = type_uses_auto (type_specifier_seq.type))
20834 /* A type-id with type 'auto' is only ok if the abstract declarator
20835 is a function declarator with a late-specified return type.
20837 A type-id with 'auto' is also valid in a trailing-return-type
20838 in a compound-requirement. */
20839 if (abstract_declarator
20840 && abstract_declarator->kind == cdk_function
20841 && abstract_declarator->u.function.late_return_type)
20842 /* OK */;
20843 else if (parser->in_result_type_constraint_p)
20844 /* OK */;
20845 else
20847 location_t loc = type_specifier_seq.locations[ds_type_spec];
20848 if (tree tmpl = CLASS_PLACEHOLDER_TEMPLATE (auto_node))
20850 error_at (loc, "missing template arguments after %qT",
20851 auto_node);
20852 inform (DECL_SOURCE_LOCATION (tmpl), "%qD declared here",
20853 tmpl);
20855 else
20856 error_at (loc, "invalid use of %qT", auto_node);
20857 return error_mark_node;
20861 return groktypename (&type_specifier_seq, abstract_declarator,
20862 is_template_arg);
20865 static tree
20866 cp_parser_type_id (cp_parser *parser)
20868 return cp_parser_type_id_1 (parser, false, false);
20871 static tree
20872 cp_parser_template_type_arg (cp_parser *parser)
20874 tree r;
20875 const char *saved_message = parser->type_definition_forbidden_message;
20876 parser->type_definition_forbidden_message
20877 = G_("types may not be defined in template arguments");
20878 r = cp_parser_type_id_1 (parser, true, false);
20879 parser->type_definition_forbidden_message = saved_message;
20880 if (cxx_dialect >= cxx14 && !flag_concepts && type_uses_auto (r))
20882 error ("invalid use of %<auto%> in template argument");
20883 r = error_mark_node;
20885 return r;
20888 static tree
20889 cp_parser_trailing_type_id (cp_parser *parser)
20891 return cp_parser_type_id_1 (parser, false, true);
20894 /* Parse a type-specifier-seq.
20896 type-specifier-seq:
20897 type-specifier type-specifier-seq [opt]
20899 GNU extension:
20901 type-specifier-seq:
20902 attributes type-specifier-seq [opt]
20904 If IS_DECLARATION is true, we are at the start of a "condition" or
20905 exception-declaration, so we might be followed by a declarator-id.
20907 If IS_TRAILING_RETURN is true, we are in a trailing-return-type,
20908 i.e. we've just seen "->".
20910 Sets *TYPE_SPECIFIER_SEQ to represent the sequence. */
20912 static void
20913 cp_parser_type_specifier_seq (cp_parser* parser,
20914 bool is_declaration,
20915 bool is_trailing_return,
20916 cp_decl_specifier_seq *type_specifier_seq)
20918 bool seen_type_specifier = false;
20919 cp_parser_flags flags = CP_PARSER_FLAGS_OPTIONAL;
20920 cp_token *start_token = NULL;
20922 /* Clear the TYPE_SPECIFIER_SEQ. */
20923 clear_decl_specs (type_specifier_seq);
20925 /* In the context of a trailing return type, enum E { } is an
20926 elaborated-type-specifier followed by a function-body, not an
20927 enum-specifier. */
20928 if (is_trailing_return)
20929 flags |= CP_PARSER_FLAGS_NO_TYPE_DEFINITIONS;
20931 /* Parse the type-specifiers and attributes. */
20932 while (true)
20934 tree type_specifier;
20935 bool is_cv_qualifier;
20937 /* Check for attributes first. */
20938 if (cp_next_tokens_can_be_attribute_p (parser))
20940 type_specifier_seq->attributes =
20941 chainon (type_specifier_seq->attributes,
20942 cp_parser_attributes_opt (parser));
20943 continue;
20946 /* record the token of the beginning of the type specifier seq,
20947 for error reporting purposes*/
20948 if (!start_token)
20949 start_token = cp_lexer_peek_token (parser->lexer);
20951 /* Look for the type-specifier. */
20952 type_specifier = cp_parser_type_specifier (parser,
20953 flags,
20954 type_specifier_seq,
20955 /*is_declaration=*/false,
20956 NULL,
20957 &is_cv_qualifier);
20958 if (!type_specifier)
20960 /* If the first type-specifier could not be found, this is not a
20961 type-specifier-seq at all. */
20962 if (!seen_type_specifier)
20964 /* Set in_declarator_p to avoid skipping to the semicolon. */
20965 int in_decl = parser->in_declarator_p;
20966 parser->in_declarator_p = true;
20968 if (cp_parser_uncommitted_to_tentative_parse_p (parser)
20969 || !cp_parser_parse_and_diagnose_invalid_type_name (parser))
20970 cp_parser_error (parser, "expected type-specifier");
20972 parser->in_declarator_p = in_decl;
20974 type_specifier_seq->type = error_mark_node;
20975 return;
20977 /* If subsequent type-specifiers could not be found, the
20978 type-specifier-seq is complete. */
20979 break;
20982 seen_type_specifier = true;
20983 /* The standard says that a condition can be:
20985 type-specifier-seq declarator = assignment-expression
20987 However, given:
20989 struct S {};
20990 if (int S = ...)
20992 we should treat the "S" as a declarator, not as a
20993 type-specifier. The standard doesn't say that explicitly for
20994 type-specifier-seq, but it does say that for
20995 decl-specifier-seq in an ordinary declaration. Perhaps it
20996 would be clearer just to allow a decl-specifier-seq here, and
20997 then add a semantic restriction that if any decl-specifiers
20998 that are not type-specifiers appear, the program is invalid. */
20999 if (is_declaration && !is_cv_qualifier)
21000 flags |= CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES;
21004 /* Return whether the function currently being declared has an associated
21005 template parameter list. */
21007 static bool
21008 function_being_declared_is_template_p (cp_parser* parser)
21010 if (!current_template_parms || processing_template_parmlist)
21011 return false;
21013 if (parser->implicit_template_scope)
21014 return true;
21016 if (at_class_scope_p ()
21017 && TYPE_BEING_DEFINED (current_class_type))
21018 return parser->num_template_parameter_lists != 0;
21020 return ((int) parser->num_template_parameter_lists > template_class_depth
21021 (current_class_type));
21024 /* Parse a parameter-declaration-clause.
21026 parameter-declaration-clause:
21027 parameter-declaration-list [opt] ... [opt]
21028 parameter-declaration-list , ...
21030 Returns a representation for the parameter declarations. A return
21031 value of NULL indicates a parameter-declaration-clause consisting
21032 only of an ellipsis. */
21034 static tree
21035 cp_parser_parameter_declaration_clause (cp_parser* parser)
21037 tree parameters;
21038 cp_token *token;
21039 bool ellipsis_p;
21040 bool is_error;
21042 struct cleanup {
21043 cp_parser* parser;
21044 int auto_is_implicit_function_template_parm_p;
21045 ~cleanup() {
21046 parser->auto_is_implicit_function_template_parm_p
21047 = auto_is_implicit_function_template_parm_p;
21049 } cleanup = { parser, parser->auto_is_implicit_function_template_parm_p };
21051 (void) cleanup;
21053 if (!processing_specialization
21054 && !processing_template_parmlist
21055 && !processing_explicit_instantiation)
21056 if (!current_function_decl
21057 || (current_class_type && LAMBDA_TYPE_P (current_class_type)))
21058 parser->auto_is_implicit_function_template_parm_p = true;
21060 /* Peek at the next token. */
21061 token = cp_lexer_peek_token (parser->lexer);
21062 /* Check for trivial parameter-declaration-clauses. */
21063 if (token->type == CPP_ELLIPSIS)
21065 /* Consume the `...' token. */
21066 cp_lexer_consume_token (parser->lexer);
21067 return NULL_TREE;
21069 else if (token->type == CPP_CLOSE_PAREN)
21070 /* There are no parameters. */
21072 #ifndef NO_IMPLICIT_EXTERN_C
21073 if (in_system_header_at (input_location)
21074 && current_class_type == NULL
21075 && current_lang_name == lang_name_c)
21076 return NULL_TREE;
21077 else
21078 #endif
21079 return void_list_node;
21081 /* Check for `(void)', too, which is a special case. */
21082 else if (token->keyword == RID_VOID
21083 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
21084 == CPP_CLOSE_PAREN))
21086 /* Consume the `void' token. */
21087 cp_lexer_consume_token (parser->lexer);
21088 /* There are no parameters. */
21089 return void_list_node;
21092 /* Parse the parameter-declaration-list. */
21093 parameters = cp_parser_parameter_declaration_list (parser, &is_error);
21094 /* If a parse error occurred while parsing the
21095 parameter-declaration-list, then the entire
21096 parameter-declaration-clause is erroneous. */
21097 if (is_error)
21098 return NULL;
21100 /* Peek at the next token. */
21101 token = cp_lexer_peek_token (parser->lexer);
21102 /* If it's a `,', the clause should terminate with an ellipsis. */
21103 if (token->type == CPP_COMMA)
21105 /* Consume the `,'. */
21106 cp_lexer_consume_token (parser->lexer);
21107 /* Expect an ellipsis. */
21108 ellipsis_p
21109 = (cp_parser_require (parser, CPP_ELLIPSIS, RT_ELLIPSIS) != NULL);
21111 /* It might also be `...' if the optional trailing `,' was
21112 omitted. */
21113 else if (token->type == CPP_ELLIPSIS)
21115 /* Consume the `...' token. */
21116 cp_lexer_consume_token (parser->lexer);
21117 /* And remember that we saw it. */
21118 ellipsis_p = true;
21120 else
21121 ellipsis_p = false;
21123 /* Finish the parameter list. */
21124 if (!ellipsis_p)
21125 parameters = chainon (parameters, void_list_node);
21127 return parameters;
21130 /* Parse a parameter-declaration-list.
21132 parameter-declaration-list:
21133 parameter-declaration
21134 parameter-declaration-list , parameter-declaration
21136 Returns a representation of the parameter-declaration-list, as for
21137 cp_parser_parameter_declaration_clause. However, the
21138 `void_list_node' is never appended to the list. Upon return,
21139 *IS_ERROR will be true iff an error occurred. */
21141 static tree
21142 cp_parser_parameter_declaration_list (cp_parser* parser, bool *is_error)
21144 tree parameters = NULL_TREE;
21145 tree *tail = &parameters;
21146 bool saved_in_unbraced_linkage_specification_p;
21147 int index = 0;
21149 /* Assume all will go well. */
21150 *is_error = false;
21151 /* The special considerations that apply to a function within an
21152 unbraced linkage specifications do not apply to the parameters
21153 to the function. */
21154 saved_in_unbraced_linkage_specification_p
21155 = parser->in_unbraced_linkage_specification_p;
21156 parser->in_unbraced_linkage_specification_p = false;
21158 /* Look for more parameters. */
21159 while (true)
21161 cp_parameter_declarator *parameter;
21162 tree decl = error_mark_node;
21163 bool parenthesized_p = false;
21164 int template_parm_idx = (function_being_declared_is_template_p (parser)?
21165 TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
21166 (current_template_parms)) : 0);
21168 /* Parse the parameter. */
21169 parameter
21170 = cp_parser_parameter_declaration (parser,
21171 /*template_parm_p=*/false,
21172 &parenthesized_p);
21174 /* We don't know yet if the enclosing context is deprecated, so wait
21175 and warn in grokparms if appropriate. */
21176 deprecated_state = DEPRECATED_SUPPRESS;
21178 if (parameter)
21180 /* If a function parameter pack was specified and an implicit template
21181 parameter was introduced during cp_parser_parameter_declaration,
21182 change any implicit parameters introduced into packs. */
21183 if (parser->implicit_template_parms
21184 && parameter->declarator
21185 && parameter->declarator->parameter_pack_p)
21187 int latest_template_parm_idx = TREE_VEC_LENGTH
21188 (INNERMOST_TEMPLATE_PARMS (current_template_parms));
21190 if (latest_template_parm_idx != template_parm_idx)
21191 parameter->decl_specifiers.type = convert_generic_types_to_packs
21192 (parameter->decl_specifiers.type,
21193 template_parm_idx, latest_template_parm_idx);
21196 decl = grokdeclarator (parameter->declarator,
21197 &parameter->decl_specifiers,
21198 PARM,
21199 parameter->default_argument != NULL_TREE,
21200 &parameter->decl_specifiers.attributes);
21203 deprecated_state = DEPRECATED_NORMAL;
21205 /* If a parse error occurred parsing the parameter declaration,
21206 then the entire parameter-declaration-list is erroneous. */
21207 if (decl == error_mark_node)
21209 *is_error = true;
21210 parameters = error_mark_node;
21211 break;
21214 if (parameter->decl_specifiers.attributes)
21215 cplus_decl_attributes (&decl,
21216 parameter->decl_specifiers.attributes,
21218 if (DECL_NAME (decl))
21219 decl = pushdecl (decl);
21221 if (decl != error_mark_node)
21223 retrofit_lang_decl (decl);
21224 DECL_PARM_INDEX (decl) = ++index;
21225 DECL_PARM_LEVEL (decl) = function_parm_depth ();
21228 /* Add the new parameter to the list. */
21229 *tail = build_tree_list (parameter->default_argument, decl);
21230 tail = &TREE_CHAIN (*tail);
21232 /* Peek at the next token. */
21233 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN)
21234 || cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS)
21235 /* These are for Objective-C++ */
21236 || cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
21237 || cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
21238 /* The parameter-declaration-list is complete. */
21239 break;
21240 else if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
21242 cp_token *token;
21244 /* Peek at the next token. */
21245 token = cp_lexer_peek_nth_token (parser->lexer, 2);
21246 /* If it's an ellipsis, then the list is complete. */
21247 if (token->type == CPP_ELLIPSIS)
21248 break;
21249 /* Otherwise, there must be more parameters. Consume the
21250 `,'. */
21251 cp_lexer_consume_token (parser->lexer);
21252 /* When parsing something like:
21254 int i(float f, double d)
21256 we can tell after seeing the declaration for "f" that we
21257 are not looking at an initialization of a variable "i",
21258 but rather at the declaration of a function "i".
21260 Due to the fact that the parsing of template arguments
21261 (as specified to a template-id) requires backtracking we
21262 cannot use this technique when inside a template argument
21263 list. */
21264 if (!parser->in_template_argument_list_p
21265 && !parser->in_type_id_in_expr_p
21266 && cp_parser_uncommitted_to_tentative_parse_p (parser)
21267 /* However, a parameter-declaration of the form
21268 "float(f)" (which is a valid declaration of a
21269 parameter "f") can also be interpreted as an
21270 expression (the conversion of "f" to "float"). */
21271 && !parenthesized_p)
21272 cp_parser_commit_to_tentative_parse (parser);
21274 else
21276 cp_parser_error (parser, "expected %<,%> or %<...%>");
21277 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
21278 cp_parser_skip_to_closing_parenthesis (parser,
21279 /*recovering=*/true,
21280 /*or_comma=*/false,
21281 /*consume_paren=*/false);
21282 break;
21286 parser->in_unbraced_linkage_specification_p
21287 = saved_in_unbraced_linkage_specification_p;
21289 /* Reset implicit_template_scope if we are about to leave the function
21290 parameter list that introduced it. Note that for out-of-line member
21291 definitions, there will be one or more class scopes before we get to
21292 the template parameter scope. */
21294 if (cp_binding_level *its = parser->implicit_template_scope)
21295 if (cp_binding_level *maybe_its = current_binding_level->level_chain)
21297 while (maybe_its->kind == sk_class)
21298 maybe_its = maybe_its->level_chain;
21299 if (maybe_its == its)
21301 parser->implicit_template_parms = 0;
21302 parser->implicit_template_scope = 0;
21306 return parameters;
21309 /* Parse a parameter declaration.
21311 parameter-declaration:
21312 decl-specifier-seq ... [opt] declarator
21313 decl-specifier-seq declarator = assignment-expression
21314 decl-specifier-seq ... [opt] abstract-declarator [opt]
21315 decl-specifier-seq abstract-declarator [opt] = assignment-expression
21317 If TEMPLATE_PARM_P is TRUE, then this parameter-declaration
21318 declares a template parameter. (In that case, a non-nested `>'
21319 token encountered during the parsing of the assignment-expression
21320 is not interpreted as a greater-than operator.)
21322 Returns a representation of the parameter, or NULL if an error
21323 occurs. If PARENTHESIZED_P is non-NULL, *PARENTHESIZED_P is set to
21324 true iff the declarator is of the form "(p)". */
21326 static cp_parameter_declarator *
21327 cp_parser_parameter_declaration (cp_parser *parser,
21328 bool template_parm_p,
21329 bool *parenthesized_p)
21331 int declares_class_or_enum;
21332 cp_decl_specifier_seq decl_specifiers;
21333 cp_declarator *declarator;
21334 tree default_argument;
21335 cp_token *token = NULL, *declarator_token_start = NULL;
21336 const char *saved_message;
21337 bool template_parameter_pack_p = false;
21339 /* In a template parameter, `>' is not an operator.
21341 [temp.param]
21343 When parsing a default template-argument for a non-type
21344 template-parameter, the first non-nested `>' is taken as the end
21345 of the template parameter-list rather than a greater-than
21346 operator. */
21348 /* Type definitions may not appear in parameter types. */
21349 saved_message = parser->type_definition_forbidden_message;
21350 parser->type_definition_forbidden_message
21351 = G_("types may not be defined in parameter types");
21353 /* Parse the declaration-specifiers. */
21354 cp_parser_decl_specifier_seq (parser,
21355 CP_PARSER_FLAGS_NONE,
21356 &decl_specifiers,
21357 &declares_class_or_enum);
21359 /* Complain about missing 'typename' or other invalid type names. */
21360 if (!decl_specifiers.any_type_specifiers_p
21361 && cp_parser_parse_and_diagnose_invalid_type_name (parser))
21362 decl_specifiers.type = error_mark_node;
21364 /* If an error occurred, there's no reason to attempt to parse the
21365 rest of the declaration. */
21366 if (cp_parser_error_occurred (parser))
21368 parser->type_definition_forbidden_message = saved_message;
21369 return NULL;
21372 /* Peek at the next token. */
21373 token = cp_lexer_peek_token (parser->lexer);
21375 /* If the next token is a `)', `,', `=', `>', or `...', then there
21376 is no declarator. However, when variadic templates are enabled,
21377 there may be a declarator following `...'. */
21378 if (token->type == CPP_CLOSE_PAREN
21379 || token->type == CPP_COMMA
21380 || token->type == CPP_EQ
21381 || token->type == CPP_GREATER)
21383 declarator = NULL;
21384 if (parenthesized_p)
21385 *parenthesized_p = false;
21387 /* Otherwise, there should be a declarator. */
21388 else
21390 bool saved_default_arg_ok_p = parser->default_arg_ok_p;
21391 parser->default_arg_ok_p = false;
21393 /* After seeing a decl-specifier-seq, if the next token is not a
21394 "(", there is no possibility that the code is a valid
21395 expression. Therefore, if parsing tentatively, we commit at
21396 this point. */
21397 if (!parser->in_template_argument_list_p
21398 /* In an expression context, having seen:
21400 (int((char ...
21402 we cannot be sure whether we are looking at a
21403 function-type (taking a "char" as a parameter) or a cast
21404 of some object of type "char" to "int". */
21405 && !parser->in_type_id_in_expr_p
21406 && cp_parser_uncommitted_to_tentative_parse_p (parser)
21407 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE)
21408 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_PAREN))
21409 cp_parser_commit_to_tentative_parse (parser);
21410 /* Parse the declarator. */
21411 declarator_token_start = token;
21412 declarator = cp_parser_declarator (parser,
21413 CP_PARSER_DECLARATOR_EITHER,
21414 /*ctor_dtor_or_conv_p=*/NULL,
21415 parenthesized_p,
21416 /*member_p=*/false,
21417 /*friend_p=*/false);
21418 parser->default_arg_ok_p = saved_default_arg_ok_p;
21419 /* After the declarator, allow more attributes. */
21420 decl_specifiers.attributes
21421 = chainon (decl_specifiers.attributes,
21422 cp_parser_attributes_opt (parser));
21424 /* If the declarator is a template parameter pack, remember that and
21425 clear the flag in the declarator itself so we don't get errors
21426 from grokdeclarator. */
21427 if (template_parm_p && declarator && declarator->parameter_pack_p)
21429 declarator->parameter_pack_p = false;
21430 template_parameter_pack_p = true;
21434 /* If the next token is an ellipsis, and we have not seen a declarator
21435 name, and if either the type of the declarator contains parameter
21436 packs but it is not a TYPE_PACK_EXPANSION or is null (this happens
21437 for, eg, abbreviated integral type names), then we actually have a
21438 parameter pack expansion expression. Otherwise, leave the ellipsis
21439 for a C-style variadic function. */
21440 token = cp_lexer_peek_token (parser->lexer);
21441 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
21443 tree type = decl_specifiers.type;
21445 if (type && DECL_P (type))
21446 type = TREE_TYPE (type);
21448 if (((type
21449 && TREE_CODE (type) != TYPE_PACK_EXPANSION
21450 && (template_parm_p || uses_parameter_packs (type)))
21451 || (!type && template_parm_p))
21452 && declarator_can_be_parameter_pack (declarator))
21454 /* Consume the `...'. */
21455 cp_lexer_consume_token (parser->lexer);
21456 maybe_warn_variadic_templates ();
21458 /* Build a pack expansion type */
21459 if (template_parm_p)
21460 template_parameter_pack_p = true;
21461 else if (declarator)
21462 declarator->parameter_pack_p = true;
21463 else
21464 decl_specifiers.type = make_pack_expansion (type);
21468 /* The restriction on defining new types applies only to the type
21469 of the parameter, not to the default argument. */
21470 parser->type_definition_forbidden_message = saved_message;
21472 /* If the next token is `=', then process a default argument. */
21473 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
21475 tree type = decl_specifiers.type;
21476 token = cp_lexer_peek_token (parser->lexer);
21477 /* If we are defining a class, then the tokens that make up the
21478 default argument must be saved and processed later. */
21479 if (!template_parm_p && at_class_scope_p ()
21480 && TYPE_BEING_DEFINED (current_class_type)
21481 && !LAMBDA_TYPE_P (current_class_type))
21482 default_argument = cp_parser_cache_defarg (parser, /*nsdmi=*/false);
21484 // A constrained-type-specifier may declare a type template-parameter.
21485 else if (declares_constrained_type_template_parameter (type))
21486 default_argument
21487 = cp_parser_default_type_template_argument (parser);
21489 // A constrained-type-specifier may declare a template-template-parameter.
21490 else if (declares_constrained_template_template_parameter (type))
21491 default_argument
21492 = cp_parser_default_template_template_argument (parser);
21494 /* Outside of a class definition, we can just parse the
21495 assignment-expression. */
21496 else
21497 default_argument
21498 = cp_parser_default_argument (parser, template_parm_p);
21500 if (!parser->default_arg_ok_p)
21502 permerror (token->location,
21503 "default arguments are only "
21504 "permitted for function parameters");
21506 else if ((declarator && declarator->parameter_pack_p)
21507 || template_parameter_pack_p
21508 || (decl_specifiers.type
21509 && PACK_EXPANSION_P (decl_specifiers.type)))
21511 /* Find the name of the parameter pack. */
21512 cp_declarator *id_declarator = declarator;
21513 while (id_declarator && id_declarator->kind != cdk_id)
21514 id_declarator = id_declarator->declarator;
21516 if (id_declarator && id_declarator->kind == cdk_id)
21517 error_at (declarator_token_start->location,
21518 template_parm_p
21519 ? G_("template parameter pack %qD "
21520 "cannot have a default argument")
21521 : G_("parameter pack %qD cannot have "
21522 "a default argument"),
21523 id_declarator->u.id.unqualified_name);
21524 else
21525 error_at (declarator_token_start->location,
21526 template_parm_p
21527 ? G_("template parameter pack cannot have "
21528 "a default argument")
21529 : G_("parameter pack cannot have a "
21530 "default argument"));
21532 default_argument = NULL_TREE;
21535 else
21536 default_argument = NULL_TREE;
21538 return make_parameter_declarator (&decl_specifiers,
21539 declarator,
21540 default_argument,
21541 template_parameter_pack_p);
21544 /* Parse a default argument and return it.
21546 TEMPLATE_PARM_P is true if this is a default argument for a
21547 non-type template parameter. */
21548 static tree
21549 cp_parser_default_argument (cp_parser *parser, bool template_parm_p)
21551 tree default_argument = NULL_TREE;
21552 bool saved_greater_than_is_operator_p;
21553 bool saved_local_variables_forbidden_p;
21554 bool non_constant_p, is_direct_init;
21556 /* Make sure that PARSER->GREATER_THAN_IS_OPERATOR_P is
21557 set correctly. */
21558 saved_greater_than_is_operator_p = parser->greater_than_is_operator_p;
21559 parser->greater_than_is_operator_p = !template_parm_p;
21560 /* Local variable names (and the `this' keyword) may not
21561 appear in a default argument. */
21562 saved_local_variables_forbidden_p = parser->local_variables_forbidden_p;
21563 parser->local_variables_forbidden_p = true;
21564 /* Parse the assignment-expression. */
21565 if (template_parm_p)
21566 push_deferring_access_checks (dk_no_deferred);
21567 tree saved_class_ptr = NULL_TREE;
21568 tree saved_class_ref = NULL_TREE;
21569 /* The "this" pointer is not valid in a default argument. */
21570 if (cfun)
21572 saved_class_ptr = current_class_ptr;
21573 cp_function_chain->x_current_class_ptr = NULL_TREE;
21574 saved_class_ref = current_class_ref;
21575 cp_function_chain->x_current_class_ref = NULL_TREE;
21577 default_argument
21578 = cp_parser_initializer (parser, &is_direct_init, &non_constant_p);
21579 /* Restore the "this" pointer. */
21580 if (cfun)
21582 cp_function_chain->x_current_class_ptr = saved_class_ptr;
21583 cp_function_chain->x_current_class_ref = saved_class_ref;
21585 if (BRACE_ENCLOSED_INITIALIZER_P (default_argument))
21586 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
21587 if (template_parm_p)
21588 pop_deferring_access_checks ();
21589 parser->greater_than_is_operator_p = saved_greater_than_is_operator_p;
21590 parser->local_variables_forbidden_p = saved_local_variables_forbidden_p;
21592 return default_argument;
21595 /* Parse a function-body.
21597 function-body:
21598 compound_statement */
21600 static void
21601 cp_parser_function_body (cp_parser *parser, bool in_function_try_block)
21603 cp_parser_compound_statement (parser, NULL, (in_function_try_block
21604 ? BCS_TRY_BLOCK : BCS_NORMAL),
21605 true);
21608 /* Parse a ctor-initializer-opt followed by a function-body. Return
21609 true if a ctor-initializer was present. When IN_FUNCTION_TRY_BLOCK
21610 is true we are parsing a function-try-block. */
21612 static bool
21613 cp_parser_ctor_initializer_opt_and_function_body (cp_parser *parser,
21614 bool in_function_try_block)
21616 tree body, list;
21617 bool ctor_initializer_p;
21618 const bool check_body_p =
21619 DECL_CONSTRUCTOR_P (current_function_decl)
21620 && DECL_DECLARED_CONSTEXPR_P (current_function_decl);
21621 tree last = NULL;
21623 /* Begin the function body. */
21624 body = begin_function_body ();
21625 /* Parse the optional ctor-initializer. */
21626 ctor_initializer_p = cp_parser_ctor_initializer_opt (parser);
21628 /* If we're parsing a constexpr constructor definition, we need
21629 to check that the constructor body is indeed empty. However,
21630 before we get to cp_parser_function_body lot of junk has been
21631 generated, so we can't just check that we have an empty block.
21632 Rather we take a snapshot of the outermost block, and check whether
21633 cp_parser_function_body changed its state. */
21634 if (check_body_p)
21636 list = cur_stmt_list;
21637 if (STATEMENT_LIST_TAIL (list))
21638 last = STATEMENT_LIST_TAIL (list)->stmt;
21640 /* Parse the function-body. */
21641 cp_parser_function_body (parser, in_function_try_block);
21642 if (check_body_p)
21643 check_constexpr_ctor_body (last, list, /*complain=*/true);
21644 /* Finish the function body. */
21645 finish_function_body (body);
21647 return ctor_initializer_p;
21650 /* Parse an initializer.
21652 initializer:
21653 = initializer-clause
21654 ( expression-list )
21656 Returns an expression representing the initializer. If no
21657 initializer is present, NULL_TREE is returned.
21659 *IS_DIRECT_INIT is set to FALSE if the `= initializer-clause'
21660 production is used, and TRUE otherwise. *IS_DIRECT_INIT is
21661 set to TRUE if there is no initializer present. If there is an
21662 initializer, and it is not a constant-expression, *NON_CONSTANT_P
21663 is set to true; otherwise it is set to false. */
21665 static tree
21666 cp_parser_initializer (cp_parser* parser, bool* is_direct_init,
21667 bool* non_constant_p)
21669 cp_token *token;
21670 tree init;
21672 /* Peek at the next token. */
21673 token = cp_lexer_peek_token (parser->lexer);
21675 /* Let our caller know whether or not this initializer was
21676 parenthesized. */
21677 *is_direct_init = (token->type != CPP_EQ);
21678 /* Assume that the initializer is constant. */
21679 *non_constant_p = false;
21681 if (token->type == CPP_EQ)
21683 /* Consume the `='. */
21684 cp_lexer_consume_token (parser->lexer);
21685 /* Parse the initializer-clause. */
21686 init = cp_parser_initializer_clause (parser, non_constant_p);
21688 else if (token->type == CPP_OPEN_PAREN)
21690 vec<tree, va_gc> *vec;
21691 vec = cp_parser_parenthesized_expression_list (parser, non_attr,
21692 /*cast_p=*/false,
21693 /*allow_expansion_p=*/true,
21694 non_constant_p);
21695 if (vec == NULL)
21696 return error_mark_node;
21697 init = build_tree_list_vec (vec);
21698 release_tree_vector (vec);
21700 else if (token->type == CPP_OPEN_BRACE)
21702 cp_lexer_set_source_position (parser->lexer);
21703 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
21704 init = cp_parser_braced_list (parser, non_constant_p);
21705 CONSTRUCTOR_IS_DIRECT_INIT (init) = 1;
21707 else
21709 /* Anything else is an error. */
21710 cp_parser_error (parser, "expected initializer");
21711 init = error_mark_node;
21714 if (check_for_bare_parameter_packs (init))
21715 init = error_mark_node;
21717 return init;
21720 /* Parse an initializer-clause.
21722 initializer-clause:
21723 assignment-expression
21724 braced-init-list
21726 Returns an expression representing the initializer.
21728 If the `assignment-expression' production is used the value
21729 returned is simply a representation for the expression.
21731 Otherwise, calls cp_parser_braced_list. */
21733 static cp_expr
21734 cp_parser_initializer_clause (cp_parser* parser, bool* non_constant_p)
21736 cp_expr initializer;
21738 /* Assume the expression is constant. */
21739 *non_constant_p = false;
21741 /* If it is not a `{', then we are looking at an
21742 assignment-expression. */
21743 if (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE))
21745 initializer
21746 = cp_parser_constant_expression (parser,
21747 /*allow_non_constant_p=*/true,
21748 non_constant_p);
21750 else
21751 initializer = cp_parser_braced_list (parser, non_constant_p);
21753 return initializer;
21756 /* Parse a brace-enclosed initializer list.
21758 braced-init-list:
21759 { initializer-list , [opt] }
21762 Returns a CONSTRUCTOR. The CONSTRUCTOR_ELTS will be
21763 the elements of the initializer-list (or NULL, if the last
21764 production is used). The TREE_TYPE for the CONSTRUCTOR will be
21765 NULL_TREE. There is no way to detect whether or not the optional
21766 trailing `,' was provided. NON_CONSTANT_P is as for
21767 cp_parser_initializer. */
21769 static cp_expr
21770 cp_parser_braced_list (cp_parser* parser, bool* non_constant_p)
21772 tree initializer;
21773 location_t start_loc = cp_lexer_peek_token (parser->lexer)->location;
21775 /* Consume the `{' token. */
21776 cp_lexer_consume_token (parser->lexer);
21777 /* Create a CONSTRUCTOR to represent the braced-initializer. */
21778 initializer = make_node (CONSTRUCTOR);
21779 /* If it's not a `}', then there is a non-trivial initializer. */
21780 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_BRACE))
21782 /* Parse the initializer list. */
21783 CONSTRUCTOR_ELTS (initializer)
21784 = cp_parser_initializer_list (parser, non_constant_p);
21785 /* A trailing `,' token is allowed. */
21786 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
21787 cp_lexer_consume_token (parser->lexer);
21789 else
21790 *non_constant_p = false;
21791 /* Now, there should be a trailing `}'. */
21792 location_t finish_loc = cp_lexer_peek_token (parser->lexer)->location;
21793 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
21794 TREE_TYPE (initializer) = init_list_type_node;
21796 cp_expr result (initializer);
21797 /* Build a location of the form:
21798 { ... }
21799 ^~~~~~~
21800 with caret==start at the open brace, finish at the close brace. */
21801 location_t combined_loc = make_location (start_loc, start_loc, finish_loc);
21802 result.set_location (combined_loc);
21803 return result;
21806 /* Consume tokens up to, and including, the next non-nested closing `]'.
21807 Returns true iff we found a closing `]'. */
21809 static bool
21810 cp_parser_skip_to_closing_square_bracket (cp_parser *parser)
21812 unsigned square_depth = 0;
21814 while (true)
21816 cp_token * token = cp_lexer_peek_token (parser->lexer);
21818 switch (token->type)
21820 case CPP_EOF:
21821 case CPP_PRAGMA_EOL:
21822 /* If we've run out of tokens, then there is no closing `]'. */
21823 return false;
21825 case CPP_OPEN_SQUARE:
21826 ++square_depth;
21827 break;
21829 case CPP_CLOSE_SQUARE:
21830 if (!square_depth--)
21832 cp_lexer_consume_token (parser->lexer);
21833 return true;
21835 break;
21837 default:
21838 break;
21841 /* Consume the token. */
21842 cp_lexer_consume_token (parser->lexer);
21846 /* Return true if we are looking at an array-designator, false otherwise. */
21848 static bool
21849 cp_parser_array_designator_p (cp_parser *parser)
21851 /* Consume the `['. */
21852 cp_lexer_consume_token (parser->lexer);
21854 cp_lexer_save_tokens (parser->lexer);
21856 /* Skip tokens until the next token is a closing square bracket.
21857 If we find the closing `]', and the next token is a `=', then
21858 we are looking at an array designator. */
21859 bool array_designator_p
21860 = (cp_parser_skip_to_closing_square_bracket (parser)
21861 && cp_lexer_next_token_is (parser->lexer, CPP_EQ));
21863 /* Roll back the tokens we skipped. */
21864 cp_lexer_rollback_tokens (parser->lexer);
21866 return array_designator_p;
21869 /* Parse an initializer-list.
21871 initializer-list:
21872 initializer-clause ... [opt]
21873 initializer-list , initializer-clause ... [opt]
21875 GNU Extension:
21877 initializer-list:
21878 designation initializer-clause ...[opt]
21879 initializer-list , designation initializer-clause ...[opt]
21881 designation:
21882 . identifier =
21883 identifier :
21884 [ constant-expression ] =
21886 Returns a vec of constructor_elt. The VALUE of each elt is an expression
21887 for the initializer. If the INDEX of the elt is non-NULL, it is the
21888 IDENTIFIER_NODE naming the field to initialize. NON_CONSTANT_P is
21889 as for cp_parser_initializer. */
21891 static vec<constructor_elt, va_gc> *
21892 cp_parser_initializer_list (cp_parser* parser, bool* non_constant_p)
21894 vec<constructor_elt, va_gc> *v = NULL;
21896 /* Assume all of the expressions are constant. */
21897 *non_constant_p = false;
21899 /* Parse the rest of the list. */
21900 while (true)
21902 cp_token *token;
21903 tree designator;
21904 tree initializer;
21905 bool clause_non_constant_p;
21907 /* If the next token is an identifier and the following one is a
21908 colon, we are looking at the GNU designated-initializer
21909 syntax. */
21910 if (cp_parser_allow_gnu_extensions_p (parser)
21911 && cp_lexer_next_token_is (parser->lexer, CPP_NAME)
21912 && cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_COLON)
21914 /* Warn the user that they are using an extension. */
21915 pedwarn (input_location, OPT_Wpedantic,
21916 "ISO C++ does not allow designated initializers");
21917 /* Consume the identifier. */
21918 designator = cp_lexer_consume_token (parser->lexer)->u.value;
21919 /* Consume the `:'. */
21920 cp_lexer_consume_token (parser->lexer);
21922 /* Also handle the C99 syntax, '. id ='. */
21923 else if (cp_parser_allow_gnu_extensions_p (parser)
21924 && cp_lexer_next_token_is (parser->lexer, CPP_DOT)
21925 && cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_NAME
21926 && cp_lexer_peek_nth_token (parser->lexer, 3)->type == CPP_EQ)
21928 /* Warn the user that they are using an extension. */
21929 pedwarn (input_location, OPT_Wpedantic,
21930 "ISO C++ does not allow C99 designated initializers");
21931 /* Consume the `.'. */
21932 cp_lexer_consume_token (parser->lexer);
21933 /* Consume the identifier. */
21934 designator = cp_lexer_consume_token (parser->lexer)->u.value;
21935 /* Consume the `='. */
21936 cp_lexer_consume_token (parser->lexer);
21938 /* Also handle C99 array designators, '[ const ] ='. */
21939 else if (cp_parser_allow_gnu_extensions_p (parser)
21940 && !c_dialect_objc ()
21941 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
21943 /* In C++11, [ could start a lambda-introducer. */
21944 bool non_const = false;
21946 cp_parser_parse_tentatively (parser);
21948 if (!cp_parser_array_designator_p (parser))
21950 cp_parser_simulate_error (parser);
21951 designator = NULL_TREE;
21953 else
21955 designator = cp_parser_constant_expression (parser, true,
21956 &non_const);
21957 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
21958 cp_parser_require (parser, CPP_EQ, RT_EQ);
21961 if (!cp_parser_parse_definitely (parser))
21962 designator = NULL_TREE;
21963 else if (non_const)
21964 require_potential_rvalue_constant_expression (designator);
21966 else
21967 designator = NULL_TREE;
21969 /* Parse the initializer. */
21970 initializer = cp_parser_initializer_clause (parser,
21971 &clause_non_constant_p);
21972 /* If any clause is non-constant, so is the entire initializer. */
21973 if (clause_non_constant_p)
21974 *non_constant_p = true;
21976 /* If we have an ellipsis, this is an initializer pack
21977 expansion. */
21978 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
21980 /* Consume the `...'. */
21981 cp_lexer_consume_token (parser->lexer);
21983 /* Turn the initializer into an initializer expansion. */
21984 initializer = make_pack_expansion (initializer);
21987 /* Add it to the vector. */
21988 CONSTRUCTOR_APPEND_ELT (v, designator, initializer);
21990 /* If the next token is not a comma, we have reached the end of
21991 the list. */
21992 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
21993 break;
21995 /* Peek at the next token. */
21996 token = cp_lexer_peek_nth_token (parser->lexer, 2);
21997 /* If the next token is a `}', then we're still done. An
21998 initializer-clause can have a trailing `,' after the
21999 initializer-list and before the closing `}'. */
22000 if (token->type == CPP_CLOSE_BRACE)
22001 break;
22003 /* Consume the `,' token. */
22004 cp_lexer_consume_token (parser->lexer);
22007 return v;
22010 /* Classes [gram.class] */
22012 /* Parse a class-name.
22014 class-name:
22015 identifier
22016 template-id
22018 TYPENAME_KEYWORD_P is true iff the `typename' keyword has been used
22019 to indicate that names looked up in dependent types should be
22020 assumed to be types. TEMPLATE_KEYWORD_P is true iff the `template'
22021 keyword has been used to indicate that the name that appears next
22022 is a template. TAG_TYPE indicates the explicit tag given before
22023 the type name, if any. If CHECK_DEPENDENCY_P is FALSE, names are
22024 looked up in dependent scopes. If CLASS_HEAD_P is TRUE, this class
22025 is the class being defined in a class-head. If ENUM_OK is TRUE,
22026 enum-names are also accepted.
22028 Returns the TYPE_DECL representing the class. */
22030 static tree
22031 cp_parser_class_name (cp_parser *parser,
22032 bool typename_keyword_p,
22033 bool template_keyword_p,
22034 enum tag_types tag_type,
22035 bool check_dependency_p,
22036 bool class_head_p,
22037 bool is_declaration,
22038 bool enum_ok)
22040 tree decl;
22041 tree scope;
22042 bool typename_p;
22043 cp_token *token;
22044 tree identifier = NULL_TREE;
22046 /* All class-names start with an identifier. */
22047 token = cp_lexer_peek_token (parser->lexer);
22048 if (token->type != CPP_NAME && token->type != CPP_TEMPLATE_ID)
22050 cp_parser_error (parser, "expected class-name");
22051 return error_mark_node;
22054 /* PARSER->SCOPE can be cleared when parsing the template-arguments
22055 to a template-id, so we save it here. */
22056 scope = parser->scope;
22057 if (scope == error_mark_node)
22058 return error_mark_node;
22060 /* Any name names a type if we're following the `typename' keyword
22061 in a qualified name where the enclosing scope is type-dependent. */
22062 typename_p = (typename_keyword_p && scope && TYPE_P (scope)
22063 && dependent_type_p (scope));
22064 /* Handle the common case (an identifier, but not a template-id)
22065 efficiently. */
22066 if (token->type == CPP_NAME
22067 && !cp_parser_nth_token_starts_template_argument_list_p (parser, 2))
22069 cp_token *identifier_token;
22070 bool ambiguous_p;
22072 /* Look for the identifier. */
22073 identifier_token = cp_lexer_peek_token (parser->lexer);
22074 ambiguous_p = identifier_token->error_reported;
22075 identifier = cp_parser_identifier (parser);
22076 /* If the next token isn't an identifier, we are certainly not
22077 looking at a class-name. */
22078 if (identifier == error_mark_node)
22079 decl = error_mark_node;
22080 /* If we know this is a type-name, there's no need to look it
22081 up. */
22082 else if (typename_p)
22083 decl = identifier;
22084 else
22086 tree ambiguous_decls;
22087 /* If we already know that this lookup is ambiguous, then
22088 we've already issued an error message; there's no reason
22089 to check again. */
22090 if (ambiguous_p)
22092 cp_parser_simulate_error (parser);
22093 return error_mark_node;
22095 /* If the next token is a `::', then the name must be a type
22096 name.
22098 [basic.lookup.qual]
22100 During the lookup for a name preceding the :: scope
22101 resolution operator, object, function, and enumerator
22102 names are ignored. */
22103 if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
22104 tag_type = scope_type;
22105 /* Look up the name. */
22106 decl = cp_parser_lookup_name (parser, identifier,
22107 tag_type,
22108 /*is_template=*/false,
22109 /*is_namespace=*/false,
22110 check_dependency_p,
22111 &ambiguous_decls,
22112 identifier_token->location);
22113 if (ambiguous_decls)
22115 if (cp_parser_parsing_tentatively (parser))
22116 cp_parser_simulate_error (parser);
22117 return error_mark_node;
22121 else
22123 /* Try a template-id. */
22124 decl = cp_parser_template_id (parser, template_keyword_p,
22125 check_dependency_p,
22126 tag_type,
22127 is_declaration);
22128 if (decl == error_mark_node)
22129 return error_mark_node;
22132 decl = cp_parser_maybe_treat_template_as_class (decl, class_head_p);
22134 /* If this is a typename, create a TYPENAME_TYPE. */
22135 if (typename_p && decl != error_mark_node)
22137 decl = make_typename_type (scope, decl, typename_type,
22138 /*complain=*/tf_error);
22139 if (decl != error_mark_node)
22140 decl = TYPE_NAME (decl);
22143 decl = strip_using_decl (decl);
22145 /* Check to see that it is really the name of a class. */
22146 if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
22147 && identifier_p (TREE_OPERAND (decl, 0))
22148 && cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
22149 /* Situations like this:
22151 template <typename T> struct A {
22152 typename T::template X<int>::I i;
22155 are problematic. Is `T::template X<int>' a class-name? The
22156 standard does not seem to be definitive, but there is no other
22157 valid interpretation of the following `::'. Therefore, those
22158 names are considered class-names. */
22160 decl = make_typename_type (scope, decl, tag_type, tf_error);
22161 if (decl != error_mark_node)
22162 decl = TYPE_NAME (decl);
22164 else if (TREE_CODE (decl) != TYPE_DECL
22165 || TREE_TYPE (decl) == error_mark_node
22166 || !(MAYBE_CLASS_TYPE_P (TREE_TYPE (decl))
22167 || (enum_ok && TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE))
22168 /* In Objective-C 2.0, a classname followed by '.' starts a
22169 dot-syntax expression, and it's not a type-name. */
22170 || (c_dialect_objc ()
22171 && cp_lexer_peek_token (parser->lexer)->type == CPP_DOT
22172 && objc_is_class_name (decl)))
22173 decl = error_mark_node;
22175 if (decl == error_mark_node)
22176 cp_parser_error (parser, "expected class-name");
22177 else if (identifier && !parser->scope)
22178 maybe_note_name_used_in_class (identifier, decl);
22180 return decl;
22183 /* Parse a class-specifier.
22185 class-specifier:
22186 class-head { member-specification [opt] }
22188 Returns the TREE_TYPE representing the class. */
22190 static tree
22191 cp_parser_class_specifier_1 (cp_parser* parser)
22193 tree type;
22194 tree attributes = NULL_TREE;
22195 bool nested_name_specifier_p;
22196 unsigned saved_num_template_parameter_lists;
22197 bool saved_in_function_body;
22198 unsigned char in_statement;
22199 bool in_switch_statement_p;
22200 bool saved_in_unbraced_linkage_specification_p;
22201 tree old_scope = NULL_TREE;
22202 tree scope = NULL_TREE;
22203 cp_token *closing_brace;
22205 push_deferring_access_checks (dk_no_deferred);
22207 /* Parse the class-head. */
22208 type = cp_parser_class_head (parser,
22209 &nested_name_specifier_p);
22210 /* If the class-head was a semantic disaster, skip the entire body
22211 of the class. */
22212 if (!type)
22214 cp_parser_skip_to_end_of_block_or_statement (parser);
22215 pop_deferring_access_checks ();
22216 return error_mark_node;
22219 /* Look for the `{'. */
22220 if (!cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
22222 pop_deferring_access_checks ();
22223 return error_mark_node;
22226 cp_ensure_no_omp_declare_simd (parser);
22227 cp_ensure_no_oacc_routine (parser);
22229 /* Issue an error message if type-definitions are forbidden here. */
22230 cp_parser_check_type_definition (parser);
22231 /* Remember that we are defining one more class. */
22232 ++parser->num_classes_being_defined;
22233 /* Inside the class, surrounding template-parameter-lists do not
22234 apply. */
22235 saved_num_template_parameter_lists
22236 = parser->num_template_parameter_lists;
22237 parser->num_template_parameter_lists = 0;
22238 /* We are not in a function body. */
22239 saved_in_function_body = parser->in_function_body;
22240 parser->in_function_body = false;
22241 /* Or in a loop. */
22242 in_statement = parser->in_statement;
22243 parser->in_statement = 0;
22244 /* Or in a switch. */
22245 in_switch_statement_p = parser->in_switch_statement_p;
22246 parser->in_switch_statement_p = false;
22247 /* We are not immediately inside an extern "lang" block. */
22248 saved_in_unbraced_linkage_specification_p
22249 = parser->in_unbraced_linkage_specification_p;
22250 parser->in_unbraced_linkage_specification_p = false;
22252 // Associate constraints with the type.
22253 if (flag_concepts)
22254 type = associate_classtype_constraints (type);
22256 /* Start the class. */
22257 if (nested_name_specifier_p)
22259 scope = CP_DECL_CONTEXT (TYPE_MAIN_DECL (type));
22260 old_scope = push_inner_scope (scope);
22262 type = begin_class_definition (type);
22264 if (type == error_mark_node)
22265 /* If the type is erroneous, skip the entire body of the class. */
22266 cp_parser_skip_to_closing_brace (parser);
22267 else
22268 /* Parse the member-specification. */
22269 cp_parser_member_specification_opt (parser);
22271 /* Look for the trailing `}'. */
22272 closing_brace = cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
22273 /* Look for trailing attributes to apply to this class. */
22274 if (cp_parser_allow_gnu_extensions_p (parser))
22275 attributes = cp_parser_gnu_attributes_opt (parser);
22276 if (type != error_mark_node)
22277 type = finish_struct (type, attributes);
22278 if (nested_name_specifier_p)
22279 pop_inner_scope (old_scope, scope);
22281 /* We've finished a type definition. Check for the common syntax
22282 error of forgetting a semicolon after the definition. We need to
22283 be careful, as we can't just check for not-a-semicolon and be done
22284 with it; the user might have typed:
22286 class X { } c = ...;
22287 class X { } *p = ...;
22289 and so forth. Instead, enumerate all the possible tokens that
22290 might follow this production; if we don't see one of them, then
22291 complain and silently insert the semicolon. */
22293 cp_token *token = cp_lexer_peek_token (parser->lexer);
22294 bool want_semicolon = true;
22296 if (cp_next_tokens_can_be_std_attribute_p (parser))
22297 /* Don't try to parse c++11 attributes here. As per the
22298 grammar, that should be a task for
22299 cp_parser_decl_specifier_seq. */
22300 want_semicolon = false;
22302 switch (token->type)
22304 case CPP_NAME:
22305 case CPP_SEMICOLON:
22306 case CPP_MULT:
22307 case CPP_AND:
22308 case CPP_OPEN_PAREN:
22309 case CPP_CLOSE_PAREN:
22310 case CPP_COMMA:
22311 want_semicolon = false;
22312 break;
22314 /* While it's legal for type qualifiers and storage class
22315 specifiers to follow type definitions in the grammar, only
22316 compiler testsuites contain code like that. Assume that if
22317 we see such code, then what we're really seeing is a case
22318 like:
22320 class X { }
22321 const <type> var = ...;
22325 class Y { }
22326 static <type> func (...) ...
22328 i.e. the qualifier or specifier applies to the next
22329 declaration. To do so, however, we need to look ahead one
22330 more token to see if *that* token is a type specifier.
22332 This code could be improved to handle:
22334 class Z { }
22335 static const <type> var = ...; */
22336 case CPP_KEYWORD:
22337 if (keyword_is_decl_specifier (token->keyword))
22339 cp_token *lookahead = cp_lexer_peek_nth_token (parser->lexer, 2);
22341 /* Handling user-defined types here would be nice, but very
22342 tricky. */
22343 want_semicolon
22344 = (lookahead->type == CPP_KEYWORD
22345 && keyword_begins_type_specifier (lookahead->keyword));
22347 break;
22348 default:
22349 break;
22352 /* If we don't have a type, then something is very wrong and we
22353 shouldn't try to do anything clever. Likewise for not seeing the
22354 closing brace. */
22355 if (closing_brace && TYPE_P (type) && want_semicolon)
22357 /* Locate the closing brace. */
22358 cp_token_position prev
22359 = cp_lexer_previous_token_position (parser->lexer);
22360 cp_token *prev_token = cp_lexer_token_at (parser->lexer, prev);
22361 location_t loc = prev_token->location;
22363 /* We want to suggest insertion of a ';' immediately *after* the
22364 closing brace, so, if we can, offset the location by 1 column. */
22365 location_t next_loc = loc;
22366 if (!linemap_location_from_macro_expansion_p (line_table, loc))
22367 next_loc = linemap_position_for_loc_and_offset (line_table, loc, 1);
22369 rich_location richloc (line_table, next_loc);
22371 /* If we successfully offset the location, suggest the fix-it. */
22372 if (next_loc != loc)
22373 richloc.add_fixit_insert_before (next_loc, ";");
22375 if (CLASSTYPE_DECLARED_CLASS (type))
22376 error_at_rich_loc (&richloc,
22377 "expected %<;%> after class definition");
22378 else if (TREE_CODE (type) == RECORD_TYPE)
22379 error_at_rich_loc (&richloc,
22380 "expected %<;%> after struct definition");
22381 else if (TREE_CODE (type) == UNION_TYPE)
22382 error_at_rich_loc (&richloc,
22383 "expected %<;%> after union definition");
22384 else
22385 gcc_unreachable ();
22387 /* Unget one token and smash it to look as though we encountered
22388 a semicolon in the input stream. */
22389 cp_lexer_set_token_position (parser->lexer, prev);
22390 token = cp_lexer_peek_token (parser->lexer);
22391 token->type = CPP_SEMICOLON;
22392 token->keyword = RID_MAX;
22396 /* If this class is not itself within the scope of another class,
22397 then we need to parse the bodies of all of the queued function
22398 definitions. Note that the queued functions defined in a class
22399 are not always processed immediately following the
22400 class-specifier for that class. Consider:
22402 struct A {
22403 struct B { void f() { sizeof (A); } };
22406 If `f' were processed before the processing of `A' were
22407 completed, there would be no way to compute the size of `A'.
22408 Note that the nesting we are interested in here is lexical --
22409 not the semantic nesting given by TYPE_CONTEXT. In particular,
22410 for:
22412 struct A { struct B; };
22413 struct A::B { void f() { } };
22415 there is no need to delay the parsing of `A::B::f'. */
22416 if (--parser->num_classes_being_defined == 0)
22418 tree decl;
22419 tree class_type = NULL_TREE;
22420 tree pushed_scope = NULL_TREE;
22421 unsigned ix;
22422 cp_default_arg_entry *e;
22423 tree save_ccp, save_ccr;
22425 /* In a first pass, parse default arguments to the functions.
22426 Then, in a second pass, parse the bodies of the functions.
22427 This two-phased approach handles cases like:
22429 struct S {
22430 void f() { g(); }
22431 void g(int i = 3);
22435 FOR_EACH_VEC_SAFE_ELT (unparsed_funs_with_default_args, ix, e)
22437 decl = e->decl;
22438 /* If there are default arguments that have not yet been processed,
22439 take care of them now. */
22440 if (class_type != e->class_type)
22442 if (pushed_scope)
22443 pop_scope (pushed_scope);
22444 class_type = e->class_type;
22445 pushed_scope = push_scope (class_type);
22447 /* Make sure that any template parameters are in scope. */
22448 maybe_begin_member_template_processing (decl);
22449 /* Parse the default argument expressions. */
22450 cp_parser_late_parsing_default_args (parser, decl);
22451 /* Remove any template parameters from the symbol table. */
22452 maybe_end_member_template_processing ();
22454 vec_safe_truncate (unparsed_funs_with_default_args, 0);
22455 /* Now parse any NSDMIs. */
22456 save_ccp = current_class_ptr;
22457 save_ccr = current_class_ref;
22458 FOR_EACH_VEC_SAFE_ELT (unparsed_nsdmis, ix, decl)
22460 if (class_type != DECL_CONTEXT (decl))
22462 if (pushed_scope)
22463 pop_scope (pushed_scope);
22464 class_type = DECL_CONTEXT (decl);
22465 pushed_scope = push_scope (class_type);
22467 inject_this_parameter (class_type, TYPE_UNQUALIFIED);
22468 cp_parser_late_parsing_nsdmi (parser, decl);
22470 vec_safe_truncate (unparsed_nsdmis, 0);
22471 current_class_ptr = save_ccp;
22472 current_class_ref = save_ccr;
22473 if (pushed_scope)
22474 pop_scope (pushed_scope);
22476 /* Now do some post-NSDMI bookkeeping. */
22477 FOR_EACH_VEC_SAFE_ELT (unparsed_classes, ix, class_type)
22478 after_nsdmi_defaulted_late_checks (class_type);
22479 vec_safe_truncate (unparsed_classes, 0);
22480 after_nsdmi_defaulted_late_checks (type);
22482 /* Now parse the body of the functions. */
22483 if (flag_openmp)
22485 /* OpenMP UDRs need to be parsed before all other functions. */
22486 FOR_EACH_VEC_SAFE_ELT (unparsed_funs_with_definitions, ix, decl)
22487 if (DECL_OMP_DECLARE_REDUCTION_P (decl))
22488 cp_parser_late_parsing_for_member (parser, decl);
22489 FOR_EACH_VEC_SAFE_ELT (unparsed_funs_with_definitions, ix, decl)
22490 if (!DECL_OMP_DECLARE_REDUCTION_P (decl))
22491 cp_parser_late_parsing_for_member (parser, decl);
22493 else
22494 FOR_EACH_VEC_SAFE_ELT (unparsed_funs_with_definitions, ix, decl)
22495 cp_parser_late_parsing_for_member (parser, decl);
22496 vec_safe_truncate (unparsed_funs_with_definitions, 0);
22498 else
22499 vec_safe_push (unparsed_classes, type);
22501 /* Put back any saved access checks. */
22502 pop_deferring_access_checks ();
22504 /* Restore saved state. */
22505 parser->in_switch_statement_p = in_switch_statement_p;
22506 parser->in_statement = in_statement;
22507 parser->in_function_body = saved_in_function_body;
22508 parser->num_template_parameter_lists
22509 = saved_num_template_parameter_lists;
22510 parser->in_unbraced_linkage_specification_p
22511 = saved_in_unbraced_linkage_specification_p;
22513 return type;
22516 static tree
22517 cp_parser_class_specifier (cp_parser* parser)
22519 tree ret;
22520 timevar_push (TV_PARSE_STRUCT);
22521 ret = cp_parser_class_specifier_1 (parser);
22522 timevar_pop (TV_PARSE_STRUCT);
22523 return ret;
22526 /* Parse a class-head.
22528 class-head:
22529 class-key identifier [opt] base-clause [opt]
22530 class-key nested-name-specifier identifier class-virt-specifier [opt] base-clause [opt]
22531 class-key nested-name-specifier [opt] template-id
22532 base-clause [opt]
22534 class-virt-specifier:
22535 final
22537 GNU Extensions:
22538 class-key attributes identifier [opt] base-clause [opt]
22539 class-key attributes nested-name-specifier identifier base-clause [opt]
22540 class-key attributes nested-name-specifier [opt] template-id
22541 base-clause [opt]
22543 Upon return BASES is initialized to the list of base classes (or
22544 NULL, if there are none) in the same form returned by
22545 cp_parser_base_clause.
22547 Returns the TYPE of the indicated class. Sets
22548 *NESTED_NAME_SPECIFIER_P to TRUE iff one of the productions
22549 involving a nested-name-specifier was used, and FALSE otherwise.
22551 Returns error_mark_node if this is not a class-head.
22553 Returns NULL_TREE if the class-head is syntactically valid, but
22554 semantically invalid in a way that means we should skip the entire
22555 body of the class. */
22557 static tree
22558 cp_parser_class_head (cp_parser* parser,
22559 bool* nested_name_specifier_p)
22561 tree nested_name_specifier;
22562 enum tag_types class_key;
22563 tree id = NULL_TREE;
22564 tree type = NULL_TREE;
22565 tree attributes;
22566 tree bases;
22567 cp_virt_specifiers virt_specifiers = VIRT_SPEC_UNSPECIFIED;
22568 bool template_id_p = false;
22569 bool qualified_p = false;
22570 bool invalid_nested_name_p = false;
22571 bool invalid_explicit_specialization_p = false;
22572 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
22573 tree pushed_scope = NULL_TREE;
22574 unsigned num_templates;
22575 cp_token *type_start_token = NULL, *nested_name_specifier_token_start = NULL;
22576 /* Assume no nested-name-specifier will be present. */
22577 *nested_name_specifier_p = false;
22578 /* Assume no template parameter lists will be used in defining the
22579 type. */
22580 num_templates = 0;
22581 parser->colon_corrects_to_scope_p = false;
22583 /* Look for the class-key. */
22584 class_key = cp_parser_class_key (parser);
22585 if (class_key == none_type)
22586 return error_mark_node;
22588 location_t class_head_start_location = input_location;
22590 /* Parse the attributes. */
22591 attributes = cp_parser_attributes_opt (parser);
22593 /* If the next token is `::', that is invalid -- but sometimes
22594 people do try to write:
22596 struct ::S {};
22598 Handle this gracefully by accepting the extra qualifier, and then
22599 issuing an error about it later if this really is a
22600 class-head. If it turns out just to be an elaborated type
22601 specifier, remain silent. */
22602 if (cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/false))
22603 qualified_p = true;
22605 push_deferring_access_checks (dk_no_check);
22607 /* Determine the name of the class. Begin by looking for an
22608 optional nested-name-specifier. */
22609 nested_name_specifier_token_start = cp_lexer_peek_token (parser->lexer);
22610 nested_name_specifier
22611 = cp_parser_nested_name_specifier_opt (parser,
22612 /*typename_keyword_p=*/false,
22613 /*check_dependency_p=*/false,
22614 /*type_p=*/true,
22615 /*is_declaration=*/false);
22616 /* If there was a nested-name-specifier, then there *must* be an
22617 identifier. */
22619 cp_token *bad_template_keyword = NULL;
22621 if (nested_name_specifier)
22623 type_start_token = cp_lexer_peek_token (parser->lexer);
22624 /* Although the grammar says `identifier', it really means
22625 `class-name' or `template-name'. You are only allowed to
22626 define a class that has already been declared with this
22627 syntax.
22629 The proposed resolution for Core Issue 180 says that wherever
22630 you see `class T::X' you should treat `X' as a type-name.
22632 It is OK to define an inaccessible class; for example:
22634 class A { class B; };
22635 class A::B {};
22637 We do not know if we will see a class-name, or a
22638 template-name. We look for a class-name first, in case the
22639 class-name is a template-id; if we looked for the
22640 template-name first we would stop after the template-name. */
22641 cp_parser_parse_tentatively (parser);
22642 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
22643 bad_template_keyword = cp_lexer_consume_token (parser->lexer);
22644 type = cp_parser_class_name (parser,
22645 /*typename_keyword_p=*/false,
22646 /*template_keyword_p=*/false,
22647 class_type,
22648 /*check_dependency_p=*/false,
22649 /*class_head_p=*/true,
22650 /*is_declaration=*/false);
22651 /* If that didn't work, ignore the nested-name-specifier. */
22652 if (!cp_parser_parse_definitely (parser))
22654 invalid_nested_name_p = true;
22655 type_start_token = cp_lexer_peek_token (parser->lexer);
22656 id = cp_parser_identifier (parser);
22657 if (id == error_mark_node)
22658 id = NULL_TREE;
22660 /* If we could not find a corresponding TYPE, treat this
22661 declaration like an unqualified declaration. */
22662 if (type == error_mark_node)
22663 nested_name_specifier = NULL_TREE;
22664 /* Otherwise, count the number of templates used in TYPE and its
22665 containing scopes. */
22666 else
22668 tree scope;
22670 for (scope = TREE_TYPE (type);
22671 scope && TREE_CODE (scope) != NAMESPACE_DECL;
22672 scope = get_containing_scope (scope))
22673 if (TYPE_P (scope)
22674 && CLASS_TYPE_P (scope)
22675 && CLASSTYPE_TEMPLATE_INFO (scope)
22676 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (scope))
22677 && (!CLASSTYPE_TEMPLATE_SPECIALIZATION (scope)
22678 || uses_template_parms (CLASSTYPE_TI_ARGS (scope))))
22679 ++num_templates;
22682 /* Otherwise, the identifier is optional. */
22683 else
22685 /* We don't know whether what comes next is a template-id,
22686 an identifier, or nothing at all. */
22687 cp_parser_parse_tentatively (parser);
22688 /* Check for a template-id. */
22689 type_start_token = cp_lexer_peek_token (parser->lexer);
22690 id = cp_parser_template_id (parser,
22691 /*template_keyword_p=*/false,
22692 /*check_dependency_p=*/true,
22693 class_key,
22694 /*is_declaration=*/true);
22695 /* If that didn't work, it could still be an identifier. */
22696 if (!cp_parser_parse_definitely (parser))
22698 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
22700 type_start_token = cp_lexer_peek_token (parser->lexer);
22701 id = cp_parser_identifier (parser);
22703 else
22704 id = NULL_TREE;
22706 else
22708 template_id_p = true;
22709 ++num_templates;
22713 pop_deferring_access_checks ();
22715 if (id)
22717 cp_parser_check_for_invalid_template_id (parser, id,
22718 class_key,
22719 type_start_token->location);
22721 virt_specifiers = cp_parser_virt_specifier_seq_opt (parser);
22723 /* If it's not a `:' or a `{' then we can't really be looking at a
22724 class-head, since a class-head only appears as part of a
22725 class-specifier. We have to detect this situation before calling
22726 xref_tag, since that has irreversible side-effects. */
22727 if (!cp_parser_next_token_starts_class_definition_p (parser))
22729 cp_parser_error (parser, "expected %<{%> or %<:%>");
22730 type = error_mark_node;
22731 goto out;
22734 /* At this point, we're going ahead with the class-specifier, even
22735 if some other problem occurs. */
22736 cp_parser_commit_to_tentative_parse (parser);
22737 if (virt_specifiers & VIRT_SPEC_OVERRIDE)
22739 cp_parser_error (parser,
22740 "cannot specify %<override%> for a class");
22741 type = error_mark_node;
22742 goto out;
22744 /* Issue the error about the overly-qualified name now. */
22745 if (qualified_p)
22747 cp_parser_error (parser,
22748 "global qualification of class name is invalid");
22749 type = error_mark_node;
22750 goto out;
22752 else if (invalid_nested_name_p)
22754 cp_parser_error (parser,
22755 "qualified name does not name a class");
22756 type = error_mark_node;
22757 goto out;
22759 else if (nested_name_specifier)
22761 tree scope;
22763 if (bad_template_keyword)
22764 /* [temp.names]: in a qualified-id formed by a class-head-name, the
22765 keyword template shall not appear at the top level. */
22766 pedwarn (bad_template_keyword->location, OPT_Wpedantic,
22767 "keyword %<template%> not allowed in class-head-name");
22769 /* Reject typedef-names in class heads. */
22770 if (!DECL_IMPLICIT_TYPEDEF_P (type))
22772 error_at (type_start_token->location,
22773 "invalid class name in declaration of %qD",
22774 type);
22775 type = NULL_TREE;
22776 goto done;
22779 /* Figure out in what scope the declaration is being placed. */
22780 scope = current_scope ();
22781 /* If that scope does not contain the scope in which the
22782 class was originally declared, the program is invalid. */
22783 if (scope && !is_ancestor (scope, nested_name_specifier))
22785 if (at_namespace_scope_p ())
22786 error_at (type_start_token->location,
22787 "declaration of %qD in namespace %qD which does not "
22788 "enclose %qD",
22789 type, scope, nested_name_specifier);
22790 else
22791 error_at (type_start_token->location,
22792 "declaration of %qD in %qD which does not enclose %qD",
22793 type, scope, nested_name_specifier);
22794 type = NULL_TREE;
22795 goto done;
22797 /* [dcl.meaning]
22799 A declarator-id shall not be qualified except for the
22800 definition of a ... nested class outside of its class
22801 ... [or] the definition or explicit instantiation of a
22802 class member of a namespace outside of its namespace. */
22803 if (scope == nested_name_specifier)
22805 permerror (nested_name_specifier_token_start->location,
22806 "extra qualification not allowed");
22807 nested_name_specifier = NULL_TREE;
22808 num_templates = 0;
22811 /* An explicit-specialization must be preceded by "template <>". If
22812 it is not, try to recover gracefully. */
22813 if (at_namespace_scope_p ()
22814 && parser->num_template_parameter_lists == 0
22815 && !processing_template_parmlist
22816 && template_id_p)
22818 /* Build a location of this form:
22819 struct typename <ARGS>
22820 ^~~~~~~~~~~~~~~~~~~~~~
22821 with caret==start at the start token, and
22822 finishing at the end of the type. */
22823 location_t reported_loc
22824 = make_location (class_head_start_location,
22825 class_head_start_location,
22826 get_finish (type_start_token->location));
22827 rich_location richloc (line_table, reported_loc);
22828 richloc.add_fixit_insert_before (class_head_start_location,
22829 "template <> ");
22830 error_at_rich_loc
22831 (&richloc,
22832 "an explicit specialization must be preceded by %<template <>%>");
22833 invalid_explicit_specialization_p = true;
22834 /* Take the same action that would have been taken by
22835 cp_parser_explicit_specialization. */
22836 ++parser->num_template_parameter_lists;
22837 begin_specialization ();
22839 /* There must be no "return" statements between this point and the
22840 end of this function; set "type "to the correct return value and
22841 use "goto done;" to return. */
22842 /* Make sure that the right number of template parameters were
22843 present. */
22844 if (!cp_parser_check_template_parameters (parser, num_templates,
22845 type_start_token->location,
22846 /*declarator=*/NULL))
22848 /* If something went wrong, there is no point in even trying to
22849 process the class-definition. */
22850 type = NULL_TREE;
22851 goto done;
22854 /* Look up the type. */
22855 if (template_id_p)
22857 if (TREE_CODE (id) == TEMPLATE_ID_EXPR
22858 && (DECL_FUNCTION_TEMPLATE_P (TREE_OPERAND (id, 0))
22859 || TREE_CODE (TREE_OPERAND (id, 0)) == OVERLOAD))
22861 error_at (type_start_token->location,
22862 "function template %qD redeclared as a class template", id);
22863 type = error_mark_node;
22865 else
22867 type = TREE_TYPE (id);
22868 type = maybe_process_partial_specialization (type);
22870 /* Check the scope while we still know whether or not we had a
22871 nested-name-specifier. */
22872 if (type != error_mark_node)
22873 check_unqualified_spec_or_inst (type, type_start_token->location);
22875 if (nested_name_specifier)
22876 pushed_scope = push_scope (nested_name_specifier);
22878 else if (nested_name_specifier)
22880 tree class_type;
22882 /* Given:
22884 template <typename T> struct S { struct T };
22885 template <typename T> struct S<T>::T { };
22887 we will get a TYPENAME_TYPE when processing the definition of
22888 `S::T'. We need to resolve it to the actual type before we
22889 try to define it. */
22890 if (TREE_CODE (TREE_TYPE (type)) == TYPENAME_TYPE)
22892 class_type = resolve_typename_type (TREE_TYPE (type),
22893 /*only_current_p=*/false);
22894 if (TREE_CODE (class_type) != TYPENAME_TYPE)
22895 type = TYPE_NAME (class_type);
22896 else
22898 cp_parser_error (parser, "could not resolve typename type");
22899 type = error_mark_node;
22903 if (maybe_process_partial_specialization (TREE_TYPE (type))
22904 == error_mark_node)
22906 type = NULL_TREE;
22907 goto done;
22910 class_type = current_class_type;
22911 /* Enter the scope indicated by the nested-name-specifier. */
22912 pushed_scope = push_scope (nested_name_specifier);
22913 /* Get the canonical version of this type. */
22914 type = TYPE_MAIN_DECL (TREE_TYPE (type));
22915 /* Call push_template_decl if it seems like we should be defining a
22916 template either from the template headers or the type we're
22917 defining, so that we diagnose both extra and missing headers. */
22918 if ((PROCESSING_REAL_TEMPLATE_DECL_P ()
22919 || CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (type)))
22920 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (type)))
22922 type = push_template_decl (type);
22923 if (type == error_mark_node)
22925 type = NULL_TREE;
22926 goto done;
22930 type = TREE_TYPE (type);
22931 *nested_name_specifier_p = true;
22933 else /* The name is not a nested name. */
22935 /* If the class was unnamed, create a dummy name. */
22936 if (!id)
22937 id = make_anon_name ();
22938 tag_scope tag_scope = (parser->in_type_id_in_expr_p
22939 ? ts_within_enclosing_non_class
22940 : ts_current);
22941 type = xref_tag (class_key, id, tag_scope,
22942 parser->num_template_parameter_lists);
22945 /* Indicate whether this class was declared as a `class' or as a
22946 `struct'. */
22947 if (TREE_CODE (type) == RECORD_TYPE)
22948 CLASSTYPE_DECLARED_CLASS (type) = (class_key == class_type);
22949 cp_parser_check_class_key (class_key, type);
22951 /* If this type was already complete, and we see another definition,
22952 that's an error. */
22953 if (type != error_mark_node && COMPLETE_TYPE_P (type))
22955 error_at (type_start_token->location, "redefinition of %q#T",
22956 type);
22957 inform (location_of (type), "previous definition of %q#T",
22958 type);
22959 type = NULL_TREE;
22960 goto done;
22962 else if (type == error_mark_node)
22963 type = NULL_TREE;
22965 if (type)
22967 /* Apply attributes now, before any use of the class as a template
22968 argument in its base list. */
22969 cplus_decl_attributes (&type, attributes, (int)ATTR_FLAG_TYPE_IN_PLACE);
22970 fixup_attribute_variants (type);
22973 /* We will have entered the scope containing the class; the names of
22974 base classes should be looked up in that context. For example:
22976 struct A { struct B {}; struct C; };
22977 struct A::C : B {};
22979 is valid. */
22981 /* Get the list of base-classes, if there is one. */
22982 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
22984 /* PR59482: enter the class scope so that base-specifiers are looked
22985 up correctly. */
22986 if (type)
22987 pushclass (type);
22988 bases = cp_parser_base_clause (parser);
22989 /* PR59482: get out of the previously pushed class scope so that the
22990 subsequent pops pop the right thing. */
22991 if (type)
22992 popclass ();
22994 else
22995 bases = NULL_TREE;
22997 /* If we're really defining a class, process the base classes.
22998 If they're invalid, fail. */
22999 if (type && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
23000 xref_basetypes (type, bases);
23002 done:
23003 /* Leave the scope given by the nested-name-specifier. We will
23004 enter the class scope itself while processing the members. */
23005 if (pushed_scope)
23006 pop_scope (pushed_scope);
23008 if (invalid_explicit_specialization_p)
23010 end_specialization ();
23011 --parser->num_template_parameter_lists;
23014 if (type)
23015 DECL_SOURCE_LOCATION (TYPE_NAME (type)) = type_start_token->location;
23016 if (type && (virt_specifiers & VIRT_SPEC_FINAL))
23017 CLASSTYPE_FINAL (type) = 1;
23018 out:
23019 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
23020 return type;
23023 /* Parse a class-key.
23025 class-key:
23026 class
23027 struct
23028 union
23030 Returns the kind of class-key specified, or none_type to indicate
23031 error. */
23033 static enum tag_types
23034 cp_parser_class_key (cp_parser* parser)
23036 cp_token *token;
23037 enum tag_types tag_type;
23039 /* Look for the class-key. */
23040 token = cp_parser_require (parser, CPP_KEYWORD, RT_CLASS_KEY);
23041 if (!token)
23042 return none_type;
23044 /* Check to see if the TOKEN is a class-key. */
23045 tag_type = cp_parser_token_is_class_key (token);
23046 if (!tag_type)
23047 cp_parser_error (parser, "expected class-key");
23048 return tag_type;
23051 /* Parse a type-parameter-key.
23053 type-parameter-key:
23054 class
23055 typename
23058 static void
23059 cp_parser_type_parameter_key (cp_parser* parser)
23061 /* Look for the type-parameter-key. */
23062 enum tag_types tag_type = none_type;
23063 cp_token *token = cp_lexer_peek_token (parser->lexer);
23064 if ((tag_type = cp_parser_token_is_type_parameter_key (token)) != none_type)
23066 cp_lexer_consume_token (parser->lexer);
23067 if (pedantic && tag_type == typename_type && cxx_dialect < cxx1z)
23068 /* typename is not allowed in a template template parameter
23069 by the standard until C++1Z. */
23070 pedwarn (token->location, OPT_Wpedantic,
23071 "ISO C++ forbids typename key in template template parameter;"
23072 " use -std=c++1z or -std=gnu++1z");
23074 else
23075 cp_parser_error (parser, "expected %<class%> or %<typename%>");
23077 return;
23080 /* Parse an (optional) member-specification.
23082 member-specification:
23083 member-declaration member-specification [opt]
23084 access-specifier : member-specification [opt] */
23086 static void
23087 cp_parser_member_specification_opt (cp_parser* parser)
23089 while (true)
23091 cp_token *token;
23092 enum rid keyword;
23094 /* Peek at the next token. */
23095 token = cp_lexer_peek_token (parser->lexer);
23096 /* If it's a `}', or EOF then we've seen all the members. */
23097 if (token->type == CPP_CLOSE_BRACE
23098 || token->type == CPP_EOF
23099 || token->type == CPP_PRAGMA_EOL)
23100 break;
23102 /* See if this token is a keyword. */
23103 keyword = token->keyword;
23104 switch (keyword)
23106 case RID_PUBLIC:
23107 case RID_PROTECTED:
23108 case RID_PRIVATE:
23109 /* Consume the access-specifier. */
23110 cp_lexer_consume_token (parser->lexer);
23111 /* Remember which access-specifier is active. */
23112 current_access_specifier = token->u.value;
23113 /* Look for the `:'. */
23114 cp_parser_require (parser, CPP_COLON, RT_COLON);
23115 break;
23117 default:
23118 /* Accept #pragmas at class scope. */
23119 if (token->type == CPP_PRAGMA)
23121 cp_parser_pragma (parser, pragma_member, NULL);
23122 break;
23125 /* Otherwise, the next construction must be a
23126 member-declaration. */
23127 cp_parser_member_declaration (parser);
23132 /* Parse a member-declaration.
23134 member-declaration:
23135 decl-specifier-seq [opt] member-declarator-list [opt] ;
23136 function-definition ; [opt]
23137 :: [opt] nested-name-specifier template [opt] unqualified-id ;
23138 using-declaration
23139 template-declaration
23140 alias-declaration
23142 member-declarator-list:
23143 member-declarator
23144 member-declarator-list , member-declarator
23146 member-declarator:
23147 declarator pure-specifier [opt]
23148 declarator constant-initializer [opt]
23149 identifier [opt] : constant-expression
23151 GNU Extensions:
23153 member-declaration:
23154 __extension__ member-declaration
23156 member-declarator:
23157 declarator attributes [opt] pure-specifier [opt]
23158 declarator attributes [opt] constant-initializer [opt]
23159 identifier [opt] attributes [opt] : constant-expression
23161 C++0x Extensions:
23163 member-declaration:
23164 static_assert-declaration */
23166 static void
23167 cp_parser_member_declaration (cp_parser* parser)
23169 cp_decl_specifier_seq decl_specifiers;
23170 tree prefix_attributes;
23171 tree decl;
23172 int declares_class_or_enum;
23173 bool friend_p;
23174 cp_token *token = NULL;
23175 cp_token *decl_spec_token_start = NULL;
23176 cp_token *initializer_token_start = NULL;
23177 int saved_pedantic;
23178 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
23180 /* Check for the `__extension__' keyword. */
23181 if (cp_parser_extension_opt (parser, &saved_pedantic))
23183 /* Recurse. */
23184 cp_parser_member_declaration (parser);
23185 /* Restore the old value of the PEDANTIC flag. */
23186 pedantic = saved_pedantic;
23188 return;
23191 /* Check for a template-declaration. */
23192 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
23194 /* An explicit specialization here is an error condition, and we
23195 expect the specialization handler to detect and report this. */
23196 if (cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_LESS
23197 && cp_lexer_peek_nth_token (parser->lexer, 3)->type == CPP_GREATER)
23198 cp_parser_explicit_specialization (parser);
23199 else
23200 cp_parser_template_declaration (parser, /*member_p=*/true);
23202 return;
23204 /* Check for a template introduction. */
23205 else if (cp_parser_template_declaration_after_export (parser, true))
23206 return;
23208 /* Check for a using-declaration. */
23209 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_USING))
23211 if (cxx_dialect < cxx11)
23213 /* Parse the using-declaration. */
23214 cp_parser_using_declaration (parser,
23215 /*access_declaration_p=*/false);
23216 return;
23218 else
23220 tree decl;
23221 bool alias_decl_expected;
23222 cp_parser_parse_tentatively (parser);
23223 decl = cp_parser_alias_declaration (parser);
23224 /* Note that if we actually see the '=' token after the
23225 identifier, cp_parser_alias_declaration commits the
23226 tentative parse. In that case, we really expect an
23227 alias-declaration. Otherwise, we expect a using
23228 declaration. */
23229 alias_decl_expected =
23230 !cp_parser_uncommitted_to_tentative_parse_p (parser);
23231 cp_parser_parse_definitely (parser);
23233 if (alias_decl_expected)
23234 finish_member_declaration (decl);
23235 else
23236 cp_parser_using_declaration (parser,
23237 /*access_declaration_p=*/false);
23238 return;
23242 /* Check for @defs. */
23243 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_AT_DEFS))
23245 tree ivar, member;
23246 tree ivar_chains = cp_parser_objc_defs_expression (parser);
23247 ivar = ivar_chains;
23248 while (ivar)
23250 member = ivar;
23251 ivar = TREE_CHAIN (member);
23252 TREE_CHAIN (member) = NULL_TREE;
23253 finish_member_declaration (member);
23255 return;
23258 /* If the next token is `static_assert' we have a static assertion. */
23259 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_STATIC_ASSERT))
23261 cp_parser_static_assert (parser, /*member_p=*/true);
23262 return;
23265 parser->colon_corrects_to_scope_p = false;
23267 if (cp_parser_using_declaration (parser, /*access_declaration=*/true))
23268 goto out;
23270 /* Parse the decl-specifier-seq. */
23271 decl_spec_token_start = cp_lexer_peek_token (parser->lexer);
23272 cp_parser_decl_specifier_seq (parser,
23273 CP_PARSER_FLAGS_OPTIONAL,
23274 &decl_specifiers,
23275 &declares_class_or_enum);
23276 /* Check for an invalid type-name. */
23277 if (!decl_specifiers.any_type_specifiers_p
23278 && cp_parser_parse_and_diagnose_invalid_type_name (parser))
23279 goto out;
23280 /* If there is no declarator, then the decl-specifier-seq should
23281 specify a type. */
23282 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
23284 /* If there was no decl-specifier-seq, and the next token is a
23285 `;', then we have something like:
23287 struct S { ; };
23289 [class.mem]
23291 Each member-declaration shall declare at least one member
23292 name of the class. */
23293 if (!decl_specifiers.any_specifiers_p)
23295 cp_token *token = cp_lexer_peek_token (parser->lexer);
23296 if (!in_system_header_at (token->location))
23298 gcc_rich_location richloc (token->location);
23299 richloc.add_fixit_remove ();
23300 pedwarn_at_rich_loc (&richloc, OPT_Wpedantic, "extra %<;%>");
23303 else
23305 tree type;
23307 /* See if this declaration is a friend. */
23308 friend_p = cp_parser_friend_p (&decl_specifiers);
23309 /* If there were decl-specifiers, check to see if there was
23310 a class-declaration. */
23311 type = check_tag_decl (&decl_specifiers,
23312 /*explicit_type_instantiation_p=*/false);
23313 /* Nested classes have already been added to the class, but
23314 a `friend' needs to be explicitly registered. */
23315 if (friend_p)
23317 /* If the `friend' keyword was present, the friend must
23318 be introduced with a class-key. */
23319 if (!declares_class_or_enum && cxx_dialect < cxx11)
23320 pedwarn (decl_spec_token_start->location, OPT_Wpedantic,
23321 "in C++03 a class-key must be used "
23322 "when declaring a friend");
23323 /* In this case:
23325 template <typename T> struct A {
23326 friend struct A<T>::B;
23329 A<T>::B will be represented by a TYPENAME_TYPE, and
23330 therefore not recognized by check_tag_decl. */
23331 if (!type)
23333 type = decl_specifiers.type;
23334 if (type && TREE_CODE (type) == TYPE_DECL)
23335 type = TREE_TYPE (type);
23337 if (!type || !TYPE_P (type))
23338 error_at (decl_spec_token_start->location,
23339 "friend declaration does not name a class or "
23340 "function");
23341 else
23342 make_friend_class (current_class_type, type,
23343 /*complain=*/true);
23345 /* If there is no TYPE, an error message will already have
23346 been issued. */
23347 else if (!type || type == error_mark_node)
23349 /* An anonymous aggregate has to be handled specially; such
23350 a declaration really declares a data member (with a
23351 particular type), as opposed to a nested class. */
23352 else if (ANON_AGGR_TYPE_P (type))
23354 /* C++11 9.5/6. */
23355 if (decl_specifiers.storage_class != sc_none)
23356 error_at (decl_spec_token_start->location,
23357 "a storage class on an anonymous aggregate "
23358 "in class scope is not allowed");
23360 /* Remove constructors and such from TYPE, now that we
23361 know it is an anonymous aggregate. */
23362 fixup_anonymous_aggr (type);
23363 /* And make the corresponding data member. */
23364 decl = build_decl (decl_spec_token_start->location,
23365 FIELD_DECL, NULL_TREE, type);
23366 /* Add it to the class. */
23367 finish_member_declaration (decl);
23369 else
23370 cp_parser_check_access_in_redeclaration
23371 (TYPE_NAME (type),
23372 decl_spec_token_start->location);
23375 else
23377 bool assume_semicolon = false;
23379 /* Clear attributes from the decl_specifiers but keep them
23380 around as prefix attributes that apply them to the entity
23381 being declared. */
23382 prefix_attributes = decl_specifiers.attributes;
23383 decl_specifiers.attributes = NULL_TREE;
23385 /* See if these declarations will be friends. */
23386 friend_p = cp_parser_friend_p (&decl_specifiers);
23388 /* Keep going until we hit the `;' at the end of the
23389 declaration. */
23390 while (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
23392 tree attributes = NULL_TREE;
23393 tree first_attribute;
23395 /* Peek at the next token. */
23396 token = cp_lexer_peek_token (parser->lexer);
23398 /* Check for a bitfield declaration. */
23399 if (token->type == CPP_COLON
23400 || (token->type == CPP_NAME
23401 && cp_lexer_peek_nth_token (parser->lexer, 2)->type
23402 == CPP_COLON))
23404 tree identifier;
23405 tree width;
23407 /* Get the name of the bitfield. Note that we cannot just
23408 check TOKEN here because it may have been invalidated by
23409 the call to cp_lexer_peek_nth_token above. */
23410 if (cp_lexer_peek_token (parser->lexer)->type != CPP_COLON)
23411 identifier = cp_parser_identifier (parser);
23412 else
23413 identifier = NULL_TREE;
23415 /* Consume the `:' token. */
23416 cp_lexer_consume_token (parser->lexer);
23417 /* Get the width of the bitfield. */
23418 width
23419 = cp_parser_constant_expression (parser);
23421 /* Look for attributes that apply to the bitfield. */
23422 attributes = cp_parser_attributes_opt (parser);
23423 /* Remember which attributes are prefix attributes and
23424 which are not. */
23425 first_attribute = attributes;
23426 /* Combine the attributes. */
23427 attributes = chainon (prefix_attributes, attributes);
23429 /* Create the bitfield declaration. */
23430 decl = grokbitfield (identifier
23431 ? make_id_declarator (NULL_TREE,
23432 identifier,
23433 sfk_none)
23434 : NULL,
23435 &decl_specifiers,
23436 width,
23437 attributes);
23439 else
23441 cp_declarator *declarator;
23442 tree initializer;
23443 tree asm_specification;
23444 int ctor_dtor_or_conv_p;
23446 /* Parse the declarator. */
23447 declarator
23448 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
23449 &ctor_dtor_or_conv_p,
23450 /*parenthesized_p=*/NULL,
23451 /*member_p=*/true,
23452 friend_p);
23454 /* If something went wrong parsing the declarator, make sure
23455 that we at least consume some tokens. */
23456 if (declarator == cp_error_declarator)
23458 /* Skip to the end of the statement. */
23459 cp_parser_skip_to_end_of_statement (parser);
23460 /* If the next token is not a semicolon, that is
23461 probably because we just skipped over the body of
23462 a function. So, we consume a semicolon if
23463 present, but do not issue an error message if it
23464 is not present. */
23465 if (cp_lexer_next_token_is (parser->lexer,
23466 CPP_SEMICOLON))
23467 cp_lexer_consume_token (parser->lexer);
23468 goto out;
23471 if (declares_class_or_enum & 2)
23472 cp_parser_check_for_definition_in_return_type
23473 (declarator, decl_specifiers.type,
23474 decl_specifiers.locations[ds_type_spec]);
23476 /* Look for an asm-specification. */
23477 asm_specification = cp_parser_asm_specification_opt (parser);
23478 /* Look for attributes that apply to the declaration. */
23479 attributes = cp_parser_attributes_opt (parser);
23480 /* Remember which attributes are prefix attributes and
23481 which are not. */
23482 first_attribute = attributes;
23483 /* Combine the attributes. */
23484 attributes = chainon (prefix_attributes, attributes);
23486 /* If it's an `=', then we have a constant-initializer or a
23487 pure-specifier. It is not correct to parse the
23488 initializer before registering the member declaration
23489 since the member declaration should be in scope while
23490 its initializer is processed. However, the rest of the
23491 front end does not yet provide an interface that allows
23492 us to handle this correctly. */
23493 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
23495 /* In [class.mem]:
23497 A pure-specifier shall be used only in the declaration of
23498 a virtual function.
23500 A member-declarator can contain a constant-initializer
23501 only if it declares a static member of integral or
23502 enumeration type.
23504 Therefore, if the DECLARATOR is for a function, we look
23505 for a pure-specifier; otherwise, we look for a
23506 constant-initializer. When we call `grokfield', it will
23507 perform more stringent semantics checks. */
23508 initializer_token_start = cp_lexer_peek_token (parser->lexer);
23509 if (function_declarator_p (declarator)
23510 || (decl_specifiers.type
23511 && TREE_CODE (decl_specifiers.type) == TYPE_DECL
23512 && declarator->kind == cdk_id
23513 && (TREE_CODE (TREE_TYPE (decl_specifiers.type))
23514 == FUNCTION_TYPE)))
23515 initializer = cp_parser_pure_specifier (parser);
23516 else if (decl_specifiers.storage_class != sc_static)
23517 initializer = cp_parser_save_nsdmi (parser);
23518 else if (cxx_dialect >= cxx11)
23520 bool nonconst;
23521 /* Don't require a constant rvalue in C++11, since we
23522 might want a reference constant. We'll enforce
23523 constancy later. */
23524 cp_lexer_consume_token (parser->lexer);
23525 /* Parse the initializer. */
23526 initializer = cp_parser_initializer_clause (parser,
23527 &nonconst);
23529 else
23530 /* Parse the initializer. */
23531 initializer = cp_parser_constant_initializer (parser);
23533 else if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE)
23534 && !function_declarator_p (declarator))
23536 bool x;
23537 if (decl_specifiers.storage_class != sc_static)
23538 initializer = cp_parser_save_nsdmi (parser);
23539 else
23540 initializer = cp_parser_initializer (parser, &x, &x);
23542 /* Otherwise, there is no initializer. */
23543 else
23544 initializer = NULL_TREE;
23546 /* See if we are probably looking at a function
23547 definition. We are certainly not looking at a
23548 member-declarator. Calling `grokfield' has
23549 side-effects, so we must not do it unless we are sure
23550 that we are looking at a member-declarator. */
23551 if (cp_parser_token_starts_function_definition_p
23552 (cp_lexer_peek_token (parser->lexer)))
23554 /* The grammar does not allow a pure-specifier to be
23555 used when a member function is defined. (It is
23556 possible that this fact is an oversight in the
23557 standard, since a pure function may be defined
23558 outside of the class-specifier. */
23559 if (initializer && initializer_token_start)
23560 error_at (initializer_token_start->location,
23561 "pure-specifier on function-definition");
23562 decl = cp_parser_save_member_function_body (parser,
23563 &decl_specifiers,
23564 declarator,
23565 attributes);
23566 if (parser->fully_implicit_function_template_p)
23567 decl = finish_fully_implicit_template (parser, decl);
23568 /* If the member was not a friend, declare it here. */
23569 if (!friend_p)
23570 finish_member_declaration (decl);
23571 /* Peek at the next token. */
23572 token = cp_lexer_peek_token (parser->lexer);
23573 /* If the next token is a semicolon, consume it. */
23574 if (token->type == CPP_SEMICOLON)
23576 location_t semicolon_loc
23577 = cp_lexer_consume_token (parser->lexer)->location;
23578 gcc_rich_location richloc (semicolon_loc);
23579 richloc.add_fixit_remove ();
23580 warning_at_rich_loc (&richloc, OPT_Wextra_semi,
23581 "extra %<;%> after in-class "
23582 "function definition");
23584 goto out;
23586 else
23587 if (declarator->kind == cdk_function)
23588 declarator->id_loc = token->location;
23589 /* Create the declaration. */
23590 decl = grokfield (declarator, &decl_specifiers,
23591 initializer, /*init_const_expr_p=*/true,
23592 asm_specification, attributes);
23593 if (parser->fully_implicit_function_template_p)
23595 if (friend_p)
23596 finish_fully_implicit_template (parser, 0);
23597 else
23598 decl = finish_fully_implicit_template (parser, decl);
23602 cp_finalize_omp_declare_simd (parser, decl);
23603 cp_finalize_oacc_routine (parser, decl, false);
23605 /* Reset PREFIX_ATTRIBUTES. */
23606 while (attributes && TREE_CHAIN (attributes) != first_attribute)
23607 attributes = TREE_CHAIN (attributes);
23608 if (attributes)
23609 TREE_CHAIN (attributes) = NULL_TREE;
23611 /* If there is any qualification still in effect, clear it
23612 now; we will be starting fresh with the next declarator. */
23613 parser->scope = NULL_TREE;
23614 parser->qualifying_scope = NULL_TREE;
23615 parser->object_scope = NULL_TREE;
23616 /* If it's a `,', then there are more declarators. */
23617 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
23619 cp_lexer_consume_token (parser->lexer);
23620 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
23622 cp_token *token = cp_lexer_previous_token (parser->lexer);
23623 gcc_rich_location richloc (token->location);
23624 richloc.add_fixit_remove ();
23625 error_at_rich_loc (&richloc, "stray %<,%> at end of "
23626 "member declaration");
23629 /* If the next token isn't a `;', then we have a parse error. */
23630 else if (cp_lexer_next_token_is_not (parser->lexer,
23631 CPP_SEMICOLON))
23633 /* The next token might be a ways away from where the
23634 actual semicolon is missing. Find the previous token
23635 and use that for our error position. */
23636 cp_token *token = cp_lexer_previous_token (parser->lexer);
23637 gcc_rich_location richloc (token->location);
23638 richloc.add_fixit_insert_after (";");
23639 error_at_rich_loc (&richloc, "expected %<;%> at end of "
23640 "member declaration");
23642 /* Assume that the user meant to provide a semicolon. If
23643 we were to cp_parser_skip_to_end_of_statement, we might
23644 skip to a semicolon inside a member function definition
23645 and issue nonsensical error messages. */
23646 assume_semicolon = true;
23649 if (decl)
23651 /* Add DECL to the list of members. */
23652 if (!friend_p
23653 /* Explicitly include, eg, NSDMIs, for better error
23654 recovery (c++/58650). */
23655 || !DECL_DECLARES_FUNCTION_P (decl))
23656 finish_member_declaration (decl);
23658 if (TREE_CODE (decl) == FUNCTION_DECL)
23659 cp_parser_save_default_args (parser, decl);
23660 else if (TREE_CODE (decl) == FIELD_DECL
23661 && !DECL_C_BIT_FIELD (decl)
23662 && DECL_INITIAL (decl))
23663 /* Add DECL to the queue of NSDMI to be parsed later. */
23664 vec_safe_push (unparsed_nsdmis, decl);
23667 if (assume_semicolon)
23668 goto out;
23672 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
23673 out:
23674 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
23677 /* Parse a pure-specifier.
23679 pure-specifier:
23682 Returns INTEGER_ZERO_NODE if a pure specifier is found.
23683 Otherwise, ERROR_MARK_NODE is returned. */
23685 static tree
23686 cp_parser_pure_specifier (cp_parser* parser)
23688 cp_token *token;
23690 /* Look for the `=' token. */
23691 if (!cp_parser_require (parser, CPP_EQ, RT_EQ))
23692 return error_mark_node;
23693 /* Look for the `0' token. */
23694 token = cp_lexer_peek_token (parser->lexer);
23696 if (token->type == CPP_EOF
23697 || token->type == CPP_PRAGMA_EOL)
23698 return error_mark_node;
23700 cp_lexer_consume_token (parser->lexer);
23702 /* Accept = default or = delete in c++0x mode. */
23703 if (token->keyword == RID_DEFAULT
23704 || token->keyword == RID_DELETE)
23706 maybe_warn_cpp0x (CPP0X_DEFAULTED_DELETED);
23707 return token->u.value;
23710 /* c_lex_with_flags marks a single digit '0' with PURE_ZERO. */
23711 if (token->type != CPP_NUMBER || !(token->flags & PURE_ZERO))
23713 cp_parser_error (parser,
23714 "invalid pure specifier (only %<= 0%> is allowed)");
23715 cp_parser_skip_to_end_of_statement (parser);
23716 return error_mark_node;
23718 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
23720 error_at (token->location, "templates may not be %<virtual%>");
23721 return error_mark_node;
23724 return integer_zero_node;
23727 /* Parse a constant-initializer.
23729 constant-initializer:
23730 = constant-expression
23732 Returns a representation of the constant-expression. */
23734 static tree
23735 cp_parser_constant_initializer (cp_parser* parser)
23737 /* Look for the `=' token. */
23738 if (!cp_parser_require (parser, CPP_EQ, RT_EQ))
23739 return error_mark_node;
23741 /* It is invalid to write:
23743 struct S { static const int i = { 7 }; };
23746 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
23748 cp_parser_error (parser,
23749 "a brace-enclosed initializer is not allowed here");
23750 /* Consume the opening brace. */
23751 cp_lexer_consume_token (parser->lexer);
23752 /* Skip the initializer. */
23753 cp_parser_skip_to_closing_brace (parser);
23754 /* Look for the trailing `}'. */
23755 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
23757 return error_mark_node;
23760 return cp_parser_constant_expression (parser);
23763 /* Derived classes [gram.class.derived] */
23765 /* Parse a base-clause.
23767 base-clause:
23768 : base-specifier-list
23770 base-specifier-list:
23771 base-specifier ... [opt]
23772 base-specifier-list , base-specifier ... [opt]
23774 Returns a TREE_LIST representing the base-classes, in the order in
23775 which they were declared. The representation of each node is as
23776 described by cp_parser_base_specifier.
23778 In the case that no bases are specified, this function will return
23779 NULL_TREE, not ERROR_MARK_NODE. */
23781 static tree
23782 cp_parser_base_clause (cp_parser* parser)
23784 tree bases = NULL_TREE;
23786 /* Look for the `:' that begins the list. */
23787 cp_parser_require (parser, CPP_COLON, RT_COLON);
23789 /* Scan the base-specifier-list. */
23790 while (true)
23792 cp_token *token;
23793 tree base;
23794 bool pack_expansion_p = false;
23796 /* Look for the base-specifier. */
23797 base = cp_parser_base_specifier (parser);
23798 /* Look for the (optional) ellipsis. */
23799 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
23801 /* Consume the `...'. */
23802 cp_lexer_consume_token (parser->lexer);
23804 pack_expansion_p = true;
23807 /* Add BASE to the front of the list. */
23808 if (base && base != error_mark_node)
23810 if (pack_expansion_p)
23811 /* Make this a pack expansion type. */
23812 TREE_VALUE (base) = make_pack_expansion (TREE_VALUE (base));
23814 if (!check_for_bare_parameter_packs (TREE_VALUE (base)))
23816 TREE_CHAIN (base) = bases;
23817 bases = base;
23820 /* Peek at the next token. */
23821 token = cp_lexer_peek_token (parser->lexer);
23822 /* If it's not a comma, then the list is complete. */
23823 if (token->type != CPP_COMMA)
23824 break;
23825 /* Consume the `,'. */
23826 cp_lexer_consume_token (parser->lexer);
23829 /* PARSER->SCOPE may still be non-NULL at this point, if the last
23830 base class had a qualified name. However, the next name that
23831 appears is certainly not qualified. */
23832 parser->scope = NULL_TREE;
23833 parser->qualifying_scope = NULL_TREE;
23834 parser->object_scope = NULL_TREE;
23836 return nreverse (bases);
23839 /* Parse a base-specifier.
23841 base-specifier:
23842 :: [opt] nested-name-specifier [opt] class-name
23843 virtual access-specifier [opt] :: [opt] nested-name-specifier
23844 [opt] class-name
23845 access-specifier virtual [opt] :: [opt] nested-name-specifier
23846 [opt] class-name
23848 Returns a TREE_LIST. The TREE_PURPOSE will be one of
23849 ACCESS_{DEFAULT,PUBLIC,PROTECTED,PRIVATE}_[VIRTUAL]_NODE to
23850 indicate the specifiers provided. The TREE_VALUE will be a TYPE
23851 (or the ERROR_MARK_NODE) indicating the type that was specified. */
23853 static tree
23854 cp_parser_base_specifier (cp_parser* parser)
23856 cp_token *token;
23857 bool done = false;
23858 bool virtual_p = false;
23859 bool duplicate_virtual_error_issued_p = false;
23860 bool duplicate_access_error_issued_p = false;
23861 bool class_scope_p, template_p;
23862 tree access = access_default_node;
23863 tree type;
23865 /* Process the optional `virtual' and `access-specifier'. */
23866 while (!done)
23868 /* Peek at the next token. */
23869 token = cp_lexer_peek_token (parser->lexer);
23870 /* Process `virtual'. */
23871 switch (token->keyword)
23873 case RID_VIRTUAL:
23874 /* If `virtual' appears more than once, issue an error. */
23875 if (virtual_p && !duplicate_virtual_error_issued_p)
23877 cp_parser_error (parser,
23878 "%<virtual%> specified more than once in base-specifier");
23879 duplicate_virtual_error_issued_p = true;
23882 virtual_p = true;
23884 /* Consume the `virtual' token. */
23885 cp_lexer_consume_token (parser->lexer);
23887 break;
23889 case RID_PUBLIC:
23890 case RID_PROTECTED:
23891 case RID_PRIVATE:
23892 /* If more than one access specifier appears, issue an
23893 error. */
23894 if (access != access_default_node
23895 && !duplicate_access_error_issued_p)
23897 cp_parser_error (parser,
23898 "more than one access specifier in base-specifier");
23899 duplicate_access_error_issued_p = true;
23902 access = ridpointers[(int) token->keyword];
23904 /* Consume the access-specifier. */
23905 cp_lexer_consume_token (parser->lexer);
23907 break;
23909 default:
23910 done = true;
23911 break;
23914 /* It is not uncommon to see programs mechanically, erroneously, use
23915 the 'typename' keyword to denote (dependent) qualified types
23916 as base classes. */
23917 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TYPENAME))
23919 token = cp_lexer_peek_token (parser->lexer);
23920 if (!processing_template_decl)
23921 error_at (token->location,
23922 "keyword %<typename%> not allowed outside of templates");
23923 else
23924 error_at (token->location,
23925 "keyword %<typename%> not allowed in this context "
23926 "(the base class is implicitly a type)");
23927 cp_lexer_consume_token (parser->lexer);
23930 /* Look for the optional `::' operator. */
23931 cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/false);
23932 /* Look for the nested-name-specifier. The simplest way to
23933 implement:
23935 [temp.res]
23937 The keyword `typename' is not permitted in a base-specifier or
23938 mem-initializer; in these contexts a qualified name that
23939 depends on a template-parameter is implicitly assumed to be a
23940 type name.
23942 is to pretend that we have seen the `typename' keyword at this
23943 point. */
23944 cp_parser_nested_name_specifier_opt (parser,
23945 /*typename_keyword_p=*/true,
23946 /*check_dependency_p=*/true,
23947 /*type_p=*/true,
23948 /*is_declaration=*/true);
23949 /* If the base class is given by a qualified name, assume that names
23950 we see are type names or templates, as appropriate. */
23951 class_scope_p = (parser->scope && TYPE_P (parser->scope));
23952 template_p = class_scope_p && cp_parser_optional_template_keyword (parser);
23954 if (!parser->scope
23955 && cp_lexer_next_token_is_decltype (parser->lexer))
23956 /* DR 950 allows decltype as a base-specifier. */
23957 type = cp_parser_decltype (parser);
23958 else
23960 /* Otherwise, look for the class-name. */
23961 type = cp_parser_class_name (parser,
23962 class_scope_p,
23963 template_p,
23964 typename_type,
23965 /*check_dependency_p=*/true,
23966 /*class_head_p=*/false,
23967 /*is_declaration=*/true);
23968 type = TREE_TYPE (type);
23971 if (type == error_mark_node)
23972 return error_mark_node;
23974 return finish_base_specifier (type, access, virtual_p);
23977 /* Exception handling [gram.exception] */
23979 /* Parse an (optional) noexcept-specification.
23981 noexcept-specification:
23982 noexcept ( constant-expression ) [opt]
23984 If no noexcept-specification is present, returns NULL_TREE.
23985 Otherwise, if REQUIRE_CONSTEXPR is false, then either parse and return any
23986 expression if parentheses follow noexcept, or return BOOLEAN_TRUE_NODE if
23987 there are no parentheses. CONSUMED_EXPR will be set accordingly.
23988 Otherwise, returns a noexcept specification unless RETURN_COND is true,
23989 in which case a boolean condition is returned instead. */
23991 static tree
23992 cp_parser_noexcept_specification_opt (cp_parser* parser,
23993 bool require_constexpr,
23994 bool* consumed_expr,
23995 bool return_cond)
23997 cp_token *token;
23998 const char *saved_message;
24000 /* Peek at the next token. */
24001 token = cp_lexer_peek_token (parser->lexer);
24003 /* Is it a noexcept-specification? */
24004 if (cp_parser_is_keyword (token, RID_NOEXCEPT))
24006 tree expr;
24007 cp_lexer_consume_token (parser->lexer);
24009 if (cp_lexer_peek_token (parser->lexer)->type == CPP_OPEN_PAREN)
24011 cp_lexer_consume_token (parser->lexer);
24013 if (require_constexpr)
24015 /* Types may not be defined in an exception-specification. */
24016 saved_message = parser->type_definition_forbidden_message;
24017 parser->type_definition_forbidden_message
24018 = G_("types may not be defined in an exception-specification");
24020 expr = cp_parser_constant_expression (parser);
24022 /* Restore the saved message. */
24023 parser->type_definition_forbidden_message = saved_message;
24025 else
24027 expr = cp_parser_expression (parser);
24028 *consumed_expr = true;
24031 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
24033 else
24035 expr = boolean_true_node;
24036 if (!require_constexpr)
24037 *consumed_expr = false;
24040 /* We cannot build a noexcept-spec right away because this will check
24041 that expr is a constexpr. */
24042 if (!return_cond)
24043 return build_noexcept_spec (expr, tf_warning_or_error);
24044 else
24045 return expr;
24047 else
24048 return NULL_TREE;
24051 /* Parse an (optional) exception-specification.
24053 exception-specification:
24054 throw ( type-id-list [opt] )
24056 Returns a TREE_LIST representing the exception-specification. The
24057 TREE_VALUE of each node is a type. */
24059 static tree
24060 cp_parser_exception_specification_opt (cp_parser* parser)
24062 cp_token *token;
24063 tree type_id_list;
24064 const char *saved_message;
24066 /* Peek at the next token. */
24067 token = cp_lexer_peek_token (parser->lexer);
24069 /* Is it a noexcept-specification? */
24070 type_id_list = cp_parser_noexcept_specification_opt (parser, true, NULL,
24071 false);
24072 if (type_id_list != NULL_TREE)
24073 return type_id_list;
24075 /* If it's not `throw', then there's no exception-specification. */
24076 if (!cp_parser_is_keyword (token, RID_THROW))
24077 return NULL_TREE;
24079 location_t loc = token->location;
24081 /* Consume the `throw'. */
24082 cp_lexer_consume_token (parser->lexer);
24084 /* Look for the `('. */
24085 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
24087 /* Peek at the next token. */
24088 token = cp_lexer_peek_token (parser->lexer);
24089 /* If it's not a `)', then there is a type-id-list. */
24090 if (token->type != CPP_CLOSE_PAREN)
24092 /* Types may not be defined in an exception-specification. */
24093 saved_message = parser->type_definition_forbidden_message;
24094 parser->type_definition_forbidden_message
24095 = G_("types may not be defined in an exception-specification");
24096 /* Parse the type-id-list. */
24097 type_id_list = cp_parser_type_id_list (parser);
24098 /* Restore the saved message. */
24099 parser->type_definition_forbidden_message = saved_message;
24101 if (cxx_dialect >= cxx1z)
24103 error_at (loc, "ISO C++1z does not allow dynamic exception "
24104 "specifications");
24105 type_id_list = NULL_TREE;
24107 else if (cxx_dialect >= cxx11 && !in_system_header_at (loc))
24108 warning_at (loc, OPT_Wdeprecated,
24109 "dynamic exception specifications are deprecated in "
24110 "C++11");
24112 /* In C++17, throw() is equivalent to noexcept (true). throw()
24113 is deprecated in C++11 and above as well, but is still widely used,
24114 so don't warn about it yet. */
24115 else if (cxx_dialect >= cxx1z)
24116 type_id_list = noexcept_true_spec;
24117 else
24118 type_id_list = empty_except_spec;
24120 /* Look for the `)'. */
24121 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
24123 return type_id_list;
24126 /* Parse an (optional) type-id-list.
24128 type-id-list:
24129 type-id ... [opt]
24130 type-id-list , type-id ... [opt]
24132 Returns a TREE_LIST. The TREE_VALUE of each node is a TYPE,
24133 in the order that the types were presented. */
24135 static tree
24136 cp_parser_type_id_list (cp_parser* parser)
24138 tree types = NULL_TREE;
24140 while (true)
24142 cp_token *token;
24143 tree type;
24145 token = cp_lexer_peek_token (parser->lexer);
24147 /* Get the next type-id. */
24148 type = cp_parser_type_id (parser);
24149 /* Check for invalid 'auto'. */
24150 if (flag_concepts && type_uses_auto (type))
24152 error_at (token->location,
24153 "invalid use of %<auto%> in exception-specification");
24154 type = error_mark_node;
24156 /* Parse the optional ellipsis. */
24157 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
24159 /* Consume the `...'. */
24160 cp_lexer_consume_token (parser->lexer);
24162 /* Turn the type into a pack expansion expression. */
24163 type = make_pack_expansion (type);
24165 /* Add it to the list. */
24166 types = add_exception_specifier (types, type, /*complain=*/1);
24167 /* Peek at the next token. */
24168 token = cp_lexer_peek_token (parser->lexer);
24169 /* If it is not a `,', we are done. */
24170 if (token->type != CPP_COMMA)
24171 break;
24172 /* Consume the `,'. */
24173 cp_lexer_consume_token (parser->lexer);
24176 return nreverse (types);
24179 /* Parse a try-block.
24181 try-block:
24182 try compound-statement handler-seq */
24184 static tree
24185 cp_parser_try_block (cp_parser* parser)
24187 tree try_block;
24189 cp_parser_require_keyword (parser, RID_TRY, RT_TRY);
24190 if (parser->in_function_body
24191 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
24192 error ("%<try%> in %<constexpr%> function");
24194 try_block = begin_try_block ();
24195 cp_parser_compound_statement (parser, NULL, BCS_TRY_BLOCK, false);
24196 finish_try_block (try_block);
24197 cp_parser_handler_seq (parser);
24198 finish_handler_sequence (try_block);
24200 return try_block;
24203 /* Parse a function-try-block.
24205 function-try-block:
24206 try ctor-initializer [opt] function-body handler-seq */
24208 static bool
24209 cp_parser_function_try_block (cp_parser* parser)
24211 tree compound_stmt;
24212 tree try_block;
24213 bool ctor_initializer_p;
24215 /* Look for the `try' keyword. */
24216 if (!cp_parser_require_keyword (parser, RID_TRY, RT_TRY))
24217 return false;
24218 /* Let the rest of the front end know where we are. */
24219 try_block = begin_function_try_block (&compound_stmt);
24220 /* Parse the function-body. */
24221 ctor_initializer_p = cp_parser_ctor_initializer_opt_and_function_body
24222 (parser, /*in_function_try_block=*/true);
24223 /* We're done with the `try' part. */
24224 finish_function_try_block (try_block);
24225 /* Parse the handlers. */
24226 cp_parser_handler_seq (parser);
24227 /* We're done with the handlers. */
24228 finish_function_handler_sequence (try_block, compound_stmt);
24230 return ctor_initializer_p;
24233 /* Parse a handler-seq.
24235 handler-seq:
24236 handler handler-seq [opt] */
24238 static void
24239 cp_parser_handler_seq (cp_parser* parser)
24241 while (true)
24243 cp_token *token;
24245 /* Parse the handler. */
24246 cp_parser_handler (parser);
24247 /* Peek at the next token. */
24248 token = cp_lexer_peek_token (parser->lexer);
24249 /* If it's not `catch' then there are no more handlers. */
24250 if (!cp_parser_is_keyword (token, RID_CATCH))
24251 break;
24255 /* Parse a handler.
24257 handler:
24258 catch ( exception-declaration ) compound-statement */
24260 static void
24261 cp_parser_handler (cp_parser* parser)
24263 tree handler;
24264 tree declaration;
24266 cp_parser_require_keyword (parser, RID_CATCH, RT_CATCH);
24267 handler = begin_handler ();
24268 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
24269 declaration = cp_parser_exception_declaration (parser);
24270 finish_handler_parms (declaration, handler);
24271 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
24272 cp_parser_compound_statement (parser, NULL, BCS_NORMAL, false);
24273 finish_handler (handler);
24276 /* Parse an exception-declaration.
24278 exception-declaration:
24279 type-specifier-seq declarator
24280 type-specifier-seq abstract-declarator
24281 type-specifier-seq
24284 Returns a VAR_DECL for the declaration, or NULL_TREE if the
24285 ellipsis variant is used. */
24287 static tree
24288 cp_parser_exception_declaration (cp_parser* parser)
24290 cp_decl_specifier_seq type_specifiers;
24291 cp_declarator *declarator;
24292 const char *saved_message;
24294 /* If it's an ellipsis, it's easy to handle. */
24295 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
24297 /* Consume the `...' token. */
24298 cp_lexer_consume_token (parser->lexer);
24299 return NULL_TREE;
24302 /* Types may not be defined in exception-declarations. */
24303 saved_message = parser->type_definition_forbidden_message;
24304 parser->type_definition_forbidden_message
24305 = G_("types may not be defined in exception-declarations");
24307 /* Parse the type-specifier-seq. */
24308 cp_parser_type_specifier_seq (parser, /*is_declaration=*/true,
24309 /*is_trailing_return=*/false,
24310 &type_specifiers);
24311 /* If it's a `)', then there is no declarator. */
24312 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN))
24313 declarator = NULL;
24314 else
24315 declarator = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_EITHER,
24316 /*ctor_dtor_or_conv_p=*/NULL,
24317 /*parenthesized_p=*/NULL,
24318 /*member_p=*/false,
24319 /*friend_p=*/false);
24321 /* Restore the saved message. */
24322 parser->type_definition_forbidden_message = saved_message;
24324 if (!type_specifiers.any_specifiers_p)
24325 return error_mark_node;
24327 return grokdeclarator (declarator, &type_specifiers, CATCHPARM, 1, NULL);
24330 /* Parse a throw-expression.
24332 throw-expression:
24333 throw assignment-expression [opt]
24335 Returns a THROW_EXPR representing the throw-expression. */
24337 static tree
24338 cp_parser_throw_expression (cp_parser* parser)
24340 tree expression;
24341 cp_token* token;
24343 cp_parser_require_keyword (parser, RID_THROW, RT_THROW);
24344 token = cp_lexer_peek_token (parser->lexer);
24345 /* Figure out whether or not there is an assignment-expression
24346 following the "throw" keyword. */
24347 if (token->type == CPP_COMMA
24348 || token->type == CPP_SEMICOLON
24349 || token->type == CPP_CLOSE_PAREN
24350 || token->type == CPP_CLOSE_SQUARE
24351 || token->type == CPP_CLOSE_BRACE
24352 || token->type == CPP_COLON)
24353 expression = NULL_TREE;
24354 else
24355 expression = cp_parser_assignment_expression (parser);
24357 return build_throw (expression);
24360 /* GNU Extensions */
24362 /* Parse an (optional) asm-specification.
24364 asm-specification:
24365 asm ( string-literal )
24367 If the asm-specification is present, returns a STRING_CST
24368 corresponding to the string-literal. Otherwise, returns
24369 NULL_TREE. */
24371 static tree
24372 cp_parser_asm_specification_opt (cp_parser* parser)
24374 cp_token *token;
24375 tree asm_specification;
24377 /* Peek at the next token. */
24378 token = cp_lexer_peek_token (parser->lexer);
24379 /* If the next token isn't the `asm' keyword, then there's no
24380 asm-specification. */
24381 if (!cp_parser_is_keyword (token, RID_ASM))
24382 return NULL_TREE;
24384 /* Consume the `asm' token. */
24385 cp_lexer_consume_token (parser->lexer);
24386 /* Look for the `('. */
24387 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
24389 /* Look for the string-literal. */
24390 asm_specification = cp_parser_string_literal (parser, false, false);
24392 /* Look for the `)'. */
24393 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
24395 return asm_specification;
24398 /* Parse an asm-operand-list.
24400 asm-operand-list:
24401 asm-operand
24402 asm-operand-list , asm-operand
24404 asm-operand:
24405 string-literal ( expression )
24406 [ string-literal ] string-literal ( expression )
24408 Returns a TREE_LIST representing the operands. The TREE_VALUE of
24409 each node is the expression. The TREE_PURPOSE is itself a
24410 TREE_LIST whose TREE_PURPOSE is a STRING_CST for the bracketed
24411 string-literal (or NULL_TREE if not present) and whose TREE_VALUE
24412 is a STRING_CST for the string literal before the parenthesis. Returns
24413 ERROR_MARK_NODE if any of the operands are invalid. */
24415 static tree
24416 cp_parser_asm_operand_list (cp_parser* parser)
24418 tree asm_operands = NULL_TREE;
24419 bool invalid_operands = false;
24421 while (true)
24423 tree string_literal;
24424 tree expression;
24425 tree name;
24427 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
24429 /* Consume the `[' token. */
24430 cp_lexer_consume_token (parser->lexer);
24431 /* Read the operand name. */
24432 name = cp_parser_identifier (parser);
24433 if (name != error_mark_node)
24434 name = build_string (IDENTIFIER_LENGTH (name),
24435 IDENTIFIER_POINTER (name));
24436 /* Look for the closing `]'. */
24437 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
24439 else
24440 name = NULL_TREE;
24441 /* Look for the string-literal. */
24442 string_literal = cp_parser_string_literal (parser, false, false);
24444 /* Look for the `('. */
24445 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
24446 /* Parse the expression. */
24447 expression = cp_parser_expression (parser);
24448 /* Look for the `)'. */
24449 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
24451 if (name == error_mark_node
24452 || string_literal == error_mark_node
24453 || expression == error_mark_node)
24454 invalid_operands = true;
24456 /* Add this operand to the list. */
24457 asm_operands = tree_cons (build_tree_list (name, string_literal),
24458 expression,
24459 asm_operands);
24460 /* If the next token is not a `,', there are no more
24461 operands. */
24462 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
24463 break;
24464 /* Consume the `,'. */
24465 cp_lexer_consume_token (parser->lexer);
24468 return invalid_operands ? error_mark_node : nreverse (asm_operands);
24471 /* Parse an asm-clobber-list.
24473 asm-clobber-list:
24474 string-literal
24475 asm-clobber-list , string-literal
24477 Returns a TREE_LIST, indicating the clobbers in the order that they
24478 appeared. The TREE_VALUE of each node is a STRING_CST. */
24480 static tree
24481 cp_parser_asm_clobber_list (cp_parser* parser)
24483 tree clobbers = NULL_TREE;
24485 while (true)
24487 tree string_literal;
24489 /* Look for the string literal. */
24490 string_literal = cp_parser_string_literal (parser, false, false);
24491 /* Add it to the list. */
24492 clobbers = tree_cons (NULL_TREE, string_literal, clobbers);
24493 /* If the next token is not a `,', then the list is
24494 complete. */
24495 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
24496 break;
24497 /* Consume the `,' token. */
24498 cp_lexer_consume_token (parser->lexer);
24501 return clobbers;
24504 /* Parse an asm-label-list.
24506 asm-label-list:
24507 identifier
24508 asm-label-list , identifier
24510 Returns a TREE_LIST, indicating the labels in the order that they
24511 appeared. The TREE_VALUE of each node is a label. */
24513 static tree
24514 cp_parser_asm_label_list (cp_parser* parser)
24516 tree labels = NULL_TREE;
24518 while (true)
24520 tree identifier, label, name;
24522 /* Look for the identifier. */
24523 identifier = cp_parser_identifier (parser);
24524 if (!error_operand_p (identifier))
24526 label = lookup_label (identifier);
24527 if (TREE_CODE (label) == LABEL_DECL)
24529 TREE_USED (label) = 1;
24530 check_goto (label);
24531 name = build_string (IDENTIFIER_LENGTH (identifier),
24532 IDENTIFIER_POINTER (identifier));
24533 labels = tree_cons (name, label, labels);
24536 /* If the next token is not a `,', then the list is
24537 complete. */
24538 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
24539 break;
24540 /* Consume the `,' token. */
24541 cp_lexer_consume_token (parser->lexer);
24544 return nreverse (labels);
24547 /* Return TRUE iff the next tokens in the stream are possibly the
24548 beginning of a GNU extension attribute. */
24550 static bool
24551 cp_next_tokens_can_be_gnu_attribute_p (cp_parser *parser)
24553 return cp_nth_tokens_can_be_gnu_attribute_p (parser, 1);
24556 /* Return TRUE iff the next tokens in the stream are possibly the
24557 beginning of a standard C++-11 attribute specifier. */
24559 static bool
24560 cp_next_tokens_can_be_std_attribute_p (cp_parser *parser)
24562 return cp_nth_tokens_can_be_std_attribute_p (parser, 1);
24565 /* Return TRUE iff the next Nth tokens in the stream are possibly the
24566 beginning of a standard C++-11 attribute specifier. */
24568 static bool
24569 cp_nth_tokens_can_be_std_attribute_p (cp_parser *parser, size_t n)
24571 cp_token *token = cp_lexer_peek_nth_token (parser->lexer, n);
24573 return (cxx_dialect >= cxx11
24574 && ((token->type == CPP_KEYWORD && token->keyword == RID_ALIGNAS)
24575 || (token->type == CPP_OPEN_SQUARE
24576 && (token = cp_lexer_peek_nth_token (parser->lexer, n + 1))
24577 && token->type == CPP_OPEN_SQUARE)));
24580 /* Return TRUE iff the next Nth tokens in the stream are possibly the
24581 beginning of a GNU extension attribute. */
24583 static bool
24584 cp_nth_tokens_can_be_gnu_attribute_p (cp_parser *parser, size_t n)
24586 cp_token *token = cp_lexer_peek_nth_token (parser->lexer, n);
24588 return token->type == CPP_KEYWORD && token->keyword == RID_ATTRIBUTE;
24591 /* Return true iff the next tokens can be the beginning of either a
24592 GNU attribute list, or a standard C++11 attribute sequence. */
24594 static bool
24595 cp_next_tokens_can_be_attribute_p (cp_parser *parser)
24597 return (cp_next_tokens_can_be_gnu_attribute_p (parser)
24598 || cp_next_tokens_can_be_std_attribute_p (parser));
24601 /* Return true iff the next Nth tokens can be the beginning of either
24602 a GNU attribute list, or a standard C++11 attribute sequence. */
24604 static bool
24605 cp_nth_tokens_can_be_attribute_p (cp_parser *parser, size_t n)
24607 return (cp_nth_tokens_can_be_gnu_attribute_p (parser, n)
24608 || cp_nth_tokens_can_be_std_attribute_p (parser, n));
24611 /* Parse either a standard C++-11 attribute-specifier-seq, or a series
24612 of GNU attributes, or return NULL. */
24614 static tree
24615 cp_parser_attributes_opt (cp_parser *parser)
24617 if (cp_next_tokens_can_be_gnu_attribute_p (parser))
24618 return cp_parser_gnu_attributes_opt (parser);
24619 return cp_parser_std_attribute_spec_seq (parser);
24622 #define CILK_SIMD_FN_CLAUSE_MASK \
24623 ((OMP_CLAUSE_MASK_1 << PRAGMA_CILK_CLAUSE_VECTORLENGTH) \
24624 | (OMP_CLAUSE_MASK_1 << PRAGMA_CILK_CLAUSE_LINEAR) \
24625 | (OMP_CLAUSE_MASK_1 << PRAGMA_CILK_CLAUSE_UNIFORM) \
24626 | (OMP_CLAUSE_MASK_1 << PRAGMA_CILK_CLAUSE_MASK) \
24627 | (OMP_CLAUSE_MASK_1 << PRAGMA_CILK_CLAUSE_NOMASK))
24629 /* Parses the Cilk Plus SIMD-enabled function's attribute. Syntax:
24630 vector [(<clauses>)] */
24632 static void
24633 cp_parser_cilk_simd_fn_vector_attrs (cp_parser *parser, cp_token *v_token)
24635 bool first_p = parser->cilk_simd_fn_info == NULL;
24636 cp_token *token = v_token;
24637 if (first_p)
24639 parser->cilk_simd_fn_info = XNEW (cp_omp_declare_simd_data);
24640 parser->cilk_simd_fn_info->error_seen = false;
24641 parser->cilk_simd_fn_info->fndecl_seen = false;
24642 parser->cilk_simd_fn_info->tokens = vNULL;
24643 parser->cilk_simd_fn_info->clauses = NULL_TREE;
24645 int paren_scope = 0;
24646 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
24648 cp_lexer_consume_token (parser->lexer);
24649 v_token = cp_lexer_peek_token (parser->lexer);
24650 paren_scope++;
24652 while (paren_scope > 0)
24654 token = cp_lexer_peek_token (parser->lexer);
24655 if (token->type == CPP_OPEN_PAREN)
24656 paren_scope++;
24657 else if (token->type == CPP_CLOSE_PAREN)
24658 paren_scope--;
24659 /* Do not push the last ')' */
24660 if (!(token->type == CPP_CLOSE_PAREN && paren_scope == 0))
24661 cp_lexer_consume_token (parser->lexer);
24664 token->type = CPP_PRAGMA_EOL;
24665 parser->lexer->next_token = token;
24666 cp_lexer_consume_token (parser->lexer);
24668 struct cp_token_cache *cp
24669 = cp_token_cache_new (v_token, cp_lexer_peek_token (parser->lexer));
24670 parser->cilk_simd_fn_info->tokens.safe_push (cp);
24673 /* Parse an (optional) series of attributes.
24675 attributes:
24676 attributes attribute
24678 attribute:
24679 __attribute__ (( attribute-list [opt] ))
24681 The return value is as for cp_parser_gnu_attribute_list. */
24683 static tree
24684 cp_parser_gnu_attributes_opt (cp_parser* parser)
24686 tree attributes = NULL_TREE;
24688 while (true)
24690 cp_token *token;
24691 tree attribute_list;
24692 bool ok = true;
24694 /* Peek at the next token. */
24695 token = cp_lexer_peek_token (parser->lexer);
24696 /* If it's not `__attribute__', then we're done. */
24697 if (token->keyword != RID_ATTRIBUTE)
24698 break;
24700 /* Consume the `__attribute__' keyword. */
24701 cp_lexer_consume_token (parser->lexer);
24702 /* Look for the two `(' tokens. */
24703 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
24704 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
24706 /* Peek at the next token. */
24707 token = cp_lexer_peek_token (parser->lexer);
24708 if (token->type != CPP_CLOSE_PAREN)
24709 /* Parse the attribute-list. */
24710 attribute_list = cp_parser_gnu_attribute_list (parser);
24711 else
24712 /* If the next token is a `)', then there is no attribute
24713 list. */
24714 attribute_list = NULL;
24716 /* Look for the two `)' tokens. */
24717 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
24718 ok = false;
24719 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
24720 ok = false;
24721 if (!ok)
24722 cp_parser_skip_to_end_of_statement (parser);
24724 /* Add these new attributes to the list. */
24725 attributes = chainon (attributes, attribute_list);
24728 return attributes;
24731 /* Parse a GNU attribute-list.
24733 attribute-list:
24734 attribute
24735 attribute-list , attribute
24737 attribute:
24738 identifier
24739 identifier ( identifier )
24740 identifier ( identifier , expression-list )
24741 identifier ( expression-list )
24743 Returns a TREE_LIST, or NULL_TREE on error. Each node corresponds
24744 to an attribute. The TREE_PURPOSE of each node is the identifier
24745 indicating which attribute is in use. The TREE_VALUE represents
24746 the arguments, if any. */
24748 static tree
24749 cp_parser_gnu_attribute_list (cp_parser* parser)
24751 tree attribute_list = NULL_TREE;
24752 bool save_translate_strings_p = parser->translate_strings_p;
24754 parser->translate_strings_p = false;
24755 while (true)
24757 cp_token *token;
24758 tree identifier;
24759 tree attribute;
24761 /* Look for the identifier. We also allow keywords here; for
24762 example `__attribute__ ((const))' is legal. */
24763 token = cp_lexer_peek_token (parser->lexer);
24764 if (token->type == CPP_NAME
24765 || token->type == CPP_KEYWORD)
24767 tree arguments = NULL_TREE;
24769 /* Consume the token, but save it since we need it for the
24770 SIMD enabled function parsing. */
24771 cp_token *id_token = cp_lexer_consume_token (parser->lexer);
24773 /* Save away the identifier that indicates which attribute
24774 this is. */
24775 identifier = (token->type == CPP_KEYWORD)
24776 /* For keywords, use the canonical spelling, not the
24777 parsed identifier. */
24778 ? ridpointers[(int) token->keyword]
24779 : id_token->u.value;
24781 attribute = build_tree_list (identifier, NULL_TREE);
24783 /* Peek at the next token. */
24784 token = cp_lexer_peek_token (parser->lexer);
24785 /* If it's an `(', then parse the attribute arguments. */
24786 if (token->type == CPP_OPEN_PAREN)
24788 vec<tree, va_gc> *vec;
24789 int attr_flag = (attribute_takes_identifier_p (identifier)
24790 ? id_attr : normal_attr);
24791 if (is_cilkplus_vector_p (identifier))
24793 cp_parser_cilk_simd_fn_vector_attrs (parser, id_token);
24794 continue;
24796 else
24797 vec = cp_parser_parenthesized_expression_list
24798 (parser, attr_flag, /*cast_p=*/false,
24799 /*allow_expansion_p=*/false,
24800 /*non_constant_p=*/NULL);
24801 if (vec == NULL)
24802 arguments = error_mark_node;
24803 else
24805 arguments = build_tree_list_vec (vec);
24806 release_tree_vector (vec);
24808 /* Save the arguments away. */
24809 TREE_VALUE (attribute) = arguments;
24811 else if (is_cilkplus_vector_p (identifier))
24813 cp_parser_cilk_simd_fn_vector_attrs (parser, id_token);
24814 continue;
24817 if (arguments != error_mark_node)
24819 /* Add this attribute to the list. */
24820 TREE_CHAIN (attribute) = attribute_list;
24821 attribute_list = attribute;
24824 token = cp_lexer_peek_token (parser->lexer);
24826 /* Now, look for more attributes. If the next token isn't a
24827 `,', we're done. */
24828 if (token->type != CPP_COMMA)
24829 break;
24831 /* Consume the comma and keep going. */
24832 cp_lexer_consume_token (parser->lexer);
24834 parser->translate_strings_p = save_translate_strings_p;
24836 /* We built up the list in reverse order. */
24837 return nreverse (attribute_list);
24840 /* Parse a standard C++11 attribute.
24842 The returned representation is a TREE_LIST which TREE_PURPOSE is
24843 the scoped name of the attribute, and the TREE_VALUE is its
24844 arguments list.
24846 Note that the scoped name of the attribute is itself a TREE_LIST
24847 which TREE_PURPOSE is the namespace of the attribute, and
24848 TREE_VALUE its name. This is unlike a GNU attribute -- as parsed
24849 by cp_parser_gnu_attribute_list -- that doesn't have any namespace
24850 and which TREE_PURPOSE is directly the attribute name.
24852 Clients of the attribute code should use get_attribute_namespace
24853 and get_attribute_name to get the actual namespace and name of
24854 attributes, regardless of their being GNU or C++11 attributes.
24856 attribute:
24857 attribute-token attribute-argument-clause [opt]
24859 attribute-token:
24860 identifier
24861 attribute-scoped-token
24863 attribute-scoped-token:
24864 attribute-namespace :: identifier
24866 attribute-namespace:
24867 identifier
24869 attribute-argument-clause:
24870 ( balanced-token-seq )
24872 balanced-token-seq:
24873 balanced-token [opt]
24874 balanced-token-seq balanced-token
24876 balanced-token:
24877 ( balanced-token-seq )
24878 [ balanced-token-seq ]
24879 { balanced-token-seq }. */
24881 static tree
24882 cp_parser_std_attribute (cp_parser *parser, tree attr_ns)
24884 tree attribute, attr_id = NULL_TREE, arguments;
24885 cp_token *token;
24887 /* First, parse name of the attribute, a.k.a attribute-token. */
24889 token = cp_lexer_peek_token (parser->lexer);
24890 if (token->type == CPP_NAME)
24891 attr_id = token->u.value;
24892 else if (token->type == CPP_KEYWORD)
24893 attr_id = ridpointers[(int) token->keyword];
24894 else if (token->flags & NAMED_OP)
24895 attr_id = get_identifier (cpp_type2name (token->type, token->flags));
24897 if (attr_id == NULL_TREE)
24898 return NULL_TREE;
24900 cp_lexer_consume_token (parser->lexer);
24902 token = cp_lexer_peek_token (parser->lexer);
24903 if (token->type == CPP_SCOPE)
24905 /* We are seeing a scoped attribute token. */
24907 cp_lexer_consume_token (parser->lexer);
24908 if (attr_ns)
24909 error_at (token->location, "attribute using prefix used together "
24910 "with scoped attribute token");
24911 attr_ns = attr_id;
24913 token = cp_lexer_consume_token (parser->lexer);
24914 if (token->type == CPP_NAME)
24915 attr_id = token->u.value;
24916 else if (token->type == CPP_KEYWORD)
24917 attr_id = ridpointers[(int) token->keyword];
24918 else if (token->flags & NAMED_OP)
24919 attr_id = get_identifier (cpp_type2name (token->type, token->flags));
24920 else
24922 error_at (token->location,
24923 "expected an identifier for the attribute name");
24924 return error_mark_node;
24926 attribute = build_tree_list (build_tree_list (attr_ns, attr_id),
24927 NULL_TREE);
24928 token = cp_lexer_peek_token (parser->lexer);
24930 else if (attr_ns)
24931 attribute = build_tree_list (build_tree_list (attr_ns, attr_id),
24932 NULL_TREE);
24933 else
24935 attribute = build_tree_list (build_tree_list (NULL_TREE, attr_id),
24936 NULL_TREE);
24937 /* C++11 noreturn attribute is equivalent to GNU's. */
24938 if (is_attribute_p ("noreturn", attr_id))
24939 TREE_PURPOSE (TREE_PURPOSE (attribute)) = get_identifier ("gnu");
24940 /* C++14 deprecated attribute is equivalent to GNU's. */
24941 else if (is_attribute_p ("deprecated", attr_id))
24942 TREE_PURPOSE (TREE_PURPOSE (attribute)) = get_identifier ("gnu");
24943 /* C++17 fallthrough attribute is equivalent to GNU's. */
24944 else if (is_attribute_p ("fallthrough", attr_id))
24945 TREE_PURPOSE (TREE_PURPOSE (attribute)) = get_identifier ("gnu");
24946 /* Transactional Memory TS optimize_for_synchronized attribute is
24947 equivalent to GNU transaction_callable. */
24948 else if (is_attribute_p ("optimize_for_synchronized", attr_id))
24949 TREE_PURPOSE (attribute)
24950 = get_identifier ("transaction_callable");
24951 /* Transactional Memory attributes are GNU attributes. */
24952 else if (tm_attr_to_mask (attr_id))
24953 TREE_PURPOSE (attribute) = attr_id;
24956 /* Now parse the optional argument clause of the attribute. */
24958 if (token->type != CPP_OPEN_PAREN)
24959 return attribute;
24962 vec<tree, va_gc> *vec;
24963 int attr_flag = normal_attr;
24965 if (attr_ns == get_identifier ("gnu")
24966 && attribute_takes_identifier_p (attr_id))
24967 /* A GNU attribute that takes an identifier in parameter. */
24968 attr_flag = id_attr;
24970 vec = cp_parser_parenthesized_expression_list
24971 (parser, attr_flag, /*cast_p=*/false,
24972 /*allow_expansion_p=*/true,
24973 /*non_constant_p=*/NULL);
24974 if (vec == NULL)
24975 arguments = error_mark_node;
24976 else
24978 arguments = build_tree_list_vec (vec);
24979 release_tree_vector (vec);
24982 if (arguments == error_mark_node)
24983 attribute = error_mark_node;
24984 else
24985 TREE_VALUE (attribute) = arguments;
24988 return attribute;
24991 /* Check that the attribute ATTRIBUTE appears at most once in the
24992 attribute-list ATTRIBUTES. This is enforced for noreturn (7.6.3)
24993 and deprecated (7.6.5). Note that carries_dependency (7.6.4)
24994 isn't implemented yet in GCC. */
24996 static void
24997 cp_parser_check_std_attribute (tree attributes, tree attribute)
24999 if (attributes)
25001 tree name = get_attribute_name (attribute);
25002 if (is_attribute_p ("noreturn", name)
25003 && lookup_attribute ("noreturn", attributes))
25004 error ("attribute %<noreturn%> can appear at most once "
25005 "in an attribute-list");
25006 else if (is_attribute_p ("deprecated", name)
25007 && lookup_attribute ("deprecated", attributes))
25008 error ("attribute %<deprecated%> can appear at most once "
25009 "in an attribute-list");
25013 /* Parse a list of standard C++-11 attributes.
25015 attribute-list:
25016 attribute [opt]
25017 attribute-list , attribute[opt]
25018 attribute ...
25019 attribute-list , attribute ...
25022 static tree
25023 cp_parser_std_attribute_list (cp_parser *parser, tree attr_ns)
25025 tree attributes = NULL_TREE, attribute = NULL_TREE;
25026 cp_token *token = NULL;
25028 while (true)
25030 attribute = cp_parser_std_attribute (parser, attr_ns);
25031 if (attribute == error_mark_node)
25032 break;
25033 if (attribute != NULL_TREE)
25035 cp_parser_check_std_attribute (attributes, attribute);
25036 TREE_CHAIN (attribute) = attributes;
25037 attributes = attribute;
25039 token = cp_lexer_peek_token (parser->lexer);
25040 if (token->type == CPP_ELLIPSIS)
25042 cp_lexer_consume_token (parser->lexer);
25043 if (attribute == NULL_TREE)
25044 error_at (token->location,
25045 "expected attribute before %<...%>");
25046 else
25048 tree pack = make_pack_expansion (TREE_VALUE (attribute));
25049 if (pack == error_mark_node)
25050 return error_mark_node;
25051 TREE_VALUE (attribute) = pack;
25053 token = cp_lexer_peek_token (parser->lexer);
25055 if (token->type != CPP_COMMA)
25056 break;
25057 cp_lexer_consume_token (parser->lexer);
25059 attributes = nreverse (attributes);
25060 return attributes;
25063 /* Parse a standard C++-11 attribute specifier.
25065 attribute-specifier:
25066 [ [ attribute-using-prefix [opt] attribute-list ] ]
25067 alignment-specifier
25069 attribute-using-prefix:
25070 using attribute-namespace :
25072 alignment-specifier:
25073 alignas ( type-id ... [opt] )
25074 alignas ( alignment-expression ... [opt] ). */
25076 static tree
25077 cp_parser_std_attribute_spec (cp_parser *parser)
25079 tree attributes = NULL_TREE;
25080 cp_token *token = cp_lexer_peek_token (parser->lexer);
25082 if (token->type == CPP_OPEN_SQUARE
25083 && cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_OPEN_SQUARE)
25085 tree attr_ns = NULL_TREE;
25087 cp_lexer_consume_token (parser->lexer);
25088 cp_lexer_consume_token (parser->lexer);
25090 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_USING))
25092 token = cp_lexer_peek_nth_token (parser->lexer, 2);
25093 if (token->type == CPP_NAME)
25094 attr_ns = token->u.value;
25095 else if (token->type == CPP_KEYWORD)
25096 attr_ns = ridpointers[(int) token->keyword];
25097 else if (token->flags & NAMED_OP)
25098 attr_ns = get_identifier (cpp_type2name (token->type,
25099 token->flags));
25100 if (attr_ns
25101 && cp_lexer_nth_token_is (parser->lexer, 3, CPP_COLON))
25103 if (cxx_dialect < cxx1z
25104 && !in_system_header_at (input_location))
25105 pedwarn (input_location, 0,
25106 "attribute using prefix only available "
25107 "with -std=c++1z or -std=gnu++1z");
25109 cp_lexer_consume_token (parser->lexer);
25110 cp_lexer_consume_token (parser->lexer);
25111 cp_lexer_consume_token (parser->lexer);
25113 else
25114 attr_ns = NULL_TREE;
25117 attributes = cp_parser_std_attribute_list (parser, attr_ns);
25119 if (!cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE)
25120 || !cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE))
25121 cp_parser_skip_to_end_of_statement (parser);
25122 else
25123 /* Warn about parsing c++11 attribute in non-c++1 mode, only
25124 when we are sure that we have actually parsed them. */
25125 maybe_warn_cpp0x (CPP0X_ATTRIBUTES);
25127 else
25129 tree alignas_expr;
25131 /* Look for an alignment-specifier. */
25133 token = cp_lexer_peek_token (parser->lexer);
25135 if (token->type != CPP_KEYWORD
25136 || token->keyword != RID_ALIGNAS)
25137 return NULL_TREE;
25139 cp_lexer_consume_token (parser->lexer);
25140 maybe_warn_cpp0x (CPP0X_ATTRIBUTES);
25142 if (cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN) == NULL)
25144 cp_parser_error (parser, "expected %<(%>");
25145 return error_mark_node;
25148 cp_parser_parse_tentatively (parser);
25149 alignas_expr = cp_parser_type_id (parser);
25151 if (!cp_parser_parse_definitely (parser))
25153 alignas_expr = cp_parser_assignment_expression (parser);
25154 if (alignas_expr == error_mark_node)
25155 cp_parser_skip_to_end_of_statement (parser);
25156 if (alignas_expr == NULL_TREE
25157 || alignas_expr == error_mark_node)
25158 return alignas_expr;
25161 alignas_expr = cxx_alignas_expr (alignas_expr);
25162 alignas_expr = build_tree_list (NULL_TREE, alignas_expr);
25164 /* Handle alignas (pack...). */
25165 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
25167 cp_lexer_consume_token (parser->lexer);
25168 alignas_expr = make_pack_expansion (alignas_expr);
25171 /* Something went wrong, so don't build the attribute. */
25172 if (alignas_expr == error_mark_node)
25173 return error_mark_node;
25175 if (cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN) == NULL)
25177 cp_parser_error (parser, "expected %<)%>");
25178 return error_mark_node;
25181 /* Build the C++-11 representation of an 'aligned'
25182 attribute. */
25183 attributes =
25184 build_tree_list (build_tree_list (get_identifier ("gnu"),
25185 get_identifier ("aligned")),
25186 alignas_expr);
25189 return attributes;
25192 /* Parse a standard C++-11 attribute-specifier-seq.
25194 attribute-specifier-seq:
25195 attribute-specifier-seq [opt] attribute-specifier
25198 static tree
25199 cp_parser_std_attribute_spec_seq (cp_parser *parser)
25201 tree attr_specs = NULL_TREE;
25202 tree attr_last = NULL_TREE;
25204 while (true)
25206 tree attr_spec = cp_parser_std_attribute_spec (parser);
25207 if (attr_spec == NULL_TREE)
25208 break;
25209 if (attr_spec == error_mark_node)
25210 return error_mark_node;
25212 if (attr_last)
25213 TREE_CHAIN (attr_last) = attr_spec;
25214 else
25215 attr_specs = attr_last = attr_spec;
25216 attr_last = tree_last (attr_last);
25219 return attr_specs;
25222 /* Parse an optional `__extension__' keyword. Returns TRUE if it is
25223 present, and FALSE otherwise. *SAVED_PEDANTIC is set to the
25224 current value of the PEDANTIC flag, regardless of whether or not
25225 the `__extension__' keyword is present. The caller is responsible
25226 for restoring the value of the PEDANTIC flag. */
25228 static bool
25229 cp_parser_extension_opt (cp_parser* parser, int* saved_pedantic)
25231 /* Save the old value of the PEDANTIC flag. */
25232 *saved_pedantic = pedantic;
25234 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_EXTENSION))
25236 /* Consume the `__extension__' token. */
25237 cp_lexer_consume_token (parser->lexer);
25238 /* We're not being pedantic while the `__extension__' keyword is
25239 in effect. */
25240 pedantic = 0;
25242 return true;
25245 return false;
25248 /* Parse a label declaration.
25250 label-declaration:
25251 __label__ label-declarator-seq ;
25253 label-declarator-seq:
25254 identifier , label-declarator-seq
25255 identifier */
25257 static void
25258 cp_parser_label_declaration (cp_parser* parser)
25260 /* Look for the `__label__' keyword. */
25261 cp_parser_require_keyword (parser, RID_LABEL, RT_LABEL);
25263 while (true)
25265 tree identifier;
25267 /* Look for an identifier. */
25268 identifier = cp_parser_identifier (parser);
25269 /* If we failed, stop. */
25270 if (identifier == error_mark_node)
25271 break;
25272 /* Declare it as a label. */
25273 finish_label_decl (identifier);
25274 /* If the next token is a `;', stop. */
25275 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
25276 break;
25277 /* Look for the `,' separating the label declarations. */
25278 cp_parser_require (parser, CPP_COMMA, RT_COMMA);
25281 /* Look for the final `;'. */
25282 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
25285 // -------------------------------------------------------------------------- //
25286 // Requires Clause
25288 // Parse a requires clause.
25290 // requires-clause:
25291 // 'requires' logical-or-expression
25293 // The required logical-or-expression must be a constant expression. Note
25294 // that we don't check that the expression is constepxr here. We defer until
25295 // we analyze constraints and then, we only check atomic constraints.
25296 static tree
25297 cp_parser_requires_clause (cp_parser *parser)
25299 // Parse the requires clause so that it is not automatically folded.
25300 ++processing_template_decl;
25301 tree expr = cp_parser_binary_expression (parser, false, false,
25302 PREC_NOT_OPERATOR, NULL);
25303 if (check_for_bare_parameter_packs (expr))
25304 expr = error_mark_node;
25305 --processing_template_decl;
25306 return expr;
25309 // Optionally parse a requires clause:
25310 static tree
25311 cp_parser_requires_clause_opt (cp_parser *parser)
25313 cp_token *tok = cp_lexer_peek_token (parser->lexer);
25314 if (tok->keyword != RID_REQUIRES)
25316 if (!flag_concepts && tok->type == CPP_NAME
25317 && tok->u.value == ridpointers[RID_REQUIRES])
25319 error_at (cp_lexer_peek_token (parser->lexer)->location,
25320 "%<requires%> only available with -fconcepts");
25321 /* Parse and discard the requires-clause. */
25322 cp_lexer_consume_token (parser->lexer);
25323 cp_parser_requires_clause (parser);
25325 return NULL_TREE;
25327 cp_lexer_consume_token (parser->lexer);
25328 return cp_parser_requires_clause (parser);
25332 /*---------------------------------------------------------------------------
25333 Requires expressions
25334 ---------------------------------------------------------------------------*/
25336 /* Parse a requires expression
25338 requirement-expression:
25339 'requires' requirement-parameter-list [opt] requirement-body */
25340 static tree
25341 cp_parser_requires_expression (cp_parser *parser)
25343 gcc_assert (cp_lexer_next_token_is_keyword (parser->lexer, RID_REQUIRES));
25344 location_t loc = cp_lexer_consume_token (parser->lexer)->location;
25346 /* A requires-expression shall appear only within a concept
25347 definition or a requires-clause.
25349 TODO: Implement this diagnostic correctly. */
25350 if (!processing_template_decl)
25352 error_at (loc, "a requires expression cannot appear outside a template");
25353 cp_parser_skip_to_end_of_statement (parser);
25354 return error_mark_node;
25357 tree parms, reqs;
25359 /* Local parameters are delared as variables within the scope
25360 of the expression. They are not visible past the end of
25361 the expression. Expressions within the requires-expression
25362 are unevaluated. */
25363 struct scope_sentinel
25365 scope_sentinel ()
25367 ++cp_unevaluated_operand;
25368 begin_scope (sk_block, NULL_TREE);
25371 ~scope_sentinel ()
25373 pop_bindings_and_leave_scope ();
25374 --cp_unevaluated_operand;
25376 } s;
25378 /* Parse the optional parameter list. */
25379 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
25381 parms = cp_parser_requirement_parameter_list (parser);
25382 if (parms == error_mark_node)
25383 return error_mark_node;
25385 else
25386 parms = NULL_TREE;
25388 /* Parse the requirement body. */
25389 reqs = cp_parser_requirement_body (parser);
25390 if (reqs == error_mark_node)
25391 return error_mark_node;
25394 /* This needs to happen after pop_bindings_and_leave_scope, as it reverses
25395 the parm chain. */
25396 grokparms (parms, &parms);
25397 return finish_requires_expr (parms, reqs);
25400 /* Parse a parameterized requirement.
25402 requirement-parameter-list:
25403 '(' parameter-declaration-clause ')' */
25404 static tree
25405 cp_parser_requirement_parameter_list (cp_parser *parser)
25407 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
25408 return error_mark_node;
25410 tree parms = cp_parser_parameter_declaration_clause (parser);
25412 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
25413 return error_mark_node;
25415 return parms;
25418 /* Parse the body of a requirement.
25420 requirement-body:
25421 '{' requirement-list '}' */
25422 static tree
25423 cp_parser_requirement_body (cp_parser *parser)
25425 if (!cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
25426 return error_mark_node;
25428 tree reqs = cp_parser_requirement_list (parser);
25430 if (!cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE))
25431 return error_mark_node;
25433 return reqs;
25436 /* Parse a list of requirements.
25438 requirement-list:
25439 requirement
25440 requirement-list ';' requirement[opt] */
25441 static tree
25442 cp_parser_requirement_list (cp_parser *parser)
25444 tree result = NULL_TREE;
25445 while (true)
25447 tree req = cp_parser_requirement (parser);
25448 if (req == error_mark_node)
25449 return error_mark_node;
25451 result = tree_cons (NULL_TREE, req, result);
25453 /* If we see a semi-colon, consume it. */
25454 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
25455 cp_lexer_consume_token (parser->lexer);
25457 /* Stop processing at the end of the list. */
25458 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
25459 break;
25462 /* Reverse the order of requirements so they are analyzed in
25463 declaration order. */
25464 return nreverse (result);
25467 /* Parse a syntactic requirement or type requirement.
25469 requirement:
25470 simple-requirement
25471 compound-requirement
25472 type-requirement
25473 nested-requirement */
25474 static tree
25475 cp_parser_requirement (cp_parser *parser)
25477 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
25478 return cp_parser_compound_requirement (parser);
25479 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TYPENAME))
25480 return cp_parser_type_requirement (parser);
25481 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_REQUIRES))
25482 return cp_parser_nested_requirement (parser);
25483 else
25484 return cp_parser_simple_requirement (parser);
25487 /* Parse a simple requirement.
25489 simple-requirement:
25490 expression ';' */
25491 static tree
25492 cp_parser_simple_requirement (cp_parser *parser)
25494 tree expr = cp_parser_expression (parser, NULL, false, false);
25495 if (!expr || expr == error_mark_node)
25496 return error_mark_node;
25498 if (!cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON))
25499 return error_mark_node;
25501 return finish_simple_requirement (expr);
25504 /* Parse a type requirement
25506 type-requirement
25507 nested-name-specifier [opt] required-type-name ';'
25509 required-type-name:
25510 type-name
25511 'template' [opt] simple-template-id */
25512 static tree
25513 cp_parser_type_requirement (cp_parser *parser)
25515 cp_lexer_consume_token (parser->lexer);
25517 // Save the scope before parsing name specifiers.
25518 tree saved_scope = parser->scope;
25519 tree saved_object_scope = parser->object_scope;
25520 tree saved_qualifying_scope = parser->qualifying_scope;
25521 cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/true);
25522 cp_parser_nested_name_specifier_opt (parser,
25523 /*typename_keyword_p=*/true,
25524 /*check_dependency_p=*/false,
25525 /*type_p=*/true,
25526 /*is_declaration=*/false);
25528 tree type;
25529 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
25531 cp_lexer_consume_token (parser->lexer);
25532 type = cp_parser_template_id (parser,
25533 /*template_keyword_p=*/true,
25534 /*check_dependency=*/false,
25535 /*tag_type=*/none_type,
25536 /*is_declaration=*/false);
25537 type = make_typename_type (parser->scope, type, typename_type,
25538 /*complain=*/tf_error);
25540 else
25541 type = cp_parser_type_name (parser, /*typename_keyword_p=*/true);
25543 if (TREE_CODE (type) == TYPE_DECL)
25544 type = TREE_TYPE (type);
25546 parser->scope = saved_scope;
25547 parser->object_scope = saved_object_scope;
25548 parser->qualifying_scope = saved_qualifying_scope;
25550 if (type == error_mark_node)
25551 cp_parser_skip_to_end_of_statement (parser);
25553 if (!cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON))
25554 return error_mark_node;
25555 if (type == error_mark_node)
25556 return error_mark_node;
25558 return finish_type_requirement (type);
25561 /* Parse a compound requirement
25563 compound-requirement:
25564 '{' expression '}' 'noexcept' [opt] trailing-return-type [opt] ';' */
25565 static tree
25566 cp_parser_compound_requirement (cp_parser *parser)
25568 /* Parse an expression enclosed in '{ }'s. */
25569 if (!cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
25570 return error_mark_node;
25572 tree expr = cp_parser_expression (parser, NULL, false, false);
25573 if (!expr || expr == error_mark_node)
25574 return error_mark_node;
25576 if (!cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE))
25577 return error_mark_node;
25579 /* Parse the optional noexcept. */
25580 bool noexcept_p = false;
25581 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_NOEXCEPT))
25583 cp_lexer_consume_token (parser->lexer);
25584 noexcept_p = true;
25587 /* Parse the optional trailing return type. */
25588 tree type = NULL_TREE;
25589 if (cp_lexer_next_token_is (parser->lexer, CPP_DEREF))
25591 cp_lexer_consume_token (parser->lexer);
25592 bool saved_result_type_constraint_p = parser->in_result_type_constraint_p;
25593 parser->in_result_type_constraint_p = true;
25594 type = cp_parser_trailing_type_id (parser);
25595 parser->in_result_type_constraint_p = saved_result_type_constraint_p;
25596 if (type == error_mark_node)
25597 return error_mark_node;
25600 return finish_compound_requirement (expr, type, noexcept_p);
25603 /* Parse a nested requirement. This is the same as a requires clause.
25605 nested-requirement:
25606 requires-clause */
25607 static tree
25608 cp_parser_nested_requirement (cp_parser *parser)
25610 cp_lexer_consume_token (parser->lexer);
25611 tree req = cp_parser_requires_clause (parser);
25612 if (req == error_mark_node)
25613 return error_mark_node;
25614 return finish_nested_requirement (req);
25617 /* Support Functions */
25619 /* Return the appropriate prefer_type argument for lookup_name_real based on
25620 tag_type and template_mem_access. */
25622 static inline int
25623 prefer_type_arg (tag_types tag_type, bool template_mem_access = false)
25625 /* DR 141: When looking in the current enclosing context for a template-name
25626 after -> or ., only consider class templates. */
25627 if (template_mem_access)
25628 return 2;
25629 switch (tag_type)
25631 case none_type: return 0; // No preference.
25632 case scope_type: return 1; // Type or namespace.
25633 default: return 2; // Type only.
25637 /* Looks up NAME in the current scope, as given by PARSER->SCOPE.
25638 NAME should have one of the representations used for an
25639 id-expression. If NAME is the ERROR_MARK_NODE, the ERROR_MARK_NODE
25640 is returned. If PARSER->SCOPE is a dependent type, then a
25641 SCOPE_REF is returned.
25643 If NAME is a TEMPLATE_ID_EXPR, then it will be immediately
25644 returned; the name was already resolved when the TEMPLATE_ID_EXPR
25645 was formed. Abstractly, such entities should not be passed to this
25646 function, because they do not need to be looked up, but it is
25647 simpler to check for this special case here, rather than at the
25648 call-sites.
25650 In cases not explicitly covered above, this function returns a
25651 DECL, OVERLOAD, or baselink representing the result of the lookup.
25652 If there was no entity with the indicated NAME, the ERROR_MARK_NODE
25653 is returned.
25655 If TAG_TYPE is not NONE_TYPE, it indicates an explicit type keyword
25656 (e.g., "struct") that was used. In that case bindings that do not
25657 refer to types are ignored.
25659 If IS_TEMPLATE is TRUE, bindings that do not refer to templates are
25660 ignored.
25662 If IS_NAMESPACE is TRUE, bindings that do not refer to namespaces
25663 are ignored.
25665 If CHECK_DEPENDENCY is TRUE, names are not looked up in dependent
25666 types.
25668 If AMBIGUOUS_DECLS is non-NULL, *AMBIGUOUS_DECLS is set to a
25669 TREE_LIST of candidates if name-lookup results in an ambiguity, and
25670 NULL_TREE otherwise. */
25672 static cp_expr
25673 cp_parser_lookup_name (cp_parser *parser, tree name,
25674 enum tag_types tag_type,
25675 bool is_template,
25676 bool is_namespace,
25677 bool check_dependency,
25678 tree *ambiguous_decls,
25679 location_t name_location)
25681 tree decl;
25682 tree object_type = parser->context->object_type;
25684 /* Assume that the lookup will be unambiguous. */
25685 if (ambiguous_decls)
25686 *ambiguous_decls = NULL_TREE;
25688 /* Now that we have looked up the name, the OBJECT_TYPE (if any) is
25689 no longer valid. Note that if we are parsing tentatively, and
25690 the parse fails, OBJECT_TYPE will be automatically restored. */
25691 parser->context->object_type = NULL_TREE;
25693 if (name == error_mark_node)
25694 return error_mark_node;
25696 /* A template-id has already been resolved; there is no lookup to
25697 do. */
25698 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
25699 return name;
25700 if (BASELINK_P (name))
25702 gcc_assert (TREE_CODE (BASELINK_FUNCTIONS (name))
25703 == TEMPLATE_ID_EXPR);
25704 return name;
25707 /* A BIT_NOT_EXPR is used to represent a destructor. By this point,
25708 it should already have been checked to make sure that the name
25709 used matches the type being destroyed. */
25710 if (TREE_CODE (name) == BIT_NOT_EXPR)
25712 tree type;
25714 /* Figure out to which type this destructor applies. */
25715 if (parser->scope)
25716 type = parser->scope;
25717 else if (object_type)
25718 type = object_type;
25719 else
25720 type = current_class_type;
25721 /* If that's not a class type, there is no destructor. */
25722 if (!type || !CLASS_TYPE_P (type))
25723 return error_mark_node;
25725 if (CLASSTYPE_LAZY_DESTRUCTOR (type))
25726 lazily_declare_fn (sfk_destructor, type);
25728 if (tree dtor = CLASSTYPE_DESTRUCTOR (type))
25729 return dtor;
25731 return error_mark_node;
25734 /* By this point, the NAME should be an ordinary identifier. If
25735 the id-expression was a qualified name, the qualifying scope is
25736 stored in PARSER->SCOPE at this point. */
25737 gcc_assert (identifier_p (name));
25739 /* Perform the lookup. */
25740 if (parser->scope)
25742 bool dependent_p;
25744 if (parser->scope == error_mark_node)
25745 return error_mark_node;
25747 /* If the SCOPE is dependent, the lookup must be deferred until
25748 the template is instantiated -- unless we are explicitly
25749 looking up names in uninstantiated templates. Even then, we
25750 cannot look up the name if the scope is not a class type; it
25751 might, for example, be a template type parameter. */
25752 dependent_p = (TYPE_P (parser->scope)
25753 && dependent_scope_p (parser->scope));
25754 if ((check_dependency || !CLASS_TYPE_P (parser->scope))
25755 && dependent_p)
25756 /* Defer lookup. */
25757 decl = error_mark_node;
25758 else
25760 tree pushed_scope = NULL_TREE;
25762 /* If PARSER->SCOPE is a dependent type, then it must be a
25763 class type, and we must not be checking dependencies;
25764 otherwise, we would have processed this lookup above. So
25765 that PARSER->SCOPE is not considered a dependent base by
25766 lookup_member, we must enter the scope here. */
25767 if (dependent_p)
25768 pushed_scope = push_scope (parser->scope);
25770 /* If the PARSER->SCOPE is a template specialization, it
25771 may be instantiated during name lookup. In that case,
25772 errors may be issued. Even if we rollback the current
25773 tentative parse, those errors are valid. */
25774 decl = lookup_qualified_name (parser->scope, name,
25775 prefer_type_arg (tag_type),
25776 /*complain=*/true);
25778 /* 3.4.3.1: In a lookup in which the constructor is an acceptable
25779 lookup result and the nested-name-specifier nominates a class C:
25780 * if the name specified after the nested-name-specifier, when
25781 looked up in C, is the injected-class-name of C (Clause 9), or
25782 * if the name specified after the nested-name-specifier is the
25783 same as the identifier or the simple-template-id's template-
25784 name in the last component of the nested-name-specifier,
25785 the name is instead considered to name the constructor of
25786 class C. [ Note: for example, the constructor is not an
25787 acceptable lookup result in an elaborated-type-specifier so
25788 the constructor would not be used in place of the
25789 injected-class-name. --end note ] Such a constructor name
25790 shall be used only in the declarator-id of a declaration that
25791 names a constructor or in a using-declaration. */
25792 if (tag_type == none_type
25793 && DECL_SELF_REFERENCE_P (decl)
25794 && same_type_p (DECL_CONTEXT (decl), parser->scope))
25795 decl = lookup_qualified_name (parser->scope, ctor_identifier,
25796 prefer_type_arg (tag_type),
25797 /*complain=*/true);
25799 /* If we have a single function from a using decl, pull it out. */
25800 if (TREE_CODE (decl) == OVERLOAD
25801 && !really_overloaded_fn (decl))
25802 decl = OVL_FUNCTION (decl);
25804 if (pushed_scope)
25805 pop_scope (pushed_scope);
25808 /* If the scope is a dependent type and either we deferred lookup or
25809 we did lookup but didn't find the name, rememeber the name. */
25810 if (decl == error_mark_node && TYPE_P (parser->scope)
25811 && dependent_type_p (parser->scope))
25813 if (tag_type)
25815 tree type;
25817 /* The resolution to Core Issue 180 says that `struct
25818 A::B' should be considered a type-name, even if `A'
25819 is dependent. */
25820 type = make_typename_type (parser->scope, name, tag_type,
25821 /*complain=*/tf_error);
25822 if (type != error_mark_node)
25823 decl = TYPE_NAME (type);
25825 else if (is_template
25826 && (cp_parser_next_token_ends_template_argument_p (parser)
25827 || cp_lexer_next_token_is (parser->lexer,
25828 CPP_CLOSE_PAREN)))
25829 decl = make_unbound_class_template (parser->scope,
25830 name, NULL_TREE,
25831 /*complain=*/tf_error);
25832 else
25833 decl = build_qualified_name (/*type=*/NULL_TREE,
25834 parser->scope, name,
25835 is_template);
25837 parser->qualifying_scope = parser->scope;
25838 parser->object_scope = NULL_TREE;
25840 else if (object_type)
25842 /* Look up the name in the scope of the OBJECT_TYPE, unless the
25843 OBJECT_TYPE is not a class. */
25844 if (CLASS_TYPE_P (object_type))
25845 /* If the OBJECT_TYPE is a template specialization, it may
25846 be instantiated during name lookup. In that case, errors
25847 may be issued. Even if we rollback the current tentative
25848 parse, those errors are valid. */
25849 decl = lookup_member (object_type,
25850 name,
25851 /*protect=*/0,
25852 prefer_type_arg (tag_type),
25853 tf_warning_or_error);
25854 else
25855 decl = NULL_TREE;
25857 if (!decl)
25859 /* Look it up in the enclosing context. */
25860 decl = lookup_name_real (name, prefer_type_arg (tag_type),
25861 /*nonclass=*/0,
25862 /*block_p=*/true, is_namespace, 0);
25863 /* DR 141 says when looking for a template-name after -> or ., only
25864 consider class templates. */
25865 if (decl && is_template && !DECL_TYPE_TEMPLATE_P (decl))
25867 tree d = decl;
25868 if (is_overloaded_fn (d))
25869 d = get_first_fn (d);
25870 if (DECL_P (d) && !DECL_CLASS_SCOPE_P (d))
25871 decl = NULL_TREE;
25874 if (object_type == unknown_type_node)
25875 /* The object is type-dependent, so we can't look anything up; we used
25876 this to get the DR 141 behavior. */
25877 object_type = NULL_TREE;
25878 parser->object_scope = object_type;
25879 parser->qualifying_scope = NULL_TREE;
25881 else
25883 decl = lookup_name_real (name, prefer_type_arg (tag_type),
25884 /*nonclass=*/0,
25885 /*block_p=*/true, is_namespace, 0);
25886 parser->qualifying_scope = NULL_TREE;
25887 parser->object_scope = NULL_TREE;
25890 /* If the lookup failed, let our caller know. */
25891 if (!decl || decl == error_mark_node)
25892 return error_mark_node;
25894 /* Pull out the template from an injected-class-name (or multiple). */
25895 if (is_template)
25896 decl = maybe_get_template_decl_from_type_decl (decl);
25898 /* If it's a TREE_LIST, the result of the lookup was ambiguous. */
25899 if (TREE_CODE (decl) == TREE_LIST)
25901 if (ambiguous_decls)
25902 *ambiguous_decls = decl;
25903 /* The error message we have to print is too complicated for
25904 cp_parser_error, so we incorporate its actions directly. */
25905 if (!cp_parser_simulate_error (parser))
25907 error_at (name_location, "reference to %qD is ambiguous",
25908 name);
25909 print_candidates (decl);
25911 return error_mark_node;
25914 gcc_assert (DECL_P (decl)
25915 || TREE_CODE (decl) == OVERLOAD
25916 || TREE_CODE (decl) == SCOPE_REF
25917 || TREE_CODE (decl) == UNBOUND_CLASS_TEMPLATE
25918 || BASELINK_P (decl));
25920 /* If we have resolved the name of a member declaration, check to
25921 see if the declaration is accessible. When the name resolves to
25922 set of overloaded functions, accessibility is checked when
25923 overload resolution is done.
25925 During an explicit instantiation, access is not checked at all,
25926 as per [temp.explicit]. */
25927 if (DECL_P (decl))
25928 check_accessibility_of_qualified_id (decl, object_type, parser->scope);
25930 maybe_record_typedef_use (decl);
25932 return cp_expr (decl, name_location);
25935 /* Like cp_parser_lookup_name, but for use in the typical case where
25936 CHECK_ACCESS is TRUE, IS_TYPE is FALSE, IS_TEMPLATE is FALSE,
25937 IS_NAMESPACE is FALSE, and CHECK_DEPENDENCY is TRUE. */
25939 static tree
25940 cp_parser_lookup_name_simple (cp_parser* parser, tree name, location_t location)
25942 return cp_parser_lookup_name (parser, name,
25943 none_type,
25944 /*is_template=*/false,
25945 /*is_namespace=*/false,
25946 /*check_dependency=*/true,
25947 /*ambiguous_decls=*/NULL,
25948 location);
25951 /* If DECL is a TEMPLATE_DECL that can be treated like a TYPE_DECL in
25952 the current context, return the TYPE_DECL. If TAG_NAME_P is
25953 true, the DECL indicates the class being defined in a class-head,
25954 or declared in an elaborated-type-specifier.
25956 Otherwise, return DECL. */
25958 static tree
25959 cp_parser_maybe_treat_template_as_class (tree decl, bool tag_name_p)
25961 /* If the TEMPLATE_DECL is being declared as part of a class-head,
25962 the translation from TEMPLATE_DECL to TYPE_DECL occurs:
25964 struct A {
25965 template <typename T> struct B;
25968 template <typename T> struct A::B {};
25970 Similarly, in an elaborated-type-specifier:
25972 namespace N { struct X{}; }
25974 struct A {
25975 template <typename T> friend struct N::X;
25978 However, if the DECL refers to a class type, and we are in
25979 the scope of the class, then the name lookup automatically
25980 finds the TYPE_DECL created by build_self_reference rather
25981 than a TEMPLATE_DECL. For example, in:
25983 template <class T> struct S {
25984 S s;
25987 there is no need to handle such case. */
25989 if (DECL_CLASS_TEMPLATE_P (decl) && tag_name_p)
25990 return DECL_TEMPLATE_RESULT (decl);
25992 return decl;
25995 /* If too many, or too few, template-parameter lists apply to the
25996 declarator, issue an error message. Returns TRUE if all went well,
25997 and FALSE otherwise. */
25999 static bool
26000 cp_parser_check_declarator_template_parameters (cp_parser* parser,
26001 cp_declarator *declarator,
26002 location_t declarator_location)
26004 switch (declarator->kind)
26006 case cdk_id:
26008 unsigned num_templates = 0;
26009 tree scope = declarator->u.id.qualifying_scope;
26011 if (scope)
26012 num_templates = num_template_headers_for_class (scope);
26013 else if (TREE_CODE (declarator->u.id.unqualified_name)
26014 == TEMPLATE_ID_EXPR)
26015 /* If the DECLARATOR has the form `X<y>' then it uses one
26016 additional level of template parameters. */
26017 ++num_templates;
26019 return cp_parser_check_template_parameters
26020 (parser, num_templates, declarator_location, declarator);
26023 case cdk_function:
26024 case cdk_array:
26025 case cdk_pointer:
26026 case cdk_reference:
26027 case cdk_ptrmem:
26028 return (cp_parser_check_declarator_template_parameters
26029 (parser, declarator->declarator, declarator_location));
26031 case cdk_decomp:
26032 case cdk_error:
26033 return true;
26035 default:
26036 gcc_unreachable ();
26038 return false;
26041 /* NUM_TEMPLATES were used in the current declaration. If that is
26042 invalid, return FALSE and issue an error messages. Otherwise,
26043 return TRUE. If DECLARATOR is non-NULL, then we are checking a
26044 declarator and we can print more accurate diagnostics. */
26046 static bool
26047 cp_parser_check_template_parameters (cp_parser* parser,
26048 unsigned num_templates,
26049 location_t location,
26050 cp_declarator *declarator)
26052 /* If there are the same number of template classes and parameter
26053 lists, that's OK. */
26054 if (parser->num_template_parameter_lists == num_templates)
26055 return true;
26056 /* If there are more, but only one more, then we are referring to a
26057 member template. That's OK too. */
26058 if (parser->num_template_parameter_lists == num_templates + 1)
26059 return true;
26060 /* If there are more template classes than parameter lists, we have
26061 something like:
26063 template <class T> void S<T>::R<T>::f (); */
26064 if (parser->num_template_parameter_lists < num_templates)
26066 if (declarator && !current_function_decl)
26067 error_at (location, "specializing member %<%T::%E%> "
26068 "requires %<template<>%> syntax",
26069 declarator->u.id.qualifying_scope,
26070 declarator->u.id.unqualified_name);
26071 else if (declarator)
26072 error_at (location, "invalid declaration of %<%T::%E%>",
26073 declarator->u.id.qualifying_scope,
26074 declarator->u.id.unqualified_name);
26075 else
26076 error_at (location, "too few template-parameter-lists");
26077 return false;
26079 /* Otherwise, there are too many template parameter lists. We have
26080 something like:
26082 template <class T> template <class U> void S::f(); */
26083 error_at (location, "too many template-parameter-lists");
26084 return false;
26087 /* Parse an optional `::' token indicating that the following name is
26088 from the global namespace. If so, PARSER->SCOPE is set to the
26089 GLOBAL_NAMESPACE. Otherwise, PARSER->SCOPE is set to NULL_TREE,
26090 unless CURRENT_SCOPE_VALID_P is TRUE, in which case it is left alone.
26091 Returns the new value of PARSER->SCOPE, if the `::' token is
26092 present, and NULL_TREE otherwise. */
26094 static tree
26095 cp_parser_global_scope_opt (cp_parser* parser, bool current_scope_valid_p)
26097 cp_token *token;
26099 /* Peek at the next token. */
26100 token = cp_lexer_peek_token (parser->lexer);
26101 /* If we're looking at a `::' token then we're starting from the
26102 global namespace, not our current location. */
26103 if (token->type == CPP_SCOPE)
26105 /* Consume the `::' token. */
26106 cp_lexer_consume_token (parser->lexer);
26107 /* Set the SCOPE so that we know where to start the lookup. */
26108 parser->scope = global_namespace;
26109 parser->qualifying_scope = global_namespace;
26110 parser->object_scope = NULL_TREE;
26112 return parser->scope;
26114 else if (!current_scope_valid_p)
26116 parser->scope = NULL_TREE;
26117 parser->qualifying_scope = NULL_TREE;
26118 parser->object_scope = NULL_TREE;
26121 return NULL_TREE;
26124 /* Returns TRUE if the upcoming token sequence is the start of a
26125 constructor declarator or C++17 deduction guide. If FRIEND_P is true, the
26126 declarator is preceded by the `friend' specifier. */
26128 static bool
26129 cp_parser_constructor_declarator_p (cp_parser *parser, bool friend_p)
26131 bool constructor_p;
26132 bool outside_class_specifier_p;
26133 tree nested_name_specifier;
26134 cp_token *next_token;
26136 /* The common case is that this is not a constructor declarator, so
26137 try to avoid doing lots of work if at all possible. It's not
26138 valid declare a constructor at function scope. */
26139 if (parser->in_function_body)
26140 return false;
26141 /* And only certain tokens can begin a constructor declarator. */
26142 next_token = cp_lexer_peek_token (parser->lexer);
26143 if (next_token->type != CPP_NAME
26144 && next_token->type != CPP_SCOPE
26145 && next_token->type != CPP_NESTED_NAME_SPECIFIER
26146 && next_token->type != CPP_TEMPLATE_ID)
26147 return false;
26149 /* Parse tentatively; we are going to roll back all of the tokens
26150 consumed here. */
26151 cp_parser_parse_tentatively (parser);
26152 /* Assume that we are looking at a constructor declarator. */
26153 constructor_p = true;
26155 /* Look for the optional `::' operator. */
26156 cp_parser_global_scope_opt (parser,
26157 /*current_scope_valid_p=*/false);
26158 /* Look for the nested-name-specifier. */
26159 nested_name_specifier
26160 = (cp_parser_nested_name_specifier_opt (parser,
26161 /*typename_keyword_p=*/false,
26162 /*check_dependency_p=*/false,
26163 /*type_p=*/false,
26164 /*is_declaration=*/false));
26166 outside_class_specifier_p = (!at_class_scope_p ()
26167 || !TYPE_BEING_DEFINED (current_class_type)
26168 || friend_p);
26170 /* Outside of a class-specifier, there must be a
26171 nested-name-specifier. Except in C++17 mode, where we
26172 might be declaring a guiding declaration. */
26173 if (!nested_name_specifier && outside_class_specifier_p
26174 && cxx_dialect < cxx1z)
26175 constructor_p = false;
26176 else if (nested_name_specifier == error_mark_node)
26177 constructor_p = false;
26179 /* If we have a class scope, this is easy; DR 147 says that S::S always
26180 names the constructor, and no other qualified name could. */
26181 if (constructor_p && nested_name_specifier
26182 && CLASS_TYPE_P (nested_name_specifier))
26184 tree id = cp_parser_unqualified_id (parser,
26185 /*template_keyword_p=*/false,
26186 /*check_dependency_p=*/false,
26187 /*declarator_p=*/true,
26188 /*optional_p=*/false);
26189 if (is_overloaded_fn (id))
26190 id = DECL_NAME (get_first_fn (id));
26191 if (!constructor_name_p (id, nested_name_specifier))
26192 constructor_p = false;
26194 /* If we still think that this might be a constructor-declarator,
26195 look for a class-name. */
26196 else if (constructor_p)
26198 /* If we have:
26200 template <typename T> struct S {
26201 S();
26204 we must recognize that the nested `S' names a class. */
26205 if (cxx_dialect >= cxx1z)
26206 cp_parser_parse_tentatively (parser);
26208 tree type_decl;
26209 type_decl = cp_parser_class_name (parser,
26210 /*typename_keyword_p=*/false,
26211 /*template_keyword_p=*/false,
26212 none_type,
26213 /*check_dependency_p=*/false,
26214 /*class_head_p=*/false,
26215 /*is_declaration=*/false);
26217 if (cxx_dialect >= cxx1z
26218 && !cp_parser_parse_definitely (parser))
26220 type_decl = NULL_TREE;
26221 tree tmpl = cp_parser_template_name (parser,
26222 /*template_keyword*/false,
26223 /*check_dependency_p*/false,
26224 /*is_declaration*/false,
26225 none_type,
26226 /*is_identifier*/NULL);
26227 if (DECL_CLASS_TEMPLATE_P (tmpl)
26228 || DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl))
26229 /* It's a deduction guide, return true. */;
26230 else
26231 cp_parser_simulate_error (parser);
26234 /* If there was no class-name, then this is not a constructor.
26235 Otherwise, if we are in a class-specifier and we aren't
26236 handling a friend declaration, check that its type matches
26237 current_class_type (c++/38313). Note: error_mark_node
26238 is left alone for error recovery purposes. */
26239 constructor_p = (!cp_parser_error_occurred (parser)
26240 && (outside_class_specifier_p
26241 || type_decl == NULL_TREE
26242 || type_decl == error_mark_node
26243 || same_type_p (current_class_type,
26244 TREE_TYPE (type_decl))));
26246 /* If we're still considering a constructor, we have to see a `(',
26247 to begin the parameter-declaration-clause, followed by either a
26248 `)', an `...', or a decl-specifier. We need to check for a
26249 type-specifier to avoid being fooled into thinking that:
26251 S (f) (int);
26253 is a constructor. (It is actually a function named `f' that
26254 takes one parameter (of type `int') and returns a value of type
26255 `S'. */
26256 if (constructor_p
26257 && !cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
26258 constructor_p = false;
26260 if (constructor_p
26261 && cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN)
26262 && cp_lexer_next_token_is_not (parser->lexer, CPP_ELLIPSIS)
26263 /* A parameter declaration begins with a decl-specifier,
26264 which is either the "attribute" keyword, a storage class
26265 specifier, or (usually) a type-specifier. */
26266 && !cp_lexer_next_token_is_decl_specifier_keyword (parser->lexer))
26268 tree type;
26269 tree pushed_scope = NULL_TREE;
26270 unsigned saved_num_template_parameter_lists;
26272 /* Names appearing in the type-specifier should be looked up
26273 in the scope of the class. */
26274 if (current_class_type)
26275 type = NULL_TREE;
26276 else if (type_decl)
26278 type = TREE_TYPE (type_decl);
26279 if (TREE_CODE (type) == TYPENAME_TYPE)
26281 type = resolve_typename_type (type,
26282 /*only_current_p=*/false);
26283 if (TREE_CODE (type) == TYPENAME_TYPE)
26285 cp_parser_abort_tentative_parse (parser);
26286 return false;
26289 pushed_scope = push_scope (type);
26292 /* Inside the constructor parameter list, surrounding
26293 template-parameter-lists do not apply. */
26294 saved_num_template_parameter_lists
26295 = parser->num_template_parameter_lists;
26296 parser->num_template_parameter_lists = 0;
26298 /* Look for the type-specifier. */
26299 cp_parser_type_specifier (parser,
26300 CP_PARSER_FLAGS_NONE,
26301 /*decl_specs=*/NULL,
26302 /*is_declarator=*/true,
26303 /*declares_class_or_enum=*/NULL,
26304 /*is_cv_qualifier=*/NULL);
26306 parser->num_template_parameter_lists
26307 = saved_num_template_parameter_lists;
26309 /* Leave the scope of the class. */
26310 if (pushed_scope)
26311 pop_scope (pushed_scope);
26313 constructor_p = !cp_parser_error_occurred (parser);
26317 /* We did not really want to consume any tokens. */
26318 cp_parser_abort_tentative_parse (parser);
26320 return constructor_p;
26323 /* Parse the definition of the function given by the DECL_SPECIFIERS,
26324 ATTRIBUTES, and DECLARATOR. The access checks have been deferred;
26325 they must be performed once we are in the scope of the function.
26327 Returns the function defined. */
26329 static tree
26330 cp_parser_function_definition_from_specifiers_and_declarator
26331 (cp_parser* parser,
26332 cp_decl_specifier_seq *decl_specifiers,
26333 tree attributes,
26334 const cp_declarator *declarator)
26336 tree fn;
26337 bool success_p;
26339 /* Begin the function-definition. */
26340 success_p = start_function (decl_specifiers, declarator, attributes);
26342 /* The things we're about to see are not directly qualified by any
26343 template headers we've seen thus far. */
26344 reset_specialization ();
26346 /* If there were names looked up in the decl-specifier-seq that we
26347 did not check, check them now. We must wait until we are in the
26348 scope of the function to perform the checks, since the function
26349 might be a friend. */
26350 perform_deferred_access_checks (tf_warning_or_error);
26352 if (success_p)
26354 cp_finalize_omp_declare_simd (parser, current_function_decl);
26355 parser->omp_declare_simd = NULL;
26356 cp_finalize_oacc_routine (parser, current_function_decl, true);
26357 parser->oacc_routine = NULL;
26360 if (!success_p)
26362 /* Skip the entire function. */
26363 cp_parser_skip_to_end_of_block_or_statement (parser);
26364 fn = error_mark_node;
26366 else if (DECL_INITIAL (current_function_decl) != error_mark_node)
26368 /* Seen already, skip it. An error message has already been output. */
26369 cp_parser_skip_to_end_of_block_or_statement (parser);
26370 fn = current_function_decl;
26371 current_function_decl = NULL_TREE;
26372 /* If this is a function from a class, pop the nested class. */
26373 if (current_class_name)
26374 pop_nested_class ();
26376 else
26378 timevar_id_t tv;
26379 if (DECL_DECLARED_INLINE_P (current_function_decl))
26380 tv = TV_PARSE_INLINE;
26381 else
26382 tv = TV_PARSE_FUNC;
26383 timevar_push (tv);
26384 fn = cp_parser_function_definition_after_declarator (parser,
26385 /*inline_p=*/false);
26386 timevar_pop (tv);
26389 return fn;
26392 /* Parse the part of a function-definition that follows the
26393 declarator. INLINE_P is TRUE iff this function is an inline
26394 function defined within a class-specifier.
26396 Returns the function defined. */
26398 static tree
26399 cp_parser_function_definition_after_declarator (cp_parser* parser,
26400 bool inline_p)
26402 tree fn;
26403 bool ctor_initializer_p = false;
26404 bool saved_in_unbraced_linkage_specification_p;
26405 bool saved_in_function_body;
26406 unsigned saved_num_template_parameter_lists;
26407 cp_token *token;
26408 bool fully_implicit_function_template_p
26409 = parser->fully_implicit_function_template_p;
26410 parser->fully_implicit_function_template_p = false;
26411 tree implicit_template_parms
26412 = parser->implicit_template_parms;
26413 parser->implicit_template_parms = 0;
26414 cp_binding_level* implicit_template_scope
26415 = parser->implicit_template_scope;
26416 parser->implicit_template_scope = 0;
26418 saved_in_function_body = parser->in_function_body;
26419 parser->in_function_body = true;
26420 /* If the next token is `return', then the code may be trying to
26421 make use of the "named return value" extension that G++ used to
26422 support. */
26423 token = cp_lexer_peek_token (parser->lexer);
26424 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_RETURN))
26426 /* Consume the `return' keyword. */
26427 cp_lexer_consume_token (parser->lexer);
26428 /* Look for the identifier that indicates what value is to be
26429 returned. */
26430 cp_parser_identifier (parser);
26431 /* Issue an error message. */
26432 error_at (token->location,
26433 "named return values are no longer supported");
26434 /* Skip tokens until we reach the start of the function body. */
26435 while (true)
26437 cp_token *token = cp_lexer_peek_token (parser->lexer);
26438 if (token->type == CPP_OPEN_BRACE
26439 || token->type == CPP_EOF
26440 || token->type == CPP_PRAGMA_EOL)
26441 break;
26442 cp_lexer_consume_token (parser->lexer);
26445 /* The `extern' in `extern "C" void f () { ... }' does not apply to
26446 anything declared inside `f'. */
26447 saved_in_unbraced_linkage_specification_p
26448 = parser->in_unbraced_linkage_specification_p;
26449 parser->in_unbraced_linkage_specification_p = false;
26450 /* Inside the function, surrounding template-parameter-lists do not
26451 apply. */
26452 saved_num_template_parameter_lists
26453 = parser->num_template_parameter_lists;
26454 parser->num_template_parameter_lists = 0;
26456 start_lambda_scope (current_function_decl);
26458 /* If the next token is `try', `__transaction_atomic', or
26459 `__transaction_relaxed`, then we are looking at either function-try-block
26460 or function-transaction-block. Note that all of these include the
26461 function-body. */
26462 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TRANSACTION_ATOMIC))
26463 ctor_initializer_p = cp_parser_function_transaction (parser,
26464 RID_TRANSACTION_ATOMIC);
26465 else if (cp_lexer_next_token_is_keyword (parser->lexer,
26466 RID_TRANSACTION_RELAXED))
26467 ctor_initializer_p = cp_parser_function_transaction (parser,
26468 RID_TRANSACTION_RELAXED);
26469 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TRY))
26470 ctor_initializer_p = cp_parser_function_try_block (parser);
26471 else
26472 ctor_initializer_p = cp_parser_ctor_initializer_opt_and_function_body
26473 (parser, /*in_function_try_block=*/false);
26475 finish_lambda_scope ();
26477 /* Finish the function. */
26478 fn = finish_function ((ctor_initializer_p ? 1 : 0) |
26479 (inline_p ? 2 : 0));
26480 /* Generate code for it, if necessary. */
26481 expand_or_defer_fn (fn);
26482 /* Restore the saved values. */
26483 parser->in_unbraced_linkage_specification_p
26484 = saved_in_unbraced_linkage_specification_p;
26485 parser->num_template_parameter_lists
26486 = saved_num_template_parameter_lists;
26487 parser->in_function_body = saved_in_function_body;
26489 parser->fully_implicit_function_template_p
26490 = fully_implicit_function_template_p;
26491 parser->implicit_template_parms
26492 = implicit_template_parms;
26493 parser->implicit_template_scope
26494 = implicit_template_scope;
26496 if (parser->fully_implicit_function_template_p)
26497 finish_fully_implicit_template (parser, /*member_decl_opt=*/0);
26499 return fn;
26502 /* Parse a template-declaration body (following argument list). */
26504 static void
26505 cp_parser_template_declaration_after_parameters (cp_parser* parser,
26506 tree parameter_list,
26507 bool member_p)
26509 tree decl = NULL_TREE;
26510 bool friend_p = false;
26512 /* We just processed one more parameter list. */
26513 ++parser->num_template_parameter_lists;
26515 /* Get the deferred access checks from the parameter list. These
26516 will be checked once we know what is being declared, as for a
26517 member template the checks must be performed in the scope of the
26518 class containing the member. */
26519 vec<deferred_access_check, va_gc> *checks = get_deferred_access_checks ();
26521 /* Tentatively parse for a new template parameter list, which can either be
26522 the template keyword or a template introduction. */
26523 if (cp_parser_template_declaration_after_export (parser, member_p))
26524 /* OK */;
26525 else if (cxx_dialect >= cxx11
26526 && cp_lexer_next_token_is_keyword (parser->lexer, RID_USING))
26527 decl = cp_parser_alias_declaration (parser);
26528 else
26530 /* There are no access checks when parsing a template, as we do not
26531 know if a specialization will be a friend. */
26532 push_deferring_access_checks (dk_no_check);
26533 cp_token *token = cp_lexer_peek_token (parser->lexer);
26534 decl = cp_parser_single_declaration (parser,
26535 checks,
26536 member_p,
26537 /*explicit_specialization_p=*/false,
26538 &friend_p);
26539 pop_deferring_access_checks ();
26541 /* If this is a member template declaration, let the front
26542 end know. */
26543 if (member_p && !friend_p && decl)
26545 if (TREE_CODE (decl) == TYPE_DECL)
26546 cp_parser_check_access_in_redeclaration (decl, token->location);
26548 decl = finish_member_template_decl (decl);
26550 else if (friend_p && decl
26551 && DECL_DECLARES_TYPE_P (decl))
26552 make_friend_class (current_class_type, TREE_TYPE (decl),
26553 /*complain=*/true);
26555 /* We are done with the current parameter list. */
26556 --parser->num_template_parameter_lists;
26558 pop_deferring_access_checks ();
26560 /* Finish up. */
26561 finish_template_decl (parameter_list);
26563 /* Check the template arguments for a literal operator template. */
26564 if (decl
26565 && DECL_DECLARES_FUNCTION_P (decl)
26566 && UDLIT_OPER_P (DECL_NAME (decl)))
26568 bool ok = true;
26569 if (parameter_list == NULL_TREE)
26570 ok = false;
26571 else
26573 int num_parms = TREE_VEC_LENGTH (parameter_list);
26574 if (num_parms == 1)
26576 tree parm_list = TREE_VEC_ELT (parameter_list, 0);
26577 tree parm = INNERMOST_TEMPLATE_PARMS (parm_list);
26578 if (TREE_TYPE (parm) != char_type_node
26579 || !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
26580 ok = false;
26582 else if (num_parms == 2 && cxx_dialect >= cxx14)
26584 tree parm_type = TREE_VEC_ELT (parameter_list, 0);
26585 tree type = INNERMOST_TEMPLATE_PARMS (parm_type);
26586 tree parm_list = TREE_VEC_ELT (parameter_list, 1);
26587 tree parm = INNERMOST_TEMPLATE_PARMS (parm_list);
26588 if (parm == error_mark_node
26589 || TREE_TYPE (parm) != TREE_TYPE (type)
26590 || !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
26591 ok = false;
26593 else
26594 ok = false;
26596 if (!ok)
26598 if (cxx_dialect >= cxx14)
26599 error ("literal operator template %qD has invalid parameter list."
26600 " Expected non-type template argument pack <char...>"
26601 " or <typename CharT, CharT...>",
26602 decl);
26603 else
26604 error ("literal operator template %qD has invalid parameter list."
26605 " Expected non-type template argument pack <char...>",
26606 decl);
26610 /* Register member declarations. */
26611 if (member_p && !friend_p && decl && !DECL_CLASS_TEMPLATE_P (decl))
26612 finish_member_declaration (decl);
26613 /* If DECL is a function template, we must return to parse it later.
26614 (Even though there is no definition, there might be default
26615 arguments that need handling.) */
26616 if (member_p && decl
26617 && DECL_DECLARES_FUNCTION_P (decl))
26618 vec_safe_push (unparsed_funs_with_definitions, decl);
26621 /* Parse a template introduction header for a template-declaration. Returns
26622 false if tentative parse fails. */
26624 static bool
26625 cp_parser_template_introduction (cp_parser* parser, bool member_p)
26627 cp_parser_parse_tentatively (parser);
26629 tree saved_scope = parser->scope;
26630 tree saved_object_scope = parser->object_scope;
26631 tree saved_qualifying_scope = parser->qualifying_scope;
26633 /* Look for the optional `::' operator. */
26634 cp_parser_global_scope_opt (parser,
26635 /*current_scope_valid_p=*/false);
26636 /* Look for the nested-name-specifier. */
26637 cp_parser_nested_name_specifier_opt (parser,
26638 /*typename_keyword_p=*/false,
26639 /*check_dependency_p=*/true,
26640 /*type_p=*/false,
26641 /*is_declaration=*/false);
26643 cp_token *token = cp_lexer_peek_token (parser->lexer);
26644 tree concept_name = cp_parser_identifier (parser);
26646 /* Look up the concept for which we will be matching
26647 template parameters. */
26648 tree tmpl_decl = cp_parser_lookup_name_simple (parser, concept_name,
26649 token->location);
26650 parser->scope = saved_scope;
26651 parser->object_scope = saved_object_scope;
26652 parser->qualifying_scope = saved_qualifying_scope;
26654 if (concept_name == error_mark_node)
26655 cp_parser_simulate_error (parser);
26657 /* Look for opening brace for introduction. */
26658 cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE);
26660 if (!cp_parser_parse_definitely (parser))
26661 return false;
26663 push_deferring_access_checks (dk_deferred);
26665 /* Build vector of placeholder parameters and grab
26666 matching identifiers. */
26667 tree introduction_list = cp_parser_introduction_list (parser);
26669 /* The introduction-list shall not be empty. */
26670 int nargs = TREE_VEC_LENGTH (introduction_list);
26671 if (nargs == 0)
26673 error ("empty introduction-list");
26674 return true;
26677 /* Look for closing brace for introduction. */
26678 if (!cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE))
26679 return true;
26681 if (tmpl_decl == error_mark_node)
26683 cp_parser_name_lookup_error (parser, concept_name, tmpl_decl, NLE_NULL,
26684 token->location);
26685 return true;
26688 /* Build and associate the constraint. */
26689 tree parms = finish_template_introduction (tmpl_decl, introduction_list);
26690 if (parms && parms != error_mark_node)
26692 cp_parser_template_declaration_after_parameters (parser, parms,
26693 member_p);
26694 return true;
26697 error_at (token->location, "no matching concept for template-introduction");
26698 return true;
26701 /* Parse a normal template-declaration following the template keyword. */
26703 static void
26704 cp_parser_explicit_template_declaration (cp_parser* parser, bool member_p)
26706 tree parameter_list;
26707 bool need_lang_pop;
26708 location_t location = input_location;
26710 /* Look for the `<' token. */
26711 if (!cp_parser_require (parser, CPP_LESS, RT_LESS))
26712 return;
26713 if (at_class_scope_p () && current_function_decl)
26715 /* 14.5.2.2 [temp.mem]
26717 A local class shall not have member templates. */
26718 error_at (location,
26719 "invalid declaration of member template in local class");
26720 cp_parser_skip_to_end_of_block_or_statement (parser);
26721 return;
26723 /* [temp]
26725 A template ... shall not have C linkage. */
26726 if (current_lang_name == lang_name_c)
26728 error_at (location, "template with C linkage");
26729 /* Give it C++ linkage to avoid confusing other parts of the
26730 front end. */
26731 push_lang_context (lang_name_cplusplus);
26732 need_lang_pop = true;
26734 else
26735 need_lang_pop = false;
26737 /* We cannot perform access checks on the template parameter
26738 declarations until we know what is being declared, just as we
26739 cannot check the decl-specifier list. */
26740 push_deferring_access_checks (dk_deferred);
26742 /* If the next token is `>', then we have an invalid
26743 specialization. Rather than complain about an invalid template
26744 parameter, issue an error message here. */
26745 if (cp_lexer_next_token_is (parser->lexer, CPP_GREATER))
26747 cp_parser_error (parser, "invalid explicit specialization");
26748 begin_specialization ();
26749 parameter_list = NULL_TREE;
26751 else
26753 /* Parse the template parameters. */
26754 parameter_list = cp_parser_template_parameter_list (parser);
26757 /* Look for the `>'. */
26758 cp_parser_skip_to_end_of_template_parameter_list (parser);
26760 /* Manage template requirements */
26761 if (flag_concepts)
26763 tree reqs = get_shorthand_constraints (current_template_parms);
26764 if (tree r = cp_parser_requires_clause_opt (parser))
26765 reqs = conjoin_constraints (reqs, normalize_expression (r));
26766 TEMPLATE_PARMS_CONSTRAINTS (current_template_parms) = reqs;
26769 cp_parser_template_declaration_after_parameters (parser, parameter_list,
26770 member_p);
26772 /* For the erroneous case of a template with C linkage, we pushed an
26773 implicit C++ linkage scope; exit that scope now. */
26774 if (need_lang_pop)
26775 pop_lang_context ();
26778 /* Parse a template-declaration, assuming that the `export' (and
26779 `extern') keywords, if present, has already been scanned. MEMBER_P
26780 is as for cp_parser_template_declaration. */
26782 static bool
26783 cp_parser_template_declaration_after_export (cp_parser* parser, bool member_p)
26785 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
26787 cp_lexer_consume_token (parser->lexer);
26788 cp_parser_explicit_template_declaration (parser, member_p);
26789 return true;
26791 else if (flag_concepts)
26792 return cp_parser_template_introduction (parser, member_p);
26794 return false;
26797 /* Perform the deferred access checks from a template-parameter-list.
26798 CHECKS is a TREE_LIST of access checks, as returned by
26799 get_deferred_access_checks. */
26801 static void
26802 cp_parser_perform_template_parameter_access_checks (vec<deferred_access_check, va_gc> *checks)
26804 ++processing_template_parmlist;
26805 perform_access_checks (checks, tf_warning_or_error);
26806 --processing_template_parmlist;
26809 /* Parse a `decl-specifier-seq [opt] init-declarator [opt] ;' or
26810 `function-definition' sequence that follows a template header.
26811 If MEMBER_P is true, this declaration appears in a class scope.
26813 Returns the DECL for the declared entity. If FRIEND_P is non-NULL,
26814 *FRIEND_P is set to TRUE iff the declaration is a friend. */
26816 static tree
26817 cp_parser_single_declaration (cp_parser* parser,
26818 vec<deferred_access_check, va_gc> *checks,
26819 bool member_p,
26820 bool explicit_specialization_p,
26821 bool* friend_p)
26823 int declares_class_or_enum;
26824 tree decl = NULL_TREE;
26825 cp_decl_specifier_seq decl_specifiers;
26826 bool function_definition_p = false;
26827 cp_token *decl_spec_token_start;
26829 /* This function is only used when processing a template
26830 declaration. */
26831 gcc_assert (innermost_scope_kind () == sk_template_parms
26832 || innermost_scope_kind () == sk_template_spec);
26834 /* Defer access checks until we know what is being declared. */
26835 push_deferring_access_checks (dk_deferred);
26837 /* Try the `decl-specifier-seq [opt] init-declarator [opt]'
26838 alternative. */
26839 decl_spec_token_start = cp_lexer_peek_token (parser->lexer);
26840 cp_parser_decl_specifier_seq (parser,
26841 CP_PARSER_FLAGS_OPTIONAL,
26842 &decl_specifiers,
26843 &declares_class_or_enum);
26844 if (friend_p)
26845 *friend_p = cp_parser_friend_p (&decl_specifiers);
26847 /* There are no template typedefs. */
26848 if (decl_spec_seq_has_spec_p (&decl_specifiers, ds_typedef))
26850 error_at (decl_spec_token_start->location,
26851 "template declaration of %<typedef%>");
26852 decl = error_mark_node;
26855 /* Gather up the access checks that occurred the
26856 decl-specifier-seq. */
26857 stop_deferring_access_checks ();
26859 /* Check for the declaration of a template class. */
26860 if (declares_class_or_enum)
26862 if (cp_parser_declares_only_class_p (parser)
26863 || (declares_class_or_enum & 2))
26865 // If this is a declaration, but not a definition, associate
26866 // any constraints with the type declaration. Constraints
26867 // are associated with definitions in cp_parser_class_specifier.
26868 if (declares_class_or_enum == 1)
26869 associate_classtype_constraints (decl_specifiers.type);
26871 decl = shadow_tag (&decl_specifiers);
26873 /* In this case:
26875 struct C {
26876 friend template <typename T> struct A<T>::B;
26879 A<T>::B will be represented by a TYPENAME_TYPE, and
26880 therefore not recognized by shadow_tag. */
26881 if (friend_p && *friend_p
26882 && !decl
26883 && decl_specifiers.type
26884 && TYPE_P (decl_specifiers.type))
26885 decl = decl_specifiers.type;
26887 if (decl && decl != error_mark_node)
26888 decl = TYPE_NAME (decl);
26889 else
26890 decl = error_mark_node;
26892 /* Perform access checks for template parameters. */
26893 cp_parser_perform_template_parameter_access_checks (checks);
26895 /* Give a helpful diagnostic for
26896 template <class T> struct A { } a;
26897 if we aren't already recovering from an error. */
26898 if (!cp_parser_declares_only_class_p (parser)
26899 && !seen_error ())
26901 error_at (cp_lexer_peek_token (parser->lexer)->location,
26902 "a class template declaration must not declare "
26903 "anything else");
26904 cp_parser_skip_to_end_of_block_or_statement (parser);
26905 goto out;
26910 /* Complain about missing 'typename' or other invalid type names. */
26911 if (!decl_specifiers.any_type_specifiers_p
26912 && cp_parser_parse_and_diagnose_invalid_type_name (parser))
26914 /* cp_parser_parse_and_diagnose_invalid_type_name calls
26915 cp_parser_skip_to_end_of_block_or_statement, so don't try to parse
26916 the rest of this declaration. */
26917 decl = error_mark_node;
26918 goto out;
26921 /* If it's not a template class, try for a template function. If
26922 the next token is a `;', then this declaration does not declare
26923 anything. But, if there were errors in the decl-specifiers, then
26924 the error might well have come from an attempted class-specifier.
26925 In that case, there's no need to warn about a missing declarator. */
26926 if (!decl
26927 && (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON)
26928 || decl_specifiers.type != error_mark_node))
26930 decl = cp_parser_init_declarator (parser,
26931 &decl_specifiers,
26932 checks,
26933 /*function_definition_allowed_p=*/true,
26934 member_p,
26935 declares_class_or_enum,
26936 &function_definition_p,
26937 NULL, NULL, NULL);
26939 /* 7.1.1-1 [dcl.stc]
26941 A storage-class-specifier shall not be specified in an explicit
26942 specialization... */
26943 if (decl
26944 && explicit_specialization_p
26945 && decl_specifiers.storage_class != sc_none)
26947 error_at (decl_spec_token_start->location,
26948 "explicit template specialization cannot have a storage class");
26949 decl = error_mark_node;
26952 if (decl && VAR_P (decl))
26953 check_template_variable (decl);
26956 /* Look for a trailing `;' after the declaration. */
26957 if (!function_definition_p
26958 && (decl == error_mark_node
26959 || !cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON)))
26960 cp_parser_skip_to_end_of_block_or_statement (parser);
26962 out:
26963 pop_deferring_access_checks ();
26965 /* Clear any current qualification; whatever comes next is the start
26966 of something new. */
26967 parser->scope = NULL_TREE;
26968 parser->qualifying_scope = NULL_TREE;
26969 parser->object_scope = NULL_TREE;
26971 return decl;
26974 /* Parse a cast-expression that is not the operand of a unary "&". */
26976 static cp_expr
26977 cp_parser_simple_cast_expression (cp_parser *parser)
26979 return cp_parser_cast_expression (parser, /*address_p=*/false,
26980 /*cast_p=*/false, /*decltype*/false, NULL);
26983 /* Parse a functional cast to TYPE. Returns an expression
26984 representing the cast. */
26986 static cp_expr
26987 cp_parser_functional_cast (cp_parser* parser, tree type)
26989 vec<tree, va_gc> *vec;
26990 tree expression_list;
26991 cp_expr cast;
26992 bool nonconst_p;
26994 location_t start_loc = input_location;
26996 if (!type)
26997 type = error_mark_node;
26999 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
27001 cp_lexer_set_source_position (parser->lexer);
27002 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
27003 expression_list = cp_parser_braced_list (parser, &nonconst_p);
27004 CONSTRUCTOR_IS_DIRECT_INIT (expression_list) = 1;
27005 if (TREE_CODE (type) == TYPE_DECL)
27006 type = TREE_TYPE (type);
27008 cast = finish_compound_literal (type, expression_list,
27009 tf_warning_or_error, fcl_functional);
27010 /* Create a location of the form:
27011 type_name{i, f}
27012 ^~~~~~~~~~~~~~~
27013 with caret == start at the start of the type name,
27014 finishing at the closing brace. */
27015 location_t finish_loc
27016 = get_finish (cp_lexer_previous_token (parser->lexer)->location);
27017 location_t combined_loc = make_location (start_loc, start_loc,
27018 finish_loc);
27019 cast.set_location (combined_loc);
27020 return cast;
27024 vec = cp_parser_parenthesized_expression_list (parser, non_attr,
27025 /*cast_p=*/true,
27026 /*allow_expansion_p=*/true,
27027 /*non_constant_p=*/NULL);
27028 if (vec == NULL)
27029 expression_list = error_mark_node;
27030 else
27032 expression_list = build_tree_list_vec (vec);
27033 release_tree_vector (vec);
27036 cast = build_functional_cast (type, expression_list,
27037 tf_warning_or_error);
27038 /* [expr.const]/1: In an integral constant expression "only type
27039 conversions to integral or enumeration type can be used". */
27040 if (TREE_CODE (type) == TYPE_DECL)
27041 type = TREE_TYPE (type);
27042 if (cast != error_mark_node
27043 && !cast_valid_in_integral_constant_expression_p (type)
27044 && cp_parser_non_integral_constant_expression (parser,
27045 NIC_CONSTRUCTOR))
27046 return error_mark_node;
27048 /* Create a location of the form:
27049 float(i)
27050 ^~~~~~~~
27051 with caret == start at the start of the type name,
27052 finishing at the closing paren. */
27053 location_t finish_loc
27054 = get_finish (cp_lexer_previous_token (parser->lexer)->location);
27055 location_t combined_loc = make_location (start_loc, start_loc, finish_loc);
27056 cast.set_location (combined_loc);
27057 return cast;
27060 /* Save the tokens that make up the body of a member function defined
27061 in a class-specifier. The DECL_SPECIFIERS and DECLARATOR have
27062 already been parsed. The ATTRIBUTES are any GNU "__attribute__"
27063 specifiers applied to the declaration. Returns the FUNCTION_DECL
27064 for the member function. */
27066 static tree
27067 cp_parser_save_member_function_body (cp_parser* parser,
27068 cp_decl_specifier_seq *decl_specifiers,
27069 cp_declarator *declarator,
27070 tree attributes)
27072 cp_token *first;
27073 cp_token *last;
27074 tree fn;
27075 bool function_try_block = false;
27077 /* Create the FUNCTION_DECL. */
27078 fn = grokmethod (decl_specifiers, declarator, attributes);
27079 cp_finalize_omp_declare_simd (parser, fn);
27080 cp_finalize_oacc_routine (parser, fn, true);
27081 /* If something went badly wrong, bail out now. */
27082 if (fn == error_mark_node)
27084 /* If there's a function-body, skip it. */
27085 if (cp_parser_token_starts_function_definition_p
27086 (cp_lexer_peek_token (parser->lexer)))
27087 cp_parser_skip_to_end_of_block_or_statement (parser);
27088 return error_mark_node;
27091 /* Remember it, if there default args to post process. */
27092 cp_parser_save_default_args (parser, fn);
27094 /* Save away the tokens that make up the body of the
27095 function. */
27096 first = parser->lexer->next_token;
27098 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TRANSACTION_RELAXED))
27099 cp_lexer_consume_token (parser->lexer);
27100 else if (cp_lexer_next_token_is_keyword (parser->lexer,
27101 RID_TRANSACTION_ATOMIC))
27103 cp_lexer_consume_token (parser->lexer);
27104 /* Match cp_parser_txn_attribute_opt [[ identifier ]]. */
27105 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE)
27106 && cp_lexer_nth_token_is (parser->lexer, 2, CPP_OPEN_SQUARE)
27107 && (cp_lexer_nth_token_is (parser->lexer, 3, CPP_NAME)
27108 || cp_lexer_nth_token_is (parser->lexer, 3, CPP_KEYWORD))
27109 && cp_lexer_nth_token_is (parser->lexer, 4, CPP_CLOSE_SQUARE)
27110 && cp_lexer_nth_token_is (parser->lexer, 5, CPP_CLOSE_SQUARE))
27112 cp_lexer_consume_token (parser->lexer);
27113 cp_lexer_consume_token (parser->lexer);
27114 cp_lexer_consume_token (parser->lexer);
27115 cp_lexer_consume_token (parser->lexer);
27116 cp_lexer_consume_token (parser->lexer);
27118 else
27119 while (cp_next_tokens_can_be_gnu_attribute_p (parser)
27120 && cp_lexer_nth_token_is (parser->lexer, 2, CPP_OPEN_PAREN))
27122 cp_lexer_consume_token (parser->lexer);
27123 if (cp_parser_cache_group (parser, CPP_CLOSE_PAREN, /*depth=*/0))
27124 break;
27128 /* Handle function try blocks. */
27129 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TRY))
27131 cp_lexer_consume_token (parser->lexer);
27132 function_try_block = true;
27134 /* We can have braced-init-list mem-initializers before the fn body. */
27135 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
27137 cp_lexer_consume_token (parser->lexer);
27138 while (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE))
27140 /* cache_group will stop after an un-nested { } pair, too. */
27141 if (cp_parser_cache_group (parser, CPP_CLOSE_PAREN, /*depth=*/0))
27142 break;
27144 /* variadic mem-inits have ... after the ')'. */
27145 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
27146 cp_lexer_consume_token (parser->lexer);
27149 cp_parser_cache_group (parser, CPP_CLOSE_BRACE, /*depth=*/0);
27150 /* Handle function try blocks. */
27151 if (function_try_block)
27152 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_CATCH))
27153 cp_parser_cache_group (parser, CPP_CLOSE_BRACE, /*depth=*/0);
27154 last = parser->lexer->next_token;
27156 /* Save away the inline definition; we will process it when the
27157 class is complete. */
27158 DECL_PENDING_INLINE_INFO (fn) = cp_token_cache_new (first, last);
27159 DECL_PENDING_INLINE_P (fn) = 1;
27161 /* We need to know that this was defined in the class, so that
27162 friend templates are handled correctly. */
27163 DECL_INITIALIZED_IN_CLASS_P (fn) = 1;
27165 /* Add FN to the queue of functions to be parsed later. */
27166 vec_safe_push (unparsed_funs_with_definitions, fn);
27168 return fn;
27171 /* Save the tokens that make up the in-class initializer for a non-static
27172 data member. Returns a DEFAULT_ARG. */
27174 static tree
27175 cp_parser_save_nsdmi (cp_parser* parser)
27177 return cp_parser_cache_defarg (parser, /*nsdmi=*/true);
27180 /* Parse a template-argument-list, as well as the trailing ">" (but
27181 not the opening "<"). See cp_parser_template_argument_list for the
27182 return value. */
27184 static tree
27185 cp_parser_enclosed_template_argument_list (cp_parser* parser)
27187 tree arguments;
27188 tree saved_scope;
27189 tree saved_qualifying_scope;
27190 tree saved_object_scope;
27191 bool saved_greater_than_is_operator_p;
27192 int saved_unevaluated_operand;
27193 int saved_inhibit_evaluation_warnings;
27195 /* [temp.names]
27197 When parsing a template-id, the first non-nested `>' is taken as
27198 the end of the template-argument-list rather than a greater-than
27199 operator. */
27200 saved_greater_than_is_operator_p
27201 = parser->greater_than_is_operator_p;
27202 parser->greater_than_is_operator_p = false;
27203 /* Parsing the argument list may modify SCOPE, so we save it
27204 here. */
27205 saved_scope = parser->scope;
27206 saved_qualifying_scope = parser->qualifying_scope;
27207 saved_object_scope = parser->object_scope;
27208 /* We need to evaluate the template arguments, even though this
27209 template-id may be nested within a "sizeof". */
27210 saved_unevaluated_operand = cp_unevaluated_operand;
27211 cp_unevaluated_operand = 0;
27212 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
27213 c_inhibit_evaluation_warnings = 0;
27214 /* Parse the template-argument-list itself. */
27215 if (cp_lexer_next_token_is (parser->lexer, CPP_GREATER)
27216 || cp_lexer_next_token_is (parser->lexer, CPP_RSHIFT))
27217 arguments = NULL_TREE;
27218 else
27219 arguments = cp_parser_template_argument_list (parser);
27220 /* Look for the `>' that ends the template-argument-list. If we find
27221 a '>>' instead, it's probably just a typo. */
27222 if (cp_lexer_next_token_is (parser->lexer, CPP_RSHIFT))
27224 if (cxx_dialect != cxx98)
27226 /* In C++0x, a `>>' in a template argument list or cast
27227 expression is considered to be two separate `>'
27228 tokens. So, change the current token to a `>', but don't
27229 consume it: it will be consumed later when the outer
27230 template argument list (or cast expression) is parsed.
27231 Note that this replacement of `>' for `>>' is necessary
27232 even if we are parsing tentatively: in the tentative
27233 case, after calling
27234 cp_parser_enclosed_template_argument_list we will always
27235 throw away all of the template arguments and the first
27236 closing `>', either because the template argument list
27237 was erroneous or because we are replacing those tokens
27238 with a CPP_TEMPLATE_ID token. The second `>' (which will
27239 not have been thrown away) is needed either to close an
27240 outer template argument list or to complete a new-style
27241 cast. */
27242 cp_token *token = cp_lexer_peek_token (parser->lexer);
27243 token->type = CPP_GREATER;
27245 else if (!saved_greater_than_is_operator_p)
27247 /* If we're in a nested template argument list, the '>>' has
27248 to be a typo for '> >'. We emit the error message, but we
27249 continue parsing and we push a '>' as next token, so that
27250 the argument list will be parsed correctly. Note that the
27251 global source location is still on the token before the
27252 '>>', so we need to say explicitly where we want it. */
27253 cp_token *token = cp_lexer_peek_token (parser->lexer);
27254 gcc_rich_location richloc (token->location);
27255 richloc.add_fixit_replace ("> >");
27256 error_at_rich_loc (&richloc, "%<>>%> should be %<> >%> "
27257 "within a nested template argument list");
27259 token->type = CPP_GREATER;
27261 else
27263 /* If this is not a nested template argument list, the '>>'
27264 is a typo for '>'. Emit an error message and continue.
27265 Same deal about the token location, but here we can get it
27266 right by consuming the '>>' before issuing the diagnostic. */
27267 cp_token *token = cp_lexer_consume_token (parser->lexer);
27268 error_at (token->location,
27269 "spurious %<>>%>, use %<>%> to terminate "
27270 "a template argument list");
27273 else
27274 cp_parser_skip_to_end_of_template_parameter_list (parser);
27275 /* The `>' token might be a greater-than operator again now. */
27276 parser->greater_than_is_operator_p
27277 = saved_greater_than_is_operator_p;
27278 /* Restore the SAVED_SCOPE. */
27279 parser->scope = saved_scope;
27280 parser->qualifying_scope = saved_qualifying_scope;
27281 parser->object_scope = saved_object_scope;
27282 cp_unevaluated_operand = saved_unevaluated_operand;
27283 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
27285 return arguments;
27288 /* MEMBER_FUNCTION is a member function, or a friend. If default
27289 arguments, or the body of the function have not yet been parsed,
27290 parse them now. */
27292 static void
27293 cp_parser_late_parsing_for_member (cp_parser* parser, tree member_function)
27295 timevar_push (TV_PARSE_INMETH);
27296 /* If this member is a template, get the underlying
27297 FUNCTION_DECL. */
27298 if (DECL_FUNCTION_TEMPLATE_P (member_function))
27299 member_function = DECL_TEMPLATE_RESULT (member_function);
27301 /* There should not be any class definitions in progress at this
27302 point; the bodies of members are only parsed outside of all class
27303 definitions. */
27304 gcc_assert (parser->num_classes_being_defined == 0);
27305 /* While we're parsing the member functions we might encounter more
27306 classes. We want to handle them right away, but we don't want
27307 them getting mixed up with functions that are currently in the
27308 queue. */
27309 push_unparsed_function_queues (parser);
27311 /* Make sure that any template parameters are in scope. */
27312 maybe_begin_member_template_processing (member_function);
27314 /* If the body of the function has not yet been parsed, parse it
27315 now. */
27316 if (DECL_PENDING_INLINE_P (member_function))
27318 tree function_scope;
27319 cp_token_cache *tokens;
27321 /* The function is no longer pending; we are processing it. */
27322 tokens = DECL_PENDING_INLINE_INFO (member_function);
27323 DECL_PENDING_INLINE_INFO (member_function) = NULL;
27324 DECL_PENDING_INLINE_P (member_function) = 0;
27326 /* If this is a local class, enter the scope of the containing
27327 function. */
27328 function_scope = current_function_decl;
27329 if (function_scope)
27330 push_function_context ();
27332 /* Push the body of the function onto the lexer stack. */
27333 cp_parser_push_lexer_for_tokens (parser, tokens);
27335 /* Let the front end know that we going to be defining this
27336 function. */
27337 start_preparsed_function (member_function, NULL_TREE,
27338 SF_PRE_PARSED | SF_INCLASS_INLINE);
27340 /* Don't do access checking if it is a templated function. */
27341 if (processing_template_decl)
27342 push_deferring_access_checks (dk_no_check);
27344 /* #pragma omp declare reduction needs special parsing. */
27345 if (DECL_OMP_DECLARE_REDUCTION_P (member_function))
27347 parser->lexer->in_pragma = true;
27348 cp_parser_omp_declare_reduction_exprs (member_function, parser);
27349 finish_function (/*inline*/2);
27350 cp_check_omp_declare_reduction (member_function);
27352 else
27353 /* Now, parse the body of the function. */
27354 cp_parser_function_definition_after_declarator (parser,
27355 /*inline_p=*/true);
27357 if (processing_template_decl)
27358 pop_deferring_access_checks ();
27360 /* Leave the scope of the containing function. */
27361 if (function_scope)
27362 pop_function_context ();
27363 cp_parser_pop_lexer (parser);
27366 /* Remove any template parameters from the symbol table. */
27367 maybe_end_member_template_processing ();
27369 /* Restore the queue. */
27370 pop_unparsed_function_queues (parser);
27371 timevar_pop (TV_PARSE_INMETH);
27374 /* If DECL contains any default args, remember it on the unparsed
27375 functions queue. */
27377 static void
27378 cp_parser_save_default_args (cp_parser* parser, tree decl)
27380 tree probe;
27382 for (probe = TYPE_ARG_TYPES (TREE_TYPE (decl));
27383 probe;
27384 probe = TREE_CHAIN (probe))
27385 if (TREE_PURPOSE (probe))
27387 cp_default_arg_entry entry = {current_class_type, decl};
27388 vec_safe_push (unparsed_funs_with_default_args, entry);
27389 break;
27393 /* DEFAULT_ARG contains the saved tokens for the initializer of DECL,
27394 which is either a FIELD_DECL or PARM_DECL. Parse it and return
27395 the result. For a PARM_DECL, PARMTYPE is the corresponding type
27396 from the parameter-type-list. */
27398 static tree
27399 cp_parser_late_parse_one_default_arg (cp_parser *parser, tree decl,
27400 tree default_arg, tree parmtype)
27402 cp_token_cache *tokens;
27403 tree parsed_arg;
27404 bool dummy;
27406 if (default_arg == error_mark_node)
27407 return error_mark_node;
27409 /* Push the saved tokens for the default argument onto the parser's
27410 lexer stack. */
27411 tokens = DEFARG_TOKENS (default_arg);
27412 cp_parser_push_lexer_for_tokens (parser, tokens);
27414 start_lambda_scope (decl);
27416 /* Parse the default argument. */
27417 parsed_arg = cp_parser_initializer (parser, &dummy, &dummy);
27418 if (BRACE_ENCLOSED_INITIALIZER_P (parsed_arg))
27419 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
27421 finish_lambda_scope ();
27423 if (parsed_arg == error_mark_node)
27424 cp_parser_skip_to_end_of_statement (parser);
27426 if (!processing_template_decl)
27428 /* In a non-template class, check conversions now. In a template,
27429 we'll wait and instantiate these as needed. */
27430 if (TREE_CODE (decl) == PARM_DECL)
27431 parsed_arg = check_default_argument (parmtype, parsed_arg,
27432 tf_warning_or_error);
27433 else if (maybe_reject_flexarray_init (decl, parsed_arg))
27434 parsed_arg = error_mark_node;
27435 else
27436 parsed_arg = digest_nsdmi_init (decl, parsed_arg);
27439 /* If the token stream has not been completely used up, then
27440 there was extra junk after the end of the default
27441 argument. */
27442 if (!cp_lexer_next_token_is (parser->lexer, CPP_EOF))
27444 if (TREE_CODE (decl) == PARM_DECL)
27445 cp_parser_error (parser, "expected %<,%>");
27446 else
27447 cp_parser_error (parser, "expected %<;%>");
27450 /* Revert to the main lexer. */
27451 cp_parser_pop_lexer (parser);
27453 return parsed_arg;
27456 /* FIELD is a non-static data member with an initializer which we saved for
27457 later; parse it now. */
27459 static void
27460 cp_parser_late_parsing_nsdmi (cp_parser *parser, tree field)
27462 tree def;
27464 maybe_begin_member_template_processing (field);
27466 push_unparsed_function_queues (parser);
27467 def = cp_parser_late_parse_one_default_arg (parser, field,
27468 DECL_INITIAL (field),
27469 NULL_TREE);
27470 pop_unparsed_function_queues (parser);
27472 maybe_end_member_template_processing ();
27474 DECL_INITIAL (field) = def;
27477 /* FN is a FUNCTION_DECL which may contains a parameter with an
27478 unparsed DEFAULT_ARG. Parse the default args now. This function
27479 assumes that the current scope is the scope in which the default
27480 argument should be processed. */
27482 static void
27483 cp_parser_late_parsing_default_args (cp_parser *parser, tree fn)
27485 bool saved_local_variables_forbidden_p;
27486 tree parm, parmdecl;
27488 /* While we're parsing the default args, we might (due to the
27489 statement expression extension) encounter more classes. We want
27490 to handle them right away, but we don't want them getting mixed
27491 up with default args that are currently in the queue. */
27492 push_unparsed_function_queues (parser);
27494 /* Local variable names (and the `this' keyword) may not appear
27495 in a default argument. */
27496 saved_local_variables_forbidden_p = parser->local_variables_forbidden_p;
27497 parser->local_variables_forbidden_p = true;
27499 push_defarg_context (fn);
27501 for (parm = TYPE_ARG_TYPES (TREE_TYPE (fn)),
27502 parmdecl = DECL_ARGUMENTS (fn);
27503 parm && parm != void_list_node;
27504 parm = TREE_CHAIN (parm),
27505 parmdecl = DECL_CHAIN (parmdecl))
27507 tree default_arg = TREE_PURPOSE (parm);
27508 tree parsed_arg;
27509 vec<tree, va_gc> *insts;
27510 tree copy;
27511 unsigned ix;
27513 if (!default_arg)
27514 continue;
27516 if (TREE_CODE (default_arg) != DEFAULT_ARG)
27517 /* This can happen for a friend declaration for a function
27518 already declared with default arguments. */
27519 continue;
27521 parsed_arg
27522 = cp_parser_late_parse_one_default_arg (parser, parmdecl,
27523 default_arg,
27524 TREE_VALUE (parm));
27525 if (parsed_arg == error_mark_node)
27527 continue;
27530 TREE_PURPOSE (parm) = parsed_arg;
27532 /* Update any instantiations we've already created. */
27533 for (insts = DEFARG_INSTANTIATIONS (default_arg), ix = 0;
27534 vec_safe_iterate (insts, ix, &copy); ix++)
27535 TREE_PURPOSE (copy) = parsed_arg;
27538 pop_defarg_context ();
27540 /* Make sure no default arg is missing. */
27541 check_default_args (fn);
27543 /* Restore the state of local_variables_forbidden_p. */
27544 parser->local_variables_forbidden_p = saved_local_variables_forbidden_p;
27546 /* Restore the queue. */
27547 pop_unparsed_function_queues (parser);
27550 /* Subroutine of cp_parser_sizeof_operand, for handling C++11
27552 sizeof ... ( identifier )
27554 where the 'sizeof' token has already been consumed. */
27556 static tree
27557 cp_parser_sizeof_pack (cp_parser *parser)
27559 /* Consume the `...'. */
27560 cp_lexer_consume_token (parser->lexer);
27561 maybe_warn_variadic_templates ();
27563 bool paren = cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN);
27564 if (paren)
27565 cp_lexer_consume_token (parser->lexer);
27566 else
27567 permerror (cp_lexer_peek_token (parser->lexer)->location,
27568 "%<sizeof...%> argument must be surrounded by parentheses");
27570 cp_token *token = cp_lexer_peek_token (parser->lexer);
27571 tree name = cp_parser_identifier (parser);
27572 if (name == error_mark_node)
27573 return error_mark_node;
27574 /* The name is not qualified. */
27575 parser->scope = NULL_TREE;
27576 parser->qualifying_scope = NULL_TREE;
27577 parser->object_scope = NULL_TREE;
27578 tree expr = cp_parser_lookup_name_simple (parser, name, token->location);
27579 if (expr == error_mark_node)
27580 cp_parser_name_lookup_error (parser, name, expr, NLE_NULL,
27581 token->location);
27582 if (TREE_CODE (expr) == TYPE_DECL || TREE_CODE (expr) == TEMPLATE_DECL)
27583 expr = TREE_TYPE (expr);
27584 else if (TREE_CODE (expr) == CONST_DECL)
27585 expr = DECL_INITIAL (expr);
27586 expr = make_pack_expansion (expr);
27587 PACK_EXPANSION_SIZEOF_P (expr) = true;
27589 if (paren)
27590 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
27592 return expr;
27595 /* Parse the operand of `sizeof' (or a similar operator). Returns
27596 either a TYPE or an expression, depending on the form of the
27597 input. The KEYWORD indicates which kind of expression we have
27598 encountered. */
27600 static tree
27601 cp_parser_sizeof_operand (cp_parser* parser, enum rid keyword)
27603 tree expr = NULL_TREE;
27604 const char *saved_message;
27605 char *tmp;
27606 bool saved_integral_constant_expression_p;
27607 bool saved_non_integral_constant_expression_p;
27609 /* If it's a `...', then we are computing the length of a parameter
27610 pack. */
27611 if (keyword == RID_SIZEOF
27612 && cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
27613 return cp_parser_sizeof_pack (parser);
27615 /* Types cannot be defined in a `sizeof' expression. Save away the
27616 old message. */
27617 saved_message = parser->type_definition_forbidden_message;
27618 /* And create the new one. */
27619 tmp = concat ("types may not be defined in %<",
27620 IDENTIFIER_POINTER (ridpointers[keyword]),
27621 "%> expressions", NULL);
27622 parser->type_definition_forbidden_message = tmp;
27624 /* The restrictions on constant-expressions do not apply inside
27625 sizeof expressions. */
27626 saved_integral_constant_expression_p
27627 = parser->integral_constant_expression_p;
27628 saved_non_integral_constant_expression_p
27629 = parser->non_integral_constant_expression_p;
27630 parser->integral_constant_expression_p = false;
27632 /* Do not actually evaluate the expression. */
27633 ++cp_unevaluated_operand;
27634 ++c_inhibit_evaluation_warnings;
27635 /* If it's a `(', then we might be looking at the type-id
27636 construction. */
27637 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
27639 tree type = NULL_TREE;
27641 /* We can't be sure yet whether we're looking at a type-id or an
27642 expression. */
27643 cp_parser_parse_tentatively (parser);
27644 /* Note: as a GNU Extension, compound literals are considered
27645 postfix-expressions as they are in C99, so they are valid
27646 arguments to sizeof. See comment in cp_parser_cast_expression
27647 for details. */
27648 if (cp_parser_compound_literal_p (parser))
27649 cp_parser_simulate_error (parser);
27650 else
27652 bool saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
27653 parser->in_type_id_in_expr_p = true;
27654 /* Look for the type-id. */
27655 type = cp_parser_type_id (parser);
27656 /* Look for the closing `)'. */
27657 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
27658 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
27661 /* If all went well, then we're done. */
27662 if (cp_parser_parse_definitely (parser))
27664 cp_decl_specifier_seq decl_specs;
27666 /* Build a trivial decl-specifier-seq. */
27667 clear_decl_specs (&decl_specs);
27668 decl_specs.type = type;
27670 /* Call grokdeclarator to figure out what type this is. */
27671 expr = grokdeclarator (NULL,
27672 &decl_specs,
27673 TYPENAME,
27674 /*initialized=*/0,
27675 /*attrlist=*/NULL);
27679 /* If the type-id production did not work out, then we must be
27680 looking at the unary-expression production. */
27681 if (!expr)
27682 expr = cp_parser_unary_expression (parser);
27684 /* Go back to evaluating expressions. */
27685 --cp_unevaluated_operand;
27686 --c_inhibit_evaluation_warnings;
27688 /* Free the message we created. */
27689 free (tmp);
27690 /* And restore the old one. */
27691 parser->type_definition_forbidden_message = saved_message;
27692 parser->integral_constant_expression_p
27693 = saved_integral_constant_expression_p;
27694 parser->non_integral_constant_expression_p
27695 = saved_non_integral_constant_expression_p;
27697 return expr;
27700 /* If the current declaration has no declarator, return true. */
27702 static bool
27703 cp_parser_declares_only_class_p (cp_parser *parser)
27705 /* If the next token is a `;' or a `,' then there is no
27706 declarator. */
27707 return (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
27708 || cp_lexer_next_token_is (parser->lexer, CPP_COMMA));
27711 /* Update the DECL_SPECS to reflect the storage class indicated by
27712 KEYWORD. */
27714 static void
27715 cp_parser_set_storage_class (cp_parser *parser,
27716 cp_decl_specifier_seq *decl_specs,
27717 enum rid keyword,
27718 cp_token *token)
27720 cp_storage_class storage_class;
27722 if (parser->in_unbraced_linkage_specification_p)
27724 error_at (token->location, "invalid use of %qD in linkage specification",
27725 ridpointers[keyword]);
27726 return;
27728 else if (decl_specs->storage_class != sc_none)
27730 decl_specs->conflicting_specifiers_p = true;
27731 return;
27734 if ((keyword == RID_EXTERN || keyword == RID_STATIC)
27735 && decl_spec_seq_has_spec_p (decl_specs, ds_thread)
27736 && decl_specs->gnu_thread_keyword_p)
27738 pedwarn (decl_specs->locations[ds_thread], 0,
27739 "%<__thread%> before %qD", ridpointers[keyword]);
27742 switch (keyword)
27744 case RID_AUTO:
27745 storage_class = sc_auto;
27746 break;
27747 case RID_REGISTER:
27748 storage_class = sc_register;
27749 break;
27750 case RID_STATIC:
27751 storage_class = sc_static;
27752 break;
27753 case RID_EXTERN:
27754 storage_class = sc_extern;
27755 break;
27756 case RID_MUTABLE:
27757 storage_class = sc_mutable;
27758 break;
27759 default:
27760 gcc_unreachable ();
27762 decl_specs->storage_class = storage_class;
27763 set_and_check_decl_spec_loc (decl_specs, ds_storage_class, token);
27765 /* A storage class specifier cannot be applied alongside a typedef
27766 specifier. If there is a typedef specifier present then set
27767 conflicting_specifiers_p which will trigger an error later
27768 on in grokdeclarator. */
27769 if (decl_spec_seq_has_spec_p (decl_specs, ds_typedef))
27770 decl_specs->conflicting_specifiers_p = true;
27773 /* Update the DECL_SPECS to reflect the TYPE_SPEC. If TYPE_DEFINITION_P
27774 is true, the type is a class or enum definition. */
27776 static void
27777 cp_parser_set_decl_spec_type (cp_decl_specifier_seq *decl_specs,
27778 tree type_spec,
27779 cp_token *token,
27780 bool type_definition_p)
27782 decl_specs->any_specifiers_p = true;
27784 /* If the user tries to redeclare bool, char16_t, char32_t, or wchar_t
27785 (with, for example, in "typedef int wchar_t;") we remember that
27786 this is what happened. In system headers, we ignore these
27787 declarations so that G++ can work with system headers that are not
27788 C++-safe. */
27789 if (decl_spec_seq_has_spec_p (decl_specs, ds_typedef)
27790 && !type_definition_p
27791 && (type_spec == boolean_type_node
27792 || type_spec == char16_type_node
27793 || type_spec == char32_type_node
27794 || type_spec == wchar_type_node)
27795 && (decl_specs->type
27796 || decl_spec_seq_has_spec_p (decl_specs, ds_long)
27797 || decl_spec_seq_has_spec_p (decl_specs, ds_short)
27798 || decl_spec_seq_has_spec_p (decl_specs, ds_unsigned)
27799 || decl_spec_seq_has_spec_p (decl_specs, ds_signed)))
27801 decl_specs->redefined_builtin_type = type_spec;
27802 set_and_check_decl_spec_loc (decl_specs,
27803 ds_redefined_builtin_type_spec,
27804 token);
27805 if (!decl_specs->type)
27807 decl_specs->type = type_spec;
27808 decl_specs->type_definition_p = false;
27809 set_and_check_decl_spec_loc (decl_specs,ds_type_spec, token);
27812 else if (decl_specs->type)
27813 decl_specs->multiple_types_p = true;
27814 else
27816 decl_specs->type = type_spec;
27817 decl_specs->type_definition_p = type_definition_p;
27818 decl_specs->redefined_builtin_type = NULL_TREE;
27819 set_and_check_decl_spec_loc (decl_specs, ds_type_spec, token);
27823 /* True iff TOKEN is the GNU keyword __thread. */
27825 static bool
27826 token_is__thread (cp_token *token)
27828 gcc_assert (token->keyword == RID_THREAD);
27829 return id_equal (token->u.value, "__thread");
27832 /* Set the location for a declarator specifier and check if it is
27833 duplicated.
27835 DECL_SPECS is the sequence of declarator specifiers onto which to
27836 set the location.
27838 DS is the single declarator specifier to set which location is to
27839 be set onto the existing sequence of declarators.
27841 LOCATION is the location for the declarator specifier to
27842 consider. */
27844 static void
27845 set_and_check_decl_spec_loc (cp_decl_specifier_seq *decl_specs,
27846 cp_decl_spec ds, cp_token *token)
27848 gcc_assert (ds < ds_last);
27850 if (decl_specs == NULL)
27851 return;
27853 source_location location = token->location;
27855 if (decl_specs->locations[ds] == 0)
27857 decl_specs->locations[ds] = location;
27858 if (ds == ds_thread)
27859 decl_specs->gnu_thread_keyword_p = token_is__thread (token);
27861 else
27863 if (ds == ds_long)
27865 if (decl_specs->locations[ds_long_long] != 0)
27866 error_at (location,
27867 "%<long long long%> is too long for GCC");
27868 else
27870 decl_specs->locations[ds_long_long] = location;
27871 pedwarn_cxx98 (location,
27872 OPT_Wlong_long,
27873 "ISO C++ 1998 does not support %<long long%>");
27876 else if (ds == ds_thread)
27878 bool gnu = token_is__thread (token);
27879 if (gnu != decl_specs->gnu_thread_keyword_p)
27880 error_at (location,
27881 "both %<__thread%> and %<thread_local%> specified");
27882 else
27884 gcc_rich_location richloc (location);
27885 richloc.add_fixit_remove ();
27886 error_at_rich_loc (&richloc, "duplicate %qD", token->u.value);
27889 else
27891 static const char *const decl_spec_names[] = {
27892 "signed",
27893 "unsigned",
27894 "short",
27895 "long",
27896 "const",
27897 "volatile",
27898 "restrict",
27899 "inline",
27900 "virtual",
27901 "explicit",
27902 "friend",
27903 "typedef",
27904 "using",
27905 "constexpr",
27906 "__complex"
27908 gcc_rich_location richloc (location);
27909 richloc.add_fixit_remove ();
27910 error_at_rich_loc (&richloc, "duplicate %qs", decl_spec_names[ds]);
27915 /* Return true iff the declarator specifier DS is present in the
27916 sequence of declarator specifiers DECL_SPECS. */
27918 bool
27919 decl_spec_seq_has_spec_p (const cp_decl_specifier_seq * decl_specs,
27920 cp_decl_spec ds)
27922 gcc_assert (ds < ds_last);
27924 if (decl_specs == NULL)
27925 return false;
27927 return decl_specs->locations[ds] != 0;
27930 /* DECL_SPECIFIERS is the representation of a decl-specifier-seq.
27931 Returns TRUE iff `friend' appears among the DECL_SPECIFIERS. */
27933 static bool
27934 cp_parser_friend_p (const cp_decl_specifier_seq *decl_specifiers)
27936 return decl_spec_seq_has_spec_p (decl_specifiers, ds_friend);
27939 /* Issue an error message indicating that TOKEN_DESC was expected.
27940 If KEYWORD is true, it indicated this function is called by
27941 cp_parser_require_keword and the required token can only be
27942 a indicated keyword. */
27944 static void
27945 cp_parser_required_error (cp_parser *parser,
27946 required_token token_desc,
27947 bool keyword)
27949 switch (token_desc)
27951 case RT_NEW:
27952 cp_parser_error (parser, "expected %<new%>");
27953 return;
27954 case RT_DELETE:
27955 cp_parser_error (parser, "expected %<delete%>");
27956 return;
27957 case RT_RETURN:
27958 cp_parser_error (parser, "expected %<return%>");
27959 return;
27960 case RT_WHILE:
27961 cp_parser_error (parser, "expected %<while%>");
27962 return;
27963 case RT_EXTERN:
27964 cp_parser_error (parser, "expected %<extern%>");
27965 return;
27966 case RT_STATIC_ASSERT:
27967 cp_parser_error (parser, "expected %<static_assert%>");
27968 return;
27969 case RT_DECLTYPE:
27970 cp_parser_error (parser, "expected %<decltype%>");
27971 return;
27972 case RT_OPERATOR:
27973 cp_parser_error (parser, "expected %<operator%>");
27974 return;
27975 case RT_CLASS:
27976 cp_parser_error (parser, "expected %<class%>");
27977 return;
27978 case RT_TEMPLATE:
27979 cp_parser_error (parser, "expected %<template%>");
27980 return;
27981 case RT_NAMESPACE:
27982 cp_parser_error (parser, "expected %<namespace%>");
27983 return;
27984 case RT_USING:
27985 cp_parser_error (parser, "expected %<using%>");
27986 return;
27987 case RT_ASM:
27988 cp_parser_error (parser, "expected %<asm%>");
27989 return;
27990 case RT_TRY:
27991 cp_parser_error (parser, "expected %<try%>");
27992 return;
27993 case RT_CATCH:
27994 cp_parser_error (parser, "expected %<catch%>");
27995 return;
27996 case RT_THROW:
27997 cp_parser_error (parser, "expected %<throw%>");
27998 return;
27999 case RT_LABEL:
28000 cp_parser_error (parser, "expected %<__label__%>");
28001 return;
28002 case RT_AT_TRY:
28003 cp_parser_error (parser, "expected %<@try%>");
28004 return;
28005 case RT_AT_SYNCHRONIZED:
28006 cp_parser_error (parser, "expected %<@synchronized%>");
28007 return;
28008 case RT_AT_THROW:
28009 cp_parser_error (parser, "expected %<@throw%>");
28010 return;
28011 case RT_TRANSACTION_ATOMIC:
28012 cp_parser_error (parser, "expected %<__transaction_atomic%>");
28013 return;
28014 case RT_TRANSACTION_RELAXED:
28015 cp_parser_error (parser, "expected %<__transaction_relaxed%>");
28016 return;
28017 default:
28018 break;
28020 if (!keyword)
28022 switch (token_desc)
28024 case RT_SEMICOLON:
28025 cp_parser_error (parser, "expected %<;%>");
28026 return;
28027 case RT_OPEN_PAREN:
28028 cp_parser_error (parser, "expected %<(%>");
28029 return;
28030 case RT_CLOSE_BRACE:
28031 cp_parser_error (parser, "expected %<}%>");
28032 return;
28033 case RT_OPEN_BRACE:
28034 cp_parser_error (parser, "expected %<{%>");
28035 return;
28036 case RT_CLOSE_SQUARE:
28037 cp_parser_error (parser, "expected %<]%>");
28038 return;
28039 case RT_OPEN_SQUARE:
28040 cp_parser_error (parser, "expected %<[%>");
28041 return;
28042 case RT_COMMA:
28043 cp_parser_error (parser, "expected %<,%>");
28044 return;
28045 case RT_SCOPE:
28046 cp_parser_error (parser, "expected %<::%>");
28047 return;
28048 case RT_LESS:
28049 cp_parser_error (parser, "expected %<<%>");
28050 return;
28051 case RT_GREATER:
28052 cp_parser_error (parser, "expected %<>%>");
28053 return;
28054 case RT_EQ:
28055 cp_parser_error (parser, "expected %<=%>");
28056 return;
28057 case RT_ELLIPSIS:
28058 cp_parser_error (parser, "expected %<...%>");
28059 return;
28060 case RT_MULT:
28061 cp_parser_error (parser, "expected %<*%>");
28062 return;
28063 case RT_COMPL:
28064 cp_parser_error (parser, "expected %<~%>");
28065 return;
28066 case RT_COLON:
28067 cp_parser_error (parser, "expected %<:%>");
28068 return;
28069 case RT_COLON_SCOPE:
28070 cp_parser_error (parser, "expected %<:%> or %<::%>");
28071 return;
28072 case RT_CLOSE_PAREN:
28073 cp_parser_error (parser, "expected %<)%>");
28074 return;
28075 case RT_COMMA_CLOSE_PAREN:
28076 cp_parser_error (parser, "expected %<,%> or %<)%>");
28077 return;
28078 case RT_PRAGMA_EOL:
28079 cp_parser_error (parser, "expected end of line");
28080 return;
28081 case RT_NAME:
28082 cp_parser_error (parser, "expected identifier");
28083 return;
28084 case RT_SELECT:
28085 cp_parser_error (parser, "expected selection-statement");
28086 return;
28087 case RT_ITERATION:
28088 cp_parser_error (parser, "expected iteration-statement");
28089 return;
28090 case RT_JUMP:
28091 cp_parser_error (parser, "expected jump-statement");
28092 return;
28093 case RT_CLASS_KEY:
28094 cp_parser_error (parser, "expected class-key");
28095 return;
28096 case RT_CLASS_TYPENAME_TEMPLATE:
28097 cp_parser_error (parser,
28098 "expected %<class%>, %<typename%>, or %<template%>");
28099 return;
28100 default:
28101 gcc_unreachable ();
28104 else
28105 gcc_unreachable ();
28110 /* If the next token is of the indicated TYPE, consume it. Otherwise,
28111 issue an error message indicating that TOKEN_DESC was expected.
28113 Returns the token consumed, if the token had the appropriate type.
28114 Otherwise, returns NULL. */
28116 static cp_token *
28117 cp_parser_require (cp_parser* parser,
28118 enum cpp_ttype type,
28119 required_token token_desc)
28121 if (cp_lexer_next_token_is (parser->lexer, type))
28122 return cp_lexer_consume_token (parser->lexer);
28123 else
28125 /* Output the MESSAGE -- unless we're parsing tentatively. */
28126 if (!cp_parser_simulate_error (parser))
28127 cp_parser_required_error (parser, token_desc, /*keyword=*/false);
28128 return NULL;
28132 /* An error message is produced if the next token is not '>'.
28133 All further tokens are skipped until the desired token is
28134 found or '{', '}', ';' or an unbalanced ')' or ']'. */
28136 static void
28137 cp_parser_skip_to_end_of_template_parameter_list (cp_parser* parser)
28139 /* Current level of '< ... >'. */
28140 unsigned level = 0;
28141 /* Ignore '<' and '>' nested inside '( ... )' or '[ ... ]'. */
28142 unsigned nesting_depth = 0;
28144 /* Are we ready, yet? If not, issue error message. */
28145 if (cp_parser_require (parser, CPP_GREATER, RT_GREATER))
28146 return;
28148 /* Skip tokens until the desired token is found. */
28149 while (true)
28151 /* Peek at the next token. */
28152 switch (cp_lexer_peek_token (parser->lexer)->type)
28154 case CPP_LESS:
28155 if (!nesting_depth)
28156 ++level;
28157 break;
28159 case CPP_RSHIFT:
28160 if (cxx_dialect == cxx98)
28161 /* C++0x views the `>>' operator as two `>' tokens, but
28162 C++98 does not. */
28163 break;
28164 else if (!nesting_depth && level-- == 0)
28166 /* We've hit a `>>' where the first `>' closes the
28167 template argument list, and the second `>' is
28168 spurious. Just consume the `>>' and stop; we've
28169 already produced at least one error. */
28170 cp_lexer_consume_token (parser->lexer);
28171 return;
28173 /* Fall through for C++0x, so we handle the second `>' in
28174 the `>>'. */
28175 gcc_fallthrough ();
28177 case CPP_GREATER:
28178 if (!nesting_depth && level-- == 0)
28180 /* We've reached the token we want, consume it and stop. */
28181 cp_lexer_consume_token (parser->lexer);
28182 return;
28184 break;
28186 case CPP_OPEN_PAREN:
28187 case CPP_OPEN_SQUARE:
28188 ++nesting_depth;
28189 break;
28191 case CPP_CLOSE_PAREN:
28192 case CPP_CLOSE_SQUARE:
28193 if (nesting_depth-- == 0)
28194 return;
28195 break;
28197 case CPP_EOF:
28198 case CPP_PRAGMA_EOL:
28199 case CPP_SEMICOLON:
28200 case CPP_OPEN_BRACE:
28201 case CPP_CLOSE_BRACE:
28202 /* The '>' was probably forgotten, don't look further. */
28203 return;
28205 default:
28206 break;
28209 /* Consume this token. */
28210 cp_lexer_consume_token (parser->lexer);
28214 /* If the next token is the indicated keyword, consume it. Otherwise,
28215 issue an error message indicating that TOKEN_DESC was expected.
28217 Returns the token consumed, if the token had the appropriate type.
28218 Otherwise, returns NULL. */
28220 static cp_token *
28221 cp_parser_require_keyword (cp_parser* parser,
28222 enum rid keyword,
28223 required_token token_desc)
28225 cp_token *token = cp_parser_require (parser, CPP_KEYWORD, token_desc);
28227 if (token && token->keyword != keyword)
28229 cp_parser_required_error (parser, token_desc, /*keyword=*/true);
28230 return NULL;
28233 return token;
28236 /* Returns TRUE iff TOKEN is a token that can begin the body of a
28237 function-definition. */
28239 static bool
28240 cp_parser_token_starts_function_definition_p (cp_token* token)
28242 return (/* An ordinary function-body begins with an `{'. */
28243 token->type == CPP_OPEN_BRACE
28244 /* A ctor-initializer begins with a `:'. */
28245 || token->type == CPP_COLON
28246 /* A function-try-block begins with `try'. */
28247 || token->keyword == RID_TRY
28248 /* A function-transaction-block begins with `__transaction_atomic'
28249 or `__transaction_relaxed'. */
28250 || token->keyword == RID_TRANSACTION_ATOMIC
28251 || token->keyword == RID_TRANSACTION_RELAXED
28252 /* The named return value extension begins with `return'. */
28253 || token->keyword == RID_RETURN);
28256 /* Returns TRUE iff the next token is the ":" or "{" beginning a class
28257 definition. */
28259 static bool
28260 cp_parser_next_token_starts_class_definition_p (cp_parser *parser)
28262 cp_token *token;
28264 token = cp_lexer_peek_token (parser->lexer);
28265 return (token->type == CPP_OPEN_BRACE
28266 || (token->type == CPP_COLON
28267 && !parser->colon_doesnt_start_class_def_p));
28270 /* Returns TRUE iff the next token is the "," or ">" (or `>>', in
28271 C++0x) ending a template-argument. */
28273 static bool
28274 cp_parser_next_token_ends_template_argument_p (cp_parser *parser)
28276 cp_token *token;
28278 token = cp_lexer_peek_token (parser->lexer);
28279 return (token->type == CPP_COMMA
28280 || token->type == CPP_GREATER
28281 || token->type == CPP_ELLIPSIS
28282 || ((cxx_dialect != cxx98) && token->type == CPP_RSHIFT));
28285 /* Returns TRUE iff the n-th token is a "<", or the n-th is a "[" and the
28286 (n+1)-th is a ":" (which is a possible digraph typo for "< ::"). */
28288 static bool
28289 cp_parser_nth_token_starts_template_argument_list_p (cp_parser * parser,
28290 size_t n)
28292 cp_token *token;
28294 token = cp_lexer_peek_nth_token (parser->lexer, n);
28295 if (token->type == CPP_LESS)
28296 return true;
28297 /* Check for the sequence `<::' in the original code. It would be lexed as
28298 `[:', where `[' is a digraph, and there is no whitespace before
28299 `:'. */
28300 if (token->type == CPP_OPEN_SQUARE && token->flags & DIGRAPH)
28302 cp_token *token2;
28303 token2 = cp_lexer_peek_nth_token (parser->lexer, n+1);
28304 if (token2->type == CPP_COLON && !(token2->flags & PREV_WHITE))
28305 return true;
28307 return false;
28310 /* Returns the kind of tag indicated by TOKEN, if it is a class-key,
28311 or none_type otherwise. */
28313 static enum tag_types
28314 cp_parser_token_is_class_key (cp_token* token)
28316 switch (token->keyword)
28318 case RID_CLASS:
28319 return class_type;
28320 case RID_STRUCT:
28321 return record_type;
28322 case RID_UNION:
28323 return union_type;
28325 default:
28326 return none_type;
28330 /* Returns the kind of tag indicated by TOKEN, if it is a type-parameter-key,
28331 or none_type otherwise or if the token is null. */
28333 static enum tag_types
28334 cp_parser_token_is_type_parameter_key (cp_token* token)
28336 if (!token)
28337 return none_type;
28339 switch (token->keyword)
28341 case RID_CLASS:
28342 return class_type;
28343 case RID_TYPENAME:
28344 return typename_type;
28346 default:
28347 return none_type;
28351 /* Issue an error message if the CLASS_KEY does not match the TYPE. */
28353 static void
28354 cp_parser_check_class_key (enum tag_types class_key, tree type)
28356 if (type == error_mark_node)
28357 return;
28358 if ((TREE_CODE (type) == UNION_TYPE) != (class_key == union_type))
28360 if (permerror (input_location, "%qs tag used in naming %q#T",
28361 class_key == union_type ? "union"
28362 : class_key == record_type ? "struct" : "class",
28363 type))
28364 inform (DECL_SOURCE_LOCATION (TYPE_NAME (type)),
28365 "%q#T was previously declared here", type);
28369 /* Issue an error message if DECL is redeclared with different
28370 access than its original declaration [class.access.spec/3].
28371 This applies to nested classes, nested class templates and
28372 enumerations [class.mem/1]. */
28374 static void
28375 cp_parser_check_access_in_redeclaration (tree decl, location_t location)
28377 if (!decl
28378 || (!CLASS_TYPE_P (TREE_TYPE (decl))
28379 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE))
28380 return;
28382 if ((TREE_PRIVATE (decl)
28383 != (current_access_specifier == access_private_node))
28384 || (TREE_PROTECTED (decl)
28385 != (current_access_specifier == access_protected_node)))
28386 error_at (location, "%qD redeclared with different access", decl);
28389 /* Look for the `template' keyword, as a syntactic disambiguator.
28390 Return TRUE iff it is present, in which case it will be
28391 consumed. */
28393 static bool
28394 cp_parser_optional_template_keyword (cp_parser *parser)
28396 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
28398 /* In C++98 the `template' keyword can only be used within templates;
28399 outside templates the parser can always figure out what is a
28400 template and what is not. In C++11, per the resolution of DR 468,
28401 `template' is allowed in cases where it is not strictly necessary. */
28402 if (!processing_template_decl
28403 && pedantic && cxx_dialect == cxx98)
28405 cp_token *token = cp_lexer_peek_token (parser->lexer);
28406 pedwarn (token->location, OPT_Wpedantic,
28407 "in C++98 %<template%> (as a disambiguator) is only "
28408 "allowed within templates");
28409 /* If this part of the token stream is rescanned, the same
28410 error message would be generated. So, we purge the token
28411 from the stream. */
28412 cp_lexer_purge_token (parser->lexer);
28413 return false;
28415 else
28417 /* Consume the `template' keyword. */
28418 cp_lexer_consume_token (parser->lexer);
28419 return true;
28422 return false;
28425 /* The next token is a CPP_NESTED_NAME_SPECIFIER. Consume the token,
28426 set PARSER->SCOPE, and perform other related actions. */
28428 static void
28429 cp_parser_pre_parsed_nested_name_specifier (cp_parser *parser)
28431 struct tree_check *check_value;
28433 /* Get the stored value. */
28434 check_value = cp_lexer_consume_token (parser->lexer)->u.tree_check_value;
28435 /* Set the scope from the stored value. */
28436 parser->scope = saved_checks_value (check_value);
28437 parser->qualifying_scope = check_value->qualifying_scope;
28438 parser->object_scope = NULL_TREE;
28441 /* Consume tokens up through a non-nested END token. Returns TRUE if we
28442 encounter the end of a block before what we were looking for. */
28444 static bool
28445 cp_parser_cache_group (cp_parser *parser,
28446 enum cpp_ttype end,
28447 unsigned depth)
28449 while (true)
28451 cp_token *token = cp_lexer_peek_token (parser->lexer);
28453 /* Abort a parenthesized expression if we encounter a semicolon. */
28454 if ((end == CPP_CLOSE_PAREN || depth == 0)
28455 && token->type == CPP_SEMICOLON)
28456 return true;
28457 /* If we've reached the end of the file, stop. */
28458 if (token->type == CPP_EOF
28459 || (end != CPP_PRAGMA_EOL
28460 && token->type == CPP_PRAGMA_EOL))
28461 return true;
28462 if (token->type == CPP_CLOSE_BRACE && depth == 0)
28463 /* We've hit the end of an enclosing block, so there's been some
28464 kind of syntax error. */
28465 return true;
28467 /* Consume the token. */
28468 cp_lexer_consume_token (parser->lexer);
28469 /* See if it starts a new group. */
28470 if (token->type == CPP_OPEN_BRACE)
28472 cp_parser_cache_group (parser, CPP_CLOSE_BRACE, depth + 1);
28473 /* In theory this should probably check end == '}', but
28474 cp_parser_save_member_function_body needs it to exit
28475 after either '}' or ')' when called with ')'. */
28476 if (depth == 0)
28477 return false;
28479 else if (token->type == CPP_OPEN_PAREN)
28481 cp_parser_cache_group (parser, CPP_CLOSE_PAREN, depth + 1);
28482 if (depth == 0 && end == CPP_CLOSE_PAREN)
28483 return false;
28485 else if (token->type == CPP_PRAGMA)
28486 cp_parser_cache_group (parser, CPP_PRAGMA_EOL, depth + 1);
28487 else if (token->type == end)
28488 return false;
28492 /* Like above, for caching a default argument or NSDMI. Both of these are
28493 terminated by a non-nested comma, but it can be unclear whether or not a
28494 comma is nested in a template argument list unless we do more parsing.
28495 In order to handle this ambiguity, when we encounter a ',' after a '<'
28496 we try to parse what follows as a parameter-declaration-list (in the
28497 case of a default argument) or a member-declarator (in the case of an
28498 NSDMI). If that succeeds, then we stop caching. */
28500 static tree
28501 cp_parser_cache_defarg (cp_parser *parser, bool nsdmi)
28503 unsigned depth = 0;
28504 int maybe_template_id = 0;
28505 cp_token *first_token;
28506 cp_token *token;
28507 tree default_argument;
28509 /* Add tokens until we have processed the entire default
28510 argument. We add the range [first_token, token). */
28511 first_token = cp_lexer_peek_token (parser->lexer);
28512 if (first_token->type == CPP_OPEN_BRACE)
28514 /* For list-initialization, this is straightforward. */
28515 cp_parser_cache_group (parser, CPP_CLOSE_BRACE, /*depth=*/0);
28516 token = cp_lexer_peek_token (parser->lexer);
28518 else while (true)
28520 bool done = false;
28522 /* Peek at the next token. */
28523 token = cp_lexer_peek_token (parser->lexer);
28524 /* What we do depends on what token we have. */
28525 switch (token->type)
28527 /* In valid code, a default argument must be
28528 immediately followed by a `,' `)', or `...'. */
28529 case CPP_COMMA:
28530 if (depth == 0 && maybe_template_id)
28532 /* If we've seen a '<', we might be in a
28533 template-argument-list. Until Core issue 325 is
28534 resolved, we don't know how this situation ought
28535 to be handled, so try to DTRT. We check whether
28536 what comes after the comma is a valid parameter
28537 declaration list. If it is, then the comma ends
28538 the default argument; otherwise the default
28539 argument continues. */
28540 bool error = false;
28541 cp_token *peek;
28543 /* Set ITALP so cp_parser_parameter_declaration_list
28544 doesn't decide to commit to this parse. */
28545 bool saved_italp = parser->in_template_argument_list_p;
28546 parser->in_template_argument_list_p = true;
28548 cp_parser_parse_tentatively (parser);
28550 if (nsdmi)
28552 /* Parse declarators until we reach a non-comma or
28553 somthing that cannot be an initializer.
28554 Just checking whether we're looking at a single
28555 declarator is insufficient. Consider:
28556 int var = tuple<T,U>::x;
28557 The template parameter 'U' looks exactly like a
28558 declarator. */
28561 int ctor_dtor_or_conv_p;
28562 cp_lexer_consume_token (parser->lexer);
28563 cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
28564 &ctor_dtor_or_conv_p,
28565 /*parenthesized_p=*/NULL,
28566 /*member_p=*/true,
28567 /*friend_p=*/false);
28568 peek = cp_lexer_peek_token (parser->lexer);
28569 if (cp_parser_error_occurred (parser))
28570 break;
28572 while (peek->type == CPP_COMMA);
28573 /* If we met an '=' or ';' then the original comma
28574 was the end of the NSDMI. Otherwise assume
28575 we're still in the NSDMI. */
28576 error = (peek->type != CPP_EQ
28577 && peek->type != CPP_SEMICOLON);
28579 else
28581 cp_lexer_consume_token (parser->lexer);
28582 begin_scope (sk_function_parms, NULL_TREE);
28583 cp_parser_parameter_declaration_list (parser, &error);
28584 pop_bindings_and_leave_scope ();
28586 if (!cp_parser_error_occurred (parser) && !error)
28587 done = true;
28588 cp_parser_abort_tentative_parse (parser);
28590 parser->in_template_argument_list_p = saved_italp;
28591 break;
28593 /* FALLTHRU */
28594 case CPP_CLOSE_PAREN:
28595 case CPP_ELLIPSIS:
28596 /* If we run into a non-nested `;', `}', or `]',
28597 then the code is invalid -- but the default
28598 argument is certainly over. */
28599 case CPP_SEMICOLON:
28600 case CPP_CLOSE_BRACE:
28601 case CPP_CLOSE_SQUARE:
28602 if (depth == 0
28603 /* Handle correctly int n = sizeof ... ( p ); */
28604 && token->type != CPP_ELLIPSIS)
28605 done = true;
28606 /* Update DEPTH, if necessary. */
28607 else if (token->type == CPP_CLOSE_PAREN
28608 || token->type == CPP_CLOSE_BRACE
28609 || token->type == CPP_CLOSE_SQUARE)
28610 --depth;
28611 break;
28613 case CPP_OPEN_PAREN:
28614 case CPP_OPEN_SQUARE:
28615 case CPP_OPEN_BRACE:
28616 ++depth;
28617 break;
28619 case CPP_LESS:
28620 if (depth == 0)
28621 /* This might be the comparison operator, or it might
28622 start a template argument list. */
28623 ++maybe_template_id;
28624 break;
28626 case CPP_RSHIFT:
28627 if (cxx_dialect == cxx98)
28628 break;
28629 /* Fall through for C++0x, which treats the `>>'
28630 operator like two `>' tokens in certain
28631 cases. */
28632 gcc_fallthrough ();
28634 case CPP_GREATER:
28635 if (depth == 0)
28637 /* This might be an operator, or it might close a
28638 template argument list. But if a previous '<'
28639 started a template argument list, this will have
28640 closed it, so we can't be in one anymore. */
28641 maybe_template_id -= 1 + (token->type == CPP_RSHIFT);
28642 if (maybe_template_id < 0)
28643 maybe_template_id = 0;
28645 break;
28647 /* If we run out of tokens, issue an error message. */
28648 case CPP_EOF:
28649 case CPP_PRAGMA_EOL:
28650 error_at (token->location, "file ends in default argument");
28651 return error_mark_node;
28653 case CPP_NAME:
28654 case CPP_SCOPE:
28655 /* In these cases, we should look for template-ids.
28656 For example, if the default argument is
28657 `X<int, double>()', we need to do name lookup to
28658 figure out whether or not `X' is a template; if
28659 so, the `,' does not end the default argument.
28661 That is not yet done. */
28662 break;
28664 default:
28665 break;
28668 /* If we've reached the end, stop. */
28669 if (done)
28670 break;
28672 /* Add the token to the token block. */
28673 token = cp_lexer_consume_token (parser->lexer);
28676 /* Create a DEFAULT_ARG to represent the unparsed default
28677 argument. */
28678 default_argument = make_node (DEFAULT_ARG);
28679 DEFARG_TOKENS (default_argument)
28680 = cp_token_cache_new (first_token, token);
28681 DEFARG_INSTANTIATIONS (default_argument) = NULL;
28683 return default_argument;
28686 /* Begin parsing tentatively. We always save tokens while parsing
28687 tentatively so that if the tentative parsing fails we can restore the
28688 tokens. */
28690 static void
28691 cp_parser_parse_tentatively (cp_parser* parser)
28693 /* Enter a new parsing context. */
28694 parser->context = cp_parser_context_new (parser->context);
28695 /* Begin saving tokens. */
28696 cp_lexer_save_tokens (parser->lexer);
28697 /* In order to avoid repetitive access control error messages,
28698 access checks are queued up until we are no longer parsing
28699 tentatively. */
28700 push_deferring_access_checks (dk_deferred);
28703 /* Commit to the currently active tentative parse. */
28705 static void
28706 cp_parser_commit_to_tentative_parse (cp_parser* parser)
28708 cp_parser_context *context;
28709 cp_lexer *lexer;
28711 /* Mark all of the levels as committed. */
28712 lexer = parser->lexer;
28713 for (context = parser->context; context->next; context = context->next)
28715 if (context->status == CP_PARSER_STATUS_KIND_COMMITTED)
28716 break;
28717 context->status = CP_PARSER_STATUS_KIND_COMMITTED;
28718 while (!cp_lexer_saving_tokens (lexer))
28719 lexer = lexer->next;
28720 cp_lexer_commit_tokens (lexer);
28724 /* Commit to the topmost currently active tentative parse.
28726 Note that this function shouldn't be called when there are
28727 irreversible side-effects while in a tentative state. For
28728 example, we shouldn't create a permanent entry in the symbol
28729 table, or issue an error message that might not apply if the
28730 tentative parse is aborted. */
28732 static void
28733 cp_parser_commit_to_topmost_tentative_parse (cp_parser* parser)
28735 cp_parser_context *context = parser->context;
28736 cp_lexer *lexer = parser->lexer;
28738 if (context)
28740 if (context->status == CP_PARSER_STATUS_KIND_COMMITTED)
28741 return;
28742 context->status = CP_PARSER_STATUS_KIND_COMMITTED;
28744 while (!cp_lexer_saving_tokens (lexer))
28745 lexer = lexer->next;
28746 cp_lexer_commit_tokens (lexer);
28750 /* Abort the currently active tentative parse. All consumed tokens
28751 will be rolled back, and no diagnostics will be issued. */
28753 static void
28754 cp_parser_abort_tentative_parse (cp_parser* parser)
28756 gcc_assert (parser->context->status != CP_PARSER_STATUS_KIND_COMMITTED
28757 || errorcount > 0);
28758 cp_parser_simulate_error (parser);
28759 /* Now, pretend that we want to see if the construct was
28760 successfully parsed. */
28761 cp_parser_parse_definitely (parser);
28764 /* Stop parsing tentatively. If a parse error has occurred, restore the
28765 token stream. Otherwise, commit to the tokens we have consumed.
28766 Returns true if no error occurred; false otherwise. */
28768 static bool
28769 cp_parser_parse_definitely (cp_parser* parser)
28771 bool error_occurred;
28772 cp_parser_context *context;
28774 /* Remember whether or not an error occurred, since we are about to
28775 destroy that information. */
28776 error_occurred = cp_parser_error_occurred (parser);
28777 /* Remove the topmost context from the stack. */
28778 context = parser->context;
28779 parser->context = context->next;
28780 /* If no parse errors occurred, commit to the tentative parse. */
28781 if (!error_occurred)
28783 /* Commit to the tokens read tentatively, unless that was
28784 already done. */
28785 if (context->status != CP_PARSER_STATUS_KIND_COMMITTED)
28786 cp_lexer_commit_tokens (parser->lexer);
28788 pop_to_parent_deferring_access_checks ();
28790 /* Otherwise, if errors occurred, roll back our state so that things
28791 are just as they were before we began the tentative parse. */
28792 else
28794 cp_lexer_rollback_tokens (parser->lexer);
28795 pop_deferring_access_checks ();
28797 /* Add the context to the front of the free list. */
28798 context->next = cp_parser_context_free_list;
28799 cp_parser_context_free_list = context;
28801 return !error_occurred;
28804 /* Returns true if we are parsing tentatively and are not committed to
28805 this tentative parse. */
28807 static bool
28808 cp_parser_uncommitted_to_tentative_parse_p (cp_parser* parser)
28810 return (cp_parser_parsing_tentatively (parser)
28811 && parser->context->status != CP_PARSER_STATUS_KIND_COMMITTED);
28814 /* Returns nonzero iff an error has occurred during the most recent
28815 tentative parse. */
28817 static bool
28818 cp_parser_error_occurred (cp_parser* parser)
28820 return (cp_parser_parsing_tentatively (parser)
28821 && parser->context->status == CP_PARSER_STATUS_KIND_ERROR);
28824 /* Returns nonzero if GNU extensions are allowed. */
28826 static bool
28827 cp_parser_allow_gnu_extensions_p (cp_parser* parser)
28829 return parser->allow_gnu_extensions_p;
28832 /* Objective-C++ Productions */
28835 /* Parse an Objective-C expression, which feeds into a primary-expression
28836 above.
28838 objc-expression:
28839 objc-message-expression
28840 objc-string-literal
28841 objc-encode-expression
28842 objc-protocol-expression
28843 objc-selector-expression
28845 Returns a tree representation of the expression. */
28847 static cp_expr
28848 cp_parser_objc_expression (cp_parser* parser)
28850 /* Try to figure out what kind of declaration is present. */
28851 cp_token *kwd = cp_lexer_peek_token (parser->lexer);
28853 switch (kwd->type)
28855 case CPP_OPEN_SQUARE:
28856 return cp_parser_objc_message_expression (parser);
28858 case CPP_OBJC_STRING:
28859 kwd = cp_lexer_consume_token (parser->lexer);
28860 return objc_build_string_object (kwd->u.value);
28862 case CPP_KEYWORD:
28863 switch (kwd->keyword)
28865 case RID_AT_ENCODE:
28866 return cp_parser_objc_encode_expression (parser);
28868 case RID_AT_PROTOCOL:
28869 return cp_parser_objc_protocol_expression (parser);
28871 case RID_AT_SELECTOR:
28872 return cp_parser_objc_selector_expression (parser);
28874 default:
28875 break;
28877 default:
28878 error_at (kwd->location,
28879 "misplaced %<@%D%> Objective-C++ construct",
28880 kwd->u.value);
28881 cp_parser_skip_to_end_of_block_or_statement (parser);
28884 return error_mark_node;
28887 /* Parse an Objective-C message expression.
28889 objc-message-expression:
28890 [ objc-message-receiver objc-message-args ]
28892 Returns a representation of an Objective-C message. */
28894 static tree
28895 cp_parser_objc_message_expression (cp_parser* parser)
28897 tree receiver, messageargs;
28899 location_t start_loc = cp_lexer_peek_token (parser->lexer)->location;
28900 cp_lexer_consume_token (parser->lexer); /* Eat '['. */
28901 receiver = cp_parser_objc_message_receiver (parser);
28902 messageargs = cp_parser_objc_message_args (parser);
28903 location_t end_loc = cp_lexer_peek_token (parser->lexer)->location;
28904 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
28906 tree result = objc_build_message_expr (receiver, messageargs);
28908 /* Construct a location e.g.
28909 [self func1:5]
28910 ^~~~~~~~~~~~~~
28911 ranging from the '[' to the ']', with the caret at the start. */
28912 location_t combined_loc = make_location (start_loc, start_loc, end_loc);
28913 protected_set_expr_location (result, combined_loc);
28915 return result;
28918 /* Parse an objc-message-receiver.
28920 objc-message-receiver:
28921 expression
28922 simple-type-specifier
28924 Returns a representation of the type or expression. */
28926 static tree
28927 cp_parser_objc_message_receiver (cp_parser* parser)
28929 tree rcv;
28931 /* An Objective-C message receiver may be either (1) a type
28932 or (2) an expression. */
28933 cp_parser_parse_tentatively (parser);
28934 rcv = cp_parser_expression (parser);
28936 /* If that worked out, fine. */
28937 if (cp_parser_parse_definitely (parser))
28938 return rcv;
28940 cp_parser_parse_tentatively (parser);
28941 rcv = cp_parser_simple_type_specifier (parser,
28942 /*decl_specs=*/NULL,
28943 CP_PARSER_FLAGS_NONE);
28945 if (cp_parser_parse_definitely (parser))
28946 return objc_get_class_reference (rcv);
28948 cp_parser_error (parser, "objective-c++ message receiver expected");
28949 return error_mark_node;
28952 /* Parse the arguments and selectors comprising an Objective-C message.
28954 objc-message-args:
28955 objc-selector
28956 objc-selector-args
28957 objc-selector-args , objc-comma-args
28959 objc-selector-args:
28960 objc-selector [opt] : assignment-expression
28961 objc-selector-args objc-selector [opt] : assignment-expression
28963 objc-comma-args:
28964 assignment-expression
28965 objc-comma-args , assignment-expression
28967 Returns a TREE_LIST, with TREE_PURPOSE containing a list of
28968 selector arguments and TREE_VALUE containing a list of comma
28969 arguments. */
28971 static tree
28972 cp_parser_objc_message_args (cp_parser* parser)
28974 tree sel_args = NULL_TREE, addl_args = NULL_TREE;
28975 bool maybe_unary_selector_p = true;
28976 cp_token *token = cp_lexer_peek_token (parser->lexer);
28978 while (cp_parser_objc_selector_p (token->type) || token->type == CPP_COLON)
28980 tree selector = NULL_TREE, arg;
28982 if (token->type != CPP_COLON)
28983 selector = cp_parser_objc_selector (parser);
28985 /* Detect if we have a unary selector. */
28986 if (maybe_unary_selector_p
28987 && cp_lexer_next_token_is_not (parser->lexer, CPP_COLON))
28988 return build_tree_list (selector, NULL_TREE);
28990 maybe_unary_selector_p = false;
28991 cp_parser_require (parser, CPP_COLON, RT_COLON);
28992 arg = cp_parser_assignment_expression (parser);
28994 sel_args
28995 = chainon (sel_args,
28996 build_tree_list (selector, arg));
28998 token = cp_lexer_peek_token (parser->lexer);
29001 /* Handle non-selector arguments, if any. */
29002 while (token->type == CPP_COMMA)
29004 tree arg;
29006 cp_lexer_consume_token (parser->lexer);
29007 arg = cp_parser_assignment_expression (parser);
29009 addl_args
29010 = chainon (addl_args,
29011 build_tree_list (NULL_TREE, arg));
29013 token = cp_lexer_peek_token (parser->lexer);
29016 if (sel_args == NULL_TREE && addl_args == NULL_TREE)
29018 cp_parser_error (parser, "objective-c++ message argument(s) are expected");
29019 return build_tree_list (error_mark_node, error_mark_node);
29022 return build_tree_list (sel_args, addl_args);
29025 /* Parse an Objective-C encode expression.
29027 objc-encode-expression:
29028 @encode objc-typename
29030 Returns an encoded representation of the type argument. */
29032 static cp_expr
29033 cp_parser_objc_encode_expression (cp_parser* parser)
29035 tree type;
29036 cp_token *token;
29037 location_t start_loc = cp_lexer_peek_token (parser->lexer)->location;
29039 cp_lexer_consume_token (parser->lexer); /* Eat '@encode'. */
29040 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
29041 token = cp_lexer_peek_token (parser->lexer);
29042 type = complete_type (cp_parser_type_id (parser));
29043 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
29045 if (!type)
29047 error_at (token->location,
29048 "%<@encode%> must specify a type as an argument");
29049 return error_mark_node;
29052 /* This happens if we find @encode(T) (where T is a template
29053 typename or something dependent on a template typename) when
29054 parsing a template. In that case, we can't compile it
29055 immediately, but we rather create an AT_ENCODE_EXPR which will
29056 need to be instantiated when the template is used.
29058 if (dependent_type_p (type))
29060 tree value = build_min (AT_ENCODE_EXPR, size_type_node, type);
29061 TREE_READONLY (value) = 1;
29062 return value;
29066 /* Build a location of the form:
29067 @encode(int)
29068 ^~~~~~~~~~~~
29069 with caret==start at the @ token, finishing at the close paren. */
29070 location_t combined_loc
29071 = make_location (start_loc, start_loc,
29072 cp_lexer_previous_token (parser->lexer)->location);
29074 return cp_expr (objc_build_encode_expr (type), combined_loc);
29077 /* Parse an Objective-C @defs expression. */
29079 static tree
29080 cp_parser_objc_defs_expression (cp_parser *parser)
29082 tree name;
29084 cp_lexer_consume_token (parser->lexer); /* Eat '@defs'. */
29085 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
29086 name = cp_parser_identifier (parser);
29087 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
29089 return objc_get_class_ivars (name);
29092 /* Parse an Objective-C protocol expression.
29094 objc-protocol-expression:
29095 @protocol ( identifier )
29097 Returns a representation of the protocol expression. */
29099 static tree
29100 cp_parser_objc_protocol_expression (cp_parser* parser)
29102 tree proto;
29103 location_t start_loc = cp_lexer_peek_token (parser->lexer)->location;
29105 cp_lexer_consume_token (parser->lexer); /* Eat '@protocol'. */
29106 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
29107 proto = cp_parser_identifier (parser);
29108 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
29110 /* Build a location of the form:
29111 @protocol(prot)
29112 ^~~~~~~~~~~~~~~
29113 with caret==start at the @ token, finishing at the close paren. */
29114 location_t combined_loc
29115 = make_location (start_loc, start_loc,
29116 cp_lexer_previous_token (parser->lexer)->location);
29117 tree result = objc_build_protocol_expr (proto);
29118 protected_set_expr_location (result, combined_loc);
29119 return result;
29122 /* Parse an Objective-C selector expression.
29124 objc-selector-expression:
29125 @selector ( objc-method-signature )
29127 objc-method-signature:
29128 objc-selector
29129 objc-selector-seq
29131 objc-selector-seq:
29132 objc-selector :
29133 objc-selector-seq objc-selector :
29135 Returns a representation of the method selector. */
29137 static tree
29138 cp_parser_objc_selector_expression (cp_parser* parser)
29140 tree sel_seq = NULL_TREE;
29141 bool maybe_unary_selector_p = true;
29142 cp_token *token;
29143 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
29145 cp_lexer_consume_token (parser->lexer); /* Eat '@selector'. */
29146 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
29147 token = cp_lexer_peek_token (parser->lexer);
29149 while (cp_parser_objc_selector_p (token->type) || token->type == CPP_COLON
29150 || token->type == CPP_SCOPE)
29152 tree selector = NULL_TREE;
29154 if (token->type != CPP_COLON
29155 || token->type == CPP_SCOPE)
29156 selector = cp_parser_objc_selector (parser);
29158 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COLON)
29159 && cp_lexer_next_token_is_not (parser->lexer, CPP_SCOPE))
29161 /* Detect if we have a unary selector. */
29162 if (maybe_unary_selector_p)
29164 sel_seq = selector;
29165 goto finish_selector;
29167 else
29169 cp_parser_error (parser, "expected %<:%>");
29172 maybe_unary_selector_p = false;
29173 token = cp_lexer_consume_token (parser->lexer);
29175 if (token->type == CPP_SCOPE)
29177 sel_seq
29178 = chainon (sel_seq,
29179 build_tree_list (selector, NULL_TREE));
29180 sel_seq
29181 = chainon (sel_seq,
29182 build_tree_list (NULL_TREE, NULL_TREE));
29184 else
29185 sel_seq
29186 = chainon (sel_seq,
29187 build_tree_list (selector, NULL_TREE));
29189 token = cp_lexer_peek_token (parser->lexer);
29192 finish_selector:
29193 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
29196 /* Build a location of the form:
29197 @selector(func)
29198 ^~~~~~~~~~~~~~~
29199 with caret==start at the @ token, finishing at the close paren. */
29200 location_t combined_loc
29201 = make_location (loc, loc,
29202 cp_lexer_previous_token (parser->lexer)->location);
29203 tree result = objc_build_selector_expr (combined_loc, sel_seq);
29204 /* TODO: objc_build_selector_expr doesn't always honor the location. */
29205 protected_set_expr_location (result, combined_loc);
29206 return result;
29209 /* Parse a list of identifiers.
29211 objc-identifier-list:
29212 identifier
29213 objc-identifier-list , identifier
29215 Returns a TREE_LIST of identifier nodes. */
29217 static tree
29218 cp_parser_objc_identifier_list (cp_parser* parser)
29220 tree identifier;
29221 tree list;
29222 cp_token *sep;
29224 identifier = cp_parser_identifier (parser);
29225 if (identifier == error_mark_node)
29226 return error_mark_node;
29228 list = build_tree_list (NULL_TREE, identifier);
29229 sep = cp_lexer_peek_token (parser->lexer);
29231 while (sep->type == CPP_COMMA)
29233 cp_lexer_consume_token (parser->lexer); /* Eat ','. */
29234 identifier = cp_parser_identifier (parser);
29235 if (identifier == error_mark_node)
29236 return list;
29238 list = chainon (list, build_tree_list (NULL_TREE,
29239 identifier));
29240 sep = cp_lexer_peek_token (parser->lexer);
29243 return list;
29246 /* Parse an Objective-C alias declaration.
29248 objc-alias-declaration:
29249 @compatibility_alias identifier identifier ;
29251 This function registers the alias mapping with the Objective-C front end.
29252 It returns nothing. */
29254 static void
29255 cp_parser_objc_alias_declaration (cp_parser* parser)
29257 tree alias, orig;
29259 cp_lexer_consume_token (parser->lexer); /* Eat '@compatibility_alias'. */
29260 alias = cp_parser_identifier (parser);
29261 orig = cp_parser_identifier (parser);
29262 objc_declare_alias (alias, orig);
29263 cp_parser_consume_semicolon_at_end_of_statement (parser);
29266 /* Parse an Objective-C class forward-declaration.
29268 objc-class-declaration:
29269 @class objc-identifier-list ;
29271 The function registers the forward declarations with the Objective-C
29272 front end. It returns nothing. */
29274 static void
29275 cp_parser_objc_class_declaration (cp_parser* parser)
29277 cp_lexer_consume_token (parser->lexer); /* Eat '@class'. */
29278 while (true)
29280 tree id;
29282 id = cp_parser_identifier (parser);
29283 if (id == error_mark_node)
29284 break;
29286 objc_declare_class (id);
29288 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
29289 cp_lexer_consume_token (parser->lexer);
29290 else
29291 break;
29293 cp_parser_consume_semicolon_at_end_of_statement (parser);
29296 /* Parse a list of Objective-C protocol references.
29298 objc-protocol-refs-opt:
29299 objc-protocol-refs [opt]
29301 objc-protocol-refs:
29302 < objc-identifier-list >
29304 Returns a TREE_LIST of identifiers, if any. */
29306 static tree
29307 cp_parser_objc_protocol_refs_opt (cp_parser* parser)
29309 tree protorefs = NULL_TREE;
29311 if(cp_lexer_next_token_is (parser->lexer, CPP_LESS))
29313 cp_lexer_consume_token (parser->lexer); /* Eat '<'. */
29314 protorefs = cp_parser_objc_identifier_list (parser);
29315 cp_parser_require (parser, CPP_GREATER, RT_GREATER);
29318 return protorefs;
29321 /* Parse a Objective-C visibility specification. */
29323 static void
29324 cp_parser_objc_visibility_spec (cp_parser* parser)
29326 cp_token *vis = cp_lexer_peek_token (parser->lexer);
29328 switch (vis->keyword)
29330 case RID_AT_PRIVATE:
29331 objc_set_visibility (OBJC_IVAR_VIS_PRIVATE);
29332 break;
29333 case RID_AT_PROTECTED:
29334 objc_set_visibility (OBJC_IVAR_VIS_PROTECTED);
29335 break;
29336 case RID_AT_PUBLIC:
29337 objc_set_visibility (OBJC_IVAR_VIS_PUBLIC);
29338 break;
29339 case RID_AT_PACKAGE:
29340 objc_set_visibility (OBJC_IVAR_VIS_PACKAGE);
29341 break;
29342 default:
29343 return;
29346 /* Eat '@private'/'@protected'/'@public'. */
29347 cp_lexer_consume_token (parser->lexer);
29350 /* Parse an Objective-C method type. Return 'true' if it is a class
29351 (+) method, and 'false' if it is an instance (-) method. */
29353 static inline bool
29354 cp_parser_objc_method_type (cp_parser* parser)
29356 if (cp_lexer_consume_token (parser->lexer)->type == CPP_PLUS)
29357 return true;
29358 else
29359 return false;
29362 /* Parse an Objective-C protocol qualifier. */
29364 static tree
29365 cp_parser_objc_protocol_qualifiers (cp_parser* parser)
29367 tree quals = NULL_TREE, node;
29368 cp_token *token = cp_lexer_peek_token (parser->lexer);
29370 node = token->u.value;
29372 while (node && identifier_p (node)
29373 && (node == ridpointers [(int) RID_IN]
29374 || node == ridpointers [(int) RID_OUT]
29375 || node == ridpointers [(int) RID_INOUT]
29376 || node == ridpointers [(int) RID_BYCOPY]
29377 || node == ridpointers [(int) RID_BYREF]
29378 || node == ridpointers [(int) RID_ONEWAY]))
29380 quals = tree_cons (NULL_TREE, node, quals);
29381 cp_lexer_consume_token (parser->lexer);
29382 token = cp_lexer_peek_token (parser->lexer);
29383 node = token->u.value;
29386 return quals;
29389 /* Parse an Objective-C typename. */
29391 static tree
29392 cp_parser_objc_typename (cp_parser* parser)
29394 tree type_name = NULL_TREE;
29396 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
29398 tree proto_quals, cp_type = NULL_TREE;
29400 cp_lexer_consume_token (parser->lexer); /* Eat '('. */
29401 proto_quals = cp_parser_objc_protocol_qualifiers (parser);
29403 /* An ObjC type name may consist of just protocol qualifiers, in which
29404 case the type shall default to 'id'. */
29405 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN))
29407 cp_type = cp_parser_type_id (parser);
29409 /* If the type could not be parsed, an error has already
29410 been produced. For error recovery, behave as if it had
29411 not been specified, which will use the default type
29412 'id'. */
29413 if (cp_type == error_mark_node)
29415 cp_type = NULL_TREE;
29416 /* We need to skip to the closing parenthesis as
29417 cp_parser_type_id() does not seem to do it for
29418 us. */
29419 cp_parser_skip_to_closing_parenthesis (parser,
29420 /*recovering=*/true,
29421 /*or_comma=*/false,
29422 /*consume_paren=*/false);
29426 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
29427 type_name = build_tree_list (proto_quals, cp_type);
29430 return type_name;
29433 /* Check to see if TYPE refers to an Objective-C selector name. */
29435 static bool
29436 cp_parser_objc_selector_p (enum cpp_ttype type)
29438 return (type == CPP_NAME || type == CPP_KEYWORD
29439 || type == CPP_AND_AND || type == CPP_AND_EQ || type == CPP_AND
29440 || type == CPP_OR || type == CPP_COMPL || type == CPP_NOT
29441 || type == CPP_NOT_EQ || type == CPP_OR_OR || type == CPP_OR_EQ
29442 || type == CPP_XOR || type == CPP_XOR_EQ);
29445 /* Parse an Objective-C selector. */
29447 static tree
29448 cp_parser_objc_selector (cp_parser* parser)
29450 cp_token *token = cp_lexer_consume_token (parser->lexer);
29452 if (!cp_parser_objc_selector_p (token->type))
29454 error_at (token->location, "invalid Objective-C++ selector name");
29455 return error_mark_node;
29458 /* C++ operator names are allowed to appear in ObjC selectors. */
29459 switch (token->type)
29461 case CPP_AND_AND: return get_identifier ("and");
29462 case CPP_AND_EQ: return get_identifier ("and_eq");
29463 case CPP_AND: return get_identifier ("bitand");
29464 case CPP_OR: return get_identifier ("bitor");
29465 case CPP_COMPL: return get_identifier ("compl");
29466 case CPP_NOT: return get_identifier ("not");
29467 case CPP_NOT_EQ: return get_identifier ("not_eq");
29468 case CPP_OR_OR: return get_identifier ("or");
29469 case CPP_OR_EQ: return get_identifier ("or_eq");
29470 case CPP_XOR: return get_identifier ("xor");
29471 case CPP_XOR_EQ: return get_identifier ("xor_eq");
29472 default: return token->u.value;
29476 /* Parse an Objective-C params list. */
29478 static tree
29479 cp_parser_objc_method_keyword_params (cp_parser* parser, tree* attributes)
29481 tree params = NULL_TREE;
29482 bool maybe_unary_selector_p = true;
29483 cp_token *token = cp_lexer_peek_token (parser->lexer);
29485 while (cp_parser_objc_selector_p (token->type) || token->type == CPP_COLON)
29487 tree selector = NULL_TREE, type_name, identifier;
29488 tree parm_attr = NULL_TREE;
29490 if (token->keyword == RID_ATTRIBUTE)
29491 break;
29493 if (token->type != CPP_COLON)
29494 selector = cp_parser_objc_selector (parser);
29496 /* Detect if we have a unary selector. */
29497 if (maybe_unary_selector_p
29498 && cp_lexer_next_token_is_not (parser->lexer, CPP_COLON))
29500 params = selector; /* Might be followed by attributes. */
29501 break;
29504 maybe_unary_selector_p = false;
29505 if (!cp_parser_require (parser, CPP_COLON, RT_COLON))
29507 /* Something went quite wrong. There should be a colon
29508 here, but there is not. Stop parsing parameters. */
29509 break;
29511 type_name = cp_parser_objc_typename (parser);
29512 /* New ObjC allows attributes on parameters too. */
29513 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_ATTRIBUTE))
29514 parm_attr = cp_parser_attributes_opt (parser);
29515 identifier = cp_parser_identifier (parser);
29517 params
29518 = chainon (params,
29519 objc_build_keyword_decl (selector,
29520 type_name,
29521 identifier,
29522 parm_attr));
29524 token = cp_lexer_peek_token (parser->lexer);
29527 if (params == NULL_TREE)
29529 cp_parser_error (parser, "objective-c++ method declaration is expected");
29530 return error_mark_node;
29533 /* We allow tail attributes for the method. */
29534 if (token->keyword == RID_ATTRIBUTE)
29536 *attributes = cp_parser_attributes_opt (parser);
29537 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
29538 || cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
29539 return params;
29540 cp_parser_error (parser,
29541 "method attributes must be specified at the end");
29542 return error_mark_node;
29545 if (params == NULL_TREE)
29547 cp_parser_error (parser, "objective-c++ method declaration is expected");
29548 return error_mark_node;
29550 return params;
29553 /* Parse the non-keyword Objective-C params. */
29555 static tree
29556 cp_parser_objc_method_tail_params_opt (cp_parser* parser, bool *ellipsisp,
29557 tree* attributes)
29559 tree params = make_node (TREE_LIST);
29560 cp_token *token = cp_lexer_peek_token (parser->lexer);
29561 *ellipsisp = false; /* Initially, assume no ellipsis. */
29563 while (token->type == CPP_COMMA)
29565 cp_parameter_declarator *parmdecl;
29566 tree parm;
29568 cp_lexer_consume_token (parser->lexer); /* Eat ','. */
29569 token = cp_lexer_peek_token (parser->lexer);
29571 if (token->type == CPP_ELLIPSIS)
29573 cp_lexer_consume_token (parser->lexer); /* Eat '...'. */
29574 *ellipsisp = true;
29575 token = cp_lexer_peek_token (parser->lexer);
29576 break;
29579 /* TODO: parse attributes for tail parameters. */
29580 parmdecl = cp_parser_parameter_declaration (parser, false, NULL);
29581 parm = grokdeclarator (parmdecl->declarator,
29582 &parmdecl->decl_specifiers,
29583 PARM, /*initialized=*/0,
29584 /*attrlist=*/NULL);
29586 chainon (params, build_tree_list (NULL_TREE, parm));
29587 token = cp_lexer_peek_token (parser->lexer);
29590 /* We allow tail attributes for the method. */
29591 if (token->keyword == RID_ATTRIBUTE)
29593 if (*attributes == NULL_TREE)
29595 *attributes = cp_parser_attributes_opt (parser);
29596 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
29597 || cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
29598 return params;
29600 else
29601 /* We have an error, but parse the attributes, so that we can
29602 carry on. */
29603 *attributes = cp_parser_attributes_opt (parser);
29605 cp_parser_error (parser,
29606 "method attributes must be specified at the end");
29607 return error_mark_node;
29610 return params;
29613 /* Parse a linkage specification, a pragma, an extra semicolon or a block. */
29615 static void
29616 cp_parser_objc_interstitial_code (cp_parser* parser)
29618 cp_token *token = cp_lexer_peek_token (parser->lexer);
29620 /* If the next token is `extern' and the following token is a string
29621 literal, then we have a linkage specification. */
29622 if (token->keyword == RID_EXTERN
29623 && cp_parser_is_pure_string_literal
29624 (cp_lexer_peek_nth_token (parser->lexer, 2)))
29625 cp_parser_linkage_specification (parser);
29626 /* Handle #pragma, if any. */
29627 else if (token->type == CPP_PRAGMA)
29628 cp_parser_pragma (parser, pragma_objc_icode, NULL);
29629 /* Allow stray semicolons. */
29630 else if (token->type == CPP_SEMICOLON)
29631 cp_lexer_consume_token (parser->lexer);
29632 /* Mark methods as optional or required, when building protocols. */
29633 else if (token->keyword == RID_AT_OPTIONAL)
29635 cp_lexer_consume_token (parser->lexer);
29636 objc_set_method_opt (true);
29638 else if (token->keyword == RID_AT_REQUIRED)
29640 cp_lexer_consume_token (parser->lexer);
29641 objc_set_method_opt (false);
29643 else if (token->keyword == RID_NAMESPACE)
29644 cp_parser_namespace_definition (parser);
29645 /* Other stray characters must generate errors. */
29646 else if (token->type == CPP_OPEN_BRACE || token->type == CPP_CLOSE_BRACE)
29648 cp_lexer_consume_token (parser->lexer);
29649 error ("stray %qs between Objective-C++ methods",
29650 token->type == CPP_OPEN_BRACE ? "{" : "}");
29652 /* Finally, try to parse a block-declaration, or a function-definition. */
29653 else
29654 cp_parser_block_declaration (parser, /*statement_p=*/false);
29657 /* Parse a method signature. */
29659 static tree
29660 cp_parser_objc_method_signature (cp_parser* parser, tree* attributes)
29662 tree rettype, kwdparms, optparms;
29663 bool ellipsis = false;
29664 bool is_class_method;
29666 is_class_method = cp_parser_objc_method_type (parser);
29667 rettype = cp_parser_objc_typename (parser);
29668 *attributes = NULL_TREE;
29669 kwdparms = cp_parser_objc_method_keyword_params (parser, attributes);
29670 if (kwdparms == error_mark_node)
29671 return error_mark_node;
29672 optparms = cp_parser_objc_method_tail_params_opt (parser, &ellipsis, attributes);
29673 if (optparms == error_mark_node)
29674 return error_mark_node;
29676 return objc_build_method_signature (is_class_method, rettype, kwdparms, optparms, ellipsis);
29679 static bool
29680 cp_parser_objc_method_maybe_bad_prefix_attributes (cp_parser* parser)
29682 tree tattr;
29683 cp_lexer_save_tokens (parser->lexer);
29684 tattr = cp_parser_attributes_opt (parser);
29685 gcc_assert (tattr) ;
29687 /* If the attributes are followed by a method introducer, this is not allowed.
29688 Dump the attributes and flag the situation. */
29689 if (cp_lexer_next_token_is (parser->lexer, CPP_PLUS)
29690 || cp_lexer_next_token_is (parser->lexer, CPP_MINUS))
29691 return true;
29693 /* Otherwise, the attributes introduce some interstitial code, possibly so
29694 rewind to allow that check. */
29695 cp_lexer_rollback_tokens (parser->lexer);
29696 return false;
29699 /* Parse an Objective-C method prototype list. */
29701 static void
29702 cp_parser_objc_method_prototype_list (cp_parser* parser)
29704 cp_token *token = cp_lexer_peek_token (parser->lexer);
29706 while (token->keyword != RID_AT_END && token->type != CPP_EOF)
29708 if (token->type == CPP_PLUS || token->type == CPP_MINUS)
29710 tree attributes, sig;
29711 bool is_class_method;
29712 if (token->type == CPP_PLUS)
29713 is_class_method = true;
29714 else
29715 is_class_method = false;
29716 sig = cp_parser_objc_method_signature (parser, &attributes);
29717 if (sig == error_mark_node)
29719 cp_parser_skip_to_end_of_block_or_statement (parser);
29720 token = cp_lexer_peek_token (parser->lexer);
29721 continue;
29723 objc_add_method_declaration (is_class_method, sig, attributes);
29724 cp_parser_consume_semicolon_at_end_of_statement (parser);
29726 else if (token->keyword == RID_AT_PROPERTY)
29727 cp_parser_objc_at_property_declaration (parser);
29728 else if (token->keyword == RID_ATTRIBUTE
29729 && cp_parser_objc_method_maybe_bad_prefix_attributes(parser))
29730 warning_at (cp_lexer_peek_token (parser->lexer)->location,
29731 OPT_Wattributes,
29732 "prefix attributes are ignored for methods");
29733 else
29734 /* Allow for interspersed non-ObjC++ code. */
29735 cp_parser_objc_interstitial_code (parser);
29737 token = cp_lexer_peek_token (parser->lexer);
29740 if (token->type != CPP_EOF)
29741 cp_lexer_consume_token (parser->lexer); /* Eat '@end'. */
29742 else
29743 cp_parser_error (parser, "expected %<@end%>");
29745 objc_finish_interface ();
29748 /* Parse an Objective-C method definition list. */
29750 static void
29751 cp_parser_objc_method_definition_list (cp_parser* parser)
29753 cp_token *token = cp_lexer_peek_token (parser->lexer);
29755 while (token->keyword != RID_AT_END && token->type != CPP_EOF)
29757 tree meth;
29759 if (token->type == CPP_PLUS || token->type == CPP_MINUS)
29761 cp_token *ptk;
29762 tree sig, attribute;
29763 bool is_class_method;
29764 if (token->type == CPP_PLUS)
29765 is_class_method = true;
29766 else
29767 is_class_method = false;
29768 push_deferring_access_checks (dk_deferred);
29769 sig = cp_parser_objc_method_signature (parser, &attribute);
29770 if (sig == error_mark_node)
29772 cp_parser_skip_to_end_of_block_or_statement (parser);
29773 token = cp_lexer_peek_token (parser->lexer);
29774 continue;
29776 objc_start_method_definition (is_class_method, sig, attribute,
29777 NULL_TREE);
29779 /* For historical reasons, we accept an optional semicolon. */
29780 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
29781 cp_lexer_consume_token (parser->lexer);
29783 ptk = cp_lexer_peek_token (parser->lexer);
29784 if (!(ptk->type == CPP_PLUS || ptk->type == CPP_MINUS
29785 || ptk->type == CPP_EOF || ptk->keyword == RID_AT_END))
29787 perform_deferred_access_checks (tf_warning_or_error);
29788 stop_deferring_access_checks ();
29789 meth = cp_parser_function_definition_after_declarator (parser,
29790 false);
29791 pop_deferring_access_checks ();
29792 objc_finish_method_definition (meth);
29795 /* The following case will be removed once @synthesize is
29796 completely implemented. */
29797 else if (token->keyword == RID_AT_PROPERTY)
29798 cp_parser_objc_at_property_declaration (parser);
29799 else if (token->keyword == RID_AT_SYNTHESIZE)
29800 cp_parser_objc_at_synthesize_declaration (parser);
29801 else if (token->keyword == RID_AT_DYNAMIC)
29802 cp_parser_objc_at_dynamic_declaration (parser);
29803 else if (token->keyword == RID_ATTRIBUTE
29804 && cp_parser_objc_method_maybe_bad_prefix_attributes(parser))
29805 warning_at (token->location, OPT_Wattributes,
29806 "prefix attributes are ignored for methods");
29807 else
29808 /* Allow for interspersed non-ObjC++ code. */
29809 cp_parser_objc_interstitial_code (parser);
29811 token = cp_lexer_peek_token (parser->lexer);
29814 if (token->type != CPP_EOF)
29815 cp_lexer_consume_token (parser->lexer); /* Eat '@end'. */
29816 else
29817 cp_parser_error (parser, "expected %<@end%>");
29819 objc_finish_implementation ();
29822 /* Parse Objective-C ivars. */
29824 static void
29825 cp_parser_objc_class_ivars (cp_parser* parser)
29827 cp_token *token = cp_lexer_peek_token (parser->lexer);
29829 if (token->type != CPP_OPEN_BRACE)
29830 return; /* No ivars specified. */
29832 cp_lexer_consume_token (parser->lexer); /* Eat '{'. */
29833 token = cp_lexer_peek_token (parser->lexer);
29835 while (token->type != CPP_CLOSE_BRACE
29836 && token->keyword != RID_AT_END && token->type != CPP_EOF)
29838 cp_decl_specifier_seq declspecs;
29839 int decl_class_or_enum_p;
29840 tree prefix_attributes;
29842 cp_parser_objc_visibility_spec (parser);
29844 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
29845 break;
29847 cp_parser_decl_specifier_seq (parser,
29848 CP_PARSER_FLAGS_OPTIONAL,
29849 &declspecs,
29850 &decl_class_or_enum_p);
29852 /* auto, register, static, extern, mutable. */
29853 if (declspecs.storage_class != sc_none)
29855 cp_parser_error (parser, "invalid type for instance variable");
29856 declspecs.storage_class = sc_none;
29859 /* thread_local. */
29860 if (decl_spec_seq_has_spec_p (&declspecs, ds_thread))
29862 cp_parser_error (parser, "invalid type for instance variable");
29863 declspecs.locations[ds_thread] = 0;
29866 /* typedef. */
29867 if (decl_spec_seq_has_spec_p (&declspecs, ds_typedef))
29869 cp_parser_error (parser, "invalid type for instance variable");
29870 declspecs.locations[ds_typedef] = 0;
29873 prefix_attributes = declspecs.attributes;
29874 declspecs.attributes = NULL_TREE;
29876 /* Keep going until we hit the `;' at the end of the
29877 declaration. */
29878 while (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
29880 tree width = NULL_TREE, attributes, first_attribute, decl;
29881 cp_declarator *declarator = NULL;
29882 int ctor_dtor_or_conv_p;
29884 /* Check for a (possibly unnamed) bitfield declaration. */
29885 token = cp_lexer_peek_token (parser->lexer);
29886 if (token->type == CPP_COLON)
29887 goto eat_colon;
29889 if (token->type == CPP_NAME
29890 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
29891 == CPP_COLON))
29893 /* Get the name of the bitfield. */
29894 declarator = make_id_declarator (NULL_TREE,
29895 cp_parser_identifier (parser),
29896 sfk_none);
29898 eat_colon:
29899 cp_lexer_consume_token (parser->lexer); /* Eat ':'. */
29900 /* Get the width of the bitfield. */
29901 width
29902 = cp_parser_constant_expression (parser);
29904 else
29906 /* Parse the declarator. */
29907 declarator
29908 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
29909 &ctor_dtor_or_conv_p,
29910 /*parenthesized_p=*/NULL,
29911 /*member_p=*/false,
29912 /*friend_p=*/false);
29915 /* Look for attributes that apply to the ivar. */
29916 attributes = cp_parser_attributes_opt (parser);
29917 /* Remember which attributes are prefix attributes and
29918 which are not. */
29919 first_attribute = attributes;
29920 /* Combine the attributes. */
29921 attributes = chainon (prefix_attributes, attributes);
29923 if (width)
29924 /* Create the bitfield declaration. */
29925 decl = grokbitfield (declarator, &declspecs,
29926 width,
29927 attributes);
29928 else
29929 decl = grokfield (declarator, &declspecs,
29930 NULL_TREE, /*init_const_expr_p=*/false,
29931 NULL_TREE, attributes);
29933 /* Add the instance variable. */
29934 if (decl != error_mark_node && decl != NULL_TREE)
29935 objc_add_instance_variable (decl);
29937 /* Reset PREFIX_ATTRIBUTES. */
29938 while (attributes && TREE_CHAIN (attributes) != first_attribute)
29939 attributes = TREE_CHAIN (attributes);
29940 if (attributes)
29941 TREE_CHAIN (attributes) = NULL_TREE;
29943 token = cp_lexer_peek_token (parser->lexer);
29945 if (token->type == CPP_COMMA)
29947 cp_lexer_consume_token (parser->lexer); /* Eat ','. */
29948 continue;
29950 break;
29953 cp_parser_consume_semicolon_at_end_of_statement (parser);
29954 token = cp_lexer_peek_token (parser->lexer);
29957 if (token->keyword == RID_AT_END)
29958 cp_parser_error (parser, "expected %<}%>");
29960 /* Do not consume the RID_AT_END, so it will be read again as terminating
29961 the @interface of @implementation. */
29962 if (token->keyword != RID_AT_END && token->type != CPP_EOF)
29963 cp_lexer_consume_token (parser->lexer); /* Eat '}'. */
29965 /* For historical reasons, we accept an optional semicolon. */
29966 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
29967 cp_lexer_consume_token (parser->lexer);
29970 /* Parse an Objective-C protocol declaration. */
29972 static void
29973 cp_parser_objc_protocol_declaration (cp_parser* parser, tree attributes)
29975 tree proto, protorefs;
29976 cp_token *tok;
29978 cp_lexer_consume_token (parser->lexer); /* Eat '@protocol'. */
29979 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NAME))
29981 tok = cp_lexer_peek_token (parser->lexer);
29982 error_at (tok->location, "identifier expected after %<@protocol%>");
29983 cp_parser_consume_semicolon_at_end_of_statement (parser);
29984 return;
29987 /* See if we have a forward declaration or a definition. */
29988 tok = cp_lexer_peek_nth_token (parser->lexer, 2);
29990 /* Try a forward declaration first. */
29991 if (tok->type == CPP_COMMA || tok->type == CPP_SEMICOLON)
29993 while (true)
29995 tree id;
29997 id = cp_parser_identifier (parser);
29998 if (id == error_mark_node)
29999 break;
30001 objc_declare_protocol (id, attributes);
30003 if(cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
30004 cp_lexer_consume_token (parser->lexer);
30005 else
30006 break;
30008 cp_parser_consume_semicolon_at_end_of_statement (parser);
30011 /* Ok, we got a full-fledged definition (or at least should). */
30012 else
30014 proto = cp_parser_identifier (parser);
30015 protorefs = cp_parser_objc_protocol_refs_opt (parser);
30016 objc_start_protocol (proto, protorefs, attributes);
30017 cp_parser_objc_method_prototype_list (parser);
30021 /* Parse an Objective-C superclass or category. */
30023 static void
30024 cp_parser_objc_superclass_or_category (cp_parser *parser,
30025 bool iface_p,
30026 tree *super,
30027 tree *categ, bool *is_class_extension)
30029 cp_token *next = cp_lexer_peek_token (parser->lexer);
30031 *super = *categ = NULL_TREE;
30032 *is_class_extension = false;
30033 if (next->type == CPP_COLON)
30035 cp_lexer_consume_token (parser->lexer); /* Eat ':'. */
30036 *super = cp_parser_identifier (parser);
30038 else if (next->type == CPP_OPEN_PAREN)
30040 cp_lexer_consume_token (parser->lexer); /* Eat '('. */
30042 /* If there is no category name, and this is an @interface, we
30043 have a class extension. */
30044 if (iface_p && cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN))
30046 *categ = NULL_TREE;
30047 *is_class_extension = true;
30049 else
30050 *categ = cp_parser_identifier (parser);
30052 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
30056 /* Parse an Objective-C class interface. */
30058 static void
30059 cp_parser_objc_class_interface (cp_parser* parser, tree attributes)
30061 tree name, super, categ, protos;
30062 bool is_class_extension;
30064 cp_lexer_consume_token (parser->lexer); /* Eat '@interface'. */
30065 name = cp_parser_identifier (parser);
30066 if (name == error_mark_node)
30068 /* It's hard to recover because even if valid @interface stuff
30069 is to follow, we can't compile it (or validate it) if we
30070 don't even know which class it refers to. Let's assume this
30071 was a stray '@interface' token in the stream and skip it.
30073 return;
30075 cp_parser_objc_superclass_or_category (parser, true, &super, &categ,
30076 &is_class_extension);
30077 protos = cp_parser_objc_protocol_refs_opt (parser);
30079 /* We have either a class or a category on our hands. */
30080 if (categ || is_class_extension)
30081 objc_start_category_interface (name, categ, protos, attributes);
30082 else
30084 objc_start_class_interface (name, super, protos, attributes);
30085 /* Handle instance variable declarations, if any. */
30086 cp_parser_objc_class_ivars (parser);
30087 objc_continue_interface ();
30090 cp_parser_objc_method_prototype_list (parser);
30093 /* Parse an Objective-C class implementation. */
30095 static void
30096 cp_parser_objc_class_implementation (cp_parser* parser)
30098 tree name, super, categ;
30099 bool is_class_extension;
30101 cp_lexer_consume_token (parser->lexer); /* Eat '@implementation'. */
30102 name = cp_parser_identifier (parser);
30103 if (name == error_mark_node)
30105 /* It's hard to recover because even if valid @implementation
30106 stuff is to follow, we can't compile it (or validate it) if
30107 we don't even know which class it refers to. Let's assume
30108 this was a stray '@implementation' token in the stream and
30109 skip it.
30111 return;
30113 cp_parser_objc_superclass_or_category (parser, false, &super, &categ,
30114 &is_class_extension);
30116 /* We have either a class or a category on our hands. */
30117 if (categ)
30118 objc_start_category_implementation (name, categ);
30119 else
30121 objc_start_class_implementation (name, super);
30122 /* Handle instance variable declarations, if any. */
30123 cp_parser_objc_class_ivars (parser);
30124 objc_continue_implementation ();
30127 cp_parser_objc_method_definition_list (parser);
30130 /* Consume the @end token and finish off the implementation. */
30132 static void
30133 cp_parser_objc_end_implementation (cp_parser* parser)
30135 cp_lexer_consume_token (parser->lexer); /* Eat '@end'. */
30136 objc_finish_implementation ();
30139 /* Parse an Objective-C declaration. */
30141 static void
30142 cp_parser_objc_declaration (cp_parser* parser, tree attributes)
30144 /* Try to figure out what kind of declaration is present. */
30145 cp_token *kwd = cp_lexer_peek_token (parser->lexer);
30147 if (attributes)
30148 switch (kwd->keyword)
30150 case RID_AT_ALIAS:
30151 case RID_AT_CLASS:
30152 case RID_AT_END:
30153 error_at (kwd->location, "attributes may not be specified before"
30154 " the %<@%D%> Objective-C++ keyword",
30155 kwd->u.value);
30156 attributes = NULL;
30157 break;
30158 case RID_AT_IMPLEMENTATION:
30159 warning_at (kwd->location, OPT_Wattributes,
30160 "prefix attributes are ignored before %<@%D%>",
30161 kwd->u.value);
30162 attributes = NULL;
30163 default:
30164 break;
30167 switch (kwd->keyword)
30169 case RID_AT_ALIAS:
30170 cp_parser_objc_alias_declaration (parser);
30171 break;
30172 case RID_AT_CLASS:
30173 cp_parser_objc_class_declaration (parser);
30174 break;
30175 case RID_AT_PROTOCOL:
30176 cp_parser_objc_protocol_declaration (parser, attributes);
30177 break;
30178 case RID_AT_INTERFACE:
30179 cp_parser_objc_class_interface (parser, attributes);
30180 break;
30181 case RID_AT_IMPLEMENTATION:
30182 cp_parser_objc_class_implementation (parser);
30183 break;
30184 case RID_AT_END:
30185 cp_parser_objc_end_implementation (parser);
30186 break;
30187 default:
30188 error_at (kwd->location, "misplaced %<@%D%> Objective-C++ construct",
30189 kwd->u.value);
30190 cp_parser_skip_to_end_of_block_or_statement (parser);
30194 /* Parse an Objective-C try-catch-finally statement.
30196 objc-try-catch-finally-stmt:
30197 @try compound-statement objc-catch-clause-seq [opt]
30198 objc-finally-clause [opt]
30200 objc-catch-clause-seq:
30201 objc-catch-clause objc-catch-clause-seq [opt]
30203 objc-catch-clause:
30204 @catch ( objc-exception-declaration ) compound-statement
30206 objc-finally-clause:
30207 @finally compound-statement
30209 objc-exception-declaration:
30210 parameter-declaration
30211 '...'
30213 where '...' is to be interpreted literally, that is, it means CPP_ELLIPSIS.
30215 Returns NULL_TREE.
30217 PS: This function is identical to c_parser_objc_try_catch_finally_statement
30218 for C. Keep them in sync. */
30220 static tree
30221 cp_parser_objc_try_catch_finally_statement (cp_parser *parser)
30223 location_t location;
30224 tree stmt;
30226 cp_parser_require_keyword (parser, RID_AT_TRY, RT_AT_TRY);
30227 location = cp_lexer_peek_token (parser->lexer)->location;
30228 objc_maybe_warn_exceptions (location);
30229 /* NB: The @try block needs to be wrapped in its own STATEMENT_LIST
30230 node, lest it get absorbed into the surrounding block. */
30231 stmt = push_stmt_list ();
30232 cp_parser_compound_statement (parser, NULL, BCS_NORMAL, false);
30233 objc_begin_try_stmt (location, pop_stmt_list (stmt));
30235 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_AT_CATCH))
30237 cp_parameter_declarator *parm;
30238 tree parameter_declaration = error_mark_node;
30239 bool seen_open_paren = false;
30241 cp_lexer_consume_token (parser->lexer);
30242 if (cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30243 seen_open_paren = true;
30244 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
30246 /* We have "@catch (...)" (where the '...' are literally
30247 what is in the code). Skip the '...'.
30248 parameter_declaration is set to NULL_TREE, and
30249 objc_being_catch_clauses() knows that that means
30250 '...'. */
30251 cp_lexer_consume_token (parser->lexer);
30252 parameter_declaration = NULL_TREE;
30254 else
30256 /* We have "@catch (NSException *exception)" or something
30257 like that. Parse the parameter declaration. */
30258 parm = cp_parser_parameter_declaration (parser, false, NULL);
30259 if (parm == NULL)
30260 parameter_declaration = error_mark_node;
30261 else
30262 parameter_declaration = grokdeclarator (parm->declarator,
30263 &parm->decl_specifiers,
30264 PARM, /*initialized=*/0,
30265 /*attrlist=*/NULL);
30267 if (seen_open_paren)
30268 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
30269 else
30271 /* If there was no open parenthesis, we are recovering from
30272 an error, and we are trying to figure out what mistake
30273 the user has made. */
30275 /* If there is an immediate closing parenthesis, the user
30276 probably forgot the opening one (ie, they typed "@catch
30277 NSException *e)". Parse the closing parenthesis and keep
30278 going. */
30279 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN))
30280 cp_lexer_consume_token (parser->lexer);
30282 /* If these is no immediate closing parenthesis, the user
30283 probably doesn't know that parenthesis are required at
30284 all (ie, they typed "@catch NSException *e"). So, just
30285 forget about the closing parenthesis and keep going. */
30287 objc_begin_catch_clause (parameter_declaration);
30288 cp_parser_compound_statement (parser, NULL, BCS_NORMAL, false);
30289 objc_finish_catch_clause ();
30291 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_AT_FINALLY))
30293 cp_lexer_consume_token (parser->lexer);
30294 location = cp_lexer_peek_token (parser->lexer)->location;
30295 /* NB: The @finally block needs to be wrapped in its own STATEMENT_LIST
30296 node, lest it get absorbed into the surrounding block. */
30297 stmt = push_stmt_list ();
30298 cp_parser_compound_statement (parser, NULL, BCS_NORMAL, false);
30299 objc_build_finally_clause (location, pop_stmt_list (stmt));
30302 return objc_finish_try_stmt ();
30305 /* Parse an Objective-C synchronized statement.
30307 objc-synchronized-stmt:
30308 @synchronized ( expression ) compound-statement
30310 Returns NULL_TREE. */
30312 static tree
30313 cp_parser_objc_synchronized_statement (cp_parser *parser)
30315 location_t location;
30316 tree lock, stmt;
30318 cp_parser_require_keyword (parser, RID_AT_SYNCHRONIZED, RT_AT_SYNCHRONIZED);
30320 location = cp_lexer_peek_token (parser->lexer)->location;
30321 objc_maybe_warn_exceptions (location);
30322 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
30323 lock = cp_parser_expression (parser);
30324 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
30326 /* NB: The @synchronized block needs to be wrapped in its own STATEMENT_LIST
30327 node, lest it get absorbed into the surrounding block. */
30328 stmt = push_stmt_list ();
30329 cp_parser_compound_statement (parser, NULL, BCS_NORMAL, false);
30331 return objc_build_synchronized (location, lock, pop_stmt_list (stmt));
30334 /* Parse an Objective-C throw statement.
30336 objc-throw-stmt:
30337 @throw assignment-expression [opt] ;
30339 Returns a constructed '@throw' statement. */
30341 static tree
30342 cp_parser_objc_throw_statement (cp_parser *parser)
30344 tree expr = NULL_TREE;
30345 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
30347 cp_parser_require_keyword (parser, RID_AT_THROW, RT_AT_THROW);
30349 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
30350 expr = cp_parser_expression (parser);
30352 cp_parser_consume_semicolon_at_end_of_statement (parser);
30354 return objc_build_throw_stmt (loc, expr);
30357 /* Parse an Objective-C statement. */
30359 static tree
30360 cp_parser_objc_statement (cp_parser * parser)
30362 /* Try to figure out what kind of declaration is present. */
30363 cp_token *kwd = cp_lexer_peek_token (parser->lexer);
30365 switch (kwd->keyword)
30367 case RID_AT_TRY:
30368 return cp_parser_objc_try_catch_finally_statement (parser);
30369 case RID_AT_SYNCHRONIZED:
30370 return cp_parser_objc_synchronized_statement (parser);
30371 case RID_AT_THROW:
30372 return cp_parser_objc_throw_statement (parser);
30373 default:
30374 error_at (kwd->location, "misplaced %<@%D%> Objective-C++ construct",
30375 kwd->u.value);
30376 cp_parser_skip_to_end_of_block_or_statement (parser);
30379 return error_mark_node;
30382 /* If we are compiling ObjC++ and we see an __attribute__ we neeed to
30383 look ahead to see if an objc keyword follows the attributes. This
30384 is to detect the use of prefix attributes on ObjC @interface and
30385 @protocol. */
30387 static bool
30388 cp_parser_objc_valid_prefix_attributes (cp_parser* parser, tree *attrib)
30390 cp_lexer_save_tokens (parser->lexer);
30391 *attrib = cp_parser_attributes_opt (parser);
30392 gcc_assert (*attrib);
30393 if (OBJC_IS_AT_KEYWORD (cp_lexer_peek_token (parser->lexer)->keyword))
30395 cp_lexer_commit_tokens (parser->lexer);
30396 return true;
30398 cp_lexer_rollback_tokens (parser->lexer);
30399 return false;
30402 /* This routine is a minimal replacement for
30403 c_parser_struct_declaration () used when parsing the list of
30404 types/names or ObjC++ properties. For example, when parsing the
30405 code
30407 @property (readonly) int a, b, c;
30409 this function is responsible for parsing "int a, int b, int c" and
30410 returning the declarations as CHAIN of DECLs.
30412 TODO: Share this code with cp_parser_objc_class_ivars. It's very
30413 similar parsing. */
30414 static tree
30415 cp_parser_objc_struct_declaration (cp_parser *parser)
30417 tree decls = NULL_TREE;
30418 cp_decl_specifier_seq declspecs;
30419 int decl_class_or_enum_p;
30420 tree prefix_attributes;
30422 cp_parser_decl_specifier_seq (parser,
30423 CP_PARSER_FLAGS_NONE,
30424 &declspecs,
30425 &decl_class_or_enum_p);
30427 if (declspecs.type == error_mark_node)
30428 return error_mark_node;
30430 /* auto, register, static, extern, mutable. */
30431 if (declspecs.storage_class != sc_none)
30433 cp_parser_error (parser, "invalid type for property");
30434 declspecs.storage_class = sc_none;
30437 /* thread_local. */
30438 if (decl_spec_seq_has_spec_p (&declspecs, ds_thread))
30440 cp_parser_error (parser, "invalid type for property");
30441 declspecs.locations[ds_thread] = 0;
30444 /* typedef. */
30445 if (decl_spec_seq_has_spec_p (&declspecs, ds_typedef))
30447 cp_parser_error (parser, "invalid type for property");
30448 declspecs.locations[ds_typedef] = 0;
30451 prefix_attributes = declspecs.attributes;
30452 declspecs.attributes = NULL_TREE;
30454 /* Keep going until we hit the `;' at the end of the declaration. */
30455 while (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
30457 tree attributes, first_attribute, decl;
30458 cp_declarator *declarator;
30459 cp_token *token;
30461 /* Parse the declarator. */
30462 declarator = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
30463 NULL, NULL, false, false);
30465 /* Look for attributes that apply to the ivar. */
30466 attributes = cp_parser_attributes_opt (parser);
30467 /* Remember which attributes are prefix attributes and
30468 which are not. */
30469 first_attribute = attributes;
30470 /* Combine the attributes. */
30471 attributes = chainon (prefix_attributes, attributes);
30473 decl = grokfield (declarator, &declspecs,
30474 NULL_TREE, /*init_const_expr_p=*/false,
30475 NULL_TREE, attributes);
30477 if (decl == error_mark_node || decl == NULL_TREE)
30478 return error_mark_node;
30480 /* Reset PREFIX_ATTRIBUTES. */
30481 while (attributes && TREE_CHAIN (attributes) != first_attribute)
30482 attributes = TREE_CHAIN (attributes);
30483 if (attributes)
30484 TREE_CHAIN (attributes) = NULL_TREE;
30486 DECL_CHAIN (decl) = decls;
30487 decls = decl;
30489 token = cp_lexer_peek_token (parser->lexer);
30490 if (token->type == CPP_COMMA)
30492 cp_lexer_consume_token (parser->lexer); /* Eat ','. */
30493 continue;
30495 else
30496 break;
30498 return decls;
30501 /* Parse an Objective-C @property declaration. The syntax is:
30503 objc-property-declaration:
30504 '@property' objc-property-attributes[opt] struct-declaration ;
30506 objc-property-attributes:
30507 '(' objc-property-attribute-list ')'
30509 objc-property-attribute-list:
30510 objc-property-attribute
30511 objc-property-attribute-list, objc-property-attribute
30513 objc-property-attribute
30514 'getter' = identifier
30515 'setter' = identifier
30516 'readonly'
30517 'readwrite'
30518 'assign'
30519 'retain'
30520 'copy'
30521 'nonatomic'
30523 For example:
30524 @property NSString *name;
30525 @property (readonly) id object;
30526 @property (retain, nonatomic, getter=getTheName) id name;
30527 @property int a, b, c;
30529 PS: This function is identical to
30530 c_parser_objc_at_property_declaration for C. Keep them in sync. */
30531 static void
30532 cp_parser_objc_at_property_declaration (cp_parser *parser)
30534 /* The following variables hold the attributes of the properties as
30535 parsed. They are 'false' or 'NULL_TREE' if the attribute was not
30536 seen. When we see an attribute, we set them to 'true' (if they
30537 are boolean properties) or to the identifier (if they have an
30538 argument, ie, for getter and setter). Note that here we only
30539 parse the list of attributes, check the syntax and accumulate the
30540 attributes that we find. objc_add_property_declaration() will
30541 then process the information. */
30542 bool property_assign = false;
30543 bool property_copy = false;
30544 tree property_getter_ident = NULL_TREE;
30545 bool property_nonatomic = false;
30546 bool property_readonly = false;
30547 bool property_readwrite = false;
30548 bool property_retain = false;
30549 tree property_setter_ident = NULL_TREE;
30551 /* 'properties' is the list of properties that we read. Usually a
30552 single one, but maybe more (eg, in "@property int a, b, c;" there
30553 are three). */
30554 tree properties;
30555 location_t loc;
30557 loc = cp_lexer_peek_token (parser->lexer)->location;
30559 cp_lexer_consume_token (parser->lexer); /* Eat '@property'. */
30561 /* Parse the optional attribute list... */
30562 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
30564 /* Eat the '('. */
30565 cp_lexer_consume_token (parser->lexer);
30567 while (true)
30569 bool syntax_error = false;
30570 cp_token *token = cp_lexer_peek_token (parser->lexer);
30571 enum rid keyword;
30573 if (token->type != CPP_NAME)
30575 cp_parser_error (parser, "expected identifier");
30576 break;
30578 keyword = C_RID_CODE (token->u.value);
30579 cp_lexer_consume_token (parser->lexer);
30580 switch (keyword)
30582 case RID_ASSIGN: property_assign = true; break;
30583 case RID_COPY: property_copy = true; break;
30584 case RID_NONATOMIC: property_nonatomic = true; break;
30585 case RID_READONLY: property_readonly = true; break;
30586 case RID_READWRITE: property_readwrite = true; break;
30587 case RID_RETAIN: property_retain = true; break;
30589 case RID_GETTER:
30590 case RID_SETTER:
30591 if (cp_lexer_next_token_is_not (parser->lexer, CPP_EQ))
30593 if (keyword == RID_GETTER)
30594 cp_parser_error (parser,
30595 "missing %<=%> (after %<getter%> attribute)");
30596 else
30597 cp_parser_error (parser,
30598 "missing %<=%> (after %<setter%> attribute)");
30599 syntax_error = true;
30600 break;
30602 cp_lexer_consume_token (parser->lexer); /* eat the = */
30603 if (!cp_parser_objc_selector_p (cp_lexer_peek_token (parser->lexer)->type))
30605 cp_parser_error (parser, "expected identifier");
30606 syntax_error = true;
30607 break;
30609 if (keyword == RID_SETTER)
30611 if (property_setter_ident != NULL_TREE)
30613 cp_parser_error (parser, "the %<setter%> attribute may only be specified once");
30614 cp_lexer_consume_token (parser->lexer);
30616 else
30617 property_setter_ident = cp_parser_objc_selector (parser);
30618 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COLON))
30619 cp_parser_error (parser, "setter name must terminate with %<:%>");
30620 else
30621 cp_lexer_consume_token (parser->lexer);
30623 else
30625 if (property_getter_ident != NULL_TREE)
30627 cp_parser_error (parser, "the %<getter%> attribute may only be specified once");
30628 cp_lexer_consume_token (parser->lexer);
30630 else
30631 property_getter_ident = cp_parser_objc_selector (parser);
30633 break;
30634 default:
30635 cp_parser_error (parser, "unknown property attribute");
30636 syntax_error = true;
30637 break;
30640 if (syntax_error)
30641 break;
30643 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
30644 cp_lexer_consume_token (parser->lexer);
30645 else
30646 break;
30649 /* FIXME: "@property (setter, assign);" will generate a spurious
30650 "error: expected ‘)’ before ‘,’ token". This is because
30651 cp_parser_require, unlike the C counterpart, will produce an
30652 error even if we are in error recovery. */
30653 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30655 cp_parser_skip_to_closing_parenthesis (parser,
30656 /*recovering=*/true,
30657 /*or_comma=*/false,
30658 /*consume_paren=*/true);
30662 /* ... and the property declaration(s). */
30663 properties = cp_parser_objc_struct_declaration (parser);
30665 if (properties == error_mark_node)
30667 cp_parser_skip_to_end_of_statement (parser);
30668 /* If the next token is now a `;', consume it. */
30669 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
30670 cp_lexer_consume_token (parser->lexer);
30671 return;
30674 if (properties == NULL_TREE)
30675 cp_parser_error (parser, "expected identifier");
30676 else
30678 /* Comma-separated properties are chained together in
30679 reverse order; add them one by one. */
30680 properties = nreverse (properties);
30682 for (; properties; properties = TREE_CHAIN (properties))
30683 objc_add_property_declaration (loc, copy_node (properties),
30684 property_readonly, property_readwrite,
30685 property_assign, property_retain,
30686 property_copy, property_nonatomic,
30687 property_getter_ident, property_setter_ident);
30690 cp_parser_consume_semicolon_at_end_of_statement (parser);
30693 /* Parse an Objective-C++ @synthesize declaration. The syntax is:
30695 objc-synthesize-declaration:
30696 @synthesize objc-synthesize-identifier-list ;
30698 objc-synthesize-identifier-list:
30699 objc-synthesize-identifier
30700 objc-synthesize-identifier-list, objc-synthesize-identifier
30702 objc-synthesize-identifier
30703 identifier
30704 identifier = identifier
30706 For example:
30707 @synthesize MyProperty;
30708 @synthesize OneProperty, AnotherProperty=MyIvar, YetAnotherProperty;
30710 PS: This function is identical to c_parser_objc_at_synthesize_declaration
30711 for C. Keep them in sync.
30713 static void
30714 cp_parser_objc_at_synthesize_declaration (cp_parser *parser)
30716 tree list = NULL_TREE;
30717 location_t loc;
30718 loc = cp_lexer_peek_token (parser->lexer)->location;
30720 cp_lexer_consume_token (parser->lexer); /* Eat '@synthesize'. */
30721 while (true)
30723 tree property, ivar;
30724 property = cp_parser_identifier (parser);
30725 if (property == error_mark_node)
30727 cp_parser_consume_semicolon_at_end_of_statement (parser);
30728 return;
30730 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
30732 cp_lexer_consume_token (parser->lexer);
30733 ivar = cp_parser_identifier (parser);
30734 if (ivar == error_mark_node)
30736 cp_parser_consume_semicolon_at_end_of_statement (parser);
30737 return;
30740 else
30741 ivar = NULL_TREE;
30742 list = chainon (list, build_tree_list (ivar, property));
30743 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
30744 cp_lexer_consume_token (parser->lexer);
30745 else
30746 break;
30748 cp_parser_consume_semicolon_at_end_of_statement (parser);
30749 objc_add_synthesize_declaration (loc, list);
30752 /* Parse an Objective-C++ @dynamic declaration. The syntax is:
30754 objc-dynamic-declaration:
30755 @dynamic identifier-list ;
30757 For example:
30758 @dynamic MyProperty;
30759 @dynamic MyProperty, AnotherProperty;
30761 PS: This function is identical to c_parser_objc_at_dynamic_declaration
30762 for C. Keep them in sync.
30764 static void
30765 cp_parser_objc_at_dynamic_declaration (cp_parser *parser)
30767 tree list = NULL_TREE;
30768 location_t loc;
30769 loc = cp_lexer_peek_token (parser->lexer)->location;
30771 cp_lexer_consume_token (parser->lexer); /* Eat '@dynamic'. */
30772 while (true)
30774 tree property;
30775 property = cp_parser_identifier (parser);
30776 if (property == error_mark_node)
30778 cp_parser_consume_semicolon_at_end_of_statement (parser);
30779 return;
30781 list = chainon (list, build_tree_list (NULL, property));
30782 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
30783 cp_lexer_consume_token (parser->lexer);
30784 else
30785 break;
30787 cp_parser_consume_semicolon_at_end_of_statement (parser);
30788 objc_add_dynamic_declaration (loc, list);
30792 /* OpenMP 2.5 / 3.0 / 3.1 / 4.0 parsing routines. */
30794 /* Returns name of the next clause.
30795 If the clause is not recognized PRAGMA_OMP_CLAUSE_NONE is returned and
30796 the token is not consumed. Otherwise appropriate pragma_omp_clause is
30797 returned and the token is consumed. */
30799 static pragma_omp_clause
30800 cp_parser_omp_clause_name (cp_parser *parser)
30802 pragma_omp_clause result = PRAGMA_OMP_CLAUSE_NONE;
30804 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_AUTO))
30805 result = PRAGMA_OACC_CLAUSE_AUTO;
30806 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_IF))
30807 result = PRAGMA_OMP_CLAUSE_IF;
30808 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_DEFAULT))
30809 result = PRAGMA_OMP_CLAUSE_DEFAULT;
30810 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_DELETE))
30811 result = PRAGMA_OACC_CLAUSE_DELETE;
30812 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_PRIVATE))
30813 result = PRAGMA_OMP_CLAUSE_PRIVATE;
30814 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_FOR))
30815 result = PRAGMA_OMP_CLAUSE_FOR;
30816 else if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
30818 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
30819 const char *p = IDENTIFIER_POINTER (id);
30821 switch (p[0])
30823 case 'a':
30824 if (!strcmp ("aligned", p))
30825 result = PRAGMA_OMP_CLAUSE_ALIGNED;
30826 else if (!strcmp ("async", p))
30827 result = PRAGMA_OACC_CLAUSE_ASYNC;
30828 break;
30829 case 'c':
30830 if (!strcmp ("collapse", p))
30831 result = PRAGMA_OMP_CLAUSE_COLLAPSE;
30832 else if (!strcmp ("copy", p))
30833 result = PRAGMA_OACC_CLAUSE_COPY;
30834 else if (!strcmp ("copyin", p))
30835 result = PRAGMA_OMP_CLAUSE_COPYIN;
30836 else if (!strcmp ("copyout", p))
30837 result = PRAGMA_OACC_CLAUSE_COPYOUT;
30838 else if (!strcmp ("copyprivate", p))
30839 result = PRAGMA_OMP_CLAUSE_COPYPRIVATE;
30840 else if (!strcmp ("create", p))
30841 result = PRAGMA_OACC_CLAUSE_CREATE;
30842 break;
30843 case 'd':
30844 if (!strcmp ("defaultmap", p))
30845 result = PRAGMA_OMP_CLAUSE_DEFAULTMAP;
30846 else if (!strcmp ("depend", p))
30847 result = PRAGMA_OMP_CLAUSE_DEPEND;
30848 else if (!strcmp ("device", p))
30849 result = PRAGMA_OMP_CLAUSE_DEVICE;
30850 else if (!strcmp ("deviceptr", p))
30851 result = PRAGMA_OACC_CLAUSE_DEVICEPTR;
30852 else if (!strcmp ("device_resident", p))
30853 result = PRAGMA_OACC_CLAUSE_DEVICE_RESIDENT;
30854 else if (!strcmp ("dist_schedule", p))
30855 result = PRAGMA_OMP_CLAUSE_DIST_SCHEDULE;
30856 break;
30857 case 'f':
30858 if (!strcmp ("final", p))
30859 result = PRAGMA_OMP_CLAUSE_FINAL;
30860 else if (!strcmp ("firstprivate", p))
30861 result = PRAGMA_OMP_CLAUSE_FIRSTPRIVATE;
30862 else if (!strcmp ("from", p))
30863 result = PRAGMA_OMP_CLAUSE_FROM;
30864 break;
30865 case 'g':
30866 if (!strcmp ("gang", p))
30867 result = PRAGMA_OACC_CLAUSE_GANG;
30868 else if (!strcmp ("grainsize", p))
30869 result = PRAGMA_OMP_CLAUSE_GRAINSIZE;
30870 break;
30871 case 'h':
30872 if (!strcmp ("hint", p))
30873 result = PRAGMA_OMP_CLAUSE_HINT;
30874 else if (!strcmp ("host", p))
30875 result = PRAGMA_OACC_CLAUSE_HOST;
30876 break;
30877 case 'i':
30878 if (!strcmp ("inbranch", p))
30879 result = PRAGMA_OMP_CLAUSE_INBRANCH;
30880 else if (!strcmp ("independent", p))
30881 result = PRAGMA_OACC_CLAUSE_INDEPENDENT;
30882 else if (!strcmp ("is_device_ptr", p))
30883 result = PRAGMA_OMP_CLAUSE_IS_DEVICE_PTR;
30884 break;
30885 case 'l':
30886 if (!strcmp ("lastprivate", p))
30887 result = PRAGMA_OMP_CLAUSE_LASTPRIVATE;
30888 else if (!strcmp ("linear", p))
30889 result = PRAGMA_OMP_CLAUSE_LINEAR;
30890 else if (!strcmp ("link", p))
30891 result = PRAGMA_OMP_CLAUSE_LINK;
30892 break;
30893 case 'm':
30894 if (!strcmp ("map", p))
30895 result = PRAGMA_OMP_CLAUSE_MAP;
30896 else if (!strcmp ("mergeable", p))
30897 result = PRAGMA_OMP_CLAUSE_MERGEABLE;
30898 else if (flag_cilkplus && !strcmp ("mask", p))
30899 result = PRAGMA_CILK_CLAUSE_MASK;
30900 break;
30901 case 'n':
30902 if (!strcmp ("nogroup", p))
30903 result = PRAGMA_OMP_CLAUSE_NOGROUP;
30904 else if (!strcmp ("notinbranch", p))
30905 result = PRAGMA_OMP_CLAUSE_NOTINBRANCH;
30906 else if (!strcmp ("nowait", p))
30907 result = PRAGMA_OMP_CLAUSE_NOWAIT;
30908 else if (flag_cilkplus && !strcmp ("nomask", p))
30909 result = PRAGMA_CILK_CLAUSE_NOMASK;
30910 else if (!strcmp ("num_gangs", p))
30911 result = PRAGMA_OACC_CLAUSE_NUM_GANGS;
30912 else if (!strcmp ("num_tasks", p))
30913 result = PRAGMA_OMP_CLAUSE_NUM_TASKS;
30914 else if (!strcmp ("num_teams", p))
30915 result = PRAGMA_OMP_CLAUSE_NUM_TEAMS;
30916 else if (!strcmp ("num_threads", p))
30917 result = PRAGMA_OMP_CLAUSE_NUM_THREADS;
30918 else if (!strcmp ("num_workers", p))
30919 result = PRAGMA_OACC_CLAUSE_NUM_WORKERS;
30920 break;
30921 case 'o':
30922 if (!strcmp ("ordered", p))
30923 result = PRAGMA_OMP_CLAUSE_ORDERED;
30924 break;
30925 case 'p':
30926 if (!strcmp ("parallel", p))
30927 result = PRAGMA_OMP_CLAUSE_PARALLEL;
30928 else if (!strcmp ("present", p))
30929 result = PRAGMA_OACC_CLAUSE_PRESENT;
30930 else if (!strcmp ("present_or_copy", p)
30931 || !strcmp ("pcopy", p))
30932 result = PRAGMA_OACC_CLAUSE_PRESENT_OR_COPY;
30933 else if (!strcmp ("present_or_copyin", p)
30934 || !strcmp ("pcopyin", p))
30935 result = PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN;
30936 else if (!strcmp ("present_or_copyout", p)
30937 || !strcmp ("pcopyout", p))
30938 result = PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYOUT;
30939 else if (!strcmp ("present_or_create", p)
30940 || !strcmp ("pcreate", p))
30941 result = PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE;
30942 else if (!strcmp ("priority", p))
30943 result = PRAGMA_OMP_CLAUSE_PRIORITY;
30944 else if (!strcmp ("proc_bind", p))
30945 result = PRAGMA_OMP_CLAUSE_PROC_BIND;
30946 break;
30947 case 'r':
30948 if (!strcmp ("reduction", p))
30949 result = PRAGMA_OMP_CLAUSE_REDUCTION;
30950 break;
30951 case 's':
30952 if (!strcmp ("safelen", p))
30953 result = PRAGMA_OMP_CLAUSE_SAFELEN;
30954 else if (!strcmp ("schedule", p))
30955 result = PRAGMA_OMP_CLAUSE_SCHEDULE;
30956 else if (!strcmp ("sections", p))
30957 result = PRAGMA_OMP_CLAUSE_SECTIONS;
30958 else if (!strcmp ("self", p))
30959 result = PRAGMA_OACC_CLAUSE_SELF;
30960 else if (!strcmp ("seq", p))
30961 result = PRAGMA_OACC_CLAUSE_SEQ;
30962 else if (!strcmp ("shared", p))
30963 result = PRAGMA_OMP_CLAUSE_SHARED;
30964 else if (!strcmp ("simd", p))
30965 result = PRAGMA_OMP_CLAUSE_SIMD;
30966 else if (!strcmp ("simdlen", p))
30967 result = PRAGMA_OMP_CLAUSE_SIMDLEN;
30968 break;
30969 case 't':
30970 if (!strcmp ("taskgroup", p))
30971 result = PRAGMA_OMP_CLAUSE_TASKGROUP;
30972 else if (!strcmp ("thread_limit", p))
30973 result = PRAGMA_OMP_CLAUSE_THREAD_LIMIT;
30974 else if (!strcmp ("threads", p))
30975 result = PRAGMA_OMP_CLAUSE_THREADS;
30976 else if (!strcmp ("tile", p))
30977 result = PRAGMA_OACC_CLAUSE_TILE;
30978 else if (!strcmp ("to", p))
30979 result = PRAGMA_OMP_CLAUSE_TO;
30980 break;
30981 case 'u':
30982 if (!strcmp ("uniform", p))
30983 result = PRAGMA_OMP_CLAUSE_UNIFORM;
30984 else if (!strcmp ("untied", p))
30985 result = PRAGMA_OMP_CLAUSE_UNTIED;
30986 else if (!strcmp ("use_device", p))
30987 result = PRAGMA_OACC_CLAUSE_USE_DEVICE;
30988 else if (!strcmp ("use_device_ptr", p))
30989 result = PRAGMA_OMP_CLAUSE_USE_DEVICE_PTR;
30990 break;
30991 case 'v':
30992 if (!strcmp ("vector", p))
30993 result = PRAGMA_OACC_CLAUSE_VECTOR;
30994 else if (!strcmp ("vector_length", p))
30995 result = PRAGMA_OACC_CLAUSE_VECTOR_LENGTH;
30996 else if (flag_cilkplus && !strcmp ("vectorlength", p))
30997 result = PRAGMA_CILK_CLAUSE_VECTORLENGTH;
30998 break;
30999 case 'w':
31000 if (!strcmp ("wait", p))
31001 result = PRAGMA_OACC_CLAUSE_WAIT;
31002 else if (!strcmp ("worker", p))
31003 result = PRAGMA_OACC_CLAUSE_WORKER;
31004 break;
31008 if (result != PRAGMA_OMP_CLAUSE_NONE)
31009 cp_lexer_consume_token (parser->lexer);
31011 return result;
31014 /* Validate that a clause of the given type does not already exist. */
31016 static void
31017 check_no_duplicate_clause (tree clauses, enum omp_clause_code code,
31018 const char *name, location_t location)
31020 tree c;
31022 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
31023 if (OMP_CLAUSE_CODE (c) == code)
31025 error_at (location, "too many %qs clauses", name);
31026 break;
31030 /* OpenMP 2.5:
31031 variable-list:
31032 identifier
31033 variable-list , identifier
31035 In addition, we match a closing parenthesis (or, if COLON is non-NULL,
31036 colon). An opening parenthesis will have been consumed by the caller.
31038 If KIND is nonzero, create the appropriate node and install the decl
31039 in OMP_CLAUSE_DECL and add the node to the head of the list.
31041 If KIND is zero, create a TREE_LIST with the decl in TREE_PURPOSE;
31042 return the list created.
31044 COLON can be NULL if only closing parenthesis should end the list,
31045 or pointer to bool which will receive false if the list is terminated
31046 by closing parenthesis or true if the list is terminated by colon. */
31048 static tree
31049 cp_parser_omp_var_list_no_open (cp_parser *parser, enum omp_clause_code kind,
31050 tree list, bool *colon)
31052 cp_token *token;
31053 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
31054 if (colon)
31056 parser->colon_corrects_to_scope_p = false;
31057 *colon = false;
31059 while (1)
31061 tree name, decl;
31063 token = cp_lexer_peek_token (parser->lexer);
31064 if (kind != 0
31065 && current_class_ptr
31066 && cp_parser_is_keyword (token, RID_THIS))
31068 decl = finish_this_expr ();
31069 if (TREE_CODE (decl) == NON_LVALUE_EXPR
31070 || CONVERT_EXPR_P (decl))
31071 decl = TREE_OPERAND (decl, 0);
31072 cp_lexer_consume_token (parser->lexer);
31074 else
31076 name = cp_parser_id_expression (parser, /*template_p=*/false,
31077 /*check_dependency_p=*/true,
31078 /*template_p=*/NULL,
31079 /*declarator_p=*/false,
31080 /*optional_p=*/false);
31081 if (name == error_mark_node)
31082 goto skip_comma;
31084 decl = cp_parser_lookup_name_simple (parser, name, token->location);
31085 if (decl == error_mark_node)
31086 cp_parser_name_lookup_error (parser, name, decl, NLE_NULL,
31087 token->location);
31089 if (decl == error_mark_node)
31091 else if (kind != 0)
31093 switch (kind)
31095 case OMP_CLAUSE__CACHE_:
31096 /* The OpenACC cache directive explicitly only allows "array
31097 elements or subarrays". */
31098 if (cp_lexer_peek_token (parser->lexer)->type != CPP_OPEN_SQUARE)
31100 error_at (token->location, "expected %<[%>");
31101 decl = error_mark_node;
31102 break;
31104 /* FALLTHROUGH. */
31105 case OMP_CLAUSE_MAP:
31106 case OMP_CLAUSE_FROM:
31107 case OMP_CLAUSE_TO:
31108 while (cp_lexer_next_token_is (parser->lexer, CPP_DOT))
31110 location_t loc
31111 = cp_lexer_peek_token (parser->lexer)->location;
31112 cp_id_kind idk = CP_ID_KIND_NONE;
31113 cp_lexer_consume_token (parser->lexer);
31114 decl = convert_from_reference (decl);
31115 decl
31116 = cp_parser_postfix_dot_deref_expression (parser, CPP_DOT,
31117 decl, false,
31118 &idk, loc);
31120 /* FALLTHROUGH. */
31121 case OMP_CLAUSE_DEPEND:
31122 case OMP_CLAUSE_REDUCTION:
31123 while (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
31125 tree low_bound = NULL_TREE, length = NULL_TREE;
31127 parser->colon_corrects_to_scope_p = false;
31128 cp_lexer_consume_token (parser->lexer);
31129 if (!cp_lexer_next_token_is (parser->lexer, CPP_COLON))
31130 low_bound = cp_parser_expression (parser);
31131 if (!colon)
31132 parser->colon_corrects_to_scope_p
31133 = saved_colon_corrects_to_scope_p;
31134 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_SQUARE))
31135 length = integer_one_node;
31136 else
31138 /* Look for `:'. */
31139 if (!cp_parser_require (parser, CPP_COLON, RT_COLON))
31140 goto skip_comma;
31141 if (!cp_lexer_next_token_is (parser->lexer,
31142 CPP_CLOSE_SQUARE))
31143 length = cp_parser_expression (parser);
31145 /* Look for the closing `]'. */
31146 if (!cp_parser_require (parser, CPP_CLOSE_SQUARE,
31147 RT_CLOSE_SQUARE))
31148 goto skip_comma;
31150 decl = tree_cons (low_bound, length, decl);
31152 break;
31153 default:
31154 break;
31157 tree u = build_omp_clause (token->location, kind);
31158 OMP_CLAUSE_DECL (u) = decl;
31159 OMP_CLAUSE_CHAIN (u) = list;
31160 list = u;
31162 else
31163 list = tree_cons (decl, NULL_TREE, list);
31165 get_comma:
31166 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
31167 break;
31168 cp_lexer_consume_token (parser->lexer);
31171 if (colon)
31172 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
31174 if (colon != NULL && cp_lexer_next_token_is (parser->lexer, CPP_COLON))
31176 *colon = true;
31177 cp_parser_require (parser, CPP_COLON, RT_COLON);
31178 return list;
31181 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31183 int ending;
31185 /* Try to resync to an unnested comma. Copied from
31186 cp_parser_parenthesized_expression_list. */
31187 skip_comma:
31188 if (colon)
31189 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
31190 ending = cp_parser_skip_to_closing_parenthesis (parser,
31191 /*recovering=*/true,
31192 /*or_comma=*/true,
31193 /*consume_paren=*/true);
31194 if (ending < 0)
31195 goto get_comma;
31198 return list;
31201 /* Similarly, but expect leading and trailing parenthesis. This is a very
31202 common case for omp clauses. */
31204 static tree
31205 cp_parser_omp_var_list (cp_parser *parser, enum omp_clause_code kind, tree list)
31207 if (cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31208 return cp_parser_omp_var_list_no_open (parser, kind, list, NULL);
31209 return list;
31212 /* OpenACC 2.0:
31213 copy ( variable-list )
31214 copyin ( variable-list )
31215 copyout ( variable-list )
31216 create ( variable-list )
31217 delete ( variable-list )
31218 present ( variable-list )
31219 present_or_copy ( variable-list )
31220 pcopy ( variable-list )
31221 present_or_copyin ( variable-list )
31222 pcopyin ( variable-list )
31223 present_or_copyout ( variable-list )
31224 pcopyout ( variable-list )
31225 present_or_create ( variable-list )
31226 pcreate ( variable-list ) */
31228 static tree
31229 cp_parser_oacc_data_clause (cp_parser *parser, pragma_omp_clause c_kind,
31230 tree list)
31232 enum gomp_map_kind kind;
31233 switch (c_kind)
31235 case PRAGMA_OACC_CLAUSE_COPY:
31236 kind = GOMP_MAP_FORCE_TOFROM;
31237 break;
31238 case PRAGMA_OACC_CLAUSE_COPYIN:
31239 kind = GOMP_MAP_FORCE_TO;
31240 break;
31241 case PRAGMA_OACC_CLAUSE_COPYOUT:
31242 kind = GOMP_MAP_FORCE_FROM;
31243 break;
31244 case PRAGMA_OACC_CLAUSE_CREATE:
31245 kind = GOMP_MAP_FORCE_ALLOC;
31246 break;
31247 case PRAGMA_OACC_CLAUSE_DELETE:
31248 kind = GOMP_MAP_DELETE;
31249 break;
31250 case PRAGMA_OACC_CLAUSE_DEVICE:
31251 kind = GOMP_MAP_FORCE_TO;
31252 break;
31253 case PRAGMA_OACC_CLAUSE_DEVICE_RESIDENT:
31254 kind = GOMP_MAP_DEVICE_RESIDENT;
31255 break;
31256 case PRAGMA_OACC_CLAUSE_HOST:
31257 case PRAGMA_OACC_CLAUSE_SELF:
31258 kind = GOMP_MAP_FORCE_FROM;
31259 break;
31260 case PRAGMA_OACC_CLAUSE_LINK:
31261 kind = GOMP_MAP_LINK;
31262 break;
31263 case PRAGMA_OACC_CLAUSE_PRESENT:
31264 kind = GOMP_MAP_FORCE_PRESENT;
31265 break;
31266 case PRAGMA_OACC_CLAUSE_PRESENT_OR_COPY:
31267 kind = GOMP_MAP_TOFROM;
31268 break;
31269 case PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN:
31270 kind = GOMP_MAP_TO;
31271 break;
31272 case PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYOUT:
31273 kind = GOMP_MAP_FROM;
31274 break;
31275 case PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE:
31276 kind = GOMP_MAP_ALLOC;
31277 break;
31278 default:
31279 gcc_unreachable ();
31281 tree nl, c;
31282 nl = cp_parser_omp_var_list (parser, OMP_CLAUSE_MAP, list);
31284 for (c = nl; c != list; c = OMP_CLAUSE_CHAIN (c))
31285 OMP_CLAUSE_SET_MAP_KIND (c, kind);
31287 return nl;
31290 /* OpenACC 2.0:
31291 deviceptr ( variable-list ) */
31293 static tree
31294 cp_parser_oacc_data_clause_deviceptr (cp_parser *parser, tree list)
31296 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
31297 tree vars, t;
31299 /* Can't use OMP_CLAUSE_MAP here (that is, can't use the generic
31300 cp_parser_oacc_data_clause), as for PRAGMA_OACC_CLAUSE_DEVICEPTR,
31301 variable-list must only allow for pointer variables. */
31302 vars = cp_parser_omp_var_list (parser, OMP_CLAUSE_ERROR, NULL);
31303 for (t = vars; t; t = TREE_CHAIN (t))
31305 tree v = TREE_PURPOSE (t);
31306 tree u = build_omp_clause (loc, OMP_CLAUSE_MAP);
31307 OMP_CLAUSE_SET_MAP_KIND (u, GOMP_MAP_FORCE_DEVICEPTR);
31308 OMP_CLAUSE_DECL (u) = v;
31309 OMP_CLAUSE_CHAIN (u) = list;
31310 list = u;
31313 return list;
31316 /* OpenACC 2.0:
31317 auto
31318 independent
31319 nohost
31320 seq */
31322 static tree
31323 cp_parser_oacc_simple_clause (cp_parser * /* parser */,
31324 enum omp_clause_code code,
31325 tree list, location_t location)
31327 check_no_duplicate_clause (list, code, omp_clause_code_name[code], location);
31328 tree c = build_omp_clause (location, code);
31329 OMP_CLAUSE_CHAIN (c) = list;
31330 return c;
31333 /* OpenACC:
31334 num_gangs ( expression )
31335 num_workers ( expression )
31336 vector_length ( expression ) */
31338 static tree
31339 cp_parser_oacc_single_int_clause (cp_parser *parser, omp_clause_code code,
31340 const char *str, tree list)
31342 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
31344 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31345 return list;
31347 tree t = cp_parser_assignment_expression (parser, NULL, false, false);
31349 if (t == error_mark_node
31350 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31352 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31353 /*or_comma=*/false,
31354 /*consume_paren=*/true);
31355 return list;
31358 check_no_duplicate_clause (list, code, str, loc);
31360 tree c = build_omp_clause (loc, code);
31361 OMP_CLAUSE_OPERAND (c, 0) = t;
31362 OMP_CLAUSE_CHAIN (c) = list;
31363 return c;
31366 /* OpenACC:
31368 gang [( gang-arg-list )]
31369 worker [( [num:] int-expr )]
31370 vector [( [length:] int-expr )]
31372 where gang-arg is one of:
31374 [num:] int-expr
31375 static: size-expr
31377 and size-expr may be:
31380 int-expr
31383 static tree
31384 cp_parser_oacc_shape_clause (cp_parser *parser, omp_clause_code kind,
31385 const char *str, tree list)
31387 const char *id = "num";
31388 cp_lexer *lexer = parser->lexer;
31389 tree ops[2] = { NULL_TREE, NULL_TREE }, c;
31390 location_t loc = cp_lexer_peek_token (lexer)->location;
31392 if (kind == OMP_CLAUSE_VECTOR)
31393 id = "length";
31395 if (cp_lexer_next_token_is (lexer, CPP_OPEN_PAREN))
31397 cp_lexer_consume_token (lexer);
31401 cp_token *next = cp_lexer_peek_token (lexer);
31402 int idx = 0;
31404 /* Gang static argument. */
31405 if (kind == OMP_CLAUSE_GANG
31406 && cp_lexer_next_token_is_keyword (lexer, RID_STATIC))
31408 cp_lexer_consume_token (lexer);
31410 if (!cp_parser_require (parser, CPP_COLON, RT_COLON))
31411 goto cleanup_error;
31413 idx = 1;
31414 if (ops[idx] != NULL)
31416 cp_parser_error (parser, "too many %<static%> arguments");
31417 goto cleanup_error;
31420 /* Check for the '*' argument. */
31421 if (cp_lexer_next_token_is (lexer, CPP_MULT)
31422 && (cp_lexer_nth_token_is (parser->lexer, 2, CPP_COMMA)
31423 || cp_lexer_nth_token_is (parser->lexer, 2,
31424 CPP_CLOSE_PAREN)))
31426 cp_lexer_consume_token (lexer);
31427 ops[idx] = integer_minus_one_node;
31429 if (cp_lexer_next_token_is (lexer, CPP_COMMA))
31431 cp_lexer_consume_token (lexer);
31432 continue;
31434 else break;
31437 /* Worker num: argument and vector length: arguments. */
31438 else if (cp_lexer_next_token_is (lexer, CPP_NAME)
31439 && id_equal (next->u.value, id)
31440 && cp_lexer_nth_token_is (lexer, 2, CPP_COLON))
31442 cp_lexer_consume_token (lexer); /* id */
31443 cp_lexer_consume_token (lexer); /* ':' */
31446 /* Now collect the actual argument. */
31447 if (ops[idx] != NULL_TREE)
31449 cp_parser_error (parser, "unexpected argument");
31450 goto cleanup_error;
31453 tree expr = cp_parser_assignment_expression (parser, NULL, false,
31454 false);
31455 if (expr == error_mark_node)
31456 goto cleanup_error;
31458 mark_exp_read (expr);
31459 ops[idx] = expr;
31461 if (kind == OMP_CLAUSE_GANG
31462 && cp_lexer_next_token_is (lexer, CPP_COMMA))
31464 cp_lexer_consume_token (lexer);
31465 continue;
31467 break;
31469 while (1);
31471 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31472 goto cleanup_error;
31475 check_no_duplicate_clause (list, kind, str, loc);
31477 c = build_omp_clause (loc, kind);
31479 if (ops[1])
31480 OMP_CLAUSE_OPERAND (c, 1) = ops[1];
31482 OMP_CLAUSE_OPERAND (c, 0) = ops[0];
31483 OMP_CLAUSE_CHAIN (c) = list;
31485 return c;
31487 cleanup_error:
31488 cp_parser_skip_to_closing_parenthesis (parser, false, false, true);
31489 return list;
31492 /* OpenACC 2.0:
31493 tile ( size-expr-list ) */
31495 static tree
31496 cp_parser_oacc_clause_tile (cp_parser *parser, location_t clause_loc, tree list)
31498 tree c, expr = error_mark_node;
31499 tree tile = NULL_TREE;
31501 /* Collapse and tile are mutually exclusive. (The spec doesn't say
31502 so, but the spec authors never considered such a case and have
31503 differing opinions on what it might mean, including 'not
31504 allowed'.) */
31505 check_no_duplicate_clause (list, OMP_CLAUSE_TILE, "tile", clause_loc);
31506 check_no_duplicate_clause (list, OMP_CLAUSE_COLLAPSE, "collapse",
31507 clause_loc);
31509 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31510 return list;
31514 if (tile && !cp_parser_require (parser, CPP_COMMA, RT_COMMA))
31515 return list;
31517 if (cp_lexer_next_token_is (parser->lexer, CPP_MULT)
31518 && (cp_lexer_nth_token_is (parser->lexer, 2, CPP_COMMA)
31519 || cp_lexer_nth_token_is (parser->lexer, 2, CPP_CLOSE_PAREN)))
31521 cp_lexer_consume_token (parser->lexer);
31522 expr = integer_zero_node;
31524 else
31525 expr = cp_parser_constant_expression (parser);
31527 tile = tree_cons (NULL_TREE, expr, tile);
31529 while (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN));
31531 /* Consume the trailing ')'. */
31532 cp_lexer_consume_token (parser->lexer);
31534 c = build_omp_clause (clause_loc, OMP_CLAUSE_TILE);
31535 tile = nreverse (tile);
31536 OMP_CLAUSE_TILE_LIST (c) = tile;
31537 OMP_CLAUSE_CHAIN (c) = list;
31538 return c;
31541 /* OpenACC 2.0
31542 Parse wait clause or directive parameters. */
31544 static tree
31545 cp_parser_oacc_wait_list (cp_parser *parser, location_t clause_loc, tree list)
31547 vec<tree, va_gc> *args;
31548 tree t, args_tree;
31550 args = cp_parser_parenthesized_expression_list (parser, non_attr,
31551 /*cast_p=*/false,
31552 /*allow_expansion_p=*/true,
31553 /*non_constant_p=*/NULL);
31555 if (args == NULL || args->length () == 0)
31557 cp_parser_error (parser, "expected integer expression before ')'");
31558 if (args != NULL)
31559 release_tree_vector (args);
31560 return list;
31563 args_tree = build_tree_list_vec (args);
31565 release_tree_vector (args);
31567 for (t = args_tree; t; t = TREE_CHAIN (t))
31569 tree targ = TREE_VALUE (t);
31571 if (targ != error_mark_node)
31573 if (!INTEGRAL_TYPE_P (TREE_TYPE (targ)))
31574 error ("%<wait%> expression must be integral");
31575 else
31577 tree c = build_omp_clause (clause_loc, OMP_CLAUSE_WAIT);
31579 mark_rvalue_use (targ);
31580 OMP_CLAUSE_DECL (c) = targ;
31581 OMP_CLAUSE_CHAIN (c) = list;
31582 list = c;
31587 return list;
31590 /* OpenACC:
31591 wait ( int-expr-list ) */
31593 static tree
31594 cp_parser_oacc_clause_wait (cp_parser *parser, tree list)
31596 location_t location = cp_lexer_peek_token (parser->lexer)->location;
31598 if (cp_lexer_peek_token (parser->lexer)->type != CPP_OPEN_PAREN)
31599 return list;
31601 list = cp_parser_oacc_wait_list (parser, location, list);
31603 return list;
31606 /* OpenMP 3.0:
31607 collapse ( constant-expression ) */
31609 static tree
31610 cp_parser_omp_clause_collapse (cp_parser *parser, tree list, location_t location)
31612 tree c, num;
31613 location_t loc;
31614 HOST_WIDE_INT n;
31616 loc = cp_lexer_peek_token (parser->lexer)->location;
31617 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31618 return list;
31620 num = cp_parser_constant_expression (parser);
31622 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31623 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31624 /*or_comma=*/false,
31625 /*consume_paren=*/true);
31627 if (num == error_mark_node)
31628 return list;
31629 num = fold_non_dependent_expr (num);
31630 if (!tree_fits_shwi_p (num)
31631 || !INTEGRAL_TYPE_P (TREE_TYPE (num))
31632 || (n = tree_to_shwi (num)) <= 0
31633 || (int) n != n)
31635 error_at (loc, "collapse argument needs positive constant integer expression");
31636 return list;
31639 check_no_duplicate_clause (list, OMP_CLAUSE_COLLAPSE, "collapse", location);
31640 check_no_duplicate_clause (list, OMP_CLAUSE_TILE, "tile", location);
31641 c = build_omp_clause (loc, OMP_CLAUSE_COLLAPSE);
31642 OMP_CLAUSE_CHAIN (c) = list;
31643 OMP_CLAUSE_COLLAPSE_EXPR (c) = num;
31645 return c;
31648 /* OpenMP 2.5:
31649 default ( none | shared )
31651 OpenACC:
31652 default ( none | present ) */
31654 static tree
31655 cp_parser_omp_clause_default (cp_parser *parser, tree list,
31656 location_t location, bool is_oacc)
31658 enum omp_clause_default_kind kind = OMP_CLAUSE_DEFAULT_UNSPECIFIED;
31659 tree c;
31661 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31662 return list;
31663 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
31665 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
31666 const char *p = IDENTIFIER_POINTER (id);
31668 switch (p[0])
31670 case 'n':
31671 if (strcmp ("none", p) != 0)
31672 goto invalid_kind;
31673 kind = OMP_CLAUSE_DEFAULT_NONE;
31674 break;
31676 case 'p':
31677 if (strcmp ("present", p) != 0 || !is_oacc)
31678 goto invalid_kind;
31679 kind = OMP_CLAUSE_DEFAULT_PRESENT;
31680 break;
31682 case 's':
31683 if (strcmp ("shared", p) != 0 || is_oacc)
31684 goto invalid_kind;
31685 kind = OMP_CLAUSE_DEFAULT_SHARED;
31686 break;
31688 default:
31689 goto invalid_kind;
31692 cp_lexer_consume_token (parser->lexer);
31694 else
31696 invalid_kind:
31697 if (is_oacc)
31698 cp_parser_error (parser, "expected %<none%> or %<present%>");
31699 else
31700 cp_parser_error (parser, "expected %<none%> or %<shared%>");
31703 if (kind == OMP_CLAUSE_DEFAULT_UNSPECIFIED
31704 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31705 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31706 /*or_comma=*/false,
31707 /*consume_paren=*/true);
31709 if (kind == OMP_CLAUSE_DEFAULT_UNSPECIFIED)
31710 return list;
31712 check_no_duplicate_clause (list, OMP_CLAUSE_DEFAULT, "default", location);
31713 c = build_omp_clause (location, OMP_CLAUSE_DEFAULT);
31714 OMP_CLAUSE_CHAIN (c) = list;
31715 OMP_CLAUSE_DEFAULT_KIND (c) = kind;
31717 return c;
31720 /* OpenMP 3.1:
31721 final ( expression ) */
31723 static tree
31724 cp_parser_omp_clause_final (cp_parser *parser, tree list, location_t location)
31726 tree t, c;
31728 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31729 return list;
31731 t = cp_parser_condition (parser);
31733 if (t == error_mark_node
31734 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31735 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31736 /*or_comma=*/false,
31737 /*consume_paren=*/true);
31739 check_no_duplicate_clause (list, OMP_CLAUSE_FINAL, "final", location);
31741 c = build_omp_clause (location, OMP_CLAUSE_FINAL);
31742 OMP_CLAUSE_FINAL_EXPR (c) = t;
31743 OMP_CLAUSE_CHAIN (c) = list;
31745 return c;
31748 /* OpenMP 2.5:
31749 if ( expression )
31751 OpenMP 4.5:
31752 if ( directive-name-modifier : expression )
31754 directive-name-modifier:
31755 parallel | task | taskloop | target data | target | target update
31756 | target enter data | target exit data */
31758 static tree
31759 cp_parser_omp_clause_if (cp_parser *parser, tree list, location_t location,
31760 bool is_omp)
31762 tree t, c;
31763 enum tree_code if_modifier = ERROR_MARK;
31765 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31766 return list;
31768 if (is_omp && cp_lexer_next_token_is (parser->lexer, CPP_NAME))
31770 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
31771 const char *p = IDENTIFIER_POINTER (id);
31772 int n = 2;
31774 if (strcmp ("parallel", p) == 0)
31775 if_modifier = OMP_PARALLEL;
31776 else if (strcmp ("task", p) == 0)
31777 if_modifier = OMP_TASK;
31778 else if (strcmp ("taskloop", p) == 0)
31779 if_modifier = OMP_TASKLOOP;
31780 else if (strcmp ("target", p) == 0)
31782 if_modifier = OMP_TARGET;
31783 if (cp_lexer_nth_token_is (parser->lexer, 2, CPP_NAME))
31785 id = cp_lexer_peek_nth_token (parser->lexer, 2)->u.value;
31786 p = IDENTIFIER_POINTER (id);
31787 if (strcmp ("data", p) == 0)
31788 if_modifier = OMP_TARGET_DATA;
31789 else if (strcmp ("update", p) == 0)
31790 if_modifier = OMP_TARGET_UPDATE;
31791 else if (strcmp ("enter", p) == 0)
31792 if_modifier = OMP_TARGET_ENTER_DATA;
31793 else if (strcmp ("exit", p) == 0)
31794 if_modifier = OMP_TARGET_EXIT_DATA;
31795 if (if_modifier != OMP_TARGET)
31796 n = 3;
31797 else
31799 location_t loc
31800 = cp_lexer_peek_nth_token (parser->lexer, 2)->location;
31801 error_at (loc, "expected %<data%>, %<update%>, %<enter%> "
31802 "or %<exit%>");
31803 if_modifier = ERROR_MARK;
31805 if (if_modifier == OMP_TARGET_ENTER_DATA
31806 || if_modifier == OMP_TARGET_EXIT_DATA)
31808 if (cp_lexer_nth_token_is (parser->lexer, 3, CPP_NAME))
31810 id = cp_lexer_peek_nth_token (parser->lexer, 3)->u.value;
31811 p = IDENTIFIER_POINTER (id);
31812 if (strcmp ("data", p) == 0)
31813 n = 4;
31815 if (n != 4)
31817 location_t loc
31818 = cp_lexer_peek_nth_token (parser->lexer, 3)->location;
31819 error_at (loc, "expected %<data%>");
31820 if_modifier = ERROR_MARK;
31825 if (if_modifier != ERROR_MARK)
31827 if (cp_lexer_nth_token_is (parser->lexer, n, CPP_COLON))
31829 while (n-- > 0)
31830 cp_lexer_consume_token (parser->lexer);
31832 else
31834 if (n > 2)
31836 location_t loc
31837 = cp_lexer_peek_nth_token (parser->lexer, n)->location;
31838 error_at (loc, "expected %<:%>");
31840 if_modifier = ERROR_MARK;
31845 t = cp_parser_condition (parser);
31847 if (t == error_mark_node
31848 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31849 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31850 /*or_comma=*/false,
31851 /*consume_paren=*/true);
31853 for (c = list; c ; c = OMP_CLAUSE_CHAIN (c))
31854 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_IF)
31856 if (if_modifier != ERROR_MARK
31857 && OMP_CLAUSE_IF_MODIFIER (c) == if_modifier)
31859 const char *p = NULL;
31860 switch (if_modifier)
31862 case OMP_PARALLEL: p = "parallel"; break;
31863 case OMP_TASK: p = "task"; break;
31864 case OMP_TASKLOOP: p = "taskloop"; break;
31865 case OMP_TARGET_DATA: p = "target data"; break;
31866 case OMP_TARGET: p = "target"; break;
31867 case OMP_TARGET_UPDATE: p = "target update"; break;
31868 case OMP_TARGET_ENTER_DATA: p = "enter data"; break;
31869 case OMP_TARGET_EXIT_DATA: p = "exit data"; break;
31870 default: gcc_unreachable ();
31872 error_at (location, "too many %<if%> clauses with %qs modifier",
31874 return list;
31876 else if (OMP_CLAUSE_IF_MODIFIER (c) == if_modifier)
31878 if (!is_omp)
31879 error_at (location, "too many %<if%> clauses");
31880 else
31881 error_at (location, "too many %<if%> clauses without modifier");
31882 return list;
31884 else if (if_modifier == ERROR_MARK
31885 || OMP_CLAUSE_IF_MODIFIER (c) == ERROR_MARK)
31887 error_at (location, "if any %<if%> clause has modifier, then all "
31888 "%<if%> clauses have to use modifier");
31889 return list;
31893 c = build_omp_clause (location, OMP_CLAUSE_IF);
31894 OMP_CLAUSE_IF_MODIFIER (c) = if_modifier;
31895 OMP_CLAUSE_IF_EXPR (c) = t;
31896 OMP_CLAUSE_CHAIN (c) = list;
31898 return c;
31901 /* OpenMP 3.1:
31902 mergeable */
31904 static tree
31905 cp_parser_omp_clause_mergeable (cp_parser * /*parser*/,
31906 tree list, location_t location)
31908 tree c;
31910 check_no_duplicate_clause (list, OMP_CLAUSE_MERGEABLE, "mergeable",
31911 location);
31913 c = build_omp_clause (location, OMP_CLAUSE_MERGEABLE);
31914 OMP_CLAUSE_CHAIN (c) = list;
31915 return c;
31918 /* OpenMP 2.5:
31919 nowait */
31921 static tree
31922 cp_parser_omp_clause_nowait (cp_parser * /*parser*/,
31923 tree list, location_t location)
31925 tree c;
31927 check_no_duplicate_clause (list, OMP_CLAUSE_NOWAIT, "nowait", location);
31929 c = build_omp_clause (location, OMP_CLAUSE_NOWAIT);
31930 OMP_CLAUSE_CHAIN (c) = list;
31931 return c;
31934 /* OpenMP 2.5:
31935 num_threads ( expression ) */
31937 static tree
31938 cp_parser_omp_clause_num_threads (cp_parser *parser, tree list,
31939 location_t location)
31941 tree t, c;
31943 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31944 return list;
31946 t = cp_parser_expression (parser);
31948 if (t == error_mark_node
31949 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31950 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31951 /*or_comma=*/false,
31952 /*consume_paren=*/true);
31954 check_no_duplicate_clause (list, OMP_CLAUSE_NUM_THREADS,
31955 "num_threads", location);
31957 c = build_omp_clause (location, OMP_CLAUSE_NUM_THREADS);
31958 OMP_CLAUSE_NUM_THREADS_EXPR (c) = t;
31959 OMP_CLAUSE_CHAIN (c) = list;
31961 return c;
31964 /* OpenMP 4.5:
31965 num_tasks ( expression ) */
31967 static tree
31968 cp_parser_omp_clause_num_tasks (cp_parser *parser, tree list,
31969 location_t location)
31971 tree t, c;
31973 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31974 return list;
31976 t = cp_parser_expression (parser);
31978 if (t == error_mark_node
31979 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31980 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31981 /*or_comma=*/false,
31982 /*consume_paren=*/true);
31984 check_no_duplicate_clause (list, OMP_CLAUSE_NUM_TASKS,
31985 "num_tasks", location);
31987 c = build_omp_clause (location, OMP_CLAUSE_NUM_TASKS);
31988 OMP_CLAUSE_NUM_TASKS_EXPR (c) = t;
31989 OMP_CLAUSE_CHAIN (c) = list;
31991 return c;
31994 /* OpenMP 4.5:
31995 grainsize ( expression ) */
31997 static tree
31998 cp_parser_omp_clause_grainsize (cp_parser *parser, tree list,
31999 location_t location)
32001 tree t, c;
32003 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
32004 return list;
32006 t = cp_parser_expression (parser);
32008 if (t == error_mark_node
32009 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
32010 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
32011 /*or_comma=*/false,
32012 /*consume_paren=*/true);
32014 check_no_duplicate_clause (list, OMP_CLAUSE_GRAINSIZE,
32015 "grainsize", location);
32017 c = build_omp_clause (location, OMP_CLAUSE_GRAINSIZE);
32018 OMP_CLAUSE_GRAINSIZE_EXPR (c) = t;
32019 OMP_CLAUSE_CHAIN (c) = list;
32021 return c;
32024 /* OpenMP 4.5:
32025 priority ( expression ) */
32027 static tree
32028 cp_parser_omp_clause_priority (cp_parser *parser, tree list,
32029 location_t location)
32031 tree t, c;
32033 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
32034 return list;
32036 t = cp_parser_expression (parser);
32038 if (t == error_mark_node
32039 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
32040 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
32041 /*or_comma=*/false,
32042 /*consume_paren=*/true);
32044 check_no_duplicate_clause (list, OMP_CLAUSE_PRIORITY,
32045 "priority", location);
32047 c = build_omp_clause (location, OMP_CLAUSE_PRIORITY);
32048 OMP_CLAUSE_PRIORITY_EXPR (c) = t;
32049 OMP_CLAUSE_CHAIN (c) = list;
32051 return c;
32054 /* OpenMP 4.5:
32055 hint ( expression ) */
32057 static tree
32058 cp_parser_omp_clause_hint (cp_parser *parser, tree list,
32059 location_t location)
32061 tree t, c;
32063 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
32064 return list;
32066 t = cp_parser_expression (parser);
32068 if (t == error_mark_node
32069 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
32070 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
32071 /*or_comma=*/false,
32072 /*consume_paren=*/true);
32074 check_no_duplicate_clause (list, OMP_CLAUSE_HINT, "hint", location);
32076 c = build_omp_clause (location, OMP_CLAUSE_HINT);
32077 OMP_CLAUSE_HINT_EXPR (c) = t;
32078 OMP_CLAUSE_CHAIN (c) = list;
32080 return c;
32083 /* OpenMP 4.5:
32084 defaultmap ( tofrom : scalar ) */
32086 static tree
32087 cp_parser_omp_clause_defaultmap (cp_parser *parser, tree list,
32088 location_t location)
32090 tree c, id;
32091 const char *p;
32093 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
32094 return list;
32096 if (!cp_lexer_next_token_is (parser->lexer, CPP_NAME))
32098 cp_parser_error (parser, "expected %<tofrom%>");
32099 goto out_err;
32101 id = cp_lexer_peek_token (parser->lexer)->u.value;
32102 p = IDENTIFIER_POINTER (id);
32103 if (strcmp (p, "tofrom") != 0)
32105 cp_parser_error (parser, "expected %<tofrom%>");
32106 goto out_err;
32108 cp_lexer_consume_token (parser->lexer);
32109 if (!cp_parser_require (parser, CPP_COLON, RT_COLON))
32110 goto out_err;
32112 if (!cp_lexer_next_token_is (parser->lexer, CPP_NAME))
32114 cp_parser_error (parser, "expected %<scalar%>");
32115 goto out_err;
32117 id = cp_lexer_peek_token (parser->lexer)->u.value;
32118 p = IDENTIFIER_POINTER (id);
32119 if (strcmp (p, "scalar") != 0)
32121 cp_parser_error (parser, "expected %<scalar%>");
32122 goto out_err;
32124 cp_lexer_consume_token (parser->lexer);
32125 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
32126 goto out_err;
32128 check_no_duplicate_clause (list, OMP_CLAUSE_DEFAULTMAP, "defaultmap",
32129 location);
32131 c = build_omp_clause (location, OMP_CLAUSE_DEFAULTMAP);
32132 OMP_CLAUSE_CHAIN (c) = list;
32133 return c;
32135 out_err:
32136 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
32137 /*or_comma=*/false,
32138 /*consume_paren=*/true);
32139 return list;
32142 /* OpenMP 2.5:
32143 ordered
32145 OpenMP 4.5:
32146 ordered ( constant-expression ) */
32148 static tree
32149 cp_parser_omp_clause_ordered (cp_parser *parser,
32150 tree list, location_t location)
32152 tree c, num = NULL_TREE;
32153 HOST_WIDE_INT n;
32155 check_no_duplicate_clause (list, OMP_CLAUSE_ORDERED,
32156 "ordered", location);
32158 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
32160 cp_lexer_consume_token (parser->lexer);
32162 num = cp_parser_constant_expression (parser);
32164 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
32165 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
32166 /*or_comma=*/false,
32167 /*consume_paren=*/true);
32169 if (num == error_mark_node)
32170 return list;
32171 num = fold_non_dependent_expr (num);
32172 if (!tree_fits_shwi_p (num)
32173 || !INTEGRAL_TYPE_P (TREE_TYPE (num))
32174 || (n = tree_to_shwi (num)) <= 0
32175 || (int) n != n)
32177 error_at (location,
32178 "ordered argument needs positive constant integer "
32179 "expression");
32180 return list;
32184 c = build_omp_clause (location, OMP_CLAUSE_ORDERED);
32185 OMP_CLAUSE_ORDERED_EXPR (c) = num;
32186 OMP_CLAUSE_CHAIN (c) = list;
32187 return c;
32190 /* OpenMP 2.5:
32191 reduction ( reduction-operator : variable-list )
32193 reduction-operator:
32194 One of: + * - & ^ | && ||
32196 OpenMP 3.1:
32198 reduction-operator:
32199 One of: + * - & ^ | && || min max
32201 OpenMP 4.0:
32203 reduction-operator:
32204 One of: + * - & ^ | && ||
32205 id-expression */
32207 static tree
32208 cp_parser_omp_clause_reduction (cp_parser *parser, tree list)
32210 enum tree_code code = ERROR_MARK;
32211 tree nlist, c, id = NULL_TREE;
32213 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
32214 return list;
32216 switch (cp_lexer_peek_token (parser->lexer)->type)
32218 case CPP_PLUS: code = PLUS_EXPR; break;
32219 case CPP_MULT: code = MULT_EXPR; break;
32220 case CPP_MINUS: code = MINUS_EXPR; break;
32221 case CPP_AND: code = BIT_AND_EXPR; break;
32222 case CPP_XOR: code = BIT_XOR_EXPR; break;
32223 case CPP_OR: code = BIT_IOR_EXPR; break;
32224 case CPP_AND_AND: code = TRUTH_ANDIF_EXPR; break;
32225 case CPP_OR_OR: code = TRUTH_ORIF_EXPR; break;
32226 default: break;
32229 if (code != ERROR_MARK)
32230 cp_lexer_consume_token (parser->lexer);
32231 else
32233 bool saved_colon_corrects_to_scope_p;
32234 saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
32235 parser->colon_corrects_to_scope_p = false;
32236 id = cp_parser_id_expression (parser, /*template_p=*/false,
32237 /*check_dependency_p=*/true,
32238 /*template_p=*/NULL,
32239 /*declarator_p=*/false,
32240 /*optional_p=*/false);
32241 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
32242 if (identifier_p (id))
32244 const char *p = IDENTIFIER_POINTER (id);
32246 if (strcmp (p, "min") == 0)
32247 code = MIN_EXPR;
32248 else if (strcmp (p, "max") == 0)
32249 code = MAX_EXPR;
32250 else if (id == cp_operator_id (PLUS_EXPR))
32251 code = PLUS_EXPR;
32252 else if (id == cp_operator_id (MULT_EXPR))
32253 code = MULT_EXPR;
32254 else if (id == cp_operator_id (MINUS_EXPR))
32255 code = MINUS_EXPR;
32256 else if (id == cp_operator_id (BIT_AND_EXPR))
32257 code = BIT_AND_EXPR;
32258 else if (id == cp_operator_id (BIT_IOR_EXPR))
32259 code = BIT_IOR_EXPR;
32260 else if (id == cp_operator_id (BIT_XOR_EXPR))
32261 code = BIT_XOR_EXPR;
32262 else if (id == cp_operator_id (TRUTH_ANDIF_EXPR))
32263 code = TRUTH_ANDIF_EXPR;
32264 else if (id == cp_operator_id (TRUTH_ORIF_EXPR))
32265 code = TRUTH_ORIF_EXPR;
32266 id = omp_reduction_id (code, id, NULL_TREE);
32267 tree scope = parser->scope;
32268 if (scope)
32269 id = build_qualified_name (NULL_TREE, scope, id, false);
32270 parser->scope = NULL_TREE;
32271 parser->qualifying_scope = NULL_TREE;
32272 parser->object_scope = NULL_TREE;
32274 else
32276 error ("invalid reduction-identifier");
32277 resync_fail:
32278 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
32279 /*or_comma=*/false,
32280 /*consume_paren=*/true);
32281 return list;
32285 if (!cp_parser_require (parser, CPP_COLON, RT_COLON))
32286 goto resync_fail;
32288 nlist = cp_parser_omp_var_list_no_open (parser, OMP_CLAUSE_REDUCTION, list,
32289 NULL);
32290 for (c = nlist; c != list; c = OMP_CLAUSE_CHAIN (c))
32292 OMP_CLAUSE_REDUCTION_CODE (c) = code;
32293 OMP_CLAUSE_REDUCTION_PLACEHOLDER (c) = id;
32296 return nlist;
32299 /* OpenMP 2.5:
32300 schedule ( schedule-kind )
32301 schedule ( schedule-kind , expression )
32303 schedule-kind:
32304 static | dynamic | guided | runtime | auto
32306 OpenMP 4.5:
32307 schedule ( schedule-modifier : schedule-kind )
32308 schedule ( schedule-modifier [ , schedule-modifier ] : schedule-kind , expression )
32310 schedule-modifier:
32311 simd
32312 monotonic
32313 nonmonotonic */
32315 static tree
32316 cp_parser_omp_clause_schedule (cp_parser *parser, tree list, location_t location)
32318 tree c, t;
32319 int modifiers = 0, nmodifiers = 0;
32321 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
32322 return list;
32324 c = build_omp_clause (location, OMP_CLAUSE_SCHEDULE);
32326 while (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
32328 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
32329 const char *p = IDENTIFIER_POINTER (id);
32330 if (strcmp ("simd", p) == 0)
32331 OMP_CLAUSE_SCHEDULE_SIMD (c) = 1;
32332 else if (strcmp ("monotonic", p) == 0)
32333 modifiers |= OMP_CLAUSE_SCHEDULE_MONOTONIC;
32334 else if (strcmp ("nonmonotonic", p) == 0)
32335 modifiers |= OMP_CLAUSE_SCHEDULE_NONMONOTONIC;
32336 else
32337 break;
32338 cp_lexer_consume_token (parser->lexer);
32339 if (nmodifiers++ == 0
32340 && cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
32341 cp_lexer_consume_token (parser->lexer);
32342 else
32344 cp_parser_require (parser, CPP_COLON, RT_COLON);
32345 break;
32349 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
32351 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
32352 const char *p = IDENTIFIER_POINTER (id);
32354 switch (p[0])
32356 case 'd':
32357 if (strcmp ("dynamic", p) != 0)
32358 goto invalid_kind;
32359 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_DYNAMIC;
32360 break;
32362 case 'g':
32363 if (strcmp ("guided", p) != 0)
32364 goto invalid_kind;
32365 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_GUIDED;
32366 break;
32368 case 'r':
32369 if (strcmp ("runtime", p) != 0)
32370 goto invalid_kind;
32371 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_RUNTIME;
32372 break;
32374 default:
32375 goto invalid_kind;
32378 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_STATIC))
32379 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_STATIC;
32380 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_AUTO))
32381 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_AUTO;
32382 else
32383 goto invalid_kind;
32384 cp_lexer_consume_token (parser->lexer);
32386 if ((modifiers & (OMP_CLAUSE_SCHEDULE_MONOTONIC
32387 | OMP_CLAUSE_SCHEDULE_NONMONOTONIC))
32388 == (OMP_CLAUSE_SCHEDULE_MONOTONIC
32389 | OMP_CLAUSE_SCHEDULE_NONMONOTONIC))
32391 error_at (location, "both %<monotonic%> and %<nonmonotonic%> modifiers "
32392 "specified");
32393 modifiers = 0;
32396 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
32398 cp_token *token;
32399 cp_lexer_consume_token (parser->lexer);
32401 token = cp_lexer_peek_token (parser->lexer);
32402 t = cp_parser_assignment_expression (parser);
32404 if (t == error_mark_node)
32405 goto resync_fail;
32406 else if (OMP_CLAUSE_SCHEDULE_KIND (c) == OMP_CLAUSE_SCHEDULE_RUNTIME)
32407 error_at (token->location, "schedule %<runtime%> does not take "
32408 "a %<chunk_size%> parameter");
32409 else if (OMP_CLAUSE_SCHEDULE_KIND (c) == OMP_CLAUSE_SCHEDULE_AUTO)
32410 error_at (token->location, "schedule %<auto%> does not take "
32411 "a %<chunk_size%> parameter");
32412 else
32413 OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c) = t;
32415 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
32416 goto resync_fail;
32418 else if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_COMMA_CLOSE_PAREN))
32419 goto resync_fail;
32421 OMP_CLAUSE_SCHEDULE_KIND (c)
32422 = (enum omp_clause_schedule_kind)
32423 (OMP_CLAUSE_SCHEDULE_KIND (c) | modifiers);
32425 check_no_duplicate_clause (list, OMP_CLAUSE_SCHEDULE, "schedule", location);
32426 OMP_CLAUSE_CHAIN (c) = list;
32427 return c;
32429 invalid_kind:
32430 cp_parser_error (parser, "invalid schedule kind");
32431 resync_fail:
32432 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
32433 /*or_comma=*/false,
32434 /*consume_paren=*/true);
32435 return list;
32438 /* OpenMP 3.0:
32439 untied */
32441 static tree
32442 cp_parser_omp_clause_untied (cp_parser * /*parser*/,
32443 tree list, location_t location)
32445 tree c;
32447 check_no_duplicate_clause (list, OMP_CLAUSE_UNTIED, "untied", location);
32449 c = build_omp_clause (location, OMP_CLAUSE_UNTIED);
32450 OMP_CLAUSE_CHAIN (c) = list;
32451 return c;
32454 /* OpenMP 4.0:
32455 inbranch
32456 notinbranch */
32458 static tree
32459 cp_parser_omp_clause_branch (cp_parser * /*parser*/, enum omp_clause_code code,
32460 tree list, location_t location)
32462 check_no_duplicate_clause (list, code, omp_clause_code_name[code], location);
32463 tree c = build_omp_clause (location, code);
32464 OMP_CLAUSE_CHAIN (c) = list;
32465 return c;
32468 /* OpenMP 4.0:
32469 parallel
32471 sections
32472 taskgroup */
32474 static tree
32475 cp_parser_omp_clause_cancelkind (cp_parser * /*parser*/,
32476 enum omp_clause_code code,
32477 tree list, location_t location)
32479 tree c = build_omp_clause (location, code);
32480 OMP_CLAUSE_CHAIN (c) = list;
32481 return c;
32484 /* OpenMP 4.5:
32485 nogroup */
32487 static tree
32488 cp_parser_omp_clause_nogroup (cp_parser * /*parser*/,
32489 tree list, location_t location)
32491 check_no_duplicate_clause (list, OMP_CLAUSE_NOGROUP, "nogroup", location);
32492 tree c = build_omp_clause (location, OMP_CLAUSE_NOGROUP);
32493 OMP_CLAUSE_CHAIN (c) = list;
32494 return c;
32497 /* OpenMP 4.5:
32498 simd
32499 threads */
32501 static tree
32502 cp_parser_omp_clause_orderedkind (cp_parser * /*parser*/,
32503 enum omp_clause_code code,
32504 tree list, location_t location)
32506 check_no_duplicate_clause (list, code, omp_clause_code_name[code], location);
32507 tree c = build_omp_clause (location, code);
32508 OMP_CLAUSE_CHAIN (c) = list;
32509 return c;
32512 /* OpenMP 4.0:
32513 num_teams ( expression ) */
32515 static tree
32516 cp_parser_omp_clause_num_teams (cp_parser *parser, tree list,
32517 location_t location)
32519 tree t, c;
32521 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
32522 return list;
32524 t = cp_parser_expression (parser);
32526 if (t == error_mark_node
32527 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
32528 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
32529 /*or_comma=*/false,
32530 /*consume_paren=*/true);
32532 check_no_duplicate_clause (list, OMP_CLAUSE_NUM_TEAMS,
32533 "num_teams", location);
32535 c = build_omp_clause (location, OMP_CLAUSE_NUM_TEAMS);
32536 OMP_CLAUSE_NUM_TEAMS_EXPR (c) = t;
32537 OMP_CLAUSE_CHAIN (c) = list;
32539 return c;
32542 /* OpenMP 4.0:
32543 thread_limit ( expression ) */
32545 static tree
32546 cp_parser_omp_clause_thread_limit (cp_parser *parser, tree list,
32547 location_t location)
32549 tree t, c;
32551 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
32552 return list;
32554 t = cp_parser_expression (parser);
32556 if (t == error_mark_node
32557 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
32558 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
32559 /*or_comma=*/false,
32560 /*consume_paren=*/true);
32562 check_no_duplicate_clause (list, OMP_CLAUSE_THREAD_LIMIT,
32563 "thread_limit", location);
32565 c = build_omp_clause (location, OMP_CLAUSE_THREAD_LIMIT);
32566 OMP_CLAUSE_THREAD_LIMIT_EXPR (c) = t;
32567 OMP_CLAUSE_CHAIN (c) = list;
32569 return c;
32572 /* OpenMP 4.0:
32573 aligned ( variable-list )
32574 aligned ( variable-list : constant-expression ) */
32576 static tree
32577 cp_parser_omp_clause_aligned (cp_parser *parser, tree list)
32579 tree nlist, c, alignment = NULL_TREE;
32580 bool colon;
32582 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
32583 return list;
32585 nlist = cp_parser_omp_var_list_no_open (parser, OMP_CLAUSE_ALIGNED, list,
32586 &colon);
32588 if (colon)
32590 alignment = cp_parser_constant_expression (parser);
32592 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
32593 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
32594 /*or_comma=*/false,
32595 /*consume_paren=*/true);
32597 if (alignment == error_mark_node)
32598 alignment = NULL_TREE;
32601 for (c = nlist; c != list; c = OMP_CLAUSE_CHAIN (c))
32602 OMP_CLAUSE_ALIGNED_ALIGNMENT (c) = alignment;
32604 return nlist;
32607 /* OpenMP 4.0:
32608 linear ( variable-list )
32609 linear ( variable-list : expression )
32611 OpenMP 4.5:
32612 linear ( modifier ( variable-list ) )
32613 linear ( modifier ( variable-list ) : expression ) */
32615 static tree
32616 cp_parser_omp_clause_linear (cp_parser *parser, tree list,
32617 bool is_cilk_simd_fn, bool declare_simd)
32619 tree nlist, c, step = integer_one_node;
32620 bool colon;
32621 enum omp_clause_linear_kind kind = OMP_CLAUSE_LINEAR_DEFAULT;
32623 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
32624 return list;
32626 if (!is_cilk_simd_fn
32627 && cp_lexer_next_token_is (parser->lexer, CPP_NAME))
32629 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
32630 const char *p = IDENTIFIER_POINTER (id);
32632 if (strcmp ("ref", p) == 0)
32633 kind = OMP_CLAUSE_LINEAR_REF;
32634 else if (strcmp ("val", p) == 0)
32635 kind = OMP_CLAUSE_LINEAR_VAL;
32636 else if (strcmp ("uval", p) == 0)
32637 kind = OMP_CLAUSE_LINEAR_UVAL;
32638 if (cp_lexer_nth_token_is (parser->lexer, 2, CPP_OPEN_PAREN))
32639 cp_lexer_consume_token (parser->lexer);
32640 else
32641 kind = OMP_CLAUSE_LINEAR_DEFAULT;
32644 if (kind == OMP_CLAUSE_LINEAR_DEFAULT)
32645 nlist = cp_parser_omp_var_list_no_open (parser, OMP_CLAUSE_LINEAR, list,
32646 &colon);
32647 else
32649 nlist = cp_parser_omp_var_list (parser, OMP_CLAUSE_LINEAR, list);
32650 colon = cp_lexer_next_token_is (parser->lexer, CPP_COLON);
32651 if (colon)
32652 cp_parser_require (parser, CPP_COLON, RT_COLON);
32653 else if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
32654 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
32655 /*or_comma=*/false,
32656 /*consume_paren=*/true);
32659 if (colon)
32661 step = NULL_TREE;
32662 if (declare_simd
32663 && cp_lexer_next_token_is (parser->lexer, CPP_NAME)
32664 && cp_lexer_nth_token_is (parser->lexer, 2, CPP_CLOSE_PAREN))
32666 cp_token *token = cp_lexer_peek_token (parser->lexer);
32667 cp_parser_parse_tentatively (parser);
32668 step = cp_parser_id_expression (parser, /*template_p=*/false,
32669 /*check_dependency_p=*/true,
32670 /*template_p=*/NULL,
32671 /*declarator_p=*/false,
32672 /*optional_p=*/false);
32673 if (step != error_mark_node)
32674 step = cp_parser_lookup_name_simple (parser, step, token->location);
32675 if (step == error_mark_node)
32677 step = NULL_TREE;
32678 cp_parser_abort_tentative_parse (parser);
32680 else if (!cp_parser_parse_definitely (parser))
32681 step = NULL_TREE;
32683 if (!step)
32684 step = cp_parser_expression (parser);
32686 if (is_cilk_simd_fn && TREE_CODE (step) == PARM_DECL)
32688 sorry ("using parameters for %<linear%> step is not supported yet");
32689 step = integer_one_node;
32691 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
32692 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
32693 /*or_comma=*/false,
32694 /*consume_paren=*/true);
32696 if (step == error_mark_node)
32697 return list;
32700 for (c = nlist; c != list; c = OMP_CLAUSE_CHAIN (c))
32702 OMP_CLAUSE_LINEAR_STEP (c) = step;
32703 OMP_CLAUSE_LINEAR_KIND (c) = kind;
32706 return nlist;
32709 /* OpenMP 4.0:
32710 safelen ( constant-expression ) */
32712 static tree
32713 cp_parser_omp_clause_safelen (cp_parser *parser, tree list,
32714 location_t location)
32716 tree t, c;
32718 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
32719 return list;
32721 t = cp_parser_constant_expression (parser);
32723 if (t == error_mark_node
32724 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
32725 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
32726 /*or_comma=*/false,
32727 /*consume_paren=*/true);
32729 check_no_duplicate_clause (list, OMP_CLAUSE_SAFELEN, "safelen", location);
32731 c = build_omp_clause (location, OMP_CLAUSE_SAFELEN);
32732 OMP_CLAUSE_SAFELEN_EXPR (c) = t;
32733 OMP_CLAUSE_CHAIN (c) = list;
32735 return c;
32738 /* OpenMP 4.0:
32739 simdlen ( constant-expression ) */
32741 static tree
32742 cp_parser_omp_clause_simdlen (cp_parser *parser, tree list,
32743 location_t location)
32745 tree t, c;
32747 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
32748 return list;
32750 t = cp_parser_constant_expression (parser);
32752 if (t == error_mark_node
32753 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
32754 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
32755 /*or_comma=*/false,
32756 /*consume_paren=*/true);
32758 check_no_duplicate_clause (list, OMP_CLAUSE_SIMDLEN, "simdlen", location);
32760 c = build_omp_clause (location, OMP_CLAUSE_SIMDLEN);
32761 OMP_CLAUSE_SIMDLEN_EXPR (c) = t;
32762 OMP_CLAUSE_CHAIN (c) = list;
32764 return c;
32767 /* OpenMP 4.5:
32768 vec:
32769 identifier [+/- integer]
32770 vec , identifier [+/- integer]
32773 static tree
32774 cp_parser_omp_clause_depend_sink (cp_parser *parser, location_t clause_loc,
32775 tree list)
32777 tree vec = NULL;
32779 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NAME))
32781 cp_parser_error (parser, "expected identifier");
32782 return list;
32785 while (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
32787 location_t id_loc = cp_lexer_peek_token (parser->lexer)->location;
32788 tree t, identifier = cp_parser_identifier (parser);
32789 tree addend = NULL;
32791 if (identifier == error_mark_node)
32792 t = error_mark_node;
32793 else
32795 t = cp_parser_lookup_name_simple
32796 (parser, identifier,
32797 cp_lexer_peek_token (parser->lexer)->location);
32798 if (t == error_mark_node)
32799 cp_parser_name_lookup_error (parser, identifier, t, NLE_NULL,
32800 id_loc);
32803 bool neg = false;
32804 if (cp_lexer_next_token_is (parser->lexer, CPP_MINUS))
32805 neg = true;
32806 else if (!cp_lexer_next_token_is (parser->lexer, CPP_PLUS))
32808 addend = integer_zero_node;
32809 goto add_to_vector;
32811 cp_lexer_consume_token (parser->lexer);
32813 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NUMBER))
32815 cp_parser_error (parser, "expected integer");
32816 return list;
32819 addend = cp_lexer_peek_token (parser->lexer)->u.value;
32820 if (TREE_CODE (addend) != INTEGER_CST)
32822 cp_parser_error (parser, "expected integer");
32823 return list;
32825 cp_lexer_consume_token (parser->lexer);
32827 add_to_vector:
32828 if (t != error_mark_node)
32830 vec = tree_cons (addend, t, vec);
32831 if (neg)
32832 OMP_CLAUSE_DEPEND_SINK_NEGATIVE (vec) = 1;
32835 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
32836 break;
32838 cp_lexer_consume_token (parser->lexer);
32841 if (cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN) && vec)
32843 tree u = build_omp_clause (clause_loc, OMP_CLAUSE_DEPEND);
32844 OMP_CLAUSE_DEPEND_KIND (u) = OMP_CLAUSE_DEPEND_SINK;
32845 OMP_CLAUSE_DECL (u) = nreverse (vec);
32846 OMP_CLAUSE_CHAIN (u) = list;
32847 return u;
32849 return list;
32852 /* OpenMP 4.0:
32853 depend ( depend-kind : variable-list )
32855 depend-kind:
32856 in | out | inout
32858 OpenMP 4.5:
32859 depend ( source )
32861 depend ( sink : vec ) */
32863 static tree
32864 cp_parser_omp_clause_depend (cp_parser *parser, tree list, location_t loc)
32866 tree nlist, c;
32867 enum omp_clause_depend_kind kind = OMP_CLAUSE_DEPEND_INOUT;
32869 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
32870 return list;
32872 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
32874 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
32875 const char *p = IDENTIFIER_POINTER (id);
32877 if (strcmp ("in", p) == 0)
32878 kind = OMP_CLAUSE_DEPEND_IN;
32879 else if (strcmp ("inout", p) == 0)
32880 kind = OMP_CLAUSE_DEPEND_INOUT;
32881 else if (strcmp ("out", p) == 0)
32882 kind = OMP_CLAUSE_DEPEND_OUT;
32883 else if (strcmp ("source", p) == 0)
32884 kind = OMP_CLAUSE_DEPEND_SOURCE;
32885 else if (strcmp ("sink", p) == 0)
32886 kind = OMP_CLAUSE_DEPEND_SINK;
32887 else
32888 goto invalid_kind;
32890 else
32891 goto invalid_kind;
32893 cp_lexer_consume_token (parser->lexer);
32895 if (kind == OMP_CLAUSE_DEPEND_SOURCE)
32897 c = build_omp_clause (loc, OMP_CLAUSE_DEPEND);
32898 OMP_CLAUSE_DEPEND_KIND (c) = kind;
32899 OMP_CLAUSE_DECL (c) = NULL_TREE;
32900 OMP_CLAUSE_CHAIN (c) = list;
32901 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
32902 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
32903 /*or_comma=*/false,
32904 /*consume_paren=*/true);
32905 return c;
32908 if (!cp_parser_require (parser, CPP_COLON, RT_COLON))
32909 goto resync_fail;
32911 if (kind == OMP_CLAUSE_DEPEND_SINK)
32912 nlist = cp_parser_omp_clause_depend_sink (parser, loc, list);
32913 else
32915 nlist = cp_parser_omp_var_list_no_open (parser, OMP_CLAUSE_DEPEND,
32916 list, NULL);
32918 for (c = nlist; c != list; c = OMP_CLAUSE_CHAIN (c))
32919 OMP_CLAUSE_DEPEND_KIND (c) = kind;
32921 return nlist;
32923 invalid_kind:
32924 cp_parser_error (parser, "invalid depend kind");
32925 resync_fail:
32926 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
32927 /*or_comma=*/false,
32928 /*consume_paren=*/true);
32929 return list;
32932 /* OpenMP 4.0:
32933 map ( map-kind : variable-list )
32934 map ( variable-list )
32936 map-kind:
32937 alloc | to | from | tofrom
32939 OpenMP 4.5:
32940 map-kind:
32941 alloc | to | from | tofrom | release | delete
32943 map ( always [,] map-kind: variable-list ) */
32945 static tree
32946 cp_parser_omp_clause_map (cp_parser *parser, tree list)
32948 tree nlist, c;
32949 enum gomp_map_kind kind = GOMP_MAP_TOFROM;
32950 bool always = false;
32952 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
32953 return list;
32955 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
32957 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
32958 const char *p = IDENTIFIER_POINTER (id);
32960 if (strcmp ("always", p) == 0)
32962 int nth = 2;
32963 if (cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_COMMA)
32964 nth++;
32965 if ((cp_lexer_peek_nth_token (parser->lexer, nth)->type == CPP_NAME
32966 || (cp_lexer_peek_nth_token (parser->lexer, nth)->keyword
32967 == RID_DELETE))
32968 && (cp_lexer_peek_nth_token (parser->lexer, nth + 1)->type
32969 == CPP_COLON))
32971 always = true;
32972 cp_lexer_consume_token (parser->lexer);
32973 if (nth == 3)
32974 cp_lexer_consume_token (parser->lexer);
32979 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME)
32980 && cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_COLON)
32982 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
32983 const char *p = IDENTIFIER_POINTER (id);
32985 if (strcmp ("alloc", p) == 0)
32986 kind = GOMP_MAP_ALLOC;
32987 else if (strcmp ("to", p) == 0)
32988 kind = always ? GOMP_MAP_ALWAYS_TO : GOMP_MAP_TO;
32989 else if (strcmp ("from", p) == 0)
32990 kind = always ? GOMP_MAP_ALWAYS_FROM : GOMP_MAP_FROM;
32991 else if (strcmp ("tofrom", p) == 0)
32992 kind = always ? GOMP_MAP_ALWAYS_TOFROM : GOMP_MAP_TOFROM;
32993 else if (strcmp ("release", p) == 0)
32994 kind = GOMP_MAP_RELEASE;
32995 else
32997 cp_parser_error (parser, "invalid map kind");
32998 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
32999 /*or_comma=*/false,
33000 /*consume_paren=*/true);
33001 return list;
33003 cp_lexer_consume_token (parser->lexer);
33004 cp_lexer_consume_token (parser->lexer);
33006 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_DELETE)
33007 && cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_COLON)
33009 kind = GOMP_MAP_DELETE;
33010 cp_lexer_consume_token (parser->lexer);
33011 cp_lexer_consume_token (parser->lexer);
33014 nlist = cp_parser_omp_var_list_no_open (parser, OMP_CLAUSE_MAP, list,
33015 NULL);
33017 for (c = nlist; c != list; c = OMP_CLAUSE_CHAIN (c))
33018 OMP_CLAUSE_SET_MAP_KIND (c, kind);
33020 return nlist;
33023 /* OpenMP 4.0:
33024 device ( expression ) */
33026 static tree
33027 cp_parser_omp_clause_device (cp_parser *parser, tree list,
33028 location_t location)
33030 tree t, c;
33032 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
33033 return list;
33035 t = cp_parser_expression (parser);
33037 if (t == error_mark_node
33038 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
33039 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
33040 /*or_comma=*/false,
33041 /*consume_paren=*/true);
33043 check_no_duplicate_clause (list, OMP_CLAUSE_DEVICE,
33044 "device", location);
33046 c = build_omp_clause (location, OMP_CLAUSE_DEVICE);
33047 OMP_CLAUSE_DEVICE_ID (c) = t;
33048 OMP_CLAUSE_CHAIN (c) = list;
33050 return c;
33053 /* OpenMP 4.0:
33054 dist_schedule ( static )
33055 dist_schedule ( static , expression ) */
33057 static tree
33058 cp_parser_omp_clause_dist_schedule (cp_parser *parser, tree list,
33059 location_t location)
33061 tree c, t;
33063 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
33064 return list;
33066 c = build_omp_clause (location, OMP_CLAUSE_DIST_SCHEDULE);
33068 if (!cp_lexer_next_token_is_keyword (parser->lexer, RID_STATIC))
33069 goto invalid_kind;
33070 cp_lexer_consume_token (parser->lexer);
33072 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
33074 cp_lexer_consume_token (parser->lexer);
33076 t = cp_parser_assignment_expression (parser);
33078 if (t == error_mark_node)
33079 goto resync_fail;
33080 OMP_CLAUSE_DIST_SCHEDULE_CHUNK_EXPR (c) = t;
33082 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
33083 goto resync_fail;
33085 else if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_COMMA_CLOSE_PAREN))
33086 goto resync_fail;
33088 check_no_duplicate_clause (list, OMP_CLAUSE_DIST_SCHEDULE, "dist_schedule",
33089 location);
33090 OMP_CLAUSE_CHAIN (c) = list;
33091 return c;
33093 invalid_kind:
33094 cp_parser_error (parser, "invalid dist_schedule kind");
33095 resync_fail:
33096 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
33097 /*or_comma=*/false,
33098 /*consume_paren=*/true);
33099 return list;
33102 /* OpenMP 4.0:
33103 proc_bind ( proc-bind-kind )
33105 proc-bind-kind:
33106 master | close | spread */
33108 static tree
33109 cp_parser_omp_clause_proc_bind (cp_parser *parser, tree list,
33110 location_t location)
33112 tree c;
33113 enum omp_clause_proc_bind_kind kind;
33115 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
33116 return list;
33118 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
33120 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
33121 const char *p = IDENTIFIER_POINTER (id);
33123 if (strcmp ("master", p) == 0)
33124 kind = OMP_CLAUSE_PROC_BIND_MASTER;
33125 else if (strcmp ("close", p) == 0)
33126 kind = OMP_CLAUSE_PROC_BIND_CLOSE;
33127 else if (strcmp ("spread", p) == 0)
33128 kind = OMP_CLAUSE_PROC_BIND_SPREAD;
33129 else
33130 goto invalid_kind;
33132 else
33133 goto invalid_kind;
33135 cp_lexer_consume_token (parser->lexer);
33136 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_COMMA_CLOSE_PAREN))
33137 goto resync_fail;
33139 c = build_omp_clause (location, OMP_CLAUSE_PROC_BIND);
33140 check_no_duplicate_clause (list, OMP_CLAUSE_PROC_BIND, "proc_bind",
33141 location);
33142 OMP_CLAUSE_PROC_BIND_KIND (c) = kind;
33143 OMP_CLAUSE_CHAIN (c) = list;
33144 return c;
33146 invalid_kind:
33147 cp_parser_error (parser, "invalid depend kind");
33148 resync_fail:
33149 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
33150 /*or_comma=*/false,
33151 /*consume_paren=*/true);
33152 return list;
33155 /* OpenACC:
33156 async [( int-expr )] */
33158 static tree
33159 cp_parser_oacc_clause_async (cp_parser *parser, tree list)
33161 tree c, t;
33162 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
33164 t = build_int_cst (integer_type_node, GOMP_ASYNC_NOVAL);
33166 if (cp_lexer_peek_token (parser->lexer)->type == CPP_OPEN_PAREN)
33168 cp_lexer_consume_token (parser->lexer);
33170 t = cp_parser_expression (parser);
33171 if (t == error_mark_node
33172 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
33173 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
33174 /*or_comma=*/false,
33175 /*consume_paren=*/true);
33178 check_no_duplicate_clause (list, OMP_CLAUSE_ASYNC, "async", loc);
33180 c = build_omp_clause (loc, OMP_CLAUSE_ASYNC);
33181 OMP_CLAUSE_ASYNC_EXPR (c) = t;
33182 OMP_CLAUSE_CHAIN (c) = list;
33183 list = c;
33185 return list;
33188 /* Parse all OpenACC clauses. The set clauses allowed by the directive
33189 is a bitmask in MASK. Return the list of clauses found. */
33191 static tree
33192 cp_parser_oacc_all_clauses (cp_parser *parser, omp_clause_mask mask,
33193 const char *where, cp_token *pragma_tok,
33194 bool finish_p = true)
33196 tree clauses = NULL;
33197 bool first = true;
33199 while (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL))
33201 location_t here;
33202 pragma_omp_clause c_kind;
33203 omp_clause_code code;
33204 const char *c_name;
33205 tree prev = clauses;
33207 if (!first && cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
33208 cp_lexer_consume_token (parser->lexer);
33210 here = cp_lexer_peek_token (parser->lexer)->location;
33211 c_kind = cp_parser_omp_clause_name (parser);
33213 switch (c_kind)
33215 case PRAGMA_OACC_CLAUSE_ASYNC:
33216 clauses = cp_parser_oacc_clause_async (parser, clauses);
33217 c_name = "async";
33218 break;
33219 case PRAGMA_OACC_CLAUSE_AUTO:
33220 clauses = cp_parser_oacc_simple_clause (parser, OMP_CLAUSE_AUTO,
33221 clauses, here);
33222 c_name = "auto";
33223 break;
33224 case PRAGMA_OACC_CLAUSE_COLLAPSE:
33225 clauses = cp_parser_omp_clause_collapse (parser, clauses, here);
33226 c_name = "collapse";
33227 break;
33228 case PRAGMA_OACC_CLAUSE_COPY:
33229 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
33230 c_name = "copy";
33231 break;
33232 case PRAGMA_OACC_CLAUSE_COPYIN:
33233 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
33234 c_name = "copyin";
33235 break;
33236 case PRAGMA_OACC_CLAUSE_COPYOUT:
33237 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
33238 c_name = "copyout";
33239 break;
33240 case PRAGMA_OACC_CLAUSE_CREATE:
33241 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
33242 c_name = "create";
33243 break;
33244 case PRAGMA_OACC_CLAUSE_DELETE:
33245 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
33246 c_name = "delete";
33247 break;
33248 case PRAGMA_OMP_CLAUSE_DEFAULT:
33249 clauses = cp_parser_omp_clause_default (parser, clauses, here, true);
33250 c_name = "default";
33251 break;
33252 case PRAGMA_OACC_CLAUSE_DEVICE:
33253 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
33254 c_name = "device";
33255 break;
33256 case PRAGMA_OACC_CLAUSE_DEVICEPTR:
33257 clauses = cp_parser_oacc_data_clause_deviceptr (parser, clauses);
33258 c_name = "deviceptr";
33259 break;
33260 case PRAGMA_OACC_CLAUSE_DEVICE_RESIDENT:
33261 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
33262 c_name = "device_resident";
33263 break;
33264 case PRAGMA_OACC_CLAUSE_FIRSTPRIVATE:
33265 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_FIRSTPRIVATE,
33266 clauses);
33267 c_name = "firstprivate";
33268 break;
33269 case PRAGMA_OACC_CLAUSE_GANG:
33270 c_name = "gang";
33271 clauses = cp_parser_oacc_shape_clause (parser, OMP_CLAUSE_GANG,
33272 c_name, clauses);
33273 break;
33274 case PRAGMA_OACC_CLAUSE_HOST:
33275 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
33276 c_name = "host";
33277 break;
33278 case PRAGMA_OACC_CLAUSE_IF:
33279 clauses = cp_parser_omp_clause_if (parser, clauses, here, false);
33280 c_name = "if";
33281 break;
33282 case PRAGMA_OACC_CLAUSE_INDEPENDENT:
33283 clauses = cp_parser_oacc_simple_clause (parser,
33284 OMP_CLAUSE_INDEPENDENT,
33285 clauses, here);
33286 c_name = "independent";
33287 break;
33288 case PRAGMA_OACC_CLAUSE_LINK:
33289 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
33290 c_name = "link";
33291 break;
33292 case PRAGMA_OACC_CLAUSE_NUM_GANGS:
33293 code = OMP_CLAUSE_NUM_GANGS;
33294 c_name = "num_gangs";
33295 clauses = cp_parser_oacc_single_int_clause (parser, code, c_name,
33296 clauses);
33297 break;
33298 case PRAGMA_OACC_CLAUSE_NUM_WORKERS:
33299 c_name = "num_workers";
33300 code = OMP_CLAUSE_NUM_WORKERS;
33301 clauses = cp_parser_oacc_single_int_clause (parser, code, c_name,
33302 clauses);
33303 break;
33304 case PRAGMA_OACC_CLAUSE_PRESENT:
33305 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
33306 c_name = "present";
33307 break;
33308 case PRAGMA_OACC_CLAUSE_PRESENT_OR_COPY:
33309 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
33310 c_name = "present_or_copy";
33311 break;
33312 case PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN:
33313 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
33314 c_name = "present_or_copyin";
33315 break;
33316 case PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYOUT:
33317 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
33318 c_name = "present_or_copyout";
33319 break;
33320 case PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE:
33321 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
33322 c_name = "present_or_create";
33323 break;
33324 case PRAGMA_OACC_CLAUSE_PRIVATE:
33325 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_PRIVATE,
33326 clauses);
33327 c_name = "private";
33328 break;
33329 case PRAGMA_OACC_CLAUSE_REDUCTION:
33330 clauses = cp_parser_omp_clause_reduction (parser, clauses);
33331 c_name = "reduction";
33332 break;
33333 case PRAGMA_OACC_CLAUSE_SELF:
33334 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
33335 c_name = "self";
33336 break;
33337 case PRAGMA_OACC_CLAUSE_SEQ:
33338 clauses = cp_parser_oacc_simple_clause (parser, OMP_CLAUSE_SEQ,
33339 clauses, here);
33340 c_name = "seq";
33341 break;
33342 case PRAGMA_OACC_CLAUSE_TILE:
33343 clauses = cp_parser_oacc_clause_tile (parser, here, clauses);
33344 c_name = "tile";
33345 break;
33346 case PRAGMA_OACC_CLAUSE_USE_DEVICE:
33347 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_USE_DEVICE_PTR,
33348 clauses);
33349 c_name = "use_device";
33350 break;
33351 case PRAGMA_OACC_CLAUSE_VECTOR:
33352 c_name = "vector";
33353 clauses = cp_parser_oacc_shape_clause (parser, OMP_CLAUSE_VECTOR,
33354 c_name, clauses);
33355 break;
33356 case PRAGMA_OACC_CLAUSE_VECTOR_LENGTH:
33357 c_name = "vector_length";
33358 code = OMP_CLAUSE_VECTOR_LENGTH;
33359 clauses = cp_parser_oacc_single_int_clause (parser, code, c_name,
33360 clauses);
33361 break;
33362 case PRAGMA_OACC_CLAUSE_WAIT:
33363 clauses = cp_parser_oacc_clause_wait (parser, clauses);
33364 c_name = "wait";
33365 break;
33366 case PRAGMA_OACC_CLAUSE_WORKER:
33367 c_name = "worker";
33368 clauses = cp_parser_oacc_shape_clause (parser, OMP_CLAUSE_WORKER,
33369 c_name, clauses);
33370 break;
33371 default:
33372 cp_parser_error (parser, "expected %<#pragma acc%> clause");
33373 goto saw_error;
33376 first = false;
33378 if (((mask >> c_kind) & 1) == 0)
33380 /* Remove the invalid clause(s) from the list to avoid
33381 confusing the rest of the compiler. */
33382 clauses = prev;
33383 error_at (here, "%qs is not valid for %qs", c_name, where);
33387 saw_error:
33388 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
33390 if (finish_p)
33391 return finish_omp_clauses (clauses, C_ORT_ACC);
33393 return clauses;
33396 /* Parse all OpenMP clauses. The set clauses allowed by the directive
33397 is a bitmask in MASK. Return the list of clauses found; the result
33398 of clause default goes in *pdefault. */
33400 static tree
33401 cp_parser_omp_all_clauses (cp_parser *parser, omp_clause_mask mask,
33402 const char *where, cp_token *pragma_tok,
33403 bool finish_p = true)
33405 tree clauses = NULL;
33406 bool first = true;
33407 cp_token *token = NULL;
33409 while (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL))
33411 pragma_omp_clause c_kind;
33412 const char *c_name;
33413 tree prev = clauses;
33415 if (!first && cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
33416 cp_lexer_consume_token (parser->lexer);
33418 token = cp_lexer_peek_token (parser->lexer);
33419 c_kind = cp_parser_omp_clause_name (parser);
33421 switch (c_kind)
33423 case PRAGMA_OMP_CLAUSE_COLLAPSE:
33424 clauses = cp_parser_omp_clause_collapse (parser, clauses,
33425 token->location);
33426 c_name = "collapse";
33427 break;
33428 case PRAGMA_OMP_CLAUSE_COPYIN:
33429 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_COPYIN, clauses);
33430 c_name = "copyin";
33431 break;
33432 case PRAGMA_OMP_CLAUSE_COPYPRIVATE:
33433 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_COPYPRIVATE,
33434 clauses);
33435 c_name = "copyprivate";
33436 break;
33437 case PRAGMA_OMP_CLAUSE_DEFAULT:
33438 clauses = cp_parser_omp_clause_default (parser, clauses,
33439 token->location, false);
33440 c_name = "default";
33441 break;
33442 case PRAGMA_OMP_CLAUSE_FINAL:
33443 clauses = cp_parser_omp_clause_final (parser, clauses, token->location);
33444 c_name = "final";
33445 break;
33446 case PRAGMA_OMP_CLAUSE_FIRSTPRIVATE:
33447 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_FIRSTPRIVATE,
33448 clauses);
33449 c_name = "firstprivate";
33450 break;
33451 case PRAGMA_OMP_CLAUSE_GRAINSIZE:
33452 clauses = cp_parser_omp_clause_grainsize (parser, clauses,
33453 token->location);
33454 c_name = "grainsize";
33455 break;
33456 case PRAGMA_OMP_CLAUSE_HINT:
33457 clauses = cp_parser_omp_clause_hint (parser, clauses,
33458 token->location);
33459 c_name = "hint";
33460 break;
33461 case PRAGMA_OMP_CLAUSE_DEFAULTMAP:
33462 clauses = cp_parser_omp_clause_defaultmap (parser, clauses,
33463 token->location);
33464 c_name = "defaultmap";
33465 break;
33466 case PRAGMA_OMP_CLAUSE_USE_DEVICE_PTR:
33467 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_USE_DEVICE_PTR,
33468 clauses);
33469 c_name = "use_device_ptr";
33470 break;
33471 case PRAGMA_OMP_CLAUSE_IS_DEVICE_PTR:
33472 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_IS_DEVICE_PTR,
33473 clauses);
33474 c_name = "is_device_ptr";
33475 break;
33476 case PRAGMA_OMP_CLAUSE_IF:
33477 clauses = cp_parser_omp_clause_if (parser, clauses, token->location,
33478 true);
33479 c_name = "if";
33480 break;
33481 case PRAGMA_OMP_CLAUSE_LASTPRIVATE:
33482 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_LASTPRIVATE,
33483 clauses);
33484 c_name = "lastprivate";
33485 break;
33486 case PRAGMA_OMP_CLAUSE_MERGEABLE:
33487 clauses = cp_parser_omp_clause_mergeable (parser, clauses,
33488 token->location);
33489 c_name = "mergeable";
33490 break;
33491 case PRAGMA_OMP_CLAUSE_NOWAIT:
33492 clauses = cp_parser_omp_clause_nowait (parser, clauses, token->location);
33493 c_name = "nowait";
33494 break;
33495 case PRAGMA_OMP_CLAUSE_NUM_TASKS:
33496 clauses = cp_parser_omp_clause_num_tasks (parser, clauses,
33497 token->location);
33498 c_name = "num_tasks";
33499 break;
33500 case PRAGMA_OMP_CLAUSE_NUM_THREADS:
33501 clauses = cp_parser_omp_clause_num_threads (parser, clauses,
33502 token->location);
33503 c_name = "num_threads";
33504 break;
33505 case PRAGMA_OMP_CLAUSE_ORDERED:
33506 clauses = cp_parser_omp_clause_ordered (parser, clauses,
33507 token->location);
33508 c_name = "ordered";
33509 break;
33510 case PRAGMA_OMP_CLAUSE_PRIORITY:
33511 clauses = cp_parser_omp_clause_priority (parser, clauses,
33512 token->location);
33513 c_name = "priority";
33514 break;
33515 case PRAGMA_OMP_CLAUSE_PRIVATE:
33516 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_PRIVATE,
33517 clauses);
33518 c_name = "private";
33519 break;
33520 case PRAGMA_OMP_CLAUSE_REDUCTION:
33521 clauses = cp_parser_omp_clause_reduction (parser, clauses);
33522 c_name = "reduction";
33523 break;
33524 case PRAGMA_OMP_CLAUSE_SCHEDULE:
33525 clauses = cp_parser_omp_clause_schedule (parser, clauses,
33526 token->location);
33527 c_name = "schedule";
33528 break;
33529 case PRAGMA_OMP_CLAUSE_SHARED:
33530 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_SHARED,
33531 clauses);
33532 c_name = "shared";
33533 break;
33534 case PRAGMA_OMP_CLAUSE_UNTIED:
33535 clauses = cp_parser_omp_clause_untied (parser, clauses,
33536 token->location);
33537 c_name = "untied";
33538 break;
33539 case PRAGMA_OMP_CLAUSE_INBRANCH:
33540 case PRAGMA_CILK_CLAUSE_MASK:
33541 clauses = cp_parser_omp_clause_branch (parser, OMP_CLAUSE_INBRANCH,
33542 clauses, token->location);
33543 c_name = "inbranch";
33544 break;
33545 case PRAGMA_OMP_CLAUSE_NOTINBRANCH:
33546 case PRAGMA_CILK_CLAUSE_NOMASK:
33547 clauses = cp_parser_omp_clause_branch (parser,
33548 OMP_CLAUSE_NOTINBRANCH,
33549 clauses, token->location);
33550 c_name = "notinbranch";
33551 break;
33552 case PRAGMA_OMP_CLAUSE_PARALLEL:
33553 clauses = cp_parser_omp_clause_cancelkind (parser, OMP_CLAUSE_PARALLEL,
33554 clauses, token->location);
33555 c_name = "parallel";
33556 if (!first)
33558 clause_not_first:
33559 error_at (token->location, "%qs must be the first clause of %qs",
33560 c_name, where);
33561 clauses = prev;
33563 break;
33564 case PRAGMA_OMP_CLAUSE_FOR:
33565 clauses = cp_parser_omp_clause_cancelkind (parser, OMP_CLAUSE_FOR,
33566 clauses, token->location);
33567 c_name = "for";
33568 if (!first)
33569 goto clause_not_first;
33570 break;
33571 case PRAGMA_OMP_CLAUSE_SECTIONS:
33572 clauses = cp_parser_omp_clause_cancelkind (parser, OMP_CLAUSE_SECTIONS,
33573 clauses, token->location);
33574 c_name = "sections";
33575 if (!first)
33576 goto clause_not_first;
33577 break;
33578 case PRAGMA_OMP_CLAUSE_TASKGROUP:
33579 clauses = cp_parser_omp_clause_cancelkind (parser, OMP_CLAUSE_TASKGROUP,
33580 clauses, token->location);
33581 c_name = "taskgroup";
33582 if (!first)
33583 goto clause_not_first;
33584 break;
33585 case PRAGMA_OMP_CLAUSE_LINK:
33586 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_LINK, clauses);
33587 c_name = "to";
33588 break;
33589 case PRAGMA_OMP_CLAUSE_TO:
33590 if ((mask & (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LINK)) != 0)
33591 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_TO_DECLARE,
33592 clauses);
33593 else
33594 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_TO, clauses);
33595 c_name = "to";
33596 break;
33597 case PRAGMA_OMP_CLAUSE_FROM:
33598 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_FROM, clauses);
33599 c_name = "from";
33600 break;
33601 case PRAGMA_OMP_CLAUSE_UNIFORM:
33602 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_UNIFORM,
33603 clauses);
33604 c_name = "uniform";
33605 break;
33606 case PRAGMA_OMP_CLAUSE_NUM_TEAMS:
33607 clauses = cp_parser_omp_clause_num_teams (parser, clauses,
33608 token->location);
33609 c_name = "num_teams";
33610 break;
33611 case PRAGMA_OMP_CLAUSE_THREAD_LIMIT:
33612 clauses = cp_parser_omp_clause_thread_limit (parser, clauses,
33613 token->location);
33614 c_name = "thread_limit";
33615 break;
33616 case PRAGMA_OMP_CLAUSE_ALIGNED:
33617 clauses = cp_parser_omp_clause_aligned (parser, clauses);
33618 c_name = "aligned";
33619 break;
33620 case PRAGMA_OMP_CLAUSE_LINEAR:
33622 bool cilk_simd_fn = false, declare_simd = false;
33623 if (((mask >> PRAGMA_CILK_CLAUSE_VECTORLENGTH) & 1) != 0)
33624 cilk_simd_fn = true;
33625 else if (((mask >> PRAGMA_OMP_CLAUSE_UNIFORM) & 1) != 0)
33626 declare_simd = true;
33627 clauses = cp_parser_omp_clause_linear (parser, clauses,
33628 cilk_simd_fn, declare_simd);
33630 c_name = "linear";
33631 break;
33632 case PRAGMA_OMP_CLAUSE_DEPEND:
33633 clauses = cp_parser_omp_clause_depend (parser, clauses,
33634 token->location);
33635 c_name = "depend";
33636 break;
33637 case PRAGMA_OMP_CLAUSE_MAP:
33638 clauses = cp_parser_omp_clause_map (parser, clauses);
33639 c_name = "map";
33640 break;
33641 case PRAGMA_OMP_CLAUSE_DEVICE:
33642 clauses = cp_parser_omp_clause_device (parser, clauses,
33643 token->location);
33644 c_name = "device";
33645 break;
33646 case PRAGMA_OMP_CLAUSE_DIST_SCHEDULE:
33647 clauses = cp_parser_omp_clause_dist_schedule (parser, clauses,
33648 token->location);
33649 c_name = "dist_schedule";
33650 break;
33651 case PRAGMA_OMP_CLAUSE_PROC_BIND:
33652 clauses = cp_parser_omp_clause_proc_bind (parser, clauses,
33653 token->location);
33654 c_name = "proc_bind";
33655 break;
33656 case PRAGMA_OMP_CLAUSE_SAFELEN:
33657 clauses = cp_parser_omp_clause_safelen (parser, clauses,
33658 token->location);
33659 c_name = "safelen";
33660 break;
33661 case PRAGMA_OMP_CLAUSE_SIMDLEN:
33662 clauses = cp_parser_omp_clause_simdlen (parser, clauses,
33663 token->location);
33664 c_name = "simdlen";
33665 break;
33666 case PRAGMA_OMP_CLAUSE_NOGROUP:
33667 clauses = cp_parser_omp_clause_nogroup (parser, clauses,
33668 token->location);
33669 c_name = "nogroup";
33670 break;
33671 case PRAGMA_OMP_CLAUSE_THREADS:
33672 clauses
33673 = cp_parser_omp_clause_orderedkind (parser, OMP_CLAUSE_THREADS,
33674 clauses, token->location);
33675 c_name = "threads";
33676 break;
33677 case PRAGMA_OMP_CLAUSE_SIMD:
33678 clauses
33679 = cp_parser_omp_clause_orderedkind (parser, OMP_CLAUSE_SIMD,
33680 clauses, token->location);
33681 c_name = "simd";
33682 break;
33683 case PRAGMA_CILK_CLAUSE_VECTORLENGTH:
33684 clauses = cp_parser_cilk_simd_vectorlength (parser, clauses, true);
33685 c_name = "simdlen";
33686 break;
33687 default:
33688 cp_parser_error (parser, "expected %<#pragma omp%> clause");
33689 goto saw_error;
33692 first = false;
33694 if (((mask >> c_kind) & 1) == 0)
33696 /* Remove the invalid clause(s) from the list to avoid
33697 confusing the rest of the compiler. */
33698 clauses = prev;
33699 error_at (token->location, "%qs is not valid for %qs", c_name, where);
33702 saw_error:
33703 /* In Cilk Plus SIMD enabled functions there is no pragma_token, so
33704 no reason to skip to the end. */
33705 if (!(flag_cilkplus && pragma_tok == NULL))
33706 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
33707 if (finish_p)
33709 if ((mask & (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_UNIFORM)) != 0)
33710 return finish_omp_clauses (clauses, C_ORT_OMP_DECLARE_SIMD);
33711 else
33712 return finish_omp_clauses (clauses, C_ORT_OMP);
33714 return clauses;
33717 /* OpenMP 2.5:
33718 structured-block:
33719 statement
33721 In practice, we're also interested in adding the statement to an
33722 outer node. So it is convenient if we work around the fact that
33723 cp_parser_statement calls add_stmt. */
33725 static unsigned
33726 cp_parser_begin_omp_structured_block (cp_parser *parser)
33728 unsigned save = parser->in_statement;
33730 /* Only move the values to IN_OMP_BLOCK if they weren't false.
33731 This preserves the "not within loop or switch" style error messages
33732 for nonsense cases like
33733 void foo() {
33734 #pragma omp single
33735 break;
33738 if (parser->in_statement)
33739 parser->in_statement = IN_OMP_BLOCK;
33741 return save;
33744 static void
33745 cp_parser_end_omp_structured_block (cp_parser *parser, unsigned save)
33747 parser->in_statement = save;
33750 static tree
33751 cp_parser_omp_structured_block (cp_parser *parser, bool *if_p)
33753 tree stmt = begin_omp_structured_block ();
33754 unsigned int save = cp_parser_begin_omp_structured_block (parser);
33756 cp_parser_statement (parser, NULL_TREE, false, if_p);
33758 cp_parser_end_omp_structured_block (parser, save);
33759 return finish_omp_structured_block (stmt);
33762 /* OpenMP 2.5:
33763 # pragma omp atomic new-line
33764 expression-stmt
33766 expression-stmt:
33767 x binop= expr | x++ | ++x | x-- | --x
33768 binop:
33769 +, *, -, /, &, ^, |, <<, >>
33771 where x is an lvalue expression with scalar type.
33773 OpenMP 3.1:
33774 # pragma omp atomic new-line
33775 update-stmt
33777 # pragma omp atomic read new-line
33778 read-stmt
33780 # pragma omp atomic write new-line
33781 write-stmt
33783 # pragma omp atomic update new-line
33784 update-stmt
33786 # pragma omp atomic capture new-line
33787 capture-stmt
33789 # pragma omp atomic capture new-line
33790 capture-block
33792 read-stmt:
33793 v = x
33794 write-stmt:
33795 x = expr
33796 update-stmt:
33797 expression-stmt | x = x binop expr
33798 capture-stmt:
33799 v = expression-stmt
33800 capture-block:
33801 { v = x; update-stmt; } | { update-stmt; v = x; }
33803 OpenMP 4.0:
33804 update-stmt:
33805 expression-stmt | x = x binop expr | x = expr binop x
33806 capture-stmt:
33807 v = update-stmt
33808 capture-block:
33809 { v = x; update-stmt; } | { update-stmt; v = x; } | { v = x; x = expr; }
33811 where x and v are lvalue expressions with scalar type. */
33813 static void
33814 cp_parser_omp_atomic (cp_parser *parser, cp_token *pragma_tok)
33816 tree lhs = NULL_TREE, rhs = NULL_TREE, v = NULL_TREE, lhs1 = NULL_TREE;
33817 tree rhs1 = NULL_TREE, orig_lhs;
33818 enum tree_code code = OMP_ATOMIC, opcode = NOP_EXPR;
33819 bool structured_block = false;
33820 bool seq_cst = false;
33822 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
33824 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
33825 const char *p = IDENTIFIER_POINTER (id);
33827 if (!strcmp (p, "seq_cst"))
33829 seq_cst = true;
33830 cp_lexer_consume_token (parser->lexer);
33831 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA)
33832 && cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_NAME)
33833 cp_lexer_consume_token (parser->lexer);
33836 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
33838 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
33839 const char *p = IDENTIFIER_POINTER (id);
33841 if (!strcmp (p, "read"))
33842 code = OMP_ATOMIC_READ;
33843 else if (!strcmp (p, "write"))
33844 code = NOP_EXPR;
33845 else if (!strcmp (p, "update"))
33846 code = OMP_ATOMIC;
33847 else if (!strcmp (p, "capture"))
33848 code = OMP_ATOMIC_CAPTURE_NEW;
33849 else
33850 p = NULL;
33851 if (p)
33852 cp_lexer_consume_token (parser->lexer);
33854 if (!seq_cst)
33856 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA)
33857 && cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_NAME)
33858 cp_lexer_consume_token (parser->lexer);
33860 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
33862 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
33863 const char *p = IDENTIFIER_POINTER (id);
33865 if (!strcmp (p, "seq_cst"))
33867 seq_cst = true;
33868 cp_lexer_consume_token (parser->lexer);
33872 cp_parser_require_pragma_eol (parser, pragma_tok);
33874 switch (code)
33876 case OMP_ATOMIC_READ:
33877 case NOP_EXPR: /* atomic write */
33878 v = cp_parser_unary_expression (parser);
33879 if (v == error_mark_node)
33880 goto saw_error;
33881 if (!cp_parser_require (parser, CPP_EQ, RT_EQ))
33882 goto saw_error;
33883 if (code == NOP_EXPR)
33884 lhs = cp_parser_expression (parser);
33885 else
33886 lhs = cp_parser_unary_expression (parser);
33887 if (lhs == error_mark_node)
33888 goto saw_error;
33889 if (code == NOP_EXPR)
33891 /* atomic write is represented by OMP_ATOMIC with NOP_EXPR
33892 opcode. */
33893 code = OMP_ATOMIC;
33894 rhs = lhs;
33895 lhs = v;
33896 v = NULL_TREE;
33898 goto done;
33899 case OMP_ATOMIC_CAPTURE_NEW:
33900 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
33902 cp_lexer_consume_token (parser->lexer);
33903 structured_block = true;
33905 else
33907 v = cp_parser_unary_expression (parser);
33908 if (v == error_mark_node)
33909 goto saw_error;
33910 if (!cp_parser_require (parser, CPP_EQ, RT_EQ))
33911 goto saw_error;
33913 default:
33914 break;
33917 restart:
33918 lhs = cp_parser_unary_expression (parser);
33919 orig_lhs = lhs;
33920 switch (TREE_CODE (lhs))
33922 case ERROR_MARK:
33923 goto saw_error;
33925 case POSTINCREMENT_EXPR:
33926 if (code == OMP_ATOMIC_CAPTURE_NEW && !structured_block)
33927 code = OMP_ATOMIC_CAPTURE_OLD;
33928 /* FALLTHROUGH */
33929 case PREINCREMENT_EXPR:
33930 lhs = TREE_OPERAND (lhs, 0);
33931 opcode = PLUS_EXPR;
33932 rhs = integer_one_node;
33933 break;
33935 case POSTDECREMENT_EXPR:
33936 if (code == OMP_ATOMIC_CAPTURE_NEW && !structured_block)
33937 code = OMP_ATOMIC_CAPTURE_OLD;
33938 /* FALLTHROUGH */
33939 case PREDECREMENT_EXPR:
33940 lhs = TREE_OPERAND (lhs, 0);
33941 opcode = MINUS_EXPR;
33942 rhs = integer_one_node;
33943 break;
33945 case COMPOUND_EXPR:
33946 if (TREE_CODE (TREE_OPERAND (lhs, 0)) == SAVE_EXPR
33947 && TREE_CODE (TREE_OPERAND (lhs, 1)) == COMPOUND_EXPR
33948 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (lhs, 1), 0)) == MODIFY_EXPR
33949 && TREE_OPERAND (TREE_OPERAND (lhs, 1), 1) == TREE_OPERAND (lhs, 0)
33950 && TREE_CODE (TREE_TYPE (TREE_OPERAND (TREE_OPERAND
33951 (TREE_OPERAND (lhs, 1), 0), 0)))
33952 == BOOLEAN_TYPE)
33953 /* Undo effects of boolean_increment for post {in,de}crement. */
33954 lhs = TREE_OPERAND (TREE_OPERAND (lhs, 1), 0);
33955 /* FALLTHRU */
33956 case MODIFY_EXPR:
33957 if (TREE_CODE (lhs) == MODIFY_EXPR
33958 && TREE_CODE (TREE_TYPE (TREE_OPERAND (lhs, 0))) == BOOLEAN_TYPE)
33960 /* Undo effects of boolean_increment. */
33961 if (integer_onep (TREE_OPERAND (lhs, 1)))
33963 /* This is pre or post increment. */
33964 rhs = TREE_OPERAND (lhs, 1);
33965 lhs = TREE_OPERAND (lhs, 0);
33966 opcode = NOP_EXPR;
33967 if (code == OMP_ATOMIC_CAPTURE_NEW
33968 && !structured_block
33969 && TREE_CODE (orig_lhs) == COMPOUND_EXPR)
33970 code = OMP_ATOMIC_CAPTURE_OLD;
33971 break;
33974 /* FALLTHRU */
33975 default:
33976 switch (cp_lexer_peek_token (parser->lexer)->type)
33978 case CPP_MULT_EQ:
33979 opcode = MULT_EXPR;
33980 break;
33981 case CPP_DIV_EQ:
33982 opcode = TRUNC_DIV_EXPR;
33983 break;
33984 case CPP_PLUS_EQ:
33985 opcode = PLUS_EXPR;
33986 break;
33987 case CPP_MINUS_EQ:
33988 opcode = MINUS_EXPR;
33989 break;
33990 case CPP_LSHIFT_EQ:
33991 opcode = LSHIFT_EXPR;
33992 break;
33993 case CPP_RSHIFT_EQ:
33994 opcode = RSHIFT_EXPR;
33995 break;
33996 case CPP_AND_EQ:
33997 opcode = BIT_AND_EXPR;
33998 break;
33999 case CPP_OR_EQ:
34000 opcode = BIT_IOR_EXPR;
34001 break;
34002 case CPP_XOR_EQ:
34003 opcode = BIT_XOR_EXPR;
34004 break;
34005 case CPP_EQ:
34006 enum cp_parser_prec oprec;
34007 cp_token *token;
34008 cp_lexer_consume_token (parser->lexer);
34009 cp_parser_parse_tentatively (parser);
34010 rhs1 = cp_parser_simple_cast_expression (parser);
34011 if (rhs1 == error_mark_node)
34013 cp_parser_abort_tentative_parse (parser);
34014 cp_parser_simple_cast_expression (parser);
34015 goto saw_error;
34017 token = cp_lexer_peek_token (parser->lexer);
34018 if (token->type != CPP_SEMICOLON && !cp_tree_equal (lhs, rhs1))
34020 cp_parser_abort_tentative_parse (parser);
34021 cp_parser_parse_tentatively (parser);
34022 rhs = cp_parser_binary_expression (parser, false, true,
34023 PREC_NOT_OPERATOR, NULL);
34024 if (rhs == error_mark_node)
34026 cp_parser_abort_tentative_parse (parser);
34027 cp_parser_binary_expression (parser, false, true,
34028 PREC_NOT_OPERATOR, NULL);
34029 goto saw_error;
34031 switch (TREE_CODE (rhs))
34033 case MULT_EXPR:
34034 case TRUNC_DIV_EXPR:
34035 case RDIV_EXPR:
34036 case PLUS_EXPR:
34037 case MINUS_EXPR:
34038 case LSHIFT_EXPR:
34039 case RSHIFT_EXPR:
34040 case BIT_AND_EXPR:
34041 case BIT_IOR_EXPR:
34042 case BIT_XOR_EXPR:
34043 if (cp_tree_equal (lhs, TREE_OPERAND (rhs, 1)))
34045 if (cp_parser_parse_definitely (parser))
34047 opcode = TREE_CODE (rhs);
34048 rhs1 = TREE_OPERAND (rhs, 0);
34049 rhs = TREE_OPERAND (rhs, 1);
34050 goto stmt_done;
34052 else
34053 goto saw_error;
34055 break;
34056 default:
34057 break;
34059 cp_parser_abort_tentative_parse (parser);
34060 if (structured_block && code == OMP_ATOMIC_CAPTURE_OLD)
34062 rhs = cp_parser_expression (parser);
34063 if (rhs == error_mark_node)
34064 goto saw_error;
34065 opcode = NOP_EXPR;
34066 rhs1 = NULL_TREE;
34067 goto stmt_done;
34069 cp_parser_error (parser,
34070 "invalid form of %<#pragma omp atomic%>");
34071 goto saw_error;
34073 if (!cp_parser_parse_definitely (parser))
34074 goto saw_error;
34075 switch (token->type)
34077 case CPP_SEMICOLON:
34078 if (structured_block && code == OMP_ATOMIC_CAPTURE_NEW)
34080 code = OMP_ATOMIC_CAPTURE_OLD;
34081 v = lhs;
34082 lhs = NULL_TREE;
34083 lhs1 = rhs1;
34084 rhs1 = NULL_TREE;
34085 cp_lexer_consume_token (parser->lexer);
34086 goto restart;
34088 else if (structured_block)
34090 opcode = NOP_EXPR;
34091 rhs = rhs1;
34092 rhs1 = NULL_TREE;
34093 goto stmt_done;
34095 cp_parser_error (parser,
34096 "invalid form of %<#pragma omp atomic%>");
34097 goto saw_error;
34098 case CPP_MULT:
34099 opcode = MULT_EXPR;
34100 break;
34101 case CPP_DIV:
34102 opcode = TRUNC_DIV_EXPR;
34103 break;
34104 case CPP_PLUS:
34105 opcode = PLUS_EXPR;
34106 break;
34107 case CPP_MINUS:
34108 opcode = MINUS_EXPR;
34109 break;
34110 case CPP_LSHIFT:
34111 opcode = LSHIFT_EXPR;
34112 break;
34113 case CPP_RSHIFT:
34114 opcode = RSHIFT_EXPR;
34115 break;
34116 case CPP_AND:
34117 opcode = BIT_AND_EXPR;
34118 break;
34119 case CPP_OR:
34120 opcode = BIT_IOR_EXPR;
34121 break;
34122 case CPP_XOR:
34123 opcode = BIT_XOR_EXPR;
34124 break;
34125 default:
34126 cp_parser_error (parser,
34127 "invalid operator for %<#pragma omp atomic%>");
34128 goto saw_error;
34130 oprec = TOKEN_PRECEDENCE (token);
34131 gcc_assert (oprec != PREC_NOT_OPERATOR);
34132 if (commutative_tree_code (opcode))
34133 oprec = (enum cp_parser_prec) (oprec - 1);
34134 cp_lexer_consume_token (parser->lexer);
34135 rhs = cp_parser_binary_expression (parser, false, false,
34136 oprec, NULL);
34137 if (rhs == error_mark_node)
34138 goto saw_error;
34139 goto stmt_done;
34140 /* FALLTHROUGH */
34141 default:
34142 cp_parser_error (parser,
34143 "invalid operator for %<#pragma omp atomic%>");
34144 goto saw_error;
34146 cp_lexer_consume_token (parser->lexer);
34148 rhs = cp_parser_expression (parser);
34149 if (rhs == error_mark_node)
34150 goto saw_error;
34151 break;
34153 stmt_done:
34154 if (structured_block && code == OMP_ATOMIC_CAPTURE_NEW)
34156 if (!cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON))
34157 goto saw_error;
34158 v = cp_parser_unary_expression (parser);
34159 if (v == error_mark_node)
34160 goto saw_error;
34161 if (!cp_parser_require (parser, CPP_EQ, RT_EQ))
34162 goto saw_error;
34163 lhs1 = cp_parser_unary_expression (parser);
34164 if (lhs1 == error_mark_node)
34165 goto saw_error;
34167 if (structured_block)
34169 cp_parser_consume_semicolon_at_end_of_statement (parser);
34170 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
34172 done:
34173 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1, seq_cst);
34174 if (!structured_block)
34175 cp_parser_consume_semicolon_at_end_of_statement (parser);
34176 return;
34178 saw_error:
34179 cp_parser_skip_to_end_of_block_or_statement (parser);
34180 if (structured_block)
34182 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
34183 cp_lexer_consume_token (parser->lexer);
34184 else if (code == OMP_ATOMIC_CAPTURE_NEW)
34186 cp_parser_skip_to_end_of_block_or_statement (parser);
34187 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
34188 cp_lexer_consume_token (parser->lexer);
34194 /* OpenMP 2.5:
34195 # pragma omp barrier new-line */
34197 static void
34198 cp_parser_omp_barrier (cp_parser *parser, cp_token *pragma_tok)
34200 cp_parser_require_pragma_eol (parser, pragma_tok);
34201 finish_omp_barrier ();
34204 /* OpenMP 2.5:
34205 # pragma omp critical [(name)] new-line
34206 structured-block
34208 OpenMP 4.5:
34209 # pragma omp critical [(name) [hint(expression)]] new-line
34210 structured-block */
34212 #define OMP_CRITICAL_CLAUSE_MASK \
34213 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_HINT) )
34215 static tree
34216 cp_parser_omp_critical (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
34218 tree stmt, name = NULL_TREE, clauses = NULL_TREE;
34220 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
34222 cp_lexer_consume_token (parser->lexer);
34224 name = cp_parser_identifier (parser);
34226 if (name == error_mark_node
34227 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
34228 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
34229 /*or_comma=*/false,
34230 /*consume_paren=*/true);
34231 if (name == error_mark_node)
34232 name = NULL;
34234 clauses = cp_parser_omp_all_clauses (parser,
34235 OMP_CRITICAL_CLAUSE_MASK,
34236 "#pragma omp critical", pragma_tok);
34238 else
34239 cp_parser_require_pragma_eol (parser, pragma_tok);
34241 stmt = cp_parser_omp_structured_block (parser, if_p);
34242 return c_finish_omp_critical (input_location, stmt, name, clauses);
34245 /* OpenMP 2.5:
34246 # pragma omp flush flush-vars[opt] new-line
34248 flush-vars:
34249 ( variable-list ) */
34251 static void
34252 cp_parser_omp_flush (cp_parser *parser, cp_token *pragma_tok)
34254 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
34255 (void) cp_parser_omp_var_list (parser, OMP_CLAUSE_ERROR, NULL);
34256 cp_parser_require_pragma_eol (parser, pragma_tok);
34258 finish_omp_flush ();
34261 /* Helper function, to parse omp for increment expression. */
34263 static tree
34264 cp_parser_omp_for_cond (cp_parser *parser, tree decl, enum tree_code code)
34266 tree cond = cp_parser_binary_expression (parser, false, true,
34267 PREC_NOT_OPERATOR, NULL);
34268 if (cond == error_mark_node
34269 || cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
34271 cp_parser_skip_to_end_of_statement (parser);
34272 return error_mark_node;
34275 switch (TREE_CODE (cond))
34277 case GT_EXPR:
34278 case GE_EXPR:
34279 case LT_EXPR:
34280 case LE_EXPR:
34281 break;
34282 case NE_EXPR:
34283 if (code == CILK_SIMD || code == CILK_FOR)
34284 break;
34285 /* Fall through: OpenMP disallows NE_EXPR. */
34286 gcc_fallthrough ();
34287 default:
34288 return error_mark_node;
34291 /* If decl is an iterator, preserve LHS and RHS of the relational
34292 expr until finish_omp_for. */
34293 if (decl
34294 && (type_dependent_expression_p (decl)
34295 || CLASS_TYPE_P (TREE_TYPE (decl))))
34296 return cond;
34298 return build_x_binary_op (EXPR_LOC_OR_LOC (cond, input_location),
34299 TREE_CODE (cond),
34300 TREE_OPERAND (cond, 0), ERROR_MARK,
34301 TREE_OPERAND (cond, 1), ERROR_MARK,
34302 /*overload=*/NULL, tf_warning_or_error);
34305 /* Helper function, to parse omp for increment expression. */
34307 static tree
34308 cp_parser_omp_for_incr (cp_parser *parser, tree decl)
34310 cp_token *token = cp_lexer_peek_token (parser->lexer);
34311 enum tree_code op;
34312 tree lhs, rhs;
34313 cp_id_kind idk;
34314 bool decl_first;
34316 if (token->type == CPP_PLUS_PLUS || token->type == CPP_MINUS_MINUS)
34318 op = (token->type == CPP_PLUS_PLUS
34319 ? PREINCREMENT_EXPR : PREDECREMENT_EXPR);
34320 cp_lexer_consume_token (parser->lexer);
34321 lhs = cp_parser_simple_cast_expression (parser);
34322 if (lhs != decl
34323 && (!processing_template_decl || !cp_tree_equal (lhs, decl)))
34324 return error_mark_node;
34325 return build2 (op, TREE_TYPE (decl), decl, NULL_TREE);
34328 lhs = cp_parser_primary_expression (parser, false, false, false, &idk);
34329 if (lhs != decl
34330 && (!processing_template_decl || !cp_tree_equal (lhs, decl)))
34331 return error_mark_node;
34333 token = cp_lexer_peek_token (parser->lexer);
34334 if (token->type == CPP_PLUS_PLUS || token->type == CPP_MINUS_MINUS)
34336 op = (token->type == CPP_PLUS_PLUS
34337 ? POSTINCREMENT_EXPR : POSTDECREMENT_EXPR);
34338 cp_lexer_consume_token (parser->lexer);
34339 return build2 (op, TREE_TYPE (decl), decl, NULL_TREE);
34342 op = cp_parser_assignment_operator_opt (parser);
34343 if (op == ERROR_MARK)
34344 return error_mark_node;
34346 if (op != NOP_EXPR)
34348 rhs = cp_parser_assignment_expression (parser);
34349 rhs = build2 (op, TREE_TYPE (decl), decl, rhs);
34350 return build2 (MODIFY_EXPR, TREE_TYPE (decl), decl, rhs);
34353 lhs = cp_parser_binary_expression (parser, false, false,
34354 PREC_ADDITIVE_EXPRESSION, NULL);
34355 token = cp_lexer_peek_token (parser->lexer);
34356 decl_first = (lhs == decl
34357 || (processing_template_decl && cp_tree_equal (lhs, decl)));
34358 if (decl_first)
34359 lhs = NULL_TREE;
34360 if (token->type != CPP_PLUS
34361 && token->type != CPP_MINUS)
34362 return error_mark_node;
34366 op = token->type == CPP_PLUS ? PLUS_EXPR : MINUS_EXPR;
34367 cp_lexer_consume_token (parser->lexer);
34368 rhs = cp_parser_binary_expression (parser, false, false,
34369 PREC_ADDITIVE_EXPRESSION, NULL);
34370 token = cp_lexer_peek_token (parser->lexer);
34371 if (token->type == CPP_PLUS || token->type == CPP_MINUS || decl_first)
34373 if (lhs == NULL_TREE)
34375 if (op == PLUS_EXPR)
34376 lhs = rhs;
34377 else
34378 lhs = build_x_unary_op (input_location, NEGATE_EXPR, rhs,
34379 tf_warning_or_error);
34381 else
34382 lhs = build_x_binary_op (input_location, op, lhs, ERROR_MARK, rhs,
34383 ERROR_MARK, NULL, tf_warning_or_error);
34386 while (token->type == CPP_PLUS || token->type == CPP_MINUS);
34388 if (!decl_first)
34390 if ((rhs != decl
34391 && (!processing_template_decl || !cp_tree_equal (rhs, decl)))
34392 || op == MINUS_EXPR)
34393 return error_mark_node;
34394 rhs = build2 (op, TREE_TYPE (decl), lhs, decl);
34396 else
34397 rhs = build2 (PLUS_EXPR, TREE_TYPE (decl), decl, lhs);
34399 return build2 (MODIFY_EXPR, TREE_TYPE (decl), decl, rhs);
34402 /* Parse the initialization statement of either an OpenMP for loop or
34403 a Cilk Plus for loop.
34405 Return true if the resulting construct should have an
34406 OMP_CLAUSE_PRIVATE added to it. */
34408 static tree
34409 cp_parser_omp_for_loop_init (cp_parser *parser,
34410 enum tree_code code,
34411 tree &this_pre_body,
34412 vec<tree, va_gc> *for_block,
34413 tree &init,
34414 tree &orig_init,
34415 tree &decl,
34416 tree &real_decl)
34418 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
34419 return NULL_TREE;
34421 tree add_private_clause = NULL_TREE;
34423 /* See 2.5.1 (in OpenMP 3.0, similar wording is in 2.5 standard too):
34425 init-expr:
34426 var = lb
34427 integer-type var = lb
34428 random-access-iterator-type var = lb
34429 pointer-type var = lb
34431 cp_decl_specifier_seq type_specifiers;
34433 /* First, try to parse as an initialized declaration. See
34434 cp_parser_condition, from whence the bulk of this is copied. */
34436 cp_parser_parse_tentatively (parser);
34437 cp_parser_type_specifier_seq (parser, /*is_declaration=*/true,
34438 /*is_trailing_return=*/false,
34439 &type_specifiers);
34440 if (cp_parser_parse_definitely (parser))
34442 /* If parsing a type specifier seq succeeded, then this
34443 MUST be a initialized declaration. */
34444 tree asm_specification, attributes;
34445 cp_declarator *declarator;
34447 declarator = cp_parser_declarator (parser,
34448 CP_PARSER_DECLARATOR_NAMED,
34449 /*ctor_dtor_or_conv_p=*/NULL,
34450 /*parenthesized_p=*/NULL,
34451 /*member_p=*/false,
34452 /*friend_p=*/false);
34453 attributes = cp_parser_attributes_opt (parser);
34454 asm_specification = cp_parser_asm_specification_opt (parser);
34456 if (declarator == cp_error_declarator)
34457 cp_parser_skip_to_end_of_statement (parser);
34459 else
34461 tree pushed_scope, auto_node;
34463 decl = start_decl (declarator, &type_specifiers,
34464 SD_INITIALIZED, attributes,
34465 /*prefix_attributes=*/NULL_TREE,
34466 &pushed_scope);
34468 auto_node = type_uses_auto (TREE_TYPE (decl));
34469 if (cp_lexer_next_token_is_not (parser->lexer, CPP_EQ))
34471 if (cp_lexer_next_token_is (parser->lexer,
34472 CPP_OPEN_PAREN))
34474 if (code != CILK_SIMD && code != CILK_FOR)
34475 error ("parenthesized initialization is not allowed in "
34476 "OpenMP %<for%> loop");
34477 else
34478 error ("parenthesized initialization is "
34479 "not allowed in for-loop");
34481 else
34482 /* Trigger an error. */
34483 cp_parser_require (parser, CPP_EQ, RT_EQ);
34485 init = error_mark_node;
34486 cp_parser_skip_to_end_of_statement (parser);
34488 else if (CLASS_TYPE_P (TREE_TYPE (decl))
34489 || type_dependent_expression_p (decl)
34490 || auto_node)
34492 bool is_direct_init, is_non_constant_init;
34494 init = cp_parser_initializer (parser,
34495 &is_direct_init,
34496 &is_non_constant_init);
34498 if (auto_node)
34500 TREE_TYPE (decl)
34501 = do_auto_deduction (TREE_TYPE (decl), init,
34502 auto_node);
34504 if (!CLASS_TYPE_P (TREE_TYPE (decl))
34505 && !type_dependent_expression_p (decl))
34506 goto non_class;
34509 cp_finish_decl (decl, init, !is_non_constant_init,
34510 asm_specification,
34511 LOOKUP_ONLYCONVERTING);
34512 orig_init = init;
34513 if (CLASS_TYPE_P (TREE_TYPE (decl)))
34515 vec_safe_push (for_block, this_pre_body);
34516 init = NULL_TREE;
34518 else
34520 init = pop_stmt_list (this_pre_body);
34521 if (init && TREE_CODE (init) == STATEMENT_LIST)
34523 tree_stmt_iterator i = tsi_start (init);
34524 /* Move lambda DECL_EXPRs to FOR_BLOCK. */
34525 while (!tsi_end_p (i))
34527 tree t = tsi_stmt (i);
34528 if (TREE_CODE (t) == DECL_EXPR
34529 && TREE_CODE (DECL_EXPR_DECL (t)) == TYPE_DECL)
34531 tsi_delink (&i);
34532 vec_safe_push (for_block, t);
34533 continue;
34535 break;
34537 if (tsi_one_before_end_p (i))
34539 tree t = tsi_stmt (i);
34540 tsi_delink (&i);
34541 free_stmt_list (init);
34542 init = t;
34546 this_pre_body = NULL_TREE;
34548 else
34550 /* Consume '='. */
34551 cp_lexer_consume_token (parser->lexer);
34552 init = cp_parser_assignment_expression (parser);
34554 non_class:
34555 if (TREE_CODE (TREE_TYPE (decl)) == REFERENCE_TYPE)
34556 init = error_mark_node;
34557 else
34558 cp_finish_decl (decl, NULL_TREE,
34559 /*init_const_expr_p=*/false,
34560 asm_specification,
34561 LOOKUP_ONLYCONVERTING);
34564 if (pushed_scope)
34565 pop_scope (pushed_scope);
34568 else
34570 cp_id_kind idk;
34571 /* If parsing a type specifier sequence failed, then
34572 this MUST be a simple expression. */
34573 if (code == CILK_FOR)
34574 error ("%<_Cilk_for%> allows expression instead of declaration only "
34575 "in C, not in C++");
34576 cp_parser_parse_tentatively (parser);
34577 decl = cp_parser_primary_expression (parser, false, false,
34578 false, &idk);
34579 cp_token *last_tok = cp_lexer_peek_token (parser->lexer);
34580 if (!cp_parser_error_occurred (parser)
34581 && decl
34582 && (TREE_CODE (decl) == COMPONENT_REF
34583 || (TREE_CODE (decl) == SCOPE_REF && TREE_TYPE (decl))))
34585 cp_parser_abort_tentative_parse (parser);
34586 cp_parser_parse_tentatively (parser);
34587 cp_token *token = cp_lexer_peek_token (parser->lexer);
34588 tree name = cp_parser_id_expression (parser, /*template_p=*/false,
34589 /*check_dependency_p=*/true,
34590 /*template_p=*/NULL,
34591 /*declarator_p=*/false,
34592 /*optional_p=*/false);
34593 if (name != error_mark_node
34594 && last_tok == cp_lexer_peek_token (parser->lexer))
34596 decl = cp_parser_lookup_name_simple (parser, name,
34597 token->location);
34598 if (TREE_CODE (decl) == FIELD_DECL)
34599 add_private_clause = omp_privatize_field (decl, false);
34601 cp_parser_abort_tentative_parse (parser);
34602 cp_parser_parse_tentatively (parser);
34603 decl = cp_parser_primary_expression (parser, false, false,
34604 false, &idk);
34606 if (!cp_parser_error_occurred (parser)
34607 && decl
34608 && DECL_P (decl)
34609 && CLASS_TYPE_P (TREE_TYPE (decl)))
34611 tree rhs;
34613 cp_parser_parse_definitely (parser);
34614 cp_parser_require (parser, CPP_EQ, RT_EQ);
34615 rhs = cp_parser_assignment_expression (parser);
34616 orig_init = rhs;
34617 finish_expr_stmt (build_x_modify_expr (EXPR_LOCATION (rhs),
34618 decl, NOP_EXPR,
34619 rhs,
34620 tf_warning_or_error));
34621 if (!add_private_clause)
34622 add_private_clause = decl;
34624 else
34626 decl = NULL;
34627 cp_parser_abort_tentative_parse (parser);
34628 init = cp_parser_expression (parser);
34629 if (init)
34631 if (TREE_CODE (init) == MODIFY_EXPR
34632 || TREE_CODE (init) == MODOP_EXPR)
34633 real_decl = TREE_OPERAND (init, 0);
34637 return add_private_clause;
34640 /* Parse the restricted form of the for statement allowed by OpenMP. */
34642 static tree
34643 cp_parser_omp_for_loop (cp_parser *parser, enum tree_code code, tree clauses,
34644 tree *cclauses, bool *if_p)
34646 tree init, orig_init, cond, incr, body, decl, pre_body = NULL_TREE, ret;
34647 tree real_decl, initv, condv, incrv, declv;
34648 tree this_pre_body, cl, ordered_cl = NULL_TREE;
34649 location_t loc_first;
34650 bool collapse_err = false;
34651 int i, collapse = 1, ordered = 0, count, nbraces = 0;
34652 vec<tree, va_gc> *for_block = make_tree_vector ();
34653 auto_vec<tree, 4> orig_inits;
34654 bool tiling = false;
34656 for (cl = clauses; cl; cl = OMP_CLAUSE_CHAIN (cl))
34657 if (OMP_CLAUSE_CODE (cl) == OMP_CLAUSE_COLLAPSE)
34658 collapse = tree_to_shwi (OMP_CLAUSE_COLLAPSE_EXPR (cl));
34659 else if (OMP_CLAUSE_CODE (cl) == OMP_CLAUSE_TILE)
34661 tiling = true;
34662 collapse = list_length (OMP_CLAUSE_TILE_LIST (cl));
34664 else if (OMP_CLAUSE_CODE (cl) == OMP_CLAUSE_ORDERED
34665 && OMP_CLAUSE_ORDERED_EXPR (cl))
34667 ordered_cl = cl;
34668 ordered = tree_to_shwi (OMP_CLAUSE_ORDERED_EXPR (cl));
34671 if (ordered && ordered < collapse)
34673 error_at (OMP_CLAUSE_LOCATION (ordered_cl),
34674 "%<ordered%> clause parameter is less than %<collapse%>");
34675 OMP_CLAUSE_ORDERED_EXPR (ordered_cl)
34676 = build_int_cst (NULL_TREE, collapse);
34677 ordered = collapse;
34679 if (ordered)
34681 for (tree *pc = &clauses; *pc; )
34682 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_LINEAR)
34684 error_at (OMP_CLAUSE_LOCATION (*pc),
34685 "%<linear%> clause may not be specified together "
34686 "with %<ordered%> clause with a parameter");
34687 *pc = OMP_CLAUSE_CHAIN (*pc);
34689 else
34690 pc = &OMP_CLAUSE_CHAIN (*pc);
34693 gcc_assert (tiling || (collapse >= 1 && ordered >= 0));
34694 count = ordered ? ordered : collapse;
34696 declv = make_tree_vec (count);
34697 initv = make_tree_vec (count);
34698 condv = make_tree_vec (count);
34699 incrv = make_tree_vec (count);
34701 loc_first = cp_lexer_peek_token (parser->lexer)->location;
34703 for (i = 0; i < count; i++)
34705 int bracecount = 0;
34706 tree add_private_clause = NULL_TREE;
34707 location_t loc;
34709 if (code != CILK_FOR
34710 && !cp_lexer_next_token_is_keyword (parser->lexer, RID_FOR))
34712 if (!collapse_err)
34713 cp_parser_error (parser, "for statement expected");
34714 return NULL;
34716 if (code == CILK_FOR
34717 && !cp_lexer_next_token_is_keyword (parser->lexer, RID_CILK_FOR))
34719 if (!collapse_err)
34720 cp_parser_error (parser, "_Cilk_for statement expected");
34721 return NULL;
34723 loc = cp_lexer_consume_token (parser->lexer)->location;
34725 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
34726 return NULL;
34728 init = orig_init = decl = real_decl = NULL;
34729 this_pre_body = push_stmt_list ();
34731 add_private_clause
34732 = cp_parser_omp_for_loop_init (parser, code,
34733 this_pre_body, for_block,
34734 init, orig_init, decl, real_decl);
34736 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
34737 if (this_pre_body)
34739 this_pre_body = pop_stmt_list (this_pre_body);
34740 if (pre_body)
34742 tree t = pre_body;
34743 pre_body = push_stmt_list ();
34744 add_stmt (t);
34745 add_stmt (this_pre_body);
34746 pre_body = pop_stmt_list (pre_body);
34748 else
34749 pre_body = this_pre_body;
34752 if (decl)
34753 real_decl = decl;
34754 if (cclauses != NULL
34755 && cclauses[C_OMP_CLAUSE_SPLIT_PARALLEL] != NULL
34756 && real_decl != NULL_TREE)
34758 tree *c;
34759 for (c = &cclauses[C_OMP_CLAUSE_SPLIT_PARALLEL]; *c ; )
34760 if (OMP_CLAUSE_CODE (*c) == OMP_CLAUSE_FIRSTPRIVATE
34761 && OMP_CLAUSE_DECL (*c) == real_decl)
34763 error_at (loc, "iteration variable %qD"
34764 " should not be firstprivate", real_decl);
34765 *c = OMP_CLAUSE_CHAIN (*c);
34767 else if (OMP_CLAUSE_CODE (*c) == OMP_CLAUSE_LASTPRIVATE
34768 && OMP_CLAUSE_DECL (*c) == real_decl)
34770 /* Move lastprivate (decl) clause to OMP_FOR_CLAUSES. */
34771 tree l = *c;
34772 *c = OMP_CLAUSE_CHAIN (*c);
34773 if (code == OMP_SIMD)
34775 OMP_CLAUSE_CHAIN (l) = cclauses[C_OMP_CLAUSE_SPLIT_FOR];
34776 cclauses[C_OMP_CLAUSE_SPLIT_FOR] = l;
34778 else
34780 OMP_CLAUSE_CHAIN (l) = clauses;
34781 clauses = l;
34783 add_private_clause = NULL_TREE;
34785 else
34787 if (OMP_CLAUSE_CODE (*c) == OMP_CLAUSE_PRIVATE
34788 && OMP_CLAUSE_DECL (*c) == real_decl)
34789 add_private_clause = NULL_TREE;
34790 c = &OMP_CLAUSE_CHAIN (*c);
34794 if (add_private_clause)
34796 tree c;
34797 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
34799 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_PRIVATE
34800 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE)
34801 && OMP_CLAUSE_DECL (c) == decl)
34802 break;
34803 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
34804 && OMP_CLAUSE_DECL (c) == decl)
34805 error_at (loc, "iteration variable %qD "
34806 "should not be firstprivate",
34807 decl);
34808 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
34809 && OMP_CLAUSE_DECL (c) == decl)
34810 error_at (loc, "iteration variable %qD should not be reduction",
34811 decl);
34813 if (c == NULL)
34815 if (code != OMP_SIMD)
34816 c = build_omp_clause (loc, OMP_CLAUSE_PRIVATE);
34817 else if (collapse == 1)
34818 c = build_omp_clause (loc, OMP_CLAUSE_LINEAR);
34819 else
34820 c = build_omp_clause (loc, OMP_CLAUSE_LASTPRIVATE);
34821 OMP_CLAUSE_DECL (c) = add_private_clause;
34822 c = finish_omp_clauses (c, C_ORT_OMP);
34823 if (c)
34825 OMP_CLAUSE_CHAIN (c) = clauses;
34826 clauses = c;
34827 /* For linear, signal that we need to fill up
34828 the so far unknown linear step. */
34829 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LINEAR)
34830 OMP_CLAUSE_LINEAR_STEP (c) = NULL_TREE;
34835 cond = NULL;
34836 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
34837 cond = cp_parser_omp_for_cond (parser, decl, code);
34838 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
34840 incr = NULL;
34841 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN))
34843 /* If decl is an iterator, preserve the operator on decl
34844 until finish_omp_for. */
34845 if (real_decl
34846 && ((processing_template_decl
34847 && (TREE_TYPE (real_decl) == NULL_TREE
34848 || !POINTER_TYPE_P (TREE_TYPE (real_decl))))
34849 || CLASS_TYPE_P (TREE_TYPE (real_decl))))
34850 incr = cp_parser_omp_for_incr (parser, real_decl);
34851 else
34852 incr = cp_parser_expression (parser);
34853 if (!EXPR_HAS_LOCATION (incr))
34854 protected_set_expr_location (incr, input_location);
34857 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
34858 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
34859 /*or_comma=*/false,
34860 /*consume_paren=*/true);
34862 TREE_VEC_ELT (declv, i) = decl;
34863 TREE_VEC_ELT (initv, i) = init;
34864 TREE_VEC_ELT (condv, i) = cond;
34865 TREE_VEC_ELT (incrv, i) = incr;
34866 if (orig_init)
34868 orig_inits.safe_grow_cleared (i + 1);
34869 orig_inits[i] = orig_init;
34872 if (i == count - 1)
34873 break;
34875 /* FIXME: OpenMP 3.0 draft isn't very clear on what exactly is allowed
34876 in between the collapsed for loops to be still considered perfectly
34877 nested. Hopefully the final version clarifies this.
34878 For now handle (multiple) {'s and empty statements. */
34879 cp_parser_parse_tentatively (parser);
34880 for (;;)
34882 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_FOR))
34883 break;
34884 else if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
34886 cp_lexer_consume_token (parser->lexer);
34887 bracecount++;
34889 else if (bracecount
34890 && cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
34891 cp_lexer_consume_token (parser->lexer);
34892 else
34894 loc = cp_lexer_peek_token (parser->lexer)->location;
34895 error_at (loc, "not enough for loops to collapse");
34896 collapse_err = true;
34897 cp_parser_abort_tentative_parse (parser);
34898 declv = NULL_TREE;
34899 break;
34903 if (declv)
34905 cp_parser_parse_definitely (parser);
34906 nbraces += bracecount;
34910 if (nbraces)
34911 if_p = NULL;
34913 /* Note that we saved the original contents of this flag when we entered
34914 the structured block, and so we don't need to re-save it here. */
34915 if (code == CILK_SIMD || code == CILK_FOR)
34916 parser->in_statement = IN_CILK_SIMD_FOR;
34917 else
34918 parser->in_statement = IN_OMP_FOR;
34920 /* Note that the grammar doesn't call for a structured block here,
34921 though the loop as a whole is a structured block. */
34922 body = push_stmt_list ();
34923 cp_parser_statement (parser, NULL_TREE, false, if_p);
34924 body = pop_stmt_list (body);
34926 if (declv == NULL_TREE)
34927 ret = NULL_TREE;
34928 else
34929 ret = finish_omp_for (loc_first, code, declv, NULL, initv, condv, incrv,
34930 body, pre_body, &orig_inits, clauses);
34932 while (nbraces)
34934 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
34936 cp_lexer_consume_token (parser->lexer);
34937 nbraces--;
34939 else if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
34940 cp_lexer_consume_token (parser->lexer);
34941 else
34943 if (!collapse_err)
34945 error_at (cp_lexer_peek_token (parser->lexer)->location,
34946 "collapsed loops not perfectly nested");
34948 collapse_err = true;
34949 cp_parser_statement_seq_opt (parser, NULL);
34950 if (cp_lexer_next_token_is (parser->lexer, CPP_EOF))
34951 break;
34955 while (!for_block->is_empty ())
34957 tree t = for_block->pop ();
34958 if (TREE_CODE (t) == STATEMENT_LIST)
34959 add_stmt (pop_stmt_list (t));
34960 else
34961 add_stmt (t);
34963 release_tree_vector (for_block);
34965 return ret;
34968 /* Helper function for OpenMP parsing, split clauses and call
34969 finish_omp_clauses on each of the set of clauses afterwards. */
34971 static void
34972 cp_omp_split_clauses (location_t loc, enum tree_code code,
34973 omp_clause_mask mask, tree clauses, tree *cclauses)
34975 int i;
34976 c_omp_split_clauses (loc, code, mask, clauses, cclauses);
34977 for (i = 0; i < C_OMP_CLAUSE_SPLIT_COUNT; i++)
34978 if (cclauses[i])
34979 cclauses[i] = finish_omp_clauses (cclauses[i], C_ORT_OMP);
34982 /* OpenMP 4.0:
34983 #pragma omp simd simd-clause[optseq] new-line
34984 for-loop */
34986 #define OMP_SIMD_CLAUSE_MASK \
34987 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SAFELEN) \
34988 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SIMDLEN) \
34989 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LINEAR) \
34990 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_ALIGNED) \
34991 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
34992 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
34993 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_REDUCTION) \
34994 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COLLAPSE))
34996 static tree
34997 cp_parser_omp_simd (cp_parser *parser, cp_token *pragma_tok,
34998 char *p_name, omp_clause_mask mask, tree *cclauses,
34999 bool *if_p)
35001 tree clauses, sb, ret;
35002 unsigned int save;
35003 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
35005 strcat (p_name, " simd");
35006 mask |= OMP_SIMD_CLAUSE_MASK;
35008 clauses = cp_parser_omp_all_clauses (parser, mask, p_name, pragma_tok,
35009 cclauses == NULL);
35010 if (cclauses)
35012 cp_omp_split_clauses (loc, OMP_SIMD, mask, clauses, cclauses);
35013 clauses = cclauses[C_OMP_CLAUSE_SPLIT_SIMD];
35014 tree c = omp_find_clause (cclauses[C_OMP_CLAUSE_SPLIT_FOR],
35015 OMP_CLAUSE_ORDERED);
35016 if (c && OMP_CLAUSE_ORDERED_EXPR (c))
35018 error_at (OMP_CLAUSE_LOCATION (c),
35019 "%<ordered%> clause with parameter may not be specified "
35020 "on %qs construct", p_name);
35021 OMP_CLAUSE_ORDERED_EXPR (c) = NULL_TREE;
35025 sb = begin_omp_structured_block ();
35026 save = cp_parser_begin_omp_structured_block (parser);
35028 ret = cp_parser_omp_for_loop (parser, OMP_SIMD, clauses, cclauses, if_p);
35030 cp_parser_end_omp_structured_block (parser, save);
35031 add_stmt (finish_omp_structured_block (sb));
35033 return ret;
35036 /* OpenMP 2.5:
35037 #pragma omp for for-clause[optseq] new-line
35038 for-loop
35040 OpenMP 4.0:
35041 #pragma omp for simd for-simd-clause[optseq] new-line
35042 for-loop */
35044 #define OMP_FOR_CLAUSE_MASK \
35045 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
35046 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
35047 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
35048 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LINEAR) \
35049 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_REDUCTION) \
35050 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_ORDERED) \
35051 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SCHEDULE) \
35052 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT) \
35053 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COLLAPSE))
35055 static tree
35056 cp_parser_omp_for (cp_parser *parser, cp_token *pragma_tok,
35057 char *p_name, omp_clause_mask mask, tree *cclauses,
35058 bool *if_p)
35060 tree clauses, sb, ret;
35061 unsigned int save;
35062 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
35064 strcat (p_name, " for");
35065 mask |= OMP_FOR_CLAUSE_MASK;
35066 /* parallel for{, simd} disallows nowait clause, but for
35067 target {teams distribute ,}parallel for{, simd} it should be accepted. */
35068 if (cclauses && (mask & (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MAP)) == 0)
35069 mask &= ~(OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT);
35070 /* Composite distribute parallel for{, simd} disallows ordered clause. */
35071 if ((mask & (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DIST_SCHEDULE)) != 0)
35072 mask &= ~(OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_ORDERED);
35074 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
35076 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
35077 const char *p = IDENTIFIER_POINTER (id);
35079 if (strcmp (p, "simd") == 0)
35081 tree cclauses_buf[C_OMP_CLAUSE_SPLIT_COUNT];
35082 if (cclauses == NULL)
35083 cclauses = cclauses_buf;
35085 cp_lexer_consume_token (parser->lexer);
35086 if (!flag_openmp) /* flag_openmp_simd */
35087 return cp_parser_omp_simd (parser, pragma_tok, p_name, mask,
35088 cclauses, if_p);
35089 sb = begin_omp_structured_block ();
35090 save = cp_parser_begin_omp_structured_block (parser);
35091 ret = cp_parser_omp_simd (parser, pragma_tok, p_name, mask,
35092 cclauses, if_p);
35093 cp_parser_end_omp_structured_block (parser, save);
35094 tree body = finish_omp_structured_block (sb);
35095 if (ret == NULL)
35096 return ret;
35097 ret = make_node (OMP_FOR);
35098 TREE_TYPE (ret) = void_type_node;
35099 OMP_FOR_BODY (ret) = body;
35100 OMP_FOR_CLAUSES (ret) = cclauses[C_OMP_CLAUSE_SPLIT_FOR];
35101 SET_EXPR_LOCATION (ret, loc);
35102 add_stmt (ret);
35103 return ret;
35106 if (!flag_openmp) /* flag_openmp_simd */
35108 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
35109 return NULL_TREE;
35112 /* Composite distribute parallel for disallows linear clause. */
35113 if ((mask & (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DIST_SCHEDULE)) != 0)
35114 mask &= ~(OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LINEAR);
35116 clauses = cp_parser_omp_all_clauses (parser, mask, p_name, pragma_tok,
35117 cclauses == NULL);
35118 if (cclauses)
35120 cp_omp_split_clauses (loc, OMP_FOR, mask, clauses, cclauses);
35121 clauses = cclauses[C_OMP_CLAUSE_SPLIT_FOR];
35124 sb = begin_omp_structured_block ();
35125 save = cp_parser_begin_omp_structured_block (parser);
35127 ret = cp_parser_omp_for_loop (parser, OMP_FOR, clauses, cclauses, if_p);
35129 cp_parser_end_omp_structured_block (parser, save);
35130 add_stmt (finish_omp_structured_block (sb));
35132 return ret;
35135 /* OpenMP 2.5:
35136 # pragma omp master new-line
35137 structured-block */
35139 static tree
35140 cp_parser_omp_master (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
35142 cp_parser_require_pragma_eol (parser, pragma_tok);
35143 return c_finish_omp_master (input_location,
35144 cp_parser_omp_structured_block (parser, if_p));
35147 /* OpenMP 2.5:
35148 # pragma omp ordered new-line
35149 structured-block
35151 OpenMP 4.5:
35152 # pragma omp ordered ordered-clauses new-line
35153 structured-block */
35155 #define OMP_ORDERED_CLAUSE_MASK \
35156 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_THREADS) \
35157 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SIMD))
35159 #define OMP_ORDERED_DEPEND_CLAUSE_MASK \
35160 (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEPEND)
35162 static bool
35163 cp_parser_omp_ordered (cp_parser *parser, cp_token *pragma_tok,
35164 enum pragma_context context, bool *if_p)
35166 location_t loc = pragma_tok->location;
35168 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
35170 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
35171 const char *p = IDENTIFIER_POINTER (id);
35173 if (strcmp (p, "depend") == 0)
35175 if (context == pragma_stmt)
35177 error_at (pragma_tok->location, "%<#pragma omp ordered%> with "
35178 "%<depend%> clause may only be used in compound "
35179 "statements");
35180 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
35181 return false;
35183 tree clauses
35184 = cp_parser_omp_all_clauses (parser,
35185 OMP_ORDERED_DEPEND_CLAUSE_MASK,
35186 "#pragma omp ordered", pragma_tok);
35187 c_finish_omp_ordered (loc, clauses, NULL_TREE);
35188 return false;
35192 tree clauses
35193 = cp_parser_omp_all_clauses (parser, OMP_ORDERED_CLAUSE_MASK,
35194 "#pragma omp ordered", pragma_tok);
35195 c_finish_omp_ordered (loc, clauses,
35196 cp_parser_omp_structured_block (parser, if_p));
35197 return true;
35200 /* OpenMP 2.5:
35202 section-scope:
35203 { section-sequence }
35205 section-sequence:
35206 section-directive[opt] structured-block
35207 section-sequence section-directive structured-block */
35209 static tree
35210 cp_parser_omp_sections_scope (cp_parser *parser)
35212 tree stmt, substmt;
35213 bool error_suppress = false;
35214 cp_token *tok;
35216 if (!cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
35217 return NULL_TREE;
35219 stmt = push_stmt_list ();
35221 if (cp_parser_pragma_kind (cp_lexer_peek_token (parser->lexer))
35222 != PRAGMA_OMP_SECTION)
35224 substmt = cp_parser_omp_structured_block (parser, NULL);
35225 substmt = build1 (OMP_SECTION, void_type_node, substmt);
35226 add_stmt (substmt);
35229 while (1)
35231 tok = cp_lexer_peek_token (parser->lexer);
35232 if (tok->type == CPP_CLOSE_BRACE)
35233 break;
35234 if (tok->type == CPP_EOF)
35235 break;
35237 if (cp_parser_pragma_kind (tok) == PRAGMA_OMP_SECTION)
35239 cp_lexer_consume_token (parser->lexer);
35240 cp_parser_require_pragma_eol (parser, tok);
35241 error_suppress = false;
35243 else if (!error_suppress)
35245 cp_parser_error (parser, "expected %<#pragma omp section%> or %<}%>");
35246 error_suppress = true;
35249 substmt = cp_parser_omp_structured_block (parser, NULL);
35250 substmt = build1 (OMP_SECTION, void_type_node, substmt);
35251 add_stmt (substmt);
35253 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
35255 substmt = pop_stmt_list (stmt);
35257 stmt = make_node (OMP_SECTIONS);
35258 TREE_TYPE (stmt) = void_type_node;
35259 OMP_SECTIONS_BODY (stmt) = substmt;
35261 add_stmt (stmt);
35262 return stmt;
35265 /* OpenMP 2.5:
35266 # pragma omp sections sections-clause[optseq] newline
35267 sections-scope */
35269 #define OMP_SECTIONS_CLAUSE_MASK \
35270 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
35271 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
35272 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
35273 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_REDUCTION) \
35274 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT))
35276 static tree
35277 cp_parser_omp_sections (cp_parser *parser, cp_token *pragma_tok,
35278 char *p_name, omp_clause_mask mask, tree *cclauses)
35280 tree clauses, ret;
35281 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
35283 strcat (p_name, " sections");
35284 mask |= OMP_SECTIONS_CLAUSE_MASK;
35285 if (cclauses)
35286 mask &= ~(OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT);
35288 clauses = cp_parser_omp_all_clauses (parser, mask, p_name, pragma_tok,
35289 cclauses == NULL);
35290 if (cclauses)
35292 cp_omp_split_clauses (loc, OMP_SECTIONS, mask, clauses, cclauses);
35293 clauses = cclauses[C_OMP_CLAUSE_SPLIT_SECTIONS];
35296 ret = cp_parser_omp_sections_scope (parser);
35297 if (ret)
35298 OMP_SECTIONS_CLAUSES (ret) = clauses;
35300 return ret;
35303 /* OpenMP 2.5:
35304 # pragma omp parallel parallel-clause[optseq] new-line
35305 structured-block
35306 # pragma omp parallel for parallel-for-clause[optseq] new-line
35307 structured-block
35308 # pragma omp parallel sections parallel-sections-clause[optseq] new-line
35309 structured-block
35311 OpenMP 4.0:
35312 # pragma omp parallel for simd parallel-for-simd-clause[optseq] new-line
35313 structured-block */
35315 #define OMP_PARALLEL_CLAUSE_MASK \
35316 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
35317 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
35318 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
35319 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEFAULT) \
35320 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SHARED) \
35321 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COPYIN) \
35322 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_REDUCTION) \
35323 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NUM_THREADS) \
35324 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PROC_BIND))
35326 static tree
35327 cp_parser_omp_parallel (cp_parser *parser, cp_token *pragma_tok,
35328 char *p_name, omp_clause_mask mask, tree *cclauses,
35329 bool *if_p)
35331 tree stmt, clauses, block;
35332 unsigned int save;
35333 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
35335 strcat (p_name, " parallel");
35336 mask |= OMP_PARALLEL_CLAUSE_MASK;
35337 /* #pragma omp target parallel{, for, for simd} disallow copyin clause. */
35338 if ((mask & (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MAP)) != 0
35339 && (mask & (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DIST_SCHEDULE)) == 0)
35340 mask &= ~(OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COPYIN);
35342 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_FOR))
35344 tree cclauses_buf[C_OMP_CLAUSE_SPLIT_COUNT];
35345 if (cclauses == NULL)
35346 cclauses = cclauses_buf;
35348 cp_lexer_consume_token (parser->lexer);
35349 if (!flag_openmp) /* flag_openmp_simd */
35350 return cp_parser_omp_for (parser, pragma_tok, p_name, mask, cclauses,
35351 if_p);
35352 block = begin_omp_parallel ();
35353 save = cp_parser_begin_omp_structured_block (parser);
35354 tree ret = cp_parser_omp_for (parser, pragma_tok, p_name, mask, cclauses,
35355 if_p);
35356 cp_parser_end_omp_structured_block (parser, save);
35357 stmt = finish_omp_parallel (cclauses[C_OMP_CLAUSE_SPLIT_PARALLEL],
35358 block);
35359 if (ret == NULL_TREE)
35360 return ret;
35361 OMP_PARALLEL_COMBINED (stmt) = 1;
35362 return stmt;
35364 /* When combined with distribute, parallel has to be followed by for.
35365 #pragma omp target parallel is allowed though. */
35366 else if (cclauses
35367 && (mask & (OMP_CLAUSE_MASK_1
35368 << PRAGMA_OMP_CLAUSE_DIST_SCHEDULE)) != 0)
35370 error_at (loc, "expected %<for%> after %qs", p_name);
35371 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
35372 return NULL_TREE;
35374 else if (!flag_openmp) /* flag_openmp_simd */
35376 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
35377 return NULL_TREE;
35379 else if (cclauses == NULL && cp_lexer_next_token_is (parser->lexer, CPP_NAME))
35381 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
35382 const char *p = IDENTIFIER_POINTER (id);
35383 if (strcmp (p, "sections") == 0)
35385 tree cclauses_buf[C_OMP_CLAUSE_SPLIT_COUNT];
35386 cclauses = cclauses_buf;
35388 cp_lexer_consume_token (parser->lexer);
35389 block = begin_omp_parallel ();
35390 save = cp_parser_begin_omp_structured_block (parser);
35391 cp_parser_omp_sections (parser, pragma_tok, p_name, mask, cclauses);
35392 cp_parser_end_omp_structured_block (parser, save);
35393 stmt = finish_omp_parallel (cclauses[C_OMP_CLAUSE_SPLIT_PARALLEL],
35394 block);
35395 OMP_PARALLEL_COMBINED (stmt) = 1;
35396 return stmt;
35400 clauses = cp_parser_omp_all_clauses (parser, mask, p_name, pragma_tok,
35401 cclauses == NULL);
35402 if (cclauses)
35404 cp_omp_split_clauses (loc, OMP_PARALLEL, mask, clauses, cclauses);
35405 clauses = cclauses[C_OMP_CLAUSE_SPLIT_PARALLEL];
35408 block = begin_omp_parallel ();
35409 save = cp_parser_begin_omp_structured_block (parser);
35410 cp_parser_statement (parser, NULL_TREE, false, if_p);
35411 cp_parser_end_omp_structured_block (parser, save);
35412 stmt = finish_omp_parallel (clauses, block);
35413 return stmt;
35416 /* OpenMP 2.5:
35417 # pragma omp single single-clause[optseq] new-line
35418 structured-block */
35420 #define OMP_SINGLE_CLAUSE_MASK \
35421 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
35422 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
35423 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COPYPRIVATE) \
35424 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT))
35426 static tree
35427 cp_parser_omp_single (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
35429 tree stmt = make_node (OMP_SINGLE);
35430 TREE_TYPE (stmt) = void_type_node;
35432 OMP_SINGLE_CLAUSES (stmt)
35433 = cp_parser_omp_all_clauses (parser, OMP_SINGLE_CLAUSE_MASK,
35434 "#pragma omp single", pragma_tok);
35435 OMP_SINGLE_BODY (stmt) = cp_parser_omp_structured_block (parser, if_p);
35437 return add_stmt (stmt);
35440 /* OpenMP 3.0:
35441 # pragma omp task task-clause[optseq] new-line
35442 structured-block */
35444 #define OMP_TASK_CLAUSE_MASK \
35445 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
35446 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_UNTIED) \
35447 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEFAULT) \
35448 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
35449 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
35450 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SHARED) \
35451 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FINAL) \
35452 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MERGEABLE) \
35453 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEPEND) \
35454 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIORITY))
35456 static tree
35457 cp_parser_omp_task (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
35459 tree clauses, block;
35460 unsigned int save;
35462 clauses = cp_parser_omp_all_clauses (parser, OMP_TASK_CLAUSE_MASK,
35463 "#pragma omp task", pragma_tok);
35464 block = begin_omp_task ();
35465 save = cp_parser_begin_omp_structured_block (parser);
35466 cp_parser_statement (parser, NULL_TREE, false, if_p);
35467 cp_parser_end_omp_structured_block (parser, save);
35468 return finish_omp_task (clauses, block);
35471 /* OpenMP 3.0:
35472 # pragma omp taskwait new-line */
35474 static void
35475 cp_parser_omp_taskwait (cp_parser *parser, cp_token *pragma_tok)
35477 cp_parser_require_pragma_eol (parser, pragma_tok);
35478 finish_omp_taskwait ();
35481 /* OpenMP 3.1:
35482 # pragma omp taskyield new-line */
35484 static void
35485 cp_parser_omp_taskyield (cp_parser *parser, cp_token *pragma_tok)
35487 cp_parser_require_pragma_eol (parser, pragma_tok);
35488 finish_omp_taskyield ();
35491 /* OpenMP 4.0:
35492 # pragma omp taskgroup new-line
35493 structured-block */
35495 static tree
35496 cp_parser_omp_taskgroup (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
35498 cp_parser_require_pragma_eol (parser, pragma_tok);
35499 return c_finish_omp_taskgroup (input_location,
35500 cp_parser_omp_structured_block (parser,
35501 if_p));
35505 /* OpenMP 2.5:
35506 # pragma omp threadprivate (variable-list) */
35508 static void
35509 cp_parser_omp_threadprivate (cp_parser *parser, cp_token *pragma_tok)
35511 tree vars;
35513 vars = cp_parser_omp_var_list (parser, OMP_CLAUSE_ERROR, NULL);
35514 cp_parser_require_pragma_eol (parser, pragma_tok);
35516 finish_omp_threadprivate (vars);
35519 /* OpenMP 4.0:
35520 # pragma omp cancel cancel-clause[optseq] new-line */
35522 #define OMP_CANCEL_CLAUSE_MASK \
35523 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PARALLEL) \
35524 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FOR) \
35525 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SECTIONS) \
35526 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_TASKGROUP) \
35527 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF))
35529 static void
35530 cp_parser_omp_cancel (cp_parser *parser, cp_token *pragma_tok)
35532 tree clauses = cp_parser_omp_all_clauses (parser, OMP_CANCEL_CLAUSE_MASK,
35533 "#pragma omp cancel", pragma_tok);
35534 finish_omp_cancel (clauses);
35537 /* OpenMP 4.0:
35538 # pragma omp cancellation point cancelpt-clause[optseq] new-line */
35540 #define OMP_CANCELLATION_POINT_CLAUSE_MASK \
35541 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PARALLEL) \
35542 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FOR) \
35543 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SECTIONS) \
35544 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_TASKGROUP))
35546 static void
35547 cp_parser_omp_cancellation_point (cp_parser *parser, cp_token *pragma_tok,
35548 enum pragma_context context)
35550 tree clauses;
35551 bool point_seen = false;
35553 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
35555 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
35556 const char *p = IDENTIFIER_POINTER (id);
35558 if (strcmp (p, "point") == 0)
35560 cp_lexer_consume_token (parser->lexer);
35561 point_seen = true;
35564 if (!point_seen)
35566 cp_parser_error (parser, "expected %<point%>");
35567 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
35568 return;
35571 if (context != pragma_compound)
35573 if (context == pragma_stmt)
35574 error_at (pragma_tok->location,
35575 "%<#pragma %s%> may only be used in compound statements",
35576 "omp cancellation point");
35577 else
35578 cp_parser_error (parser, "expected declaration specifiers");
35579 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
35580 return;
35583 clauses = cp_parser_omp_all_clauses (parser,
35584 OMP_CANCELLATION_POINT_CLAUSE_MASK,
35585 "#pragma omp cancellation point",
35586 pragma_tok);
35587 finish_omp_cancellation_point (clauses);
35590 /* OpenMP 4.0:
35591 #pragma omp distribute distribute-clause[optseq] new-line
35592 for-loop */
35594 #define OMP_DISTRIBUTE_CLAUSE_MASK \
35595 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
35596 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
35597 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
35598 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DIST_SCHEDULE)\
35599 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COLLAPSE))
35601 static tree
35602 cp_parser_omp_distribute (cp_parser *parser, cp_token *pragma_tok,
35603 char *p_name, omp_clause_mask mask, tree *cclauses,
35604 bool *if_p)
35606 tree clauses, sb, ret;
35607 unsigned int save;
35608 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
35610 strcat (p_name, " distribute");
35611 mask |= OMP_DISTRIBUTE_CLAUSE_MASK;
35613 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
35615 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
35616 const char *p = IDENTIFIER_POINTER (id);
35617 bool simd = false;
35618 bool parallel = false;
35620 if (strcmp (p, "simd") == 0)
35621 simd = true;
35622 else
35623 parallel = strcmp (p, "parallel") == 0;
35624 if (parallel || simd)
35626 tree cclauses_buf[C_OMP_CLAUSE_SPLIT_COUNT];
35627 if (cclauses == NULL)
35628 cclauses = cclauses_buf;
35629 cp_lexer_consume_token (parser->lexer);
35630 if (!flag_openmp) /* flag_openmp_simd */
35632 if (simd)
35633 return cp_parser_omp_simd (parser, pragma_tok, p_name, mask,
35634 cclauses, if_p);
35635 else
35636 return cp_parser_omp_parallel (parser, pragma_tok, p_name, mask,
35637 cclauses, if_p);
35639 sb = begin_omp_structured_block ();
35640 save = cp_parser_begin_omp_structured_block (parser);
35641 if (simd)
35642 ret = cp_parser_omp_simd (parser, pragma_tok, p_name, mask,
35643 cclauses, if_p);
35644 else
35645 ret = cp_parser_omp_parallel (parser, pragma_tok, p_name, mask,
35646 cclauses, if_p);
35647 cp_parser_end_omp_structured_block (parser, save);
35648 tree body = finish_omp_structured_block (sb);
35649 if (ret == NULL)
35650 return ret;
35651 ret = make_node (OMP_DISTRIBUTE);
35652 TREE_TYPE (ret) = void_type_node;
35653 OMP_FOR_BODY (ret) = body;
35654 OMP_FOR_CLAUSES (ret) = cclauses[C_OMP_CLAUSE_SPLIT_DISTRIBUTE];
35655 SET_EXPR_LOCATION (ret, loc);
35656 add_stmt (ret);
35657 return ret;
35660 if (!flag_openmp) /* flag_openmp_simd */
35662 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
35663 return NULL_TREE;
35666 clauses = cp_parser_omp_all_clauses (parser, mask, p_name, pragma_tok,
35667 cclauses == NULL);
35668 if (cclauses)
35670 cp_omp_split_clauses (loc, OMP_DISTRIBUTE, mask, clauses, cclauses);
35671 clauses = cclauses[C_OMP_CLAUSE_SPLIT_DISTRIBUTE];
35674 sb = begin_omp_structured_block ();
35675 save = cp_parser_begin_omp_structured_block (parser);
35677 ret = cp_parser_omp_for_loop (parser, OMP_DISTRIBUTE, clauses, NULL, if_p);
35679 cp_parser_end_omp_structured_block (parser, save);
35680 add_stmt (finish_omp_structured_block (sb));
35682 return ret;
35685 /* OpenMP 4.0:
35686 # pragma omp teams teams-clause[optseq] new-line
35687 structured-block */
35689 #define OMP_TEAMS_CLAUSE_MASK \
35690 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
35691 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
35692 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SHARED) \
35693 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_REDUCTION) \
35694 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NUM_TEAMS) \
35695 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_THREAD_LIMIT) \
35696 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEFAULT))
35698 static tree
35699 cp_parser_omp_teams (cp_parser *parser, cp_token *pragma_tok,
35700 char *p_name, omp_clause_mask mask, tree *cclauses,
35701 bool *if_p)
35703 tree clauses, sb, ret;
35704 unsigned int save;
35705 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
35707 strcat (p_name, " teams");
35708 mask |= OMP_TEAMS_CLAUSE_MASK;
35710 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
35712 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
35713 const char *p = IDENTIFIER_POINTER (id);
35714 if (strcmp (p, "distribute") == 0)
35716 tree cclauses_buf[C_OMP_CLAUSE_SPLIT_COUNT];
35717 if (cclauses == NULL)
35718 cclauses = cclauses_buf;
35720 cp_lexer_consume_token (parser->lexer);
35721 if (!flag_openmp) /* flag_openmp_simd */
35722 return cp_parser_omp_distribute (parser, pragma_tok, p_name, mask,
35723 cclauses, if_p);
35724 sb = begin_omp_structured_block ();
35725 save = cp_parser_begin_omp_structured_block (parser);
35726 ret = cp_parser_omp_distribute (parser, pragma_tok, p_name, mask,
35727 cclauses, if_p);
35728 cp_parser_end_omp_structured_block (parser, save);
35729 tree body = finish_omp_structured_block (sb);
35730 if (ret == NULL)
35731 return ret;
35732 clauses = cclauses[C_OMP_CLAUSE_SPLIT_TEAMS];
35733 ret = make_node (OMP_TEAMS);
35734 TREE_TYPE (ret) = void_type_node;
35735 OMP_TEAMS_CLAUSES (ret) = clauses;
35736 OMP_TEAMS_BODY (ret) = body;
35737 OMP_TEAMS_COMBINED (ret) = 1;
35738 SET_EXPR_LOCATION (ret, loc);
35739 return add_stmt (ret);
35742 if (!flag_openmp) /* flag_openmp_simd */
35744 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
35745 return NULL_TREE;
35748 clauses = cp_parser_omp_all_clauses (parser, mask, p_name, pragma_tok,
35749 cclauses == NULL);
35750 if (cclauses)
35752 cp_omp_split_clauses (loc, OMP_TEAMS, mask, clauses, cclauses);
35753 clauses = cclauses[C_OMP_CLAUSE_SPLIT_TEAMS];
35756 tree stmt = make_node (OMP_TEAMS);
35757 TREE_TYPE (stmt) = void_type_node;
35758 OMP_TEAMS_CLAUSES (stmt) = clauses;
35759 OMP_TEAMS_BODY (stmt) = cp_parser_omp_structured_block (parser, if_p);
35760 SET_EXPR_LOCATION (stmt, loc);
35762 return add_stmt (stmt);
35765 /* OpenMP 4.0:
35766 # pragma omp target data target-data-clause[optseq] new-line
35767 structured-block */
35769 #define OMP_TARGET_DATA_CLAUSE_MASK \
35770 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEVICE) \
35771 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MAP) \
35772 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
35773 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_USE_DEVICE_PTR))
35775 static tree
35776 cp_parser_omp_target_data (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
35778 tree clauses
35779 = cp_parser_omp_all_clauses (parser, OMP_TARGET_DATA_CLAUSE_MASK,
35780 "#pragma omp target data", pragma_tok);
35781 int map_seen = 0;
35782 for (tree *pc = &clauses; *pc;)
35784 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_MAP)
35785 switch (OMP_CLAUSE_MAP_KIND (*pc))
35787 case GOMP_MAP_TO:
35788 case GOMP_MAP_ALWAYS_TO:
35789 case GOMP_MAP_FROM:
35790 case GOMP_MAP_ALWAYS_FROM:
35791 case GOMP_MAP_TOFROM:
35792 case GOMP_MAP_ALWAYS_TOFROM:
35793 case GOMP_MAP_ALLOC:
35794 map_seen = 3;
35795 break;
35796 case GOMP_MAP_FIRSTPRIVATE_POINTER:
35797 case GOMP_MAP_FIRSTPRIVATE_REFERENCE:
35798 case GOMP_MAP_ALWAYS_POINTER:
35799 break;
35800 default:
35801 map_seen |= 1;
35802 error_at (OMP_CLAUSE_LOCATION (*pc),
35803 "%<#pragma omp target data%> with map-type other "
35804 "than %<to%>, %<from%>, %<tofrom%> or %<alloc%> "
35805 "on %<map%> clause");
35806 *pc = OMP_CLAUSE_CHAIN (*pc);
35807 continue;
35809 pc = &OMP_CLAUSE_CHAIN (*pc);
35812 if (map_seen != 3)
35814 if (map_seen == 0)
35815 error_at (pragma_tok->location,
35816 "%<#pragma omp target data%> must contain at least "
35817 "one %<map%> clause");
35818 return NULL_TREE;
35821 tree stmt = make_node (OMP_TARGET_DATA);
35822 TREE_TYPE (stmt) = void_type_node;
35823 OMP_TARGET_DATA_CLAUSES (stmt) = clauses;
35825 keep_next_level (true);
35826 OMP_TARGET_DATA_BODY (stmt) = cp_parser_omp_structured_block (parser, if_p);
35828 SET_EXPR_LOCATION (stmt, pragma_tok->location);
35829 return add_stmt (stmt);
35832 /* OpenMP 4.5:
35833 # pragma omp target enter data target-enter-data-clause[optseq] new-line
35834 structured-block */
35836 #define OMP_TARGET_ENTER_DATA_CLAUSE_MASK \
35837 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEVICE) \
35838 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MAP) \
35839 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
35840 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEPEND) \
35841 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT))
35843 static tree
35844 cp_parser_omp_target_enter_data (cp_parser *parser, cp_token *pragma_tok,
35845 enum pragma_context context)
35847 bool data_seen = false;
35848 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
35850 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
35851 const char *p = IDENTIFIER_POINTER (id);
35853 if (strcmp (p, "data") == 0)
35855 cp_lexer_consume_token (parser->lexer);
35856 data_seen = true;
35859 if (!data_seen)
35861 cp_parser_error (parser, "expected %<data%>");
35862 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
35863 return NULL_TREE;
35866 if (context == pragma_stmt)
35868 error_at (pragma_tok->location,
35869 "%<#pragma %s%> may only be used in compound statements",
35870 "omp target enter data");
35871 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
35872 return NULL_TREE;
35875 tree clauses
35876 = cp_parser_omp_all_clauses (parser, OMP_TARGET_ENTER_DATA_CLAUSE_MASK,
35877 "#pragma omp target enter data", pragma_tok);
35878 int map_seen = 0;
35879 for (tree *pc = &clauses; *pc;)
35881 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_MAP)
35882 switch (OMP_CLAUSE_MAP_KIND (*pc))
35884 case GOMP_MAP_TO:
35885 case GOMP_MAP_ALWAYS_TO:
35886 case GOMP_MAP_ALLOC:
35887 map_seen = 3;
35888 break;
35889 case GOMP_MAP_FIRSTPRIVATE_POINTER:
35890 case GOMP_MAP_FIRSTPRIVATE_REFERENCE:
35891 case GOMP_MAP_ALWAYS_POINTER:
35892 break;
35893 default:
35894 map_seen |= 1;
35895 error_at (OMP_CLAUSE_LOCATION (*pc),
35896 "%<#pragma omp target enter data%> with map-type other "
35897 "than %<to%> or %<alloc%> on %<map%> clause");
35898 *pc = OMP_CLAUSE_CHAIN (*pc);
35899 continue;
35901 pc = &OMP_CLAUSE_CHAIN (*pc);
35904 if (map_seen != 3)
35906 if (map_seen == 0)
35907 error_at (pragma_tok->location,
35908 "%<#pragma omp target enter data%> must contain at least "
35909 "one %<map%> clause");
35910 return NULL_TREE;
35913 tree stmt = make_node (OMP_TARGET_ENTER_DATA);
35914 TREE_TYPE (stmt) = void_type_node;
35915 OMP_TARGET_ENTER_DATA_CLAUSES (stmt) = clauses;
35916 SET_EXPR_LOCATION (stmt, pragma_tok->location);
35917 return add_stmt (stmt);
35920 /* OpenMP 4.5:
35921 # pragma omp target exit data target-enter-data-clause[optseq] new-line
35922 structured-block */
35924 #define OMP_TARGET_EXIT_DATA_CLAUSE_MASK \
35925 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEVICE) \
35926 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MAP) \
35927 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
35928 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEPEND) \
35929 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT))
35931 static tree
35932 cp_parser_omp_target_exit_data (cp_parser *parser, cp_token *pragma_tok,
35933 enum pragma_context context)
35935 bool data_seen = false;
35936 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
35938 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
35939 const char *p = IDENTIFIER_POINTER (id);
35941 if (strcmp (p, "data") == 0)
35943 cp_lexer_consume_token (parser->lexer);
35944 data_seen = true;
35947 if (!data_seen)
35949 cp_parser_error (parser, "expected %<data%>");
35950 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
35951 return NULL_TREE;
35954 if (context == pragma_stmt)
35956 error_at (pragma_tok->location,
35957 "%<#pragma %s%> may only be used in compound statements",
35958 "omp target exit data");
35959 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
35960 return NULL_TREE;
35963 tree clauses
35964 = cp_parser_omp_all_clauses (parser, OMP_TARGET_EXIT_DATA_CLAUSE_MASK,
35965 "#pragma omp target exit data", pragma_tok);
35966 int map_seen = 0;
35967 for (tree *pc = &clauses; *pc;)
35969 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_MAP)
35970 switch (OMP_CLAUSE_MAP_KIND (*pc))
35972 case GOMP_MAP_FROM:
35973 case GOMP_MAP_ALWAYS_FROM:
35974 case GOMP_MAP_RELEASE:
35975 case GOMP_MAP_DELETE:
35976 map_seen = 3;
35977 break;
35978 case GOMP_MAP_FIRSTPRIVATE_POINTER:
35979 case GOMP_MAP_FIRSTPRIVATE_REFERENCE:
35980 case GOMP_MAP_ALWAYS_POINTER:
35981 break;
35982 default:
35983 map_seen |= 1;
35984 error_at (OMP_CLAUSE_LOCATION (*pc),
35985 "%<#pragma omp target exit data%> with map-type other "
35986 "than %<from%>, %<release%> or %<delete%> on %<map%>"
35987 " clause");
35988 *pc = OMP_CLAUSE_CHAIN (*pc);
35989 continue;
35991 pc = &OMP_CLAUSE_CHAIN (*pc);
35994 if (map_seen != 3)
35996 if (map_seen == 0)
35997 error_at (pragma_tok->location,
35998 "%<#pragma omp target exit data%> must contain at least "
35999 "one %<map%> clause");
36000 return NULL_TREE;
36003 tree stmt = make_node (OMP_TARGET_EXIT_DATA);
36004 TREE_TYPE (stmt) = void_type_node;
36005 OMP_TARGET_EXIT_DATA_CLAUSES (stmt) = clauses;
36006 SET_EXPR_LOCATION (stmt, pragma_tok->location);
36007 return add_stmt (stmt);
36010 /* OpenMP 4.0:
36011 # pragma omp target update target-update-clause[optseq] new-line */
36013 #define OMP_TARGET_UPDATE_CLAUSE_MASK \
36014 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FROM) \
36015 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_TO) \
36016 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEVICE) \
36017 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
36018 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEPEND) \
36019 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT))
36021 static bool
36022 cp_parser_omp_target_update (cp_parser *parser, cp_token *pragma_tok,
36023 enum pragma_context context)
36025 if (context == pragma_stmt)
36027 error_at (pragma_tok->location,
36028 "%<#pragma %s%> may only be used in compound statements",
36029 "omp target update");
36030 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
36031 return false;
36034 tree clauses
36035 = cp_parser_omp_all_clauses (parser, OMP_TARGET_UPDATE_CLAUSE_MASK,
36036 "#pragma omp target update", pragma_tok);
36037 if (omp_find_clause (clauses, OMP_CLAUSE_TO) == NULL_TREE
36038 && omp_find_clause (clauses, OMP_CLAUSE_FROM) == NULL_TREE)
36040 error_at (pragma_tok->location,
36041 "%<#pragma omp target update%> must contain at least one "
36042 "%<from%> or %<to%> clauses");
36043 return false;
36046 tree stmt = make_node (OMP_TARGET_UPDATE);
36047 TREE_TYPE (stmt) = void_type_node;
36048 OMP_TARGET_UPDATE_CLAUSES (stmt) = clauses;
36049 SET_EXPR_LOCATION (stmt, pragma_tok->location);
36050 add_stmt (stmt);
36051 return false;
36054 /* OpenMP 4.0:
36055 # pragma omp target target-clause[optseq] new-line
36056 structured-block */
36058 #define OMP_TARGET_CLAUSE_MASK \
36059 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEVICE) \
36060 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MAP) \
36061 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
36062 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEPEND) \
36063 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT) \
36064 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
36065 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
36066 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEFAULTMAP) \
36067 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IS_DEVICE_PTR))
36069 static bool
36070 cp_parser_omp_target (cp_parser *parser, cp_token *pragma_tok,
36071 enum pragma_context context, bool *if_p)
36073 tree *pc = NULL, stmt;
36075 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
36077 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
36078 const char *p = IDENTIFIER_POINTER (id);
36079 enum tree_code ccode = ERROR_MARK;
36081 if (strcmp (p, "teams") == 0)
36082 ccode = OMP_TEAMS;
36083 else if (strcmp (p, "parallel") == 0)
36084 ccode = OMP_PARALLEL;
36085 else if (strcmp (p, "simd") == 0)
36086 ccode = OMP_SIMD;
36087 if (ccode != ERROR_MARK)
36089 tree cclauses[C_OMP_CLAUSE_SPLIT_COUNT];
36090 char p_name[sizeof ("#pragma omp target teams distribute "
36091 "parallel for simd")];
36093 cp_lexer_consume_token (parser->lexer);
36094 strcpy (p_name, "#pragma omp target");
36095 if (!flag_openmp) /* flag_openmp_simd */
36097 tree stmt;
36098 switch (ccode)
36100 case OMP_TEAMS:
36101 stmt = cp_parser_omp_teams (parser, pragma_tok, p_name,
36102 OMP_TARGET_CLAUSE_MASK,
36103 cclauses, if_p);
36104 break;
36105 case OMP_PARALLEL:
36106 stmt = cp_parser_omp_parallel (parser, pragma_tok, p_name,
36107 OMP_TARGET_CLAUSE_MASK,
36108 cclauses, if_p);
36109 break;
36110 case OMP_SIMD:
36111 stmt = cp_parser_omp_simd (parser, pragma_tok, p_name,
36112 OMP_TARGET_CLAUSE_MASK,
36113 cclauses, if_p);
36114 break;
36115 default:
36116 gcc_unreachable ();
36118 return stmt != NULL_TREE;
36120 keep_next_level (true);
36121 tree sb = begin_omp_structured_block (), ret;
36122 unsigned save = cp_parser_begin_omp_structured_block (parser);
36123 switch (ccode)
36125 case OMP_TEAMS:
36126 ret = cp_parser_omp_teams (parser, pragma_tok, p_name,
36127 OMP_TARGET_CLAUSE_MASK, cclauses,
36128 if_p);
36129 break;
36130 case OMP_PARALLEL:
36131 ret = cp_parser_omp_parallel (parser, pragma_tok, p_name,
36132 OMP_TARGET_CLAUSE_MASK, cclauses,
36133 if_p);
36134 break;
36135 case OMP_SIMD:
36136 ret = cp_parser_omp_simd (parser, pragma_tok, p_name,
36137 OMP_TARGET_CLAUSE_MASK, cclauses,
36138 if_p);
36139 break;
36140 default:
36141 gcc_unreachable ();
36143 cp_parser_end_omp_structured_block (parser, save);
36144 tree body = finish_omp_structured_block (sb);
36145 if (ret == NULL_TREE)
36146 return false;
36147 if (ccode == OMP_TEAMS && !processing_template_decl)
36149 /* For combined target teams, ensure the num_teams and
36150 thread_limit clause expressions are evaluated on the host,
36151 before entering the target construct. */
36152 tree c;
36153 for (c = cclauses[C_OMP_CLAUSE_SPLIT_TEAMS];
36154 c; c = OMP_CLAUSE_CHAIN (c))
36155 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_NUM_TEAMS
36156 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_THREAD_LIMIT)
36157 && TREE_CODE (OMP_CLAUSE_OPERAND (c, 0)) != INTEGER_CST)
36159 tree expr = OMP_CLAUSE_OPERAND (c, 0);
36160 expr = force_target_expr (TREE_TYPE (expr), expr, tf_none);
36161 if (expr == error_mark_node)
36162 continue;
36163 tree tmp = TARGET_EXPR_SLOT (expr);
36164 add_stmt (expr);
36165 OMP_CLAUSE_OPERAND (c, 0) = expr;
36166 tree tc = build_omp_clause (OMP_CLAUSE_LOCATION (c),
36167 OMP_CLAUSE_FIRSTPRIVATE);
36168 OMP_CLAUSE_DECL (tc) = tmp;
36169 OMP_CLAUSE_CHAIN (tc)
36170 = cclauses[C_OMP_CLAUSE_SPLIT_TARGET];
36171 cclauses[C_OMP_CLAUSE_SPLIT_TARGET] = tc;
36174 tree stmt = make_node (OMP_TARGET);
36175 TREE_TYPE (stmt) = void_type_node;
36176 OMP_TARGET_CLAUSES (stmt) = cclauses[C_OMP_CLAUSE_SPLIT_TARGET];
36177 OMP_TARGET_BODY (stmt) = body;
36178 OMP_TARGET_COMBINED (stmt) = 1;
36179 SET_EXPR_LOCATION (stmt, pragma_tok->location);
36180 add_stmt (stmt);
36181 pc = &OMP_TARGET_CLAUSES (stmt);
36182 goto check_clauses;
36184 else if (!flag_openmp) /* flag_openmp_simd */
36186 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
36187 return false;
36189 else if (strcmp (p, "data") == 0)
36191 cp_lexer_consume_token (parser->lexer);
36192 cp_parser_omp_target_data (parser, pragma_tok, if_p);
36193 return true;
36195 else if (strcmp (p, "enter") == 0)
36197 cp_lexer_consume_token (parser->lexer);
36198 cp_parser_omp_target_enter_data (parser, pragma_tok, context);
36199 return false;
36201 else if (strcmp (p, "exit") == 0)
36203 cp_lexer_consume_token (parser->lexer);
36204 cp_parser_omp_target_exit_data (parser, pragma_tok, context);
36205 return false;
36207 else if (strcmp (p, "update") == 0)
36209 cp_lexer_consume_token (parser->lexer);
36210 return cp_parser_omp_target_update (parser, pragma_tok, context);
36213 if (!flag_openmp) /* flag_openmp_simd */
36215 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
36216 return false;
36219 stmt = make_node (OMP_TARGET);
36220 TREE_TYPE (stmt) = void_type_node;
36222 OMP_TARGET_CLAUSES (stmt)
36223 = cp_parser_omp_all_clauses (parser, OMP_TARGET_CLAUSE_MASK,
36224 "#pragma omp target", pragma_tok);
36225 pc = &OMP_TARGET_CLAUSES (stmt);
36226 keep_next_level (true);
36227 OMP_TARGET_BODY (stmt) = cp_parser_omp_structured_block (parser, if_p);
36229 SET_EXPR_LOCATION (stmt, pragma_tok->location);
36230 add_stmt (stmt);
36232 check_clauses:
36233 while (*pc)
36235 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_MAP)
36236 switch (OMP_CLAUSE_MAP_KIND (*pc))
36238 case GOMP_MAP_TO:
36239 case GOMP_MAP_ALWAYS_TO:
36240 case GOMP_MAP_FROM:
36241 case GOMP_MAP_ALWAYS_FROM:
36242 case GOMP_MAP_TOFROM:
36243 case GOMP_MAP_ALWAYS_TOFROM:
36244 case GOMP_MAP_ALLOC:
36245 case GOMP_MAP_FIRSTPRIVATE_POINTER:
36246 case GOMP_MAP_FIRSTPRIVATE_REFERENCE:
36247 case GOMP_MAP_ALWAYS_POINTER:
36248 break;
36249 default:
36250 error_at (OMP_CLAUSE_LOCATION (*pc),
36251 "%<#pragma omp target%> with map-type other "
36252 "than %<to%>, %<from%>, %<tofrom%> or %<alloc%> "
36253 "on %<map%> clause");
36254 *pc = OMP_CLAUSE_CHAIN (*pc);
36255 continue;
36257 pc = &OMP_CLAUSE_CHAIN (*pc);
36259 return true;
36262 /* OpenACC 2.0:
36263 # pragma acc cache (variable-list) new-line
36266 static tree
36267 cp_parser_oacc_cache (cp_parser *parser, cp_token *pragma_tok)
36269 tree stmt, clauses;
36271 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE__CACHE_, NULL_TREE);
36272 clauses = finish_omp_clauses (clauses, C_ORT_ACC);
36274 cp_parser_require_pragma_eol (parser, cp_lexer_peek_token (parser->lexer));
36276 stmt = make_node (OACC_CACHE);
36277 TREE_TYPE (stmt) = void_type_node;
36278 OACC_CACHE_CLAUSES (stmt) = clauses;
36279 SET_EXPR_LOCATION (stmt, pragma_tok->location);
36280 add_stmt (stmt);
36282 return stmt;
36285 /* OpenACC 2.0:
36286 # pragma acc data oacc-data-clause[optseq] new-line
36287 structured-block */
36289 #define OACC_DATA_CLAUSE_MASK \
36290 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPY) \
36291 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYIN) \
36292 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYOUT) \
36293 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_CREATE) \
36294 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DEVICEPTR) \
36295 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_IF) \
36296 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT) \
36297 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPY) \
36298 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN) \
36299 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYOUT) \
36300 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE))
36302 static tree
36303 cp_parser_oacc_data (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
36305 tree stmt, clauses, block;
36306 unsigned int save;
36308 clauses = cp_parser_oacc_all_clauses (parser, OACC_DATA_CLAUSE_MASK,
36309 "#pragma acc data", pragma_tok);
36311 block = begin_omp_parallel ();
36312 save = cp_parser_begin_omp_structured_block (parser);
36313 cp_parser_statement (parser, NULL_TREE, false, if_p);
36314 cp_parser_end_omp_structured_block (parser, save);
36315 stmt = finish_oacc_data (clauses, block);
36316 return stmt;
36319 /* OpenACC 2.0:
36320 # pragma acc host_data <clauses> new-line
36321 structured-block */
36323 #define OACC_HOST_DATA_CLAUSE_MASK \
36324 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_USE_DEVICE) )
36326 static tree
36327 cp_parser_oacc_host_data (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
36329 tree stmt, clauses, block;
36330 unsigned int save;
36332 clauses = cp_parser_oacc_all_clauses (parser, OACC_HOST_DATA_CLAUSE_MASK,
36333 "#pragma acc host_data", pragma_tok);
36335 block = begin_omp_parallel ();
36336 save = cp_parser_begin_omp_structured_block (parser);
36337 cp_parser_statement (parser, NULL_TREE, false, if_p);
36338 cp_parser_end_omp_structured_block (parser, save);
36339 stmt = finish_oacc_host_data (clauses, block);
36340 return stmt;
36343 /* OpenACC 2.0:
36344 # pragma acc declare oacc-data-clause[optseq] new-line
36347 #define OACC_DECLARE_CLAUSE_MASK \
36348 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPY) \
36349 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYIN) \
36350 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYOUT) \
36351 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_CREATE) \
36352 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DEVICEPTR) \
36353 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DEVICE_RESIDENT) \
36354 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_LINK) \
36355 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT) \
36356 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPY) \
36357 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN) \
36358 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYOUT) \
36359 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE))
36361 static tree
36362 cp_parser_oacc_declare (cp_parser *parser, cp_token *pragma_tok)
36364 tree clauses, stmt;
36365 bool error = false;
36367 clauses = cp_parser_oacc_all_clauses (parser, OACC_DECLARE_CLAUSE_MASK,
36368 "#pragma acc declare", pragma_tok, true);
36371 if (omp_find_clause (clauses, OMP_CLAUSE_MAP) == NULL_TREE)
36373 error_at (pragma_tok->location,
36374 "no valid clauses specified in %<#pragma acc declare%>");
36375 return NULL_TREE;
36378 for (tree t = clauses; t; t = OMP_CLAUSE_CHAIN (t))
36380 location_t loc = OMP_CLAUSE_LOCATION (t);
36381 tree decl = OMP_CLAUSE_DECL (t);
36382 if (!DECL_P (decl))
36384 error_at (loc, "array section in %<#pragma acc declare%>");
36385 error = true;
36386 continue;
36388 gcc_assert (OMP_CLAUSE_CODE (t) == OMP_CLAUSE_MAP);
36389 switch (OMP_CLAUSE_MAP_KIND (t))
36391 case GOMP_MAP_FIRSTPRIVATE_POINTER:
36392 case GOMP_MAP_FORCE_ALLOC:
36393 case GOMP_MAP_FORCE_TO:
36394 case GOMP_MAP_FORCE_DEVICEPTR:
36395 case GOMP_MAP_DEVICE_RESIDENT:
36396 break;
36398 case GOMP_MAP_LINK:
36399 if (!global_bindings_p ()
36400 && (TREE_STATIC (decl)
36401 || !DECL_EXTERNAL (decl)))
36403 error_at (loc,
36404 "%qD must be a global variable in "
36405 "%<#pragma acc declare link%>",
36406 decl);
36407 error = true;
36408 continue;
36410 break;
36412 default:
36413 if (global_bindings_p ())
36415 error_at (loc, "invalid OpenACC clause at file scope");
36416 error = true;
36417 continue;
36419 if (DECL_EXTERNAL (decl))
36421 error_at (loc,
36422 "invalid use of %<extern%> variable %qD "
36423 "in %<#pragma acc declare%>", decl);
36424 error = true;
36425 continue;
36427 else if (TREE_PUBLIC (decl))
36429 error_at (loc,
36430 "invalid use of %<global%> variable %qD "
36431 "in %<#pragma acc declare%>", decl);
36432 error = true;
36433 continue;
36435 break;
36438 if (lookup_attribute ("omp declare target", DECL_ATTRIBUTES (decl))
36439 || lookup_attribute ("omp declare target link",
36440 DECL_ATTRIBUTES (decl)))
36442 error_at (loc, "variable %qD used more than once with "
36443 "%<#pragma acc declare%>", decl);
36444 error = true;
36445 continue;
36448 if (!error)
36450 tree id;
36452 if (OMP_CLAUSE_MAP_KIND (t) == GOMP_MAP_LINK)
36453 id = get_identifier ("omp declare target link");
36454 else
36455 id = get_identifier ("omp declare target");
36457 DECL_ATTRIBUTES (decl)
36458 = tree_cons (id, NULL_TREE, DECL_ATTRIBUTES (decl));
36459 if (global_bindings_p ())
36461 symtab_node *node = symtab_node::get (decl);
36462 if (node != NULL)
36464 node->offloadable = 1;
36465 if (ENABLE_OFFLOADING)
36467 g->have_offload = true;
36468 if (is_a <varpool_node *> (node))
36469 vec_safe_push (offload_vars, decl);
36476 if (error || global_bindings_p ())
36477 return NULL_TREE;
36479 stmt = make_node (OACC_DECLARE);
36480 TREE_TYPE (stmt) = void_type_node;
36481 OACC_DECLARE_CLAUSES (stmt) = clauses;
36482 SET_EXPR_LOCATION (stmt, pragma_tok->location);
36484 add_stmt (stmt);
36486 return NULL_TREE;
36489 /* OpenACC 2.0:
36490 # pragma acc enter data oacc-enter-data-clause[optseq] new-line
36494 # pragma acc exit data oacc-exit-data-clause[optseq] new-line
36496 LOC is the location of the #pragma token.
36499 #define OACC_ENTER_DATA_CLAUSE_MASK \
36500 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_IF) \
36501 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_ASYNC) \
36502 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYIN) \
36503 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_CREATE) \
36504 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN) \
36505 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE) \
36506 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_WAIT) )
36508 #define OACC_EXIT_DATA_CLAUSE_MASK \
36509 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_IF) \
36510 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_ASYNC) \
36511 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYOUT) \
36512 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DELETE) \
36513 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_WAIT) )
36515 static tree
36516 cp_parser_oacc_enter_exit_data (cp_parser *parser, cp_token *pragma_tok,
36517 bool enter)
36519 location_t loc = pragma_tok->location;
36520 tree stmt, clauses;
36521 const char *p = "";
36523 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
36524 p = IDENTIFIER_POINTER (cp_lexer_peek_token (parser->lexer)->u.value);
36526 if (strcmp (p, "data") != 0)
36528 error_at (loc, "expected %<data%> after %<#pragma acc %s%>",
36529 enter ? "enter" : "exit");
36530 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
36531 return NULL_TREE;
36534 cp_lexer_consume_token (parser->lexer);
36536 if (enter)
36537 clauses = cp_parser_oacc_all_clauses (parser, OACC_ENTER_DATA_CLAUSE_MASK,
36538 "#pragma acc enter data", pragma_tok);
36539 else
36540 clauses = cp_parser_oacc_all_clauses (parser, OACC_EXIT_DATA_CLAUSE_MASK,
36541 "#pragma acc exit data", pragma_tok);
36543 if (omp_find_clause (clauses, OMP_CLAUSE_MAP) == NULL_TREE)
36545 error_at (loc, "%<#pragma acc %s data%> has no data movement clause",
36546 enter ? "enter" : "exit");
36547 return NULL_TREE;
36550 stmt = enter ? make_node (OACC_ENTER_DATA) : make_node (OACC_EXIT_DATA);
36551 TREE_TYPE (stmt) = void_type_node;
36552 OMP_STANDALONE_CLAUSES (stmt) = clauses;
36553 SET_EXPR_LOCATION (stmt, pragma_tok->location);
36554 add_stmt (stmt);
36555 return stmt;
36558 /* OpenACC 2.0:
36559 # pragma acc loop oacc-loop-clause[optseq] new-line
36560 structured-block */
36562 #define OACC_LOOP_CLAUSE_MASK \
36563 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COLLAPSE) \
36564 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRIVATE) \
36565 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_REDUCTION) \
36566 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_GANG) \
36567 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_VECTOR) \
36568 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_WORKER) \
36569 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_AUTO) \
36570 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_INDEPENDENT) \
36571 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_SEQ) \
36572 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_TILE))
36574 static tree
36575 cp_parser_oacc_loop (cp_parser *parser, cp_token *pragma_tok, char *p_name,
36576 omp_clause_mask mask, tree *cclauses, bool *if_p)
36578 bool is_parallel = ((mask >> PRAGMA_OACC_CLAUSE_REDUCTION) & 1) == 1;
36580 strcat (p_name, " loop");
36581 mask |= OACC_LOOP_CLAUSE_MASK;
36583 tree clauses = cp_parser_oacc_all_clauses (parser, mask, p_name, pragma_tok,
36584 cclauses == NULL);
36585 if (cclauses)
36587 clauses = c_oacc_split_loop_clauses (clauses, cclauses, is_parallel);
36588 if (*cclauses)
36589 *cclauses = finish_omp_clauses (*cclauses, C_ORT_ACC);
36590 if (clauses)
36591 clauses = finish_omp_clauses (clauses, C_ORT_ACC);
36594 tree block = begin_omp_structured_block ();
36595 int save = cp_parser_begin_omp_structured_block (parser);
36596 tree stmt = cp_parser_omp_for_loop (parser, OACC_LOOP, clauses, NULL, if_p);
36597 cp_parser_end_omp_structured_block (parser, save);
36598 add_stmt (finish_omp_structured_block (block));
36600 return stmt;
36603 /* OpenACC 2.0:
36604 # pragma acc kernels oacc-kernels-clause[optseq] new-line
36605 structured-block
36609 # pragma acc parallel oacc-parallel-clause[optseq] new-line
36610 structured-block
36613 #define OACC_KERNELS_CLAUSE_MASK \
36614 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_ASYNC) \
36615 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPY) \
36616 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYIN) \
36617 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYOUT) \
36618 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_CREATE) \
36619 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DEFAULT) \
36620 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DEVICEPTR) \
36621 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_IF) \
36622 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_NUM_GANGS) \
36623 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_NUM_WORKERS) \
36624 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT) \
36625 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPY) \
36626 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN) \
36627 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYOUT) \
36628 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE) \
36629 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_VECTOR_LENGTH) \
36630 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_WAIT) )
36632 #define OACC_PARALLEL_CLAUSE_MASK \
36633 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_ASYNC) \
36634 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPY) \
36635 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYIN) \
36636 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYOUT) \
36637 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_CREATE) \
36638 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DEFAULT) \
36639 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DEVICEPTR) \
36640 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_FIRSTPRIVATE) \
36641 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_IF) \
36642 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_NUM_GANGS) \
36643 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_NUM_WORKERS) \
36644 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT) \
36645 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPY) \
36646 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN) \
36647 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYOUT) \
36648 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE) \
36649 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRIVATE) \
36650 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_REDUCTION) \
36651 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_VECTOR_LENGTH) \
36652 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_WAIT) )
36654 static tree
36655 cp_parser_oacc_kernels_parallel (cp_parser *parser, cp_token *pragma_tok,
36656 char *p_name, bool *if_p)
36658 omp_clause_mask mask;
36659 enum tree_code code;
36660 switch (cp_parser_pragma_kind (pragma_tok))
36662 case PRAGMA_OACC_KERNELS:
36663 strcat (p_name, " kernels");
36664 mask = OACC_KERNELS_CLAUSE_MASK;
36665 code = OACC_KERNELS;
36666 break;
36667 case PRAGMA_OACC_PARALLEL:
36668 strcat (p_name, " parallel");
36669 mask = OACC_PARALLEL_CLAUSE_MASK;
36670 code = OACC_PARALLEL;
36671 break;
36672 default:
36673 gcc_unreachable ();
36676 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
36678 const char *p
36679 = IDENTIFIER_POINTER (cp_lexer_peek_token (parser->lexer)->u.value);
36680 if (strcmp (p, "loop") == 0)
36682 cp_lexer_consume_token (parser->lexer);
36683 tree block = begin_omp_parallel ();
36684 tree clauses;
36685 cp_parser_oacc_loop (parser, pragma_tok, p_name, mask, &clauses,
36686 if_p);
36687 return finish_omp_construct (code, block, clauses);
36691 tree clauses = cp_parser_oacc_all_clauses (parser, mask, p_name, pragma_tok);
36693 tree block = begin_omp_parallel ();
36694 unsigned int save = cp_parser_begin_omp_structured_block (parser);
36695 cp_parser_statement (parser, NULL_TREE, false, if_p);
36696 cp_parser_end_omp_structured_block (parser, save);
36697 return finish_omp_construct (code, block, clauses);
36700 /* OpenACC 2.0:
36701 # pragma acc update oacc-update-clause[optseq] new-line
36704 #define OACC_UPDATE_CLAUSE_MASK \
36705 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_ASYNC) \
36706 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DEVICE) \
36707 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_HOST) \
36708 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_IF) \
36709 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_SELF) \
36710 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_WAIT))
36712 static tree
36713 cp_parser_oacc_update (cp_parser *parser, cp_token *pragma_tok)
36715 tree stmt, clauses;
36717 clauses = cp_parser_oacc_all_clauses (parser, OACC_UPDATE_CLAUSE_MASK,
36718 "#pragma acc update", pragma_tok);
36720 if (omp_find_clause (clauses, OMP_CLAUSE_MAP) == NULL_TREE)
36722 error_at (pragma_tok->location,
36723 "%<#pragma acc update%> must contain at least one "
36724 "%<device%> or %<host%> or %<self%> clause");
36725 return NULL_TREE;
36728 stmt = make_node (OACC_UPDATE);
36729 TREE_TYPE (stmt) = void_type_node;
36730 OACC_UPDATE_CLAUSES (stmt) = clauses;
36731 SET_EXPR_LOCATION (stmt, pragma_tok->location);
36732 add_stmt (stmt);
36733 return stmt;
36736 /* OpenACC 2.0:
36737 # pragma acc wait [(intseq)] oacc-wait-clause[optseq] new-line
36739 LOC is the location of the #pragma token.
36742 #define OACC_WAIT_CLAUSE_MASK \
36743 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_ASYNC))
36745 static tree
36746 cp_parser_oacc_wait (cp_parser *parser, cp_token *pragma_tok)
36748 tree clauses, list = NULL_TREE, stmt = NULL_TREE;
36749 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
36751 if (cp_lexer_peek_token (parser->lexer)->type == CPP_OPEN_PAREN)
36752 list = cp_parser_oacc_wait_list (parser, loc, list);
36754 clauses = cp_parser_oacc_all_clauses (parser, OACC_WAIT_CLAUSE_MASK,
36755 "#pragma acc wait", pragma_tok);
36757 stmt = c_finish_oacc_wait (loc, list, clauses);
36758 stmt = finish_expr_stmt (stmt);
36760 return stmt;
36763 /* OpenMP 4.0:
36764 # pragma omp declare simd declare-simd-clauses[optseq] new-line */
36766 #define OMP_DECLARE_SIMD_CLAUSE_MASK \
36767 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SIMDLEN) \
36768 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LINEAR) \
36769 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_ALIGNED) \
36770 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_UNIFORM) \
36771 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_INBRANCH) \
36772 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOTINBRANCH))
36774 static void
36775 cp_parser_omp_declare_simd (cp_parser *parser, cp_token *pragma_tok,
36776 enum pragma_context context)
36778 bool first_p = parser->omp_declare_simd == NULL;
36779 cp_omp_declare_simd_data data;
36780 if (first_p)
36782 data.error_seen = false;
36783 data.fndecl_seen = false;
36784 data.tokens = vNULL;
36785 data.clauses = NULL_TREE;
36786 /* It is safe to take the address of a local variable; it will only be
36787 used while this scope is live. */
36788 parser->omp_declare_simd = &data;
36791 /* Store away all pragma tokens. */
36792 while (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL)
36793 && cp_lexer_next_token_is_not (parser->lexer, CPP_EOF))
36794 cp_lexer_consume_token (parser->lexer);
36795 if (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL))
36796 parser->omp_declare_simd->error_seen = true;
36797 cp_parser_require_pragma_eol (parser, pragma_tok);
36798 struct cp_token_cache *cp
36799 = cp_token_cache_new (pragma_tok, cp_lexer_peek_token (parser->lexer));
36800 parser->omp_declare_simd->tokens.safe_push (cp);
36802 if (first_p)
36804 while (cp_lexer_next_token_is (parser->lexer, CPP_PRAGMA))
36805 cp_parser_pragma (parser, context, NULL);
36806 switch (context)
36808 case pragma_external:
36809 cp_parser_declaration (parser);
36810 break;
36811 case pragma_member:
36812 cp_parser_member_declaration (parser);
36813 break;
36814 case pragma_objc_icode:
36815 cp_parser_block_declaration (parser, /*statement_p=*/false);
36816 break;
36817 default:
36818 cp_parser_declaration_statement (parser);
36819 break;
36821 if (parser->omp_declare_simd
36822 && !parser->omp_declare_simd->error_seen
36823 && !parser->omp_declare_simd->fndecl_seen)
36824 error_at (pragma_tok->location,
36825 "%<#pragma omp declare simd%> not immediately followed by "
36826 "function declaration or definition");
36827 data.tokens.release ();
36828 parser->omp_declare_simd = NULL;
36832 /* Handles the delayed parsing of the Cilk Plus SIMD-enabled function.
36833 This function is modelled similar to the late parsing of omp declare
36834 simd. */
36836 static tree
36837 cp_parser_late_parsing_cilk_simd_fn_info (cp_parser *parser, tree attrs)
36839 struct cp_token_cache *ce;
36840 cp_omp_declare_simd_data *info = parser->cilk_simd_fn_info;
36841 int ii = 0;
36843 if (parser->omp_declare_simd != NULL
36844 || lookup_attribute ("simd", attrs))
36846 error ("%<#pragma omp declare simd%> or %<simd%> attribute cannot be "
36847 "used in the same function marked as a Cilk Plus SIMD-enabled "
36848 "function");
36849 parser->cilk_simd_fn_info->tokens.release ();
36850 XDELETE (parser->cilk_simd_fn_info);
36851 parser->cilk_simd_fn_info = NULL;
36852 return attrs;
36854 if (!info->error_seen && info->fndecl_seen)
36856 error ("vector attribute not immediately followed by a single function"
36857 " declaration or definition");
36858 info->error_seen = true;
36860 if (info->error_seen)
36861 return attrs;
36863 FOR_EACH_VEC_ELT (info->tokens, ii, ce)
36865 tree c, cl;
36867 cp_parser_push_lexer_for_tokens (parser, ce);
36868 parser->lexer->in_pragma = true;
36869 cl = cp_parser_omp_all_clauses (parser, CILK_SIMD_FN_CLAUSE_MASK,
36870 "SIMD-enabled functions attribute",
36871 NULL);
36872 cp_parser_pop_lexer (parser);
36873 if (cl)
36874 cl = tree_cons (NULL_TREE, cl, NULL_TREE);
36876 c = build_tree_list (get_identifier ("cilk simd function"), NULL_TREE);
36877 TREE_CHAIN (c) = attrs;
36878 attrs = c;
36880 c = build_tree_list (get_identifier ("omp declare simd"), cl);
36881 TREE_CHAIN (c) = attrs;
36882 if (processing_template_decl)
36883 ATTR_IS_DEPENDENT (c) = 1;
36884 attrs = c;
36886 info->fndecl_seen = true;
36887 parser->cilk_simd_fn_info->tokens.release ();
36888 XDELETE (parser->cilk_simd_fn_info);
36889 parser->cilk_simd_fn_info = NULL;
36890 return attrs;
36893 /* Finalize #pragma omp declare simd clauses after direct declarator has
36894 been parsed, and put that into "omp declare simd" attribute. */
36896 static tree
36897 cp_parser_late_parsing_omp_declare_simd (cp_parser *parser, tree attrs)
36899 struct cp_token_cache *ce;
36900 cp_omp_declare_simd_data *data = parser->omp_declare_simd;
36901 int i;
36903 if (!data->error_seen && data->fndecl_seen)
36905 error ("%<#pragma omp declare simd%> not immediately followed by "
36906 "a single function declaration or definition");
36907 data->error_seen = true;
36909 if (data->error_seen)
36910 return attrs;
36912 FOR_EACH_VEC_ELT (data->tokens, i, ce)
36914 tree c, cl;
36916 cp_parser_push_lexer_for_tokens (parser, ce);
36917 parser->lexer->in_pragma = true;
36918 gcc_assert (cp_lexer_peek_token (parser->lexer)->type == CPP_PRAGMA);
36919 cp_token *pragma_tok = cp_lexer_consume_token (parser->lexer);
36920 cp_lexer_consume_token (parser->lexer);
36921 cl = cp_parser_omp_all_clauses (parser, OMP_DECLARE_SIMD_CLAUSE_MASK,
36922 "#pragma omp declare simd", pragma_tok);
36923 cp_parser_pop_lexer (parser);
36924 if (cl)
36925 cl = tree_cons (NULL_TREE, cl, NULL_TREE);
36926 c = build_tree_list (get_identifier ("omp declare simd"), cl);
36927 TREE_CHAIN (c) = attrs;
36928 if (processing_template_decl)
36929 ATTR_IS_DEPENDENT (c) = 1;
36930 attrs = c;
36933 data->fndecl_seen = true;
36934 return attrs;
36938 /* OpenMP 4.0:
36939 # pragma omp declare target new-line
36940 declarations and definitions
36941 # pragma omp end declare target new-line
36943 OpenMP 4.5:
36944 # pragma omp declare target ( extended-list ) new-line
36946 # pragma omp declare target declare-target-clauses[seq] new-line */
36948 #define OMP_DECLARE_TARGET_CLAUSE_MASK \
36949 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_TO) \
36950 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LINK))
36952 static void
36953 cp_parser_omp_declare_target (cp_parser *parser, cp_token *pragma_tok)
36955 tree clauses = NULL_TREE;
36956 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
36957 clauses
36958 = cp_parser_omp_all_clauses (parser, OMP_DECLARE_TARGET_CLAUSE_MASK,
36959 "#pragma omp declare target", pragma_tok);
36960 else if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
36962 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_TO_DECLARE,
36963 clauses);
36964 clauses = finish_omp_clauses (clauses, C_ORT_OMP);
36965 cp_parser_require_pragma_eol (parser, pragma_tok);
36967 else
36969 cp_parser_require_pragma_eol (parser, pragma_tok);
36970 scope_chain->omp_declare_target_attribute++;
36971 return;
36973 if (scope_chain->omp_declare_target_attribute)
36974 error_at (pragma_tok->location,
36975 "%<#pragma omp declare target%> with clauses in between "
36976 "%<#pragma omp declare target%> without clauses and "
36977 "%<#pragma omp end declare target%>");
36978 for (tree c = clauses; c; c = OMP_CLAUSE_CHAIN (c))
36980 tree t = OMP_CLAUSE_DECL (c), id;
36981 tree at1 = lookup_attribute ("omp declare target", DECL_ATTRIBUTES (t));
36982 tree at2 = lookup_attribute ("omp declare target link",
36983 DECL_ATTRIBUTES (t));
36984 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LINK)
36986 id = get_identifier ("omp declare target link");
36987 std::swap (at1, at2);
36989 else
36990 id = get_identifier ("omp declare target");
36991 if (at2)
36993 error_at (OMP_CLAUSE_LOCATION (c),
36994 "%qD specified both in declare target %<link%> and %<to%>"
36995 " clauses", t);
36996 continue;
36998 if (!at1)
37000 DECL_ATTRIBUTES (t) = tree_cons (id, NULL_TREE, DECL_ATTRIBUTES (t));
37001 if (TREE_CODE (t) != FUNCTION_DECL && !is_global_var (t))
37002 continue;
37004 symtab_node *node = symtab_node::get (t);
37005 if (node != NULL)
37007 node->offloadable = 1;
37008 if (ENABLE_OFFLOADING)
37010 g->have_offload = true;
37011 if (is_a <varpool_node *> (node))
37012 vec_safe_push (offload_vars, t);
37019 static void
37020 cp_parser_omp_end_declare_target (cp_parser *parser, cp_token *pragma_tok)
37022 const char *p = "";
37023 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
37025 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
37026 p = IDENTIFIER_POINTER (id);
37028 if (strcmp (p, "declare") == 0)
37030 cp_lexer_consume_token (parser->lexer);
37031 p = "";
37032 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
37034 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
37035 p = IDENTIFIER_POINTER (id);
37037 if (strcmp (p, "target") == 0)
37038 cp_lexer_consume_token (parser->lexer);
37039 else
37041 cp_parser_error (parser, "expected %<target%>");
37042 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
37043 return;
37046 else
37048 cp_parser_error (parser, "expected %<declare%>");
37049 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
37050 return;
37052 cp_parser_require_pragma_eol (parser, pragma_tok);
37053 if (!scope_chain->omp_declare_target_attribute)
37054 error_at (pragma_tok->location,
37055 "%<#pragma omp end declare target%> without corresponding "
37056 "%<#pragma omp declare target%>");
37057 else
37058 scope_chain->omp_declare_target_attribute--;
37061 /* Helper function of cp_parser_omp_declare_reduction. Parse the combiner
37062 expression and optional initializer clause of
37063 #pragma omp declare reduction. We store the expression(s) as
37064 either 3, 6 or 7 special statements inside of the artificial function's
37065 body. The first two statements are DECL_EXPRs for the artificial
37066 OMP_OUT resp. OMP_IN variables, followed by a statement with the combiner
37067 expression that uses those variables.
37068 If there was any INITIALIZER clause, this is followed by further statements,
37069 the fourth and fifth statements are DECL_EXPRs for the artificial
37070 OMP_PRIV resp. OMP_ORIG variables. If the INITIALIZER clause wasn't the
37071 constructor variant (first token after open paren is not omp_priv),
37072 then the sixth statement is a statement with the function call expression
37073 that uses the OMP_PRIV and optionally OMP_ORIG variable.
37074 Otherwise, the sixth statement is whatever statement cp_finish_decl emits
37075 to initialize the OMP_PRIV artificial variable and there is seventh
37076 statement, a DECL_EXPR of the OMP_PRIV statement again. */
37078 static bool
37079 cp_parser_omp_declare_reduction_exprs (tree fndecl, cp_parser *parser)
37081 tree type = TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (fndecl)));
37082 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
37083 type = TREE_TYPE (type);
37084 tree omp_out = build_lang_decl (VAR_DECL, get_identifier ("omp_out"), type);
37085 DECL_ARTIFICIAL (omp_out) = 1;
37086 pushdecl (omp_out);
37087 add_decl_expr (omp_out);
37088 tree omp_in = build_lang_decl (VAR_DECL, get_identifier ("omp_in"), type);
37089 DECL_ARTIFICIAL (omp_in) = 1;
37090 pushdecl (omp_in);
37091 add_decl_expr (omp_in);
37092 tree combiner;
37093 tree omp_priv = NULL_TREE, omp_orig = NULL_TREE, initializer = NULL_TREE;
37095 keep_next_level (true);
37096 tree block = begin_omp_structured_block ();
37097 combiner = cp_parser_expression (parser);
37098 finish_expr_stmt (combiner);
37099 block = finish_omp_structured_block (block);
37100 add_stmt (block);
37102 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
37103 return false;
37105 const char *p = "";
37106 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
37108 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
37109 p = IDENTIFIER_POINTER (id);
37112 if (strcmp (p, "initializer") == 0)
37114 cp_lexer_consume_token (parser->lexer);
37115 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
37116 return false;
37118 p = "";
37119 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
37121 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
37122 p = IDENTIFIER_POINTER (id);
37125 omp_priv = build_lang_decl (VAR_DECL, get_identifier ("omp_priv"), type);
37126 DECL_ARTIFICIAL (omp_priv) = 1;
37127 pushdecl (omp_priv);
37128 add_decl_expr (omp_priv);
37129 omp_orig = build_lang_decl (VAR_DECL, get_identifier ("omp_orig"), type);
37130 DECL_ARTIFICIAL (omp_orig) = 1;
37131 pushdecl (omp_orig);
37132 add_decl_expr (omp_orig);
37134 keep_next_level (true);
37135 block = begin_omp_structured_block ();
37137 bool ctor = false;
37138 if (strcmp (p, "omp_priv") == 0)
37140 bool is_direct_init, is_non_constant_init;
37141 ctor = true;
37142 cp_lexer_consume_token (parser->lexer);
37143 /* Reject initializer (omp_priv) and initializer (omp_priv ()). */
37144 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN)
37145 || (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN)
37146 && cp_lexer_peek_nth_token (parser->lexer, 2)->type
37147 == CPP_CLOSE_PAREN
37148 && cp_lexer_peek_nth_token (parser->lexer, 3)->type
37149 == CPP_CLOSE_PAREN))
37151 finish_omp_structured_block (block);
37152 error ("invalid initializer clause");
37153 return false;
37155 initializer = cp_parser_initializer (parser, &is_direct_init,
37156 &is_non_constant_init);
37157 cp_finish_decl (omp_priv, initializer, !is_non_constant_init,
37158 NULL_TREE, LOOKUP_ONLYCONVERTING);
37160 else
37162 cp_parser_parse_tentatively (parser);
37163 tree fn_name = cp_parser_id_expression (parser, /*template_p=*/false,
37164 /*check_dependency_p=*/true,
37165 /*template_p=*/NULL,
37166 /*declarator_p=*/false,
37167 /*optional_p=*/false);
37168 vec<tree, va_gc> *args;
37169 if (fn_name == error_mark_node
37170 || cp_parser_error_occurred (parser)
37171 || !cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN)
37172 || ((args = cp_parser_parenthesized_expression_list
37173 (parser, non_attr, /*cast_p=*/false,
37174 /*allow_expansion_p=*/true,
37175 /*non_constant_p=*/NULL)),
37176 cp_parser_error_occurred (parser)))
37178 finish_omp_structured_block (block);
37179 cp_parser_abort_tentative_parse (parser);
37180 cp_parser_error (parser, "expected id-expression (arguments)");
37181 return false;
37183 unsigned int i;
37184 tree arg;
37185 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
37186 if (arg == omp_priv
37187 || (TREE_CODE (arg) == ADDR_EXPR
37188 && TREE_OPERAND (arg, 0) == omp_priv))
37189 break;
37190 cp_parser_abort_tentative_parse (parser);
37191 if (arg == NULL_TREE)
37192 error ("one of the initializer call arguments should be %<omp_priv%>"
37193 " or %<&omp_priv%>");
37194 initializer = cp_parser_postfix_expression (parser, false, false, false,
37195 false, NULL);
37196 finish_expr_stmt (initializer);
37199 block = finish_omp_structured_block (block);
37200 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
37201 add_stmt (block);
37203 if (ctor)
37204 add_decl_expr (omp_orig);
37206 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
37207 return false;
37210 if (!cp_lexer_next_token_is (parser->lexer, CPP_PRAGMA_EOL))
37211 cp_parser_required_error (parser, RT_PRAGMA_EOL, /*keyword=*/false);
37213 return true;
37216 /* OpenMP 4.0
37217 #pragma omp declare reduction (reduction-id : typename-list : expression) \
37218 initializer-clause[opt] new-line
37220 initializer-clause:
37221 initializer (omp_priv initializer)
37222 initializer (function-name (argument-list)) */
37224 static void
37225 cp_parser_omp_declare_reduction (cp_parser *parser, cp_token *pragma_tok,
37226 enum pragma_context)
37228 auto_vec<tree> types;
37229 enum tree_code reduc_code = ERROR_MARK;
37230 tree reduc_id = NULL_TREE, orig_reduc_id = NULL_TREE, type;
37231 unsigned int i;
37232 cp_token *first_token;
37233 cp_token_cache *cp;
37234 int errs;
37235 void *p;
37237 /* Get the high-water mark for the DECLARATOR_OBSTACK. */
37238 p = obstack_alloc (&declarator_obstack, 0);
37240 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
37241 goto fail;
37243 switch (cp_lexer_peek_token (parser->lexer)->type)
37245 case CPP_PLUS:
37246 reduc_code = PLUS_EXPR;
37247 break;
37248 case CPP_MULT:
37249 reduc_code = MULT_EXPR;
37250 break;
37251 case CPP_MINUS:
37252 reduc_code = MINUS_EXPR;
37253 break;
37254 case CPP_AND:
37255 reduc_code = BIT_AND_EXPR;
37256 break;
37257 case CPP_XOR:
37258 reduc_code = BIT_XOR_EXPR;
37259 break;
37260 case CPP_OR:
37261 reduc_code = BIT_IOR_EXPR;
37262 break;
37263 case CPP_AND_AND:
37264 reduc_code = TRUTH_ANDIF_EXPR;
37265 break;
37266 case CPP_OR_OR:
37267 reduc_code = TRUTH_ORIF_EXPR;
37268 break;
37269 case CPP_NAME:
37270 reduc_id = orig_reduc_id = cp_parser_identifier (parser);
37271 break;
37272 default:
37273 cp_parser_error (parser, "expected %<+%>, %<*%>, %<-%>, %<&%>, %<^%>, "
37274 "%<|%>, %<&&%>, %<||%> or identifier");
37275 goto fail;
37278 if (reduc_code != ERROR_MARK)
37279 cp_lexer_consume_token (parser->lexer);
37281 reduc_id = omp_reduction_id (reduc_code, reduc_id, NULL_TREE);
37282 if (reduc_id == error_mark_node)
37283 goto fail;
37285 if (!cp_parser_require (parser, CPP_COLON, RT_COLON))
37286 goto fail;
37288 /* Types may not be defined in declare reduction type list. */
37289 const char *saved_message;
37290 saved_message = parser->type_definition_forbidden_message;
37291 parser->type_definition_forbidden_message
37292 = G_("types may not be defined in declare reduction type list");
37293 bool saved_colon_corrects_to_scope_p;
37294 saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
37295 parser->colon_corrects_to_scope_p = false;
37296 bool saved_colon_doesnt_start_class_def_p;
37297 saved_colon_doesnt_start_class_def_p
37298 = parser->colon_doesnt_start_class_def_p;
37299 parser->colon_doesnt_start_class_def_p = true;
37301 while (true)
37303 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
37304 type = cp_parser_type_id (parser);
37305 if (type == error_mark_node)
37307 else if (ARITHMETIC_TYPE_P (type)
37308 && (orig_reduc_id == NULL_TREE
37309 || (TREE_CODE (type) != COMPLEX_TYPE
37310 && (id_equal (orig_reduc_id, "min")
37311 || id_equal (orig_reduc_id, "max")))))
37312 error_at (loc, "predeclared arithmetic type %qT in "
37313 "%<#pragma omp declare reduction%>", type);
37314 else if (TREE_CODE (type) == FUNCTION_TYPE
37315 || TREE_CODE (type) == METHOD_TYPE
37316 || TREE_CODE (type) == ARRAY_TYPE)
37317 error_at (loc, "function or array type %qT in "
37318 "%<#pragma omp declare reduction%>", type);
37319 else if (TREE_CODE (type) == REFERENCE_TYPE)
37320 error_at (loc, "reference type %qT in "
37321 "%<#pragma omp declare reduction%>", type);
37322 else if (TYPE_QUALS_NO_ADDR_SPACE (type))
37323 error_at (loc, "const, volatile or __restrict qualified type %qT in "
37324 "%<#pragma omp declare reduction%>", type);
37325 else
37326 types.safe_push (type);
37328 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
37329 cp_lexer_consume_token (parser->lexer);
37330 else
37331 break;
37334 /* Restore the saved message. */
37335 parser->type_definition_forbidden_message = saved_message;
37336 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
37337 parser->colon_doesnt_start_class_def_p
37338 = saved_colon_doesnt_start_class_def_p;
37340 if (!cp_parser_require (parser, CPP_COLON, RT_COLON)
37341 || types.is_empty ())
37343 fail:
37344 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
37345 goto done;
37348 first_token = cp_lexer_peek_token (parser->lexer);
37349 cp = NULL;
37350 errs = errorcount;
37351 FOR_EACH_VEC_ELT (types, i, type)
37353 tree fntype
37354 = build_function_type_list (void_type_node,
37355 cp_build_reference_type (type, false),
37356 NULL_TREE);
37357 tree this_reduc_id = reduc_id;
37358 if (!dependent_type_p (type))
37359 this_reduc_id = omp_reduction_id (ERROR_MARK, reduc_id, type);
37360 tree fndecl = build_lang_decl (FUNCTION_DECL, this_reduc_id, fntype);
37361 DECL_SOURCE_LOCATION (fndecl) = pragma_tok->location;
37362 DECL_ARTIFICIAL (fndecl) = 1;
37363 DECL_EXTERNAL (fndecl) = 1;
37364 DECL_DECLARED_INLINE_P (fndecl) = 1;
37365 DECL_IGNORED_P (fndecl) = 1;
37366 DECL_OMP_DECLARE_REDUCTION_P (fndecl) = 1;
37367 SET_DECL_ASSEMBLER_NAME (fndecl, get_identifier ("<udr>"));
37368 DECL_ATTRIBUTES (fndecl)
37369 = tree_cons (get_identifier ("gnu_inline"), NULL_TREE,
37370 DECL_ATTRIBUTES (fndecl));
37371 if (processing_template_decl)
37372 fndecl = push_template_decl (fndecl);
37373 bool block_scope = false;
37374 tree block = NULL_TREE;
37375 if (current_function_decl)
37377 block_scope = true;
37378 DECL_CONTEXT (fndecl) = global_namespace;
37379 if (!processing_template_decl)
37380 pushdecl (fndecl);
37382 else if (current_class_type)
37384 if (cp == NULL)
37386 while (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL)
37387 && cp_lexer_next_token_is_not (parser->lexer, CPP_EOF))
37388 cp_lexer_consume_token (parser->lexer);
37389 if (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL))
37390 goto fail;
37391 cp = cp_token_cache_new (first_token,
37392 cp_lexer_peek_nth_token (parser->lexer,
37393 2));
37395 DECL_STATIC_FUNCTION_P (fndecl) = 1;
37396 finish_member_declaration (fndecl);
37397 DECL_PENDING_INLINE_INFO (fndecl) = cp;
37398 DECL_PENDING_INLINE_P (fndecl) = 1;
37399 vec_safe_push (unparsed_funs_with_definitions, fndecl);
37400 continue;
37402 else
37404 DECL_CONTEXT (fndecl) = current_namespace;
37405 pushdecl (fndecl);
37407 if (!block_scope)
37408 start_preparsed_function (fndecl, NULL_TREE, SF_PRE_PARSED);
37409 else
37410 block = begin_omp_structured_block ();
37411 if (cp)
37413 cp_parser_push_lexer_for_tokens (parser, cp);
37414 parser->lexer->in_pragma = true;
37416 if (!cp_parser_omp_declare_reduction_exprs (fndecl, parser))
37418 if (!block_scope)
37419 finish_function (0);
37420 else
37421 DECL_CONTEXT (fndecl) = current_function_decl;
37422 if (cp)
37423 cp_parser_pop_lexer (parser);
37424 goto fail;
37426 if (cp)
37427 cp_parser_pop_lexer (parser);
37428 if (!block_scope)
37429 finish_function (0);
37430 else
37432 DECL_CONTEXT (fndecl) = current_function_decl;
37433 block = finish_omp_structured_block (block);
37434 if (TREE_CODE (block) == BIND_EXPR)
37435 DECL_SAVED_TREE (fndecl) = BIND_EXPR_BODY (block);
37436 else if (TREE_CODE (block) == STATEMENT_LIST)
37437 DECL_SAVED_TREE (fndecl) = block;
37438 if (processing_template_decl)
37439 add_decl_expr (fndecl);
37441 cp_check_omp_declare_reduction (fndecl);
37442 if (cp == NULL && types.length () > 1)
37443 cp = cp_token_cache_new (first_token,
37444 cp_lexer_peek_nth_token (parser->lexer, 2));
37445 if (errs != errorcount)
37446 break;
37449 cp_parser_require_pragma_eol (parser, pragma_tok);
37451 done:
37452 /* Free any declarators allocated. */
37453 obstack_free (&declarator_obstack, p);
37456 /* OpenMP 4.0
37457 #pragma omp declare simd declare-simd-clauses[optseq] new-line
37458 #pragma omp declare reduction (reduction-id : typename-list : expression) \
37459 initializer-clause[opt] new-line
37460 #pragma omp declare target new-line */
37462 static void
37463 cp_parser_omp_declare (cp_parser *parser, cp_token *pragma_tok,
37464 enum pragma_context context)
37466 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
37468 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
37469 const char *p = IDENTIFIER_POINTER (id);
37471 if (strcmp (p, "simd") == 0)
37473 cp_lexer_consume_token (parser->lexer);
37474 cp_parser_omp_declare_simd (parser, pragma_tok,
37475 context);
37476 return;
37478 cp_ensure_no_omp_declare_simd (parser);
37479 if (strcmp (p, "reduction") == 0)
37481 cp_lexer_consume_token (parser->lexer);
37482 cp_parser_omp_declare_reduction (parser, pragma_tok,
37483 context);
37484 return;
37486 if (!flag_openmp) /* flag_openmp_simd */
37488 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
37489 return;
37491 if (strcmp (p, "target") == 0)
37493 cp_lexer_consume_token (parser->lexer);
37494 cp_parser_omp_declare_target (parser, pragma_tok);
37495 return;
37498 cp_parser_error (parser, "expected %<simd%> or %<reduction%> "
37499 "or %<target%>");
37500 cp_parser_require_pragma_eol (parser, pragma_tok);
37503 /* OpenMP 4.5:
37504 #pragma omp taskloop taskloop-clause[optseq] new-line
37505 for-loop
37507 #pragma omp taskloop simd taskloop-simd-clause[optseq] new-line
37508 for-loop */
37510 #define OMP_TASKLOOP_CLAUSE_MASK \
37511 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SHARED) \
37512 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
37513 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
37514 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
37515 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEFAULT) \
37516 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_GRAINSIZE) \
37517 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NUM_TASKS) \
37518 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COLLAPSE) \
37519 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_UNTIED) \
37520 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
37521 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FINAL) \
37522 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MERGEABLE) \
37523 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOGROUP) \
37524 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIORITY))
37526 static tree
37527 cp_parser_omp_taskloop (cp_parser *parser, cp_token *pragma_tok,
37528 char *p_name, omp_clause_mask mask, tree *cclauses,
37529 bool *if_p)
37531 tree clauses, sb, ret;
37532 unsigned int save;
37533 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
37535 strcat (p_name, " taskloop");
37536 mask |= OMP_TASKLOOP_CLAUSE_MASK;
37538 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
37540 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
37541 const char *p = IDENTIFIER_POINTER (id);
37543 if (strcmp (p, "simd") == 0)
37545 tree cclauses_buf[C_OMP_CLAUSE_SPLIT_COUNT];
37546 if (cclauses == NULL)
37547 cclauses = cclauses_buf;
37549 cp_lexer_consume_token (parser->lexer);
37550 if (!flag_openmp) /* flag_openmp_simd */
37551 return cp_parser_omp_simd (parser, pragma_tok, p_name, mask,
37552 cclauses, if_p);
37553 sb = begin_omp_structured_block ();
37554 save = cp_parser_begin_omp_structured_block (parser);
37555 ret = cp_parser_omp_simd (parser, pragma_tok, p_name, mask,
37556 cclauses, if_p);
37557 cp_parser_end_omp_structured_block (parser, save);
37558 tree body = finish_omp_structured_block (sb);
37559 if (ret == NULL)
37560 return ret;
37561 ret = make_node (OMP_TASKLOOP);
37562 TREE_TYPE (ret) = void_type_node;
37563 OMP_FOR_BODY (ret) = body;
37564 OMP_FOR_CLAUSES (ret) = cclauses[C_OMP_CLAUSE_SPLIT_TASKLOOP];
37565 SET_EXPR_LOCATION (ret, loc);
37566 add_stmt (ret);
37567 return ret;
37570 if (!flag_openmp) /* flag_openmp_simd */
37572 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
37573 return NULL_TREE;
37576 clauses = cp_parser_omp_all_clauses (parser, mask, p_name, pragma_tok,
37577 cclauses == NULL);
37578 if (cclauses)
37580 cp_omp_split_clauses (loc, OMP_TASKLOOP, mask, clauses, cclauses);
37581 clauses = cclauses[C_OMP_CLAUSE_SPLIT_TASKLOOP];
37584 sb = begin_omp_structured_block ();
37585 save = cp_parser_begin_omp_structured_block (parser);
37587 ret = cp_parser_omp_for_loop (parser, OMP_TASKLOOP, clauses, cclauses,
37588 if_p);
37590 cp_parser_end_omp_structured_block (parser, save);
37591 add_stmt (finish_omp_structured_block (sb));
37593 return ret;
37597 /* OpenACC 2.0:
37598 # pragma acc routine oacc-routine-clause[optseq] new-line
37599 function-definition
37601 # pragma acc routine ( name ) oacc-routine-clause[optseq] new-line
37604 #define OACC_ROUTINE_CLAUSE_MASK \
37605 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_GANG) \
37606 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_WORKER) \
37607 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_VECTOR) \
37608 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_SEQ))
37611 /* Parse the OpenACC routine pragma. This has an optional '( name )'
37612 component, which must resolve to a declared namespace-scope
37613 function. The clauses are either processed directly (for a named
37614 function), or defered until the immediatley following declaration
37615 is parsed. */
37617 static void
37618 cp_parser_oacc_routine (cp_parser *parser, cp_token *pragma_tok,
37619 enum pragma_context context)
37621 gcc_checking_assert (context == pragma_external);
37622 /* The checking for "another pragma following this one" in the "no optional
37623 '( name )'" case makes sure that we dont re-enter. */
37624 gcc_checking_assert (parser->oacc_routine == NULL);
37626 cp_oacc_routine_data data;
37627 data.error_seen = false;
37628 data.fndecl_seen = false;
37629 data.tokens = vNULL;
37630 data.clauses = NULL_TREE;
37631 data.loc = pragma_tok->location;
37632 /* It is safe to take the address of a local variable; it will only be
37633 used while this scope is live. */
37634 parser->oacc_routine = &data;
37636 /* Look for optional '( name )'. */
37637 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
37639 cp_lexer_consume_token (parser->lexer); /* '(' */
37641 /* We parse the name as an id-expression. If it resolves to
37642 anything other than a non-overloaded function at namespace
37643 scope, it's an error. */
37644 location_t name_loc = cp_lexer_peek_token (parser->lexer)->location;
37645 tree name = cp_parser_id_expression (parser,
37646 /*template_keyword_p=*/false,
37647 /*check_dependency_p=*/false,
37648 /*template_p=*/NULL,
37649 /*declarator_p=*/false,
37650 /*optional_p=*/false);
37651 tree decl = cp_parser_lookup_name_simple (parser, name, name_loc);
37652 if (name != error_mark_node && decl == error_mark_node)
37653 cp_parser_name_lookup_error (parser, name, decl, NLE_NULL, name_loc);
37655 if (decl == error_mark_node
37656 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
37658 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
37659 parser->oacc_routine = NULL;
37660 return;
37663 data.clauses
37664 = cp_parser_oacc_all_clauses (parser, OACC_ROUTINE_CLAUSE_MASK,
37665 "#pragma acc routine",
37666 cp_lexer_peek_token (parser->lexer));
37668 if (decl && is_overloaded_fn (decl)
37669 && (TREE_CODE (decl) != FUNCTION_DECL
37670 || DECL_FUNCTION_TEMPLATE_P (decl)))
37672 error_at (name_loc,
37673 "%<#pragma acc routine%> names a set of overloads");
37674 parser->oacc_routine = NULL;
37675 return;
37678 /* Perhaps we should use the same rule as declarations in different
37679 namespaces? */
37680 if (!DECL_NAMESPACE_SCOPE_P (decl))
37682 error_at (name_loc,
37683 "%qD does not refer to a namespace scope function", decl);
37684 parser->oacc_routine = NULL;
37685 return;
37688 if (TREE_CODE (decl) != FUNCTION_DECL)
37690 error_at (name_loc, "%qD does not refer to a function", decl);
37691 parser->oacc_routine = NULL;
37692 return;
37695 cp_finalize_oacc_routine (parser, decl, false);
37696 parser->oacc_routine = NULL;
37698 else /* No optional '( name )'. */
37700 /* Store away all pragma tokens. */
37701 while (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL)
37702 && cp_lexer_next_token_is_not (parser->lexer, CPP_EOF))
37703 cp_lexer_consume_token (parser->lexer);
37704 if (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL))
37705 parser->oacc_routine->error_seen = true;
37706 cp_parser_require_pragma_eol (parser, pragma_tok);
37707 struct cp_token_cache *cp
37708 = cp_token_cache_new (pragma_tok, cp_lexer_peek_token (parser->lexer));
37709 parser->oacc_routine->tokens.safe_push (cp);
37711 /* Emit a helpful diagnostic if there's another pragma following this
37712 one. */
37713 if (cp_lexer_next_token_is (parser->lexer, CPP_PRAGMA))
37715 cp_ensure_no_oacc_routine (parser);
37716 data.tokens.release ();
37717 /* ..., and then just keep going. */
37718 return;
37721 /* We only have to consider the pragma_external case here. */
37722 cp_parser_declaration (parser);
37723 if (parser->oacc_routine
37724 && !parser->oacc_routine->fndecl_seen)
37725 cp_ensure_no_oacc_routine (parser);
37726 else
37727 parser->oacc_routine = NULL;
37728 data.tokens.release ();
37732 /* Finalize #pragma acc routine clauses after direct declarator has
37733 been parsed. */
37735 static tree
37736 cp_parser_late_parsing_oacc_routine (cp_parser *parser, tree attrs)
37738 struct cp_token_cache *ce;
37739 cp_oacc_routine_data *data = parser->oacc_routine;
37741 if (!data->error_seen && data->fndecl_seen)
37743 error_at (data->loc,
37744 "%<#pragma acc routine%> not immediately followed by "
37745 "a single function declaration or definition");
37746 data->error_seen = true;
37748 if (data->error_seen)
37749 return attrs;
37751 gcc_checking_assert (data->tokens.length () == 1);
37752 ce = data->tokens[0];
37754 cp_parser_push_lexer_for_tokens (parser, ce);
37755 parser->lexer->in_pragma = true;
37756 gcc_assert (cp_lexer_peek_token (parser->lexer)->type == CPP_PRAGMA);
37758 cp_token *pragma_tok = cp_lexer_consume_token (parser->lexer);
37759 gcc_checking_assert (parser->oacc_routine->clauses == NULL_TREE);
37760 parser->oacc_routine->clauses
37761 = cp_parser_oacc_all_clauses (parser, OACC_ROUTINE_CLAUSE_MASK,
37762 "#pragma acc routine", pragma_tok);
37763 cp_parser_pop_lexer (parser);
37764 /* Later, cp_finalize_oacc_routine will process the clauses, and then set
37765 fndecl_seen. */
37767 return attrs;
37770 /* Apply any saved OpenACC routine clauses to a just-parsed
37771 declaration. */
37773 static void
37774 cp_finalize_oacc_routine (cp_parser *parser, tree fndecl, bool is_defn)
37776 if (__builtin_expect (parser->oacc_routine != NULL, 0))
37778 /* Keep going if we're in error reporting mode. */
37779 if (parser->oacc_routine->error_seen
37780 || fndecl == error_mark_node)
37781 return;
37783 if (parser->oacc_routine->fndecl_seen)
37785 error_at (parser->oacc_routine->loc,
37786 "%<#pragma acc routine%> not immediately followed by"
37787 " a single function declaration or definition");
37788 parser->oacc_routine = NULL;
37789 return;
37791 if (TREE_CODE (fndecl) != FUNCTION_DECL)
37793 cp_ensure_no_oacc_routine (parser);
37794 return;
37797 if (oacc_get_fn_attrib (fndecl))
37799 error_at (parser->oacc_routine->loc,
37800 "%<#pragma acc routine%> already applied to %qD", fndecl);
37801 parser->oacc_routine = NULL;
37802 return;
37805 if (TREE_USED (fndecl) || (!is_defn && DECL_SAVED_TREE (fndecl)))
37807 error_at (parser->oacc_routine->loc,
37808 TREE_USED (fndecl)
37809 ? G_("%<#pragma acc routine%> must be applied before use")
37810 : G_("%<#pragma acc routine%> must be applied before "
37811 "definition"));
37812 parser->oacc_routine = NULL;
37813 return;
37816 /* Process the routine's dimension clauses. */
37817 tree dims = oacc_build_routine_dims (parser->oacc_routine->clauses);
37818 oacc_replace_fn_attrib (fndecl, dims);
37820 /* Add an "omp declare target" attribute. */
37821 DECL_ATTRIBUTES (fndecl)
37822 = tree_cons (get_identifier ("omp declare target"),
37823 NULL_TREE, DECL_ATTRIBUTES (fndecl));
37825 /* Don't unset parser->oacc_routine here: we may still need it to
37826 diagnose wrong usage. But, remember that we've used this "#pragma acc
37827 routine". */
37828 parser->oacc_routine->fndecl_seen = true;
37832 /* Main entry point to OpenMP statement pragmas. */
37834 static void
37835 cp_parser_omp_construct (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
37837 tree stmt;
37838 char p_name[sizeof "#pragma omp teams distribute parallel for simd"];
37839 omp_clause_mask mask (0);
37841 switch (cp_parser_pragma_kind (pragma_tok))
37843 case PRAGMA_OACC_ATOMIC:
37844 cp_parser_omp_atomic (parser, pragma_tok);
37845 return;
37846 case PRAGMA_OACC_CACHE:
37847 stmt = cp_parser_oacc_cache (parser, pragma_tok);
37848 break;
37849 case PRAGMA_OACC_DATA:
37850 stmt = cp_parser_oacc_data (parser, pragma_tok, if_p);
37851 break;
37852 case PRAGMA_OACC_ENTER_DATA:
37853 stmt = cp_parser_oacc_enter_exit_data (parser, pragma_tok, true);
37854 break;
37855 case PRAGMA_OACC_EXIT_DATA:
37856 stmt = cp_parser_oacc_enter_exit_data (parser, pragma_tok, false);
37857 break;
37858 case PRAGMA_OACC_HOST_DATA:
37859 stmt = cp_parser_oacc_host_data (parser, pragma_tok, if_p);
37860 break;
37861 case PRAGMA_OACC_KERNELS:
37862 case PRAGMA_OACC_PARALLEL:
37863 strcpy (p_name, "#pragma acc");
37864 stmt = cp_parser_oacc_kernels_parallel (parser, pragma_tok, p_name,
37865 if_p);
37866 break;
37867 case PRAGMA_OACC_LOOP:
37868 strcpy (p_name, "#pragma acc");
37869 stmt = cp_parser_oacc_loop (parser, pragma_tok, p_name, mask, NULL,
37870 if_p);
37871 break;
37872 case PRAGMA_OACC_UPDATE:
37873 stmt = cp_parser_oacc_update (parser, pragma_tok);
37874 break;
37875 case PRAGMA_OACC_WAIT:
37876 stmt = cp_parser_oacc_wait (parser, pragma_tok);
37877 break;
37878 case PRAGMA_OMP_ATOMIC:
37879 cp_parser_omp_atomic (parser, pragma_tok);
37880 return;
37881 case PRAGMA_OMP_CRITICAL:
37882 stmt = cp_parser_omp_critical (parser, pragma_tok, if_p);
37883 break;
37884 case PRAGMA_OMP_DISTRIBUTE:
37885 strcpy (p_name, "#pragma omp");
37886 stmt = cp_parser_omp_distribute (parser, pragma_tok, p_name, mask, NULL,
37887 if_p);
37888 break;
37889 case PRAGMA_OMP_FOR:
37890 strcpy (p_name, "#pragma omp");
37891 stmt = cp_parser_omp_for (parser, pragma_tok, p_name, mask, NULL,
37892 if_p);
37893 break;
37894 case PRAGMA_OMP_MASTER:
37895 stmt = cp_parser_omp_master (parser, pragma_tok, if_p);
37896 break;
37897 case PRAGMA_OMP_PARALLEL:
37898 strcpy (p_name, "#pragma omp");
37899 stmt = cp_parser_omp_parallel (parser, pragma_tok, p_name, mask, NULL,
37900 if_p);
37901 break;
37902 case PRAGMA_OMP_SECTIONS:
37903 strcpy (p_name, "#pragma omp");
37904 stmt = cp_parser_omp_sections (parser, pragma_tok, p_name, mask, NULL);
37905 break;
37906 case PRAGMA_OMP_SIMD:
37907 strcpy (p_name, "#pragma omp");
37908 stmt = cp_parser_omp_simd (parser, pragma_tok, p_name, mask, NULL,
37909 if_p);
37910 break;
37911 case PRAGMA_OMP_SINGLE:
37912 stmt = cp_parser_omp_single (parser, pragma_tok, if_p);
37913 break;
37914 case PRAGMA_OMP_TASK:
37915 stmt = cp_parser_omp_task (parser, pragma_tok, if_p);
37916 break;
37917 case PRAGMA_OMP_TASKGROUP:
37918 stmt = cp_parser_omp_taskgroup (parser, pragma_tok, if_p);
37919 break;
37920 case PRAGMA_OMP_TASKLOOP:
37921 strcpy (p_name, "#pragma omp");
37922 stmt = cp_parser_omp_taskloop (parser, pragma_tok, p_name, mask, NULL,
37923 if_p);
37924 break;
37925 case PRAGMA_OMP_TEAMS:
37926 strcpy (p_name, "#pragma omp");
37927 stmt = cp_parser_omp_teams (parser, pragma_tok, p_name, mask, NULL,
37928 if_p);
37929 break;
37930 default:
37931 gcc_unreachable ();
37934 protected_set_expr_location (stmt, pragma_tok->location);
37937 /* Transactional Memory parsing routines. */
37939 /* Parse a transaction attribute.
37941 txn-attribute:
37942 attribute
37943 [ [ identifier ] ]
37945 We use this instead of cp_parser_attributes_opt for transactions to avoid
37946 the pedwarn in C++98 mode. */
37948 static tree
37949 cp_parser_txn_attribute_opt (cp_parser *parser)
37951 cp_token *token;
37952 tree attr_name, attr = NULL;
37954 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_ATTRIBUTE))
37955 return cp_parser_attributes_opt (parser);
37957 if (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_SQUARE))
37958 return NULL_TREE;
37959 cp_lexer_consume_token (parser->lexer);
37960 if (!cp_parser_require (parser, CPP_OPEN_SQUARE, RT_OPEN_SQUARE))
37961 goto error1;
37963 token = cp_lexer_peek_token (parser->lexer);
37964 if (token->type == CPP_NAME || token->type == CPP_KEYWORD)
37966 token = cp_lexer_consume_token (parser->lexer);
37968 attr_name = (token->type == CPP_KEYWORD
37969 /* For keywords, use the canonical spelling,
37970 not the parsed identifier. */
37971 ? ridpointers[(int) token->keyword]
37972 : token->u.value);
37973 attr = build_tree_list (attr_name, NULL_TREE);
37975 else
37976 cp_parser_error (parser, "expected identifier");
37978 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
37979 error1:
37980 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
37981 return attr;
37984 /* Parse a __transaction_atomic or __transaction_relaxed statement.
37986 transaction-statement:
37987 __transaction_atomic txn-attribute[opt] txn-noexcept-spec[opt]
37988 compound-statement
37989 __transaction_relaxed txn-noexcept-spec[opt] compound-statement
37992 static tree
37993 cp_parser_transaction (cp_parser *parser, cp_token *token)
37995 unsigned char old_in = parser->in_transaction;
37996 unsigned char this_in = 1, new_in;
37997 enum rid keyword = token->keyword;
37998 tree stmt, attrs, noex;
38000 cp_lexer_consume_token (parser->lexer);
38002 if (keyword == RID_TRANSACTION_RELAXED
38003 || keyword == RID_SYNCHRONIZED)
38004 this_in |= TM_STMT_ATTR_RELAXED;
38005 else
38007 attrs = cp_parser_txn_attribute_opt (parser);
38008 if (attrs)
38009 this_in |= parse_tm_stmt_attr (attrs, TM_STMT_ATTR_OUTER);
38012 /* Parse a noexcept specification. */
38013 if (keyword == RID_ATOMIC_NOEXCEPT)
38014 noex = boolean_true_node;
38015 else if (keyword == RID_ATOMIC_CANCEL)
38017 /* cancel-and-throw is unimplemented. */
38018 sorry ("atomic_cancel");
38019 noex = NULL_TREE;
38021 else
38022 noex = cp_parser_noexcept_specification_opt (parser, true, NULL, true);
38024 /* Keep track if we're in the lexical scope of an outer transaction. */
38025 new_in = this_in | (old_in & TM_STMT_ATTR_OUTER);
38027 stmt = begin_transaction_stmt (token->location, NULL, this_in);
38029 parser->in_transaction = new_in;
38030 cp_parser_compound_statement (parser, NULL, BCS_TRANSACTION, false);
38031 parser->in_transaction = old_in;
38033 finish_transaction_stmt (stmt, NULL, this_in, noex);
38035 return stmt;
38038 /* Parse a __transaction_atomic or __transaction_relaxed expression.
38040 transaction-expression:
38041 __transaction_atomic txn-noexcept-spec[opt] ( expression )
38042 __transaction_relaxed txn-noexcept-spec[opt] ( expression )
38045 static tree
38046 cp_parser_transaction_expression (cp_parser *parser, enum rid keyword)
38048 unsigned char old_in = parser->in_transaction;
38049 unsigned char this_in = 1;
38050 cp_token *token;
38051 tree expr, noex;
38052 bool noex_expr;
38053 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
38055 gcc_assert (keyword == RID_TRANSACTION_ATOMIC
38056 || keyword == RID_TRANSACTION_RELAXED);
38058 if (!flag_tm)
38059 error_at (loc,
38060 keyword == RID_TRANSACTION_RELAXED
38061 ? G_("%<__transaction_relaxed%> without transactional memory "
38062 "support enabled")
38063 : G_("%<__transaction_atomic%> without transactional memory "
38064 "support enabled"));
38066 token = cp_parser_require_keyword (parser, keyword,
38067 (keyword == RID_TRANSACTION_ATOMIC ? RT_TRANSACTION_ATOMIC
38068 : RT_TRANSACTION_RELAXED));
38069 gcc_assert (token != NULL);
38071 if (keyword == RID_TRANSACTION_RELAXED)
38072 this_in |= TM_STMT_ATTR_RELAXED;
38074 /* Set this early. This might mean that we allow transaction_cancel in
38075 an expression that we find out later actually has to be a constexpr.
38076 However, we expect that cxx_constant_value will be able to deal with
38077 this; also, if the noexcept has no constexpr, then what we parse next
38078 really is a transaction's body. */
38079 parser->in_transaction = this_in;
38081 /* Parse a noexcept specification. */
38082 noex = cp_parser_noexcept_specification_opt (parser, false, &noex_expr,
38083 true);
38085 if (!noex || !noex_expr
38086 || cp_lexer_peek_token (parser->lexer)->type == CPP_OPEN_PAREN)
38088 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
38090 expr = cp_parser_expression (parser);
38091 expr = finish_parenthesized_expr (expr);
38093 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
38095 else
38097 /* The only expression that is available got parsed for the noexcept
38098 already. noexcept is true then. */
38099 expr = noex;
38100 noex = boolean_true_node;
38103 expr = build_transaction_expr (token->location, expr, this_in, noex);
38104 parser->in_transaction = old_in;
38106 if (cp_parser_non_integral_constant_expression (parser, NIC_TRANSACTION))
38107 return error_mark_node;
38109 return (flag_tm ? expr : error_mark_node);
38112 /* Parse a function-transaction-block.
38114 function-transaction-block:
38115 __transaction_atomic txn-attribute[opt] ctor-initializer[opt]
38116 function-body
38117 __transaction_atomic txn-attribute[opt] function-try-block
38118 __transaction_relaxed ctor-initializer[opt] function-body
38119 __transaction_relaxed function-try-block
38122 static bool
38123 cp_parser_function_transaction (cp_parser *parser, enum rid keyword)
38125 unsigned char old_in = parser->in_transaction;
38126 unsigned char new_in = 1;
38127 tree compound_stmt, stmt, attrs;
38128 bool ctor_initializer_p;
38129 cp_token *token;
38131 gcc_assert (keyword == RID_TRANSACTION_ATOMIC
38132 || keyword == RID_TRANSACTION_RELAXED);
38133 token = cp_parser_require_keyword (parser, keyword,
38134 (keyword == RID_TRANSACTION_ATOMIC ? RT_TRANSACTION_ATOMIC
38135 : RT_TRANSACTION_RELAXED));
38136 gcc_assert (token != NULL);
38138 if (keyword == RID_TRANSACTION_RELAXED)
38139 new_in |= TM_STMT_ATTR_RELAXED;
38140 else
38142 attrs = cp_parser_txn_attribute_opt (parser);
38143 if (attrs)
38144 new_in |= parse_tm_stmt_attr (attrs, TM_STMT_ATTR_OUTER);
38147 stmt = begin_transaction_stmt (token->location, &compound_stmt, new_in);
38149 parser->in_transaction = new_in;
38151 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TRY))
38152 ctor_initializer_p = cp_parser_function_try_block (parser);
38153 else
38154 ctor_initializer_p = cp_parser_ctor_initializer_opt_and_function_body
38155 (parser, /*in_function_try_block=*/false);
38157 parser->in_transaction = old_in;
38159 finish_transaction_stmt (stmt, compound_stmt, new_in, NULL_TREE);
38161 return ctor_initializer_p;
38164 /* Parse a __transaction_cancel statement.
38166 cancel-statement:
38167 __transaction_cancel txn-attribute[opt] ;
38168 __transaction_cancel txn-attribute[opt] throw-expression ;
38170 ??? Cancel and throw is not yet implemented. */
38172 static tree
38173 cp_parser_transaction_cancel (cp_parser *parser)
38175 cp_token *token;
38176 bool is_outer = false;
38177 tree stmt, attrs;
38179 token = cp_parser_require_keyword (parser, RID_TRANSACTION_CANCEL,
38180 RT_TRANSACTION_CANCEL);
38181 gcc_assert (token != NULL);
38183 attrs = cp_parser_txn_attribute_opt (parser);
38184 if (attrs)
38185 is_outer = (parse_tm_stmt_attr (attrs, TM_STMT_ATTR_OUTER) != 0);
38187 /* ??? Parse cancel-and-throw here. */
38189 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
38191 if (!flag_tm)
38193 error_at (token->location, "%<__transaction_cancel%> without "
38194 "transactional memory support enabled");
38195 return error_mark_node;
38197 else if (parser->in_transaction & TM_STMT_ATTR_RELAXED)
38199 error_at (token->location, "%<__transaction_cancel%> within a "
38200 "%<__transaction_relaxed%>");
38201 return error_mark_node;
38203 else if (is_outer)
38205 if ((parser->in_transaction & TM_STMT_ATTR_OUTER) == 0
38206 && !is_tm_may_cancel_outer (current_function_decl))
38208 error_at (token->location, "outer %<__transaction_cancel%> not "
38209 "within outer %<__transaction_atomic%>");
38210 error_at (token->location,
38211 " or a %<transaction_may_cancel_outer%> function");
38212 return error_mark_node;
38215 else if (parser->in_transaction == 0)
38217 error_at (token->location, "%<__transaction_cancel%> not within "
38218 "%<__transaction_atomic%>");
38219 return error_mark_node;
38222 stmt = build_tm_abort_call (token->location, is_outer);
38223 add_stmt (stmt);
38225 return stmt;
38228 /* The parser. */
38230 static GTY (()) cp_parser *the_parser;
38233 /* Special handling for the first token or line in the file. The first
38234 thing in the file might be #pragma GCC pch_preprocess, which loads a
38235 PCH file, which is a GC collection point. So we need to handle this
38236 first pragma without benefit of an existing lexer structure.
38238 Always returns one token to the caller in *FIRST_TOKEN. This is
38239 either the true first token of the file, or the first token after
38240 the initial pragma. */
38242 static void
38243 cp_parser_initial_pragma (cp_token *first_token)
38245 tree name = NULL;
38247 cp_lexer_get_preprocessor_token (NULL, first_token);
38248 if (cp_parser_pragma_kind (first_token) != PRAGMA_GCC_PCH_PREPROCESS)
38249 return;
38251 cp_lexer_get_preprocessor_token (NULL, first_token);
38252 if (first_token->type == CPP_STRING)
38254 name = first_token->u.value;
38256 cp_lexer_get_preprocessor_token (NULL, first_token);
38257 if (first_token->type != CPP_PRAGMA_EOL)
38258 error_at (first_token->location,
38259 "junk at end of %<#pragma GCC pch_preprocess%>");
38261 else
38262 error_at (first_token->location, "expected string literal");
38264 /* Skip to the end of the pragma. */
38265 while (first_token->type != CPP_PRAGMA_EOL && first_token->type != CPP_EOF)
38266 cp_lexer_get_preprocessor_token (NULL, first_token);
38268 /* Now actually load the PCH file. */
38269 if (name)
38270 c_common_pch_pragma (parse_in, TREE_STRING_POINTER (name));
38272 /* Read one more token to return to our caller. We have to do this
38273 after reading the PCH file in, since its pointers have to be
38274 live. */
38275 cp_lexer_get_preprocessor_token (NULL, first_token);
38278 /* Parses the grainsize pragma for the _Cilk_for statement.
38279 Syntax:
38280 #pragma cilk grainsize = <VALUE>. */
38282 static void
38283 cp_parser_cilk_grainsize (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
38285 if (cp_parser_require (parser, CPP_EQ, RT_EQ))
38287 tree exp = cp_parser_binary_expression (parser, false, false,
38288 PREC_NOT_OPERATOR, NULL);
38289 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
38290 if (!exp || exp == error_mark_node)
38292 error_at (pragma_tok->location, "invalid grainsize for _Cilk_for");
38293 return;
38296 /* Make sure the next token is _Cilk_for, it is invalid otherwise. */
38297 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_CILK_FOR))
38298 cp_parser_cilk_for (parser, exp, if_p);
38299 else
38300 warning_at (cp_lexer_peek_token (parser->lexer)->location, 0,
38301 "%<#pragma cilk grainsize%> is not followed by "
38302 "%<_Cilk_for%>");
38303 return;
38305 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
38308 /* Normal parsing of a pragma token. Here we can (and must) use the
38309 regular lexer. */
38311 static bool
38312 cp_parser_pragma (cp_parser *parser, enum pragma_context context, bool *if_p)
38314 cp_token *pragma_tok;
38315 unsigned int id;
38316 tree stmt;
38317 bool ret;
38319 pragma_tok = cp_lexer_consume_token (parser->lexer);
38320 gcc_assert (pragma_tok->type == CPP_PRAGMA);
38321 parser->lexer->in_pragma = true;
38323 id = cp_parser_pragma_kind (pragma_tok);
38324 if (id != PRAGMA_OMP_DECLARE && id != PRAGMA_OACC_ROUTINE)
38325 cp_ensure_no_omp_declare_simd (parser);
38326 switch (id)
38328 case PRAGMA_GCC_PCH_PREPROCESS:
38329 error_at (pragma_tok->location,
38330 "%<#pragma GCC pch_preprocess%> must be first");
38331 break;
38333 case PRAGMA_OMP_BARRIER:
38334 switch (context)
38336 case pragma_compound:
38337 cp_parser_omp_barrier (parser, pragma_tok);
38338 return false;
38339 case pragma_stmt:
38340 error_at (pragma_tok->location, "%<#pragma %s%> may only be "
38341 "used in compound statements", "omp barrier");
38342 break;
38343 default:
38344 goto bad_stmt;
38346 break;
38348 case PRAGMA_OMP_FLUSH:
38349 switch (context)
38351 case pragma_compound:
38352 cp_parser_omp_flush (parser, pragma_tok);
38353 return false;
38354 case pragma_stmt:
38355 error_at (pragma_tok->location, "%<#pragma %s%> may only be "
38356 "used in compound statements", "omp flush");
38357 break;
38358 default:
38359 goto bad_stmt;
38361 break;
38363 case PRAGMA_OMP_TASKWAIT:
38364 switch (context)
38366 case pragma_compound:
38367 cp_parser_omp_taskwait (parser, pragma_tok);
38368 return false;
38369 case pragma_stmt:
38370 error_at (pragma_tok->location,
38371 "%<#pragma %s%> may only be used in compound statements",
38372 "omp taskwait");
38373 break;
38374 default:
38375 goto bad_stmt;
38377 break;
38379 case PRAGMA_OMP_TASKYIELD:
38380 switch (context)
38382 case pragma_compound:
38383 cp_parser_omp_taskyield (parser, pragma_tok);
38384 return false;
38385 case pragma_stmt:
38386 error_at (pragma_tok->location,
38387 "%<#pragma %s%> may only be used in compound statements",
38388 "omp taskyield");
38389 break;
38390 default:
38391 goto bad_stmt;
38393 break;
38395 case PRAGMA_OMP_CANCEL:
38396 switch (context)
38398 case pragma_compound:
38399 cp_parser_omp_cancel (parser, pragma_tok);
38400 return false;
38401 case pragma_stmt:
38402 error_at (pragma_tok->location,
38403 "%<#pragma %s%> may only be used in compound statements",
38404 "omp cancel");
38405 break;
38406 default:
38407 goto bad_stmt;
38409 break;
38411 case PRAGMA_OMP_CANCELLATION_POINT:
38412 cp_parser_omp_cancellation_point (parser, pragma_tok, context);
38413 return false;
38415 case PRAGMA_OMP_THREADPRIVATE:
38416 cp_parser_omp_threadprivate (parser, pragma_tok);
38417 return false;
38419 case PRAGMA_OMP_DECLARE:
38420 cp_parser_omp_declare (parser, pragma_tok, context);
38421 return false;
38423 case PRAGMA_OACC_DECLARE:
38424 cp_parser_oacc_declare (parser, pragma_tok);
38425 return false;
38427 case PRAGMA_OACC_ENTER_DATA:
38428 if (context == pragma_stmt)
38430 error_at (pragma_tok->location,
38431 "%<#pragma %s%> may only be used in compound statements",
38432 "acc enter data");
38433 break;
38435 else if (context != pragma_compound)
38436 goto bad_stmt;
38437 cp_parser_omp_construct (parser, pragma_tok, if_p);
38438 return true;
38440 case PRAGMA_OACC_EXIT_DATA:
38441 if (context == pragma_stmt)
38443 error_at (pragma_tok->location,
38444 "%<#pragma %s%> may only be used in compound statements",
38445 "acc exit data");
38446 break;
38448 else if (context != pragma_compound)
38449 goto bad_stmt;
38450 cp_parser_omp_construct (parser, pragma_tok, if_p);
38451 return true;
38453 case PRAGMA_OACC_ROUTINE:
38454 if (context != pragma_external)
38456 error_at (pragma_tok->location,
38457 "%<#pragma acc routine%> must be at file scope");
38458 break;
38460 cp_parser_oacc_routine (parser, pragma_tok, context);
38461 return false;
38463 case PRAGMA_OACC_UPDATE:
38464 if (context == pragma_stmt)
38466 error_at (pragma_tok->location,
38467 "%<#pragma %s%> may only be used in compound statements",
38468 "acc update");
38469 break;
38471 else if (context != pragma_compound)
38472 goto bad_stmt;
38473 cp_parser_omp_construct (parser, pragma_tok, if_p);
38474 return true;
38476 case PRAGMA_OACC_WAIT:
38477 if (context == pragma_stmt)
38479 error_at (pragma_tok->location,
38480 "%<#pragma %s%> may only be used in compound statements",
38481 "acc wait");
38482 break;
38484 else if (context != pragma_compound)
38485 goto bad_stmt;
38486 cp_parser_omp_construct (parser, pragma_tok, if_p);
38487 return true;
38489 case PRAGMA_OACC_ATOMIC:
38490 case PRAGMA_OACC_CACHE:
38491 case PRAGMA_OACC_DATA:
38492 case PRAGMA_OACC_HOST_DATA:
38493 case PRAGMA_OACC_KERNELS:
38494 case PRAGMA_OACC_PARALLEL:
38495 case PRAGMA_OACC_LOOP:
38496 case PRAGMA_OMP_ATOMIC:
38497 case PRAGMA_OMP_CRITICAL:
38498 case PRAGMA_OMP_DISTRIBUTE:
38499 case PRAGMA_OMP_FOR:
38500 case PRAGMA_OMP_MASTER:
38501 case PRAGMA_OMP_PARALLEL:
38502 case PRAGMA_OMP_SECTIONS:
38503 case PRAGMA_OMP_SIMD:
38504 case PRAGMA_OMP_SINGLE:
38505 case PRAGMA_OMP_TASK:
38506 case PRAGMA_OMP_TASKGROUP:
38507 case PRAGMA_OMP_TASKLOOP:
38508 case PRAGMA_OMP_TEAMS:
38509 if (context != pragma_stmt && context != pragma_compound)
38510 goto bad_stmt;
38511 stmt = push_omp_privatization_clauses (false);
38512 cp_parser_omp_construct (parser, pragma_tok, if_p);
38513 pop_omp_privatization_clauses (stmt);
38514 return true;
38516 case PRAGMA_OMP_ORDERED:
38517 if (context != pragma_stmt && context != pragma_compound)
38518 goto bad_stmt;
38519 stmt = push_omp_privatization_clauses (false);
38520 ret = cp_parser_omp_ordered (parser, pragma_tok, context, if_p);
38521 pop_omp_privatization_clauses (stmt);
38522 return ret;
38524 case PRAGMA_OMP_TARGET:
38525 if (context != pragma_stmt && context != pragma_compound)
38526 goto bad_stmt;
38527 stmt = push_omp_privatization_clauses (false);
38528 ret = cp_parser_omp_target (parser, pragma_tok, context, if_p);
38529 pop_omp_privatization_clauses (stmt);
38530 return ret;
38532 case PRAGMA_OMP_END_DECLARE_TARGET:
38533 cp_parser_omp_end_declare_target (parser, pragma_tok);
38534 return false;
38536 case PRAGMA_OMP_SECTION:
38537 error_at (pragma_tok->location,
38538 "%<#pragma omp section%> may only be used in "
38539 "%<#pragma omp sections%> construct");
38540 break;
38542 case PRAGMA_IVDEP:
38544 if (context == pragma_external)
38546 error_at (pragma_tok->location,
38547 "%<#pragma GCC ivdep%> must be inside a function");
38548 break;
38550 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
38551 cp_token *tok;
38552 tok = cp_lexer_peek_token (the_parser->lexer);
38553 if (tok->type != CPP_KEYWORD
38554 || (tok->keyword != RID_FOR && tok->keyword != RID_WHILE
38555 && tok->keyword != RID_DO))
38557 cp_parser_error (parser, "for, while or do statement expected");
38558 return false;
38560 cp_parser_iteration_statement (parser, if_p, true);
38561 return true;
38564 case PRAGMA_CILK_SIMD:
38565 if (context == pragma_external)
38567 error_at (pragma_tok->location,
38568 "%<#pragma simd%> must be inside a function");
38569 break;
38571 stmt = push_omp_privatization_clauses (false);
38572 cp_parser_cilk_simd (parser, pragma_tok, if_p);
38573 pop_omp_privatization_clauses (stmt);
38574 return true;
38576 case PRAGMA_CILK_GRAINSIZE:
38577 if (context == pragma_external)
38579 error_at (pragma_tok->location,
38580 "%<#pragma cilk grainsize%> must be inside a function");
38581 break;
38584 /* Ignore the pragma if Cilk Plus is not enabled. */
38585 if (flag_cilkplus)
38587 cp_parser_cilk_grainsize (parser, pragma_tok, if_p);
38588 return true;
38590 else
38592 error_at (pragma_tok->location, "-fcilkplus must be enabled to use "
38593 "%<#pragma cilk grainsize%>");
38594 break;
38597 default:
38598 gcc_assert (id >= PRAGMA_FIRST_EXTERNAL);
38599 c_invoke_pragma_handler (id);
38600 break;
38602 bad_stmt:
38603 cp_parser_error (parser, "expected declaration specifiers");
38604 break;
38607 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
38608 return false;
38611 /* The interface the pragma parsers have to the lexer. */
38613 enum cpp_ttype
38614 pragma_lex (tree *value, location_t *loc)
38616 cp_token *tok = cp_lexer_peek_token (the_parser->lexer);
38617 enum cpp_ttype ret = tok->type;
38619 *value = tok->u.value;
38620 if (loc)
38621 *loc = tok->location;
38623 if (ret == CPP_PRAGMA_EOL || ret == CPP_EOF)
38624 ret = CPP_EOF;
38625 else if (ret == CPP_STRING)
38626 *value = cp_parser_string_literal (the_parser, false, false);
38627 else
38629 if (ret == CPP_KEYWORD)
38630 ret = CPP_NAME;
38631 cp_lexer_consume_token (the_parser->lexer);
38634 return ret;
38638 /* External interface. */
38640 /* Parse one entire translation unit. */
38642 void
38643 c_parse_file (void)
38645 static bool already_called = false;
38647 if (already_called)
38648 fatal_error (input_location,
38649 "inter-module optimizations not implemented for C++");
38650 already_called = true;
38652 the_parser = cp_parser_new ();
38653 push_deferring_access_checks (flag_access_control
38654 ? dk_no_deferred : dk_no_check);
38655 cp_parser_translation_unit (the_parser);
38656 the_parser = NULL;
38659 /* Parses the Cilk Plus #pragma simd and SIMD-enabled function attribute's
38660 vectorlength clause:
38661 Syntax:
38662 vectorlength ( constant-expression ) */
38664 static tree
38665 cp_parser_cilk_simd_vectorlength (cp_parser *parser, tree clauses,
38666 bool is_simd_fn)
38668 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
38669 tree expr;
38670 /* The vectorlength clause in #pragma simd behaves exactly like OpenMP's
38671 safelen clause. Thus, vectorlength is represented as OMP 4.0
38672 safelen. For SIMD-enabled function it is represented by OMP 4.0
38673 simdlen. */
38674 if (!is_simd_fn)
38675 check_no_duplicate_clause (clauses, OMP_CLAUSE_SAFELEN, "vectorlength",
38676 loc);
38677 else
38678 check_no_duplicate_clause (clauses, OMP_CLAUSE_SIMDLEN, "vectorlength",
38679 loc);
38681 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
38682 return error_mark_node;
38684 expr = cp_parser_constant_expression (parser);
38685 expr = maybe_constant_value (expr);
38687 /* If expr == error_mark_node, then don't emit any errors nor
38688 create a clause. if any of the above functions returns
38689 error mark node then they would have emitted an error message. */
38690 if (expr == error_mark_node)
38692 else if (!TREE_TYPE (expr)
38693 || !TREE_CONSTANT (expr)
38694 || !INTEGRAL_TYPE_P (TREE_TYPE (expr)))
38695 error_at (loc, "vectorlength must be an integer constant");
38696 else if (TREE_CONSTANT (expr)
38697 && !pow2p_hwi (TREE_INT_CST_LOW (expr)))
38698 error_at (loc, "vectorlength must be a power of 2");
38699 else
38701 tree c;
38702 if (!is_simd_fn)
38704 c = build_omp_clause (loc, OMP_CLAUSE_SAFELEN);
38705 OMP_CLAUSE_SAFELEN_EXPR (c) = expr;
38706 OMP_CLAUSE_CHAIN (c) = clauses;
38707 clauses = c;
38709 else
38711 c = build_omp_clause (loc, OMP_CLAUSE_SIMDLEN);
38712 OMP_CLAUSE_SIMDLEN_EXPR (c) = expr;
38713 OMP_CLAUSE_CHAIN (c) = clauses;
38714 clauses = c;
38718 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
38719 return error_mark_node;
38720 return clauses;
38723 /* Handles the Cilk Plus #pragma simd linear clause.
38724 Syntax:
38725 linear ( simd-linear-variable-list )
38727 simd-linear-variable-list:
38728 simd-linear-variable
38729 simd-linear-variable-list , simd-linear-variable
38731 simd-linear-variable:
38732 id-expression
38733 id-expression : simd-linear-step
38735 simd-linear-step:
38736 conditional-expression */
38738 static tree
38739 cp_parser_cilk_simd_linear (cp_parser *parser, tree clauses)
38741 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
38743 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
38744 return clauses;
38745 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NAME))
38747 cp_parser_error (parser, "expected identifier");
38748 cp_parser_skip_to_closing_parenthesis (parser, false, false, true);
38749 return error_mark_node;
38752 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
38753 parser->colon_corrects_to_scope_p = false;
38754 while (1)
38756 cp_token *token = cp_lexer_peek_token (parser->lexer);
38757 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NAME))
38759 cp_parser_error (parser, "expected variable-name");
38760 clauses = error_mark_node;
38761 break;
38764 tree var_name = cp_parser_id_expression (parser, false, true, NULL,
38765 false, false);
38766 tree decl = cp_parser_lookup_name_simple (parser, var_name,
38767 token->location);
38768 if (decl == error_mark_node)
38770 cp_parser_name_lookup_error (parser, var_name, decl, NLE_NULL,
38771 token->location);
38772 clauses = error_mark_node;
38774 else
38776 tree e = NULL_TREE;
38777 tree step_size = integer_one_node;
38779 /* If present, parse the linear step. Otherwise, assume the default
38780 value of 1. */
38781 if (cp_lexer_peek_token (parser->lexer)->type == CPP_COLON)
38783 cp_lexer_consume_token (parser->lexer);
38785 e = cp_parser_assignment_expression (parser);
38786 e = maybe_constant_value (e);
38788 if (e == error_mark_node)
38790 /* If an error has occurred, then the whole pragma is
38791 considered ill-formed. Thus, no reason to keep
38792 parsing. */
38793 clauses = error_mark_node;
38794 break;
38796 else if (type_dependent_expression_p (e)
38797 || value_dependent_expression_p (e)
38798 || (TREE_TYPE (e)
38799 && INTEGRAL_TYPE_P (TREE_TYPE (e))
38800 && (TREE_CONSTANT (e)
38801 || DECL_P (e))))
38802 step_size = e;
38803 else
38804 cp_parser_error (parser,
38805 "step size must be an integer constant "
38806 "expression or an integer variable");
38809 /* Use the OMP_CLAUSE_LINEAR, which has the same semantics. */
38810 tree l = build_omp_clause (loc, OMP_CLAUSE_LINEAR);
38811 OMP_CLAUSE_DECL (l) = decl;
38812 OMP_CLAUSE_LINEAR_STEP (l) = step_size;
38813 OMP_CLAUSE_CHAIN (l) = clauses;
38814 clauses = l;
38816 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
38817 cp_lexer_consume_token (parser->lexer);
38818 else if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN))
38819 break;
38820 else
38822 error_at (cp_lexer_peek_token (parser->lexer)->location,
38823 "expected %<,%> or %<)%> after %qE", decl);
38824 clauses = error_mark_node;
38825 break;
38828 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
38829 cp_parser_skip_to_closing_parenthesis (parser, false, false, true);
38830 return clauses;
38833 /* Returns the name of the next clause. If the clause is not
38834 recognized, then PRAGMA_CILK_CLAUSE_NONE is returned and the next
38835 token is not consumed. Otherwise, the appropriate enum from the
38836 pragma_simd_clause is returned and the token is consumed. */
38838 static pragma_omp_clause
38839 cp_parser_cilk_simd_clause_name (cp_parser *parser)
38841 pragma_omp_clause clause_type;
38842 cp_token *token = cp_lexer_peek_token (parser->lexer);
38844 if (token->keyword == RID_PRIVATE)
38845 clause_type = PRAGMA_CILK_CLAUSE_PRIVATE;
38846 else if (!token->u.value || token->type != CPP_NAME)
38847 return PRAGMA_CILK_CLAUSE_NONE;
38848 else if (id_equal (token->u.value, "vectorlength"))
38849 clause_type = PRAGMA_CILK_CLAUSE_VECTORLENGTH;
38850 else if (id_equal (token->u.value, "linear"))
38851 clause_type = PRAGMA_CILK_CLAUSE_LINEAR;
38852 else if (id_equal (token->u.value, "firstprivate"))
38853 clause_type = PRAGMA_CILK_CLAUSE_FIRSTPRIVATE;
38854 else if (id_equal (token->u.value, "lastprivate"))
38855 clause_type = PRAGMA_CILK_CLAUSE_LASTPRIVATE;
38856 else if (id_equal (token->u.value, "reduction"))
38857 clause_type = PRAGMA_CILK_CLAUSE_REDUCTION;
38858 else
38859 return PRAGMA_CILK_CLAUSE_NONE;
38861 cp_lexer_consume_token (parser->lexer);
38862 return clause_type;
38865 /* Parses all the #pragma simd clauses. Returns a list of clauses found. */
38867 static tree
38868 cp_parser_cilk_simd_all_clauses (cp_parser *parser, cp_token *pragma_token)
38870 tree clauses = NULL_TREE;
38872 while (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL)
38873 && clauses != error_mark_node)
38875 pragma_omp_clause c_kind;
38876 c_kind = cp_parser_cilk_simd_clause_name (parser);
38877 if (c_kind == PRAGMA_CILK_CLAUSE_VECTORLENGTH)
38878 clauses = cp_parser_cilk_simd_vectorlength (parser, clauses, false);
38879 else if (c_kind == PRAGMA_CILK_CLAUSE_LINEAR)
38880 clauses = cp_parser_cilk_simd_linear (parser, clauses);
38881 else if (c_kind == PRAGMA_CILK_CLAUSE_PRIVATE)
38882 /* Use the OpenMP 4.0 equivalent function. */
38883 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_PRIVATE, clauses);
38884 else if (c_kind == PRAGMA_CILK_CLAUSE_FIRSTPRIVATE)
38885 /* Use the OpenMP 4.0 equivalent function. */
38886 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_FIRSTPRIVATE,
38887 clauses);
38888 else if (c_kind == PRAGMA_CILK_CLAUSE_LASTPRIVATE)
38889 /* Use the OMP 4.0 equivalent function. */
38890 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_LASTPRIVATE,
38891 clauses);
38892 else if (c_kind == PRAGMA_CILK_CLAUSE_REDUCTION)
38893 /* Use the OMP 4.0 equivalent function. */
38894 clauses = cp_parser_omp_clause_reduction (parser, clauses);
38895 else
38897 clauses = error_mark_node;
38898 cp_parser_error (parser, "expected %<#pragma simd%> clause");
38899 break;
38903 cp_parser_skip_to_pragma_eol (parser, pragma_token);
38905 if (clauses == error_mark_node)
38906 return error_mark_node;
38907 else
38908 return finish_omp_clauses (clauses, C_ORT_CILK);
38911 /* Main entry-point for parsing Cilk Plus <#pragma simd> for loops. */
38913 static void
38914 cp_parser_cilk_simd (cp_parser *parser, cp_token *pragma_token, bool *if_p)
38916 tree clauses = cp_parser_cilk_simd_all_clauses (parser, pragma_token);
38918 if (clauses == error_mark_node)
38919 return;
38921 if (cp_lexer_next_token_is_not_keyword (parser->lexer, RID_FOR))
38923 error_at (cp_lexer_peek_token (parser->lexer)->location,
38924 "for statement expected");
38925 return;
38928 tree sb = begin_omp_structured_block ();
38929 int save = cp_parser_begin_omp_structured_block (parser);
38930 tree ret = cp_parser_omp_for_loop (parser, CILK_SIMD, clauses, NULL, if_p);
38931 if (ret)
38932 cpp_validate_cilk_plus_loop (OMP_FOR_BODY (ret));
38933 cp_parser_end_omp_structured_block (parser, save);
38934 add_stmt (finish_omp_structured_block (sb));
38937 /* Main entry-point for parsing Cilk Plus _Cilk_for
38938 loops. The return value is error_mark_node
38939 when errors happen and CILK_FOR tree on success. */
38941 static tree
38942 cp_parser_cilk_for (cp_parser *parser, tree grain, bool *if_p)
38944 if (cp_lexer_next_token_is_not_keyword (parser->lexer, RID_CILK_FOR))
38945 gcc_unreachable ();
38947 tree sb = begin_omp_structured_block ();
38948 int save = cp_parser_begin_omp_structured_block (parser);
38950 tree clauses = build_omp_clause (EXPR_LOCATION (grain), OMP_CLAUSE_SCHEDULE);
38951 OMP_CLAUSE_SCHEDULE_KIND (clauses) = OMP_CLAUSE_SCHEDULE_CILKFOR;
38952 OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (clauses) = grain;
38953 clauses = finish_omp_clauses (clauses, C_ORT_CILK);
38955 tree ret = cp_parser_omp_for_loop (parser, CILK_FOR, clauses, NULL, if_p);
38956 if (ret)
38957 cpp_validate_cilk_plus_loop (ret);
38958 else
38959 ret = error_mark_node;
38961 cp_parser_end_omp_structured_block (parser, save);
38962 add_stmt (finish_omp_structured_block (sb));
38963 return ret;
38966 /* Create an identifier for a generic parameter type (a synthesized
38967 template parameter implied by `auto' or a concept identifier). */
38969 static GTY(()) int generic_parm_count;
38970 static tree
38971 make_generic_type_name ()
38973 char buf[32];
38974 sprintf (buf, "auto:%d", ++generic_parm_count);
38975 return get_identifier (buf);
38978 /* Add an implicit template type parameter to the CURRENT_TEMPLATE_PARMS
38979 (creating a new template parameter list if necessary). Returns the newly
38980 created template type parm. */
38982 static tree
38983 synthesize_implicit_template_parm (cp_parser *parser, tree constr)
38985 gcc_assert (current_binding_level->kind == sk_function_parms);
38987 /* Before committing to modifying any scope, if we're in an
38988 implicit template scope, and we're trying to synthesize a
38989 constrained parameter, try to find a previous parameter with
38990 the same name. This is the same-type rule for abbreviated
38991 function templates.
38993 NOTE: We can generate implicit parameters when tentatively
38994 parsing a nested name specifier, only to reject that parse
38995 later. However, matching the same template-id as part of a
38996 direct-declarator should generate an identical template
38997 parameter, so this rule will merge them. */
38998 if (parser->implicit_template_scope && constr)
39000 tree t = parser->implicit_template_parms;
39001 while (t)
39003 if (equivalent_placeholder_constraints (TREE_TYPE (t), constr))
39005 tree d = TREE_VALUE (t);
39006 if (TREE_CODE (d) == PARM_DECL)
39007 /* Return the TEMPLATE_PARM_INDEX. */
39008 d = DECL_INITIAL (d);
39009 return d;
39011 t = TREE_CHAIN (t);
39015 /* We are either continuing a function template that already contains implicit
39016 template parameters, creating a new fully-implicit function template, or
39017 extending an existing explicit function template with implicit template
39018 parameters. */
39020 cp_binding_level *const entry_scope = current_binding_level;
39022 bool become_template = false;
39023 cp_binding_level *parent_scope = 0;
39025 if (parser->implicit_template_scope)
39027 gcc_assert (parser->implicit_template_parms);
39029 current_binding_level = parser->implicit_template_scope;
39031 else
39033 /* Roll back to the existing template parameter scope (in the case of
39034 extending an explicit function template) or introduce a new template
39035 parameter scope ahead of the function parameter scope (or class scope
39036 in the case of out-of-line member definitions). The function scope is
39037 added back after template parameter synthesis below. */
39039 cp_binding_level *scope = entry_scope;
39041 while (scope->kind == sk_function_parms)
39043 parent_scope = scope;
39044 scope = scope->level_chain;
39046 if (current_class_type && !LAMBDA_TYPE_P (current_class_type))
39048 /* If not defining a class, then any class scope is a scope level in
39049 an out-of-line member definition. In this case simply wind back
39050 beyond the first such scope to inject the template parameter list.
39051 Otherwise wind back to the class being defined. The latter can
39052 occur in class member friend declarations such as:
39054 class A {
39055 void foo (auto);
39057 class B {
39058 friend void A::foo (auto);
39061 The template parameter list synthesized for the friend declaration
39062 must be injected in the scope of 'B'. This can also occur in
39063 erroneous cases such as:
39065 struct A {
39066 struct B {
39067 void foo (auto);
39069 void B::foo (auto) {}
39072 Here the attempted definition of 'B::foo' within 'A' is ill-formed
39073 but, nevertheless, the template parameter list synthesized for the
39074 declarator should be injected into the scope of 'A' as if the
39075 ill-formed template was specified explicitly. */
39077 while (scope->kind == sk_class && !scope->defining_class_p)
39079 parent_scope = scope;
39080 scope = scope->level_chain;
39084 current_binding_level = scope;
39086 if (scope->kind != sk_template_parms
39087 || !function_being_declared_is_template_p (parser))
39089 /* Introduce a new template parameter list for implicit template
39090 parameters. */
39092 become_template = true;
39094 parser->implicit_template_scope
39095 = begin_scope (sk_template_parms, NULL);
39097 ++processing_template_decl;
39099 parser->fully_implicit_function_template_p = true;
39100 ++parser->num_template_parameter_lists;
39102 else
39104 /* Synthesize implicit template parameters at the end of the explicit
39105 template parameter list. */
39107 gcc_assert (current_template_parms);
39109 parser->implicit_template_scope = scope;
39111 tree v = INNERMOST_TEMPLATE_PARMS (current_template_parms);
39112 parser->implicit_template_parms
39113 = TREE_VEC_ELT (v, TREE_VEC_LENGTH (v) - 1);
39117 /* Synthesize a new template parameter and track the current template
39118 parameter chain with implicit_template_parms. */
39120 tree proto = constr ? DECL_INITIAL (constr) : NULL_TREE;
39121 tree synth_id = make_generic_type_name ();
39122 tree synth_tmpl_parm;
39123 bool non_type = false;
39125 if (proto == NULL_TREE || TREE_CODE (proto) == TYPE_DECL)
39126 synth_tmpl_parm
39127 = finish_template_type_parm (class_type_node, synth_id);
39128 else if (TREE_CODE (proto) == TEMPLATE_DECL)
39129 synth_tmpl_parm
39130 = finish_constrained_template_template_parm (proto, synth_id);
39131 else
39133 synth_tmpl_parm = copy_decl (proto);
39134 DECL_NAME (synth_tmpl_parm) = synth_id;
39135 non_type = true;
39138 // Attach the constraint to the parm before processing.
39139 tree node = build_tree_list (NULL_TREE, synth_tmpl_parm);
39140 TREE_TYPE (node) = constr;
39141 tree new_parm
39142 = process_template_parm (parser->implicit_template_parms,
39143 input_location,
39144 node,
39145 /*non_type=*/non_type,
39146 /*param_pack=*/false);
39148 // Chain the new parameter to the list of implicit parameters.
39149 if (parser->implicit_template_parms)
39150 parser->implicit_template_parms
39151 = TREE_CHAIN (parser->implicit_template_parms);
39152 else
39153 parser->implicit_template_parms = new_parm;
39155 tree new_decl = get_local_decls ();
39156 if (non_type)
39157 /* Return the TEMPLATE_PARM_INDEX, not the PARM_DECL. */
39158 new_decl = DECL_INITIAL (new_decl);
39160 /* If creating a fully implicit function template, start the new implicit
39161 template parameter list with this synthesized type, otherwise grow the
39162 current template parameter list. */
39164 if (become_template)
39166 parent_scope->level_chain = current_binding_level;
39168 tree new_parms = make_tree_vec (1);
39169 TREE_VEC_ELT (new_parms, 0) = parser->implicit_template_parms;
39170 current_template_parms = tree_cons (size_int (processing_template_decl),
39171 new_parms, current_template_parms);
39173 else
39175 tree& new_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
39176 int new_parm_idx = TREE_VEC_LENGTH (new_parms);
39177 new_parms = grow_tree_vec (new_parms, new_parm_idx + 1);
39178 TREE_VEC_ELT (new_parms, new_parm_idx) = parser->implicit_template_parms;
39181 // If the new parameter was constrained, we need to add that to the
39182 // constraints in the template parameter list.
39183 if (tree req = TEMPLATE_PARM_CONSTRAINTS (tree_last (new_parm)))
39185 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
39186 reqs = conjoin_constraints (reqs, req);
39187 TEMPLATE_PARMS_CONSTRAINTS (current_template_parms) = reqs;
39190 current_binding_level = entry_scope;
39192 return new_decl;
39195 /* Finish the declaration of a fully implicit function template. Such a
39196 template has no explicit template parameter list so has not been through the
39197 normal template head and tail processing. synthesize_implicit_template_parm
39198 tries to do the head; this tries to do the tail. MEMBER_DECL_OPT should be
39199 provided if the declaration is a class member such that its template
39200 declaration can be completed. If MEMBER_DECL_OPT is provided the finished
39201 form is returned. Otherwise NULL_TREE is returned. */
39203 static tree
39204 finish_fully_implicit_template (cp_parser *parser, tree member_decl_opt)
39206 gcc_assert (parser->fully_implicit_function_template_p);
39208 if (member_decl_opt && member_decl_opt != error_mark_node
39209 && DECL_VIRTUAL_P (member_decl_opt))
39211 error_at (DECL_SOURCE_LOCATION (member_decl_opt),
39212 "implicit templates may not be %<virtual%>");
39213 DECL_VIRTUAL_P (member_decl_opt) = false;
39216 if (member_decl_opt)
39217 member_decl_opt = finish_member_template_decl (member_decl_opt);
39218 end_template_decl ();
39220 parser->fully_implicit_function_template_p = false;
39221 --parser->num_template_parameter_lists;
39223 return member_decl_opt;
39226 #include "gt-cp-parser.h"