re PR c++/71105 (lambdas with default captures improperly have function pointer conve...
[gcc.git] / gcc / cp / parser.c
1 /* -*- C++ -*- Parser.
2 Copyright (C) 2000-2016 Free Software Foundation, Inc.
3 Written by Mark Mitchell <mark@codesourcery.com>.
4
5 This file is part of GCC.
6
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.
11
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.
16
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/>. */
20
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "cp-tree.h"
25 #include "c-family/c-common.h"
26 #include "timevar.h"
27 #include "stringpool.h"
28 #include "cgraph.h"
29 #include "print-tree.h"
30 #include "attribs.h"
31 #include "trans-mem.h"
32 #include "intl.h"
33 #include "decl.h"
34 #include "c-family/c-objc.h"
35 #include "plugin.h"
36 #include "tree-pretty-print.h"
37 #include "parser.h"
38 #include "omp-low.h"
39 #include "gomp-constants.h"
40 #include "c-family/c-indentation.h"
41 #include "context.h"
42 #include "cp-cilkplus.h"
43
44 \f
45 /* The lexer. */
46
47 /* The cp_lexer_* routines mediate between the lexer proper (in libcpp
48 and c-lex.c) and the C++ parser. */
49
50 static cp_token eof_token =
51 {
52 CPP_EOF, RID_MAX, 0, false, false, false, 0, { NULL }
53 };
54
55 /* The various kinds of non integral constant we encounter. */
56 enum non_integral_constant {
57 NIC_NONE,
58 /* floating-point literal */
59 NIC_FLOAT,
60 /* %<this%> */
61 NIC_THIS,
62 /* %<__FUNCTION__%> */
63 NIC_FUNC_NAME,
64 /* %<__PRETTY_FUNCTION__%> */
65 NIC_PRETTY_FUNC,
66 /* %<__func__%> */
67 NIC_C99_FUNC,
68 /* "%<va_arg%> */
69 NIC_VA_ARG,
70 /* a cast */
71 NIC_CAST,
72 /* %<typeid%> operator */
73 NIC_TYPEID,
74 /* non-constant compound literals */
75 NIC_NCC,
76 /* a function call */
77 NIC_FUNC_CALL,
78 /* an increment */
79 NIC_INC,
80 /* an decrement */
81 NIC_DEC,
82 /* an array reference */
83 NIC_ARRAY_REF,
84 /* %<->%> */
85 NIC_ARROW,
86 /* %<.%> */
87 NIC_POINT,
88 /* the address of a label */
89 NIC_ADDR_LABEL,
90 /* %<*%> */
91 NIC_STAR,
92 /* %<&%> */
93 NIC_ADDR,
94 /* %<++%> */
95 NIC_PREINCREMENT,
96 /* %<--%> */
97 NIC_PREDECREMENT,
98 /* %<new%> */
99 NIC_NEW,
100 /* %<delete%> */
101 NIC_DEL,
102 /* calls to overloaded operators */
103 NIC_OVERLOADED,
104 /* an assignment */
105 NIC_ASSIGNMENT,
106 /* a comma operator */
107 NIC_COMMA,
108 /* a call to a constructor */
109 NIC_CONSTRUCTOR,
110 /* a transaction expression */
111 NIC_TRANSACTION
112 };
113
114 /* The various kinds of errors about name-lookup failing. */
115 enum name_lookup_error {
116 /* NULL */
117 NLE_NULL,
118 /* is not a type */
119 NLE_TYPE,
120 /* is not a class or namespace */
121 NLE_CXX98,
122 /* is not a class, namespace, or enumeration */
123 NLE_NOT_CXX98
124 };
125
126 /* The various kinds of required token */
127 enum required_token {
128 RT_NONE,
129 RT_SEMICOLON, /* ';' */
130 RT_OPEN_PAREN, /* '(' */
131 RT_CLOSE_BRACE, /* '}' */
132 RT_OPEN_BRACE, /* '{' */
133 RT_CLOSE_SQUARE, /* ']' */
134 RT_OPEN_SQUARE, /* '[' */
135 RT_COMMA, /* ',' */
136 RT_SCOPE, /* '::' */
137 RT_LESS, /* '<' */
138 RT_GREATER, /* '>' */
139 RT_EQ, /* '=' */
140 RT_ELLIPSIS, /* '...' */
141 RT_MULT, /* '*' */
142 RT_COMPL, /* '~' */
143 RT_COLON, /* ':' */
144 RT_COLON_SCOPE, /* ':' or '::' */
145 RT_CLOSE_PAREN, /* ')' */
146 RT_COMMA_CLOSE_PAREN, /* ',' or ')' */
147 RT_PRAGMA_EOL, /* end of line */
148 RT_NAME, /* identifier */
149
150 /* The type is CPP_KEYWORD */
151 RT_NEW, /* new */
152 RT_DELETE, /* delete */
153 RT_RETURN, /* return */
154 RT_WHILE, /* while */
155 RT_EXTERN, /* extern */
156 RT_STATIC_ASSERT, /* static_assert */
157 RT_DECLTYPE, /* decltype */
158 RT_OPERATOR, /* operator */
159 RT_CLASS, /* class */
160 RT_TEMPLATE, /* template */
161 RT_NAMESPACE, /* namespace */
162 RT_USING, /* using */
163 RT_ASM, /* asm */
164 RT_TRY, /* try */
165 RT_CATCH, /* catch */
166 RT_THROW, /* throw */
167 RT_LABEL, /* __label__ */
168 RT_AT_TRY, /* @try */
169 RT_AT_SYNCHRONIZED, /* @synchronized */
170 RT_AT_THROW, /* @throw */
171
172 RT_SELECT, /* selection-statement */
173 RT_INTERATION, /* iteration-statement */
174 RT_JUMP, /* jump-statement */
175 RT_CLASS_KEY, /* class-key */
176 RT_CLASS_TYPENAME_TEMPLATE, /* class, typename, or template */
177 RT_TRANSACTION_ATOMIC, /* __transaction_atomic */
178 RT_TRANSACTION_RELAXED, /* __transaction_relaxed */
179 RT_TRANSACTION_CANCEL /* __transaction_cancel */
180 };
181
182 /* RAII wrapper for parser->in_type_id_in_expr_p, setting it on creation and
183 reverting it on destruction. */
184
185 class type_id_in_expr_sentinel
186 {
187 cp_parser *parser;
188 bool saved;
189 public:
190 type_id_in_expr_sentinel (cp_parser *parser, bool set = true)
191 : parser (parser),
192 saved (parser->in_type_id_in_expr_p)
193 { parser->in_type_id_in_expr_p = set; }
194 ~type_id_in_expr_sentinel ()
195 { parser->in_type_id_in_expr_p = saved; }
196 };
197
198 /* Prototypes. */
199
200 static cp_lexer *cp_lexer_new_main
201 (void);
202 static cp_lexer *cp_lexer_new_from_tokens
203 (cp_token_cache *tokens);
204 static void cp_lexer_destroy
205 (cp_lexer *);
206 static int cp_lexer_saving_tokens
207 (const cp_lexer *);
208 static cp_token *cp_lexer_token_at
209 (cp_lexer *, cp_token_position);
210 static void cp_lexer_get_preprocessor_token
211 (cp_lexer *, cp_token *);
212 static inline cp_token *cp_lexer_peek_token
213 (cp_lexer *);
214 static cp_token *cp_lexer_peek_nth_token
215 (cp_lexer *, size_t);
216 static inline bool cp_lexer_next_token_is
217 (cp_lexer *, enum cpp_ttype);
218 static bool cp_lexer_next_token_is_not
219 (cp_lexer *, enum cpp_ttype);
220 static bool cp_lexer_next_token_is_keyword
221 (cp_lexer *, enum rid);
222 static cp_token *cp_lexer_consume_token
223 (cp_lexer *);
224 static void cp_lexer_purge_token
225 (cp_lexer *);
226 static void cp_lexer_purge_tokens_after
227 (cp_lexer *, cp_token_position);
228 static void cp_lexer_save_tokens
229 (cp_lexer *);
230 static void cp_lexer_commit_tokens
231 (cp_lexer *);
232 static void cp_lexer_rollback_tokens
233 (cp_lexer *);
234 static void cp_lexer_print_token
235 (FILE *, cp_token *);
236 static inline bool cp_lexer_debugging_p
237 (cp_lexer *);
238 static void cp_lexer_start_debugging
239 (cp_lexer *) ATTRIBUTE_UNUSED;
240 static void cp_lexer_stop_debugging
241 (cp_lexer *) ATTRIBUTE_UNUSED;
242
243 static cp_token_cache *cp_token_cache_new
244 (cp_token *, cp_token *);
245
246 static void cp_parser_initial_pragma
247 (cp_token *);
248
249 static tree cp_literal_operator_id
250 (const char *);
251
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);
262
263 /* Manifest constants. */
264 #define CP_LEXER_BUFFER_SIZE ((256 * 1024) / sizeof (cp_token))
265 #define CP_SAVED_TOKEN_STACK 5
266
267 /* Variables. */
268
269 /* The stream to which debugging output should be written. */
270 static FILE *cp_lexer_debug_stream;
271
272 /* Nonzero if we are parsing an unevaluated operand: an operand to
273 sizeof, typeof, or alignof. */
274 int cp_unevaluated_operand;
275
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 [[ ]]. */
281
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)
286 {
287 unsigned i, nprinted;
288 cp_token *token;
289 bool do_print;
290
291 fprintf (file, "%u tokens\n", vec_safe_length (buffer));
292
293 if (buffer == NULL)
294 return;
295
296 if (num == 0)
297 num = buffer->length ();
298
299 if (start_token == NULL)
300 start_token = buffer->address ();
301
302 if (start_token > buffer->address ())
303 {
304 cp_lexer_print_token (file, &(*buffer)[0]);
305 fprintf (file, " ... ");
306 }
307
308 do_print = false;
309 nprinted = 0;
310 for (i = 0; buffer->iterate (i, &token) && nprinted < num; i++)
311 {
312 if (token == start_token)
313 do_print = true;
314
315 if (!do_print)
316 continue;
317
318 nprinted++;
319 if (token == curr_token)
320 fprintf (file, "[[");
321
322 cp_lexer_print_token (file, token);
323
324 if (token == curr_token)
325 fprintf (file, "]]");
326
327 switch (token->type)
328 {
329 case CPP_SEMICOLON:
330 case CPP_OPEN_BRACE:
331 case CPP_CLOSE_BRACE:
332 case CPP_EOF:
333 fputc ('\n', file);
334 break;
335
336 default:
337 fputc (' ', file);
338 }
339 }
340
341 if (i == num && i < buffer->length ())
342 {
343 fprintf (file, " ... ");
344 cp_lexer_print_token (file, &buffer->last ());
345 }
346
347 fprintf (file, "\n");
348 }
349
350
351 /* Dump all tokens in BUFFER to stderr. */
352
353 void
354 cp_lexer_debug_tokens (vec<cp_token, va_gc> *buffer)
355 {
356 cp_lexer_dump_tokens (stderr, buffer, NULL, 0, NULL);
357 }
358
359 DEBUG_FUNCTION void
360 debug (vec<cp_token, va_gc> &ref)
361 {
362 cp_lexer_dump_tokens (stderr, &ref, NULL, 0, NULL);
363 }
364
365 DEBUG_FUNCTION void
366 debug (vec<cp_token, va_gc> *ptr)
367 {
368 if (ptr)
369 debug (*ptr);
370 else
371 fprintf (stderr, "<nil>\n");
372 }
373
374
375 /* Dump the cp_parser tree field T to FILE if T is non-NULL. DESC is the
376 description for T. */
377
378 static void
379 cp_debug_print_tree_if_set (FILE *file, const char *desc, tree t)
380 {
381 if (t)
382 {
383 fprintf (file, "%s: ", desc);
384 print_node_brief (file, "", t, 0);
385 }
386 }
387
388
389 /* Dump parser context C to FILE. */
390
391 static void
392 cp_debug_print_context (FILE *file, cp_parser_context *c)
393 {
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");
398 }
399
400
401 /* Print the stack of parsing contexts to FILE starting with FIRST. */
402
403 static void
404 cp_debug_print_context_stack (FILE *file, cp_parser_context *first)
405 {
406 unsigned i;
407 cp_parser_context *c;
408
409 fprintf (file, "Parsing context stack:\n");
410 for (i = 0, c = first; c; c = c->next, i++)
411 {
412 fprintf (file, "\t#%u: ", i);
413 cp_debug_print_context (file, c);
414 }
415 }
416
417
418 /* Print the value of FLAG to FILE. DESC is a string describing the flag. */
419
420 static void
421 cp_debug_print_flag (FILE *file, const char *desc, bool flag)
422 {
423 if (flag)
424 fprintf (file, "%s: true\n", desc);
425 }
426
427
428 /* Print an unparsed function entry UF to FILE. */
429
430 static void
431 cp_debug_print_unparsed_function (FILE *file, cp_unparsed_functions_entry *uf)
432 {
433 unsigned i;
434 cp_default_arg_entry *default_arg_fn;
435 tree fn;
436
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++)
441 {
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");
447 }
448
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++)
452 {
453 print_node_brief (file, "", fn, 0);
454 fprintf (file, " ");
455 }
456 fprintf (file, "\n");
457
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++)
461 {
462 print_node_brief (file, "", fn, 0);
463 fprintf (file, " ");
464 }
465 fprintf (file, "\n");
466 }
467
468
469 /* Print the stack of unparsed member functions S to FILE. */
470
471 static void
472 cp_debug_print_unparsed_queues (FILE *file,
473 vec<cp_unparsed_functions_entry, va_gc> *s)
474 {
475 unsigned i;
476 cp_unparsed_functions_entry *uf;
477
478 fprintf (file, "Unparsed functions\n");
479 for (i = 0; vec_safe_iterate (s, i, &uf); i++)
480 {
481 fprintf (file, "#%u:\n", i);
482 cp_debug_print_unparsed_function (file, uf);
483 }
484 }
485
486
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. */
489
490 static void
491 cp_debug_parser_tokens (FILE *file, cp_parser *parser, int window_size)
492 {
493 cp_token *next_token, *first_token, *start_token;
494
495 if (file == NULL)
496 file = stderr;
497
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);
505 }
506
507
508 /* Dump debugging information for the given PARSER. If FILE is NULL,
509 the output is printed on stderr. */
510
511 void
512 cp_debug_parser (FILE *file, cp_parser *parser)
513 {
514 const size_t window_size = 20;
515 cp_token *token;
516 expanded_location eloc;
517
518 if (file == NULL)
519 file = stderr;
520
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);
594 }
595
596 DEBUG_FUNCTION void
597 debug (cp_parser &ref)
598 {
599 cp_debug_parser (stderr, &ref);
600 }
601
602 DEBUG_FUNCTION void
603 debug (cp_parser *ptr)
604 {
605 if (ptr)
606 debug (*ptr);
607 else
608 fprintf (stderr, "<nil>\n");
609 }
610
611 /* Allocate memory for a new lexer object and return it. */
612
613 static cp_lexer *
614 cp_lexer_alloc (void)
615 {
616 cp_lexer *lexer;
617
618 c_common_no_more_pch ();
619
620 /* Allocate the memory. */
621 lexer = ggc_cleared_alloc<cp_lexer> ();
622
623 /* Initially we are not debugging. */
624 lexer->debugging_p = false;
625
626 lexer->saved_tokens.create (CP_SAVED_TOKEN_STACK);
627
628 /* Create the buffer. */
629 vec_alloc (lexer->buffer, CP_LEXER_BUFFER_SIZE);
630
631 return lexer;
632 }
633
634
635 /* Create a new main C++ lexer, the lexer that gets tokens from the
636 preprocessor. */
637
638 static cp_lexer *
639 cp_lexer_new_main (void)
640 {
641 cp_lexer *lexer;
642 cp_token token;
643
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);
648
649 lexer = cp_lexer_alloc ();
650
651 /* Put the first token in the buffer. */
652 lexer->buffer->quick_push (token);
653
654 /* Get the remaining tokens from the preprocessor. */
655 while (token.type != CPP_EOF)
656 {
657 cp_lexer_get_preprocessor_token (lexer, &token);
658 vec_safe_push (lexer->buffer, token);
659 }
660
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;
667
668 /* Subsequent preprocessor diagnostics should use compiler
669 diagnostic functions to get the compiler source location. */
670 done_lexing = true;
671
672 gcc_assert (!lexer->next_token->purged_p);
673 return lexer;
674 }
675
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. */
678
679 static cp_lexer *
680 cp_lexer_new_from_tokens (cp_token_cache *cache)
681 {
682 cp_token *first = cache->first;
683 cp_token *last = cache->last;
684 cp_lexer *lexer = ggc_cleared_alloc<cp_lexer> ();
685
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;
690
691 lexer->saved_tokens.create (CP_SAVED_TOKEN_STACK);
692
693 /* Initially we are not debugging. */
694 lexer->debugging_p = false;
695
696 gcc_assert (!lexer->next_token->purged_p);
697 return lexer;
698 }
699
700 /* Frees all resources associated with LEXER. */
701
702 static void
703 cp_lexer_destroy (cp_lexer *lexer)
704 {
705 vec_free (lexer->buffer);
706 lexer->saved_tokens.release ();
707 ggc_free (lexer);
708 }
709
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. */
714
715 #define LEXER_DEBUGGING_ENABLED_P false
716
717 /* Returns nonzero if debugging information should be output. */
718
719 static inline bool
720 cp_lexer_debugging_p (cp_lexer *lexer)
721 {
722 if (!LEXER_DEBUGGING_ENABLED_P)
723 return false;
724
725 return lexer->debugging_p;
726 }
727
728
729 static inline cp_token_position
730 cp_lexer_token_position (cp_lexer *lexer, bool previous_p)
731 {
732 gcc_assert (!previous_p || lexer->next_token != &eof_token);
733
734 return lexer->next_token - previous_p;
735 }
736
737 static inline cp_token *
738 cp_lexer_token_at (cp_lexer * /*lexer*/, cp_token_position pos)
739 {
740 return pos;
741 }
742
743 static inline void
744 cp_lexer_set_token_position (cp_lexer *lexer, cp_token_position pos)
745 {
746 lexer->next_token = cp_lexer_token_at (lexer, pos);
747 }
748
749 static inline cp_token_position
750 cp_lexer_previous_token_position (cp_lexer *lexer)
751 {
752 if (lexer->next_token == &eof_token)
753 return lexer->last_token - 1;
754 else
755 return cp_lexer_token_position (lexer, true);
756 }
757
758 static inline cp_token *
759 cp_lexer_previous_token (cp_lexer *lexer)
760 {
761 cp_token_position tp = cp_lexer_previous_token_position (lexer);
762
763 /* Skip past purged tokens. */
764 while (tp->purged_p)
765 {
766 gcc_assert (tp != lexer->buffer->address ());
767 tp--;
768 }
769
770 return cp_lexer_token_at (lexer, tp);
771 }
772
773 /* nonzero if we are presently saving tokens. */
774
775 static inline int
776 cp_lexer_saving_tokens (const cp_lexer* lexer)
777 {
778 return lexer->saved_tokens.length () != 0;
779 }
780
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. */
785
786 static void
787 cp_lexer_get_preprocessor_token (cp_lexer *lexer, cp_token *token)
788 {
789 static int is_extern_c = 0;
790
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;
798
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;
805
806 /* Check to see if this token is a keyword. */
807 if (token->type == CPP_NAME)
808 {
809 if (C_IS_RESERVED_WORD (token->u.value))
810 {
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);
815 }
816 else
817 {
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)
821 {
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);
827
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);
831 }
832
833 token->keyword = RID_MAX;
834 }
835 }
836 else if (token->type == CPP_AT_NAME)
837 {
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))
841 {
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.
849 */
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);
859 }
860 }
861 }
862
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)
866 {
867 if (token->type != CPP_EOF)
868 {
869 input_location = token->location;
870 }
871 }
872
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)
876 {
877 cp_token *token = cp_lexer_peek_token (lexer);
878 cp_lexer_set_source_position_from_token (token);
879 }
880
881 /* Return a pointer to the next token in the token stream, but do not
882 consume it. */
883
884 static inline cp_token *
885 cp_lexer_peek_token (cp_lexer *lexer)
886 {
887 if (cp_lexer_debugging_p (lexer))
888 {
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);
892 }
893 return lexer->next_token;
894 }
895
896 /* Return true if the next token has the indicated TYPE. */
897
898 static inline bool
899 cp_lexer_next_token_is (cp_lexer* lexer, enum cpp_ttype type)
900 {
901 return cp_lexer_peek_token (lexer)->type == type;
902 }
903
904 /* Return true if the next token does not have the indicated TYPE. */
905
906 static inline bool
907 cp_lexer_next_token_is_not (cp_lexer* lexer, enum cpp_ttype type)
908 {
909 return !cp_lexer_next_token_is (lexer, type);
910 }
911
912 /* Return true if the next token is the indicated KEYWORD. */
913
914 static inline bool
915 cp_lexer_next_token_is_keyword (cp_lexer* lexer, enum rid keyword)
916 {
917 return cp_lexer_peek_token (lexer)->keyword == keyword;
918 }
919
920 static inline bool
921 cp_lexer_nth_token_is (cp_lexer* lexer, size_t n, enum cpp_ttype type)
922 {
923 return cp_lexer_peek_nth_token (lexer, n)->type == type;
924 }
925
926 static inline bool
927 cp_lexer_nth_token_is_keyword (cp_lexer* lexer, size_t n, enum rid keyword)
928 {
929 return cp_lexer_peek_nth_token (lexer, n)->keyword == keyword;
930 }
931
932 /* Return true if the next token is not the indicated KEYWORD. */
933
934 static inline bool
935 cp_lexer_next_token_is_not_keyword (cp_lexer* lexer, enum rid keyword)
936 {
937 return cp_lexer_peek_token (lexer)->keyword != keyword;
938 }
939
940 /* Return true if the next token is a keyword for a decl-specifier. */
941
942 static bool
943 cp_lexer_next_token_is_decl_specifier_keyword (cp_lexer *lexer)
944 {
945 cp_token *token;
946
947 token = cp_lexer_peek_token (lexer);
948 switch (token->keyword)
949 {
950 /* auto specifier: storage-class-specifier in C++,
951 simple-type-specifier in C++0x. */
952 case RID_AUTO:
953 /* Storage classes. */
954 case RID_REGISTER:
955 case RID_STATIC:
956 case RID_EXTERN:
957 case RID_MUTABLE:
958 case RID_THREAD:
959 /* Elaborated type specifiers. */
960 case RID_ENUM:
961 case RID_CLASS:
962 case RID_STRUCT:
963 case RID_UNION:
964 case RID_TYPENAME:
965 /* Simple type specifiers. */
966 case RID_CHAR:
967 case RID_CHAR16:
968 case RID_CHAR32:
969 case RID_WCHAR:
970 case RID_BOOL:
971 case RID_SHORT:
972 case RID_INT:
973 case RID_LONG:
974 case RID_SIGNED:
975 case RID_UNSIGNED:
976 case RID_FLOAT:
977 case RID_DOUBLE:
978 case RID_VOID:
979 /* GNU extensions. */
980 case RID_ATTRIBUTE:
981 case RID_TYPEOF:
982 /* C++0x extensions. */
983 case RID_DECLTYPE:
984 case RID_UNDERLYING_TYPE:
985 return true;
986
987 default:
988 if (token->keyword >= RID_FIRST_INT_N
989 && token->keyword < RID_FIRST_INT_N + NUM_INT_N_ENTS
990 && int_n_enabled_p[token->keyword - RID_FIRST_INT_N])
991 return true;
992 return false;
993 }
994 }
995
996 /* Returns TRUE iff the token T begins a decltype type. */
997
998 static bool
999 token_is_decltype (cp_token *t)
1000 {
1001 return (t->keyword == RID_DECLTYPE
1002 || t->type == CPP_DECLTYPE);
1003 }
1004
1005 /* Returns TRUE iff the next token begins a decltype type. */
1006
1007 static bool
1008 cp_lexer_next_token_is_decltype (cp_lexer *lexer)
1009 {
1010 cp_token *t = cp_lexer_peek_token (lexer);
1011 return token_is_decltype (t);
1012 }
1013
1014 /* Called when processing a token with tree_check_value; perform or defer the
1015 associated checks and return the value. */
1016
1017 static tree
1018 saved_checks_value (struct tree_check *check_value)
1019 {
1020 /* Perform any access checks that were deferred. */
1021 vec<deferred_access_check, va_gc> *checks;
1022 deferred_access_check *chk;
1023 checks = check_value->checks;
1024 if (checks)
1025 {
1026 int i;
1027 FOR_EACH_VEC_SAFE_ELT (checks, i, chk)
1028 perform_or_defer_access_check (chk->binfo,
1029 chk->decl,
1030 chk->diag_decl, tf_warning_or_error);
1031 }
1032 /* Return the stored value. */
1033 return check_value->value;
1034 }
1035
1036 /* Return a pointer to the Nth token in the token stream. If N is 1,
1037 then this is precisely equivalent to cp_lexer_peek_token (except
1038 that it is not inline). One would like to disallow that case, but
1039 there is one case (cp_parser_nth_token_starts_template_id) where
1040 the caller passes a variable for N and it might be 1. */
1041
1042 static cp_token *
1043 cp_lexer_peek_nth_token (cp_lexer* lexer, size_t n)
1044 {
1045 cp_token *token;
1046
1047 /* N is 1-based, not zero-based. */
1048 gcc_assert (n > 0);
1049
1050 if (cp_lexer_debugging_p (lexer))
1051 fprintf (cp_lexer_debug_stream,
1052 "cp_lexer: peeking ahead %ld at token: ", (long)n);
1053
1054 --n;
1055 token = lexer->next_token;
1056 gcc_assert (!n || token != &eof_token);
1057 while (n != 0)
1058 {
1059 ++token;
1060 if (token == lexer->last_token)
1061 {
1062 token = &eof_token;
1063 break;
1064 }
1065
1066 if (!token->purged_p)
1067 --n;
1068 }
1069
1070 if (cp_lexer_debugging_p (lexer))
1071 {
1072 cp_lexer_print_token (cp_lexer_debug_stream, token);
1073 putc ('\n', cp_lexer_debug_stream);
1074 }
1075
1076 return token;
1077 }
1078
1079 /* Return the next token, and advance the lexer's next_token pointer
1080 to point to the next non-purged token. */
1081
1082 static cp_token *
1083 cp_lexer_consume_token (cp_lexer* lexer)
1084 {
1085 cp_token *token = lexer->next_token;
1086
1087 gcc_assert (token != &eof_token);
1088 gcc_assert (!lexer->in_pragma || token->type != CPP_PRAGMA_EOL);
1089
1090 do
1091 {
1092 lexer->next_token++;
1093 if (lexer->next_token == lexer->last_token)
1094 {
1095 lexer->next_token = &eof_token;
1096 break;
1097 }
1098
1099 }
1100 while (lexer->next_token->purged_p);
1101
1102 cp_lexer_set_source_position_from_token (token);
1103
1104 /* Provide debugging output. */
1105 if (cp_lexer_debugging_p (lexer))
1106 {
1107 fputs ("cp_lexer: consuming token: ", cp_lexer_debug_stream);
1108 cp_lexer_print_token (cp_lexer_debug_stream, token);
1109 putc ('\n', cp_lexer_debug_stream);
1110 }
1111
1112 return token;
1113 }
1114
1115 /* Permanently remove the next token from the token stream, and
1116 advance the next_token pointer to refer to the next non-purged
1117 token. */
1118
1119 static void
1120 cp_lexer_purge_token (cp_lexer *lexer)
1121 {
1122 cp_token *tok = lexer->next_token;
1123
1124 gcc_assert (tok != &eof_token);
1125 tok->purged_p = true;
1126 tok->location = UNKNOWN_LOCATION;
1127 tok->u.value = NULL_TREE;
1128 tok->keyword = RID_MAX;
1129
1130 do
1131 {
1132 tok++;
1133 if (tok == lexer->last_token)
1134 {
1135 tok = &eof_token;
1136 break;
1137 }
1138 }
1139 while (tok->purged_p);
1140 lexer->next_token = tok;
1141 }
1142
1143 /* Permanently remove all tokens after TOK, up to, but not
1144 including, the token that will be returned next by
1145 cp_lexer_peek_token. */
1146
1147 static void
1148 cp_lexer_purge_tokens_after (cp_lexer *lexer, cp_token *tok)
1149 {
1150 cp_token *peek = lexer->next_token;
1151
1152 if (peek == &eof_token)
1153 peek = lexer->last_token;
1154
1155 gcc_assert (tok < peek);
1156
1157 for ( tok += 1; tok != peek; tok += 1)
1158 {
1159 tok->purged_p = true;
1160 tok->location = UNKNOWN_LOCATION;
1161 tok->u.value = NULL_TREE;
1162 tok->keyword = RID_MAX;
1163 }
1164 }
1165
1166 /* Begin saving tokens. All tokens consumed after this point will be
1167 preserved. */
1168
1169 static void
1170 cp_lexer_save_tokens (cp_lexer* lexer)
1171 {
1172 /* Provide debugging output. */
1173 if (cp_lexer_debugging_p (lexer))
1174 fprintf (cp_lexer_debug_stream, "cp_lexer: saving tokens\n");
1175
1176 lexer->saved_tokens.safe_push (lexer->next_token);
1177 }
1178
1179 /* Commit to the portion of the token stream most recently saved. */
1180
1181 static void
1182 cp_lexer_commit_tokens (cp_lexer* lexer)
1183 {
1184 /* Provide debugging output. */
1185 if (cp_lexer_debugging_p (lexer))
1186 fprintf (cp_lexer_debug_stream, "cp_lexer: committing tokens\n");
1187
1188 lexer->saved_tokens.pop ();
1189 }
1190
1191 /* Return all tokens saved since the last call to cp_lexer_save_tokens
1192 to the token stream. Stop saving tokens. */
1193
1194 static void
1195 cp_lexer_rollback_tokens (cp_lexer* lexer)
1196 {
1197 /* Provide debugging output. */
1198 if (cp_lexer_debugging_p (lexer))
1199 fprintf (cp_lexer_debug_stream, "cp_lexer: restoring tokens\n");
1200
1201 lexer->next_token = lexer->saved_tokens.pop ();
1202 }
1203
1204 /* RAII wrapper around the above functions, with sanity checking. Creating
1205 a variable saves tokens, which are committed when the variable is
1206 destroyed unless they are explicitly rolled back by calling the rollback
1207 member function. */
1208
1209 struct saved_token_sentinel
1210 {
1211 cp_lexer *lexer;
1212 unsigned len;
1213 bool commit;
1214 saved_token_sentinel(cp_lexer *lexer): lexer(lexer), commit(true)
1215 {
1216 len = lexer->saved_tokens.length ();
1217 cp_lexer_save_tokens (lexer);
1218 }
1219 void rollback ()
1220 {
1221 cp_lexer_rollback_tokens (lexer);
1222 commit = false;
1223 }
1224 ~saved_token_sentinel()
1225 {
1226 if (commit)
1227 cp_lexer_commit_tokens (lexer);
1228 gcc_assert (lexer->saved_tokens.length () == len);
1229 }
1230 };
1231
1232 /* Print a representation of the TOKEN on the STREAM. */
1233
1234 static void
1235 cp_lexer_print_token (FILE * stream, cp_token *token)
1236 {
1237 /* We don't use cpp_type2name here because the parser defines
1238 a few tokens of its own. */
1239 static const char *const token_names[] = {
1240 /* cpplib-defined token types */
1241 #define OP(e, s) #e,
1242 #define TK(e, s) #e,
1243 TTYPE_TABLE
1244 #undef OP
1245 #undef TK
1246 /* C++ parser token types - see "Manifest constants", above. */
1247 "KEYWORD",
1248 "TEMPLATE_ID",
1249 "NESTED_NAME_SPECIFIER",
1250 };
1251
1252 /* For some tokens, print the associated data. */
1253 switch (token->type)
1254 {
1255 case CPP_KEYWORD:
1256 /* Some keywords have a value that is not an IDENTIFIER_NODE.
1257 For example, `struct' is mapped to an INTEGER_CST. */
1258 if (!identifier_p (token->u.value))
1259 break;
1260 /* else fall through */
1261 case CPP_NAME:
1262 fputs (IDENTIFIER_POINTER (token->u.value), stream);
1263 break;
1264
1265 case CPP_STRING:
1266 case CPP_STRING16:
1267 case CPP_STRING32:
1268 case CPP_WSTRING:
1269 case CPP_UTF8STRING:
1270 fprintf (stream, " \"%s\"", TREE_STRING_POINTER (token->u.value));
1271 break;
1272
1273 case CPP_NUMBER:
1274 print_generic_expr (stream, token->u.value, 0);
1275 break;
1276
1277 default:
1278 /* If we have a name for the token, print it out. Otherwise, we
1279 simply give the numeric code. */
1280 if (token->type < ARRAY_SIZE(token_names))
1281 fputs (token_names[token->type], stream);
1282 else
1283 fprintf (stream, "[%d]", token->type);
1284 break;
1285 }
1286 }
1287
1288 DEBUG_FUNCTION void
1289 debug (cp_token &ref)
1290 {
1291 cp_lexer_print_token (stderr, &ref);
1292 fprintf (stderr, "\n");
1293 }
1294
1295 DEBUG_FUNCTION void
1296 debug (cp_token *ptr)
1297 {
1298 if (ptr)
1299 debug (*ptr);
1300 else
1301 fprintf (stderr, "<nil>\n");
1302 }
1303
1304
1305 /* Start emitting debugging information. */
1306
1307 static void
1308 cp_lexer_start_debugging (cp_lexer* lexer)
1309 {
1310 if (!LEXER_DEBUGGING_ENABLED_P)
1311 fatal_error (input_location,
1312 "LEXER_DEBUGGING_ENABLED_P is not set to true");
1313
1314 lexer->debugging_p = true;
1315 cp_lexer_debug_stream = stderr;
1316 }
1317
1318 /* Stop emitting debugging information. */
1319
1320 static void
1321 cp_lexer_stop_debugging (cp_lexer* lexer)
1322 {
1323 if (!LEXER_DEBUGGING_ENABLED_P)
1324 fatal_error (input_location,
1325 "LEXER_DEBUGGING_ENABLED_P is not set to true");
1326
1327 lexer->debugging_p = false;
1328 cp_lexer_debug_stream = NULL;
1329 }
1330
1331 /* Create a new cp_token_cache, representing a range of tokens. */
1332
1333 static cp_token_cache *
1334 cp_token_cache_new (cp_token *first, cp_token *last)
1335 {
1336 cp_token_cache *cache = ggc_alloc<cp_token_cache> ();
1337 cache->first = first;
1338 cache->last = last;
1339 return cache;
1340 }
1341
1342 /* Diagnose if #pragma omp declare simd isn't followed immediately
1343 by function declaration or definition. */
1344
1345 static inline void
1346 cp_ensure_no_omp_declare_simd (cp_parser *parser)
1347 {
1348 if (parser->omp_declare_simd && !parser->omp_declare_simd->error_seen)
1349 {
1350 error ("%<#pragma omp declare simd%> not immediately followed by "
1351 "function declaration or definition");
1352 parser->omp_declare_simd = NULL;
1353 }
1354 }
1355
1356 /* Finalize #pragma omp declare simd clauses after FNDECL has been parsed,
1357 and put that into "omp declare simd" attribute. */
1358
1359 static inline void
1360 cp_finalize_omp_declare_simd (cp_parser *parser, tree fndecl)
1361 {
1362 if (__builtin_expect (parser->omp_declare_simd != NULL, 0))
1363 {
1364 if (fndecl == error_mark_node)
1365 {
1366 parser->omp_declare_simd = NULL;
1367 return;
1368 }
1369 if (TREE_CODE (fndecl) != FUNCTION_DECL)
1370 {
1371 cp_ensure_no_omp_declare_simd (parser);
1372 return;
1373 }
1374 }
1375 }
1376
1377 /* Diagnose if #pragma acc routine isn't followed immediately by function
1378 declaration or definition. */
1379
1380 static inline void
1381 cp_ensure_no_oacc_routine (cp_parser *parser)
1382 {
1383 if (parser->oacc_routine && !parser->oacc_routine->error_seen)
1384 {
1385 tree clauses = parser->oacc_routine->clauses;
1386 location_t loc = OMP_CLAUSE_LOCATION (TREE_PURPOSE (clauses));
1387
1388 error_at (loc, "%<#pragma acc routine%> not followed by a function "
1389 "declaration or definition");
1390 parser->oacc_routine = NULL;
1391 }
1392 }
1393 \f
1394 /* Decl-specifiers. */
1395
1396 /* Set *DECL_SPECS to represent an empty decl-specifier-seq. */
1397
1398 static void
1399 clear_decl_specs (cp_decl_specifier_seq *decl_specs)
1400 {
1401 memset (decl_specs, 0, sizeof (cp_decl_specifier_seq));
1402 }
1403
1404 /* Declarators. */
1405
1406 /* Nothing other than the parser should be creating declarators;
1407 declarators are a semi-syntactic representation of C++ entities.
1408 Other parts of the front end that need to create entities (like
1409 VAR_DECLs or FUNCTION_DECLs) should do that directly. */
1410
1411 static cp_declarator *make_call_declarator
1412 (cp_declarator *, tree, cp_cv_quals, cp_virt_specifiers, cp_ref_qualifier, tree, tree, tree, tree);
1413 static cp_declarator *make_array_declarator
1414 (cp_declarator *, tree);
1415 static cp_declarator *make_pointer_declarator
1416 (cp_cv_quals, cp_declarator *, tree);
1417 static cp_declarator *make_reference_declarator
1418 (cp_cv_quals, cp_declarator *, bool, tree);
1419 static cp_declarator *make_ptrmem_declarator
1420 (cp_cv_quals, tree, cp_declarator *, tree);
1421
1422 /* An erroneous declarator. */
1423 static cp_declarator *cp_error_declarator;
1424
1425 /* The obstack on which declarators and related data structures are
1426 allocated. */
1427 static struct obstack declarator_obstack;
1428
1429 /* Alloc BYTES from the declarator memory pool. */
1430
1431 static inline void *
1432 alloc_declarator (size_t bytes)
1433 {
1434 return obstack_alloc (&declarator_obstack, bytes);
1435 }
1436
1437 /* Allocate a declarator of the indicated KIND. Clear fields that are
1438 common to all declarators. */
1439
1440 static cp_declarator *
1441 make_declarator (cp_declarator_kind kind)
1442 {
1443 cp_declarator *declarator;
1444
1445 declarator = (cp_declarator *) alloc_declarator (sizeof (cp_declarator));
1446 declarator->kind = kind;
1447 declarator->attributes = NULL_TREE;
1448 declarator->std_attributes = NULL_TREE;
1449 declarator->declarator = NULL;
1450 declarator->parameter_pack_p = false;
1451 declarator->id_loc = UNKNOWN_LOCATION;
1452
1453 return declarator;
1454 }
1455
1456 /* Make a declarator for a generalized identifier. If
1457 QUALIFYING_SCOPE is non-NULL, the identifier is
1458 QUALIFYING_SCOPE::UNQUALIFIED_NAME; otherwise, it is just
1459 UNQUALIFIED_NAME. SFK indicates the kind of special function this
1460 is, if any. */
1461
1462 static cp_declarator *
1463 make_id_declarator (tree qualifying_scope, tree unqualified_name,
1464 special_function_kind sfk)
1465 {
1466 cp_declarator *declarator;
1467
1468 /* It is valid to write:
1469
1470 class C { void f(); };
1471 typedef C D;
1472 void D::f();
1473
1474 The standard is not clear about whether `typedef const C D' is
1475 legal; as of 2002-09-15 the committee is considering that
1476 question. EDG 3.0 allows that syntax. Therefore, we do as
1477 well. */
1478 if (qualifying_scope && TYPE_P (qualifying_scope))
1479 qualifying_scope = TYPE_MAIN_VARIANT (qualifying_scope);
1480
1481 gcc_assert (identifier_p (unqualified_name)
1482 || TREE_CODE (unqualified_name) == BIT_NOT_EXPR
1483 || TREE_CODE (unqualified_name) == TEMPLATE_ID_EXPR);
1484
1485 declarator = make_declarator (cdk_id);
1486 declarator->u.id.qualifying_scope = qualifying_scope;
1487 declarator->u.id.unqualified_name = unqualified_name;
1488 declarator->u.id.sfk = sfk;
1489
1490 return declarator;
1491 }
1492
1493 /* Make a declarator for a pointer to TARGET. CV_QUALIFIERS is a list
1494 of modifiers such as const or volatile to apply to the pointer
1495 type, represented as identifiers. ATTRIBUTES represent the attributes that
1496 appertain to the pointer or reference. */
1497
1498 cp_declarator *
1499 make_pointer_declarator (cp_cv_quals cv_qualifiers, cp_declarator *target,
1500 tree attributes)
1501 {
1502 cp_declarator *declarator;
1503
1504 declarator = make_declarator (cdk_pointer);
1505 declarator->declarator = target;
1506 declarator->u.pointer.qualifiers = cv_qualifiers;
1507 declarator->u.pointer.class_type = NULL_TREE;
1508 if (target)
1509 {
1510 declarator->id_loc = target->id_loc;
1511 declarator->parameter_pack_p = target->parameter_pack_p;
1512 target->parameter_pack_p = false;
1513 }
1514 else
1515 declarator->parameter_pack_p = false;
1516
1517 declarator->std_attributes = attributes;
1518
1519 return declarator;
1520 }
1521
1522 /* Like make_pointer_declarator -- but for references. ATTRIBUTES
1523 represent the attributes that appertain to the pointer or
1524 reference. */
1525
1526 cp_declarator *
1527 make_reference_declarator (cp_cv_quals cv_qualifiers, cp_declarator *target,
1528 bool rvalue_ref, tree attributes)
1529 {
1530 cp_declarator *declarator;
1531
1532 declarator = make_declarator (cdk_reference);
1533 declarator->declarator = target;
1534 declarator->u.reference.qualifiers = cv_qualifiers;
1535 declarator->u.reference.rvalue_ref = rvalue_ref;
1536 if (target)
1537 {
1538 declarator->id_loc = target->id_loc;
1539 declarator->parameter_pack_p = target->parameter_pack_p;
1540 target->parameter_pack_p = false;
1541 }
1542 else
1543 declarator->parameter_pack_p = false;
1544
1545 declarator->std_attributes = attributes;
1546
1547 return declarator;
1548 }
1549
1550 /* Like make_pointer_declarator -- but for a pointer to a non-static
1551 member of CLASS_TYPE. ATTRIBUTES represent the attributes that
1552 appertain to the pointer or reference. */
1553
1554 cp_declarator *
1555 make_ptrmem_declarator (cp_cv_quals cv_qualifiers, tree class_type,
1556 cp_declarator *pointee,
1557 tree attributes)
1558 {
1559 cp_declarator *declarator;
1560
1561 declarator = make_declarator (cdk_ptrmem);
1562 declarator->declarator = pointee;
1563 declarator->u.pointer.qualifiers = cv_qualifiers;
1564 declarator->u.pointer.class_type = class_type;
1565
1566 if (pointee)
1567 {
1568 declarator->parameter_pack_p = pointee->parameter_pack_p;
1569 pointee->parameter_pack_p = false;
1570 }
1571 else
1572 declarator->parameter_pack_p = false;
1573
1574 declarator->std_attributes = attributes;
1575
1576 return declarator;
1577 }
1578
1579 /* Make a declarator for the function given by TARGET, with the
1580 indicated PARMS. The CV_QUALIFIERS aply to the function, as in
1581 "const"-qualified member function. The EXCEPTION_SPECIFICATION
1582 indicates what exceptions can be thrown. */
1583
1584 cp_declarator *
1585 make_call_declarator (cp_declarator *target,
1586 tree parms,
1587 cp_cv_quals cv_qualifiers,
1588 cp_virt_specifiers virt_specifiers,
1589 cp_ref_qualifier ref_qualifier,
1590 tree tx_qualifier,
1591 tree exception_specification,
1592 tree late_return_type,
1593 tree requires_clause)
1594 {
1595 cp_declarator *declarator;
1596
1597 declarator = make_declarator (cdk_function);
1598 declarator->declarator = target;
1599 declarator->u.function.parameters = parms;
1600 declarator->u.function.qualifiers = cv_qualifiers;
1601 declarator->u.function.virt_specifiers = virt_specifiers;
1602 declarator->u.function.ref_qualifier = ref_qualifier;
1603 declarator->u.function.tx_qualifier = tx_qualifier;
1604 declarator->u.function.exception_specification = exception_specification;
1605 declarator->u.function.late_return_type = late_return_type;
1606 declarator->u.function.requires_clause = requires_clause;
1607 if (target)
1608 {
1609 declarator->id_loc = target->id_loc;
1610 declarator->parameter_pack_p = target->parameter_pack_p;
1611 target->parameter_pack_p = false;
1612 }
1613 else
1614 declarator->parameter_pack_p = false;
1615
1616 return declarator;
1617 }
1618
1619 /* Make a declarator for an array of BOUNDS elements, each of which is
1620 defined by ELEMENT. */
1621
1622 cp_declarator *
1623 make_array_declarator (cp_declarator *element, tree bounds)
1624 {
1625 cp_declarator *declarator;
1626
1627 declarator = make_declarator (cdk_array);
1628 declarator->declarator = element;
1629 declarator->u.array.bounds = bounds;
1630 if (element)
1631 {
1632 declarator->id_loc = element->id_loc;
1633 declarator->parameter_pack_p = element->parameter_pack_p;
1634 element->parameter_pack_p = false;
1635 }
1636 else
1637 declarator->parameter_pack_p = false;
1638
1639 return declarator;
1640 }
1641
1642 /* Determine whether the declarator we've seen so far can be a
1643 parameter pack, when followed by an ellipsis. */
1644 static bool
1645 declarator_can_be_parameter_pack (cp_declarator *declarator)
1646 {
1647 if (declarator && declarator->parameter_pack_p)
1648 /* We already saw an ellipsis. */
1649 return false;
1650
1651 /* Search for a declarator name, or any other declarator that goes
1652 after the point where the ellipsis could appear in a parameter
1653 pack. If we find any of these, then this declarator can not be
1654 made into a parameter pack. */
1655 bool found = false;
1656 while (declarator && !found)
1657 {
1658 switch ((int)declarator->kind)
1659 {
1660 case cdk_id:
1661 case cdk_array:
1662 found = true;
1663 break;
1664
1665 case cdk_error:
1666 return true;
1667
1668 default:
1669 declarator = declarator->declarator;
1670 break;
1671 }
1672 }
1673
1674 return !found;
1675 }
1676
1677 cp_parameter_declarator *no_parameters;
1678
1679 /* Create a parameter declarator with the indicated DECL_SPECIFIERS,
1680 DECLARATOR and DEFAULT_ARGUMENT. */
1681
1682 cp_parameter_declarator *
1683 make_parameter_declarator (cp_decl_specifier_seq *decl_specifiers,
1684 cp_declarator *declarator,
1685 tree default_argument,
1686 bool template_parameter_pack_p = false)
1687 {
1688 cp_parameter_declarator *parameter;
1689
1690 parameter = ((cp_parameter_declarator *)
1691 alloc_declarator (sizeof (cp_parameter_declarator)));
1692 parameter->next = NULL;
1693 if (decl_specifiers)
1694 parameter->decl_specifiers = *decl_specifiers;
1695 else
1696 clear_decl_specs (&parameter->decl_specifiers);
1697 parameter->declarator = declarator;
1698 parameter->default_argument = default_argument;
1699 parameter->template_parameter_pack_p = template_parameter_pack_p;
1700
1701 return parameter;
1702 }
1703
1704 /* Returns true iff DECLARATOR is a declaration for a function. */
1705
1706 static bool
1707 function_declarator_p (const cp_declarator *declarator)
1708 {
1709 while (declarator)
1710 {
1711 if (declarator->kind == cdk_function
1712 && declarator->declarator->kind == cdk_id)
1713 return true;
1714 if (declarator->kind == cdk_id
1715 || declarator->kind == cdk_error)
1716 return false;
1717 declarator = declarator->declarator;
1718 }
1719 return false;
1720 }
1721
1722 /* The parser. */
1723
1724 /* Overview
1725 --------
1726
1727 A cp_parser parses the token stream as specified by the C++
1728 grammar. Its job is purely parsing, not semantic analysis. For
1729 example, the parser breaks the token stream into declarators,
1730 expressions, statements, and other similar syntactic constructs.
1731 It does not check that the types of the expressions on either side
1732 of an assignment-statement are compatible, or that a function is
1733 not declared with a parameter of type `void'.
1734
1735 The parser invokes routines elsewhere in the compiler to perform
1736 semantic analysis and to build up the abstract syntax tree for the
1737 code processed.
1738
1739 The parser (and the template instantiation code, which is, in a
1740 way, a close relative of parsing) are the only parts of the
1741 compiler that should be calling push_scope and pop_scope, or
1742 related functions. The parser (and template instantiation code)
1743 keeps track of what scope is presently active; everything else
1744 should simply honor that. (The code that generates static
1745 initializers may also need to set the scope, in order to check
1746 access control correctly when emitting the initializers.)
1747
1748 Methodology
1749 -----------
1750
1751 The parser is of the standard recursive-descent variety. Upcoming
1752 tokens in the token stream are examined in order to determine which
1753 production to use when parsing a non-terminal. Some C++ constructs
1754 require arbitrary look ahead to disambiguate. For example, it is
1755 impossible, in the general case, to tell whether a statement is an
1756 expression or declaration without scanning the entire statement.
1757 Therefore, the parser is capable of "parsing tentatively." When the
1758 parser is not sure what construct comes next, it enters this mode.
1759 Then, while we attempt to parse the construct, the parser queues up
1760 error messages, rather than issuing them immediately, and saves the
1761 tokens it consumes. If the construct is parsed successfully, the
1762 parser "commits", i.e., it issues any queued error messages and
1763 the tokens that were being preserved are permanently discarded.
1764 If, however, the construct is not parsed successfully, the parser
1765 rolls back its state completely so that it can resume parsing using
1766 a different alternative.
1767
1768 Future Improvements
1769 -------------------
1770
1771 The performance of the parser could probably be improved substantially.
1772 We could often eliminate the need to parse tentatively by looking ahead
1773 a little bit. In some places, this approach might not entirely eliminate
1774 the need to parse tentatively, but it might still speed up the average
1775 case. */
1776
1777 /* Flags that are passed to some parsing functions. These values can
1778 be bitwise-ored together. */
1779
1780 enum
1781 {
1782 /* No flags. */
1783 CP_PARSER_FLAGS_NONE = 0x0,
1784 /* The construct is optional. If it is not present, then no error
1785 should be issued. */
1786 CP_PARSER_FLAGS_OPTIONAL = 0x1,
1787 /* When parsing a type-specifier, treat user-defined type-names
1788 as non-type identifiers. */
1789 CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES = 0x2,
1790 /* When parsing a type-specifier, do not try to parse a class-specifier
1791 or enum-specifier. */
1792 CP_PARSER_FLAGS_NO_TYPE_DEFINITIONS = 0x4,
1793 /* When parsing a decl-specifier-seq, only allow type-specifier or
1794 constexpr. */
1795 CP_PARSER_FLAGS_ONLY_TYPE_OR_CONSTEXPR = 0x8
1796 };
1797
1798 /* This type is used for parameters and variables which hold
1799 combinations of the above flags. */
1800 typedef int cp_parser_flags;
1801
1802 /* The different kinds of declarators we want to parse. */
1803
1804 enum cp_parser_declarator_kind
1805 {
1806 /* We want an abstract declarator. */
1807 CP_PARSER_DECLARATOR_ABSTRACT,
1808 /* We want a named declarator. */
1809 CP_PARSER_DECLARATOR_NAMED,
1810 /* We don't mind, but the name must be an unqualified-id. */
1811 CP_PARSER_DECLARATOR_EITHER
1812 };
1813
1814 /* The precedence values used to parse binary expressions. The minimum value
1815 of PREC must be 1, because zero is reserved to quickly discriminate
1816 binary operators from other tokens. */
1817
1818 enum cp_parser_prec
1819 {
1820 PREC_NOT_OPERATOR,
1821 PREC_LOGICAL_OR_EXPRESSION,
1822 PREC_LOGICAL_AND_EXPRESSION,
1823 PREC_INCLUSIVE_OR_EXPRESSION,
1824 PREC_EXCLUSIVE_OR_EXPRESSION,
1825 PREC_AND_EXPRESSION,
1826 PREC_EQUALITY_EXPRESSION,
1827 PREC_RELATIONAL_EXPRESSION,
1828 PREC_SHIFT_EXPRESSION,
1829 PREC_ADDITIVE_EXPRESSION,
1830 PREC_MULTIPLICATIVE_EXPRESSION,
1831 PREC_PM_EXPRESSION,
1832 NUM_PREC_VALUES = PREC_PM_EXPRESSION
1833 };
1834
1835 /* A mapping from a token type to a corresponding tree node type, with a
1836 precedence value. */
1837
1838 struct cp_parser_binary_operations_map_node
1839 {
1840 /* The token type. */
1841 enum cpp_ttype token_type;
1842 /* The corresponding tree code. */
1843 enum tree_code tree_type;
1844 /* The precedence of this operator. */
1845 enum cp_parser_prec prec;
1846 };
1847
1848 struct cp_parser_expression_stack_entry
1849 {
1850 /* Left hand side of the binary operation we are currently
1851 parsing. */
1852 cp_expr lhs;
1853 /* Original tree code for left hand side, if it was a binary
1854 expression itself (used for -Wparentheses). */
1855 enum tree_code lhs_type;
1856 /* Tree code for the binary operation we are parsing. */
1857 enum tree_code tree_type;
1858 /* Precedence of the binary operation we are parsing. */
1859 enum cp_parser_prec prec;
1860 /* Location of the binary operation we are parsing. */
1861 location_t loc;
1862 };
1863
1864 /* The stack for storing partial expressions. We only need NUM_PREC_VALUES
1865 entries because precedence levels on the stack are monotonically
1866 increasing. */
1867 typedef struct cp_parser_expression_stack_entry
1868 cp_parser_expression_stack[NUM_PREC_VALUES];
1869
1870 /* Prototypes. */
1871
1872 /* Constructors and destructors. */
1873
1874 static cp_parser_context *cp_parser_context_new
1875 (cp_parser_context *);
1876
1877 /* Class variables. */
1878
1879 static GTY((deletable)) cp_parser_context* cp_parser_context_free_list;
1880
1881 /* The operator-precedence table used by cp_parser_binary_expression.
1882 Transformed into an associative array (binops_by_token) by
1883 cp_parser_new. */
1884
1885 static const cp_parser_binary_operations_map_node binops[] = {
1886 { CPP_DEREF_STAR, MEMBER_REF, PREC_PM_EXPRESSION },
1887 { CPP_DOT_STAR, DOTSTAR_EXPR, PREC_PM_EXPRESSION },
1888
1889 { CPP_MULT, MULT_EXPR, PREC_MULTIPLICATIVE_EXPRESSION },
1890 { CPP_DIV, TRUNC_DIV_EXPR, PREC_MULTIPLICATIVE_EXPRESSION },
1891 { CPP_MOD, TRUNC_MOD_EXPR, PREC_MULTIPLICATIVE_EXPRESSION },
1892
1893 { CPP_PLUS, PLUS_EXPR, PREC_ADDITIVE_EXPRESSION },
1894 { CPP_MINUS, MINUS_EXPR, PREC_ADDITIVE_EXPRESSION },
1895
1896 { CPP_LSHIFT, LSHIFT_EXPR, PREC_SHIFT_EXPRESSION },
1897 { CPP_RSHIFT, RSHIFT_EXPR, PREC_SHIFT_EXPRESSION },
1898
1899 { CPP_LESS, LT_EXPR, PREC_RELATIONAL_EXPRESSION },
1900 { CPP_GREATER, GT_EXPR, PREC_RELATIONAL_EXPRESSION },
1901 { CPP_LESS_EQ, LE_EXPR, PREC_RELATIONAL_EXPRESSION },
1902 { CPP_GREATER_EQ, GE_EXPR, PREC_RELATIONAL_EXPRESSION },
1903
1904 { CPP_EQ_EQ, EQ_EXPR, PREC_EQUALITY_EXPRESSION },
1905 { CPP_NOT_EQ, NE_EXPR, PREC_EQUALITY_EXPRESSION },
1906
1907 { CPP_AND, BIT_AND_EXPR, PREC_AND_EXPRESSION },
1908
1909 { CPP_XOR, BIT_XOR_EXPR, PREC_EXCLUSIVE_OR_EXPRESSION },
1910
1911 { CPP_OR, BIT_IOR_EXPR, PREC_INCLUSIVE_OR_EXPRESSION },
1912
1913 { CPP_AND_AND, TRUTH_ANDIF_EXPR, PREC_LOGICAL_AND_EXPRESSION },
1914
1915 { CPP_OR_OR, TRUTH_ORIF_EXPR, PREC_LOGICAL_OR_EXPRESSION }
1916 };
1917
1918 /* The same as binops, but initialized by cp_parser_new so that
1919 binops_by_token[N].token_type == N. Used in cp_parser_binary_expression
1920 for speed. */
1921 static cp_parser_binary_operations_map_node binops_by_token[N_CP_TTYPES];
1922
1923 /* Constructors and destructors. */
1924
1925 /* Construct a new context. The context below this one on the stack
1926 is given by NEXT. */
1927
1928 static cp_parser_context *
1929 cp_parser_context_new (cp_parser_context* next)
1930 {
1931 cp_parser_context *context;
1932
1933 /* Allocate the storage. */
1934 if (cp_parser_context_free_list != NULL)
1935 {
1936 /* Pull the first entry from the free list. */
1937 context = cp_parser_context_free_list;
1938 cp_parser_context_free_list = context->next;
1939 memset (context, 0, sizeof (*context));
1940 }
1941 else
1942 context = ggc_cleared_alloc<cp_parser_context> ();
1943
1944 /* No errors have occurred yet in this context. */
1945 context->status = CP_PARSER_STATUS_KIND_NO_ERROR;
1946 /* If this is not the bottommost context, copy information that we
1947 need from the previous context. */
1948 if (next)
1949 {
1950 /* If, in the NEXT context, we are parsing an `x->' or `x.'
1951 expression, then we are parsing one in this context, too. */
1952 context->object_type = next->object_type;
1953 /* Thread the stack. */
1954 context->next = next;
1955 }
1956
1957 return context;
1958 }
1959
1960 /* Managing the unparsed function queues. */
1961
1962 #define unparsed_funs_with_default_args \
1963 parser->unparsed_queues->last ().funs_with_default_args
1964 #define unparsed_funs_with_definitions \
1965 parser->unparsed_queues->last ().funs_with_definitions
1966 #define unparsed_nsdmis \
1967 parser->unparsed_queues->last ().nsdmis
1968 #define unparsed_classes \
1969 parser->unparsed_queues->last ().classes
1970
1971 static void
1972 push_unparsed_function_queues (cp_parser *parser)
1973 {
1974 cp_unparsed_functions_entry e = {NULL, make_tree_vector (), NULL, NULL};
1975 vec_safe_push (parser->unparsed_queues, e);
1976 }
1977
1978 static void
1979 pop_unparsed_function_queues (cp_parser *parser)
1980 {
1981 release_tree_vector (unparsed_funs_with_definitions);
1982 parser->unparsed_queues->pop ();
1983 }
1984
1985 /* Prototypes. */
1986
1987 /* Constructors and destructors. */
1988
1989 static cp_parser *cp_parser_new
1990 (void);
1991
1992 /* Routines to parse various constructs.
1993
1994 Those that return `tree' will return the error_mark_node (rather
1995 than NULL_TREE) if a parse error occurs, unless otherwise noted.
1996 Sometimes, they will return an ordinary node if error-recovery was
1997 attempted, even though a parse error occurred. So, to check
1998 whether or not a parse error occurred, you should always use
1999 cp_parser_error_occurred. If the construct is optional (indicated
2000 either by an `_opt' in the name of the function that does the
2001 parsing or via a FLAGS parameter), then NULL_TREE is returned if
2002 the construct is not present. */
2003
2004 /* Lexical conventions [gram.lex] */
2005
2006 static cp_expr cp_parser_identifier
2007 (cp_parser *);
2008 static cp_expr cp_parser_string_literal
2009 (cp_parser *, bool, bool, bool);
2010 static cp_expr cp_parser_userdef_char_literal
2011 (cp_parser *);
2012 static tree cp_parser_userdef_string_literal
2013 (tree);
2014 static cp_expr cp_parser_userdef_numeric_literal
2015 (cp_parser *);
2016
2017 /* Basic concepts [gram.basic] */
2018
2019 static bool cp_parser_translation_unit
2020 (cp_parser *);
2021
2022 /* Expressions [gram.expr] */
2023
2024 static cp_expr cp_parser_primary_expression
2025 (cp_parser *, bool, bool, bool, cp_id_kind *);
2026 static cp_expr cp_parser_id_expression
2027 (cp_parser *, bool, bool, bool *, bool, bool);
2028 static cp_expr cp_parser_unqualified_id
2029 (cp_parser *, bool, bool, bool, bool);
2030 static tree cp_parser_nested_name_specifier_opt
2031 (cp_parser *, bool, bool, bool, bool);
2032 static tree cp_parser_nested_name_specifier
2033 (cp_parser *, bool, bool, bool, bool);
2034 static tree cp_parser_qualifying_entity
2035 (cp_parser *, bool, bool, bool, bool, bool);
2036 static cp_expr cp_parser_postfix_expression
2037 (cp_parser *, bool, bool, bool, bool, cp_id_kind *);
2038 static tree cp_parser_postfix_open_square_expression
2039 (cp_parser *, tree, bool, bool);
2040 static tree cp_parser_postfix_dot_deref_expression
2041 (cp_parser *, enum cpp_ttype, cp_expr, bool, cp_id_kind *, location_t);
2042 static vec<tree, va_gc> *cp_parser_parenthesized_expression_list
2043 (cp_parser *, int, bool, bool, bool *, location_t * = NULL);
2044 /* Values for the second parameter of cp_parser_parenthesized_expression_list. */
2045 enum { non_attr = 0, normal_attr = 1, id_attr = 2 };
2046 static void cp_parser_pseudo_destructor_name
2047 (cp_parser *, tree, tree *, tree *);
2048 static cp_expr cp_parser_unary_expression
2049 (cp_parser *, cp_id_kind * = NULL, bool = false, bool = false, bool = false);
2050 static enum tree_code cp_parser_unary_operator
2051 (cp_token *);
2052 static tree cp_parser_new_expression
2053 (cp_parser *);
2054 static vec<tree, va_gc> *cp_parser_new_placement
2055 (cp_parser *);
2056 static tree cp_parser_new_type_id
2057 (cp_parser *, tree *);
2058 static cp_declarator *cp_parser_new_declarator_opt
2059 (cp_parser *);
2060 static cp_declarator *cp_parser_direct_new_declarator
2061 (cp_parser *);
2062 static vec<tree, va_gc> *cp_parser_new_initializer
2063 (cp_parser *);
2064 static tree cp_parser_delete_expression
2065 (cp_parser *);
2066 static cp_expr cp_parser_cast_expression
2067 (cp_parser *, bool, bool, bool, cp_id_kind *);
2068 static cp_expr cp_parser_binary_expression
2069 (cp_parser *, bool, bool, enum cp_parser_prec, cp_id_kind *);
2070 static tree cp_parser_question_colon_clause
2071 (cp_parser *, cp_expr);
2072 static cp_expr cp_parser_assignment_expression
2073 (cp_parser *, cp_id_kind * = NULL, bool = false, bool = false);
2074 static enum tree_code cp_parser_assignment_operator_opt
2075 (cp_parser *);
2076 static cp_expr cp_parser_expression
2077 (cp_parser *, cp_id_kind * = NULL, bool = false, bool = false);
2078 static cp_expr cp_parser_constant_expression
2079 (cp_parser *, bool = false, bool * = NULL);
2080 static cp_expr cp_parser_builtin_offsetof
2081 (cp_parser *);
2082 static cp_expr cp_parser_lambda_expression
2083 (cp_parser *);
2084 static void cp_parser_lambda_introducer
2085 (cp_parser *, tree);
2086 static bool cp_parser_lambda_declarator_opt
2087 (cp_parser *, tree);
2088 static void cp_parser_lambda_body
2089 (cp_parser *, tree);
2090
2091 /* Statements [gram.stmt.stmt] */
2092
2093 static void cp_parser_statement
2094 (cp_parser *, tree, bool, bool *, vec<tree> * = NULL);
2095 static void cp_parser_label_for_labeled_statement
2096 (cp_parser *, tree);
2097 static tree cp_parser_expression_statement
2098 (cp_parser *, tree);
2099 static tree cp_parser_compound_statement
2100 (cp_parser *, tree, int, bool);
2101 static void cp_parser_statement_seq_opt
2102 (cp_parser *, tree);
2103 static tree cp_parser_selection_statement
2104 (cp_parser *, bool *, vec<tree> *);
2105 static tree cp_parser_condition
2106 (cp_parser *);
2107 static tree cp_parser_iteration_statement
2108 (cp_parser *, bool *, bool);
2109 static bool cp_parser_for_init_statement
2110 (cp_parser *, tree *decl);
2111 static tree cp_parser_for
2112 (cp_parser *, bool);
2113 static tree cp_parser_c_for
2114 (cp_parser *, tree, tree, bool);
2115 static tree cp_parser_range_for
2116 (cp_parser *, tree, tree, tree, bool);
2117 static void do_range_for_auto_deduction
2118 (tree, tree);
2119 static tree cp_parser_perform_range_for_lookup
2120 (tree, tree *, tree *);
2121 static tree cp_parser_range_for_member_function
2122 (tree, tree);
2123 static tree cp_parser_jump_statement
2124 (cp_parser *);
2125 static void cp_parser_declaration_statement
2126 (cp_parser *);
2127
2128 static tree cp_parser_implicitly_scoped_statement
2129 (cp_parser *, bool *, const token_indent_info &, vec<tree> * = NULL);
2130 static void cp_parser_already_scoped_statement
2131 (cp_parser *, bool *, const token_indent_info &);
2132
2133 /* Declarations [gram.dcl.dcl] */
2134
2135 static void cp_parser_declaration_seq_opt
2136 (cp_parser *);
2137 static void cp_parser_declaration
2138 (cp_parser *);
2139 static void cp_parser_block_declaration
2140 (cp_parser *, bool);
2141 static void cp_parser_simple_declaration
2142 (cp_parser *, bool, tree *);
2143 static void cp_parser_decl_specifier_seq
2144 (cp_parser *, cp_parser_flags, cp_decl_specifier_seq *, int *);
2145 static tree cp_parser_storage_class_specifier_opt
2146 (cp_parser *);
2147 static tree cp_parser_function_specifier_opt
2148 (cp_parser *, cp_decl_specifier_seq *);
2149 static tree cp_parser_type_specifier
2150 (cp_parser *, cp_parser_flags, cp_decl_specifier_seq *, bool,
2151 int *, bool *);
2152 static tree cp_parser_simple_type_specifier
2153 (cp_parser *, cp_decl_specifier_seq *, cp_parser_flags);
2154 static tree cp_parser_type_name
2155 (cp_parser *, bool);
2156 static tree cp_parser_type_name
2157 (cp_parser *);
2158 static tree cp_parser_nonclass_name
2159 (cp_parser* parser);
2160 static tree cp_parser_elaborated_type_specifier
2161 (cp_parser *, bool, bool);
2162 static tree cp_parser_enum_specifier
2163 (cp_parser *);
2164 static void cp_parser_enumerator_list
2165 (cp_parser *, tree);
2166 static void cp_parser_enumerator_definition
2167 (cp_parser *, tree);
2168 static tree cp_parser_namespace_name
2169 (cp_parser *);
2170 static void cp_parser_namespace_definition
2171 (cp_parser *);
2172 static void cp_parser_namespace_body
2173 (cp_parser *);
2174 static tree cp_parser_qualified_namespace_specifier
2175 (cp_parser *);
2176 static void cp_parser_namespace_alias_definition
2177 (cp_parser *);
2178 static bool cp_parser_using_declaration
2179 (cp_parser *, bool);
2180 static void cp_parser_using_directive
2181 (cp_parser *);
2182 static tree cp_parser_alias_declaration
2183 (cp_parser *);
2184 static void cp_parser_asm_definition
2185 (cp_parser *);
2186 static void cp_parser_linkage_specification
2187 (cp_parser *);
2188 static void cp_parser_static_assert
2189 (cp_parser *, bool);
2190 static tree cp_parser_decltype
2191 (cp_parser *);
2192
2193 /* Declarators [gram.dcl.decl] */
2194
2195 static tree cp_parser_init_declarator
2196 (cp_parser *, cp_decl_specifier_seq *, vec<deferred_access_check, va_gc> *,
2197 bool, bool, int, bool *, tree *, location_t *, tree *);
2198 static cp_declarator *cp_parser_declarator
2199 (cp_parser *, cp_parser_declarator_kind, int *, bool *, bool, bool);
2200 static cp_declarator *cp_parser_direct_declarator
2201 (cp_parser *, cp_parser_declarator_kind, int *, bool, bool);
2202 static enum tree_code cp_parser_ptr_operator
2203 (cp_parser *, tree *, cp_cv_quals *, tree *);
2204 static cp_cv_quals cp_parser_cv_qualifier_seq_opt
2205 (cp_parser *);
2206 static cp_virt_specifiers cp_parser_virt_specifier_seq_opt
2207 (cp_parser *);
2208 static cp_ref_qualifier cp_parser_ref_qualifier_opt
2209 (cp_parser *);
2210 static tree cp_parser_tx_qualifier_opt
2211 (cp_parser *);
2212 static tree cp_parser_late_return_type_opt
2213 (cp_parser *, cp_declarator *, tree &, cp_cv_quals);
2214 static tree cp_parser_declarator_id
2215 (cp_parser *, bool);
2216 static tree cp_parser_type_id
2217 (cp_parser *);
2218 static tree cp_parser_template_type_arg
2219 (cp_parser *);
2220 static tree cp_parser_trailing_type_id (cp_parser *);
2221 static tree cp_parser_type_id_1
2222 (cp_parser *, bool, bool);
2223 static void cp_parser_type_specifier_seq
2224 (cp_parser *, bool, bool, cp_decl_specifier_seq *);
2225 static tree cp_parser_parameter_declaration_clause
2226 (cp_parser *);
2227 static tree cp_parser_parameter_declaration_list
2228 (cp_parser *, bool *);
2229 static cp_parameter_declarator *cp_parser_parameter_declaration
2230 (cp_parser *, bool, bool *);
2231 static tree cp_parser_default_argument
2232 (cp_parser *, bool);
2233 static void cp_parser_function_body
2234 (cp_parser *, bool);
2235 static tree cp_parser_initializer
2236 (cp_parser *, bool *, bool *);
2237 static cp_expr cp_parser_initializer_clause
2238 (cp_parser *, bool *);
2239 static cp_expr cp_parser_braced_list
2240 (cp_parser*, bool*);
2241 static vec<constructor_elt, va_gc> *cp_parser_initializer_list
2242 (cp_parser *, bool *);
2243
2244 static bool cp_parser_ctor_initializer_opt_and_function_body
2245 (cp_parser *, bool);
2246
2247 static tree cp_parser_late_parsing_omp_declare_simd
2248 (cp_parser *, tree);
2249
2250 static tree cp_parser_late_parsing_cilk_simd_fn_info
2251 (cp_parser *, tree);
2252
2253 static tree cp_parser_late_parsing_oacc_routine
2254 (cp_parser *, tree);
2255
2256 static tree synthesize_implicit_template_parm
2257 (cp_parser *, tree);
2258 static tree finish_fully_implicit_template
2259 (cp_parser *, tree);
2260
2261 /* Classes [gram.class] */
2262
2263 static tree cp_parser_class_name
2264 (cp_parser *, bool, bool, enum tag_types, bool, bool, bool, bool = false);
2265 static tree cp_parser_class_specifier
2266 (cp_parser *);
2267 static tree cp_parser_class_head
2268 (cp_parser *, bool *);
2269 static enum tag_types cp_parser_class_key
2270 (cp_parser *);
2271 static void cp_parser_type_parameter_key
2272 (cp_parser* parser);
2273 static void cp_parser_member_specification_opt
2274 (cp_parser *);
2275 static void cp_parser_member_declaration
2276 (cp_parser *);
2277 static tree cp_parser_pure_specifier
2278 (cp_parser *);
2279 static tree cp_parser_constant_initializer
2280 (cp_parser *);
2281
2282 /* Derived classes [gram.class.derived] */
2283
2284 static tree cp_parser_base_clause
2285 (cp_parser *);
2286 static tree cp_parser_base_specifier
2287 (cp_parser *);
2288
2289 /* Special member functions [gram.special] */
2290
2291 static tree cp_parser_conversion_function_id
2292 (cp_parser *);
2293 static tree cp_parser_conversion_type_id
2294 (cp_parser *);
2295 static cp_declarator *cp_parser_conversion_declarator_opt
2296 (cp_parser *);
2297 static bool cp_parser_ctor_initializer_opt
2298 (cp_parser *);
2299 static void cp_parser_mem_initializer_list
2300 (cp_parser *);
2301 static tree cp_parser_mem_initializer
2302 (cp_parser *);
2303 static tree cp_parser_mem_initializer_id
2304 (cp_parser *);
2305
2306 /* Overloading [gram.over] */
2307
2308 static cp_expr cp_parser_operator_function_id
2309 (cp_parser *);
2310 static cp_expr cp_parser_operator
2311 (cp_parser *);
2312
2313 /* Templates [gram.temp] */
2314
2315 static void cp_parser_template_declaration
2316 (cp_parser *, bool);
2317 static tree cp_parser_template_parameter_list
2318 (cp_parser *);
2319 static tree cp_parser_template_parameter
2320 (cp_parser *, bool *, bool *);
2321 static tree cp_parser_type_parameter
2322 (cp_parser *, bool *);
2323 static tree cp_parser_template_id
2324 (cp_parser *, bool, bool, enum tag_types, bool);
2325 static tree cp_parser_template_name
2326 (cp_parser *, bool, bool, bool, enum tag_types, bool *);
2327 static tree cp_parser_template_argument_list
2328 (cp_parser *);
2329 static tree cp_parser_template_argument
2330 (cp_parser *);
2331 static void cp_parser_explicit_instantiation
2332 (cp_parser *);
2333 static void cp_parser_explicit_specialization
2334 (cp_parser *);
2335
2336 /* Exception handling [gram.exception] */
2337
2338 static tree cp_parser_try_block
2339 (cp_parser *);
2340 static bool cp_parser_function_try_block
2341 (cp_parser *);
2342 static void cp_parser_handler_seq
2343 (cp_parser *);
2344 static void cp_parser_handler
2345 (cp_parser *);
2346 static tree cp_parser_exception_declaration
2347 (cp_parser *);
2348 static tree cp_parser_throw_expression
2349 (cp_parser *);
2350 static tree cp_parser_exception_specification_opt
2351 (cp_parser *);
2352 static tree cp_parser_type_id_list
2353 (cp_parser *);
2354
2355 /* GNU Extensions */
2356
2357 static tree cp_parser_asm_specification_opt
2358 (cp_parser *);
2359 static tree cp_parser_asm_operand_list
2360 (cp_parser *);
2361 static tree cp_parser_asm_clobber_list
2362 (cp_parser *);
2363 static tree cp_parser_asm_label_list
2364 (cp_parser *);
2365 static bool cp_next_tokens_can_be_attribute_p
2366 (cp_parser *);
2367 static bool cp_next_tokens_can_be_gnu_attribute_p
2368 (cp_parser *);
2369 static bool cp_next_tokens_can_be_std_attribute_p
2370 (cp_parser *);
2371 static bool cp_nth_tokens_can_be_std_attribute_p
2372 (cp_parser *, size_t);
2373 static bool cp_nth_tokens_can_be_gnu_attribute_p
2374 (cp_parser *, size_t);
2375 static bool cp_nth_tokens_can_be_attribute_p
2376 (cp_parser *, size_t);
2377 static tree cp_parser_attributes_opt
2378 (cp_parser *);
2379 static tree cp_parser_gnu_attributes_opt
2380 (cp_parser *);
2381 static tree cp_parser_gnu_attribute_list
2382 (cp_parser *);
2383 static tree cp_parser_std_attribute
2384 (cp_parser *);
2385 static tree cp_parser_std_attribute_spec
2386 (cp_parser *);
2387 static tree cp_parser_std_attribute_spec_seq
2388 (cp_parser *);
2389 static bool cp_parser_extension_opt
2390 (cp_parser *, int *);
2391 static void cp_parser_label_declaration
2392 (cp_parser *);
2393
2394 /* Concept Extensions */
2395
2396 static tree cp_parser_requires_clause
2397 (cp_parser *);
2398 static tree cp_parser_requires_clause_opt
2399 (cp_parser *);
2400 static tree cp_parser_requires_expression
2401 (cp_parser *);
2402 static tree cp_parser_requirement_parameter_list
2403 (cp_parser *);
2404 static tree cp_parser_requirement_body
2405 (cp_parser *);
2406 static tree cp_parser_requirement_list
2407 (cp_parser *);
2408 static tree cp_parser_requirement
2409 (cp_parser *);
2410 static tree cp_parser_simple_requirement
2411 (cp_parser *);
2412 static tree cp_parser_compound_requirement
2413 (cp_parser *);
2414 static tree cp_parser_type_requirement
2415 (cp_parser *);
2416 static tree cp_parser_nested_requirement
2417 (cp_parser *);
2418
2419 /* Transactional Memory Extensions */
2420
2421 static tree cp_parser_transaction
2422 (cp_parser *, cp_token *);
2423 static tree cp_parser_transaction_expression
2424 (cp_parser *, enum rid);
2425 static bool cp_parser_function_transaction
2426 (cp_parser *, enum rid);
2427 static tree cp_parser_transaction_cancel
2428 (cp_parser *);
2429
2430 enum pragma_context {
2431 pragma_external,
2432 pragma_member,
2433 pragma_objc_icode,
2434 pragma_stmt,
2435 pragma_compound
2436 };
2437 static bool cp_parser_pragma
2438 (cp_parser *, enum pragma_context, bool *);
2439
2440 /* Objective-C++ Productions */
2441
2442 static tree cp_parser_objc_message_receiver
2443 (cp_parser *);
2444 static tree cp_parser_objc_message_args
2445 (cp_parser *);
2446 static tree cp_parser_objc_message_expression
2447 (cp_parser *);
2448 static cp_expr cp_parser_objc_encode_expression
2449 (cp_parser *);
2450 static tree cp_parser_objc_defs_expression
2451 (cp_parser *);
2452 static tree cp_parser_objc_protocol_expression
2453 (cp_parser *);
2454 static tree cp_parser_objc_selector_expression
2455 (cp_parser *);
2456 static cp_expr cp_parser_objc_expression
2457 (cp_parser *);
2458 static bool cp_parser_objc_selector_p
2459 (enum cpp_ttype);
2460 static tree cp_parser_objc_selector
2461 (cp_parser *);
2462 static tree cp_parser_objc_protocol_refs_opt
2463 (cp_parser *);
2464 static void cp_parser_objc_declaration
2465 (cp_parser *, tree);
2466 static tree cp_parser_objc_statement
2467 (cp_parser *);
2468 static bool cp_parser_objc_valid_prefix_attributes
2469 (cp_parser *, tree *);
2470 static void cp_parser_objc_at_property_declaration
2471 (cp_parser *) ;
2472 static void cp_parser_objc_at_synthesize_declaration
2473 (cp_parser *) ;
2474 static void cp_parser_objc_at_dynamic_declaration
2475 (cp_parser *) ;
2476 static tree cp_parser_objc_struct_declaration
2477 (cp_parser *) ;
2478
2479 /* Utility Routines */
2480
2481 static cp_expr cp_parser_lookup_name
2482 (cp_parser *, tree, enum tag_types, bool, bool, bool, tree *, location_t);
2483 static tree cp_parser_lookup_name_simple
2484 (cp_parser *, tree, location_t);
2485 static tree cp_parser_maybe_treat_template_as_class
2486 (tree, bool);
2487 static bool cp_parser_check_declarator_template_parameters
2488 (cp_parser *, cp_declarator *, location_t);
2489 static bool cp_parser_check_template_parameters
2490 (cp_parser *, unsigned, location_t, cp_declarator *);
2491 static cp_expr cp_parser_simple_cast_expression
2492 (cp_parser *);
2493 static tree cp_parser_global_scope_opt
2494 (cp_parser *, bool);
2495 static bool cp_parser_constructor_declarator_p
2496 (cp_parser *, bool);
2497 static tree cp_parser_function_definition_from_specifiers_and_declarator
2498 (cp_parser *, cp_decl_specifier_seq *, tree, const cp_declarator *);
2499 static tree cp_parser_function_definition_after_declarator
2500 (cp_parser *, bool);
2501 static bool cp_parser_template_declaration_after_export
2502 (cp_parser *, bool);
2503 static void cp_parser_perform_template_parameter_access_checks
2504 (vec<deferred_access_check, va_gc> *);
2505 static tree cp_parser_single_declaration
2506 (cp_parser *, vec<deferred_access_check, va_gc> *, bool, bool, bool *);
2507 static cp_expr cp_parser_functional_cast
2508 (cp_parser *, tree);
2509 static tree cp_parser_save_member_function_body
2510 (cp_parser *, cp_decl_specifier_seq *, cp_declarator *, tree);
2511 static tree cp_parser_save_nsdmi
2512 (cp_parser *);
2513 static tree cp_parser_enclosed_template_argument_list
2514 (cp_parser *);
2515 static void cp_parser_save_default_args
2516 (cp_parser *, tree);
2517 static void cp_parser_late_parsing_for_member
2518 (cp_parser *, tree);
2519 static tree cp_parser_late_parse_one_default_arg
2520 (cp_parser *, tree, tree, tree);
2521 static void cp_parser_late_parsing_nsdmi
2522 (cp_parser *, tree);
2523 static void cp_parser_late_parsing_default_args
2524 (cp_parser *, tree);
2525 static tree cp_parser_sizeof_operand
2526 (cp_parser *, enum rid);
2527 static tree cp_parser_trait_expr
2528 (cp_parser *, enum rid);
2529 static bool cp_parser_declares_only_class_p
2530 (cp_parser *);
2531 static void cp_parser_set_storage_class
2532 (cp_parser *, cp_decl_specifier_seq *, enum rid, cp_token *);
2533 static void cp_parser_set_decl_spec_type
2534 (cp_decl_specifier_seq *, tree, cp_token *, bool);
2535 static void set_and_check_decl_spec_loc
2536 (cp_decl_specifier_seq *decl_specs,
2537 cp_decl_spec ds, cp_token *);
2538 static bool cp_parser_friend_p
2539 (const cp_decl_specifier_seq *);
2540 static void cp_parser_required_error
2541 (cp_parser *, required_token, bool);
2542 static cp_token *cp_parser_require
2543 (cp_parser *, enum cpp_ttype, required_token);
2544 static cp_token *cp_parser_require_keyword
2545 (cp_parser *, enum rid, required_token);
2546 static bool cp_parser_token_starts_function_definition_p
2547 (cp_token *);
2548 static bool cp_parser_next_token_starts_class_definition_p
2549 (cp_parser *);
2550 static bool cp_parser_next_token_ends_template_argument_p
2551 (cp_parser *);
2552 static bool cp_parser_nth_token_starts_template_argument_list_p
2553 (cp_parser *, size_t);
2554 static enum tag_types cp_parser_token_is_class_key
2555 (cp_token *);
2556 static enum tag_types cp_parser_token_is_type_parameter_key
2557 (cp_token *);
2558 static void cp_parser_check_class_key
2559 (enum tag_types, tree type);
2560 static void cp_parser_check_access_in_redeclaration
2561 (tree type, location_t location);
2562 static bool cp_parser_optional_template_keyword
2563 (cp_parser *);
2564 static void cp_parser_pre_parsed_nested_name_specifier
2565 (cp_parser *);
2566 static bool cp_parser_cache_group
2567 (cp_parser *, enum cpp_ttype, unsigned);
2568 static tree cp_parser_cache_defarg
2569 (cp_parser *parser, bool nsdmi);
2570 static void cp_parser_parse_tentatively
2571 (cp_parser *);
2572 static void cp_parser_commit_to_tentative_parse
2573 (cp_parser *);
2574 static void cp_parser_commit_to_topmost_tentative_parse
2575 (cp_parser *);
2576 static void cp_parser_abort_tentative_parse
2577 (cp_parser *);
2578 static bool cp_parser_parse_definitely
2579 (cp_parser *);
2580 static inline bool cp_parser_parsing_tentatively
2581 (cp_parser *);
2582 static bool cp_parser_uncommitted_to_tentative_parse_p
2583 (cp_parser *);
2584 static void cp_parser_error
2585 (cp_parser *, const char *);
2586 static void cp_parser_name_lookup_error
2587 (cp_parser *, tree, tree, name_lookup_error, location_t);
2588 static bool cp_parser_simulate_error
2589 (cp_parser *);
2590 static bool cp_parser_check_type_definition
2591 (cp_parser *);
2592 static void cp_parser_check_for_definition_in_return_type
2593 (cp_declarator *, tree, location_t type_location);
2594 static void cp_parser_check_for_invalid_template_id
2595 (cp_parser *, tree, enum tag_types, location_t location);
2596 static bool cp_parser_non_integral_constant_expression
2597 (cp_parser *, non_integral_constant);
2598 static void cp_parser_diagnose_invalid_type_name
2599 (cp_parser *, tree, location_t);
2600 static bool cp_parser_parse_and_diagnose_invalid_type_name
2601 (cp_parser *);
2602 static int cp_parser_skip_to_closing_parenthesis
2603 (cp_parser *, bool, bool, bool);
2604 static void cp_parser_skip_to_end_of_statement
2605 (cp_parser *);
2606 static void cp_parser_consume_semicolon_at_end_of_statement
2607 (cp_parser *);
2608 static void cp_parser_skip_to_end_of_block_or_statement
2609 (cp_parser *);
2610 static bool cp_parser_skip_to_closing_brace
2611 (cp_parser *);
2612 static void cp_parser_skip_to_end_of_template_parameter_list
2613 (cp_parser *);
2614 static void cp_parser_skip_to_pragma_eol
2615 (cp_parser*, cp_token *);
2616 static bool cp_parser_error_occurred
2617 (cp_parser *);
2618 static bool cp_parser_allow_gnu_extensions_p
2619 (cp_parser *);
2620 static bool cp_parser_is_pure_string_literal
2621 (cp_token *);
2622 static bool cp_parser_is_string_literal
2623 (cp_token *);
2624 static bool cp_parser_is_keyword
2625 (cp_token *, enum rid);
2626 static tree cp_parser_make_typename_type
2627 (cp_parser *, tree, location_t location);
2628 static cp_declarator * cp_parser_make_indirect_declarator
2629 (enum tree_code, tree, cp_cv_quals, cp_declarator *, tree);
2630 static bool cp_parser_compound_literal_p
2631 (cp_parser *);
2632 static bool cp_parser_array_designator_p
2633 (cp_parser *);
2634 static bool cp_parser_skip_to_closing_square_bracket
2635 (cp_parser *);
2636
2637 /* Concept-related syntactic transformations */
2638
2639 static tree cp_parser_maybe_concept_name (cp_parser *, tree);
2640 static tree cp_parser_maybe_partial_concept_id (cp_parser *, tree, tree);
2641
2642 // -------------------------------------------------------------------------- //
2643 // Unevaluated Operand Guard
2644 //
2645 // Implementation of an RAII helper for unevaluated operand parsing.
2646 cp_unevaluated::cp_unevaluated ()
2647 {
2648 ++cp_unevaluated_operand;
2649 ++c_inhibit_evaluation_warnings;
2650 }
2651
2652 cp_unevaluated::~cp_unevaluated ()
2653 {
2654 --c_inhibit_evaluation_warnings;
2655 --cp_unevaluated_operand;
2656 }
2657
2658 // -------------------------------------------------------------------------- //
2659 // Tentative Parsing
2660
2661 /* Returns nonzero if we are parsing tentatively. */
2662
2663 static inline bool
2664 cp_parser_parsing_tentatively (cp_parser* parser)
2665 {
2666 return parser->context->next != NULL;
2667 }
2668
2669 /* Returns nonzero if TOKEN is a string literal. */
2670
2671 static bool
2672 cp_parser_is_pure_string_literal (cp_token* token)
2673 {
2674 return (token->type == CPP_STRING ||
2675 token->type == CPP_STRING16 ||
2676 token->type == CPP_STRING32 ||
2677 token->type == CPP_WSTRING ||
2678 token->type == CPP_UTF8STRING);
2679 }
2680
2681 /* Returns nonzero if TOKEN is a string literal
2682 of a user-defined string literal. */
2683
2684 static bool
2685 cp_parser_is_string_literal (cp_token* token)
2686 {
2687 return (cp_parser_is_pure_string_literal (token) ||
2688 token->type == CPP_STRING_USERDEF ||
2689 token->type == CPP_STRING16_USERDEF ||
2690 token->type == CPP_STRING32_USERDEF ||
2691 token->type == CPP_WSTRING_USERDEF ||
2692 token->type == CPP_UTF8STRING_USERDEF);
2693 }
2694
2695 /* Returns nonzero if TOKEN is the indicated KEYWORD. */
2696
2697 static bool
2698 cp_parser_is_keyword (cp_token* token, enum rid keyword)
2699 {
2700 return token->keyword == keyword;
2701 }
2702
2703 /* Return TOKEN's pragma_kind if it is CPP_PRAGMA, otherwise
2704 PRAGMA_NONE. */
2705
2706 static enum pragma_kind
2707 cp_parser_pragma_kind (cp_token *token)
2708 {
2709 if (token->type != CPP_PRAGMA)
2710 return PRAGMA_NONE;
2711 /* We smuggled the cpp_token->u.pragma value in an INTEGER_CST. */
2712 return (enum pragma_kind) TREE_INT_CST_LOW (token->u.value);
2713 }
2714
2715 /* Helper function for cp_parser_error.
2716 Having peeked a token of kind TOK1_KIND that might signify
2717 a conflict marker, peek successor tokens to determine
2718 if we actually do have a conflict marker.
2719 Specifically, we consider a run of 7 '<', '=' or '>' characters
2720 at the start of a line as a conflict marker.
2721 These come through the lexer as three pairs and a single,
2722 e.g. three CPP_LSHIFT tokens ("<<") and a CPP_LESS token ('<').
2723 If it returns true, *OUT_LOC is written to with the location/range
2724 of the marker. */
2725
2726 static bool
2727 cp_lexer_peek_conflict_marker (cp_lexer *lexer, enum cpp_ttype tok1_kind,
2728 location_t *out_loc)
2729 {
2730 cp_token *token2 = cp_lexer_peek_nth_token (lexer, 2);
2731 if (token2->type != tok1_kind)
2732 return false;
2733 cp_token *token3 = cp_lexer_peek_nth_token (lexer, 3);
2734 if (token3->type != tok1_kind)
2735 return false;
2736 cp_token *token4 = cp_lexer_peek_nth_token (lexer, 4);
2737 if (token4->type != conflict_marker_get_final_tok_kind (tok1_kind))
2738 return false;
2739
2740 /* It must be at the start of the line. */
2741 location_t start_loc = cp_lexer_peek_token (lexer)->location;
2742 if (LOCATION_COLUMN (start_loc) != 1)
2743 return false;
2744
2745 /* We have a conflict marker. Construct a location of the form:
2746 <<<<<<<
2747 ^~~~~~~
2748 with start == caret, finishing at the end of the marker. */
2749 location_t finish_loc = get_finish (token4->location);
2750 *out_loc = make_location (start_loc, start_loc, finish_loc);
2751
2752 return true;
2753 }
2754
2755 /* If not parsing tentatively, issue a diagnostic of the form
2756 FILE:LINE: MESSAGE before TOKEN
2757 where TOKEN is the next token in the input stream. MESSAGE
2758 (specified by the caller) is usually of the form "expected
2759 OTHER-TOKEN". */
2760
2761 static void
2762 cp_parser_error (cp_parser* parser, const char* gmsgid)
2763 {
2764 if (!cp_parser_simulate_error (parser))
2765 {
2766 cp_token *token = cp_lexer_peek_token (parser->lexer);
2767 /* This diagnostic makes more sense if it is tagged to the line
2768 of the token we just peeked at. */
2769 cp_lexer_set_source_position_from_token (token);
2770
2771 if (token->type == CPP_PRAGMA)
2772 {
2773 error_at (token->location,
2774 "%<#pragma%> is not allowed here");
2775 cp_parser_skip_to_pragma_eol (parser, token);
2776 return;
2777 }
2778
2779 /* If this is actually a conflict marker, report it as such. */
2780 if (token->type == CPP_LSHIFT
2781 || token->type == CPP_RSHIFT
2782 || token->type == CPP_EQ_EQ)
2783 {
2784 location_t loc;
2785 if (cp_lexer_peek_conflict_marker (parser->lexer, token->type, &loc))
2786 {
2787 error_at (loc, "version control conflict marker in file");
2788 return;
2789 }
2790 }
2791
2792 c_parse_error (gmsgid,
2793 /* Because c_parser_error does not understand
2794 CPP_KEYWORD, keywords are treated like
2795 identifiers. */
2796 (token->type == CPP_KEYWORD ? CPP_NAME : token->type),
2797 token->u.value, token->flags);
2798 }
2799 }
2800
2801 /* Issue an error about name-lookup failing. NAME is the
2802 IDENTIFIER_NODE DECL is the result of
2803 the lookup (as returned from cp_parser_lookup_name). DESIRED is
2804 the thing that we hoped to find. */
2805
2806 static void
2807 cp_parser_name_lookup_error (cp_parser* parser,
2808 tree name,
2809 tree decl,
2810 name_lookup_error desired,
2811 location_t location)
2812 {
2813 /* If name lookup completely failed, tell the user that NAME was not
2814 declared. */
2815 if (decl == error_mark_node)
2816 {
2817 if (parser->scope && parser->scope != global_namespace)
2818 error_at (location, "%<%E::%E%> has not been declared",
2819 parser->scope, name);
2820 else if (parser->scope == global_namespace)
2821 error_at (location, "%<::%E%> has not been declared", name);
2822 else if (parser->object_scope
2823 && !CLASS_TYPE_P (parser->object_scope))
2824 error_at (location, "request for member %qE in non-class type %qT",
2825 name, parser->object_scope);
2826 else if (parser->object_scope)
2827 error_at (location, "%<%T::%E%> has not been declared",
2828 parser->object_scope, name);
2829 else
2830 error_at (location, "%qE has not been declared", name);
2831 }
2832 else if (parser->scope && parser->scope != global_namespace)
2833 {
2834 switch (desired)
2835 {
2836 case NLE_TYPE:
2837 error_at (location, "%<%E::%E%> is not a type",
2838 parser->scope, name);
2839 break;
2840 case NLE_CXX98:
2841 error_at (location, "%<%E::%E%> is not a class or namespace",
2842 parser->scope, name);
2843 break;
2844 case NLE_NOT_CXX98:
2845 error_at (location,
2846 "%<%E::%E%> is not a class, namespace, or enumeration",
2847 parser->scope, name);
2848 break;
2849 default:
2850 gcc_unreachable ();
2851
2852 }
2853 }
2854 else if (parser->scope == global_namespace)
2855 {
2856 switch (desired)
2857 {
2858 case NLE_TYPE:
2859 error_at (location, "%<::%E%> is not a type", name);
2860 break;
2861 case NLE_CXX98:
2862 error_at (location, "%<::%E%> is not a class or namespace", name);
2863 break;
2864 case NLE_NOT_CXX98:
2865 error_at (location,
2866 "%<::%E%> is not a class, namespace, or enumeration",
2867 name);
2868 break;
2869 default:
2870 gcc_unreachable ();
2871 }
2872 }
2873 else
2874 {
2875 switch (desired)
2876 {
2877 case NLE_TYPE:
2878 error_at (location, "%qE is not a type", name);
2879 break;
2880 case NLE_CXX98:
2881 error_at (location, "%qE is not a class or namespace", name);
2882 break;
2883 case NLE_NOT_CXX98:
2884 error_at (location,
2885 "%qE is not a class, namespace, or enumeration", name);
2886 break;
2887 default:
2888 gcc_unreachable ();
2889 }
2890 }
2891 }
2892
2893 /* If we are parsing tentatively, remember that an error has occurred
2894 during this tentative parse. Returns true if the error was
2895 simulated; false if a message should be issued by the caller. */
2896
2897 static bool
2898 cp_parser_simulate_error (cp_parser* parser)
2899 {
2900 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
2901 {
2902 parser->context->status = CP_PARSER_STATUS_KIND_ERROR;
2903 return true;
2904 }
2905 return false;
2906 }
2907
2908 /* This function is called when a type is defined. If type
2909 definitions are forbidden at this point, an error message is
2910 issued. */
2911
2912 static bool
2913 cp_parser_check_type_definition (cp_parser* parser)
2914 {
2915 /* If types are forbidden here, issue a message. */
2916 if (parser->type_definition_forbidden_message)
2917 {
2918 /* Don't use `%s' to print the string, because quotations (`%<', `%>')
2919 in the message need to be interpreted. */
2920 error (parser->type_definition_forbidden_message);
2921 return false;
2922 }
2923 return true;
2924 }
2925
2926 /* This function is called when the DECLARATOR is processed. The TYPE
2927 was a type defined in the decl-specifiers. If it is invalid to
2928 define a type in the decl-specifiers for DECLARATOR, an error is
2929 issued. TYPE_LOCATION is the location of TYPE and is used
2930 for error reporting. */
2931
2932 static void
2933 cp_parser_check_for_definition_in_return_type (cp_declarator *declarator,
2934 tree type, location_t type_location)
2935 {
2936 /* [dcl.fct] forbids type definitions in return types.
2937 Unfortunately, it's not easy to know whether or not we are
2938 processing a return type until after the fact. */
2939 while (declarator
2940 && (declarator->kind == cdk_pointer
2941 || declarator->kind == cdk_reference
2942 || declarator->kind == cdk_ptrmem))
2943 declarator = declarator->declarator;
2944 if (declarator
2945 && declarator->kind == cdk_function)
2946 {
2947 error_at (type_location,
2948 "new types may not be defined in a return type");
2949 inform (type_location,
2950 "(perhaps a semicolon is missing after the definition of %qT)",
2951 type);
2952 }
2953 }
2954
2955 /* A type-specifier (TYPE) has been parsed which cannot be followed by
2956 "<" in any valid C++ program. If the next token is indeed "<",
2957 issue a message warning the user about what appears to be an
2958 invalid attempt to form a template-id. LOCATION is the location
2959 of the type-specifier (TYPE) */
2960
2961 static void
2962 cp_parser_check_for_invalid_template_id (cp_parser* parser,
2963 tree type,
2964 enum tag_types tag_type,
2965 location_t location)
2966 {
2967 cp_token_position start = 0;
2968
2969 if (cp_lexer_next_token_is (parser->lexer, CPP_LESS))
2970 {
2971 if (TYPE_P (type))
2972 error_at (location, "%qT is not a template", type);
2973 else if (identifier_p (type))
2974 {
2975 if (tag_type != none_type)
2976 error_at (location, "%qE is not a class template", type);
2977 else
2978 error_at (location, "%qE is not a template", type);
2979 }
2980 else
2981 error_at (location, "invalid template-id");
2982 /* Remember the location of the invalid "<". */
2983 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
2984 start = cp_lexer_token_position (parser->lexer, true);
2985 /* Consume the "<". */
2986 cp_lexer_consume_token (parser->lexer);
2987 /* Parse the template arguments. */
2988 cp_parser_enclosed_template_argument_list (parser);
2989 /* Permanently remove the invalid template arguments so that
2990 this error message is not issued again. */
2991 if (start)
2992 cp_lexer_purge_tokens_after (parser->lexer, start);
2993 }
2994 }
2995
2996 /* If parsing an integral constant-expression, issue an error message
2997 about the fact that THING appeared and return true. Otherwise,
2998 return false. In either case, set
2999 PARSER->NON_INTEGRAL_CONSTANT_EXPRESSION_P. */
3000
3001 static bool
3002 cp_parser_non_integral_constant_expression (cp_parser *parser,
3003 non_integral_constant thing)
3004 {
3005 parser->non_integral_constant_expression_p = true;
3006 if (parser->integral_constant_expression_p)
3007 {
3008 if (!parser->allow_non_integral_constant_expression_p)
3009 {
3010 const char *msg = NULL;
3011 switch (thing)
3012 {
3013 case NIC_FLOAT:
3014 error ("floating-point literal "
3015 "cannot appear in a constant-expression");
3016 return true;
3017 case NIC_CAST:
3018 error ("a cast to a type other than an integral or "
3019 "enumeration type cannot appear in a "
3020 "constant-expression");
3021 return true;
3022 case NIC_TYPEID:
3023 error ("%<typeid%> operator "
3024 "cannot appear in a constant-expression");
3025 return true;
3026 case NIC_NCC:
3027 error ("non-constant compound literals "
3028 "cannot appear in a constant-expression");
3029 return true;
3030 case NIC_FUNC_CALL:
3031 error ("a function call "
3032 "cannot appear in a constant-expression");
3033 return true;
3034 case NIC_INC:
3035 error ("an increment "
3036 "cannot appear in a constant-expression");
3037 return true;
3038 case NIC_DEC:
3039 error ("an decrement "
3040 "cannot appear in a constant-expression");
3041 return true;
3042 case NIC_ARRAY_REF:
3043 error ("an array reference "
3044 "cannot appear in a constant-expression");
3045 return true;
3046 case NIC_ADDR_LABEL:
3047 error ("the address of a label "
3048 "cannot appear in a constant-expression");
3049 return true;
3050 case NIC_OVERLOADED:
3051 error ("calls to overloaded operators "
3052 "cannot appear in a constant-expression");
3053 return true;
3054 case NIC_ASSIGNMENT:
3055 error ("an assignment cannot appear in a constant-expression");
3056 return true;
3057 case NIC_COMMA:
3058 error ("a comma operator "
3059 "cannot appear in a constant-expression");
3060 return true;
3061 case NIC_CONSTRUCTOR:
3062 error ("a call to a constructor "
3063 "cannot appear in a constant-expression");
3064 return true;
3065 case NIC_TRANSACTION:
3066 error ("a transaction expression "
3067 "cannot appear in a constant-expression");
3068 return true;
3069 case NIC_THIS:
3070 msg = "this";
3071 break;
3072 case NIC_FUNC_NAME:
3073 msg = "__FUNCTION__";
3074 break;
3075 case NIC_PRETTY_FUNC:
3076 msg = "__PRETTY_FUNCTION__";
3077 break;
3078 case NIC_C99_FUNC:
3079 msg = "__func__";
3080 break;
3081 case NIC_VA_ARG:
3082 msg = "va_arg";
3083 break;
3084 case NIC_ARROW:
3085 msg = "->";
3086 break;
3087 case NIC_POINT:
3088 msg = ".";
3089 break;
3090 case NIC_STAR:
3091 msg = "*";
3092 break;
3093 case NIC_ADDR:
3094 msg = "&";
3095 break;
3096 case NIC_PREINCREMENT:
3097 msg = "++";
3098 break;
3099 case NIC_PREDECREMENT:
3100 msg = "--";
3101 break;
3102 case NIC_NEW:
3103 msg = "new";
3104 break;
3105 case NIC_DEL:
3106 msg = "delete";
3107 break;
3108 default:
3109 gcc_unreachable ();
3110 }
3111 if (msg)
3112 error ("%qs cannot appear in a constant-expression", msg);
3113 return true;
3114 }
3115 }
3116 return false;
3117 }
3118
3119 /* Emit a diagnostic for an invalid type name. This function commits
3120 to the current active tentative parse, if any. (Otherwise, the
3121 problematic construct might be encountered again later, resulting
3122 in duplicate error messages.) LOCATION is the location of ID. */
3123
3124 static void
3125 cp_parser_diagnose_invalid_type_name (cp_parser *parser, tree id,
3126 location_t location)
3127 {
3128 tree decl, ambiguous_decls;
3129 cp_parser_commit_to_tentative_parse (parser);
3130 /* Try to lookup the identifier. */
3131 decl = cp_parser_lookup_name (parser, id, none_type,
3132 /*is_template=*/false,
3133 /*is_namespace=*/false,
3134 /*check_dependency=*/true,
3135 &ambiguous_decls, location);
3136 if (ambiguous_decls)
3137 /* If the lookup was ambiguous, an error will already have
3138 been issued. */
3139 return;
3140 /* If the lookup found a template-name, it means that the user forgot
3141 to specify an argument list. Emit a useful error message. */
3142 if (DECL_TYPE_TEMPLATE_P (decl))
3143 {
3144 error_at (location,
3145 "invalid use of template-name %qE without an argument list",
3146 decl);
3147 inform (DECL_SOURCE_LOCATION (decl), "%qD declared here", decl);
3148 }
3149 else if (TREE_CODE (id) == BIT_NOT_EXPR)
3150 error_at (location, "invalid use of destructor %qD as a type", id);
3151 else if (TREE_CODE (decl) == TYPE_DECL)
3152 /* Something like 'unsigned A a;' */
3153 error_at (location, "invalid combination of multiple type-specifiers");
3154 else if (!parser->scope)
3155 {
3156 /* Issue an error message. */
3157 error_at (location, "%qE does not name a type", id);
3158 /* If we're in a template class, it's possible that the user was
3159 referring to a type from a base class. For example:
3160
3161 template <typename T> struct A { typedef T X; };
3162 template <typename T> struct B : public A<T> { X x; };
3163
3164 The user should have said "typename A<T>::X". */
3165 if (cxx_dialect < cxx11 && id == ridpointers[(int)RID_CONSTEXPR])
3166 inform (location, "C++11 %<constexpr%> only available with "
3167 "-std=c++11 or -std=gnu++11");
3168 else if (cxx_dialect < cxx11 && id == ridpointers[(int)RID_NOEXCEPT])
3169 inform (location, "C++11 %<noexcept%> only available with "
3170 "-std=c++11 or -std=gnu++11");
3171 else if (cxx_dialect < cxx11
3172 && TREE_CODE (id) == IDENTIFIER_NODE
3173 && !strcmp (IDENTIFIER_POINTER (id), "thread_local"))
3174 inform (location, "C++11 %<thread_local%> only available with "
3175 "-std=c++11 or -std=gnu++11");
3176 else if (!flag_concepts && id == ridpointers[(int)RID_CONCEPT])
3177 inform (location, "%<concept%> only available with -fconcepts");
3178 else if (processing_template_decl && current_class_type
3179 && TYPE_BINFO (current_class_type))
3180 {
3181 tree b;
3182
3183 for (b = TREE_CHAIN (TYPE_BINFO (current_class_type));
3184 b;
3185 b = TREE_CHAIN (b))
3186 {
3187 tree base_type = BINFO_TYPE (b);
3188 if (CLASS_TYPE_P (base_type)
3189 && dependent_type_p (base_type))
3190 {
3191 tree field;
3192 /* Go from a particular instantiation of the
3193 template (which will have an empty TYPE_FIELDs),
3194 to the main version. */
3195 base_type = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (base_type);
3196 for (field = TYPE_FIELDS (base_type);
3197 field;
3198 field = DECL_CHAIN (field))
3199 if (TREE_CODE (field) == TYPE_DECL
3200 && DECL_NAME (field) == id)
3201 {
3202 inform (location,
3203 "(perhaps %<typename %T::%E%> was intended)",
3204 BINFO_TYPE (b), id);
3205 break;
3206 }
3207 if (field)
3208 break;
3209 }
3210 }
3211 }
3212 }
3213 /* Here we diagnose qualified-ids where the scope is actually correct,
3214 but the identifier does not resolve to a valid type name. */
3215 else if (parser->scope != error_mark_node)
3216 {
3217 if (TREE_CODE (parser->scope) == NAMESPACE_DECL)
3218 {
3219 if (cp_lexer_next_token_is (parser->lexer, CPP_LESS))
3220 error_at (location_of (id),
3221 "%qE in namespace %qE does not name a template type",
3222 id, parser->scope);
3223 else
3224 error_at (location_of (id),
3225 "%qE in namespace %qE does not name a type",
3226 id, parser->scope);
3227 if (DECL_P (decl))
3228 inform (DECL_SOURCE_LOCATION (decl), "%qD declared here", decl);
3229 }
3230 else if (CLASS_TYPE_P (parser->scope)
3231 && constructor_name_p (id, parser->scope))
3232 {
3233 /* A<T>::A<T>() */
3234 error_at (location, "%<%T::%E%> names the constructor, not"
3235 " the type", parser->scope, id);
3236 if (cp_lexer_next_token_is (parser->lexer, CPP_LESS))
3237 error_at (location, "and %qT has no template constructors",
3238 parser->scope);
3239 }
3240 else if (TYPE_P (parser->scope)
3241 && dependent_scope_p (parser->scope))
3242 error_at (location, "need %<typename%> before %<%T::%E%> because "
3243 "%qT is a dependent scope",
3244 parser->scope, id, parser->scope);
3245 else if (TYPE_P (parser->scope))
3246 {
3247 if (cp_lexer_next_token_is (parser->lexer, CPP_LESS))
3248 error_at (location_of (id),
3249 "%qE in %q#T does not name a template type",
3250 id, parser->scope);
3251 else
3252 error_at (location_of (id),
3253 "%qE in %q#T does not name a type",
3254 id, parser->scope);
3255 if (DECL_P (decl))
3256 inform (DECL_SOURCE_LOCATION (decl), "%qD declared here", decl);
3257 }
3258 else
3259 gcc_unreachable ();
3260 }
3261 }
3262
3263 /* Check for a common situation where a type-name should be present,
3264 but is not, and issue a sensible error message. Returns true if an
3265 invalid type-name was detected.
3266
3267 The situation handled by this function are variable declarations of the
3268 form `ID a', where `ID' is an id-expression and `a' is a plain identifier.
3269 Usually, `ID' should name a type, but if we got here it means that it
3270 does not. We try to emit the best possible error message depending on
3271 how exactly the id-expression looks like. */
3272
3273 static bool
3274 cp_parser_parse_and_diagnose_invalid_type_name (cp_parser *parser)
3275 {
3276 tree id;
3277 cp_token *token = cp_lexer_peek_token (parser->lexer);
3278
3279 /* Avoid duplicate error about ambiguous lookup. */
3280 if (token->type == CPP_NESTED_NAME_SPECIFIER)
3281 {
3282 cp_token *next = cp_lexer_peek_nth_token (parser->lexer, 2);
3283 if (next->type == CPP_NAME && next->error_reported)
3284 goto out;
3285 }
3286
3287 cp_parser_parse_tentatively (parser);
3288 id = cp_parser_id_expression (parser,
3289 /*template_keyword_p=*/false,
3290 /*check_dependency_p=*/true,
3291 /*template_p=*/NULL,
3292 /*declarator_p=*/true,
3293 /*optional_p=*/false);
3294 /* If the next token is a (, this is a function with no explicit return
3295 type, i.e. constructor, destructor or conversion op. */
3296 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN)
3297 || TREE_CODE (id) == TYPE_DECL)
3298 {
3299 cp_parser_abort_tentative_parse (parser);
3300 return false;
3301 }
3302 if (!cp_parser_parse_definitely (parser))
3303 return false;
3304
3305 /* Emit a diagnostic for the invalid type. */
3306 cp_parser_diagnose_invalid_type_name (parser, id, token->location);
3307 out:
3308 /* If we aren't in the middle of a declarator (i.e. in a
3309 parameter-declaration-clause), skip to the end of the declaration;
3310 there's no point in trying to process it. */
3311 if (!parser->in_declarator_p)
3312 cp_parser_skip_to_end_of_block_or_statement (parser);
3313 return true;
3314 }
3315
3316 /* Consume tokens up to, and including, the next non-nested closing `)'.
3317 Returns 1 iff we found a closing `)'. RECOVERING is true, if we
3318 are doing error recovery. Returns -1 if OR_TTYPE is not CPP_EOF and we
3319 found an unnested token of that type. */
3320
3321 static int
3322 cp_parser_skip_to_closing_parenthesis_1 (cp_parser *parser,
3323 bool recovering,
3324 cpp_ttype or_ttype,
3325 bool consume_paren)
3326 {
3327 unsigned paren_depth = 0;
3328 unsigned brace_depth = 0;
3329 unsigned square_depth = 0;
3330
3331 if (recovering && or_ttype == CPP_EOF
3332 && cp_parser_uncommitted_to_tentative_parse_p (parser))
3333 return 0;
3334
3335 while (true)
3336 {
3337 cp_token * token = cp_lexer_peek_token (parser->lexer);
3338
3339 /* Have we found what we're looking for before the closing paren? */
3340 if (token->type == or_ttype && or_ttype != CPP_EOF
3341 && !brace_depth && !paren_depth && !square_depth)
3342 return -1;
3343
3344 switch (token->type)
3345 {
3346 case CPP_EOF:
3347 case CPP_PRAGMA_EOL:
3348 /* If we've run out of tokens, then there is no closing `)'. */
3349 return 0;
3350
3351 /* This is good for lambda expression capture-lists. */
3352 case CPP_OPEN_SQUARE:
3353 ++square_depth;
3354 break;
3355 case CPP_CLOSE_SQUARE:
3356 if (!square_depth--)
3357 return 0;
3358 break;
3359
3360 case CPP_SEMICOLON:
3361 /* This matches the processing in skip_to_end_of_statement. */
3362 if (!brace_depth)
3363 return 0;
3364 break;
3365
3366 case CPP_OPEN_BRACE:
3367 ++brace_depth;
3368 break;
3369 case CPP_CLOSE_BRACE:
3370 if (!brace_depth--)
3371 return 0;
3372 break;
3373
3374 case CPP_OPEN_PAREN:
3375 if (!brace_depth)
3376 ++paren_depth;
3377 break;
3378
3379 case CPP_CLOSE_PAREN:
3380 if (!brace_depth && !paren_depth--)
3381 {
3382 if (consume_paren)
3383 cp_lexer_consume_token (parser->lexer);
3384 return 1;
3385 }
3386 break;
3387
3388 default:
3389 break;
3390 }
3391
3392 /* Consume the token. */
3393 cp_lexer_consume_token (parser->lexer);
3394 }
3395 }
3396
3397 /* Consume tokens up to, and including, the next non-nested closing `)'.
3398 Returns 1 iff we found a closing `)'. RECOVERING is true, if we
3399 are doing error recovery. Returns -1 if OR_COMMA is true and we
3400 found an unnested token of that type. */
3401
3402 static int
3403 cp_parser_skip_to_closing_parenthesis (cp_parser *parser,
3404 bool recovering,
3405 bool or_comma,
3406 bool consume_paren)
3407 {
3408 cpp_ttype ttype = or_comma ? CPP_COMMA : CPP_EOF;
3409 return cp_parser_skip_to_closing_parenthesis_1 (parser, recovering,
3410 ttype, consume_paren);
3411 }
3412
3413 /* Consume tokens until we reach the end of the current statement.
3414 Normally, that will be just before consuming a `;'. However, if a
3415 non-nested `}' comes first, then we stop before consuming that. */
3416
3417 static void
3418 cp_parser_skip_to_end_of_statement (cp_parser* parser)
3419 {
3420 unsigned nesting_depth = 0;
3421
3422 /* Unwind generic function template scope if necessary. */
3423 if (parser->fully_implicit_function_template_p)
3424 finish_fully_implicit_template (parser, /*member_decl_opt=*/0);
3425
3426 while (true)
3427 {
3428 cp_token *token = cp_lexer_peek_token (parser->lexer);
3429
3430 switch (token->type)
3431 {
3432 case CPP_EOF:
3433 case CPP_PRAGMA_EOL:
3434 /* If we've run out of tokens, stop. */
3435 return;
3436
3437 case CPP_SEMICOLON:
3438 /* If the next token is a `;', we have reached the end of the
3439 statement. */
3440 if (!nesting_depth)
3441 return;
3442 break;
3443
3444 case CPP_CLOSE_BRACE:
3445 /* If this is a non-nested '}', stop before consuming it.
3446 That way, when confronted with something like:
3447
3448 { 3 + }
3449
3450 we stop before consuming the closing '}', even though we
3451 have not yet reached a `;'. */
3452 if (nesting_depth == 0)
3453 return;
3454
3455 /* If it is the closing '}' for a block that we have
3456 scanned, stop -- but only after consuming the token.
3457 That way given:
3458
3459 void f g () { ... }
3460 typedef int I;
3461
3462 we will stop after the body of the erroneously declared
3463 function, but before consuming the following `typedef'
3464 declaration. */
3465 if (--nesting_depth == 0)
3466 {
3467 cp_lexer_consume_token (parser->lexer);
3468 return;
3469 }
3470
3471 case CPP_OPEN_BRACE:
3472 ++nesting_depth;
3473 break;
3474
3475 default:
3476 break;
3477 }
3478
3479 /* Consume the token. */
3480 cp_lexer_consume_token (parser->lexer);
3481 }
3482 }
3483
3484 /* This function is called at the end of a statement or declaration.
3485 If the next token is a semicolon, it is consumed; otherwise, error
3486 recovery is attempted. */
3487
3488 static void
3489 cp_parser_consume_semicolon_at_end_of_statement (cp_parser *parser)
3490 {
3491 /* Look for the trailing `;'. */
3492 if (!cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON))
3493 {
3494 /* If there is additional (erroneous) input, skip to the end of
3495 the statement. */
3496 cp_parser_skip_to_end_of_statement (parser);
3497 /* If the next token is now a `;', consume it. */
3498 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
3499 cp_lexer_consume_token (parser->lexer);
3500 }
3501 }
3502
3503 /* Skip tokens until we have consumed an entire block, or until we
3504 have consumed a non-nested `;'. */
3505
3506 static void
3507 cp_parser_skip_to_end_of_block_or_statement (cp_parser* parser)
3508 {
3509 int nesting_depth = 0;
3510
3511 /* Unwind generic function template scope if necessary. */
3512 if (parser->fully_implicit_function_template_p)
3513 finish_fully_implicit_template (parser, /*member_decl_opt=*/0);
3514
3515 while (nesting_depth >= 0)
3516 {
3517 cp_token *token = cp_lexer_peek_token (parser->lexer);
3518
3519 switch (token->type)
3520 {
3521 case CPP_EOF:
3522 case CPP_PRAGMA_EOL:
3523 /* If we've run out of tokens, stop. */
3524 return;
3525
3526 case CPP_SEMICOLON:
3527 /* Stop if this is an unnested ';'. */
3528 if (!nesting_depth)
3529 nesting_depth = -1;
3530 break;
3531
3532 case CPP_CLOSE_BRACE:
3533 /* Stop if this is an unnested '}', or closes the outermost
3534 nesting level. */
3535 nesting_depth--;
3536 if (nesting_depth < 0)
3537 return;
3538 if (!nesting_depth)
3539 nesting_depth = -1;
3540 break;
3541
3542 case CPP_OPEN_BRACE:
3543 /* Nest. */
3544 nesting_depth++;
3545 break;
3546
3547 default:
3548 break;
3549 }
3550
3551 /* Consume the token. */
3552 cp_lexer_consume_token (parser->lexer);
3553 }
3554 }
3555
3556 /* Skip tokens until a non-nested closing curly brace is the next
3557 token, or there are no more tokens. Return true in the first case,
3558 false otherwise. */
3559
3560 static bool
3561 cp_parser_skip_to_closing_brace (cp_parser *parser)
3562 {
3563 unsigned nesting_depth = 0;
3564
3565 while (true)
3566 {
3567 cp_token *token = cp_lexer_peek_token (parser->lexer);
3568
3569 switch (token->type)
3570 {
3571 case CPP_EOF:
3572 case CPP_PRAGMA_EOL:
3573 /* If we've run out of tokens, stop. */
3574 return false;
3575
3576 case CPP_CLOSE_BRACE:
3577 /* If the next token is a non-nested `}', then we have reached
3578 the end of the current block. */
3579 if (nesting_depth-- == 0)
3580 return true;
3581 break;
3582
3583 case CPP_OPEN_BRACE:
3584 /* If it the next token is a `{', then we are entering a new
3585 block. Consume the entire block. */
3586 ++nesting_depth;
3587 break;
3588
3589 default:
3590 break;
3591 }
3592
3593 /* Consume the token. */
3594 cp_lexer_consume_token (parser->lexer);
3595 }
3596 }
3597
3598 /* Consume tokens until we reach the end of the pragma. The PRAGMA_TOK
3599 parameter is the PRAGMA token, allowing us to purge the entire pragma
3600 sequence. */
3601
3602 static void
3603 cp_parser_skip_to_pragma_eol (cp_parser* parser, cp_token *pragma_tok)
3604 {
3605 cp_token *token;
3606
3607 parser->lexer->in_pragma = false;
3608
3609 do
3610 token = cp_lexer_consume_token (parser->lexer);
3611 while (token->type != CPP_PRAGMA_EOL && token->type != CPP_EOF);
3612
3613 /* Ensure that the pragma is not parsed again. */
3614 cp_lexer_purge_tokens_after (parser->lexer, pragma_tok);
3615 }
3616
3617 /* Require pragma end of line, resyncing with it as necessary. The
3618 arguments are as for cp_parser_skip_to_pragma_eol. */
3619
3620 static void
3621 cp_parser_require_pragma_eol (cp_parser *parser, cp_token *pragma_tok)
3622 {
3623 parser->lexer->in_pragma = false;
3624 if (!cp_parser_require (parser, CPP_PRAGMA_EOL, RT_PRAGMA_EOL))
3625 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
3626 }
3627
3628 /* This is a simple wrapper around make_typename_type. When the id is
3629 an unresolved identifier node, we can provide a superior diagnostic
3630 using cp_parser_diagnose_invalid_type_name. */
3631
3632 static tree
3633 cp_parser_make_typename_type (cp_parser *parser, tree id,
3634 location_t id_location)
3635 {
3636 tree result;
3637 if (identifier_p (id))
3638 {
3639 result = make_typename_type (parser->scope, id, typename_type,
3640 /*complain=*/tf_none);
3641 if (result == error_mark_node)
3642 cp_parser_diagnose_invalid_type_name (parser, id, id_location);
3643 return result;
3644 }
3645 return make_typename_type (parser->scope, id, typename_type, tf_error);
3646 }
3647
3648 /* This is a wrapper around the
3649 make_{pointer,ptrmem,reference}_declarator functions that decides
3650 which one to call based on the CODE and CLASS_TYPE arguments. The
3651 CODE argument should be one of the values returned by
3652 cp_parser_ptr_operator. ATTRIBUTES represent the attributes that
3653 appertain to the pointer or reference. */
3654
3655 static cp_declarator *
3656 cp_parser_make_indirect_declarator (enum tree_code code, tree class_type,
3657 cp_cv_quals cv_qualifiers,
3658 cp_declarator *target,
3659 tree attributes)
3660 {
3661 if (code == ERROR_MARK)
3662 return cp_error_declarator;
3663
3664 if (code == INDIRECT_REF)
3665 if (class_type == NULL_TREE)
3666 return make_pointer_declarator (cv_qualifiers, target, attributes);
3667 else
3668 return make_ptrmem_declarator (cv_qualifiers, class_type,
3669 target, attributes);
3670 else if (code == ADDR_EXPR && class_type == NULL_TREE)
3671 return make_reference_declarator (cv_qualifiers, target,
3672 false, attributes);
3673 else if (code == NON_LVALUE_EXPR && class_type == NULL_TREE)
3674 return make_reference_declarator (cv_qualifiers, target,
3675 true, attributes);
3676 gcc_unreachable ();
3677 }
3678
3679 /* Create a new C++ parser. */
3680
3681 static cp_parser *
3682 cp_parser_new (void)
3683 {
3684 cp_parser *parser;
3685 cp_lexer *lexer;
3686 unsigned i;
3687
3688 /* cp_lexer_new_main is called before doing GC allocation because
3689 cp_lexer_new_main might load a PCH file. */
3690 lexer = cp_lexer_new_main ();
3691
3692 /* Initialize the binops_by_token so that we can get the tree
3693 directly from the token. */
3694 for (i = 0; i < sizeof (binops) / sizeof (binops[0]); i++)
3695 binops_by_token[binops[i].token_type] = binops[i];
3696
3697 parser = ggc_cleared_alloc<cp_parser> ();
3698 parser->lexer = lexer;
3699 parser->context = cp_parser_context_new (NULL);
3700
3701 /* For now, we always accept GNU extensions. */
3702 parser->allow_gnu_extensions_p = 1;
3703
3704 /* The `>' token is a greater-than operator, not the end of a
3705 template-id. */
3706 parser->greater_than_is_operator_p = true;
3707
3708 parser->default_arg_ok_p = true;
3709
3710 /* We are not parsing a constant-expression. */
3711 parser->integral_constant_expression_p = false;
3712 parser->allow_non_integral_constant_expression_p = false;
3713 parser->non_integral_constant_expression_p = false;
3714
3715 /* Local variable names are not forbidden. */
3716 parser->local_variables_forbidden_p = false;
3717
3718 /* We are not processing an `extern "C"' declaration. */
3719 parser->in_unbraced_linkage_specification_p = false;
3720
3721 /* We are not processing a declarator. */
3722 parser->in_declarator_p = false;
3723
3724 /* We are not processing a template-argument-list. */
3725 parser->in_template_argument_list_p = false;
3726
3727 /* We are not in an iteration statement. */
3728 parser->in_statement = 0;
3729
3730 /* We are not in a switch statement. */
3731 parser->in_switch_statement_p = false;
3732
3733 /* We are not parsing a type-id inside an expression. */
3734 parser->in_type_id_in_expr_p = false;
3735
3736 /* Declarations aren't implicitly extern "C". */
3737 parser->implicit_extern_c = false;
3738
3739 /* String literals should be translated to the execution character set. */
3740 parser->translate_strings_p = true;
3741
3742 /* We are not parsing a function body. */
3743 parser->in_function_body = false;
3744
3745 /* We can correct until told otherwise. */
3746 parser->colon_corrects_to_scope_p = true;
3747
3748 /* The unparsed function queue is empty. */
3749 push_unparsed_function_queues (parser);
3750
3751 /* There are no classes being defined. */
3752 parser->num_classes_being_defined = 0;
3753
3754 /* No template parameters apply. */
3755 parser->num_template_parameter_lists = 0;
3756
3757 /* Not declaring an implicit function template. */
3758 parser->auto_is_implicit_function_template_parm_p = false;
3759 parser->fully_implicit_function_template_p = false;
3760 parser->implicit_template_parms = 0;
3761 parser->implicit_template_scope = 0;
3762
3763 /* Active OpenACC routine clauses. */
3764 parser->oacc_routine = NULL;
3765
3766 /* Allow constrained-type-specifiers. */
3767 parser->prevent_constrained_type_specifiers = 0;
3768
3769 return parser;
3770 }
3771
3772 /* Create a cp_lexer structure which will emit the tokens in CACHE
3773 and push it onto the parser's lexer stack. This is used for delayed
3774 parsing of in-class method bodies and default arguments, and should
3775 not be confused with tentative parsing. */
3776 static void
3777 cp_parser_push_lexer_for_tokens (cp_parser *parser, cp_token_cache *cache)
3778 {
3779 cp_lexer *lexer = cp_lexer_new_from_tokens (cache);
3780 lexer->next = parser->lexer;
3781 parser->lexer = lexer;
3782
3783 /* Move the current source position to that of the first token in the
3784 new lexer. */
3785 cp_lexer_set_source_position_from_token (lexer->next_token);
3786 }
3787
3788 /* Pop the top lexer off the parser stack. This is never used for the
3789 "main" lexer, only for those pushed by cp_parser_push_lexer_for_tokens. */
3790 static void
3791 cp_parser_pop_lexer (cp_parser *parser)
3792 {
3793 cp_lexer *lexer = parser->lexer;
3794 parser->lexer = lexer->next;
3795 cp_lexer_destroy (lexer);
3796
3797 /* Put the current source position back where it was before this
3798 lexer was pushed. */
3799 cp_lexer_set_source_position_from_token (parser->lexer->next_token);
3800 }
3801
3802 /* Lexical conventions [gram.lex] */
3803
3804 /* Parse an identifier. Returns an IDENTIFIER_NODE representing the
3805 identifier. */
3806
3807 static cp_expr
3808 cp_parser_identifier (cp_parser* parser)
3809 {
3810 cp_token *token;
3811
3812 /* Look for the identifier. */
3813 token = cp_parser_require (parser, CPP_NAME, RT_NAME);
3814 /* Return the value. */
3815 if (token)
3816 return cp_expr (token->u.value, token->location);
3817 else
3818 return error_mark_node;
3819 }
3820
3821 /* Parse a sequence of adjacent string constants. Returns a
3822 TREE_STRING representing the combined, nul-terminated string
3823 constant. If TRANSLATE is true, translate the string to the
3824 execution character set. If WIDE_OK is true, a wide string is
3825 invalid here.
3826
3827 C++98 [lex.string] says that if a narrow string literal token is
3828 adjacent to a wide string literal token, the behavior is undefined.
3829 However, C99 6.4.5p4 says that this results in a wide string literal.
3830 We follow C99 here, for consistency with the C front end.
3831
3832 This code is largely lifted from lex_string() in c-lex.c.
3833
3834 FUTURE: ObjC++ will need to handle @-strings here. */
3835 static cp_expr
3836 cp_parser_string_literal (cp_parser *parser, bool translate, bool wide_ok,
3837 bool lookup_udlit = true)
3838 {
3839 tree value;
3840 size_t count;
3841 struct obstack str_ob;
3842 cpp_string str, istr, *strs;
3843 cp_token *tok;
3844 enum cpp_ttype type, curr_type;
3845 int have_suffix_p = 0;
3846 tree string_tree;
3847 tree suffix_id = NULL_TREE;
3848 bool curr_tok_is_userdef_p = false;
3849
3850 tok = cp_lexer_peek_token (parser->lexer);
3851 if (!cp_parser_is_string_literal (tok))
3852 {
3853 cp_parser_error (parser, "expected string-literal");
3854 return error_mark_node;
3855 }
3856
3857 location_t loc = tok->location;
3858
3859 if (cpp_userdef_string_p (tok->type))
3860 {
3861 string_tree = USERDEF_LITERAL_VALUE (tok->u.value);
3862 curr_type = cpp_userdef_string_remove_type (tok->type);
3863 curr_tok_is_userdef_p = true;
3864 }
3865 else
3866 {
3867 string_tree = tok->u.value;
3868 curr_type = tok->type;
3869 }
3870 type = curr_type;
3871
3872 /* Try to avoid the overhead of creating and destroying an obstack
3873 for the common case of just one string. */
3874 if (!cp_parser_is_string_literal
3875 (cp_lexer_peek_nth_token (parser->lexer, 2)))
3876 {
3877 cp_lexer_consume_token (parser->lexer);
3878
3879 str.text = (const unsigned char *)TREE_STRING_POINTER (string_tree);
3880 str.len = TREE_STRING_LENGTH (string_tree);
3881 count = 1;
3882
3883 if (curr_tok_is_userdef_p)
3884 {
3885 suffix_id = USERDEF_LITERAL_SUFFIX_ID (tok->u.value);
3886 have_suffix_p = 1;
3887 curr_type = cpp_userdef_string_remove_type (tok->type);
3888 }
3889 else
3890 curr_type = tok->type;
3891
3892 strs = &str;
3893 }
3894 else
3895 {
3896 location_t last_tok_loc;
3897 gcc_obstack_init (&str_ob);
3898 count = 0;
3899
3900 do
3901 {
3902 last_tok_loc = tok->location;
3903 cp_lexer_consume_token (parser->lexer);
3904 count++;
3905 str.text = (const unsigned char *)TREE_STRING_POINTER (string_tree);
3906 str.len = TREE_STRING_LENGTH (string_tree);
3907
3908 if (curr_tok_is_userdef_p)
3909 {
3910 tree curr_suffix_id = USERDEF_LITERAL_SUFFIX_ID (tok->u.value);
3911 if (have_suffix_p == 0)
3912 {
3913 suffix_id = curr_suffix_id;
3914 have_suffix_p = 1;
3915 }
3916 else if (have_suffix_p == 1
3917 && curr_suffix_id != suffix_id)
3918 {
3919 error ("inconsistent user-defined literal suffixes"
3920 " %qD and %qD in string literal",
3921 suffix_id, curr_suffix_id);
3922 have_suffix_p = -1;
3923 }
3924 curr_type = cpp_userdef_string_remove_type (tok->type);
3925 }
3926 else
3927 curr_type = tok->type;
3928
3929 if (type != curr_type)
3930 {
3931 if (type == CPP_STRING)
3932 type = curr_type;
3933 else if (curr_type != CPP_STRING)
3934 error_at (tok->location,
3935 "unsupported non-standard concatenation "
3936 "of string literals");
3937 }
3938
3939 obstack_grow (&str_ob, &str, sizeof (cpp_string));
3940
3941 tok = cp_lexer_peek_token (parser->lexer);
3942 if (cpp_userdef_string_p (tok->type))
3943 {
3944 string_tree = USERDEF_LITERAL_VALUE (tok->u.value);
3945 curr_type = cpp_userdef_string_remove_type (tok->type);
3946 curr_tok_is_userdef_p = true;
3947 }
3948 else
3949 {
3950 string_tree = tok->u.value;
3951 curr_type = tok->type;
3952 curr_tok_is_userdef_p = false;
3953 }
3954 }
3955 while (cp_parser_is_string_literal (tok));
3956
3957 /* A string literal built by concatenation has its caret=start at
3958 the start of the initial string, and its finish at the finish of
3959 the final string literal. */
3960 loc = make_location (loc, loc, get_finish (last_tok_loc));
3961
3962 strs = (cpp_string *) obstack_finish (&str_ob);
3963 }
3964
3965 if (type != CPP_STRING && !wide_ok)
3966 {
3967 cp_parser_error (parser, "a wide string is invalid in this context");
3968 type = CPP_STRING;
3969 }
3970
3971 if ((translate ? cpp_interpret_string : cpp_interpret_string_notranslate)
3972 (parse_in, strs, count, &istr, type))
3973 {
3974 value = build_string (istr.len, (const char *)istr.text);
3975 free (CONST_CAST (unsigned char *, istr.text));
3976
3977 switch (type)
3978 {
3979 default:
3980 case CPP_STRING:
3981 case CPP_UTF8STRING:
3982 TREE_TYPE (value) = char_array_type_node;
3983 break;
3984 case CPP_STRING16:
3985 TREE_TYPE (value) = char16_array_type_node;
3986 break;
3987 case CPP_STRING32:
3988 TREE_TYPE (value) = char32_array_type_node;
3989 break;
3990 case CPP_WSTRING:
3991 TREE_TYPE (value) = wchar_array_type_node;
3992 break;
3993 }
3994
3995 value = fix_string_type (value);
3996
3997 if (have_suffix_p)
3998 {
3999 tree literal = build_userdef_literal (suffix_id, value,
4000 OT_NONE, NULL_TREE);
4001 if (lookup_udlit)
4002 value = cp_parser_userdef_string_literal (literal);
4003 else
4004 value = literal;
4005 }
4006 }
4007 else
4008 /* cpp_interpret_string has issued an error. */
4009 value = error_mark_node;
4010
4011 if (count > 1)
4012 obstack_free (&str_ob, 0);
4013
4014 return cp_expr (value, loc);
4015 }
4016
4017 /* Look up a literal operator with the name and the exact arguments. */
4018
4019 static tree
4020 lookup_literal_operator (tree name, vec<tree, va_gc> *args)
4021 {
4022 tree decl, fns;
4023 decl = lookup_name (name);
4024 if (!decl || !is_overloaded_fn (decl))
4025 return error_mark_node;
4026
4027 for (fns = decl; fns; fns = OVL_NEXT (fns))
4028 {
4029 unsigned int ix;
4030 bool found = true;
4031 tree fn = OVL_CURRENT (fns);
4032 tree parmtypes = TYPE_ARG_TYPES (TREE_TYPE (fn));
4033 if (parmtypes != NULL_TREE)
4034 {
4035 for (ix = 0; ix < vec_safe_length (args) && parmtypes != NULL_TREE;
4036 ++ix, parmtypes = TREE_CHAIN (parmtypes))
4037 {
4038 tree tparm = TREE_VALUE (parmtypes);
4039 tree targ = TREE_TYPE ((*args)[ix]);
4040 bool ptr = TYPE_PTR_P (tparm);
4041 bool arr = TREE_CODE (targ) == ARRAY_TYPE;
4042 if ((ptr || arr || !same_type_p (tparm, targ))
4043 && (!ptr || !arr
4044 || !same_type_p (TREE_TYPE (tparm),
4045 TREE_TYPE (targ))))
4046 found = false;
4047 }
4048 if (found
4049 && ix == vec_safe_length (args)
4050 /* May be this should be sufficient_parms_p instead,
4051 depending on how exactly should user-defined literals
4052 work in presence of default arguments on the literal
4053 operator parameters. */
4054 && parmtypes == void_list_node)
4055 return decl;
4056 }
4057 }
4058
4059 return error_mark_node;
4060 }
4061
4062 /* Parse a user-defined char constant. Returns a call to a user-defined
4063 literal operator taking the character as an argument. */
4064
4065 static cp_expr
4066 cp_parser_userdef_char_literal (cp_parser *parser)
4067 {
4068 cp_token *token = cp_lexer_consume_token (parser->lexer);
4069 tree literal = token->u.value;
4070 tree suffix_id = USERDEF_LITERAL_SUFFIX_ID (literal);
4071 tree value = USERDEF_LITERAL_VALUE (literal);
4072 tree name = cp_literal_operator_id (IDENTIFIER_POINTER (suffix_id));
4073 tree decl, result;
4074
4075 /* Build up a call to the user-defined operator */
4076 /* Lookup the name we got back from the id-expression. */
4077 vec<tree, va_gc> *args = make_tree_vector ();
4078 vec_safe_push (args, value);
4079 decl = lookup_literal_operator (name, args);
4080 if (!decl || decl == error_mark_node)
4081 {
4082 error ("unable to find character literal operator %qD with %qT argument",
4083 name, TREE_TYPE (value));
4084 release_tree_vector (args);
4085 return error_mark_node;
4086 }
4087 result = finish_call_expr (decl, &args, false, true, tf_warning_or_error);
4088 release_tree_vector (args);
4089 return result;
4090 }
4091
4092 /* A subroutine of cp_parser_userdef_numeric_literal to
4093 create a char... template parameter pack from a string node. */
4094
4095 static tree
4096 make_char_string_pack (tree value)
4097 {
4098 tree charvec;
4099 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
4100 const char *str = TREE_STRING_POINTER (value);
4101 int i, len = TREE_STRING_LENGTH (value) - 1;
4102 tree argvec = make_tree_vec (1);
4103
4104 /* Fill in CHARVEC with all of the parameters. */
4105 charvec = make_tree_vec (len);
4106 for (i = 0; i < len; ++i)
4107 TREE_VEC_ELT (charvec, i) = build_int_cst (char_type_node, str[i]);
4108
4109 /* Build the argument packs. */
4110 SET_ARGUMENT_PACK_ARGS (argpack, charvec);
4111 TREE_TYPE (argpack) = char_type_node;
4112
4113 TREE_VEC_ELT (argvec, 0) = argpack;
4114
4115 return argvec;
4116 }
4117
4118 /* A subroutine of cp_parser_userdef_numeric_literal to
4119 create a char... template parameter pack from a string node. */
4120
4121 static tree
4122 make_string_pack (tree value)
4123 {
4124 tree charvec;
4125 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
4126 const unsigned char *str
4127 = (const unsigned char *) TREE_STRING_POINTER (value);
4128 int sz = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (value))));
4129 int len = TREE_STRING_LENGTH (value) / sz - 1;
4130 tree argvec = make_tree_vec (2);
4131
4132 tree str_char_type_node = TREE_TYPE (TREE_TYPE (value));
4133 str_char_type_node = TYPE_MAIN_VARIANT (str_char_type_node);
4134
4135 /* First template parm is character type. */
4136 TREE_VEC_ELT (argvec, 0) = str_char_type_node;
4137
4138 /* Fill in CHARVEC with all of the parameters. */
4139 charvec = make_tree_vec (len);
4140 for (int i = 0; i < len; ++i)
4141 TREE_VEC_ELT (charvec, i)
4142 = double_int_to_tree (str_char_type_node,
4143 double_int::from_buffer (str + i * sz, sz));
4144
4145 /* Build the argument packs. */
4146 SET_ARGUMENT_PACK_ARGS (argpack, charvec);
4147 TREE_TYPE (argpack) = str_char_type_node;
4148
4149 TREE_VEC_ELT (argvec, 1) = argpack;
4150
4151 return argvec;
4152 }
4153
4154 /* Parse a user-defined numeric constant. returns a call to a user-defined
4155 literal operator. */
4156
4157 static cp_expr
4158 cp_parser_userdef_numeric_literal (cp_parser *parser)
4159 {
4160 cp_token *token = cp_lexer_consume_token (parser->lexer);
4161 tree literal = token->u.value;
4162 tree suffix_id = USERDEF_LITERAL_SUFFIX_ID (literal);
4163 tree value = USERDEF_LITERAL_VALUE (literal);
4164 int overflow = USERDEF_LITERAL_OVERFLOW (literal);
4165 tree num_string = USERDEF_LITERAL_NUM_STRING (literal);
4166 tree name = cp_literal_operator_id (IDENTIFIER_POINTER (suffix_id));
4167 tree decl, result;
4168 vec<tree, va_gc> *args;
4169
4170 /* Look for a literal operator taking the exact type of numeric argument
4171 as the literal value. */
4172 args = make_tree_vector ();
4173 vec_safe_push (args, value);
4174 decl = lookup_literal_operator (name, args);
4175 if (decl && decl != error_mark_node)
4176 {
4177 result = finish_call_expr (decl, &args, false, true,
4178 tf_warning_or_error);
4179
4180 if (TREE_CODE (TREE_TYPE (value)) == INTEGER_TYPE && overflow > 0)
4181 {
4182 warning_at (token->location, OPT_Woverflow,
4183 "integer literal exceeds range of %qT type",
4184 long_long_unsigned_type_node);
4185 }
4186 else
4187 {
4188 if (overflow > 0)
4189 warning_at (token->location, OPT_Woverflow,
4190 "floating literal exceeds range of %qT type",
4191 long_double_type_node);
4192 else if (overflow < 0)
4193 warning_at (token->location, OPT_Woverflow,
4194 "floating literal truncated to zero");
4195 }
4196
4197 release_tree_vector (args);
4198 return result;
4199 }
4200 release_tree_vector (args);
4201
4202 /* If the numeric argument didn't work, look for a raw literal
4203 operator taking a const char* argument consisting of the number
4204 in string format. */
4205 args = make_tree_vector ();
4206 vec_safe_push (args, num_string);
4207 decl = lookup_literal_operator (name, args);
4208 if (decl && decl != error_mark_node)
4209 {
4210 result = finish_call_expr (decl, &args, false, true,
4211 tf_warning_or_error);
4212 release_tree_vector (args);
4213 return result;
4214 }
4215 release_tree_vector (args);
4216
4217 /* If the raw literal didn't work, look for a non-type template
4218 function with parameter pack char.... Call the function with
4219 template parameter characters representing the number. */
4220 args = make_tree_vector ();
4221 decl = lookup_literal_operator (name, args);
4222 if (decl && decl != error_mark_node)
4223 {
4224 tree tmpl_args = make_char_string_pack (num_string);
4225 decl = lookup_template_function (decl, tmpl_args);
4226 result = finish_call_expr (decl, &args, false, true,
4227 tf_warning_or_error);
4228 release_tree_vector (args);
4229 return result;
4230 }
4231
4232 release_tree_vector (args);
4233
4234 error ("unable to find numeric literal operator %qD", name);
4235 if (!cpp_get_options (parse_in)->ext_numeric_literals)
4236 inform (token->location, "use -std=gnu++11 or -fext-numeric-literals "
4237 "to enable more built-in suffixes");
4238 return error_mark_node;
4239 }
4240
4241 /* Parse a user-defined string constant. Returns a call to a user-defined
4242 literal operator taking a character pointer and the length of the string
4243 as arguments. */
4244
4245 static tree
4246 cp_parser_userdef_string_literal (tree literal)
4247 {
4248 tree suffix_id = USERDEF_LITERAL_SUFFIX_ID (literal);
4249 tree name = cp_literal_operator_id (IDENTIFIER_POINTER (suffix_id));
4250 tree value = USERDEF_LITERAL_VALUE (literal);
4251 int len = TREE_STRING_LENGTH (value)
4252 / TREE_INT_CST_LOW (TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (value)))) - 1;
4253 tree decl, result;
4254 vec<tree, va_gc> *args;
4255
4256 /* Build up a call to the user-defined operator. */
4257 /* Lookup the name we got back from the id-expression. */
4258 args = make_tree_vector ();
4259 vec_safe_push (args, value);
4260 vec_safe_push (args, build_int_cst (size_type_node, len));
4261 decl = lookup_literal_operator (name, args);
4262
4263 if (decl && decl != error_mark_node)
4264 {
4265 result = finish_call_expr (decl, &args, false, true,
4266 tf_warning_or_error);
4267 release_tree_vector (args);
4268 return result;
4269 }
4270 release_tree_vector (args);
4271
4272 /* Look for a template function with typename parameter CharT
4273 and parameter pack CharT... Call the function with
4274 template parameter characters representing the string. */
4275 args = make_tree_vector ();
4276 decl = lookup_literal_operator (name, args);
4277 if (decl && decl != error_mark_node)
4278 {
4279 tree tmpl_args = make_string_pack (value);
4280 decl = lookup_template_function (decl, tmpl_args);
4281 result = finish_call_expr (decl, &args, false, true,
4282 tf_warning_or_error);
4283 release_tree_vector (args);
4284 return result;
4285 }
4286 release_tree_vector (args);
4287
4288 error ("unable to find string literal operator %qD with %qT, %qT arguments",
4289 name, TREE_TYPE (value), size_type_node);
4290 return error_mark_node;
4291 }
4292
4293
4294 /* Basic concepts [gram.basic] */
4295
4296 /* Parse a translation-unit.
4297
4298 translation-unit:
4299 declaration-seq [opt]
4300
4301 Returns TRUE if all went well. */
4302
4303 static bool
4304 cp_parser_translation_unit (cp_parser* parser)
4305 {
4306 /* The address of the first non-permanent object on the declarator
4307 obstack. */
4308 static void *declarator_obstack_base;
4309
4310 bool success;
4311
4312 /* Create the declarator obstack, if necessary. */
4313 if (!cp_error_declarator)
4314 {
4315 gcc_obstack_init (&declarator_obstack);
4316 /* Create the error declarator. */
4317 cp_error_declarator = make_declarator (cdk_error);
4318 /* Create the empty parameter list. */
4319 no_parameters = make_parameter_declarator (NULL, NULL, NULL_TREE);
4320 /* Remember where the base of the declarator obstack lies. */
4321 declarator_obstack_base = obstack_next_free (&declarator_obstack);
4322 }
4323
4324 cp_parser_declaration_seq_opt (parser);
4325
4326 /* If there are no tokens left then all went well. */
4327 if (cp_lexer_next_token_is (parser->lexer, CPP_EOF))
4328 {
4329 /* Get rid of the token array; we don't need it any more. */
4330 cp_lexer_destroy (parser->lexer);
4331 parser->lexer = NULL;
4332
4333 /* This file might have been a context that's implicitly extern
4334 "C". If so, pop the lang context. (Only relevant for PCH.) */
4335 if (parser->implicit_extern_c)
4336 {
4337 pop_lang_context ();
4338 parser->implicit_extern_c = false;
4339 }
4340
4341 /* Finish up. */
4342 finish_translation_unit ();
4343
4344 success = true;
4345 }
4346 else
4347 {
4348 cp_parser_error (parser, "expected declaration");
4349 success = false;
4350 }
4351
4352 /* Make sure the declarator obstack was fully cleaned up. */
4353 gcc_assert (obstack_next_free (&declarator_obstack)
4354 == declarator_obstack_base);
4355
4356 /* All went well. */
4357 return success;
4358 }
4359
4360 /* Return the appropriate tsubst flags for parsing, possibly in N3276
4361 decltype context. */
4362
4363 static inline tsubst_flags_t
4364 complain_flags (bool decltype_p)
4365 {
4366 tsubst_flags_t complain = tf_warning_or_error;
4367 if (decltype_p)
4368 complain |= tf_decltype;
4369 return complain;
4370 }
4371
4372 /* We're about to parse a collection of statements. If we're currently
4373 parsing tentatively, set up a firewall so that any nested
4374 cp_parser_commit_to_tentative_parse won't affect the current context. */
4375
4376 static cp_token_position
4377 cp_parser_start_tentative_firewall (cp_parser *parser)
4378 {
4379 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
4380 return 0;
4381
4382 cp_parser_parse_tentatively (parser);
4383 cp_parser_commit_to_topmost_tentative_parse (parser);
4384 return cp_lexer_token_position (parser->lexer, false);
4385 }
4386
4387 /* We've finished parsing the collection of statements. Wrap up the
4388 firewall and replace the relevant tokens with the parsed form. */
4389
4390 static void
4391 cp_parser_end_tentative_firewall (cp_parser *parser, cp_token_position start,
4392 tree expr)
4393 {
4394 if (!start)
4395 return;
4396
4397 /* Finish the firewall level. */
4398 cp_parser_parse_definitely (parser);
4399 /* And remember the result of the parse for when we try again. */
4400 cp_token *token = cp_lexer_token_at (parser->lexer, start);
4401 token->type = CPP_PREPARSED_EXPR;
4402 token->u.value = expr;
4403 token->keyword = RID_MAX;
4404 cp_lexer_purge_tokens_after (parser->lexer, start);
4405 }
4406
4407 /* Like the above functions, but let the user modify the tokens. Used by
4408 CPP_DECLTYPE and CPP_TEMPLATE_ID, where we are saving the side-effects for
4409 later parses, so it makes sense to localize the effects of
4410 cp_parser_commit_to_tentative_parse. */
4411
4412 struct tentative_firewall
4413 {
4414 cp_parser *parser;
4415 bool set;
4416
4417 tentative_firewall (cp_parser *p): parser(p)
4418 {
4419 /* If we're currently parsing tentatively, start a committed level as a
4420 firewall and then an inner tentative parse. */
4421 if ((set = cp_parser_uncommitted_to_tentative_parse_p (parser)))
4422 {
4423 cp_parser_parse_tentatively (parser);
4424 cp_parser_commit_to_topmost_tentative_parse (parser);
4425 cp_parser_parse_tentatively (parser);
4426 }
4427 }
4428
4429 ~tentative_firewall()
4430 {
4431 if (set)
4432 {
4433 /* Finish the inner tentative parse and the firewall, propagating any
4434 uncommitted error state to the outer tentative parse. */
4435 bool err = cp_parser_error_occurred (parser);
4436 cp_parser_parse_definitely (parser);
4437 cp_parser_parse_definitely (parser);
4438 if (err)
4439 cp_parser_simulate_error (parser);
4440 }
4441 }
4442 };
4443
4444 /* Parse a GNU statement-expression, i.e. ({ stmts }), except for the
4445 enclosing parentheses. */
4446
4447 static cp_expr
4448 cp_parser_statement_expr (cp_parser *parser)
4449 {
4450 cp_token_position start = cp_parser_start_tentative_firewall (parser);
4451
4452 /* Consume the '('. */
4453 location_t start_loc = cp_lexer_peek_token (parser->lexer)->location;
4454 cp_lexer_consume_token (parser->lexer);
4455 /* Start the statement-expression. */
4456 tree expr = begin_stmt_expr ();
4457 /* Parse the compound-statement. */
4458 cp_parser_compound_statement (parser, expr, BCS_NORMAL, false);
4459 /* Finish up. */
4460 expr = finish_stmt_expr (expr, false);
4461 /* Consume the ')'. */
4462 location_t finish_loc = cp_lexer_peek_token (parser->lexer)->location;
4463 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
4464 cp_parser_skip_to_end_of_statement (parser);
4465
4466 cp_parser_end_tentative_firewall (parser, start, expr);
4467 location_t combined_loc = make_location (start_loc, start_loc, finish_loc);
4468 return cp_expr (expr, combined_loc);
4469 }
4470
4471 /* Expressions [gram.expr] */
4472
4473 /* Parse a fold-operator.
4474
4475 fold-operator:
4476 - * / % ^ & | = < > << >>
4477 = -= *= /= %= ^= &= |= <<= >>=
4478 == != <= >= && || , .* ->*
4479
4480 This returns the tree code corresponding to the matched operator
4481 as an int. When the current token matches a compound assignment
4482 opertor, the resulting tree code is the negative value of the
4483 non-assignment operator. */
4484
4485 static int
4486 cp_parser_fold_operator (cp_token *token)
4487 {
4488 switch (token->type)
4489 {
4490 case CPP_PLUS: return PLUS_EXPR;
4491 case CPP_MINUS: return MINUS_EXPR;
4492 case CPP_MULT: return MULT_EXPR;
4493 case CPP_DIV: return TRUNC_DIV_EXPR;
4494 case CPP_MOD: return TRUNC_MOD_EXPR;
4495 case CPP_XOR: return BIT_XOR_EXPR;
4496 case CPP_AND: return BIT_AND_EXPR;
4497 case CPP_OR: return BIT_IOR_EXPR;
4498 case CPP_LSHIFT: return LSHIFT_EXPR;
4499 case CPP_RSHIFT: return RSHIFT_EXPR;
4500
4501 case CPP_EQ: return -NOP_EXPR;
4502 case CPP_PLUS_EQ: return -PLUS_EXPR;
4503 case CPP_MINUS_EQ: return -MINUS_EXPR;
4504 case CPP_MULT_EQ: return -MULT_EXPR;
4505 case CPP_DIV_EQ: return -TRUNC_DIV_EXPR;
4506 case CPP_MOD_EQ: return -TRUNC_MOD_EXPR;
4507 case CPP_XOR_EQ: return -BIT_XOR_EXPR;
4508 case CPP_AND_EQ: return -BIT_AND_EXPR;
4509 case CPP_OR_EQ: return -BIT_IOR_EXPR;
4510 case CPP_LSHIFT_EQ: return -LSHIFT_EXPR;
4511 case CPP_RSHIFT_EQ: return -RSHIFT_EXPR;
4512
4513 case CPP_EQ_EQ: return EQ_EXPR;
4514 case CPP_NOT_EQ: return NE_EXPR;
4515 case CPP_LESS: return LT_EXPR;
4516 case CPP_GREATER: return GT_EXPR;
4517 case CPP_LESS_EQ: return LE_EXPR;
4518 case CPP_GREATER_EQ: return GE_EXPR;
4519
4520 case CPP_AND_AND: return TRUTH_ANDIF_EXPR;
4521 case CPP_OR_OR: return TRUTH_ORIF_EXPR;
4522
4523 case CPP_COMMA: return COMPOUND_EXPR;
4524
4525 case CPP_DOT_STAR: return DOTSTAR_EXPR;
4526 case CPP_DEREF_STAR: return MEMBER_REF;
4527
4528 default: return ERROR_MARK;
4529 }
4530 }
4531
4532 /* Returns true if CODE indicates a binary expression, which is not allowed in
4533 the LHS of a fold-expression. More codes will need to be added to use this
4534 function in other contexts. */
4535
4536 static bool
4537 is_binary_op (tree_code code)
4538 {
4539 switch (code)
4540 {
4541 case PLUS_EXPR:
4542 case POINTER_PLUS_EXPR:
4543 case MINUS_EXPR:
4544 case MULT_EXPR:
4545 case TRUNC_DIV_EXPR:
4546 case TRUNC_MOD_EXPR:
4547 case BIT_XOR_EXPR:
4548 case BIT_AND_EXPR:
4549 case BIT_IOR_EXPR:
4550 case LSHIFT_EXPR:
4551 case RSHIFT_EXPR:
4552
4553 case MODOP_EXPR:
4554
4555 case EQ_EXPR:
4556 case NE_EXPR:
4557 case LE_EXPR:
4558 case GE_EXPR:
4559 case LT_EXPR:
4560 case GT_EXPR:
4561
4562 case TRUTH_ANDIF_EXPR:
4563 case TRUTH_ORIF_EXPR:
4564
4565 case COMPOUND_EXPR:
4566
4567 case DOTSTAR_EXPR:
4568 case MEMBER_REF:
4569 return true;
4570
4571 default:
4572 return false;
4573 }
4574 }
4575
4576 /* If the next token is a suitable fold operator, consume it and return as
4577 the function above. */
4578
4579 static int
4580 cp_parser_fold_operator (cp_parser *parser)
4581 {
4582 cp_token* token = cp_lexer_peek_token (parser->lexer);
4583 int code = cp_parser_fold_operator (token);
4584 if (code != ERROR_MARK)
4585 cp_lexer_consume_token (parser->lexer);
4586 return code;
4587 }
4588
4589 /* Parse a fold-expression.
4590
4591 fold-expression:
4592 ( ... folding-operator cast-expression)
4593 ( cast-expression folding-operator ... )
4594 ( cast-expression folding operator ... folding-operator cast-expression)
4595
4596 Note that the '(' and ')' are matched in primary expression. */
4597
4598 static cp_expr
4599 cp_parser_fold_expression (cp_parser *parser, tree expr1)
4600 {
4601 cp_id_kind pidk;
4602
4603 // Left fold.
4604 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
4605 {
4606 cp_lexer_consume_token (parser->lexer);
4607 int op = cp_parser_fold_operator (parser);
4608 if (op == ERROR_MARK)
4609 {
4610 cp_parser_error (parser, "expected binary operator");
4611 return error_mark_node;
4612 }
4613
4614 tree expr = cp_parser_cast_expression (parser, false, false,
4615 false, &pidk);
4616 if (expr == error_mark_node)
4617 return error_mark_node;
4618 return finish_left_unary_fold_expr (expr, op);
4619 }
4620
4621 const cp_token* token = cp_lexer_peek_token (parser->lexer);
4622 int op = cp_parser_fold_operator (parser);
4623 if (op == ERROR_MARK)
4624 {
4625 cp_parser_error (parser, "expected binary operator");
4626 return error_mark_node;
4627 }
4628
4629 if (cp_lexer_next_token_is_not (parser->lexer, CPP_ELLIPSIS))
4630 {
4631 cp_parser_error (parser, "expected ...");
4632 return error_mark_node;
4633 }
4634 cp_lexer_consume_token (parser->lexer);
4635
4636 /* The operands of a fold-expression are cast-expressions, so binary or
4637 conditional expressions are not allowed. We check this here to avoid
4638 tentative parsing. */
4639 if (is_binary_op (TREE_CODE (expr1)))
4640 error_at (location_of (expr1),
4641 "binary expression in operand of fold-expression");
4642 else if (TREE_CODE (expr1) == COND_EXPR)
4643 error_at (location_of (expr1),
4644 "conditional expression in operand of fold-expression");
4645
4646 // Right fold.
4647 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN))
4648 return finish_right_unary_fold_expr (expr1, op);
4649
4650 if (cp_lexer_next_token_is_not (parser->lexer, token->type))
4651 {
4652 cp_parser_error (parser, "mismatched operator in fold-expression");
4653 return error_mark_node;
4654 }
4655 cp_lexer_consume_token (parser->lexer);
4656
4657 // Binary left or right fold.
4658 tree expr2 = cp_parser_cast_expression (parser, false, false, false, &pidk);
4659 if (expr2 == error_mark_node)
4660 return error_mark_node;
4661 return finish_binary_fold_expr (expr1, expr2, op);
4662 }
4663
4664 /* Parse a primary-expression.
4665
4666 primary-expression:
4667 literal
4668 this
4669 ( expression )
4670 id-expression
4671 lambda-expression (C++11)
4672
4673 GNU Extensions:
4674
4675 primary-expression:
4676 ( compound-statement )
4677 __builtin_va_arg ( assignment-expression , type-id )
4678 __builtin_offsetof ( type-id , offsetof-expression )
4679
4680 C++ Extensions:
4681 __has_nothrow_assign ( type-id )
4682 __has_nothrow_constructor ( type-id )
4683 __has_nothrow_copy ( type-id )
4684 __has_trivial_assign ( type-id )
4685 __has_trivial_constructor ( type-id )
4686 __has_trivial_copy ( type-id )
4687 __has_trivial_destructor ( type-id )
4688 __has_virtual_destructor ( type-id )
4689 __is_abstract ( type-id )
4690 __is_base_of ( type-id , type-id )
4691 __is_class ( type-id )
4692 __is_empty ( type-id )
4693 __is_enum ( type-id )
4694 __is_final ( type-id )
4695 __is_literal_type ( type-id )
4696 __is_pod ( type-id )
4697 __is_polymorphic ( type-id )
4698 __is_std_layout ( type-id )
4699 __is_trivial ( type-id )
4700 __is_union ( type-id )
4701
4702 Objective-C++ Extension:
4703
4704 primary-expression:
4705 objc-expression
4706
4707 literal:
4708 __null
4709
4710 ADDRESS_P is true iff this expression was immediately preceded by
4711 "&" and therefore might denote a pointer-to-member. CAST_P is true
4712 iff this expression is the target of a cast. TEMPLATE_ARG_P is
4713 true iff this expression is a template argument.
4714
4715 Returns a representation of the expression. Upon return, *IDK
4716 indicates what kind of id-expression (if any) was present. */
4717
4718 static cp_expr
4719 cp_parser_primary_expression (cp_parser *parser,
4720 bool address_p,
4721 bool cast_p,
4722 bool template_arg_p,
4723 bool decltype_p,
4724 cp_id_kind *idk)
4725 {
4726 cp_token *token = NULL;
4727
4728 /* Assume the primary expression is not an id-expression. */
4729 *idk = CP_ID_KIND_NONE;
4730
4731 /* Peek at the next token. */
4732 token = cp_lexer_peek_token (parser->lexer);
4733 switch ((int) token->type)
4734 {
4735 /* literal:
4736 integer-literal
4737 character-literal
4738 floating-literal
4739 string-literal
4740 boolean-literal
4741 pointer-literal
4742 user-defined-literal */
4743 case CPP_CHAR:
4744 case CPP_CHAR16:
4745 case CPP_CHAR32:
4746 case CPP_WCHAR:
4747 case CPP_UTF8CHAR:
4748 case CPP_NUMBER:
4749 case CPP_PREPARSED_EXPR:
4750 if (TREE_CODE (token->u.value) == USERDEF_LITERAL)
4751 return cp_parser_userdef_numeric_literal (parser);
4752 token = cp_lexer_consume_token (parser->lexer);
4753 if (TREE_CODE (token->u.value) == FIXED_CST)
4754 {
4755 error_at (token->location,
4756 "fixed-point types not supported in C++");
4757 return error_mark_node;
4758 }
4759 /* Floating-point literals are only allowed in an integral
4760 constant expression if they are cast to an integral or
4761 enumeration type. */
4762 if (TREE_CODE (token->u.value) == REAL_CST
4763 && parser->integral_constant_expression_p
4764 && pedantic)
4765 {
4766 /* CAST_P will be set even in invalid code like "int(2.7 +
4767 ...)". Therefore, we have to check that the next token
4768 is sure to end the cast. */
4769 if (cast_p)
4770 {
4771 cp_token *next_token;
4772
4773 next_token = cp_lexer_peek_token (parser->lexer);
4774 if (/* The comma at the end of an
4775 enumerator-definition. */
4776 next_token->type != CPP_COMMA
4777 /* The curly brace at the end of an enum-specifier. */
4778 && next_token->type != CPP_CLOSE_BRACE
4779 /* The end of a statement. */
4780 && next_token->type != CPP_SEMICOLON
4781 /* The end of the cast-expression. */
4782 && next_token->type != CPP_CLOSE_PAREN
4783 /* The end of an array bound. */
4784 && next_token->type != CPP_CLOSE_SQUARE
4785 /* The closing ">" in a template-argument-list. */
4786 && (next_token->type != CPP_GREATER
4787 || parser->greater_than_is_operator_p)
4788 /* C++0x only: A ">>" treated like two ">" tokens,
4789 in a template-argument-list. */
4790 && (next_token->type != CPP_RSHIFT
4791 || (cxx_dialect == cxx98)
4792 || parser->greater_than_is_operator_p))
4793 cast_p = false;
4794 }
4795
4796 /* If we are within a cast, then the constraint that the
4797 cast is to an integral or enumeration type will be
4798 checked at that point. If we are not within a cast, then
4799 this code is invalid. */
4800 if (!cast_p)
4801 cp_parser_non_integral_constant_expression (parser, NIC_FLOAT);
4802 }
4803 return cp_expr (token->u.value, token->location);
4804
4805 case CPP_CHAR_USERDEF:
4806 case CPP_CHAR16_USERDEF:
4807 case CPP_CHAR32_USERDEF:
4808 case CPP_WCHAR_USERDEF:
4809 case CPP_UTF8CHAR_USERDEF:
4810 return cp_parser_userdef_char_literal (parser);
4811
4812 case CPP_STRING:
4813 case CPP_STRING16:
4814 case CPP_STRING32:
4815 case CPP_WSTRING:
4816 case CPP_UTF8STRING:
4817 case CPP_STRING_USERDEF:
4818 case CPP_STRING16_USERDEF:
4819 case CPP_STRING32_USERDEF:
4820 case CPP_WSTRING_USERDEF:
4821 case CPP_UTF8STRING_USERDEF:
4822 /* ??? Should wide strings be allowed when parser->translate_strings_p
4823 is false (i.e. in attributes)? If not, we can kill the third
4824 argument to cp_parser_string_literal. */
4825 return cp_parser_string_literal (parser,
4826 parser->translate_strings_p,
4827 true);
4828
4829 case CPP_OPEN_PAREN:
4830 /* If we see `( { ' then we are looking at the beginning of
4831 a GNU statement-expression. */
4832 if (cp_parser_allow_gnu_extensions_p (parser)
4833 && cp_lexer_nth_token_is (parser->lexer, 2, CPP_OPEN_BRACE))
4834 {
4835 /* Statement-expressions are not allowed by the standard. */
4836 pedwarn (token->location, OPT_Wpedantic,
4837 "ISO C++ forbids braced-groups within expressions");
4838
4839 /* And they're not allowed outside of a function-body; you
4840 cannot, for example, write:
4841
4842 int i = ({ int j = 3; j + 1; });
4843
4844 at class or namespace scope. */
4845 if (!parser->in_function_body
4846 || parser->in_template_argument_list_p)
4847 {
4848 error_at (token->location,
4849 "statement-expressions are not allowed outside "
4850 "functions nor in template-argument lists");
4851 cp_parser_skip_to_end_of_block_or_statement (parser);
4852 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN))
4853 cp_lexer_consume_token (parser->lexer);
4854 return error_mark_node;
4855 }
4856 else
4857 return cp_parser_statement_expr (parser);
4858 }
4859 /* Otherwise it's a normal parenthesized expression. */
4860 {
4861 cp_expr expr;
4862 bool saved_greater_than_is_operator_p;
4863
4864 location_t open_paren_loc = token->location;
4865
4866 /* Consume the `('. */
4867 cp_lexer_consume_token (parser->lexer);
4868 /* Within a parenthesized expression, a `>' token is always
4869 the greater-than operator. */
4870 saved_greater_than_is_operator_p
4871 = parser->greater_than_is_operator_p;
4872 parser->greater_than_is_operator_p = true;
4873
4874 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
4875 /* Left fold expression. */
4876 expr = NULL_TREE;
4877 else
4878 /* Parse the parenthesized expression. */
4879 expr = cp_parser_expression (parser, idk, cast_p, decltype_p);
4880
4881 token = cp_lexer_peek_token (parser->lexer);
4882 if (token->type == CPP_ELLIPSIS || cp_parser_fold_operator (token))
4883 {
4884 expr = cp_parser_fold_expression (parser, expr);
4885 if (expr != error_mark_node
4886 && cxx_dialect < cxx1z
4887 && !in_system_header_at (input_location))
4888 pedwarn (input_location, 0, "fold-expressions only available "
4889 "with -std=c++1z or -std=gnu++1z");
4890 }
4891 else
4892 /* Let the front end know that this expression was
4893 enclosed in parentheses. This matters in case, for
4894 example, the expression is of the form `A::B', since
4895 `&A::B' might be a pointer-to-member, but `&(A::B)' is
4896 not. */
4897 expr = finish_parenthesized_expr (expr);
4898
4899 /* DR 705: Wrapping an unqualified name in parentheses
4900 suppresses arg-dependent lookup. We want to pass back
4901 CP_ID_KIND_QUALIFIED for suppressing vtable lookup
4902 (c++/37862), but none of the others. */
4903 if (*idk != CP_ID_KIND_QUALIFIED)
4904 *idk = CP_ID_KIND_NONE;
4905
4906 /* The `>' token might be the end of a template-id or
4907 template-parameter-list now. */
4908 parser->greater_than_is_operator_p
4909 = saved_greater_than_is_operator_p;
4910
4911 /* Consume the `)'. */
4912 token = cp_lexer_peek_token (parser->lexer);
4913 location_t close_paren_loc = token->location;
4914 expr.set_range (open_paren_loc, close_paren_loc);
4915 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN)
4916 && !cp_parser_uncommitted_to_tentative_parse_p (parser))
4917 cp_parser_skip_to_end_of_statement (parser);
4918
4919 return expr;
4920 }
4921
4922 case CPP_OPEN_SQUARE:
4923 {
4924 if (c_dialect_objc ())
4925 {
4926 /* We might have an Objective-C++ message. */
4927 cp_parser_parse_tentatively (parser);
4928 tree msg = cp_parser_objc_message_expression (parser);
4929 /* If that works out, we're done ... */
4930 if (cp_parser_parse_definitely (parser))
4931 return msg;
4932 /* ... else, fall though to see if it's a lambda. */
4933 }
4934 cp_expr lam = cp_parser_lambda_expression (parser);
4935 /* Don't warn about a failed tentative parse. */
4936 if (cp_parser_error_occurred (parser))
4937 return error_mark_node;
4938 maybe_warn_cpp0x (CPP0X_LAMBDA_EXPR);
4939 return lam;
4940 }
4941
4942 case CPP_OBJC_STRING:
4943 if (c_dialect_objc ())
4944 /* We have an Objective-C++ string literal. */
4945 return cp_parser_objc_expression (parser);
4946 cp_parser_error (parser, "expected primary-expression");
4947 return error_mark_node;
4948
4949 case CPP_KEYWORD:
4950 switch (token->keyword)
4951 {
4952 /* These two are the boolean literals. */
4953 case RID_TRUE:
4954 cp_lexer_consume_token (parser->lexer);
4955 return cp_expr (boolean_true_node, token->location);
4956 case RID_FALSE:
4957 cp_lexer_consume_token (parser->lexer);
4958 return cp_expr (boolean_false_node, token->location);
4959
4960 /* The `__null' literal. */
4961 case RID_NULL:
4962 cp_lexer_consume_token (parser->lexer);
4963 return cp_expr (null_node, token->location);
4964
4965 /* The `nullptr' literal. */
4966 case RID_NULLPTR:
4967 cp_lexer_consume_token (parser->lexer);
4968 return cp_expr (nullptr_node, token->location);
4969
4970 /* Recognize the `this' keyword. */
4971 case RID_THIS:
4972 cp_lexer_consume_token (parser->lexer);
4973 if (parser->local_variables_forbidden_p)
4974 {
4975 error_at (token->location,
4976 "%<this%> may not be used in this context");
4977 return error_mark_node;
4978 }
4979 /* Pointers cannot appear in constant-expressions. */
4980 if (cp_parser_non_integral_constant_expression (parser, NIC_THIS))
4981 return error_mark_node;
4982 return cp_expr (finish_this_expr (), token->location);
4983
4984 /* The `operator' keyword can be the beginning of an
4985 id-expression. */
4986 case RID_OPERATOR:
4987 goto id_expression;
4988
4989 case RID_FUNCTION_NAME:
4990 case RID_PRETTY_FUNCTION_NAME:
4991 case RID_C99_FUNCTION_NAME:
4992 {
4993 non_integral_constant name;
4994
4995 /* The symbols __FUNCTION__, __PRETTY_FUNCTION__, and
4996 __func__ are the names of variables -- but they are
4997 treated specially. Therefore, they are handled here,
4998 rather than relying on the generic id-expression logic
4999 below. Grammatically, these names are id-expressions.
5000
5001 Consume the token. */
5002 token = cp_lexer_consume_token (parser->lexer);
5003
5004 switch (token->keyword)
5005 {
5006 case RID_FUNCTION_NAME:
5007 name = NIC_FUNC_NAME;
5008 break;
5009 case RID_PRETTY_FUNCTION_NAME:
5010 name = NIC_PRETTY_FUNC;
5011 break;
5012 case RID_C99_FUNCTION_NAME:
5013 name = NIC_C99_FUNC;
5014 break;
5015 default:
5016 gcc_unreachable ();
5017 }
5018
5019 if (cp_parser_non_integral_constant_expression (parser, name))
5020 return error_mark_node;
5021
5022 /* Look up the name. */
5023 return finish_fname (token->u.value);
5024 }
5025
5026 case RID_VA_ARG:
5027 {
5028 tree expression;
5029 tree type;
5030 source_location type_location;
5031 location_t start_loc
5032 = cp_lexer_peek_token (parser->lexer)->location;
5033 /* The `__builtin_va_arg' construct is used to handle
5034 `va_arg'. Consume the `__builtin_va_arg' token. */
5035 cp_lexer_consume_token (parser->lexer);
5036 /* Look for the opening `('. */
5037 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
5038 /* Now, parse the assignment-expression. */
5039 expression = cp_parser_assignment_expression (parser);
5040 /* Look for the `,'. */
5041 cp_parser_require (parser, CPP_COMMA, RT_COMMA);
5042 type_location = cp_lexer_peek_token (parser->lexer)->location;
5043 /* Parse the type-id. */
5044 {
5045 type_id_in_expr_sentinel s (parser);
5046 type = cp_parser_type_id (parser);
5047 }
5048 /* Look for the closing `)'. */
5049 location_t finish_loc
5050 = cp_lexer_peek_token (parser->lexer)->location;
5051 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
5052 /* Using `va_arg' in a constant-expression is not
5053 allowed. */
5054 if (cp_parser_non_integral_constant_expression (parser,
5055 NIC_VA_ARG))
5056 return error_mark_node;
5057 /* Construct a location of the form:
5058 __builtin_va_arg (v, int)
5059 ~~~~~~~~~~~~~~~~~~~~~^~~~
5060 with the caret at the type, ranging from the start of the
5061 "__builtin_va_arg" token to the close paren. */
5062 location_t combined_loc
5063 = make_location (type_location, start_loc, finish_loc);
5064 return build_x_va_arg (combined_loc, expression, type);
5065 }
5066
5067 case RID_OFFSETOF:
5068 return cp_parser_builtin_offsetof (parser);
5069
5070 case RID_HAS_NOTHROW_ASSIGN:
5071 case RID_HAS_NOTHROW_CONSTRUCTOR:
5072 case RID_HAS_NOTHROW_COPY:
5073 case RID_HAS_TRIVIAL_ASSIGN:
5074 case RID_HAS_TRIVIAL_CONSTRUCTOR:
5075 case RID_HAS_TRIVIAL_COPY:
5076 case RID_HAS_TRIVIAL_DESTRUCTOR:
5077 case RID_HAS_VIRTUAL_DESTRUCTOR:
5078 case RID_IS_ABSTRACT:
5079 case RID_IS_BASE_OF:
5080 case RID_IS_CLASS:
5081 case RID_IS_EMPTY:
5082 case RID_IS_ENUM:
5083 case RID_IS_FINAL:
5084 case RID_IS_LITERAL_TYPE:
5085 case RID_IS_POD:
5086 case RID_IS_POLYMORPHIC:
5087 case RID_IS_SAME_AS:
5088 case RID_IS_STD_LAYOUT:
5089 case RID_IS_TRIVIAL:
5090 case RID_IS_TRIVIALLY_ASSIGNABLE:
5091 case RID_IS_TRIVIALLY_CONSTRUCTIBLE:
5092 case RID_IS_TRIVIALLY_COPYABLE:
5093 case RID_IS_UNION:
5094 return cp_parser_trait_expr (parser, token->keyword);
5095
5096 // C++ concepts
5097 case RID_REQUIRES:
5098 return cp_parser_requires_expression (parser);
5099
5100 /* Objective-C++ expressions. */
5101 case RID_AT_ENCODE:
5102 case RID_AT_PROTOCOL:
5103 case RID_AT_SELECTOR:
5104 return cp_parser_objc_expression (parser);
5105
5106 case RID_TEMPLATE:
5107 if (parser->in_function_body
5108 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
5109 == CPP_LESS))
5110 {
5111 error_at (token->location,
5112 "a template declaration cannot appear at block scope");
5113 cp_parser_skip_to_end_of_block_or_statement (parser);
5114 return error_mark_node;
5115 }
5116 default:
5117 cp_parser_error (parser, "expected primary-expression");
5118 return error_mark_node;
5119 }
5120
5121 /* An id-expression can start with either an identifier, a
5122 `::' as the beginning of a qualified-id, or the "operator"
5123 keyword. */
5124 case CPP_NAME:
5125 case CPP_SCOPE:
5126 case CPP_TEMPLATE_ID:
5127 case CPP_NESTED_NAME_SPECIFIER:
5128 {
5129 id_expression:
5130 cp_expr id_expression;
5131 cp_expr decl;
5132 const char *error_msg;
5133 bool template_p;
5134 bool done;
5135 cp_token *id_expr_token;
5136
5137 /* Parse the id-expression. */
5138 id_expression
5139 = cp_parser_id_expression (parser,
5140 /*template_keyword_p=*/false,
5141 /*check_dependency_p=*/true,
5142 &template_p,
5143 /*declarator_p=*/false,
5144 /*optional_p=*/false);
5145 if (id_expression == error_mark_node)
5146 return error_mark_node;
5147 id_expr_token = token;
5148 token = cp_lexer_peek_token (parser->lexer);
5149 done = (token->type != CPP_OPEN_SQUARE
5150 && token->type != CPP_OPEN_PAREN
5151 && token->type != CPP_DOT
5152 && token->type != CPP_DEREF
5153 && token->type != CPP_PLUS_PLUS
5154 && token->type != CPP_MINUS_MINUS);
5155 /* If we have a template-id, then no further lookup is
5156 required. If the template-id was for a template-class, we
5157 will sometimes have a TYPE_DECL at this point. */
5158 if (TREE_CODE (id_expression) == TEMPLATE_ID_EXPR
5159 || TREE_CODE (id_expression) == TYPE_DECL)
5160 decl = id_expression;
5161 /* Look up the name. */
5162 else
5163 {
5164 tree ambiguous_decls;
5165
5166 /* If we already know that this lookup is ambiguous, then
5167 we've already issued an error message; there's no reason
5168 to check again. */
5169 if (id_expr_token->type == CPP_NAME
5170 && id_expr_token->error_reported)
5171 {
5172 cp_parser_simulate_error (parser);
5173 return error_mark_node;
5174 }
5175
5176 decl = cp_parser_lookup_name (parser, id_expression,
5177 none_type,
5178 template_p,
5179 /*is_namespace=*/false,
5180 /*check_dependency=*/true,
5181 &ambiguous_decls,
5182 id_expr_token->location);
5183 /* If the lookup was ambiguous, an error will already have
5184 been issued. */
5185 if (ambiguous_decls)
5186 return error_mark_node;
5187
5188 /* In Objective-C++, we may have an Objective-C 2.0
5189 dot-syntax for classes here. */
5190 if (c_dialect_objc ()
5191 && cp_lexer_peek_token (parser->lexer)->type == CPP_DOT
5192 && TREE_CODE (decl) == TYPE_DECL
5193 && objc_is_class_name (decl))
5194 {
5195 tree component;
5196 cp_lexer_consume_token (parser->lexer);
5197 component = cp_parser_identifier (parser);
5198 if (component == error_mark_node)
5199 return error_mark_node;
5200
5201 tree result = objc_build_class_component_ref (id_expression,
5202 component);
5203 /* Build a location of the form:
5204 expr.component
5205 ~~~~~^~~~~~~~~
5206 with caret at the start of the component name (at
5207 input_location), ranging from the start of the id_expression
5208 to the end of the component name. */
5209 location_t combined_loc
5210 = make_location (input_location, id_expression.get_start (),
5211 get_finish (input_location));
5212 protected_set_expr_location (result, combined_loc);
5213 return result;
5214 }
5215
5216 /* In Objective-C++, an instance variable (ivar) may be preferred
5217 to whatever cp_parser_lookup_name() found.
5218 Call objc_lookup_ivar. To avoid exposing cp_expr to the
5219 rest of c-family, we have to do a little extra work to preserve
5220 any location information in cp_expr "decl". Given that
5221 objc_lookup_ivar is implemented in "c-family" and "objc", we
5222 have a trip through the pure "tree" type, rather than cp_expr.
5223 Naively copying it back to "decl" would implicitly give the
5224 new cp_expr value an UNKNOWN_LOCATION for nodes that don't
5225 store an EXPR_LOCATION. Hence we only update "decl" (and
5226 hence its location_t) if we get back a different tree node. */
5227 tree decl_tree = objc_lookup_ivar (decl.get_value (),
5228 id_expression);
5229 if (decl_tree != decl.get_value ())
5230 decl = cp_expr (decl_tree);
5231
5232 /* If name lookup gives us a SCOPE_REF, then the
5233 qualifying scope was dependent. */
5234 if (TREE_CODE (decl) == SCOPE_REF)
5235 {
5236 /* At this point, we do not know if DECL is a valid
5237 integral constant expression. We assume that it is
5238 in fact such an expression, so that code like:
5239
5240 template <int N> struct A {
5241 int a[B<N>::i];
5242 };
5243
5244 is accepted. At template-instantiation time, we
5245 will check that B<N>::i is actually a constant. */
5246 return decl;
5247 }
5248 /* Check to see if DECL is a local variable in a context
5249 where that is forbidden. */
5250 if (parser->local_variables_forbidden_p
5251 && local_variable_p (decl))
5252 {
5253 /* It might be that we only found DECL because we are
5254 trying to be generous with pre-ISO scoping rules.
5255 For example, consider:
5256
5257 int i;
5258 void g() {
5259 for (int i = 0; i < 10; ++i) {}
5260 extern void f(int j = i);
5261 }
5262
5263 Here, name look up will originally find the out
5264 of scope `i'. We need to issue a warning message,
5265 but then use the global `i'. */
5266 decl = check_for_out_of_scope_variable (decl);
5267 if (local_variable_p (decl))
5268 {
5269 error_at (id_expr_token->location,
5270 "local variable %qD may not appear in this context",
5271 decl.get_value ());
5272 return error_mark_node;
5273 }
5274 }
5275 }
5276
5277 decl = (finish_id_expression
5278 (id_expression, decl, parser->scope,
5279 idk,
5280 parser->integral_constant_expression_p,
5281 parser->allow_non_integral_constant_expression_p,
5282 &parser->non_integral_constant_expression_p,
5283 template_p, done, address_p,
5284 template_arg_p,
5285 &error_msg,
5286 id_expr_token->location));
5287 if (error_msg)
5288 cp_parser_error (parser, error_msg);
5289 decl.set_location (id_expr_token->location);
5290 return decl;
5291 }
5292
5293 /* Anything else is an error. */
5294 default:
5295 cp_parser_error (parser, "expected primary-expression");
5296 return error_mark_node;
5297 }
5298 }
5299
5300 static inline cp_expr
5301 cp_parser_primary_expression (cp_parser *parser,
5302 bool address_p,
5303 bool cast_p,
5304 bool template_arg_p,
5305 cp_id_kind *idk)
5306 {
5307 return cp_parser_primary_expression (parser, address_p, cast_p, template_arg_p,
5308 /*decltype*/false, idk);
5309 }
5310
5311 /* Parse an id-expression.
5312
5313 id-expression:
5314 unqualified-id
5315 qualified-id
5316
5317 qualified-id:
5318 :: [opt] nested-name-specifier template [opt] unqualified-id
5319 :: identifier
5320 :: operator-function-id
5321 :: template-id
5322
5323 Return a representation of the unqualified portion of the
5324 identifier. Sets PARSER->SCOPE to the qualifying scope if there is
5325 a `::' or nested-name-specifier.
5326
5327 Often, if the id-expression was a qualified-id, the caller will
5328 want to make a SCOPE_REF to represent the qualified-id. This
5329 function does not do this in order to avoid wastefully creating
5330 SCOPE_REFs when they are not required.
5331
5332 If TEMPLATE_KEYWORD_P is true, then we have just seen the
5333 `template' keyword.
5334
5335 If CHECK_DEPENDENCY_P is false, then names are looked up inside
5336 uninstantiated templates.
5337
5338 If *TEMPLATE_P is non-NULL, it is set to true iff the
5339 `template' keyword is used to explicitly indicate that the entity
5340 named is a template.
5341
5342 If DECLARATOR_P is true, the id-expression is appearing as part of
5343 a declarator, rather than as part of an expression. */
5344
5345 static cp_expr
5346 cp_parser_id_expression (cp_parser *parser,
5347 bool template_keyword_p,
5348 bool check_dependency_p,
5349 bool *template_p,
5350 bool declarator_p,
5351 bool optional_p)
5352 {
5353 bool global_scope_p;
5354 bool nested_name_specifier_p;
5355
5356 /* Assume the `template' keyword was not used. */
5357 if (template_p)
5358 *template_p = template_keyword_p;
5359
5360 /* Look for the optional `::' operator. */
5361 global_scope_p
5362 = (cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/false)
5363 != NULL_TREE);
5364 /* Look for the optional nested-name-specifier. */
5365 nested_name_specifier_p
5366 = (cp_parser_nested_name_specifier_opt (parser,
5367 /*typename_keyword_p=*/false,
5368 check_dependency_p,
5369 /*type_p=*/false,
5370 declarator_p)
5371 != NULL_TREE);
5372 /* If there is a nested-name-specifier, then we are looking at
5373 the first qualified-id production. */
5374 if (nested_name_specifier_p)
5375 {
5376 tree saved_scope;
5377 tree saved_object_scope;
5378 tree saved_qualifying_scope;
5379 tree unqualified_id;
5380 bool is_template;
5381
5382 /* See if the next token is the `template' keyword. */
5383 if (!template_p)
5384 template_p = &is_template;
5385 *template_p = cp_parser_optional_template_keyword (parser);
5386 /* Name lookup we do during the processing of the
5387 unqualified-id might obliterate SCOPE. */
5388 saved_scope = parser->scope;
5389 saved_object_scope = parser->object_scope;
5390 saved_qualifying_scope = parser->qualifying_scope;
5391 /* Process the final unqualified-id. */
5392 unqualified_id = cp_parser_unqualified_id (parser, *template_p,
5393 check_dependency_p,
5394 declarator_p,
5395 /*optional_p=*/false);
5396 /* Restore the SAVED_SCOPE for our caller. */
5397 parser->scope = saved_scope;
5398 parser->object_scope = saved_object_scope;
5399 parser->qualifying_scope = saved_qualifying_scope;
5400
5401 return unqualified_id;
5402 }
5403 /* Otherwise, if we are in global scope, then we are looking at one
5404 of the other qualified-id productions. */
5405 else if (global_scope_p)
5406 {
5407 cp_token *token;
5408 tree id;
5409
5410 /* Peek at the next token. */
5411 token = cp_lexer_peek_token (parser->lexer);
5412
5413 /* If it's an identifier, and the next token is not a "<", then
5414 we can avoid the template-id case. This is an optimization
5415 for this common case. */
5416 if (token->type == CPP_NAME
5417 && !cp_parser_nth_token_starts_template_argument_list_p
5418 (parser, 2))
5419 return cp_parser_identifier (parser);
5420
5421 cp_parser_parse_tentatively (parser);
5422 /* Try a template-id. */
5423 id = cp_parser_template_id (parser,
5424 /*template_keyword_p=*/false,
5425 /*check_dependency_p=*/true,
5426 none_type,
5427 declarator_p);
5428 /* If that worked, we're done. */
5429 if (cp_parser_parse_definitely (parser))
5430 return id;
5431
5432 /* Peek at the next token. (Changes in the token buffer may
5433 have invalidated the pointer obtained above.) */
5434 token = cp_lexer_peek_token (parser->lexer);
5435
5436 switch (token->type)
5437 {
5438 case CPP_NAME:
5439 return cp_parser_identifier (parser);
5440
5441 case CPP_KEYWORD:
5442 if (token->keyword == RID_OPERATOR)
5443 return cp_parser_operator_function_id (parser);
5444 /* Fall through. */
5445
5446 default:
5447 cp_parser_error (parser, "expected id-expression");
5448 return error_mark_node;
5449 }
5450 }
5451 else
5452 return cp_parser_unqualified_id (parser, template_keyword_p,
5453 /*check_dependency_p=*/true,
5454 declarator_p,
5455 optional_p);
5456 }
5457
5458 /* Parse an unqualified-id.
5459
5460 unqualified-id:
5461 identifier
5462 operator-function-id
5463 conversion-function-id
5464 ~ class-name
5465 template-id
5466
5467 If TEMPLATE_KEYWORD_P is TRUE, we have just seen the `template'
5468 keyword, in a construct like `A::template ...'.
5469
5470 Returns a representation of unqualified-id. For the `identifier'
5471 production, an IDENTIFIER_NODE is returned. For the `~ class-name'
5472 production a BIT_NOT_EXPR is returned; the operand of the
5473 BIT_NOT_EXPR is an IDENTIFIER_NODE for the class-name. For the
5474 other productions, see the documentation accompanying the
5475 corresponding parsing functions. If CHECK_DEPENDENCY_P is false,
5476 names are looked up in uninstantiated templates. If DECLARATOR_P
5477 is true, the unqualified-id is appearing as part of a declarator,
5478 rather than as part of an expression. */
5479
5480 static cp_expr
5481 cp_parser_unqualified_id (cp_parser* parser,
5482 bool template_keyword_p,
5483 bool check_dependency_p,
5484 bool declarator_p,
5485 bool optional_p)
5486 {
5487 cp_token *token;
5488
5489 /* Peek at the next token. */
5490 token = cp_lexer_peek_token (parser->lexer);
5491
5492 switch ((int) token->type)
5493 {
5494 case CPP_NAME:
5495 {
5496 tree id;
5497
5498 /* We don't know yet whether or not this will be a
5499 template-id. */
5500 cp_parser_parse_tentatively (parser);
5501 /* Try a template-id. */
5502 id = cp_parser_template_id (parser, template_keyword_p,
5503 check_dependency_p,
5504 none_type,
5505 declarator_p);
5506 /* If it worked, we're done. */
5507 if (cp_parser_parse_definitely (parser))
5508 return id;
5509 /* Otherwise, it's an ordinary identifier. */
5510 return cp_parser_identifier (parser);
5511 }
5512
5513 case CPP_TEMPLATE_ID:
5514 return cp_parser_template_id (parser, template_keyword_p,
5515 check_dependency_p,
5516 none_type,
5517 declarator_p);
5518
5519 case CPP_COMPL:
5520 {
5521 tree type_decl;
5522 tree qualifying_scope;
5523 tree object_scope;
5524 tree scope;
5525 bool done;
5526
5527 /* Consume the `~' token. */
5528 cp_lexer_consume_token (parser->lexer);
5529 /* Parse the class-name. The standard, as written, seems to
5530 say that:
5531
5532 template <typename T> struct S { ~S (); };
5533 template <typename T> S<T>::~S() {}
5534
5535 is invalid, since `~' must be followed by a class-name, but
5536 `S<T>' is dependent, and so not known to be a class.
5537 That's not right; we need to look in uninstantiated
5538 templates. A further complication arises from:
5539
5540 template <typename T> void f(T t) {
5541 t.T::~T();
5542 }
5543
5544 Here, it is not possible to look up `T' in the scope of `T'
5545 itself. We must look in both the current scope, and the
5546 scope of the containing complete expression.
5547
5548 Yet another issue is:
5549
5550 struct S {
5551 int S;
5552 ~S();
5553 };
5554
5555 S::~S() {}
5556
5557 The standard does not seem to say that the `S' in `~S'
5558 should refer to the type `S' and not the data member
5559 `S::S'. */
5560
5561 /* DR 244 says that we look up the name after the "~" in the
5562 same scope as we looked up the qualifying name. That idea
5563 isn't fully worked out; it's more complicated than that. */
5564 scope = parser->scope;
5565 object_scope = parser->object_scope;
5566 qualifying_scope = parser->qualifying_scope;
5567
5568 /* Check for invalid scopes. */
5569 if (scope == error_mark_node)
5570 {
5571 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
5572 cp_lexer_consume_token (parser->lexer);
5573 return error_mark_node;
5574 }
5575 if (scope && TREE_CODE (scope) == NAMESPACE_DECL)
5576 {
5577 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
5578 error_at (token->location,
5579 "scope %qT before %<~%> is not a class-name",
5580 scope);
5581 cp_parser_simulate_error (parser);
5582 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
5583 cp_lexer_consume_token (parser->lexer);
5584 return error_mark_node;
5585 }
5586 gcc_assert (!scope || TYPE_P (scope));
5587
5588 /* If the name is of the form "X::~X" it's OK even if X is a
5589 typedef. */
5590 token = cp_lexer_peek_token (parser->lexer);
5591 if (scope
5592 && token->type == CPP_NAME
5593 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
5594 != CPP_LESS)
5595 && (token->u.value == TYPE_IDENTIFIER (scope)
5596 || (CLASS_TYPE_P (scope)
5597 && constructor_name_p (token->u.value, scope))))
5598 {
5599 cp_lexer_consume_token (parser->lexer);
5600 return build_nt (BIT_NOT_EXPR, scope);
5601 }
5602
5603 /* ~auto means the destructor of whatever the object is. */
5604 if (cp_parser_is_keyword (token, RID_AUTO))
5605 {
5606 if (cxx_dialect < cxx14)
5607 pedwarn (input_location, 0,
5608 "%<~auto%> only available with "
5609 "-std=c++14 or -std=gnu++14");
5610 cp_lexer_consume_token (parser->lexer);
5611 return build_nt (BIT_NOT_EXPR, make_auto ());
5612 }
5613
5614 /* If there was an explicit qualification (S::~T), first look
5615 in the scope given by the qualification (i.e., S).
5616
5617 Note: in the calls to cp_parser_class_name below we pass
5618 typename_type so that lookup finds the injected-class-name
5619 rather than the constructor. */
5620 done = false;
5621 type_decl = NULL_TREE;
5622 if (scope)
5623 {
5624 cp_parser_parse_tentatively (parser);
5625 type_decl = cp_parser_class_name (parser,
5626 /*typename_keyword_p=*/false,
5627 /*template_keyword_p=*/false,
5628 typename_type,
5629 /*check_dependency=*/false,
5630 /*class_head_p=*/false,
5631 declarator_p);
5632 if (cp_parser_parse_definitely (parser))
5633 done = true;
5634 }
5635 /* In "N::S::~S", look in "N" as well. */
5636 if (!done && scope && qualifying_scope)
5637 {
5638 cp_parser_parse_tentatively (parser);
5639 parser->scope = qualifying_scope;
5640 parser->object_scope = NULL_TREE;
5641 parser->qualifying_scope = NULL_TREE;
5642 type_decl
5643 = cp_parser_class_name (parser,
5644 /*typename_keyword_p=*/false,
5645 /*template_keyword_p=*/false,
5646 typename_type,
5647 /*check_dependency=*/false,
5648 /*class_head_p=*/false,
5649 declarator_p);
5650 if (cp_parser_parse_definitely (parser))
5651 done = true;
5652 }
5653 /* In "p->S::~T", look in the scope given by "*p" as well. */
5654 else if (!done && object_scope)
5655 {
5656 cp_parser_parse_tentatively (parser);
5657 parser->scope = object_scope;
5658 parser->object_scope = NULL_TREE;
5659 parser->qualifying_scope = NULL_TREE;
5660 type_decl
5661 = cp_parser_class_name (parser,
5662 /*typename_keyword_p=*/false,
5663 /*template_keyword_p=*/false,
5664 typename_type,
5665 /*check_dependency=*/false,
5666 /*class_head_p=*/false,
5667 declarator_p);
5668 if (cp_parser_parse_definitely (parser))
5669 done = true;
5670 }
5671 /* Look in the surrounding context. */
5672 if (!done)
5673 {
5674 parser->scope = NULL_TREE;
5675 parser->object_scope = NULL_TREE;
5676 parser->qualifying_scope = NULL_TREE;
5677 if (processing_template_decl)
5678 cp_parser_parse_tentatively (parser);
5679 type_decl
5680 = cp_parser_class_name (parser,
5681 /*typename_keyword_p=*/false,
5682 /*template_keyword_p=*/false,
5683 typename_type,
5684 /*check_dependency=*/false,
5685 /*class_head_p=*/false,
5686 declarator_p);
5687 if (processing_template_decl
5688 && ! cp_parser_parse_definitely (parser))
5689 {
5690 /* We couldn't find a type with this name. If we're parsing
5691 tentatively, fail and try something else. */
5692 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
5693 {
5694 cp_parser_simulate_error (parser);
5695 return error_mark_node;
5696 }
5697 /* Otherwise, accept it and check for a match at instantiation
5698 time. */
5699 type_decl = cp_parser_identifier (parser);
5700 if (type_decl != error_mark_node)
5701 type_decl = build_nt (BIT_NOT_EXPR, type_decl);
5702 return type_decl;
5703 }
5704 }
5705 /* If an error occurred, assume that the name of the
5706 destructor is the same as the name of the qualifying
5707 class. That allows us to keep parsing after running
5708 into ill-formed destructor names. */
5709 if (type_decl == error_mark_node && scope)
5710 return build_nt (BIT_NOT_EXPR, scope);
5711 else if (type_decl == error_mark_node)
5712 return error_mark_node;
5713
5714 /* Check that destructor name and scope match. */
5715 if (declarator_p && scope && !check_dtor_name (scope, type_decl))
5716 {
5717 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
5718 error_at (token->location,
5719 "declaration of %<~%T%> as member of %qT",
5720 type_decl, scope);
5721 cp_parser_simulate_error (parser);
5722 return error_mark_node;
5723 }
5724
5725 /* [class.dtor]
5726
5727 A typedef-name that names a class shall not be used as the
5728 identifier in the declarator for a destructor declaration. */
5729 if (declarator_p
5730 && !DECL_IMPLICIT_TYPEDEF_P (type_decl)
5731 && !DECL_SELF_REFERENCE_P (type_decl)
5732 && !cp_parser_uncommitted_to_tentative_parse_p (parser))
5733 error_at (token->location,
5734 "typedef-name %qD used as destructor declarator",
5735 type_decl);
5736
5737 return build_nt (BIT_NOT_EXPR, TREE_TYPE (type_decl));
5738 }
5739
5740 case CPP_KEYWORD:
5741 if (token->keyword == RID_OPERATOR)
5742 {
5743 cp_expr id;
5744
5745 /* This could be a template-id, so we try that first. */
5746 cp_parser_parse_tentatively (parser);
5747 /* Try a template-id. */
5748 id = cp_parser_template_id (parser, template_keyword_p,
5749 /*check_dependency_p=*/true,
5750 none_type,
5751 declarator_p);
5752 /* If that worked, we're done. */
5753 if (cp_parser_parse_definitely (parser))
5754 return id;
5755 /* We still don't know whether we're looking at an
5756 operator-function-id or a conversion-function-id. */
5757 cp_parser_parse_tentatively (parser);
5758 /* Try an operator-function-id. */
5759 id = cp_parser_operator_function_id (parser);
5760 /* If that didn't work, try a conversion-function-id. */
5761 if (!cp_parser_parse_definitely (parser))
5762 id = cp_parser_conversion_function_id (parser);
5763 else if (UDLIT_OPER_P (id))
5764 {
5765 /* 17.6.3.3.5 */
5766 const char *name = UDLIT_OP_SUFFIX (id);
5767 if (name[0] != '_' && !in_system_header_at (input_location)
5768 && declarator_p)
5769 warning (0, "literal operator suffixes not preceded by %<_%>"
5770 " are reserved for future standardization");
5771 }
5772
5773 return id;
5774 }
5775 /* Fall through. */
5776
5777 default:
5778 if (optional_p)
5779 return NULL_TREE;
5780 cp_parser_error (parser, "expected unqualified-id");
5781 return error_mark_node;
5782 }
5783 }
5784
5785 /* Parse an (optional) nested-name-specifier.
5786
5787 nested-name-specifier: [C++98]
5788 class-or-namespace-name :: nested-name-specifier [opt]
5789 class-or-namespace-name :: template nested-name-specifier [opt]
5790
5791 nested-name-specifier: [C++0x]
5792 type-name ::
5793 namespace-name ::
5794 nested-name-specifier identifier ::
5795 nested-name-specifier template [opt] simple-template-id ::
5796
5797 PARSER->SCOPE should be set appropriately before this function is
5798 called. TYPENAME_KEYWORD_P is TRUE if the `typename' keyword is in
5799 effect. TYPE_P is TRUE if we non-type bindings should be ignored
5800 in name lookups.
5801
5802 Sets PARSER->SCOPE to the class (TYPE) or namespace
5803 (NAMESPACE_DECL) specified by the nested-name-specifier, or leaves
5804 it unchanged if there is no nested-name-specifier. Returns the new
5805 scope iff there is a nested-name-specifier, or NULL_TREE otherwise.
5806
5807 If IS_DECLARATION is TRUE, the nested-name-specifier is known to be
5808 part of a declaration and/or decl-specifier. */
5809
5810 static tree
5811 cp_parser_nested_name_specifier_opt (cp_parser *parser,
5812 bool typename_keyword_p,
5813 bool check_dependency_p,
5814 bool type_p,
5815 bool is_declaration)
5816 {
5817 bool success = false;
5818 cp_token_position start = 0;
5819 cp_token *token;
5820
5821 /* Remember where the nested-name-specifier starts. */
5822 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
5823 {
5824 start = cp_lexer_token_position (parser->lexer, false);
5825 push_deferring_access_checks (dk_deferred);
5826 }
5827
5828 while (true)
5829 {
5830 tree new_scope;
5831 tree old_scope;
5832 tree saved_qualifying_scope;
5833 bool template_keyword_p;
5834
5835 /* Spot cases that cannot be the beginning of a
5836 nested-name-specifier. */
5837 token = cp_lexer_peek_token (parser->lexer);
5838
5839 /* If the next token is CPP_NESTED_NAME_SPECIFIER, just process
5840 the already parsed nested-name-specifier. */
5841 if (token->type == CPP_NESTED_NAME_SPECIFIER)
5842 {
5843 /* Grab the nested-name-specifier and continue the loop. */
5844 cp_parser_pre_parsed_nested_name_specifier (parser);
5845 /* If we originally encountered this nested-name-specifier
5846 with IS_DECLARATION set to false, we will not have
5847 resolved TYPENAME_TYPEs, so we must do so here. */
5848 if (is_declaration
5849 && TREE_CODE (parser->scope) == TYPENAME_TYPE)
5850 {
5851 new_scope = resolve_typename_type (parser->scope,
5852 /*only_current_p=*/false);
5853 if (TREE_CODE (new_scope) != TYPENAME_TYPE)
5854 parser->scope = new_scope;
5855 }
5856 success = true;
5857 continue;
5858 }
5859
5860 /* Spot cases that cannot be the beginning of a
5861 nested-name-specifier. On the second and subsequent times
5862 through the loop, we look for the `template' keyword. */
5863 if (success && token->keyword == RID_TEMPLATE)
5864 ;
5865 /* A template-id can start a nested-name-specifier. */
5866 else if (token->type == CPP_TEMPLATE_ID)
5867 ;
5868 /* DR 743: decltype can be used in a nested-name-specifier. */
5869 else if (token_is_decltype (token))
5870 ;
5871 else
5872 {
5873 /* If the next token is not an identifier, then it is
5874 definitely not a type-name or namespace-name. */
5875 if (token->type != CPP_NAME)
5876 break;
5877 /* If the following token is neither a `<' (to begin a
5878 template-id), nor a `::', then we are not looking at a
5879 nested-name-specifier. */
5880 token = cp_lexer_peek_nth_token (parser->lexer, 2);
5881
5882 if (token->type == CPP_COLON
5883 && parser->colon_corrects_to_scope_p
5884 && cp_lexer_peek_nth_token (parser->lexer, 3)->type == CPP_NAME)
5885 {
5886 error_at (token->location,
5887 "found %<:%> in nested-name-specifier, expected %<::%>");
5888 token->type = CPP_SCOPE;
5889 }
5890
5891 if (token->type != CPP_SCOPE
5892 && !cp_parser_nth_token_starts_template_argument_list_p
5893 (parser, 2))
5894 break;
5895 }
5896
5897 /* The nested-name-specifier is optional, so we parse
5898 tentatively. */
5899 cp_parser_parse_tentatively (parser);
5900
5901 /* Look for the optional `template' keyword, if this isn't the
5902 first time through the loop. */
5903 if (success)
5904 template_keyword_p = cp_parser_optional_template_keyword (parser);
5905 else
5906 template_keyword_p = false;
5907
5908 /* Save the old scope since the name lookup we are about to do
5909 might destroy it. */
5910 old_scope = parser->scope;
5911 saved_qualifying_scope = parser->qualifying_scope;
5912 /* In a declarator-id like "X<T>::I::Y<T>" we must be able to
5913 look up names in "X<T>::I" in order to determine that "Y" is
5914 a template. So, if we have a typename at this point, we make
5915 an effort to look through it. */
5916 if (is_declaration
5917 && !typename_keyword_p
5918 && parser->scope
5919 && TREE_CODE (parser->scope) == TYPENAME_TYPE)
5920 parser->scope = resolve_typename_type (parser->scope,
5921 /*only_current_p=*/false);
5922 /* Parse the qualifying entity. */
5923 new_scope
5924 = cp_parser_qualifying_entity (parser,
5925 typename_keyword_p,
5926 template_keyword_p,
5927 check_dependency_p,
5928 type_p,
5929 is_declaration);
5930 /* Look for the `::' token. */
5931 cp_parser_require (parser, CPP_SCOPE, RT_SCOPE);
5932
5933 /* If we found what we wanted, we keep going; otherwise, we're
5934 done. */
5935 if (!cp_parser_parse_definitely (parser))
5936 {
5937 bool error_p = false;
5938
5939 /* Restore the OLD_SCOPE since it was valid before the
5940 failed attempt at finding the last
5941 class-or-namespace-name. */
5942 parser->scope = old_scope;
5943 parser->qualifying_scope = saved_qualifying_scope;
5944
5945 /* If the next token is a decltype, and the one after that is a
5946 `::', then the decltype has failed to resolve to a class or
5947 enumeration type. Give this error even when parsing
5948 tentatively since it can't possibly be valid--and we're going
5949 to replace it with a CPP_NESTED_NAME_SPECIFIER below, so we
5950 won't get another chance.*/
5951 if (cp_lexer_next_token_is (parser->lexer, CPP_DECLTYPE)
5952 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
5953 == CPP_SCOPE))
5954 {
5955 token = cp_lexer_consume_token (parser->lexer);
5956 error_at (token->location, "decltype evaluates to %qT, "
5957 "which is not a class or enumeration type",
5958 token->u.tree_check_value->value);
5959 parser->scope = error_mark_node;
5960 error_p = true;
5961 /* As below. */
5962 success = true;
5963 cp_lexer_consume_token (parser->lexer);
5964 }
5965
5966 if (cp_lexer_next_token_is (parser->lexer, CPP_TEMPLATE_ID)
5967 && cp_lexer_nth_token_is (parser->lexer, 2, CPP_SCOPE))
5968 {
5969 /* If we have a non-type template-id followed by ::, it can't
5970 possibly be valid. */
5971 token = cp_lexer_peek_token (parser->lexer);
5972 tree tid = token->u.tree_check_value->value;
5973 if (TREE_CODE (tid) == TEMPLATE_ID_EXPR
5974 && TREE_CODE (TREE_OPERAND (tid, 0)) != IDENTIFIER_NODE)
5975 {
5976 tree tmpl = NULL_TREE;
5977 if (is_overloaded_fn (tid))
5978 {
5979 tree fns = get_fns (tid);
5980 if (!OVL_CHAIN (fns))
5981 tmpl = OVL_CURRENT (fns);
5982 error_at (token->location, "function template-id %qD "
5983 "in nested-name-specifier", tid);
5984 }
5985 else
5986 {
5987 /* Variable template. */
5988 tmpl = TREE_OPERAND (tid, 0);
5989 gcc_assert (variable_template_p (tmpl));
5990 error_at (token->location, "variable template-id %qD "
5991 "in nested-name-specifier", tid);
5992 }
5993 if (tmpl)
5994 inform (DECL_SOURCE_LOCATION (tmpl),
5995 "%qD declared here", tmpl);
5996
5997 parser->scope = error_mark_node;
5998 error_p = true;
5999 /* As below. */
6000 success = true;
6001 cp_lexer_consume_token (parser->lexer);
6002 cp_lexer_consume_token (parser->lexer);
6003 }
6004 }
6005
6006 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
6007 break;
6008 /* If the next token is an identifier, and the one after
6009 that is a `::', then any valid interpretation would have
6010 found a class-or-namespace-name. */
6011 while (cp_lexer_next_token_is (parser->lexer, CPP_NAME)
6012 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
6013 == CPP_SCOPE)
6014 && (cp_lexer_peek_nth_token (parser->lexer, 3)->type
6015 != CPP_COMPL))
6016 {
6017 token = cp_lexer_consume_token (parser->lexer);
6018 if (!error_p)
6019 {
6020 if (!token->error_reported)
6021 {
6022 tree decl;
6023 tree ambiguous_decls;
6024
6025 decl = cp_parser_lookup_name (parser, token->u.value,
6026 none_type,
6027 /*is_template=*/false,
6028 /*is_namespace=*/false,
6029 /*check_dependency=*/true,
6030 &ambiguous_decls,
6031 token->location);
6032 if (TREE_CODE (decl) == TEMPLATE_DECL)
6033 error_at (token->location,
6034 "%qD used without template parameters",
6035 decl);
6036 else if (ambiguous_decls)
6037 {
6038 // cp_parser_lookup_name has the same diagnostic,
6039 // thus make sure to emit it at most once.
6040 if (cp_parser_uncommitted_to_tentative_parse_p
6041 (parser))
6042 {
6043 error_at (token->location,
6044 "reference to %qD is ambiguous",
6045 token->u.value);
6046 print_candidates (ambiguous_decls);
6047 }
6048 decl = error_mark_node;
6049 }
6050 else
6051 {
6052 if (cxx_dialect != cxx98)
6053 cp_parser_name_lookup_error
6054 (parser, token->u.value, decl, NLE_NOT_CXX98,
6055 token->location);
6056 else
6057 cp_parser_name_lookup_error
6058 (parser, token->u.value, decl, NLE_CXX98,
6059 token->location);
6060 }
6061 }
6062 parser->scope = error_mark_node;
6063 error_p = true;
6064 /* Treat this as a successful nested-name-specifier
6065 due to:
6066
6067 [basic.lookup.qual]
6068
6069 If the name found is not a class-name (clause
6070 _class_) or namespace-name (_namespace.def_), the
6071 program is ill-formed. */
6072 success = true;
6073 }
6074 cp_lexer_consume_token (parser->lexer);
6075 }
6076 break;
6077 }
6078 /* We've found one valid nested-name-specifier. */
6079 success = true;
6080 /* Name lookup always gives us a DECL. */
6081 if (TREE_CODE (new_scope) == TYPE_DECL)
6082 new_scope = TREE_TYPE (new_scope);
6083 /* Uses of "template" must be followed by actual templates. */
6084 if (template_keyword_p
6085 && !(CLASS_TYPE_P (new_scope)
6086 && ((CLASSTYPE_USE_TEMPLATE (new_scope)
6087 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (new_scope)))
6088 || CLASSTYPE_IS_TEMPLATE (new_scope)))
6089 && !(TREE_CODE (new_scope) == TYPENAME_TYPE
6090 && (TREE_CODE (TYPENAME_TYPE_FULLNAME (new_scope))
6091 == TEMPLATE_ID_EXPR)))
6092 permerror (input_location, TYPE_P (new_scope)
6093 ? G_("%qT is not a template")
6094 : G_("%qD is not a template"),
6095 new_scope);
6096 /* If it is a class scope, try to complete it; we are about to
6097 be looking up names inside the class. */
6098 if (TYPE_P (new_scope)
6099 /* Since checking types for dependency can be expensive,
6100 avoid doing it if the type is already complete. */
6101 && !COMPLETE_TYPE_P (new_scope)
6102 /* Do not try to complete dependent types. */
6103 && !dependent_type_p (new_scope))
6104 {
6105 new_scope = complete_type (new_scope);
6106 /* If it is a typedef to current class, use the current
6107 class instead, as the typedef won't have any names inside
6108 it yet. */
6109 if (!COMPLETE_TYPE_P (new_scope)
6110 && currently_open_class (new_scope))
6111 new_scope = TYPE_MAIN_VARIANT (new_scope);
6112 }
6113 /* Make sure we look in the right scope the next time through
6114 the loop. */
6115 parser->scope = new_scope;
6116 }
6117
6118 /* If parsing tentatively, replace the sequence of tokens that makes
6119 up the nested-name-specifier with a CPP_NESTED_NAME_SPECIFIER
6120 token. That way, should we re-parse the token stream, we will
6121 not have to repeat the effort required to do the parse, nor will
6122 we issue duplicate error messages. */
6123 if (success && start)
6124 {
6125 cp_token *token;
6126
6127 token = cp_lexer_token_at (parser->lexer, start);
6128 /* Reset the contents of the START token. */
6129 token->type = CPP_NESTED_NAME_SPECIFIER;
6130 /* Retrieve any deferred checks. Do not pop this access checks yet
6131 so the memory will not be reclaimed during token replacing below. */
6132 token->u.tree_check_value = ggc_cleared_alloc<struct tree_check> ();
6133 token->u.tree_check_value->value = parser->scope;
6134 token->u.tree_check_value->checks = get_deferred_access_checks ();
6135 token->u.tree_check_value->qualifying_scope =
6136 parser->qualifying_scope;
6137 token->keyword = RID_MAX;
6138
6139 /* Purge all subsequent tokens. */
6140 cp_lexer_purge_tokens_after (parser->lexer, start);
6141 }
6142
6143 if (start)
6144 pop_to_parent_deferring_access_checks ();
6145
6146 return success ? parser->scope : NULL_TREE;
6147 }
6148
6149 /* Parse a nested-name-specifier. See
6150 cp_parser_nested_name_specifier_opt for details. This function
6151 behaves identically, except that it will an issue an error if no
6152 nested-name-specifier is present. */
6153
6154 static tree
6155 cp_parser_nested_name_specifier (cp_parser *parser,
6156 bool typename_keyword_p,
6157 bool check_dependency_p,
6158 bool type_p,
6159 bool is_declaration)
6160 {
6161 tree scope;
6162
6163 /* Look for the nested-name-specifier. */
6164 scope = cp_parser_nested_name_specifier_opt (parser,
6165 typename_keyword_p,
6166 check_dependency_p,
6167 type_p,
6168 is_declaration);
6169 /* If it was not present, issue an error message. */
6170 if (!scope)
6171 {
6172 cp_parser_error (parser, "expected nested-name-specifier");
6173 parser->scope = NULL_TREE;
6174 }
6175
6176 return scope;
6177 }
6178
6179 /* Parse the qualifying entity in a nested-name-specifier. For C++98,
6180 this is either a class-name or a namespace-name (which corresponds
6181 to the class-or-namespace-name production in the grammar). For
6182 C++0x, it can also be a type-name that refers to an enumeration
6183 type or a simple-template-id.
6184
6185 TYPENAME_KEYWORD_P is TRUE iff the `typename' keyword is in effect.
6186 TEMPLATE_KEYWORD_P is TRUE iff the `template' keyword is in effect.
6187 CHECK_DEPENDENCY_P is FALSE iff dependent names should be looked up.
6188 TYPE_P is TRUE iff the next name should be taken as a class-name,
6189 even the same name is declared to be another entity in the same
6190 scope.
6191
6192 Returns the class (TYPE_DECL) or namespace (NAMESPACE_DECL)
6193 specified by the class-or-namespace-name. If neither is found the
6194 ERROR_MARK_NODE is returned. */
6195
6196 static tree
6197 cp_parser_qualifying_entity (cp_parser *parser,
6198 bool typename_keyword_p,
6199 bool template_keyword_p,
6200 bool check_dependency_p,
6201 bool type_p,
6202 bool is_declaration)
6203 {
6204 tree saved_scope;
6205 tree saved_qualifying_scope;
6206 tree saved_object_scope;
6207 tree scope;
6208 bool only_class_p;
6209 bool successful_parse_p;
6210
6211 /* DR 743: decltype can appear in a nested-name-specifier. */
6212 if (cp_lexer_next_token_is_decltype (parser->lexer))
6213 {
6214 scope = cp_parser_decltype (parser);
6215 if (TREE_CODE (scope) != ENUMERAL_TYPE
6216 && !MAYBE_CLASS_TYPE_P (scope))
6217 {
6218 cp_parser_simulate_error (parser);
6219 return error_mark_node;
6220 }
6221 if (TYPE_NAME (scope))
6222 scope = TYPE_NAME (scope);
6223 return scope;
6224 }
6225
6226 /* Before we try to parse the class-name, we must save away the
6227 current PARSER->SCOPE since cp_parser_class_name will destroy
6228 it. */
6229 saved_scope = parser->scope;
6230 saved_qualifying_scope = parser->qualifying_scope;
6231 saved_object_scope = parser->object_scope;
6232 /* Try for a class-name first. If the SAVED_SCOPE is a type, then
6233 there is no need to look for a namespace-name. */
6234 only_class_p = template_keyword_p
6235 || (saved_scope && TYPE_P (saved_scope) && cxx_dialect == cxx98);
6236 if (!only_class_p)
6237 cp_parser_parse_tentatively (parser);
6238 scope = cp_parser_class_name (parser,
6239 typename_keyword_p,
6240 template_keyword_p,
6241 type_p ? class_type : none_type,
6242 check_dependency_p,
6243 /*class_head_p=*/false,
6244 is_declaration,
6245 /*enum_ok=*/cxx_dialect > cxx98);
6246 successful_parse_p = only_class_p || cp_parser_parse_definitely (parser);
6247 /* If that didn't work, try for a namespace-name. */
6248 if (!only_class_p && !successful_parse_p)
6249 {
6250 /* Restore the saved scope. */
6251 parser->scope = saved_scope;
6252 parser->qualifying_scope = saved_qualifying_scope;
6253 parser->object_scope = saved_object_scope;
6254 /* If we are not looking at an identifier followed by the scope
6255 resolution operator, then this is not part of a
6256 nested-name-specifier. (Note that this function is only used
6257 to parse the components of a nested-name-specifier.) */
6258 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NAME)
6259 || cp_lexer_peek_nth_token (parser->lexer, 2)->type != CPP_SCOPE)
6260 return error_mark_node;
6261 scope = cp_parser_namespace_name (parser);
6262 }
6263
6264 return scope;
6265 }
6266
6267 /* Return true if we are looking at a compound-literal, false otherwise. */
6268
6269 static bool
6270 cp_parser_compound_literal_p (cp_parser *parser)
6271 {
6272 /* Consume the `('. */
6273 cp_lexer_consume_token (parser->lexer);
6274
6275 cp_lexer_save_tokens (parser->lexer);
6276
6277 /* Skip tokens until the next token is a closing parenthesis.
6278 If we find the closing `)', and the next token is a `{', then
6279 we are looking at a compound-literal. */
6280 bool compound_literal_p
6281 = (cp_parser_skip_to_closing_parenthesis (parser, false, false,
6282 /*consume_paren=*/true)
6283 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE));
6284
6285 /* Roll back the tokens we skipped. */
6286 cp_lexer_rollback_tokens (parser->lexer);
6287
6288 return compound_literal_p;
6289 }
6290
6291 /* Parse a postfix-expression.
6292
6293 postfix-expression:
6294 primary-expression
6295 postfix-expression [ expression ]
6296 postfix-expression ( expression-list [opt] )
6297 simple-type-specifier ( expression-list [opt] )
6298 typename :: [opt] nested-name-specifier identifier
6299 ( expression-list [opt] )
6300 typename :: [opt] nested-name-specifier template [opt] template-id
6301 ( expression-list [opt] )
6302 postfix-expression . template [opt] id-expression
6303 postfix-expression -> template [opt] id-expression
6304 postfix-expression . pseudo-destructor-name
6305 postfix-expression -> pseudo-destructor-name
6306 postfix-expression ++
6307 postfix-expression --
6308 dynamic_cast < type-id > ( expression )
6309 static_cast < type-id > ( expression )
6310 reinterpret_cast < type-id > ( expression )
6311 const_cast < type-id > ( expression )
6312 typeid ( expression )
6313 typeid ( type-id )
6314
6315 GNU Extension:
6316
6317 postfix-expression:
6318 ( type-id ) { initializer-list , [opt] }
6319
6320 This extension is a GNU version of the C99 compound-literal
6321 construct. (The C99 grammar uses `type-name' instead of `type-id',
6322 but they are essentially the same concept.)
6323
6324 If ADDRESS_P is true, the postfix expression is the operand of the
6325 `&' operator. CAST_P is true if this expression is the target of a
6326 cast.
6327
6328 If MEMBER_ACCESS_ONLY_P, we only allow postfix expressions that are
6329 class member access expressions [expr.ref].
6330
6331 Returns a representation of the expression. */
6332
6333 static cp_expr
6334 cp_parser_postfix_expression (cp_parser *parser, bool address_p, bool cast_p,
6335 bool member_access_only_p, bool decltype_p,
6336 cp_id_kind * pidk_return)
6337 {
6338 cp_token *token;
6339 location_t loc;
6340 enum rid keyword;
6341 cp_id_kind idk = CP_ID_KIND_NONE;
6342 cp_expr postfix_expression = NULL_TREE;
6343 bool is_member_access = false;
6344 int saved_in_statement = -1;
6345
6346 /* Peek at the next token. */
6347 token = cp_lexer_peek_token (parser->lexer);
6348 loc = token->location;
6349 location_t start_loc = get_range_from_loc (line_table, loc).m_start;
6350
6351 /* Some of the productions are determined by keywords. */
6352 keyword = token->keyword;
6353 switch (keyword)
6354 {
6355 case RID_DYNCAST:
6356 case RID_STATCAST:
6357 case RID_REINTCAST:
6358 case RID_CONSTCAST:
6359 {
6360 tree type;
6361 cp_expr expression;
6362 const char *saved_message;
6363 bool saved_in_type_id_in_expr_p;
6364
6365 /* All of these can be handled in the same way from the point
6366 of view of parsing. Begin by consuming the token
6367 identifying the cast. */
6368 cp_lexer_consume_token (parser->lexer);
6369
6370 /* New types cannot be defined in the cast. */
6371 saved_message = parser->type_definition_forbidden_message;
6372 parser->type_definition_forbidden_message
6373 = G_("types may not be defined in casts");
6374
6375 /* Look for the opening `<'. */
6376 cp_parser_require (parser, CPP_LESS, RT_LESS);
6377 /* Parse the type to which we are casting. */
6378 saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
6379 parser->in_type_id_in_expr_p = true;
6380 type = cp_parser_type_id (parser);
6381 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
6382 /* Look for the closing `>'. */
6383 cp_parser_require (parser, CPP_GREATER, RT_GREATER);
6384 /* Restore the old message. */
6385 parser->type_definition_forbidden_message = saved_message;
6386
6387 bool saved_greater_than_is_operator_p
6388 = parser->greater_than_is_operator_p;
6389 parser->greater_than_is_operator_p = true;
6390
6391 /* And the expression which is being cast. */
6392 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
6393 expression = cp_parser_expression (parser, & idk, /*cast_p=*/true);
6394 cp_token *close_paren = cp_parser_require (parser, CPP_CLOSE_PAREN,
6395 RT_CLOSE_PAREN);
6396 location_t end_loc = close_paren ?
6397 close_paren->location : UNKNOWN_LOCATION;
6398
6399 parser->greater_than_is_operator_p
6400 = saved_greater_than_is_operator_p;
6401
6402 /* Only type conversions to integral or enumeration types
6403 can be used in constant-expressions. */
6404 if (!cast_valid_in_integral_constant_expression_p (type)
6405 && cp_parser_non_integral_constant_expression (parser, NIC_CAST))
6406 return error_mark_node;
6407
6408 switch (keyword)
6409 {
6410 case RID_DYNCAST:
6411 postfix_expression
6412 = build_dynamic_cast (type, expression, tf_warning_or_error);
6413 break;
6414 case RID_STATCAST:
6415 postfix_expression
6416 = build_static_cast (type, expression, tf_warning_or_error);
6417 break;
6418 case RID_REINTCAST:
6419 postfix_expression
6420 = build_reinterpret_cast (type, expression,
6421 tf_warning_or_error);
6422 break;
6423 case RID_CONSTCAST:
6424 postfix_expression
6425 = build_const_cast (type, expression, tf_warning_or_error);
6426 break;
6427 default:
6428 gcc_unreachable ();
6429 }
6430
6431 /* Construct a location e.g. :
6432 reinterpret_cast <int *> (expr)
6433 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6434 ranging from the start of the "*_cast" token to the final closing
6435 paren, with the caret at the start. */
6436 location_t cp_cast_loc = make_location (start_loc, start_loc, end_loc);
6437 postfix_expression.set_location (cp_cast_loc);
6438 }
6439 break;
6440
6441 case RID_TYPEID:
6442 {
6443 tree type;
6444 const char *saved_message;
6445 bool saved_in_type_id_in_expr_p;
6446
6447 /* Consume the `typeid' token. */
6448 cp_lexer_consume_token (parser->lexer);
6449 /* Look for the `(' token. */
6450 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
6451 /* Types cannot be defined in a `typeid' expression. */
6452 saved_message = parser->type_definition_forbidden_message;
6453 parser->type_definition_forbidden_message
6454 = G_("types may not be defined in a %<typeid%> expression");
6455 /* We can't be sure yet whether we're looking at a type-id or an
6456 expression. */
6457 cp_parser_parse_tentatively (parser);
6458 /* Try a type-id first. */
6459 saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
6460 parser->in_type_id_in_expr_p = true;
6461 type = cp_parser_type_id (parser);
6462 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
6463 /* Look for the `)' token. Otherwise, we can't be sure that
6464 we're not looking at an expression: consider `typeid (int
6465 (3))', for example. */
6466 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
6467 /* If all went well, simply lookup the type-id. */
6468 if (cp_parser_parse_definitely (parser))
6469 postfix_expression = get_typeid (type, tf_warning_or_error);
6470 /* Otherwise, fall back to the expression variant. */
6471 else
6472 {
6473 tree expression;
6474
6475 /* Look for an expression. */
6476 expression = cp_parser_expression (parser, & idk);
6477 /* Compute its typeid. */
6478 postfix_expression = build_typeid (expression, tf_warning_or_error);
6479 /* Look for the `)' token. */
6480 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
6481 }
6482 /* Restore the saved message. */
6483 parser->type_definition_forbidden_message = saved_message;
6484 /* `typeid' may not appear in an integral constant expression. */
6485 if (cp_parser_non_integral_constant_expression (parser, NIC_TYPEID))
6486 return error_mark_node;
6487 }
6488 break;
6489
6490 case RID_TYPENAME:
6491 {
6492 tree type;
6493 /* The syntax permitted here is the same permitted for an
6494 elaborated-type-specifier. */
6495 ++parser->prevent_constrained_type_specifiers;
6496 type = cp_parser_elaborated_type_specifier (parser,
6497 /*is_friend=*/false,
6498 /*is_declaration=*/false);
6499 --parser->prevent_constrained_type_specifiers;
6500 postfix_expression = cp_parser_functional_cast (parser, type);
6501 }
6502 break;
6503
6504 case RID_CILK_SPAWN:
6505 {
6506 location_t cilk_spawn_loc
6507 = cp_lexer_peek_token (parser->lexer)->location;
6508 cp_lexer_consume_token (parser->lexer);
6509 token = cp_lexer_peek_token (parser->lexer);
6510 if (token->type == CPP_SEMICOLON)
6511 {
6512 error_at (token->location, "%<_Cilk_spawn%> must be followed by "
6513 "an expression");
6514 postfix_expression = error_mark_node;
6515 break;
6516 }
6517 else if (!current_function_decl)
6518 {
6519 error_at (token->location, "%<_Cilk_spawn%> may only be used "
6520 "inside a function");
6521 postfix_expression = error_mark_node;
6522 break;
6523 }
6524 else
6525 {
6526 /* Consecutive _Cilk_spawns are not allowed in a statement. */
6527 saved_in_statement = parser->in_statement;
6528 parser->in_statement |= IN_CILK_SPAWN;
6529 }
6530 cfun->calls_cilk_spawn = 1;
6531 postfix_expression =
6532 cp_parser_postfix_expression (parser, false, false,
6533 false, false, &idk);
6534 if (!flag_cilkplus)
6535 {
6536 error_at (token->location, "-fcilkplus must be enabled to use"
6537 " %<_Cilk_spawn%>");
6538 cfun->calls_cilk_spawn = 0;
6539 }
6540 else if (saved_in_statement & IN_CILK_SPAWN)
6541 {
6542 error_at (token->location, "consecutive %<_Cilk_spawn%> keywords "
6543 "are not permitted");
6544 postfix_expression = error_mark_node;
6545 cfun->calls_cilk_spawn = 0;
6546 }
6547 else
6548 {
6549 location_t loc = postfix_expression.get_location ();
6550 postfix_expression = build_cilk_spawn (token->location,
6551 postfix_expression);
6552 /* Build a location of the form:
6553 _Cilk_spawn expr
6554 ~~~~~~~~~~~~^~~~
6555 with caret at the expr, ranging from the start of the
6556 _Cilk_spawn token to the end of the expression. */
6557 location_t combined_loc =
6558 make_location (loc, cilk_spawn_loc, get_finish (loc));
6559 postfix_expression.set_location (combined_loc);
6560 if (postfix_expression != error_mark_node)
6561 SET_EXPR_LOCATION (postfix_expression, input_location);
6562 parser->in_statement = parser->in_statement & ~IN_CILK_SPAWN;
6563 }
6564 break;
6565 }
6566
6567 case RID_BUILTIN_SHUFFLE:
6568 {
6569 vec<tree, va_gc> *vec;
6570 unsigned int i;
6571 tree p;
6572
6573 cp_lexer_consume_token (parser->lexer);
6574 vec = cp_parser_parenthesized_expression_list (parser, non_attr,
6575 /*cast_p=*/false, /*allow_expansion_p=*/true,
6576 /*non_constant_p=*/NULL);
6577 if (vec == NULL)
6578 return error_mark_node;
6579
6580 FOR_EACH_VEC_ELT (*vec, i, p)
6581 mark_exp_read (p);
6582
6583 if (vec->length () == 2)
6584 return build_x_vec_perm_expr (loc, (*vec)[0], NULL_TREE, (*vec)[1],
6585 tf_warning_or_error);
6586 else if (vec->length () == 3)
6587 return build_x_vec_perm_expr (loc, (*vec)[0], (*vec)[1], (*vec)[2],
6588 tf_warning_or_error);
6589 else
6590 {
6591 error_at (loc, "wrong number of arguments to "
6592 "%<__builtin_shuffle%>");
6593 return error_mark_node;
6594 }
6595 break;
6596 }
6597
6598 default:
6599 {
6600 tree type;
6601
6602 /* If the next thing is a simple-type-specifier, we may be
6603 looking at a functional cast. We could also be looking at
6604 an id-expression. So, we try the functional cast, and if
6605 that doesn't work we fall back to the primary-expression. */
6606 cp_parser_parse_tentatively (parser);
6607 /* Look for the simple-type-specifier. */
6608 ++parser->prevent_constrained_type_specifiers;
6609 type = cp_parser_simple_type_specifier (parser,
6610 /*decl_specs=*/NULL,
6611 CP_PARSER_FLAGS_NONE);
6612 --parser->prevent_constrained_type_specifiers;
6613 /* Parse the cast itself. */
6614 if (!cp_parser_error_occurred (parser))
6615 postfix_expression
6616 = cp_parser_functional_cast (parser, type);
6617 /* If that worked, we're done. */
6618 if (cp_parser_parse_definitely (parser))
6619 break;
6620
6621 /* If the functional-cast didn't work out, try a
6622 compound-literal. */
6623 if (cp_parser_allow_gnu_extensions_p (parser)
6624 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
6625 {
6626 cp_expr initializer = NULL_TREE;
6627
6628 cp_parser_parse_tentatively (parser);
6629
6630 /* Avoid calling cp_parser_type_id pointlessly, see comment
6631 in cp_parser_cast_expression about c++/29234. */
6632 if (!cp_parser_compound_literal_p (parser))
6633 cp_parser_simulate_error (parser);
6634 else
6635 {
6636 /* Parse the type. */
6637 bool saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
6638 parser->in_type_id_in_expr_p = true;
6639 type = cp_parser_type_id (parser);
6640 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
6641 /* Look for the `)'. */
6642 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
6643 }
6644
6645 /* If things aren't going well, there's no need to
6646 keep going. */
6647 if (!cp_parser_error_occurred (parser))
6648 {
6649 bool non_constant_p;
6650 /* Parse the brace-enclosed initializer list. */
6651 initializer = cp_parser_braced_list (parser,
6652 &non_constant_p);
6653 }
6654 /* If that worked, we're definitely looking at a
6655 compound-literal expression. */
6656 if (cp_parser_parse_definitely (parser))
6657 {
6658 /* Warn the user that a compound literal is not
6659 allowed in standard C++. */
6660 pedwarn (input_location, OPT_Wpedantic,
6661 "ISO C++ forbids compound-literals");
6662 /* For simplicity, we disallow compound literals in
6663 constant-expressions. We could
6664 allow compound literals of integer type, whose
6665 initializer was a constant, in constant
6666 expressions. Permitting that usage, as a further
6667 extension, would not change the meaning of any
6668 currently accepted programs. (Of course, as
6669 compound literals are not part of ISO C++, the
6670 standard has nothing to say.) */
6671 if (cp_parser_non_integral_constant_expression (parser,
6672 NIC_NCC))
6673 {
6674 postfix_expression = error_mark_node;
6675 break;
6676 }
6677 /* Form the representation of the compound-literal. */
6678 postfix_expression
6679 = finish_compound_literal (type, initializer,
6680 tf_warning_or_error);
6681 postfix_expression.set_location (initializer.get_location ());
6682 break;
6683 }
6684 }
6685
6686 /* It must be a primary-expression. */
6687 postfix_expression
6688 = cp_parser_primary_expression (parser, address_p, cast_p,
6689 /*template_arg_p=*/false,
6690 decltype_p,
6691 &idk);
6692 }
6693 break;
6694 }
6695
6696 /* Note that we don't need to worry about calling build_cplus_new on a
6697 class-valued CALL_EXPR in decltype when it isn't the end of the
6698 postfix-expression; unary_complex_lvalue will take care of that for
6699 all these cases. */
6700
6701 /* Keep looping until the postfix-expression is complete. */
6702 while (true)
6703 {
6704 if (idk == CP_ID_KIND_UNQUALIFIED
6705 && identifier_p (postfix_expression)
6706 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_PAREN))
6707 /* It is not a Koenig lookup function call. */
6708 postfix_expression
6709 = unqualified_name_lookup_error (postfix_expression);
6710
6711 /* Peek at the next token. */
6712 token = cp_lexer_peek_token (parser->lexer);
6713
6714 switch (token->type)
6715 {
6716 case CPP_OPEN_SQUARE:
6717 if (cp_next_tokens_can_be_std_attribute_p (parser))
6718 {
6719 cp_parser_error (parser,
6720 "two consecutive %<[%> shall "
6721 "only introduce an attribute");
6722 return error_mark_node;
6723 }
6724 postfix_expression
6725 = cp_parser_postfix_open_square_expression (parser,
6726 postfix_expression,
6727 false,
6728 decltype_p);
6729 postfix_expression.set_range (start_loc,
6730 postfix_expression.get_location ());
6731
6732 idk = CP_ID_KIND_NONE;
6733 is_member_access = false;
6734 break;
6735
6736 case CPP_OPEN_PAREN:
6737 /* postfix-expression ( expression-list [opt] ) */
6738 {
6739 bool koenig_p;
6740 bool is_builtin_constant_p;
6741 bool saved_integral_constant_expression_p = false;
6742 bool saved_non_integral_constant_expression_p = false;
6743 tsubst_flags_t complain = complain_flags (decltype_p);
6744 vec<tree, va_gc> *args;
6745 location_t close_paren_loc = UNKNOWN_LOCATION;
6746
6747 is_member_access = false;
6748
6749 is_builtin_constant_p
6750 = DECL_IS_BUILTIN_CONSTANT_P (postfix_expression);
6751 if (is_builtin_constant_p)
6752 {
6753 /* The whole point of __builtin_constant_p is to allow
6754 non-constant expressions to appear as arguments. */
6755 saved_integral_constant_expression_p
6756 = parser->integral_constant_expression_p;
6757 saved_non_integral_constant_expression_p
6758 = parser->non_integral_constant_expression_p;
6759 parser->integral_constant_expression_p = false;
6760 }
6761 args = (cp_parser_parenthesized_expression_list
6762 (parser, non_attr,
6763 /*cast_p=*/false, /*allow_expansion_p=*/true,
6764 /*non_constant_p=*/NULL,
6765 /*close_paren_loc=*/&close_paren_loc));
6766 if (is_builtin_constant_p)
6767 {
6768 parser->integral_constant_expression_p
6769 = saved_integral_constant_expression_p;
6770 parser->non_integral_constant_expression_p
6771 = saved_non_integral_constant_expression_p;
6772 }
6773
6774 if (args == NULL)
6775 {
6776 postfix_expression = error_mark_node;
6777 break;
6778 }
6779
6780 /* Function calls are not permitted in
6781 constant-expressions. */
6782 if (! builtin_valid_in_constant_expr_p (postfix_expression)
6783 && cp_parser_non_integral_constant_expression (parser,
6784 NIC_FUNC_CALL))
6785 {
6786 postfix_expression = error_mark_node;
6787 release_tree_vector (args);
6788 break;
6789 }
6790
6791 koenig_p = false;
6792 if (idk == CP_ID_KIND_UNQUALIFIED
6793 || idk == CP_ID_KIND_TEMPLATE_ID)
6794 {
6795 if (identifier_p (postfix_expression))
6796 {
6797 if (!args->is_empty ())
6798 {
6799 koenig_p = true;
6800 if (!any_type_dependent_arguments_p (args))
6801 postfix_expression
6802 = perform_koenig_lookup (postfix_expression, args,
6803 complain);
6804 }
6805 else
6806 postfix_expression
6807 = unqualified_fn_lookup_error (postfix_expression);
6808 }
6809 /* We do not perform argument-dependent lookup if
6810 normal lookup finds a non-function, in accordance
6811 with the expected resolution of DR 218. */
6812 else if (!args->is_empty ()
6813 && is_overloaded_fn (postfix_expression))
6814 {
6815 tree fn = get_first_fn (postfix_expression);
6816 fn = STRIP_TEMPLATE (fn);
6817
6818 /* Do not do argument dependent lookup if regular
6819 lookup finds a member function or a block-scope
6820 function declaration. [basic.lookup.argdep]/3 */
6821 if (!DECL_FUNCTION_MEMBER_P (fn)
6822 && !DECL_LOCAL_FUNCTION_P (fn))
6823 {
6824 koenig_p = true;
6825 if (!any_type_dependent_arguments_p (args))
6826 postfix_expression
6827 = perform_koenig_lookup (postfix_expression, args,
6828 complain);
6829 }
6830 }
6831 }
6832
6833 if (TREE_CODE (postfix_expression) == FUNCTION_DECL
6834 && DECL_BUILT_IN_CLASS (postfix_expression) == BUILT_IN_NORMAL
6835 && DECL_FUNCTION_CODE (postfix_expression) == BUILT_IN_MEMSET
6836 && vec_safe_length (args) == 3)
6837 {
6838 tree arg0 = (*args)[0];
6839 tree arg1 = (*args)[1];
6840 tree arg2 = (*args)[2];
6841 int literal_mask = ((!!integer_zerop (arg1) << 1)
6842 | (!!integer_zerop (arg2) << 2));
6843 if (TREE_CODE (arg2) == CONST_DECL)
6844 arg2 = DECL_INITIAL (arg2);
6845 warn_for_memset (input_location, arg0, arg2, literal_mask);
6846 }
6847
6848 if (TREE_CODE (postfix_expression) == COMPONENT_REF)
6849 {
6850 tree instance = TREE_OPERAND (postfix_expression, 0);
6851 tree fn = TREE_OPERAND (postfix_expression, 1);
6852
6853 if (processing_template_decl
6854 && (type_dependent_object_expression_p (instance)
6855 || (!BASELINK_P (fn)
6856 && TREE_CODE (fn) != FIELD_DECL)
6857 || type_dependent_expression_p (fn)
6858 || any_type_dependent_arguments_p (args)))
6859 {
6860 postfix_expression
6861 = build_nt_call_vec (postfix_expression, args);
6862 release_tree_vector (args);
6863 break;
6864 }
6865
6866 if (BASELINK_P (fn))
6867 {
6868 postfix_expression
6869 = (build_new_method_call
6870 (instance, fn, &args, NULL_TREE,
6871 (idk == CP_ID_KIND_QUALIFIED
6872 ? LOOKUP_NORMAL|LOOKUP_NONVIRTUAL
6873 : LOOKUP_NORMAL),
6874 /*fn_p=*/NULL,
6875 complain));
6876 }
6877 else
6878 postfix_expression
6879 = finish_call_expr (postfix_expression, &args,
6880 /*disallow_virtual=*/false,
6881 /*koenig_p=*/false,
6882 complain);
6883 }
6884 else if (TREE_CODE (postfix_expression) == OFFSET_REF
6885 || TREE_CODE (postfix_expression) == MEMBER_REF
6886 || TREE_CODE (postfix_expression) == DOTSTAR_EXPR)
6887 postfix_expression = (build_offset_ref_call_from_tree
6888 (postfix_expression, &args,
6889 complain));
6890 else if (idk == CP_ID_KIND_QUALIFIED)
6891 /* A call to a static class member, or a namespace-scope
6892 function. */
6893 postfix_expression
6894 = finish_call_expr (postfix_expression, &args,
6895 /*disallow_virtual=*/true,
6896 koenig_p,
6897 complain);
6898 else
6899 /* All other function calls. */
6900 postfix_expression
6901 = finish_call_expr (postfix_expression, &args,
6902 /*disallow_virtual=*/false,
6903 koenig_p,
6904 complain);
6905
6906 if (close_paren_loc != UNKNOWN_LOCATION)
6907 {
6908 location_t combined_loc = make_location (token->location,
6909 start_loc,
6910 close_paren_loc);
6911 postfix_expression.set_location (combined_loc);
6912 }
6913
6914 /* The POSTFIX_EXPRESSION is certainly no longer an id. */
6915 idk = CP_ID_KIND_NONE;
6916
6917 release_tree_vector (args);
6918 }
6919 break;
6920
6921 case CPP_DOT:
6922 case CPP_DEREF:
6923 /* postfix-expression . template [opt] id-expression
6924 postfix-expression . pseudo-destructor-name
6925 postfix-expression -> template [opt] id-expression
6926 postfix-expression -> pseudo-destructor-name */
6927
6928 /* Consume the `.' or `->' operator. */
6929 cp_lexer_consume_token (parser->lexer);
6930
6931 postfix_expression
6932 = cp_parser_postfix_dot_deref_expression (parser, token->type,
6933 postfix_expression,
6934 false, &idk, loc);
6935
6936 is_member_access = true;
6937 break;
6938
6939 case CPP_PLUS_PLUS:
6940 /* postfix-expression ++ */
6941 /* Consume the `++' token. */
6942 cp_lexer_consume_token (parser->lexer);
6943 /* Generate a representation for the complete expression. */
6944 postfix_expression
6945 = finish_increment_expr (postfix_expression,
6946 POSTINCREMENT_EXPR);
6947 /* Increments may not appear in constant-expressions. */
6948 if (cp_parser_non_integral_constant_expression (parser, NIC_INC))
6949 postfix_expression = error_mark_node;
6950 idk = CP_ID_KIND_NONE;
6951 is_member_access = false;
6952 break;
6953
6954 case CPP_MINUS_MINUS:
6955 /* postfix-expression -- */
6956 /* Consume the `--' token. */
6957 cp_lexer_consume_token (parser->lexer);
6958 /* Generate a representation for the complete expression. */
6959 postfix_expression
6960 = finish_increment_expr (postfix_expression,
6961 POSTDECREMENT_EXPR);
6962 /* Decrements may not appear in constant-expressions. */
6963 if (cp_parser_non_integral_constant_expression (parser, NIC_DEC))
6964 postfix_expression = error_mark_node;
6965 idk = CP_ID_KIND_NONE;
6966 is_member_access = false;
6967 break;
6968
6969 default:
6970 if (pidk_return != NULL)
6971 * pidk_return = idk;
6972 if (member_access_only_p)
6973 return is_member_access
6974 ? postfix_expression
6975 : cp_expr (error_mark_node);
6976 else
6977 return postfix_expression;
6978 }
6979 }
6980
6981 /* We should never get here. */
6982 gcc_unreachable ();
6983 return error_mark_node;
6984 }
6985
6986 /* This function parses Cilk Plus array notations. If a normal array expr. is
6987 parsed then the array index is passed back to the caller through *INIT_INDEX
6988 and the function returns a NULL_TREE. If array notation expr. is parsed,
6989 then *INIT_INDEX is ignored by the caller and the function returns
6990 a tree of type ARRAY_NOTATION_REF. If some error occurred it returns
6991 error_mark_node. */
6992
6993 static tree
6994 cp_parser_array_notation (location_t loc, cp_parser *parser, tree *init_index,
6995 tree array_value)
6996 {
6997 cp_token *token = NULL;
6998 tree length_index, stride = NULL_TREE, value_tree, array_type;
6999 if (!array_value || array_value == error_mark_node)
7000 {
7001 cp_parser_skip_to_end_of_statement (parser);
7002 return error_mark_node;
7003 }
7004
7005 array_type = TREE_TYPE (array_value);
7006
7007 bool saved_colon_corrects = parser->colon_corrects_to_scope_p;
7008 parser->colon_corrects_to_scope_p = false;
7009 token = cp_lexer_peek_token (parser->lexer);
7010
7011 if (!token)
7012 {
7013 cp_parser_error (parser, "expected %<:%> or numeral");
7014 return error_mark_node;
7015 }
7016 else if (token->type == CPP_COLON)
7017 {
7018 /* Consume the ':'. */
7019 cp_lexer_consume_token (parser->lexer);
7020
7021 /* If we are here, then we have a case like this A[:]. */
7022 if (cp_lexer_peek_token (parser->lexer)->type != CPP_CLOSE_SQUARE)
7023 {
7024 cp_parser_error (parser, "expected %<]%>");
7025 cp_parser_skip_to_end_of_statement (parser);
7026 return error_mark_node;
7027 }
7028 *init_index = NULL_TREE;
7029 stride = NULL_TREE;
7030 length_index = NULL_TREE;
7031 }
7032 else
7033 {
7034 /* If we are here, then there are three valid possibilities:
7035 1. ARRAY [ EXP ]
7036 2. ARRAY [ EXP : EXP ]
7037 3. ARRAY [ EXP : EXP : EXP ] */
7038
7039 *init_index = cp_parser_expression (parser);
7040 if (cp_lexer_peek_token (parser->lexer)->type != CPP_COLON)
7041 {
7042 /* This indicates that we have a normal array expression. */
7043 parser->colon_corrects_to_scope_p = saved_colon_corrects;
7044 return NULL_TREE;
7045 }
7046
7047 /* Consume the ':'. */
7048 cp_lexer_consume_token (parser->lexer);
7049 length_index = cp_parser_expression (parser);
7050 if (cp_lexer_peek_token (parser->lexer)->type == CPP_COLON)
7051 {
7052 cp_lexer_consume_token (parser->lexer);
7053 stride = cp_parser_expression (parser);
7054 }
7055 }
7056 parser->colon_corrects_to_scope_p = saved_colon_corrects;
7057
7058 if (*init_index == error_mark_node || length_index == error_mark_node
7059 || stride == error_mark_node || array_type == error_mark_node)
7060 {
7061 if (cp_lexer_peek_token (parser->lexer)->type == CPP_CLOSE_SQUARE)
7062 cp_lexer_consume_token (parser->lexer);
7063 return error_mark_node;
7064 }
7065 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
7066
7067 value_tree = build_array_notation_ref (loc, array_value, *init_index,
7068 length_index, stride, array_type);
7069 return value_tree;
7070 }
7071
7072 /* A subroutine of cp_parser_postfix_expression that also gets hijacked
7073 by cp_parser_builtin_offsetof. We're looking for
7074
7075 postfix-expression [ expression ]
7076 postfix-expression [ braced-init-list ] (C++11)
7077
7078 FOR_OFFSETOF is set if we're being called in that context, which
7079 changes how we deal with integer constant expressions. */
7080
7081 static tree
7082 cp_parser_postfix_open_square_expression (cp_parser *parser,
7083 tree postfix_expression,
7084 bool for_offsetof,
7085 bool decltype_p)
7086 {
7087 tree index = NULL_TREE;
7088 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
7089 bool saved_greater_than_is_operator_p;
7090
7091 /* Consume the `[' token. */
7092 cp_lexer_consume_token (parser->lexer);
7093
7094 saved_greater_than_is_operator_p = parser->greater_than_is_operator_p;
7095 parser->greater_than_is_operator_p = true;
7096
7097 /* Parse the index expression. */
7098 /* ??? For offsetof, there is a question of what to allow here. If
7099 offsetof is not being used in an integral constant expression context,
7100 then we *could* get the right answer by computing the value at runtime.
7101 If we are in an integral constant expression context, then we might
7102 could accept any constant expression; hard to say without analysis.
7103 Rather than open the barn door too wide right away, allow only integer
7104 constant expressions here. */
7105 if (for_offsetof)
7106 index = cp_parser_constant_expression (parser);
7107 else
7108 {
7109 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
7110 {
7111 bool expr_nonconst_p;
7112 cp_lexer_set_source_position (parser->lexer);
7113 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
7114 index = cp_parser_braced_list (parser, &expr_nonconst_p);
7115 if (flag_cilkplus
7116 && cp_lexer_peek_token (parser->lexer)->type == CPP_COLON)
7117 {
7118 error_at (cp_lexer_peek_token (parser->lexer)->location,
7119 "braced list index is not allowed with array "
7120 "notation");
7121 cp_parser_skip_to_end_of_statement (parser);
7122 return error_mark_node;
7123 }
7124 }
7125 else if (flag_cilkplus)
7126 {
7127 /* Here are have these two options:
7128 ARRAY[EXP : EXP] - Array notation expr with default
7129 stride of 1.
7130 ARRAY[EXP : EXP : EXP] - Array Notation with user-defined
7131 stride. */
7132 tree an_exp = cp_parser_array_notation (loc, parser, &index,
7133 postfix_expression);
7134 if (an_exp)
7135 return an_exp;
7136 }
7137 else
7138 index = cp_parser_expression (parser);
7139 }
7140
7141 parser->greater_than_is_operator_p = saved_greater_than_is_operator_p;
7142
7143 /* Look for the closing `]'. */
7144 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
7145
7146 /* Build the ARRAY_REF. */
7147 postfix_expression = grok_array_decl (loc, postfix_expression,
7148 index, decltype_p);
7149
7150 /* When not doing offsetof, array references are not permitted in
7151 constant-expressions. */
7152 if (!for_offsetof
7153 && (cp_parser_non_integral_constant_expression (parser, NIC_ARRAY_REF)))
7154 postfix_expression = error_mark_node;
7155
7156 return postfix_expression;
7157 }
7158
7159 /* A subroutine of cp_parser_postfix_expression that also gets hijacked
7160 by cp_parser_builtin_offsetof. We're looking for
7161
7162 postfix-expression . template [opt] id-expression
7163 postfix-expression . pseudo-destructor-name
7164 postfix-expression -> template [opt] id-expression
7165 postfix-expression -> pseudo-destructor-name
7166
7167 FOR_OFFSETOF is set if we're being called in that context. That sorta
7168 limits what of the above we'll actually accept, but nevermind.
7169 TOKEN_TYPE is the "." or "->" token, which will already have been
7170 removed from the stream. */
7171
7172 static tree
7173 cp_parser_postfix_dot_deref_expression (cp_parser *parser,
7174 enum cpp_ttype token_type,
7175 cp_expr postfix_expression,
7176 bool for_offsetof, cp_id_kind *idk,
7177 location_t location)
7178 {
7179 tree name;
7180 bool dependent_p;
7181 bool pseudo_destructor_p;
7182 tree scope = NULL_TREE;
7183 location_t start_loc = postfix_expression.get_start ();
7184
7185 /* If this is a `->' operator, dereference the pointer. */
7186 if (token_type == CPP_DEREF)
7187 postfix_expression = build_x_arrow (location, postfix_expression,
7188 tf_warning_or_error);
7189 /* Check to see whether or not the expression is type-dependent and
7190 not the current instantiation. */
7191 dependent_p = type_dependent_object_expression_p (postfix_expression);
7192 /* The identifier following the `->' or `.' is not qualified. */
7193 parser->scope = NULL_TREE;
7194 parser->qualifying_scope = NULL_TREE;
7195 parser->object_scope = NULL_TREE;
7196 *idk = CP_ID_KIND_NONE;
7197
7198 /* Enter the scope corresponding to the type of the object
7199 given by the POSTFIX_EXPRESSION. */
7200 if (!dependent_p && TREE_TYPE (postfix_expression) != NULL_TREE)
7201 {
7202 scope = TREE_TYPE (postfix_expression);
7203 /* According to the standard, no expression should ever have
7204 reference type. Unfortunately, we do not currently match
7205 the standard in this respect in that our internal representation
7206 of an expression may have reference type even when the standard
7207 says it does not. Therefore, we have to manually obtain the
7208 underlying type here. */
7209 scope = non_reference (scope);
7210 /* The type of the POSTFIX_EXPRESSION must be complete. */
7211 /* Unlike the object expression in other contexts, *this is not
7212 required to be of complete type for purposes of class member
7213 access (5.2.5) outside the member function body. */
7214 if (postfix_expression != current_class_ref
7215 && !(processing_template_decl
7216 && current_class_type
7217 && (same_type_ignoring_top_level_qualifiers_p
7218 (scope, current_class_type))))
7219 scope = complete_type_or_else (scope, postfix_expression);
7220 /* Let the name lookup machinery know that we are processing a
7221 class member access expression. */
7222 parser->context->object_type = scope;
7223 /* If something went wrong, we want to be able to discern that case,
7224 as opposed to the case where there was no SCOPE due to the type
7225 of expression being dependent. */
7226 if (!scope)
7227 scope = error_mark_node;
7228 /* If the SCOPE was erroneous, make the various semantic analysis
7229 functions exit quickly -- and without issuing additional error
7230 messages. */
7231 if (scope == error_mark_node)
7232 postfix_expression = error_mark_node;
7233 }
7234 else
7235 /* Tell cp_parser_lookup_name that there was an object, even though it's
7236 type-dependent. */
7237 parser->context->object_type = unknown_type_node;
7238
7239 /* Assume this expression is not a pseudo-destructor access. */
7240 pseudo_destructor_p = false;
7241
7242 /* If the SCOPE is a scalar type, then, if this is a valid program,
7243 we must be looking at a pseudo-destructor-name. If POSTFIX_EXPRESSION
7244 is type dependent, it can be pseudo-destructor-name or something else.
7245 Try to parse it as pseudo-destructor-name first. */
7246 if ((scope && SCALAR_TYPE_P (scope)) || dependent_p)
7247 {
7248 tree s;
7249 tree type;
7250
7251 cp_parser_parse_tentatively (parser);
7252 /* Parse the pseudo-destructor-name. */
7253 s = NULL_TREE;
7254 cp_parser_pseudo_destructor_name (parser, postfix_expression,
7255 &s, &type);
7256 if (dependent_p
7257 && (cp_parser_error_occurred (parser)
7258 || !SCALAR_TYPE_P (type)))
7259 cp_parser_abort_tentative_parse (parser);
7260 else if (cp_parser_parse_definitely (parser))
7261 {
7262 pseudo_destructor_p = true;
7263 postfix_expression
7264 = finish_pseudo_destructor_expr (postfix_expression,
7265 s, type, location);
7266 }
7267 }
7268
7269 if (!pseudo_destructor_p)
7270 {
7271 /* If the SCOPE is not a scalar type, we are looking at an
7272 ordinary class member access expression, rather than a
7273 pseudo-destructor-name. */
7274 bool template_p;
7275 cp_token *token = cp_lexer_peek_token (parser->lexer);
7276 /* Parse the id-expression. */
7277 name = (cp_parser_id_expression
7278 (parser,
7279 cp_parser_optional_template_keyword (parser),
7280 /*check_dependency_p=*/true,
7281 &template_p,
7282 /*declarator_p=*/false,
7283 /*optional_p=*/false));
7284 /* In general, build a SCOPE_REF if the member name is qualified.
7285 However, if the name was not dependent and has already been
7286 resolved; there is no need to build the SCOPE_REF. For example;
7287
7288 struct X { void f(); };
7289 template <typename T> void f(T* t) { t->X::f(); }
7290
7291 Even though "t" is dependent, "X::f" is not and has been resolved
7292 to a BASELINK; there is no need to include scope information. */
7293
7294 /* But we do need to remember that there was an explicit scope for
7295 virtual function calls. */
7296 if (parser->scope)
7297 *idk = CP_ID_KIND_QUALIFIED;
7298
7299 /* If the name is a template-id that names a type, we will get a
7300 TYPE_DECL here. That is invalid code. */
7301 if (TREE_CODE (name) == TYPE_DECL)
7302 {
7303 error_at (token->location, "invalid use of %qD", name);
7304 postfix_expression = error_mark_node;
7305 }
7306 else
7307 {
7308 if (name != error_mark_node && !BASELINK_P (name) && parser->scope)
7309 {
7310 if (TREE_CODE (parser->scope) == NAMESPACE_DECL)
7311 {
7312 error_at (token->location, "%<%D::%D%> is not a class member",
7313 parser->scope, name);
7314 postfix_expression = error_mark_node;
7315 }
7316 else
7317 name = build_qualified_name (/*type=*/NULL_TREE,
7318 parser->scope,
7319 name,
7320 template_p);
7321 parser->scope = NULL_TREE;
7322 parser->qualifying_scope = NULL_TREE;
7323 parser->object_scope = NULL_TREE;
7324 }
7325 if (parser->scope && name && BASELINK_P (name))
7326 adjust_result_of_qualified_name_lookup
7327 (name, parser->scope, scope);
7328 postfix_expression
7329 = finish_class_member_access_expr (postfix_expression, name,
7330 template_p,
7331 tf_warning_or_error);
7332 /* Build a location e.g.:
7333 ptr->access_expr
7334 ~~~^~~~~~~~~~~~~
7335 where the caret is at the deref token, ranging from
7336 the start of postfix_expression to the end of the access expr. */
7337 location_t end_loc
7338 = get_finish (cp_lexer_previous_token (parser->lexer)->location);
7339 location_t combined_loc
7340 = make_location (input_location, start_loc, end_loc);
7341 protected_set_expr_location (postfix_expression, combined_loc);
7342 }
7343 }
7344
7345 /* We no longer need to look up names in the scope of the object on
7346 the left-hand side of the `.' or `->' operator. */
7347 parser->context->object_type = NULL_TREE;
7348
7349 /* Outside of offsetof, these operators may not appear in
7350 constant-expressions. */
7351 if (!for_offsetof
7352 && (cp_parser_non_integral_constant_expression
7353 (parser, token_type == CPP_DEREF ? NIC_ARROW : NIC_POINT)))
7354 postfix_expression = error_mark_node;
7355
7356 return postfix_expression;
7357 }
7358
7359 /* Parse a parenthesized expression-list.
7360
7361 expression-list:
7362 assignment-expression
7363 expression-list, assignment-expression
7364
7365 attribute-list:
7366 expression-list
7367 identifier
7368 identifier, expression-list
7369
7370 CAST_P is true if this expression is the target of a cast.
7371
7372 ALLOW_EXPANSION_P is true if this expression allows expansion of an
7373 argument pack.
7374
7375 Returns a vector of trees. Each element is a representation of an
7376 assignment-expression. NULL is returned if the ( and or ) are
7377 missing. An empty, but allocated, vector is returned on no
7378 expressions. The parentheses are eaten. IS_ATTRIBUTE_LIST is id_attr
7379 if we are parsing an attribute list for an attribute that wants a
7380 plain identifier argument, normal_attr for an attribute that wants
7381 an expression, or non_attr if we aren't parsing an attribute list. If
7382 NON_CONSTANT_P is non-NULL, *NON_CONSTANT_P indicates whether or
7383 not all of the expressions in the list were constant.
7384 If CLOSE_PAREN_LOC is non-NULL, and no errors occur, then *CLOSE_PAREN_LOC
7385 will be written to with the location of the closing parenthesis. If
7386 an error occurs, it may or may not be written to. */
7387
7388 static vec<tree, va_gc> *
7389 cp_parser_parenthesized_expression_list (cp_parser* parser,
7390 int is_attribute_list,
7391 bool cast_p,
7392 bool allow_expansion_p,
7393 bool *non_constant_p,
7394 location_t *close_paren_loc)
7395 {
7396 vec<tree, va_gc> *expression_list;
7397 bool fold_expr_p = is_attribute_list != non_attr;
7398 tree identifier = NULL_TREE;
7399 bool saved_greater_than_is_operator_p;
7400
7401 /* Assume all the expressions will be constant. */
7402 if (non_constant_p)
7403 *non_constant_p = false;
7404
7405 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
7406 return NULL;
7407
7408 expression_list = make_tree_vector ();
7409
7410 /* Within a parenthesized expression, a `>' token is always
7411 the greater-than operator. */
7412 saved_greater_than_is_operator_p
7413 = parser->greater_than_is_operator_p;
7414 parser->greater_than_is_operator_p = true;
7415
7416 /* Consume expressions until there are no more. */
7417 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN))
7418 while (true)
7419 {
7420 tree expr;
7421
7422 /* At the beginning of attribute lists, check to see if the
7423 next token is an identifier. */
7424 if (is_attribute_list == id_attr
7425 && cp_lexer_peek_token (parser->lexer)->type == CPP_NAME)
7426 {
7427 cp_token *token;
7428
7429 /* Consume the identifier. */
7430 token = cp_lexer_consume_token (parser->lexer);
7431 /* Save the identifier. */
7432 identifier = token->u.value;
7433 }
7434 else
7435 {
7436 bool expr_non_constant_p;
7437
7438 /* Parse the next assignment-expression. */
7439 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
7440 {
7441 /* A braced-init-list. */
7442 cp_lexer_set_source_position (parser->lexer);
7443 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
7444 expr = cp_parser_braced_list (parser, &expr_non_constant_p);
7445 if (non_constant_p && expr_non_constant_p)
7446 *non_constant_p = true;
7447 }
7448 else if (non_constant_p)
7449 {
7450 expr = (cp_parser_constant_expression
7451 (parser, /*allow_non_constant_p=*/true,
7452 &expr_non_constant_p));
7453 if (expr_non_constant_p)
7454 *non_constant_p = true;
7455 }
7456 else
7457 expr = cp_parser_assignment_expression (parser, /*pidk=*/NULL,
7458 cast_p);
7459
7460 if (fold_expr_p)
7461 expr = instantiate_non_dependent_expr (expr);
7462
7463 /* If we have an ellipsis, then this is an expression
7464 expansion. */
7465 if (allow_expansion_p
7466 && cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
7467 {
7468 /* Consume the `...'. */
7469 cp_lexer_consume_token (parser->lexer);
7470
7471 /* Build the argument pack. */
7472 expr = make_pack_expansion (expr);
7473 }
7474
7475 /* Add it to the list. We add error_mark_node
7476 expressions to the list, so that we can still tell if
7477 the correct form for a parenthesized expression-list
7478 is found. That gives better errors. */
7479 vec_safe_push (expression_list, expr);
7480
7481 if (expr == error_mark_node)
7482 goto skip_comma;
7483 }
7484
7485 /* After the first item, attribute lists look the same as
7486 expression lists. */
7487 is_attribute_list = non_attr;
7488
7489 get_comma:;
7490 /* If the next token isn't a `,', then we are done. */
7491 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
7492 break;
7493
7494 /* Otherwise, consume the `,' and keep going. */
7495 cp_lexer_consume_token (parser->lexer);
7496 }
7497
7498 if (close_paren_loc)
7499 *close_paren_loc = cp_lexer_peek_token (parser->lexer)->location;
7500
7501 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
7502 {
7503 int ending;
7504
7505 skip_comma:;
7506 /* We try and resync to an unnested comma, as that will give the
7507 user better diagnostics. */
7508 ending = cp_parser_skip_to_closing_parenthesis (parser,
7509 /*recovering=*/true,
7510 /*or_comma=*/true,
7511 /*consume_paren=*/true);
7512 if (ending < 0)
7513 goto get_comma;
7514 if (!ending)
7515 {
7516 parser->greater_than_is_operator_p
7517 = saved_greater_than_is_operator_p;
7518 return NULL;
7519 }
7520 }
7521
7522 parser->greater_than_is_operator_p
7523 = saved_greater_than_is_operator_p;
7524
7525 if (identifier)
7526 vec_safe_insert (expression_list, 0, identifier);
7527
7528 return expression_list;
7529 }
7530
7531 /* Parse a pseudo-destructor-name.
7532
7533 pseudo-destructor-name:
7534 :: [opt] nested-name-specifier [opt] type-name :: ~ type-name
7535 :: [opt] nested-name-specifier template template-id :: ~ type-name
7536 :: [opt] nested-name-specifier [opt] ~ type-name
7537
7538 If either of the first two productions is used, sets *SCOPE to the
7539 TYPE specified before the final `::'. Otherwise, *SCOPE is set to
7540 NULL_TREE. *TYPE is set to the TYPE_DECL for the final type-name,
7541 or ERROR_MARK_NODE if the parse fails. */
7542
7543 static void
7544 cp_parser_pseudo_destructor_name (cp_parser* parser,
7545 tree object,
7546 tree* scope,
7547 tree* type)
7548 {
7549 bool nested_name_specifier_p;
7550
7551 /* Handle ~auto. */
7552 if (cp_lexer_next_token_is (parser->lexer, CPP_COMPL)
7553 && cp_lexer_nth_token_is_keyword (parser->lexer, 2, RID_AUTO)
7554 && !type_dependent_expression_p (object))
7555 {
7556 if (cxx_dialect < cxx14)
7557 pedwarn (input_location, 0,
7558 "%<~auto%> only available with "
7559 "-std=c++14 or -std=gnu++14");
7560 cp_lexer_consume_token (parser->lexer);
7561 cp_lexer_consume_token (parser->lexer);
7562 *scope = NULL_TREE;
7563 *type = TREE_TYPE (object);
7564 return;
7565 }
7566
7567 /* Assume that things will not work out. */
7568 *type = error_mark_node;
7569
7570 /* Look for the optional `::' operator. */
7571 cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/true);
7572 /* Look for the optional nested-name-specifier. */
7573 nested_name_specifier_p
7574 = (cp_parser_nested_name_specifier_opt (parser,
7575 /*typename_keyword_p=*/false,
7576 /*check_dependency_p=*/true,
7577 /*type_p=*/false,
7578 /*is_declaration=*/false)
7579 != NULL_TREE);
7580 /* Now, if we saw a nested-name-specifier, we might be doing the
7581 second production. */
7582 if (nested_name_specifier_p
7583 && cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
7584 {
7585 /* Consume the `template' keyword. */
7586 cp_lexer_consume_token (parser->lexer);
7587 /* Parse the template-id. */
7588 cp_parser_template_id (parser,
7589 /*template_keyword_p=*/true,
7590 /*check_dependency_p=*/false,
7591 class_type,
7592 /*is_declaration=*/true);
7593 /* Look for the `::' token. */
7594 cp_parser_require (parser, CPP_SCOPE, RT_SCOPE);
7595 }
7596 /* If the next token is not a `~', then there might be some
7597 additional qualification. */
7598 else if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMPL))
7599 {
7600 /* At this point, we're looking for "type-name :: ~". The type-name
7601 must not be a class-name, since this is a pseudo-destructor. So,
7602 it must be either an enum-name, or a typedef-name -- both of which
7603 are just identifiers. So, we peek ahead to check that the "::"
7604 and "~" tokens are present; if they are not, then we can avoid
7605 calling type_name. */
7606 if (cp_lexer_peek_token (parser->lexer)->type != CPP_NAME
7607 || cp_lexer_peek_nth_token (parser->lexer, 2)->type != CPP_SCOPE
7608 || cp_lexer_peek_nth_token (parser->lexer, 3)->type != CPP_COMPL)
7609 {
7610 cp_parser_error (parser, "non-scalar type");
7611 return;
7612 }
7613
7614 /* Look for the type-name. */
7615 *scope = TREE_TYPE (cp_parser_nonclass_name (parser));
7616 if (*scope == error_mark_node)
7617 return;
7618
7619 /* Look for the `::' token. */
7620 cp_parser_require (parser, CPP_SCOPE, RT_SCOPE);
7621 }
7622 else
7623 *scope = NULL_TREE;
7624
7625 /* Look for the `~'. */
7626 cp_parser_require (parser, CPP_COMPL, RT_COMPL);
7627
7628 /* Once we see the ~, this has to be a pseudo-destructor. */
7629 if (!processing_template_decl && !cp_parser_error_occurred (parser))
7630 cp_parser_commit_to_topmost_tentative_parse (parser);
7631
7632 /* Look for the type-name again. We are not responsible for
7633 checking that it matches the first type-name. */
7634 *type = TREE_TYPE (cp_parser_nonclass_name (parser));
7635 }
7636
7637 /* Parse a unary-expression.
7638
7639 unary-expression:
7640 postfix-expression
7641 ++ cast-expression
7642 -- cast-expression
7643 unary-operator cast-expression
7644 sizeof unary-expression
7645 sizeof ( type-id )
7646 alignof ( type-id ) [C++0x]
7647 new-expression
7648 delete-expression
7649
7650 GNU Extensions:
7651
7652 unary-expression:
7653 __extension__ cast-expression
7654 __alignof__ unary-expression
7655 __alignof__ ( type-id )
7656 alignof unary-expression [C++0x]
7657 __real__ cast-expression
7658 __imag__ cast-expression
7659 && identifier
7660 sizeof ( type-id ) { initializer-list , [opt] }
7661 alignof ( type-id ) { initializer-list , [opt] } [C++0x]
7662 __alignof__ ( type-id ) { initializer-list , [opt] }
7663
7664 ADDRESS_P is true iff the unary-expression is appearing as the
7665 operand of the `&' operator. CAST_P is true if this expression is
7666 the target of a cast.
7667
7668 Returns a representation of the expression. */
7669
7670 static cp_expr
7671 cp_parser_unary_expression (cp_parser *parser, cp_id_kind * pidk,
7672 bool address_p, bool cast_p, bool decltype_p)
7673 {
7674 cp_token *token;
7675 enum tree_code unary_operator;
7676
7677 /* Peek at the next token. */
7678 token = cp_lexer_peek_token (parser->lexer);
7679 /* Some keywords give away the kind of expression. */
7680 if (token->type == CPP_KEYWORD)
7681 {
7682 enum rid keyword = token->keyword;
7683
7684 switch (keyword)
7685 {
7686 case RID_ALIGNOF:
7687 case RID_SIZEOF:
7688 {
7689 tree operand, ret;
7690 enum tree_code op;
7691 location_t first_loc;
7692
7693 op = keyword == RID_ALIGNOF ? ALIGNOF_EXPR : SIZEOF_EXPR;
7694 /* Consume the token. */
7695 cp_lexer_consume_token (parser->lexer);
7696 first_loc = cp_lexer_peek_token (parser->lexer)->location;
7697 /* Parse the operand. */
7698 operand = cp_parser_sizeof_operand (parser, keyword);
7699
7700 if (TYPE_P (operand))
7701 ret = cxx_sizeof_or_alignof_type (operand, op, true);
7702 else
7703 {
7704 /* ISO C++ defines alignof only with types, not with
7705 expressions. So pedwarn if alignof is used with a non-
7706 type expression. However, __alignof__ is ok. */
7707 if (!strcmp (IDENTIFIER_POINTER (token->u.value), "alignof"))
7708 pedwarn (token->location, OPT_Wpedantic,
7709 "ISO C++ does not allow %<alignof%> "
7710 "with a non-type");
7711
7712 ret = cxx_sizeof_or_alignof_expr (operand, op, true);
7713 }
7714 /* For SIZEOF_EXPR, just issue diagnostics, but keep
7715 SIZEOF_EXPR with the original operand. */
7716 if (op == SIZEOF_EXPR && ret != error_mark_node)
7717 {
7718 if (TREE_CODE (ret) != SIZEOF_EXPR || TYPE_P (operand))
7719 {
7720 if (!processing_template_decl && TYPE_P (operand))
7721 {
7722 ret = build_min (SIZEOF_EXPR, size_type_node,
7723 build1 (NOP_EXPR, operand,
7724 error_mark_node));
7725 SIZEOF_EXPR_TYPE_P (ret) = 1;
7726 }
7727 else
7728 ret = build_min (SIZEOF_EXPR, size_type_node, operand);
7729 TREE_SIDE_EFFECTS (ret) = 0;
7730 TREE_READONLY (ret) = 1;
7731 }
7732 SET_EXPR_LOCATION (ret, first_loc);
7733 }
7734 return ret;
7735 }
7736
7737 case RID_NEW:
7738 return cp_parser_new_expression (parser);
7739
7740 case RID_DELETE:
7741 return cp_parser_delete_expression (parser);
7742
7743 case RID_EXTENSION:
7744 {
7745 /* The saved value of the PEDANTIC flag. */
7746 int saved_pedantic;
7747 tree expr;
7748
7749 /* Save away the PEDANTIC flag. */
7750 cp_parser_extension_opt (parser, &saved_pedantic);
7751 /* Parse the cast-expression. */
7752 expr = cp_parser_simple_cast_expression (parser);
7753 /* Restore the PEDANTIC flag. */
7754 pedantic = saved_pedantic;
7755
7756 return expr;
7757 }
7758
7759 case RID_REALPART:
7760 case RID_IMAGPART:
7761 {
7762 tree expression;
7763
7764 /* Consume the `__real__' or `__imag__' token. */
7765 cp_lexer_consume_token (parser->lexer);
7766 /* Parse the cast-expression. */
7767 expression = cp_parser_simple_cast_expression (parser);
7768 /* Create the complete representation. */
7769 return build_x_unary_op (token->location,
7770 (keyword == RID_REALPART
7771 ? REALPART_EXPR : IMAGPART_EXPR),
7772 expression,
7773 tf_warning_or_error);
7774 }
7775 break;
7776
7777 case RID_TRANSACTION_ATOMIC:
7778 case RID_TRANSACTION_RELAXED:
7779 return cp_parser_transaction_expression (parser, keyword);
7780
7781 case RID_NOEXCEPT:
7782 {
7783 tree expr;
7784 const char *saved_message;
7785 bool saved_integral_constant_expression_p;
7786 bool saved_non_integral_constant_expression_p;
7787 bool saved_greater_than_is_operator_p;
7788
7789 cp_lexer_consume_token (parser->lexer);
7790 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
7791
7792 saved_message = parser->type_definition_forbidden_message;
7793 parser->type_definition_forbidden_message
7794 = G_("types may not be defined in %<noexcept%> expressions");
7795
7796 saved_integral_constant_expression_p
7797 = parser->integral_constant_expression_p;
7798 saved_non_integral_constant_expression_p
7799 = parser->non_integral_constant_expression_p;
7800 parser->integral_constant_expression_p = false;
7801
7802 saved_greater_than_is_operator_p
7803 = parser->greater_than_is_operator_p;
7804 parser->greater_than_is_operator_p = true;
7805
7806 ++cp_unevaluated_operand;
7807 ++c_inhibit_evaluation_warnings;
7808 ++cp_noexcept_operand;
7809 expr = cp_parser_expression (parser);
7810 --cp_noexcept_operand;
7811 --c_inhibit_evaluation_warnings;
7812 --cp_unevaluated_operand;
7813
7814 parser->greater_than_is_operator_p
7815 = saved_greater_than_is_operator_p;
7816
7817 parser->integral_constant_expression_p
7818 = saved_integral_constant_expression_p;
7819 parser->non_integral_constant_expression_p
7820 = saved_non_integral_constant_expression_p;
7821
7822 parser->type_definition_forbidden_message = saved_message;
7823
7824 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
7825 return finish_noexcept_expr (expr, tf_warning_or_error);
7826 }
7827
7828 default:
7829 break;
7830 }
7831 }
7832
7833 /* Look for the `:: new' and `:: delete', which also signal the
7834 beginning of a new-expression, or delete-expression,
7835 respectively. If the next token is `::', then it might be one of
7836 these. */
7837 if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
7838 {
7839 enum rid keyword;
7840
7841 /* See if the token after the `::' is one of the keywords in
7842 which we're interested. */
7843 keyword = cp_lexer_peek_nth_token (parser->lexer, 2)->keyword;
7844 /* If it's `new', we have a new-expression. */
7845 if (keyword == RID_NEW)
7846 return cp_parser_new_expression (parser);
7847 /* Similarly, for `delete'. */
7848 else if (keyword == RID_DELETE)
7849 return cp_parser_delete_expression (parser);
7850 }
7851
7852 /* Look for a unary operator. */
7853 unary_operator = cp_parser_unary_operator (token);
7854 /* The `++' and `--' operators can be handled similarly, even though
7855 they are not technically unary-operators in the grammar. */
7856 if (unary_operator == ERROR_MARK)
7857 {
7858 if (token->type == CPP_PLUS_PLUS)
7859 unary_operator = PREINCREMENT_EXPR;
7860 else if (token->type == CPP_MINUS_MINUS)
7861 unary_operator = PREDECREMENT_EXPR;
7862 /* Handle the GNU address-of-label extension. */
7863 else if (cp_parser_allow_gnu_extensions_p (parser)
7864 && token->type == CPP_AND_AND)
7865 {
7866 tree identifier;
7867 tree expression;
7868 location_t start_loc = token->location;
7869
7870 /* Consume the '&&' token. */
7871 cp_lexer_consume_token (parser->lexer);
7872 /* Look for the identifier. */
7873 location_t finish_loc
7874 = get_finish (cp_lexer_peek_token (parser->lexer)->location);
7875 identifier = cp_parser_identifier (parser);
7876 /* Construct a location of the form:
7877 &&label
7878 ^~~~~~~
7879 with caret==start at the "&&", finish at the end of the label. */
7880 location_t combined_loc
7881 = make_location (start_loc, start_loc, finish_loc);
7882 /* Create an expression representing the address. */
7883 expression = finish_label_address_expr (identifier, combined_loc);
7884 if (cp_parser_non_integral_constant_expression (parser,
7885 NIC_ADDR_LABEL))
7886 expression = error_mark_node;
7887 return expression;
7888 }
7889 }
7890 if (unary_operator != ERROR_MARK)
7891 {
7892 cp_expr cast_expression;
7893 cp_expr expression = error_mark_node;
7894 non_integral_constant non_constant_p = NIC_NONE;
7895 location_t loc = token->location;
7896 tsubst_flags_t complain = complain_flags (decltype_p);
7897
7898 /* Consume the operator token. */
7899 token = cp_lexer_consume_token (parser->lexer);
7900 enum cpp_ttype op_ttype = cp_lexer_peek_token (parser->lexer)->type;
7901
7902 /* Parse the cast-expression. */
7903 cast_expression
7904 = cp_parser_cast_expression (parser,
7905 unary_operator == ADDR_EXPR,
7906 /*cast_p=*/false,
7907 /*decltype*/false,
7908 pidk);
7909
7910 /* Make a location:
7911 OP_TOKEN CAST_EXPRESSION
7912 ^~~~~~~~~~~~~~~~~~~~~~~~~
7913 with start==caret at the operator token, and
7914 extending to the end of the cast_expression. */
7915 loc = make_location (loc, loc, cast_expression.get_finish ());
7916
7917 /* Now, build an appropriate representation. */
7918 switch (unary_operator)
7919 {
7920 case INDIRECT_REF:
7921 non_constant_p = NIC_STAR;
7922 expression = build_x_indirect_ref (loc, cast_expression,
7923 RO_UNARY_STAR,
7924 complain);
7925 /* TODO: build_x_indirect_ref does not always honor the
7926 location, so ensure it is set. */
7927 expression.set_location (loc);
7928 break;
7929
7930 case ADDR_EXPR:
7931 non_constant_p = NIC_ADDR;
7932 /* Fall through. */
7933 case BIT_NOT_EXPR:
7934 expression = build_x_unary_op (loc, unary_operator,
7935 cast_expression,
7936 complain);
7937 /* TODO: build_x_unary_op does not always honor the location,
7938 so ensure it is set. */
7939 expression.set_location (loc);
7940 break;
7941
7942 case PREINCREMENT_EXPR:
7943 case PREDECREMENT_EXPR:
7944 non_constant_p = unary_operator == PREINCREMENT_EXPR
7945 ? NIC_PREINCREMENT : NIC_PREDECREMENT;
7946 /* Fall through. */
7947 case NEGATE_EXPR:
7948 /* Immediately fold negation of a constant, unless the constant is 0
7949 (since -0 == 0) or it would overflow. */
7950 if (unary_operator == NEGATE_EXPR && op_ttype == CPP_NUMBER
7951 && CONSTANT_CLASS_P (cast_expression)
7952 && !integer_zerop (cast_expression)
7953 && !TREE_OVERFLOW (cast_expression))
7954 {
7955 tree folded = fold_build1 (unary_operator,
7956 TREE_TYPE (cast_expression),
7957 cast_expression);
7958 if (CONSTANT_CLASS_P (folded) && !TREE_OVERFLOW (folded))
7959 {
7960 expression = cp_expr (folded, loc);
7961 break;
7962 }
7963 }
7964 /* Fall through. */
7965 case UNARY_PLUS_EXPR:
7966 case TRUTH_NOT_EXPR:
7967 expression = finish_unary_op_expr (loc, unary_operator,
7968 cast_expression, complain);
7969 break;
7970
7971 default:
7972 gcc_unreachable ();
7973 }
7974
7975 if (non_constant_p != NIC_NONE
7976 && cp_parser_non_integral_constant_expression (parser,
7977 non_constant_p))
7978 expression = error_mark_node;
7979
7980 return expression;
7981 }
7982
7983 return cp_parser_postfix_expression (parser, address_p, cast_p,
7984 /*member_access_only_p=*/false,
7985 decltype_p,
7986 pidk);
7987 }
7988
7989 /* Returns ERROR_MARK if TOKEN is not a unary-operator. If TOKEN is a
7990 unary-operator, the corresponding tree code is returned. */
7991
7992 static enum tree_code
7993 cp_parser_unary_operator (cp_token* token)
7994 {
7995 switch (token->type)
7996 {
7997 case CPP_MULT:
7998 return INDIRECT_REF;
7999
8000 case CPP_AND:
8001 return ADDR_EXPR;
8002
8003 case CPP_PLUS:
8004 return UNARY_PLUS_EXPR;
8005
8006 case CPP_MINUS:
8007 return NEGATE_EXPR;
8008
8009 case CPP_NOT:
8010 return TRUTH_NOT_EXPR;
8011
8012 case CPP_COMPL:
8013 return BIT_NOT_EXPR;
8014
8015 default:
8016 return ERROR_MARK;
8017 }
8018 }
8019
8020 /* Parse a new-expression.
8021
8022 new-expression:
8023 :: [opt] new new-placement [opt] new-type-id new-initializer [opt]
8024 :: [opt] new new-placement [opt] ( type-id ) new-initializer [opt]
8025
8026 Returns a representation of the expression. */
8027
8028 static tree
8029 cp_parser_new_expression (cp_parser* parser)
8030 {
8031 bool global_scope_p;
8032 vec<tree, va_gc> *placement;
8033 tree type;
8034 vec<tree, va_gc> *initializer;
8035 tree nelts = NULL_TREE;
8036 tree ret;
8037
8038 location_t start_loc = cp_lexer_peek_token (parser->lexer)->location;
8039
8040 /* Look for the optional `::' operator. */
8041 global_scope_p
8042 = (cp_parser_global_scope_opt (parser,
8043 /*current_scope_valid_p=*/false)
8044 != NULL_TREE);
8045 /* Look for the `new' operator. */
8046 cp_parser_require_keyword (parser, RID_NEW, RT_NEW);
8047 /* There's no easy way to tell a new-placement from the
8048 `( type-id )' construct. */
8049 cp_parser_parse_tentatively (parser);
8050 /* Look for a new-placement. */
8051 placement = cp_parser_new_placement (parser);
8052 /* If that didn't work out, there's no new-placement. */
8053 if (!cp_parser_parse_definitely (parser))
8054 {
8055 if (placement != NULL)
8056 release_tree_vector (placement);
8057 placement = NULL;
8058 }
8059
8060 /* If the next token is a `(', then we have a parenthesized
8061 type-id. */
8062 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
8063 {
8064 cp_token *token;
8065 const char *saved_message = parser->type_definition_forbidden_message;
8066
8067 /* Consume the `('. */
8068 cp_lexer_consume_token (parser->lexer);
8069
8070 /* Parse the type-id. */
8071 parser->type_definition_forbidden_message
8072 = G_("types may not be defined in a new-expression");
8073 {
8074 type_id_in_expr_sentinel s (parser);
8075 type = cp_parser_type_id (parser);
8076 }
8077 parser->type_definition_forbidden_message = saved_message;
8078
8079 /* Look for the closing `)'. */
8080 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
8081 token = cp_lexer_peek_token (parser->lexer);
8082 /* There should not be a direct-new-declarator in this production,
8083 but GCC used to allowed this, so we check and emit a sensible error
8084 message for this case. */
8085 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
8086 {
8087 error_at (token->location,
8088 "array bound forbidden after parenthesized type-id");
8089 inform (token->location,
8090 "try removing the parentheses around the type-id");
8091 cp_parser_direct_new_declarator (parser);
8092 }
8093 }
8094 /* Otherwise, there must be a new-type-id. */
8095 else
8096 type = cp_parser_new_type_id (parser, &nelts);
8097
8098 /* If the next token is a `(' or '{', then we have a new-initializer. */
8099 cp_token *token = cp_lexer_peek_token (parser->lexer);
8100 if (token->type == CPP_OPEN_PAREN
8101 || token->type == CPP_OPEN_BRACE)
8102 initializer = cp_parser_new_initializer (parser);
8103 else
8104 initializer = NULL;
8105
8106 /* A new-expression may not appear in an integral constant
8107 expression. */
8108 if (cp_parser_non_integral_constant_expression (parser, NIC_NEW))
8109 ret = error_mark_node;
8110 /* 5.3.4/2: "If the auto type-specifier appears in the type-specifier-seq
8111 of a new-type-id or type-id of a new-expression, the new-expression shall
8112 contain a new-initializer of the form ( assignment-expression )".
8113 Additionally, consistently with the spirit of DR 1467, we want to accept
8114 'new auto { 2 }' too. */
8115 else if (type_uses_auto (type)
8116 && (vec_safe_length (initializer) != 1
8117 || (BRACE_ENCLOSED_INITIALIZER_P ((*initializer)[0])
8118 && CONSTRUCTOR_NELTS ((*initializer)[0]) != 1)))
8119 {
8120 error_at (token->location,
8121 "initialization of new-expression for type %<auto%> "
8122 "requires exactly one element");
8123 ret = error_mark_node;
8124 }
8125 else
8126 {
8127 /* Construct a location e.g.:
8128 ptr = new int[100]
8129 ^~~~~~~~~~~~
8130 with caret == start at the start of the "new" token, and the end
8131 at the end of the final token we consumed. */
8132 cp_token *end_tok = cp_lexer_previous_token (parser->lexer);
8133 location_t end_loc = get_finish (end_tok->location);
8134 location_t combined_loc = make_location (start_loc, start_loc, end_loc);
8135
8136 /* Create a representation of the new-expression. */
8137 ret = build_new (&placement, type, nelts, &initializer, global_scope_p,
8138 tf_warning_or_error);
8139 protected_set_expr_location (ret, combined_loc);
8140 }
8141
8142 if (placement != NULL)
8143 release_tree_vector (placement);
8144 if (initializer != NULL)
8145 release_tree_vector (initializer);
8146
8147 return ret;
8148 }
8149
8150 /* Parse a new-placement.
8151
8152 new-placement:
8153 ( expression-list )
8154
8155 Returns the same representation as for an expression-list. */
8156
8157 static vec<tree, va_gc> *
8158 cp_parser_new_placement (cp_parser* parser)
8159 {
8160 vec<tree, va_gc> *expression_list;
8161
8162 /* Parse the expression-list. */
8163 expression_list = (cp_parser_parenthesized_expression_list
8164 (parser, non_attr, /*cast_p=*/false,
8165 /*allow_expansion_p=*/true,
8166 /*non_constant_p=*/NULL));
8167
8168 if (expression_list && expression_list->is_empty ())
8169 error ("expected expression-list or type-id");
8170
8171 return expression_list;
8172 }
8173
8174 /* Parse a new-type-id.
8175
8176 new-type-id:
8177 type-specifier-seq new-declarator [opt]
8178
8179 Returns the TYPE allocated. If the new-type-id indicates an array
8180 type, *NELTS is set to the number of elements in the last array
8181 bound; the TYPE will not include the last array bound. */
8182
8183 static tree
8184 cp_parser_new_type_id (cp_parser* parser, tree *nelts)
8185 {
8186 cp_decl_specifier_seq type_specifier_seq;
8187 cp_declarator *new_declarator;
8188 cp_declarator *declarator;
8189 cp_declarator *outer_declarator;
8190 const char *saved_message;
8191
8192 /* The type-specifier sequence must not contain type definitions.
8193 (It cannot contain declarations of new types either, but if they
8194 are not definitions we will catch that because they are not
8195 complete.) */
8196 saved_message = parser->type_definition_forbidden_message;
8197 parser->type_definition_forbidden_message
8198 = G_("types may not be defined in a new-type-id");
8199 /* Parse the type-specifier-seq. */
8200 cp_parser_type_specifier_seq (parser, /*is_declaration=*/false,
8201 /*is_trailing_return=*/false,
8202 &type_specifier_seq);
8203 /* Restore the old message. */
8204 parser->type_definition_forbidden_message = saved_message;
8205
8206 if (type_specifier_seq.type == error_mark_node)
8207 return error_mark_node;
8208
8209 /* Parse the new-declarator. */
8210 new_declarator = cp_parser_new_declarator_opt (parser);
8211
8212 /* Determine the number of elements in the last array dimension, if
8213 any. */
8214 *nelts = NULL_TREE;
8215 /* Skip down to the last array dimension. */
8216 declarator = new_declarator;
8217 outer_declarator = NULL;
8218 while (declarator && (declarator->kind == cdk_pointer
8219 || declarator->kind == cdk_ptrmem))
8220 {
8221 outer_declarator = declarator;
8222 declarator = declarator->declarator;
8223 }
8224 while (declarator
8225 && declarator->kind == cdk_array
8226 && declarator->declarator
8227 && declarator->declarator->kind == cdk_array)
8228 {
8229 outer_declarator = declarator;
8230 declarator = declarator->declarator;
8231 }
8232
8233 if (declarator && declarator->kind == cdk_array)
8234 {
8235 *nelts = declarator->u.array.bounds;
8236 if (*nelts == error_mark_node)
8237 *nelts = integer_one_node;
8238
8239 if (outer_declarator)
8240 outer_declarator->declarator = declarator->declarator;
8241 else
8242 new_declarator = NULL;
8243 }
8244
8245 return groktypename (&type_specifier_seq, new_declarator, false);
8246 }
8247
8248 /* Parse an (optional) new-declarator.
8249
8250 new-declarator:
8251 ptr-operator new-declarator [opt]
8252 direct-new-declarator
8253
8254 Returns the declarator. */
8255
8256 static cp_declarator *
8257 cp_parser_new_declarator_opt (cp_parser* parser)
8258 {
8259 enum tree_code code;
8260 tree type, std_attributes = NULL_TREE;
8261 cp_cv_quals cv_quals;
8262
8263 /* We don't know if there's a ptr-operator next, or not. */
8264 cp_parser_parse_tentatively (parser);
8265 /* Look for a ptr-operator. */
8266 code = cp_parser_ptr_operator (parser, &type, &cv_quals, &std_attributes);
8267 /* If that worked, look for more new-declarators. */
8268 if (cp_parser_parse_definitely (parser))
8269 {
8270 cp_declarator *declarator;
8271
8272 /* Parse another optional declarator. */
8273 declarator = cp_parser_new_declarator_opt (parser);
8274
8275 declarator = cp_parser_make_indirect_declarator
8276 (code, type, cv_quals, declarator, std_attributes);
8277
8278 return declarator;
8279 }
8280
8281 /* If the next token is a `[', there is a direct-new-declarator. */
8282 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
8283 return cp_parser_direct_new_declarator (parser);
8284
8285 return NULL;
8286 }
8287
8288 /* Parse a direct-new-declarator.
8289
8290 direct-new-declarator:
8291 [ expression ]
8292 direct-new-declarator [constant-expression]
8293
8294 */
8295
8296 static cp_declarator *
8297 cp_parser_direct_new_declarator (cp_parser* parser)
8298 {
8299 cp_declarator *declarator = NULL;
8300
8301 while (true)
8302 {
8303 tree expression;
8304 cp_token *token;
8305
8306 /* Look for the opening `['. */
8307 cp_parser_require (parser, CPP_OPEN_SQUARE, RT_OPEN_SQUARE);
8308
8309 token = cp_lexer_peek_token (parser->lexer);
8310 expression = cp_parser_expression (parser);
8311 /* The standard requires that the expression have integral
8312 type. DR 74 adds enumeration types. We believe that the
8313 real intent is that these expressions be handled like the
8314 expression in a `switch' condition, which also allows
8315 classes with a single conversion to integral or
8316 enumeration type. */
8317 if (!processing_template_decl)
8318 {
8319 expression
8320 = build_expr_type_conversion (WANT_INT | WANT_ENUM,
8321 expression,
8322 /*complain=*/true);
8323 if (!expression)
8324 {
8325 error_at (token->location,
8326 "expression in new-declarator must have integral "
8327 "or enumeration type");
8328 expression = error_mark_node;
8329 }
8330 }
8331
8332 /* Look for the closing `]'. */
8333 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
8334
8335 /* Add this bound to the declarator. */
8336 declarator = make_array_declarator (declarator, expression);
8337
8338 /* If the next token is not a `[', then there are no more
8339 bounds. */
8340 if (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_SQUARE))
8341 break;
8342 }
8343
8344 return declarator;
8345 }
8346
8347 /* Parse a new-initializer.
8348
8349 new-initializer:
8350 ( expression-list [opt] )
8351 braced-init-list
8352
8353 Returns a representation of the expression-list. */
8354
8355 static vec<tree, va_gc> *
8356 cp_parser_new_initializer (cp_parser* parser)
8357 {
8358 vec<tree, va_gc> *expression_list;
8359
8360 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
8361 {
8362 tree t;
8363 bool expr_non_constant_p;
8364 cp_lexer_set_source_position (parser->lexer);
8365 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
8366 t = cp_parser_braced_list (parser, &expr_non_constant_p);
8367 CONSTRUCTOR_IS_DIRECT_INIT (t) = 1;
8368 expression_list = make_tree_vector_single (t);
8369 }
8370 else
8371 expression_list = (cp_parser_parenthesized_expression_list
8372 (parser, non_attr, /*cast_p=*/false,
8373 /*allow_expansion_p=*/true,
8374 /*non_constant_p=*/NULL));
8375
8376 return expression_list;
8377 }
8378
8379 /* Parse a delete-expression.
8380
8381 delete-expression:
8382 :: [opt] delete cast-expression
8383 :: [opt] delete [ ] cast-expression
8384
8385 Returns a representation of the expression. */
8386
8387 static tree
8388 cp_parser_delete_expression (cp_parser* parser)
8389 {
8390 bool global_scope_p;
8391 bool array_p;
8392 tree expression;
8393
8394 /* Look for the optional `::' operator. */
8395 global_scope_p
8396 = (cp_parser_global_scope_opt (parser,
8397 /*current_scope_valid_p=*/false)
8398 != NULL_TREE);
8399 /* Look for the `delete' keyword. */
8400 cp_parser_require_keyword (parser, RID_DELETE, RT_DELETE);
8401 /* See if the array syntax is in use. */
8402 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
8403 {
8404 /* Consume the `[' token. */
8405 cp_lexer_consume_token (parser->lexer);
8406 /* Look for the `]' token. */
8407 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
8408 /* Remember that this is the `[]' construct. */
8409 array_p = true;
8410 }
8411 else
8412 array_p = false;
8413
8414 /* Parse the cast-expression. */
8415 expression = cp_parser_simple_cast_expression (parser);
8416
8417 /* A delete-expression may not appear in an integral constant
8418 expression. */
8419 if (cp_parser_non_integral_constant_expression (parser, NIC_DEL))
8420 return error_mark_node;
8421
8422 return delete_sanity (expression, NULL_TREE, array_p, global_scope_p,
8423 tf_warning_or_error);
8424 }
8425
8426 /* Returns 1 if TOKEN may start a cast-expression and isn't '++', '--',
8427 neither '[' in C++11; -1 if TOKEN is '++', '--', or '[' in C++11;
8428 0 otherwise. */
8429
8430 static int
8431 cp_parser_tokens_start_cast_expression (cp_parser *parser)
8432 {
8433 cp_token *token = cp_lexer_peek_token (parser->lexer);
8434 switch (token->type)
8435 {
8436 case CPP_COMMA:
8437 case CPP_SEMICOLON:
8438 case CPP_QUERY:
8439 case CPP_COLON:
8440 case CPP_CLOSE_SQUARE:
8441 case CPP_CLOSE_PAREN:
8442 case CPP_CLOSE_BRACE:
8443 case CPP_OPEN_BRACE:
8444 case CPP_DOT:
8445 case CPP_DOT_STAR:
8446 case CPP_DEREF:
8447 case CPP_DEREF_STAR:
8448 case CPP_DIV:
8449 case CPP_MOD:
8450 case CPP_LSHIFT:
8451 case CPP_RSHIFT:
8452 case CPP_LESS:
8453 case CPP_GREATER:
8454 case CPP_LESS_EQ:
8455 case CPP_GREATER_EQ:
8456 case CPP_EQ_EQ:
8457 case CPP_NOT_EQ:
8458 case CPP_EQ:
8459 case CPP_MULT_EQ:
8460 case CPP_DIV_EQ:
8461 case CPP_MOD_EQ:
8462 case CPP_PLUS_EQ:
8463 case CPP_MINUS_EQ:
8464 case CPP_RSHIFT_EQ:
8465 case CPP_LSHIFT_EQ:
8466 case CPP_AND_EQ:
8467 case CPP_XOR_EQ:
8468 case CPP_OR_EQ:
8469 case CPP_XOR:
8470 case CPP_OR:
8471 case CPP_OR_OR:
8472 case CPP_EOF:
8473 case CPP_ELLIPSIS:
8474 return 0;
8475
8476 case CPP_OPEN_PAREN:
8477 /* In ((type ()) () the last () isn't a valid cast-expression,
8478 so the whole must be parsed as postfix-expression. */
8479 return cp_lexer_peek_nth_token (parser->lexer, 2)->type
8480 != CPP_CLOSE_PAREN;
8481
8482 case CPP_OPEN_SQUARE:
8483 /* '[' may start a primary-expression in obj-c++ and in C++11,
8484 as a lambda-expression, eg, '(void)[]{}'. */
8485 if (cxx_dialect >= cxx11)
8486 return -1;
8487 return c_dialect_objc ();
8488
8489 case CPP_PLUS_PLUS:
8490 case CPP_MINUS_MINUS:
8491 /* '++' and '--' may or may not start a cast-expression:
8492
8493 struct T { void operator++(int); };
8494 void f() { (T())++; }
8495
8496 vs
8497
8498 int a;
8499 (int)++a; */
8500 return -1;
8501
8502 default:
8503 return 1;
8504 }
8505 }
8506
8507 /* Parse a cast-expression.
8508
8509 cast-expression:
8510 unary-expression
8511 ( type-id ) cast-expression
8512
8513 ADDRESS_P is true iff the unary-expression is appearing as the
8514 operand of the `&' operator. CAST_P is true if this expression is
8515 the target of a cast.
8516
8517 Returns a representation of the expression. */
8518
8519 static cp_expr
8520 cp_parser_cast_expression (cp_parser *parser, bool address_p, bool cast_p,
8521 bool decltype_p, cp_id_kind * pidk)
8522 {
8523 /* If it's a `(', then we might be looking at a cast. */
8524 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
8525 {
8526 tree type = NULL_TREE;
8527 cp_expr expr (NULL_TREE);
8528 int cast_expression = 0;
8529 const char *saved_message;
8530
8531 /* There's no way to know yet whether or not this is a cast.
8532 For example, `(int (3))' is a unary-expression, while `(int)
8533 3' is a cast. So, we resort to parsing tentatively. */
8534 cp_parser_parse_tentatively (parser);
8535 /* Types may not be defined in a cast. */
8536 saved_message = parser->type_definition_forbidden_message;
8537 parser->type_definition_forbidden_message
8538 = G_("types may not be defined in casts");
8539 /* Consume the `('. */
8540 cp_token *open_paren = cp_lexer_consume_token (parser->lexer);
8541 location_t open_paren_loc = open_paren->location;
8542
8543 /* A very tricky bit is that `(struct S) { 3 }' is a
8544 compound-literal (which we permit in C++ as an extension).
8545 But, that construct is not a cast-expression -- it is a
8546 postfix-expression. (The reason is that `(struct S) { 3 }.i'
8547 is legal; if the compound-literal were a cast-expression,
8548 you'd need an extra set of parentheses.) But, if we parse
8549 the type-id, and it happens to be a class-specifier, then we
8550 will commit to the parse at that point, because we cannot
8551 undo the action that is done when creating a new class. So,
8552 then we cannot back up and do a postfix-expression.
8553
8554 Another tricky case is the following (c++/29234):
8555
8556 struct S { void operator () (); };
8557
8558 void foo ()
8559 {
8560 ( S()() );
8561 }
8562
8563 As a type-id we parse the parenthesized S()() as a function
8564 returning a function, groktypename complains and we cannot
8565 back up in this case either.
8566
8567 Therefore, we scan ahead to the closing `)', and check to see
8568 if the tokens after the `)' can start a cast-expression. Otherwise
8569 we are dealing with an unary-expression, a postfix-expression
8570 or something else.
8571
8572 Yet another tricky case, in C++11, is the following (c++/54891):
8573
8574 (void)[]{};
8575
8576 The issue is that usually, besides the case of lambda-expressions,
8577 the parenthesized type-id cannot be followed by '[', and, eg, we
8578 want to parse '(C ())[2];' in parse/pr26997.C as unary-expression.
8579 Thus, if cp_parser_tokens_start_cast_expression returns -1, below
8580 we don't commit, we try a cast-expression, then an unary-expression.
8581
8582 Save tokens so that we can put them back. */
8583 cp_lexer_save_tokens (parser->lexer);
8584
8585 /* We may be looking at a cast-expression. */
8586 if (cp_parser_skip_to_closing_parenthesis (parser, false, false,
8587 /*consume_paren=*/true))
8588 cast_expression
8589 = cp_parser_tokens_start_cast_expression (parser);
8590
8591 /* Roll back the tokens we skipped. */
8592 cp_lexer_rollback_tokens (parser->lexer);
8593 /* If we aren't looking at a cast-expression, simulate an error so
8594 that the call to cp_parser_error_occurred below returns true. */
8595 if (!cast_expression)
8596 cp_parser_simulate_error (parser);
8597 else
8598 {
8599 bool saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
8600 parser->in_type_id_in_expr_p = true;
8601 /* Look for the type-id. */
8602 type = cp_parser_type_id (parser);
8603 /* Look for the closing `)'. */
8604 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
8605 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
8606 }
8607
8608 /* Restore the saved message. */
8609 parser->type_definition_forbidden_message = saved_message;
8610
8611 /* At this point this can only be either a cast or a
8612 parenthesized ctor such as `(T ())' that looks like a cast to
8613 function returning T. */
8614 if (!cp_parser_error_occurred (parser))
8615 {
8616 /* Only commit if the cast-expression doesn't start with
8617 '++', '--', or '[' in C++11. */
8618 if (cast_expression > 0)
8619 cp_parser_commit_to_topmost_tentative_parse (parser);
8620
8621 expr = cp_parser_cast_expression (parser,
8622 /*address_p=*/false,
8623 /*cast_p=*/true,
8624 /*decltype_p=*/false,
8625 pidk);
8626
8627 if (cp_parser_parse_definitely (parser))
8628 {
8629 /* Warn about old-style casts, if so requested. */
8630 if (warn_old_style_cast
8631 && !in_system_header_at (input_location)
8632 && !VOID_TYPE_P (type)
8633 && current_lang_name != lang_name_c)
8634 warning (OPT_Wold_style_cast, "use of old-style cast");
8635
8636 /* Only type conversions to integral or enumeration types
8637 can be used in constant-expressions. */
8638 if (!cast_valid_in_integral_constant_expression_p (type)
8639 && cp_parser_non_integral_constant_expression (parser,
8640 NIC_CAST))
8641 return error_mark_node;
8642
8643 /* Perform the cast. */
8644 /* Make a location:
8645 (TYPE) EXPR
8646 ^~~~~~~~~~~
8647 with start==caret at the open paren, extending to the
8648 end of "expr". */
8649 location_t cast_loc = make_location (open_paren_loc,
8650 open_paren_loc,
8651 expr.get_finish ());
8652 expr = build_c_cast (cast_loc, type, expr);
8653 return expr;
8654 }
8655 }
8656 else
8657 cp_parser_abort_tentative_parse (parser);
8658 }
8659
8660 /* If we get here, then it's not a cast, so it must be a
8661 unary-expression. */
8662 return cp_parser_unary_expression (parser, pidk, address_p,
8663 cast_p, decltype_p);
8664 }
8665
8666 /* Parse a binary expression of the general form:
8667
8668 pm-expression:
8669 cast-expression
8670 pm-expression .* cast-expression
8671 pm-expression ->* cast-expression
8672
8673 multiplicative-expression:
8674 pm-expression
8675 multiplicative-expression * pm-expression
8676 multiplicative-expression / pm-expression
8677 multiplicative-expression % pm-expression
8678
8679 additive-expression:
8680 multiplicative-expression
8681 additive-expression + multiplicative-expression
8682 additive-expression - multiplicative-expression
8683
8684 shift-expression:
8685 additive-expression
8686 shift-expression << additive-expression
8687 shift-expression >> additive-expression
8688
8689 relational-expression:
8690 shift-expression
8691 relational-expression < shift-expression
8692 relational-expression > shift-expression
8693 relational-expression <= shift-expression
8694 relational-expression >= shift-expression
8695
8696 GNU Extension:
8697
8698 relational-expression:
8699 relational-expression <? shift-expression
8700 relational-expression >? shift-expression
8701
8702 equality-expression:
8703 relational-expression
8704 equality-expression == relational-expression
8705 equality-expression != relational-expression
8706
8707 and-expression:
8708 equality-expression
8709 and-expression & equality-expression
8710
8711 exclusive-or-expression:
8712 and-expression
8713 exclusive-or-expression ^ and-expression
8714
8715 inclusive-or-expression:
8716 exclusive-or-expression
8717 inclusive-or-expression | exclusive-or-expression
8718
8719 logical-and-expression:
8720 inclusive-or-expression
8721 logical-and-expression && inclusive-or-expression
8722
8723 logical-or-expression:
8724 logical-and-expression
8725 logical-or-expression || logical-and-expression
8726
8727 All these are implemented with a single function like:
8728
8729 binary-expression:
8730 simple-cast-expression
8731 binary-expression <token> binary-expression
8732
8733 CAST_P is true if this expression is the target of a cast.
8734
8735 The binops_by_token map is used to get the tree codes for each <token> type.
8736 binary-expressions are associated according to a precedence table. */
8737
8738 #define TOKEN_PRECEDENCE(token) \
8739 (((token->type == CPP_GREATER \
8740 || ((cxx_dialect != cxx98) && token->type == CPP_RSHIFT)) \
8741 && !parser->greater_than_is_operator_p) \
8742 ? PREC_NOT_OPERATOR \
8743 : binops_by_token[token->type].prec)
8744
8745 static cp_expr
8746 cp_parser_binary_expression (cp_parser* parser, bool cast_p,
8747 bool no_toplevel_fold_p,
8748 bool decltype_p,
8749 enum cp_parser_prec prec,
8750 cp_id_kind * pidk)
8751 {
8752 cp_parser_expression_stack stack;
8753 cp_parser_expression_stack_entry *sp = &stack[0];
8754 cp_parser_expression_stack_entry current;
8755 cp_expr rhs;
8756 cp_token *token;
8757 enum tree_code rhs_type;
8758 enum cp_parser_prec new_prec, lookahead_prec;
8759 tree overload;
8760
8761 /* Parse the first expression. */
8762 current.lhs_type = (cp_lexer_next_token_is (parser->lexer, CPP_NOT)
8763 ? TRUTH_NOT_EXPR : ERROR_MARK);
8764 current.lhs = cp_parser_cast_expression (parser, /*address_p=*/false,
8765 cast_p, decltype_p, pidk);
8766 current.prec = prec;
8767
8768 if (cp_parser_error_occurred (parser))
8769 return error_mark_node;
8770
8771 for (;;)
8772 {
8773 /* Get an operator token. */
8774 token = cp_lexer_peek_token (parser->lexer);
8775
8776 if (warn_cxx11_compat
8777 && token->type == CPP_RSHIFT
8778 && !parser->greater_than_is_operator_p)
8779 {
8780 if (warning_at (token->location, OPT_Wc__11_compat,
8781 "%<>>%> operator is treated"
8782 " as two right angle brackets in C++11"))
8783 inform (token->location,
8784 "suggest parentheses around %<>>%> expression");
8785 }
8786
8787 new_prec = TOKEN_PRECEDENCE (token);
8788 if (new_prec != PREC_NOT_OPERATOR
8789 && cp_lexer_nth_token_is (parser->lexer, 2, CPP_ELLIPSIS))
8790 /* This is a fold-expression; handle it later. */
8791 new_prec = PREC_NOT_OPERATOR;
8792
8793 /* Popping an entry off the stack means we completed a subexpression:
8794 - either we found a token which is not an operator (`>' where it is not
8795 an operator, or prec == PREC_NOT_OPERATOR), in which case popping
8796 will happen repeatedly;
8797 - or, we found an operator which has lower priority. This is the case
8798 where the recursive descent *ascends*, as in `3 * 4 + 5' after
8799 parsing `3 * 4'. */
8800 if (new_prec <= current.prec)
8801 {
8802 if (sp == stack)
8803 break;
8804 else
8805 goto pop;
8806 }
8807
8808 get_rhs:
8809 current.tree_type = binops_by_token[token->type].tree_type;
8810 current.loc = token->location;
8811
8812 /* We used the operator token. */
8813 cp_lexer_consume_token (parser->lexer);
8814
8815 /* For "false && x" or "true || x", x will never be executed;
8816 disable warnings while evaluating it. */
8817 if (current.tree_type == TRUTH_ANDIF_EXPR)
8818 c_inhibit_evaluation_warnings +=
8819 cp_fully_fold (current.lhs) == truthvalue_false_node;
8820 else if (current.tree_type == TRUTH_ORIF_EXPR)
8821 c_inhibit_evaluation_warnings +=
8822 cp_fully_fold (current.lhs) == truthvalue_true_node;
8823
8824 /* Extract another operand. It may be the RHS of this expression
8825 or the LHS of a new, higher priority expression. */
8826 rhs_type = (cp_lexer_next_token_is (parser->lexer, CPP_NOT)
8827 ? TRUTH_NOT_EXPR : ERROR_MARK);
8828 rhs = cp_parser_simple_cast_expression (parser);
8829
8830 /* Get another operator token. Look up its precedence to avoid
8831 building a useless (immediately popped) stack entry for common
8832 cases such as 3 + 4 + 5 or 3 * 4 + 5. */
8833 token = cp_lexer_peek_token (parser->lexer);
8834 lookahead_prec = TOKEN_PRECEDENCE (token);
8835 if (lookahead_prec != PREC_NOT_OPERATOR
8836 && cp_lexer_nth_token_is (parser->lexer, 2, CPP_ELLIPSIS))
8837 lookahead_prec = PREC_NOT_OPERATOR;
8838 if (lookahead_prec > new_prec)
8839 {
8840 /* ... and prepare to parse the RHS of the new, higher priority
8841 expression. Since precedence levels on the stack are
8842 monotonically increasing, we do not have to care about
8843 stack overflows. */
8844 *sp = current;
8845 ++sp;
8846 current.lhs = rhs;
8847 current.lhs_type = rhs_type;
8848 current.prec = new_prec;
8849 new_prec = lookahead_prec;
8850 goto get_rhs;
8851
8852 pop:
8853 lookahead_prec = new_prec;
8854 /* If the stack is not empty, we have parsed into LHS the right side
8855 (`4' in the example above) of an expression we had suspended.
8856 We can use the information on the stack to recover the LHS (`3')
8857 from the stack together with the tree code (`MULT_EXPR'), and
8858 the precedence of the higher level subexpression
8859 (`PREC_ADDITIVE_EXPRESSION'). TOKEN is the CPP_PLUS token,
8860 which will be used to actually build the additive expression. */
8861 rhs = current.lhs;
8862 rhs_type = current.lhs_type;
8863 --sp;
8864 current = *sp;
8865 }
8866
8867 /* Undo the disabling of warnings done above. */
8868 if (current.tree_type == TRUTH_ANDIF_EXPR)
8869 c_inhibit_evaluation_warnings -=
8870 cp_fully_fold (current.lhs) == truthvalue_false_node;
8871 else if (current.tree_type == TRUTH_ORIF_EXPR)
8872 c_inhibit_evaluation_warnings -=
8873 cp_fully_fold (current.lhs) == truthvalue_true_node;
8874
8875 if (warn_logical_not_paren
8876 && TREE_CODE_CLASS (current.tree_type) == tcc_comparison
8877 && current.lhs_type == TRUTH_NOT_EXPR
8878 /* Avoid warning for !!x == y. */
8879 && (TREE_CODE (current.lhs) != NE_EXPR
8880 || !integer_zerop (TREE_OPERAND (current.lhs, 1)))
8881 && (TREE_CODE (current.lhs) != TRUTH_NOT_EXPR
8882 || (TREE_CODE (TREE_OPERAND (current.lhs, 0)) != TRUTH_NOT_EXPR
8883 /* Avoid warning for !b == y where b is boolean. */
8884 && (TREE_TYPE (TREE_OPERAND (current.lhs, 0)) == NULL_TREE
8885 || (TREE_CODE (TREE_TYPE (TREE_OPERAND (current.lhs, 0)))
8886 != BOOLEAN_TYPE))))
8887 /* Avoid warning for !!b == y where b is boolean. */
8888 && (!DECL_P (current.lhs)
8889 || TREE_TYPE (current.lhs) == NULL_TREE
8890 || TREE_CODE (TREE_TYPE (current.lhs)) != BOOLEAN_TYPE))
8891 warn_logical_not_parentheses (current.loc, current.tree_type,
8892 maybe_constant_value (rhs));
8893
8894 overload = NULL;
8895
8896 location_t combined_loc = make_location (current.loc,
8897 current.lhs.get_start (),
8898 rhs.get_finish ());
8899
8900 /* ??? Currently we pass lhs_type == ERROR_MARK and rhs_type ==
8901 ERROR_MARK for everything that is not a binary expression.
8902 This makes warn_about_parentheses miss some warnings that
8903 involve unary operators. For unary expressions we should
8904 pass the correct tree_code unless the unary expression was
8905 surrounded by parentheses.
8906 */
8907 if (no_toplevel_fold_p
8908 && lookahead_prec <= current.prec
8909 && sp == stack)
8910 current.lhs = build2_loc (combined_loc,
8911 current.tree_type,
8912 TREE_CODE_CLASS (current.tree_type)
8913 == tcc_comparison
8914 ? boolean_type_node : TREE_TYPE (current.lhs),
8915 current.lhs, rhs);
8916 else
8917 {
8918 current.lhs = build_x_binary_op (combined_loc, current.tree_type,
8919 current.lhs, current.lhs_type,
8920 rhs, rhs_type, &overload,
8921 complain_flags (decltype_p));
8922 /* TODO: build_x_binary_op doesn't always honor the location. */
8923 current.lhs.set_location (combined_loc);
8924 }
8925 current.lhs_type = current.tree_type;
8926
8927 /* If the binary operator required the use of an overloaded operator,
8928 then this expression cannot be an integral constant-expression.
8929 An overloaded operator can be used even if both operands are
8930 otherwise permissible in an integral constant-expression if at
8931 least one of the operands is of enumeration type. */
8932
8933 if (overload
8934 && cp_parser_non_integral_constant_expression (parser,
8935 NIC_OVERLOADED))
8936 return error_mark_node;
8937 }
8938
8939 return current.lhs;
8940 }
8941
8942 static cp_expr
8943 cp_parser_binary_expression (cp_parser* parser, bool cast_p,
8944 bool no_toplevel_fold_p,
8945 enum cp_parser_prec prec,
8946 cp_id_kind * pidk)
8947 {
8948 return cp_parser_binary_expression (parser, cast_p, no_toplevel_fold_p,
8949 /*decltype*/false, prec, pidk);
8950 }
8951
8952 /* Parse the `? expression : assignment-expression' part of a
8953 conditional-expression. The LOGICAL_OR_EXPR is the
8954 logical-or-expression that started the conditional-expression.
8955 Returns a representation of the entire conditional-expression.
8956
8957 This routine is used by cp_parser_assignment_expression.
8958
8959 ? expression : assignment-expression
8960
8961 GNU Extensions:
8962
8963 ? : assignment-expression */
8964
8965 static tree
8966 cp_parser_question_colon_clause (cp_parser* parser, cp_expr logical_or_expr)
8967 {
8968 tree expr, folded_logical_or_expr = cp_fully_fold (logical_or_expr);
8969 cp_expr assignment_expr;
8970 struct cp_token *token;
8971 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
8972
8973 /* Consume the `?' token. */
8974 cp_lexer_consume_token (parser->lexer);
8975 token = cp_lexer_peek_token (parser->lexer);
8976 if (cp_parser_allow_gnu_extensions_p (parser)
8977 && token->type == CPP_COLON)
8978 {
8979 pedwarn (token->location, OPT_Wpedantic,
8980 "ISO C++ does not allow ?: with omitted middle operand");
8981 /* Implicit true clause. */
8982 expr = NULL_TREE;
8983 c_inhibit_evaluation_warnings +=
8984 folded_logical_or_expr == truthvalue_true_node;
8985 warn_for_omitted_condop (token->location, logical_or_expr);
8986 }
8987 else
8988 {
8989 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
8990 parser->colon_corrects_to_scope_p = false;
8991 /* Parse the expression. */
8992 c_inhibit_evaluation_warnings +=
8993 folded_logical_or_expr == truthvalue_false_node;
8994 expr = cp_parser_expression (parser);
8995 c_inhibit_evaluation_warnings +=
8996 ((folded_logical_or_expr == truthvalue_true_node)
8997 - (folded_logical_or_expr == truthvalue_false_node));
8998 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
8999 }
9000
9001 /* The next token should be a `:'. */
9002 cp_parser_require (parser, CPP_COLON, RT_COLON);
9003 /* Parse the assignment-expression. */
9004 assignment_expr = cp_parser_assignment_expression (parser);
9005 c_inhibit_evaluation_warnings -=
9006 folded_logical_or_expr == truthvalue_true_node;
9007
9008 /* Make a location:
9009 LOGICAL_OR_EXPR ? EXPR : ASSIGNMENT_EXPR
9010 ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
9011 with the caret at the "?", ranging from the start of
9012 the logical_or_expr to the end of the assignment_expr. */
9013 loc = make_location (loc,
9014 logical_or_expr.get_start (),
9015 assignment_expr.get_finish ());
9016
9017 /* Build the conditional-expression. */
9018 return build_x_conditional_expr (loc, logical_or_expr,
9019 expr,
9020 assignment_expr,
9021 tf_warning_or_error);
9022 }
9023
9024 /* Parse an assignment-expression.
9025
9026 assignment-expression:
9027 conditional-expression
9028 logical-or-expression assignment-operator assignment_expression
9029 throw-expression
9030
9031 CAST_P is true if this expression is the target of a cast.
9032 DECLTYPE_P is true if this expression is the operand of decltype.
9033
9034 Returns a representation for the expression. */
9035
9036 static cp_expr
9037 cp_parser_assignment_expression (cp_parser* parser, cp_id_kind * pidk,
9038 bool cast_p, bool decltype_p)
9039 {
9040 cp_expr expr;
9041
9042 /* If the next token is the `throw' keyword, then we're looking at
9043 a throw-expression. */
9044 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_THROW))
9045 expr = cp_parser_throw_expression (parser);
9046 /* Otherwise, it must be that we are looking at a
9047 logical-or-expression. */
9048 else
9049 {
9050 /* Parse the binary expressions (logical-or-expression). */
9051 expr = cp_parser_binary_expression (parser, cast_p, false,
9052 decltype_p,
9053 PREC_NOT_OPERATOR, pidk);
9054 /* If the next token is a `?' then we're actually looking at a
9055 conditional-expression. */
9056 if (cp_lexer_next_token_is (parser->lexer, CPP_QUERY))
9057 return cp_parser_question_colon_clause (parser, expr);
9058 else
9059 {
9060 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
9061
9062 /* If it's an assignment-operator, we're using the second
9063 production. */
9064 enum tree_code assignment_operator
9065 = cp_parser_assignment_operator_opt (parser);
9066 if (assignment_operator != ERROR_MARK)
9067 {
9068 bool non_constant_p;
9069
9070 /* Parse the right-hand side of the assignment. */
9071 cp_expr rhs = cp_parser_initializer_clause (parser,
9072 &non_constant_p);
9073
9074 if (BRACE_ENCLOSED_INITIALIZER_P (rhs))
9075 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
9076
9077 /* An assignment may not appear in a
9078 constant-expression. */
9079 if (cp_parser_non_integral_constant_expression (parser,
9080 NIC_ASSIGNMENT))
9081 return error_mark_node;
9082 /* Build the assignment expression. Its default
9083 location:
9084 LHS = RHS
9085 ~~~~^~~~~
9086 is the location of the '=' token as the
9087 caret, ranging from the start of the lhs to the
9088 end of the rhs. */
9089 loc = make_location (loc,
9090 expr.get_start (),
9091 rhs.get_finish ());
9092 expr = build_x_modify_expr (loc, expr,
9093 assignment_operator,
9094 rhs,
9095 complain_flags (decltype_p));
9096 /* TODO: build_x_modify_expr doesn't honor the location,
9097 so we must set it here. */
9098 expr.set_location (loc);
9099 }
9100 }
9101 }
9102
9103 return expr;
9104 }
9105
9106 /* Parse an (optional) assignment-operator.
9107
9108 assignment-operator: one of
9109 = *= /= %= += -= >>= <<= &= ^= |=
9110
9111 GNU Extension:
9112
9113 assignment-operator: one of
9114 <?= >?=
9115
9116 If the next token is an assignment operator, the corresponding tree
9117 code is returned, and the token is consumed. For example, for
9118 `+=', PLUS_EXPR is returned. For `=' itself, the code returned is
9119 NOP_EXPR. For `/', TRUNC_DIV_EXPR is returned; for `%',
9120 TRUNC_MOD_EXPR is returned. If TOKEN is not an assignment
9121 operator, ERROR_MARK is returned. */
9122
9123 static enum tree_code
9124 cp_parser_assignment_operator_opt (cp_parser* parser)
9125 {
9126 enum tree_code op;
9127 cp_token *token;
9128
9129 /* Peek at the next token. */
9130 token = cp_lexer_peek_token (parser->lexer);
9131
9132 switch (token->type)
9133 {
9134 case CPP_EQ:
9135 op = NOP_EXPR;
9136 break;
9137
9138 case CPP_MULT_EQ:
9139 op = MULT_EXPR;
9140 break;
9141
9142 case CPP_DIV_EQ:
9143 op = TRUNC_DIV_EXPR;
9144 break;
9145
9146 case CPP_MOD_EQ:
9147 op = TRUNC_MOD_EXPR;
9148 break;
9149
9150 case CPP_PLUS_EQ:
9151 op = PLUS_EXPR;
9152 break;
9153
9154 case CPP_MINUS_EQ:
9155 op = MINUS_EXPR;
9156 break;
9157
9158 case CPP_RSHIFT_EQ:
9159 op = RSHIFT_EXPR;
9160 break;
9161
9162 case CPP_LSHIFT_EQ:
9163 op = LSHIFT_EXPR;
9164 break;
9165
9166 case CPP_AND_EQ:
9167 op = BIT_AND_EXPR;
9168 break;
9169
9170 case CPP_XOR_EQ:
9171 op = BIT_XOR_EXPR;
9172 break;
9173
9174 case CPP_OR_EQ:
9175 op = BIT_IOR_EXPR;
9176 break;
9177
9178 default:
9179 /* Nothing else is an assignment operator. */
9180 op = ERROR_MARK;
9181 }
9182
9183 /* An operator followed by ... is a fold-expression, handled elsewhere. */
9184 if (op != ERROR_MARK
9185 && cp_lexer_nth_token_is (parser->lexer, 2, CPP_ELLIPSIS))
9186 op = ERROR_MARK;
9187
9188 /* If it was an assignment operator, consume it. */
9189 if (op != ERROR_MARK)
9190 cp_lexer_consume_token (parser->lexer);
9191
9192 return op;
9193 }
9194
9195 /* Parse an expression.
9196
9197 expression:
9198 assignment-expression
9199 expression , assignment-expression
9200
9201 CAST_P is true if this expression is the target of a cast.
9202 DECLTYPE_P is true if this expression is the immediate operand of decltype,
9203 except possibly parenthesized or on the RHS of a comma (N3276).
9204
9205 Returns a representation of the expression. */
9206
9207 static cp_expr
9208 cp_parser_expression (cp_parser* parser, cp_id_kind * pidk,
9209 bool cast_p, bool decltype_p)
9210 {
9211 cp_expr expression = NULL_TREE;
9212 location_t loc = UNKNOWN_LOCATION;
9213
9214 while (true)
9215 {
9216 cp_expr assignment_expression;
9217
9218 /* Parse the next assignment-expression. */
9219 assignment_expression
9220 = cp_parser_assignment_expression (parser, pidk, cast_p, decltype_p);
9221
9222 /* We don't create a temporary for a call that is the immediate operand
9223 of decltype or on the RHS of a comma. But when we see a comma, we
9224 need to create a temporary for a call on the LHS. */
9225 if (decltype_p && !processing_template_decl
9226 && TREE_CODE (assignment_expression) == CALL_EXPR
9227 && CLASS_TYPE_P (TREE_TYPE (assignment_expression))
9228 && cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
9229 assignment_expression
9230 = build_cplus_new (TREE_TYPE (assignment_expression),
9231 assignment_expression, tf_warning_or_error);
9232
9233 /* If this is the first assignment-expression, we can just
9234 save it away. */
9235 if (!expression)
9236 expression = assignment_expression;
9237 else
9238 {
9239 /* Create a location with caret at the comma, ranging
9240 from the start of the LHS to the end of the RHS. */
9241 loc = make_location (loc,
9242 expression.get_start (),
9243 assignment_expression.get_finish ());
9244 expression = build_x_compound_expr (loc, expression,
9245 assignment_expression,
9246 complain_flags (decltype_p));
9247 expression.set_location (loc);
9248 }
9249 /* If the next token is not a comma, or we're in a fold-expression, then
9250 we are done with the expression. */
9251 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA)
9252 || cp_lexer_nth_token_is (parser->lexer, 2, CPP_ELLIPSIS))
9253 break;
9254 /* Consume the `,'. */
9255 loc = cp_lexer_peek_token (parser->lexer)->location;
9256 cp_lexer_consume_token (parser->lexer);
9257 /* A comma operator cannot appear in a constant-expression. */
9258 if (cp_parser_non_integral_constant_expression (parser, NIC_COMMA))
9259 expression = error_mark_node;
9260 }
9261
9262 return expression;
9263 }
9264
9265 /* Parse a constant-expression.
9266
9267 constant-expression:
9268 conditional-expression
9269
9270 If ALLOW_NON_CONSTANT_P a non-constant expression is silently
9271 accepted. If ALLOW_NON_CONSTANT_P is true and the expression is not
9272 constant, *NON_CONSTANT_P is set to TRUE. If ALLOW_NON_CONSTANT_P
9273 is false, NON_CONSTANT_P should be NULL. */
9274
9275 static cp_expr
9276 cp_parser_constant_expression (cp_parser* parser,
9277 bool allow_non_constant_p,
9278 bool *non_constant_p)
9279 {
9280 bool saved_integral_constant_expression_p;
9281 bool saved_allow_non_integral_constant_expression_p;
9282 bool saved_non_integral_constant_expression_p;
9283 cp_expr expression;
9284
9285 /* It might seem that we could simply parse the
9286 conditional-expression, and then check to see if it were
9287 TREE_CONSTANT. However, an expression that is TREE_CONSTANT is
9288 one that the compiler can figure out is constant, possibly after
9289 doing some simplifications or optimizations. The standard has a
9290 precise definition of constant-expression, and we must honor
9291 that, even though it is somewhat more restrictive.
9292
9293 For example:
9294
9295 int i[(2, 3)];
9296
9297 is not a legal declaration, because `(2, 3)' is not a
9298 constant-expression. The `,' operator is forbidden in a
9299 constant-expression. However, GCC's constant-folding machinery
9300 will fold this operation to an INTEGER_CST for `3'. */
9301
9302 /* Save the old settings. */
9303 saved_integral_constant_expression_p = parser->integral_constant_expression_p;
9304 saved_allow_non_integral_constant_expression_p
9305 = parser->allow_non_integral_constant_expression_p;
9306 saved_non_integral_constant_expression_p = parser->non_integral_constant_expression_p;
9307 /* We are now parsing a constant-expression. */
9308 parser->integral_constant_expression_p = true;
9309 parser->allow_non_integral_constant_expression_p
9310 = (allow_non_constant_p || cxx_dialect >= cxx11);
9311 parser->non_integral_constant_expression_p = false;
9312 /* Although the grammar says "conditional-expression", we parse an
9313 "assignment-expression", which also permits "throw-expression"
9314 and the use of assignment operators. In the case that
9315 ALLOW_NON_CONSTANT_P is false, we get better errors than we would
9316 otherwise. In the case that ALLOW_NON_CONSTANT_P is true, it is
9317 actually essential that we look for an assignment-expression.
9318 For example, cp_parser_initializer_clauses uses this function to
9319 determine whether a particular assignment-expression is in fact
9320 constant. */
9321 expression = cp_parser_assignment_expression (parser);
9322 /* Restore the old settings. */
9323 parser->integral_constant_expression_p
9324 = saved_integral_constant_expression_p;
9325 parser->allow_non_integral_constant_expression_p
9326 = saved_allow_non_integral_constant_expression_p;
9327 if (cxx_dialect >= cxx11)
9328 {
9329 /* Require an rvalue constant expression here; that's what our
9330 callers expect. Reference constant expressions are handled
9331 separately in e.g. cp_parser_template_argument. */
9332 bool is_const = potential_rvalue_constant_expression (expression);
9333 parser->non_integral_constant_expression_p = !is_const;
9334 if (!is_const && !allow_non_constant_p)
9335 require_potential_rvalue_constant_expression (expression);
9336 }
9337 if (allow_non_constant_p)
9338 *non_constant_p = parser->non_integral_constant_expression_p;
9339 parser->non_integral_constant_expression_p
9340 = saved_non_integral_constant_expression_p;
9341
9342 return expression;
9343 }
9344
9345 /* Parse __builtin_offsetof.
9346
9347 offsetof-expression:
9348 "__builtin_offsetof" "(" type-id "," offsetof-member-designator ")"
9349
9350 offsetof-member-designator:
9351 id-expression
9352 | offsetof-member-designator "." id-expression
9353 | offsetof-member-designator "[" expression "]"
9354 | offsetof-member-designator "->" id-expression */
9355
9356 static cp_expr
9357 cp_parser_builtin_offsetof (cp_parser *parser)
9358 {
9359 int save_ice_p, save_non_ice_p;
9360 tree type;
9361 cp_expr expr;
9362 cp_id_kind dummy;
9363 cp_token *token;
9364 location_t finish_loc;
9365
9366 /* We're about to accept non-integral-constant things, but will
9367 definitely yield an integral constant expression. Save and
9368 restore these values around our local parsing. */
9369 save_ice_p = parser->integral_constant_expression_p;
9370 save_non_ice_p = parser->non_integral_constant_expression_p;
9371
9372 location_t start_loc = cp_lexer_peek_token (parser->lexer)->location;
9373
9374 /* Consume the "__builtin_offsetof" token. */
9375 cp_lexer_consume_token (parser->lexer);
9376 /* Consume the opening `('. */
9377 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
9378 /* Parse the type-id. */
9379 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
9380 type = cp_parser_type_id (parser);
9381 /* Look for the `,'. */
9382 cp_parser_require (parser, CPP_COMMA, RT_COMMA);
9383 token = cp_lexer_peek_token (parser->lexer);
9384
9385 /* Build the (type *)null that begins the traditional offsetof macro. */
9386 expr = build_static_cast (build_pointer_type (type), null_pointer_node,
9387 tf_warning_or_error);
9388
9389 /* Parse the offsetof-member-designator. We begin as if we saw "expr->". */
9390 expr = cp_parser_postfix_dot_deref_expression (parser, CPP_DEREF, expr,
9391 true, &dummy, token->location);
9392 while (true)
9393 {
9394 token = cp_lexer_peek_token (parser->lexer);
9395 switch (token->type)
9396 {
9397 case CPP_OPEN_SQUARE:
9398 /* offsetof-member-designator "[" expression "]" */
9399 expr = cp_parser_postfix_open_square_expression (parser, expr,
9400 true, false);
9401 break;
9402
9403 case CPP_DEREF:
9404 /* offsetof-member-designator "->" identifier */
9405 expr = grok_array_decl (token->location, expr,
9406 integer_zero_node, false);
9407 /* FALLTHRU */
9408
9409 case CPP_DOT:
9410 /* offsetof-member-designator "." identifier */
9411 cp_lexer_consume_token (parser->lexer);
9412 expr = cp_parser_postfix_dot_deref_expression (parser, CPP_DOT,
9413 expr, true, &dummy,
9414 token->location);
9415 break;
9416
9417 case CPP_CLOSE_PAREN:
9418 /* Consume the ")" token. */
9419 finish_loc = cp_lexer_peek_token (parser->lexer)->location;
9420 cp_lexer_consume_token (parser->lexer);
9421 goto success;
9422
9423 default:
9424 /* Error. We know the following require will fail, but
9425 that gives the proper error message. */
9426 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
9427 cp_parser_skip_to_closing_parenthesis (parser, true, false, true);
9428 expr = error_mark_node;
9429 goto failure;
9430 }
9431 }
9432
9433 success:
9434 /* Make a location of the form:
9435 __builtin_offsetof (struct s, f)
9436 ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
9437 with caret at the type-id, ranging from the start of the
9438 "_builtin_offsetof" token to the close paren. */
9439 loc = make_location (loc, start_loc, finish_loc);
9440 /* The result will be an INTEGER_CST, so we need to explicitly
9441 preserve the location. */
9442 expr = cp_expr (finish_offsetof (expr, loc), loc);
9443
9444 failure:
9445 parser->integral_constant_expression_p = save_ice_p;
9446 parser->non_integral_constant_expression_p = save_non_ice_p;
9447
9448 return expr;
9449 }
9450
9451 /* Parse a trait expression.
9452
9453 Returns a representation of the expression, the underlying type
9454 of the type at issue when KEYWORD is RID_UNDERLYING_TYPE. */
9455
9456 static tree
9457 cp_parser_trait_expr (cp_parser* parser, enum rid keyword)
9458 {
9459 cp_trait_kind kind;
9460 tree type1, type2 = NULL_TREE;
9461 bool binary = false;
9462 bool variadic = false;
9463
9464 switch (keyword)
9465 {
9466 case RID_HAS_NOTHROW_ASSIGN:
9467 kind = CPTK_HAS_NOTHROW_ASSIGN;
9468 break;
9469 case RID_HAS_NOTHROW_CONSTRUCTOR:
9470 kind = CPTK_HAS_NOTHROW_CONSTRUCTOR;
9471 break;
9472 case RID_HAS_NOTHROW_COPY:
9473 kind = CPTK_HAS_NOTHROW_COPY;
9474 break;
9475 case RID_HAS_TRIVIAL_ASSIGN:
9476 kind = CPTK_HAS_TRIVIAL_ASSIGN;
9477 break;
9478 case RID_HAS_TRIVIAL_CONSTRUCTOR:
9479 kind = CPTK_HAS_TRIVIAL_CONSTRUCTOR;
9480 break;
9481 case RID_HAS_TRIVIAL_COPY:
9482 kind = CPTK_HAS_TRIVIAL_COPY;
9483 break;
9484 case RID_HAS_TRIVIAL_DESTRUCTOR:
9485 kind = CPTK_HAS_TRIVIAL_DESTRUCTOR;
9486 break;
9487 case RID_HAS_VIRTUAL_DESTRUCTOR:
9488 kind = CPTK_HAS_VIRTUAL_DESTRUCTOR;
9489 break;
9490 case RID_IS_ABSTRACT:
9491 kind = CPTK_IS_ABSTRACT;
9492 break;
9493 case RID_IS_BASE_OF:
9494 kind = CPTK_IS_BASE_OF;
9495 binary = true;
9496 break;
9497 case RID_IS_CLASS:
9498 kind = CPTK_IS_CLASS;
9499 break;
9500 case RID_IS_EMPTY:
9501 kind = CPTK_IS_EMPTY;
9502 break;
9503 case RID_IS_ENUM:
9504 kind = CPTK_IS_ENUM;
9505 break;
9506 case RID_IS_FINAL:
9507 kind = CPTK_IS_FINAL;
9508 break;
9509 case RID_IS_LITERAL_TYPE:
9510 kind = CPTK_IS_LITERAL_TYPE;
9511 break;
9512 case RID_IS_POD:
9513 kind = CPTK_IS_POD;
9514 break;
9515 case RID_IS_POLYMORPHIC:
9516 kind = CPTK_IS_POLYMORPHIC;
9517 break;
9518 case RID_IS_SAME_AS:
9519 kind = CPTK_IS_SAME_AS;
9520 binary = true;
9521 break;
9522 case RID_IS_STD_LAYOUT:
9523 kind = CPTK_IS_STD_LAYOUT;
9524 break;
9525 case RID_IS_TRIVIAL:
9526 kind = CPTK_IS_TRIVIAL;
9527 break;
9528 case RID_IS_TRIVIALLY_ASSIGNABLE:
9529 kind = CPTK_IS_TRIVIALLY_ASSIGNABLE;
9530 binary = true;
9531 break;
9532 case RID_IS_TRIVIALLY_CONSTRUCTIBLE:
9533 kind = CPTK_IS_TRIVIALLY_CONSTRUCTIBLE;
9534 variadic = true;
9535 break;
9536 case RID_IS_TRIVIALLY_COPYABLE:
9537 kind = CPTK_IS_TRIVIALLY_COPYABLE;
9538 break;
9539 case RID_IS_UNION:
9540 kind = CPTK_IS_UNION;
9541 break;
9542 case RID_UNDERLYING_TYPE:
9543 kind = CPTK_UNDERLYING_TYPE;
9544 break;
9545 case RID_BASES:
9546 kind = CPTK_BASES;
9547 break;
9548 case RID_DIRECT_BASES:
9549 kind = CPTK_DIRECT_BASES;
9550 break;
9551 default:
9552 gcc_unreachable ();
9553 }
9554
9555 /* Consume the token. */
9556 cp_lexer_consume_token (parser->lexer);
9557
9558 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
9559
9560 {
9561 type_id_in_expr_sentinel s (parser);
9562 type1 = cp_parser_type_id (parser);
9563 }
9564
9565 if (type1 == error_mark_node)
9566 return error_mark_node;
9567
9568 if (binary)
9569 {
9570 cp_parser_require (parser, CPP_COMMA, RT_COMMA);
9571
9572 {
9573 type_id_in_expr_sentinel s (parser);
9574 type2 = cp_parser_type_id (parser);
9575 }
9576
9577 if (type2 == error_mark_node)
9578 return error_mark_node;
9579 }
9580 else if (variadic)
9581 {
9582 while (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
9583 {
9584 cp_lexer_consume_token (parser->lexer);
9585 tree elt = cp_parser_type_id (parser);
9586 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
9587 {
9588 cp_lexer_consume_token (parser->lexer);
9589 elt = make_pack_expansion (elt);
9590 }
9591 if (elt == error_mark_node)
9592 return error_mark_node;
9593 type2 = tree_cons (NULL_TREE, elt, type2);
9594 }
9595 }
9596
9597 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
9598
9599 /* Complete the trait expression, which may mean either processing
9600 the trait expr now or saving it for template instantiation. */
9601 switch(kind)
9602 {
9603 case CPTK_UNDERLYING_TYPE:
9604 return finish_underlying_type (type1);
9605 case CPTK_BASES:
9606 return finish_bases (type1, false);
9607 case CPTK_DIRECT_BASES:
9608 return finish_bases (type1, true);
9609 default:
9610 return finish_trait_expr (kind, type1, type2);
9611 }
9612 }
9613
9614 /* Lambdas that appear in variable initializer or default argument scope
9615 get that in their mangling, so we need to record it. We might as well
9616 use the count for function and namespace scopes as well. */
9617 static GTY(()) tree lambda_scope;
9618 static GTY(()) int lambda_count;
9619 struct GTY(()) tree_int
9620 {
9621 tree t;
9622 int i;
9623 };
9624 static GTY(()) vec<tree_int, va_gc> *lambda_scope_stack;
9625
9626 static void
9627 start_lambda_scope (tree decl)
9628 {
9629 tree_int ti;
9630 gcc_assert (decl);
9631 /* Once we're inside a function, we ignore other scopes and just push
9632 the function again so that popping works properly. */
9633 if (current_function_decl && TREE_CODE (decl) != FUNCTION_DECL)
9634 decl = current_function_decl;
9635 ti.t = lambda_scope;
9636 ti.i = lambda_count;
9637 vec_safe_push (lambda_scope_stack, ti);
9638 if (lambda_scope != decl)
9639 {
9640 /* Don't reset the count if we're still in the same function. */
9641 lambda_scope = decl;
9642 lambda_count = 0;
9643 }
9644 }
9645
9646 static void
9647 record_lambda_scope (tree lambda)
9648 {
9649 LAMBDA_EXPR_EXTRA_SCOPE (lambda) = lambda_scope;
9650 LAMBDA_EXPR_DISCRIMINATOR (lambda) = lambda_count++;
9651 }
9652
9653 static void
9654 finish_lambda_scope (void)
9655 {
9656 tree_int *p = &lambda_scope_stack->last ();
9657 if (lambda_scope != p->t)
9658 {
9659 lambda_scope = p->t;
9660 lambda_count = p->i;
9661 }
9662 lambda_scope_stack->pop ();
9663 }
9664
9665 /* Parse a lambda expression.
9666
9667 lambda-expression:
9668 lambda-introducer lambda-declarator [opt] compound-statement
9669
9670 Returns a representation of the expression. */
9671
9672 static cp_expr
9673 cp_parser_lambda_expression (cp_parser* parser)
9674 {
9675 tree lambda_expr = build_lambda_expr ();
9676 tree type;
9677 bool ok = true;
9678 cp_token *token = cp_lexer_peek_token (parser->lexer);
9679 cp_token_position start = 0;
9680
9681 LAMBDA_EXPR_LOCATION (lambda_expr) = token->location;
9682
9683 if (cp_unevaluated_operand)
9684 {
9685 if (!token->error_reported)
9686 {
9687 error_at (LAMBDA_EXPR_LOCATION (lambda_expr),
9688 "lambda-expression in unevaluated context");
9689 token->error_reported = true;
9690 }
9691 ok = false;
9692 }
9693 else if (parser->in_template_argument_list_p)
9694 {
9695 if (!token->error_reported)
9696 {
9697 error_at (token->location, "lambda-expression in template-argument");
9698 token->error_reported = true;
9699 }
9700 ok = false;
9701 }
9702
9703 /* We may be in the middle of deferred access check. Disable
9704 it now. */
9705 push_deferring_access_checks (dk_no_deferred);
9706
9707 cp_parser_lambda_introducer (parser, lambda_expr);
9708
9709 type = begin_lambda_type (lambda_expr);
9710 if (type == error_mark_node)
9711 return error_mark_node;
9712
9713 record_lambda_scope (lambda_expr);
9714
9715 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
9716 determine_visibility (TYPE_NAME (type));
9717
9718 /* Now that we've started the type, add the capture fields for any
9719 explicit captures. */
9720 register_capture_members (LAMBDA_EXPR_CAPTURE_LIST (lambda_expr));
9721
9722 {
9723 /* Inside the class, surrounding template-parameter-lists do not apply. */
9724 unsigned int saved_num_template_parameter_lists
9725 = parser->num_template_parameter_lists;
9726 unsigned char in_statement = parser->in_statement;
9727 bool in_switch_statement_p = parser->in_switch_statement_p;
9728 bool fully_implicit_function_template_p
9729 = parser->fully_implicit_function_template_p;
9730 tree implicit_template_parms = parser->implicit_template_parms;
9731 cp_binding_level* implicit_template_scope = parser->implicit_template_scope;
9732 bool auto_is_implicit_function_template_parm_p
9733 = parser->auto_is_implicit_function_template_parm_p;
9734
9735 parser->num_template_parameter_lists = 0;
9736 parser->in_statement = 0;
9737 parser->in_switch_statement_p = false;
9738 parser->fully_implicit_function_template_p = false;
9739 parser->implicit_template_parms = 0;
9740 parser->implicit_template_scope = 0;
9741 parser->auto_is_implicit_function_template_parm_p = false;
9742
9743 /* By virtue of defining a local class, a lambda expression has access to
9744 the private variables of enclosing classes. */
9745
9746 ok &= cp_parser_lambda_declarator_opt (parser, lambda_expr);
9747
9748 if (ok)
9749 {
9750 if (!cp_parser_error_occurred (parser)
9751 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE)
9752 && cp_parser_start_tentative_firewall (parser))
9753 start = token;
9754 cp_parser_lambda_body (parser, lambda_expr);
9755 }
9756 else if (cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
9757 {
9758 if (cp_parser_skip_to_closing_brace (parser))
9759 cp_lexer_consume_token (parser->lexer);
9760 }
9761
9762 /* The capture list was built up in reverse order; fix that now. */
9763 LAMBDA_EXPR_CAPTURE_LIST (lambda_expr)
9764 = nreverse (LAMBDA_EXPR_CAPTURE_LIST (lambda_expr));
9765
9766 if (ok)
9767 maybe_add_lambda_conv_op (type);
9768
9769 type = finish_struct (type, /*attributes=*/NULL_TREE);
9770
9771 parser->num_template_parameter_lists = saved_num_template_parameter_lists;
9772 parser->in_statement = in_statement;
9773 parser->in_switch_statement_p = in_switch_statement_p;
9774 parser->fully_implicit_function_template_p
9775 = fully_implicit_function_template_p;
9776 parser->implicit_template_parms = implicit_template_parms;
9777 parser->implicit_template_scope = implicit_template_scope;
9778 parser->auto_is_implicit_function_template_parm_p
9779 = auto_is_implicit_function_template_parm_p;
9780 }
9781
9782 /* This field is only used during parsing of the lambda. */
9783 LAMBDA_EXPR_THIS_CAPTURE (lambda_expr) = NULL_TREE;
9784
9785 /* This lambda shouldn't have any proxies left at this point. */
9786 gcc_assert (LAMBDA_EXPR_PENDING_PROXIES (lambda_expr) == NULL);
9787 /* And now that we're done, push proxies for an enclosing lambda. */
9788 insert_pending_capture_proxies ();
9789
9790 if (ok)
9791 lambda_expr = build_lambda_object (lambda_expr);
9792 else
9793 lambda_expr = error_mark_node;
9794
9795 cp_parser_end_tentative_firewall (parser, start, lambda_expr);
9796
9797 pop_deferring_access_checks ();
9798
9799 return lambda_expr;
9800 }
9801
9802 /* Parse the beginning of a lambda expression.
9803
9804 lambda-introducer:
9805 [ lambda-capture [opt] ]
9806
9807 LAMBDA_EXPR is the current representation of the lambda expression. */
9808
9809 static void
9810 cp_parser_lambda_introducer (cp_parser* parser, tree lambda_expr)
9811 {
9812 /* Need commas after the first capture. */
9813 bool first = true;
9814
9815 /* Eat the leading `['. */
9816 cp_parser_require (parser, CPP_OPEN_SQUARE, RT_OPEN_SQUARE);
9817
9818 /* Record default capture mode. "[&" "[=" "[&," "[=," */
9819 if (cp_lexer_next_token_is (parser->lexer, CPP_AND)
9820 && cp_lexer_peek_nth_token (parser->lexer, 2)->type != CPP_NAME)
9821 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) = CPLD_REFERENCE;
9822 else if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
9823 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) = CPLD_COPY;
9824
9825 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) != CPLD_NONE)
9826 {
9827 cp_lexer_consume_token (parser->lexer);
9828 first = false;
9829 }
9830
9831 while (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_SQUARE))
9832 {
9833 cp_token* capture_token;
9834 tree capture_id;
9835 tree capture_init_expr;
9836 cp_id_kind idk = CP_ID_KIND_NONE;
9837 bool explicit_init_p = false;
9838
9839 enum capture_kind_type
9840 {
9841 BY_COPY,
9842 BY_REFERENCE
9843 };
9844 enum capture_kind_type capture_kind = BY_COPY;
9845
9846 if (cp_lexer_next_token_is (parser->lexer, CPP_EOF))
9847 {
9848 error ("expected end of capture-list");
9849 return;
9850 }
9851
9852 if (first)
9853 first = false;
9854 else
9855 cp_parser_require (parser, CPP_COMMA, RT_COMMA);
9856
9857 /* Possibly capture `this'. */
9858 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_THIS))
9859 {
9860 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
9861 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) == CPLD_COPY)
9862 pedwarn (loc, 0, "explicit by-copy capture of %<this%> redundant "
9863 "with by-copy capture default");
9864 cp_lexer_consume_token (parser->lexer);
9865 add_capture (lambda_expr,
9866 /*id=*/this_identifier,
9867 /*initializer=*/finish_this_expr(),
9868 /*by_reference_p=*/false,
9869 explicit_init_p);
9870 continue;
9871 }
9872
9873 /* Remember whether we want to capture as a reference or not. */
9874 if (cp_lexer_next_token_is (parser->lexer, CPP_AND))
9875 {
9876 capture_kind = BY_REFERENCE;
9877 cp_lexer_consume_token (parser->lexer);
9878 }
9879
9880 /* Get the identifier. */
9881 capture_token = cp_lexer_peek_token (parser->lexer);
9882 capture_id = cp_parser_identifier (parser);
9883
9884 if (capture_id == error_mark_node)
9885 /* Would be nice to have a cp_parser_skip_to_closing_x for general
9886 delimiters, but I modified this to stop on unnested ']' as well. It
9887 was already changed to stop on unnested '}', so the
9888 "closing_parenthesis" name is no more misleading with my change. */
9889 {
9890 cp_parser_skip_to_closing_parenthesis (parser,
9891 /*recovering=*/true,
9892 /*or_comma=*/true,
9893 /*consume_paren=*/true);
9894 break;
9895 }
9896
9897 /* Find the initializer for this capture. */
9898 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ)
9899 || cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN)
9900 || cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
9901 {
9902 bool direct, non_constant;
9903 /* An explicit initializer exists. */
9904 if (cxx_dialect < cxx14)
9905 pedwarn (input_location, 0,
9906 "lambda capture initializers "
9907 "only available with -std=c++14 or -std=gnu++14");
9908 capture_init_expr = cp_parser_initializer (parser, &direct,
9909 &non_constant);
9910 explicit_init_p = true;
9911 if (capture_init_expr == NULL_TREE)
9912 {
9913 error ("empty initializer for lambda init-capture");
9914 capture_init_expr = error_mark_node;
9915 }
9916 }
9917 else
9918 {
9919 const char* error_msg;
9920
9921 /* Turn the identifier into an id-expression. */
9922 capture_init_expr
9923 = cp_parser_lookup_name_simple (parser, capture_id,
9924 capture_token->location);
9925
9926 if (capture_init_expr == error_mark_node)
9927 {
9928 unqualified_name_lookup_error (capture_id);
9929 continue;
9930 }
9931 else if (DECL_P (capture_init_expr)
9932 && (!VAR_P (capture_init_expr)
9933 && TREE_CODE (capture_init_expr) != PARM_DECL))
9934 {
9935 error_at (capture_token->location,
9936 "capture of non-variable %qD ",
9937 capture_init_expr);
9938 inform (DECL_SOURCE_LOCATION (capture_init_expr),
9939 "%q#D declared here", capture_init_expr);
9940 continue;
9941 }
9942 if (VAR_P (capture_init_expr)
9943 && decl_storage_duration (capture_init_expr) != dk_auto)
9944 {
9945 if (pedwarn (capture_token->location, 0, "capture of variable "
9946 "%qD with non-automatic storage duration",
9947 capture_init_expr))
9948 inform (DECL_SOURCE_LOCATION (capture_init_expr),
9949 "%q#D declared here", capture_init_expr);
9950 continue;
9951 }
9952
9953 capture_init_expr
9954 = finish_id_expression
9955 (capture_id,
9956 capture_init_expr,
9957 parser->scope,
9958 &idk,
9959 /*integral_constant_expression_p=*/false,
9960 /*allow_non_integral_constant_expression_p=*/false,
9961 /*non_integral_constant_expression_p=*/NULL,
9962 /*template_p=*/false,
9963 /*done=*/true,
9964 /*address_p=*/false,
9965 /*template_arg_p=*/false,
9966 &error_msg,
9967 capture_token->location);
9968
9969 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
9970 {
9971 cp_lexer_consume_token (parser->lexer);
9972 capture_init_expr = make_pack_expansion (capture_init_expr);
9973 }
9974 else
9975 check_for_bare_parameter_packs (capture_init_expr);
9976 }
9977
9978 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) != CPLD_NONE
9979 && !explicit_init_p)
9980 {
9981 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) == CPLD_COPY
9982 && capture_kind == BY_COPY)
9983 pedwarn (capture_token->location, 0, "explicit by-copy capture "
9984 "of %qD redundant with by-copy capture default",
9985 capture_id);
9986 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) == CPLD_REFERENCE
9987 && capture_kind == BY_REFERENCE)
9988 pedwarn (capture_token->location, 0, "explicit by-reference "
9989 "capture of %qD redundant with by-reference capture "
9990 "default", capture_id);
9991 }
9992
9993 add_capture (lambda_expr,
9994 capture_id,
9995 capture_init_expr,
9996 /*by_reference_p=*/capture_kind == BY_REFERENCE,
9997 explicit_init_p);
9998 }
9999
10000 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
10001 }
10002
10003 /* Parse the (optional) middle of a lambda expression.
10004
10005 lambda-declarator:
10006 < template-parameter-list [opt] >
10007 ( parameter-declaration-clause [opt] )
10008 attribute-specifier [opt]
10009 mutable [opt]
10010 exception-specification [opt]
10011 lambda-return-type-clause [opt]
10012
10013 LAMBDA_EXPR is the current representation of the lambda expression. */
10014
10015 static bool
10016 cp_parser_lambda_declarator_opt (cp_parser* parser, tree lambda_expr)
10017 {
10018 /* 5.1.1.4 of the standard says:
10019 If a lambda-expression does not include a lambda-declarator, it is as if
10020 the lambda-declarator were ().
10021 This means an empty parameter list, no attributes, and no exception
10022 specification. */
10023 tree param_list = void_list_node;
10024 tree attributes = NULL_TREE;
10025 tree exception_spec = NULL_TREE;
10026 tree template_param_list = NULL_TREE;
10027 tree tx_qual = NULL_TREE;
10028
10029 /* The template-parameter-list is optional, but must begin with
10030 an opening angle if present. */
10031 if (cp_lexer_next_token_is (parser->lexer, CPP_LESS))
10032 {
10033 if (cxx_dialect < cxx14)
10034 pedwarn (parser->lexer->next_token->location, 0,
10035 "lambda templates are only available with "
10036 "-std=c++14 or -std=gnu++14");
10037
10038 cp_lexer_consume_token (parser->lexer);
10039
10040 template_param_list = cp_parser_template_parameter_list (parser);
10041
10042 cp_parser_skip_to_end_of_template_parameter_list (parser);
10043
10044 /* We just processed one more parameter list. */
10045 ++parser->num_template_parameter_lists;
10046 }
10047
10048 /* The parameter-declaration-clause is optional (unless
10049 template-parameter-list was given), but must begin with an
10050 opening parenthesis if present. */
10051 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
10052 {
10053 cp_lexer_consume_token (parser->lexer);
10054
10055 begin_scope (sk_function_parms, /*entity=*/NULL_TREE);
10056
10057 /* Parse parameters. */
10058 param_list = cp_parser_parameter_declaration_clause (parser);
10059
10060 /* Default arguments shall not be specified in the
10061 parameter-declaration-clause of a lambda-declarator. */
10062 for (tree t = param_list; t; t = TREE_CHAIN (t))
10063 if (TREE_PURPOSE (t) && cxx_dialect < cxx14)
10064 pedwarn (DECL_SOURCE_LOCATION (TREE_VALUE (t)), OPT_Wpedantic,
10065 "default argument specified for lambda parameter");
10066
10067 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
10068
10069 attributes = cp_parser_attributes_opt (parser);
10070
10071 /* Parse optional `mutable' keyword. */
10072 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_MUTABLE))
10073 {
10074 cp_lexer_consume_token (parser->lexer);
10075 LAMBDA_EXPR_MUTABLE_P (lambda_expr) = 1;
10076 }
10077
10078 tx_qual = cp_parser_tx_qualifier_opt (parser);
10079
10080 /* Parse optional exception specification. */
10081 exception_spec = cp_parser_exception_specification_opt (parser);
10082
10083 /* Parse optional trailing return type. */
10084 if (cp_lexer_next_token_is (parser->lexer, CPP_DEREF))
10085 {
10086 cp_lexer_consume_token (parser->lexer);
10087 LAMBDA_EXPR_RETURN_TYPE (lambda_expr)
10088 = cp_parser_trailing_type_id (parser);
10089 }
10090
10091 /* The function parameters must be in scope all the way until after the
10092 trailing-return-type in case of decltype. */
10093 pop_bindings_and_leave_scope ();
10094 }
10095 else if (template_param_list != NULL_TREE) // generate diagnostic
10096 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
10097
10098 /* Create the function call operator.
10099
10100 Messing with declarators like this is no uglier than building up the
10101 FUNCTION_DECL by hand, and this is less likely to get out of sync with
10102 other code. */
10103 {
10104 cp_decl_specifier_seq return_type_specs;
10105 cp_declarator* declarator;
10106 tree fco;
10107 int quals;
10108 void *p;
10109
10110 clear_decl_specs (&return_type_specs);
10111 if (LAMBDA_EXPR_RETURN_TYPE (lambda_expr))
10112 return_type_specs.type = LAMBDA_EXPR_RETURN_TYPE (lambda_expr);
10113 else
10114 /* Maybe we will deduce the return type later. */
10115 return_type_specs.type = make_auto ();
10116
10117 p = obstack_alloc (&declarator_obstack, 0);
10118
10119 declarator = make_id_declarator (NULL_TREE, ansi_opname (CALL_EXPR),
10120 sfk_none);
10121
10122 quals = (LAMBDA_EXPR_MUTABLE_P (lambda_expr)
10123 ? TYPE_UNQUALIFIED : TYPE_QUAL_CONST);
10124 declarator = make_call_declarator (declarator, param_list, quals,
10125 VIRT_SPEC_UNSPECIFIED,
10126 REF_QUAL_NONE,
10127 tx_qual,
10128 exception_spec,
10129 /*late_return_type=*/NULL_TREE,
10130 /*requires_clause*/NULL_TREE);
10131 declarator->id_loc = LAMBDA_EXPR_LOCATION (lambda_expr);
10132
10133 fco = grokmethod (&return_type_specs,
10134 declarator,
10135 attributes);
10136 if (fco != error_mark_node)
10137 {
10138 DECL_INITIALIZED_IN_CLASS_P (fco) = 1;
10139 DECL_ARTIFICIAL (fco) = 1;
10140 /* Give the object parameter a different name. */
10141 DECL_NAME (DECL_ARGUMENTS (fco)) = get_identifier ("__closure");
10142 if (LAMBDA_EXPR_RETURN_TYPE (lambda_expr))
10143 TYPE_HAS_LATE_RETURN_TYPE (TREE_TYPE (fco)) = 1;
10144 }
10145 if (template_param_list)
10146 {
10147 fco = finish_member_template_decl (fco);
10148 finish_template_decl (template_param_list);
10149 --parser->num_template_parameter_lists;
10150 }
10151 else if (parser->fully_implicit_function_template_p)
10152 fco = finish_fully_implicit_template (parser, fco);
10153
10154 finish_member_declaration (fco);
10155
10156 obstack_free (&declarator_obstack, p);
10157
10158 return (fco != error_mark_node);
10159 }
10160 }
10161
10162 /* Parse the body of a lambda expression, which is simply
10163
10164 compound-statement
10165
10166 but which requires special handling.
10167 LAMBDA_EXPR is the current representation of the lambda expression. */
10168
10169 static void
10170 cp_parser_lambda_body (cp_parser* parser, tree lambda_expr)
10171 {
10172 bool nested = (current_function_decl != NULL_TREE);
10173 bool local_variables_forbidden_p = parser->local_variables_forbidden_p;
10174 if (nested)
10175 push_function_context ();
10176 else
10177 /* Still increment function_depth so that we don't GC in the
10178 middle of an expression. */
10179 ++function_depth;
10180 vec<tree> omp_privatization_save;
10181 save_omp_privatization_clauses (omp_privatization_save);
10182 /* Clear this in case we're in the middle of a default argument. */
10183 parser->local_variables_forbidden_p = false;
10184
10185 /* Finish the function call operator
10186 - class_specifier
10187 + late_parsing_for_member
10188 + function_definition_after_declarator
10189 + ctor_initializer_opt_and_function_body */
10190 {
10191 tree fco = lambda_function (lambda_expr);
10192 tree body;
10193 bool done = false;
10194 tree compound_stmt;
10195 tree cap;
10196
10197 /* Let the front end know that we are going to be defining this
10198 function. */
10199 start_preparsed_function (fco,
10200 NULL_TREE,
10201 SF_PRE_PARSED | SF_INCLASS_INLINE);
10202
10203 start_lambda_scope (fco);
10204 body = begin_function_body ();
10205
10206 if (!cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
10207 goto out;
10208
10209 /* Push the proxies for any explicit captures. */
10210 for (cap = LAMBDA_EXPR_CAPTURE_LIST (lambda_expr); cap;
10211 cap = TREE_CHAIN (cap))
10212 build_capture_proxy (TREE_PURPOSE (cap));
10213
10214 compound_stmt = begin_compound_stmt (0);
10215
10216 /* 5.1.1.4 of the standard says:
10217 If a lambda-expression does not include a trailing-return-type, it
10218 is as if the trailing-return-type denotes the following type:
10219 * if the compound-statement is of the form
10220 { return attribute-specifier [opt] expression ; }
10221 the type of the returned expression after lvalue-to-rvalue
10222 conversion (_conv.lval_ 4.1), array-to-pointer conversion
10223 (_conv.array_ 4.2), and function-to-pointer conversion
10224 (_conv.func_ 4.3);
10225 * otherwise, void. */
10226
10227 /* In a lambda that has neither a lambda-return-type-clause
10228 nor a deducible form, errors should be reported for return statements
10229 in the body. Since we used void as the placeholder return type, parsing
10230 the body as usual will give such desired behavior. */
10231 if (!LAMBDA_EXPR_RETURN_TYPE (lambda_expr)
10232 && cp_lexer_peek_nth_token (parser->lexer, 1)->keyword == RID_RETURN
10233 && cp_lexer_peek_nth_token (parser->lexer, 2)->type != CPP_SEMICOLON)
10234 {
10235 tree expr = NULL_TREE;
10236 cp_id_kind idk = CP_ID_KIND_NONE;
10237
10238 /* Parse tentatively in case there's more after the initial return
10239 statement. */
10240 cp_parser_parse_tentatively (parser);
10241
10242 cp_parser_require_keyword (parser, RID_RETURN, RT_RETURN);
10243
10244 expr = cp_parser_expression (parser, &idk);
10245
10246 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
10247 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
10248
10249 if (cp_parser_parse_definitely (parser))
10250 {
10251 if (!processing_template_decl)
10252 {
10253 tree type = lambda_return_type (expr);
10254 apply_deduced_return_type (fco, type);
10255 if (type == error_mark_node)
10256 expr = error_mark_node;
10257 }
10258
10259 /* Will get error here if type not deduced yet. */
10260 finish_return_stmt (expr);
10261
10262 done = true;
10263 }
10264 }
10265
10266 if (!done)
10267 {
10268 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_LABEL))
10269 cp_parser_label_declaration (parser);
10270 cp_parser_statement_seq_opt (parser, NULL_TREE);
10271 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
10272 }
10273
10274 finish_compound_stmt (compound_stmt);
10275
10276 out:
10277 finish_function_body (body);
10278 finish_lambda_scope ();
10279
10280 /* Finish the function and generate code for it if necessary. */
10281 tree fn = finish_function (/*inline*/2);
10282
10283 /* Only expand if the call op is not a template. */
10284 if (!DECL_TEMPLATE_INFO (fco))
10285 expand_or_defer_fn (fn);
10286 }
10287
10288 restore_omp_privatization_clauses (omp_privatization_save);
10289 parser->local_variables_forbidden_p = local_variables_forbidden_p;
10290 if (nested)
10291 pop_function_context();
10292 else
10293 --function_depth;
10294 }
10295
10296 /* Statements [gram.stmt.stmt] */
10297
10298 /* Parse a statement.
10299
10300 statement:
10301 labeled-statement
10302 expression-statement
10303 compound-statement
10304 selection-statement
10305 iteration-statement
10306 jump-statement
10307 declaration-statement
10308 try-block
10309
10310 C++11:
10311
10312 statement:
10313 labeled-statement
10314 attribute-specifier-seq (opt) expression-statement
10315 attribute-specifier-seq (opt) compound-statement
10316 attribute-specifier-seq (opt) selection-statement
10317 attribute-specifier-seq (opt) iteration-statement
10318 attribute-specifier-seq (opt) jump-statement
10319 declaration-statement
10320 attribute-specifier-seq (opt) try-block
10321
10322 TM Extension:
10323
10324 statement:
10325 atomic-statement
10326
10327 IN_COMPOUND is true when the statement is nested inside a
10328 cp_parser_compound_statement; this matters for certain pragmas.
10329
10330 If IF_P is not NULL, *IF_P is set to indicate whether the statement
10331 is a (possibly labeled) if statement which is not enclosed in braces
10332 and has an else clause. This is used to implement -Wparentheses.
10333
10334 CHAIN is a vector of if-else-if conditions. */
10335
10336 static void
10337 cp_parser_statement (cp_parser* parser, tree in_statement_expr,
10338 bool in_compound, bool *if_p, vec<tree> *chain)
10339 {
10340 tree statement, std_attrs = NULL_TREE;
10341 cp_token *token;
10342 location_t statement_location, attrs_location;
10343
10344 restart:
10345 if (if_p != NULL)
10346 *if_p = false;
10347 /* There is no statement yet. */
10348 statement = NULL_TREE;
10349
10350 saved_token_sentinel saved_tokens (parser->lexer);
10351 attrs_location = cp_lexer_peek_token (parser->lexer)->location;
10352 if (c_dialect_objc ())
10353 /* In obj-c++, seeing '[[' might be the either the beginning of
10354 c++11 attributes, or a nested objc-message-expression. So
10355 let's parse the c++11 attributes tentatively. */
10356 cp_parser_parse_tentatively (parser);
10357 std_attrs = cp_parser_std_attribute_spec_seq (parser);
10358 if (c_dialect_objc ())
10359 {
10360 if (!cp_parser_parse_definitely (parser))
10361 std_attrs = NULL_TREE;
10362 }
10363
10364 /* Peek at the next token. */
10365 token = cp_lexer_peek_token (parser->lexer);
10366 /* Remember the location of the first token in the statement. */
10367 statement_location = token->location;
10368 /* If this is a keyword, then that will often determine what kind of
10369 statement we have. */
10370 if (token->type == CPP_KEYWORD)
10371 {
10372 enum rid keyword = token->keyword;
10373
10374 switch (keyword)
10375 {
10376 case RID_CASE:
10377 case RID_DEFAULT:
10378 /* Looks like a labeled-statement with a case label.
10379 Parse the label, and then use tail recursion to parse
10380 the statement. */
10381 cp_parser_label_for_labeled_statement (parser, std_attrs);
10382 in_compound = false;
10383 goto restart;
10384
10385 case RID_IF:
10386 case RID_SWITCH:
10387 statement = cp_parser_selection_statement (parser, if_p, chain);
10388 break;
10389
10390 case RID_WHILE:
10391 case RID_DO:
10392 case RID_FOR:
10393 statement = cp_parser_iteration_statement (parser, if_p, false);
10394 break;
10395
10396 case RID_CILK_FOR:
10397 if (!flag_cilkplus)
10398 {
10399 error_at (cp_lexer_peek_token (parser->lexer)->location,
10400 "-fcilkplus must be enabled to use %<_Cilk_for%>");
10401 cp_lexer_consume_token (parser->lexer);
10402 statement = error_mark_node;
10403 }
10404 else
10405 statement = cp_parser_cilk_for (parser, integer_zero_node, if_p);
10406 break;
10407
10408 case RID_BREAK:
10409 case RID_CONTINUE:
10410 case RID_RETURN:
10411 case RID_GOTO:
10412 statement = cp_parser_jump_statement (parser);
10413 break;
10414
10415 case RID_CILK_SYNC:
10416 cp_lexer_consume_token (parser->lexer);
10417 if (flag_cilkplus)
10418 {
10419 tree sync_expr = build_cilk_sync ();
10420 SET_EXPR_LOCATION (sync_expr,
10421 token->location);
10422 statement = finish_expr_stmt (sync_expr);
10423 }
10424 else
10425 {
10426 error_at (token->location, "-fcilkplus must be enabled to use"
10427 " %<_Cilk_sync%>");
10428 statement = error_mark_node;
10429 }
10430 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
10431 break;
10432
10433 /* Objective-C++ exception-handling constructs. */
10434 case RID_AT_TRY:
10435 case RID_AT_CATCH:
10436 case RID_AT_FINALLY:
10437 case RID_AT_SYNCHRONIZED:
10438 case RID_AT_THROW:
10439 statement = cp_parser_objc_statement (parser);
10440 break;
10441
10442 case RID_TRY:
10443 statement = cp_parser_try_block (parser);
10444 break;
10445
10446 case RID_NAMESPACE:
10447 /* This must be a namespace alias definition. */
10448 cp_parser_declaration_statement (parser);
10449 return;
10450
10451 case RID_TRANSACTION_ATOMIC:
10452 case RID_TRANSACTION_RELAXED:
10453 case RID_SYNCHRONIZED:
10454 case RID_ATOMIC_NOEXCEPT:
10455 case RID_ATOMIC_CANCEL:
10456 statement = cp_parser_transaction (parser, token);
10457 break;
10458 case RID_TRANSACTION_CANCEL:
10459 statement = cp_parser_transaction_cancel (parser);
10460 break;
10461
10462 default:
10463 /* It might be a keyword like `int' that can start a
10464 declaration-statement. */
10465 break;
10466 }
10467 }
10468 else if (token->type == CPP_NAME)
10469 {
10470 /* If the next token is a `:', then we are looking at a
10471 labeled-statement. */
10472 token = cp_lexer_peek_nth_token (parser->lexer, 2);
10473 if (token->type == CPP_COLON)
10474 {
10475 /* Looks like a labeled-statement with an ordinary label.
10476 Parse the label, and then use tail recursion to parse
10477 the statement. */
10478
10479 cp_parser_label_for_labeled_statement (parser, std_attrs);
10480 in_compound = false;
10481 goto restart;
10482 }
10483 }
10484 /* Anything that starts with a `{' must be a compound-statement. */
10485 else if (token->type == CPP_OPEN_BRACE)
10486 statement = cp_parser_compound_statement (parser, NULL, BCS_NORMAL, false);
10487 /* CPP_PRAGMA is a #pragma inside a function body, which constitutes
10488 a statement all its own. */
10489 else if (token->type == CPP_PRAGMA)
10490 {
10491 /* Only certain OpenMP pragmas are attached to statements, and thus
10492 are considered statements themselves. All others are not. In
10493 the context of a compound, accept the pragma as a "statement" and
10494 return so that we can check for a close brace. Otherwise we
10495 require a real statement and must go back and read one. */
10496 if (in_compound)
10497 cp_parser_pragma (parser, pragma_compound, if_p);
10498 else if (!cp_parser_pragma (parser, pragma_stmt, if_p))
10499 goto restart;
10500 return;
10501 }
10502 else if (token->type == CPP_EOF)
10503 {
10504 cp_parser_error (parser, "expected statement");
10505 return;
10506 }
10507
10508 /* Everything else must be a declaration-statement or an
10509 expression-statement. Try for the declaration-statement
10510 first, unless we are looking at a `;', in which case we know that
10511 we have an expression-statement. */
10512 if (!statement)
10513 {
10514 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
10515 {
10516 if (std_attrs != NULL_TREE)
10517 {
10518 /* Attributes should be parsed as part of the the
10519 declaration, so let's un-parse them. */
10520 saved_tokens.rollback();
10521 std_attrs = NULL_TREE;
10522 }
10523
10524 cp_parser_parse_tentatively (parser);
10525 /* Try to parse the declaration-statement. */
10526 cp_parser_declaration_statement (parser);
10527 /* If that worked, we're done. */
10528 if (cp_parser_parse_definitely (parser))
10529 return;
10530 }
10531 /* Look for an expression-statement instead. */
10532 statement = cp_parser_expression_statement (parser, in_statement_expr);
10533 }
10534
10535 /* Set the line number for the statement. */
10536 if (statement && STATEMENT_CODE_P (TREE_CODE (statement)))
10537 SET_EXPR_LOCATION (statement, statement_location);
10538
10539 /* Note that for now, we don't do anything with c++11 statements
10540 parsed at this level. */
10541 if (std_attrs != NULL_TREE)
10542 warning_at (attrs_location,
10543 OPT_Wattributes,
10544 "attributes at the beginning of statement are ignored");
10545 }
10546
10547 /* Parse the label for a labeled-statement, i.e.
10548
10549 identifier :
10550 case constant-expression :
10551 default :
10552
10553 GNU Extension:
10554 case constant-expression ... constant-expression : statement
10555
10556 When a label is parsed without errors, the label is added to the
10557 parse tree by the finish_* functions, so this function doesn't
10558 have to return the label. */
10559
10560 static void
10561 cp_parser_label_for_labeled_statement (cp_parser* parser, tree attributes)
10562 {
10563 cp_token *token;
10564 tree label = NULL_TREE;
10565 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
10566
10567 /* The next token should be an identifier. */
10568 token = cp_lexer_peek_token (parser->lexer);
10569 if (token->type != CPP_NAME
10570 && token->type != CPP_KEYWORD)
10571 {
10572 cp_parser_error (parser, "expected labeled-statement");
10573 return;
10574 }
10575
10576 parser->colon_corrects_to_scope_p = false;
10577 switch (token->keyword)
10578 {
10579 case RID_CASE:
10580 {
10581 tree expr, expr_hi;
10582 cp_token *ellipsis;
10583
10584 /* Consume the `case' token. */
10585 cp_lexer_consume_token (parser->lexer);
10586 /* Parse the constant-expression. */
10587 expr = cp_parser_constant_expression (parser);
10588 if (check_for_bare_parameter_packs (expr))
10589 expr = error_mark_node;
10590
10591 ellipsis = cp_lexer_peek_token (parser->lexer);
10592 if (ellipsis->type == CPP_ELLIPSIS)
10593 {
10594 /* Consume the `...' token. */
10595 cp_lexer_consume_token (parser->lexer);
10596 expr_hi = cp_parser_constant_expression (parser);
10597 if (check_for_bare_parameter_packs (expr_hi))
10598 expr_hi = error_mark_node;
10599
10600 /* We don't need to emit warnings here, as the common code
10601 will do this for us. */
10602 }
10603 else
10604 expr_hi = NULL_TREE;
10605
10606 if (parser->in_switch_statement_p)
10607 finish_case_label (token->location, expr, expr_hi);
10608 else
10609 error_at (token->location,
10610 "case label %qE not within a switch statement",
10611 expr);
10612 }
10613 break;
10614
10615 case RID_DEFAULT:
10616 /* Consume the `default' token. */
10617 cp_lexer_consume_token (parser->lexer);
10618
10619 if (parser->in_switch_statement_p)
10620 finish_case_label (token->location, NULL_TREE, NULL_TREE);
10621 else
10622 error_at (token->location, "case label not within a switch statement");
10623 break;
10624
10625 default:
10626 /* Anything else must be an ordinary label. */
10627 label = finish_label_stmt (cp_parser_identifier (parser));
10628 break;
10629 }
10630
10631 /* Require the `:' token. */
10632 cp_parser_require (parser, CPP_COLON, RT_COLON);
10633
10634 /* An ordinary label may optionally be followed by attributes.
10635 However, this is only permitted if the attributes are then
10636 followed by a semicolon. This is because, for backward
10637 compatibility, when parsing
10638 lab: __attribute__ ((unused)) int i;
10639 we want the attribute to attach to "i", not "lab". */
10640 if (label != NULL_TREE
10641 && cp_next_tokens_can_be_gnu_attribute_p (parser))
10642 {
10643 tree attrs;
10644 cp_parser_parse_tentatively (parser);
10645 attrs = cp_parser_gnu_attributes_opt (parser);
10646 if (attrs == NULL_TREE
10647 || cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
10648 cp_parser_abort_tentative_parse (parser);
10649 else if (!cp_parser_parse_definitely (parser))
10650 ;
10651 else
10652 attributes = chainon (attributes, attrs);
10653 }
10654
10655 if (attributes != NULL_TREE)
10656 cplus_decl_attributes (&label, attributes, 0);
10657
10658 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
10659 }
10660
10661 /* Parse an expression-statement.
10662
10663 expression-statement:
10664 expression [opt] ;
10665
10666 Returns the new EXPR_STMT -- or NULL_TREE if the expression
10667 statement consists of nothing more than an `;'. IN_STATEMENT_EXPR_P
10668 indicates whether this expression-statement is part of an
10669 expression statement. */
10670
10671 static tree
10672 cp_parser_expression_statement (cp_parser* parser, tree in_statement_expr)
10673 {
10674 tree statement = NULL_TREE;
10675 cp_token *token = cp_lexer_peek_token (parser->lexer);
10676
10677 /* If the next token is a ';', then there is no expression
10678 statement. */
10679 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
10680 {
10681 statement = cp_parser_expression (parser);
10682 if (statement == error_mark_node
10683 && !cp_parser_uncommitted_to_tentative_parse_p (parser))
10684 {
10685 cp_parser_skip_to_end_of_block_or_statement (parser);
10686 return error_mark_node;
10687 }
10688 }
10689
10690 /* Give a helpful message for "A<T>::type t;" and the like. */
10691 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON)
10692 && !cp_parser_uncommitted_to_tentative_parse_p (parser))
10693 {
10694 if (TREE_CODE (statement) == SCOPE_REF)
10695 error_at (token->location, "need %<typename%> before %qE because "
10696 "%qT is a dependent scope",
10697 statement, TREE_OPERAND (statement, 0));
10698 else if (is_overloaded_fn (statement)
10699 && DECL_CONSTRUCTOR_P (get_first_fn (statement)))
10700 {
10701 /* A::A a; */
10702 tree fn = get_first_fn (statement);
10703 error_at (token->location,
10704 "%<%T::%D%> names the constructor, not the type",
10705 DECL_CONTEXT (fn), DECL_NAME (fn));
10706 }
10707 }
10708
10709 /* Consume the final `;'. */
10710 cp_parser_consume_semicolon_at_end_of_statement (parser);
10711
10712 if (in_statement_expr
10713 && cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
10714 /* This is the final expression statement of a statement
10715 expression. */
10716 statement = finish_stmt_expr_expr (statement, in_statement_expr);
10717 else if (statement)
10718 statement = finish_expr_stmt (statement);
10719
10720 return statement;
10721 }
10722
10723 /* Parse a compound-statement.
10724
10725 compound-statement:
10726 { statement-seq [opt] }
10727
10728 GNU extension:
10729
10730 compound-statement:
10731 { label-declaration-seq [opt] statement-seq [opt] }
10732
10733 label-declaration-seq:
10734 label-declaration
10735 label-declaration-seq label-declaration
10736
10737 Returns a tree representing the statement. */
10738
10739 static tree
10740 cp_parser_compound_statement (cp_parser *parser, tree in_statement_expr,
10741 int bcs_flags, bool function_body)
10742 {
10743 tree compound_stmt;
10744
10745 /* Consume the `{'. */
10746 if (!cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
10747 return error_mark_node;
10748 if (DECL_DECLARED_CONSTEXPR_P (current_function_decl)
10749 && !function_body && cxx_dialect < cxx14)
10750 pedwarn (input_location, OPT_Wpedantic,
10751 "compound-statement in constexpr function");
10752 /* Begin the compound-statement. */
10753 compound_stmt = begin_compound_stmt (bcs_flags);
10754 /* If the next keyword is `__label__' we have a label declaration. */
10755 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_LABEL))
10756 cp_parser_label_declaration (parser);
10757 /* Parse an (optional) statement-seq. */
10758 cp_parser_statement_seq_opt (parser, in_statement_expr);
10759 /* Finish the compound-statement. */
10760 finish_compound_stmt (compound_stmt);
10761 /* Consume the `}'. */
10762 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
10763
10764 return compound_stmt;
10765 }
10766
10767 /* Parse an (optional) statement-seq.
10768
10769 statement-seq:
10770 statement
10771 statement-seq [opt] statement */
10772
10773 static void
10774 cp_parser_statement_seq_opt (cp_parser* parser, tree in_statement_expr)
10775 {
10776 /* Scan statements until there aren't any more. */
10777 while (true)
10778 {
10779 cp_token *token = cp_lexer_peek_token (parser->lexer);
10780
10781 /* If we are looking at a `}', then we have run out of
10782 statements; the same is true if we have reached the end
10783 of file, or have stumbled upon a stray '@end'. */
10784 if (token->type == CPP_CLOSE_BRACE
10785 || token->type == CPP_EOF
10786 || token->type == CPP_PRAGMA_EOL
10787 || (token->type == CPP_KEYWORD && token->keyword == RID_AT_END))
10788 break;
10789
10790 /* If we are in a compound statement and find 'else' then
10791 something went wrong. */
10792 else if (token->type == CPP_KEYWORD && token->keyword == RID_ELSE)
10793 {
10794 if (parser->in_statement & IN_IF_STMT)
10795 break;
10796 else
10797 {
10798 token = cp_lexer_consume_token (parser->lexer);
10799 error_at (token->location, "%<else%> without a previous %<if%>");
10800 }
10801 }
10802
10803 /* Parse the statement. */
10804 cp_parser_statement (parser, in_statement_expr, true, NULL);
10805 }
10806 }
10807
10808 /* Parse a selection-statement.
10809
10810 selection-statement:
10811 if ( condition ) statement
10812 if ( condition ) statement else statement
10813 switch ( condition ) statement
10814
10815 Returns the new IF_STMT or SWITCH_STMT.
10816
10817 If IF_P is not NULL, *IF_P is set to indicate whether the statement
10818 is a (possibly labeled) if statement which is not enclosed in
10819 braces and has an else clause. This is used to implement
10820 -Wparentheses.
10821
10822 CHAIN is a vector of if-else-if conditions. This is used to implement
10823 -Wduplicated-cond. */
10824
10825 static tree
10826 cp_parser_selection_statement (cp_parser* parser, bool *if_p,
10827 vec<tree> *chain)
10828 {
10829 cp_token *token;
10830 enum rid keyword;
10831 token_indent_info guard_tinfo;
10832
10833 if (if_p != NULL)
10834 *if_p = false;
10835
10836 /* Peek at the next token. */
10837 token = cp_parser_require (parser, CPP_KEYWORD, RT_SELECT);
10838 guard_tinfo = get_token_indent_info (token);
10839
10840 /* See what kind of keyword it is. */
10841 keyword = token->keyword;
10842 switch (keyword)
10843 {
10844 case RID_IF:
10845 case RID_SWITCH:
10846 {
10847 tree statement;
10848 tree condition;
10849
10850 /* Look for the `('. */
10851 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
10852 {
10853 cp_parser_skip_to_end_of_statement (parser);
10854 return error_mark_node;
10855 }
10856
10857 /* Begin the selection-statement. */
10858 if (keyword == RID_IF)
10859 statement = begin_if_stmt ();
10860 else
10861 statement = begin_switch_stmt ();
10862
10863 /* Parse the condition. */
10864 condition = cp_parser_condition (parser);
10865 /* Look for the `)'. */
10866 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
10867 cp_parser_skip_to_closing_parenthesis (parser, true, false,
10868 /*consume_paren=*/true);
10869
10870 if (keyword == RID_IF)
10871 {
10872 bool nested_if;
10873 unsigned char in_statement;
10874
10875 /* Add the condition. */
10876 finish_if_stmt_cond (condition, statement);
10877
10878 if (warn_duplicated_cond)
10879 warn_duplicated_cond_add_or_warn (token->location, condition,
10880 &chain);
10881
10882 /* Parse the then-clause. */
10883 in_statement = parser->in_statement;
10884 parser->in_statement |= IN_IF_STMT;
10885 cp_parser_implicitly_scoped_statement (parser, &nested_if,
10886 guard_tinfo);
10887 parser->in_statement = in_statement;
10888
10889 finish_then_clause (statement);
10890
10891 /* If the next token is `else', parse the else-clause. */
10892 if (cp_lexer_next_token_is_keyword (parser->lexer,
10893 RID_ELSE))
10894 {
10895 guard_tinfo
10896 = get_token_indent_info (cp_lexer_peek_token (parser->lexer));
10897 /* Consume the `else' keyword. */
10898 cp_lexer_consume_token (parser->lexer);
10899 if (warn_duplicated_cond)
10900 {
10901 if (cp_lexer_next_token_is_keyword (parser->lexer,
10902 RID_IF)
10903 && chain == NULL)
10904 {
10905 /* We've got "if (COND) else if (COND2)". Start
10906 the condition chain and add COND as the first
10907 element. */
10908 chain = new vec<tree> ();
10909 if (!CONSTANT_CLASS_P (condition)
10910 && !TREE_SIDE_EFFECTS (condition))
10911 {
10912 /* Wrap it in a NOP_EXPR so that we can set the
10913 location of the condition. */
10914 tree e = build1 (NOP_EXPR, TREE_TYPE (condition),
10915 condition);
10916 SET_EXPR_LOCATION (e, token->location);
10917 chain->safe_push (e);
10918 }
10919 }
10920 else if (!cp_lexer_next_token_is_keyword (parser->lexer,
10921 RID_IF))
10922 {
10923 /* This is if-else without subsequent if. Zap the
10924 condition chain; we would have already warned at
10925 this point. */
10926 delete chain;
10927 chain = NULL;
10928 }
10929 }
10930 begin_else_clause (statement);
10931 /* Parse the else-clause. */
10932 cp_parser_implicitly_scoped_statement (parser, NULL,
10933 guard_tinfo, chain);
10934
10935 finish_else_clause (statement);
10936
10937 /* If we are currently parsing a then-clause, then
10938 IF_P will not be NULL. We set it to true to
10939 indicate that this if statement has an else clause.
10940 This may trigger the Wparentheses warning below
10941 when we get back up to the parent if statement. */
10942 if (if_p != NULL)
10943 *if_p = true;
10944 }
10945 else
10946 {
10947 /* This if statement does not have an else clause. If
10948 NESTED_IF is true, then the then-clause has an if
10949 statement which does have an else clause. We warn
10950 about the potential ambiguity. */
10951 if (nested_if)
10952 warning_at (EXPR_LOCATION (statement), OPT_Wdangling_else,
10953 "suggest explicit braces to avoid ambiguous"
10954 " %<else%>");
10955 if (warn_duplicated_cond)
10956 {
10957 /* We don't need the condition chain anymore. */
10958 delete chain;
10959 chain = NULL;
10960 }
10961 }
10962
10963 /* Now we're all done with the if-statement. */
10964 finish_if_stmt (statement);
10965 }
10966 else
10967 {
10968 bool in_switch_statement_p;
10969 unsigned char in_statement;
10970
10971 /* Add the condition. */
10972 finish_switch_cond (condition, statement);
10973
10974 /* Parse the body of the switch-statement. */
10975 in_switch_statement_p = parser->in_switch_statement_p;
10976 in_statement = parser->in_statement;
10977 parser->in_switch_statement_p = true;
10978 parser->in_statement |= IN_SWITCH_STMT;
10979 cp_parser_implicitly_scoped_statement (parser, if_p,
10980 guard_tinfo);
10981 parser->in_switch_statement_p = in_switch_statement_p;
10982 parser->in_statement = in_statement;
10983
10984 /* Now we're all done with the switch-statement. */
10985 finish_switch_stmt (statement);
10986 }
10987
10988 return statement;
10989 }
10990 break;
10991
10992 default:
10993 cp_parser_error (parser, "expected selection-statement");
10994 return error_mark_node;
10995 }
10996 }
10997
10998 /* Parse a condition.
10999
11000 condition:
11001 expression
11002 type-specifier-seq declarator = initializer-clause
11003 type-specifier-seq declarator braced-init-list
11004
11005 GNU Extension:
11006
11007 condition:
11008 type-specifier-seq declarator asm-specification [opt]
11009 attributes [opt] = assignment-expression
11010
11011 Returns the expression that should be tested. */
11012
11013 static tree
11014 cp_parser_condition (cp_parser* parser)
11015 {
11016 cp_decl_specifier_seq type_specifiers;
11017 const char *saved_message;
11018 int declares_class_or_enum;
11019
11020 /* Try the declaration first. */
11021 cp_parser_parse_tentatively (parser);
11022 /* New types are not allowed in the type-specifier-seq for a
11023 condition. */
11024 saved_message = parser->type_definition_forbidden_message;
11025 parser->type_definition_forbidden_message
11026 = G_("types may not be defined in conditions");
11027 /* Parse the type-specifier-seq. */
11028 cp_parser_decl_specifier_seq (parser,
11029 CP_PARSER_FLAGS_ONLY_TYPE_OR_CONSTEXPR,
11030 &type_specifiers,
11031 &declares_class_or_enum);
11032 /* Restore the saved message. */
11033 parser->type_definition_forbidden_message = saved_message;
11034 /* If all is well, we might be looking at a declaration. */
11035 if (!cp_parser_error_occurred (parser))
11036 {
11037 tree decl;
11038 tree asm_specification;
11039 tree attributes;
11040 cp_declarator *declarator;
11041 tree initializer = NULL_TREE;
11042
11043 /* Parse the declarator. */
11044 declarator = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
11045 /*ctor_dtor_or_conv_p=*/NULL,
11046 /*parenthesized_p=*/NULL,
11047 /*member_p=*/false,
11048 /*friend_p=*/false);
11049 /* Parse the attributes. */
11050 attributes = cp_parser_attributes_opt (parser);
11051 /* Parse the asm-specification. */
11052 asm_specification = cp_parser_asm_specification_opt (parser);
11053 /* If the next token is not an `=' or '{', then we might still be
11054 looking at an expression. For example:
11055
11056 if (A(a).x)
11057
11058 looks like a decl-specifier-seq and a declarator -- but then
11059 there is no `=', so this is an expression. */
11060 if (cp_lexer_next_token_is_not (parser->lexer, CPP_EQ)
11061 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE))
11062 cp_parser_simulate_error (parser);
11063
11064 /* If we did see an `=' or '{', then we are looking at a declaration
11065 for sure. */
11066 if (cp_parser_parse_definitely (parser))
11067 {
11068 tree pushed_scope;
11069 bool non_constant_p;
11070 bool flags = LOOKUP_ONLYCONVERTING;
11071
11072 /* Create the declaration. */
11073 decl = start_decl (declarator, &type_specifiers,
11074 /*initialized_p=*/true,
11075 attributes, /*prefix_attributes=*/NULL_TREE,
11076 &pushed_scope);
11077
11078 /* Parse the initializer. */
11079 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
11080 {
11081 initializer = cp_parser_braced_list (parser, &non_constant_p);
11082 CONSTRUCTOR_IS_DIRECT_INIT (initializer) = 1;
11083 flags = 0;
11084 }
11085 else
11086 {
11087 /* Consume the `='. */
11088 cp_parser_require (parser, CPP_EQ, RT_EQ);
11089 initializer = cp_parser_initializer_clause (parser, &non_constant_p);
11090 }
11091 if (BRACE_ENCLOSED_INITIALIZER_P (initializer))
11092 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
11093
11094 /* Process the initializer. */
11095 cp_finish_decl (decl,
11096 initializer, !non_constant_p,
11097 asm_specification,
11098 flags);
11099
11100 if (pushed_scope)
11101 pop_scope (pushed_scope);
11102
11103 return convert_from_reference (decl);
11104 }
11105 }
11106 /* If we didn't even get past the declarator successfully, we are
11107 definitely not looking at a declaration. */
11108 else
11109 cp_parser_abort_tentative_parse (parser);
11110
11111 /* Otherwise, we are looking at an expression. */
11112 return cp_parser_expression (parser);
11113 }
11114
11115 /* Parses a for-statement or range-for-statement until the closing ')',
11116 not included. */
11117
11118 static tree
11119 cp_parser_for (cp_parser *parser, bool ivdep)
11120 {
11121 tree init, scope, decl;
11122 bool is_range_for;
11123
11124 /* Begin the for-statement. */
11125 scope = begin_for_scope (&init);
11126
11127 /* Parse the initialization. */
11128 is_range_for = cp_parser_for_init_statement (parser, &decl);
11129
11130 if (is_range_for)
11131 return cp_parser_range_for (parser, scope, init, decl, ivdep);
11132 else
11133 return cp_parser_c_for (parser, scope, init, ivdep);
11134 }
11135
11136 static tree
11137 cp_parser_c_for (cp_parser *parser, tree scope, tree init, bool ivdep)
11138 {
11139 /* Normal for loop */
11140 tree condition = NULL_TREE;
11141 tree expression = NULL_TREE;
11142 tree stmt;
11143
11144 stmt = begin_for_stmt (scope, init);
11145 /* The for-init-statement has already been parsed in
11146 cp_parser_for_init_statement, so no work is needed here. */
11147 finish_for_init_stmt (stmt);
11148
11149 /* If there's a condition, process it. */
11150 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
11151 condition = cp_parser_condition (parser);
11152 else if (ivdep)
11153 {
11154 cp_parser_error (parser, "missing loop condition in loop with "
11155 "%<GCC ivdep%> pragma");
11156 condition = error_mark_node;
11157 }
11158 finish_for_cond (condition, stmt, ivdep);
11159 /* Look for the `;'. */
11160 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
11161
11162 /* If there's an expression, process it. */
11163 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN))
11164 expression = cp_parser_expression (parser);
11165 finish_for_expr (expression, stmt);
11166
11167 return stmt;
11168 }
11169
11170 /* Tries to parse a range-based for-statement:
11171
11172 range-based-for:
11173 decl-specifier-seq declarator : expression
11174
11175 The decl-specifier-seq declarator and the `:' are already parsed by
11176 cp_parser_for_init_statement. If processing_template_decl it returns a
11177 newly created RANGE_FOR_STMT; if not, it is converted to a
11178 regular FOR_STMT. */
11179
11180 static tree
11181 cp_parser_range_for (cp_parser *parser, tree scope, tree init, tree range_decl,
11182 bool ivdep)
11183 {
11184 tree stmt, range_expr;
11185
11186 /* Get the range declaration momentarily out of the way so that
11187 the range expression doesn't clash with it. */
11188 if (range_decl != error_mark_node)
11189 pop_binding (DECL_NAME (range_decl), range_decl);
11190
11191 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
11192 {
11193 bool expr_non_constant_p;
11194 range_expr = cp_parser_braced_list (parser, &expr_non_constant_p);
11195 }
11196 else
11197 range_expr = cp_parser_expression (parser);
11198
11199 /* Put the range declaration back into scope. */
11200 if (range_decl != error_mark_node)
11201 push_binding (DECL_NAME (range_decl), range_decl, current_binding_level);
11202
11203 /* If in template, STMT is converted to a normal for-statement
11204 at instantiation. If not, it is done just ahead. */
11205 if (processing_template_decl)
11206 {
11207 if (check_for_bare_parameter_packs (range_expr))
11208 range_expr = error_mark_node;
11209 stmt = begin_range_for_stmt (scope, init);
11210 if (ivdep)
11211 RANGE_FOR_IVDEP (stmt) = 1;
11212 finish_range_for_decl (stmt, range_decl, range_expr);
11213 if (!type_dependent_expression_p (range_expr)
11214 /* do_auto_deduction doesn't mess with template init-lists. */
11215 && !BRACE_ENCLOSED_INITIALIZER_P (range_expr))
11216 do_range_for_auto_deduction (range_decl, range_expr);
11217 }
11218 else
11219 {
11220 stmt = begin_for_stmt (scope, init);
11221 stmt = cp_convert_range_for (stmt, range_decl, range_expr, ivdep);
11222 }
11223 return stmt;
11224 }
11225
11226 /* Subroutine of cp_convert_range_for: given the initializer expression,
11227 builds up the range temporary. */
11228
11229 static tree
11230 build_range_temp (tree range_expr)
11231 {
11232 tree range_type, range_temp;
11233
11234 /* Find out the type deduced by the declaration
11235 `auto &&__range = range_expr'. */
11236 range_type = cp_build_reference_type (make_auto (), true);
11237 range_type = do_auto_deduction (range_type, range_expr,
11238 type_uses_auto (range_type));
11239
11240 /* Create the __range variable. */
11241 range_temp = build_decl (input_location, VAR_DECL,
11242 get_identifier ("__for_range"), range_type);
11243 TREE_USED (range_temp) = 1;
11244 DECL_ARTIFICIAL (range_temp) = 1;
11245
11246 return range_temp;
11247 }
11248
11249 /* Used by cp_parser_range_for in template context: we aren't going to
11250 do a full conversion yet, but we still need to resolve auto in the
11251 type of the for-range-declaration if present. This is basically
11252 a shortcut version of cp_convert_range_for. */
11253
11254 static void
11255 do_range_for_auto_deduction (tree decl, tree range_expr)
11256 {
11257 tree auto_node = type_uses_auto (TREE_TYPE (decl));
11258 if (auto_node)
11259 {
11260 tree begin_dummy, end_dummy, range_temp, iter_type, iter_decl;
11261 range_temp = convert_from_reference (build_range_temp (range_expr));
11262 iter_type = (cp_parser_perform_range_for_lookup
11263 (range_temp, &begin_dummy, &end_dummy));
11264 if (iter_type)
11265 {
11266 iter_decl = build_decl (input_location, VAR_DECL, NULL_TREE,
11267 iter_type);
11268 iter_decl = build_x_indirect_ref (input_location, iter_decl, RO_NULL,
11269 tf_warning_or_error);
11270 TREE_TYPE (decl) = do_auto_deduction (TREE_TYPE (decl),
11271 iter_decl, auto_node);
11272 }
11273 }
11274 }
11275
11276 /* Converts a range-based for-statement into a normal
11277 for-statement, as per the definition.
11278
11279 for (RANGE_DECL : RANGE_EXPR)
11280 BLOCK
11281
11282 should be equivalent to:
11283
11284 {
11285 auto &&__range = RANGE_EXPR;
11286 for (auto __begin = BEGIN_EXPR, end = END_EXPR;
11287 __begin != __end;
11288 ++__begin)
11289 {
11290 RANGE_DECL = *__begin;
11291 BLOCK
11292 }
11293 }
11294
11295 If RANGE_EXPR is an array:
11296 BEGIN_EXPR = __range
11297 END_EXPR = __range + ARRAY_SIZE(__range)
11298 Else if RANGE_EXPR has a member 'begin' or 'end':
11299 BEGIN_EXPR = __range.begin()
11300 END_EXPR = __range.end()
11301 Else:
11302 BEGIN_EXPR = begin(__range)
11303 END_EXPR = end(__range);
11304
11305 If __range has a member 'begin' but not 'end', or vice versa, we must
11306 still use the second alternative (it will surely fail, however).
11307 When calling begin()/end() in the third alternative we must use
11308 argument dependent lookup, but always considering 'std' as an associated
11309 namespace. */
11310
11311 tree
11312 cp_convert_range_for (tree statement, tree range_decl, tree range_expr,
11313 bool ivdep)
11314 {
11315 tree begin, end;
11316 tree iter_type, begin_expr, end_expr;
11317 tree condition, expression;
11318
11319 if (range_decl == error_mark_node || range_expr == error_mark_node)
11320 /* If an error happened previously do nothing or else a lot of
11321 unhelpful errors would be issued. */
11322 begin_expr = end_expr = iter_type = error_mark_node;
11323 else
11324 {
11325 tree range_temp;
11326
11327 if (VAR_P (range_expr)
11328 && array_of_runtime_bound_p (TREE_TYPE (range_expr)))
11329 /* Can't bind a reference to an array of runtime bound. */
11330 range_temp = range_expr;
11331 else
11332 {
11333 range_temp = build_range_temp (range_expr);
11334 pushdecl (range_temp);
11335 cp_finish_decl (range_temp, range_expr,
11336 /*is_constant_init*/false, NULL_TREE,
11337 LOOKUP_ONLYCONVERTING);
11338 range_temp = convert_from_reference (range_temp);
11339 }
11340 iter_type = cp_parser_perform_range_for_lookup (range_temp,
11341 &begin_expr, &end_expr);
11342 }
11343
11344 /* The new for initialization statement. */
11345 begin = build_decl (input_location, VAR_DECL,
11346 get_identifier ("__for_begin"), iter_type);
11347 TREE_USED (begin) = 1;
11348 DECL_ARTIFICIAL (begin) = 1;
11349 pushdecl (begin);
11350 cp_finish_decl (begin, begin_expr,
11351 /*is_constant_init*/false, NULL_TREE,
11352 LOOKUP_ONLYCONVERTING);
11353
11354 if (cxx_dialect >= cxx1z)
11355 iter_type = cv_unqualified (TREE_TYPE (end_expr));
11356 end = build_decl (input_location, VAR_DECL,
11357 get_identifier ("__for_end"), iter_type);
11358 TREE_USED (end) = 1;
11359 DECL_ARTIFICIAL (end) = 1;
11360 pushdecl (end);
11361 cp_finish_decl (end, end_expr,
11362 /*is_constant_init*/false, NULL_TREE,
11363 LOOKUP_ONLYCONVERTING);
11364
11365 finish_for_init_stmt (statement);
11366
11367 /* The new for condition. */
11368 condition = build_x_binary_op (input_location, NE_EXPR,
11369 begin, ERROR_MARK,
11370 end, ERROR_MARK,
11371 NULL, tf_warning_or_error);
11372 finish_for_cond (condition, statement, ivdep);
11373
11374 /* The new increment expression. */
11375 expression = finish_unary_op_expr (input_location,
11376 PREINCREMENT_EXPR, begin,
11377 tf_warning_or_error);
11378 finish_for_expr (expression, statement);
11379
11380 /* The declaration is initialized with *__begin inside the loop body. */
11381 cp_finish_decl (range_decl,
11382 build_x_indirect_ref (input_location, begin, RO_NULL,
11383 tf_warning_or_error),
11384 /*is_constant_init*/false, NULL_TREE,
11385 LOOKUP_ONLYCONVERTING);
11386
11387 return statement;
11388 }
11389
11390 /* Solves BEGIN_EXPR and END_EXPR as described in cp_convert_range_for.
11391 We need to solve both at the same time because the method used
11392 depends on the existence of members begin or end.
11393 Returns the type deduced for the iterator expression. */
11394
11395 static tree
11396 cp_parser_perform_range_for_lookup (tree range, tree *begin, tree *end)
11397 {
11398 if (error_operand_p (range))
11399 {
11400 *begin = *end = error_mark_node;
11401 return error_mark_node;
11402 }
11403
11404 if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (range))))
11405 {
11406 error ("range-based %<for%> expression of type %qT "
11407 "has incomplete type", TREE_TYPE (range));
11408 *begin = *end = error_mark_node;
11409 return error_mark_node;
11410 }
11411 if (TREE_CODE (TREE_TYPE (range)) == ARRAY_TYPE)
11412 {
11413 /* If RANGE is an array, we will use pointer arithmetic. */
11414 *begin = decay_conversion (range, tf_warning_or_error);
11415 *end = build_binary_op (input_location, PLUS_EXPR,
11416 range,
11417 array_type_nelts_top (TREE_TYPE (range)),
11418 0);
11419 return TREE_TYPE (*begin);
11420 }
11421 else
11422 {
11423 /* If it is not an array, we must do a bit of magic. */
11424 tree id_begin, id_end;
11425 tree member_begin, member_end;
11426
11427 *begin = *end = error_mark_node;
11428
11429 id_begin = get_identifier ("begin");
11430 id_end = get_identifier ("end");
11431 member_begin = lookup_member (TREE_TYPE (range), id_begin,
11432 /*protect=*/2, /*want_type=*/false,
11433 tf_warning_or_error);
11434 member_end = lookup_member (TREE_TYPE (range), id_end,
11435 /*protect=*/2, /*want_type=*/false,
11436 tf_warning_or_error);
11437
11438 if (member_begin != NULL_TREE || member_end != NULL_TREE)
11439 {
11440 /* Use the member functions. */
11441 if (member_begin != NULL_TREE)
11442 *begin = cp_parser_range_for_member_function (range, id_begin);
11443 else
11444 error ("range-based %<for%> expression of type %qT has an "
11445 "%<end%> member but not a %<begin%>", TREE_TYPE (range));
11446
11447 if (member_end != NULL_TREE)
11448 *end = cp_parser_range_for_member_function (range, id_end);
11449 else
11450 error ("range-based %<for%> expression of type %qT has a "
11451 "%<begin%> member but not an %<end%>", TREE_TYPE (range));
11452 }
11453 else
11454 {
11455 /* Use global functions with ADL. */
11456 vec<tree, va_gc> *vec;
11457 vec = make_tree_vector ();
11458
11459 vec_safe_push (vec, range);
11460
11461 member_begin = perform_koenig_lookup (id_begin, vec,
11462 tf_warning_or_error);
11463 *begin = finish_call_expr (member_begin, &vec, false, true,
11464 tf_warning_or_error);
11465 member_end = perform_koenig_lookup (id_end, vec,
11466 tf_warning_or_error);
11467 *end = finish_call_expr (member_end, &vec, false, true,
11468 tf_warning_or_error);
11469
11470 release_tree_vector (vec);
11471 }
11472
11473 /* Last common checks. */
11474 if (*begin == error_mark_node || *end == error_mark_node)
11475 {
11476 /* If one of the expressions is an error do no more checks. */
11477 *begin = *end = error_mark_node;
11478 return error_mark_node;
11479 }
11480 else if (type_dependent_expression_p (*begin)
11481 || type_dependent_expression_p (*end))
11482 /* Can happen, when, eg, in a template context, Koenig lookup
11483 can't resolve begin/end (c++/58503). */
11484 return NULL_TREE;
11485 else
11486 {
11487 tree iter_type = cv_unqualified (TREE_TYPE (*begin));
11488 /* The unqualified type of the __begin and __end temporaries should
11489 be the same, as required by the multiple auto declaration. */
11490 if (!same_type_p (iter_type, cv_unqualified (TREE_TYPE (*end))))
11491 {
11492 if (cxx_dialect >= cxx1z
11493 && (build_x_binary_op (input_location, NE_EXPR,
11494 *begin, ERROR_MARK,
11495 *end, ERROR_MARK,
11496 NULL, tf_none)
11497 != error_mark_node))
11498 /* P0184R0 allows __begin and __end to have different types,
11499 but make sure they are comparable so we can give a better
11500 diagnostic. */;
11501 else
11502 error ("inconsistent begin/end types in range-based %<for%> "
11503 "statement: %qT and %qT",
11504 TREE_TYPE (*begin), TREE_TYPE (*end));
11505 }
11506 return iter_type;
11507 }
11508 }
11509 }
11510
11511 /* Helper function for cp_parser_perform_range_for_lookup.
11512 Builds a tree for RANGE.IDENTIFIER(). */
11513
11514 static tree
11515 cp_parser_range_for_member_function (tree range, tree identifier)
11516 {
11517 tree member, res;
11518 vec<tree, va_gc> *vec;
11519
11520 member = finish_class_member_access_expr (range, identifier,
11521 false, tf_warning_or_error);
11522 if (member == error_mark_node)
11523 return error_mark_node;
11524
11525 vec = make_tree_vector ();
11526 res = finish_call_expr (member, &vec,
11527 /*disallow_virtual=*/false,
11528 /*koenig_p=*/false,
11529 tf_warning_or_error);
11530 release_tree_vector (vec);
11531 return res;
11532 }
11533
11534 /* Parse an iteration-statement.
11535
11536 iteration-statement:
11537 while ( condition ) statement
11538 do statement while ( expression ) ;
11539 for ( for-init-statement condition [opt] ; expression [opt] )
11540 statement
11541
11542 Returns the new WHILE_STMT, DO_STMT, FOR_STMT or RANGE_FOR_STMT. */
11543
11544 static tree
11545 cp_parser_iteration_statement (cp_parser* parser, bool *if_p, bool ivdep)
11546 {
11547 cp_token *token;
11548 enum rid keyword;
11549 tree statement;
11550 unsigned char in_statement;
11551 token_indent_info guard_tinfo;
11552
11553 /* Peek at the next token. */
11554 token = cp_parser_require (parser, CPP_KEYWORD, RT_INTERATION);
11555 if (!token)
11556 return error_mark_node;
11557
11558 guard_tinfo = get_token_indent_info (token);
11559
11560 /* Remember whether or not we are already within an iteration
11561 statement. */
11562 in_statement = parser->in_statement;
11563
11564 /* See what kind of keyword it is. */
11565 keyword = token->keyword;
11566 switch (keyword)
11567 {
11568 case RID_WHILE:
11569 {
11570 tree condition;
11571
11572 /* Begin the while-statement. */
11573 statement = begin_while_stmt ();
11574 /* Look for the `('. */
11575 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
11576 /* Parse the condition. */
11577 condition = cp_parser_condition (parser);
11578 finish_while_stmt_cond (condition, statement, ivdep);
11579 /* Look for the `)'. */
11580 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
11581 /* Parse the dependent statement. */
11582 parser->in_statement = IN_ITERATION_STMT;
11583 cp_parser_already_scoped_statement (parser, if_p, guard_tinfo);
11584 parser->in_statement = in_statement;
11585 /* We're done with the while-statement. */
11586 finish_while_stmt (statement);
11587 }
11588 break;
11589
11590 case RID_DO:
11591 {
11592 tree expression;
11593
11594 /* Begin the do-statement. */
11595 statement = begin_do_stmt ();
11596 /* Parse the body of the do-statement. */
11597 parser->in_statement = IN_ITERATION_STMT;
11598 cp_parser_implicitly_scoped_statement (parser, NULL, guard_tinfo);
11599 parser->in_statement = in_statement;
11600 finish_do_body (statement);
11601 /* Look for the `while' keyword. */
11602 cp_parser_require_keyword (parser, RID_WHILE, RT_WHILE);
11603 /* Look for the `('. */
11604 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
11605 /* Parse the expression. */
11606 expression = cp_parser_expression (parser);
11607 /* We're done with the do-statement. */
11608 finish_do_stmt (expression, statement, ivdep);
11609 /* Look for the `)'. */
11610 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
11611 /* Look for the `;'. */
11612 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
11613 }
11614 break;
11615
11616 case RID_FOR:
11617 {
11618 /* Look for the `('. */
11619 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
11620
11621 statement = cp_parser_for (parser, ivdep);
11622
11623 /* Look for the `)'. */
11624 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
11625
11626 /* Parse the body of the for-statement. */
11627 parser->in_statement = IN_ITERATION_STMT;
11628 cp_parser_already_scoped_statement (parser, if_p, guard_tinfo);
11629 parser->in_statement = in_statement;
11630
11631 /* We're done with the for-statement. */
11632 finish_for_stmt (statement);
11633 }
11634 break;
11635
11636 default:
11637 cp_parser_error (parser, "expected iteration-statement");
11638 statement = error_mark_node;
11639 break;
11640 }
11641
11642 return statement;
11643 }
11644
11645 /* Parse a for-init-statement or the declarator of a range-based-for.
11646 Returns true if a range-based-for declaration is seen.
11647
11648 for-init-statement:
11649 expression-statement
11650 simple-declaration */
11651
11652 static bool
11653 cp_parser_for_init_statement (cp_parser* parser, tree *decl)
11654 {
11655 /* If the next token is a `;', then we have an empty
11656 expression-statement. Grammatically, this is also a
11657 simple-declaration, but an invalid one, because it does not
11658 declare anything. Therefore, if we did not handle this case
11659 specially, we would issue an error message about an invalid
11660 declaration. */
11661 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
11662 {
11663 bool is_range_for = false;
11664 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
11665
11666 /* A colon is used in range-based for. */
11667 parser->colon_corrects_to_scope_p = false;
11668
11669 /* We're going to speculatively look for a declaration, falling back
11670 to an expression, if necessary. */
11671 cp_parser_parse_tentatively (parser);
11672 /* Parse the declaration. */
11673 cp_parser_simple_declaration (parser,
11674 /*function_definition_allowed_p=*/false,
11675 decl);
11676 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
11677 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
11678 {
11679 /* It is a range-for, consume the ':' */
11680 cp_lexer_consume_token (parser->lexer);
11681 is_range_for = true;
11682 if (cxx_dialect < cxx11)
11683 {
11684 pedwarn (cp_lexer_peek_token (parser->lexer)->location, 0,
11685 "range-based %<for%> loops only available with "
11686 "-std=c++11 or -std=gnu++11");
11687 *decl = error_mark_node;
11688 }
11689 }
11690 else
11691 /* The ';' is not consumed yet because we told
11692 cp_parser_simple_declaration not to. */
11693 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
11694
11695 if (cp_parser_parse_definitely (parser))
11696 return is_range_for;
11697 /* If the tentative parse failed, then we shall need to look for an
11698 expression-statement. */
11699 }
11700 /* If we are here, it is an expression-statement. */
11701 cp_parser_expression_statement (parser, NULL_TREE);
11702 return false;
11703 }
11704
11705 /* Parse a jump-statement.
11706
11707 jump-statement:
11708 break ;
11709 continue ;
11710 return expression [opt] ;
11711 return braced-init-list ;
11712 goto identifier ;
11713
11714 GNU extension:
11715
11716 jump-statement:
11717 goto * expression ;
11718
11719 Returns the new BREAK_STMT, CONTINUE_STMT, RETURN_EXPR, or GOTO_EXPR. */
11720
11721 static tree
11722 cp_parser_jump_statement (cp_parser* parser)
11723 {
11724 tree statement = error_mark_node;
11725 cp_token *token;
11726 enum rid keyword;
11727 unsigned char in_statement;
11728
11729 /* Peek at the next token. */
11730 token = cp_parser_require (parser, CPP_KEYWORD, RT_JUMP);
11731 if (!token)
11732 return error_mark_node;
11733
11734 /* See what kind of keyword it is. */
11735 keyword = token->keyword;
11736 switch (keyword)
11737 {
11738 case RID_BREAK:
11739 in_statement = parser->in_statement & ~IN_IF_STMT;
11740 switch (in_statement)
11741 {
11742 case 0:
11743 error_at (token->location, "break statement not within loop or switch");
11744 break;
11745 default:
11746 gcc_assert ((in_statement & IN_SWITCH_STMT)
11747 || in_statement == IN_ITERATION_STMT);
11748 statement = finish_break_stmt ();
11749 if (in_statement == IN_ITERATION_STMT)
11750 break_maybe_infinite_loop ();
11751 break;
11752 case IN_OMP_BLOCK:
11753 error_at (token->location, "invalid exit from OpenMP structured block");
11754 break;
11755 case IN_OMP_FOR:
11756 error_at (token->location, "break statement used with OpenMP for loop");
11757 break;
11758 case IN_CILK_SIMD_FOR:
11759 error_at (token->location, "break statement used with Cilk Plus for loop");
11760 break;
11761 }
11762 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
11763 break;
11764
11765 case RID_CONTINUE:
11766 switch (parser->in_statement & ~(IN_SWITCH_STMT | IN_IF_STMT))
11767 {
11768 case 0:
11769 error_at (token->location, "continue statement not within a loop");
11770 break;
11771 case IN_CILK_SIMD_FOR:
11772 error_at (token->location,
11773 "continue statement within %<#pragma simd%> loop body");
11774 /* Fall through. */
11775 case IN_ITERATION_STMT:
11776 case IN_OMP_FOR:
11777 statement = finish_continue_stmt ();
11778 break;
11779 case IN_OMP_BLOCK:
11780 error_at (token->location, "invalid exit from OpenMP structured block");
11781 break;
11782 default:
11783 gcc_unreachable ();
11784 }
11785 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
11786 break;
11787
11788 case RID_RETURN:
11789 {
11790 tree expr;
11791 bool expr_non_constant_p;
11792
11793 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
11794 {
11795 cp_lexer_set_source_position (parser->lexer);
11796 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
11797 expr = cp_parser_braced_list (parser, &expr_non_constant_p);
11798 }
11799 else if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
11800 expr = cp_parser_expression (parser);
11801 else
11802 /* If the next token is a `;', then there is no
11803 expression. */
11804 expr = NULL_TREE;
11805 /* Build the return-statement. */
11806 statement = finish_return_stmt (expr);
11807 /* Look for the final `;'. */
11808 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
11809 }
11810 break;
11811
11812 case RID_GOTO:
11813 if (parser->in_function_body
11814 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
11815 {
11816 error ("%<goto%> in %<constexpr%> function");
11817 cp_function_chain->invalid_constexpr = true;
11818 }
11819
11820 /* Create the goto-statement. */
11821 if (cp_lexer_next_token_is (parser->lexer, CPP_MULT))
11822 {
11823 /* Issue a warning about this use of a GNU extension. */
11824 pedwarn (token->location, OPT_Wpedantic, "ISO C++ forbids computed gotos");
11825 /* Consume the '*' token. */
11826 cp_lexer_consume_token (parser->lexer);
11827 /* Parse the dependent expression. */
11828 finish_goto_stmt (cp_parser_expression (parser));
11829 }
11830 else
11831 finish_goto_stmt (cp_parser_identifier (parser));
11832 /* Look for the final `;'. */
11833 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
11834 break;
11835
11836 default:
11837 cp_parser_error (parser, "expected jump-statement");
11838 break;
11839 }
11840
11841 return statement;
11842 }
11843
11844 /* Parse a declaration-statement.
11845
11846 declaration-statement:
11847 block-declaration */
11848
11849 static void
11850 cp_parser_declaration_statement (cp_parser* parser)
11851 {
11852 void *p;
11853
11854 /* Get the high-water mark for the DECLARATOR_OBSTACK. */
11855 p = obstack_alloc (&declarator_obstack, 0);
11856
11857 /* Parse the block-declaration. */
11858 cp_parser_block_declaration (parser, /*statement_p=*/true);
11859
11860 /* Free any declarators allocated. */
11861 obstack_free (&declarator_obstack, p);
11862 }
11863
11864 /* Some dependent statements (like `if (cond) statement'), are
11865 implicitly in their own scope. In other words, if the statement is
11866 a single statement (as opposed to a compound-statement), it is
11867 none-the-less treated as if it were enclosed in braces. Any
11868 declarations appearing in the dependent statement are out of scope
11869 after control passes that point. This function parses a statement,
11870 but ensures that is in its own scope, even if it is not a
11871 compound-statement.
11872
11873 If IF_P is not NULL, *IF_P is set to indicate whether the statement
11874 is a (possibly labeled) if statement which is not enclosed in
11875 braces and has an else clause. This is used to implement
11876 -Wparentheses.
11877
11878 CHAIN is a vector of if-else-if conditions. This is used to implement
11879 -Wduplicated-cond.
11880
11881 Returns the new statement. */
11882
11883 static tree
11884 cp_parser_implicitly_scoped_statement (cp_parser* parser, bool *if_p,
11885 const token_indent_info &guard_tinfo,
11886 vec<tree> *chain)
11887 {
11888 tree statement;
11889 location_t body_loc = cp_lexer_peek_token (parser->lexer)->location;
11890 token_indent_info body_tinfo
11891 = get_token_indent_info (cp_lexer_peek_token (parser->lexer));
11892
11893 if (if_p != NULL)
11894 *if_p = false;
11895
11896 /* Mark if () ; with a special NOP_EXPR. */
11897 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
11898 {
11899 cp_lexer_consume_token (parser->lexer);
11900 statement = add_stmt (build_empty_stmt (body_loc));
11901
11902 if (guard_tinfo.keyword == RID_IF
11903 && !cp_lexer_next_token_is_keyword (parser->lexer, RID_ELSE))
11904 warning_at (body_loc, OPT_Wempty_body,
11905 "suggest braces around empty body in an %<if%> statement");
11906 else if (guard_tinfo.keyword == RID_ELSE)
11907 warning_at (body_loc, OPT_Wempty_body,
11908 "suggest braces around empty body in an %<else%> statement");
11909 }
11910 /* if a compound is opened, we simply parse the statement directly. */
11911 else if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
11912 statement = cp_parser_compound_statement (parser, NULL, BCS_NORMAL, false);
11913 /* If the token is not a `{', then we must take special action. */
11914 else
11915 {
11916 /* Create a compound-statement. */
11917 statement = begin_compound_stmt (0);
11918 /* Parse the dependent-statement. */
11919 cp_parser_statement (parser, NULL_TREE, false, if_p, chain);
11920 /* Finish the dummy compound-statement. */
11921 finish_compound_stmt (statement);
11922 }
11923
11924 token_indent_info next_tinfo
11925 = get_token_indent_info (cp_lexer_peek_token (parser->lexer));
11926 warn_for_misleading_indentation (guard_tinfo, body_tinfo, next_tinfo);
11927
11928 /* Return the statement. */
11929 return statement;
11930 }
11931
11932 /* For some dependent statements (like `while (cond) statement'), we
11933 have already created a scope. Therefore, even if the dependent
11934 statement is a compound-statement, we do not want to create another
11935 scope. */
11936
11937 static void
11938 cp_parser_already_scoped_statement (cp_parser* parser, bool *if_p,
11939 const token_indent_info &guard_tinfo)
11940 {
11941 /* If the token is a `{', then we must take special action. */
11942 if (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE))
11943 {
11944 token_indent_info body_tinfo
11945 = get_token_indent_info (cp_lexer_peek_token (parser->lexer));
11946
11947 cp_parser_statement (parser, NULL_TREE, false, if_p);
11948 token_indent_info next_tinfo
11949 = get_token_indent_info (cp_lexer_peek_token (parser->lexer));
11950 warn_for_misleading_indentation (guard_tinfo, body_tinfo, next_tinfo);
11951 }
11952 else
11953 {
11954 /* Avoid calling cp_parser_compound_statement, so that we
11955 don't create a new scope. Do everything else by hand. */
11956 cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE);
11957 /* If the next keyword is `__label__' we have a label declaration. */
11958 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_LABEL))
11959 cp_parser_label_declaration (parser);
11960 /* Parse an (optional) statement-seq. */
11961 cp_parser_statement_seq_opt (parser, NULL_TREE);
11962 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
11963 }
11964 }
11965
11966 /* Declarations [gram.dcl.dcl] */
11967
11968 /* Parse an optional declaration-sequence.
11969
11970 declaration-seq:
11971 declaration
11972 declaration-seq declaration */
11973
11974 static void
11975 cp_parser_declaration_seq_opt (cp_parser* parser)
11976 {
11977 while (true)
11978 {
11979 cp_token *token;
11980
11981 token = cp_lexer_peek_token (parser->lexer);
11982
11983 if (token->type == CPP_CLOSE_BRACE
11984 || token->type == CPP_EOF
11985 || token->type == CPP_PRAGMA_EOL)
11986 break;
11987
11988 if (token->type == CPP_SEMICOLON)
11989 {
11990 /* A declaration consisting of a single semicolon is
11991 invalid. Allow it unless we're being pedantic. */
11992 cp_lexer_consume_token (parser->lexer);
11993 if (!in_system_header_at (input_location))
11994 pedwarn (input_location, OPT_Wpedantic, "extra %<;%>");
11995 continue;
11996 }
11997
11998 /* If we're entering or exiting a region that's implicitly
11999 extern "C", modify the lang context appropriately. */
12000 if (!parser->implicit_extern_c && token->implicit_extern_c)
12001 {
12002 push_lang_context (lang_name_c);
12003 parser->implicit_extern_c = true;
12004 }
12005 else if (parser->implicit_extern_c && !token->implicit_extern_c)
12006 {
12007 pop_lang_context ();
12008 parser->implicit_extern_c = false;
12009 }
12010
12011 if (token->type == CPP_PRAGMA)
12012 {
12013 /* A top-level declaration can consist solely of a #pragma.
12014 A nested declaration cannot, so this is done here and not
12015 in cp_parser_declaration. (A #pragma at block scope is
12016 handled in cp_parser_statement.) */
12017 cp_parser_pragma (parser, pragma_external, NULL);
12018 continue;
12019 }
12020
12021 /* Parse the declaration itself. */
12022 cp_parser_declaration (parser);
12023 }
12024 }
12025
12026 /* Parse a declaration.
12027
12028 declaration:
12029 block-declaration
12030 function-definition
12031 template-declaration
12032 explicit-instantiation
12033 explicit-specialization
12034 linkage-specification
12035 namespace-definition
12036
12037 GNU extension:
12038
12039 declaration:
12040 __extension__ declaration */
12041
12042 static void
12043 cp_parser_declaration (cp_parser* parser)
12044 {
12045 cp_token token1;
12046 cp_token token2;
12047 int saved_pedantic;
12048 void *p;
12049 tree attributes = NULL_TREE;
12050
12051 /* Check for the `__extension__' keyword. */
12052 if (cp_parser_extension_opt (parser, &saved_pedantic))
12053 {
12054 /* Parse the qualified declaration. */
12055 cp_parser_declaration (parser);
12056 /* Restore the PEDANTIC flag. */
12057 pedantic = saved_pedantic;
12058
12059 return;
12060 }
12061
12062 /* Try to figure out what kind of declaration is present. */
12063 token1 = *cp_lexer_peek_token (parser->lexer);
12064
12065 if (token1.type != CPP_EOF)
12066 token2 = *cp_lexer_peek_nth_token (parser->lexer, 2);
12067 else
12068 {
12069 token2.type = CPP_EOF;
12070 token2.keyword = RID_MAX;
12071 }
12072
12073 /* Get the high-water mark for the DECLARATOR_OBSTACK. */
12074 p = obstack_alloc (&declarator_obstack, 0);
12075
12076 /* If the next token is `extern' and the following token is a string
12077 literal, then we have a linkage specification. */
12078 if (token1.keyword == RID_EXTERN
12079 && cp_parser_is_pure_string_literal (&token2))
12080 cp_parser_linkage_specification (parser);
12081 /* If the next token is `template', then we have either a template
12082 declaration, an explicit instantiation, or an explicit
12083 specialization. */
12084 else if (token1.keyword == RID_TEMPLATE)
12085 {
12086 /* `template <>' indicates a template specialization. */
12087 if (token2.type == CPP_LESS
12088 && cp_lexer_peek_nth_token (parser->lexer, 3)->type == CPP_GREATER)
12089 cp_parser_explicit_specialization (parser);
12090 /* `template <' indicates a template declaration. */
12091 else if (token2.type == CPP_LESS)
12092 cp_parser_template_declaration (parser, /*member_p=*/false);
12093 /* Anything else must be an explicit instantiation. */
12094 else
12095 cp_parser_explicit_instantiation (parser);
12096 }
12097 /* If the next token is `export', then we have a template
12098 declaration. */
12099 else if (token1.keyword == RID_EXPORT)
12100 cp_parser_template_declaration (parser, /*member_p=*/false);
12101 /* If the next token is `extern', 'static' or 'inline' and the one
12102 after that is `template', we have a GNU extended explicit
12103 instantiation directive. */
12104 else if (cp_parser_allow_gnu_extensions_p (parser)
12105 && (token1.keyword == RID_EXTERN
12106 || token1.keyword == RID_STATIC
12107 || token1.keyword == RID_INLINE)
12108 && token2.keyword == RID_TEMPLATE)
12109 cp_parser_explicit_instantiation (parser);
12110 /* If the next token is `namespace', check for a named or unnamed
12111 namespace definition. */
12112 else if (token1.keyword == RID_NAMESPACE
12113 && (/* A named namespace definition. */
12114 (token2.type == CPP_NAME
12115 && (cp_lexer_peek_nth_token (parser->lexer, 3)->type
12116 != CPP_EQ))
12117 || (token2.type == CPP_OPEN_SQUARE
12118 && cp_lexer_peek_nth_token (parser->lexer, 3)->type
12119 == CPP_OPEN_SQUARE)
12120 /* An unnamed namespace definition. */
12121 || token2.type == CPP_OPEN_BRACE
12122 || token2.keyword == RID_ATTRIBUTE))
12123 cp_parser_namespace_definition (parser);
12124 /* An inline (associated) namespace definition. */
12125 else if (token1.keyword == RID_INLINE
12126 && token2.keyword == RID_NAMESPACE)
12127 cp_parser_namespace_definition (parser);
12128 /* Objective-C++ declaration/definition. */
12129 else if (c_dialect_objc () && OBJC_IS_AT_KEYWORD (token1.keyword))
12130 cp_parser_objc_declaration (parser, NULL_TREE);
12131 else if (c_dialect_objc ()
12132 && token1.keyword == RID_ATTRIBUTE
12133 && cp_parser_objc_valid_prefix_attributes (parser, &attributes))
12134 cp_parser_objc_declaration (parser, attributes);
12135 /* At this point we may have a template declared by a concept
12136 introduction. */
12137 else if (flag_concepts
12138 && cp_parser_template_declaration_after_export (parser,
12139 /*member_p=*/false))
12140 /* We did. */;
12141 else
12142 /* Try to parse a block-declaration, or a function-definition. */
12143 cp_parser_block_declaration (parser, /*statement_p=*/false);
12144
12145 /* Free any declarators allocated. */
12146 obstack_free (&declarator_obstack, p);
12147 }
12148
12149 /* Parse a block-declaration.
12150
12151 block-declaration:
12152 simple-declaration
12153 asm-definition
12154 namespace-alias-definition
12155 using-declaration
12156 using-directive
12157
12158 GNU Extension:
12159
12160 block-declaration:
12161 __extension__ block-declaration
12162
12163 C++0x Extension:
12164
12165 block-declaration:
12166 static_assert-declaration
12167
12168 If STATEMENT_P is TRUE, then this block-declaration is occurring as
12169 part of a declaration-statement. */
12170
12171 static void
12172 cp_parser_block_declaration (cp_parser *parser,
12173 bool statement_p)
12174 {
12175 cp_token *token1;
12176 int saved_pedantic;
12177
12178 /* Check for the `__extension__' keyword. */
12179 if (cp_parser_extension_opt (parser, &saved_pedantic))
12180 {
12181 /* Parse the qualified declaration. */
12182 cp_parser_block_declaration (parser, statement_p);
12183 /* Restore the PEDANTIC flag. */
12184 pedantic = saved_pedantic;
12185
12186 return;
12187 }
12188
12189 /* Peek at the next token to figure out which kind of declaration is
12190 present. */
12191 token1 = cp_lexer_peek_token (parser->lexer);
12192
12193 /* If the next keyword is `asm', we have an asm-definition. */
12194 if (token1->keyword == RID_ASM)
12195 {
12196 if (statement_p)
12197 cp_parser_commit_to_tentative_parse (parser);
12198 cp_parser_asm_definition (parser);
12199 }
12200 /* If the next keyword is `namespace', we have a
12201 namespace-alias-definition. */
12202 else if (token1->keyword == RID_NAMESPACE)
12203 cp_parser_namespace_alias_definition (parser);
12204 /* If the next keyword is `using', we have a
12205 using-declaration, a using-directive, or an alias-declaration. */
12206 else if (token1->keyword == RID_USING)
12207 {
12208 cp_token *token2;
12209
12210 if (statement_p)
12211 cp_parser_commit_to_tentative_parse (parser);
12212 /* If the token after `using' is `namespace', then we have a
12213 using-directive. */
12214 token2 = cp_lexer_peek_nth_token (parser->lexer, 2);
12215 if (token2->keyword == RID_NAMESPACE)
12216 cp_parser_using_directive (parser);
12217 /* If the second token after 'using' is '=', then we have an
12218 alias-declaration. */
12219 else if (cxx_dialect >= cxx11
12220 && token2->type == CPP_NAME
12221 && ((cp_lexer_peek_nth_token (parser->lexer, 3)->type == CPP_EQ)
12222 || (cp_nth_tokens_can_be_attribute_p (parser, 3))))
12223 cp_parser_alias_declaration (parser);
12224 /* Otherwise, it's a using-declaration. */
12225 else
12226 cp_parser_using_declaration (parser,
12227 /*access_declaration_p=*/false);
12228 }
12229 /* If the next keyword is `__label__' we have a misplaced label
12230 declaration. */
12231 else if (token1->keyword == RID_LABEL)
12232 {
12233 cp_lexer_consume_token (parser->lexer);
12234 error_at (token1->location, "%<__label__%> not at the beginning of a block");
12235 cp_parser_skip_to_end_of_statement (parser);
12236 /* If the next token is now a `;', consume it. */
12237 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
12238 cp_lexer_consume_token (parser->lexer);
12239 }
12240 /* If the next token is `static_assert' we have a static assertion. */
12241 else if (token1->keyword == RID_STATIC_ASSERT)
12242 cp_parser_static_assert (parser, /*member_p=*/false);
12243 /* Anything else must be a simple-declaration. */
12244 else
12245 cp_parser_simple_declaration (parser, !statement_p,
12246 /*maybe_range_for_decl*/NULL);
12247 }
12248
12249 /* Parse a simple-declaration.
12250
12251 simple-declaration:
12252 decl-specifier-seq [opt] init-declarator-list [opt] ;
12253
12254 init-declarator-list:
12255 init-declarator
12256 init-declarator-list , init-declarator
12257
12258 If FUNCTION_DEFINITION_ALLOWED_P is TRUE, then we also recognize a
12259 function-definition as a simple-declaration.
12260
12261 If MAYBE_RANGE_FOR_DECL is not NULL, the pointed tree will be set to the
12262 parsed declaration if it is an uninitialized single declarator not followed
12263 by a `;', or to error_mark_node otherwise. Either way, the trailing `;',
12264 if present, will not be consumed. */
12265
12266 static void
12267 cp_parser_simple_declaration (cp_parser* parser,
12268 bool function_definition_allowed_p,
12269 tree *maybe_range_for_decl)
12270 {
12271 cp_decl_specifier_seq decl_specifiers;
12272 int declares_class_or_enum;
12273 bool saw_declarator;
12274 location_t comma_loc = UNKNOWN_LOCATION;
12275 location_t init_loc = UNKNOWN_LOCATION;
12276
12277 if (maybe_range_for_decl)
12278 *maybe_range_for_decl = NULL_TREE;
12279
12280 /* Defer access checks until we know what is being declared; the
12281 checks for names appearing in the decl-specifier-seq should be
12282 done as if we were in the scope of the thing being declared. */
12283 push_deferring_access_checks (dk_deferred);
12284
12285 /* Parse the decl-specifier-seq. We have to keep track of whether
12286 or not the decl-specifier-seq declares a named class or
12287 enumeration type, since that is the only case in which the
12288 init-declarator-list is allowed to be empty.
12289
12290 [dcl.dcl]
12291
12292 In a simple-declaration, the optional init-declarator-list can be
12293 omitted only when declaring a class or enumeration, that is when
12294 the decl-specifier-seq contains either a class-specifier, an
12295 elaborated-type-specifier, or an enum-specifier. */
12296 cp_parser_decl_specifier_seq (parser,
12297 CP_PARSER_FLAGS_OPTIONAL,
12298 &decl_specifiers,
12299 &declares_class_or_enum);
12300 /* We no longer need to defer access checks. */
12301 stop_deferring_access_checks ();
12302
12303 /* In a block scope, a valid declaration must always have a
12304 decl-specifier-seq. By not trying to parse declarators, we can
12305 resolve the declaration/expression ambiguity more quickly. */
12306 if (!function_definition_allowed_p
12307 && !decl_specifiers.any_specifiers_p)
12308 {
12309 cp_parser_error (parser, "expected declaration");
12310 goto done;
12311 }
12312
12313 /* If the next two tokens are both identifiers, the code is
12314 erroneous. The usual cause of this situation is code like:
12315
12316 T t;
12317
12318 where "T" should name a type -- but does not. */
12319 if (!decl_specifiers.any_type_specifiers_p
12320 && cp_parser_parse_and_diagnose_invalid_type_name (parser))
12321 {
12322 /* If parsing tentatively, we should commit; we really are
12323 looking at a declaration. */
12324 cp_parser_commit_to_tentative_parse (parser);
12325 /* Give up. */
12326 goto done;
12327 }
12328
12329 /* If we have seen at least one decl-specifier, and the next token
12330 is not a parenthesis, then we must be looking at a declaration.
12331 (After "int (" we might be looking at a functional cast.) */
12332 if (decl_specifiers.any_specifiers_p
12333 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_PAREN)
12334 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE)
12335 && !cp_parser_error_occurred (parser))
12336 cp_parser_commit_to_tentative_parse (parser);
12337
12338 tree last_type;
12339
12340 last_type = NULL_TREE;
12341
12342 /* Keep going until we hit the `;' at the end of the simple
12343 declaration. */
12344 saw_declarator = false;
12345 while (cp_lexer_next_token_is_not (parser->lexer,
12346 CPP_SEMICOLON))
12347 {
12348 cp_token *token;
12349 bool function_definition_p;
12350 tree decl;
12351 tree auto_result = NULL_TREE;
12352
12353 if (saw_declarator)
12354 {
12355 /* If we are processing next declarator, comma is expected */
12356 token = cp_lexer_peek_token (parser->lexer);
12357 gcc_assert (token->type == CPP_COMMA);
12358 cp_lexer_consume_token (parser->lexer);
12359 if (maybe_range_for_decl)
12360 {
12361 *maybe_range_for_decl = error_mark_node;
12362 if (comma_loc == UNKNOWN_LOCATION)
12363 comma_loc = token->location;
12364 }
12365 }
12366 else
12367 saw_declarator = true;
12368
12369 /* Parse the init-declarator. */
12370 decl = cp_parser_init_declarator (parser, &decl_specifiers,
12371 /*checks=*/NULL,
12372 function_definition_allowed_p,
12373 /*member_p=*/false,
12374 declares_class_or_enum,
12375 &function_definition_p,
12376 maybe_range_for_decl,
12377 &init_loc,
12378 &auto_result);
12379 /* If an error occurred while parsing tentatively, exit quickly.
12380 (That usually happens when in the body of a function; each
12381 statement is treated as a declaration-statement until proven
12382 otherwise.) */
12383 if (cp_parser_error_occurred (parser))
12384 goto done;
12385
12386 if (auto_result)
12387 {
12388 if (last_type && last_type != error_mark_node
12389 && !same_type_p (auto_result, last_type))
12390 {
12391 /* If the list of declarators contains more than one declarator,
12392 the type of each declared variable is determined as described
12393 above. If the type deduced for the template parameter U is not
12394 the same in each deduction, the program is ill-formed. */
12395 error_at (decl_specifiers.locations[ds_type_spec],
12396 "inconsistent deduction for %qT: %qT and then %qT",
12397 decl_specifiers.type, last_type, auto_result);
12398 last_type = error_mark_node;
12399 }
12400 else
12401 last_type = auto_result;
12402 }
12403
12404 /* Handle function definitions specially. */
12405 if (function_definition_p)
12406 {
12407 /* If the next token is a `,', then we are probably
12408 processing something like:
12409
12410 void f() {}, *p;
12411
12412 which is erroneous. */
12413 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
12414 {
12415 cp_token *token = cp_lexer_peek_token (parser->lexer);
12416 error_at (token->location,
12417 "mixing"
12418 " declarations and function-definitions is forbidden");
12419 }
12420 /* Otherwise, we're done with the list of declarators. */
12421 else
12422 {
12423 pop_deferring_access_checks ();
12424 return;
12425 }
12426 }
12427 if (maybe_range_for_decl && *maybe_range_for_decl == NULL_TREE)
12428 *maybe_range_for_decl = decl;
12429 /* The next token should be either a `,' or a `;'. */
12430 token = cp_lexer_peek_token (parser->lexer);
12431 /* If it's a `,', there are more declarators to come. */
12432 if (token->type == CPP_COMMA)
12433 /* will be consumed next time around */;
12434 /* If it's a `;', we are done. */
12435 else if (token->type == CPP_SEMICOLON || maybe_range_for_decl)
12436 break;
12437 /* Anything else is an error. */
12438 else
12439 {
12440 /* If we have already issued an error message we don't need
12441 to issue another one. */
12442 if ((decl != error_mark_node
12443 && DECL_INITIAL (decl) != error_mark_node)
12444 || cp_parser_uncommitted_to_tentative_parse_p (parser))
12445 cp_parser_error (parser, "expected %<,%> or %<;%>");
12446 /* Skip tokens until we reach the end of the statement. */
12447 cp_parser_skip_to_end_of_statement (parser);
12448 /* If the next token is now a `;', consume it. */
12449 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
12450 cp_lexer_consume_token (parser->lexer);
12451 goto done;
12452 }
12453 /* After the first time around, a function-definition is not
12454 allowed -- even if it was OK at first. For example:
12455
12456 int i, f() {}
12457
12458 is not valid. */
12459 function_definition_allowed_p = false;
12460 }
12461
12462 /* Issue an error message if no declarators are present, and the
12463 decl-specifier-seq does not itself declare a class or
12464 enumeration: [dcl.dcl]/3. */
12465 if (!saw_declarator)
12466 {
12467 if (cp_parser_declares_only_class_p (parser))
12468 {
12469 if (!declares_class_or_enum
12470 && decl_specifiers.type
12471 && OVERLOAD_TYPE_P (decl_specifiers.type))
12472 /* Ensure an error is issued anyway when finish_decltype_type,
12473 called via cp_parser_decl_specifier_seq, returns a class or
12474 an enumeration (c++/51786). */
12475 decl_specifiers.type = NULL_TREE;
12476 shadow_tag (&decl_specifiers);
12477 }
12478 /* Perform any deferred access checks. */
12479 perform_deferred_access_checks (tf_warning_or_error);
12480 }
12481
12482 /* Consume the `;'. */
12483 if (!maybe_range_for_decl)
12484 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
12485 else if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
12486 {
12487 if (init_loc != UNKNOWN_LOCATION)
12488 error_at (init_loc, "initializer in range-based %<for%> loop");
12489 if (comma_loc != UNKNOWN_LOCATION)
12490 error_at (comma_loc,
12491 "multiple declarations in range-based %<for%> loop");
12492 }
12493
12494 done:
12495 pop_deferring_access_checks ();
12496 }
12497
12498 /* Parse a decl-specifier-seq.
12499
12500 decl-specifier-seq:
12501 decl-specifier-seq [opt] decl-specifier
12502 decl-specifier attribute-specifier-seq [opt] (C++11)
12503
12504 decl-specifier:
12505 storage-class-specifier
12506 type-specifier
12507 function-specifier
12508 friend
12509 typedef
12510
12511 GNU Extension:
12512
12513 decl-specifier:
12514 attributes
12515
12516 Concepts Extension:
12517
12518 decl-specifier:
12519 concept
12520
12521 Set *DECL_SPECS to a representation of the decl-specifier-seq.
12522
12523 The parser flags FLAGS is used to control type-specifier parsing.
12524
12525 *DECLARES_CLASS_OR_ENUM is set to the bitwise or of the following
12526 flags:
12527
12528 1: one of the decl-specifiers is an elaborated-type-specifier
12529 (i.e., a type declaration)
12530 2: one of the decl-specifiers is an enum-specifier or a
12531 class-specifier (i.e., a type definition)
12532
12533 */
12534
12535 static void
12536 cp_parser_decl_specifier_seq (cp_parser* parser,
12537 cp_parser_flags flags,
12538 cp_decl_specifier_seq *decl_specs,
12539 int* declares_class_or_enum)
12540 {
12541 bool constructor_possible_p = !parser->in_declarator_p;
12542 bool found_decl_spec = false;
12543 cp_token *start_token = NULL;
12544 cp_decl_spec ds;
12545
12546 /* Clear DECL_SPECS. */
12547 clear_decl_specs (decl_specs);
12548
12549 /* Assume no class or enumeration type is declared. */
12550 *declares_class_or_enum = 0;
12551
12552 /* Keep reading specifiers until there are no more to read. */
12553 while (true)
12554 {
12555 bool constructor_p;
12556 cp_token *token;
12557 ds = ds_last;
12558
12559 /* Peek at the next token. */
12560 token = cp_lexer_peek_token (parser->lexer);
12561
12562 /* Save the first token of the decl spec list for error
12563 reporting. */
12564 if (!start_token)
12565 start_token = token;
12566 /* Handle attributes. */
12567 if (cp_next_tokens_can_be_attribute_p (parser))
12568 {
12569 /* Parse the attributes. */
12570 tree attrs = cp_parser_attributes_opt (parser);
12571
12572 /* In a sequence of declaration specifiers, c++11 attributes
12573 appertain to the type that precede them. In that case
12574 [dcl.spec]/1 says:
12575
12576 The attribute-specifier-seq affects the type only for
12577 the declaration it appears in, not other declarations
12578 involving the same type.
12579
12580 But for now let's force the user to position the
12581 attribute either at the beginning of the declaration or
12582 after the declarator-id, which would clearly mean that it
12583 applies to the declarator. */
12584 if (cxx11_attribute_p (attrs))
12585 {
12586 if (!found_decl_spec)
12587 /* The c++11 attribute is at the beginning of the
12588 declaration. It appertains to the entity being
12589 declared. */;
12590 else
12591 {
12592 if (decl_specs->type && CLASS_TYPE_P (decl_specs->type))
12593 {
12594 /* This is an attribute following a
12595 class-specifier. */
12596 if (decl_specs->type_definition_p)
12597 warn_misplaced_attr_for_class_type (token->location,
12598 decl_specs->type);
12599 attrs = NULL_TREE;
12600 }
12601 else
12602 {
12603 decl_specs->std_attributes
12604 = chainon (decl_specs->std_attributes,
12605 attrs);
12606 if (decl_specs->locations[ds_std_attribute] == 0)
12607 decl_specs->locations[ds_std_attribute] = token->location;
12608 }
12609 continue;
12610 }
12611 }
12612
12613 decl_specs->attributes
12614 = chainon (decl_specs->attributes,
12615 attrs);
12616 if (decl_specs->locations[ds_attribute] == 0)
12617 decl_specs->locations[ds_attribute] = token->location;
12618 continue;
12619 }
12620 /* Assume we will find a decl-specifier keyword. */
12621 found_decl_spec = true;
12622 /* If the next token is an appropriate keyword, we can simply
12623 add it to the list. */
12624 switch (token->keyword)
12625 {
12626 /* decl-specifier:
12627 friend
12628 constexpr */
12629 case RID_FRIEND:
12630 if (!at_class_scope_p ())
12631 {
12632 error_at (token->location, "%<friend%> used outside of class");
12633 cp_lexer_purge_token (parser->lexer);
12634 }
12635 else
12636 {
12637 ds = ds_friend;
12638 /* Consume the token. */
12639 cp_lexer_consume_token (parser->lexer);
12640 }
12641 break;
12642
12643 case RID_CONSTEXPR:
12644 ds = ds_constexpr;
12645 cp_lexer_consume_token (parser->lexer);
12646 break;
12647
12648 case RID_CONCEPT:
12649 ds = ds_concept;
12650 cp_lexer_consume_token (parser->lexer);
12651 break;
12652
12653 /* function-specifier:
12654 inline
12655 virtual
12656 explicit */
12657 case RID_INLINE:
12658 case RID_VIRTUAL:
12659 case RID_EXPLICIT:
12660 cp_parser_function_specifier_opt (parser, decl_specs);
12661 break;
12662
12663 /* decl-specifier:
12664 typedef */
12665 case RID_TYPEDEF:
12666 ds = ds_typedef;
12667 /* Consume the token. */
12668 cp_lexer_consume_token (parser->lexer);
12669 /* A constructor declarator cannot appear in a typedef. */
12670 constructor_possible_p = false;
12671 /* The "typedef" keyword can only occur in a declaration; we
12672 may as well commit at this point. */
12673 cp_parser_commit_to_tentative_parse (parser);
12674
12675 if (decl_specs->storage_class != sc_none)
12676 decl_specs->conflicting_specifiers_p = true;
12677 break;
12678
12679 /* storage-class-specifier:
12680 auto
12681 register
12682 static
12683 extern
12684 mutable
12685
12686 GNU Extension:
12687 thread */
12688 case RID_AUTO:
12689 if (cxx_dialect == cxx98)
12690 {
12691 /* Consume the token. */
12692 cp_lexer_consume_token (parser->lexer);
12693
12694 /* Complain about `auto' as a storage specifier, if
12695 we're complaining about C++0x compatibility. */
12696 warning_at (token->location, OPT_Wc__11_compat, "%<auto%>"
12697 " changes meaning in C++11; please remove it");
12698
12699 /* Set the storage class anyway. */
12700 cp_parser_set_storage_class (parser, decl_specs, RID_AUTO,
12701 token);
12702 }
12703 else
12704 /* C++0x auto type-specifier. */
12705 found_decl_spec = false;
12706 break;
12707
12708 case RID_REGISTER:
12709 case RID_STATIC:
12710 case RID_EXTERN:
12711 case RID_MUTABLE:
12712 /* Consume the token. */
12713 cp_lexer_consume_token (parser->lexer);
12714 cp_parser_set_storage_class (parser, decl_specs, token->keyword,
12715 token);
12716 break;
12717 case RID_THREAD:
12718 /* Consume the token. */
12719 ds = ds_thread;
12720 cp_lexer_consume_token (parser->lexer);
12721 break;
12722
12723 default:
12724 /* We did not yet find a decl-specifier yet. */
12725 found_decl_spec = false;
12726 break;
12727 }
12728
12729 if (found_decl_spec
12730 && (flags & CP_PARSER_FLAGS_ONLY_TYPE_OR_CONSTEXPR)
12731 && token->keyword != RID_CONSTEXPR)
12732 error ("decl-specifier invalid in condition");
12733
12734 if (ds != ds_last)
12735 set_and_check_decl_spec_loc (decl_specs, ds, token);
12736
12737 /* Constructors are a special case. The `S' in `S()' is not a
12738 decl-specifier; it is the beginning of the declarator. */
12739 constructor_p
12740 = (!found_decl_spec
12741 && constructor_possible_p
12742 && (cp_parser_constructor_declarator_p
12743 (parser, decl_spec_seq_has_spec_p (decl_specs, ds_friend))));
12744
12745 /* If we don't have a DECL_SPEC yet, then we must be looking at
12746 a type-specifier. */
12747 if (!found_decl_spec && !constructor_p)
12748 {
12749 int decl_spec_declares_class_or_enum;
12750 bool is_cv_qualifier;
12751 tree type_spec;
12752
12753 type_spec
12754 = cp_parser_type_specifier (parser, flags,
12755 decl_specs,
12756 /*is_declaration=*/true,
12757 &decl_spec_declares_class_or_enum,
12758 &is_cv_qualifier);
12759 *declares_class_or_enum |= decl_spec_declares_class_or_enum;
12760
12761 /* If this type-specifier referenced a user-defined type
12762 (a typedef, class-name, etc.), then we can't allow any
12763 more such type-specifiers henceforth.
12764
12765 [dcl.spec]
12766
12767 The longest sequence of decl-specifiers that could
12768 possibly be a type name is taken as the
12769 decl-specifier-seq of a declaration. The sequence shall
12770 be self-consistent as described below.
12771
12772 [dcl.type]
12773
12774 As a general rule, at most one type-specifier is allowed
12775 in the complete decl-specifier-seq of a declaration. The
12776 only exceptions are the following:
12777
12778 -- const or volatile can be combined with any other
12779 type-specifier.
12780
12781 -- signed or unsigned can be combined with char, long,
12782 short, or int.
12783
12784 -- ..
12785
12786 Example:
12787
12788 typedef char* Pc;
12789 void g (const int Pc);
12790
12791 Here, Pc is *not* part of the decl-specifier seq; it's
12792 the declarator. Therefore, once we see a type-specifier
12793 (other than a cv-qualifier), we forbid any additional
12794 user-defined types. We *do* still allow things like `int
12795 int' to be considered a decl-specifier-seq, and issue the
12796 error message later. */
12797 if (type_spec && !is_cv_qualifier)
12798 flags |= CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES;
12799 /* A constructor declarator cannot follow a type-specifier. */
12800 if (type_spec)
12801 {
12802 constructor_possible_p = false;
12803 found_decl_spec = true;
12804 if (!is_cv_qualifier)
12805 decl_specs->any_type_specifiers_p = true;
12806 }
12807 }
12808
12809 /* If we still do not have a DECL_SPEC, then there are no more
12810 decl-specifiers. */
12811 if (!found_decl_spec)
12812 break;
12813
12814 decl_specs->any_specifiers_p = true;
12815 /* After we see one decl-specifier, further decl-specifiers are
12816 always optional. */
12817 flags |= CP_PARSER_FLAGS_OPTIONAL;
12818 }
12819
12820 /* Don't allow a friend specifier with a class definition. */
12821 if (decl_spec_seq_has_spec_p (decl_specs, ds_friend)
12822 && (*declares_class_or_enum & 2))
12823 error_at (decl_specs->locations[ds_friend],
12824 "class definition may not be declared a friend");
12825 }
12826
12827 /* Parse an (optional) storage-class-specifier.
12828
12829 storage-class-specifier:
12830 auto
12831 register
12832 static
12833 extern
12834 mutable
12835
12836 GNU Extension:
12837
12838 storage-class-specifier:
12839 thread
12840
12841 Returns an IDENTIFIER_NODE corresponding to the keyword used. */
12842
12843 static tree
12844 cp_parser_storage_class_specifier_opt (cp_parser* parser)
12845 {
12846 switch (cp_lexer_peek_token (parser->lexer)->keyword)
12847 {
12848 case RID_AUTO:
12849 if (cxx_dialect != cxx98)
12850 return NULL_TREE;
12851 /* Fall through for C++98. */
12852
12853 case RID_REGISTER:
12854 case RID_STATIC:
12855 case RID_EXTERN:
12856 case RID_MUTABLE:
12857 case RID_THREAD:
12858 /* Consume the token. */
12859 return cp_lexer_consume_token (parser->lexer)->u.value;
12860
12861 default:
12862 return NULL_TREE;
12863 }
12864 }
12865
12866 /* Parse an (optional) function-specifier.
12867
12868 function-specifier:
12869 inline
12870 virtual
12871 explicit
12872
12873 Returns an IDENTIFIER_NODE corresponding to the keyword used.
12874 Updates DECL_SPECS, if it is non-NULL. */
12875
12876 static tree
12877 cp_parser_function_specifier_opt (cp_parser* parser,
12878 cp_decl_specifier_seq *decl_specs)
12879 {
12880 cp_token *token = cp_lexer_peek_token (parser->lexer);
12881 switch (token->keyword)
12882 {
12883 case RID_INLINE:
12884 set_and_check_decl_spec_loc (decl_specs, ds_inline, token);
12885 break;
12886
12887 case RID_VIRTUAL:
12888 /* 14.5.2.3 [temp.mem]
12889
12890 A member function template shall not be virtual. */
12891 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
12892 error_at (token->location, "templates may not be %<virtual%>");
12893 else
12894 set_and_check_decl_spec_loc (decl_specs, ds_virtual, token);
12895 break;
12896
12897 case RID_EXPLICIT:
12898 set_and_check_decl_spec_loc (decl_specs, ds_explicit, token);
12899 break;
12900
12901 default:
12902 return NULL_TREE;
12903 }
12904
12905 /* Consume the token. */
12906 return cp_lexer_consume_token (parser->lexer)->u.value;
12907 }
12908
12909 /* Parse a linkage-specification.
12910
12911 linkage-specification:
12912 extern string-literal { declaration-seq [opt] }
12913 extern string-literal declaration */
12914
12915 static void
12916 cp_parser_linkage_specification (cp_parser* parser)
12917 {
12918 tree linkage;
12919
12920 /* Look for the `extern' keyword. */
12921 cp_parser_require_keyword (parser, RID_EXTERN, RT_EXTERN);
12922
12923 /* Look for the string-literal. */
12924 linkage = cp_parser_string_literal (parser, false, false);
12925
12926 /* Transform the literal into an identifier. If the literal is a
12927 wide-character string, or contains embedded NULs, then we can't
12928 handle it as the user wants. */
12929 if (strlen (TREE_STRING_POINTER (linkage))
12930 != (size_t) (TREE_STRING_LENGTH (linkage) - 1))
12931 {
12932 cp_parser_error (parser, "invalid linkage-specification");
12933 /* Assume C++ linkage. */
12934 linkage = lang_name_cplusplus;
12935 }
12936 else
12937 linkage = get_identifier (TREE_STRING_POINTER (linkage));
12938
12939 /* We're now using the new linkage. */
12940 push_lang_context (linkage);
12941
12942 /* If the next token is a `{', then we're using the first
12943 production. */
12944 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
12945 {
12946 cp_ensure_no_omp_declare_simd (parser);
12947 cp_ensure_no_oacc_routine (parser);
12948
12949 /* Consume the `{' token. */
12950 cp_lexer_consume_token (parser->lexer);
12951 /* Parse the declarations. */
12952 cp_parser_declaration_seq_opt (parser);
12953 /* Look for the closing `}'. */
12954 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
12955 }
12956 /* Otherwise, there's just one declaration. */
12957 else
12958 {
12959 bool saved_in_unbraced_linkage_specification_p;
12960
12961 saved_in_unbraced_linkage_specification_p
12962 = parser->in_unbraced_linkage_specification_p;
12963 parser->in_unbraced_linkage_specification_p = true;
12964 cp_parser_declaration (parser);
12965 parser->in_unbraced_linkage_specification_p
12966 = saved_in_unbraced_linkage_specification_p;
12967 }
12968
12969 /* We're done with the linkage-specification. */
12970 pop_lang_context ();
12971 }
12972
12973 /* Parse a static_assert-declaration.
12974
12975 static_assert-declaration:
12976 static_assert ( constant-expression , string-literal ) ;
12977 static_assert ( constant-expression ) ; (C++1Z)
12978
12979 If MEMBER_P, this static_assert is a class member. */
12980
12981 static void
12982 cp_parser_static_assert(cp_parser *parser, bool member_p)
12983 {
12984 tree condition;
12985 tree message;
12986 cp_token *token;
12987 location_t saved_loc;
12988 bool dummy;
12989
12990 /* Peek at the `static_assert' token so we can keep track of exactly
12991 where the static assertion started. */
12992 token = cp_lexer_peek_token (parser->lexer);
12993 saved_loc = token->location;
12994
12995 /* Look for the `static_assert' keyword. */
12996 if (!cp_parser_require_keyword (parser, RID_STATIC_ASSERT,
12997 RT_STATIC_ASSERT))
12998 return;
12999
13000 /* We know we are in a static assertion; commit to any tentative
13001 parse. */
13002 if (cp_parser_parsing_tentatively (parser))
13003 cp_parser_commit_to_tentative_parse (parser);
13004
13005 /* Parse the `(' starting the static assertion condition. */
13006 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
13007
13008 /* Parse the constant-expression. Allow a non-constant expression
13009 here in order to give better diagnostics in finish_static_assert. */
13010 condition =
13011 cp_parser_constant_expression (parser,
13012 /*allow_non_constant_p=*/true,
13013 /*non_constant_p=*/&dummy);
13014
13015 if (cp_lexer_peek_token (parser->lexer)->type == CPP_CLOSE_PAREN)
13016 {
13017 if (cxx_dialect < cxx1z)
13018 pedwarn (input_location, OPT_Wpedantic,
13019 "static_assert without a message "
13020 "only available with -std=c++1z or -std=gnu++1z");
13021 /* Eat the ')' */
13022 cp_lexer_consume_token (parser->lexer);
13023 message = build_string (1, "");
13024 TREE_TYPE (message) = char_array_type_node;
13025 fix_string_type (message);
13026 }
13027 else
13028 {
13029 /* Parse the separating `,'. */
13030 cp_parser_require (parser, CPP_COMMA, RT_COMMA);
13031
13032 /* Parse the string-literal message. */
13033 message = cp_parser_string_literal (parser,
13034 /*translate=*/false,
13035 /*wide_ok=*/true);
13036
13037 /* A `)' completes the static assertion. */
13038 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
13039 cp_parser_skip_to_closing_parenthesis (parser,
13040 /*recovering=*/true,
13041 /*or_comma=*/false,
13042 /*consume_paren=*/true);
13043 }
13044
13045 /* A semicolon terminates the declaration. */
13046 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
13047
13048 /* Complete the static assertion, which may mean either processing
13049 the static assert now or saving it for template instantiation. */
13050 finish_static_assert (condition, message, saved_loc, member_p);
13051 }
13052
13053 /* Parse the expression in decltype ( expression ). */
13054
13055 static tree
13056 cp_parser_decltype_expr (cp_parser *parser,
13057 bool &id_expression_or_member_access_p)
13058 {
13059 cp_token *id_expr_start_token;
13060 tree expr;
13061
13062 /* Since we're going to preserve any side-effects from this parse, set up a
13063 firewall to protect our callers from cp_parser_commit_to_tentative_parse
13064 in the expression. */
13065 tentative_firewall firewall (parser);
13066
13067 /* First, try parsing an id-expression. */
13068 id_expr_start_token = cp_lexer_peek_token (parser->lexer);
13069 cp_parser_parse_tentatively (parser);
13070 expr = cp_parser_id_expression (parser,
13071 /*template_keyword_p=*/false,
13072 /*check_dependency_p=*/true,
13073 /*template_p=*/NULL,
13074 /*declarator_p=*/false,
13075 /*optional_p=*/false);
13076
13077 if (!cp_parser_error_occurred (parser) && expr != error_mark_node)
13078 {
13079 bool non_integral_constant_expression_p = false;
13080 tree id_expression = expr;
13081 cp_id_kind idk;
13082 const char *error_msg;
13083
13084 if (identifier_p (expr))
13085 /* Lookup the name we got back from the id-expression. */
13086 expr = cp_parser_lookup_name_simple (parser, expr,
13087 id_expr_start_token->location);
13088
13089 if (expr
13090 && expr != error_mark_node
13091 && TREE_CODE (expr) != TYPE_DECL
13092 && (TREE_CODE (expr) != BIT_NOT_EXPR
13093 || !TYPE_P (TREE_OPERAND (expr, 0)))
13094 && cp_lexer_peek_token (parser->lexer)->type == CPP_CLOSE_PAREN)
13095 {
13096 /* Complete lookup of the id-expression. */
13097 expr = (finish_id_expression
13098 (id_expression, expr, parser->scope, &idk,
13099 /*integral_constant_expression_p=*/false,
13100 /*allow_non_integral_constant_expression_p=*/true,
13101 &non_integral_constant_expression_p,
13102 /*template_p=*/false,
13103 /*done=*/true,
13104 /*address_p=*/false,
13105 /*template_arg_p=*/false,
13106 &error_msg,
13107 id_expr_start_token->location));
13108
13109 if (expr == error_mark_node)
13110 /* We found an id-expression, but it was something that we
13111 should not have found. This is an error, not something
13112 we can recover from, so note that we found an
13113 id-expression and we'll recover as gracefully as
13114 possible. */
13115 id_expression_or_member_access_p = true;
13116 }
13117
13118 if (expr
13119 && expr != error_mark_node
13120 && cp_lexer_peek_token (parser->lexer)->type == CPP_CLOSE_PAREN)
13121 /* We have an id-expression. */
13122 id_expression_or_member_access_p = true;
13123 }
13124
13125 if (!id_expression_or_member_access_p)
13126 {
13127 /* Abort the id-expression parse. */
13128 cp_parser_abort_tentative_parse (parser);
13129
13130 /* Parsing tentatively, again. */
13131 cp_parser_parse_tentatively (parser);
13132
13133 /* Parse a class member access. */
13134 expr = cp_parser_postfix_expression (parser, /*address_p=*/false,
13135 /*cast_p=*/false, /*decltype*/true,
13136 /*member_access_only_p=*/true, NULL);
13137
13138 if (expr
13139 && expr != error_mark_node
13140 && cp_lexer_peek_token (parser->lexer)->type == CPP_CLOSE_PAREN)
13141 /* We have an id-expression. */
13142 id_expression_or_member_access_p = true;
13143 }
13144
13145 if (id_expression_or_member_access_p)
13146 /* We have parsed the complete id-expression or member access. */
13147 cp_parser_parse_definitely (parser);
13148 else
13149 {
13150 /* Abort our attempt to parse an id-expression or member access
13151 expression. */
13152 cp_parser_abort_tentative_parse (parser);
13153
13154 /* Parse a full expression. */
13155 expr = cp_parser_expression (parser, /*pidk=*/NULL, /*cast_p=*/false,
13156 /*decltype_p=*/true);
13157 }
13158
13159 return expr;
13160 }
13161
13162 /* Parse a `decltype' type. Returns the type.
13163
13164 simple-type-specifier:
13165 decltype ( expression )
13166 C++14 proposal:
13167 decltype ( auto ) */
13168
13169 static tree
13170 cp_parser_decltype (cp_parser *parser)
13171 {
13172 tree expr;
13173 bool id_expression_or_member_access_p = false;
13174 const char *saved_message;
13175 bool saved_integral_constant_expression_p;
13176 bool saved_non_integral_constant_expression_p;
13177 bool saved_greater_than_is_operator_p;
13178 cp_token *start_token = cp_lexer_peek_token (parser->lexer);
13179
13180 if (start_token->type == CPP_DECLTYPE)
13181 {
13182 /* Already parsed. */
13183 cp_lexer_consume_token (parser->lexer);
13184 return saved_checks_value (start_token->u.tree_check_value);
13185 }
13186
13187 /* Look for the `decltype' token. */
13188 if (!cp_parser_require_keyword (parser, RID_DECLTYPE, RT_DECLTYPE))
13189 return error_mark_node;
13190
13191 /* Parse the opening `('. */
13192 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
13193 return error_mark_node;
13194
13195 /* decltype (auto) */
13196 if (cxx_dialect >= cxx14
13197 && cp_lexer_next_token_is_keyword (parser->lexer, RID_AUTO))
13198 {
13199 cp_lexer_consume_token (parser->lexer);
13200 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
13201 return error_mark_node;
13202 expr = make_decltype_auto ();
13203 AUTO_IS_DECLTYPE (expr) = true;
13204 goto rewrite;
13205 }
13206
13207 /* Types cannot be defined in a `decltype' expression. Save away the
13208 old message. */
13209 saved_message = parser->type_definition_forbidden_message;
13210
13211 /* And create the new one. */
13212 parser->type_definition_forbidden_message
13213 = G_("types may not be defined in %<decltype%> expressions");
13214
13215 /* The restrictions on constant-expressions do not apply inside
13216 decltype expressions. */
13217 saved_integral_constant_expression_p
13218 = parser->integral_constant_expression_p;
13219 saved_non_integral_constant_expression_p
13220 = parser->non_integral_constant_expression_p;
13221 parser->integral_constant_expression_p = false;
13222
13223 /* Within a parenthesized expression, a `>' token is always
13224 the greater-than operator. */
13225 saved_greater_than_is_operator_p
13226 = parser->greater_than_is_operator_p;
13227 parser->greater_than_is_operator_p = true;
13228
13229 /* Do not actually evaluate the expression. */
13230 ++cp_unevaluated_operand;
13231
13232 /* Do not warn about problems with the expression. */
13233 ++c_inhibit_evaluation_warnings;
13234
13235 expr = cp_parser_decltype_expr (parser, id_expression_or_member_access_p);
13236
13237 /* Go back to evaluating expressions. */
13238 --cp_unevaluated_operand;
13239 --c_inhibit_evaluation_warnings;
13240
13241 /* The `>' token might be the end of a template-id or
13242 template-parameter-list now. */
13243 parser->greater_than_is_operator_p
13244 = saved_greater_than_is_operator_p;
13245
13246 /* Restore the old message and the integral constant expression
13247 flags. */
13248 parser->type_definition_forbidden_message = saved_message;
13249 parser->integral_constant_expression_p
13250 = saved_integral_constant_expression_p;
13251 parser->non_integral_constant_expression_p
13252 = saved_non_integral_constant_expression_p;
13253
13254 /* Parse to the closing `)'. */
13255 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
13256 {
13257 cp_parser_skip_to_closing_parenthesis (parser, true, false,
13258 /*consume_paren=*/true);
13259 return error_mark_node;
13260 }
13261
13262 expr = finish_decltype_type (expr, id_expression_or_member_access_p,
13263 tf_warning_or_error);
13264
13265 rewrite:
13266 /* Replace the decltype with a CPP_DECLTYPE so we don't need to parse
13267 it again. */
13268 start_token->type = CPP_DECLTYPE;
13269 start_token->u.tree_check_value = ggc_cleared_alloc<struct tree_check> ();
13270 start_token->u.tree_check_value->value = expr;
13271 start_token->u.tree_check_value->checks = get_deferred_access_checks ();
13272 start_token->keyword = RID_MAX;
13273 cp_lexer_purge_tokens_after (parser->lexer, start_token);
13274
13275 return expr;
13276 }
13277
13278 /* Special member functions [gram.special] */
13279
13280 /* Parse a conversion-function-id.
13281
13282 conversion-function-id:
13283 operator conversion-type-id
13284
13285 Returns an IDENTIFIER_NODE representing the operator. */
13286
13287 static tree
13288 cp_parser_conversion_function_id (cp_parser* parser)
13289 {
13290 tree type;
13291 tree saved_scope;
13292 tree saved_qualifying_scope;
13293 tree saved_object_scope;
13294 tree pushed_scope = NULL_TREE;
13295
13296 /* Look for the `operator' token. */
13297 if (!cp_parser_require_keyword (parser, RID_OPERATOR, RT_OPERATOR))
13298 return error_mark_node;
13299 /* When we parse the conversion-type-id, the current scope will be
13300 reset. However, we need that information in able to look up the
13301 conversion function later, so we save it here. */
13302 saved_scope = parser->scope;
13303 saved_qualifying_scope = parser->qualifying_scope;
13304 saved_object_scope = parser->object_scope;
13305 /* We must enter the scope of the class so that the names of
13306 entities declared within the class are available in the
13307 conversion-type-id. For example, consider:
13308
13309 struct S {
13310 typedef int I;
13311 operator I();
13312 };
13313
13314 S::operator I() { ... }
13315
13316 In order to see that `I' is a type-name in the definition, we
13317 must be in the scope of `S'. */
13318 if (saved_scope)
13319 pushed_scope = push_scope (saved_scope);
13320 /* Parse the conversion-type-id. */
13321 type = cp_parser_conversion_type_id (parser);
13322 /* Leave the scope of the class, if any. */
13323 if (pushed_scope)
13324 pop_scope (pushed_scope);
13325 /* Restore the saved scope. */
13326 parser->scope = saved_scope;
13327 parser->qualifying_scope = saved_qualifying_scope;
13328 parser->object_scope = saved_object_scope;
13329 /* If the TYPE is invalid, indicate failure. */
13330 if (type == error_mark_node)
13331 return error_mark_node;
13332 return mangle_conv_op_name_for_type (type);
13333 }
13334
13335 /* Parse a conversion-type-id:
13336
13337 conversion-type-id:
13338 type-specifier-seq conversion-declarator [opt]
13339
13340 Returns the TYPE specified. */
13341
13342 static tree
13343 cp_parser_conversion_type_id (cp_parser* parser)
13344 {
13345 tree attributes;
13346 cp_decl_specifier_seq type_specifiers;
13347 cp_declarator *declarator;
13348 tree type_specified;
13349 const char *saved_message;
13350
13351 /* Parse the attributes. */
13352 attributes = cp_parser_attributes_opt (parser);
13353
13354 saved_message = parser->type_definition_forbidden_message;
13355 parser->type_definition_forbidden_message
13356 = G_("types may not be defined in a conversion-type-id");
13357
13358 /* Parse the type-specifiers. */
13359 cp_parser_type_specifier_seq (parser, /*is_declaration=*/false,
13360 /*is_trailing_return=*/false,
13361 &type_specifiers);
13362
13363 parser->type_definition_forbidden_message = saved_message;
13364
13365 /* If that didn't work, stop. */
13366 if (type_specifiers.type == error_mark_node)
13367 return error_mark_node;
13368 /* Parse the conversion-declarator. */
13369 declarator = cp_parser_conversion_declarator_opt (parser);
13370
13371 type_specified = grokdeclarator (declarator, &type_specifiers, TYPENAME,
13372 /*initialized=*/0, &attributes);
13373 if (attributes)
13374 cplus_decl_attributes (&type_specified, attributes, /*flags=*/0);
13375
13376 /* Don't give this error when parsing tentatively. This happens to
13377 work because we always parse this definitively once. */
13378 if (! cp_parser_uncommitted_to_tentative_parse_p (parser)
13379 && type_uses_auto (type_specified))
13380 {
13381 if (cxx_dialect < cxx14)
13382 {
13383 error ("invalid use of %<auto%> in conversion operator");
13384 return error_mark_node;
13385 }
13386 else if (template_parm_scope_p ())
13387 warning (0, "use of %<auto%> in member template "
13388 "conversion operator can never be deduced");
13389 }
13390
13391 return type_specified;
13392 }
13393
13394 /* Parse an (optional) conversion-declarator.
13395
13396 conversion-declarator:
13397 ptr-operator conversion-declarator [opt]
13398
13399 */
13400
13401 static cp_declarator *
13402 cp_parser_conversion_declarator_opt (cp_parser* parser)
13403 {
13404 enum tree_code code;
13405 tree class_type, std_attributes = NULL_TREE;
13406 cp_cv_quals cv_quals;
13407
13408 /* We don't know if there's a ptr-operator next, or not. */
13409 cp_parser_parse_tentatively (parser);
13410 /* Try the ptr-operator. */
13411 code = cp_parser_ptr_operator (parser, &class_type, &cv_quals,
13412 &std_attributes);
13413 /* If it worked, look for more conversion-declarators. */
13414 if (cp_parser_parse_definitely (parser))
13415 {
13416 cp_declarator *declarator;
13417
13418 /* Parse another optional declarator. */
13419 declarator = cp_parser_conversion_declarator_opt (parser);
13420
13421 declarator = cp_parser_make_indirect_declarator
13422 (code, class_type, cv_quals, declarator, std_attributes);
13423
13424 return declarator;
13425 }
13426
13427 return NULL;
13428 }
13429
13430 /* Parse an (optional) ctor-initializer.
13431
13432 ctor-initializer:
13433 : mem-initializer-list
13434
13435 Returns TRUE iff the ctor-initializer was actually present. */
13436
13437 static bool
13438 cp_parser_ctor_initializer_opt (cp_parser* parser)
13439 {
13440 /* If the next token is not a `:', then there is no
13441 ctor-initializer. */
13442 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COLON))
13443 {
13444 /* Do default initialization of any bases and members. */
13445 if (DECL_CONSTRUCTOR_P (current_function_decl))
13446 finish_mem_initializers (NULL_TREE);
13447
13448 return false;
13449 }
13450
13451 /* Consume the `:' token. */
13452 cp_lexer_consume_token (parser->lexer);
13453 /* And the mem-initializer-list. */
13454 cp_parser_mem_initializer_list (parser);
13455
13456 return true;
13457 }
13458
13459 /* Parse a mem-initializer-list.
13460
13461 mem-initializer-list:
13462 mem-initializer ... [opt]
13463 mem-initializer ... [opt] , mem-initializer-list */
13464
13465 static void
13466 cp_parser_mem_initializer_list (cp_parser* parser)
13467 {
13468 tree mem_initializer_list = NULL_TREE;
13469 tree target_ctor = error_mark_node;
13470 cp_token *token = cp_lexer_peek_token (parser->lexer);
13471
13472 /* Let the semantic analysis code know that we are starting the
13473 mem-initializer-list. */
13474 if (!DECL_CONSTRUCTOR_P (current_function_decl))
13475 error_at (token->location,
13476 "only constructors take member initializers");
13477
13478 /* Loop through the list. */
13479 while (true)
13480 {
13481 tree mem_initializer;
13482
13483 token = cp_lexer_peek_token (parser->lexer);
13484 /* Parse the mem-initializer. */
13485 mem_initializer = cp_parser_mem_initializer (parser);
13486 /* If the next token is a `...', we're expanding member initializers. */
13487 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
13488 {
13489 /* Consume the `...'. */
13490 cp_lexer_consume_token (parser->lexer);
13491
13492 /* The TREE_PURPOSE must be a _TYPE, because base-specifiers
13493 can be expanded but members cannot. */
13494 if (mem_initializer != error_mark_node
13495 && !TYPE_P (TREE_PURPOSE (mem_initializer)))
13496 {
13497 error_at (token->location,
13498 "cannot expand initializer for member %<%D%>",
13499 TREE_PURPOSE (mem_initializer));
13500 mem_initializer = error_mark_node;
13501 }
13502
13503 /* Construct the pack expansion type. */
13504 if (mem_initializer != error_mark_node)
13505 mem_initializer = make_pack_expansion (mem_initializer);
13506 }
13507 if (target_ctor != error_mark_node
13508 && mem_initializer != error_mark_node)
13509 {
13510 error ("mem-initializer for %qD follows constructor delegation",
13511 TREE_PURPOSE (mem_initializer));
13512 mem_initializer = error_mark_node;
13513 }
13514 /* Look for a target constructor. */
13515 if (mem_initializer != error_mark_node
13516 && CLASS_TYPE_P (TREE_PURPOSE (mem_initializer))
13517 && same_type_p (TREE_PURPOSE (mem_initializer), current_class_type))
13518 {
13519 maybe_warn_cpp0x (CPP0X_DELEGATING_CTORS);
13520 if (mem_initializer_list)
13521 {
13522 error ("constructor delegation follows mem-initializer for %qD",
13523 TREE_PURPOSE (mem_initializer_list));
13524 mem_initializer = error_mark_node;
13525 }
13526 target_ctor = mem_initializer;
13527 }
13528 /* Add it to the list, unless it was erroneous. */
13529 if (mem_initializer != error_mark_node)
13530 {
13531 TREE_CHAIN (mem_initializer) = mem_initializer_list;
13532 mem_initializer_list = mem_initializer;
13533 }
13534 /* If the next token is not a `,', we're done. */
13535 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
13536 break;
13537 /* Consume the `,' token. */
13538 cp_lexer_consume_token (parser->lexer);
13539 }
13540
13541 /* Perform semantic analysis. */
13542 if (DECL_CONSTRUCTOR_P (current_function_decl))
13543 finish_mem_initializers (mem_initializer_list);
13544 }
13545
13546 /* Parse a mem-initializer.
13547
13548 mem-initializer:
13549 mem-initializer-id ( expression-list [opt] )
13550 mem-initializer-id braced-init-list
13551
13552 GNU extension:
13553
13554 mem-initializer:
13555 ( expression-list [opt] )
13556
13557 Returns a TREE_LIST. The TREE_PURPOSE is the TYPE (for a base
13558 class) or FIELD_DECL (for a non-static data member) to initialize;
13559 the TREE_VALUE is the expression-list. An empty initialization
13560 list is represented by void_list_node. */
13561
13562 static tree
13563 cp_parser_mem_initializer (cp_parser* parser)
13564 {
13565 tree mem_initializer_id;
13566 tree expression_list;
13567 tree member;
13568 cp_token *token = cp_lexer_peek_token (parser->lexer);
13569
13570 /* Find out what is being initialized. */
13571 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
13572 {
13573 permerror (token->location,
13574 "anachronistic old-style base class initializer");
13575 mem_initializer_id = NULL_TREE;
13576 }
13577 else
13578 {
13579 mem_initializer_id = cp_parser_mem_initializer_id (parser);
13580 if (mem_initializer_id == error_mark_node)
13581 return mem_initializer_id;
13582 }
13583 member = expand_member_init (mem_initializer_id);
13584 if (member && !DECL_P (member))
13585 in_base_initializer = 1;
13586
13587 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
13588 {
13589 bool expr_non_constant_p;
13590 cp_lexer_set_source_position (parser->lexer);
13591 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
13592 expression_list = cp_parser_braced_list (parser, &expr_non_constant_p);
13593 CONSTRUCTOR_IS_DIRECT_INIT (expression_list) = 1;
13594 expression_list = build_tree_list (NULL_TREE, expression_list);
13595 }
13596 else
13597 {
13598 vec<tree, va_gc> *vec;
13599 vec = cp_parser_parenthesized_expression_list (parser, non_attr,
13600 /*cast_p=*/false,
13601 /*allow_expansion_p=*/true,
13602 /*non_constant_p=*/NULL);
13603 if (vec == NULL)
13604 return error_mark_node;
13605 expression_list = build_tree_list_vec (vec);
13606 release_tree_vector (vec);
13607 }
13608
13609 if (expression_list == error_mark_node)
13610 return error_mark_node;
13611 if (!expression_list)
13612 expression_list = void_type_node;
13613
13614 in_base_initializer = 0;
13615
13616 return member ? build_tree_list (member, expression_list) : error_mark_node;
13617 }
13618
13619 /* Parse a mem-initializer-id.
13620
13621 mem-initializer-id:
13622 :: [opt] nested-name-specifier [opt] class-name
13623 decltype-specifier (C++11)
13624 identifier
13625
13626 Returns a TYPE indicating the class to be initialized for the first
13627 production (and the second in C++11). Returns an IDENTIFIER_NODE
13628 indicating the data member to be initialized for the last production. */
13629
13630 static tree
13631 cp_parser_mem_initializer_id (cp_parser* parser)
13632 {
13633 bool global_scope_p;
13634 bool nested_name_specifier_p;
13635 bool template_p = false;
13636 tree id;
13637
13638 cp_token *token = cp_lexer_peek_token (parser->lexer);
13639
13640 /* `typename' is not allowed in this context ([temp.res]). */
13641 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TYPENAME))
13642 {
13643 error_at (token->location,
13644 "keyword %<typename%> not allowed in this context (a qualified "
13645 "member initializer is implicitly a type)");
13646 cp_lexer_consume_token (parser->lexer);
13647 }
13648 /* Look for the optional `::' operator. */
13649 global_scope_p
13650 = (cp_parser_global_scope_opt (parser,
13651 /*current_scope_valid_p=*/false)
13652 != NULL_TREE);
13653 /* Look for the optional nested-name-specifier. The simplest way to
13654 implement:
13655
13656 [temp.res]
13657
13658 The keyword `typename' is not permitted in a base-specifier or
13659 mem-initializer; in these contexts a qualified name that
13660 depends on a template-parameter is implicitly assumed to be a
13661 type name.
13662
13663 is to assume that we have seen the `typename' keyword at this
13664 point. */
13665 nested_name_specifier_p
13666 = (cp_parser_nested_name_specifier_opt (parser,
13667 /*typename_keyword_p=*/true,
13668 /*check_dependency_p=*/true,
13669 /*type_p=*/true,
13670 /*is_declaration=*/true)
13671 != NULL_TREE);
13672 if (nested_name_specifier_p)
13673 template_p = cp_parser_optional_template_keyword (parser);
13674 /* If there is a `::' operator or a nested-name-specifier, then we
13675 are definitely looking for a class-name. */
13676 if (global_scope_p || nested_name_specifier_p)
13677 return cp_parser_class_name (parser,
13678 /*typename_keyword_p=*/true,
13679 /*template_keyword_p=*/template_p,
13680 typename_type,
13681 /*check_dependency_p=*/true,
13682 /*class_head_p=*/false,
13683 /*is_declaration=*/true);
13684 /* Otherwise, we could also be looking for an ordinary identifier. */
13685 cp_parser_parse_tentatively (parser);
13686 if (cp_lexer_next_token_is_decltype (parser->lexer))
13687 /* Try a decltype-specifier. */
13688 id = cp_parser_decltype (parser);
13689 else
13690 /* Otherwise, try a class-name. */
13691 id = cp_parser_class_name (parser,
13692 /*typename_keyword_p=*/true,
13693 /*template_keyword_p=*/false,
13694 none_type,
13695 /*check_dependency_p=*/true,
13696 /*class_head_p=*/false,
13697 /*is_declaration=*/true);
13698 /* If we found one, we're done. */
13699 if (cp_parser_parse_definitely (parser))
13700 return id;
13701 /* Otherwise, look for an ordinary identifier. */
13702 return cp_parser_identifier (parser);
13703 }
13704
13705 /* Overloading [gram.over] */
13706
13707 /* Parse an operator-function-id.
13708
13709 operator-function-id:
13710 operator operator
13711
13712 Returns an IDENTIFIER_NODE for the operator which is a
13713 human-readable spelling of the identifier, e.g., `operator +'. */
13714
13715 static cp_expr
13716 cp_parser_operator_function_id (cp_parser* parser)
13717 {
13718 /* Look for the `operator' keyword. */
13719 if (!cp_parser_require_keyword (parser, RID_OPERATOR, RT_OPERATOR))
13720 return error_mark_node;
13721 /* And then the name of the operator itself. */
13722 return cp_parser_operator (parser);
13723 }
13724
13725 /* Return an identifier node for a user-defined literal operator.
13726 The suffix identifier is chained to the operator name identifier. */
13727
13728 static tree
13729 cp_literal_operator_id (const char* name)
13730 {
13731 tree identifier;
13732 char *buffer = XNEWVEC (char, strlen (UDLIT_OP_ANSI_PREFIX)
13733 + strlen (name) + 10);
13734 sprintf (buffer, UDLIT_OP_ANSI_FORMAT, name);
13735 identifier = get_identifier (buffer);
13736
13737 return identifier;
13738 }
13739
13740 /* Parse an operator.
13741
13742 operator:
13743 new delete new[] delete[] + - * / % ^ & | ~ ! = < >
13744 += -= *= /= %= ^= &= |= << >> >>= <<= == != <= >= &&
13745 || ++ -- , ->* -> () []
13746
13747 GNU Extensions:
13748
13749 operator:
13750 <? >? <?= >?=
13751
13752 Returns an IDENTIFIER_NODE for the operator which is a
13753 human-readable spelling of the identifier, e.g., `operator +'. */
13754
13755 static cp_expr
13756 cp_parser_operator (cp_parser* parser)
13757 {
13758 tree id = NULL_TREE;
13759 cp_token *token;
13760 bool utf8 = false;
13761
13762 /* Peek at the next token. */
13763 token = cp_lexer_peek_token (parser->lexer);
13764
13765 location_t start_loc = token->location;
13766
13767 /* Figure out which operator we have. */
13768 switch (token->type)
13769 {
13770 case CPP_KEYWORD:
13771 {
13772 enum tree_code op;
13773
13774 /* The keyword should be either `new' or `delete'. */
13775 if (token->keyword == RID_NEW)
13776 op = NEW_EXPR;
13777 else if (token->keyword == RID_DELETE)
13778 op = DELETE_EXPR;
13779 else
13780 break;
13781
13782 /* Consume the `new' or `delete' token. */
13783 location_t end_loc = cp_lexer_consume_token (parser->lexer)->location;
13784
13785 /* Peek at the next token. */
13786 token = cp_lexer_peek_token (parser->lexer);
13787 /* If it's a `[' token then this is the array variant of the
13788 operator. */
13789 if (token->type == CPP_OPEN_SQUARE)
13790 {
13791 /* Consume the `[' token. */
13792 cp_lexer_consume_token (parser->lexer);
13793 /* Look for the `]' token. */
13794 if (cp_token *close_token
13795 = cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE))
13796 end_loc = close_token->location;
13797 id = ansi_opname (op == NEW_EXPR
13798 ? VEC_NEW_EXPR : VEC_DELETE_EXPR);
13799 }
13800 /* Otherwise, we have the non-array variant. */
13801 else
13802 id = ansi_opname (op);
13803
13804 location_t loc = make_location (start_loc, start_loc, end_loc);
13805
13806 return cp_expr (id, loc);
13807 }
13808
13809 case CPP_PLUS:
13810 id = ansi_opname (PLUS_EXPR);
13811 break;
13812
13813 case CPP_MINUS:
13814 id = ansi_opname (MINUS_EXPR);
13815 break;
13816
13817 case CPP_MULT:
13818 id = ansi_opname (MULT_EXPR);
13819 break;
13820
13821 case CPP_DIV:
13822 id = ansi_opname (TRUNC_DIV_EXPR);
13823 break;
13824
13825 case CPP_MOD:
13826 id = ansi_opname (TRUNC_MOD_EXPR);
13827 break;
13828
13829 case CPP_XOR:
13830 id = ansi_opname (BIT_XOR_EXPR);
13831 break;
13832
13833 case CPP_AND:
13834 id = ansi_opname (BIT_AND_EXPR);
13835 break;
13836
13837 case CPP_OR:
13838 id = ansi_opname (BIT_IOR_EXPR);
13839 break;
13840
13841 case CPP_COMPL:
13842 id = ansi_opname (BIT_NOT_EXPR);
13843 break;
13844
13845 case CPP_NOT:
13846 id = ansi_opname (TRUTH_NOT_EXPR);
13847 break;
13848
13849 case CPP_EQ:
13850 id = ansi_assopname (NOP_EXPR);
13851 break;
13852
13853 case CPP_LESS:
13854 id = ansi_opname (LT_EXPR);
13855 break;
13856
13857 case CPP_GREATER:
13858 id = ansi_opname (GT_EXPR);
13859 break;
13860
13861 case CPP_PLUS_EQ:
13862 id = ansi_assopname (PLUS_EXPR);
13863 break;
13864
13865 case CPP_MINUS_EQ:
13866 id = ansi_assopname (MINUS_EXPR);
13867 break;
13868
13869 case CPP_MULT_EQ:
13870 id = ansi_assopname (MULT_EXPR);
13871 break;
13872
13873 case CPP_DIV_EQ:
13874 id = ansi_assopname (TRUNC_DIV_EXPR);
13875 break;
13876
13877 case CPP_MOD_EQ:
13878 id = ansi_assopname (TRUNC_MOD_EXPR);
13879 break;
13880
13881 case CPP_XOR_EQ:
13882 id = ansi_assopname (BIT_XOR_EXPR);
13883 break;
13884
13885 case CPP_AND_EQ:
13886 id = ansi_assopname (BIT_AND_EXPR);
13887 break;
13888
13889 case CPP_OR_EQ:
13890 id = ansi_assopname (BIT_IOR_EXPR);
13891 break;
13892
13893 case CPP_LSHIFT:
13894 id = ansi_opname (LSHIFT_EXPR);
13895 break;
13896
13897 case CPP_RSHIFT:
13898 id = ansi_opname (RSHIFT_EXPR);
13899 break;
13900
13901 case CPP_LSHIFT_EQ:
13902 id = ansi_assopname (LSHIFT_EXPR);
13903 break;
13904
13905 case CPP_RSHIFT_EQ:
13906 id = ansi_assopname (RSHIFT_EXPR);
13907 break;
13908
13909 case CPP_EQ_EQ:
13910 id = ansi_opname (EQ_EXPR);
13911 break;
13912
13913 case CPP_NOT_EQ:
13914 id = ansi_opname (NE_EXPR);
13915 break;
13916
13917 case CPP_LESS_EQ:
13918 id = ansi_opname (LE_EXPR);
13919 break;
13920
13921 case CPP_GREATER_EQ:
13922 id = ansi_opname (GE_EXPR);
13923 break;
13924
13925 case CPP_AND_AND:
13926 id = ansi_opname (TRUTH_ANDIF_EXPR);
13927 break;
13928
13929 case CPP_OR_OR:
13930 id = ansi_opname (TRUTH_ORIF_EXPR);
13931 break;
13932
13933 case CPP_PLUS_PLUS:
13934 id = ansi_opname (POSTINCREMENT_EXPR);
13935 break;
13936
13937 case CPP_MINUS_MINUS:
13938 id = ansi_opname (PREDECREMENT_EXPR);
13939 break;
13940
13941 case CPP_COMMA:
13942 id = ansi_opname (COMPOUND_EXPR);
13943 break;
13944
13945 case CPP_DEREF_STAR:
13946 id = ansi_opname (MEMBER_REF);
13947 break;
13948
13949 case CPP_DEREF:
13950 id = ansi_opname (COMPONENT_REF);
13951 break;
13952
13953 case CPP_OPEN_PAREN:
13954 /* Consume the `('. */
13955 cp_lexer_consume_token (parser->lexer);
13956 /* Look for the matching `)'. */
13957 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
13958 return ansi_opname (CALL_EXPR);
13959
13960 case CPP_OPEN_SQUARE:
13961 /* Consume the `['. */
13962 cp_lexer_consume_token (parser->lexer);
13963 /* Look for the matching `]'. */
13964 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
13965 return ansi_opname (ARRAY_REF);
13966
13967 case CPP_UTF8STRING:
13968 case CPP_UTF8STRING_USERDEF:
13969 utf8 = true;
13970 case CPP_STRING:
13971 case CPP_WSTRING:
13972 case CPP_STRING16:
13973 case CPP_STRING32:
13974 case CPP_STRING_USERDEF:
13975 case CPP_WSTRING_USERDEF:
13976 case CPP_STRING16_USERDEF:
13977 case CPP_STRING32_USERDEF:
13978 {
13979 tree str, string_tree;
13980 int sz, len;
13981
13982 if (cxx_dialect == cxx98)
13983 maybe_warn_cpp0x (CPP0X_USER_DEFINED_LITERALS);
13984
13985 /* Consume the string. */
13986 str = cp_parser_string_literal (parser, /*translate=*/true,
13987 /*wide_ok=*/true, /*lookup_udlit=*/false);
13988 if (str == error_mark_node)
13989 return error_mark_node;
13990 else if (TREE_CODE (str) == USERDEF_LITERAL)
13991 {
13992 string_tree = USERDEF_LITERAL_VALUE (str);
13993 id = USERDEF_LITERAL_SUFFIX_ID (str);
13994 }
13995 else
13996 {
13997 string_tree = str;
13998 /* Look for the suffix identifier. */
13999 token = cp_lexer_peek_token (parser->lexer);
14000 if (token->type == CPP_NAME)
14001 id = cp_parser_identifier (parser);
14002 else if (token->type == CPP_KEYWORD)
14003 {
14004 error ("unexpected keyword;"
14005 " remove space between quotes and suffix identifier");
14006 return error_mark_node;
14007 }
14008 else
14009 {
14010 error ("expected suffix identifier");
14011 return error_mark_node;
14012 }
14013 }
14014 sz = TREE_INT_CST_LOW (TYPE_SIZE_UNIT
14015 (TREE_TYPE (TREE_TYPE (string_tree))));
14016 len = TREE_STRING_LENGTH (string_tree) / sz - 1;
14017 if (len != 0)
14018 {
14019 error ("expected empty string after %<operator%> keyword");
14020 return error_mark_node;
14021 }
14022 if (utf8 || TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (string_tree)))
14023 != char_type_node)
14024 {
14025 error ("invalid encoding prefix in literal operator");
14026 return error_mark_node;
14027 }
14028 if (id != error_mark_node)
14029 {
14030 const char *name = IDENTIFIER_POINTER (id);
14031 id = cp_literal_operator_id (name);
14032 }
14033 return id;
14034 }
14035
14036 default:
14037 /* Anything else is an error. */
14038 break;
14039 }
14040
14041 /* If we have selected an identifier, we need to consume the
14042 operator token. */
14043 if (id)
14044 cp_lexer_consume_token (parser->lexer);
14045 /* Otherwise, no valid operator name was present. */
14046 else
14047 {
14048 cp_parser_error (parser, "expected operator");
14049 id = error_mark_node;
14050 }
14051
14052 return cp_expr (id, start_loc);
14053 }
14054
14055 /* Parse a template-declaration.
14056
14057 template-declaration:
14058 export [opt] template < template-parameter-list > declaration
14059
14060 If MEMBER_P is TRUE, this template-declaration occurs within a
14061 class-specifier.
14062
14063 The grammar rule given by the standard isn't correct. What
14064 is really meant is:
14065
14066 template-declaration:
14067 export [opt] template-parameter-list-seq
14068 decl-specifier-seq [opt] init-declarator [opt] ;
14069 export [opt] template-parameter-list-seq
14070 function-definition
14071
14072 template-parameter-list-seq:
14073 template-parameter-list-seq [opt]
14074 template < template-parameter-list >
14075
14076 Concept Extensions:
14077
14078 template-parameter-list-seq:
14079 template < template-parameter-list > requires-clause [opt]
14080
14081 requires-clause:
14082 requires logical-or-expression */
14083
14084 static void
14085 cp_parser_template_declaration (cp_parser* parser, bool member_p)
14086 {
14087 /* Check for `export'. */
14088 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_EXPORT))
14089 {
14090 /* Consume the `export' token. */
14091 cp_lexer_consume_token (parser->lexer);
14092 /* Warn that we do not support `export'. */
14093 warning (0, "keyword %<export%> not implemented, and will be ignored");
14094 }
14095
14096 cp_parser_template_declaration_after_export (parser, member_p);
14097 }
14098
14099 /* Parse a template-parameter-list.
14100
14101 template-parameter-list:
14102 template-parameter
14103 template-parameter-list , template-parameter
14104
14105 Returns a TREE_LIST. Each node represents a template parameter.
14106 The nodes are connected via their TREE_CHAINs. */
14107
14108 static tree
14109 cp_parser_template_parameter_list (cp_parser* parser)
14110 {
14111 tree parameter_list = NULL_TREE;
14112
14113 begin_template_parm_list ();
14114
14115 /* The loop below parses the template parms. We first need to know
14116 the total number of template parms to be able to compute proper
14117 canonical types of each dependent type. So after the loop, when
14118 we know the total number of template parms,
14119 end_template_parm_list computes the proper canonical types and
14120 fixes up the dependent types accordingly. */
14121 while (true)
14122 {
14123 tree parameter;
14124 bool is_non_type;
14125 bool is_parameter_pack;
14126 location_t parm_loc;
14127
14128 /* Parse the template-parameter. */
14129 parm_loc = cp_lexer_peek_token (parser->lexer)->location;
14130 parameter = cp_parser_template_parameter (parser,
14131 &is_non_type,
14132 &is_parameter_pack);
14133 /* Add it to the list. */
14134 if (parameter != error_mark_node)
14135 parameter_list = process_template_parm (parameter_list,
14136 parm_loc,
14137 parameter,
14138 is_non_type,
14139 is_parameter_pack);
14140 else
14141 {
14142 tree err_parm = build_tree_list (parameter, parameter);
14143 parameter_list = chainon (parameter_list, err_parm);
14144 }
14145
14146 /* If the next token is not a `,', we're done. */
14147 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
14148 break;
14149 /* Otherwise, consume the `,' token. */
14150 cp_lexer_consume_token (parser->lexer);
14151 }
14152
14153 return end_template_parm_list (parameter_list);
14154 }
14155
14156 /* Parse a introduction-list.
14157
14158 introduction-list:
14159 introduced-parameter
14160 introduction-list , introduced-parameter
14161
14162 introduced-parameter:
14163 ...[opt] identifier
14164
14165 Returns a TREE_VEC of WILDCARD_DECLs. If the parameter is a pack
14166 then the introduced parm will have WILDCARD_PACK_P set. In addition, the
14167 WILDCARD_DECL will also have DECL_NAME set and token location in
14168 DECL_SOURCE_LOCATION. */
14169
14170 static tree
14171 cp_parser_introduction_list (cp_parser *parser)
14172 {
14173 vec<tree, va_gc> *introduction_vec = make_tree_vector ();
14174
14175 while (true)
14176 {
14177 bool is_pack = cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS);
14178 if (is_pack)
14179 cp_lexer_consume_token (parser->lexer);
14180
14181 /* Build placeholder. */
14182 tree parm = build_nt (WILDCARD_DECL);
14183 DECL_SOURCE_LOCATION (parm)
14184 = cp_lexer_peek_token (parser->lexer)->location;
14185 DECL_NAME (parm) = cp_parser_identifier (parser);
14186 WILDCARD_PACK_P (parm) = is_pack;
14187 vec_safe_push (introduction_vec, parm);
14188
14189 /* If the next token is not a `,', we're done. */
14190 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
14191 break;
14192 /* Otherwise, consume the `,' token. */
14193 cp_lexer_consume_token (parser->lexer);
14194 }
14195
14196 /* Convert the vec into a TREE_VEC. */
14197 tree introduction_list = make_tree_vec (introduction_vec->length ());
14198 unsigned int n;
14199 tree parm;
14200 FOR_EACH_VEC_ELT (*introduction_vec, n, parm)
14201 TREE_VEC_ELT (introduction_list, n) = parm;
14202
14203 release_tree_vector (introduction_vec);
14204 return introduction_list;
14205 }
14206
14207 /* Given a declarator, get the declarator-id part, or NULL_TREE if this
14208 is an abstract declarator. */
14209
14210 static inline cp_declarator*
14211 get_id_declarator (cp_declarator *declarator)
14212 {
14213 cp_declarator *d = declarator;
14214 while (d && d->kind != cdk_id)
14215 d = d->declarator;
14216 return d;
14217 }
14218
14219 /* Get the unqualified-id from the DECLARATOR or NULL_TREE if this
14220 is an abstract declarator. */
14221
14222 static inline tree
14223 get_unqualified_id (cp_declarator *declarator)
14224 {
14225 declarator = get_id_declarator (declarator);
14226 if (declarator)
14227 return declarator->u.id.unqualified_name;
14228 else
14229 return NULL_TREE;
14230 }
14231
14232 /* Returns true if DECL represents a constrained-parameter. */
14233
14234 static inline bool
14235 is_constrained_parameter (tree decl)
14236 {
14237 return (decl
14238 && TREE_CODE (decl) == TYPE_DECL
14239 && CONSTRAINED_PARM_CONCEPT (decl)
14240 && DECL_P (CONSTRAINED_PARM_CONCEPT (decl)));
14241 }
14242
14243 /* Returns true if PARM declares a constrained-parameter. */
14244
14245 static inline bool
14246 is_constrained_parameter (cp_parameter_declarator *parm)
14247 {
14248 return is_constrained_parameter (parm->decl_specifiers.type);
14249 }
14250
14251 /* Check that the type parameter is only a declarator-id, and that its
14252 type is not cv-qualified. */
14253
14254 bool
14255 cp_parser_check_constrained_type_parm (cp_parser *parser,
14256 cp_parameter_declarator *parm)
14257 {
14258 if (!parm->declarator)
14259 return true;
14260
14261 if (parm->declarator->kind != cdk_id)
14262 {
14263 cp_parser_error (parser, "invalid constrained type parameter");
14264 return false;
14265 }
14266
14267 /* Don't allow cv-qualified type parameters. */
14268 if (decl_spec_seq_has_spec_p (&parm->decl_specifiers, ds_const)
14269 || decl_spec_seq_has_spec_p (&parm->decl_specifiers, ds_volatile))
14270 {
14271 cp_parser_error (parser, "cv-qualified type parameter");
14272 return false;
14273 }
14274
14275 return true;
14276 }
14277
14278 /* Finish parsing/processing a template type parameter and checking
14279 various restrictions. */
14280
14281 static inline tree
14282 cp_parser_constrained_type_template_parm (cp_parser *parser,
14283 tree id,
14284 cp_parameter_declarator* parmdecl)
14285 {
14286 if (cp_parser_check_constrained_type_parm (parser, parmdecl))
14287 return finish_template_type_parm (class_type_node, id);
14288 else
14289 return error_mark_node;
14290 }
14291
14292 static tree
14293 finish_constrained_template_template_parm (tree proto, tree id)
14294 {
14295 /* FIXME: This should probably be copied, and we may need to adjust
14296 the template parameter depths. */
14297 tree saved_parms = current_template_parms;
14298 begin_template_parm_list ();
14299 current_template_parms = DECL_TEMPLATE_PARMS (proto);
14300 end_template_parm_list ();
14301
14302 tree parm = finish_template_template_parm (class_type_node, id);
14303 current_template_parms = saved_parms;
14304
14305 return parm;
14306 }
14307
14308 /* Finish parsing/processing a template template parameter by borrowing
14309 the template parameter list from the prototype parameter. */
14310
14311 static tree
14312 cp_parser_constrained_template_template_parm (cp_parser *parser,
14313 tree proto,
14314 tree id,
14315 cp_parameter_declarator *parmdecl)
14316 {
14317 if (!cp_parser_check_constrained_type_parm (parser, parmdecl))
14318 return error_mark_node;
14319 return finish_constrained_template_template_parm (proto, id);
14320 }
14321
14322 /* Create a new non-type template parameter from the given PARM
14323 declarator. */
14324
14325 static tree
14326 constrained_non_type_template_parm (bool *is_non_type,
14327 cp_parameter_declarator *parm)
14328 {
14329 *is_non_type = true;
14330 cp_declarator *decl = parm->declarator;
14331 cp_decl_specifier_seq *specs = &parm->decl_specifiers;
14332 specs->type = TREE_TYPE (DECL_INITIAL (specs->type));
14333 return grokdeclarator (decl, specs, TPARM, 0, NULL);
14334 }
14335
14336 /* Build a constrained template parameter based on the PARMDECL
14337 declarator. The type of PARMDECL is the constrained type, which
14338 refers to the prototype template parameter that ultimately
14339 specifies the type of the declared parameter. */
14340
14341 static tree
14342 finish_constrained_parameter (cp_parser *parser,
14343 cp_parameter_declarator *parmdecl,
14344 bool *is_non_type,
14345 bool *is_parameter_pack)
14346 {
14347 tree decl = parmdecl->decl_specifiers.type;
14348 tree id = get_unqualified_id (parmdecl->declarator);
14349 tree def = parmdecl->default_argument;
14350 tree proto = DECL_INITIAL (decl);
14351
14352 /* A template parameter constrained by a variadic concept shall also
14353 be declared as a template parameter pack. */
14354 bool is_variadic = template_parameter_pack_p (proto);
14355 if (is_variadic && !*is_parameter_pack)
14356 cp_parser_error (parser, "variadic constraint introduced without %<...%>");
14357
14358 /* Build the parameter. Return an error if the declarator was invalid. */
14359 tree parm;
14360 if (TREE_CODE (proto) == TYPE_DECL)
14361 parm = cp_parser_constrained_type_template_parm (parser, id, parmdecl);
14362 else if (TREE_CODE (proto) == TEMPLATE_DECL)
14363 parm = cp_parser_constrained_template_template_parm (parser, proto, id,
14364 parmdecl);
14365 else
14366 parm = constrained_non_type_template_parm (is_non_type, parmdecl);
14367 if (parm == error_mark_node)
14368 return error_mark_node;
14369
14370 /* Finish the parameter decl and create a node attaching the
14371 default argument and constraint. */
14372 parm = build_tree_list (def, parm);
14373 TEMPLATE_PARM_CONSTRAINTS (parm) = decl;
14374
14375 return parm;
14376 }
14377
14378 /* Returns true if the parsed type actually represents the declaration
14379 of a type template-parameter. */
14380
14381 static inline bool
14382 declares_constrained_type_template_parameter (tree type)
14383 {
14384 return (is_constrained_parameter (type)
14385 && TREE_CODE (TREE_TYPE (type)) == TEMPLATE_TYPE_PARM);
14386 }
14387
14388
14389 /* Returns true if the parsed type actually represents the declaration of
14390 a template template-parameter. */
14391
14392 static bool
14393 declares_constrained_template_template_parameter (tree type)
14394 {
14395 return (is_constrained_parameter (type)
14396 && TREE_CODE (TREE_TYPE (type)) == TEMPLATE_TEMPLATE_PARM);
14397 }
14398
14399 /* Parse a default argument for a type template-parameter.
14400 Note that diagnostics are handled in cp_parser_template_parameter. */
14401
14402 static tree
14403 cp_parser_default_type_template_argument (cp_parser *parser)
14404 {
14405 gcc_assert (cp_lexer_next_token_is (parser->lexer, CPP_EQ));
14406
14407 /* Consume the `=' token. */
14408 cp_lexer_consume_token (parser->lexer);
14409
14410 cp_token *token = cp_lexer_peek_token (parser->lexer);
14411
14412 /* Parse the default-argument. */
14413 push_deferring_access_checks (dk_no_deferred);
14414 tree default_argument = cp_parser_type_id (parser);
14415 pop_deferring_access_checks ();
14416
14417 if (flag_concepts && type_uses_auto (default_argument))
14418 {
14419 error_at (token->location,
14420 "invalid use of %<auto%> in default template argument");
14421 return error_mark_node;
14422 }
14423
14424 return default_argument;
14425 }
14426
14427 /* Parse a default argument for a template template-parameter. */
14428
14429 static tree
14430 cp_parser_default_template_template_argument (cp_parser *parser)
14431 {
14432 gcc_assert (cp_lexer_next_token_is (parser->lexer, CPP_EQ));
14433
14434 bool is_template;
14435
14436 /* Consume the `='. */
14437 cp_lexer_consume_token (parser->lexer);
14438 /* Parse the id-expression. */
14439 push_deferring_access_checks (dk_no_deferred);
14440 /* save token before parsing the id-expression, for error
14441 reporting */
14442 const cp_token* token = cp_lexer_peek_token (parser->lexer);
14443 tree default_argument
14444 = cp_parser_id_expression (parser,
14445 /*template_keyword_p=*/false,
14446 /*check_dependency_p=*/true,
14447 /*template_p=*/&is_template,
14448 /*declarator_p=*/false,
14449 /*optional_p=*/false);
14450 if (TREE_CODE (default_argument) == TYPE_DECL)
14451 /* If the id-expression was a template-id that refers to
14452 a template-class, we already have the declaration here,
14453 so no further lookup is needed. */
14454 ;
14455 else
14456 /* Look up the name. */
14457 default_argument
14458 = cp_parser_lookup_name (parser, default_argument,
14459 none_type,
14460 /*is_template=*/is_template,
14461 /*is_namespace=*/false,
14462 /*check_dependency=*/true,
14463 /*ambiguous_decls=*/NULL,
14464 token->location);
14465 /* See if the default argument is valid. */
14466 default_argument = check_template_template_default_arg (default_argument);
14467 pop_deferring_access_checks ();
14468 return default_argument;
14469 }
14470
14471 /* Parse a template-parameter.
14472
14473 template-parameter:
14474 type-parameter
14475 parameter-declaration
14476
14477 If all goes well, returns a TREE_LIST. The TREE_VALUE represents
14478 the parameter. The TREE_PURPOSE is the default value, if any.
14479 Returns ERROR_MARK_NODE on failure. *IS_NON_TYPE is set to true
14480 iff this parameter is a non-type parameter. *IS_PARAMETER_PACK is
14481 set to true iff this parameter is a parameter pack. */
14482
14483 static tree
14484 cp_parser_template_parameter (cp_parser* parser, bool *is_non_type,
14485 bool *is_parameter_pack)
14486 {
14487 cp_token *token;
14488 cp_parameter_declarator *parameter_declarator;
14489 tree parm;
14490
14491 /* Assume it is a type parameter or a template parameter. */
14492 *is_non_type = false;
14493 /* Assume it not a parameter pack. */
14494 *is_parameter_pack = false;
14495 /* Peek at the next token. */
14496 token = cp_lexer_peek_token (parser->lexer);
14497 /* If it is `class' or `template', we have a type-parameter. */
14498 if (token->keyword == RID_TEMPLATE)
14499 return cp_parser_type_parameter (parser, is_parameter_pack);
14500 /* If it is `class' or `typename' we do not know yet whether it is a
14501 type parameter or a non-type parameter. Consider:
14502
14503 template <typename T, typename T::X X> ...
14504
14505 or:
14506
14507 template <class C, class D*> ...
14508
14509 Here, the first parameter is a type parameter, and the second is
14510 a non-type parameter. We can tell by looking at the token after
14511 the identifier -- if it is a `,', `=', or `>' then we have a type
14512 parameter. */
14513 if (token->keyword == RID_TYPENAME || token->keyword == RID_CLASS)
14514 {
14515 /* Peek at the token after `class' or `typename'. */
14516 token = cp_lexer_peek_nth_token (parser->lexer, 2);
14517 /* If it's an ellipsis, we have a template type parameter
14518 pack. */
14519 if (token->type == CPP_ELLIPSIS)
14520 return cp_parser_type_parameter (parser, is_parameter_pack);
14521 /* If it's an identifier, skip it. */
14522 if (token->type == CPP_NAME)
14523 token = cp_lexer_peek_nth_token (parser->lexer, 3);
14524 /* Now, see if the token looks like the end of a template
14525 parameter. */
14526 if (token->type == CPP_COMMA
14527 || token->type == CPP_EQ
14528 || token->type == CPP_GREATER)
14529 return cp_parser_type_parameter (parser, is_parameter_pack);
14530 }
14531
14532 /* Otherwise, it is a non-type parameter or a constrained parameter.
14533
14534 [temp.param]
14535
14536 When parsing a default template-argument for a non-type
14537 template-parameter, the first non-nested `>' is taken as the end
14538 of the template parameter-list rather than a greater-than
14539 operator. */
14540 parameter_declarator
14541 = cp_parser_parameter_declaration (parser, /*template_parm_p=*/true,
14542 /*parenthesized_p=*/NULL);
14543
14544 if (!parameter_declarator)
14545 return error_mark_node;
14546
14547 /* If the parameter declaration is marked as a parameter pack, set
14548 *IS_PARAMETER_PACK to notify the caller. */
14549 if (parameter_declarator->template_parameter_pack_p)
14550 *is_parameter_pack = true;
14551
14552 if (parameter_declarator->default_argument)
14553 {
14554 /* Can happen in some cases of erroneous input (c++/34892). */
14555 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
14556 /* Consume the `...' for better error recovery. */
14557 cp_lexer_consume_token (parser->lexer);
14558 }
14559
14560 // The parameter may have been constrained.
14561 if (is_constrained_parameter (parameter_declarator))
14562 return finish_constrained_parameter (parser,
14563 parameter_declarator,
14564 is_non_type,
14565 is_parameter_pack);
14566
14567 // Now we're sure that the parameter is a non-type parameter.
14568 *is_non_type = true;
14569
14570 parm = grokdeclarator (parameter_declarator->declarator,
14571 &parameter_declarator->decl_specifiers,
14572 TPARM, /*initialized=*/0,
14573 /*attrlist=*/NULL);
14574 if (parm == error_mark_node)
14575 return error_mark_node;
14576
14577 return build_tree_list (parameter_declarator->default_argument, parm);
14578 }
14579
14580 /* Parse a type-parameter.
14581
14582 type-parameter:
14583 class identifier [opt]
14584 class identifier [opt] = type-id
14585 typename identifier [opt]
14586 typename identifier [opt] = type-id
14587 template < template-parameter-list > class identifier [opt]
14588 template < template-parameter-list > class identifier [opt]
14589 = id-expression
14590
14591 GNU Extension (variadic templates):
14592
14593 type-parameter:
14594 class ... identifier [opt]
14595 typename ... identifier [opt]
14596
14597 Returns a TREE_LIST. The TREE_VALUE is itself a TREE_LIST. The
14598 TREE_PURPOSE is the default-argument, if any. The TREE_VALUE is
14599 the declaration of the parameter.
14600
14601 Sets *IS_PARAMETER_PACK if this is a template parameter pack. */
14602
14603 static tree
14604 cp_parser_type_parameter (cp_parser* parser, bool *is_parameter_pack)
14605 {
14606 cp_token *token;
14607 tree parameter;
14608
14609 /* Look for a keyword to tell us what kind of parameter this is. */
14610 token = cp_parser_require (parser, CPP_KEYWORD, RT_CLASS_TYPENAME_TEMPLATE);
14611 if (!token)
14612 return error_mark_node;
14613
14614 switch (token->keyword)
14615 {
14616 case RID_CLASS:
14617 case RID_TYPENAME:
14618 {
14619 tree identifier;
14620 tree default_argument;
14621
14622 /* If the next token is an ellipsis, we have a template
14623 argument pack. */
14624 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
14625 {
14626 /* Consume the `...' token. */
14627 cp_lexer_consume_token (parser->lexer);
14628 maybe_warn_variadic_templates ();
14629
14630 *is_parameter_pack = true;
14631 }
14632
14633 /* If the next token is an identifier, then it names the
14634 parameter. */
14635 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
14636 identifier = cp_parser_identifier (parser);
14637 else
14638 identifier = NULL_TREE;
14639
14640 /* Create the parameter. */
14641 parameter = finish_template_type_parm (class_type_node, identifier);
14642
14643 /* If the next token is an `=', we have a default argument. */
14644 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
14645 {
14646 default_argument
14647 = cp_parser_default_type_template_argument (parser);
14648
14649 /* Template parameter packs cannot have default
14650 arguments. */
14651 if (*is_parameter_pack)
14652 {
14653 if (identifier)
14654 error_at (token->location,
14655 "template parameter pack %qD cannot have a "
14656 "default argument", identifier);
14657 else
14658 error_at (token->location,
14659 "template parameter packs cannot have "
14660 "default arguments");
14661 default_argument = NULL_TREE;
14662 }
14663 else if (check_for_bare_parameter_packs (default_argument))
14664 default_argument = error_mark_node;
14665 }
14666 else
14667 default_argument = NULL_TREE;
14668
14669 /* Create the combined representation of the parameter and the
14670 default argument. */
14671 parameter = build_tree_list (default_argument, parameter);
14672 }
14673 break;
14674
14675 case RID_TEMPLATE:
14676 {
14677 tree identifier;
14678 tree default_argument;
14679
14680 /* Look for the `<'. */
14681 cp_parser_require (parser, CPP_LESS, RT_LESS);
14682 /* Parse the template-parameter-list. */
14683 cp_parser_template_parameter_list (parser);
14684 /* Look for the `>'. */
14685 cp_parser_require (parser, CPP_GREATER, RT_GREATER);
14686
14687 // If template requirements are present, parse them.
14688 tree reqs = get_shorthand_constraints (current_template_parms);
14689 if (tree r = cp_parser_requires_clause_opt (parser))
14690 reqs = conjoin_constraints (reqs, make_predicate_constraint (r));
14691 TEMPLATE_PARMS_CONSTRAINTS (current_template_parms) = reqs;
14692
14693 /* Look for the `class' or 'typename' keywords. */
14694 cp_parser_type_parameter_key (parser);
14695 /* If the next token is an ellipsis, we have a template
14696 argument pack. */
14697 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
14698 {
14699 /* Consume the `...' token. */
14700 cp_lexer_consume_token (parser->lexer);
14701 maybe_warn_variadic_templates ();
14702
14703 *is_parameter_pack = true;
14704 }
14705 /* If the next token is an `=', then there is a
14706 default-argument. If the next token is a `>', we are at
14707 the end of the parameter-list. If the next token is a `,',
14708 then we are at the end of this parameter. */
14709 if (cp_lexer_next_token_is_not (parser->lexer, CPP_EQ)
14710 && cp_lexer_next_token_is_not (parser->lexer, CPP_GREATER)
14711 && cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
14712 {
14713 identifier = cp_parser_identifier (parser);
14714 /* Treat invalid names as if the parameter were nameless. */
14715 if (identifier == error_mark_node)
14716 identifier = NULL_TREE;
14717 }
14718 else
14719 identifier = NULL_TREE;
14720
14721 /* Create the template parameter. */
14722 parameter = finish_template_template_parm (class_type_node,
14723 identifier);
14724
14725 /* If the next token is an `=', then there is a
14726 default-argument. */
14727 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
14728 {
14729 default_argument
14730 = cp_parser_default_template_template_argument (parser);
14731
14732 /* Template parameter packs cannot have default
14733 arguments. */
14734 if (*is_parameter_pack)
14735 {
14736 if (identifier)
14737 error_at (token->location,
14738 "template parameter pack %qD cannot "
14739 "have a default argument",
14740 identifier);
14741 else
14742 error_at (token->location, "template parameter packs cannot "
14743 "have default arguments");
14744 default_argument = NULL_TREE;
14745 }
14746 }
14747 else
14748 default_argument = NULL_TREE;
14749
14750 /* Create the combined representation of the parameter and the
14751 default argument. */
14752 parameter = build_tree_list (default_argument, parameter);
14753 }
14754 break;
14755
14756 default:
14757 gcc_unreachable ();
14758 break;
14759 }
14760
14761 return parameter;
14762 }
14763
14764 /* Parse a template-id.
14765
14766 template-id:
14767 template-name < template-argument-list [opt] >
14768
14769 If TEMPLATE_KEYWORD_P is TRUE, then we have just seen the
14770 `template' keyword. In this case, a TEMPLATE_ID_EXPR will be
14771 returned. Otherwise, if the template-name names a function, or set
14772 of functions, returns a TEMPLATE_ID_EXPR. If the template-name
14773 names a class, returns a TYPE_DECL for the specialization.
14774
14775 If CHECK_DEPENDENCY_P is FALSE, names are looked up in
14776 uninstantiated templates. */
14777
14778 static tree
14779 cp_parser_template_id (cp_parser *parser,
14780 bool template_keyword_p,
14781 bool check_dependency_p,
14782 enum tag_types tag_type,
14783 bool is_declaration)
14784 {
14785 tree templ;
14786 tree arguments;
14787 tree template_id;
14788 cp_token_position start_of_id = 0;
14789 cp_token *next_token = NULL, *next_token_2 = NULL;
14790 bool is_identifier;
14791
14792 /* If the next token corresponds to a template-id, there is no need
14793 to reparse it. */
14794 next_token = cp_lexer_peek_token (parser->lexer);
14795 if (next_token->type == CPP_TEMPLATE_ID)
14796 {
14797 cp_lexer_consume_token (parser->lexer);
14798 return saved_checks_value (next_token->u.tree_check_value);
14799 }
14800
14801 /* Avoid performing name lookup if there is no possibility of
14802 finding a template-id. */
14803 if ((next_token->type != CPP_NAME && next_token->keyword != RID_OPERATOR)
14804 || (next_token->type == CPP_NAME
14805 && !cp_parser_nth_token_starts_template_argument_list_p
14806 (parser, 2)))
14807 {
14808 cp_parser_error (parser, "expected template-id");
14809 return error_mark_node;
14810 }
14811
14812 /* Remember where the template-id starts. */
14813 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
14814 start_of_id = cp_lexer_token_position (parser->lexer, false);
14815
14816 push_deferring_access_checks (dk_deferred);
14817
14818 /* Parse the template-name. */
14819 is_identifier = false;
14820 templ = cp_parser_template_name (parser, template_keyword_p,
14821 check_dependency_p,
14822 is_declaration,
14823 tag_type,
14824 &is_identifier);
14825 if (templ == error_mark_node || is_identifier)
14826 {
14827 pop_deferring_access_checks ();
14828 return templ;
14829 }
14830
14831 /* Since we're going to preserve any side-effects from this parse, set up a
14832 firewall to protect our callers from cp_parser_commit_to_tentative_parse
14833 in the template arguments. */
14834 tentative_firewall firewall (parser);
14835
14836 /* If we find the sequence `[:' after a template-name, it's probably
14837 a digraph-typo for `< ::'. Substitute the tokens and check if we can
14838 parse correctly the argument list. */
14839 if (((next_token = cp_lexer_peek_token (parser->lexer))->type
14840 == CPP_OPEN_SQUARE)
14841 && next_token->flags & DIGRAPH
14842 && ((next_token_2 = cp_lexer_peek_nth_token (parser->lexer, 2))->type
14843 == CPP_COLON)
14844 && !(next_token_2->flags & PREV_WHITE))
14845 {
14846 cp_parser_parse_tentatively (parser);
14847 /* Change `:' into `::'. */
14848 next_token_2->type = CPP_SCOPE;
14849 /* Consume the first token (CPP_OPEN_SQUARE - which we pretend it is
14850 CPP_LESS. */
14851 cp_lexer_consume_token (parser->lexer);
14852
14853 /* Parse the arguments. */
14854 arguments = cp_parser_enclosed_template_argument_list (parser);
14855 if (!cp_parser_parse_definitely (parser))
14856 {
14857 /* If we couldn't parse an argument list, then we revert our changes
14858 and return simply an error. Maybe this is not a template-id
14859 after all. */
14860 next_token_2->type = CPP_COLON;
14861 cp_parser_error (parser, "expected %<<%>");
14862 pop_deferring_access_checks ();
14863 return error_mark_node;
14864 }
14865 /* Otherwise, emit an error about the invalid digraph, but continue
14866 parsing because we got our argument list. */
14867 if (permerror (next_token->location,
14868 "%<<::%> cannot begin a template-argument list"))
14869 {
14870 static bool hint = false;
14871 inform (next_token->location,
14872 "%<<:%> is an alternate spelling for %<[%>."
14873 " Insert whitespace between %<<%> and %<::%>");
14874 if (!hint && !flag_permissive)
14875 {
14876 inform (next_token->location, "(if you use %<-fpermissive%> "
14877 "or %<-std=c++11%>, or %<-std=gnu++11%> G++ will "
14878 "accept your code)");
14879 hint = true;
14880 }
14881 }
14882 }
14883 else
14884 {
14885 /* Look for the `<' that starts the template-argument-list. */
14886 if (!cp_parser_require (parser, CPP_LESS, RT_LESS))
14887 {
14888 pop_deferring_access_checks ();
14889 return error_mark_node;
14890 }
14891 /* Parse the arguments. */
14892 arguments = cp_parser_enclosed_template_argument_list (parser);
14893 }
14894
14895 /* Build a representation of the specialization. */
14896 if (identifier_p (templ))
14897 template_id = build_min_nt_loc (next_token->location,
14898 TEMPLATE_ID_EXPR,
14899 templ, arguments);
14900 else if (DECL_TYPE_TEMPLATE_P (templ)
14901 || DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
14902 {
14903 bool entering_scope;
14904 /* In "template <typename T> ... A<T>::", A<T> is the abstract A
14905 template (rather than some instantiation thereof) only if
14906 is not nested within some other construct. For example, in
14907 "template <typename T> void f(T) { A<T>::", A<T> is just an
14908 instantiation of A. */
14909 entering_scope = (template_parm_scope_p ()
14910 && cp_lexer_next_token_is (parser->lexer,
14911 CPP_SCOPE));
14912 template_id
14913 = finish_template_type (templ, arguments, entering_scope);
14914 }
14915 /* A template-like identifier may be a partial concept id. */
14916 else if (flag_concepts
14917 && (template_id = (cp_parser_maybe_partial_concept_id
14918 (parser, templ, arguments))))
14919 return template_id;
14920 else if (variable_template_p (templ))
14921 {
14922 template_id = lookup_template_variable (templ, arguments);
14923 if (TREE_CODE (template_id) == TEMPLATE_ID_EXPR)
14924 SET_EXPR_LOCATION (template_id, next_token->location);
14925 }
14926 else
14927 {
14928 /* If it's not a class-template or a template-template, it should be
14929 a function-template. */
14930 gcc_assert ((DECL_FUNCTION_TEMPLATE_P (templ)
14931 || TREE_CODE (templ) == OVERLOAD
14932 || BASELINK_P (templ)));
14933
14934 template_id = lookup_template_function (templ, arguments);
14935 if (TREE_CODE (template_id) == TEMPLATE_ID_EXPR)
14936 SET_EXPR_LOCATION (template_id, next_token->location);
14937 }
14938
14939 /* If parsing tentatively, replace the sequence of tokens that makes
14940 up the template-id with a CPP_TEMPLATE_ID token. That way,
14941 should we re-parse the token stream, we will not have to repeat
14942 the effort required to do the parse, nor will we issue duplicate
14943 error messages about problems during instantiation of the
14944 template. */
14945 if (start_of_id
14946 /* Don't do this if we had a parse error in a declarator; re-parsing
14947 might succeed if a name changes meaning (60361). */
14948 && !(cp_parser_error_occurred (parser)
14949 && cp_parser_parsing_tentatively (parser)
14950 && parser->in_declarator_p))
14951 {
14952 cp_token *token = cp_lexer_token_at (parser->lexer, start_of_id);
14953
14954 /* Reset the contents of the START_OF_ID token. */
14955 token->type = CPP_TEMPLATE_ID;
14956
14957 /* Update the location to be of the form:
14958 template-name < template-argument-list [opt] >
14959 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
14960 with caret == start at the start of the template-name,
14961 ranging until the closing '>'. */
14962 location_t finish_loc
14963 = get_finish (cp_lexer_previous_token (parser->lexer)->location);
14964 location_t combined_loc
14965 = make_location (token->location, token->location, finish_loc);
14966 token->location = combined_loc;
14967
14968 /* Retrieve any deferred checks. Do not pop this access checks yet
14969 so the memory will not be reclaimed during token replacing below. */
14970 token->u.tree_check_value = ggc_cleared_alloc<struct tree_check> ();
14971 token->u.tree_check_value->value = template_id;
14972 token->u.tree_check_value->checks = get_deferred_access_checks ();
14973 token->keyword = RID_MAX;
14974
14975 /* Purge all subsequent tokens. */
14976 cp_lexer_purge_tokens_after (parser->lexer, start_of_id);
14977
14978 /* ??? Can we actually assume that, if template_id ==
14979 error_mark_node, we will have issued a diagnostic to the
14980 user, as opposed to simply marking the tentative parse as
14981 failed? */
14982 if (cp_parser_error_occurred (parser) && template_id != error_mark_node)
14983 error_at (token->location, "parse error in template argument list");
14984 }
14985
14986 pop_to_parent_deferring_access_checks ();
14987 return template_id;
14988 }
14989
14990 /* Parse a template-name.
14991
14992 template-name:
14993 identifier
14994
14995 The standard should actually say:
14996
14997 template-name:
14998 identifier
14999 operator-function-id
15000
15001 A defect report has been filed about this issue.
15002
15003 A conversion-function-id cannot be a template name because they cannot
15004 be part of a template-id. In fact, looking at this code:
15005
15006 a.operator K<int>()
15007
15008 the conversion-function-id is "operator K<int>", and K<int> is a type-id.
15009 It is impossible to call a templated conversion-function-id with an
15010 explicit argument list, since the only allowed template parameter is
15011 the type to which it is converting.
15012
15013 If TEMPLATE_KEYWORD_P is true, then we have just seen the
15014 `template' keyword, in a construction like:
15015
15016 T::template f<3>()
15017
15018 In that case `f' is taken to be a template-name, even though there
15019 is no way of knowing for sure.
15020
15021 Returns the TEMPLATE_DECL for the template, or an OVERLOAD if the
15022 name refers to a set of overloaded functions, at least one of which
15023 is a template, or an IDENTIFIER_NODE with the name of the template,
15024 if TEMPLATE_KEYWORD_P is true. If CHECK_DEPENDENCY_P is FALSE,
15025 names are looked up inside uninstantiated templates. */
15026
15027 static tree
15028 cp_parser_template_name (cp_parser* parser,
15029 bool template_keyword_p,
15030 bool check_dependency_p,
15031 bool is_declaration,
15032 enum tag_types tag_type,
15033 bool *is_identifier)
15034 {
15035 tree identifier;
15036 tree decl;
15037 tree fns;
15038 cp_token *token = cp_lexer_peek_token (parser->lexer);
15039
15040 /* If the next token is `operator', then we have either an
15041 operator-function-id or a conversion-function-id. */
15042 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_OPERATOR))
15043 {
15044 /* We don't know whether we're looking at an
15045 operator-function-id or a conversion-function-id. */
15046 cp_parser_parse_tentatively (parser);
15047 /* Try an operator-function-id. */
15048 identifier = cp_parser_operator_function_id (parser);
15049 /* If that didn't work, try a conversion-function-id. */
15050 if (!cp_parser_parse_definitely (parser))
15051 {
15052 cp_parser_error (parser, "expected template-name");
15053 return error_mark_node;
15054 }
15055 }
15056 /* Look for the identifier. */
15057 else
15058 identifier = cp_parser_identifier (parser);
15059
15060 /* If we didn't find an identifier, we don't have a template-id. */
15061 if (identifier == error_mark_node)
15062 return error_mark_node;
15063
15064 /* If the name immediately followed the `template' keyword, then it
15065 is a template-name. However, if the next token is not `<', then
15066 we do not treat it as a template-name, since it is not being used
15067 as part of a template-id. This enables us to handle constructs
15068 like:
15069
15070 template <typename T> struct S { S(); };
15071 template <typename T> S<T>::S();
15072
15073 correctly. We would treat `S' as a template -- if it were `S<T>'
15074 -- but we do not if there is no `<'. */
15075
15076 if (processing_template_decl
15077 && cp_parser_nth_token_starts_template_argument_list_p (parser, 1))
15078 {
15079 /* In a declaration, in a dependent context, we pretend that the
15080 "template" keyword was present in order to improve error
15081 recovery. For example, given:
15082
15083 template <typename T> void f(T::X<int>);
15084
15085 we want to treat "X<int>" as a template-id. */
15086 if (is_declaration
15087 && !template_keyword_p
15088 && parser->scope && TYPE_P (parser->scope)
15089 && check_dependency_p
15090 && dependent_scope_p (parser->scope)
15091 /* Do not do this for dtors (or ctors), since they never
15092 need the template keyword before their name. */
15093 && !constructor_name_p (identifier, parser->scope))
15094 {
15095 cp_token_position start = 0;
15096
15097 /* Explain what went wrong. */
15098 error_at (token->location, "non-template %qD used as template",
15099 identifier);
15100 inform (token->location, "use %<%T::template %D%> to indicate that it is a template",
15101 parser->scope, identifier);
15102 /* If parsing tentatively, find the location of the "<" token. */
15103 if (cp_parser_simulate_error (parser))
15104 start = cp_lexer_token_position (parser->lexer, true);
15105 /* Parse the template arguments so that we can issue error
15106 messages about them. */
15107 cp_lexer_consume_token (parser->lexer);
15108 cp_parser_enclosed_template_argument_list (parser);
15109 /* Skip tokens until we find a good place from which to
15110 continue parsing. */
15111 cp_parser_skip_to_closing_parenthesis (parser,
15112 /*recovering=*/true,
15113 /*or_comma=*/true,
15114 /*consume_paren=*/false);
15115 /* If parsing tentatively, permanently remove the
15116 template argument list. That will prevent duplicate
15117 error messages from being issued about the missing
15118 "template" keyword. */
15119 if (start)
15120 cp_lexer_purge_tokens_after (parser->lexer, start);
15121 if (is_identifier)
15122 *is_identifier = true;
15123 return identifier;
15124 }
15125
15126 /* If the "template" keyword is present, then there is generally
15127 no point in doing name-lookup, so we just return IDENTIFIER.
15128 But, if the qualifying scope is non-dependent then we can
15129 (and must) do name-lookup normally. */
15130 if (template_keyword_p
15131 && (!parser->scope
15132 || (TYPE_P (parser->scope)
15133 && dependent_type_p (parser->scope))))
15134 return identifier;
15135 }
15136
15137 /* Look up the name. */
15138 decl = cp_parser_lookup_name (parser, identifier,
15139 tag_type,
15140 /*is_template=*/true,
15141 /*is_namespace=*/false,
15142 check_dependency_p,
15143 /*ambiguous_decls=*/NULL,
15144 token->location);
15145
15146 decl = strip_using_decl (decl);
15147
15148 /* If DECL is a template, then the name was a template-name. */
15149 if (TREE_CODE (decl) == TEMPLATE_DECL)
15150 {
15151 if (TREE_DEPRECATED (decl)
15152 && deprecated_state != DEPRECATED_SUPPRESS)
15153 warn_deprecated_use (decl, NULL_TREE);
15154 }
15155 else
15156 {
15157 tree fn = NULL_TREE;
15158
15159 /* The standard does not explicitly indicate whether a name that
15160 names a set of overloaded declarations, some of which are
15161 templates, is a template-name. However, such a name should
15162 be a template-name; otherwise, there is no way to form a
15163 template-id for the overloaded templates. */
15164 fns = BASELINK_P (decl) ? BASELINK_FUNCTIONS (decl) : decl;
15165 if (TREE_CODE (fns) == OVERLOAD)
15166 for (fn = fns; fn; fn = OVL_NEXT (fn))
15167 if (TREE_CODE (OVL_CURRENT (fn)) == TEMPLATE_DECL)
15168 break;
15169
15170 if (!fn)
15171 {
15172 /* The name does not name a template. */
15173 cp_parser_error (parser, "expected template-name");
15174 return error_mark_node;
15175 }
15176 }
15177
15178 /* If DECL is dependent, and refers to a function, then just return
15179 its name; we will look it up again during template instantiation. */
15180 if (DECL_FUNCTION_TEMPLATE_P (decl) || !DECL_P (decl))
15181 {
15182 tree scope = ovl_scope (decl);
15183 if (TYPE_P (scope) && dependent_type_p (scope))
15184 return identifier;
15185 }
15186
15187 return decl;
15188 }
15189
15190 /* Parse a template-argument-list.
15191
15192 template-argument-list:
15193 template-argument ... [opt]
15194 template-argument-list , template-argument ... [opt]
15195
15196 Returns a TREE_VEC containing the arguments. */
15197
15198 static tree
15199 cp_parser_template_argument_list (cp_parser* parser)
15200 {
15201 tree fixed_args[10];
15202 unsigned n_args = 0;
15203 unsigned alloced = 10;
15204 tree *arg_ary = fixed_args;
15205 tree vec;
15206 bool saved_in_template_argument_list_p;
15207 bool saved_ice_p;
15208 bool saved_non_ice_p;
15209
15210 saved_in_template_argument_list_p = parser->in_template_argument_list_p;
15211 parser->in_template_argument_list_p = true;
15212 /* Even if the template-id appears in an integral
15213 constant-expression, the contents of the argument list do
15214 not. */
15215 saved_ice_p = parser->integral_constant_expression_p;
15216 parser->integral_constant_expression_p = false;
15217 saved_non_ice_p = parser->non_integral_constant_expression_p;
15218 parser->non_integral_constant_expression_p = false;
15219
15220 /* Parse the arguments. */
15221 do
15222 {
15223 tree argument;
15224
15225 if (n_args)
15226 /* Consume the comma. */
15227 cp_lexer_consume_token (parser->lexer);
15228
15229 /* Parse the template-argument. */
15230 argument = cp_parser_template_argument (parser);
15231
15232 /* If the next token is an ellipsis, we're expanding a template
15233 argument pack. */
15234 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
15235 {
15236 if (argument == error_mark_node)
15237 {
15238 cp_token *token = cp_lexer_peek_token (parser->lexer);
15239 error_at (token->location,
15240 "expected parameter pack before %<...%>");
15241 }
15242 /* Consume the `...' token. */
15243 cp_lexer_consume_token (parser->lexer);
15244
15245 /* Make the argument into a TYPE_PACK_EXPANSION or
15246 EXPR_PACK_EXPANSION. */
15247 argument = make_pack_expansion (argument);
15248 }
15249
15250 if (n_args == alloced)
15251 {
15252 alloced *= 2;
15253
15254 if (arg_ary == fixed_args)
15255 {
15256 arg_ary = XNEWVEC (tree, alloced);
15257 memcpy (arg_ary, fixed_args, sizeof (tree) * n_args);
15258 }
15259 else
15260 arg_ary = XRESIZEVEC (tree, arg_ary, alloced);
15261 }
15262 arg_ary[n_args++] = argument;
15263 }
15264 while (cp_lexer_next_token_is (parser->lexer, CPP_COMMA));
15265
15266 vec = make_tree_vec (n_args);
15267
15268 while (n_args--)
15269 TREE_VEC_ELT (vec, n_args) = arg_ary[n_args];
15270
15271 if (arg_ary != fixed_args)
15272 free (arg_ary);
15273 parser->non_integral_constant_expression_p = saved_non_ice_p;
15274 parser->integral_constant_expression_p = saved_ice_p;
15275 parser->in_template_argument_list_p = saved_in_template_argument_list_p;
15276 if (CHECKING_P)
15277 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
15278 return vec;
15279 }
15280
15281 /* Parse a template-argument.
15282
15283 template-argument:
15284 assignment-expression
15285 type-id
15286 id-expression
15287
15288 The representation is that of an assignment-expression, type-id, or
15289 id-expression -- except that the qualified id-expression is
15290 evaluated, so that the value returned is either a DECL or an
15291 OVERLOAD.
15292
15293 Although the standard says "assignment-expression", it forbids
15294 throw-expressions or assignments in the template argument.
15295 Therefore, we use "conditional-expression" instead. */
15296
15297 static tree
15298 cp_parser_template_argument (cp_parser* parser)
15299 {
15300 tree argument;
15301 bool template_p;
15302 bool address_p;
15303 bool maybe_type_id = false;
15304 cp_token *token = NULL, *argument_start_token = NULL;
15305 location_t loc = 0;
15306 cp_id_kind idk;
15307
15308 /* There's really no way to know what we're looking at, so we just
15309 try each alternative in order.
15310
15311 [temp.arg]
15312
15313 In a template-argument, an ambiguity between a type-id and an
15314 expression is resolved to a type-id, regardless of the form of
15315 the corresponding template-parameter.
15316
15317 Therefore, we try a type-id first. */
15318 cp_parser_parse_tentatively (parser);
15319 argument = cp_parser_template_type_arg (parser);
15320 /* If there was no error parsing the type-id but the next token is a
15321 '>>', our behavior depends on which dialect of C++ we're
15322 parsing. In C++98, we probably found a typo for '> >'. But there
15323 are type-id which are also valid expressions. For instance:
15324
15325 struct X { int operator >> (int); };
15326 template <int V> struct Foo {};
15327 Foo<X () >> 5> r;
15328
15329 Here 'X()' is a valid type-id of a function type, but the user just
15330 wanted to write the expression "X() >> 5". Thus, we remember that we
15331 found a valid type-id, but we still try to parse the argument as an
15332 expression to see what happens.
15333
15334 In C++0x, the '>>' will be considered two separate '>'
15335 tokens. */
15336 if (!cp_parser_error_occurred (parser)
15337 && cxx_dialect == cxx98
15338 && cp_lexer_next_token_is (parser->lexer, CPP_RSHIFT))
15339 {
15340 maybe_type_id = true;
15341 cp_parser_abort_tentative_parse (parser);
15342 }
15343 else
15344 {
15345 /* If the next token isn't a `,' or a `>', then this argument wasn't
15346 really finished. This means that the argument is not a valid
15347 type-id. */
15348 if (!cp_parser_next_token_ends_template_argument_p (parser))
15349 cp_parser_error (parser, "expected template-argument");
15350 /* If that worked, we're done. */
15351 if (cp_parser_parse_definitely (parser))
15352 return argument;
15353 }
15354 /* We're still not sure what the argument will be. */
15355 cp_parser_parse_tentatively (parser);
15356 /* Try a template. */
15357 argument_start_token = cp_lexer_peek_token (parser->lexer);
15358 argument = cp_parser_id_expression (parser,
15359 /*template_keyword_p=*/false,
15360 /*check_dependency_p=*/true,
15361 &template_p,
15362 /*declarator_p=*/false,
15363 /*optional_p=*/false);
15364 /* If the next token isn't a `,' or a `>', then this argument wasn't
15365 really finished. */
15366 if (!cp_parser_next_token_ends_template_argument_p (parser))
15367 cp_parser_error (parser, "expected template-argument");
15368 if (!cp_parser_error_occurred (parser))
15369 {
15370 /* Figure out what is being referred to. If the id-expression
15371 was for a class template specialization, then we will have a
15372 TYPE_DECL at this point. There is no need to do name lookup
15373 at this point in that case. */
15374 if (TREE_CODE (argument) != TYPE_DECL)
15375 argument = cp_parser_lookup_name (parser, argument,
15376 none_type,
15377 /*is_template=*/template_p,
15378 /*is_namespace=*/false,
15379 /*check_dependency=*/true,
15380 /*ambiguous_decls=*/NULL,
15381 argument_start_token->location);
15382 /* Handle a constrained-type-specifier for a non-type template
15383 parameter. */
15384 if (tree decl = cp_parser_maybe_concept_name (parser, argument))
15385 argument = decl;
15386 else if (TREE_CODE (argument) != TEMPLATE_DECL
15387 && TREE_CODE (argument) != UNBOUND_CLASS_TEMPLATE)
15388 cp_parser_error (parser, "expected template-name");
15389 }
15390 if (cp_parser_parse_definitely (parser))
15391 {
15392 if (TREE_DEPRECATED (argument))
15393 warn_deprecated_use (argument, NULL_TREE);
15394 return argument;
15395 }
15396 /* It must be a non-type argument. In C++17 any constant-expression is
15397 allowed. */
15398 if (cxx_dialect > cxx14)
15399 goto general_expr;
15400
15401 /* Otherwise, the permitted cases are given in [temp.arg.nontype]:
15402
15403 -- an integral constant-expression of integral or enumeration
15404 type; or
15405
15406 -- the name of a non-type template-parameter; or
15407
15408 -- the name of an object or function with external linkage...
15409
15410 -- the address of an object or function with external linkage...
15411
15412 -- a pointer to member... */
15413 /* Look for a non-type template parameter. */
15414 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
15415 {
15416 cp_parser_parse_tentatively (parser);
15417 argument = cp_parser_primary_expression (parser,
15418 /*address_p=*/false,
15419 /*cast_p=*/false,
15420 /*template_arg_p=*/true,
15421 &idk);
15422 if (TREE_CODE (argument) != TEMPLATE_PARM_INDEX
15423 || !cp_parser_next_token_ends_template_argument_p (parser))
15424 cp_parser_simulate_error (parser);
15425 if (cp_parser_parse_definitely (parser))
15426 return argument;
15427 }
15428
15429 /* If the next token is "&", the argument must be the address of an
15430 object or function with external linkage. */
15431 address_p = cp_lexer_next_token_is (parser->lexer, CPP_AND);
15432 if (address_p)
15433 {
15434 loc = cp_lexer_peek_token (parser->lexer)->location;
15435 cp_lexer_consume_token (parser->lexer);
15436 }
15437 /* See if we might have an id-expression. */
15438 token = cp_lexer_peek_token (parser->lexer);
15439 if (token->type == CPP_NAME
15440 || token->keyword == RID_OPERATOR
15441 || token->type == CPP_SCOPE
15442 || token->type == CPP_TEMPLATE_ID
15443 || token->type == CPP_NESTED_NAME_SPECIFIER)
15444 {
15445 cp_parser_parse_tentatively (parser);
15446 argument = cp_parser_primary_expression (parser,
15447 address_p,
15448 /*cast_p=*/false,
15449 /*template_arg_p=*/true,
15450 &idk);
15451 if (cp_parser_error_occurred (parser)
15452 || !cp_parser_next_token_ends_template_argument_p (parser))
15453 cp_parser_abort_tentative_parse (parser);
15454 else
15455 {
15456 tree probe;
15457
15458 if (INDIRECT_REF_P (argument))
15459 {
15460 /* Strip the dereference temporarily. */
15461 gcc_assert (REFERENCE_REF_P (argument));
15462 argument = TREE_OPERAND (argument, 0);
15463 }
15464
15465 /* If we're in a template, we represent a qualified-id referring
15466 to a static data member as a SCOPE_REF even if the scope isn't
15467 dependent so that we can check access control later. */
15468 probe = argument;
15469 if (TREE_CODE (probe) == SCOPE_REF)
15470 probe = TREE_OPERAND (probe, 1);
15471 if (VAR_P (probe))
15472 {
15473 /* A variable without external linkage might still be a
15474 valid constant-expression, so no error is issued here
15475 if the external-linkage check fails. */
15476 if (!address_p && !DECL_EXTERNAL_LINKAGE_P (probe))
15477 cp_parser_simulate_error (parser);
15478 }
15479 else if (is_overloaded_fn (argument))
15480 /* All overloaded functions are allowed; if the external
15481 linkage test does not pass, an error will be issued
15482 later. */
15483 ;
15484 else if (address_p
15485 && (TREE_CODE (argument) == OFFSET_REF
15486 || TREE_CODE (argument) == SCOPE_REF))
15487 /* A pointer-to-member. */
15488 ;
15489 else if (TREE_CODE (argument) == TEMPLATE_PARM_INDEX)
15490 ;
15491 else
15492 cp_parser_simulate_error (parser);
15493
15494 if (cp_parser_parse_definitely (parser))
15495 {
15496 if (address_p)
15497 argument = build_x_unary_op (loc, ADDR_EXPR, argument,
15498 tf_warning_or_error);
15499 else
15500 argument = convert_from_reference (argument);
15501 return argument;
15502 }
15503 }
15504 }
15505 /* If the argument started with "&", there are no other valid
15506 alternatives at this point. */
15507 if (address_p)
15508 {
15509 cp_parser_error (parser, "invalid non-type template argument");
15510 return error_mark_node;
15511 }
15512
15513 general_expr:
15514 /* If the argument wasn't successfully parsed as a type-id followed
15515 by '>>', the argument can only be a constant expression now.
15516 Otherwise, we try parsing the constant-expression tentatively,
15517 because the argument could really be a type-id. */
15518 if (maybe_type_id)
15519 cp_parser_parse_tentatively (parser);
15520
15521 if (cxx_dialect <= cxx14)
15522 argument = cp_parser_constant_expression (parser);
15523 else
15524 {
15525 /* With C++17 generalized non-type template arguments we need to handle
15526 lvalue constant expressions, too. */
15527 argument = cp_parser_assignment_expression (parser);
15528 require_potential_constant_expression (argument);
15529 }
15530
15531 if (!maybe_type_id)
15532 return argument;
15533 if (!cp_parser_next_token_ends_template_argument_p (parser))
15534 cp_parser_error (parser, "expected template-argument");
15535 if (cp_parser_parse_definitely (parser))
15536 return argument;
15537 /* We did our best to parse the argument as a non type-id, but that
15538 was the only alternative that matched (albeit with a '>' after
15539 it). We can assume it's just a typo from the user, and a
15540 diagnostic will then be issued. */
15541 return cp_parser_template_type_arg (parser);
15542 }
15543
15544 /* Parse an explicit-instantiation.
15545
15546 explicit-instantiation:
15547 template declaration
15548
15549 Although the standard says `declaration', what it really means is:
15550
15551 explicit-instantiation:
15552 template decl-specifier-seq [opt] declarator [opt] ;
15553
15554 Things like `template int S<int>::i = 5, int S<double>::j;' are not
15555 supposed to be allowed. A defect report has been filed about this
15556 issue.
15557
15558 GNU Extension:
15559
15560 explicit-instantiation:
15561 storage-class-specifier template
15562 decl-specifier-seq [opt] declarator [opt] ;
15563 function-specifier template
15564 decl-specifier-seq [opt] declarator [opt] ; */
15565
15566 static void
15567 cp_parser_explicit_instantiation (cp_parser* parser)
15568 {
15569 int declares_class_or_enum;
15570 cp_decl_specifier_seq decl_specifiers;
15571 tree extension_specifier = NULL_TREE;
15572
15573 timevar_push (TV_TEMPLATE_INST);
15574
15575 /* Look for an (optional) storage-class-specifier or
15576 function-specifier. */
15577 if (cp_parser_allow_gnu_extensions_p (parser))
15578 {
15579 extension_specifier
15580 = cp_parser_storage_class_specifier_opt (parser);
15581 if (!extension_specifier)
15582 extension_specifier
15583 = cp_parser_function_specifier_opt (parser,
15584 /*decl_specs=*/NULL);
15585 }
15586
15587 /* Look for the `template' keyword. */
15588 cp_parser_require_keyword (parser, RID_TEMPLATE, RT_TEMPLATE);
15589 /* Let the front end know that we are processing an explicit
15590 instantiation. */
15591 begin_explicit_instantiation ();
15592 /* [temp.explicit] says that we are supposed to ignore access
15593 control while processing explicit instantiation directives. */
15594 push_deferring_access_checks (dk_no_check);
15595 /* Parse a decl-specifier-seq. */
15596 cp_parser_decl_specifier_seq (parser,
15597 CP_PARSER_FLAGS_OPTIONAL,
15598 &decl_specifiers,
15599 &declares_class_or_enum);
15600 /* If there was exactly one decl-specifier, and it declared a class,
15601 and there's no declarator, then we have an explicit type
15602 instantiation. */
15603 if (declares_class_or_enum && cp_parser_declares_only_class_p (parser))
15604 {
15605 tree type;
15606
15607 type = check_tag_decl (&decl_specifiers,
15608 /*explicit_type_instantiation_p=*/true);
15609 /* Turn access control back on for names used during
15610 template instantiation. */
15611 pop_deferring_access_checks ();
15612 if (type)
15613 do_type_instantiation (type, extension_specifier,
15614 /*complain=*/tf_error);
15615 }
15616 else
15617 {
15618 cp_declarator *declarator;
15619 tree decl;
15620
15621 /* Parse the declarator. */
15622 declarator
15623 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
15624 /*ctor_dtor_or_conv_p=*/NULL,
15625 /*parenthesized_p=*/NULL,
15626 /*member_p=*/false,
15627 /*friend_p=*/false);
15628 if (declares_class_or_enum & 2)
15629 cp_parser_check_for_definition_in_return_type (declarator,
15630 decl_specifiers.type,
15631 decl_specifiers.locations[ds_type_spec]);
15632 if (declarator != cp_error_declarator)
15633 {
15634 if (decl_spec_seq_has_spec_p (&decl_specifiers, ds_inline))
15635 permerror (decl_specifiers.locations[ds_inline],
15636 "explicit instantiation shall not use"
15637 " %<inline%> specifier");
15638 if (decl_spec_seq_has_spec_p (&decl_specifiers, ds_constexpr))
15639 permerror (decl_specifiers.locations[ds_constexpr],
15640 "explicit instantiation shall not use"
15641 " %<constexpr%> specifier");
15642
15643 decl = grokdeclarator (declarator, &decl_specifiers,
15644 NORMAL, 0, &decl_specifiers.attributes);
15645 /* Turn access control back on for names used during
15646 template instantiation. */
15647 pop_deferring_access_checks ();
15648 /* Do the explicit instantiation. */
15649 do_decl_instantiation (decl, extension_specifier);
15650 }
15651 else
15652 {
15653 pop_deferring_access_checks ();
15654 /* Skip the body of the explicit instantiation. */
15655 cp_parser_skip_to_end_of_statement (parser);
15656 }
15657 }
15658 /* We're done with the instantiation. */
15659 end_explicit_instantiation ();
15660
15661 cp_parser_consume_semicolon_at_end_of_statement (parser);
15662
15663 timevar_pop (TV_TEMPLATE_INST);
15664 }
15665
15666 /* Parse an explicit-specialization.
15667
15668 explicit-specialization:
15669 template < > declaration
15670
15671 Although the standard says `declaration', what it really means is:
15672
15673 explicit-specialization:
15674 template <> decl-specifier [opt] init-declarator [opt] ;
15675 template <> function-definition
15676 template <> explicit-specialization
15677 template <> template-declaration */
15678
15679 static void
15680 cp_parser_explicit_specialization (cp_parser* parser)
15681 {
15682 bool need_lang_pop;
15683 cp_token *token = cp_lexer_peek_token (parser->lexer);
15684
15685 /* Look for the `template' keyword. */
15686 cp_parser_require_keyword (parser, RID_TEMPLATE, RT_TEMPLATE);
15687 /* Look for the `<'. */
15688 cp_parser_require (parser, CPP_LESS, RT_LESS);
15689 /* Look for the `>'. */
15690 cp_parser_require (parser, CPP_GREATER, RT_GREATER);
15691 /* We have processed another parameter list. */
15692 ++parser->num_template_parameter_lists;
15693 /* [temp]
15694
15695 A template ... explicit specialization ... shall not have C
15696 linkage. */
15697 if (current_lang_name == lang_name_c)
15698 {
15699 error_at (token->location, "template specialization with C linkage");
15700 /* Give it C++ linkage to avoid confusing other parts of the
15701 front end. */
15702 push_lang_context (lang_name_cplusplus);
15703 need_lang_pop = true;
15704 }
15705 else
15706 need_lang_pop = false;
15707 /* Let the front end know that we are beginning a specialization. */
15708 if (!begin_specialization ())
15709 {
15710 end_specialization ();
15711 return;
15712 }
15713
15714 /* If the next keyword is `template', we need to figure out whether
15715 or not we're looking a template-declaration. */
15716 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
15717 {
15718 if (cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_LESS
15719 && cp_lexer_peek_nth_token (parser->lexer, 3)->type != CPP_GREATER)
15720 cp_parser_template_declaration_after_export (parser,
15721 /*member_p=*/false);
15722 else
15723 cp_parser_explicit_specialization (parser);
15724 }
15725 else
15726 /* Parse the dependent declaration. */
15727 cp_parser_single_declaration (parser,
15728 /*checks=*/NULL,
15729 /*member_p=*/false,
15730 /*explicit_specialization_p=*/true,
15731 /*friend_p=*/NULL);
15732 /* We're done with the specialization. */
15733 end_specialization ();
15734 /* For the erroneous case of a template with C linkage, we pushed an
15735 implicit C++ linkage scope; exit that scope now. */
15736 if (need_lang_pop)
15737 pop_lang_context ();
15738 /* We're done with this parameter list. */
15739 --parser->num_template_parameter_lists;
15740 }
15741
15742 /* Parse a type-specifier.
15743
15744 type-specifier:
15745 simple-type-specifier
15746 class-specifier
15747 enum-specifier
15748 elaborated-type-specifier
15749 cv-qualifier
15750
15751 GNU Extension:
15752
15753 type-specifier:
15754 __complex__
15755
15756 Returns a representation of the type-specifier. For a
15757 class-specifier, enum-specifier, or elaborated-type-specifier, a
15758 TREE_TYPE is returned; otherwise, a TYPE_DECL is returned.
15759
15760 The parser flags FLAGS is used to control type-specifier parsing.
15761
15762 If IS_DECLARATION is TRUE, then this type-specifier is appearing
15763 in a decl-specifier-seq.
15764
15765 If DECLARES_CLASS_OR_ENUM is non-NULL, and the type-specifier is a
15766 class-specifier, enum-specifier, or elaborated-type-specifier, then
15767 *DECLARES_CLASS_OR_ENUM is set to a nonzero value. The value is 1
15768 if a type is declared; 2 if it is defined. Otherwise, it is set to
15769 zero.
15770
15771 If IS_CV_QUALIFIER is non-NULL, and the type-specifier is a
15772 cv-qualifier, then IS_CV_QUALIFIER is set to TRUE. Otherwise, it
15773 is set to FALSE. */
15774
15775 static tree
15776 cp_parser_type_specifier (cp_parser* parser,
15777 cp_parser_flags flags,
15778 cp_decl_specifier_seq *decl_specs,
15779 bool is_declaration,
15780 int* declares_class_or_enum,
15781 bool* is_cv_qualifier)
15782 {
15783 tree type_spec = NULL_TREE;
15784 cp_token *token;
15785 enum rid keyword;
15786 cp_decl_spec ds = ds_last;
15787
15788 /* Assume this type-specifier does not declare a new type. */
15789 if (declares_class_or_enum)
15790 *declares_class_or_enum = 0;
15791 /* And that it does not specify a cv-qualifier. */
15792 if (is_cv_qualifier)
15793 *is_cv_qualifier = false;
15794 /* Peek at the next token. */
15795 token = cp_lexer_peek_token (parser->lexer);
15796
15797 /* If we're looking at a keyword, we can use that to guide the
15798 production we choose. */
15799 keyword = token->keyword;
15800 switch (keyword)
15801 {
15802 case RID_ENUM:
15803 if ((flags & CP_PARSER_FLAGS_NO_TYPE_DEFINITIONS))
15804 goto elaborated_type_specifier;
15805
15806 /* Look for the enum-specifier. */
15807 type_spec = cp_parser_enum_specifier (parser);
15808 /* If that worked, we're done. */
15809 if (type_spec)
15810 {
15811 if (declares_class_or_enum)
15812 *declares_class_or_enum = 2;
15813 if (decl_specs)
15814 cp_parser_set_decl_spec_type (decl_specs,
15815 type_spec,
15816 token,
15817 /*type_definition_p=*/true);
15818 return type_spec;
15819 }
15820 else
15821 goto elaborated_type_specifier;
15822
15823 /* Any of these indicate either a class-specifier, or an
15824 elaborated-type-specifier. */
15825 case RID_CLASS:
15826 case RID_STRUCT:
15827 case RID_UNION:
15828 if ((flags & CP_PARSER_FLAGS_NO_TYPE_DEFINITIONS))
15829 goto elaborated_type_specifier;
15830
15831 /* Parse tentatively so that we can back up if we don't find a
15832 class-specifier. */
15833 cp_parser_parse_tentatively (parser);
15834 /* Look for the class-specifier. */
15835 type_spec = cp_parser_class_specifier (parser);
15836 invoke_plugin_callbacks (PLUGIN_FINISH_TYPE, type_spec);
15837 /* If that worked, we're done. */
15838 if (cp_parser_parse_definitely (parser))
15839 {
15840 if (declares_class_or_enum)
15841 *declares_class_or_enum = 2;
15842 if (decl_specs)
15843 cp_parser_set_decl_spec_type (decl_specs,
15844 type_spec,
15845 token,
15846 /*type_definition_p=*/true);
15847 return type_spec;
15848 }
15849
15850 /* Fall through. */
15851 elaborated_type_specifier:
15852 /* We're declaring (not defining) a class or enum. */
15853 if (declares_class_or_enum)
15854 *declares_class_or_enum = 1;
15855
15856 /* Fall through. */
15857 case RID_TYPENAME:
15858 /* Look for an elaborated-type-specifier. */
15859 type_spec
15860 = (cp_parser_elaborated_type_specifier
15861 (parser,
15862 decl_spec_seq_has_spec_p (decl_specs, ds_friend),
15863 is_declaration));
15864 if (decl_specs)
15865 cp_parser_set_decl_spec_type (decl_specs,
15866 type_spec,
15867 token,
15868 /*type_definition_p=*/false);
15869 return type_spec;
15870
15871 case RID_CONST:
15872 ds = ds_const;
15873 if (is_cv_qualifier)
15874 *is_cv_qualifier = true;
15875 break;
15876
15877 case RID_VOLATILE:
15878 ds = ds_volatile;
15879 if (is_cv_qualifier)
15880 *is_cv_qualifier = true;
15881 break;
15882
15883 case RID_RESTRICT:
15884 ds = ds_restrict;
15885 if (is_cv_qualifier)
15886 *is_cv_qualifier = true;
15887 break;
15888
15889 case RID_COMPLEX:
15890 /* The `__complex__' keyword is a GNU extension. */
15891 ds = ds_complex;
15892 break;
15893
15894 default:
15895 break;
15896 }
15897
15898 /* Handle simple keywords. */
15899 if (ds != ds_last)
15900 {
15901 if (decl_specs)
15902 {
15903 set_and_check_decl_spec_loc (decl_specs, ds, token);
15904 decl_specs->any_specifiers_p = true;
15905 }
15906 return cp_lexer_consume_token (parser->lexer)->u.value;
15907 }
15908
15909 /* If we do not already have a type-specifier, assume we are looking
15910 at a simple-type-specifier. */
15911 type_spec = cp_parser_simple_type_specifier (parser,
15912 decl_specs,
15913 flags);
15914
15915 /* If we didn't find a type-specifier, and a type-specifier was not
15916 optional in this context, issue an error message. */
15917 if (!type_spec && !(flags & CP_PARSER_FLAGS_OPTIONAL))
15918 {
15919 cp_parser_error (parser, "expected type specifier");
15920 return error_mark_node;
15921 }
15922
15923 return type_spec;
15924 }
15925
15926 /* Parse a simple-type-specifier.
15927
15928 simple-type-specifier:
15929 :: [opt] nested-name-specifier [opt] type-name
15930 :: [opt] nested-name-specifier template template-id
15931 char
15932 wchar_t
15933 bool
15934 short
15935 int
15936 long
15937 signed
15938 unsigned
15939 float
15940 double
15941 void
15942
15943 C++0x Extension:
15944
15945 simple-type-specifier:
15946 auto
15947 decltype ( expression )
15948 char16_t
15949 char32_t
15950 __underlying_type ( type-id )
15951
15952 GNU Extension:
15953
15954 simple-type-specifier:
15955 __int128
15956 __typeof__ unary-expression
15957 __typeof__ ( type-id )
15958 __typeof__ ( type-id ) { initializer-list , [opt] }
15959
15960 Concepts Extension:
15961
15962 simple-type-specifier:
15963 constrained-type-specifier
15964
15965 Returns the indicated TYPE_DECL. If DECL_SPECS is not NULL, it is
15966 appropriately updated. */
15967
15968 static tree
15969 cp_parser_simple_type_specifier (cp_parser* parser,
15970 cp_decl_specifier_seq *decl_specs,
15971 cp_parser_flags flags)
15972 {
15973 tree type = NULL_TREE;
15974 cp_token *token;
15975 int idx;
15976
15977 /* Peek at the next token. */
15978 token = cp_lexer_peek_token (parser->lexer);
15979
15980 /* If we're looking at a keyword, things are easy. */
15981 switch (token->keyword)
15982 {
15983 case RID_CHAR:
15984 if (decl_specs)
15985 decl_specs->explicit_char_p = true;
15986 type = char_type_node;
15987 break;
15988 case RID_CHAR16:
15989 type = char16_type_node;
15990 break;
15991 case RID_CHAR32:
15992 type = char32_type_node;
15993 break;
15994 case RID_WCHAR:
15995 type = wchar_type_node;
15996 break;
15997 case RID_BOOL:
15998 type = boolean_type_node;
15999 break;
16000 case RID_SHORT:
16001 set_and_check_decl_spec_loc (decl_specs, ds_short, token);
16002 type = short_integer_type_node;
16003 break;
16004 case RID_INT:
16005 if (decl_specs)
16006 decl_specs->explicit_int_p = true;
16007 type = integer_type_node;
16008 break;
16009 case RID_INT_N_0:
16010 case RID_INT_N_1:
16011 case RID_INT_N_2:
16012 case RID_INT_N_3:
16013 idx = token->keyword - RID_INT_N_0;
16014 if (! int_n_enabled_p [idx])
16015 break;
16016 if (decl_specs)
16017 {
16018 decl_specs->explicit_intN_p = true;
16019 decl_specs->int_n_idx = idx;
16020 }
16021 type = int_n_trees [idx].signed_type;
16022 break;
16023 case RID_LONG:
16024 if (decl_specs)
16025 set_and_check_decl_spec_loc (decl_specs, ds_long, token);
16026 type = long_integer_type_node;
16027 break;
16028 case RID_SIGNED:
16029 set_and_check_decl_spec_loc (decl_specs, ds_signed, token);
16030 type = integer_type_node;
16031 break;
16032 case RID_UNSIGNED:
16033 set_and_check_decl_spec_loc (decl_specs, ds_unsigned, token);
16034 type = unsigned_type_node;
16035 break;
16036 case RID_FLOAT:
16037 type = float_type_node;
16038 break;
16039 case RID_DOUBLE:
16040 type = double_type_node;
16041 break;
16042 case RID_VOID:
16043 type = void_type_node;
16044 break;
16045
16046 case RID_AUTO:
16047 maybe_warn_cpp0x (CPP0X_AUTO);
16048 if (parser->auto_is_implicit_function_template_parm_p)
16049 {
16050 /* The 'auto' might be the placeholder return type for a function decl
16051 with trailing return type. */
16052 bool have_trailing_return_fn_decl = false;
16053
16054 cp_parser_parse_tentatively (parser);
16055 cp_lexer_consume_token (parser->lexer);
16056 while (cp_lexer_next_token_is_not (parser->lexer, CPP_EQ)
16057 && cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA)
16058 && cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN)
16059 && cp_lexer_next_token_is_not (parser->lexer, CPP_EOF))
16060 {
16061 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
16062 {
16063 cp_lexer_consume_token (parser->lexer);
16064 cp_parser_skip_to_closing_parenthesis (parser,
16065 /*recovering*/false,
16066 /*or_comma*/false,
16067 /*consume_paren*/true);
16068 continue;
16069 }
16070
16071 if (cp_lexer_next_token_is (parser->lexer, CPP_DEREF))
16072 {
16073 have_trailing_return_fn_decl = true;
16074 break;
16075 }
16076
16077 cp_lexer_consume_token (parser->lexer);
16078 }
16079 cp_parser_abort_tentative_parse (parser);
16080
16081 if (have_trailing_return_fn_decl)
16082 {
16083 type = make_auto ();
16084 break;
16085 }
16086
16087 if (cxx_dialect >= cxx14)
16088 {
16089 type = synthesize_implicit_template_parm (parser, NULL_TREE);
16090 type = TREE_TYPE (type);
16091 }
16092 else
16093 type = error_mark_node;
16094
16095 if (current_class_type && LAMBDA_TYPE_P (current_class_type))
16096 {
16097 if (cxx_dialect < cxx14)
16098 error_at (token->location,
16099 "use of %<auto%> in lambda parameter declaration "
16100 "only available with "
16101 "-std=c++14 or -std=gnu++14");
16102 }
16103 else if (cxx_dialect < cxx14)
16104 error_at (token->location,
16105 "use of %<auto%> in parameter declaration "
16106 "only available with "
16107 "-std=c++14 or -std=gnu++14");
16108 else if (!flag_concepts)
16109 pedwarn (token->location, OPT_Wpedantic,
16110 "ISO C++ forbids use of %<auto%> in parameter "
16111 "declaration");
16112 }
16113 else
16114 type = make_auto ();
16115 break;
16116
16117 case RID_DECLTYPE:
16118 /* Since DR 743, decltype can either be a simple-type-specifier by
16119 itself or begin a nested-name-specifier. Parsing it will replace
16120 it with a CPP_DECLTYPE, so just rewind and let the CPP_DECLTYPE
16121 handling below decide what to do. */
16122 cp_parser_decltype (parser);
16123 cp_lexer_set_token_position (parser->lexer, token);
16124 break;
16125
16126 case RID_TYPEOF:
16127 /* Consume the `typeof' token. */
16128 cp_lexer_consume_token (parser->lexer);
16129 /* Parse the operand to `typeof'. */
16130 type = cp_parser_sizeof_operand (parser, RID_TYPEOF);
16131 /* If it is not already a TYPE, take its type. */
16132 if (!TYPE_P (type))
16133 type = finish_typeof (type);
16134
16135 if (decl_specs)
16136 cp_parser_set_decl_spec_type (decl_specs, type,
16137 token,
16138 /*type_definition_p=*/false);
16139
16140 return type;
16141
16142 case RID_UNDERLYING_TYPE:
16143 type = cp_parser_trait_expr (parser, RID_UNDERLYING_TYPE);
16144 if (decl_specs)
16145 cp_parser_set_decl_spec_type (decl_specs, type,
16146 token,
16147 /*type_definition_p=*/false);
16148
16149 return type;
16150
16151 case RID_BASES:
16152 case RID_DIRECT_BASES:
16153 type = cp_parser_trait_expr (parser, token->keyword);
16154 if (decl_specs)
16155 cp_parser_set_decl_spec_type (decl_specs, type,
16156 token,
16157 /*type_definition_p=*/false);
16158 return type;
16159 default:
16160 break;
16161 }
16162
16163 /* If token is an already-parsed decltype not followed by ::,
16164 it's a simple-type-specifier. */
16165 if (token->type == CPP_DECLTYPE
16166 && cp_lexer_peek_nth_token (parser->lexer, 2)->type != CPP_SCOPE)
16167 {
16168 type = saved_checks_value (token->u.tree_check_value);
16169 if (decl_specs)
16170 {
16171 cp_parser_set_decl_spec_type (decl_specs, type,
16172 token,
16173 /*type_definition_p=*/false);
16174 /* Remember that we are handling a decltype in order to
16175 implement the resolution of DR 1510 when the argument
16176 isn't instantiation dependent. */
16177 decl_specs->decltype_p = true;
16178 }
16179 cp_lexer_consume_token (parser->lexer);
16180 return type;
16181 }
16182
16183 /* If the type-specifier was for a built-in type, we're done. */
16184 if (type)
16185 {
16186 /* Record the type. */
16187 if (decl_specs
16188 && (token->keyword != RID_SIGNED
16189 && token->keyword != RID_UNSIGNED
16190 && token->keyword != RID_SHORT
16191 && token->keyword != RID_LONG))
16192 cp_parser_set_decl_spec_type (decl_specs,
16193 type,
16194 token,
16195 /*type_definition_p=*/false);
16196 if (decl_specs)
16197 decl_specs->any_specifiers_p = true;
16198
16199 /* Consume the token. */
16200 cp_lexer_consume_token (parser->lexer);
16201
16202 if (type == error_mark_node)
16203 return error_mark_node;
16204
16205 /* There is no valid C++ program where a non-template type is
16206 followed by a "<". That usually indicates that the user thought
16207 that the type was a template. */
16208 cp_parser_check_for_invalid_template_id (parser, type, none_type,
16209 token->location);
16210
16211 return TYPE_NAME (type);
16212 }
16213
16214 /* The type-specifier must be a user-defined type. */
16215 if (!(flags & CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES))
16216 {
16217 bool qualified_p;
16218 bool global_p;
16219
16220 /* Don't gobble tokens or issue error messages if this is an
16221 optional type-specifier. */
16222 if (flags & CP_PARSER_FLAGS_OPTIONAL)
16223 cp_parser_parse_tentatively (parser);
16224
16225 /* Look for the optional `::' operator. */
16226 global_p
16227 = (cp_parser_global_scope_opt (parser,
16228 /*current_scope_valid_p=*/false)
16229 != NULL_TREE);
16230 /* Look for the nested-name specifier. */
16231 qualified_p
16232 = (cp_parser_nested_name_specifier_opt (parser,
16233 /*typename_keyword_p=*/false,
16234 /*check_dependency_p=*/true,
16235 /*type_p=*/false,
16236 /*is_declaration=*/false)
16237 != NULL_TREE);
16238 token = cp_lexer_peek_token (parser->lexer);
16239 /* If we have seen a nested-name-specifier, and the next token
16240 is `template', then we are using the template-id production. */
16241 if (parser->scope
16242 && cp_parser_optional_template_keyword (parser))
16243 {
16244 /* Look for the template-id. */
16245 type = cp_parser_template_id (parser,
16246 /*template_keyword_p=*/true,
16247 /*check_dependency_p=*/true,
16248 none_type,
16249 /*is_declaration=*/false);
16250 /* If the template-id did not name a type, we are out of
16251 luck. */
16252 if (TREE_CODE (type) != TYPE_DECL)
16253 {
16254 cp_parser_error (parser, "expected template-id for type");
16255 type = NULL_TREE;
16256 }
16257 }
16258 /* Otherwise, look for a type-name. */
16259 else
16260 type = cp_parser_type_name (parser);
16261 /* Keep track of all name-lookups performed in class scopes. */
16262 if (type
16263 && !global_p
16264 && !qualified_p
16265 && TREE_CODE (type) == TYPE_DECL
16266 && identifier_p (DECL_NAME (type)))
16267 maybe_note_name_used_in_class (DECL_NAME (type), type);
16268 /* If it didn't work out, we don't have a TYPE. */
16269 if ((flags & CP_PARSER_FLAGS_OPTIONAL)
16270 && !cp_parser_parse_definitely (parser))
16271 type = NULL_TREE;
16272 if (type && decl_specs)
16273 cp_parser_set_decl_spec_type (decl_specs, type,
16274 token,
16275 /*type_definition_p=*/false);
16276 }
16277
16278 /* If we didn't get a type-name, issue an error message. */
16279 if (!type && !(flags & CP_PARSER_FLAGS_OPTIONAL))
16280 {
16281 cp_parser_error (parser, "expected type-name");
16282 return error_mark_node;
16283 }
16284
16285 if (type && type != error_mark_node)
16286 {
16287 /* See if TYPE is an Objective-C type, and if so, parse and
16288 accept any protocol references following it. Do this before
16289 the cp_parser_check_for_invalid_template_id() call, because
16290 Objective-C types can be followed by '<...>' which would
16291 enclose protocol names rather than template arguments, and so
16292 everything is fine. */
16293 if (c_dialect_objc () && !parser->scope
16294 && (objc_is_id (type) || objc_is_class_name (type)))
16295 {
16296 tree protos = cp_parser_objc_protocol_refs_opt (parser);
16297 tree qual_type = objc_get_protocol_qualified_type (type, protos);
16298
16299 /* Clobber the "unqualified" type previously entered into
16300 DECL_SPECS with the new, improved protocol-qualified version. */
16301 if (decl_specs)
16302 decl_specs->type = qual_type;
16303
16304 return qual_type;
16305 }
16306
16307 /* There is no valid C++ program where a non-template type is
16308 followed by a "<". That usually indicates that the user
16309 thought that the type was a template. */
16310 cp_parser_check_for_invalid_template_id (parser, TREE_TYPE (type),
16311 none_type,
16312 token->location);
16313 }
16314
16315 return type;
16316 }
16317
16318 /* Parse a type-name.
16319
16320 type-name:
16321 class-name
16322 enum-name
16323 typedef-name
16324 simple-template-id [in c++0x]
16325
16326 enum-name:
16327 identifier
16328
16329 typedef-name:
16330 identifier
16331
16332 Concepts:
16333
16334 type-name:
16335 concept-name
16336 partial-concept-id
16337
16338 concept-name:
16339 identifier
16340
16341 Returns a TYPE_DECL for the type. */
16342
16343 static tree
16344 cp_parser_type_name (cp_parser* parser)
16345 {
16346 return cp_parser_type_name (parser, /*typename_keyword_p=*/false);
16347 }
16348
16349 /* See above. */
16350 static tree
16351 cp_parser_type_name (cp_parser* parser, bool typename_keyword_p)
16352 {
16353 tree type_decl;
16354
16355 /* We can't know yet whether it is a class-name or not. */
16356 cp_parser_parse_tentatively (parser);
16357 /* Try a class-name. */
16358 type_decl = cp_parser_class_name (parser,
16359 typename_keyword_p,
16360 /*template_keyword_p=*/false,
16361 none_type,
16362 /*check_dependency_p=*/true,
16363 /*class_head_p=*/false,
16364 /*is_declaration=*/false);
16365 /* If it's not a class-name, keep looking. */
16366 if (!cp_parser_parse_definitely (parser))
16367 {
16368 if (cxx_dialect < cxx11)
16369 /* It must be a typedef-name or an enum-name. */
16370 return cp_parser_nonclass_name (parser);
16371
16372 cp_parser_parse_tentatively (parser);
16373 /* It is either a simple-template-id representing an
16374 instantiation of an alias template... */
16375 type_decl = cp_parser_template_id (parser,
16376 /*template_keyword_p=*/false,
16377 /*check_dependency_p=*/true,
16378 none_type,
16379 /*is_declaration=*/false);
16380 /* Note that this must be an instantiation of an alias template
16381 because [temp.names]/6 says:
16382
16383 A template-id that names an alias template specialization
16384 is a type-name.
16385
16386 Whereas [temp.names]/7 says:
16387
16388 A simple-template-id that names a class template
16389 specialization is a class-name.
16390
16391 With concepts, this could also be a partial-concept-id that
16392 declares a non-type template parameter. */
16393 if (type_decl != NULL_TREE
16394 && TREE_CODE (type_decl) == TYPE_DECL
16395 && TYPE_DECL_ALIAS_P (type_decl))
16396 gcc_assert (DECL_TEMPLATE_INSTANTIATION (type_decl));
16397 else if (is_constrained_parameter (type_decl))
16398 /* Don't do anything. */ ;
16399 else
16400 cp_parser_simulate_error (parser);
16401
16402 if (!cp_parser_parse_definitely (parser))
16403 /* ... Or a typedef-name or an enum-name. */
16404 return cp_parser_nonclass_name (parser);
16405 }
16406
16407 return type_decl;
16408 }
16409
16410 /* Check if DECL and ARGS can form a constrained-type-specifier.
16411 If ARGS is non-null, we try to form a concept check of the
16412 form DECL<?, ARGS> where ? is a wildcard that matches any
16413 kind of template argument. If ARGS is NULL, then we try to
16414 form a concept check of the form DECL<?>. */
16415
16416 static tree
16417 cp_parser_maybe_constrained_type_specifier (cp_parser *parser,
16418 tree decl, tree args)
16419 {
16420 gcc_assert (args ? TREE_CODE (args) == TREE_VEC : true);
16421
16422 /* If we a constrained-type-specifier cannot be deduced. */
16423 if (parser->prevent_constrained_type_specifiers)
16424 return NULL_TREE;
16425
16426 /* A constrained type specifier can only be found in an
16427 overload set or as a reference to a template declaration.
16428
16429 FIXME: This might be masking a bug. It's possible that
16430 that the deduction below is causing template specializations
16431 to be formed with the wildcard as an argument. */
16432 if (TREE_CODE (decl) != OVERLOAD && TREE_CODE (decl) != TEMPLATE_DECL)
16433 return NULL_TREE;
16434
16435 /* Try to build a call expression that evaluates the
16436 concept. This can fail if the overload set refers
16437 only to non-templates. */
16438 tree placeholder = build_nt (WILDCARD_DECL);
16439 tree check = build_concept_check (decl, placeholder, args);
16440 if (check == error_mark_node)
16441 return NULL_TREE;
16442
16443 /* Deduce the checked constraint and the prototype parameter.
16444
16445 FIXME: In certain cases, failure to deduce should be a
16446 diagnosable error. */
16447 tree conc;
16448 tree proto;
16449 if (!deduce_constrained_parameter (check, conc, proto))
16450 return NULL_TREE;
16451
16452 /* In template parameter scope, this results in a constrained
16453 parameter. Return a descriptor of that parm. */
16454 if (processing_template_parmlist)
16455 return build_constrained_parameter (conc, proto, args);
16456
16457 /* In a parameter-declaration-clause, constrained-type
16458 specifiers result in invented template parameters. */
16459 if (parser->auto_is_implicit_function_template_parm_p)
16460 {
16461 tree x = build_constrained_parameter (conc, proto, args);
16462 return synthesize_implicit_template_parm (parser, x);
16463 }
16464 else
16465 {
16466 /* Otherwise, we're in a context where the constrained
16467 type name is deduced and the constraint applies
16468 after deduction. */
16469 return make_constrained_auto (conc, args);
16470 }
16471
16472 return NULL_TREE;
16473 }
16474
16475 /* If DECL refers to a concept, return a TYPE_DECL representing
16476 the result of using the constrained type specifier in the
16477 current context. DECL refers to a concept if
16478
16479 - it is an overload set containing a function concept taking a single
16480 type argument, or
16481
16482 - it is a variable concept taking a single type argument. */
16483
16484 static tree
16485 cp_parser_maybe_concept_name (cp_parser* parser, tree decl)
16486 {
16487 if (flag_concepts
16488 && (TREE_CODE (decl) == OVERLOAD
16489 || BASELINK_P (decl)
16490 || variable_concept_p (decl)))
16491 return cp_parser_maybe_constrained_type_specifier (parser, decl, NULL_TREE);
16492 else
16493 return NULL_TREE;
16494 }
16495
16496 /* Check if DECL and ARGS form a partial-concept-id. If so,
16497 assign ID to the resulting constrained placeholder.
16498
16499 Returns true if the partial-concept-id designates a placeholder
16500 and false otherwise. Note that *id is set to NULL_TREE in
16501 this case. */
16502
16503 static tree
16504 cp_parser_maybe_partial_concept_id (cp_parser *parser, tree decl, tree args)
16505 {
16506 return cp_parser_maybe_constrained_type_specifier (parser, decl, args);
16507 }
16508
16509 /* Parse a non-class type-name, that is, either an enum-name, a typedef-name,
16510 or a concept-name.
16511
16512 enum-name:
16513 identifier
16514
16515 typedef-name:
16516 identifier
16517
16518 concept-name:
16519 identifier
16520
16521 Returns a TYPE_DECL for the type. */
16522
16523 static tree
16524 cp_parser_nonclass_name (cp_parser* parser)
16525 {
16526 tree type_decl;
16527 tree identifier;
16528
16529 cp_token *token = cp_lexer_peek_token (parser->lexer);
16530 identifier = cp_parser_identifier (parser);
16531 if (identifier == error_mark_node)
16532 return error_mark_node;
16533
16534 /* Look up the type-name. */
16535 type_decl = cp_parser_lookup_name_simple (parser, identifier, token->location);
16536
16537 type_decl = strip_using_decl (type_decl);
16538
16539 /* If we found an overload set, then it may refer to a concept-name. */
16540 if (tree decl = cp_parser_maybe_concept_name (parser, type_decl))
16541 type_decl = decl;
16542
16543 if (TREE_CODE (type_decl) != TYPE_DECL
16544 && (objc_is_id (identifier) || objc_is_class_name (identifier)))
16545 {
16546 /* See if this is an Objective-C type. */
16547 tree protos = cp_parser_objc_protocol_refs_opt (parser);
16548 tree type = objc_get_protocol_qualified_type (identifier, protos);
16549 if (type)
16550 type_decl = TYPE_NAME (type);
16551 }
16552
16553 /* Issue an error if we did not find a type-name. */
16554 if (TREE_CODE (type_decl) != TYPE_DECL
16555 /* In Objective-C, we have the complication that class names are
16556 normally type names and start declarations (eg, the
16557 "NSObject" in "NSObject *object;"), but can be used in an
16558 Objective-C 2.0 dot-syntax (as in "NSObject.version") which
16559 is an expression. So, a classname followed by a dot is not a
16560 valid type-name. */
16561 || (objc_is_class_name (TREE_TYPE (type_decl))
16562 && cp_lexer_peek_token (parser->lexer)->type == CPP_DOT))
16563 {
16564 if (!cp_parser_simulate_error (parser))
16565 cp_parser_name_lookup_error (parser, identifier, type_decl,
16566 NLE_TYPE, token->location);
16567 return error_mark_node;
16568 }
16569 /* Remember that the name was used in the definition of the
16570 current class so that we can check later to see if the
16571 meaning would have been different after the class was
16572 entirely defined. */
16573 else if (type_decl != error_mark_node
16574 && !parser->scope)
16575 maybe_note_name_used_in_class (identifier, type_decl);
16576
16577 return type_decl;
16578 }
16579
16580 /* Parse an elaborated-type-specifier. Note that the grammar given
16581 here incorporates the resolution to DR68.
16582
16583 elaborated-type-specifier:
16584 class-key :: [opt] nested-name-specifier [opt] identifier
16585 class-key :: [opt] nested-name-specifier [opt] template [opt] template-id
16586 enum-key :: [opt] nested-name-specifier [opt] identifier
16587 typename :: [opt] nested-name-specifier identifier
16588 typename :: [opt] nested-name-specifier template [opt]
16589 template-id
16590
16591 GNU extension:
16592
16593 elaborated-type-specifier:
16594 class-key attributes :: [opt] nested-name-specifier [opt] identifier
16595 class-key attributes :: [opt] nested-name-specifier [opt]
16596 template [opt] template-id
16597 enum attributes :: [opt] nested-name-specifier [opt] identifier
16598
16599 If IS_FRIEND is TRUE, then this elaborated-type-specifier is being
16600 declared `friend'. If IS_DECLARATION is TRUE, then this
16601 elaborated-type-specifier appears in a decl-specifiers-seq, i.e.,
16602 something is being declared.
16603
16604 Returns the TYPE specified. */
16605
16606 static tree
16607 cp_parser_elaborated_type_specifier (cp_parser* parser,
16608 bool is_friend,
16609 bool is_declaration)
16610 {
16611 enum tag_types tag_type;
16612 tree identifier;
16613 tree type = NULL_TREE;
16614 tree attributes = NULL_TREE;
16615 tree globalscope;
16616 cp_token *token = NULL;
16617
16618 /* See if we're looking at the `enum' keyword. */
16619 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_ENUM))
16620 {
16621 /* Consume the `enum' token. */
16622 cp_lexer_consume_token (parser->lexer);
16623 /* Remember that it's an enumeration type. */
16624 tag_type = enum_type;
16625 /* Issue a warning if the `struct' or `class' key (for C++0x scoped
16626 enums) is used here. */
16627 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_CLASS)
16628 || cp_lexer_next_token_is_keyword (parser->lexer, RID_STRUCT))
16629 {
16630 pedwarn (input_location, 0, "elaborated-type-specifier "
16631 "for a scoped enum must not use the %<%D%> keyword",
16632 cp_lexer_peek_token (parser->lexer)->u.value);
16633 /* Consume the `struct' or `class' and parse it anyway. */
16634 cp_lexer_consume_token (parser->lexer);
16635 }
16636 /* Parse the attributes. */
16637 attributes = cp_parser_attributes_opt (parser);
16638 }
16639 /* Or, it might be `typename'. */
16640 else if (cp_lexer_next_token_is_keyword (parser->lexer,
16641 RID_TYPENAME))
16642 {
16643 /* Consume the `typename' token. */
16644 cp_lexer_consume_token (parser->lexer);
16645 /* Remember that it's a `typename' type. */
16646 tag_type = typename_type;
16647 }
16648 /* Otherwise it must be a class-key. */
16649 else
16650 {
16651 tag_type = cp_parser_class_key (parser);
16652 if (tag_type == none_type)
16653 return error_mark_node;
16654 /* Parse the attributes. */
16655 attributes = cp_parser_attributes_opt (parser);
16656 }
16657
16658 /* Look for the `::' operator. */
16659 globalscope = cp_parser_global_scope_opt (parser,
16660 /*current_scope_valid_p=*/false);
16661 /* Look for the nested-name-specifier. */
16662 if (tag_type == typename_type && !globalscope)
16663 {
16664 if (!cp_parser_nested_name_specifier (parser,
16665 /*typename_keyword_p=*/true,
16666 /*check_dependency_p=*/true,
16667 /*type_p=*/true,
16668 is_declaration))
16669 return error_mark_node;
16670 }
16671 else
16672 /* Even though `typename' is not present, the proposed resolution
16673 to Core Issue 180 says that in `class A<T>::B', `B' should be
16674 considered a type-name, even if `A<T>' is dependent. */
16675 cp_parser_nested_name_specifier_opt (parser,
16676 /*typename_keyword_p=*/true,
16677 /*check_dependency_p=*/true,
16678 /*type_p=*/true,
16679 is_declaration);
16680 /* For everything but enumeration types, consider a template-id.
16681 For an enumeration type, consider only a plain identifier. */
16682 if (tag_type != enum_type)
16683 {
16684 bool template_p = false;
16685 tree decl;
16686
16687 /* Allow the `template' keyword. */
16688 template_p = cp_parser_optional_template_keyword (parser);
16689 /* If we didn't see `template', we don't know if there's a
16690 template-id or not. */
16691 if (!template_p)
16692 cp_parser_parse_tentatively (parser);
16693 /* Parse the template-id. */
16694 token = cp_lexer_peek_token (parser->lexer);
16695 decl = cp_parser_template_id (parser, template_p,
16696 /*check_dependency_p=*/true,
16697 tag_type,
16698 is_declaration);
16699 /* If we didn't find a template-id, look for an ordinary
16700 identifier. */
16701 if (!template_p && !cp_parser_parse_definitely (parser))
16702 ;
16703 /* We can get here when cp_parser_template_id, called by
16704 cp_parser_class_name with tag_type == none_type, succeeds
16705 and caches a BASELINK. Then, when called again here,
16706 instead of failing and returning an error_mark_node
16707 returns it (see template/typename17.C in C++11).
16708 ??? Could we diagnose this earlier? */
16709 else if (tag_type == typename_type && BASELINK_P (decl))
16710 {
16711 cp_parser_diagnose_invalid_type_name (parser, decl, token->location);
16712 type = error_mark_node;
16713 }
16714 /* If DECL is a TEMPLATE_ID_EXPR, and the `typename' keyword is
16715 in effect, then we must assume that, upon instantiation, the
16716 template will correspond to a class. */
16717 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
16718 && tag_type == typename_type)
16719 type = make_typename_type (parser->scope, decl,
16720 typename_type,
16721 /*complain=*/tf_error);
16722 /* If the `typename' keyword is in effect and DECL is not a type
16723 decl, then type is non existent. */
16724 else if (tag_type == typename_type && TREE_CODE (decl) != TYPE_DECL)
16725 ;
16726 else if (TREE_CODE (decl) == TYPE_DECL)
16727 type = check_elaborated_type_specifier (tag_type, decl,
16728 /*allow_template_p=*/true);
16729 else if (decl == error_mark_node)
16730 type = error_mark_node;
16731 }
16732
16733 if (!type)
16734 {
16735 token = cp_lexer_peek_token (parser->lexer);
16736 identifier = cp_parser_identifier (parser);
16737
16738 if (identifier == error_mark_node)
16739 {
16740 parser->scope = NULL_TREE;
16741 return error_mark_node;
16742 }
16743
16744 /* For a `typename', we needn't call xref_tag. */
16745 if (tag_type == typename_type
16746 && TREE_CODE (parser->scope) != NAMESPACE_DECL)
16747 return cp_parser_make_typename_type (parser, identifier,
16748 token->location);
16749
16750 /* Template parameter lists apply only if we are not within a
16751 function parameter list. */
16752 bool template_parm_lists_apply
16753 = parser->num_template_parameter_lists;
16754 if (template_parm_lists_apply)
16755 for (cp_binding_level *s = current_binding_level;
16756 s && s->kind != sk_template_parms;
16757 s = s->level_chain)
16758 if (s->kind == sk_function_parms)
16759 template_parm_lists_apply = false;
16760
16761 /* Look up a qualified name in the usual way. */
16762 if (parser->scope)
16763 {
16764 tree decl;
16765 tree ambiguous_decls;
16766
16767 decl = cp_parser_lookup_name (parser, identifier,
16768 tag_type,
16769 /*is_template=*/false,
16770 /*is_namespace=*/false,
16771 /*check_dependency=*/true,
16772 &ambiguous_decls,
16773 token->location);
16774
16775 /* If the lookup was ambiguous, an error will already have been
16776 issued. */
16777 if (ambiguous_decls)
16778 return error_mark_node;
16779
16780 /* If we are parsing friend declaration, DECL may be a
16781 TEMPLATE_DECL tree node here. However, we need to check
16782 whether this TEMPLATE_DECL results in valid code. Consider
16783 the following example:
16784
16785 namespace N {
16786 template <class T> class C {};
16787 }
16788 class X {
16789 template <class T> friend class N::C; // #1, valid code
16790 };
16791 template <class T> class Y {
16792 friend class N::C; // #2, invalid code
16793 };
16794
16795 For both case #1 and #2, we arrive at a TEMPLATE_DECL after
16796 name lookup of `N::C'. We see that friend declaration must
16797 be template for the code to be valid. Note that
16798 processing_template_decl does not work here since it is
16799 always 1 for the above two cases. */
16800
16801 decl = (cp_parser_maybe_treat_template_as_class
16802 (decl, /*tag_name_p=*/is_friend
16803 && template_parm_lists_apply));
16804
16805 if (TREE_CODE (decl) != TYPE_DECL)
16806 {
16807 cp_parser_diagnose_invalid_type_name (parser,
16808 identifier,
16809 token->location);
16810 return error_mark_node;
16811 }
16812
16813 if (TREE_CODE (TREE_TYPE (decl)) != TYPENAME_TYPE)
16814 {
16815 bool allow_template = (template_parm_lists_apply
16816 || DECL_SELF_REFERENCE_P (decl));
16817 type = check_elaborated_type_specifier (tag_type, decl,
16818 allow_template);
16819
16820 if (type == error_mark_node)
16821 return error_mark_node;
16822 }
16823
16824 /* Forward declarations of nested types, such as
16825
16826 class C1::C2;
16827 class C1::C2::C3;
16828
16829 are invalid unless all components preceding the final '::'
16830 are complete. If all enclosing types are complete, these
16831 declarations become merely pointless.
16832
16833 Invalid forward declarations of nested types are errors
16834 caught elsewhere in parsing. Those that are pointless arrive
16835 here. */
16836
16837 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
16838 && !is_friend && !processing_explicit_instantiation)
16839 warning (0, "declaration %qD does not declare anything", decl);
16840
16841 type = TREE_TYPE (decl);
16842 }
16843 else
16844 {
16845 /* An elaborated-type-specifier sometimes introduces a new type and
16846 sometimes names an existing type. Normally, the rule is that it
16847 introduces a new type only if there is not an existing type of
16848 the same name already in scope. For example, given:
16849
16850 struct S {};
16851 void f() { struct S s; }
16852
16853 the `struct S' in the body of `f' is the same `struct S' as in
16854 the global scope; the existing definition is used. However, if
16855 there were no global declaration, this would introduce a new
16856 local class named `S'.
16857
16858 An exception to this rule applies to the following code:
16859
16860 namespace N { struct S; }
16861
16862 Here, the elaborated-type-specifier names a new type
16863 unconditionally; even if there is already an `S' in the
16864 containing scope this declaration names a new type.
16865 This exception only applies if the elaborated-type-specifier
16866 forms the complete declaration:
16867
16868 [class.name]
16869
16870 A declaration consisting solely of `class-key identifier ;' is
16871 either a redeclaration of the name in the current scope or a
16872 forward declaration of the identifier as a class name. It
16873 introduces the name into the current scope.
16874
16875 We are in this situation precisely when the next token is a `;'.
16876
16877 An exception to the exception is that a `friend' declaration does
16878 *not* name a new type; i.e., given:
16879
16880 struct S { friend struct T; };
16881
16882 `T' is not a new type in the scope of `S'.
16883
16884 Also, `new struct S' or `sizeof (struct S)' never results in the
16885 definition of a new type; a new type can only be declared in a
16886 declaration context. */
16887
16888 tag_scope ts;
16889 bool template_p;
16890
16891 if (is_friend)
16892 /* Friends have special name lookup rules. */
16893 ts = ts_within_enclosing_non_class;
16894 else if (is_declaration
16895 && cp_lexer_next_token_is (parser->lexer,
16896 CPP_SEMICOLON))
16897 /* This is a `class-key identifier ;' */
16898 ts = ts_current;
16899 else
16900 ts = ts_global;
16901
16902 template_p =
16903 (template_parm_lists_apply
16904 && (cp_parser_next_token_starts_class_definition_p (parser)
16905 || cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)));
16906 /* An unqualified name was used to reference this type, so
16907 there were no qualifying templates. */
16908 if (template_parm_lists_apply
16909 && !cp_parser_check_template_parameters (parser,
16910 /*num_templates=*/0,
16911 token->location,
16912 /*declarator=*/NULL))
16913 return error_mark_node;
16914 type = xref_tag (tag_type, identifier, ts, template_p);
16915 }
16916 }
16917
16918 if (type == error_mark_node)
16919 return error_mark_node;
16920
16921 /* Allow attributes on forward declarations of classes. */
16922 if (attributes)
16923 {
16924 if (TREE_CODE (type) == TYPENAME_TYPE)
16925 warning (OPT_Wattributes,
16926 "attributes ignored on uninstantiated type");
16927 else if (tag_type != enum_type && CLASSTYPE_TEMPLATE_INSTANTIATION (type)
16928 && ! processing_explicit_instantiation)
16929 warning (OPT_Wattributes,
16930 "attributes ignored on template instantiation");
16931 else if (is_declaration && cp_parser_declares_only_class_p (parser))
16932 cplus_decl_attributes (&type, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
16933 else
16934 warning (OPT_Wattributes,
16935 "attributes ignored on elaborated-type-specifier that is not a forward declaration");
16936 }
16937
16938 if (tag_type != enum_type)
16939 {
16940 /* Indicate whether this class was declared as a `class' or as a
16941 `struct'. */
16942 if (CLASS_TYPE_P (type))
16943 CLASSTYPE_DECLARED_CLASS (type) = (tag_type == class_type);
16944 cp_parser_check_class_key (tag_type, type);
16945 }
16946
16947 /* A "<" cannot follow an elaborated type specifier. If that
16948 happens, the user was probably trying to form a template-id. */
16949 cp_parser_check_for_invalid_template_id (parser, type, tag_type,
16950 token->location);
16951
16952 return type;
16953 }
16954
16955 /* Parse an enum-specifier.
16956
16957 enum-specifier:
16958 enum-head { enumerator-list [opt] }
16959 enum-head { enumerator-list , } [C++0x]
16960
16961 enum-head:
16962 enum-key identifier [opt] enum-base [opt]
16963 enum-key nested-name-specifier identifier enum-base [opt]
16964
16965 enum-key:
16966 enum
16967 enum class [C++0x]
16968 enum struct [C++0x]
16969
16970 enum-base: [C++0x]
16971 : type-specifier-seq
16972
16973 opaque-enum-specifier:
16974 enum-key identifier enum-base [opt] ;
16975
16976 GNU Extensions:
16977 enum-key attributes[opt] identifier [opt] enum-base [opt]
16978 { enumerator-list [opt] }attributes[opt]
16979 enum-key attributes[opt] identifier [opt] enum-base [opt]
16980 { enumerator-list, }attributes[opt] [C++0x]
16981
16982 Returns an ENUM_TYPE representing the enumeration, or NULL_TREE
16983 if the token stream isn't an enum-specifier after all. */
16984
16985 static tree
16986 cp_parser_enum_specifier (cp_parser* parser)
16987 {
16988 tree identifier;
16989 tree type = NULL_TREE;
16990 tree prev_scope;
16991 tree nested_name_specifier = NULL_TREE;
16992 tree attributes;
16993 bool scoped_enum_p = false;
16994 bool has_underlying_type = false;
16995 bool nested_being_defined = false;
16996 bool new_value_list = false;
16997 bool is_new_type = false;
16998 bool is_anonymous = false;
16999 tree underlying_type = NULL_TREE;
17000 cp_token *type_start_token = NULL;
17001 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
17002
17003 parser->colon_corrects_to_scope_p = false;
17004
17005 /* Parse tentatively so that we can back up if we don't find a
17006 enum-specifier. */
17007 cp_parser_parse_tentatively (parser);
17008
17009 /* Caller guarantees that the current token is 'enum', an identifier
17010 possibly follows, and the token after that is an opening brace.
17011 If we don't have an identifier, fabricate an anonymous name for
17012 the enumeration being defined. */
17013 cp_lexer_consume_token (parser->lexer);
17014
17015 /* Parse the "class" or "struct", which indicates a scoped
17016 enumeration type in C++0x. */
17017 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_CLASS)
17018 || cp_lexer_next_token_is_keyword (parser->lexer, RID_STRUCT))
17019 {
17020 if (cxx_dialect < cxx11)
17021 maybe_warn_cpp0x (CPP0X_SCOPED_ENUMS);
17022
17023 /* Consume the `struct' or `class' token. */
17024 cp_lexer_consume_token (parser->lexer);
17025
17026 scoped_enum_p = true;
17027 }
17028
17029 attributes = cp_parser_attributes_opt (parser);
17030
17031 /* Clear the qualification. */
17032 parser->scope = NULL_TREE;
17033 parser->qualifying_scope = NULL_TREE;
17034 parser->object_scope = NULL_TREE;
17035
17036 /* Figure out in what scope the declaration is being placed. */
17037 prev_scope = current_scope ();
17038
17039 type_start_token = cp_lexer_peek_token (parser->lexer);
17040
17041 push_deferring_access_checks (dk_no_check);
17042 nested_name_specifier
17043 = cp_parser_nested_name_specifier_opt (parser,
17044 /*typename_keyword_p=*/true,
17045 /*check_dependency_p=*/false,
17046 /*type_p=*/false,
17047 /*is_declaration=*/false);
17048
17049 if (nested_name_specifier)
17050 {
17051 tree name;
17052
17053 identifier = cp_parser_identifier (parser);
17054 name = cp_parser_lookup_name (parser, identifier,
17055 enum_type,
17056 /*is_template=*/false,
17057 /*is_namespace=*/false,
17058 /*check_dependency=*/true,
17059 /*ambiguous_decls=*/NULL,
17060 input_location);
17061 if (name && name != error_mark_node)
17062 {
17063 type = TREE_TYPE (name);
17064 if (TREE_CODE (type) == TYPENAME_TYPE)
17065 {
17066 /* Are template enums allowed in ISO? */
17067 if (template_parm_scope_p ())
17068 pedwarn (type_start_token->location, OPT_Wpedantic,
17069 "%qD is an enumeration template", name);
17070 /* ignore a typename reference, for it will be solved by name
17071 in start_enum. */
17072 type = NULL_TREE;
17073 }
17074 }
17075 else if (nested_name_specifier == error_mark_node)
17076 /* We already issued an error. */;
17077 else
17078 {
17079 error_at (type_start_token->location,
17080 "%qD does not name an enumeration in %qT",
17081 identifier, nested_name_specifier);
17082 nested_name_specifier = error_mark_node;
17083 }
17084 }
17085 else
17086 {
17087 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
17088 identifier = cp_parser_identifier (parser);
17089 else
17090 {
17091 identifier = make_anon_name ();
17092 is_anonymous = true;
17093 if (scoped_enum_p)
17094 error_at (type_start_token->location,
17095 "anonymous scoped enum is not allowed");
17096 }
17097 }
17098 pop_deferring_access_checks ();
17099
17100 /* Check for the `:' that denotes a specified underlying type in C++0x.
17101 Note that a ':' could also indicate a bitfield width, however. */
17102 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
17103 {
17104 cp_decl_specifier_seq type_specifiers;
17105
17106 /* Consume the `:'. */
17107 cp_lexer_consume_token (parser->lexer);
17108
17109 /* Parse the type-specifier-seq. */
17110 cp_parser_type_specifier_seq (parser, /*is_declaration=*/false,
17111 /*is_trailing_return=*/false,
17112 &type_specifiers);
17113
17114 /* At this point this is surely not elaborated type specifier. */
17115 if (!cp_parser_parse_definitely (parser))
17116 return NULL_TREE;
17117
17118 if (cxx_dialect < cxx11)
17119 maybe_warn_cpp0x (CPP0X_SCOPED_ENUMS);
17120
17121 has_underlying_type = true;
17122
17123 /* If that didn't work, stop. */
17124 if (type_specifiers.type != error_mark_node)
17125 {
17126 underlying_type = grokdeclarator (NULL, &type_specifiers, TYPENAME,
17127 /*initialized=*/0, NULL);
17128 if (underlying_type == error_mark_node
17129 || check_for_bare_parameter_packs (underlying_type))
17130 underlying_type = NULL_TREE;
17131 }
17132 }
17133
17134 /* Look for the `{' but don't consume it yet. */
17135 if (!cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
17136 {
17137 if (cxx_dialect < cxx11 || (!scoped_enum_p && !underlying_type))
17138 {
17139 cp_parser_error (parser, "expected %<{%>");
17140 if (has_underlying_type)
17141 {
17142 type = NULL_TREE;
17143 goto out;
17144 }
17145 }
17146 /* An opaque-enum-specifier must have a ';' here. */
17147 if ((scoped_enum_p || underlying_type)
17148 && cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
17149 {
17150 cp_parser_error (parser, "expected %<;%> or %<{%>");
17151 if (has_underlying_type)
17152 {
17153 type = NULL_TREE;
17154 goto out;
17155 }
17156 }
17157 }
17158
17159 if (!has_underlying_type && !cp_parser_parse_definitely (parser))
17160 return NULL_TREE;
17161
17162 if (nested_name_specifier)
17163 {
17164 if (CLASS_TYPE_P (nested_name_specifier))
17165 {
17166 nested_being_defined = TYPE_BEING_DEFINED (nested_name_specifier);
17167 TYPE_BEING_DEFINED (nested_name_specifier) = 1;
17168 push_scope (nested_name_specifier);
17169 }
17170 else if (TREE_CODE (nested_name_specifier) == NAMESPACE_DECL)
17171 {
17172 push_nested_namespace (nested_name_specifier);
17173 }
17174 }
17175
17176 /* Issue an error message if type-definitions are forbidden here. */
17177 if (!cp_parser_check_type_definition (parser))
17178 type = error_mark_node;
17179 else
17180 /* Create the new type. We do this before consuming the opening
17181 brace so the enum will be recorded as being on the line of its
17182 tag (or the 'enum' keyword, if there is no tag). */
17183 type = start_enum (identifier, type, underlying_type,
17184 attributes, scoped_enum_p, &is_new_type);
17185
17186 /* If the next token is not '{' it is an opaque-enum-specifier or an
17187 elaborated-type-specifier. */
17188 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
17189 {
17190 timevar_push (TV_PARSE_ENUM);
17191 if (nested_name_specifier
17192 && nested_name_specifier != error_mark_node)
17193 {
17194 /* The following catches invalid code such as:
17195 enum class S<int>::E { A, B, C }; */
17196 if (!processing_specialization
17197 && CLASS_TYPE_P (nested_name_specifier)
17198 && CLASSTYPE_USE_TEMPLATE (nested_name_specifier))
17199 error_at (type_start_token->location, "cannot add an enumerator "
17200 "list to a template instantiation");
17201
17202 if (TREE_CODE (nested_name_specifier) == TYPENAME_TYPE)
17203 {
17204 error_at (type_start_token->location,
17205 "%<%T::%E%> has not been declared",
17206 TYPE_CONTEXT (nested_name_specifier),
17207 nested_name_specifier);
17208 type = error_mark_node;
17209 }
17210 else if (TREE_CODE (nested_name_specifier) != NAMESPACE_DECL
17211 && !CLASS_TYPE_P (nested_name_specifier))
17212 {
17213 error_at (type_start_token->location, "nested name specifier "
17214 "%qT for enum declaration does not name a class "
17215 "or namespace", nested_name_specifier);
17216 type = error_mark_node;
17217 }
17218 /* If that scope does not contain the scope in which the
17219 class was originally declared, the program is invalid. */
17220 else if (prev_scope && !is_ancestor (prev_scope,
17221 nested_name_specifier))
17222 {
17223 if (at_namespace_scope_p ())
17224 error_at (type_start_token->location,
17225 "declaration of %qD in namespace %qD which does not "
17226 "enclose %qD",
17227 type, prev_scope, nested_name_specifier);
17228 else
17229 error_at (type_start_token->location,
17230 "declaration of %qD in %qD which does not "
17231 "enclose %qD",
17232 type, prev_scope, nested_name_specifier);
17233 type = error_mark_node;
17234 }
17235 /* If that scope is the scope where the declaration is being placed
17236 the program is invalid. */
17237 else if (CLASS_TYPE_P (nested_name_specifier)
17238 && CLASS_TYPE_P (prev_scope)
17239 && same_type_p (nested_name_specifier, prev_scope))
17240 {
17241 permerror (type_start_token->location,
17242 "extra qualification not allowed");
17243 nested_name_specifier = NULL_TREE;
17244 }
17245 }
17246
17247 if (scoped_enum_p)
17248 begin_scope (sk_scoped_enum, type);
17249
17250 /* Consume the opening brace. */
17251 cp_lexer_consume_token (parser->lexer);
17252
17253 if (type == error_mark_node)
17254 ; /* Nothing to add */
17255 else if (OPAQUE_ENUM_P (type)
17256 || (cxx_dialect > cxx98 && processing_specialization))
17257 {
17258 new_value_list = true;
17259 SET_OPAQUE_ENUM_P (type, false);
17260 DECL_SOURCE_LOCATION (TYPE_NAME (type)) = type_start_token->location;
17261 }
17262 else
17263 {
17264 error_at (type_start_token->location,
17265 "multiple definition of %q#T", type);
17266 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)),
17267 "previous definition here");
17268 type = error_mark_node;
17269 }
17270
17271 if (type == error_mark_node)
17272 cp_parser_skip_to_end_of_block_or_statement (parser);
17273 /* If the next token is not '}', then there are some enumerators. */
17274 else if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
17275 {
17276 if (is_anonymous && !scoped_enum_p)
17277 pedwarn (type_start_token->location, OPT_Wpedantic,
17278 "ISO C++ forbids empty anonymous enum");
17279 }
17280 else
17281 cp_parser_enumerator_list (parser, type);
17282
17283 /* Consume the final '}'. */
17284 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
17285
17286 if (scoped_enum_p)
17287 finish_scope ();
17288 timevar_pop (TV_PARSE_ENUM);
17289 }
17290 else
17291 {
17292 /* If a ';' follows, then it is an opaque-enum-specifier
17293 and additional restrictions apply. */
17294 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
17295 {
17296 if (is_anonymous)
17297 error_at (type_start_token->location,
17298 "opaque-enum-specifier without name");
17299 else if (nested_name_specifier)
17300 error_at (type_start_token->location,
17301 "opaque-enum-specifier must use a simple identifier");
17302 }
17303 }
17304
17305 /* Look for trailing attributes to apply to this enumeration, and
17306 apply them if appropriate. */
17307 if (cp_parser_allow_gnu_extensions_p (parser))
17308 {
17309 tree trailing_attr = cp_parser_gnu_attributes_opt (parser);
17310 cplus_decl_attributes (&type,
17311 trailing_attr,
17312 (int) ATTR_FLAG_TYPE_IN_PLACE);
17313 }
17314
17315 /* Finish up the enumeration. */
17316 if (type != error_mark_node)
17317 {
17318 if (new_value_list)
17319 finish_enum_value_list (type);
17320 if (is_new_type)
17321 finish_enum (type);
17322 }
17323
17324 if (nested_name_specifier)
17325 {
17326 if (CLASS_TYPE_P (nested_name_specifier))
17327 {
17328 TYPE_BEING_DEFINED (nested_name_specifier) = nested_being_defined;
17329 pop_scope (nested_name_specifier);
17330 }
17331 else if (TREE_CODE (nested_name_specifier) == NAMESPACE_DECL)
17332 {
17333 pop_nested_namespace (nested_name_specifier);
17334 }
17335 }
17336 out:
17337 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
17338 return type;
17339 }
17340
17341 /* Parse an enumerator-list. The enumerators all have the indicated
17342 TYPE.
17343
17344 enumerator-list:
17345 enumerator-definition
17346 enumerator-list , enumerator-definition */
17347
17348 static void
17349 cp_parser_enumerator_list (cp_parser* parser, tree type)
17350 {
17351 while (true)
17352 {
17353 /* Parse an enumerator-definition. */
17354 cp_parser_enumerator_definition (parser, type);
17355
17356 /* If the next token is not a ',', we've reached the end of
17357 the list. */
17358 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
17359 break;
17360 /* Otherwise, consume the `,' and keep going. */
17361 cp_lexer_consume_token (parser->lexer);
17362 /* If the next token is a `}', there is a trailing comma. */
17363 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
17364 {
17365 if (cxx_dialect < cxx11 && !in_system_header_at (input_location))
17366 pedwarn (input_location, OPT_Wpedantic,
17367 "comma at end of enumerator list");
17368 break;
17369 }
17370 }
17371 }
17372
17373 /* Parse an enumerator-definition. The enumerator has the indicated
17374 TYPE.
17375
17376 enumerator-definition:
17377 enumerator
17378 enumerator = constant-expression
17379
17380 enumerator:
17381 identifier
17382
17383 GNU Extensions:
17384
17385 enumerator-definition:
17386 enumerator attributes [opt]
17387 enumerator attributes [opt] = constant-expression */
17388
17389 static void
17390 cp_parser_enumerator_definition (cp_parser* parser, tree type)
17391 {
17392 tree identifier;
17393 tree value;
17394 location_t loc;
17395
17396 /* Save the input location because we are interested in the location
17397 of the identifier and not the location of the explicit value. */
17398 loc = cp_lexer_peek_token (parser->lexer)->location;
17399
17400 /* Look for the identifier. */
17401 identifier = cp_parser_identifier (parser);
17402 if (identifier == error_mark_node)
17403 return;
17404
17405 /* Parse any specified attributes. */
17406 tree attrs = cp_parser_attributes_opt (parser);
17407
17408 /* If the next token is an '=', then there is an explicit value. */
17409 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
17410 {
17411 /* Consume the `=' token. */
17412 cp_lexer_consume_token (parser->lexer);
17413 /* Parse the value. */
17414 value = cp_parser_constant_expression (parser);
17415 }
17416 else
17417 value = NULL_TREE;
17418
17419 /* If we are processing a template, make sure the initializer of the
17420 enumerator doesn't contain any bare template parameter pack. */
17421 if (check_for_bare_parameter_packs (value))
17422 value = error_mark_node;
17423
17424 /* Create the enumerator. */
17425 build_enumerator (identifier, value, type, attrs, loc);
17426 }
17427
17428 /* Parse a namespace-name.
17429
17430 namespace-name:
17431 original-namespace-name
17432 namespace-alias
17433
17434 Returns the NAMESPACE_DECL for the namespace. */
17435
17436 static tree
17437 cp_parser_namespace_name (cp_parser* parser)
17438 {
17439 tree identifier;
17440 tree namespace_decl;
17441
17442 cp_token *token = cp_lexer_peek_token (parser->lexer);
17443
17444 /* Get the name of the namespace. */
17445 identifier = cp_parser_identifier (parser);
17446 if (identifier == error_mark_node)
17447 return error_mark_node;
17448
17449 /* Look up the identifier in the currently active scope. Look only
17450 for namespaces, due to:
17451
17452 [basic.lookup.udir]
17453
17454 When looking up a namespace-name in a using-directive or alias
17455 definition, only namespace names are considered.
17456
17457 And:
17458
17459 [basic.lookup.qual]
17460
17461 During the lookup of a name preceding the :: scope resolution
17462 operator, object, function, and enumerator names are ignored.
17463
17464 (Note that cp_parser_qualifying_entity only calls this
17465 function if the token after the name is the scope resolution
17466 operator.) */
17467 namespace_decl = cp_parser_lookup_name (parser, identifier,
17468 none_type,
17469 /*is_template=*/false,
17470 /*is_namespace=*/true,
17471 /*check_dependency=*/true,
17472 /*ambiguous_decls=*/NULL,
17473 token->location);
17474 /* If it's not a namespace, issue an error. */
17475 if (namespace_decl == error_mark_node
17476 || TREE_CODE (namespace_decl) != NAMESPACE_DECL)
17477 {
17478 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
17479 error_at (token->location, "%qD is not a namespace-name", identifier);
17480 cp_parser_error (parser, "expected namespace-name");
17481 namespace_decl = error_mark_node;
17482 }
17483
17484 return namespace_decl;
17485 }
17486
17487 /* Parse a namespace-definition.
17488
17489 namespace-definition:
17490 named-namespace-definition
17491 unnamed-namespace-definition
17492
17493 named-namespace-definition:
17494 original-namespace-definition
17495 extension-namespace-definition
17496
17497 original-namespace-definition:
17498 namespace identifier { namespace-body }
17499
17500 extension-namespace-definition:
17501 namespace original-namespace-name { namespace-body }
17502
17503 unnamed-namespace-definition:
17504 namespace { namespace-body } */
17505
17506 static void
17507 cp_parser_namespace_definition (cp_parser* parser)
17508 {
17509 tree identifier, attribs;
17510 bool has_visibility;
17511 bool is_inline;
17512 cp_token* token;
17513 int nested_definition_count = 0;
17514
17515 cp_ensure_no_omp_declare_simd (parser);
17516 cp_ensure_no_oacc_routine (parser);
17517 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_INLINE))
17518 {
17519 maybe_warn_cpp0x (CPP0X_INLINE_NAMESPACES);
17520 is_inline = true;
17521 cp_lexer_consume_token (parser->lexer);
17522 }
17523 else
17524 is_inline = false;
17525
17526 /* Look for the `namespace' keyword. */
17527 token = cp_parser_require_keyword (parser, RID_NAMESPACE, RT_NAMESPACE);
17528
17529 /* Parse any specified attributes before the identifier. */
17530 attribs = cp_parser_attributes_opt (parser);
17531
17532 /* Get the name of the namespace. We do not attempt to distinguish
17533 between an original-namespace-definition and an
17534 extension-namespace-definition at this point. The semantic
17535 analysis routines are responsible for that. */
17536 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
17537 identifier = cp_parser_identifier (parser);
17538 else
17539 identifier = NULL_TREE;
17540
17541 /* Parse any specified attributes after the identifier. */
17542 tree post_ident_attribs = cp_parser_attributes_opt (parser);
17543 if (post_ident_attribs)
17544 {
17545 if (attribs)
17546 attribs = chainon (attribs, post_ident_attribs);
17547 else
17548 attribs = post_ident_attribs;
17549 }
17550
17551 /* Start the namespace. */
17552 bool ok = push_namespace (identifier);
17553
17554 /* Parse any nested namespace definition. */
17555 if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
17556 {
17557 if (attribs)
17558 error_at (token->location, "a nested namespace definition cannot have attributes");
17559 if (cxx_dialect < cxx1z)
17560 pedwarn (input_location, OPT_Wpedantic,
17561 "nested namespace definitions only available with "
17562 "-std=c++1z or -std=gnu++1z");
17563 if (is_inline)
17564 error_at (token->location, "a nested namespace definition cannot be inline");
17565 while (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
17566 {
17567 cp_lexer_consume_token (parser->lexer);
17568 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
17569 identifier = cp_parser_identifier (parser);
17570 else
17571 {
17572 cp_parser_error (parser, "nested identifier required");
17573 break;
17574 }
17575 ++nested_definition_count;
17576 push_namespace (identifier);
17577 }
17578 }
17579
17580 /* Look for the `{' to validate starting the namespace. */
17581 cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE);
17582
17583 /* "inline namespace" is equivalent to a stub namespace definition
17584 followed by a strong using directive. */
17585 if (is_inline && ok)
17586 {
17587 tree name_space = current_namespace;
17588 /* Set up namespace association. */
17589 DECL_NAMESPACE_ASSOCIATIONS (name_space)
17590 = tree_cons (CP_DECL_CONTEXT (name_space), NULL_TREE,
17591 DECL_NAMESPACE_ASSOCIATIONS (name_space));
17592 /* Import the contents of the inline namespace. */
17593 pop_namespace ();
17594 do_using_directive (name_space);
17595 push_namespace (identifier);
17596 }
17597
17598 has_visibility = handle_namespace_attrs (current_namespace, attribs);
17599
17600 warning (OPT_Wnamespaces, "namespace %qD entered", current_namespace);
17601
17602 /* Parse the body of the namespace. */
17603 cp_parser_namespace_body (parser);
17604
17605 if (has_visibility)
17606 pop_visibility (1);
17607
17608 /* Finish the nested namespace definitions. */
17609 while (nested_definition_count--)
17610 pop_namespace ();
17611
17612 /* Finish the namespace. */
17613 if (ok)
17614 pop_namespace ();
17615 /* Look for the final `}'. */
17616 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
17617 }
17618
17619 /* Parse a namespace-body.
17620
17621 namespace-body:
17622 declaration-seq [opt] */
17623
17624 static void
17625 cp_parser_namespace_body (cp_parser* parser)
17626 {
17627 cp_parser_declaration_seq_opt (parser);
17628 }
17629
17630 /* Parse a namespace-alias-definition.
17631
17632 namespace-alias-definition:
17633 namespace identifier = qualified-namespace-specifier ; */
17634
17635 static void
17636 cp_parser_namespace_alias_definition (cp_parser* parser)
17637 {
17638 tree identifier;
17639 tree namespace_specifier;
17640
17641 cp_token *token = cp_lexer_peek_token (parser->lexer);
17642
17643 /* Look for the `namespace' keyword. */
17644 cp_parser_require_keyword (parser, RID_NAMESPACE, RT_NAMESPACE);
17645 /* Look for the identifier. */
17646 identifier = cp_parser_identifier (parser);
17647 if (identifier == error_mark_node)
17648 return;
17649 /* Look for the `=' token. */
17650 if (!cp_parser_uncommitted_to_tentative_parse_p (parser)
17651 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
17652 {
17653 error_at (token->location, "%<namespace%> definition is not allowed here");
17654 /* Skip the definition. */
17655 cp_lexer_consume_token (parser->lexer);
17656 if (cp_parser_skip_to_closing_brace (parser))
17657 cp_lexer_consume_token (parser->lexer);
17658 return;
17659 }
17660 cp_parser_require (parser, CPP_EQ, RT_EQ);
17661 /* Look for the qualified-namespace-specifier. */
17662 namespace_specifier
17663 = cp_parser_qualified_namespace_specifier (parser);
17664 /* Look for the `;' token. */
17665 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
17666
17667 /* Register the alias in the symbol table. */
17668 do_namespace_alias (identifier, namespace_specifier);
17669 }
17670
17671 /* Parse a qualified-namespace-specifier.
17672
17673 qualified-namespace-specifier:
17674 :: [opt] nested-name-specifier [opt] namespace-name
17675
17676 Returns a NAMESPACE_DECL corresponding to the specified
17677 namespace. */
17678
17679 static tree
17680 cp_parser_qualified_namespace_specifier (cp_parser* parser)
17681 {
17682 /* Look for the optional `::'. */
17683 cp_parser_global_scope_opt (parser,
17684 /*current_scope_valid_p=*/false);
17685
17686 /* Look for the optional nested-name-specifier. */
17687 cp_parser_nested_name_specifier_opt (parser,
17688 /*typename_keyword_p=*/false,
17689 /*check_dependency_p=*/true,
17690 /*type_p=*/false,
17691 /*is_declaration=*/true);
17692
17693 return cp_parser_namespace_name (parser);
17694 }
17695
17696 /* Parse a using-declaration, or, if ACCESS_DECLARATION_P is true, an
17697 access declaration.
17698
17699 using-declaration:
17700 using typename [opt] :: [opt] nested-name-specifier unqualified-id ;
17701 using :: unqualified-id ;
17702
17703 access-declaration:
17704 qualified-id ;
17705
17706 */
17707
17708 static bool
17709 cp_parser_using_declaration (cp_parser* parser,
17710 bool access_declaration_p)
17711 {
17712 cp_token *token;
17713 bool typename_p = false;
17714 bool global_scope_p;
17715 tree decl;
17716 tree identifier;
17717 tree qscope;
17718 int oldcount = errorcount;
17719 cp_token *diag_token = NULL;
17720
17721 if (access_declaration_p)
17722 {
17723 diag_token = cp_lexer_peek_token (parser->lexer);
17724 cp_parser_parse_tentatively (parser);
17725 }
17726 else
17727 {
17728 /* Look for the `using' keyword. */
17729 cp_parser_require_keyword (parser, RID_USING, RT_USING);
17730
17731 /* Peek at the next token. */
17732 token = cp_lexer_peek_token (parser->lexer);
17733 /* See if it's `typename'. */
17734 if (token->keyword == RID_TYPENAME)
17735 {
17736 /* Remember that we've seen it. */
17737 typename_p = true;
17738 /* Consume the `typename' token. */
17739 cp_lexer_consume_token (parser->lexer);
17740 }
17741 }
17742
17743 /* Look for the optional global scope qualification. */
17744 global_scope_p
17745 = (cp_parser_global_scope_opt (parser,
17746 /*current_scope_valid_p=*/false)
17747 != NULL_TREE);
17748
17749 /* If we saw `typename', or didn't see `::', then there must be a
17750 nested-name-specifier present. */
17751 if (typename_p || !global_scope_p)
17752 {
17753 qscope = cp_parser_nested_name_specifier (parser, typename_p,
17754 /*check_dependency_p=*/true,
17755 /*type_p=*/false,
17756 /*is_declaration=*/true);
17757 if (!qscope && !cp_parser_uncommitted_to_tentative_parse_p (parser))
17758 {
17759 cp_parser_skip_to_end_of_block_or_statement (parser);
17760 return false;
17761 }
17762 }
17763 /* Otherwise, we could be in either of the two productions. In that
17764 case, treat the nested-name-specifier as optional. */
17765 else
17766 qscope = cp_parser_nested_name_specifier_opt (parser,
17767 /*typename_keyword_p=*/false,
17768 /*check_dependency_p=*/true,
17769 /*type_p=*/false,
17770 /*is_declaration=*/true);
17771 if (!qscope)
17772 qscope = global_namespace;
17773 else if (UNSCOPED_ENUM_P (qscope))
17774 qscope = CP_TYPE_CONTEXT (qscope);
17775
17776 if (access_declaration_p && cp_parser_error_occurred (parser))
17777 /* Something has already gone wrong; there's no need to parse
17778 further. Since an error has occurred, the return value of
17779 cp_parser_parse_definitely will be false, as required. */
17780 return cp_parser_parse_definitely (parser);
17781
17782 token = cp_lexer_peek_token (parser->lexer);
17783 /* Parse the unqualified-id. */
17784 identifier = cp_parser_unqualified_id (parser,
17785 /*template_keyword_p=*/false,
17786 /*check_dependency_p=*/true,
17787 /*declarator_p=*/true,
17788 /*optional_p=*/false);
17789
17790 if (access_declaration_p)
17791 {
17792 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
17793 cp_parser_simulate_error (parser);
17794 if (!cp_parser_parse_definitely (parser))
17795 return false;
17796 }
17797
17798 /* The function we call to handle a using-declaration is different
17799 depending on what scope we are in. */
17800 if (qscope == error_mark_node || identifier == error_mark_node)
17801 ;
17802 else if (!identifier_p (identifier)
17803 && TREE_CODE (identifier) != BIT_NOT_EXPR)
17804 /* [namespace.udecl]
17805
17806 A using declaration shall not name a template-id. */
17807 error_at (token->location,
17808 "a template-id may not appear in a using-declaration");
17809 else
17810 {
17811 if (at_class_scope_p ())
17812 {
17813 /* Create the USING_DECL. */
17814 decl = do_class_using_decl (parser->scope, identifier);
17815
17816 if (decl && typename_p)
17817 USING_DECL_TYPENAME_P (decl) = 1;
17818
17819 if (check_for_bare_parameter_packs (decl))
17820 {
17821 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
17822 return false;
17823 }
17824 else
17825 /* Add it to the list of members in this class. */
17826 finish_member_declaration (decl);
17827 }
17828 else
17829 {
17830 decl = cp_parser_lookup_name_simple (parser,
17831 identifier,
17832 token->location);
17833 if (decl == error_mark_node)
17834 cp_parser_name_lookup_error (parser, identifier,
17835 decl, NLE_NULL,
17836 token->location);
17837 else if (check_for_bare_parameter_packs (decl))
17838 {
17839 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
17840 return false;
17841 }
17842 else if (!at_namespace_scope_p ())
17843 do_local_using_decl (decl, qscope, identifier);
17844 else
17845 do_toplevel_using_decl (decl, qscope, identifier);
17846 }
17847 }
17848
17849 /* Look for the final `;'. */
17850 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
17851
17852 if (access_declaration_p && errorcount == oldcount)
17853 warning_at (diag_token->location, OPT_Wdeprecated,
17854 "access declarations are deprecated "
17855 "in favour of using-declarations; "
17856 "suggestion: add the %<using%> keyword");
17857
17858 return true;
17859 }
17860
17861 /* Parse an alias-declaration.
17862
17863 alias-declaration:
17864 using identifier attribute-specifier-seq [opt] = type-id */
17865
17866 static tree
17867 cp_parser_alias_declaration (cp_parser* parser)
17868 {
17869 tree id, type, decl, pushed_scope = NULL_TREE, attributes;
17870 location_t id_location;
17871 cp_declarator *declarator;
17872 cp_decl_specifier_seq decl_specs;
17873 bool member_p;
17874 const char *saved_message = NULL;
17875
17876 /* Look for the `using' keyword. */
17877 cp_token *using_token
17878 = cp_parser_require_keyword (parser, RID_USING, RT_USING);
17879 if (using_token == NULL)
17880 return error_mark_node;
17881
17882 id_location = cp_lexer_peek_token (parser->lexer)->location;
17883 id = cp_parser_identifier (parser);
17884 if (id == error_mark_node)
17885 return error_mark_node;
17886
17887 cp_token *attrs_token = cp_lexer_peek_token (parser->lexer);
17888 attributes = cp_parser_attributes_opt (parser);
17889 if (attributes == error_mark_node)
17890 return error_mark_node;
17891
17892 cp_parser_require (parser, CPP_EQ, RT_EQ);
17893
17894 if (cp_parser_error_occurred (parser))
17895 return error_mark_node;
17896
17897 cp_parser_commit_to_tentative_parse (parser);
17898
17899 /* Now we are going to parse the type-id of the declaration. */
17900
17901 /*
17902 [dcl.type]/3 says:
17903
17904 "A type-specifier-seq shall not define a class or enumeration
17905 unless it appears in the type-id of an alias-declaration (7.1.3) that
17906 is not the declaration of a template-declaration."
17907
17908 In other words, if we currently are in an alias template, the
17909 type-id should not define a type.
17910
17911 So let's set parser->type_definition_forbidden_message in that
17912 case; cp_parser_check_type_definition (called by
17913 cp_parser_class_specifier) will then emit an error if a type is
17914 defined in the type-id. */
17915 if (parser->num_template_parameter_lists)
17916 {
17917 saved_message = parser->type_definition_forbidden_message;
17918 parser->type_definition_forbidden_message =
17919 G_("types may not be defined in alias template declarations");
17920 }
17921
17922 type = cp_parser_type_id (parser);
17923
17924 /* Restore the error message if need be. */
17925 if (parser->num_template_parameter_lists)
17926 parser->type_definition_forbidden_message = saved_message;
17927
17928 if (type == error_mark_node
17929 || !cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON))
17930 {
17931 cp_parser_skip_to_end_of_block_or_statement (parser);
17932 return error_mark_node;
17933 }
17934
17935 /* A typedef-name can also be introduced by an alias-declaration. The
17936 identifier following the using keyword becomes a typedef-name. It has
17937 the same semantics as if it were introduced by the typedef
17938 specifier. In particular, it does not define a new type and it shall
17939 not appear in the type-id. */
17940
17941 clear_decl_specs (&decl_specs);
17942 decl_specs.type = type;
17943 if (attributes != NULL_TREE)
17944 {
17945 decl_specs.attributes = attributes;
17946 set_and_check_decl_spec_loc (&decl_specs,
17947 ds_attribute,
17948 attrs_token);
17949 }
17950 set_and_check_decl_spec_loc (&decl_specs,
17951 ds_typedef,
17952 using_token);
17953 set_and_check_decl_spec_loc (&decl_specs,
17954 ds_alias,
17955 using_token);
17956
17957 declarator = make_id_declarator (NULL_TREE, id, sfk_none);
17958 declarator->id_loc = id_location;
17959
17960 member_p = at_class_scope_p ();
17961 if (member_p)
17962 decl = grokfield (declarator, &decl_specs, NULL_TREE, false,
17963 NULL_TREE, attributes);
17964 else
17965 decl = start_decl (declarator, &decl_specs, 0,
17966 attributes, NULL_TREE, &pushed_scope);
17967 if (decl == error_mark_node)
17968 return decl;
17969
17970 // Attach constraints to the alias declaration.
17971 if (flag_concepts && current_template_parms)
17972 {
17973 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
17974 tree constr = build_constraints (reqs, NULL_TREE);
17975 set_constraints (decl, constr);
17976 }
17977
17978 cp_finish_decl (decl, NULL_TREE, 0, NULL_TREE, 0);
17979
17980 if (pushed_scope)
17981 pop_scope (pushed_scope);
17982
17983 /* If decl is a template, return its TEMPLATE_DECL so that it gets
17984 added into the symbol table; otherwise, return the TYPE_DECL. */
17985 if (DECL_LANG_SPECIFIC (decl)
17986 && DECL_TEMPLATE_INFO (decl)
17987 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl)))
17988 {
17989 decl = DECL_TI_TEMPLATE (decl);
17990 if (member_p)
17991 check_member_template (decl);
17992 }
17993
17994 return decl;
17995 }
17996
17997 /* Parse a using-directive.
17998
17999 using-directive:
18000 using namespace :: [opt] nested-name-specifier [opt]
18001 namespace-name ; */
18002
18003 static void
18004 cp_parser_using_directive (cp_parser* parser)
18005 {
18006 tree namespace_decl;
18007 tree attribs;
18008
18009 /* Look for the `using' keyword. */
18010 cp_parser_require_keyword (parser, RID_USING, RT_USING);
18011 /* And the `namespace' keyword. */
18012 cp_parser_require_keyword (parser, RID_NAMESPACE, RT_NAMESPACE);
18013 /* Look for the optional `::' operator. */
18014 cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/false);
18015 /* And the optional nested-name-specifier. */
18016 cp_parser_nested_name_specifier_opt (parser,
18017 /*typename_keyword_p=*/false,
18018 /*check_dependency_p=*/true,
18019 /*type_p=*/false,
18020 /*is_declaration=*/true);
18021 /* Get the namespace being used. */
18022 namespace_decl = cp_parser_namespace_name (parser);
18023 /* And any specified attributes. */
18024 attribs = cp_parser_attributes_opt (parser);
18025 /* Update the symbol table. */
18026 parse_using_directive (namespace_decl, attribs);
18027 /* Look for the final `;'. */
18028 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
18029 }
18030
18031 /* Parse an asm-definition.
18032
18033 asm-definition:
18034 asm ( string-literal ) ;
18035
18036 GNU Extension:
18037
18038 asm-definition:
18039 asm volatile [opt] ( string-literal ) ;
18040 asm volatile [opt] ( string-literal : asm-operand-list [opt] ) ;
18041 asm volatile [opt] ( string-literal : asm-operand-list [opt]
18042 : asm-operand-list [opt] ) ;
18043 asm volatile [opt] ( string-literal : asm-operand-list [opt]
18044 : asm-operand-list [opt]
18045 : asm-clobber-list [opt] ) ;
18046 asm volatile [opt] goto ( string-literal : : asm-operand-list [opt]
18047 : asm-clobber-list [opt]
18048 : asm-goto-list ) ; */
18049
18050 static void
18051 cp_parser_asm_definition (cp_parser* parser)
18052 {
18053 tree string;
18054 tree outputs = NULL_TREE;
18055 tree inputs = NULL_TREE;
18056 tree clobbers = NULL_TREE;
18057 tree labels = NULL_TREE;
18058 tree asm_stmt;
18059 bool volatile_p = false;
18060 bool extended_p = false;
18061 bool invalid_inputs_p = false;
18062 bool invalid_outputs_p = false;
18063 bool goto_p = false;
18064 required_token missing = RT_NONE;
18065
18066 /* Look for the `asm' keyword. */
18067 cp_parser_require_keyword (parser, RID_ASM, RT_ASM);
18068
18069 if (parser->in_function_body
18070 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
18071 {
18072 error ("%<asm%> in %<constexpr%> function");
18073 cp_function_chain->invalid_constexpr = true;
18074 }
18075
18076 /* See if the next token is `volatile'. */
18077 if (cp_parser_allow_gnu_extensions_p (parser)
18078 && cp_lexer_next_token_is_keyword (parser->lexer, RID_VOLATILE))
18079 {
18080 /* Remember that we saw the `volatile' keyword. */
18081 volatile_p = true;
18082 /* Consume the token. */
18083 cp_lexer_consume_token (parser->lexer);
18084 }
18085 if (cp_parser_allow_gnu_extensions_p (parser)
18086 && parser->in_function_body
18087 && cp_lexer_next_token_is_keyword (parser->lexer, RID_GOTO))
18088 {
18089 /* Remember that we saw the `goto' keyword. */
18090 goto_p = true;
18091 /* Consume the token. */
18092 cp_lexer_consume_token (parser->lexer);
18093 }
18094 /* Look for the opening `('. */
18095 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
18096 return;
18097 /* Look for the string. */
18098 string = cp_parser_string_literal (parser, false, false);
18099 if (string == error_mark_node)
18100 {
18101 cp_parser_skip_to_closing_parenthesis (parser, true, false,
18102 /*consume_paren=*/true);
18103 return;
18104 }
18105
18106 /* If we're allowing GNU extensions, check for the extended assembly
18107 syntax. Unfortunately, the `:' tokens need not be separated by
18108 a space in C, and so, for compatibility, we tolerate that here
18109 too. Doing that means that we have to treat the `::' operator as
18110 two `:' tokens. */
18111 if (cp_parser_allow_gnu_extensions_p (parser)
18112 && parser->in_function_body
18113 && (cp_lexer_next_token_is (parser->lexer, CPP_COLON)
18114 || cp_lexer_next_token_is (parser->lexer, CPP_SCOPE)))
18115 {
18116 bool inputs_p = false;
18117 bool clobbers_p = false;
18118 bool labels_p = false;
18119
18120 /* The extended syntax was used. */
18121 extended_p = true;
18122
18123 /* Look for outputs. */
18124 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
18125 {
18126 /* Consume the `:'. */
18127 cp_lexer_consume_token (parser->lexer);
18128 /* Parse the output-operands. */
18129 if (cp_lexer_next_token_is_not (parser->lexer,
18130 CPP_COLON)
18131 && cp_lexer_next_token_is_not (parser->lexer,
18132 CPP_SCOPE)
18133 && cp_lexer_next_token_is_not (parser->lexer,
18134 CPP_CLOSE_PAREN)
18135 && !goto_p)
18136 {
18137 outputs = cp_parser_asm_operand_list (parser);
18138 if (outputs == error_mark_node)
18139 invalid_outputs_p = true;
18140 }
18141 }
18142 /* If the next token is `::', there are no outputs, and the
18143 next token is the beginning of the inputs. */
18144 else if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
18145 /* The inputs are coming next. */
18146 inputs_p = true;
18147
18148 /* Look for inputs. */
18149 if (inputs_p
18150 || cp_lexer_next_token_is (parser->lexer, CPP_COLON))
18151 {
18152 /* Consume the `:' or `::'. */
18153 cp_lexer_consume_token (parser->lexer);
18154 /* Parse the output-operands. */
18155 if (cp_lexer_next_token_is_not (parser->lexer,
18156 CPP_COLON)
18157 && cp_lexer_next_token_is_not (parser->lexer,
18158 CPP_SCOPE)
18159 && cp_lexer_next_token_is_not (parser->lexer,
18160 CPP_CLOSE_PAREN))
18161 {
18162 inputs = cp_parser_asm_operand_list (parser);
18163 if (inputs == error_mark_node)
18164 invalid_inputs_p = true;
18165 }
18166 }
18167 else if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
18168 /* The clobbers are coming next. */
18169 clobbers_p = true;
18170
18171 /* Look for clobbers. */
18172 if (clobbers_p
18173 || cp_lexer_next_token_is (parser->lexer, CPP_COLON))
18174 {
18175 clobbers_p = true;
18176 /* Consume the `:' or `::'. */
18177 cp_lexer_consume_token (parser->lexer);
18178 /* Parse the clobbers. */
18179 if (cp_lexer_next_token_is_not (parser->lexer,
18180 CPP_COLON)
18181 && cp_lexer_next_token_is_not (parser->lexer,
18182 CPP_CLOSE_PAREN))
18183 clobbers = cp_parser_asm_clobber_list (parser);
18184 }
18185 else if (goto_p
18186 && cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
18187 /* The labels are coming next. */
18188 labels_p = true;
18189
18190 /* Look for labels. */
18191 if (labels_p
18192 || (goto_p && cp_lexer_next_token_is (parser->lexer, CPP_COLON)))
18193 {
18194 labels_p = true;
18195 /* Consume the `:' or `::'. */
18196 cp_lexer_consume_token (parser->lexer);
18197 /* Parse the labels. */
18198 labels = cp_parser_asm_label_list (parser);
18199 }
18200
18201 if (goto_p && !labels_p)
18202 missing = clobbers_p ? RT_COLON : RT_COLON_SCOPE;
18203 }
18204 else if (goto_p)
18205 missing = RT_COLON_SCOPE;
18206
18207 /* Look for the closing `)'. */
18208 if (!cp_parser_require (parser, missing ? CPP_COLON : CPP_CLOSE_PAREN,
18209 missing ? missing : RT_CLOSE_PAREN))
18210 cp_parser_skip_to_closing_parenthesis (parser, true, false,
18211 /*consume_paren=*/true);
18212 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
18213
18214 if (!invalid_inputs_p && !invalid_outputs_p)
18215 {
18216 /* Create the ASM_EXPR. */
18217 if (parser->in_function_body)
18218 {
18219 asm_stmt = finish_asm_stmt (volatile_p, string, outputs,
18220 inputs, clobbers, labels);
18221 /* If the extended syntax was not used, mark the ASM_EXPR. */
18222 if (!extended_p)
18223 {
18224 tree temp = asm_stmt;
18225 if (TREE_CODE (temp) == CLEANUP_POINT_EXPR)
18226 temp = TREE_OPERAND (temp, 0);
18227
18228 ASM_INPUT_P (temp) = 1;
18229 }
18230 }
18231 else
18232 symtab->finalize_toplevel_asm (string);
18233 }
18234 }
18235
18236 /* Given the type TYPE of a declaration with declarator DECLARATOR, return the
18237 type that comes from the decl-specifier-seq. */
18238
18239 static tree
18240 strip_declarator_types (tree type, cp_declarator *declarator)
18241 {
18242 for (cp_declarator *d = declarator; d;)
18243 switch (d->kind)
18244 {
18245 case cdk_id:
18246 case cdk_error:
18247 d = NULL;
18248 break;
18249
18250 default:
18251 if (TYPE_PTRMEMFUNC_P (type))
18252 type = TYPE_PTRMEMFUNC_FN_TYPE (type);
18253 type = TREE_TYPE (type);
18254 d = d->declarator;
18255 break;
18256 }
18257
18258 return type;
18259 }
18260
18261 /* Declarators [gram.dcl.decl] */
18262
18263 /* Parse an init-declarator.
18264
18265 init-declarator:
18266 declarator initializer [opt]
18267
18268 GNU Extension:
18269
18270 init-declarator:
18271 declarator asm-specification [opt] attributes [opt] initializer [opt]
18272
18273 function-definition:
18274 decl-specifier-seq [opt] declarator ctor-initializer [opt]
18275 function-body
18276 decl-specifier-seq [opt] declarator function-try-block
18277
18278 GNU Extension:
18279
18280 function-definition:
18281 __extension__ function-definition
18282
18283 TM Extension:
18284
18285 function-definition:
18286 decl-specifier-seq [opt] declarator function-transaction-block
18287
18288 The DECL_SPECIFIERS apply to this declarator. Returns a
18289 representation of the entity declared. If MEMBER_P is TRUE, then
18290 this declarator appears in a class scope. The new DECL created by
18291 this declarator is returned.
18292
18293 The CHECKS are access checks that should be performed once we know
18294 what entity is being declared (and, therefore, what classes have
18295 befriended it).
18296
18297 If FUNCTION_DEFINITION_ALLOWED_P then we handle the declarator and
18298 for a function-definition here as well. If the declarator is a
18299 declarator for a function-definition, *FUNCTION_DEFINITION_P will
18300 be TRUE upon return. By that point, the function-definition will
18301 have been completely parsed.
18302
18303 FUNCTION_DEFINITION_P may be NULL if FUNCTION_DEFINITION_ALLOWED_P
18304 is FALSE.
18305
18306 If MAYBE_RANGE_FOR_DECL is not NULL, the pointed tree will be set to the
18307 parsed declaration if it is an uninitialized single declarator not followed
18308 by a `;', or to error_mark_node otherwise. Either way, the trailing `;',
18309 if present, will not be consumed. If returned, this declarator will be
18310 created with SD_INITIALIZED but will not call cp_finish_decl.
18311
18312 If INIT_LOC is not NULL, and *INIT_LOC is equal to UNKNOWN_LOCATION,
18313 and there is an initializer, the pointed location_t is set to the
18314 location of the '=' or `(', or '{' in C++11 token introducing the
18315 initializer. */
18316
18317 static tree
18318 cp_parser_init_declarator (cp_parser* parser,
18319 cp_decl_specifier_seq *decl_specifiers,
18320 vec<deferred_access_check, va_gc> *checks,
18321 bool function_definition_allowed_p,
18322 bool member_p,
18323 int declares_class_or_enum,
18324 bool* function_definition_p,
18325 tree* maybe_range_for_decl,
18326 location_t* init_loc,
18327 tree* auto_result)
18328 {
18329 cp_token *token = NULL, *asm_spec_start_token = NULL,
18330 *attributes_start_token = NULL;
18331 cp_declarator *declarator;
18332 tree prefix_attributes;
18333 tree attributes = NULL;
18334 tree asm_specification;
18335 tree initializer;
18336 tree decl = NULL_TREE;
18337 tree scope;
18338 int is_initialized;
18339 /* Only valid if IS_INITIALIZED is true. In that case, CPP_EQ if
18340 initialized with "= ..", CPP_OPEN_PAREN if initialized with
18341 "(...)". */
18342 enum cpp_ttype initialization_kind;
18343 bool is_direct_init = false;
18344 bool is_non_constant_init;
18345 int ctor_dtor_or_conv_p;
18346 bool friend_p = cp_parser_friend_p (decl_specifiers);
18347 tree pushed_scope = NULL_TREE;
18348 bool range_for_decl_p = false;
18349 bool saved_default_arg_ok_p = parser->default_arg_ok_p;
18350 location_t tmp_init_loc = UNKNOWN_LOCATION;
18351
18352 /* Gather the attributes that were provided with the
18353 decl-specifiers. */
18354 prefix_attributes = decl_specifiers->attributes;
18355
18356 /* Assume that this is not the declarator for a function
18357 definition. */
18358 if (function_definition_p)
18359 *function_definition_p = false;
18360
18361 /* Default arguments are only permitted for function parameters. */
18362 if (decl_spec_seq_has_spec_p (decl_specifiers, ds_typedef))
18363 parser->default_arg_ok_p = false;
18364
18365 /* Defer access checks while parsing the declarator; we cannot know
18366 what names are accessible until we know what is being
18367 declared. */
18368 resume_deferring_access_checks ();
18369
18370 /* Parse the declarator. */
18371 token = cp_lexer_peek_token (parser->lexer);
18372 declarator
18373 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
18374 &ctor_dtor_or_conv_p,
18375 /*parenthesized_p=*/NULL,
18376 member_p, friend_p);
18377 /* Gather up the deferred checks. */
18378 stop_deferring_access_checks ();
18379
18380 parser->default_arg_ok_p = saved_default_arg_ok_p;
18381
18382 /* If the DECLARATOR was erroneous, there's no need to go
18383 further. */
18384 if (declarator == cp_error_declarator)
18385 return error_mark_node;
18386
18387 /* Check that the number of template-parameter-lists is OK. */
18388 if (!cp_parser_check_declarator_template_parameters (parser, declarator,
18389 token->location))
18390 return error_mark_node;
18391
18392 if (declares_class_or_enum & 2)
18393 cp_parser_check_for_definition_in_return_type (declarator,
18394 decl_specifiers->type,
18395 decl_specifiers->locations[ds_type_spec]);
18396
18397 /* Figure out what scope the entity declared by the DECLARATOR is
18398 located in. `grokdeclarator' sometimes changes the scope, so
18399 we compute it now. */
18400 scope = get_scope_of_declarator (declarator);
18401
18402 /* Perform any lookups in the declared type which were thought to be
18403 dependent, but are not in the scope of the declarator. */
18404 decl_specifiers->type
18405 = maybe_update_decl_type (decl_specifiers->type, scope);
18406
18407 /* If we're allowing GNU extensions, look for an
18408 asm-specification. */
18409 if (cp_parser_allow_gnu_extensions_p (parser))
18410 {
18411 /* Look for an asm-specification. */
18412 asm_spec_start_token = cp_lexer_peek_token (parser->lexer);
18413 asm_specification = cp_parser_asm_specification_opt (parser);
18414 }
18415 else
18416 asm_specification = NULL_TREE;
18417
18418 /* Look for attributes. */
18419 attributes_start_token = cp_lexer_peek_token (parser->lexer);
18420 attributes = cp_parser_attributes_opt (parser);
18421
18422 /* Peek at the next token. */
18423 token = cp_lexer_peek_token (parser->lexer);
18424
18425 bool bogus_implicit_tmpl = false;
18426
18427 if (function_declarator_p (declarator))
18428 {
18429 /* Check to see if the token indicates the start of a
18430 function-definition. */
18431 if (cp_parser_token_starts_function_definition_p (token))
18432 {
18433 if (!function_definition_allowed_p)
18434 {
18435 /* If a function-definition should not appear here, issue an
18436 error message. */
18437 cp_parser_error (parser,
18438 "a function-definition is not allowed here");
18439 return error_mark_node;
18440 }
18441
18442 location_t func_brace_location
18443 = cp_lexer_peek_token (parser->lexer)->location;
18444
18445 /* Neither attributes nor an asm-specification are allowed
18446 on a function-definition. */
18447 if (asm_specification)
18448 error_at (asm_spec_start_token->location,
18449 "an asm-specification is not allowed "
18450 "on a function-definition");
18451 if (attributes)
18452 error_at (attributes_start_token->location,
18453 "attributes are not allowed "
18454 "on a function-definition");
18455 /* This is a function-definition. */
18456 *function_definition_p = true;
18457
18458 /* Parse the function definition. */
18459 if (member_p)
18460 decl = cp_parser_save_member_function_body (parser,
18461 decl_specifiers,
18462 declarator,
18463 prefix_attributes);
18464 else
18465 decl =
18466 (cp_parser_function_definition_from_specifiers_and_declarator
18467 (parser, decl_specifiers, prefix_attributes, declarator));
18468
18469 if (decl != error_mark_node && DECL_STRUCT_FUNCTION (decl))
18470 {
18471 /* This is where the prologue starts... */
18472 DECL_STRUCT_FUNCTION (decl)->function_start_locus
18473 = func_brace_location;
18474 }
18475
18476 return decl;
18477 }
18478 }
18479 else if (parser->fully_implicit_function_template_p)
18480 {
18481 /* A non-template declaration involving a function parameter list
18482 containing an implicit template parameter will be made into a
18483 template. If the resulting declaration is not going to be an
18484 actual function then finish the template scope here to prevent it.
18485 An error message will be issued once we have a decl to talk about.
18486
18487 FIXME probably we should do type deduction rather than create an
18488 implicit template, but the standard currently doesn't allow it. */
18489 bogus_implicit_tmpl = true;
18490 finish_fully_implicit_template (parser, NULL_TREE);
18491 }
18492
18493 /* [dcl.dcl]
18494
18495 Only in function declarations for constructors, destructors, and
18496 type conversions can the decl-specifier-seq be omitted.
18497
18498 We explicitly postpone this check past the point where we handle
18499 function-definitions because we tolerate function-definitions
18500 that are missing their return types in some modes. */
18501 if (!decl_specifiers->any_specifiers_p && ctor_dtor_or_conv_p <= 0)
18502 {
18503 cp_parser_error (parser,
18504 "expected constructor, destructor, or type conversion");
18505 return error_mark_node;
18506 }
18507
18508 /* An `=' or an `(', or an '{' in C++0x, indicates an initializer. */
18509 if (token->type == CPP_EQ
18510 || token->type == CPP_OPEN_PAREN
18511 || token->type == CPP_OPEN_BRACE)
18512 {
18513 is_initialized = SD_INITIALIZED;
18514 initialization_kind = token->type;
18515 if (maybe_range_for_decl)
18516 *maybe_range_for_decl = error_mark_node;
18517 tmp_init_loc = token->location;
18518 if (init_loc && *init_loc == UNKNOWN_LOCATION)
18519 *init_loc = tmp_init_loc;
18520
18521 if (token->type == CPP_EQ
18522 && function_declarator_p (declarator))
18523 {
18524 cp_token *t2 = cp_lexer_peek_nth_token (parser->lexer, 2);
18525 if (t2->keyword == RID_DEFAULT)
18526 is_initialized = SD_DEFAULTED;
18527 else if (t2->keyword == RID_DELETE)
18528 is_initialized = SD_DELETED;
18529 }
18530 }
18531 else
18532 {
18533 /* If the init-declarator isn't initialized and isn't followed by a
18534 `,' or `;', it's not a valid init-declarator. */
18535 if (token->type != CPP_COMMA
18536 && token->type != CPP_SEMICOLON)
18537 {
18538 if (maybe_range_for_decl && *maybe_range_for_decl != error_mark_node)
18539 range_for_decl_p = true;
18540 else
18541 {
18542 if (!maybe_range_for_decl)
18543 cp_parser_error (parser, "expected initializer");
18544 return error_mark_node;
18545 }
18546 }
18547 is_initialized = SD_UNINITIALIZED;
18548 initialization_kind = CPP_EOF;
18549 }
18550
18551 /* Because start_decl has side-effects, we should only call it if we
18552 know we're going ahead. By this point, we know that we cannot
18553 possibly be looking at any other construct. */
18554 cp_parser_commit_to_tentative_parse (parser);
18555
18556 /* Enter the newly declared entry in the symbol table. If we're
18557 processing a declaration in a class-specifier, we wait until
18558 after processing the initializer. */
18559 if (!member_p)
18560 {
18561 if (parser->in_unbraced_linkage_specification_p)
18562 decl_specifiers->storage_class = sc_extern;
18563 decl = start_decl (declarator, decl_specifiers,
18564 range_for_decl_p? SD_INITIALIZED : is_initialized,
18565 attributes, prefix_attributes, &pushed_scope);
18566 cp_finalize_omp_declare_simd (parser, decl);
18567 cp_finalize_oacc_routine (parser, decl, false);
18568 /* Adjust location of decl if declarator->id_loc is more appropriate:
18569 set, and decl wasn't merged with another decl, in which case its
18570 location would be different from input_location, and more accurate. */
18571 if (DECL_P (decl)
18572 && declarator->id_loc != UNKNOWN_LOCATION
18573 && DECL_SOURCE_LOCATION (decl) == input_location)
18574 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
18575 }
18576 else if (scope)
18577 /* Enter the SCOPE. That way unqualified names appearing in the
18578 initializer will be looked up in SCOPE. */
18579 pushed_scope = push_scope (scope);
18580
18581 /* Perform deferred access control checks, now that we know in which
18582 SCOPE the declared entity resides. */
18583 if (!member_p && decl)
18584 {
18585 tree saved_current_function_decl = NULL_TREE;
18586
18587 /* If the entity being declared is a function, pretend that we
18588 are in its scope. If it is a `friend', it may have access to
18589 things that would not otherwise be accessible. */
18590 if (TREE_CODE (decl) == FUNCTION_DECL)
18591 {
18592 saved_current_function_decl = current_function_decl;
18593 current_function_decl = decl;
18594 }
18595
18596 /* Perform access checks for template parameters. */
18597 cp_parser_perform_template_parameter_access_checks (checks);
18598
18599 /* Perform the access control checks for the declarator and the
18600 decl-specifiers. */
18601 perform_deferred_access_checks (tf_warning_or_error);
18602
18603 /* Restore the saved value. */
18604 if (TREE_CODE (decl) == FUNCTION_DECL)
18605 current_function_decl = saved_current_function_decl;
18606 }
18607
18608 /* Parse the initializer. */
18609 initializer = NULL_TREE;
18610 is_direct_init = false;
18611 is_non_constant_init = true;
18612 if (is_initialized)
18613 {
18614 if (function_declarator_p (declarator))
18615 {
18616 if (initialization_kind == CPP_EQ)
18617 initializer = cp_parser_pure_specifier (parser);
18618 else
18619 {
18620 /* If the declaration was erroneous, we don't really
18621 know what the user intended, so just silently
18622 consume the initializer. */
18623 if (decl != error_mark_node)
18624 error_at (tmp_init_loc, "initializer provided for function");
18625 cp_parser_skip_to_closing_parenthesis (parser,
18626 /*recovering=*/true,
18627 /*or_comma=*/false,
18628 /*consume_paren=*/true);
18629 }
18630 }
18631 else
18632 {
18633 /* We want to record the extra mangling scope for in-class
18634 initializers of class members and initializers of static data
18635 member templates. The former involves deferring
18636 parsing of the initializer until end of class as with default
18637 arguments. So right here we only handle the latter. */
18638 if (!member_p && processing_template_decl)
18639 start_lambda_scope (decl);
18640 initializer = cp_parser_initializer (parser,
18641 &is_direct_init,
18642 &is_non_constant_init);
18643 if (!member_p && processing_template_decl)
18644 finish_lambda_scope ();
18645 if (initializer == error_mark_node)
18646 cp_parser_skip_to_end_of_statement (parser);
18647 }
18648 }
18649
18650 /* The old parser allows attributes to appear after a parenthesized
18651 initializer. Mark Mitchell proposed removing this functionality
18652 on the GCC mailing lists on 2002-08-13. This parser accepts the
18653 attributes -- but ignores them. */
18654 if (cp_parser_allow_gnu_extensions_p (parser)
18655 && initialization_kind == CPP_OPEN_PAREN)
18656 if (cp_parser_attributes_opt (parser))
18657 warning (OPT_Wattributes,
18658 "attributes after parenthesized initializer ignored");
18659
18660 /* And now complain about a non-function implicit template. */
18661 if (bogus_implicit_tmpl && decl != error_mark_node)
18662 error_at (DECL_SOURCE_LOCATION (decl),
18663 "non-function %qD declared as implicit template", decl);
18664
18665 /* For an in-class declaration, use `grokfield' to create the
18666 declaration. */
18667 if (member_p)
18668 {
18669 if (pushed_scope)
18670 {
18671 pop_scope (pushed_scope);
18672 pushed_scope = NULL_TREE;
18673 }
18674 decl = grokfield (declarator, decl_specifiers,
18675 initializer, !is_non_constant_init,
18676 /*asmspec=*/NULL_TREE,
18677 chainon (attributes, prefix_attributes));
18678 if (decl && TREE_CODE (decl) == FUNCTION_DECL)
18679 cp_parser_save_default_args (parser, decl);
18680 cp_finalize_omp_declare_simd (parser, decl);
18681 cp_finalize_oacc_routine (parser, decl, false);
18682 }
18683
18684 /* Finish processing the declaration. But, skip member
18685 declarations. */
18686 if (!member_p && decl && decl != error_mark_node && !range_for_decl_p)
18687 {
18688 cp_finish_decl (decl,
18689 initializer, !is_non_constant_init,
18690 asm_specification,
18691 /* If the initializer is in parentheses, then this is
18692 a direct-initialization, which means that an
18693 `explicit' constructor is OK. Otherwise, an
18694 `explicit' constructor cannot be used. */
18695 ((is_direct_init || !is_initialized)
18696 ? LOOKUP_NORMAL : LOOKUP_IMPLICIT));
18697 }
18698 else if ((cxx_dialect != cxx98) && friend_p
18699 && decl && TREE_CODE (decl) == FUNCTION_DECL)
18700 /* Core issue #226 (C++0x only): A default template-argument
18701 shall not be specified in a friend class template
18702 declaration. */
18703 check_default_tmpl_args (decl, current_template_parms, /*is_primary=*/true,
18704 /*is_partial=*/false, /*is_friend_decl=*/1);
18705
18706 if (!friend_p && pushed_scope)
18707 pop_scope (pushed_scope);
18708
18709 if (function_declarator_p (declarator)
18710 && parser->fully_implicit_function_template_p)
18711 {
18712 if (member_p)
18713 decl = finish_fully_implicit_template (parser, decl);
18714 else
18715 finish_fully_implicit_template (parser, /*member_decl_opt=*/0);
18716 }
18717
18718 if (auto_result && is_initialized && decl_specifiers->type
18719 && type_uses_auto (decl_specifiers->type))
18720 *auto_result = strip_declarator_types (TREE_TYPE (decl), declarator);
18721
18722 return decl;
18723 }
18724
18725 /* Parse a declarator.
18726
18727 declarator:
18728 direct-declarator
18729 ptr-operator declarator
18730
18731 abstract-declarator:
18732 ptr-operator abstract-declarator [opt]
18733 direct-abstract-declarator
18734
18735 GNU Extensions:
18736
18737 declarator:
18738 attributes [opt] direct-declarator
18739 attributes [opt] ptr-operator declarator
18740
18741 abstract-declarator:
18742 attributes [opt] ptr-operator abstract-declarator [opt]
18743 attributes [opt] direct-abstract-declarator
18744
18745 If CTOR_DTOR_OR_CONV_P is not NULL, *CTOR_DTOR_OR_CONV_P is used to
18746 detect constructor, destructor or conversion operators. It is set
18747 to -1 if the declarator is a name, and +1 if it is a
18748 function. Otherwise it is set to zero. Usually you just want to
18749 test for >0, but internally the negative value is used.
18750
18751 (The reason for CTOR_DTOR_OR_CONV_P is that a declaration must have
18752 a decl-specifier-seq unless it declares a constructor, destructor,
18753 or conversion. It might seem that we could check this condition in
18754 semantic analysis, rather than parsing, but that makes it difficult
18755 to handle something like `f()'. We want to notice that there are
18756 no decl-specifiers, and therefore realize that this is an
18757 expression, not a declaration.)
18758
18759 If PARENTHESIZED_P is non-NULL, *PARENTHESIZED_P is set to true iff
18760 the declarator is a direct-declarator of the form "(...)".
18761
18762 MEMBER_P is true iff this declarator is a member-declarator.
18763
18764 FRIEND_P is true iff this declarator is a friend. */
18765
18766 static cp_declarator *
18767 cp_parser_declarator (cp_parser* parser,
18768 cp_parser_declarator_kind dcl_kind,
18769 int* ctor_dtor_or_conv_p,
18770 bool* parenthesized_p,
18771 bool member_p, bool friend_p)
18772 {
18773 cp_declarator *declarator;
18774 enum tree_code code;
18775 cp_cv_quals cv_quals;
18776 tree class_type;
18777 tree gnu_attributes = NULL_TREE, std_attributes = NULL_TREE;
18778
18779 /* Assume this is not a constructor, destructor, or type-conversion
18780 operator. */
18781 if (ctor_dtor_or_conv_p)
18782 *ctor_dtor_or_conv_p = 0;
18783
18784 if (cp_parser_allow_gnu_extensions_p (parser))
18785 gnu_attributes = cp_parser_gnu_attributes_opt (parser);
18786
18787 /* Check for the ptr-operator production. */
18788 cp_parser_parse_tentatively (parser);
18789 /* Parse the ptr-operator. */
18790 code = cp_parser_ptr_operator (parser,
18791 &class_type,
18792 &cv_quals,
18793 &std_attributes);
18794
18795 /* If that worked, then we have a ptr-operator. */
18796 if (cp_parser_parse_definitely (parser))
18797 {
18798 /* If a ptr-operator was found, then this declarator was not
18799 parenthesized. */
18800 if (parenthesized_p)
18801 *parenthesized_p = true;
18802 /* The dependent declarator is optional if we are parsing an
18803 abstract-declarator. */
18804 if (dcl_kind != CP_PARSER_DECLARATOR_NAMED)
18805 cp_parser_parse_tentatively (parser);
18806
18807 /* Parse the dependent declarator. */
18808 declarator = cp_parser_declarator (parser, dcl_kind,
18809 /*ctor_dtor_or_conv_p=*/NULL,
18810 /*parenthesized_p=*/NULL,
18811 /*member_p=*/false,
18812 friend_p);
18813
18814 /* If we are parsing an abstract-declarator, we must handle the
18815 case where the dependent declarator is absent. */
18816 if (dcl_kind != CP_PARSER_DECLARATOR_NAMED
18817 && !cp_parser_parse_definitely (parser))
18818 declarator = NULL;
18819
18820 declarator = cp_parser_make_indirect_declarator
18821 (code, class_type, cv_quals, declarator, std_attributes);
18822 }
18823 /* Everything else is a direct-declarator. */
18824 else
18825 {
18826 if (parenthesized_p)
18827 *parenthesized_p = cp_lexer_next_token_is (parser->lexer,
18828 CPP_OPEN_PAREN);
18829 declarator = cp_parser_direct_declarator (parser, dcl_kind,
18830 ctor_dtor_or_conv_p,
18831 member_p, friend_p);
18832 }
18833
18834 if (gnu_attributes && declarator && declarator != cp_error_declarator)
18835 declarator->attributes = gnu_attributes;
18836 return declarator;
18837 }
18838
18839 /* Parse a direct-declarator or direct-abstract-declarator.
18840
18841 direct-declarator:
18842 declarator-id
18843 direct-declarator ( parameter-declaration-clause )
18844 cv-qualifier-seq [opt]
18845 ref-qualifier [opt]
18846 exception-specification [opt]
18847 direct-declarator [ constant-expression [opt] ]
18848 ( declarator )
18849
18850 direct-abstract-declarator:
18851 direct-abstract-declarator [opt]
18852 ( parameter-declaration-clause )
18853 cv-qualifier-seq [opt]
18854 ref-qualifier [opt]
18855 exception-specification [opt]
18856 direct-abstract-declarator [opt] [ constant-expression [opt] ]
18857 ( abstract-declarator )
18858
18859 Returns a representation of the declarator. DCL_KIND is
18860 CP_PARSER_DECLARATOR_ABSTRACT, if we are parsing a
18861 direct-abstract-declarator. It is CP_PARSER_DECLARATOR_NAMED, if
18862 we are parsing a direct-declarator. It is
18863 CP_PARSER_DECLARATOR_EITHER, if we can accept either - in the case
18864 of ambiguity we prefer an abstract declarator, as per
18865 [dcl.ambig.res]. CTOR_DTOR_OR_CONV_P, MEMBER_P, and FRIEND_P are
18866 as for cp_parser_declarator. */
18867
18868 static cp_declarator *
18869 cp_parser_direct_declarator (cp_parser* parser,
18870 cp_parser_declarator_kind dcl_kind,
18871 int* ctor_dtor_or_conv_p,
18872 bool member_p, bool friend_p)
18873 {
18874 cp_token *token;
18875 cp_declarator *declarator = NULL;
18876 tree scope = NULL_TREE;
18877 bool saved_default_arg_ok_p = parser->default_arg_ok_p;
18878 bool saved_in_declarator_p = parser->in_declarator_p;
18879 bool first = true;
18880 tree pushed_scope = NULL_TREE;
18881
18882 while (true)
18883 {
18884 /* Peek at the next token. */
18885 token = cp_lexer_peek_token (parser->lexer);
18886 if (token->type == CPP_OPEN_PAREN)
18887 {
18888 /* This is either a parameter-declaration-clause, or a
18889 parenthesized declarator. When we know we are parsing a
18890 named declarator, it must be a parenthesized declarator
18891 if FIRST is true. For instance, `(int)' is a
18892 parameter-declaration-clause, with an omitted
18893 direct-abstract-declarator. But `((*))', is a
18894 parenthesized abstract declarator. Finally, when T is a
18895 template parameter `(T)' is a
18896 parameter-declaration-clause, and not a parenthesized
18897 named declarator.
18898
18899 We first try and parse a parameter-declaration-clause,
18900 and then try a nested declarator (if FIRST is true).
18901
18902 It is not an error for it not to be a
18903 parameter-declaration-clause, even when FIRST is
18904 false. Consider,
18905
18906 int i (int);
18907 int i (3);
18908
18909 The first is the declaration of a function while the
18910 second is the definition of a variable, including its
18911 initializer.
18912
18913 Having seen only the parenthesis, we cannot know which of
18914 these two alternatives should be selected. Even more
18915 complex are examples like:
18916
18917 int i (int (a));
18918 int i (int (3));
18919
18920 The former is a function-declaration; the latter is a
18921 variable initialization.
18922
18923 Thus again, we try a parameter-declaration-clause, and if
18924 that fails, we back out and return. */
18925
18926 if (!first || dcl_kind != CP_PARSER_DECLARATOR_NAMED)
18927 {
18928 tree params;
18929 bool is_declarator = false;
18930
18931 /* In a member-declarator, the only valid interpretation
18932 of a parenthesis is the start of a
18933 parameter-declaration-clause. (It is invalid to
18934 initialize a static data member with a parenthesized
18935 initializer; only the "=" form of initialization is
18936 permitted.) */
18937 if (!member_p)
18938 cp_parser_parse_tentatively (parser);
18939
18940 /* Consume the `('. */
18941 cp_lexer_consume_token (parser->lexer);
18942 if (first)
18943 {
18944 /* If this is going to be an abstract declarator, we're
18945 in a declarator and we can't have default args. */
18946 parser->default_arg_ok_p = false;
18947 parser->in_declarator_p = true;
18948 }
18949
18950 begin_scope (sk_function_parms, NULL_TREE);
18951
18952 /* Parse the parameter-declaration-clause. */
18953 params = cp_parser_parameter_declaration_clause (parser);
18954
18955 /* Consume the `)'. */
18956 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
18957
18958 /* If all went well, parse the cv-qualifier-seq,
18959 ref-qualifier and the exception-specification. */
18960 if (member_p || cp_parser_parse_definitely (parser))
18961 {
18962 cp_cv_quals cv_quals;
18963 cp_virt_specifiers virt_specifiers;
18964 cp_ref_qualifier ref_qual;
18965 tree exception_specification;
18966 tree late_return;
18967 tree attrs;
18968 bool memfn = (member_p || (pushed_scope
18969 && CLASS_TYPE_P (pushed_scope)));
18970
18971 is_declarator = true;
18972
18973 if (ctor_dtor_or_conv_p)
18974 *ctor_dtor_or_conv_p = *ctor_dtor_or_conv_p < 0;
18975 first = false;
18976
18977 /* Parse the cv-qualifier-seq. */
18978 cv_quals = cp_parser_cv_qualifier_seq_opt (parser);
18979 /* Parse the ref-qualifier. */
18980 ref_qual = cp_parser_ref_qualifier_opt (parser);
18981 /* Parse the tx-qualifier. */
18982 tree tx_qual = cp_parser_tx_qualifier_opt (parser);
18983 /* And the exception-specification. */
18984 exception_specification
18985 = cp_parser_exception_specification_opt (parser);
18986
18987 attrs = cp_parser_std_attribute_spec_seq (parser);
18988
18989 /* In here, we handle cases where attribute is used after
18990 the function declaration. For example:
18991 void func (int x) __attribute__((vector(..))); */
18992 tree gnu_attrs = NULL_TREE;
18993 if (flag_cilkplus
18994 && cp_next_tokens_can_be_gnu_attribute_p (parser))
18995 {
18996 cp_parser_parse_tentatively (parser);
18997 tree attr = cp_parser_gnu_attributes_opt (parser);
18998 if (cp_lexer_next_token_is_not (parser->lexer,
18999 CPP_SEMICOLON)
19000 && cp_lexer_next_token_is_not (parser->lexer,
19001 CPP_OPEN_BRACE))
19002 cp_parser_abort_tentative_parse (parser);
19003 else if (!cp_parser_parse_definitely (parser))
19004 ;
19005 else
19006 gnu_attrs = attr;
19007 }
19008 tree requires_clause = NULL_TREE;
19009 late_return = (cp_parser_late_return_type_opt
19010 (parser, declarator, requires_clause,
19011 memfn ? cv_quals : -1));
19012
19013 /* Parse the virt-specifier-seq. */
19014 virt_specifiers = cp_parser_virt_specifier_seq_opt (parser);
19015
19016 /* Create the function-declarator. */
19017 declarator = make_call_declarator (declarator,
19018 params,
19019 cv_quals,
19020 virt_specifiers,
19021 ref_qual,
19022 tx_qual,
19023 exception_specification,
19024 late_return,
19025 requires_clause);
19026 declarator->std_attributes = attrs;
19027 declarator->attributes = gnu_attrs;
19028 /* Any subsequent parameter lists are to do with
19029 return type, so are not those of the declared
19030 function. */
19031 parser->default_arg_ok_p = false;
19032 }
19033
19034 /* Remove the function parms from scope. */
19035 pop_bindings_and_leave_scope ();
19036
19037 if (is_declarator)
19038 /* Repeat the main loop. */
19039 continue;
19040 }
19041
19042 /* If this is the first, we can try a parenthesized
19043 declarator. */
19044 if (first)
19045 {
19046 bool saved_in_type_id_in_expr_p;
19047
19048 parser->default_arg_ok_p = saved_default_arg_ok_p;
19049 parser->in_declarator_p = saved_in_declarator_p;
19050
19051 /* Consume the `('. */
19052 cp_lexer_consume_token (parser->lexer);
19053 /* Parse the nested declarator. */
19054 saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
19055 parser->in_type_id_in_expr_p = true;
19056 declarator
19057 = cp_parser_declarator (parser, dcl_kind, ctor_dtor_or_conv_p,
19058 /*parenthesized_p=*/NULL,
19059 member_p, friend_p);
19060 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
19061 first = false;
19062 /* Expect a `)'. */
19063 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
19064 declarator = cp_error_declarator;
19065 if (declarator == cp_error_declarator)
19066 break;
19067
19068 goto handle_declarator;
19069 }
19070 /* Otherwise, we must be done. */
19071 else
19072 break;
19073 }
19074 else if ((!first || dcl_kind != CP_PARSER_DECLARATOR_NAMED)
19075 && token->type == CPP_OPEN_SQUARE
19076 && !cp_next_tokens_can_be_attribute_p (parser))
19077 {
19078 /* Parse an array-declarator. */
19079 tree bounds, attrs;
19080
19081 if (ctor_dtor_or_conv_p)
19082 *ctor_dtor_or_conv_p = 0;
19083
19084 first = false;
19085 parser->default_arg_ok_p = false;
19086 parser->in_declarator_p = true;
19087 /* Consume the `['. */
19088 cp_lexer_consume_token (parser->lexer);
19089 /* Peek at the next token. */
19090 token = cp_lexer_peek_token (parser->lexer);
19091 /* If the next token is `]', then there is no
19092 constant-expression. */
19093 if (token->type != CPP_CLOSE_SQUARE)
19094 {
19095 bool non_constant_p;
19096 bounds
19097 = cp_parser_constant_expression (parser,
19098 /*allow_non_constant=*/true,
19099 &non_constant_p);
19100 if (!non_constant_p)
19101 /* OK */;
19102 else if (error_operand_p (bounds))
19103 /* Already gave an error. */;
19104 else if (!parser->in_function_body
19105 || current_binding_level->kind == sk_function_parms)
19106 {
19107 /* Normally, the array bound must be an integral constant
19108 expression. However, as an extension, we allow VLAs
19109 in function scopes as long as they aren't part of a
19110 parameter declaration. */
19111 cp_parser_error (parser,
19112 "array bound is not an integer constant");
19113 bounds = error_mark_node;
19114 }
19115 else if (processing_template_decl
19116 && !type_dependent_expression_p (bounds))
19117 {
19118 /* Remember this wasn't a constant-expression. */
19119 bounds = build_nop (TREE_TYPE (bounds), bounds);
19120 TREE_SIDE_EFFECTS (bounds) = 1;
19121 }
19122 }
19123 else
19124 bounds = NULL_TREE;
19125 /* Look for the closing `]'. */
19126 if (!cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE))
19127 {
19128 declarator = cp_error_declarator;
19129 break;
19130 }
19131
19132 attrs = cp_parser_std_attribute_spec_seq (parser);
19133 declarator = make_array_declarator (declarator, bounds);
19134 declarator->std_attributes = attrs;
19135 }
19136 else if (first && dcl_kind != CP_PARSER_DECLARATOR_ABSTRACT)
19137 {
19138 {
19139 tree qualifying_scope;
19140 tree unqualified_name;
19141 tree attrs;
19142 special_function_kind sfk;
19143 bool abstract_ok;
19144 bool pack_expansion_p = false;
19145 cp_token *declarator_id_start_token;
19146
19147 /* Parse a declarator-id */
19148 abstract_ok = (dcl_kind == CP_PARSER_DECLARATOR_EITHER);
19149 if (abstract_ok)
19150 {
19151 cp_parser_parse_tentatively (parser);
19152
19153 /* If we see an ellipsis, we should be looking at a
19154 parameter pack. */
19155 if (token->type == CPP_ELLIPSIS)
19156 {
19157 /* Consume the `...' */
19158 cp_lexer_consume_token (parser->lexer);
19159
19160 pack_expansion_p = true;
19161 }
19162 }
19163
19164 declarator_id_start_token = cp_lexer_peek_token (parser->lexer);
19165 unqualified_name
19166 = cp_parser_declarator_id (parser, /*optional_p=*/abstract_ok);
19167 qualifying_scope = parser->scope;
19168 if (abstract_ok)
19169 {
19170 bool okay = false;
19171
19172 if (!unqualified_name && pack_expansion_p)
19173 {
19174 /* Check whether an error occurred. */
19175 okay = !cp_parser_error_occurred (parser);
19176
19177 /* We already consumed the ellipsis to mark a
19178 parameter pack, but we have no way to report it,
19179 so abort the tentative parse. We will be exiting
19180 immediately anyway. */
19181 cp_parser_abort_tentative_parse (parser);
19182 }
19183 else
19184 okay = cp_parser_parse_definitely (parser);
19185
19186 if (!okay)
19187 unqualified_name = error_mark_node;
19188 else if (unqualified_name
19189 && (qualifying_scope
19190 || (!identifier_p (unqualified_name))))
19191 {
19192 cp_parser_error (parser, "expected unqualified-id");
19193 unqualified_name = error_mark_node;
19194 }
19195 }
19196
19197 if (!unqualified_name)
19198 return NULL;
19199 if (unqualified_name == error_mark_node)
19200 {
19201 declarator = cp_error_declarator;
19202 pack_expansion_p = false;
19203 declarator->parameter_pack_p = false;
19204 break;
19205 }
19206
19207 attrs = cp_parser_std_attribute_spec_seq (parser);
19208
19209 if (qualifying_scope && at_namespace_scope_p ()
19210 && TREE_CODE (qualifying_scope) == TYPENAME_TYPE)
19211 {
19212 /* In the declaration of a member of a template class
19213 outside of the class itself, the SCOPE will sometimes
19214 be a TYPENAME_TYPE. For example, given:
19215
19216 template <typename T>
19217 int S<T>::R::i = 3;
19218
19219 the SCOPE will be a TYPENAME_TYPE for `S<T>::R'. In
19220 this context, we must resolve S<T>::R to an ordinary
19221 type, rather than a typename type.
19222
19223 The reason we normally avoid resolving TYPENAME_TYPEs
19224 is that a specialization of `S' might render
19225 `S<T>::R' not a type. However, if `S' is
19226 specialized, then this `i' will not be used, so there
19227 is no harm in resolving the types here. */
19228 tree type;
19229
19230 /* Resolve the TYPENAME_TYPE. */
19231 type = resolve_typename_type (qualifying_scope,
19232 /*only_current_p=*/false);
19233 /* If that failed, the declarator is invalid. */
19234 if (TREE_CODE (type) == TYPENAME_TYPE)
19235 {
19236 if (typedef_variant_p (type))
19237 error_at (declarator_id_start_token->location,
19238 "cannot define member of dependent typedef "
19239 "%qT", type);
19240 else
19241 error_at (declarator_id_start_token->location,
19242 "%<%T::%E%> is not a type",
19243 TYPE_CONTEXT (qualifying_scope),
19244 TYPE_IDENTIFIER (qualifying_scope));
19245 }
19246 qualifying_scope = type;
19247 }
19248
19249 sfk = sfk_none;
19250
19251 if (unqualified_name)
19252 {
19253 tree class_type;
19254
19255 if (qualifying_scope
19256 && CLASS_TYPE_P (qualifying_scope))
19257 class_type = qualifying_scope;
19258 else
19259 class_type = current_class_type;
19260
19261 if (TREE_CODE (unqualified_name) == TYPE_DECL)
19262 {
19263 tree name_type = TREE_TYPE (unqualified_name);
19264 if (class_type && same_type_p (name_type, class_type))
19265 {
19266 if (qualifying_scope
19267 && CLASSTYPE_USE_TEMPLATE (name_type))
19268 {
19269 error_at (declarator_id_start_token->location,
19270 "invalid use of constructor as a template");
19271 inform (declarator_id_start_token->location,
19272 "use %<%T::%D%> instead of %<%T::%D%> to "
19273 "name the constructor in a qualified name",
19274 class_type,
19275 DECL_NAME (TYPE_TI_TEMPLATE (class_type)),
19276 class_type, name_type);
19277 declarator = cp_error_declarator;
19278 break;
19279 }
19280 else
19281 unqualified_name = constructor_name (class_type);
19282 }
19283 else
19284 {
19285 /* We do not attempt to print the declarator
19286 here because we do not have enough
19287 information about its original syntactic
19288 form. */
19289 cp_parser_error (parser, "invalid declarator");
19290 declarator = cp_error_declarator;
19291 break;
19292 }
19293 }
19294
19295 if (class_type)
19296 {
19297 if (TREE_CODE (unqualified_name) == BIT_NOT_EXPR)
19298 sfk = sfk_destructor;
19299 else if (IDENTIFIER_TYPENAME_P (unqualified_name))
19300 sfk = sfk_conversion;
19301 else if (/* There's no way to declare a constructor
19302 for an anonymous type, even if the type
19303 got a name for linkage purposes. */
19304 !TYPE_WAS_ANONYMOUS (class_type)
19305 /* Handle correctly (c++/19200):
19306
19307 struct S {
19308 struct T{};
19309 friend void S(T);
19310 };
19311
19312 and also:
19313
19314 namespace N {
19315 void S();
19316 }
19317
19318 struct S {
19319 friend void N::S();
19320 }; */
19321 && !(friend_p
19322 && class_type != qualifying_scope)
19323 && constructor_name_p (unqualified_name,
19324 class_type))
19325 {
19326 unqualified_name = constructor_name (class_type);
19327 sfk = sfk_constructor;
19328 }
19329 else if (is_overloaded_fn (unqualified_name)
19330 && DECL_CONSTRUCTOR_P (get_first_fn
19331 (unqualified_name)))
19332 sfk = sfk_constructor;
19333
19334 if (ctor_dtor_or_conv_p && sfk != sfk_none)
19335 *ctor_dtor_or_conv_p = -1;
19336 }
19337 }
19338 declarator = make_id_declarator (qualifying_scope,
19339 unqualified_name,
19340 sfk);
19341 declarator->std_attributes = attrs;
19342 declarator->id_loc = token->location;
19343 declarator->parameter_pack_p = pack_expansion_p;
19344
19345 if (pack_expansion_p)
19346 maybe_warn_variadic_templates ();
19347 }
19348
19349 handle_declarator:;
19350 scope = get_scope_of_declarator (declarator);
19351 if (scope)
19352 {
19353 /* Any names that appear after the declarator-id for a
19354 member are looked up in the containing scope. */
19355 if (at_function_scope_p ())
19356 {
19357 /* But declarations with qualified-ids can't appear in a
19358 function. */
19359 cp_parser_error (parser, "qualified-id in declaration");
19360 declarator = cp_error_declarator;
19361 break;
19362 }
19363 pushed_scope = push_scope (scope);
19364 }
19365 parser->in_declarator_p = true;
19366 if ((ctor_dtor_or_conv_p && *ctor_dtor_or_conv_p)
19367 || (declarator && declarator->kind == cdk_id))
19368 /* Default args are only allowed on function
19369 declarations. */
19370 parser->default_arg_ok_p = saved_default_arg_ok_p;
19371 else
19372 parser->default_arg_ok_p = false;
19373
19374 first = false;
19375 }
19376 /* We're done. */
19377 else
19378 break;
19379 }
19380
19381 /* For an abstract declarator, we might wind up with nothing at this
19382 point. That's an error; the declarator is not optional. */
19383 if (!declarator)
19384 cp_parser_error (parser, "expected declarator");
19385
19386 /* If we entered a scope, we must exit it now. */
19387 if (pushed_scope)
19388 pop_scope (pushed_scope);
19389
19390 parser->default_arg_ok_p = saved_default_arg_ok_p;
19391 parser->in_declarator_p = saved_in_declarator_p;
19392
19393 return declarator;
19394 }
19395
19396 /* Parse a ptr-operator.
19397
19398 ptr-operator:
19399 * attribute-specifier-seq [opt] cv-qualifier-seq [opt] (C++11)
19400 * cv-qualifier-seq [opt]
19401 &
19402 :: [opt] nested-name-specifier * cv-qualifier-seq [opt]
19403 nested-name-specifier * attribute-specifier-seq [opt] cv-qualifier-seq [opt] (C++11)
19404
19405 GNU Extension:
19406
19407 ptr-operator:
19408 & cv-qualifier-seq [opt]
19409
19410 Returns INDIRECT_REF if a pointer, or pointer-to-member, was used.
19411 Returns ADDR_EXPR if a reference was used, or NON_LVALUE_EXPR for
19412 an rvalue reference. In the case of a pointer-to-member, *TYPE is
19413 filled in with the TYPE containing the member. *CV_QUALS is
19414 filled in with the cv-qualifier-seq, or TYPE_UNQUALIFIED, if there
19415 are no cv-qualifiers. Returns ERROR_MARK if an error occurred.
19416 Note that the tree codes returned by this function have nothing
19417 to do with the types of trees that will be eventually be created
19418 to represent the pointer or reference type being parsed. They are
19419 just constants with suggestive names. */
19420 static enum tree_code
19421 cp_parser_ptr_operator (cp_parser* parser,
19422 tree* type,
19423 cp_cv_quals *cv_quals,
19424 tree *attributes)
19425 {
19426 enum tree_code code = ERROR_MARK;
19427 cp_token *token;
19428 tree attrs = NULL_TREE;
19429
19430 /* Assume that it's not a pointer-to-member. */
19431 *type = NULL_TREE;
19432 /* And that there are no cv-qualifiers. */
19433 *cv_quals = TYPE_UNQUALIFIED;
19434
19435 /* Peek at the next token. */
19436 token = cp_lexer_peek_token (parser->lexer);
19437
19438 /* If it's a `*', `&' or `&&' we have a pointer or reference. */
19439 if (token->type == CPP_MULT)
19440 code = INDIRECT_REF;
19441 else if (token->type == CPP_AND)
19442 code = ADDR_EXPR;
19443 else if ((cxx_dialect != cxx98) &&
19444 token->type == CPP_AND_AND) /* C++0x only */
19445 code = NON_LVALUE_EXPR;
19446
19447 if (code != ERROR_MARK)
19448 {
19449 /* Consume the `*', `&' or `&&'. */
19450 cp_lexer_consume_token (parser->lexer);
19451
19452 /* A `*' can be followed by a cv-qualifier-seq, and so can a
19453 `&', if we are allowing GNU extensions. (The only qualifier
19454 that can legally appear after `&' is `restrict', but that is
19455 enforced during semantic analysis. */
19456 if (code == INDIRECT_REF
19457 || cp_parser_allow_gnu_extensions_p (parser))
19458 *cv_quals = cp_parser_cv_qualifier_seq_opt (parser);
19459
19460 attrs = cp_parser_std_attribute_spec_seq (parser);
19461 if (attributes != NULL)
19462 *attributes = attrs;
19463 }
19464 else
19465 {
19466 /* Try the pointer-to-member case. */
19467 cp_parser_parse_tentatively (parser);
19468 /* Look for the optional `::' operator. */
19469 cp_parser_global_scope_opt (parser,
19470 /*current_scope_valid_p=*/false);
19471 /* Look for the nested-name specifier. */
19472 token = cp_lexer_peek_token (parser->lexer);
19473 cp_parser_nested_name_specifier (parser,
19474 /*typename_keyword_p=*/false,
19475 /*check_dependency_p=*/true,
19476 /*type_p=*/false,
19477 /*is_declaration=*/false);
19478 /* If we found it, and the next token is a `*', then we are
19479 indeed looking at a pointer-to-member operator. */
19480 if (!cp_parser_error_occurred (parser)
19481 && cp_parser_require (parser, CPP_MULT, RT_MULT))
19482 {
19483 /* Indicate that the `*' operator was used. */
19484 code = INDIRECT_REF;
19485
19486 if (TREE_CODE (parser->scope) == NAMESPACE_DECL)
19487 error_at (token->location, "%qD is a namespace", parser->scope);
19488 else if (TREE_CODE (parser->scope) == ENUMERAL_TYPE)
19489 error_at (token->location, "cannot form pointer to member of "
19490 "non-class %q#T", parser->scope);
19491 else
19492 {
19493 /* The type of which the member is a member is given by the
19494 current SCOPE. */
19495 *type = parser->scope;
19496 /* The next name will not be qualified. */
19497 parser->scope = NULL_TREE;
19498 parser->qualifying_scope = NULL_TREE;
19499 parser->object_scope = NULL_TREE;
19500 /* Look for optional c++11 attributes. */
19501 attrs = cp_parser_std_attribute_spec_seq (parser);
19502 if (attributes != NULL)
19503 *attributes = attrs;
19504 /* Look for the optional cv-qualifier-seq. */
19505 *cv_quals = cp_parser_cv_qualifier_seq_opt (parser);
19506 }
19507 }
19508 /* If that didn't work we don't have a ptr-operator. */
19509 if (!cp_parser_parse_definitely (parser))
19510 cp_parser_error (parser, "expected ptr-operator");
19511 }
19512
19513 return code;
19514 }
19515
19516 /* Parse an (optional) cv-qualifier-seq.
19517
19518 cv-qualifier-seq:
19519 cv-qualifier cv-qualifier-seq [opt]
19520
19521 cv-qualifier:
19522 const
19523 volatile
19524
19525 GNU Extension:
19526
19527 cv-qualifier:
19528 __restrict__
19529
19530 Returns a bitmask representing the cv-qualifiers. */
19531
19532 static cp_cv_quals
19533 cp_parser_cv_qualifier_seq_opt (cp_parser* parser)
19534 {
19535 cp_cv_quals cv_quals = TYPE_UNQUALIFIED;
19536
19537 while (true)
19538 {
19539 cp_token *token;
19540 cp_cv_quals cv_qualifier;
19541
19542 /* Peek at the next token. */
19543 token = cp_lexer_peek_token (parser->lexer);
19544 /* See if it's a cv-qualifier. */
19545 switch (token->keyword)
19546 {
19547 case RID_CONST:
19548 cv_qualifier = TYPE_QUAL_CONST;
19549 break;
19550
19551 case RID_VOLATILE:
19552 cv_qualifier = TYPE_QUAL_VOLATILE;
19553 break;
19554
19555 case RID_RESTRICT:
19556 cv_qualifier = TYPE_QUAL_RESTRICT;
19557 break;
19558
19559 default:
19560 cv_qualifier = TYPE_UNQUALIFIED;
19561 break;
19562 }
19563
19564 if (!cv_qualifier)
19565 break;
19566
19567 if (cv_quals & cv_qualifier)
19568 {
19569 error_at (token->location, "duplicate cv-qualifier");
19570 cp_lexer_purge_token (parser->lexer);
19571 }
19572 else
19573 {
19574 cp_lexer_consume_token (parser->lexer);
19575 cv_quals |= cv_qualifier;
19576 }
19577 }
19578
19579 return cv_quals;
19580 }
19581
19582 /* Parse an (optional) ref-qualifier
19583
19584 ref-qualifier:
19585 &
19586 &&
19587
19588 Returns cp_ref_qualifier representing ref-qualifier. */
19589
19590 static cp_ref_qualifier
19591 cp_parser_ref_qualifier_opt (cp_parser* parser)
19592 {
19593 cp_ref_qualifier ref_qual = REF_QUAL_NONE;
19594
19595 /* Don't try to parse bitwise '&' as a ref-qualifier (c++/57532). */
19596 if (cxx_dialect < cxx11 && cp_parser_parsing_tentatively (parser))
19597 return ref_qual;
19598
19599 while (true)
19600 {
19601 cp_ref_qualifier curr_ref_qual = REF_QUAL_NONE;
19602 cp_token *token = cp_lexer_peek_token (parser->lexer);
19603
19604 switch (token->type)
19605 {
19606 case CPP_AND:
19607 curr_ref_qual = REF_QUAL_LVALUE;
19608 break;
19609
19610 case CPP_AND_AND:
19611 curr_ref_qual = REF_QUAL_RVALUE;
19612 break;
19613
19614 default:
19615 curr_ref_qual = REF_QUAL_NONE;
19616 break;
19617 }
19618
19619 if (!curr_ref_qual)
19620 break;
19621 else if (ref_qual)
19622 {
19623 error_at (token->location, "multiple ref-qualifiers");
19624 cp_lexer_purge_token (parser->lexer);
19625 }
19626 else
19627 {
19628 ref_qual = curr_ref_qual;
19629 cp_lexer_consume_token (parser->lexer);
19630 }
19631 }
19632
19633 return ref_qual;
19634 }
19635
19636 /* Parse an optional tx-qualifier.
19637
19638 tx-qualifier:
19639 transaction_safe
19640 transaction_safe_dynamic */
19641
19642 static tree
19643 cp_parser_tx_qualifier_opt (cp_parser *parser)
19644 {
19645 cp_token *token = cp_lexer_peek_token (parser->lexer);
19646 if (token->type == CPP_NAME)
19647 {
19648 tree name = token->u.value;
19649 const char *p = IDENTIFIER_POINTER (name);
19650 const int len = strlen ("transaction_safe");
19651 if (!strncmp (p, "transaction_safe", len))
19652 {
19653 p += len;
19654 if (*p == '\0'
19655 || !strcmp (p, "_dynamic"))
19656 {
19657 cp_lexer_consume_token (parser->lexer);
19658 if (!flag_tm)
19659 {
19660 error ("%E requires %<-fgnu-tm%>", name);
19661 return NULL_TREE;
19662 }
19663 else
19664 return name;
19665 }
19666 }
19667 }
19668 return NULL_TREE;
19669 }
19670
19671 /* Parse an (optional) virt-specifier-seq.
19672
19673 virt-specifier-seq:
19674 virt-specifier virt-specifier-seq [opt]
19675
19676 virt-specifier:
19677 override
19678 final
19679
19680 Returns a bitmask representing the virt-specifiers. */
19681
19682 static cp_virt_specifiers
19683 cp_parser_virt_specifier_seq_opt (cp_parser* parser)
19684 {
19685 cp_virt_specifiers virt_specifiers = VIRT_SPEC_UNSPECIFIED;
19686
19687 while (true)
19688 {
19689 cp_token *token;
19690 cp_virt_specifiers virt_specifier;
19691
19692 /* Peek at the next token. */
19693 token = cp_lexer_peek_token (parser->lexer);
19694 /* See if it's a virt-specifier-qualifier. */
19695 if (token->type != CPP_NAME)
19696 break;
19697 if (!strcmp (IDENTIFIER_POINTER(token->u.value), "override"))
19698 {
19699 maybe_warn_cpp0x (CPP0X_OVERRIDE_CONTROLS);
19700 virt_specifier = VIRT_SPEC_OVERRIDE;
19701 }
19702 else if (!strcmp (IDENTIFIER_POINTER(token->u.value), "final"))
19703 {
19704 maybe_warn_cpp0x (CPP0X_OVERRIDE_CONTROLS);
19705 virt_specifier = VIRT_SPEC_FINAL;
19706 }
19707 else if (!strcmp (IDENTIFIER_POINTER(token->u.value), "__final"))
19708 {
19709 virt_specifier = VIRT_SPEC_FINAL;
19710 }
19711 else
19712 break;
19713
19714 if (virt_specifiers & virt_specifier)
19715 {
19716 error_at (token->location, "duplicate virt-specifier");
19717 cp_lexer_purge_token (parser->lexer);
19718 }
19719 else
19720 {
19721 cp_lexer_consume_token (parser->lexer);
19722 virt_specifiers |= virt_specifier;
19723 }
19724 }
19725 return virt_specifiers;
19726 }
19727
19728 /* Used by handling of trailing-return-types and NSDMI, in which 'this'
19729 is in scope even though it isn't real. */
19730
19731 void
19732 inject_this_parameter (tree ctype, cp_cv_quals quals)
19733 {
19734 tree this_parm;
19735
19736 if (current_class_ptr)
19737 {
19738 /* We don't clear this between NSDMIs. Is it already what we want? */
19739 tree type = TREE_TYPE (TREE_TYPE (current_class_ptr));
19740 if (same_type_ignoring_top_level_qualifiers_p (ctype, type)
19741 && cp_type_quals (type) == quals)
19742 return;
19743 }
19744
19745 this_parm = build_this_parm (ctype, quals);
19746 /* Clear this first to avoid shortcut in cp_build_indirect_ref. */
19747 current_class_ptr = NULL_TREE;
19748 current_class_ref
19749 = cp_build_indirect_ref (this_parm, RO_NULL, tf_warning_or_error);
19750 current_class_ptr = this_parm;
19751 }
19752
19753 /* Return true iff our current scope is a non-static data member
19754 initializer. */
19755
19756 bool
19757 parsing_nsdmi (void)
19758 {
19759 /* We recognize NSDMI context by the context-less 'this' pointer set up
19760 by the function above. */
19761 if (current_class_ptr
19762 && TREE_CODE (current_class_ptr) == PARM_DECL
19763 && DECL_CONTEXT (current_class_ptr) == NULL_TREE)
19764 return true;
19765 return false;
19766 }
19767
19768 /* Parse a late-specified return type, if any. This is not a separate
19769 non-terminal, but part of a function declarator, which looks like
19770
19771 -> trailing-type-specifier-seq abstract-declarator(opt)
19772
19773 Returns the type indicated by the type-id.
19774
19775 In addition to this, parse any queued up omp declare simd
19776 clauses and Cilk Plus SIMD-enabled function's vector attributes.
19777
19778 QUALS is either a bitmask of cv_qualifiers or -1 for a non-member
19779 function. */
19780
19781 static tree
19782 cp_parser_late_return_type_opt (cp_parser* parser, cp_declarator *declarator,
19783 tree& requires_clause, cp_cv_quals quals)
19784 {
19785 cp_token *token;
19786 tree type = NULL_TREE;
19787 bool declare_simd_p = (parser->omp_declare_simd
19788 && declarator
19789 && declarator->kind == cdk_id);
19790
19791 bool cilk_simd_fn_vector_p = (parser->cilk_simd_fn_info
19792 && declarator && declarator->kind == cdk_id);
19793
19794 bool oacc_routine_p = (parser->oacc_routine
19795 && declarator
19796 && declarator->kind == cdk_id);
19797
19798 /* Peek at the next token. */
19799 token = cp_lexer_peek_token (parser->lexer);
19800 /* A late-specified return type is indicated by an initial '->'. */
19801 if (token->type != CPP_DEREF
19802 && token->keyword != RID_REQUIRES
19803 && !(token->type == CPP_NAME
19804 && token->u.value == ridpointers[RID_REQUIRES])
19805 && !(declare_simd_p || cilk_simd_fn_vector_p || oacc_routine_p))
19806 return NULL_TREE;
19807
19808 tree save_ccp = current_class_ptr;
19809 tree save_ccr = current_class_ref;
19810 if (quals >= 0)
19811 {
19812 /* DR 1207: 'this' is in scope in the trailing return type. */
19813 inject_this_parameter (current_class_type, quals);
19814 }
19815
19816 if (token->type == CPP_DEREF)
19817 {
19818 /* Consume the ->. */
19819 cp_lexer_consume_token (parser->lexer);
19820
19821 type = cp_parser_trailing_type_id (parser);
19822 }
19823
19824 /* Function declarations may be followed by a trailing
19825 requires-clause. */
19826 requires_clause = cp_parser_requires_clause_opt (parser);
19827
19828 if (cilk_simd_fn_vector_p)
19829 declarator->attributes
19830 = cp_parser_late_parsing_cilk_simd_fn_info (parser,
19831 declarator->attributes);
19832 if (declare_simd_p)
19833 declarator->attributes
19834 = cp_parser_late_parsing_omp_declare_simd (parser,
19835 declarator->attributes);
19836 if (oacc_routine_p)
19837 declarator->attributes
19838 = cp_parser_late_parsing_oacc_routine (parser,
19839 declarator->attributes);
19840
19841 if (quals >= 0)
19842 {
19843 current_class_ptr = save_ccp;
19844 current_class_ref = save_ccr;
19845 }
19846
19847 return type;
19848 }
19849
19850 /* Parse a declarator-id.
19851
19852 declarator-id:
19853 id-expression
19854 :: [opt] nested-name-specifier [opt] type-name
19855
19856 In the `id-expression' case, the value returned is as for
19857 cp_parser_id_expression if the id-expression was an unqualified-id.
19858 If the id-expression was a qualified-id, then a SCOPE_REF is
19859 returned. The first operand is the scope (either a NAMESPACE_DECL
19860 or TREE_TYPE), but the second is still just a representation of an
19861 unqualified-id. */
19862
19863 static tree
19864 cp_parser_declarator_id (cp_parser* parser, bool optional_p)
19865 {
19866 tree id;
19867 /* The expression must be an id-expression. Assume that qualified
19868 names are the names of types so that:
19869
19870 template <class T>
19871 int S<T>::R::i = 3;
19872
19873 will work; we must treat `S<T>::R' as the name of a type.
19874 Similarly, assume that qualified names are templates, where
19875 required, so that:
19876
19877 template <class T>
19878 int S<T>::R<T>::i = 3;
19879
19880 will work, too. */
19881 id = cp_parser_id_expression (parser,
19882 /*template_keyword_p=*/false,
19883 /*check_dependency_p=*/false,
19884 /*template_p=*/NULL,
19885 /*declarator_p=*/true,
19886 optional_p);
19887 if (id && BASELINK_P (id))
19888 id = BASELINK_FUNCTIONS (id);
19889 return id;
19890 }
19891
19892 /* Parse a type-id.
19893
19894 type-id:
19895 type-specifier-seq abstract-declarator [opt]
19896
19897 Returns the TYPE specified. */
19898
19899 static tree
19900 cp_parser_type_id_1 (cp_parser* parser, bool is_template_arg,
19901 bool is_trailing_return)
19902 {
19903 cp_decl_specifier_seq type_specifier_seq;
19904 cp_declarator *abstract_declarator;
19905
19906 /* Parse the type-specifier-seq. */
19907 cp_parser_type_specifier_seq (parser, /*is_declaration=*/false,
19908 is_trailing_return,
19909 &type_specifier_seq);
19910 if (type_specifier_seq.type == error_mark_node)
19911 return error_mark_node;
19912
19913 /* There might or might not be an abstract declarator. */
19914 cp_parser_parse_tentatively (parser);
19915 /* Look for the declarator. */
19916 abstract_declarator
19917 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_ABSTRACT, NULL,
19918 /*parenthesized_p=*/NULL,
19919 /*member_p=*/false,
19920 /*friend_p=*/false);
19921 /* Check to see if there really was a declarator. */
19922 if (!cp_parser_parse_definitely (parser))
19923 abstract_declarator = NULL;
19924
19925 if (type_specifier_seq.type
19926 /* The concepts TS allows 'auto' as a type-id. */
19927 && (!flag_concepts || parser->in_type_id_in_expr_p)
19928 /* None of the valid uses of 'auto' in C++14 involve the type-id
19929 nonterminal, but it is valid in a trailing-return-type. */
19930 && !(cxx_dialect >= cxx14 && is_trailing_return)
19931 && type_uses_auto (type_specifier_seq.type))
19932 {
19933 /* A type-id with type 'auto' is only ok if the abstract declarator
19934 is a function declarator with a late-specified return type.
19935
19936 A type-id with 'auto' is also valid in a trailing-return-type
19937 in a compound-requirement. */
19938 if (abstract_declarator
19939 && abstract_declarator->kind == cdk_function
19940 && abstract_declarator->u.function.late_return_type)
19941 /* OK */;
19942 else if (parser->in_result_type_constraint_p)
19943 /* OK */;
19944 else
19945 {
19946 error ("invalid use of %<auto%>");
19947 return error_mark_node;
19948 }
19949 }
19950
19951 return groktypename (&type_specifier_seq, abstract_declarator,
19952 is_template_arg);
19953 }
19954
19955 static tree
19956 cp_parser_type_id (cp_parser *parser)
19957 {
19958 return cp_parser_type_id_1 (parser, false, false);
19959 }
19960
19961 static tree
19962 cp_parser_template_type_arg (cp_parser *parser)
19963 {
19964 tree r;
19965 const char *saved_message = parser->type_definition_forbidden_message;
19966 parser->type_definition_forbidden_message
19967 = G_("types may not be defined in template arguments");
19968 r = cp_parser_type_id_1 (parser, true, false);
19969 parser->type_definition_forbidden_message = saved_message;
19970 if (cxx_dialect >= cxx14 && !flag_concepts && type_uses_auto (r))
19971 {
19972 error ("invalid use of %<auto%> in template argument");
19973 r = error_mark_node;
19974 }
19975 return r;
19976 }
19977
19978 static tree
19979 cp_parser_trailing_type_id (cp_parser *parser)
19980 {
19981 return cp_parser_type_id_1 (parser, false, true);
19982 }
19983
19984 /* Parse a type-specifier-seq.
19985
19986 type-specifier-seq:
19987 type-specifier type-specifier-seq [opt]
19988
19989 GNU extension:
19990
19991 type-specifier-seq:
19992 attributes type-specifier-seq [opt]
19993
19994 If IS_DECLARATION is true, we are at the start of a "condition" or
19995 exception-declaration, so we might be followed by a declarator-id.
19996
19997 If IS_TRAILING_RETURN is true, we are in a trailing-return-type,
19998 i.e. we've just seen "->".
19999
20000 Sets *TYPE_SPECIFIER_SEQ to represent the sequence. */
20001
20002 static void
20003 cp_parser_type_specifier_seq (cp_parser* parser,
20004 bool is_declaration,
20005 bool is_trailing_return,
20006 cp_decl_specifier_seq *type_specifier_seq)
20007 {
20008 bool seen_type_specifier = false;
20009 cp_parser_flags flags = CP_PARSER_FLAGS_OPTIONAL;
20010 cp_token *start_token = NULL;
20011
20012 /* Clear the TYPE_SPECIFIER_SEQ. */
20013 clear_decl_specs (type_specifier_seq);
20014
20015 /* In the context of a trailing return type, enum E { } is an
20016 elaborated-type-specifier followed by a function-body, not an
20017 enum-specifier. */
20018 if (is_trailing_return)
20019 flags |= CP_PARSER_FLAGS_NO_TYPE_DEFINITIONS;
20020
20021 /* Parse the type-specifiers and attributes. */
20022 while (true)
20023 {
20024 tree type_specifier;
20025 bool is_cv_qualifier;
20026
20027 /* Check for attributes first. */
20028 if (cp_next_tokens_can_be_attribute_p (parser))
20029 {
20030 type_specifier_seq->attributes =
20031 chainon (type_specifier_seq->attributes,
20032 cp_parser_attributes_opt (parser));
20033 continue;
20034 }
20035
20036 /* record the token of the beginning of the type specifier seq,
20037 for error reporting purposes*/
20038 if (!start_token)
20039 start_token = cp_lexer_peek_token (parser->lexer);
20040
20041 /* Look for the type-specifier. */
20042 type_specifier = cp_parser_type_specifier (parser,
20043 flags,
20044 type_specifier_seq,
20045 /*is_declaration=*/false,
20046 NULL,
20047 &is_cv_qualifier);
20048 if (!type_specifier)
20049 {
20050 /* If the first type-specifier could not be found, this is not a
20051 type-specifier-seq at all. */
20052 if (!seen_type_specifier)
20053 {
20054 /* Set in_declarator_p to avoid skipping to the semicolon. */
20055 int in_decl = parser->in_declarator_p;
20056 parser->in_declarator_p = true;
20057
20058 if (cp_parser_uncommitted_to_tentative_parse_p (parser)
20059 || !cp_parser_parse_and_diagnose_invalid_type_name (parser))
20060 cp_parser_error (parser, "expected type-specifier");
20061
20062 parser->in_declarator_p = in_decl;
20063
20064 type_specifier_seq->type = error_mark_node;
20065 return;
20066 }
20067 /* If subsequent type-specifiers could not be found, the
20068 type-specifier-seq is complete. */
20069 break;
20070 }
20071
20072 seen_type_specifier = true;
20073 /* The standard says that a condition can be:
20074
20075 type-specifier-seq declarator = assignment-expression
20076
20077 However, given:
20078
20079 struct S {};
20080 if (int S = ...)
20081
20082 we should treat the "S" as a declarator, not as a
20083 type-specifier. The standard doesn't say that explicitly for
20084 type-specifier-seq, but it does say that for
20085 decl-specifier-seq in an ordinary declaration. Perhaps it
20086 would be clearer just to allow a decl-specifier-seq here, and
20087 then add a semantic restriction that if any decl-specifiers
20088 that are not type-specifiers appear, the program is invalid. */
20089 if (is_declaration && !is_cv_qualifier)
20090 flags |= CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES;
20091 }
20092 }
20093
20094 /* Return whether the function currently being declared has an associated
20095 template parameter list. */
20096
20097 static bool
20098 function_being_declared_is_template_p (cp_parser* parser)
20099 {
20100 if (!current_template_parms || processing_template_parmlist)
20101 return false;
20102
20103 if (parser->implicit_template_scope)
20104 return true;
20105
20106 if (at_class_scope_p ()
20107 && TYPE_BEING_DEFINED (current_class_type))
20108 return parser->num_template_parameter_lists != 0;
20109
20110 return ((int) parser->num_template_parameter_lists > template_class_depth
20111 (current_class_type));
20112 }
20113
20114 /* Parse a parameter-declaration-clause.
20115
20116 parameter-declaration-clause:
20117 parameter-declaration-list [opt] ... [opt]
20118 parameter-declaration-list , ...
20119
20120 Returns a representation for the parameter declarations. A return
20121 value of NULL indicates a parameter-declaration-clause consisting
20122 only of an ellipsis. */
20123
20124 static tree
20125 cp_parser_parameter_declaration_clause (cp_parser* parser)
20126 {
20127 tree parameters;
20128 cp_token *token;
20129 bool ellipsis_p;
20130 bool is_error;
20131
20132 struct cleanup {
20133 cp_parser* parser;
20134 int auto_is_implicit_function_template_parm_p;
20135 ~cleanup() {
20136 parser->auto_is_implicit_function_template_parm_p
20137 = auto_is_implicit_function_template_parm_p;
20138 }
20139 } cleanup = { parser, parser->auto_is_implicit_function_template_parm_p };
20140
20141 (void) cleanup;
20142
20143 if (!processing_specialization
20144 && !processing_template_parmlist
20145 && !processing_explicit_instantiation)
20146 if (!current_function_decl
20147 || (current_class_type && LAMBDA_TYPE_P (current_class_type)))
20148 parser->auto_is_implicit_function_template_parm_p = true;
20149
20150 /* Peek at the next token. */
20151 token = cp_lexer_peek_token (parser->lexer);
20152 /* Check for trivial parameter-declaration-clauses. */
20153 if (token->type == CPP_ELLIPSIS)
20154 {
20155 /* Consume the `...' token. */
20156 cp_lexer_consume_token (parser->lexer);
20157 return NULL_TREE;
20158 }
20159 else if (token->type == CPP_CLOSE_PAREN)
20160 /* There are no parameters. */
20161 {
20162 #ifndef NO_IMPLICIT_EXTERN_C
20163 if (in_system_header_at (input_location)
20164 && current_class_type == NULL
20165 && current_lang_name == lang_name_c)
20166 return NULL_TREE;
20167 else
20168 #endif
20169 return void_list_node;
20170 }
20171 /* Check for `(void)', too, which is a special case. */
20172 else if (token->keyword == RID_VOID
20173 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
20174 == CPP_CLOSE_PAREN))
20175 {
20176 /* Consume the `void' token. */
20177 cp_lexer_consume_token (parser->lexer);
20178 /* There are no parameters. */
20179 return void_list_node;
20180 }
20181
20182 /* Parse the parameter-declaration-list. */
20183 parameters = cp_parser_parameter_declaration_list (parser, &is_error);
20184 /* If a parse error occurred while parsing the
20185 parameter-declaration-list, then the entire
20186 parameter-declaration-clause is erroneous. */
20187 if (is_error)
20188 return NULL;
20189
20190 /* Peek at the next token. */
20191 token = cp_lexer_peek_token (parser->lexer);
20192 /* If it's a `,', the clause should terminate with an ellipsis. */
20193 if (token->type == CPP_COMMA)
20194 {
20195 /* Consume the `,'. */
20196 cp_lexer_consume_token (parser->lexer);
20197 /* Expect an ellipsis. */
20198 ellipsis_p
20199 = (cp_parser_require (parser, CPP_ELLIPSIS, RT_ELLIPSIS) != NULL);
20200 }
20201 /* It might also be `...' if the optional trailing `,' was
20202 omitted. */
20203 else if (token->type == CPP_ELLIPSIS)
20204 {
20205 /* Consume the `...' token. */
20206 cp_lexer_consume_token (parser->lexer);
20207 /* And remember that we saw it. */
20208 ellipsis_p = true;
20209 }
20210 else
20211 ellipsis_p = false;
20212
20213 /* Finish the parameter list. */
20214 if (!ellipsis_p)
20215 parameters = chainon (parameters, void_list_node);
20216
20217 return parameters;
20218 }
20219
20220 /* Parse a parameter-declaration-list.
20221
20222 parameter-declaration-list:
20223 parameter-declaration
20224 parameter-declaration-list , parameter-declaration
20225
20226 Returns a representation of the parameter-declaration-list, as for
20227 cp_parser_parameter_declaration_clause. However, the
20228 `void_list_node' is never appended to the list. Upon return,
20229 *IS_ERROR will be true iff an error occurred. */
20230
20231 static tree
20232 cp_parser_parameter_declaration_list (cp_parser* parser, bool *is_error)
20233 {
20234 tree parameters = NULL_TREE;
20235 tree *tail = &parameters;
20236 bool saved_in_unbraced_linkage_specification_p;
20237 int index = 0;
20238
20239 /* Assume all will go well. */
20240 *is_error = false;
20241 /* The special considerations that apply to a function within an
20242 unbraced linkage specifications do not apply to the parameters
20243 to the function. */
20244 saved_in_unbraced_linkage_specification_p
20245 = parser->in_unbraced_linkage_specification_p;
20246 parser->in_unbraced_linkage_specification_p = false;
20247
20248 /* Look for more parameters. */
20249 while (true)
20250 {
20251 cp_parameter_declarator *parameter;
20252 tree decl = error_mark_node;
20253 bool parenthesized_p = false;
20254 int template_parm_idx = (function_being_declared_is_template_p (parser)?
20255 TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
20256 (current_template_parms)) : 0);
20257
20258 /* Parse the parameter. */
20259 parameter
20260 = cp_parser_parameter_declaration (parser,
20261 /*template_parm_p=*/false,
20262 &parenthesized_p);
20263
20264 /* We don't know yet if the enclosing context is deprecated, so wait
20265 and warn in grokparms if appropriate. */
20266 deprecated_state = DEPRECATED_SUPPRESS;
20267
20268 if (parameter)
20269 {
20270 /* If a function parameter pack was specified and an implicit template
20271 parameter was introduced during cp_parser_parameter_declaration,
20272 change any implicit parameters introduced into packs. */
20273 if (parser->implicit_template_parms
20274 && parameter->declarator
20275 && parameter->declarator->parameter_pack_p)
20276 {
20277 int latest_template_parm_idx = TREE_VEC_LENGTH
20278 (INNERMOST_TEMPLATE_PARMS (current_template_parms));
20279
20280 if (latest_template_parm_idx != template_parm_idx)
20281 parameter->decl_specifiers.type = convert_generic_types_to_packs
20282 (parameter->decl_specifiers.type,
20283 template_parm_idx, latest_template_parm_idx);
20284 }
20285
20286 decl = grokdeclarator (parameter->declarator,
20287 &parameter->decl_specifiers,
20288 PARM,
20289 parameter->default_argument != NULL_TREE,
20290 &parameter->decl_specifiers.attributes);
20291 }
20292
20293 deprecated_state = DEPRECATED_NORMAL;
20294
20295 /* If a parse error occurred parsing the parameter declaration,
20296 then the entire parameter-declaration-list is erroneous. */
20297 if (decl == error_mark_node)
20298 {
20299 *is_error = true;
20300 parameters = error_mark_node;
20301 break;
20302 }
20303
20304 if (parameter->decl_specifiers.attributes)
20305 cplus_decl_attributes (&decl,
20306 parameter->decl_specifiers.attributes,
20307 0);
20308 if (DECL_NAME (decl))
20309 decl = pushdecl (decl);
20310
20311 if (decl != error_mark_node)
20312 {
20313 retrofit_lang_decl (decl);
20314 DECL_PARM_INDEX (decl) = ++index;
20315 DECL_PARM_LEVEL (decl) = function_parm_depth ();
20316 }
20317
20318 /* Add the new parameter to the list. */
20319 *tail = build_tree_list (parameter->default_argument, decl);
20320 tail = &TREE_CHAIN (*tail);
20321
20322 /* Peek at the next token. */
20323 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN)
20324 || cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS)
20325 /* These are for Objective-C++ */
20326 || cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
20327 || cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
20328 /* The parameter-declaration-list is complete. */
20329 break;
20330 else if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
20331 {
20332 cp_token *token;
20333
20334 /* Peek at the next token. */
20335 token = cp_lexer_peek_nth_token (parser->lexer, 2);
20336 /* If it's an ellipsis, then the list is complete. */
20337 if (token->type == CPP_ELLIPSIS)
20338 break;
20339 /* Otherwise, there must be more parameters. Consume the
20340 `,'. */
20341 cp_lexer_consume_token (parser->lexer);
20342 /* When parsing something like:
20343
20344 int i(float f, double d)
20345
20346 we can tell after seeing the declaration for "f" that we
20347 are not looking at an initialization of a variable "i",
20348 but rather at the declaration of a function "i".
20349
20350 Due to the fact that the parsing of template arguments
20351 (as specified to a template-id) requires backtracking we
20352 cannot use this technique when inside a template argument
20353 list. */
20354 if (!parser->in_template_argument_list_p
20355 && !parser->in_type_id_in_expr_p
20356 && cp_parser_uncommitted_to_tentative_parse_p (parser)
20357 /* However, a parameter-declaration of the form
20358 "float(f)" (which is a valid declaration of a
20359 parameter "f") can also be interpreted as an
20360 expression (the conversion of "f" to "float"). */
20361 && !parenthesized_p)
20362 cp_parser_commit_to_tentative_parse (parser);
20363 }
20364 else
20365 {
20366 cp_parser_error (parser, "expected %<,%> or %<...%>");
20367 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
20368 cp_parser_skip_to_closing_parenthesis (parser,
20369 /*recovering=*/true,
20370 /*or_comma=*/false,
20371 /*consume_paren=*/false);
20372 break;
20373 }
20374 }
20375
20376 parser->in_unbraced_linkage_specification_p
20377 = saved_in_unbraced_linkage_specification_p;
20378
20379 /* Reset implicit_template_scope if we are about to leave the function
20380 parameter list that introduced it. Note that for out-of-line member
20381 definitions, there will be one or more class scopes before we get to
20382 the template parameter scope. */
20383
20384 if (cp_binding_level *its = parser->implicit_template_scope)
20385 if (cp_binding_level *maybe_its = current_binding_level->level_chain)
20386 {
20387 while (maybe_its->kind == sk_class)
20388 maybe_its = maybe_its->level_chain;
20389 if (maybe_its == its)
20390 {
20391 parser->implicit_template_parms = 0;
20392 parser->implicit_template_scope = 0;
20393 }
20394 }
20395
20396 return parameters;
20397 }
20398
20399 /* Parse a parameter declaration.
20400
20401 parameter-declaration:
20402 decl-specifier-seq ... [opt] declarator
20403 decl-specifier-seq declarator = assignment-expression
20404 decl-specifier-seq ... [opt] abstract-declarator [opt]
20405 decl-specifier-seq abstract-declarator [opt] = assignment-expression
20406
20407 If TEMPLATE_PARM_P is TRUE, then this parameter-declaration
20408 declares a template parameter. (In that case, a non-nested `>'
20409 token encountered during the parsing of the assignment-expression
20410 is not interpreted as a greater-than operator.)
20411
20412 Returns a representation of the parameter, or NULL if an error
20413 occurs. If PARENTHESIZED_P is non-NULL, *PARENTHESIZED_P is set to
20414 true iff the declarator is of the form "(p)". */
20415
20416 static cp_parameter_declarator *
20417 cp_parser_parameter_declaration (cp_parser *parser,
20418 bool template_parm_p,
20419 bool *parenthesized_p)
20420 {
20421 int declares_class_or_enum;
20422 cp_decl_specifier_seq decl_specifiers;
20423 cp_declarator *declarator;
20424 tree default_argument;
20425 cp_token *token = NULL, *declarator_token_start = NULL;
20426 const char *saved_message;
20427 bool template_parameter_pack_p = false;
20428
20429 /* In a template parameter, `>' is not an operator.
20430
20431 [temp.param]
20432
20433 When parsing a default template-argument for a non-type
20434 template-parameter, the first non-nested `>' is taken as the end
20435 of the template parameter-list rather than a greater-than
20436 operator. */
20437
20438 /* Type definitions may not appear in parameter types. */
20439 saved_message = parser->type_definition_forbidden_message;
20440 parser->type_definition_forbidden_message
20441 = G_("types may not be defined in parameter types");
20442
20443 /* Parse the declaration-specifiers. */
20444 cp_parser_decl_specifier_seq (parser,
20445 CP_PARSER_FLAGS_NONE,
20446 &decl_specifiers,
20447 &declares_class_or_enum);
20448
20449 /* Complain about missing 'typename' or other invalid type names. */
20450 if (!decl_specifiers.any_type_specifiers_p
20451 && cp_parser_parse_and_diagnose_invalid_type_name (parser))
20452 decl_specifiers.type = error_mark_node;
20453
20454 /* If an error occurred, there's no reason to attempt to parse the
20455 rest of the declaration. */
20456 if (cp_parser_error_occurred (parser))
20457 {
20458 parser->type_definition_forbidden_message = saved_message;
20459 return NULL;
20460 }
20461
20462 /* Peek at the next token. */
20463 token = cp_lexer_peek_token (parser->lexer);
20464
20465 /* If the next token is a `)', `,', `=', `>', or `...', then there
20466 is no declarator. However, when variadic templates are enabled,
20467 there may be a declarator following `...'. */
20468 if (token->type == CPP_CLOSE_PAREN
20469 || token->type == CPP_COMMA
20470 || token->type == CPP_EQ
20471 || token->type == CPP_GREATER)
20472 {
20473 declarator = NULL;
20474 if (parenthesized_p)
20475 *parenthesized_p = false;
20476 }
20477 /* Otherwise, there should be a declarator. */
20478 else
20479 {
20480 bool saved_default_arg_ok_p = parser->default_arg_ok_p;
20481 parser->default_arg_ok_p = false;
20482
20483 /* After seeing a decl-specifier-seq, if the next token is not a
20484 "(", there is no possibility that the code is a valid
20485 expression. Therefore, if parsing tentatively, we commit at
20486 this point. */
20487 if (!parser->in_template_argument_list_p
20488 /* In an expression context, having seen:
20489
20490 (int((char ...
20491
20492 we cannot be sure whether we are looking at a
20493 function-type (taking a "char" as a parameter) or a cast
20494 of some object of type "char" to "int". */
20495 && !parser->in_type_id_in_expr_p
20496 && cp_parser_uncommitted_to_tentative_parse_p (parser)
20497 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE)
20498 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_PAREN))
20499 cp_parser_commit_to_tentative_parse (parser);
20500 /* Parse the declarator. */
20501 declarator_token_start = token;
20502 declarator = cp_parser_declarator (parser,
20503 CP_PARSER_DECLARATOR_EITHER,
20504 /*ctor_dtor_or_conv_p=*/NULL,
20505 parenthesized_p,
20506 /*member_p=*/false,
20507 /*friend_p=*/false);
20508 parser->default_arg_ok_p = saved_default_arg_ok_p;
20509 /* After the declarator, allow more attributes. */
20510 decl_specifiers.attributes
20511 = chainon (decl_specifiers.attributes,
20512 cp_parser_attributes_opt (parser));
20513
20514 /* If the declarator is a template parameter pack, remember that and
20515 clear the flag in the declarator itself so we don't get errors
20516 from grokdeclarator. */
20517 if (template_parm_p && declarator && declarator->parameter_pack_p)
20518 {
20519 declarator->parameter_pack_p = false;
20520 template_parameter_pack_p = true;
20521 }
20522 }
20523
20524 /* If the next token is an ellipsis, and we have not seen a declarator
20525 name, and if either the type of the declarator contains parameter
20526 packs but it is not a TYPE_PACK_EXPANSION or is null (this happens
20527 for, eg, abbreviated integral type names), then we actually have a
20528 parameter pack expansion expression. Otherwise, leave the ellipsis
20529 for a C-style variadic function. */
20530 token = cp_lexer_peek_token (parser->lexer);
20531 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
20532 {
20533 tree type = decl_specifiers.type;
20534
20535 if (type && DECL_P (type))
20536 type = TREE_TYPE (type);
20537
20538 if (((type
20539 && TREE_CODE (type) != TYPE_PACK_EXPANSION
20540 && (template_parm_p || uses_parameter_packs (type)))
20541 || (!type && template_parm_p))
20542 && declarator_can_be_parameter_pack (declarator))
20543 {
20544 /* Consume the `...'. */
20545 cp_lexer_consume_token (parser->lexer);
20546 maybe_warn_variadic_templates ();
20547
20548 /* Build a pack expansion type */
20549 if (template_parm_p)
20550 template_parameter_pack_p = true;
20551 else if (declarator)
20552 declarator->parameter_pack_p = true;
20553 else
20554 decl_specifiers.type = make_pack_expansion (type);
20555 }
20556 }
20557
20558 /* The restriction on defining new types applies only to the type
20559 of the parameter, not to the default argument. */
20560 parser->type_definition_forbidden_message = saved_message;
20561
20562 /* If the next token is `=', then process a default argument. */
20563 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
20564 {
20565 tree type = decl_specifiers.type;
20566 token = cp_lexer_peek_token (parser->lexer);
20567 /* If we are defining a class, then the tokens that make up the
20568 default argument must be saved and processed later. */
20569 if (!template_parm_p && at_class_scope_p ()
20570 && TYPE_BEING_DEFINED (current_class_type)
20571 && !LAMBDA_TYPE_P (current_class_type))
20572 default_argument = cp_parser_cache_defarg (parser, /*nsdmi=*/false);
20573
20574 // A constrained-type-specifier may declare a type template-parameter.
20575 else if (declares_constrained_type_template_parameter (type))
20576 default_argument
20577 = cp_parser_default_type_template_argument (parser);
20578
20579 // A constrained-type-specifier may declare a template-template-parameter.
20580 else if (declares_constrained_template_template_parameter (type))
20581 default_argument
20582 = cp_parser_default_template_template_argument (parser);
20583
20584 /* Outside of a class definition, we can just parse the
20585 assignment-expression. */
20586 else
20587 default_argument
20588 = cp_parser_default_argument (parser, template_parm_p);
20589
20590 if (!parser->default_arg_ok_p)
20591 {
20592 permerror (token->location,
20593 "default arguments are only "
20594 "permitted for function parameters");
20595 }
20596 else if ((declarator && declarator->parameter_pack_p)
20597 || template_parameter_pack_p
20598 || (decl_specifiers.type
20599 && PACK_EXPANSION_P (decl_specifiers.type)))
20600 {
20601 /* Find the name of the parameter pack. */
20602 cp_declarator *id_declarator = declarator;
20603 while (id_declarator && id_declarator->kind != cdk_id)
20604 id_declarator = id_declarator->declarator;
20605
20606 if (id_declarator && id_declarator->kind == cdk_id)
20607 error_at (declarator_token_start->location,
20608 template_parm_p
20609 ? G_("template parameter pack %qD "
20610 "cannot have a default argument")
20611 : G_("parameter pack %qD cannot have "
20612 "a default argument"),
20613 id_declarator->u.id.unqualified_name);
20614 else
20615 error_at (declarator_token_start->location,
20616 template_parm_p
20617 ? G_("template parameter pack cannot have "
20618 "a default argument")
20619 : G_("parameter pack cannot have a "
20620 "default argument"));
20621
20622 default_argument = NULL_TREE;
20623 }
20624 }
20625 else
20626 default_argument = NULL_TREE;
20627
20628 return make_parameter_declarator (&decl_specifiers,
20629 declarator,
20630 default_argument,
20631 template_parameter_pack_p);
20632 }
20633
20634 /* Parse a default argument and return it.
20635
20636 TEMPLATE_PARM_P is true if this is a default argument for a
20637 non-type template parameter. */
20638 static tree
20639 cp_parser_default_argument (cp_parser *parser, bool template_parm_p)
20640 {
20641 tree default_argument = NULL_TREE;
20642 bool saved_greater_than_is_operator_p;
20643 bool saved_local_variables_forbidden_p;
20644 bool non_constant_p, is_direct_init;
20645
20646 /* Make sure that PARSER->GREATER_THAN_IS_OPERATOR_P is
20647 set correctly. */
20648 saved_greater_than_is_operator_p = parser->greater_than_is_operator_p;
20649 parser->greater_than_is_operator_p = !template_parm_p;
20650 /* Local variable names (and the `this' keyword) may not
20651 appear in a default argument. */
20652 saved_local_variables_forbidden_p = parser->local_variables_forbidden_p;
20653 parser->local_variables_forbidden_p = true;
20654 /* Parse the assignment-expression. */
20655 if (template_parm_p)
20656 push_deferring_access_checks (dk_no_deferred);
20657 tree saved_class_ptr = NULL_TREE;
20658 tree saved_class_ref = NULL_TREE;
20659 /* The "this" pointer is not valid in a default argument. */
20660 if (cfun)
20661 {
20662 saved_class_ptr = current_class_ptr;
20663 cp_function_chain->x_current_class_ptr = NULL_TREE;
20664 saved_class_ref = current_class_ref;
20665 cp_function_chain->x_current_class_ref = NULL_TREE;
20666 }
20667 default_argument
20668 = cp_parser_initializer (parser, &is_direct_init, &non_constant_p);
20669 /* Restore the "this" pointer. */
20670 if (cfun)
20671 {
20672 cp_function_chain->x_current_class_ptr = saved_class_ptr;
20673 cp_function_chain->x_current_class_ref = saved_class_ref;
20674 }
20675 if (BRACE_ENCLOSED_INITIALIZER_P (default_argument))
20676 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
20677 if (template_parm_p)
20678 pop_deferring_access_checks ();
20679 parser->greater_than_is_operator_p = saved_greater_than_is_operator_p;
20680 parser->local_variables_forbidden_p = saved_local_variables_forbidden_p;
20681
20682 return default_argument;
20683 }
20684
20685 /* Parse a function-body.
20686
20687 function-body:
20688 compound_statement */
20689
20690 static void
20691 cp_parser_function_body (cp_parser *parser, bool in_function_try_block)
20692 {
20693 cp_parser_compound_statement (parser, NULL, (in_function_try_block
20694 ? BCS_TRY_BLOCK : BCS_NORMAL),
20695 true);
20696 }
20697
20698 /* Parse a ctor-initializer-opt followed by a function-body. Return
20699 true if a ctor-initializer was present. When IN_FUNCTION_TRY_BLOCK
20700 is true we are parsing a function-try-block. */
20701
20702 static bool
20703 cp_parser_ctor_initializer_opt_and_function_body (cp_parser *parser,
20704 bool in_function_try_block)
20705 {
20706 tree body, list;
20707 bool ctor_initializer_p;
20708 const bool check_body_p =
20709 DECL_CONSTRUCTOR_P (current_function_decl)
20710 && DECL_DECLARED_CONSTEXPR_P (current_function_decl);
20711 tree last = NULL;
20712
20713 /* Begin the function body. */
20714 body = begin_function_body ();
20715 /* Parse the optional ctor-initializer. */
20716 ctor_initializer_p = cp_parser_ctor_initializer_opt (parser);
20717
20718 /* If we're parsing a constexpr constructor definition, we need
20719 to check that the constructor body is indeed empty. However,
20720 before we get to cp_parser_function_body lot of junk has been
20721 generated, so we can't just check that we have an empty block.
20722 Rather we take a snapshot of the outermost block, and check whether
20723 cp_parser_function_body changed its state. */
20724 if (check_body_p)
20725 {
20726 list = cur_stmt_list;
20727 if (STATEMENT_LIST_TAIL (list))
20728 last = STATEMENT_LIST_TAIL (list)->stmt;
20729 }
20730 /* Parse the function-body. */
20731 cp_parser_function_body (parser, in_function_try_block);
20732 if (check_body_p)
20733 check_constexpr_ctor_body (last, list, /*complain=*/true);
20734 /* Finish the function body. */
20735 finish_function_body (body);
20736
20737 return ctor_initializer_p;
20738 }
20739
20740 /* Parse an initializer.
20741
20742 initializer:
20743 = initializer-clause
20744 ( expression-list )
20745
20746 Returns an expression representing the initializer. If no
20747 initializer is present, NULL_TREE is returned.
20748
20749 *IS_DIRECT_INIT is set to FALSE if the `= initializer-clause'
20750 production is used, and TRUE otherwise. *IS_DIRECT_INIT is
20751 set to TRUE if there is no initializer present. If there is an
20752 initializer, and it is not a constant-expression, *NON_CONSTANT_P
20753 is set to true; otherwise it is set to false. */
20754
20755 static tree
20756 cp_parser_initializer (cp_parser* parser, bool* is_direct_init,
20757 bool* non_constant_p)
20758 {
20759 cp_token *token;
20760 tree init;
20761
20762 /* Peek at the next token. */
20763 token = cp_lexer_peek_token (parser->lexer);
20764
20765 /* Let our caller know whether or not this initializer was
20766 parenthesized. */
20767 *is_direct_init = (token->type != CPP_EQ);
20768 /* Assume that the initializer is constant. */
20769 *non_constant_p = false;
20770
20771 if (token->type == CPP_EQ)
20772 {
20773 /* Consume the `='. */
20774 cp_lexer_consume_token (parser->lexer);
20775 /* Parse the initializer-clause. */
20776 init = cp_parser_initializer_clause (parser, non_constant_p);
20777 }
20778 else if (token->type == CPP_OPEN_PAREN)
20779 {
20780 vec<tree, va_gc> *vec;
20781 vec = cp_parser_parenthesized_expression_list (parser, non_attr,
20782 /*cast_p=*/false,
20783 /*allow_expansion_p=*/true,
20784 non_constant_p);
20785 if (vec == NULL)
20786 return error_mark_node;
20787 init = build_tree_list_vec (vec);
20788 release_tree_vector (vec);
20789 }
20790 else if (token->type == CPP_OPEN_BRACE)
20791 {
20792 cp_lexer_set_source_position (parser->lexer);
20793 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
20794 init = cp_parser_braced_list (parser, non_constant_p);
20795 CONSTRUCTOR_IS_DIRECT_INIT (init) = 1;
20796 }
20797 else
20798 {
20799 /* Anything else is an error. */
20800 cp_parser_error (parser, "expected initializer");
20801 init = error_mark_node;
20802 }
20803
20804 if (check_for_bare_parameter_packs (init))
20805 init = error_mark_node;
20806
20807 return init;
20808 }
20809
20810 /* Parse an initializer-clause.
20811
20812 initializer-clause:
20813 assignment-expression
20814 braced-init-list
20815
20816 Returns an expression representing the initializer.
20817
20818 If the `assignment-expression' production is used the value
20819 returned is simply a representation for the expression.
20820
20821 Otherwise, calls cp_parser_braced_list. */
20822
20823 static cp_expr
20824 cp_parser_initializer_clause (cp_parser* parser, bool* non_constant_p)
20825 {
20826 cp_expr initializer;
20827
20828 /* Assume the expression is constant. */
20829 *non_constant_p = false;
20830
20831 /* If it is not a `{', then we are looking at an
20832 assignment-expression. */
20833 if (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE))
20834 {
20835 initializer
20836 = cp_parser_constant_expression (parser,
20837 /*allow_non_constant_p=*/true,
20838 non_constant_p);
20839 }
20840 else
20841 initializer = cp_parser_braced_list (parser, non_constant_p);
20842
20843 return initializer;
20844 }
20845
20846 /* Parse a brace-enclosed initializer list.
20847
20848 braced-init-list:
20849 { initializer-list , [opt] }
20850 { }
20851
20852 Returns a CONSTRUCTOR. The CONSTRUCTOR_ELTS will be
20853 the elements of the initializer-list (or NULL, if the last
20854 production is used). The TREE_TYPE for the CONSTRUCTOR will be
20855 NULL_TREE. There is no way to detect whether or not the optional
20856 trailing `,' was provided. NON_CONSTANT_P is as for
20857 cp_parser_initializer. */
20858
20859 static cp_expr
20860 cp_parser_braced_list (cp_parser* parser, bool* non_constant_p)
20861 {
20862 tree initializer;
20863 location_t start_loc = cp_lexer_peek_token (parser->lexer)->location;
20864
20865 /* Consume the `{' token. */
20866 cp_lexer_consume_token (parser->lexer);
20867 /* Create a CONSTRUCTOR to represent the braced-initializer. */
20868 initializer = make_node (CONSTRUCTOR);
20869 /* If it's not a `}', then there is a non-trivial initializer. */
20870 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_BRACE))
20871 {
20872 /* Parse the initializer list. */
20873 CONSTRUCTOR_ELTS (initializer)
20874 = cp_parser_initializer_list (parser, non_constant_p);
20875 /* A trailing `,' token is allowed. */
20876 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
20877 cp_lexer_consume_token (parser->lexer);
20878 }
20879 else
20880 *non_constant_p = false;
20881 /* Now, there should be a trailing `}'. */
20882 location_t finish_loc = cp_lexer_peek_token (parser->lexer)->location;
20883 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
20884 TREE_TYPE (initializer) = init_list_type_node;
20885
20886 cp_expr result (initializer);
20887 /* Build a location of the form:
20888 { ... }
20889 ^~~~~~~
20890 with caret==start at the open brace, finish at the close brace. */
20891 location_t combined_loc = make_location (start_loc, start_loc, finish_loc);
20892 result.set_location (combined_loc);
20893 return result;
20894 }
20895
20896 /* Consume tokens up to, and including, the next non-nested closing `]'.
20897 Returns true iff we found a closing `]'. */
20898
20899 static bool
20900 cp_parser_skip_to_closing_square_bracket (cp_parser *parser)
20901 {
20902 unsigned square_depth = 0;
20903
20904 while (true)
20905 {
20906 cp_token * token = cp_lexer_peek_token (parser->lexer);
20907
20908 switch (token->type)
20909 {
20910 case CPP_EOF:
20911 case CPP_PRAGMA_EOL:
20912 /* If we've run out of tokens, then there is no closing `]'. */
20913 return false;
20914
20915 case CPP_OPEN_SQUARE:
20916 ++square_depth;
20917 break;
20918
20919 case CPP_CLOSE_SQUARE:
20920 if (!square_depth--)
20921 {
20922 cp_lexer_consume_token (parser->lexer);
20923 return true;
20924 }
20925 break;
20926
20927 default:
20928 break;
20929 }
20930
20931 /* Consume the token. */
20932 cp_lexer_consume_token (parser->lexer);
20933 }
20934 }
20935
20936 /* Return true if we are looking at an array-designator, false otherwise. */
20937
20938 static bool
20939 cp_parser_array_designator_p (cp_parser *parser)
20940 {
20941 /* Consume the `['. */
20942 cp_lexer_consume_token (parser->lexer);
20943
20944 cp_lexer_save_tokens (parser->lexer);
20945
20946 /* Skip tokens until the next token is a closing square bracket.
20947 If we find the closing `]', and the next token is a `=', then
20948 we are looking at an array designator. */
20949 bool array_designator_p
20950 = (cp_parser_skip_to_closing_square_bracket (parser)
20951 && cp_lexer_next_token_is (parser->lexer, CPP_EQ));
20952
20953 /* Roll back the tokens we skipped. */
20954 cp_lexer_rollback_tokens (parser->lexer);
20955
20956 return array_designator_p;
20957 }
20958
20959 /* Parse an initializer-list.
20960
20961 initializer-list:
20962 initializer-clause ... [opt]
20963 initializer-list , initializer-clause ... [opt]
20964
20965 GNU Extension:
20966
20967 initializer-list:
20968 designation initializer-clause ...[opt]
20969 initializer-list , designation initializer-clause ...[opt]
20970
20971 designation:
20972 . identifier =
20973 identifier :
20974 [ constant-expression ] =
20975
20976 Returns a vec of constructor_elt. The VALUE of each elt is an expression
20977 for the initializer. If the INDEX of the elt is non-NULL, it is the
20978 IDENTIFIER_NODE naming the field to initialize. NON_CONSTANT_P is
20979 as for cp_parser_initializer. */
20980
20981 static vec<constructor_elt, va_gc> *
20982 cp_parser_initializer_list (cp_parser* parser, bool* non_constant_p)
20983 {
20984 vec<constructor_elt, va_gc> *v = NULL;
20985
20986 /* Assume all of the expressions are constant. */
20987 *non_constant_p = false;
20988
20989 /* Parse the rest of the list. */
20990 while (true)
20991 {
20992 cp_token *token;
20993 tree designator;
20994 tree initializer;
20995 bool clause_non_constant_p;
20996
20997 /* If the next token is an identifier and the following one is a
20998 colon, we are looking at the GNU designated-initializer
20999 syntax. */
21000 if (cp_parser_allow_gnu_extensions_p (parser)
21001 && cp_lexer_next_token_is (parser->lexer, CPP_NAME)
21002 && cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_COLON)
21003 {
21004 /* Warn the user that they are using an extension. */
21005 pedwarn (input_location, OPT_Wpedantic,
21006 "ISO C++ does not allow designated initializers");
21007 /* Consume the identifier. */
21008 designator = cp_lexer_consume_token (parser->lexer)->u.value;
21009 /* Consume the `:'. */
21010 cp_lexer_consume_token (parser->lexer);
21011 }
21012 /* Also handle the C99 syntax, '. id ='. */
21013 else if (cp_parser_allow_gnu_extensions_p (parser)
21014 && cp_lexer_next_token_is (parser->lexer, CPP_DOT)
21015 && cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_NAME
21016 && cp_lexer_peek_nth_token (parser->lexer, 3)->type == CPP_EQ)
21017 {
21018 /* Warn the user that they are using an extension. */
21019 pedwarn (input_location, OPT_Wpedantic,
21020 "ISO C++ does not allow C99 designated initializers");
21021 /* Consume the `.'. */
21022 cp_lexer_consume_token (parser->lexer);
21023 /* Consume the identifier. */
21024 designator = cp_lexer_consume_token (parser->lexer)->u.value;
21025 /* Consume the `='. */
21026 cp_lexer_consume_token (parser->lexer);
21027 }
21028 /* Also handle C99 array designators, '[ const ] ='. */
21029 else if (cp_parser_allow_gnu_extensions_p (parser)
21030 && !c_dialect_objc ()
21031 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
21032 {
21033 /* In C++11, [ could start a lambda-introducer. */
21034 bool non_const = false;
21035
21036 cp_parser_parse_tentatively (parser);
21037
21038 if (!cp_parser_array_designator_p (parser))
21039 {
21040 cp_parser_simulate_error (parser);
21041 designator = NULL_TREE;
21042 }
21043 else
21044 {
21045 designator = cp_parser_constant_expression (parser, true,
21046 &non_const);
21047 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
21048 cp_parser_require (parser, CPP_EQ, RT_EQ);
21049 }
21050
21051 if (!cp_parser_parse_definitely (parser))
21052 designator = NULL_TREE;
21053 else if (non_const)
21054 require_potential_rvalue_constant_expression (designator);
21055 }
21056 else
21057 designator = NULL_TREE;
21058
21059 /* Parse the initializer. */
21060 initializer = cp_parser_initializer_clause (parser,
21061 &clause_non_constant_p);
21062 /* If any clause is non-constant, so is the entire initializer. */
21063 if (clause_non_constant_p)
21064 *non_constant_p = true;
21065
21066 /* If we have an ellipsis, this is an initializer pack
21067 expansion. */
21068 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
21069 {
21070 /* Consume the `...'. */
21071 cp_lexer_consume_token (parser->lexer);
21072
21073 /* Turn the initializer into an initializer expansion. */
21074 initializer = make_pack_expansion (initializer);
21075 }
21076
21077 /* Add it to the vector. */
21078 CONSTRUCTOR_APPEND_ELT (v, designator, initializer);
21079
21080 /* If the next token is not a comma, we have reached the end of
21081 the list. */
21082 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
21083 break;
21084
21085 /* Peek at the next token. */
21086 token = cp_lexer_peek_nth_token (parser->lexer, 2);
21087 /* If the next token is a `}', then we're still done. An
21088 initializer-clause can have a trailing `,' after the
21089 initializer-list and before the closing `}'. */
21090 if (token->type == CPP_CLOSE_BRACE)
21091 break;
21092
21093 /* Consume the `,' token. */
21094 cp_lexer_consume_token (parser->lexer);
21095 }
21096
21097 return v;
21098 }
21099
21100 /* Classes [gram.class] */
21101
21102 /* Parse a class-name.
21103
21104 class-name:
21105 identifier
21106 template-id
21107
21108 TYPENAME_KEYWORD_P is true iff the `typename' keyword has been used
21109 to indicate that names looked up in dependent types should be
21110 assumed to be types. TEMPLATE_KEYWORD_P is true iff the `template'
21111 keyword has been used to indicate that the name that appears next
21112 is a template. TAG_TYPE indicates the explicit tag given before
21113 the type name, if any. If CHECK_DEPENDENCY_P is FALSE, names are
21114 looked up in dependent scopes. If CLASS_HEAD_P is TRUE, this class
21115 is the class being defined in a class-head. If ENUM_OK is TRUE,
21116 enum-names are also accepted.
21117
21118 Returns the TYPE_DECL representing the class. */
21119
21120 static tree
21121 cp_parser_class_name (cp_parser *parser,
21122 bool typename_keyword_p,
21123 bool template_keyword_p,
21124 enum tag_types tag_type,
21125 bool check_dependency_p,
21126 bool class_head_p,
21127 bool is_declaration,
21128 bool enum_ok)
21129 {
21130 tree decl;
21131 tree scope;
21132 bool typename_p;
21133 cp_token *token;
21134 tree identifier = NULL_TREE;
21135
21136 /* All class-names start with an identifier. */
21137 token = cp_lexer_peek_token (parser->lexer);
21138 if (token->type != CPP_NAME && token->type != CPP_TEMPLATE_ID)
21139 {
21140 cp_parser_error (parser, "expected class-name");
21141 return error_mark_node;
21142 }
21143
21144 /* PARSER->SCOPE can be cleared when parsing the template-arguments
21145 to a template-id, so we save it here. */
21146 scope = parser->scope;
21147 if (scope == error_mark_node)
21148 return error_mark_node;
21149
21150 /* Any name names a type if we're following the `typename' keyword
21151 in a qualified name where the enclosing scope is type-dependent. */
21152 typename_p = (typename_keyword_p && scope && TYPE_P (scope)
21153 && dependent_type_p (scope));
21154 /* Handle the common case (an identifier, but not a template-id)
21155 efficiently. */
21156 if (token->type == CPP_NAME
21157 && !cp_parser_nth_token_starts_template_argument_list_p (parser, 2))
21158 {
21159 cp_token *identifier_token;
21160 bool ambiguous_p;
21161
21162 /* Look for the identifier. */
21163 identifier_token = cp_lexer_peek_token (parser->lexer);
21164 ambiguous_p = identifier_token->error_reported;
21165 identifier = cp_parser_identifier (parser);
21166 /* If the next token isn't an identifier, we are certainly not
21167 looking at a class-name. */
21168 if (identifier == error_mark_node)
21169 decl = error_mark_node;
21170 /* If we know this is a type-name, there's no need to look it
21171 up. */
21172 else if (typename_p)
21173 decl = identifier;
21174 else
21175 {
21176 tree ambiguous_decls;
21177 /* If we already know that this lookup is ambiguous, then
21178 we've already issued an error message; there's no reason
21179 to check again. */
21180 if (ambiguous_p)
21181 {
21182 cp_parser_simulate_error (parser);
21183 return error_mark_node;
21184 }
21185 /* If the next token is a `::', then the name must be a type
21186 name.
21187
21188 [basic.lookup.qual]
21189
21190 During the lookup for a name preceding the :: scope
21191 resolution operator, object, function, and enumerator
21192 names are ignored. */
21193 if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
21194 tag_type = scope_type;
21195 /* Look up the name. */
21196 decl = cp_parser_lookup_name (parser, identifier,
21197 tag_type,
21198 /*is_template=*/false,
21199 /*is_namespace=*/false,
21200 check_dependency_p,
21201 &ambiguous_decls,
21202 identifier_token->location);
21203 if (ambiguous_decls)
21204 {
21205 if (cp_parser_parsing_tentatively (parser))
21206 cp_parser_simulate_error (parser);
21207 return error_mark_node;
21208 }
21209 }
21210 }
21211 else
21212 {
21213 /* Try a template-id. */
21214 decl = cp_parser_template_id (parser, template_keyword_p,
21215 check_dependency_p,
21216 tag_type,
21217 is_declaration);
21218 if (decl == error_mark_node)
21219 return error_mark_node;
21220 }
21221
21222 decl = cp_parser_maybe_treat_template_as_class (decl, class_head_p);
21223
21224 /* If this is a typename, create a TYPENAME_TYPE. */
21225 if (typename_p && decl != error_mark_node)
21226 {
21227 decl = make_typename_type (scope, decl, typename_type,
21228 /*complain=*/tf_error);
21229 if (decl != error_mark_node)
21230 decl = TYPE_NAME (decl);
21231 }
21232
21233 decl = strip_using_decl (decl);
21234
21235 /* Check to see that it is really the name of a class. */
21236 if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
21237 && identifier_p (TREE_OPERAND (decl, 0))
21238 && cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
21239 /* Situations like this:
21240
21241 template <typename T> struct A {
21242 typename T::template X<int>::I i;
21243 };
21244
21245 are problematic. Is `T::template X<int>' a class-name? The
21246 standard does not seem to be definitive, but there is no other
21247 valid interpretation of the following `::'. Therefore, those
21248 names are considered class-names. */
21249 {
21250 decl = make_typename_type (scope, decl, tag_type, tf_error);
21251 if (decl != error_mark_node)
21252 decl = TYPE_NAME (decl);
21253 }
21254 else if (TREE_CODE (decl) != TYPE_DECL
21255 || TREE_TYPE (decl) == error_mark_node
21256 || !(MAYBE_CLASS_TYPE_P (TREE_TYPE (decl))
21257 || (enum_ok && TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE))
21258 /* In Objective-C 2.0, a classname followed by '.' starts a
21259 dot-syntax expression, and it's not a type-name. */
21260 || (c_dialect_objc ()
21261 && cp_lexer_peek_token (parser->lexer)->type == CPP_DOT
21262 && objc_is_class_name (decl)))
21263 decl = error_mark_node;
21264
21265 if (decl == error_mark_node)
21266 cp_parser_error (parser, "expected class-name");
21267 else if (identifier && !parser->scope)
21268 maybe_note_name_used_in_class (identifier, decl);
21269
21270 return decl;
21271 }
21272
21273 /* Parse a class-specifier.
21274
21275 class-specifier:
21276 class-head { member-specification [opt] }
21277
21278 Returns the TREE_TYPE representing the class. */
21279
21280 static tree
21281 cp_parser_class_specifier_1 (cp_parser* parser)
21282 {
21283 tree type;
21284 tree attributes = NULL_TREE;
21285 bool nested_name_specifier_p;
21286 unsigned saved_num_template_parameter_lists;
21287 bool saved_in_function_body;
21288 unsigned char in_statement;
21289 bool in_switch_statement_p;
21290 bool saved_in_unbraced_linkage_specification_p;
21291 tree old_scope = NULL_TREE;
21292 tree scope = NULL_TREE;
21293 cp_token *closing_brace;
21294
21295 push_deferring_access_checks (dk_no_deferred);
21296
21297 /* Parse the class-head. */
21298 type = cp_parser_class_head (parser,
21299 &nested_name_specifier_p);
21300 /* If the class-head was a semantic disaster, skip the entire body
21301 of the class. */
21302 if (!type)
21303 {
21304 cp_parser_skip_to_end_of_block_or_statement (parser);
21305 pop_deferring_access_checks ();
21306 return error_mark_node;
21307 }
21308
21309 /* Look for the `{'. */
21310 if (!cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
21311 {
21312 pop_deferring_access_checks ();
21313 return error_mark_node;
21314 }
21315
21316 cp_ensure_no_omp_declare_simd (parser);
21317 cp_ensure_no_oacc_routine (parser);
21318
21319 /* Issue an error message if type-definitions are forbidden here. */
21320 cp_parser_check_type_definition (parser);
21321 /* Remember that we are defining one more class. */
21322 ++parser->num_classes_being_defined;
21323 /* Inside the class, surrounding template-parameter-lists do not
21324 apply. */
21325 saved_num_template_parameter_lists
21326 = parser->num_template_parameter_lists;
21327 parser->num_template_parameter_lists = 0;
21328 /* We are not in a function body. */
21329 saved_in_function_body = parser->in_function_body;
21330 parser->in_function_body = false;
21331 /* Or in a loop. */
21332 in_statement = parser->in_statement;
21333 parser->in_statement = 0;
21334 /* Or in a switch. */
21335 in_switch_statement_p = parser->in_switch_statement_p;
21336 parser->in_switch_statement_p = false;
21337 /* We are not immediately inside an extern "lang" block. */
21338 saved_in_unbraced_linkage_specification_p
21339 = parser->in_unbraced_linkage_specification_p;
21340 parser->in_unbraced_linkage_specification_p = false;
21341
21342 // Associate constraints with the type.
21343 if (flag_concepts)
21344 type = associate_classtype_constraints (type);
21345
21346 /* Start the class. */
21347 if (nested_name_specifier_p)
21348 {
21349 scope = CP_DECL_CONTEXT (TYPE_MAIN_DECL (type));
21350 old_scope = push_inner_scope (scope);
21351 }
21352 type = begin_class_definition (type);
21353
21354 if (type == error_mark_node)
21355 /* If the type is erroneous, skip the entire body of the class. */
21356 cp_parser_skip_to_closing_brace (parser);
21357 else
21358 /* Parse the member-specification. */
21359 cp_parser_member_specification_opt (parser);
21360
21361 /* Look for the trailing `}'. */
21362 closing_brace = cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
21363 /* Look for trailing attributes to apply to this class. */
21364 if (cp_parser_allow_gnu_extensions_p (parser))
21365 attributes = cp_parser_gnu_attributes_opt (parser);
21366 if (type != error_mark_node)
21367 type = finish_struct (type, attributes);
21368 if (nested_name_specifier_p)
21369 pop_inner_scope (old_scope, scope);
21370
21371 /* We've finished a type definition. Check for the common syntax
21372 error of forgetting a semicolon after the definition. We need to
21373 be careful, as we can't just check for not-a-semicolon and be done
21374 with it; the user might have typed:
21375
21376 class X { } c = ...;
21377 class X { } *p = ...;
21378
21379 and so forth. Instead, enumerate all the possible tokens that
21380 might follow this production; if we don't see one of them, then
21381 complain and silently insert the semicolon. */
21382 {
21383 cp_token *token = cp_lexer_peek_token (parser->lexer);
21384 bool want_semicolon = true;
21385
21386 if (cp_next_tokens_can_be_std_attribute_p (parser))
21387 /* Don't try to parse c++11 attributes here. As per the
21388 grammar, that should be a task for
21389 cp_parser_decl_specifier_seq. */
21390 want_semicolon = false;
21391
21392 switch (token->type)
21393 {
21394 case CPP_NAME:
21395 case CPP_SEMICOLON:
21396 case CPP_MULT:
21397 case CPP_AND:
21398 case CPP_OPEN_PAREN:
21399 case CPP_CLOSE_PAREN:
21400 case CPP_COMMA:
21401 want_semicolon = false;
21402 break;
21403
21404 /* While it's legal for type qualifiers and storage class
21405 specifiers to follow type definitions in the grammar, only
21406 compiler testsuites contain code like that. Assume that if
21407 we see such code, then what we're really seeing is a case
21408 like:
21409
21410 class X { }
21411 const <type> var = ...;
21412
21413 or
21414
21415 class Y { }
21416 static <type> func (...) ...
21417
21418 i.e. the qualifier or specifier applies to the next
21419 declaration. To do so, however, we need to look ahead one
21420 more token to see if *that* token is a type specifier.
21421
21422 This code could be improved to handle:
21423
21424 class Z { }
21425 static const <type> var = ...; */
21426 case CPP_KEYWORD:
21427 if (keyword_is_decl_specifier (token->keyword))
21428 {
21429 cp_token *lookahead = cp_lexer_peek_nth_token (parser->lexer, 2);
21430
21431 /* Handling user-defined types here would be nice, but very
21432 tricky. */
21433 want_semicolon
21434 = (lookahead->type == CPP_KEYWORD
21435 && keyword_begins_type_specifier (lookahead->keyword));
21436 }
21437 break;
21438 default:
21439 break;
21440 }
21441
21442 /* If we don't have a type, then something is very wrong and we
21443 shouldn't try to do anything clever. Likewise for not seeing the
21444 closing brace. */
21445 if (closing_brace && TYPE_P (type) && want_semicolon)
21446 {
21447 cp_token_position prev
21448 = cp_lexer_previous_token_position (parser->lexer);
21449 cp_token *prev_token = cp_lexer_token_at (parser->lexer, prev);
21450 location_t loc = prev_token->location;
21451
21452 if (CLASSTYPE_DECLARED_CLASS (type))
21453 error_at (loc, "expected %<;%> after class definition");
21454 else if (TREE_CODE (type) == RECORD_TYPE)
21455 error_at (loc, "expected %<;%> after struct definition");
21456 else if (TREE_CODE (type) == UNION_TYPE)
21457 error_at (loc, "expected %<;%> after union definition");
21458 else
21459 gcc_unreachable ();
21460
21461 /* Unget one token and smash it to look as though we encountered
21462 a semicolon in the input stream. */
21463 cp_lexer_set_token_position (parser->lexer, prev);
21464 token = cp_lexer_peek_token (parser->lexer);
21465 token->type = CPP_SEMICOLON;
21466 token->keyword = RID_MAX;
21467 }
21468 }
21469
21470 /* If this class is not itself within the scope of another class,
21471 then we need to parse the bodies of all of the queued function
21472 definitions. Note that the queued functions defined in a class
21473 are not always processed immediately following the
21474 class-specifier for that class. Consider:
21475
21476 struct A {
21477 struct B { void f() { sizeof (A); } };
21478 };
21479
21480 If `f' were processed before the processing of `A' were
21481 completed, there would be no way to compute the size of `A'.
21482 Note that the nesting we are interested in here is lexical --
21483 not the semantic nesting given by TYPE_CONTEXT. In particular,
21484 for:
21485
21486 struct A { struct B; };
21487 struct A::B { void f() { } };
21488
21489 there is no need to delay the parsing of `A::B::f'. */
21490 if (--parser->num_classes_being_defined == 0)
21491 {
21492 tree decl;
21493 tree class_type = NULL_TREE;
21494 tree pushed_scope = NULL_TREE;
21495 unsigned ix;
21496 cp_default_arg_entry *e;
21497 tree save_ccp, save_ccr;
21498
21499 /* In a first pass, parse default arguments to the functions.
21500 Then, in a second pass, parse the bodies of the functions.
21501 This two-phased approach handles cases like:
21502
21503 struct S {
21504 void f() { g(); }
21505 void g(int i = 3);
21506 };
21507
21508 */
21509 FOR_EACH_VEC_SAFE_ELT (unparsed_funs_with_default_args, ix, e)
21510 {
21511 decl = e->decl;
21512 /* If there are default arguments that have not yet been processed,
21513 take care of them now. */
21514 if (class_type != e->class_type)
21515 {
21516 if (pushed_scope)
21517 pop_scope (pushed_scope);
21518 class_type = e->class_type;
21519 pushed_scope = push_scope (class_type);
21520 }
21521 /* Make sure that any template parameters are in scope. */
21522 maybe_begin_member_template_processing (decl);
21523 /* Parse the default argument expressions. */
21524 cp_parser_late_parsing_default_args (parser, decl);
21525 /* Remove any template parameters from the symbol table. */
21526 maybe_end_member_template_processing ();
21527 }
21528 vec_safe_truncate (unparsed_funs_with_default_args, 0);
21529 /* Now parse any NSDMIs. */
21530 save_ccp = current_class_ptr;
21531 save_ccr = current_class_ref;
21532 FOR_EACH_VEC_SAFE_ELT (unparsed_nsdmis, ix, decl)
21533 {
21534 if (class_type != DECL_CONTEXT (decl))
21535 {
21536 if (pushed_scope)
21537 pop_scope (pushed_scope);
21538 class_type = DECL_CONTEXT (decl);
21539 pushed_scope = push_scope (class_type);
21540 }
21541 inject_this_parameter (class_type, TYPE_UNQUALIFIED);
21542 cp_parser_late_parsing_nsdmi (parser, decl);
21543 }
21544 vec_safe_truncate (unparsed_nsdmis, 0);
21545 current_class_ptr = save_ccp;
21546 current_class_ref = save_ccr;
21547 if (pushed_scope)
21548 pop_scope (pushed_scope);
21549
21550 /* Now do some post-NSDMI bookkeeping. */
21551 FOR_EACH_VEC_SAFE_ELT (unparsed_classes, ix, class_type)
21552 after_nsdmi_defaulted_late_checks (class_type);
21553 vec_safe_truncate (unparsed_classes, 0);
21554 after_nsdmi_defaulted_late_checks (type);
21555
21556 /* Now parse the body of the functions. */
21557 if (flag_openmp)
21558 {
21559 /* OpenMP UDRs need to be parsed before all other functions. */
21560 FOR_EACH_VEC_SAFE_ELT (unparsed_funs_with_definitions, ix, decl)
21561 if (DECL_OMP_DECLARE_REDUCTION_P (decl))
21562 cp_parser_late_parsing_for_member (parser, decl);
21563 FOR_EACH_VEC_SAFE_ELT (unparsed_funs_with_definitions, ix, decl)
21564 if (!DECL_OMP_DECLARE_REDUCTION_P (decl))
21565 cp_parser_late_parsing_for_member (parser, decl);
21566 }
21567 else
21568 FOR_EACH_VEC_SAFE_ELT (unparsed_funs_with_definitions, ix, decl)
21569 cp_parser_late_parsing_for_member (parser, decl);
21570 vec_safe_truncate (unparsed_funs_with_definitions, 0);
21571 }
21572 else
21573 vec_safe_push (unparsed_classes, type);
21574
21575 /* Put back any saved access checks. */
21576 pop_deferring_access_checks ();
21577
21578 /* Restore saved state. */
21579 parser->in_switch_statement_p = in_switch_statement_p;
21580 parser->in_statement = in_statement;
21581 parser->in_function_body = saved_in_function_body;
21582 parser->num_template_parameter_lists
21583 = saved_num_template_parameter_lists;
21584 parser->in_unbraced_linkage_specification_p
21585 = saved_in_unbraced_linkage_specification_p;
21586
21587 return type;
21588 }
21589
21590 static tree
21591 cp_parser_class_specifier (cp_parser* parser)
21592 {
21593 tree ret;
21594 timevar_push (TV_PARSE_STRUCT);
21595 ret = cp_parser_class_specifier_1 (parser);
21596 timevar_pop (TV_PARSE_STRUCT);
21597 return ret;
21598 }
21599
21600 /* Parse a class-head.
21601
21602 class-head:
21603 class-key identifier [opt] base-clause [opt]
21604 class-key nested-name-specifier identifier class-virt-specifier [opt] base-clause [opt]
21605 class-key nested-name-specifier [opt] template-id
21606 base-clause [opt]
21607
21608 class-virt-specifier:
21609 final
21610
21611 GNU Extensions:
21612 class-key attributes identifier [opt] base-clause [opt]
21613 class-key attributes nested-name-specifier identifier base-clause [opt]
21614 class-key attributes nested-name-specifier [opt] template-id
21615 base-clause [opt]
21616
21617 Upon return BASES is initialized to the list of base classes (or
21618 NULL, if there are none) in the same form returned by
21619 cp_parser_base_clause.
21620
21621 Returns the TYPE of the indicated class. Sets
21622 *NESTED_NAME_SPECIFIER_P to TRUE iff one of the productions
21623 involving a nested-name-specifier was used, and FALSE otherwise.
21624
21625 Returns error_mark_node if this is not a class-head.
21626
21627 Returns NULL_TREE if the class-head is syntactically valid, but
21628 semantically invalid in a way that means we should skip the entire
21629 body of the class. */
21630
21631 static tree
21632 cp_parser_class_head (cp_parser* parser,
21633 bool* nested_name_specifier_p)
21634 {
21635 tree nested_name_specifier;
21636 enum tag_types class_key;
21637 tree id = NULL_TREE;
21638 tree type = NULL_TREE;
21639 tree attributes;
21640 tree bases;
21641 cp_virt_specifiers virt_specifiers = VIRT_SPEC_UNSPECIFIED;
21642 bool template_id_p = false;
21643 bool qualified_p = false;
21644 bool invalid_nested_name_p = false;
21645 bool invalid_explicit_specialization_p = false;
21646 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
21647 tree pushed_scope = NULL_TREE;
21648 unsigned num_templates;
21649 cp_token *type_start_token = NULL, *nested_name_specifier_token_start = NULL;
21650 /* Assume no nested-name-specifier will be present. */
21651 *nested_name_specifier_p = false;
21652 /* Assume no template parameter lists will be used in defining the
21653 type. */
21654 num_templates = 0;
21655 parser->colon_corrects_to_scope_p = false;
21656
21657 /* Look for the class-key. */
21658 class_key = cp_parser_class_key (parser);
21659 if (class_key == none_type)
21660 return error_mark_node;
21661
21662 location_t class_head_start_location = input_location;
21663
21664 /* Parse the attributes. */
21665 attributes = cp_parser_attributes_opt (parser);
21666
21667 /* If the next token is `::', that is invalid -- but sometimes
21668 people do try to write:
21669
21670 struct ::S {};
21671
21672 Handle this gracefully by accepting the extra qualifier, and then
21673 issuing an error about it later if this really is a
21674 class-head. If it turns out just to be an elaborated type
21675 specifier, remain silent. */
21676 if (cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/false))
21677 qualified_p = true;
21678
21679 push_deferring_access_checks (dk_no_check);
21680
21681 /* Determine the name of the class. Begin by looking for an
21682 optional nested-name-specifier. */
21683 nested_name_specifier_token_start = cp_lexer_peek_token (parser->lexer);
21684 nested_name_specifier
21685 = cp_parser_nested_name_specifier_opt (parser,
21686 /*typename_keyword_p=*/false,
21687 /*check_dependency_p=*/false,
21688 /*type_p=*/true,
21689 /*is_declaration=*/false);
21690 /* If there was a nested-name-specifier, then there *must* be an
21691 identifier. */
21692 if (nested_name_specifier)
21693 {
21694 type_start_token = cp_lexer_peek_token (parser->lexer);
21695 /* Although the grammar says `identifier', it really means
21696 `class-name' or `template-name'. You are only allowed to
21697 define a class that has already been declared with this
21698 syntax.
21699
21700 The proposed resolution for Core Issue 180 says that wherever
21701 you see `class T::X' you should treat `X' as a type-name.
21702
21703 It is OK to define an inaccessible class; for example:
21704
21705 class A { class B; };
21706 class A::B {};
21707
21708 We do not know if we will see a class-name, or a
21709 template-name. We look for a class-name first, in case the
21710 class-name is a template-id; if we looked for the
21711 template-name first we would stop after the template-name. */
21712 cp_parser_parse_tentatively (parser);
21713 type = cp_parser_class_name (parser,
21714 /*typename_keyword_p=*/false,
21715 /*template_keyword_p=*/false,
21716 class_type,
21717 /*check_dependency_p=*/false,
21718 /*class_head_p=*/true,
21719 /*is_declaration=*/false);
21720 /* If that didn't work, ignore the nested-name-specifier. */
21721 if (!cp_parser_parse_definitely (parser))
21722 {
21723 invalid_nested_name_p = true;
21724 type_start_token = cp_lexer_peek_token (parser->lexer);
21725 id = cp_parser_identifier (parser);
21726 if (id == error_mark_node)
21727 id = NULL_TREE;
21728 }
21729 /* If we could not find a corresponding TYPE, treat this
21730 declaration like an unqualified declaration. */
21731 if (type == error_mark_node)
21732 nested_name_specifier = NULL_TREE;
21733 /* Otherwise, count the number of templates used in TYPE and its
21734 containing scopes. */
21735 else
21736 {
21737 tree scope;
21738
21739 for (scope = TREE_TYPE (type);
21740 scope && TREE_CODE (scope) != NAMESPACE_DECL;
21741 scope = get_containing_scope (scope))
21742 if (TYPE_P (scope)
21743 && CLASS_TYPE_P (scope)
21744 && CLASSTYPE_TEMPLATE_INFO (scope)
21745 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (scope))
21746 && (!CLASSTYPE_TEMPLATE_SPECIALIZATION (scope)
21747 || uses_template_parms (CLASSTYPE_TI_ARGS (scope))))
21748 ++num_templates;
21749 }
21750 }
21751 /* Otherwise, the identifier is optional. */
21752 else
21753 {
21754 /* We don't know whether what comes next is a template-id,
21755 an identifier, or nothing at all. */
21756 cp_parser_parse_tentatively (parser);
21757 /* Check for a template-id. */
21758 type_start_token = cp_lexer_peek_token (parser->lexer);
21759 id = cp_parser_template_id (parser,
21760 /*template_keyword_p=*/false,
21761 /*check_dependency_p=*/true,
21762 class_key,
21763 /*is_declaration=*/true);
21764 /* If that didn't work, it could still be an identifier. */
21765 if (!cp_parser_parse_definitely (parser))
21766 {
21767 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
21768 {
21769 type_start_token = cp_lexer_peek_token (parser->lexer);
21770 id = cp_parser_identifier (parser);
21771 }
21772 else
21773 id = NULL_TREE;
21774 }
21775 else
21776 {
21777 template_id_p = true;
21778 ++num_templates;
21779 }
21780 }
21781
21782 pop_deferring_access_checks ();
21783
21784 if (id)
21785 {
21786 cp_parser_check_for_invalid_template_id (parser, id,
21787 class_key,
21788 type_start_token->location);
21789 }
21790 virt_specifiers = cp_parser_virt_specifier_seq_opt (parser);
21791
21792 /* If it's not a `:' or a `{' then we can't really be looking at a
21793 class-head, since a class-head only appears as part of a
21794 class-specifier. We have to detect this situation before calling
21795 xref_tag, since that has irreversible side-effects. */
21796 if (!cp_parser_next_token_starts_class_definition_p (parser))
21797 {
21798 cp_parser_error (parser, "expected %<{%> or %<:%>");
21799 type = error_mark_node;
21800 goto out;
21801 }
21802
21803 /* At this point, we're going ahead with the class-specifier, even
21804 if some other problem occurs. */
21805 cp_parser_commit_to_tentative_parse (parser);
21806 if (virt_specifiers & VIRT_SPEC_OVERRIDE)
21807 {
21808 cp_parser_error (parser,
21809 "cannot specify %<override%> for a class");
21810 type = error_mark_node;
21811 goto out;
21812 }
21813 /* Issue the error about the overly-qualified name now. */
21814 if (qualified_p)
21815 {
21816 cp_parser_error (parser,
21817 "global qualification of class name is invalid");
21818 type = error_mark_node;
21819 goto out;
21820 }
21821 else if (invalid_nested_name_p)
21822 {
21823 cp_parser_error (parser,
21824 "qualified name does not name a class");
21825 type = error_mark_node;
21826 goto out;
21827 }
21828 else if (nested_name_specifier)
21829 {
21830 tree scope;
21831
21832 /* Reject typedef-names in class heads. */
21833 if (!DECL_IMPLICIT_TYPEDEF_P (type))
21834 {
21835 error_at (type_start_token->location,
21836 "invalid class name in declaration of %qD",
21837 type);
21838 type = NULL_TREE;
21839 goto done;
21840 }
21841
21842 /* Figure out in what scope the declaration is being placed. */
21843 scope = current_scope ();
21844 /* If that scope does not contain the scope in which the
21845 class was originally declared, the program is invalid. */
21846 if (scope && !is_ancestor (scope, nested_name_specifier))
21847 {
21848 if (at_namespace_scope_p ())
21849 error_at (type_start_token->location,
21850 "declaration of %qD in namespace %qD which does not "
21851 "enclose %qD",
21852 type, scope, nested_name_specifier);
21853 else
21854 error_at (type_start_token->location,
21855 "declaration of %qD in %qD which does not enclose %qD",
21856 type, scope, nested_name_specifier);
21857 type = NULL_TREE;
21858 goto done;
21859 }
21860 /* [dcl.meaning]
21861
21862 A declarator-id shall not be qualified except for the
21863 definition of a ... nested class outside of its class
21864 ... [or] the definition or explicit instantiation of a
21865 class member of a namespace outside of its namespace. */
21866 if (scope == nested_name_specifier)
21867 {
21868 permerror (nested_name_specifier_token_start->location,
21869 "extra qualification not allowed");
21870 nested_name_specifier = NULL_TREE;
21871 num_templates = 0;
21872 }
21873 }
21874 /* An explicit-specialization must be preceded by "template <>". If
21875 it is not, try to recover gracefully. */
21876 if (at_namespace_scope_p ()
21877 && parser->num_template_parameter_lists == 0
21878 && template_id_p)
21879 {
21880 /* Build a location of this form:
21881 struct typename <ARGS>
21882 ^~~~~~~~~~~~~~~~~~~~~~
21883 with caret==start at the start token, and
21884 finishing at the end of the type. */
21885 location_t reported_loc
21886 = make_location (class_head_start_location,
21887 class_head_start_location,
21888 get_finish (type_start_token->location));
21889 rich_location richloc (line_table, reported_loc);
21890 richloc.add_fixit_insert (class_head_start_location, "template <> ");
21891 error_at_rich_loc
21892 (&richloc,
21893 "an explicit specialization must be preceded by %<template <>%>");
21894 invalid_explicit_specialization_p = true;
21895 /* Take the same action that would have been taken by
21896 cp_parser_explicit_specialization. */
21897 ++parser->num_template_parameter_lists;
21898 begin_specialization ();
21899 }
21900 /* There must be no "return" statements between this point and the
21901 end of this function; set "type "to the correct return value and
21902 use "goto done;" to return. */
21903 /* Make sure that the right number of template parameters were
21904 present. */
21905 if (!cp_parser_check_template_parameters (parser, num_templates,
21906 type_start_token->location,
21907 /*declarator=*/NULL))
21908 {
21909 /* If something went wrong, there is no point in even trying to
21910 process the class-definition. */
21911 type = NULL_TREE;
21912 goto done;
21913 }
21914
21915 /* Look up the type. */
21916 if (template_id_p)
21917 {
21918 if (TREE_CODE (id) == TEMPLATE_ID_EXPR
21919 && (DECL_FUNCTION_TEMPLATE_P (TREE_OPERAND (id, 0))
21920 || TREE_CODE (TREE_OPERAND (id, 0)) == OVERLOAD))
21921 {
21922 error_at (type_start_token->location,
21923 "function template %qD redeclared as a class template", id);
21924 type = error_mark_node;
21925 }
21926 else
21927 {
21928 type = TREE_TYPE (id);
21929 type = maybe_process_partial_specialization (type);
21930 }
21931 if (nested_name_specifier)
21932 pushed_scope = push_scope (nested_name_specifier);
21933 }
21934 else if (nested_name_specifier)
21935 {
21936 tree class_type;
21937
21938 /* Given:
21939
21940 template <typename T> struct S { struct T };
21941 template <typename T> struct S<T>::T { };
21942
21943 we will get a TYPENAME_TYPE when processing the definition of
21944 `S::T'. We need to resolve it to the actual type before we
21945 try to define it. */
21946 if (TREE_CODE (TREE_TYPE (type)) == TYPENAME_TYPE)
21947 {
21948 class_type = resolve_typename_type (TREE_TYPE (type),
21949 /*only_current_p=*/false);
21950 if (TREE_CODE (class_type) != TYPENAME_TYPE)
21951 type = TYPE_NAME (class_type);
21952 else
21953 {
21954 cp_parser_error (parser, "could not resolve typename type");
21955 type = error_mark_node;
21956 }
21957 }
21958
21959 if (maybe_process_partial_specialization (TREE_TYPE (type))
21960 == error_mark_node)
21961 {
21962 type = NULL_TREE;
21963 goto done;
21964 }
21965
21966 class_type = current_class_type;
21967 /* Enter the scope indicated by the nested-name-specifier. */
21968 pushed_scope = push_scope (nested_name_specifier);
21969 /* Get the canonical version of this type. */
21970 type = TYPE_MAIN_DECL (TREE_TYPE (type));
21971 /* Call push_template_decl if it seems like we should be defining a
21972 template either from the template headers or the type we're
21973 defining, so that we diagnose both extra and missing headers. */
21974 if ((PROCESSING_REAL_TEMPLATE_DECL_P ()
21975 || CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (type)))
21976 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (type)))
21977 {
21978 type = push_template_decl (type);
21979 if (type == error_mark_node)
21980 {
21981 type = NULL_TREE;
21982 goto done;
21983 }
21984 }
21985
21986 type = TREE_TYPE (type);
21987 *nested_name_specifier_p = true;
21988 }
21989 else /* The name is not a nested name. */
21990 {
21991 /* If the class was unnamed, create a dummy name. */
21992 if (!id)
21993 id = make_anon_name ();
21994 type = xref_tag (class_key, id, /*tag_scope=*/ts_current,
21995 parser->num_template_parameter_lists);
21996 }
21997
21998 /* Indicate whether this class was declared as a `class' or as a
21999 `struct'. */
22000 if (TREE_CODE (type) == RECORD_TYPE)
22001 CLASSTYPE_DECLARED_CLASS (type) = (class_key == class_type);
22002 cp_parser_check_class_key (class_key, type);
22003
22004 /* If this type was already complete, and we see another definition,
22005 that's an error. */
22006 if (type != error_mark_node && COMPLETE_TYPE_P (type))
22007 {
22008 error_at (type_start_token->location, "redefinition of %q#T",
22009 type);
22010 error_at (type_start_token->location, "previous definition of %q+#T",
22011 type);
22012 type = NULL_TREE;
22013 goto done;
22014 }
22015 else if (type == error_mark_node)
22016 type = NULL_TREE;
22017
22018 if (type)
22019 {
22020 /* Apply attributes now, before any use of the class as a template
22021 argument in its base list. */
22022 cplus_decl_attributes (&type, attributes, (int)ATTR_FLAG_TYPE_IN_PLACE);
22023 fixup_attribute_variants (type);
22024 }
22025
22026 /* We will have entered the scope containing the class; the names of
22027 base classes should be looked up in that context. For example:
22028
22029 struct A { struct B {}; struct C; };
22030 struct A::C : B {};
22031
22032 is valid. */
22033
22034 /* Get the list of base-classes, if there is one. */
22035 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
22036 {
22037 /* PR59482: enter the class scope so that base-specifiers are looked
22038 up correctly. */
22039 if (type)
22040 pushclass (type);
22041 bases = cp_parser_base_clause (parser);
22042 /* PR59482: get out of the previously pushed class scope so that the
22043 subsequent pops pop the right thing. */
22044 if (type)
22045 popclass ();
22046 }
22047 else
22048 bases = NULL_TREE;
22049
22050 /* If we're really defining a class, process the base classes.
22051 If they're invalid, fail. */
22052 if (type && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE)
22053 && !xref_basetypes (type, bases))
22054 type = NULL_TREE;
22055
22056 done:
22057 /* Leave the scope given by the nested-name-specifier. We will
22058 enter the class scope itself while processing the members. */
22059 if (pushed_scope)
22060 pop_scope (pushed_scope);
22061
22062 if (invalid_explicit_specialization_p)
22063 {
22064 end_specialization ();
22065 --parser->num_template_parameter_lists;
22066 }
22067
22068 if (type)
22069 DECL_SOURCE_LOCATION (TYPE_NAME (type)) = type_start_token->location;
22070 if (type && (virt_specifiers & VIRT_SPEC_FINAL))
22071 CLASSTYPE_FINAL (type) = 1;
22072 out:
22073 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
22074 return type;
22075 }
22076
22077 /* Parse a class-key.
22078
22079 class-key:
22080 class
22081 struct
22082 union
22083
22084 Returns the kind of class-key specified, or none_type to indicate
22085 error. */
22086
22087 static enum tag_types
22088 cp_parser_class_key (cp_parser* parser)
22089 {
22090 cp_token *token;
22091 enum tag_types tag_type;
22092
22093 /* Look for the class-key. */
22094 token = cp_parser_require (parser, CPP_KEYWORD, RT_CLASS_KEY);
22095 if (!token)
22096 return none_type;
22097
22098 /* Check to see if the TOKEN is a class-key. */
22099 tag_type = cp_parser_token_is_class_key (token);
22100 if (!tag_type)
22101 cp_parser_error (parser, "expected class-key");
22102 return tag_type;
22103 }
22104
22105 /* Parse a type-parameter-key.
22106
22107 type-parameter-key:
22108 class
22109 typename
22110 */
22111
22112 static void
22113 cp_parser_type_parameter_key (cp_parser* parser)
22114 {
22115 /* Look for the type-parameter-key. */
22116 enum tag_types tag_type = none_type;
22117 cp_token *token = cp_lexer_peek_token (parser->lexer);
22118 if ((tag_type = cp_parser_token_is_type_parameter_key (token)) != none_type)
22119 {
22120 cp_lexer_consume_token (parser->lexer);
22121 if (pedantic && tag_type == typename_type && cxx_dialect < cxx1z)
22122 /* typename is not allowed in a template template parameter
22123 by the standard until C++1Z. */
22124 pedwarn (token->location, OPT_Wpedantic,
22125 "ISO C++ forbids typename key in template template parameter;"
22126 " use -std=c++1z or -std=gnu++1z");
22127 }
22128 else
22129 cp_parser_error (parser, "expected %<class%> or %<typename%>");
22130
22131 return;
22132 }
22133
22134 /* Parse an (optional) member-specification.
22135
22136 member-specification:
22137 member-declaration member-specification [opt]
22138 access-specifier : member-specification [opt] */
22139
22140 static void
22141 cp_parser_member_specification_opt (cp_parser* parser)
22142 {
22143 while (true)
22144 {
22145 cp_token *token;
22146 enum rid keyword;
22147
22148 /* Peek at the next token. */
22149 token = cp_lexer_peek_token (parser->lexer);
22150 /* If it's a `}', or EOF then we've seen all the members. */
22151 if (token->type == CPP_CLOSE_BRACE
22152 || token->type == CPP_EOF
22153 || token->type == CPP_PRAGMA_EOL)
22154 break;
22155
22156 /* See if this token is a keyword. */
22157 keyword = token->keyword;
22158 switch (keyword)
22159 {
22160 case RID_PUBLIC:
22161 case RID_PROTECTED:
22162 case RID_PRIVATE:
22163 /* Consume the access-specifier. */
22164 cp_lexer_consume_token (parser->lexer);
22165 /* Remember which access-specifier is active. */
22166 current_access_specifier = token->u.value;
22167 /* Look for the `:'. */
22168 cp_parser_require (parser, CPP_COLON, RT_COLON);
22169 break;
22170
22171 default:
22172 /* Accept #pragmas at class scope. */
22173 if (token->type == CPP_PRAGMA)
22174 {
22175 cp_parser_pragma (parser, pragma_member, NULL);
22176 break;
22177 }
22178
22179 /* Otherwise, the next construction must be a
22180 member-declaration. */
22181 cp_parser_member_declaration (parser);
22182 }
22183 }
22184 }
22185
22186 /* Parse a member-declaration.
22187
22188 member-declaration:
22189 decl-specifier-seq [opt] member-declarator-list [opt] ;
22190 function-definition ; [opt]
22191 :: [opt] nested-name-specifier template [opt] unqualified-id ;
22192 using-declaration
22193 template-declaration
22194 alias-declaration
22195
22196 member-declarator-list:
22197 member-declarator
22198 member-declarator-list , member-declarator
22199
22200 member-declarator:
22201 declarator pure-specifier [opt]
22202 declarator constant-initializer [opt]
22203 identifier [opt] : constant-expression
22204
22205 GNU Extensions:
22206
22207 member-declaration:
22208 __extension__ member-declaration
22209
22210 member-declarator:
22211 declarator attributes [opt] pure-specifier [opt]
22212 declarator attributes [opt] constant-initializer [opt]
22213 identifier [opt] attributes [opt] : constant-expression
22214
22215 C++0x Extensions:
22216
22217 member-declaration:
22218 static_assert-declaration */
22219
22220 static void
22221 cp_parser_member_declaration (cp_parser* parser)
22222 {
22223 cp_decl_specifier_seq decl_specifiers;
22224 tree prefix_attributes;
22225 tree decl;
22226 int declares_class_or_enum;
22227 bool friend_p;
22228 cp_token *token = NULL;
22229 cp_token *decl_spec_token_start = NULL;
22230 cp_token *initializer_token_start = NULL;
22231 int saved_pedantic;
22232 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
22233
22234 /* Check for the `__extension__' keyword. */
22235 if (cp_parser_extension_opt (parser, &saved_pedantic))
22236 {
22237 /* Recurse. */
22238 cp_parser_member_declaration (parser);
22239 /* Restore the old value of the PEDANTIC flag. */
22240 pedantic = saved_pedantic;
22241
22242 return;
22243 }
22244
22245 /* Check for a template-declaration. */
22246 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
22247 {
22248 /* An explicit specialization here is an error condition, and we
22249 expect the specialization handler to detect and report this. */
22250 if (cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_LESS
22251 && cp_lexer_peek_nth_token (parser->lexer, 3)->type == CPP_GREATER)
22252 cp_parser_explicit_specialization (parser);
22253 else
22254 cp_parser_template_declaration (parser, /*member_p=*/true);
22255
22256 return;
22257 }
22258 /* Check for a template introduction. */
22259 else if (cp_parser_template_declaration_after_export (parser, true))
22260 return;
22261
22262 /* Check for a using-declaration. */
22263 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_USING))
22264 {
22265 if (cxx_dialect < cxx11)
22266 {
22267 /* Parse the using-declaration. */
22268 cp_parser_using_declaration (parser,
22269 /*access_declaration_p=*/false);
22270 return;
22271 }
22272 else
22273 {
22274 tree decl;
22275 bool alias_decl_expected;
22276 cp_parser_parse_tentatively (parser);
22277 decl = cp_parser_alias_declaration (parser);
22278 /* Note that if we actually see the '=' token after the
22279 identifier, cp_parser_alias_declaration commits the
22280 tentative parse. In that case, we really expect an
22281 alias-declaration. Otherwise, we expect a using
22282 declaration. */
22283 alias_decl_expected =
22284 !cp_parser_uncommitted_to_tentative_parse_p (parser);
22285 cp_parser_parse_definitely (parser);
22286
22287 if (alias_decl_expected)
22288 finish_member_declaration (decl);
22289 else
22290 cp_parser_using_declaration (parser,
22291 /*access_declaration_p=*/false);
22292 return;
22293 }
22294 }
22295
22296 /* Check for @defs. */
22297 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_AT_DEFS))
22298 {
22299 tree ivar, member;
22300 tree ivar_chains = cp_parser_objc_defs_expression (parser);
22301 ivar = ivar_chains;
22302 while (ivar)
22303 {
22304 member = ivar;
22305 ivar = TREE_CHAIN (member);
22306 TREE_CHAIN (member) = NULL_TREE;
22307 finish_member_declaration (member);
22308 }
22309 return;
22310 }
22311
22312 /* If the next token is `static_assert' we have a static assertion. */
22313 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_STATIC_ASSERT))
22314 {
22315 cp_parser_static_assert (parser, /*member_p=*/true);
22316 return;
22317 }
22318
22319 parser->colon_corrects_to_scope_p = false;
22320
22321 if (cp_parser_using_declaration (parser, /*access_declaration=*/true))
22322 goto out;
22323
22324 /* Parse the decl-specifier-seq. */
22325 decl_spec_token_start = cp_lexer_peek_token (parser->lexer);
22326 cp_parser_decl_specifier_seq (parser,
22327 CP_PARSER_FLAGS_OPTIONAL,
22328 &decl_specifiers,
22329 &declares_class_or_enum);
22330 /* Check for an invalid type-name. */
22331 if (!decl_specifiers.any_type_specifiers_p
22332 && cp_parser_parse_and_diagnose_invalid_type_name (parser))
22333 goto out;
22334 /* If there is no declarator, then the decl-specifier-seq should
22335 specify a type. */
22336 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
22337 {
22338 /* If there was no decl-specifier-seq, and the next token is a
22339 `;', then we have something like:
22340
22341 struct S { ; };
22342
22343 [class.mem]
22344
22345 Each member-declaration shall declare at least one member
22346 name of the class. */
22347 if (!decl_specifiers.any_specifiers_p)
22348 {
22349 cp_token *token = cp_lexer_peek_token (parser->lexer);
22350 if (!in_system_header_at (token->location))
22351 pedwarn (token->location, OPT_Wpedantic, "extra %<;%>");
22352 }
22353 else
22354 {
22355 tree type;
22356
22357 /* See if this declaration is a friend. */
22358 friend_p = cp_parser_friend_p (&decl_specifiers);
22359 /* If there were decl-specifiers, check to see if there was
22360 a class-declaration. */
22361 type = check_tag_decl (&decl_specifiers,
22362 /*explicit_type_instantiation_p=*/false);
22363 /* Nested classes have already been added to the class, but
22364 a `friend' needs to be explicitly registered. */
22365 if (friend_p)
22366 {
22367 /* If the `friend' keyword was present, the friend must
22368 be introduced with a class-key. */
22369 if (!declares_class_or_enum && cxx_dialect < cxx11)
22370 pedwarn (decl_spec_token_start->location, OPT_Wpedantic,
22371 "in C++03 a class-key must be used "
22372 "when declaring a friend");
22373 /* In this case:
22374
22375 template <typename T> struct A {
22376 friend struct A<T>::B;
22377 };
22378
22379 A<T>::B will be represented by a TYPENAME_TYPE, and
22380 therefore not recognized by check_tag_decl. */
22381 if (!type)
22382 {
22383 type = decl_specifiers.type;
22384 if (type && TREE_CODE (type) == TYPE_DECL)
22385 type = TREE_TYPE (type);
22386 }
22387 if (!type || !TYPE_P (type))
22388 error_at (decl_spec_token_start->location,
22389 "friend declaration does not name a class or "
22390 "function");
22391 else
22392 make_friend_class (current_class_type, type,
22393 /*complain=*/true);
22394 }
22395 /* If there is no TYPE, an error message will already have
22396 been issued. */
22397 else if (!type || type == error_mark_node)
22398 ;
22399 /* An anonymous aggregate has to be handled specially; such
22400 a declaration really declares a data member (with a
22401 particular type), as opposed to a nested class. */
22402 else if (ANON_AGGR_TYPE_P (type))
22403 {
22404 /* C++11 9.5/6. */
22405 if (decl_specifiers.storage_class != sc_none)
22406 error_at (decl_spec_token_start->location,
22407 "a storage class on an anonymous aggregate "
22408 "in class scope is not allowed");
22409
22410 /* Remove constructors and such from TYPE, now that we
22411 know it is an anonymous aggregate. */
22412 fixup_anonymous_aggr (type);
22413 /* And make the corresponding data member. */
22414 decl = build_decl (decl_spec_token_start->location,
22415 FIELD_DECL, NULL_TREE, type);
22416 /* Add it to the class. */
22417 finish_member_declaration (decl);
22418 }
22419 else
22420 cp_parser_check_access_in_redeclaration
22421 (TYPE_NAME (type),
22422 decl_spec_token_start->location);
22423 }
22424 }
22425 else
22426 {
22427 bool assume_semicolon = false;
22428
22429 /* Clear attributes from the decl_specifiers but keep them
22430 around as prefix attributes that apply them to the entity
22431 being declared. */
22432 prefix_attributes = decl_specifiers.attributes;
22433 decl_specifiers.attributes = NULL_TREE;
22434
22435 /* See if these declarations will be friends. */
22436 friend_p = cp_parser_friend_p (&decl_specifiers);
22437
22438 /* Keep going until we hit the `;' at the end of the
22439 declaration. */
22440 while (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
22441 {
22442 tree attributes = NULL_TREE;
22443 tree first_attribute;
22444
22445 /* Peek at the next token. */
22446 token = cp_lexer_peek_token (parser->lexer);
22447
22448 /* Check for a bitfield declaration. */
22449 if (token->type == CPP_COLON
22450 || (token->type == CPP_NAME
22451 && cp_lexer_peek_nth_token (parser->lexer, 2)->type
22452 == CPP_COLON))
22453 {
22454 tree identifier;
22455 tree width;
22456
22457 /* Get the name of the bitfield. Note that we cannot just
22458 check TOKEN here because it may have been invalidated by
22459 the call to cp_lexer_peek_nth_token above. */
22460 if (cp_lexer_peek_token (parser->lexer)->type != CPP_COLON)
22461 identifier = cp_parser_identifier (parser);
22462 else
22463 identifier = NULL_TREE;
22464
22465 /* Consume the `:' token. */
22466 cp_lexer_consume_token (parser->lexer);
22467 /* Get the width of the bitfield. */
22468 width
22469 = cp_parser_constant_expression (parser);
22470
22471 /* Look for attributes that apply to the bitfield. */
22472 attributes = cp_parser_attributes_opt (parser);
22473 /* Remember which attributes are prefix attributes and
22474 which are not. */
22475 first_attribute = attributes;
22476 /* Combine the attributes. */
22477 attributes = chainon (prefix_attributes, attributes);
22478
22479 /* Create the bitfield declaration. */
22480 decl = grokbitfield (identifier
22481 ? make_id_declarator (NULL_TREE,
22482 identifier,
22483 sfk_none)
22484 : NULL,
22485 &decl_specifiers,
22486 width,
22487 attributes);
22488 }
22489 else
22490 {
22491 cp_declarator *declarator;
22492 tree initializer;
22493 tree asm_specification;
22494 int ctor_dtor_or_conv_p;
22495
22496 /* Parse the declarator. */
22497 declarator
22498 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
22499 &ctor_dtor_or_conv_p,
22500 /*parenthesized_p=*/NULL,
22501 /*member_p=*/true,
22502 friend_p);
22503
22504 /* If something went wrong parsing the declarator, make sure
22505 that we at least consume some tokens. */
22506 if (declarator == cp_error_declarator)
22507 {
22508 /* Skip to the end of the statement. */
22509 cp_parser_skip_to_end_of_statement (parser);
22510 /* If the next token is not a semicolon, that is
22511 probably because we just skipped over the body of
22512 a function. So, we consume a semicolon if
22513 present, but do not issue an error message if it
22514 is not present. */
22515 if (cp_lexer_next_token_is (parser->lexer,
22516 CPP_SEMICOLON))
22517 cp_lexer_consume_token (parser->lexer);
22518 goto out;
22519 }
22520
22521 if (declares_class_or_enum & 2)
22522 cp_parser_check_for_definition_in_return_type
22523 (declarator, decl_specifiers.type,
22524 decl_specifiers.locations[ds_type_spec]);
22525
22526 /* Look for an asm-specification. */
22527 asm_specification = cp_parser_asm_specification_opt (parser);
22528 /* Look for attributes that apply to the declaration. */
22529 attributes = cp_parser_attributes_opt (parser);
22530 /* Remember which attributes are prefix attributes and
22531 which are not. */
22532 first_attribute = attributes;
22533 /* Combine the attributes. */
22534 attributes = chainon (prefix_attributes, attributes);
22535
22536 /* If it's an `=', then we have a constant-initializer or a
22537 pure-specifier. It is not correct to parse the
22538 initializer before registering the member declaration
22539 since the member declaration should be in scope while
22540 its initializer is processed. However, the rest of the
22541 front end does not yet provide an interface that allows
22542 us to handle this correctly. */
22543 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
22544 {
22545 /* In [class.mem]:
22546
22547 A pure-specifier shall be used only in the declaration of
22548 a virtual function.
22549
22550 A member-declarator can contain a constant-initializer
22551 only if it declares a static member of integral or
22552 enumeration type.
22553
22554 Therefore, if the DECLARATOR is for a function, we look
22555 for a pure-specifier; otherwise, we look for a
22556 constant-initializer. When we call `grokfield', it will
22557 perform more stringent semantics checks. */
22558 initializer_token_start = cp_lexer_peek_token (parser->lexer);
22559 if (function_declarator_p (declarator)
22560 || (decl_specifiers.type
22561 && TREE_CODE (decl_specifiers.type) == TYPE_DECL
22562 && declarator->kind == cdk_id
22563 && (TREE_CODE (TREE_TYPE (decl_specifiers.type))
22564 == FUNCTION_TYPE)))
22565 initializer = cp_parser_pure_specifier (parser);
22566 else if (decl_specifiers.storage_class != sc_static)
22567 initializer = cp_parser_save_nsdmi (parser);
22568 else if (cxx_dialect >= cxx11)
22569 {
22570 bool nonconst;
22571 /* Don't require a constant rvalue in C++11, since we
22572 might want a reference constant. We'll enforce
22573 constancy later. */
22574 cp_lexer_consume_token (parser->lexer);
22575 /* Parse the initializer. */
22576 initializer = cp_parser_initializer_clause (parser,
22577 &nonconst);
22578 }
22579 else
22580 /* Parse the initializer. */
22581 initializer = cp_parser_constant_initializer (parser);
22582 }
22583 else if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE)
22584 && !function_declarator_p (declarator))
22585 {
22586 bool x;
22587 if (decl_specifiers.storage_class != sc_static)
22588 initializer = cp_parser_save_nsdmi (parser);
22589 else
22590 initializer = cp_parser_initializer (parser, &x, &x);
22591 }
22592 /* Otherwise, there is no initializer. */
22593 else
22594 initializer = NULL_TREE;
22595
22596 /* See if we are probably looking at a function
22597 definition. We are certainly not looking at a
22598 member-declarator. Calling `grokfield' has
22599 side-effects, so we must not do it unless we are sure
22600 that we are looking at a member-declarator. */
22601 if (cp_parser_token_starts_function_definition_p
22602 (cp_lexer_peek_token (parser->lexer)))
22603 {
22604 /* The grammar does not allow a pure-specifier to be
22605 used when a member function is defined. (It is
22606 possible that this fact is an oversight in the
22607 standard, since a pure function may be defined
22608 outside of the class-specifier. */
22609 if (initializer && initializer_token_start)
22610 error_at (initializer_token_start->location,
22611 "pure-specifier on function-definition");
22612 decl = cp_parser_save_member_function_body (parser,
22613 &decl_specifiers,
22614 declarator,
22615 attributes);
22616 if (parser->fully_implicit_function_template_p)
22617 decl = finish_fully_implicit_template (parser, decl);
22618 /* If the member was not a friend, declare it here. */
22619 if (!friend_p)
22620 finish_member_declaration (decl);
22621 /* Peek at the next token. */
22622 token = cp_lexer_peek_token (parser->lexer);
22623 /* If the next token is a semicolon, consume it. */
22624 if (token->type == CPP_SEMICOLON)
22625 cp_lexer_consume_token (parser->lexer);
22626 goto out;
22627 }
22628 else
22629 if (declarator->kind == cdk_function)
22630 declarator->id_loc = token->location;
22631 /* Create the declaration. */
22632 decl = grokfield (declarator, &decl_specifiers,
22633 initializer, /*init_const_expr_p=*/true,
22634 asm_specification, attributes);
22635 if (parser->fully_implicit_function_template_p)
22636 {
22637 if (friend_p)
22638 finish_fully_implicit_template (parser, 0);
22639 else
22640 decl = finish_fully_implicit_template (parser, decl);
22641 }
22642 }
22643
22644 cp_finalize_omp_declare_simd (parser, decl);
22645 cp_finalize_oacc_routine (parser, decl, false);
22646
22647 /* Reset PREFIX_ATTRIBUTES. */
22648 while (attributes && TREE_CHAIN (attributes) != first_attribute)
22649 attributes = TREE_CHAIN (attributes);
22650 if (attributes)
22651 TREE_CHAIN (attributes) = NULL_TREE;
22652
22653 /* If there is any qualification still in effect, clear it
22654 now; we will be starting fresh with the next declarator. */
22655 parser->scope = NULL_TREE;
22656 parser->qualifying_scope = NULL_TREE;
22657 parser->object_scope = NULL_TREE;
22658 /* If it's a `,', then there are more declarators. */
22659 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
22660 {
22661 cp_lexer_consume_token (parser->lexer);
22662 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
22663 {
22664 cp_token *token = cp_lexer_previous_token (parser->lexer);
22665 error_at (token->location,
22666 "stray %<,%> at end of member declaration");
22667 }
22668 }
22669 /* If the next token isn't a `;', then we have a parse error. */
22670 else if (cp_lexer_next_token_is_not (parser->lexer,
22671 CPP_SEMICOLON))
22672 {
22673 /* The next token might be a ways away from where the
22674 actual semicolon is missing. Find the previous token
22675 and use that for our error position. */
22676 cp_token *token = cp_lexer_previous_token (parser->lexer);
22677 error_at (token->location,
22678 "expected %<;%> at end of member declaration");
22679
22680 /* Assume that the user meant to provide a semicolon. If
22681 we were to cp_parser_skip_to_end_of_statement, we might
22682 skip to a semicolon inside a member function definition
22683 and issue nonsensical error messages. */
22684 assume_semicolon = true;
22685 }
22686
22687 if (decl)
22688 {
22689 /* Add DECL to the list of members. */
22690 if (!friend_p
22691 /* Explicitly include, eg, NSDMIs, for better error
22692 recovery (c++/58650). */
22693 || !DECL_DECLARES_FUNCTION_P (decl))
22694 finish_member_declaration (decl);
22695
22696 if (TREE_CODE (decl) == FUNCTION_DECL)
22697 cp_parser_save_default_args (parser, decl);
22698 else if (TREE_CODE (decl) == FIELD_DECL
22699 && !DECL_C_BIT_FIELD (decl)
22700 && DECL_INITIAL (decl))
22701 /* Add DECL to the queue of NSDMI to be parsed later. */
22702 vec_safe_push (unparsed_nsdmis, decl);
22703 }
22704
22705 if (assume_semicolon)
22706 goto out;
22707 }
22708 }
22709
22710 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
22711 out:
22712 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
22713 }
22714
22715 /* Parse a pure-specifier.
22716
22717 pure-specifier:
22718 = 0
22719
22720 Returns INTEGER_ZERO_NODE if a pure specifier is found.
22721 Otherwise, ERROR_MARK_NODE is returned. */
22722
22723 static tree
22724 cp_parser_pure_specifier (cp_parser* parser)
22725 {
22726 cp_token *token;
22727
22728 /* Look for the `=' token. */
22729 if (!cp_parser_require (parser, CPP_EQ, RT_EQ))
22730 return error_mark_node;
22731 /* Look for the `0' token. */
22732 token = cp_lexer_peek_token (parser->lexer);
22733
22734 if (token->type == CPP_EOF
22735 || token->type == CPP_PRAGMA_EOL)
22736 return error_mark_node;
22737
22738 cp_lexer_consume_token (parser->lexer);
22739
22740 /* Accept = default or = delete in c++0x mode. */
22741 if (token->keyword == RID_DEFAULT
22742 || token->keyword == RID_DELETE)
22743 {
22744 maybe_warn_cpp0x (CPP0X_DEFAULTED_DELETED);
22745 return token->u.value;
22746 }
22747
22748 /* c_lex_with_flags marks a single digit '0' with PURE_ZERO. */
22749 if (token->type != CPP_NUMBER || !(token->flags & PURE_ZERO))
22750 {
22751 cp_parser_error (parser,
22752 "invalid pure specifier (only %<= 0%> is allowed)");
22753 cp_parser_skip_to_end_of_statement (parser);
22754 return error_mark_node;
22755 }
22756 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
22757 {
22758 error_at (token->location, "templates may not be %<virtual%>");
22759 return error_mark_node;
22760 }
22761
22762 return integer_zero_node;
22763 }
22764
22765 /* Parse a constant-initializer.
22766
22767 constant-initializer:
22768 = constant-expression
22769
22770 Returns a representation of the constant-expression. */
22771
22772 static tree
22773 cp_parser_constant_initializer (cp_parser* parser)
22774 {
22775 /* Look for the `=' token. */
22776 if (!cp_parser_require (parser, CPP_EQ, RT_EQ))
22777 return error_mark_node;
22778
22779 /* It is invalid to write:
22780
22781 struct S { static const int i = { 7 }; };
22782
22783 */
22784 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
22785 {
22786 cp_parser_error (parser,
22787 "a brace-enclosed initializer is not allowed here");
22788 /* Consume the opening brace. */
22789 cp_lexer_consume_token (parser->lexer);
22790 /* Skip the initializer. */
22791 cp_parser_skip_to_closing_brace (parser);
22792 /* Look for the trailing `}'. */
22793 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
22794
22795 return error_mark_node;
22796 }
22797
22798 return cp_parser_constant_expression (parser);
22799 }
22800
22801 /* Derived classes [gram.class.derived] */
22802
22803 /* Parse a base-clause.
22804
22805 base-clause:
22806 : base-specifier-list
22807
22808 base-specifier-list:
22809 base-specifier ... [opt]
22810 base-specifier-list , base-specifier ... [opt]
22811
22812 Returns a TREE_LIST representing the base-classes, in the order in
22813 which they were declared. The representation of each node is as
22814 described by cp_parser_base_specifier.
22815
22816 In the case that no bases are specified, this function will return
22817 NULL_TREE, not ERROR_MARK_NODE. */
22818
22819 static tree
22820 cp_parser_base_clause (cp_parser* parser)
22821 {
22822 tree bases = NULL_TREE;
22823
22824 /* Look for the `:' that begins the list. */
22825 cp_parser_require (parser, CPP_COLON, RT_COLON);
22826
22827 /* Scan the base-specifier-list. */
22828 while (true)
22829 {
22830 cp_token *token;
22831 tree base;
22832 bool pack_expansion_p = false;
22833
22834 /* Look for the base-specifier. */
22835 base = cp_parser_base_specifier (parser);
22836 /* Look for the (optional) ellipsis. */
22837 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
22838 {
22839 /* Consume the `...'. */
22840 cp_lexer_consume_token (parser->lexer);
22841
22842 pack_expansion_p = true;
22843 }
22844
22845 /* Add BASE to the front of the list. */
22846 if (base && base != error_mark_node)
22847 {
22848 if (pack_expansion_p)
22849 /* Make this a pack expansion type. */
22850 TREE_VALUE (base) = make_pack_expansion (TREE_VALUE (base));
22851
22852 if (!check_for_bare_parameter_packs (TREE_VALUE (base)))
22853 {
22854 TREE_CHAIN (base) = bases;
22855 bases = base;
22856 }
22857 }
22858 /* Peek at the next token. */
22859 token = cp_lexer_peek_token (parser->lexer);
22860 /* If it's not a comma, then the list is complete. */
22861 if (token->type != CPP_COMMA)
22862 break;
22863 /* Consume the `,'. */
22864 cp_lexer_consume_token (parser->lexer);
22865 }
22866
22867 /* PARSER->SCOPE may still be non-NULL at this point, if the last
22868 base class had a qualified name. However, the next name that
22869 appears is certainly not qualified. */
22870 parser->scope = NULL_TREE;
22871 parser->qualifying_scope = NULL_TREE;
22872 parser->object_scope = NULL_TREE;
22873
22874 return nreverse (bases);
22875 }
22876
22877 /* Parse a base-specifier.
22878
22879 base-specifier:
22880 :: [opt] nested-name-specifier [opt] class-name
22881 virtual access-specifier [opt] :: [opt] nested-name-specifier
22882 [opt] class-name
22883 access-specifier virtual [opt] :: [opt] nested-name-specifier
22884 [opt] class-name
22885
22886 Returns a TREE_LIST. The TREE_PURPOSE will be one of
22887 ACCESS_{DEFAULT,PUBLIC,PROTECTED,PRIVATE}_[VIRTUAL]_NODE to
22888 indicate the specifiers provided. The TREE_VALUE will be a TYPE
22889 (or the ERROR_MARK_NODE) indicating the type that was specified. */
22890
22891 static tree
22892 cp_parser_base_specifier (cp_parser* parser)
22893 {
22894 cp_token *token;
22895 bool done = false;
22896 bool virtual_p = false;
22897 bool duplicate_virtual_error_issued_p = false;
22898 bool duplicate_access_error_issued_p = false;
22899 bool class_scope_p, template_p;
22900 tree access = access_default_node;
22901 tree type;
22902
22903 /* Process the optional `virtual' and `access-specifier'. */
22904 while (!done)
22905 {
22906 /* Peek at the next token. */
22907 token = cp_lexer_peek_token (parser->lexer);
22908 /* Process `virtual'. */
22909 switch (token->keyword)
22910 {
22911 case RID_VIRTUAL:
22912 /* If `virtual' appears more than once, issue an error. */
22913 if (virtual_p && !duplicate_virtual_error_issued_p)
22914 {
22915 cp_parser_error (parser,
22916 "%<virtual%> specified more than once in base-specified");
22917 duplicate_virtual_error_issued_p = true;
22918 }
22919
22920 virtual_p = true;
22921
22922 /* Consume the `virtual' token. */
22923 cp_lexer_consume_token (parser->lexer);
22924
22925 break;
22926
22927 case RID_PUBLIC:
22928 case RID_PROTECTED:
22929 case RID_PRIVATE:
22930 /* If more than one access specifier appears, issue an
22931 error. */
22932 if (access != access_default_node
22933 && !duplicate_access_error_issued_p)
22934 {
22935 cp_parser_error (parser,
22936 "more than one access specifier in base-specified");
22937 duplicate_access_error_issued_p = true;
22938 }
22939
22940 access = ridpointers[(int) token->keyword];
22941
22942 /* Consume the access-specifier. */
22943 cp_lexer_consume_token (parser->lexer);
22944
22945 break;
22946
22947 default:
22948 done = true;
22949 break;
22950 }
22951 }
22952 /* It is not uncommon to see programs mechanically, erroneously, use
22953 the 'typename' keyword to denote (dependent) qualified types
22954 as base classes. */
22955 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TYPENAME))
22956 {
22957 token = cp_lexer_peek_token (parser->lexer);
22958 if (!processing_template_decl)
22959 error_at (token->location,
22960 "keyword %<typename%> not allowed outside of templates");
22961 else
22962 error_at (token->location,
22963 "keyword %<typename%> not allowed in this context "
22964 "(the base class is implicitly a type)");
22965 cp_lexer_consume_token (parser->lexer);
22966 }
22967
22968 /* Look for the optional `::' operator. */
22969 cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/false);
22970 /* Look for the nested-name-specifier. The simplest way to
22971 implement:
22972
22973 [temp.res]
22974
22975 The keyword `typename' is not permitted in a base-specifier or
22976 mem-initializer; in these contexts a qualified name that
22977 depends on a template-parameter is implicitly assumed to be a
22978 type name.
22979
22980 is to pretend that we have seen the `typename' keyword at this
22981 point. */
22982 cp_parser_nested_name_specifier_opt (parser,
22983 /*typename_keyword_p=*/true,
22984 /*check_dependency_p=*/true,
22985 typename_type,
22986 /*is_declaration=*/true);
22987 /* If the base class is given by a qualified name, assume that names
22988 we see are type names or templates, as appropriate. */
22989 class_scope_p = (parser->scope && TYPE_P (parser->scope));
22990 template_p = class_scope_p && cp_parser_optional_template_keyword (parser);
22991
22992 if (!parser->scope
22993 && cp_lexer_next_token_is_decltype (parser->lexer))
22994 /* DR 950 allows decltype as a base-specifier. */
22995 type = cp_parser_decltype (parser);
22996 else
22997 {
22998 /* Otherwise, look for the class-name. */
22999 type = cp_parser_class_name (parser,
23000 class_scope_p,
23001 template_p,
23002 typename_type,
23003 /*check_dependency_p=*/true,
23004 /*class_head_p=*/false,
23005 /*is_declaration=*/true);
23006 type = TREE_TYPE (type);
23007 }
23008
23009 if (type == error_mark_node)
23010 return error_mark_node;
23011
23012 return finish_base_specifier (type, access, virtual_p);
23013 }
23014
23015 /* Exception handling [gram.exception] */
23016
23017 /* Parse an (optional) noexcept-specification.
23018
23019 noexcept-specification:
23020 noexcept ( constant-expression ) [opt]
23021
23022 If no noexcept-specification is present, returns NULL_TREE.
23023 Otherwise, if REQUIRE_CONSTEXPR is false, then either parse and return any
23024 expression if parentheses follow noexcept, or return BOOLEAN_TRUE_NODE if
23025 there are no parentheses. CONSUMED_EXPR will be set accordingly.
23026 Otherwise, returns a noexcept specification unless RETURN_COND is true,
23027 in which case a boolean condition is returned instead. */
23028
23029 static tree
23030 cp_parser_noexcept_specification_opt (cp_parser* parser,
23031 bool require_constexpr,
23032 bool* consumed_expr,
23033 bool return_cond)
23034 {
23035 cp_token *token;
23036 const char *saved_message;
23037
23038 /* Peek at the next token. */
23039 token = cp_lexer_peek_token (parser->lexer);
23040
23041 /* Is it a noexcept-specification? */
23042 if (cp_parser_is_keyword (token, RID_NOEXCEPT))
23043 {
23044 tree expr;
23045 cp_lexer_consume_token (parser->lexer);
23046
23047 if (cp_lexer_peek_token (parser->lexer)->type == CPP_OPEN_PAREN)
23048 {
23049 cp_lexer_consume_token (parser->lexer);
23050
23051 if (require_constexpr)
23052 {
23053 /* Types may not be defined in an exception-specification. */
23054 saved_message = parser->type_definition_forbidden_message;
23055 parser->type_definition_forbidden_message
23056 = G_("types may not be defined in an exception-specification");
23057
23058 expr = cp_parser_constant_expression (parser);
23059
23060 /* Restore the saved message. */
23061 parser->type_definition_forbidden_message = saved_message;
23062 }
23063 else
23064 {
23065 expr = cp_parser_expression (parser);
23066 *consumed_expr = true;
23067 }
23068
23069 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
23070 }
23071 else
23072 {
23073 expr = boolean_true_node;
23074 if (!require_constexpr)
23075 *consumed_expr = false;
23076 }
23077
23078 /* We cannot build a noexcept-spec right away because this will check
23079 that expr is a constexpr. */
23080 if (!return_cond)
23081 return build_noexcept_spec (expr, tf_warning_or_error);
23082 else
23083 return expr;
23084 }
23085 else
23086 return NULL_TREE;
23087 }
23088
23089 /* Parse an (optional) exception-specification.
23090
23091 exception-specification:
23092 throw ( type-id-list [opt] )
23093
23094 Returns a TREE_LIST representing the exception-specification. The
23095 TREE_VALUE of each node is a type. */
23096
23097 static tree
23098 cp_parser_exception_specification_opt (cp_parser* parser)
23099 {
23100 cp_token *token;
23101 tree type_id_list;
23102 const char *saved_message;
23103
23104 /* Peek at the next token. */
23105 token = cp_lexer_peek_token (parser->lexer);
23106
23107 /* Is it a noexcept-specification? */
23108 type_id_list = cp_parser_noexcept_specification_opt(parser, true, NULL,
23109 false);
23110 if (type_id_list != NULL_TREE)
23111 return type_id_list;
23112
23113 /* If it's not `throw', then there's no exception-specification. */
23114 if (!cp_parser_is_keyword (token, RID_THROW))
23115 return NULL_TREE;
23116
23117 #if 0
23118 /* Enable this once a lot of code has transitioned to noexcept? */
23119 if (cxx_dialect >= cxx11 && !in_system_header_at (input_location))
23120 warning (OPT_Wdeprecated, "dynamic exception specifications are "
23121 "deprecated in C++0x; use %<noexcept%> instead");
23122 #endif
23123
23124 /* Consume the `throw'. */
23125 cp_lexer_consume_token (parser->lexer);
23126
23127 /* Look for the `('. */
23128 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
23129
23130 /* Peek at the next token. */
23131 token = cp_lexer_peek_token (parser->lexer);
23132 /* If it's not a `)', then there is a type-id-list. */
23133 if (token->type != CPP_CLOSE_PAREN)
23134 {
23135 /* Types may not be defined in an exception-specification. */
23136 saved_message = parser->type_definition_forbidden_message;
23137 parser->type_definition_forbidden_message
23138 = G_("types may not be defined in an exception-specification");
23139 /* Parse the type-id-list. */
23140 type_id_list = cp_parser_type_id_list (parser);
23141 /* Restore the saved message. */
23142 parser->type_definition_forbidden_message = saved_message;
23143 }
23144 else
23145 type_id_list = empty_except_spec;
23146
23147 /* Look for the `)'. */
23148 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
23149
23150 return type_id_list;
23151 }
23152
23153 /* Parse an (optional) type-id-list.
23154
23155 type-id-list:
23156 type-id ... [opt]
23157 type-id-list , type-id ... [opt]
23158
23159 Returns a TREE_LIST. The TREE_VALUE of each node is a TYPE,
23160 in the order that the types were presented. */
23161
23162 static tree
23163 cp_parser_type_id_list (cp_parser* parser)
23164 {
23165 tree types = NULL_TREE;
23166
23167 while (true)
23168 {
23169 cp_token *token;
23170 tree type;
23171
23172 token = cp_lexer_peek_token (parser->lexer);
23173
23174 /* Get the next type-id. */
23175 type = cp_parser_type_id (parser);
23176 /* Check for invalid 'auto'. */
23177 if (flag_concepts && type_uses_auto (type))
23178 {
23179 error_at (token->location,
23180 "invalid use of %<auto%> in exception-specification");
23181 type = error_mark_node;
23182 }
23183 /* Parse the optional ellipsis. */
23184 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
23185 {
23186 /* Consume the `...'. */
23187 cp_lexer_consume_token (parser->lexer);
23188
23189 /* Turn the type into a pack expansion expression. */
23190 type = make_pack_expansion (type);
23191 }
23192 /* Add it to the list. */
23193 types = add_exception_specifier (types, type, /*complain=*/1);
23194 /* Peek at the next token. */
23195 token = cp_lexer_peek_token (parser->lexer);
23196 /* If it is not a `,', we are done. */
23197 if (token->type != CPP_COMMA)
23198 break;
23199 /* Consume the `,'. */
23200 cp_lexer_consume_token (parser->lexer);
23201 }
23202
23203 return nreverse (types);
23204 }
23205
23206 /* Parse a try-block.
23207
23208 try-block:
23209 try compound-statement handler-seq */
23210
23211 static tree
23212 cp_parser_try_block (cp_parser* parser)
23213 {
23214 tree try_block;
23215
23216 cp_parser_require_keyword (parser, RID_TRY, RT_TRY);
23217 if (parser->in_function_body
23218 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
23219 error ("%<try%> in %<constexpr%> function");
23220
23221 try_block = begin_try_block ();
23222 cp_parser_compound_statement (parser, NULL, BCS_TRY_BLOCK, false);
23223 finish_try_block (try_block);
23224 cp_parser_handler_seq (parser);
23225 finish_handler_sequence (try_block);
23226
23227 return try_block;
23228 }
23229
23230 /* Parse a function-try-block.
23231
23232 function-try-block:
23233 try ctor-initializer [opt] function-body handler-seq */
23234
23235 static bool
23236 cp_parser_function_try_block (cp_parser* parser)
23237 {
23238 tree compound_stmt;
23239 tree try_block;
23240 bool ctor_initializer_p;
23241
23242 /* Look for the `try' keyword. */
23243 if (!cp_parser_require_keyword (parser, RID_TRY, RT_TRY))
23244 return false;
23245 /* Let the rest of the front end know where we are. */
23246 try_block = begin_function_try_block (&compound_stmt);
23247 /* Parse the function-body. */
23248 ctor_initializer_p = cp_parser_ctor_initializer_opt_and_function_body
23249 (parser, /*in_function_try_block=*/true);
23250 /* We're done with the `try' part. */
23251 finish_function_try_block (try_block);
23252 /* Parse the handlers. */
23253 cp_parser_handler_seq (parser);
23254 /* We're done with the handlers. */
23255 finish_function_handler_sequence (try_block, compound_stmt);
23256
23257 return ctor_initializer_p;
23258 }
23259
23260 /* Parse a handler-seq.
23261
23262 handler-seq:
23263 handler handler-seq [opt] */
23264
23265 static void
23266 cp_parser_handler_seq (cp_parser* parser)
23267 {
23268 while (true)
23269 {
23270 cp_token *token;
23271
23272 /* Parse the handler. */
23273 cp_parser_handler (parser);
23274 /* Peek at the next token. */
23275 token = cp_lexer_peek_token (parser->lexer);
23276 /* If it's not `catch' then there are no more handlers. */
23277 if (!cp_parser_is_keyword (token, RID_CATCH))
23278 break;
23279 }
23280 }
23281
23282 /* Parse a handler.
23283
23284 handler:
23285 catch ( exception-declaration ) compound-statement */
23286
23287 static void
23288 cp_parser_handler (cp_parser* parser)
23289 {
23290 tree handler;
23291 tree declaration;
23292
23293 cp_parser_require_keyword (parser, RID_CATCH, RT_CATCH);
23294 handler = begin_handler ();
23295 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
23296 declaration = cp_parser_exception_declaration (parser);
23297 finish_handler_parms (declaration, handler);
23298 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
23299 cp_parser_compound_statement (parser, NULL, BCS_NORMAL, false);
23300 finish_handler (handler);
23301 }
23302
23303 /* Parse an exception-declaration.
23304
23305 exception-declaration:
23306 type-specifier-seq declarator
23307 type-specifier-seq abstract-declarator
23308 type-specifier-seq
23309 ...
23310
23311 Returns a VAR_DECL for the declaration, or NULL_TREE if the
23312 ellipsis variant is used. */
23313
23314 static tree
23315 cp_parser_exception_declaration (cp_parser* parser)
23316 {
23317 cp_decl_specifier_seq type_specifiers;
23318 cp_declarator *declarator;
23319 const char *saved_message;
23320
23321 /* If it's an ellipsis, it's easy to handle. */
23322 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
23323 {
23324 /* Consume the `...' token. */
23325 cp_lexer_consume_token (parser->lexer);
23326 return NULL_TREE;
23327 }
23328
23329 /* Types may not be defined in exception-declarations. */
23330 saved_message = parser->type_definition_forbidden_message;
23331 parser->type_definition_forbidden_message
23332 = G_("types may not be defined in exception-declarations");
23333
23334 /* Parse the type-specifier-seq. */
23335 cp_parser_type_specifier_seq (parser, /*is_declaration=*/true,
23336 /*is_trailing_return=*/false,
23337 &type_specifiers);
23338 /* If it's a `)', then there is no declarator. */
23339 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN))
23340 declarator = NULL;
23341 else
23342 declarator = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_EITHER,
23343 /*ctor_dtor_or_conv_p=*/NULL,
23344 /*parenthesized_p=*/NULL,
23345 /*member_p=*/false,
23346 /*friend_p=*/false);
23347
23348 /* Restore the saved message. */
23349 parser->type_definition_forbidden_message = saved_message;
23350
23351 if (!type_specifiers.any_specifiers_p)
23352 return error_mark_node;
23353
23354 return grokdeclarator (declarator, &type_specifiers, CATCHPARM, 1, NULL);
23355 }
23356
23357 /* Parse a throw-expression.
23358
23359 throw-expression:
23360 throw assignment-expression [opt]
23361
23362 Returns a THROW_EXPR representing the throw-expression. */
23363
23364 static tree
23365 cp_parser_throw_expression (cp_parser* parser)
23366 {
23367 tree expression;
23368 cp_token* token;
23369
23370 cp_parser_require_keyword (parser, RID_THROW, RT_THROW);
23371 token = cp_lexer_peek_token (parser->lexer);
23372 /* Figure out whether or not there is an assignment-expression
23373 following the "throw" keyword. */
23374 if (token->type == CPP_COMMA
23375 || token->type == CPP_SEMICOLON
23376 || token->type == CPP_CLOSE_PAREN
23377 || token->type == CPP_CLOSE_SQUARE
23378 || token->type == CPP_CLOSE_BRACE
23379 || token->type == CPP_COLON)
23380 expression = NULL_TREE;
23381 else
23382 expression = cp_parser_assignment_expression (parser);
23383
23384 return build_throw (expression);
23385 }
23386
23387 /* GNU Extensions */
23388
23389 /* Parse an (optional) asm-specification.
23390
23391 asm-specification:
23392 asm ( string-literal )
23393
23394 If the asm-specification is present, returns a STRING_CST
23395 corresponding to the string-literal. Otherwise, returns
23396 NULL_TREE. */
23397
23398 static tree
23399 cp_parser_asm_specification_opt (cp_parser* parser)
23400 {
23401 cp_token *token;
23402 tree asm_specification;
23403
23404 /* Peek at the next token. */
23405 token = cp_lexer_peek_token (parser->lexer);
23406 /* If the next token isn't the `asm' keyword, then there's no
23407 asm-specification. */
23408 if (!cp_parser_is_keyword (token, RID_ASM))
23409 return NULL_TREE;
23410
23411 /* Consume the `asm' token. */
23412 cp_lexer_consume_token (parser->lexer);
23413 /* Look for the `('. */
23414 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
23415
23416 /* Look for the string-literal. */
23417 asm_specification = cp_parser_string_literal (parser, false, false);
23418
23419 /* Look for the `)'. */
23420 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
23421
23422 return asm_specification;
23423 }
23424
23425 /* Parse an asm-operand-list.
23426
23427 asm-operand-list:
23428 asm-operand
23429 asm-operand-list , asm-operand
23430
23431 asm-operand:
23432 string-literal ( expression )
23433 [ string-literal ] string-literal ( expression )
23434
23435 Returns a TREE_LIST representing the operands. The TREE_VALUE of
23436 each node is the expression. The TREE_PURPOSE is itself a
23437 TREE_LIST whose TREE_PURPOSE is a STRING_CST for the bracketed
23438 string-literal (or NULL_TREE if not present) and whose TREE_VALUE
23439 is a STRING_CST for the string literal before the parenthesis. Returns
23440 ERROR_MARK_NODE if any of the operands are invalid. */
23441
23442 static tree
23443 cp_parser_asm_operand_list (cp_parser* parser)
23444 {
23445 tree asm_operands = NULL_TREE;
23446 bool invalid_operands = false;
23447
23448 while (true)
23449 {
23450 tree string_literal;
23451 tree expression;
23452 tree name;
23453
23454 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
23455 {
23456 /* Consume the `[' token. */
23457 cp_lexer_consume_token (parser->lexer);
23458 /* Read the operand name. */
23459 name = cp_parser_identifier (parser);
23460 if (name != error_mark_node)
23461 name = build_string (IDENTIFIER_LENGTH (name),
23462 IDENTIFIER_POINTER (name));
23463 /* Look for the closing `]'. */
23464 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
23465 }
23466 else
23467 name = NULL_TREE;
23468 /* Look for the string-literal. */
23469 string_literal = cp_parser_string_literal (parser, false, false);
23470
23471 /* Look for the `('. */
23472 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
23473 /* Parse the expression. */
23474 expression = cp_parser_expression (parser);
23475 /* Look for the `)'. */
23476 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
23477
23478 if (name == error_mark_node
23479 || string_literal == error_mark_node
23480 || expression == error_mark_node)
23481 invalid_operands = true;
23482
23483 /* Add this operand to the list. */
23484 asm_operands = tree_cons (build_tree_list (name, string_literal),
23485 expression,
23486 asm_operands);
23487 /* If the next token is not a `,', there are no more
23488 operands. */
23489 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
23490 break;
23491 /* Consume the `,'. */
23492 cp_lexer_consume_token (parser->lexer);
23493 }
23494
23495 return invalid_operands ? error_mark_node : nreverse (asm_operands);
23496 }
23497
23498 /* Parse an asm-clobber-list.
23499
23500 asm-clobber-list:
23501 string-literal
23502 asm-clobber-list , string-literal
23503
23504 Returns a TREE_LIST, indicating the clobbers in the order that they
23505 appeared. The TREE_VALUE of each node is a STRING_CST. */
23506
23507 static tree
23508 cp_parser_asm_clobber_list (cp_parser* parser)
23509 {
23510 tree clobbers = NULL_TREE;
23511
23512 while (true)
23513 {
23514 tree string_literal;
23515
23516 /* Look for the string literal. */
23517 string_literal = cp_parser_string_literal (parser, false, false);
23518 /* Add it to the list. */
23519 clobbers = tree_cons (NULL_TREE, string_literal, clobbers);
23520 /* If the next token is not a `,', then the list is
23521 complete. */
23522 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
23523 break;
23524 /* Consume the `,' token. */
23525 cp_lexer_consume_token (parser->lexer);
23526 }
23527
23528 return clobbers;
23529 }
23530
23531 /* Parse an asm-label-list.
23532
23533 asm-label-list:
23534 identifier
23535 asm-label-list , identifier
23536
23537 Returns a TREE_LIST, indicating the labels in the order that they
23538 appeared. The TREE_VALUE of each node is a label. */
23539
23540 static tree
23541 cp_parser_asm_label_list (cp_parser* parser)
23542 {
23543 tree labels = NULL_TREE;
23544
23545 while (true)
23546 {
23547 tree identifier, label, name;
23548
23549 /* Look for the identifier. */
23550 identifier = cp_parser_identifier (parser);
23551 if (!error_operand_p (identifier))
23552 {
23553 label = lookup_label (identifier);
23554 if (TREE_CODE (label) == LABEL_DECL)
23555 {
23556 TREE_USED (label) = 1;
23557 check_goto (label);
23558 name = build_string (IDENTIFIER_LENGTH (identifier),
23559 IDENTIFIER_POINTER (identifier));
23560 labels = tree_cons (name, label, labels);
23561 }
23562 }
23563 /* If the next token is not a `,', then the list is
23564 complete. */
23565 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
23566 break;
23567 /* Consume the `,' token. */
23568 cp_lexer_consume_token (parser->lexer);
23569 }
23570
23571 return nreverse (labels);
23572 }
23573
23574 /* Return TRUE iff the next tokens in the stream are possibly the
23575 beginning of a GNU extension attribute. */
23576
23577 static bool
23578 cp_next_tokens_can_be_gnu_attribute_p (cp_parser *parser)
23579 {
23580 return cp_nth_tokens_can_be_gnu_attribute_p (parser, 1);
23581 }
23582
23583 /* Return TRUE iff the next tokens in the stream are possibly the
23584 beginning of a standard C++-11 attribute specifier. */
23585
23586 static bool
23587 cp_next_tokens_can_be_std_attribute_p (cp_parser *parser)
23588 {
23589 return cp_nth_tokens_can_be_std_attribute_p (parser, 1);
23590 }
23591
23592 /* Return TRUE iff the next Nth tokens in the stream are possibly the
23593 beginning of a standard C++-11 attribute specifier. */
23594
23595 static bool
23596 cp_nth_tokens_can_be_std_attribute_p (cp_parser *parser, size_t n)
23597 {
23598 cp_token *token = cp_lexer_peek_nth_token (parser->lexer, n);
23599
23600 return (cxx_dialect >= cxx11
23601 && ((token->type == CPP_KEYWORD && token->keyword == RID_ALIGNAS)
23602 || (token->type == CPP_OPEN_SQUARE
23603 && (token = cp_lexer_peek_nth_token (parser->lexer, n + 1))
23604 && token->type == CPP_OPEN_SQUARE)));
23605 }
23606
23607 /* Return TRUE iff the next Nth tokens in the stream are possibly the
23608 beginning of a GNU extension attribute. */
23609
23610 static bool
23611 cp_nth_tokens_can_be_gnu_attribute_p (cp_parser *parser, size_t n)
23612 {
23613 cp_token *token = cp_lexer_peek_nth_token (parser->lexer, n);
23614
23615 return token->type == CPP_KEYWORD && token->keyword == RID_ATTRIBUTE;
23616 }
23617
23618 /* Return true iff the next tokens can be the beginning of either a
23619 GNU attribute list, or a standard C++11 attribute sequence. */
23620
23621 static bool
23622 cp_next_tokens_can_be_attribute_p (cp_parser *parser)
23623 {
23624 return (cp_next_tokens_can_be_gnu_attribute_p (parser)
23625 || cp_next_tokens_can_be_std_attribute_p (parser));
23626 }
23627
23628 /* Return true iff the next Nth tokens can be the beginning of either
23629 a GNU attribute list, or a standard C++11 attribute sequence. */
23630
23631 static bool
23632 cp_nth_tokens_can_be_attribute_p (cp_parser *parser, size_t n)
23633 {
23634 return (cp_nth_tokens_can_be_gnu_attribute_p (parser, n)
23635 || cp_nth_tokens_can_be_std_attribute_p (parser, n));
23636 }
23637
23638 /* Parse either a standard C++-11 attribute-specifier-seq, or a series
23639 of GNU attributes, or return NULL. */
23640
23641 static tree
23642 cp_parser_attributes_opt (cp_parser *parser)
23643 {
23644 if (cp_next_tokens_can_be_gnu_attribute_p (parser))
23645 return cp_parser_gnu_attributes_opt (parser);
23646 return cp_parser_std_attribute_spec_seq (parser);
23647 }
23648
23649 #define CILK_SIMD_FN_CLAUSE_MASK \
23650 ((OMP_CLAUSE_MASK_1 << PRAGMA_CILK_CLAUSE_VECTORLENGTH) \
23651 | (OMP_CLAUSE_MASK_1 << PRAGMA_CILK_CLAUSE_LINEAR) \
23652 | (OMP_CLAUSE_MASK_1 << PRAGMA_CILK_CLAUSE_UNIFORM) \
23653 | (OMP_CLAUSE_MASK_1 << PRAGMA_CILK_CLAUSE_MASK) \
23654 | (OMP_CLAUSE_MASK_1 << PRAGMA_CILK_CLAUSE_NOMASK))
23655
23656 /* Parses the Cilk Plus SIMD-enabled function's attribute. Syntax:
23657 vector [(<clauses>)] */
23658
23659 static void
23660 cp_parser_cilk_simd_fn_vector_attrs (cp_parser *parser, cp_token *v_token)
23661 {
23662 bool first_p = parser->cilk_simd_fn_info == NULL;
23663 cp_token *token = v_token;
23664 if (first_p)
23665 {
23666 parser->cilk_simd_fn_info = XNEW (cp_omp_declare_simd_data);
23667 parser->cilk_simd_fn_info->error_seen = false;
23668 parser->cilk_simd_fn_info->fndecl_seen = false;
23669 parser->cilk_simd_fn_info->tokens = vNULL;
23670 }
23671 int paren_scope = 0;
23672 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
23673 {
23674 cp_lexer_consume_token (parser->lexer);
23675 v_token = cp_lexer_peek_token (parser->lexer);
23676 paren_scope++;
23677 }
23678 while (paren_scope > 0)
23679 {
23680 token = cp_lexer_peek_token (parser->lexer);
23681 if (token->type == CPP_OPEN_PAREN)
23682 paren_scope++;
23683 else if (token->type == CPP_CLOSE_PAREN)
23684 paren_scope--;
23685 /* Do not push the last ')' */
23686 if (!(token->type == CPP_CLOSE_PAREN && paren_scope == 0))
23687 cp_lexer_consume_token (parser->lexer);
23688 }
23689
23690 token->type = CPP_PRAGMA_EOL;
23691 parser->lexer->next_token = token;
23692 cp_lexer_consume_token (parser->lexer);
23693
23694 struct cp_token_cache *cp
23695 = cp_token_cache_new (v_token, cp_lexer_peek_token (parser->lexer));
23696 parser->cilk_simd_fn_info->tokens.safe_push (cp);
23697 }
23698
23699 /* Parse an (optional) series of attributes.
23700
23701 attributes:
23702 attributes attribute
23703
23704 attribute:
23705 __attribute__ (( attribute-list [opt] ))
23706
23707 The return value is as for cp_parser_gnu_attribute_list. */
23708
23709 static tree
23710 cp_parser_gnu_attributes_opt (cp_parser* parser)
23711 {
23712 tree attributes = NULL_TREE;
23713
23714 while (true)
23715 {
23716 cp_token *token;
23717 tree attribute_list;
23718 bool ok = true;
23719
23720 /* Peek at the next token. */
23721 token = cp_lexer_peek_token (parser->lexer);
23722 /* If it's not `__attribute__', then we're done. */
23723 if (token->keyword != RID_ATTRIBUTE)
23724 break;
23725
23726 /* Consume the `__attribute__' keyword. */
23727 cp_lexer_consume_token (parser->lexer);
23728 /* Look for the two `(' tokens. */
23729 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
23730 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
23731
23732 /* Peek at the next token. */
23733 token = cp_lexer_peek_token (parser->lexer);
23734 if (token->type != CPP_CLOSE_PAREN)
23735 /* Parse the attribute-list. */
23736 attribute_list = cp_parser_gnu_attribute_list (parser);
23737 else
23738 /* If the next token is a `)', then there is no attribute
23739 list. */
23740 attribute_list = NULL;
23741
23742 /* Look for the two `)' tokens. */
23743 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
23744 ok = false;
23745 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
23746 ok = false;
23747 if (!ok)
23748 cp_parser_skip_to_end_of_statement (parser);
23749
23750 /* Add these new attributes to the list. */
23751 attributes = chainon (attributes, attribute_list);
23752 }
23753
23754 return attributes;
23755 }
23756
23757 /* Parse a GNU attribute-list.
23758
23759 attribute-list:
23760 attribute
23761 attribute-list , attribute
23762
23763 attribute:
23764 identifier
23765 identifier ( identifier )
23766 identifier ( identifier , expression-list )
23767 identifier ( expression-list )
23768
23769 Returns a TREE_LIST, or NULL_TREE on error. Each node corresponds
23770 to an attribute. The TREE_PURPOSE of each node is the identifier
23771 indicating which attribute is in use. The TREE_VALUE represents
23772 the arguments, if any. */
23773
23774 static tree
23775 cp_parser_gnu_attribute_list (cp_parser* parser)
23776 {
23777 tree attribute_list = NULL_TREE;
23778 bool save_translate_strings_p = parser->translate_strings_p;
23779
23780 parser->translate_strings_p = false;
23781 while (true)
23782 {
23783 cp_token *token;
23784 tree identifier;
23785 tree attribute;
23786
23787 /* Look for the identifier. We also allow keywords here; for
23788 example `__attribute__ ((const))' is legal. */
23789 token = cp_lexer_peek_token (parser->lexer);
23790 if (token->type == CPP_NAME
23791 || token->type == CPP_KEYWORD)
23792 {
23793 tree arguments = NULL_TREE;
23794
23795 /* Consume the token, but save it since we need it for the
23796 SIMD enabled function parsing. */
23797 cp_token *id_token = cp_lexer_consume_token (parser->lexer);
23798
23799 /* Save away the identifier that indicates which attribute
23800 this is. */
23801 identifier = (token->type == CPP_KEYWORD)
23802 /* For keywords, use the canonical spelling, not the
23803 parsed identifier. */
23804 ? ridpointers[(int) token->keyword]
23805 : id_token->u.value;
23806
23807 attribute = build_tree_list (identifier, NULL_TREE);
23808
23809 /* Peek at the next token. */
23810 token = cp_lexer_peek_token (parser->lexer);
23811 /* If it's an `(', then parse the attribute arguments. */
23812 if (token->type == CPP_OPEN_PAREN)
23813 {
23814 vec<tree, va_gc> *vec;
23815 int attr_flag = (attribute_takes_identifier_p (identifier)
23816 ? id_attr : normal_attr);
23817 if (is_cilkplus_vector_p (identifier))
23818 {
23819 cp_parser_cilk_simd_fn_vector_attrs (parser, id_token);
23820 continue;
23821 }
23822 else
23823 vec = cp_parser_parenthesized_expression_list
23824 (parser, attr_flag, /*cast_p=*/false,
23825 /*allow_expansion_p=*/false,
23826 /*non_constant_p=*/NULL);
23827 if (vec == NULL)
23828 arguments = error_mark_node;
23829 else
23830 {
23831 arguments = build_tree_list_vec (vec);
23832 release_tree_vector (vec);
23833 }
23834 /* Save the arguments away. */
23835 TREE_VALUE (attribute) = arguments;
23836 }
23837 else if (is_cilkplus_vector_p (identifier))
23838 {
23839 cp_parser_cilk_simd_fn_vector_attrs (parser, id_token);
23840 continue;
23841 }
23842
23843 if (arguments != error_mark_node)
23844 {
23845 /* Add this attribute to the list. */
23846 TREE_CHAIN (attribute) = attribute_list;
23847 attribute_list = attribute;
23848 }
23849
23850 token = cp_lexer_peek_token (parser->lexer);
23851 }
23852 /* Now, look for more attributes. If the next token isn't a
23853 `,', we're done. */
23854 if (token->type != CPP_COMMA)
23855 break;
23856
23857 /* Consume the comma and keep going. */
23858 cp_lexer_consume_token (parser->lexer);
23859 }
23860 parser->translate_strings_p = save_translate_strings_p;
23861
23862 /* We built up the list in reverse order. */
23863 return nreverse (attribute_list);
23864 }
23865
23866 /* Parse a standard C++11 attribute.
23867
23868 The returned representation is a TREE_LIST which TREE_PURPOSE is
23869 the scoped name of the attribute, and the TREE_VALUE is its
23870 arguments list.
23871
23872 Note that the scoped name of the attribute is itself a TREE_LIST
23873 which TREE_PURPOSE is the namespace of the attribute, and
23874 TREE_VALUE its name. This is unlike a GNU attribute -- as parsed
23875 by cp_parser_gnu_attribute_list -- that doesn't have any namespace
23876 and which TREE_PURPOSE is directly the attribute name.
23877
23878 Clients of the attribute code should use get_attribute_namespace
23879 and get_attribute_name to get the actual namespace and name of
23880 attributes, regardless of their being GNU or C++11 attributes.
23881
23882 attribute:
23883 attribute-token attribute-argument-clause [opt]
23884
23885 attribute-token:
23886 identifier
23887 attribute-scoped-token
23888
23889 attribute-scoped-token:
23890 attribute-namespace :: identifier
23891
23892 attribute-namespace:
23893 identifier
23894
23895 attribute-argument-clause:
23896 ( balanced-token-seq )
23897
23898 balanced-token-seq:
23899 balanced-token [opt]
23900 balanced-token-seq balanced-token
23901
23902 balanced-token:
23903 ( balanced-token-seq )
23904 [ balanced-token-seq ]
23905 { balanced-token-seq }. */
23906
23907 static tree
23908 cp_parser_std_attribute (cp_parser *parser)
23909 {
23910 tree attribute, attr_ns = NULL_TREE, attr_id = NULL_TREE, arguments;
23911 cp_token *token;
23912
23913 /* First, parse name of the attribute, a.k.a attribute-token. */
23914
23915 token = cp_lexer_peek_token (parser->lexer);
23916 if (token->type == CPP_NAME)
23917 attr_id = token->u.value;
23918 else if (token->type == CPP_KEYWORD)
23919 attr_id = ridpointers[(int) token->keyword];
23920 else if (token->flags & NAMED_OP)
23921 attr_id = get_identifier (cpp_type2name (token->type, token->flags));
23922
23923 if (attr_id == NULL_TREE)
23924 return NULL_TREE;
23925
23926 cp_lexer_consume_token (parser->lexer);
23927
23928 token = cp_lexer_peek_token (parser->lexer);
23929 if (token->type == CPP_SCOPE)
23930 {
23931 /* We are seeing a scoped attribute token. */
23932
23933 cp_lexer_consume_token (parser->lexer);
23934 attr_ns = attr_id;
23935
23936 token = cp_lexer_consume_token (parser->lexer);
23937 if (token->type == CPP_NAME)
23938 attr_id = token->u.value;
23939 else if (token->type == CPP_KEYWORD)
23940 attr_id = ridpointers[(int) token->keyword];
23941 else
23942 {
23943 error_at (token->location,
23944 "expected an identifier for the attribute name");
23945 return error_mark_node;
23946 }
23947 attribute = build_tree_list (build_tree_list (attr_ns, attr_id),
23948 NULL_TREE);
23949 token = cp_lexer_peek_token (parser->lexer);
23950 }
23951 else
23952 {
23953 attribute = build_tree_list (build_tree_list (NULL_TREE, attr_id),
23954 NULL_TREE);
23955 /* C++11 noreturn attribute is equivalent to GNU's. */
23956 if (is_attribute_p ("noreturn", attr_id))
23957 TREE_PURPOSE (TREE_PURPOSE (attribute)) = get_identifier ("gnu");
23958 /* C++14 deprecated attribute is equivalent to GNU's. */
23959 else if (cxx_dialect >= cxx11 && is_attribute_p ("deprecated", attr_id))
23960 {
23961 if (cxx_dialect == cxx11)
23962 pedwarn (token->location, OPT_Wpedantic,
23963 "%<deprecated%> is a C++14 feature;"
23964 " use %<gnu::deprecated%>");
23965 TREE_PURPOSE (TREE_PURPOSE (attribute)) = get_identifier ("gnu");
23966 }
23967 /* Transactional Memory TS optimize_for_synchronized attribute is
23968 equivalent to GNU transaction_callable. */
23969 else if (is_attribute_p ("optimize_for_synchronized", attr_id))
23970 TREE_PURPOSE (attribute)
23971 = get_identifier ("transaction_callable");
23972 /* Transactional Memory attributes are GNU attributes. */
23973 else if (tm_attr_to_mask (attr_id))
23974 TREE_PURPOSE (attribute) = attr_id;
23975 }
23976
23977 /* Now parse the optional argument clause of the attribute. */
23978
23979 if (token->type != CPP_OPEN_PAREN)
23980 return attribute;
23981
23982 {
23983 vec<tree, va_gc> *vec;
23984 int attr_flag = normal_attr;
23985
23986 if (attr_ns == get_identifier ("gnu")
23987 && attribute_takes_identifier_p (attr_id))
23988 /* A GNU attribute that takes an identifier in parameter. */
23989 attr_flag = id_attr;
23990
23991 vec = cp_parser_parenthesized_expression_list
23992 (parser, attr_flag, /*cast_p=*/false,
23993 /*allow_expansion_p=*/true,
23994 /*non_constant_p=*/NULL);
23995 if (vec == NULL)
23996 arguments = error_mark_node;
23997 else
23998 {
23999 arguments = build_tree_list_vec (vec);
24000 release_tree_vector (vec);
24001 }
24002
24003 if (arguments == error_mark_node)
24004 attribute = error_mark_node;
24005 else
24006 TREE_VALUE (attribute) = arguments;
24007 }
24008
24009 return attribute;
24010 }
24011
24012 /* Check that the attribute ATTRIBUTE appears at most once in the
24013 attribute-list ATTRIBUTES. This is enforced for noreturn (7.6.3)
24014 and deprecated (7.6.5). Note that carries_dependency (7.6.4)
24015 isn't implemented yet in GCC. */
24016
24017 static void
24018 cp_parser_check_std_attribute (tree attributes, tree attribute)
24019 {
24020 if (attributes)
24021 {
24022 tree name = get_attribute_name (attribute);
24023 if (is_attribute_p ("noreturn", name)
24024 && lookup_attribute ("noreturn", attributes))
24025 error ("attribute noreturn can appear at most once "
24026 "in an attribute-list");
24027 else if (is_attribute_p ("deprecated", name)
24028 && lookup_attribute ("deprecated", attributes))
24029 error ("attribute deprecated can appear at most once "
24030 "in an attribute-list");
24031 }
24032 }
24033
24034 /* Parse a list of standard C++-11 attributes.
24035
24036 attribute-list:
24037 attribute [opt]
24038 attribute-list , attribute[opt]
24039 attribute ...
24040 attribute-list , attribute ...
24041 */
24042
24043 static tree
24044 cp_parser_std_attribute_list (cp_parser *parser)
24045 {
24046 tree attributes = NULL_TREE, attribute = NULL_TREE;
24047 cp_token *token = NULL;
24048
24049 while (true)
24050 {
24051 attribute = cp_parser_std_attribute (parser);
24052 if (attribute == error_mark_node)
24053 break;
24054 if (attribute != NULL_TREE)
24055 {
24056 cp_parser_check_std_attribute (attributes, attribute);
24057 TREE_CHAIN (attribute) = attributes;
24058 attributes = attribute;
24059 }
24060 token = cp_lexer_peek_token (parser->lexer);
24061 if (token->type == CPP_ELLIPSIS)
24062 {
24063 cp_lexer_consume_token (parser->lexer);
24064 TREE_VALUE (attribute)
24065 = make_pack_expansion (TREE_VALUE (attribute));
24066 token = cp_lexer_peek_token (parser->lexer);
24067 }
24068 if (token->type != CPP_COMMA)
24069 break;
24070 cp_lexer_consume_token (parser->lexer);
24071 }
24072 attributes = nreverse (attributes);
24073 return attributes;
24074 }
24075
24076 /* Parse a standard C++-11 attribute specifier.
24077
24078 attribute-specifier:
24079 [ [ attribute-list ] ]
24080 alignment-specifier
24081
24082 alignment-specifier:
24083 alignas ( type-id ... [opt] )
24084 alignas ( alignment-expression ... [opt] ). */
24085
24086 static tree
24087 cp_parser_std_attribute_spec (cp_parser *parser)
24088 {
24089 tree attributes = NULL_TREE;
24090 cp_token *token = cp_lexer_peek_token (parser->lexer);
24091
24092 if (token->type == CPP_OPEN_SQUARE
24093 && cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_OPEN_SQUARE)
24094 {
24095 cp_lexer_consume_token (parser->lexer);
24096 cp_lexer_consume_token (parser->lexer);
24097
24098 attributes = cp_parser_std_attribute_list (parser);
24099
24100 if (!cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE)
24101 || !cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE))
24102 cp_parser_skip_to_end_of_statement (parser);
24103 else
24104 /* Warn about parsing c++11 attribute in non-c++1 mode, only
24105 when we are sure that we have actually parsed them. */
24106 maybe_warn_cpp0x (CPP0X_ATTRIBUTES);
24107 }
24108 else
24109 {
24110 tree alignas_expr;
24111
24112 /* Look for an alignment-specifier. */
24113
24114 token = cp_lexer_peek_token (parser->lexer);
24115
24116 if (token->type != CPP_KEYWORD
24117 || token->keyword != RID_ALIGNAS)
24118 return NULL_TREE;
24119
24120 cp_lexer_consume_token (parser->lexer);
24121 maybe_warn_cpp0x (CPP0X_ATTRIBUTES);
24122
24123 if (cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN) == NULL)
24124 {
24125 cp_parser_error (parser, "expected %<(%>");
24126 return error_mark_node;
24127 }
24128
24129 cp_parser_parse_tentatively (parser);
24130 alignas_expr = cp_parser_type_id (parser);
24131
24132 if (!cp_parser_parse_definitely (parser))
24133 {
24134 gcc_assert (alignas_expr == error_mark_node
24135 || alignas_expr == NULL_TREE);
24136
24137 alignas_expr =
24138 cp_parser_assignment_expression (parser);
24139 if (alignas_expr == error_mark_node)
24140 cp_parser_skip_to_end_of_statement (parser);
24141 if (alignas_expr == NULL_TREE
24142 || alignas_expr == error_mark_node)
24143 return alignas_expr;
24144 }
24145
24146 alignas_expr = cxx_alignas_expr (alignas_expr);
24147 alignas_expr = build_tree_list (NULL_TREE, alignas_expr);
24148
24149 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
24150 {
24151 cp_lexer_consume_token (parser->lexer);
24152 alignas_expr = make_pack_expansion (alignas_expr);
24153 }
24154
24155 if (cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN) == NULL)
24156 {
24157 cp_parser_error (parser, "expected %<)%>");
24158 return error_mark_node;
24159 }
24160
24161 /* Build the C++-11 representation of an 'aligned'
24162 attribute. */
24163 attributes =
24164 build_tree_list (build_tree_list (get_identifier ("gnu"),
24165 get_identifier ("aligned")),
24166 alignas_expr);
24167 }
24168
24169 return attributes;
24170 }
24171
24172 /* Parse a standard C++-11 attribute-specifier-seq.
24173
24174 attribute-specifier-seq:
24175 attribute-specifier-seq [opt] attribute-specifier
24176 */
24177
24178 static tree
24179 cp_parser_std_attribute_spec_seq (cp_parser *parser)
24180 {
24181 tree attr_specs = NULL_TREE;
24182 tree attr_last = NULL_TREE;
24183
24184 while (true)
24185 {
24186 tree attr_spec = cp_parser_std_attribute_spec (parser);
24187 if (attr_spec == NULL_TREE)
24188 break;
24189 if (attr_spec == error_mark_node)
24190 return error_mark_node;
24191
24192 if (attr_last)
24193 TREE_CHAIN (attr_last) = attr_spec;
24194 else
24195 attr_specs = attr_last = attr_spec;
24196 attr_last = tree_last (attr_last);
24197 }
24198
24199 return attr_specs;
24200 }
24201
24202 /* Parse an optional `__extension__' keyword. Returns TRUE if it is
24203 present, and FALSE otherwise. *SAVED_PEDANTIC is set to the
24204 current value of the PEDANTIC flag, regardless of whether or not
24205 the `__extension__' keyword is present. The caller is responsible
24206 for restoring the value of the PEDANTIC flag. */
24207
24208 static bool
24209 cp_parser_extension_opt (cp_parser* parser, int* saved_pedantic)
24210 {
24211 /* Save the old value of the PEDANTIC flag. */
24212 *saved_pedantic = pedantic;
24213
24214 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_EXTENSION))
24215 {
24216 /* Consume the `__extension__' token. */
24217 cp_lexer_consume_token (parser->lexer);
24218 /* We're not being pedantic while the `__extension__' keyword is
24219 in effect. */
24220 pedantic = 0;
24221
24222 return true;
24223 }
24224
24225 return false;
24226 }
24227
24228 /* Parse a label declaration.
24229
24230 label-declaration:
24231 __label__ label-declarator-seq ;
24232
24233 label-declarator-seq:
24234 identifier , label-declarator-seq
24235 identifier */
24236
24237 static void
24238 cp_parser_label_declaration (cp_parser* parser)
24239 {
24240 /* Look for the `__label__' keyword. */
24241 cp_parser_require_keyword (parser, RID_LABEL, RT_LABEL);
24242
24243 while (true)
24244 {
24245 tree identifier;
24246
24247 /* Look for an identifier. */
24248 identifier = cp_parser_identifier (parser);
24249 /* If we failed, stop. */
24250 if (identifier == error_mark_node)
24251 break;
24252 /* Declare it as a label. */
24253 finish_label_decl (identifier);
24254 /* If the next token is a `;', stop. */
24255 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
24256 break;
24257 /* Look for the `,' separating the label declarations. */
24258 cp_parser_require (parser, CPP_COMMA, RT_COMMA);
24259 }
24260
24261 /* Look for the final `;'. */
24262 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
24263 }
24264
24265 // -------------------------------------------------------------------------- //
24266 // Requires Clause
24267
24268 // Parse a requires clause.
24269 //
24270 // requires-clause:
24271 // 'requires' logical-or-expression
24272 //
24273 // The required logical-or-expression must be a constant expression. Note
24274 // that we don't check that the expression is constepxr here. We defer until
24275 // we analyze constraints and then, we only check atomic constraints.
24276 static tree
24277 cp_parser_requires_clause (cp_parser *parser)
24278 {
24279 // Parse the requires clause so that it is not automatically folded.
24280 ++processing_template_decl;
24281 tree expr = cp_parser_binary_expression (parser, false, false,
24282 PREC_NOT_OPERATOR, NULL);
24283 if (check_for_bare_parameter_packs (expr))
24284 expr = error_mark_node;
24285 --processing_template_decl;
24286 return expr;
24287 }
24288
24289 // Optionally parse a requires clause:
24290 static tree
24291 cp_parser_requires_clause_opt (cp_parser *parser)
24292 {
24293 cp_token *tok = cp_lexer_peek_token (parser->lexer);
24294 if (tok->keyword != RID_REQUIRES)
24295 {
24296 if (!flag_concepts && tok->type == CPP_NAME
24297 && tok->u.value == ridpointers[RID_REQUIRES])
24298 {
24299 error_at (cp_lexer_peek_token (parser->lexer)->location,
24300 "%<requires%> only available with -fconcepts");
24301 /* Parse and discard the requires-clause. */
24302 cp_lexer_consume_token (parser->lexer);
24303 cp_parser_requires_clause (parser);
24304 }
24305 return NULL_TREE;
24306 }
24307 cp_lexer_consume_token (parser->lexer);
24308 return cp_parser_requires_clause (parser);
24309 }
24310
24311
24312 /*---------------------------------------------------------------------------
24313 Requires expressions
24314 ---------------------------------------------------------------------------*/
24315
24316 /* Parse a requires expression
24317
24318 requirement-expression:
24319 'requires' requirement-parameter-list [opt] requirement-body */
24320 static tree
24321 cp_parser_requires_expression (cp_parser *parser)
24322 {
24323 gcc_assert (cp_lexer_next_token_is_keyword (parser->lexer, RID_REQUIRES));
24324 location_t loc = cp_lexer_consume_token (parser->lexer)->location;
24325
24326 /* A requires-expression shall appear only within a concept
24327 definition or a requires-clause.
24328
24329 TODO: Implement this diagnostic correctly. */
24330 if (!processing_template_decl)
24331 {
24332 error_at (loc, "a requires expression cannot appear outside a template");
24333 cp_parser_skip_to_end_of_statement (parser);
24334 return error_mark_node;
24335 }
24336
24337 tree parms, reqs;
24338 {
24339 /* Local parameters are delared as variables within the scope
24340 of the expression. They are not visible past the end of
24341 the expression. Expressions within the requires-expression
24342 are unevaluated. */
24343 struct scope_sentinel
24344 {
24345 scope_sentinel ()
24346 {
24347 ++cp_unevaluated_operand;
24348 begin_scope (sk_block, NULL_TREE);
24349 }
24350
24351 ~scope_sentinel ()
24352 {
24353 pop_bindings_and_leave_scope ();
24354 --cp_unevaluated_operand;
24355 }
24356 } s;
24357
24358 /* Parse the optional parameter list. */
24359 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
24360 {
24361 parms = cp_parser_requirement_parameter_list (parser);
24362 if (parms == error_mark_node)
24363 return error_mark_node;
24364 }
24365 else
24366 parms = NULL_TREE;
24367
24368 /* Parse the requirement body. */
24369 reqs = cp_parser_requirement_body (parser);
24370 if (reqs == error_mark_node)
24371 return error_mark_node;
24372 }
24373
24374 /* This needs to happen after pop_bindings_and_leave_scope, as it reverses
24375 the parm chain. */
24376 grokparms (parms, &parms);
24377 return finish_requires_expr (parms, reqs);
24378 }
24379
24380 /* Parse a parameterized requirement.
24381
24382 requirement-parameter-list:
24383 '(' parameter-declaration-clause ')' */
24384 static tree
24385 cp_parser_requirement_parameter_list (cp_parser *parser)
24386 {
24387 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
24388 return error_mark_node;
24389
24390 tree parms = cp_parser_parameter_declaration_clause (parser);
24391
24392 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
24393 return error_mark_node;
24394
24395 return parms;
24396 }
24397
24398 /* Parse the body of a requirement.
24399
24400 requirement-body:
24401 '{' requirement-list '}' */
24402 static tree
24403 cp_parser_requirement_body (cp_parser *parser)
24404 {
24405 if (!cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
24406 return error_mark_node;
24407
24408 tree reqs = cp_parser_requirement_list (parser);
24409
24410 if (!cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE))
24411 return error_mark_node;
24412
24413 return reqs;
24414 }
24415
24416 /* Parse a list of requirements.
24417
24418 requirement-list:
24419 requirement
24420 requirement-list ';' requirement[opt] */
24421 static tree
24422 cp_parser_requirement_list (cp_parser *parser)
24423 {
24424 tree result = NULL_TREE;
24425 while (true)
24426 {
24427 tree req = cp_parser_requirement (parser);
24428 if (req == error_mark_node)
24429 return error_mark_node;
24430
24431 result = tree_cons (NULL_TREE, req, result);
24432
24433 /* If we see a semi-colon, consume it. */
24434 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
24435 cp_lexer_consume_token (parser->lexer);
24436
24437 /* Stop processing at the end of the list. */
24438 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
24439 break;
24440 }
24441
24442 /* Reverse the order of requirements so they are analyzed in
24443 declaration order. */
24444 return nreverse (result);
24445 }
24446
24447 /* Parse a syntactic requirement or type requirement.
24448
24449 requirement:
24450 simple-requirement
24451 compound-requirement
24452 type-requirement
24453 nested-requirement */
24454 static tree
24455 cp_parser_requirement (cp_parser *parser)
24456 {
24457 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
24458 return cp_parser_compound_requirement (parser);
24459 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TYPENAME))
24460 return cp_parser_type_requirement (parser);
24461 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_REQUIRES))
24462 return cp_parser_nested_requirement (parser);
24463 else
24464 return cp_parser_simple_requirement (parser);
24465 }
24466
24467 /* Parse a simple requirement.
24468
24469 simple-requirement:
24470 expression ';' */
24471 static tree
24472 cp_parser_simple_requirement (cp_parser *parser)
24473 {
24474 tree expr = cp_parser_expression (parser, NULL, false, false);
24475 if (!expr || expr == error_mark_node)
24476 return error_mark_node;
24477
24478 if (!cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON))
24479 return error_mark_node;
24480
24481 return finish_simple_requirement (expr);
24482 }
24483
24484 /* Parse a type requirement
24485
24486 type-requirement
24487 nested-name-specifier [opt] required-type-name ';'
24488
24489 required-type-name:
24490 type-name
24491 'template' [opt] simple-template-id */
24492 static tree
24493 cp_parser_type_requirement (cp_parser *parser)
24494 {
24495 cp_lexer_consume_token (parser->lexer);
24496
24497 // Save the scope before parsing name specifiers.
24498 tree saved_scope = parser->scope;
24499 tree saved_object_scope = parser->object_scope;
24500 tree saved_qualifying_scope = parser->qualifying_scope;
24501 cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/true);
24502 cp_parser_nested_name_specifier_opt (parser,
24503 /*typename_keyword_p=*/true,
24504 /*check_dependency_p=*/false,
24505 /*type_p=*/true,
24506 /*is_declaration=*/false);
24507
24508 tree type;
24509 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
24510 {
24511 cp_lexer_consume_token (parser->lexer);
24512 type = cp_parser_template_id (parser,
24513 /*template_keyword_p=*/true,
24514 /*check_dependency=*/false,
24515 /*tag_type=*/none_type,
24516 /*is_declaration=*/false);
24517 type = make_typename_type (parser->scope, type, typename_type,
24518 /*complain=*/tf_error);
24519 }
24520 else
24521 type = cp_parser_type_name (parser, /*typename_keyword_p=*/true);
24522
24523 if (TREE_CODE (type) == TYPE_DECL)
24524 type = TREE_TYPE (type);
24525
24526 parser->scope = saved_scope;
24527 parser->object_scope = saved_object_scope;
24528 parser->qualifying_scope = saved_qualifying_scope;
24529
24530 if (type == error_mark_node)
24531 cp_parser_skip_to_end_of_statement (parser);
24532
24533 if (!cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON))
24534 return error_mark_node;
24535 if (type == error_mark_node)
24536 return error_mark_node;
24537
24538 return finish_type_requirement (type);
24539 }
24540
24541 /* Parse a compound requirement
24542
24543 compound-requirement:
24544 '{' expression '}' 'noexcept' [opt] trailing-return-type [opt] ';' */
24545 static tree
24546 cp_parser_compound_requirement (cp_parser *parser)
24547 {
24548 /* Parse an expression enclosed in '{ }'s. */
24549 if (!cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
24550 return error_mark_node;
24551
24552 tree expr = cp_parser_expression (parser, NULL, false, false);
24553 if (!expr || expr == error_mark_node)
24554 return error_mark_node;
24555
24556 if (!cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE))
24557 return error_mark_node;
24558
24559 /* Parse the optional noexcept. */
24560 bool noexcept_p = false;
24561 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_NOEXCEPT))
24562 {
24563 cp_lexer_consume_token (parser->lexer);
24564 noexcept_p = true;
24565 }
24566
24567 /* Parse the optional trailing return type. */
24568 tree type = NULL_TREE;
24569 if (cp_lexer_next_token_is (parser->lexer, CPP_DEREF))
24570 {
24571 cp_lexer_consume_token (parser->lexer);
24572 bool saved_result_type_constraint_p = parser->in_result_type_constraint_p;
24573 parser->in_result_type_constraint_p = true;
24574 type = cp_parser_trailing_type_id (parser);
24575 parser->in_result_type_constraint_p = saved_result_type_constraint_p;
24576 if (type == error_mark_node)
24577 return error_mark_node;
24578 }
24579
24580 return finish_compound_requirement (expr, type, noexcept_p);
24581 }
24582
24583 /* Parse a nested requirement. This is the same as a requires clause.
24584
24585 nested-requirement:
24586 requires-clause */
24587 static tree
24588 cp_parser_nested_requirement (cp_parser *parser)
24589 {
24590 cp_lexer_consume_token (parser->lexer);
24591 tree req = cp_parser_requires_clause (parser);
24592 if (req == error_mark_node)
24593 return error_mark_node;
24594 return finish_nested_requirement (req);
24595 }
24596
24597 /* Support Functions */
24598
24599 /* Return the appropriate prefer_type argument for lookup_name_real based on
24600 tag_type and template_mem_access. */
24601
24602 static inline int
24603 prefer_type_arg (tag_types tag_type, bool template_mem_access = false)
24604 {
24605 /* DR 141: When looking in the current enclosing context for a template-name
24606 after -> or ., only consider class templates. */
24607 if (template_mem_access)
24608 return 2;
24609 switch (tag_type)
24610 {
24611 case none_type: return 0; // No preference.
24612 case scope_type: return 1; // Type or namespace.
24613 default: return 2; // Type only.
24614 }
24615 }
24616
24617 /* Looks up NAME in the current scope, as given by PARSER->SCOPE.
24618 NAME should have one of the representations used for an
24619 id-expression. If NAME is the ERROR_MARK_NODE, the ERROR_MARK_NODE
24620 is returned. If PARSER->SCOPE is a dependent type, then a
24621 SCOPE_REF is returned.
24622
24623 If NAME is a TEMPLATE_ID_EXPR, then it will be immediately
24624 returned; the name was already resolved when the TEMPLATE_ID_EXPR
24625 was formed. Abstractly, such entities should not be passed to this
24626 function, because they do not need to be looked up, but it is
24627 simpler to check for this special case here, rather than at the
24628 call-sites.
24629
24630 In cases not explicitly covered above, this function returns a
24631 DECL, OVERLOAD, or baselink representing the result of the lookup.
24632 If there was no entity with the indicated NAME, the ERROR_MARK_NODE
24633 is returned.
24634
24635 If TAG_TYPE is not NONE_TYPE, it indicates an explicit type keyword
24636 (e.g., "struct") that was used. In that case bindings that do not
24637 refer to types are ignored.
24638
24639 If IS_TEMPLATE is TRUE, bindings that do not refer to templates are
24640 ignored.
24641
24642 If IS_NAMESPACE is TRUE, bindings that do not refer to namespaces
24643 are ignored.
24644
24645 If CHECK_DEPENDENCY is TRUE, names are not looked up in dependent
24646 types.
24647
24648 If AMBIGUOUS_DECLS is non-NULL, *AMBIGUOUS_DECLS is set to a
24649 TREE_LIST of candidates if name-lookup results in an ambiguity, and
24650 NULL_TREE otherwise. */
24651
24652 static cp_expr
24653 cp_parser_lookup_name (cp_parser *parser, tree name,
24654 enum tag_types tag_type,
24655 bool is_template,
24656 bool is_namespace,
24657 bool check_dependency,
24658 tree *ambiguous_decls,
24659 location_t name_location)
24660 {
24661 tree decl;
24662 tree object_type = parser->context->object_type;
24663
24664 /* Assume that the lookup will be unambiguous. */
24665 if (ambiguous_decls)
24666 *ambiguous_decls = NULL_TREE;
24667
24668 /* Now that we have looked up the name, the OBJECT_TYPE (if any) is
24669 no longer valid. Note that if we are parsing tentatively, and
24670 the parse fails, OBJECT_TYPE will be automatically restored. */
24671 parser->context->object_type = NULL_TREE;
24672
24673 if (name == error_mark_node)
24674 return error_mark_node;
24675
24676 /* A template-id has already been resolved; there is no lookup to
24677 do. */
24678 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
24679 return name;
24680 if (BASELINK_P (name))
24681 {
24682 gcc_assert (TREE_CODE (BASELINK_FUNCTIONS (name))
24683 == TEMPLATE_ID_EXPR);
24684 return name;
24685 }
24686
24687 /* A BIT_NOT_EXPR is used to represent a destructor. By this point,
24688 it should already have been checked to make sure that the name
24689 used matches the type being destroyed. */
24690 if (TREE_CODE (name) == BIT_NOT_EXPR)
24691 {
24692 tree type;
24693
24694 /* Figure out to which type this destructor applies. */
24695 if (parser->scope)
24696 type = parser->scope;
24697 else if (object_type)
24698 type = object_type;
24699 else
24700 type = current_class_type;
24701 /* If that's not a class type, there is no destructor. */
24702 if (!type || !CLASS_TYPE_P (type))
24703 return error_mark_node;
24704 if (CLASSTYPE_LAZY_DESTRUCTOR (type))
24705 lazily_declare_fn (sfk_destructor, type);
24706 if (!CLASSTYPE_DESTRUCTORS (type))
24707 return error_mark_node;
24708 /* If it was a class type, return the destructor. */
24709 return CLASSTYPE_DESTRUCTORS (type);
24710 }
24711
24712 /* By this point, the NAME should be an ordinary identifier. If
24713 the id-expression was a qualified name, the qualifying scope is
24714 stored in PARSER->SCOPE at this point. */
24715 gcc_assert (identifier_p (name));
24716
24717 /* Perform the lookup. */
24718 if (parser->scope)
24719 {
24720 bool dependent_p;
24721
24722 if (parser->scope == error_mark_node)
24723 return error_mark_node;
24724
24725 /* If the SCOPE is dependent, the lookup must be deferred until
24726 the template is instantiated -- unless we are explicitly
24727 looking up names in uninstantiated templates. Even then, we
24728 cannot look up the name if the scope is not a class type; it
24729 might, for example, be a template type parameter. */
24730 dependent_p = (TYPE_P (parser->scope)
24731 && dependent_scope_p (parser->scope));
24732 if ((check_dependency || !CLASS_TYPE_P (parser->scope))
24733 && dependent_p)
24734 /* Defer lookup. */
24735 decl = error_mark_node;
24736 else
24737 {
24738 tree pushed_scope = NULL_TREE;
24739
24740 /* If PARSER->SCOPE is a dependent type, then it must be a
24741 class type, and we must not be checking dependencies;
24742 otherwise, we would have processed this lookup above. So
24743 that PARSER->SCOPE is not considered a dependent base by
24744 lookup_member, we must enter the scope here. */
24745 if (dependent_p)
24746 pushed_scope = push_scope (parser->scope);
24747
24748 /* If the PARSER->SCOPE is a template specialization, it
24749 may be instantiated during name lookup. In that case,
24750 errors may be issued. Even if we rollback the current
24751 tentative parse, those errors are valid. */
24752 decl = lookup_qualified_name (parser->scope, name,
24753 prefer_type_arg (tag_type),
24754 /*complain=*/true);
24755
24756 /* 3.4.3.1: In a lookup in which the constructor is an acceptable
24757 lookup result and the nested-name-specifier nominates a class C:
24758 * if the name specified after the nested-name-specifier, when
24759 looked up in C, is the injected-class-name of C (Clause 9), or
24760 * if the name specified after the nested-name-specifier is the
24761 same as the identifier or the simple-template-id's template-
24762 name in the last component of the nested-name-specifier,
24763 the name is instead considered to name the constructor of
24764 class C. [ Note: for example, the constructor is not an
24765 acceptable lookup result in an elaborated-type-specifier so
24766 the constructor would not be used in place of the
24767 injected-class-name. --end note ] Such a constructor name
24768 shall be used only in the declarator-id of a declaration that
24769 names a constructor or in a using-declaration. */
24770 if (tag_type == none_type
24771 && DECL_SELF_REFERENCE_P (decl)
24772 && same_type_p (DECL_CONTEXT (decl), parser->scope))
24773 decl = lookup_qualified_name (parser->scope, ctor_identifier,
24774 prefer_type_arg (tag_type),
24775 /*complain=*/true);
24776
24777 /* If we have a single function from a using decl, pull it out. */
24778 if (TREE_CODE (decl) == OVERLOAD
24779 && !really_overloaded_fn (decl))
24780 decl = OVL_FUNCTION (decl);
24781
24782 if (pushed_scope)
24783 pop_scope (pushed_scope);
24784 }
24785
24786 /* If the scope is a dependent type and either we deferred lookup or
24787 we did lookup but didn't find the name, rememeber the name. */
24788 if (decl == error_mark_node && TYPE_P (parser->scope)
24789 && dependent_type_p (parser->scope))
24790 {
24791 if (tag_type)
24792 {
24793 tree type;
24794
24795 /* The resolution to Core Issue 180 says that `struct
24796 A::B' should be considered a type-name, even if `A'
24797 is dependent. */
24798 type = make_typename_type (parser->scope, name, tag_type,
24799 /*complain=*/tf_error);
24800 if (type != error_mark_node)
24801 decl = TYPE_NAME (type);
24802 }
24803 else if (is_template
24804 && (cp_parser_next_token_ends_template_argument_p (parser)
24805 || cp_lexer_next_token_is (parser->lexer,
24806 CPP_CLOSE_PAREN)))
24807 decl = make_unbound_class_template (parser->scope,
24808 name, NULL_TREE,
24809 /*complain=*/tf_error);
24810 else
24811 decl = build_qualified_name (/*type=*/NULL_TREE,
24812 parser->scope, name,
24813 is_template);
24814 }
24815 parser->qualifying_scope = parser->scope;
24816 parser->object_scope = NULL_TREE;
24817 }
24818 else if (object_type)
24819 {
24820 /* Look up the name in the scope of the OBJECT_TYPE, unless the
24821 OBJECT_TYPE is not a class. */
24822 if (CLASS_TYPE_P (object_type))
24823 /* If the OBJECT_TYPE is a template specialization, it may
24824 be instantiated during name lookup. In that case, errors
24825 may be issued. Even if we rollback the current tentative
24826 parse, those errors are valid. */
24827 decl = lookup_member (object_type,
24828 name,
24829 /*protect=*/0,
24830 prefer_type_arg (tag_type),
24831 tf_warning_or_error);
24832 else
24833 decl = NULL_TREE;
24834
24835 if (!decl)
24836 /* Look it up in the enclosing context. DR 141: When looking for a
24837 template-name after -> or ., only consider class templates. */
24838 decl = lookup_name_real (name, prefer_type_arg (tag_type, is_template),
24839 /*nonclass=*/0,
24840 /*block_p=*/true, is_namespace, 0);
24841 if (object_type == unknown_type_node)
24842 /* The object is type-dependent, so we can't look anything up; we used
24843 this to get the DR 141 behavior. */
24844 object_type = NULL_TREE;
24845 parser->object_scope = object_type;
24846 parser->qualifying_scope = NULL_TREE;
24847 }
24848 else
24849 {
24850 decl = lookup_name_real (name, prefer_type_arg (tag_type),
24851 /*nonclass=*/0,
24852 /*block_p=*/true, is_namespace, 0);
24853 parser->qualifying_scope = NULL_TREE;
24854 parser->object_scope = NULL_TREE;
24855 }
24856
24857 /* If the lookup failed, let our caller know. */
24858 if (!decl || decl == error_mark_node)
24859 return error_mark_node;
24860
24861 /* Pull out the template from an injected-class-name (or multiple). */
24862 if (is_template)
24863 decl = maybe_get_template_decl_from_type_decl (decl);
24864
24865 /* If it's a TREE_LIST, the result of the lookup was ambiguous. */
24866 if (TREE_CODE (decl) == TREE_LIST)
24867 {
24868 if (ambiguous_decls)
24869 *ambiguous_decls = decl;
24870 /* The error message we have to print is too complicated for
24871 cp_parser_error, so we incorporate its actions directly. */
24872 if (!cp_parser_simulate_error (parser))
24873 {
24874 error_at (name_location, "reference to %qD is ambiguous",
24875 name);
24876 print_candidates (decl);
24877 }
24878 return error_mark_node;
24879 }
24880
24881 gcc_assert (DECL_P (decl)
24882 || TREE_CODE (decl) == OVERLOAD
24883 || TREE_CODE (decl) == SCOPE_REF
24884 || TREE_CODE (decl) == UNBOUND_CLASS_TEMPLATE
24885 || BASELINK_P (decl));
24886
24887 /* If we have resolved the name of a member declaration, check to
24888 see if the declaration is accessible. When the name resolves to
24889 set of overloaded functions, accessibility is checked when
24890 overload resolution is done.
24891
24892 During an explicit instantiation, access is not checked at all,
24893 as per [temp.explicit]. */
24894 if (DECL_P (decl))
24895 check_accessibility_of_qualified_id (decl, object_type, parser->scope);
24896
24897 maybe_record_typedef_use (decl);
24898
24899 return cp_expr (decl, name_location);
24900 }
24901
24902 /* Like cp_parser_lookup_name, but for use in the typical case where
24903 CHECK_ACCESS is TRUE, IS_TYPE is FALSE, IS_TEMPLATE is FALSE,
24904 IS_NAMESPACE is FALSE, and CHECK_DEPENDENCY is TRUE. */
24905
24906 static tree
24907 cp_parser_lookup_name_simple (cp_parser* parser, tree name, location_t location)
24908 {
24909 return cp_parser_lookup_name (parser, name,
24910 none_type,
24911 /*is_template=*/false,
24912 /*is_namespace=*/false,
24913 /*check_dependency=*/true,
24914 /*ambiguous_decls=*/NULL,
24915 location);
24916 }
24917
24918 /* If DECL is a TEMPLATE_DECL that can be treated like a TYPE_DECL in
24919 the current context, return the TYPE_DECL. If TAG_NAME_P is
24920 true, the DECL indicates the class being defined in a class-head,
24921 or declared in an elaborated-type-specifier.
24922
24923 Otherwise, return DECL. */
24924
24925 static tree
24926 cp_parser_maybe_treat_template_as_class (tree decl, bool tag_name_p)
24927 {
24928 /* If the TEMPLATE_DECL is being declared as part of a class-head,
24929 the translation from TEMPLATE_DECL to TYPE_DECL occurs:
24930
24931 struct A {
24932 template <typename T> struct B;
24933 };
24934
24935 template <typename T> struct A::B {};
24936
24937 Similarly, in an elaborated-type-specifier:
24938
24939 namespace N { struct X{}; }
24940
24941 struct A {
24942 template <typename T> friend struct N::X;
24943 };
24944
24945 However, if the DECL refers to a class type, and we are in
24946 the scope of the class, then the name lookup automatically
24947 finds the TYPE_DECL created by build_self_reference rather
24948 than a TEMPLATE_DECL. For example, in:
24949
24950 template <class T> struct S {
24951 S s;
24952 };
24953
24954 there is no need to handle such case. */
24955
24956 if (DECL_CLASS_TEMPLATE_P (decl) && tag_name_p)
24957 return DECL_TEMPLATE_RESULT (decl);
24958
24959 return decl;
24960 }
24961
24962 /* If too many, or too few, template-parameter lists apply to the
24963 declarator, issue an error message. Returns TRUE if all went well,
24964 and FALSE otherwise. */
24965
24966 static bool
24967 cp_parser_check_declarator_template_parameters (cp_parser* parser,
24968 cp_declarator *declarator,
24969 location_t declarator_location)
24970 {
24971 switch (declarator->kind)
24972 {
24973 case cdk_id:
24974 {
24975 unsigned num_templates = 0;
24976 tree scope = declarator->u.id.qualifying_scope;
24977
24978 if (scope)
24979 num_templates = num_template_headers_for_class (scope);
24980 else if (TREE_CODE (declarator->u.id.unqualified_name)
24981 == TEMPLATE_ID_EXPR)
24982 /* If the DECLARATOR has the form `X<y>' then it uses one
24983 additional level of template parameters. */
24984 ++num_templates;
24985
24986 return cp_parser_check_template_parameters
24987 (parser, num_templates, declarator_location, declarator);
24988 }
24989
24990 case cdk_function:
24991 case cdk_array:
24992 case cdk_pointer:
24993 case cdk_reference:
24994 case cdk_ptrmem:
24995 return (cp_parser_check_declarator_template_parameters
24996 (parser, declarator->declarator, declarator_location));
24997
24998 case cdk_error:
24999 return true;
25000
25001 default:
25002 gcc_unreachable ();
25003 }
25004 return false;
25005 }
25006
25007 /* NUM_TEMPLATES were used in the current declaration. If that is
25008 invalid, return FALSE and issue an error messages. Otherwise,
25009 return TRUE. If DECLARATOR is non-NULL, then we are checking a
25010 declarator and we can print more accurate diagnostics. */
25011
25012 static bool
25013 cp_parser_check_template_parameters (cp_parser* parser,
25014 unsigned num_templates,
25015 location_t location,
25016 cp_declarator *declarator)
25017 {
25018 /* If there are the same number of template classes and parameter
25019 lists, that's OK. */
25020 if (parser->num_template_parameter_lists == num_templates)
25021 return true;
25022 /* If there are more, but only one more, then we are referring to a
25023 member template. That's OK too. */
25024 if (parser->num_template_parameter_lists == num_templates + 1)
25025 return true;
25026 /* If there are more template classes than parameter lists, we have
25027 something like:
25028
25029 template <class T> void S<T>::R<T>::f (); */
25030 if (parser->num_template_parameter_lists < num_templates)
25031 {
25032 if (declarator && !current_function_decl)
25033 error_at (location, "specializing member %<%T::%E%> "
25034 "requires %<template<>%> syntax",
25035 declarator->u.id.qualifying_scope,
25036 declarator->u.id.unqualified_name);
25037 else if (declarator)
25038 error_at (location, "invalid declaration of %<%T::%E%>",
25039 declarator->u.id.qualifying_scope,
25040 declarator->u.id.unqualified_name);
25041 else
25042 error_at (location, "too few template-parameter-lists");
25043 return false;
25044 }
25045 /* Otherwise, there are too many template parameter lists. We have
25046 something like:
25047
25048 template <class T> template <class U> void S::f(); */
25049 error_at (location, "too many template-parameter-lists");
25050 return false;
25051 }
25052
25053 /* Parse an optional `::' token indicating that the following name is
25054 from the global namespace. If so, PARSER->SCOPE is set to the
25055 GLOBAL_NAMESPACE. Otherwise, PARSER->SCOPE is set to NULL_TREE,
25056 unless CURRENT_SCOPE_VALID_P is TRUE, in which case it is left alone.
25057 Returns the new value of PARSER->SCOPE, if the `::' token is
25058 present, and NULL_TREE otherwise. */
25059
25060 static tree
25061 cp_parser_global_scope_opt (cp_parser* parser, bool current_scope_valid_p)
25062 {
25063 cp_token *token;
25064
25065 /* Peek at the next token. */
25066 token = cp_lexer_peek_token (parser->lexer);
25067 /* If we're looking at a `::' token then we're starting from the
25068 global namespace, not our current location. */
25069 if (token->type == CPP_SCOPE)
25070 {
25071 /* Consume the `::' token. */
25072 cp_lexer_consume_token (parser->lexer);
25073 /* Set the SCOPE so that we know where to start the lookup. */
25074 parser->scope = global_namespace;
25075 parser->qualifying_scope = global_namespace;
25076 parser->object_scope = NULL_TREE;
25077
25078 return parser->scope;
25079 }
25080 else if (!current_scope_valid_p)
25081 {
25082 parser->scope = NULL_TREE;
25083 parser->qualifying_scope = NULL_TREE;
25084 parser->object_scope = NULL_TREE;
25085 }
25086
25087 return NULL_TREE;
25088 }
25089
25090 /* Returns TRUE if the upcoming token sequence is the start of a
25091 constructor declarator. If FRIEND_P is true, the declarator is
25092 preceded by the `friend' specifier. */
25093
25094 static bool
25095 cp_parser_constructor_declarator_p (cp_parser *parser, bool friend_p)
25096 {
25097 bool constructor_p;
25098 bool outside_class_specifier_p;
25099 tree nested_name_specifier;
25100 cp_token *next_token;
25101
25102 /* The common case is that this is not a constructor declarator, so
25103 try to avoid doing lots of work if at all possible. It's not
25104 valid declare a constructor at function scope. */
25105 if (parser->in_function_body)
25106 return false;
25107 /* And only certain tokens can begin a constructor declarator. */
25108 next_token = cp_lexer_peek_token (parser->lexer);
25109 if (next_token->type != CPP_NAME
25110 && next_token->type != CPP_SCOPE
25111 && next_token->type != CPP_NESTED_NAME_SPECIFIER
25112 && next_token->type != CPP_TEMPLATE_ID)
25113 return false;
25114
25115 /* Parse tentatively; we are going to roll back all of the tokens
25116 consumed here. */
25117 cp_parser_parse_tentatively (parser);
25118 /* Assume that we are looking at a constructor declarator. */
25119 constructor_p = true;
25120
25121 /* Look for the optional `::' operator. */
25122 cp_parser_global_scope_opt (parser,
25123 /*current_scope_valid_p=*/false);
25124 /* Look for the nested-name-specifier. */
25125 nested_name_specifier
25126 = (cp_parser_nested_name_specifier_opt (parser,
25127 /*typename_keyword_p=*/false,
25128 /*check_dependency_p=*/false,
25129 /*type_p=*/false,
25130 /*is_declaration=*/false));
25131
25132 outside_class_specifier_p = (!at_class_scope_p ()
25133 || !TYPE_BEING_DEFINED (current_class_type)
25134 || friend_p);
25135
25136 /* Outside of a class-specifier, there must be a
25137 nested-name-specifier. */
25138 if (!nested_name_specifier && outside_class_specifier_p)
25139 constructor_p = false;
25140 else if (nested_name_specifier == error_mark_node)
25141 constructor_p = false;
25142
25143 /* If we have a class scope, this is easy; DR 147 says that S::S always
25144 names the constructor, and no other qualified name could. */
25145 if (constructor_p && nested_name_specifier
25146 && CLASS_TYPE_P (nested_name_specifier))
25147 {
25148 tree id = cp_parser_unqualified_id (parser,
25149 /*template_keyword_p=*/false,
25150 /*check_dependency_p=*/false,
25151 /*declarator_p=*/true,
25152 /*optional_p=*/false);
25153 if (is_overloaded_fn (id))
25154 id = DECL_NAME (get_first_fn (id));
25155 if (!constructor_name_p (id, nested_name_specifier))
25156 constructor_p = false;
25157 }
25158 /* If we still think that this might be a constructor-declarator,
25159 look for a class-name. */
25160 else if (constructor_p)
25161 {
25162 /* If we have:
25163
25164 template <typename T> struct S {
25165 S();
25166 };
25167
25168 we must recognize that the nested `S' names a class. */
25169 tree type_decl;
25170 type_decl = cp_parser_class_name (parser,
25171 /*typename_keyword_p=*/false,
25172 /*template_keyword_p=*/false,
25173 none_type,
25174 /*check_dependency_p=*/false,
25175 /*class_head_p=*/false,
25176 /*is_declaration=*/false);
25177 /* If there was no class-name, then this is not a constructor.
25178 Otherwise, if we are in a class-specifier and we aren't
25179 handling a friend declaration, check that its type matches
25180 current_class_type (c++/38313). Note: error_mark_node
25181 is left alone for error recovery purposes. */
25182 constructor_p = (!cp_parser_error_occurred (parser)
25183 && (outside_class_specifier_p
25184 || type_decl == error_mark_node
25185 || same_type_p (current_class_type,
25186 TREE_TYPE (type_decl))));
25187
25188 /* If we're still considering a constructor, we have to see a `(',
25189 to begin the parameter-declaration-clause, followed by either a
25190 `)', an `...', or a decl-specifier. We need to check for a
25191 type-specifier to avoid being fooled into thinking that:
25192
25193 S (f) (int);
25194
25195 is a constructor. (It is actually a function named `f' that
25196 takes one parameter (of type `int') and returns a value of type
25197 `S'. */
25198 if (constructor_p
25199 && !cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
25200 constructor_p = false;
25201
25202 if (constructor_p
25203 && cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN)
25204 && cp_lexer_next_token_is_not (parser->lexer, CPP_ELLIPSIS)
25205 /* A parameter declaration begins with a decl-specifier,
25206 which is either the "attribute" keyword, a storage class
25207 specifier, or (usually) a type-specifier. */
25208 && !cp_lexer_next_token_is_decl_specifier_keyword (parser->lexer))
25209 {
25210 tree type;
25211 tree pushed_scope = NULL_TREE;
25212 unsigned saved_num_template_parameter_lists;
25213
25214 /* Names appearing in the type-specifier should be looked up
25215 in the scope of the class. */
25216 if (current_class_type)
25217 type = NULL_TREE;
25218 else
25219 {
25220 type = TREE_TYPE (type_decl);
25221 if (TREE_CODE (type) == TYPENAME_TYPE)
25222 {
25223 type = resolve_typename_type (type,
25224 /*only_current_p=*/false);
25225 if (TREE_CODE (type) == TYPENAME_TYPE)
25226 {
25227 cp_parser_abort_tentative_parse (parser);
25228 return false;
25229 }
25230 }
25231 pushed_scope = push_scope (type);
25232 }
25233
25234 /* Inside the constructor parameter list, surrounding
25235 template-parameter-lists do not apply. */
25236 saved_num_template_parameter_lists
25237 = parser->num_template_parameter_lists;
25238 parser->num_template_parameter_lists = 0;
25239
25240 /* Look for the type-specifier. */
25241 cp_parser_type_specifier (parser,
25242 CP_PARSER_FLAGS_NONE,
25243 /*decl_specs=*/NULL,
25244 /*is_declarator=*/true,
25245 /*declares_class_or_enum=*/NULL,
25246 /*is_cv_qualifier=*/NULL);
25247
25248 parser->num_template_parameter_lists
25249 = saved_num_template_parameter_lists;
25250
25251 /* Leave the scope of the class. */
25252 if (pushed_scope)
25253 pop_scope (pushed_scope);
25254
25255 constructor_p = !cp_parser_error_occurred (parser);
25256 }
25257 }
25258
25259 /* We did not really want to consume any tokens. */
25260 cp_parser_abort_tentative_parse (parser);
25261
25262 return constructor_p;
25263 }
25264
25265 /* Parse the definition of the function given by the DECL_SPECIFIERS,
25266 ATTRIBUTES, and DECLARATOR. The access checks have been deferred;
25267 they must be performed once we are in the scope of the function.
25268
25269 Returns the function defined. */
25270
25271 static tree
25272 cp_parser_function_definition_from_specifiers_and_declarator
25273 (cp_parser* parser,
25274 cp_decl_specifier_seq *decl_specifiers,
25275 tree attributes,
25276 const cp_declarator *declarator)
25277 {
25278 tree fn;
25279 bool success_p;
25280
25281 /* Begin the function-definition. */
25282 success_p = start_function (decl_specifiers, declarator, attributes);
25283
25284 /* The things we're about to see are not directly qualified by any
25285 template headers we've seen thus far. */
25286 reset_specialization ();
25287
25288 /* If there were names looked up in the decl-specifier-seq that we
25289 did not check, check them now. We must wait until we are in the
25290 scope of the function to perform the checks, since the function
25291 might be a friend. */
25292 perform_deferred_access_checks (tf_warning_or_error);
25293
25294 if (success_p)
25295 {
25296 cp_finalize_omp_declare_simd (parser, current_function_decl);
25297 parser->omp_declare_simd = NULL;
25298 cp_finalize_oacc_routine (parser, current_function_decl, true);
25299 parser->oacc_routine = NULL;
25300 }
25301
25302 if (!success_p)
25303 {
25304 /* Skip the entire function. */
25305 cp_parser_skip_to_end_of_block_or_statement (parser);
25306 fn = error_mark_node;
25307 }
25308 else if (DECL_INITIAL (current_function_decl) != error_mark_node)
25309 {
25310 /* Seen already, skip it. An error message has already been output. */
25311 cp_parser_skip_to_end_of_block_or_statement (parser);
25312 fn = current_function_decl;
25313 current_function_decl = NULL_TREE;
25314 /* If this is a function from a class, pop the nested class. */
25315 if (current_class_name)
25316 pop_nested_class ();
25317 }
25318 else
25319 {
25320 timevar_id_t tv;
25321 if (DECL_DECLARED_INLINE_P (current_function_decl))
25322 tv = TV_PARSE_INLINE;
25323 else
25324 tv = TV_PARSE_FUNC;
25325 timevar_push (tv);
25326 fn = cp_parser_function_definition_after_declarator (parser,
25327 /*inline_p=*/false);
25328 timevar_pop (tv);
25329 }
25330
25331 return fn;
25332 }
25333
25334 /* Parse the part of a function-definition that follows the
25335 declarator. INLINE_P is TRUE iff this function is an inline
25336 function defined within a class-specifier.
25337
25338 Returns the function defined. */
25339
25340 static tree
25341 cp_parser_function_definition_after_declarator (cp_parser* parser,
25342 bool inline_p)
25343 {
25344 tree fn;
25345 bool ctor_initializer_p = false;
25346 bool saved_in_unbraced_linkage_specification_p;
25347 bool saved_in_function_body;
25348 unsigned saved_num_template_parameter_lists;
25349 cp_token *token;
25350 bool fully_implicit_function_template_p
25351 = parser->fully_implicit_function_template_p;
25352 parser->fully_implicit_function_template_p = false;
25353 tree implicit_template_parms
25354 = parser->implicit_template_parms;
25355 parser->implicit_template_parms = 0;
25356 cp_binding_level* implicit_template_scope
25357 = parser->implicit_template_scope;
25358 parser->implicit_template_scope = 0;
25359
25360 saved_in_function_body = parser->in_function_body;
25361 parser->in_function_body = true;
25362 /* If the next token is `return', then the code may be trying to
25363 make use of the "named return value" extension that G++ used to
25364 support. */
25365 token = cp_lexer_peek_token (parser->lexer);
25366 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_RETURN))
25367 {
25368 /* Consume the `return' keyword. */
25369 cp_lexer_consume_token (parser->lexer);
25370 /* Look for the identifier that indicates what value is to be
25371 returned. */
25372 cp_parser_identifier (parser);
25373 /* Issue an error message. */
25374 error_at (token->location,
25375 "named return values are no longer supported");
25376 /* Skip tokens until we reach the start of the function body. */
25377 while (true)
25378 {
25379 cp_token *token = cp_lexer_peek_token (parser->lexer);
25380 if (token->type == CPP_OPEN_BRACE
25381 || token->type == CPP_EOF
25382 || token->type == CPP_PRAGMA_EOL)
25383 break;
25384 cp_lexer_consume_token (parser->lexer);
25385 }
25386 }
25387 /* The `extern' in `extern "C" void f () { ... }' does not apply to
25388 anything declared inside `f'. */
25389 saved_in_unbraced_linkage_specification_p
25390 = parser->in_unbraced_linkage_specification_p;
25391 parser->in_unbraced_linkage_specification_p = false;
25392 /* Inside the function, surrounding template-parameter-lists do not
25393 apply. */
25394 saved_num_template_parameter_lists
25395 = parser->num_template_parameter_lists;
25396 parser->num_template_parameter_lists = 0;
25397
25398 start_lambda_scope (current_function_decl);
25399
25400 /* If the next token is `try', `__transaction_atomic', or
25401 `__transaction_relaxed`, then we are looking at either function-try-block
25402 or function-transaction-block. Note that all of these include the
25403 function-body. */
25404 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TRANSACTION_ATOMIC))
25405 ctor_initializer_p = cp_parser_function_transaction (parser,
25406 RID_TRANSACTION_ATOMIC);
25407 else if (cp_lexer_next_token_is_keyword (parser->lexer,
25408 RID_TRANSACTION_RELAXED))
25409 ctor_initializer_p = cp_parser_function_transaction (parser,
25410 RID_TRANSACTION_RELAXED);
25411 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TRY))
25412 ctor_initializer_p = cp_parser_function_try_block (parser);
25413 else
25414 ctor_initializer_p = cp_parser_ctor_initializer_opt_and_function_body
25415 (parser, /*in_function_try_block=*/false);
25416
25417 finish_lambda_scope ();
25418
25419 /* Finish the function. */
25420 fn = finish_function ((ctor_initializer_p ? 1 : 0) |
25421 (inline_p ? 2 : 0));
25422 /* Generate code for it, if necessary. */
25423 expand_or_defer_fn (fn);
25424 /* Restore the saved values. */
25425 parser->in_unbraced_linkage_specification_p
25426 = saved_in_unbraced_linkage_specification_p;
25427 parser->num_template_parameter_lists
25428 = saved_num_template_parameter_lists;
25429 parser->in_function_body = saved_in_function_body;
25430
25431 parser->fully_implicit_function_template_p
25432 = fully_implicit_function_template_p;
25433 parser->implicit_template_parms
25434 = implicit_template_parms;
25435 parser->implicit_template_scope
25436 = implicit_template_scope;
25437
25438 if (parser->fully_implicit_function_template_p)
25439 finish_fully_implicit_template (parser, /*member_decl_opt=*/0);
25440
25441 return fn;
25442 }
25443
25444 /* Parse a template-declaration body (following argument list). */
25445
25446 static void
25447 cp_parser_template_declaration_after_parameters (cp_parser* parser,
25448 tree parameter_list,
25449 bool member_p)
25450 {
25451 tree decl = NULL_TREE;
25452 bool friend_p = false;
25453
25454 /* We just processed one more parameter list. */
25455 ++parser->num_template_parameter_lists;
25456
25457 /* Get the deferred access checks from the parameter list. These
25458 will be checked once we know what is being declared, as for a
25459 member template the checks must be performed in the scope of the
25460 class containing the member. */
25461 vec<deferred_access_check, va_gc> *checks = get_deferred_access_checks ();
25462
25463 /* Tentatively parse for a new template parameter list, which can either be
25464 the template keyword or a template introduction. */
25465 if (cp_parser_template_declaration_after_export (parser, member_p))
25466 /* OK */;
25467 else if (cxx_dialect >= cxx11
25468 && cp_lexer_next_token_is_keyword (parser->lexer, RID_USING))
25469 decl = cp_parser_alias_declaration (parser);
25470 else
25471 {
25472 /* There are no access checks when parsing a template, as we do not
25473 know if a specialization will be a friend. */
25474 push_deferring_access_checks (dk_no_check);
25475 cp_token *token = cp_lexer_peek_token (parser->lexer);
25476 decl = cp_parser_single_declaration (parser,
25477 checks,
25478 member_p,
25479 /*explicit_specialization_p=*/false,
25480 &friend_p);
25481 pop_deferring_access_checks ();
25482
25483 /* If this is a member template declaration, let the front
25484 end know. */
25485 if (member_p && !friend_p && decl)
25486 {
25487 if (TREE_CODE (decl) == TYPE_DECL)
25488 cp_parser_check_access_in_redeclaration (decl, token->location);
25489
25490 decl = finish_member_template_decl (decl);
25491 }
25492 else if (friend_p && decl
25493 && DECL_DECLARES_TYPE_P (decl))
25494 make_friend_class (current_class_type, TREE_TYPE (decl),
25495 /*complain=*/true);
25496 }
25497 /* We are done with the current parameter list. */
25498 --parser->num_template_parameter_lists;
25499
25500 pop_deferring_access_checks ();
25501
25502 /* Finish up. */
25503 finish_template_decl (parameter_list);
25504
25505 /* Check the template arguments for a literal operator template. */
25506 if (decl
25507 && DECL_DECLARES_FUNCTION_P (decl)
25508 && UDLIT_OPER_P (DECL_NAME (decl)))
25509 {
25510 bool ok = true;
25511 if (parameter_list == NULL_TREE)
25512 ok = false;
25513 else
25514 {
25515 int num_parms = TREE_VEC_LENGTH (parameter_list);
25516 if (num_parms == 1)
25517 {
25518 tree parm_list = TREE_VEC_ELT (parameter_list, 0);
25519 tree parm = INNERMOST_TEMPLATE_PARMS (parm_list);
25520 if (TREE_TYPE (parm) != char_type_node
25521 || !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
25522 ok = false;
25523 }
25524 else if (num_parms == 2 && cxx_dialect >= cxx14)
25525 {
25526 tree parm_type = TREE_VEC_ELT (parameter_list, 0);
25527 tree type = INNERMOST_TEMPLATE_PARMS (parm_type);
25528 tree parm_list = TREE_VEC_ELT (parameter_list, 1);
25529 tree parm = INNERMOST_TEMPLATE_PARMS (parm_list);
25530 if (TREE_TYPE (parm) != TREE_TYPE (type)
25531 || !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
25532 ok = false;
25533 }
25534 else
25535 ok = false;
25536 }
25537 if (!ok)
25538 {
25539 if (cxx_dialect >= cxx14)
25540 error ("literal operator template %qD has invalid parameter list."
25541 " Expected non-type template argument pack <char...>"
25542 " or <typename CharT, CharT...>",
25543 decl);
25544 else
25545 error ("literal operator template %qD has invalid parameter list."
25546 " Expected non-type template argument pack <char...>",
25547 decl);
25548 }
25549 }
25550
25551 /* Register member declarations. */
25552 if (member_p && !friend_p && decl && !DECL_CLASS_TEMPLATE_P (decl))
25553 finish_member_declaration (decl);
25554 /* If DECL is a function template, we must return to parse it later.
25555 (Even though there is no definition, there might be default
25556 arguments that need handling.) */
25557 if (member_p && decl
25558 && DECL_DECLARES_FUNCTION_P (decl))
25559 vec_safe_push (unparsed_funs_with_definitions, decl);
25560 }
25561
25562 /* Parse a template introduction header for a template-declaration. Returns
25563 false if tentative parse fails. */
25564
25565 static bool
25566 cp_parser_template_introduction (cp_parser* parser, bool member_p)
25567 {
25568 cp_parser_parse_tentatively (parser);
25569
25570 tree saved_scope = parser->scope;
25571 tree saved_object_scope = parser->object_scope;
25572 tree saved_qualifying_scope = parser->qualifying_scope;
25573
25574 /* Look for the optional `::' operator. */
25575 cp_parser_global_scope_opt (parser,
25576 /*current_scope_valid_p=*/false);
25577 /* Look for the nested-name-specifier. */
25578 cp_parser_nested_name_specifier_opt (parser,
25579 /*typename_keyword_p=*/false,
25580 /*check_dependency_p=*/true,
25581 /*type_p=*/false,
25582 /*is_declaration=*/false);
25583
25584 cp_token *token = cp_lexer_peek_token (parser->lexer);
25585 tree concept_name = cp_parser_identifier (parser);
25586
25587 /* Look up the concept for which we will be matching
25588 template parameters. */
25589 tree tmpl_decl = cp_parser_lookup_name_simple (parser, concept_name,
25590 token->location);
25591 parser->scope = saved_scope;
25592 parser->object_scope = saved_object_scope;
25593 parser->qualifying_scope = saved_qualifying_scope;
25594
25595 if (concept_name == error_mark_node)
25596 cp_parser_simulate_error (parser);
25597
25598 /* Look for opening brace for introduction. */
25599 cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE);
25600
25601 if (!cp_parser_parse_definitely (parser))
25602 return false;
25603
25604 push_deferring_access_checks (dk_deferred);
25605
25606 /* Build vector of placeholder parameters and grab
25607 matching identifiers. */
25608 tree introduction_list = cp_parser_introduction_list (parser);
25609
25610 /* The introduction-list shall not be empty. */
25611 int nargs = TREE_VEC_LENGTH (introduction_list);
25612 if (nargs == 0)
25613 {
25614 error ("empty introduction-list");
25615 return true;
25616 }
25617
25618 /* Look for closing brace for introduction. */
25619 if (!cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE))
25620 return true;
25621
25622 if (tmpl_decl == error_mark_node)
25623 {
25624 cp_parser_name_lookup_error (parser, concept_name, tmpl_decl, NLE_NULL,
25625 token->location);
25626 return true;
25627 }
25628
25629 /* Build and associate the constraint. */
25630 tree parms = finish_template_introduction (tmpl_decl, introduction_list);
25631 if (parms && parms != error_mark_node)
25632 {
25633 cp_parser_template_declaration_after_parameters (parser, parms,
25634 member_p);
25635 return true;
25636 }
25637
25638 error_at (token->location, "no matching concept for template-introduction");
25639 return true;
25640 }
25641
25642 /* Parse a normal template-declaration following the template keyword. */
25643
25644 static void
25645 cp_parser_explicit_template_declaration (cp_parser* parser, bool member_p)
25646 {
25647 tree parameter_list;
25648 bool need_lang_pop;
25649 location_t location = input_location;
25650
25651 /* Look for the `<' token. */
25652 if (!cp_parser_require (parser, CPP_LESS, RT_LESS))
25653 return;
25654 if (at_class_scope_p () && current_function_decl)
25655 {
25656 /* 14.5.2.2 [temp.mem]
25657
25658 A local class shall not have member templates. */
25659 error_at (location,
25660 "invalid declaration of member template in local class");
25661 cp_parser_skip_to_end_of_block_or_statement (parser);
25662 return;
25663 }
25664 /* [temp]
25665
25666 A template ... shall not have C linkage. */
25667 if (current_lang_name == lang_name_c)
25668 {
25669 error_at (location, "template with C linkage");
25670 /* Give it C++ linkage to avoid confusing other parts of the
25671 front end. */
25672 push_lang_context (lang_name_cplusplus);
25673 need_lang_pop = true;
25674 }
25675 else
25676 need_lang_pop = false;
25677
25678 /* We cannot perform access checks on the template parameter
25679 declarations until we know what is being declared, just as we
25680 cannot check the decl-specifier list. */
25681 push_deferring_access_checks (dk_deferred);
25682
25683 /* If the next token is `>', then we have an invalid
25684 specialization. Rather than complain about an invalid template
25685 parameter, issue an error message here. */
25686 if (cp_lexer_next_token_is (parser->lexer, CPP_GREATER))
25687 {
25688 cp_parser_error (parser, "invalid explicit specialization");
25689 begin_specialization ();
25690 parameter_list = NULL_TREE;
25691 }
25692 else
25693 {
25694 /* Parse the template parameters. */
25695 parameter_list = cp_parser_template_parameter_list (parser);
25696 }
25697
25698 /* Look for the `>'. */
25699 cp_parser_skip_to_end_of_template_parameter_list (parser);
25700
25701 /* Manage template requirements */
25702 tree reqs = get_shorthand_constraints (current_template_parms);
25703 if (tree r = cp_parser_requires_clause_opt (parser))
25704 reqs = conjoin_constraints (reqs, make_predicate_constraint (r));
25705 TEMPLATE_PARMS_CONSTRAINTS (current_template_parms) = reqs;
25706
25707 cp_parser_template_declaration_after_parameters (parser, parameter_list,
25708 member_p);
25709
25710 /* For the erroneous case of a template with C linkage, we pushed an
25711 implicit C++ linkage scope; exit that scope now. */
25712 if (need_lang_pop)
25713 pop_lang_context ();
25714 }
25715
25716 /* Parse a template-declaration, assuming that the `export' (and
25717 `extern') keywords, if present, has already been scanned. MEMBER_P
25718 is as for cp_parser_template_declaration. */
25719
25720 static bool
25721 cp_parser_template_declaration_after_export (cp_parser* parser, bool member_p)
25722 {
25723 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
25724 {
25725 cp_lexer_consume_token (parser->lexer);
25726 cp_parser_explicit_template_declaration (parser, member_p);
25727 return true;
25728 }
25729 else if (flag_concepts)
25730 return cp_parser_template_introduction (parser, member_p);
25731
25732 return false;
25733 }
25734
25735 /* Perform the deferred access checks from a template-parameter-list.
25736 CHECKS is a TREE_LIST of access checks, as returned by
25737 get_deferred_access_checks. */
25738
25739 static void
25740 cp_parser_perform_template_parameter_access_checks (vec<deferred_access_check, va_gc> *checks)
25741 {
25742 ++processing_template_parmlist;
25743 perform_access_checks (checks, tf_warning_or_error);
25744 --processing_template_parmlist;
25745 }
25746
25747 /* Parse a `decl-specifier-seq [opt] init-declarator [opt] ;' or
25748 `function-definition' sequence that follows a template header.
25749 If MEMBER_P is true, this declaration appears in a class scope.
25750
25751 Returns the DECL for the declared entity. If FRIEND_P is non-NULL,
25752 *FRIEND_P is set to TRUE iff the declaration is a friend. */
25753
25754 static tree
25755 cp_parser_single_declaration (cp_parser* parser,
25756 vec<deferred_access_check, va_gc> *checks,
25757 bool member_p,
25758 bool explicit_specialization_p,
25759 bool* friend_p)
25760 {
25761 int declares_class_or_enum;
25762 tree decl = NULL_TREE;
25763 cp_decl_specifier_seq decl_specifiers;
25764 bool function_definition_p = false;
25765 cp_token *decl_spec_token_start;
25766
25767 /* This function is only used when processing a template
25768 declaration. */
25769 gcc_assert (innermost_scope_kind () == sk_template_parms
25770 || innermost_scope_kind () == sk_template_spec);
25771
25772 /* Defer access checks until we know what is being declared. */
25773 push_deferring_access_checks (dk_deferred);
25774
25775 /* Try the `decl-specifier-seq [opt] init-declarator [opt]'
25776 alternative. */
25777 decl_spec_token_start = cp_lexer_peek_token (parser->lexer);
25778 cp_parser_decl_specifier_seq (parser,
25779 CP_PARSER_FLAGS_OPTIONAL,
25780 &decl_specifiers,
25781 &declares_class_or_enum);
25782 if (friend_p)
25783 *friend_p = cp_parser_friend_p (&decl_specifiers);
25784
25785 /* There are no template typedefs. */
25786 if (decl_spec_seq_has_spec_p (&decl_specifiers, ds_typedef))
25787 {
25788 error_at (decl_spec_token_start->location,
25789 "template declaration of %<typedef%>");
25790 decl = error_mark_node;
25791 }
25792
25793 /* Gather up the access checks that occurred the
25794 decl-specifier-seq. */
25795 stop_deferring_access_checks ();
25796
25797 /* Check for the declaration of a template class. */
25798 if (declares_class_or_enum)
25799 {
25800 if (cp_parser_declares_only_class_p (parser)
25801 || (declares_class_or_enum & 2))
25802 {
25803 // If this is a declaration, but not a definition, associate
25804 // any constraints with the type declaration. Constraints
25805 // are associated with definitions in cp_parser_class_specifier.
25806 if (declares_class_or_enum == 1)
25807 associate_classtype_constraints (decl_specifiers.type);
25808
25809 decl = shadow_tag (&decl_specifiers);
25810
25811 /* In this case:
25812
25813 struct C {
25814 friend template <typename T> struct A<T>::B;
25815 };
25816
25817 A<T>::B will be represented by a TYPENAME_TYPE, and
25818 therefore not recognized by shadow_tag. */
25819 if (friend_p && *friend_p
25820 && !decl
25821 && decl_specifiers.type
25822 && TYPE_P (decl_specifiers.type))
25823 decl = decl_specifiers.type;
25824
25825 if (decl && decl != error_mark_node)
25826 decl = TYPE_NAME (decl);
25827 else
25828 decl = error_mark_node;
25829
25830 /* Perform access checks for template parameters. */
25831 cp_parser_perform_template_parameter_access_checks (checks);
25832
25833 /* Give a helpful diagnostic for
25834 template <class T> struct A { } a;
25835 if we aren't already recovering from an error. */
25836 if (!cp_parser_declares_only_class_p (parser)
25837 && !seen_error ())
25838 {
25839 error_at (cp_lexer_peek_token (parser->lexer)->location,
25840 "a class template declaration must not declare "
25841 "anything else");
25842 cp_parser_skip_to_end_of_block_or_statement (parser);
25843 goto out;
25844 }
25845 }
25846 }
25847
25848 /* Complain about missing 'typename' or other invalid type names. */
25849 if (!decl_specifiers.any_type_specifiers_p
25850 && cp_parser_parse_and_diagnose_invalid_type_name (parser))
25851 {
25852 /* cp_parser_parse_and_diagnose_invalid_type_name calls
25853 cp_parser_skip_to_end_of_block_or_statement, so don't try to parse
25854 the rest of this declaration. */
25855 decl = error_mark_node;
25856 goto out;
25857 }
25858
25859 /* If it's not a template class, try for a template function. If
25860 the next token is a `;', then this declaration does not declare
25861 anything. But, if there were errors in the decl-specifiers, then
25862 the error might well have come from an attempted class-specifier.
25863 In that case, there's no need to warn about a missing declarator. */
25864 if (!decl
25865 && (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON)
25866 || decl_specifiers.type != error_mark_node))
25867 {
25868 decl = cp_parser_init_declarator (parser,
25869 &decl_specifiers,
25870 checks,
25871 /*function_definition_allowed_p=*/true,
25872 member_p,
25873 declares_class_or_enum,
25874 &function_definition_p,
25875 NULL, NULL, NULL);
25876
25877 /* 7.1.1-1 [dcl.stc]
25878
25879 A storage-class-specifier shall not be specified in an explicit
25880 specialization... */
25881 if (decl
25882 && explicit_specialization_p
25883 && decl_specifiers.storage_class != sc_none)
25884 {
25885 error_at (decl_spec_token_start->location,
25886 "explicit template specialization cannot have a storage class");
25887 decl = error_mark_node;
25888 }
25889
25890 if (decl && VAR_P (decl))
25891 check_template_variable (decl);
25892 }
25893
25894 /* Look for a trailing `;' after the declaration. */
25895 if (!function_definition_p
25896 && (decl == error_mark_node
25897 || !cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON)))
25898 cp_parser_skip_to_end_of_block_or_statement (parser);
25899
25900 out:
25901 pop_deferring_access_checks ();
25902
25903 /* Clear any current qualification; whatever comes next is the start
25904 of something new. */
25905 parser->scope = NULL_TREE;
25906 parser->qualifying_scope = NULL_TREE;
25907 parser->object_scope = NULL_TREE;
25908
25909 return decl;
25910 }
25911
25912 /* Parse a cast-expression that is not the operand of a unary "&". */
25913
25914 static cp_expr
25915 cp_parser_simple_cast_expression (cp_parser *parser)
25916 {
25917 return cp_parser_cast_expression (parser, /*address_p=*/false,
25918 /*cast_p=*/false, /*decltype*/false, NULL);
25919 }
25920
25921 /* Parse a functional cast to TYPE. Returns an expression
25922 representing the cast. */
25923
25924 static cp_expr
25925 cp_parser_functional_cast (cp_parser* parser, tree type)
25926 {
25927 vec<tree, va_gc> *vec;
25928 tree expression_list;
25929 cp_expr cast;
25930 bool nonconst_p;
25931
25932 location_t start_loc = input_location;
25933
25934 if (!type)
25935 type = error_mark_node;
25936
25937 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
25938 {
25939 cp_lexer_set_source_position (parser->lexer);
25940 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
25941 expression_list = cp_parser_braced_list (parser, &nonconst_p);
25942 CONSTRUCTOR_IS_DIRECT_INIT (expression_list) = 1;
25943 if (TREE_CODE (type) == TYPE_DECL)
25944 type = TREE_TYPE (type);
25945
25946 cast = finish_compound_literal (type, expression_list,
25947 tf_warning_or_error);
25948 /* Create a location of the form:
25949 type_name{i, f}
25950 ^~~~~~~~~~~~~~~
25951 with caret == start at the start of the type name,
25952 finishing at the closing brace. */
25953 location_t finish_loc
25954 = get_finish (cp_lexer_previous_token (parser->lexer)->location);
25955 location_t combined_loc = make_location (start_loc, start_loc,
25956 finish_loc);
25957 cast.set_location (combined_loc);
25958 return cast;
25959 }
25960
25961
25962 vec = cp_parser_parenthesized_expression_list (parser, non_attr,
25963 /*cast_p=*/true,
25964 /*allow_expansion_p=*/true,
25965 /*non_constant_p=*/NULL);
25966 if (vec == NULL)
25967 expression_list = error_mark_node;
25968 else
25969 {
25970 expression_list = build_tree_list_vec (vec);
25971 release_tree_vector (vec);
25972 }
25973
25974 cast = build_functional_cast (type, expression_list,
25975 tf_warning_or_error);
25976 /* [expr.const]/1: In an integral constant expression "only type
25977 conversions to integral or enumeration type can be used". */
25978 if (TREE_CODE (type) == TYPE_DECL)
25979 type = TREE_TYPE (type);
25980 if (cast != error_mark_node
25981 && !cast_valid_in_integral_constant_expression_p (type)
25982 && cp_parser_non_integral_constant_expression (parser,
25983 NIC_CONSTRUCTOR))
25984 return error_mark_node;
25985
25986 /* Create a location of the form:
25987 float(i)
25988 ^~~~~~~~
25989 with caret == start at the start of the type name,
25990 finishing at the closing paren. */
25991 location_t finish_loc
25992 = get_finish (cp_lexer_previous_token (parser->lexer)->location);
25993 location_t combined_loc = make_location (start_loc, start_loc, finish_loc);
25994 cast.set_location (combined_loc);
25995 return cast;
25996 }
25997
25998 /* Save the tokens that make up the body of a member function defined
25999 in a class-specifier. The DECL_SPECIFIERS and DECLARATOR have
26000 already been parsed. The ATTRIBUTES are any GNU "__attribute__"
26001 specifiers applied to the declaration. Returns the FUNCTION_DECL
26002 for the member function. */
26003
26004 static tree
26005 cp_parser_save_member_function_body (cp_parser* parser,
26006 cp_decl_specifier_seq *decl_specifiers,
26007 cp_declarator *declarator,
26008 tree attributes)
26009 {
26010 cp_token *first;
26011 cp_token *last;
26012 tree fn;
26013
26014 /* Create the FUNCTION_DECL. */
26015 fn = grokmethod (decl_specifiers, declarator, attributes);
26016 cp_finalize_omp_declare_simd (parser, fn);
26017 cp_finalize_oacc_routine (parser, fn, true);
26018 /* If something went badly wrong, bail out now. */
26019 if (fn == error_mark_node)
26020 {
26021 /* If there's a function-body, skip it. */
26022 if (cp_parser_token_starts_function_definition_p
26023 (cp_lexer_peek_token (parser->lexer)))
26024 cp_parser_skip_to_end_of_block_or_statement (parser);
26025 return error_mark_node;
26026 }
26027
26028 /* Remember it, if there default args to post process. */
26029 cp_parser_save_default_args (parser, fn);
26030
26031 /* Save away the tokens that make up the body of the
26032 function. */
26033 first = parser->lexer->next_token;
26034 /* Handle function try blocks. */
26035 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TRY))
26036 cp_lexer_consume_token (parser->lexer);
26037 /* We can have braced-init-list mem-initializers before the fn body. */
26038 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
26039 {
26040 cp_lexer_consume_token (parser->lexer);
26041 while (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE))
26042 {
26043 /* cache_group will stop after an un-nested { } pair, too. */
26044 if (cp_parser_cache_group (parser, CPP_CLOSE_PAREN, /*depth=*/0))
26045 break;
26046
26047 /* variadic mem-inits have ... after the ')'. */
26048 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
26049 cp_lexer_consume_token (parser->lexer);
26050 }
26051 }
26052 cp_parser_cache_group (parser, CPP_CLOSE_BRACE, /*depth=*/0);
26053 /* Handle function try blocks. */
26054 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_CATCH))
26055 cp_parser_cache_group (parser, CPP_CLOSE_BRACE, /*depth=*/0);
26056 last = parser->lexer->next_token;
26057
26058 /* Save away the inline definition; we will process it when the
26059 class is complete. */
26060 DECL_PENDING_INLINE_INFO (fn) = cp_token_cache_new (first, last);
26061 DECL_PENDING_INLINE_P (fn) = 1;
26062
26063 /* We need to know that this was defined in the class, so that
26064 friend templates are handled correctly. */
26065 DECL_INITIALIZED_IN_CLASS_P (fn) = 1;
26066
26067 /* Add FN to the queue of functions to be parsed later. */
26068 vec_safe_push (unparsed_funs_with_definitions, fn);
26069
26070 return fn;
26071 }
26072
26073 /* Save the tokens that make up the in-class initializer for a non-static
26074 data member. Returns a DEFAULT_ARG. */
26075
26076 static tree
26077 cp_parser_save_nsdmi (cp_parser* parser)
26078 {
26079 return cp_parser_cache_defarg (parser, /*nsdmi=*/true);
26080 }
26081
26082 /* Parse a template-argument-list, as well as the trailing ">" (but
26083 not the opening "<"). See cp_parser_template_argument_list for the
26084 return value. */
26085
26086 static tree
26087 cp_parser_enclosed_template_argument_list (cp_parser* parser)
26088 {
26089 tree arguments;
26090 tree saved_scope;
26091 tree saved_qualifying_scope;
26092 tree saved_object_scope;
26093 bool saved_greater_than_is_operator_p;
26094 int saved_unevaluated_operand;
26095 int saved_inhibit_evaluation_warnings;
26096
26097 /* [temp.names]
26098
26099 When parsing a template-id, the first non-nested `>' is taken as
26100 the end of the template-argument-list rather than a greater-than
26101 operator. */
26102 saved_greater_than_is_operator_p
26103 = parser->greater_than_is_operator_p;
26104 parser->greater_than_is_operator_p = false;
26105 /* Parsing the argument list may modify SCOPE, so we save it
26106 here. */
26107 saved_scope = parser->scope;
26108 saved_qualifying_scope = parser->qualifying_scope;
26109 saved_object_scope = parser->object_scope;
26110 /* We need to evaluate the template arguments, even though this
26111 template-id may be nested within a "sizeof". */
26112 saved_unevaluated_operand = cp_unevaluated_operand;
26113 cp_unevaluated_operand = 0;
26114 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
26115 c_inhibit_evaluation_warnings = 0;
26116 /* Parse the template-argument-list itself. */
26117 if (cp_lexer_next_token_is (parser->lexer, CPP_GREATER)
26118 || cp_lexer_next_token_is (parser->lexer, CPP_RSHIFT))
26119 arguments = NULL_TREE;
26120 else
26121 arguments = cp_parser_template_argument_list (parser);
26122 /* Look for the `>' that ends the template-argument-list. If we find
26123 a '>>' instead, it's probably just a typo. */
26124 if (cp_lexer_next_token_is (parser->lexer, CPP_RSHIFT))
26125 {
26126 if (cxx_dialect != cxx98)
26127 {
26128 /* In C++0x, a `>>' in a template argument list or cast
26129 expression is considered to be two separate `>'
26130 tokens. So, change the current token to a `>', but don't
26131 consume it: it will be consumed later when the outer
26132 template argument list (or cast expression) is parsed.
26133 Note that this replacement of `>' for `>>' is necessary
26134 even if we are parsing tentatively: in the tentative
26135 case, after calling
26136 cp_parser_enclosed_template_argument_list we will always
26137 throw away all of the template arguments and the first
26138 closing `>', either because the template argument list
26139 was erroneous or because we are replacing those tokens
26140 with a CPP_TEMPLATE_ID token. The second `>' (which will
26141 not have been thrown away) is needed either to close an
26142 outer template argument list or to complete a new-style
26143 cast. */
26144 cp_token *token = cp_lexer_peek_token (parser->lexer);
26145 token->type = CPP_GREATER;
26146 }
26147 else if (!saved_greater_than_is_operator_p)
26148 {
26149 /* If we're in a nested template argument list, the '>>' has
26150 to be a typo for '> >'. We emit the error message, but we
26151 continue parsing and we push a '>' as next token, so that
26152 the argument list will be parsed correctly. Note that the
26153 global source location is still on the token before the
26154 '>>', so we need to say explicitly where we want it. */
26155 cp_token *token = cp_lexer_peek_token (parser->lexer);
26156 error_at (token->location, "%<>>%> should be %<> >%> "
26157 "within a nested template argument list");
26158
26159 token->type = CPP_GREATER;
26160 }
26161 else
26162 {
26163 /* If this is not a nested template argument list, the '>>'
26164 is a typo for '>'. Emit an error message and continue.
26165 Same deal about the token location, but here we can get it
26166 right by consuming the '>>' before issuing the diagnostic. */
26167 cp_token *token = cp_lexer_consume_token (parser->lexer);
26168 error_at (token->location,
26169 "spurious %<>>%>, use %<>%> to terminate "
26170 "a template argument list");
26171 }
26172 }
26173 else
26174 cp_parser_skip_to_end_of_template_parameter_list (parser);
26175 /* The `>' token might be a greater-than operator again now. */
26176 parser->greater_than_is_operator_p
26177 = saved_greater_than_is_operator_p;
26178 /* Restore the SAVED_SCOPE. */
26179 parser->scope = saved_scope;
26180 parser->qualifying_scope = saved_qualifying_scope;
26181 parser->object_scope = saved_object_scope;
26182 cp_unevaluated_operand = saved_unevaluated_operand;
26183 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
26184
26185 return arguments;
26186 }
26187
26188 /* MEMBER_FUNCTION is a member function, or a friend. If default
26189 arguments, or the body of the function have not yet been parsed,
26190 parse them now. */
26191
26192 static void
26193 cp_parser_late_parsing_for_member (cp_parser* parser, tree member_function)
26194 {
26195 timevar_push (TV_PARSE_INMETH);
26196 /* If this member is a template, get the underlying
26197 FUNCTION_DECL. */
26198 if (DECL_FUNCTION_TEMPLATE_P (member_function))
26199 member_function = DECL_TEMPLATE_RESULT (member_function);
26200
26201 /* There should not be any class definitions in progress at this
26202 point; the bodies of members are only parsed outside of all class
26203 definitions. */
26204 gcc_assert (parser->num_classes_being_defined == 0);
26205 /* While we're parsing the member functions we might encounter more
26206 classes. We want to handle them right away, but we don't want
26207 them getting mixed up with functions that are currently in the
26208 queue. */
26209 push_unparsed_function_queues (parser);
26210
26211 /* Make sure that any template parameters are in scope. */
26212 maybe_begin_member_template_processing (member_function);
26213
26214 /* If the body of the function has not yet been parsed, parse it
26215 now. */
26216 if (DECL_PENDING_INLINE_P (member_function))
26217 {
26218 tree function_scope;
26219 cp_token_cache *tokens;
26220
26221 /* The function is no longer pending; we are processing it. */
26222 tokens = DECL_PENDING_INLINE_INFO (member_function);
26223 DECL_PENDING_INLINE_INFO (member_function) = NULL;
26224 DECL_PENDING_INLINE_P (member_function) = 0;
26225
26226 /* If this is a local class, enter the scope of the containing
26227 function. */
26228 function_scope = current_function_decl;
26229 if (function_scope)
26230 push_function_context ();
26231
26232 /* Push the body of the function onto the lexer stack. */
26233 cp_parser_push_lexer_for_tokens (parser, tokens);
26234
26235 /* Let the front end know that we going to be defining this
26236 function. */
26237 start_preparsed_function (member_function, NULL_TREE,
26238 SF_PRE_PARSED | SF_INCLASS_INLINE);
26239
26240 /* Don't do access checking if it is a templated function. */
26241 if (processing_template_decl)
26242 push_deferring_access_checks (dk_no_check);
26243
26244 /* #pragma omp declare reduction needs special parsing. */
26245 if (DECL_OMP_DECLARE_REDUCTION_P (member_function))
26246 {
26247 parser->lexer->in_pragma = true;
26248 cp_parser_omp_declare_reduction_exprs (member_function, parser);
26249 finish_function (/*inline*/2);
26250 cp_check_omp_declare_reduction (member_function);
26251 }
26252 else
26253 /* Now, parse the body of the function. */
26254 cp_parser_function_definition_after_declarator (parser,
26255 /*inline_p=*/true);
26256
26257 if (processing_template_decl)
26258 pop_deferring_access_checks ();
26259
26260 /* Leave the scope of the containing function. */
26261 if (function_scope)
26262 pop_function_context ();
26263 cp_parser_pop_lexer (parser);
26264 }
26265
26266 /* Remove any template parameters from the symbol table. */
26267 maybe_end_member_template_processing ();
26268
26269 /* Restore the queue. */
26270 pop_unparsed_function_queues (parser);
26271 timevar_pop (TV_PARSE_INMETH);
26272 }
26273
26274 /* If DECL contains any default args, remember it on the unparsed
26275 functions queue. */
26276
26277 static void
26278 cp_parser_save_default_args (cp_parser* parser, tree decl)
26279 {
26280 tree probe;
26281
26282 for (probe = TYPE_ARG_TYPES (TREE_TYPE (decl));
26283 probe;
26284 probe = TREE_CHAIN (probe))
26285 if (TREE_PURPOSE (probe))
26286 {
26287 cp_default_arg_entry entry = {current_class_type, decl};
26288 vec_safe_push (unparsed_funs_with_default_args, entry);
26289 break;
26290 }
26291 }
26292
26293 /* DEFAULT_ARG contains the saved tokens for the initializer of DECL,
26294 which is either a FIELD_DECL or PARM_DECL. Parse it and return
26295 the result. For a PARM_DECL, PARMTYPE is the corresponding type
26296 from the parameter-type-list. */
26297
26298 static tree
26299 cp_parser_late_parse_one_default_arg (cp_parser *parser, tree decl,
26300 tree default_arg, tree parmtype)
26301 {
26302 cp_token_cache *tokens;
26303 tree parsed_arg;
26304 bool dummy;
26305
26306 if (default_arg == error_mark_node)
26307 return error_mark_node;
26308
26309 /* Push the saved tokens for the default argument onto the parser's
26310 lexer stack. */
26311 tokens = DEFARG_TOKENS (default_arg);
26312 cp_parser_push_lexer_for_tokens (parser, tokens);
26313
26314 start_lambda_scope (decl);
26315
26316 /* Parse the default argument. */
26317 parsed_arg = cp_parser_initializer (parser, &dummy, &dummy);
26318 if (BRACE_ENCLOSED_INITIALIZER_P (parsed_arg))
26319 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
26320
26321 finish_lambda_scope ();
26322
26323 if (parsed_arg == error_mark_node)
26324 cp_parser_skip_to_end_of_statement (parser);
26325
26326 if (!processing_template_decl)
26327 {
26328 /* In a non-template class, check conversions now. In a template,
26329 we'll wait and instantiate these as needed. */
26330 if (TREE_CODE (decl) == PARM_DECL)
26331 parsed_arg = check_default_argument (parmtype, parsed_arg,
26332 tf_warning_or_error);
26333 else
26334 parsed_arg = digest_nsdmi_init (decl, parsed_arg);
26335 }
26336
26337 /* If the token stream has not been completely used up, then
26338 there was extra junk after the end of the default
26339 argument. */
26340 if (!cp_lexer_next_token_is (parser->lexer, CPP_EOF))
26341 {
26342 if (TREE_CODE (decl) == PARM_DECL)
26343 cp_parser_error (parser, "expected %<,%>");
26344 else
26345 cp_parser_error (parser, "expected %<;%>");
26346 }
26347
26348 /* Revert to the main lexer. */
26349 cp_parser_pop_lexer (parser);
26350
26351 return parsed_arg;
26352 }
26353
26354 /* FIELD is a non-static data member with an initializer which we saved for
26355 later; parse it now. */
26356
26357 static void
26358 cp_parser_late_parsing_nsdmi (cp_parser *parser, tree field)
26359 {
26360 tree def;
26361
26362 maybe_begin_member_template_processing (field);
26363
26364 push_unparsed_function_queues (parser);
26365 def = cp_parser_late_parse_one_default_arg (parser, field,
26366 DECL_INITIAL (field),
26367 NULL_TREE);
26368 pop_unparsed_function_queues (parser);
26369
26370 maybe_end_member_template_processing ();
26371
26372 DECL_INITIAL (field) = def;
26373 }
26374
26375 /* FN is a FUNCTION_DECL which may contains a parameter with an
26376 unparsed DEFAULT_ARG. Parse the default args now. This function
26377 assumes that the current scope is the scope in which the default
26378 argument should be processed. */
26379
26380 static void
26381 cp_parser_late_parsing_default_args (cp_parser *parser, tree fn)
26382 {
26383 bool saved_local_variables_forbidden_p;
26384 tree parm, parmdecl;
26385
26386 /* While we're parsing the default args, we might (due to the
26387 statement expression extension) encounter more classes. We want
26388 to handle them right away, but we don't want them getting mixed
26389 up with default args that are currently in the queue. */
26390 push_unparsed_function_queues (parser);
26391
26392 /* Local variable names (and the `this' keyword) may not appear
26393 in a default argument. */
26394 saved_local_variables_forbidden_p = parser->local_variables_forbidden_p;
26395 parser->local_variables_forbidden_p = true;
26396
26397 push_defarg_context (fn);
26398
26399 for (parm = TYPE_ARG_TYPES (TREE_TYPE (fn)),
26400 parmdecl = DECL_ARGUMENTS (fn);
26401 parm && parm != void_list_node;
26402 parm = TREE_CHAIN (parm),
26403 parmdecl = DECL_CHAIN (parmdecl))
26404 {
26405 tree default_arg = TREE_PURPOSE (parm);
26406 tree parsed_arg;
26407 vec<tree, va_gc> *insts;
26408 tree copy;
26409 unsigned ix;
26410
26411 if (!default_arg)
26412 continue;
26413
26414 if (TREE_CODE (default_arg) != DEFAULT_ARG)
26415 /* This can happen for a friend declaration for a function
26416 already declared with default arguments. */
26417 continue;
26418
26419 parsed_arg
26420 = cp_parser_late_parse_one_default_arg (parser, parmdecl,
26421 default_arg,
26422 TREE_VALUE (parm));
26423 if (parsed_arg == error_mark_node)
26424 {
26425 continue;
26426 }
26427
26428 TREE_PURPOSE (parm) = parsed_arg;
26429
26430 /* Update any instantiations we've already created. */
26431 for (insts = DEFARG_INSTANTIATIONS (default_arg), ix = 0;
26432 vec_safe_iterate (insts, ix, &copy); ix++)
26433 TREE_PURPOSE (copy) = parsed_arg;
26434 }
26435
26436 pop_defarg_context ();
26437
26438 /* Make sure no default arg is missing. */
26439 check_default_args (fn);
26440
26441 /* Restore the state of local_variables_forbidden_p. */
26442 parser->local_variables_forbidden_p = saved_local_variables_forbidden_p;
26443
26444 /* Restore the queue. */
26445 pop_unparsed_function_queues (parser);
26446 }
26447
26448 /* Subroutine of cp_parser_sizeof_operand, for handling C++11
26449
26450 sizeof ... ( identifier )
26451
26452 where the 'sizeof' token has already been consumed. */
26453
26454 static tree
26455 cp_parser_sizeof_pack (cp_parser *parser)
26456 {
26457 /* Consume the `...'. */
26458 cp_lexer_consume_token (parser->lexer);
26459 maybe_warn_variadic_templates ();
26460
26461 bool paren = cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN);
26462 if (paren)
26463 cp_lexer_consume_token (parser->lexer);
26464 else
26465 permerror (cp_lexer_peek_token (parser->lexer)->location,
26466 "%<sizeof...%> argument must be surrounded by parentheses");
26467
26468 cp_token *token = cp_lexer_peek_token (parser->lexer);
26469 tree name = cp_parser_identifier (parser);
26470 if (name == error_mark_node)
26471 return error_mark_node;
26472 /* The name is not qualified. */
26473 parser->scope = NULL_TREE;
26474 parser->qualifying_scope = NULL_TREE;
26475 parser->object_scope = NULL_TREE;
26476 tree expr = cp_parser_lookup_name_simple (parser, name, token->location);
26477 if (expr == error_mark_node)
26478 cp_parser_name_lookup_error (parser, name, expr, NLE_NULL,
26479 token->location);
26480 if (TREE_CODE (expr) == TYPE_DECL || TREE_CODE (expr) == TEMPLATE_DECL)
26481 expr = TREE_TYPE (expr);
26482 else if (TREE_CODE (expr) == CONST_DECL)
26483 expr = DECL_INITIAL (expr);
26484 expr = make_pack_expansion (expr);
26485 PACK_EXPANSION_SIZEOF_P (expr) = true;
26486
26487 if (paren)
26488 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
26489
26490 return expr;
26491 }
26492
26493 /* Parse the operand of `sizeof' (or a similar operator). Returns
26494 either a TYPE or an expression, depending on the form of the
26495 input. The KEYWORD indicates which kind of expression we have
26496 encountered. */
26497
26498 static tree
26499 cp_parser_sizeof_operand (cp_parser* parser, enum rid keyword)
26500 {
26501 tree expr = NULL_TREE;
26502 const char *saved_message;
26503 char *tmp;
26504 bool saved_integral_constant_expression_p;
26505 bool saved_non_integral_constant_expression_p;
26506
26507 /* If it's a `...', then we are computing the length of a parameter
26508 pack. */
26509 if (keyword == RID_SIZEOF
26510 && cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
26511 return cp_parser_sizeof_pack (parser);
26512
26513 /* Types cannot be defined in a `sizeof' expression. Save away the
26514 old message. */
26515 saved_message = parser->type_definition_forbidden_message;
26516 /* And create the new one. */
26517 tmp = concat ("types may not be defined in %<",
26518 IDENTIFIER_POINTER (ridpointers[keyword]),
26519 "%> expressions", NULL);
26520 parser->type_definition_forbidden_message = tmp;
26521
26522 /* The restrictions on constant-expressions do not apply inside
26523 sizeof expressions. */
26524 saved_integral_constant_expression_p
26525 = parser->integral_constant_expression_p;
26526 saved_non_integral_constant_expression_p
26527 = parser->non_integral_constant_expression_p;
26528 parser->integral_constant_expression_p = false;
26529
26530 /* Do not actually evaluate the expression. */
26531 ++cp_unevaluated_operand;
26532 ++c_inhibit_evaluation_warnings;
26533 /* If it's a `(', then we might be looking at the type-id
26534 construction. */
26535 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
26536 {
26537 tree type = NULL_TREE;
26538
26539 /* We can't be sure yet whether we're looking at a type-id or an
26540 expression. */
26541 cp_parser_parse_tentatively (parser);
26542 /* Note: as a GNU Extension, compound literals are considered
26543 postfix-expressions as they are in C99, so they are valid
26544 arguments to sizeof. See comment in cp_parser_cast_expression
26545 for details. */
26546 if (cp_parser_compound_literal_p (parser))
26547 cp_parser_simulate_error (parser);
26548 else
26549 {
26550 bool saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
26551 parser->in_type_id_in_expr_p = true;
26552 /* Look for the type-id. */
26553 type = cp_parser_type_id (parser);
26554 /* Look for the closing `)'. */
26555 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
26556 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
26557 }
26558
26559 /* If all went well, then we're done. */
26560 if (cp_parser_parse_definitely (parser))
26561 {
26562 cp_decl_specifier_seq decl_specs;
26563
26564 /* Build a trivial decl-specifier-seq. */
26565 clear_decl_specs (&decl_specs);
26566 decl_specs.type = type;
26567
26568 /* Call grokdeclarator to figure out what type this is. */
26569 expr = grokdeclarator (NULL,
26570 &decl_specs,
26571 TYPENAME,
26572 /*initialized=*/0,
26573 /*attrlist=*/NULL);
26574 }
26575 }
26576
26577 /* If the type-id production did not work out, then we must be
26578 looking at the unary-expression production. */
26579 if (!expr)
26580 expr = cp_parser_unary_expression (parser);
26581
26582 /* Go back to evaluating expressions. */
26583 --cp_unevaluated_operand;
26584 --c_inhibit_evaluation_warnings;
26585
26586 /* Free the message we created. */
26587 free (tmp);
26588 /* And restore the old one. */
26589 parser->type_definition_forbidden_message = saved_message;
26590 parser->integral_constant_expression_p
26591 = saved_integral_constant_expression_p;
26592 parser->non_integral_constant_expression_p
26593 = saved_non_integral_constant_expression_p;
26594
26595 return expr;
26596 }
26597
26598 /* If the current declaration has no declarator, return true. */
26599
26600 static bool
26601 cp_parser_declares_only_class_p (cp_parser *parser)
26602 {
26603 /* If the next token is a `;' or a `,' then there is no
26604 declarator. */
26605 return (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
26606 || cp_lexer_next_token_is (parser->lexer, CPP_COMMA));
26607 }
26608
26609 /* Update the DECL_SPECS to reflect the storage class indicated by
26610 KEYWORD. */
26611
26612 static void
26613 cp_parser_set_storage_class (cp_parser *parser,
26614 cp_decl_specifier_seq *decl_specs,
26615 enum rid keyword,
26616 cp_token *token)
26617 {
26618 cp_storage_class storage_class;
26619
26620 if (parser->in_unbraced_linkage_specification_p)
26621 {
26622 error_at (token->location, "invalid use of %qD in linkage specification",
26623 ridpointers[keyword]);
26624 return;
26625 }
26626 else if (decl_specs->storage_class != sc_none)
26627 {
26628 decl_specs->conflicting_specifiers_p = true;
26629 return;
26630 }
26631
26632 if ((keyword == RID_EXTERN || keyword == RID_STATIC)
26633 && decl_spec_seq_has_spec_p (decl_specs, ds_thread)
26634 && decl_specs->gnu_thread_keyword_p)
26635 {
26636 pedwarn (decl_specs->locations[ds_thread], 0,
26637 "%<__thread%> before %qD", ridpointers[keyword]);
26638 }
26639
26640 switch (keyword)
26641 {
26642 case RID_AUTO:
26643 storage_class = sc_auto;
26644 break;
26645 case RID_REGISTER:
26646 storage_class = sc_register;
26647 break;
26648 case RID_STATIC:
26649 storage_class = sc_static;
26650 break;
26651 case RID_EXTERN:
26652 storage_class = sc_extern;
26653 break;
26654 case RID_MUTABLE:
26655 storage_class = sc_mutable;
26656 break;
26657 default:
26658 gcc_unreachable ();
26659 }
26660 decl_specs->storage_class = storage_class;
26661 set_and_check_decl_spec_loc (decl_specs, ds_storage_class, token);
26662
26663 /* A storage class specifier cannot be applied alongside a typedef
26664 specifier. If there is a typedef specifier present then set
26665 conflicting_specifiers_p which will trigger an error later
26666 on in grokdeclarator. */
26667 if (decl_spec_seq_has_spec_p (decl_specs, ds_typedef))
26668 decl_specs->conflicting_specifiers_p = true;
26669 }
26670
26671 /* Update the DECL_SPECS to reflect the TYPE_SPEC. If TYPE_DEFINITION_P
26672 is true, the type is a class or enum definition. */
26673
26674 static void
26675 cp_parser_set_decl_spec_type (cp_decl_specifier_seq *decl_specs,
26676 tree type_spec,
26677 cp_token *token,
26678 bool type_definition_p)
26679 {
26680 decl_specs->any_specifiers_p = true;
26681
26682 /* If the user tries to redeclare bool, char16_t, char32_t, or wchar_t
26683 (with, for example, in "typedef int wchar_t;") we remember that
26684 this is what happened. In system headers, we ignore these
26685 declarations so that G++ can work with system headers that are not
26686 C++-safe. */
26687 if (decl_spec_seq_has_spec_p (decl_specs, ds_typedef)
26688 && !type_definition_p
26689 && (type_spec == boolean_type_node
26690 || type_spec == char16_type_node
26691 || type_spec == char32_type_node
26692 || type_spec == wchar_type_node)
26693 && (decl_specs->type
26694 || decl_spec_seq_has_spec_p (decl_specs, ds_long)
26695 || decl_spec_seq_has_spec_p (decl_specs, ds_short)
26696 || decl_spec_seq_has_spec_p (decl_specs, ds_unsigned)
26697 || decl_spec_seq_has_spec_p (decl_specs, ds_signed)))
26698 {
26699 decl_specs->redefined_builtin_type = type_spec;
26700 set_and_check_decl_spec_loc (decl_specs,
26701 ds_redefined_builtin_type_spec,
26702 token);
26703 if (!decl_specs->type)
26704 {
26705 decl_specs->type = type_spec;
26706 decl_specs->type_definition_p = false;
26707 set_and_check_decl_spec_loc (decl_specs,ds_type_spec, token);
26708 }
26709 }
26710 else if (decl_specs->type)
26711 decl_specs->multiple_types_p = true;
26712 else
26713 {
26714 decl_specs->type = type_spec;
26715 decl_specs->type_definition_p = type_definition_p;
26716 decl_specs->redefined_builtin_type = NULL_TREE;
26717 set_and_check_decl_spec_loc (decl_specs, ds_type_spec, token);
26718 }
26719 }
26720
26721 /* True iff TOKEN is the GNU keyword __thread. */
26722
26723 static bool
26724 token_is__thread (cp_token *token)
26725 {
26726 gcc_assert (token->keyword == RID_THREAD);
26727 return !strcmp (IDENTIFIER_POINTER (token->u.value), "__thread");
26728 }
26729
26730 /* Set the location for a declarator specifier and check if it is
26731 duplicated.
26732
26733 DECL_SPECS is the sequence of declarator specifiers onto which to
26734 set the location.
26735
26736 DS is the single declarator specifier to set which location is to
26737 be set onto the existing sequence of declarators.
26738
26739 LOCATION is the location for the declarator specifier to
26740 consider. */
26741
26742 static void
26743 set_and_check_decl_spec_loc (cp_decl_specifier_seq *decl_specs,
26744 cp_decl_spec ds, cp_token *token)
26745 {
26746 gcc_assert (ds < ds_last);
26747
26748 if (decl_specs == NULL)
26749 return;
26750
26751 source_location location = token->location;
26752
26753 if (decl_specs->locations[ds] == 0)
26754 {
26755 decl_specs->locations[ds] = location;
26756 if (ds == ds_thread)
26757 decl_specs->gnu_thread_keyword_p = token_is__thread (token);
26758 }
26759 else
26760 {
26761 if (ds == ds_long)
26762 {
26763 if (decl_specs->locations[ds_long_long] != 0)
26764 error_at (location,
26765 "%<long long long%> is too long for GCC");
26766 else
26767 {
26768 decl_specs->locations[ds_long_long] = location;
26769 pedwarn_cxx98 (location,
26770 OPT_Wlong_long,
26771 "ISO C++ 1998 does not support %<long long%>");
26772 }
26773 }
26774 else if (ds == ds_thread)
26775 {
26776 bool gnu = token_is__thread (token);
26777 if (gnu != decl_specs->gnu_thread_keyword_p)
26778 error_at (location,
26779 "both %<__thread%> and %<thread_local%> specified");
26780 else
26781 error_at (location, "duplicate %qD", token->u.value);
26782 }
26783 else
26784 {
26785 static const char *const decl_spec_names[] = {
26786 "signed",
26787 "unsigned",
26788 "short",
26789 "long",
26790 "const",
26791 "volatile",
26792 "restrict",
26793 "inline",
26794 "virtual",
26795 "explicit",
26796 "friend",
26797 "typedef",
26798 "using",
26799 "constexpr",
26800 "__complex"
26801 };
26802 error_at (location,
26803 "duplicate %qs", decl_spec_names[ds]);
26804 }
26805 }
26806 }
26807
26808 /* Return true iff the declarator specifier DS is present in the
26809 sequence of declarator specifiers DECL_SPECS. */
26810
26811 bool
26812 decl_spec_seq_has_spec_p (const cp_decl_specifier_seq * decl_specs,
26813 cp_decl_spec ds)
26814 {
26815 gcc_assert (ds < ds_last);
26816
26817 if (decl_specs == NULL)
26818 return false;
26819
26820 return decl_specs->locations[ds] != 0;
26821 }
26822
26823 /* DECL_SPECIFIERS is the representation of a decl-specifier-seq.
26824 Returns TRUE iff `friend' appears among the DECL_SPECIFIERS. */
26825
26826 static bool
26827 cp_parser_friend_p (const cp_decl_specifier_seq *decl_specifiers)
26828 {
26829 return decl_spec_seq_has_spec_p (decl_specifiers, ds_friend);
26830 }
26831
26832 /* Issue an error message indicating that TOKEN_DESC was expected.
26833 If KEYWORD is true, it indicated this function is called by
26834 cp_parser_require_keword and the required token can only be
26835 a indicated keyword. */
26836
26837 static void
26838 cp_parser_required_error (cp_parser *parser,
26839 required_token token_desc,
26840 bool keyword)
26841 {
26842 switch (token_desc)
26843 {
26844 case RT_NEW:
26845 cp_parser_error (parser, "expected %<new%>");
26846 return;
26847 case RT_DELETE:
26848 cp_parser_error (parser, "expected %<delete%>");
26849 return;
26850 case RT_RETURN:
26851 cp_parser_error (parser, "expected %<return%>");
26852 return;
26853 case RT_WHILE:
26854 cp_parser_error (parser, "expected %<while%>");
26855 return;
26856 case RT_EXTERN:
26857 cp_parser_error (parser, "expected %<extern%>");
26858 return;
26859 case RT_STATIC_ASSERT:
26860 cp_parser_error (parser, "expected %<static_assert%>");
26861 return;
26862 case RT_DECLTYPE:
26863 cp_parser_error (parser, "expected %<decltype%>");
26864 return;
26865 case RT_OPERATOR:
26866 cp_parser_error (parser, "expected %<operator%>");
26867 return;
26868 case RT_CLASS:
26869 cp_parser_error (parser, "expected %<class%>");
26870 return;
26871 case RT_TEMPLATE:
26872 cp_parser_error (parser, "expected %<template%>");
26873 return;
26874 case RT_NAMESPACE:
26875 cp_parser_error (parser, "expected %<namespace%>");
26876 return;
26877 case RT_USING:
26878 cp_parser_error (parser, "expected %<using%>");
26879 return;
26880 case RT_ASM:
26881 cp_parser_error (parser, "expected %<asm%>");
26882 return;
26883 case RT_TRY:
26884 cp_parser_error (parser, "expected %<try%>");
26885 return;
26886 case RT_CATCH:
26887 cp_parser_error (parser, "expected %<catch%>");
26888 return;
26889 case RT_THROW:
26890 cp_parser_error (parser, "expected %<throw%>");
26891 return;
26892 case RT_LABEL:
26893 cp_parser_error (parser, "expected %<__label__%>");
26894 return;
26895 case RT_AT_TRY:
26896 cp_parser_error (parser, "expected %<@try%>");
26897 return;
26898 case RT_AT_SYNCHRONIZED:
26899 cp_parser_error (parser, "expected %<@synchronized%>");
26900 return;
26901 case RT_AT_THROW:
26902 cp_parser_error (parser, "expected %<@throw%>");
26903 return;
26904 case RT_TRANSACTION_ATOMIC:
26905 cp_parser_error (parser, "expected %<__transaction_atomic%>");
26906 return;
26907 case RT_TRANSACTION_RELAXED:
26908 cp_parser_error (parser, "expected %<__transaction_relaxed%>");
26909 return;
26910 default:
26911 break;
26912 }
26913 if (!keyword)
26914 {
26915 switch (token_desc)
26916 {
26917 case RT_SEMICOLON:
26918 cp_parser_error (parser, "expected %<;%>");
26919 return;
26920 case RT_OPEN_PAREN:
26921 cp_parser_error (parser, "expected %<(%>");
26922 return;
26923 case RT_CLOSE_BRACE:
26924 cp_parser_error (parser, "expected %<}%>");
26925 return;
26926 case RT_OPEN_BRACE:
26927 cp_parser_error (parser, "expected %<{%>");
26928 return;
26929 case RT_CLOSE_SQUARE:
26930 cp_parser_error (parser, "expected %<]%>");
26931 return;
26932 case RT_OPEN_SQUARE:
26933 cp_parser_error (parser, "expected %<[%>");
26934 return;
26935 case RT_COMMA:
26936 cp_parser_error (parser, "expected %<,%>");
26937 return;
26938 case RT_SCOPE:
26939 cp_parser_error (parser, "expected %<::%>");
26940 return;
26941 case RT_LESS:
26942 cp_parser_error (parser, "expected %<<%>");
26943 return;
26944 case RT_GREATER:
26945 cp_parser_error (parser, "expected %<>%>");
26946 return;
26947 case RT_EQ:
26948 cp_parser_error (parser, "expected %<=%>");
26949 return;
26950 case RT_ELLIPSIS:
26951 cp_parser_error (parser, "expected %<...%>");
26952 return;
26953 case RT_MULT:
26954 cp_parser_error (parser, "expected %<*%>");
26955 return;
26956 case RT_COMPL:
26957 cp_parser_error (parser, "expected %<~%>");
26958 return;
26959 case RT_COLON:
26960 cp_parser_error (parser, "expected %<:%>");
26961 return;
26962 case RT_COLON_SCOPE:
26963 cp_parser_error (parser, "expected %<:%> or %<::%>");
26964 return;
26965 case RT_CLOSE_PAREN:
26966 cp_parser_error (parser, "expected %<)%>");
26967 return;
26968 case RT_COMMA_CLOSE_PAREN:
26969 cp_parser_error (parser, "expected %<,%> or %<)%>");
26970 return;
26971 case RT_PRAGMA_EOL:
26972 cp_parser_error (parser, "expected end of line");
26973 return;
26974 case RT_NAME:
26975 cp_parser_error (parser, "expected identifier");
26976 return;
26977 case RT_SELECT:
26978 cp_parser_error (parser, "expected selection-statement");
26979 return;
26980 case RT_INTERATION:
26981 cp_parser_error (parser, "expected iteration-statement");
26982 return;
26983 case RT_JUMP:
26984 cp_parser_error (parser, "expected jump-statement");
26985 return;
26986 case RT_CLASS_KEY:
26987 cp_parser_error (parser, "expected class-key");
26988 return;
26989 case RT_CLASS_TYPENAME_TEMPLATE:
26990 cp_parser_error (parser,
26991 "expected %<class%>, %<typename%>, or %<template%>");
26992 return;
26993 default:
26994 gcc_unreachable ();
26995 }
26996 }
26997 else
26998 gcc_unreachable ();
26999 }
27000
27001
27002
27003 /* If the next token is of the indicated TYPE, consume it. Otherwise,
27004 issue an error message indicating that TOKEN_DESC was expected.
27005
27006 Returns the token consumed, if the token had the appropriate type.
27007 Otherwise, returns NULL. */
27008
27009 static cp_token *
27010 cp_parser_require (cp_parser* parser,
27011 enum cpp_ttype type,
27012 required_token token_desc)
27013 {
27014 if (cp_lexer_next_token_is (parser->lexer, type))
27015 return cp_lexer_consume_token (parser->lexer);
27016 else
27017 {
27018 /* Output the MESSAGE -- unless we're parsing tentatively. */
27019 if (!cp_parser_simulate_error (parser))
27020 cp_parser_required_error (parser, token_desc, /*keyword=*/false);
27021 return NULL;
27022 }
27023 }
27024
27025 /* An error message is produced if the next token is not '>'.
27026 All further tokens are skipped until the desired token is
27027 found or '{', '}', ';' or an unbalanced ')' or ']'. */
27028
27029 static void
27030 cp_parser_skip_to_end_of_template_parameter_list (cp_parser* parser)
27031 {
27032 /* Current level of '< ... >'. */
27033 unsigned level = 0;
27034 /* Ignore '<' and '>' nested inside '( ... )' or '[ ... ]'. */
27035 unsigned nesting_depth = 0;
27036
27037 /* Are we ready, yet? If not, issue error message. */
27038 if (cp_parser_require (parser, CPP_GREATER, RT_GREATER))
27039 return;
27040
27041 /* Skip tokens until the desired token is found. */
27042 while (true)
27043 {
27044 /* Peek at the next token. */
27045 switch (cp_lexer_peek_token (parser->lexer)->type)
27046 {
27047 case CPP_LESS:
27048 if (!nesting_depth)
27049 ++level;
27050 break;
27051
27052 case CPP_RSHIFT:
27053 if (cxx_dialect == cxx98)
27054 /* C++0x views the `>>' operator as two `>' tokens, but
27055 C++98 does not. */
27056 break;
27057 else if (!nesting_depth && level-- == 0)
27058 {
27059 /* We've hit a `>>' where the first `>' closes the
27060 template argument list, and the second `>' is
27061 spurious. Just consume the `>>' and stop; we've
27062 already produced at least one error. */
27063 cp_lexer_consume_token (parser->lexer);
27064 return;
27065 }
27066 /* Fall through for C++0x, so we handle the second `>' in
27067 the `>>'. */
27068
27069 case CPP_GREATER:
27070 if (!nesting_depth && level-- == 0)
27071 {
27072 /* We've reached the token we want, consume it and stop. */
27073 cp_lexer_consume_token (parser->lexer);
27074 return;
27075 }
27076 break;
27077
27078 case CPP_OPEN_PAREN:
27079 case CPP_OPEN_SQUARE:
27080 ++nesting_depth;
27081 break;
27082
27083 case CPP_CLOSE_PAREN:
27084 case CPP_CLOSE_SQUARE:
27085 if (nesting_depth-- == 0)
27086 return;
27087 break;
27088
27089 case CPP_EOF:
27090 case CPP_PRAGMA_EOL:
27091 case CPP_SEMICOLON:
27092 case CPP_OPEN_BRACE:
27093 case CPP_CLOSE_BRACE:
27094 /* The '>' was probably forgotten, don't look further. */
27095 return;
27096
27097 default:
27098 break;
27099 }
27100
27101 /* Consume this token. */
27102 cp_lexer_consume_token (parser->lexer);
27103 }
27104 }
27105
27106 /* If the next token is the indicated keyword, consume it. Otherwise,
27107 issue an error message indicating that TOKEN_DESC was expected.
27108
27109 Returns the token consumed, if the token had the appropriate type.
27110 Otherwise, returns NULL. */
27111
27112 static cp_token *
27113 cp_parser_require_keyword (cp_parser* parser,
27114 enum rid keyword,
27115 required_token token_desc)
27116 {
27117 cp_token *token = cp_parser_require (parser, CPP_KEYWORD, token_desc);
27118
27119 if (token && token->keyword != keyword)
27120 {
27121 cp_parser_required_error (parser, token_desc, /*keyword=*/true);
27122 return NULL;
27123 }
27124
27125 return token;
27126 }
27127
27128 /* Returns TRUE iff TOKEN is a token that can begin the body of a
27129 function-definition. */
27130
27131 static bool
27132 cp_parser_token_starts_function_definition_p (cp_token* token)
27133 {
27134 return (/* An ordinary function-body begins with an `{'. */
27135 token->type == CPP_OPEN_BRACE
27136 /* A ctor-initializer begins with a `:'. */
27137 || token->type == CPP_COLON
27138 /* A function-try-block begins with `try'. */
27139 || token->keyword == RID_TRY
27140 /* A function-transaction-block begins with `__transaction_atomic'
27141 or `__transaction_relaxed'. */
27142 || token->keyword == RID_TRANSACTION_ATOMIC
27143 || token->keyword == RID_TRANSACTION_RELAXED
27144 /* The named return value extension begins with `return'. */
27145 || token->keyword == RID_RETURN);
27146 }
27147
27148 /* Returns TRUE iff the next token is the ":" or "{" beginning a class
27149 definition. */
27150
27151 static bool
27152 cp_parser_next_token_starts_class_definition_p (cp_parser *parser)
27153 {
27154 cp_token *token;
27155
27156 token = cp_lexer_peek_token (parser->lexer);
27157 return (token->type == CPP_OPEN_BRACE
27158 || (token->type == CPP_COLON
27159 && !parser->colon_doesnt_start_class_def_p));
27160 }
27161
27162 /* Returns TRUE iff the next token is the "," or ">" (or `>>', in
27163 C++0x) ending a template-argument. */
27164
27165 static bool
27166 cp_parser_next_token_ends_template_argument_p (cp_parser *parser)
27167 {
27168 cp_token *token;
27169
27170 token = cp_lexer_peek_token (parser->lexer);
27171 return (token->type == CPP_COMMA
27172 || token->type == CPP_GREATER
27173 || token->type == CPP_ELLIPSIS
27174 || ((cxx_dialect != cxx98) && token->type == CPP_RSHIFT));
27175 }
27176
27177 /* Returns TRUE iff the n-th token is a "<", or the n-th is a "[" and the
27178 (n+1)-th is a ":" (which is a possible digraph typo for "< ::"). */
27179
27180 static bool
27181 cp_parser_nth_token_starts_template_argument_list_p (cp_parser * parser,
27182 size_t n)
27183 {
27184 cp_token *token;
27185
27186 token = cp_lexer_peek_nth_token (parser->lexer, n);
27187 if (token->type == CPP_LESS)
27188 return true;
27189 /* Check for the sequence `<::' in the original code. It would be lexed as
27190 `[:', where `[' is a digraph, and there is no whitespace before
27191 `:'. */
27192 if (token->type == CPP_OPEN_SQUARE && token->flags & DIGRAPH)
27193 {
27194 cp_token *token2;
27195 token2 = cp_lexer_peek_nth_token (parser->lexer, n+1);
27196 if (token2->type == CPP_COLON && !(token2->flags & PREV_WHITE))
27197 return true;
27198 }
27199 return false;
27200 }
27201
27202 /* Returns the kind of tag indicated by TOKEN, if it is a class-key,
27203 or none_type otherwise. */
27204
27205 static enum tag_types
27206 cp_parser_token_is_class_key (cp_token* token)
27207 {
27208 switch (token->keyword)
27209 {
27210 case RID_CLASS:
27211 return class_type;
27212 case RID_STRUCT:
27213 return record_type;
27214 case RID_UNION:
27215 return union_type;
27216
27217 default:
27218 return none_type;
27219 }
27220 }
27221
27222 /* Returns the kind of tag indicated by TOKEN, if it is a type-parameter-key,
27223 or none_type otherwise or if the token is null. */
27224
27225 static enum tag_types
27226 cp_parser_token_is_type_parameter_key (cp_token* token)
27227 {
27228 if (!token)
27229 return none_type;
27230
27231 switch (token->keyword)
27232 {
27233 case RID_CLASS:
27234 return class_type;
27235 case RID_TYPENAME:
27236 return typename_type;
27237
27238 default:
27239 return none_type;
27240 }
27241 }
27242
27243 /* Issue an error message if the CLASS_KEY does not match the TYPE. */
27244
27245 static void
27246 cp_parser_check_class_key (enum tag_types class_key, tree type)
27247 {
27248 if (type == error_mark_node)
27249 return;
27250 if ((TREE_CODE (type) == UNION_TYPE) != (class_key == union_type))
27251 {
27252 if (permerror (input_location, "%qs tag used in naming %q#T",
27253 class_key == union_type ? "union"
27254 : class_key == record_type ? "struct" : "class",
27255 type))
27256 inform (DECL_SOURCE_LOCATION (TYPE_NAME (type)),
27257 "%q#T was previously declared here", type);
27258 }
27259 }
27260
27261 /* Issue an error message if DECL is redeclared with different
27262 access than its original declaration [class.access.spec/3].
27263 This applies to nested classes, nested class templates and
27264 enumerations [class.mem/1]. */
27265
27266 static void
27267 cp_parser_check_access_in_redeclaration (tree decl, location_t location)
27268 {
27269 if (!decl
27270 || (!CLASS_TYPE_P (TREE_TYPE (decl))
27271 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE))
27272 return;
27273
27274 if ((TREE_PRIVATE (decl)
27275 != (current_access_specifier == access_private_node))
27276 || (TREE_PROTECTED (decl)
27277 != (current_access_specifier == access_protected_node)))
27278 error_at (location, "%qD redeclared with different access", decl);
27279 }
27280
27281 /* Look for the `template' keyword, as a syntactic disambiguator.
27282 Return TRUE iff it is present, in which case it will be
27283 consumed. */
27284
27285 static bool
27286 cp_parser_optional_template_keyword (cp_parser *parser)
27287 {
27288 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
27289 {
27290 /* In C++98 the `template' keyword can only be used within templates;
27291 outside templates the parser can always figure out what is a
27292 template and what is not. In C++11, per the resolution of DR 468,
27293 `template' is allowed in cases where it is not strictly necessary. */
27294 if (!processing_template_decl
27295 && pedantic && cxx_dialect == cxx98)
27296 {
27297 cp_token *token = cp_lexer_peek_token (parser->lexer);
27298 pedwarn (token->location, OPT_Wpedantic,
27299 "in C++98 %<template%> (as a disambiguator) is only "
27300 "allowed within templates");
27301 /* If this part of the token stream is rescanned, the same
27302 error message would be generated. So, we purge the token
27303 from the stream. */
27304 cp_lexer_purge_token (parser->lexer);
27305 return false;
27306 }
27307 else
27308 {
27309 /* Consume the `template' keyword. */
27310 cp_lexer_consume_token (parser->lexer);
27311 return true;
27312 }
27313 }
27314 return false;
27315 }
27316
27317 /* The next token is a CPP_NESTED_NAME_SPECIFIER. Consume the token,
27318 set PARSER->SCOPE, and perform other related actions. */
27319
27320 static void
27321 cp_parser_pre_parsed_nested_name_specifier (cp_parser *parser)
27322 {
27323 struct tree_check *check_value;
27324
27325 /* Get the stored value. */
27326 check_value = cp_lexer_consume_token (parser->lexer)->u.tree_check_value;
27327 /* Set the scope from the stored value. */
27328 parser->scope = saved_checks_value (check_value);
27329 parser->qualifying_scope = check_value->qualifying_scope;
27330 parser->object_scope = NULL_TREE;
27331 }
27332
27333 /* Consume tokens up through a non-nested END token. Returns TRUE if we
27334 encounter the end of a block before what we were looking for. */
27335
27336 static bool
27337 cp_parser_cache_group (cp_parser *parser,
27338 enum cpp_ttype end,
27339 unsigned depth)
27340 {
27341 while (true)
27342 {
27343 cp_token *token = cp_lexer_peek_token (parser->lexer);
27344
27345 /* Abort a parenthesized expression if we encounter a semicolon. */
27346 if ((end == CPP_CLOSE_PAREN || depth == 0)
27347 && token->type == CPP_SEMICOLON)
27348 return true;
27349 /* If we've reached the end of the file, stop. */
27350 if (token->type == CPP_EOF
27351 || (end != CPP_PRAGMA_EOL
27352 && token->type == CPP_PRAGMA_EOL))
27353 return true;
27354 if (token->type == CPP_CLOSE_BRACE && depth == 0)
27355 /* We've hit the end of an enclosing block, so there's been some
27356 kind of syntax error. */
27357 return true;
27358
27359 /* Consume the token. */
27360 cp_lexer_consume_token (parser->lexer);
27361 /* See if it starts a new group. */
27362 if (token->type == CPP_OPEN_BRACE)
27363 {
27364 cp_parser_cache_group (parser, CPP_CLOSE_BRACE, depth + 1);
27365 /* In theory this should probably check end == '}', but
27366 cp_parser_save_member_function_body needs it to exit
27367 after either '}' or ')' when called with ')'. */
27368 if (depth == 0)
27369 return false;
27370 }
27371 else if (token->type == CPP_OPEN_PAREN)
27372 {
27373 cp_parser_cache_group (parser, CPP_CLOSE_PAREN, depth + 1);
27374 if (depth == 0 && end == CPP_CLOSE_PAREN)
27375 return false;
27376 }
27377 else if (token->type == CPP_PRAGMA)
27378 cp_parser_cache_group (parser, CPP_PRAGMA_EOL, depth + 1);
27379 else if (token->type == end)
27380 return false;
27381 }
27382 }
27383
27384 /* Like above, for caching a default argument or NSDMI. Both of these are
27385 terminated by a non-nested comma, but it can be unclear whether or not a
27386 comma is nested in a template argument list unless we do more parsing.
27387 In order to handle this ambiguity, when we encounter a ',' after a '<'
27388 we try to parse what follows as a parameter-declaration-list (in the
27389 case of a default argument) or a member-declarator (in the case of an
27390 NSDMI). If that succeeds, then we stop caching. */
27391
27392 static tree
27393 cp_parser_cache_defarg (cp_parser *parser, bool nsdmi)
27394 {
27395 unsigned depth = 0;
27396 int maybe_template_id = 0;
27397 cp_token *first_token;
27398 cp_token *token;
27399 tree default_argument;
27400
27401 /* Add tokens until we have processed the entire default
27402 argument. We add the range [first_token, token). */
27403 first_token = cp_lexer_peek_token (parser->lexer);
27404 if (first_token->type == CPP_OPEN_BRACE)
27405 {
27406 /* For list-initialization, this is straightforward. */
27407 cp_parser_cache_group (parser, CPP_CLOSE_BRACE, /*depth=*/0);
27408 token = cp_lexer_peek_token (parser->lexer);
27409 }
27410 else while (true)
27411 {
27412 bool done = false;
27413
27414 /* Peek at the next token. */
27415 token = cp_lexer_peek_token (parser->lexer);
27416 /* What we do depends on what token we have. */
27417 switch (token->type)
27418 {
27419 /* In valid code, a default argument must be
27420 immediately followed by a `,' `)', or `...'. */
27421 case CPP_COMMA:
27422 if (depth == 0 && maybe_template_id)
27423 {
27424 /* If we've seen a '<', we might be in a
27425 template-argument-list. Until Core issue 325 is
27426 resolved, we don't know how this situation ought
27427 to be handled, so try to DTRT. We check whether
27428 what comes after the comma is a valid parameter
27429 declaration list. If it is, then the comma ends
27430 the default argument; otherwise the default
27431 argument continues. */
27432 bool error = false;
27433 cp_token *peek;
27434
27435 /* Set ITALP so cp_parser_parameter_declaration_list
27436 doesn't decide to commit to this parse. */
27437 bool saved_italp = parser->in_template_argument_list_p;
27438 parser->in_template_argument_list_p = true;
27439
27440 cp_parser_parse_tentatively (parser);
27441
27442 if (nsdmi)
27443 {
27444 /* Parse declarators until we reach a non-comma or
27445 somthing that cannot be an initializer.
27446 Just checking whether we're looking at a single
27447 declarator is insufficient. Consider:
27448 int var = tuple<T,U>::x;
27449 The template parameter 'U' looks exactly like a
27450 declarator. */
27451 do
27452 {
27453 int ctor_dtor_or_conv_p;
27454 cp_lexer_consume_token (parser->lexer);
27455 cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
27456 &ctor_dtor_or_conv_p,
27457 /*parenthesized_p=*/NULL,
27458 /*member_p=*/true,
27459 /*friend_p=*/false);
27460 peek = cp_lexer_peek_token (parser->lexer);
27461 if (cp_parser_error_occurred (parser))
27462 break;
27463 }
27464 while (peek->type == CPP_COMMA);
27465 /* If we met an '=' or ';' then the original comma
27466 was the end of the NSDMI. Otherwise assume
27467 we're still in the NSDMI. */
27468 error = (peek->type != CPP_EQ
27469 && peek->type != CPP_SEMICOLON);
27470 }
27471 else
27472 {
27473 cp_lexer_consume_token (parser->lexer);
27474 begin_scope (sk_function_parms, NULL_TREE);
27475 cp_parser_parameter_declaration_list (parser, &error);
27476 pop_bindings_and_leave_scope ();
27477 }
27478 if (!cp_parser_error_occurred (parser) && !error)
27479 done = true;
27480 cp_parser_abort_tentative_parse (parser);
27481
27482 parser->in_template_argument_list_p = saved_italp;
27483 break;
27484 }
27485 case CPP_CLOSE_PAREN:
27486 case CPP_ELLIPSIS:
27487 /* If we run into a non-nested `;', `}', or `]',
27488 then the code is invalid -- but the default
27489 argument is certainly over. */
27490 case CPP_SEMICOLON:
27491 case CPP_CLOSE_BRACE:
27492 case CPP_CLOSE_SQUARE:
27493 if (depth == 0
27494 /* Handle correctly int n = sizeof ... ( p ); */
27495 && token->type != CPP_ELLIPSIS)
27496 done = true;
27497 /* Update DEPTH, if necessary. */
27498 else if (token->type == CPP_CLOSE_PAREN
27499 || token->type == CPP_CLOSE_BRACE
27500 || token->type == CPP_CLOSE_SQUARE)
27501 --depth;
27502 break;
27503
27504 case CPP_OPEN_PAREN:
27505 case CPP_OPEN_SQUARE:
27506 case CPP_OPEN_BRACE:
27507 ++depth;
27508 break;
27509
27510 case CPP_LESS:
27511 if (depth == 0)
27512 /* This might be the comparison operator, or it might
27513 start a template argument list. */
27514 ++maybe_template_id;
27515 break;
27516
27517 case CPP_RSHIFT:
27518 if (cxx_dialect == cxx98)
27519 break;
27520 /* Fall through for C++0x, which treats the `>>'
27521 operator like two `>' tokens in certain
27522 cases. */
27523
27524 case CPP_GREATER:
27525 if (depth == 0)
27526 {
27527 /* This might be an operator, or it might close a
27528 template argument list. But if a previous '<'
27529 started a template argument list, this will have
27530 closed it, so we can't be in one anymore. */
27531 maybe_template_id -= 1 + (token->type == CPP_RSHIFT);
27532 if (maybe_template_id < 0)
27533 maybe_template_id = 0;
27534 }
27535 break;
27536
27537 /* If we run out of tokens, issue an error message. */
27538 case CPP_EOF:
27539 case CPP_PRAGMA_EOL:
27540 error_at (token->location, "file ends in default argument");
27541 return error_mark_node;
27542
27543 case CPP_NAME:
27544 case CPP_SCOPE:
27545 /* In these cases, we should look for template-ids.
27546 For example, if the default argument is
27547 `X<int, double>()', we need to do name lookup to
27548 figure out whether or not `X' is a template; if
27549 so, the `,' does not end the default argument.
27550
27551 That is not yet done. */
27552 break;
27553
27554 default:
27555 break;
27556 }
27557
27558 /* If we've reached the end, stop. */
27559 if (done)
27560 break;
27561
27562 /* Add the token to the token block. */
27563 token = cp_lexer_consume_token (parser->lexer);
27564 }
27565
27566 /* Create a DEFAULT_ARG to represent the unparsed default
27567 argument. */
27568 default_argument = make_node (DEFAULT_ARG);
27569 DEFARG_TOKENS (default_argument)
27570 = cp_token_cache_new (first_token, token);
27571 DEFARG_INSTANTIATIONS (default_argument) = NULL;
27572
27573 return default_argument;
27574 }
27575
27576 /* Begin parsing tentatively. We always save tokens while parsing
27577 tentatively so that if the tentative parsing fails we can restore the
27578 tokens. */
27579
27580 static void
27581 cp_parser_parse_tentatively (cp_parser* parser)
27582 {
27583 /* Enter a new parsing context. */
27584 parser->context = cp_parser_context_new (parser->context);
27585 /* Begin saving tokens. */
27586 cp_lexer_save_tokens (parser->lexer);
27587 /* In order to avoid repetitive access control error messages,
27588 access checks are queued up until we are no longer parsing
27589 tentatively. */
27590 push_deferring_access_checks (dk_deferred);
27591 }
27592
27593 /* Commit to the currently active tentative parse. */
27594
27595 static void
27596 cp_parser_commit_to_tentative_parse (cp_parser* parser)
27597 {
27598 cp_parser_context *context;
27599 cp_lexer *lexer;
27600
27601 /* Mark all of the levels as committed. */
27602 lexer = parser->lexer;
27603 for (context = parser->context; context->next; context = context->next)
27604 {
27605 if (context->status == CP_PARSER_STATUS_KIND_COMMITTED)
27606 break;
27607 context->status = CP_PARSER_STATUS_KIND_COMMITTED;
27608 while (!cp_lexer_saving_tokens (lexer))
27609 lexer = lexer->next;
27610 cp_lexer_commit_tokens (lexer);
27611 }
27612 }
27613
27614 /* Commit to the topmost currently active tentative parse.
27615
27616 Note that this function shouldn't be called when there are
27617 irreversible side-effects while in a tentative state. For
27618 example, we shouldn't create a permanent entry in the symbol
27619 table, or issue an error message that might not apply if the
27620 tentative parse is aborted. */
27621
27622 static void
27623 cp_parser_commit_to_topmost_tentative_parse (cp_parser* parser)
27624 {
27625 cp_parser_context *context = parser->context;
27626 cp_lexer *lexer = parser->lexer;
27627
27628 if (context)
27629 {
27630 if (context->status == CP_PARSER_STATUS_KIND_COMMITTED)
27631 return;
27632 context->status = CP_PARSER_STATUS_KIND_COMMITTED;
27633
27634 while (!cp_lexer_saving_tokens (lexer))
27635 lexer = lexer->next;
27636 cp_lexer_commit_tokens (lexer);
27637 }
27638 }
27639
27640 /* Abort the currently active tentative parse. All consumed tokens
27641 will be rolled back, and no diagnostics will be issued. */
27642
27643 static void
27644 cp_parser_abort_tentative_parse (cp_parser* parser)
27645 {
27646 gcc_assert (parser->context->status != CP_PARSER_STATUS_KIND_COMMITTED
27647 || errorcount > 0);
27648 cp_parser_simulate_error (parser);
27649 /* Now, pretend that we want to see if the construct was
27650 successfully parsed. */
27651 cp_parser_parse_definitely (parser);
27652 }
27653
27654 /* Stop parsing tentatively. If a parse error has occurred, restore the
27655 token stream. Otherwise, commit to the tokens we have consumed.
27656 Returns true if no error occurred; false otherwise. */
27657
27658 static bool
27659 cp_parser_parse_definitely (cp_parser* parser)
27660 {
27661 bool error_occurred;
27662 cp_parser_context *context;
27663
27664 /* Remember whether or not an error occurred, since we are about to
27665 destroy that information. */
27666 error_occurred = cp_parser_error_occurred (parser);
27667 /* Remove the topmost context from the stack. */
27668 context = parser->context;
27669 parser->context = context->next;
27670 /* If no parse errors occurred, commit to the tentative parse. */
27671 if (!error_occurred)
27672 {
27673 /* Commit to the tokens read tentatively, unless that was
27674 already done. */
27675 if (context->status != CP_PARSER_STATUS_KIND_COMMITTED)
27676 cp_lexer_commit_tokens (parser->lexer);
27677
27678 pop_to_parent_deferring_access_checks ();
27679 }
27680 /* Otherwise, if errors occurred, roll back our state so that things
27681 are just as they were before we began the tentative parse. */
27682 else
27683 {
27684 cp_lexer_rollback_tokens (parser->lexer);
27685 pop_deferring_access_checks ();
27686 }
27687 /* Add the context to the front of the free list. */
27688 context->next = cp_parser_context_free_list;
27689 cp_parser_context_free_list = context;
27690
27691 return !error_occurred;
27692 }
27693
27694 /* Returns true if we are parsing tentatively and are not committed to
27695 this tentative parse. */
27696
27697 static bool
27698 cp_parser_uncommitted_to_tentative_parse_p (cp_parser* parser)
27699 {
27700 return (cp_parser_parsing_tentatively (parser)
27701 && parser->context->status != CP_PARSER_STATUS_KIND_COMMITTED);
27702 }
27703
27704 /* Returns nonzero iff an error has occurred during the most recent
27705 tentative parse. */
27706
27707 static bool
27708 cp_parser_error_occurred (cp_parser* parser)
27709 {
27710 return (cp_parser_parsing_tentatively (parser)
27711 && parser->context->status == CP_PARSER_STATUS_KIND_ERROR);
27712 }
27713
27714 /* Returns nonzero if GNU extensions are allowed. */
27715
27716 static bool
27717 cp_parser_allow_gnu_extensions_p (cp_parser* parser)
27718 {
27719 return parser->allow_gnu_extensions_p;
27720 }
27721 \f
27722 /* Objective-C++ Productions */
27723
27724
27725 /* Parse an Objective-C expression, which feeds into a primary-expression
27726 above.
27727
27728 objc-expression:
27729 objc-message-expression
27730 objc-string-literal
27731 objc-encode-expression
27732 objc-protocol-expression
27733 objc-selector-expression
27734
27735 Returns a tree representation of the expression. */
27736
27737 static cp_expr
27738 cp_parser_objc_expression (cp_parser* parser)
27739 {
27740 /* Try to figure out what kind of declaration is present. */
27741 cp_token *kwd = cp_lexer_peek_token (parser->lexer);
27742
27743 switch (kwd->type)
27744 {
27745 case CPP_OPEN_SQUARE:
27746 return cp_parser_objc_message_expression (parser);
27747
27748 case CPP_OBJC_STRING:
27749 kwd = cp_lexer_consume_token (parser->lexer);
27750 return objc_build_string_object (kwd->u.value);
27751
27752 case CPP_KEYWORD:
27753 switch (kwd->keyword)
27754 {
27755 case RID_AT_ENCODE:
27756 return cp_parser_objc_encode_expression (parser);
27757
27758 case RID_AT_PROTOCOL:
27759 return cp_parser_objc_protocol_expression (parser);
27760
27761 case RID_AT_SELECTOR:
27762 return cp_parser_objc_selector_expression (parser);
27763
27764 default:
27765 break;
27766 }
27767 default:
27768 error_at (kwd->location,
27769 "misplaced %<@%D%> Objective-C++ construct",
27770 kwd->u.value);
27771 cp_parser_skip_to_end_of_block_or_statement (parser);
27772 }
27773
27774 return error_mark_node;
27775 }
27776
27777 /* Parse an Objective-C message expression.
27778
27779 objc-message-expression:
27780 [ objc-message-receiver objc-message-args ]
27781
27782 Returns a representation of an Objective-C message. */
27783
27784 static tree
27785 cp_parser_objc_message_expression (cp_parser* parser)
27786 {
27787 tree receiver, messageargs;
27788
27789 location_t start_loc = cp_lexer_peek_token (parser->lexer)->location;
27790 cp_lexer_consume_token (parser->lexer); /* Eat '['. */
27791 receiver = cp_parser_objc_message_receiver (parser);
27792 messageargs = cp_parser_objc_message_args (parser);
27793 location_t end_loc = cp_lexer_peek_token (parser->lexer)->location;
27794 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
27795
27796 tree result = objc_build_message_expr (receiver, messageargs);
27797
27798 /* Construct a location e.g.
27799 [self func1:5]
27800 ^~~~~~~~~~~~~~
27801 ranging from the '[' to the ']', with the caret at the start. */
27802 location_t combined_loc = make_location (start_loc, start_loc, end_loc);
27803 protected_set_expr_location (result, combined_loc);
27804
27805 return result;
27806 }
27807
27808 /* Parse an objc-message-receiver.
27809
27810 objc-message-receiver:
27811 expression
27812 simple-type-specifier
27813
27814 Returns a representation of the type or expression. */
27815
27816 static tree
27817 cp_parser_objc_message_receiver (cp_parser* parser)
27818 {
27819 tree rcv;
27820
27821 /* An Objective-C message receiver may be either (1) a type
27822 or (2) an expression. */
27823 cp_parser_parse_tentatively (parser);
27824 rcv = cp_parser_expression (parser);
27825
27826 /* If that worked out, fine. */
27827 if (cp_parser_parse_definitely (parser))
27828 return rcv;
27829
27830 cp_parser_parse_tentatively (parser);
27831 rcv = cp_parser_simple_type_specifier (parser,
27832 /*decl_specs=*/NULL,
27833 CP_PARSER_FLAGS_NONE);
27834
27835 if (cp_parser_parse_definitely (parser))
27836 return objc_get_class_reference (rcv);
27837
27838 cp_parser_error (parser, "objective-c++ message receiver expected");
27839 return error_mark_node;
27840 }
27841
27842 /* Parse the arguments and selectors comprising an Objective-C message.
27843
27844 objc-message-args:
27845 objc-selector
27846 objc-selector-args
27847 objc-selector-args , objc-comma-args
27848
27849 objc-selector-args:
27850 objc-selector [opt] : assignment-expression
27851 objc-selector-args objc-selector [opt] : assignment-expression
27852
27853 objc-comma-args:
27854 assignment-expression
27855 objc-comma-args , assignment-expression
27856
27857 Returns a TREE_LIST, with TREE_PURPOSE containing a list of
27858 selector arguments and TREE_VALUE containing a list of comma
27859 arguments. */
27860
27861 static tree
27862 cp_parser_objc_message_args (cp_parser* parser)
27863 {
27864 tree sel_args = NULL_TREE, addl_args = NULL_TREE;
27865 bool maybe_unary_selector_p = true;
27866 cp_token *token = cp_lexer_peek_token (parser->lexer);
27867
27868 while (cp_parser_objc_selector_p (token->type) || token->type == CPP_COLON)
27869 {
27870 tree selector = NULL_TREE, arg;
27871
27872 if (token->type != CPP_COLON)
27873 selector = cp_parser_objc_selector (parser);
27874
27875 /* Detect if we have a unary selector. */
27876 if (maybe_unary_selector_p
27877 && cp_lexer_next_token_is_not (parser->lexer, CPP_COLON))
27878 return build_tree_list (selector, NULL_TREE);
27879
27880 maybe_unary_selector_p = false;
27881 cp_parser_require (parser, CPP_COLON, RT_COLON);
27882 arg = cp_parser_assignment_expression (parser);
27883
27884 sel_args
27885 = chainon (sel_args,
27886 build_tree_list (selector, arg));
27887
27888 token = cp_lexer_peek_token (parser->lexer);
27889 }
27890
27891 /* Handle non-selector arguments, if any. */
27892 while (token->type == CPP_COMMA)
27893 {
27894 tree arg;
27895
27896 cp_lexer_consume_token (parser->lexer);
27897 arg = cp_parser_assignment_expression (parser);
27898
27899 addl_args
27900 = chainon (addl_args,
27901 build_tree_list (NULL_TREE, arg));
27902
27903 token = cp_lexer_peek_token (parser->lexer);
27904 }
27905
27906 if (sel_args == NULL_TREE && addl_args == NULL_TREE)
27907 {
27908 cp_parser_error (parser, "objective-c++ message argument(s) are expected");
27909 return build_tree_list (error_mark_node, error_mark_node);
27910 }
27911
27912 return build_tree_list (sel_args, addl_args);
27913 }
27914
27915 /* Parse an Objective-C encode expression.
27916
27917 objc-encode-expression:
27918 @encode objc-typename
27919
27920 Returns an encoded representation of the type argument. */
27921
27922 static cp_expr
27923 cp_parser_objc_encode_expression (cp_parser* parser)
27924 {
27925 tree type;
27926 cp_token *token;
27927 location_t start_loc = cp_lexer_peek_token (parser->lexer)->location;
27928
27929 cp_lexer_consume_token (parser->lexer); /* Eat '@encode'. */
27930 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
27931 token = cp_lexer_peek_token (parser->lexer);
27932 type = complete_type (cp_parser_type_id (parser));
27933 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
27934
27935 if (!type)
27936 {
27937 error_at (token->location,
27938 "%<@encode%> must specify a type as an argument");
27939 return error_mark_node;
27940 }
27941
27942 /* This happens if we find @encode(T) (where T is a template
27943 typename or something dependent on a template typename) when
27944 parsing a template. In that case, we can't compile it
27945 immediately, but we rather create an AT_ENCODE_EXPR which will
27946 need to be instantiated when the template is used.
27947 */
27948 if (dependent_type_p (type))
27949 {
27950 tree value = build_min (AT_ENCODE_EXPR, size_type_node, type);
27951 TREE_READONLY (value) = 1;
27952 return value;
27953 }
27954
27955
27956 /* Build a location of the form:
27957 @encode(int)
27958 ^~~~~~~~~~~~
27959 with caret==start at the @ token, finishing at the close paren. */
27960 location_t combined_loc
27961 = make_location (start_loc, start_loc,
27962 cp_lexer_previous_token (parser->lexer)->location);
27963
27964 return cp_expr (objc_build_encode_expr (type), combined_loc);
27965 }
27966
27967 /* Parse an Objective-C @defs expression. */
27968
27969 static tree
27970 cp_parser_objc_defs_expression (cp_parser *parser)
27971 {
27972 tree name;
27973
27974 cp_lexer_consume_token (parser->lexer); /* Eat '@defs'. */
27975 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
27976 name = cp_parser_identifier (parser);
27977 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
27978
27979 return objc_get_class_ivars (name);
27980 }
27981
27982 /* Parse an Objective-C protocol expression.
27983
27984 objc-protocol-expression:
27985 @protocol ( identifier )
27986
27987 Returns a representation of the protocol expression. */
27988
27989 static tree
27990 cp_parser_objc_protocol_expression (cp_parser* parser)
27991 {
27992 tree proto;
27993 location_t start_loc = cp_lexer_peek_token (parser->lexer)->location;
27994
27995 cp_lexer_consume_token (parser->lexer); /* Eat '@protocol'. */
27996 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
27997 proto = cp_parser_identifier (parser);
27998 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
27999
28000 /* Build a location of the form:
28001 @protocol(prot)
28002 ^~~~~~~~~~~~~~~
28003 with caret==start at the @ token, finishing at the close paren. */
28004 location_t combined_loc
28005 = make_location (start_loc, start_loc,
28006 cp_lexer_previous_token (parser->lexer)->location);
28007 tree result = objc_build_protocol_expr (proto);
28008 protected_set_expr_location (result, combined_loc);
28009 return result;
28010 }
28011
28012 /* Parse an Objective-C selector expression.
28013
28014 objc-selector-expression:
28015 @selector ( objc-method-signature )
28016
28017 objc-method-signature:
28018 objc-selector
28019 objc-selector-seq
28020
28021 objc-selector-seq:
28022 objc-selector :
28023 objc-selector-seq objc-selector :
28024
28025 Returns a representation of the method selector. */
28026
28027 static tree
28028 cp_parser_objc_selector_expression (cp_parser* parser)
28029 {
28030 tree sel_seq = NULL_TREE;
28031 bool maybe_unary_selector_p = true;
28032 cp_token *token;
28033 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
28034
28035 cp_lexer_consume_token (parser->lexer); /* Eat '@selector'. */
28036 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
28037 token = cp_lexer_peek_token (parser->lexer);
28038
28039 while (cp_parser_objc_selector_p (token->type) || token->type == CPP_COLON
28040 || token->type == CPP_SCOPE)
28041 {
28042 tree selector = NULL_TREE;
28043
28044 if (token->type != CPP_COLON
28045 || token->type == CPP_SCOPE)
28046 selector = cp_parser_objc_selector (parser);
28047
28048 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COLON)
28049 && cp_lexer_next_token_is_not (parser->lexer, CPP_SCOPE))
28050 {
28051 /* Detect if we have a unary selector. */
28052 if (maybe_unary_selector_p)
28053 {
28054 sel_seq = selector;
28055 goto finish_selector;
28056 }
28057 else
28058 {
28059 cp_parser_error (parser, "expected %<:%>");
28060 }
28061 }
28062 maybe_unary_selector_p = false;
28063 token = cp_lexer_consume_token (parser->lexer);
28064
28065 if (token->type == CPP_SCOPE)
28066 {
28067 sel_seq
28068 = chainon (sel_seq,
28069 build_tree_list (selector, NULL_TREE));
28070 sel_seq
28071 = chainon (sel_seq,
28072 build_tree_list (NULL_TREE, NULL_TREE));
28073 }
28074 else
28075 sel_seq
28076 = chainon (sel_seq,
28077 build_tree_list (selector, NULL_TREE));
28078
28079 token = cp_lexer_peek_token (parser->lexer);
28080 }
28081
28082 finish_selector:
28083 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
28084
28085
28086 /* Build a location of the form:
28087 @selector(func)
28088 ^~~~~~~~~~~~~~~
28089 with caret==start at the @ token, finishing at the close paren. */
28090 location_t combined_loc
28091 = make_location (loc, loc,
28092 cp_lexer_previous_token (parser->lexer)->location);
28093 tree result = objc_build_selector_expr (combined_loc, sel_seq);
28094 /* TODO: objc_build_selector_expr doesn't always honor the location. */
28095 protected_set_expr_location (result, combined_loc);
28096 return result;
28097 }
28098
28099 /* Parse a list of identifiers.
28100
28101 objc-identifier-list:
28102 identifier
28103 objc-identifier-list , identifier
28104
28105 Returns a TREE_LIST of identifier nodes. */
28106
28107 static tree
28108 cp_parser_objc_identifier_list (cp_parser* parser)
28109 {
28110 tree identifier;
28111 tree list;
28112 cp_token *sep;
28113
28114 identifier = cp_parser_identifier (parser);
28115 if (identifier == error_mark_node)
28116 return error_mark_node;
28117
28118 list = build_tree_list (NULL_TREE, identifier);
28119 sep = cp_lexer_peek_token (parser->lexer);
28120
28121 while (sep->type == CPP_COMMA)
28122 {
28123 cp_lexer_consume_token (parser->lexer); /* Eat ','. */
28124 identifier = cp_parser_identifier (parser);
28125 if (identifier == error_mark_node)
28126 return list;
28127
28128 list = chainon (list, build_tree_list (NULL_TREE,
28129 identifier));
28130 sep = cp_lexer_peek_token (parser->lexer);
28131 }
28132
28133 return list;
28134 }
28135
28136 /* Parse an Objective-C alias declaration.
28137
28138 objc-alias-declaration:
28139 @compatibility_alias identifier identifier ;
28140
28141 This function registers the alias mapping with the Objective-C front end.
28142 It returns nothing. */
28143
28144 static void
28145 cp_parser_objc_alias_declaration (cp_parser* parser)
28146 {
28147 tree alias, orig;
28148
28149 cp_lexer_consume_token (parser->lexer); /* Eat '@compatibility_alias'. */
28150 alias = cp_parser_identifier (parser);
28151 orig = cp_parser_identifier (parser);
28152 objc_declare_alias (alias, orig);
28153 cp_parser_consume_semicolon_at_end_of_statement (parser);
28154 }
28155
28156 /* Parse an Objective-C class forward-declaration.
28157
28158 objc-class-declaration:
28159 @class objc-identifier-list ;
28160
28161 The function registers the forward declarations with the Objective-C
28162 front end. It returns nothing. */
28163
28164 static void
28165 cp_parser_objc_class_declaration (cp_parser* parser)
28166 {
28167 cp_lexer_consume_token (parser->lexer); /* Eat '@class'. */
28168 while (true)
28169 {
28170 tree id;
28171
28172 id = cp_parser_identifier (parser);
28173 if (id == error_mark_node)
28174 break;
28175
28176 objc_declare_class (id);
28177
28178 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
28179 cp_lexer_consume_token (parser->lexer);
28180 else
28181 break;
28182 }
28183 cp_parser_consume_semicolon_at_end_of_statement (parser);
28184 }
28185
28186 /* Parse a list of Objective-C protocol references.
28187
28188 objc-protocol-refs-opt:
28189 objc-protocol-refs [opt]
28190
28191 objc-protocol-refs:
28192 < objc-identifier-list >
28193
28194 Returns a TREE_LIST of identifiers, if any. */
28195
28196 static tree
28197 cp_parser_objc_protocol_refs_opt (cp_parser* parser)
28198 {
28199 tree protorefs = NULL_TREE;
28200
28201 if(cp_lexer_next_token_is (parser->lexer, CPP_LESS))
28202 {
28203 cp_lexer_consume_token (parser->lexer); /* Eat '<'. */
28204 protorefs = cp_parser_objc_identifier_list (parser);
28205 cp_parser_require (parser, CPP_GREATER, RT_GREATER);
28206 }
28207
28208 return protorefs;
28209 }
28210
28211 /* Parse a Objective-C visibility specification. */
28212
28213 static void
28214 cp_parser_objc_visibility_spec (cp_parser* parser)
28215 {
28216 cp_token *vis = cp_lexer_peek_token (parser->lexer);
28217
28218 switch (vis->keyword)
28219 {
28220 case RID_AT_PRIVATE:
28221 objc_set_visibility (OBJC_IVAR_VIS_PRIVATE);
28222 break;
28223 case RID_AT_PROTECTED:
28224 objc_set_visibility (OBJC_IVAR_VIS_PROTECTED);
28225 break;
28226 case RID_AT_PUBLIC:
28227 objc_set_visibility (OBJC_IVAR_VIS_PUBLIC);
28228 break;
28229 case RID_AT_PACKAGE:
28230 objc_set_visibility (OBJC_IVAR_VIS_PACKAGE);
28231 break;
28232 default:
28233 return;
28234 }
28235
28236 /* Eat '@private'/'@protected'/'@public'. */
28237 cp_lexer_consume_token (parser->lexer);
28238 }
28239
28240 /* Parse an Objective-C method type. Return 'true' if it is a class
28241 (+) method, and 'false' if it is an instance (-) method. */
28242
28243 static inline bool
28244 cp_parser_objc_method_type (cp_parser* parser)
28245 {
28246 if (cp_lexer_consume_token (parser->lexer)->type == CPP_PLUS)
28247 return true;
28248 else
28249 return false;
28250 }
28251
28252 /* Parse an Objective-C protocol qualifier. */
28253
28254 static tree
28255 cp_parser_objc_protocol_qualifiers (cp_parser* parser)
28256 {
28257 tree quals = NULL_TREE, node;
28258 cp_token *token = cp_lexer_peek_token (parser->lexer);
28259
28260 node = token->u.value;
28261
28262 while (node && identifier_p (node)
28263 && (node == ridpointers [(int) RID_IN]
28264 || node == ridpointers [(int) RID_OUT]
28265 || node == ridpointers [(int) RID_INOUT]
28266 || node == ridpointers [(int) RID_BYCOPY]
28267 || node == ridpointers [(int) RID_BYREF]
28268 || node == ridpointers [(int) RID_ONEWAY]))
28269 {
28270 quals = tree_cons (NULL_TREE, node, quals);
28271 cp_lexer_consume_token (parser->lexer);
28272 token = cp_lexer_peek_token (parser->lexer);
28273 node = token->u.value;
28274 }
28275
28276 return quals;
28277 }
28278
28279 /* Parse an Objective-C typename. */
28280
28281 static tree
28282 cp_parser_objc_typename (cp_parser* parser)
28283 {
28284 tree type_name = NULL_TREE;
28285
28286 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
28287 {
28288 tree proto_quals, cp_type = NULL_TREE;
28289
28290 cp_lexer_consume_token (parser->lexer); /* Eat '('. */
28291 proto_quals = cp_parser_objc_protocol_qualifiers (parser);
28292
28293 /* An ObjC type name may consist of just protocol qualifiers, in which
28294 case the type shall default to 'id'. */
28295 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN))
28296 {
28297 cp_type = cp_parser_type_id (parser);
28298
28299 /* If the type could not be parsed, an error has already
28300 been produced. For error recovery, behave as if it had
28301 not been specified, which will use the default type
28302 'id'. */
28303 if (cp_type == error_mark_node)
28304 {
28305 cp_type = NULL_TREE;
28306 /* We need to skip to the closing parenthesis as
28307 cp_parser_type_id() does not seem to do it for
28308 us. */
28309 cp_parser_skip_to_closing_parenthesis (parser,
28310 /*recovering=*/true,
28311 /*or_comma=*/false,
28312 /*consume_paren=*/false);
28313 }
28314 }
28315
28316 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
28317 type_name = build_tree_list (proto_quals, cp_type);
28318 }
28319
28320 return type_name;
28321 }
28322
28323 /* Check to see if TYPE refers to an Objective-C selector name. */
28324
28325 static bool
28326 cp_parser_objc_selector_p (enum cpp_ttype type)
28327 {
28328 return (type == CPP_NAME || type == CPP_KEYWORD
28329 || type == CPP_AND_AND || type == CPP_AND_EQ || type == CPP_AND
28330 || type == CPP_OR || type == CPP_COMPL || type == CPP_NOT
28331 || type == CPP_NOT_EQ || type == CPP_OR_OR || type == CPP_OR_EQ
28332 || type == CPP_XOR || type == CPP_XOR_EQ);
28333 }
28334
28335 /* Parse an Objective-C selector. */
28336
28337 static tree
28338 cp_parser_objc_selector (cp_parser* parser)
28339 {
28340 cp_token *token = cp_lexer_consume_token (parser->lexer);
28341
28342 if (!cp_parser_objc_selector_p (token->type))
28343 {
28344 error_at (token->location, "invalid Objective-C++ selector name");
28345 return error_mark_node;
28346 }
28347
28348 /* C++ operator names are allowed to appear in ObjC selectors. */
28349 switch (token->type)
28350 {
28351 case CPP_AND_AND: return get_identifier ("and");
28352 case CPP_AND_EQ: return get_identifier ("and_eq");
28353 case CPP_AND: return get_identifier ("bitand");
28354 case CPP_OR: return get_identifier ("bitor");
28355 case CPP_COMPL: return get_identifier ("compl");
28356 case CPP_NOT: return get_identifier ("not");
28357 case CPP_NOT_EQ: return get_identifier ("not_eq");
28358 case CPP_OR_OR: return get_identifier ("or");
28359 case CPP_OR_EQ: return get_identifier ("or_eq");
28360 case CPP_XOR: return get_identifier ("xor");
28361 case CPP_XOR_EQ: return get_identifier ("xor_eq");
28362 default: return token->u.value;
28363 }
28364 }
28365
28366 /* Parse an Objective-C params list. */
28367
28368 static tree
28369 cp_parser_objc_method_keyword_params (cp_parser* parser, tree* attributes)
28370 {
28371 tree params = NULL_TREE;
28372 bool maybe_unary_selector_p = true;
28373 cp_token *token = cp_lexer_peek_token (parser->lexer);
28374
28375 while (cp_parser_objc_selector_p (token->type) || token->type == CPP_COLON)
28376 {
28377 tree selector = NULL_TREE, type_name, identifier;
28378 tree parm_attr = NULL_TREE;
28379
28380 if (token->keyword == RID_ATTRIBUTE)
28381 break;
28382
28383 if (token->type != CPP_COLON)
28384 selector = cp_parser_objc_selector (parser);
28385
28386 /* Detect if we have a unary selector. */
28387 if (maybe_unary_selector_p
28388 && cp_lexer_next_token_is_not (parser->lexer, CPP_COLON))
28389 {
28390 params = selector; /* Might be followed by attributes. */
28391 break;
28392 }
28393
28394 maybe_unary_selector_p = false;
28395 if (!cp_parser_require (parser, CPP_COLON, RT_COLON))
28396 {
28397 /* Something went quite wrong. There should be a colon
28398 here, but there is not. Stop parsing parameters. */
28399 break;
28400 }
28401 type_name = cp_parser_objc_typename (parser);
28402 /* New ObjC allows attributes on parameters too. */
28403 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_ATTRIBUTE))
28404 parm_attr = cp_parser_attributes_opt (parser);
28405 identifier = cp_parser_identifier (parser);
28406
28407 params
28408 = chainon (params,
28409 objc_build_keyword_decl (selector,
28410 type_name,
28411 identifier,
28412 parm_attr));
28413
28414 token = cp_lexer_peek_token (parser->lexer);
28415 }
28416
28417 if (params == NULL_TREE)
28418 {
28419 cp_parser_error (parser, "objective-c++ method declaration is expected");
28420 return error_mark_node;
28421 }
28422
28423 /* We allow tail attributes for the method. */
28424 if (token->keyword == RID_ATTRIBUTE)
28425 {
28426 *attributes = cp_parser_attributes_opt (parser);
28427 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
28428 || cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
28429 return params;
28430 cp_parser_error (parser,
28431 "method attributes must be specified at the end");
28432 return error_mark_node;
28433 }
28434
28435 if (params == NULL_TREE)
28436 {
28437 cp_parser_error (parser, "objective-c++ method declaration is expected");
28438 return error_mark_node;
28439 }
28440 return params;
28441 }
28442
28443 /* Parse the non-keyword Objective-C params. */
28444
28445 static tree
28446 cp_parser_objc_method_tail_params_opt (cp_parser* parser, bool *ellipsisp,
28447 tree* attributes)
28448 {
28449 tree params = make_node (TREE_LIST);
28450 cp_token *token = cp_lexer_peek_token (parser->lexer);
28451 *ellipsisp = false; /* Initially, assume no ellipsis. */
28452
28453 while (token->type == CPP_COMMA)
28454 {
28455 cp_parameter_declarator *parmdecl;
28456 tree parm;
28457
28458 cp_lexer_consume_token (parser->lexer); /* Eat ','. */
28459 token = cp_lexer_peek_token (parser->lexer);
28460
28461 if (token->type == CPP_ELLIPSIS)
28462 {
28463 cp_lexer_consume_token (parser->lexer); /* Eat '...'. */
28464 *ellipsisp = true;
28465 token = cp_lexer_peek_token (parser->lexer);
28466 break;
28467 }
28468
28469 /* TODO: parse attributes for tail parameters. */
28470 parmdecl = cp_parser_parameter_declaration (parser, false, NULL);
28471 parm = grokdeclarator (parmdecl->declarator,
28472 &parmdecl->decl_specifiers,
28473 PARM, /*initialized=*/0,
28474 /*attrlist=*/NULL);
28475
28476 chainon (params, build_tree_list (NULL_TREE, parm));
28477 token = cp_lexer_peek_token (parser->lexer);
28478 }
28479
28480 /* We allow tail attributes for the method. */
28481 if (token->keyword == RID_ATTRIBUTE)
28482 {
28483 if (*attributes == NULL_TREE)
28484 {
28485 *attributes = cp_parser_attributes_opt (parser);
28486 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
28487 || cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
28488 return params;
28489 }
28490 else
28491 /* We have an error, but parse the attributes, so that we can
28492 carry on. */
28493 *attributes = cp_parser_attributes_opt (parser);
28494
28495 cp_parser_error (parser,
28496 "method attributes must be specified at the end");
28497 return error_mark_node;
28498 }
28499
28500 return params;
28501 }
28502
28503 /* Parse a linkage specification, a pragma, an extra semicolon or a block. */
28504
28505 static void
28506 cp_parser_objc_interstitial_code (cp_parser* parser)
28507 {
28508 cp_token *token = cp_lexer_peek_token (parser->lexer);
28509
28510 /* If the next token is `extern' and the following token is a string
28511 literal, then we have a linkage specification. */
28512 if (token->keyword == RID_EXTERN
28513 && cp_parser_is_pure_string_literal
28514 (cp_lexer_peek_nth_token (parser->lexer, 2)))
28515 cp_parser_linkage_specification (parser);
28516 /* Handle #pragma, if any. */
28517 else if (token->type == CPP_PRAGMA)
28518 cp_parser_pragma (parser, pragma_objc_icode, NULL);
28519 /* Allow stray semicolons. */
28520 else if (token->type == CPP_SEMICOLON)
28521 cp_lexer_consume_token (parser->lexer);
28522 /* Mark methods as optional or required, when building protocols. */
28523 else if (token->keyword == RID_AT_OPTIONAL)
28524 {
28525 cp_lexer_consume_token (parser->lexer);
28526 objc_set_method_opt (true);
28527 }
28528 else if (token->keyword == RID_AT_REQUIRED)
28529 {
28530 cp_lexer_consume_token (parser->lexer);
28531 objc_set_method_opt (false);
28532 }
28533 else if (token->keyword == RID_NAMESPACE)
28534 cp_parser_namespace_definition (parser);
28535 /* Other stray characters must generate errors. */
28536 else if (token->type == CPP_OPEN_BRACE || token->type == CPP_CLOSE_BRACE)
28537 {
28538 cp_lexer_consume_token (parser->lexer);
28539 error ("stray %qs between Objective-C++ methods",
28540 token->type == CPP_OPEN_BRACE ? "{" : "}");
28541 }
28542 /* Finally, try to parse a block-declaration, or a function-definition. */
28543 else
28544 cp_parser_block_declaration (parser, /*statement_p=*/false);
28545 }
28546
28547 /* Parse a method signature. */
28548
28549 static tree
28550 cp_parser_objc_method_signature (cp_parser* parser, tree* attributes)
28551 {
28552 tree rettype, kwdparms, optparms;
28553 bool ellipsis = false;
28554 bool is_class_method;
28555
28556 is_class_method = cp_parser_objc_method_type (parser);
28557 rettype = cp_parser_objc_typename (parser);
28558 *attributes = NULL_TREE;
28559 kwdparms = cp_parser_objc_method_keyword_params (parser, attributes);
28560 if (kwdparms == error_mark_node)
28561 return error_mark_node;
28562 optparms = cp_parser_objc_method_tail_params_opt (parser, &ellipsis, attributes);
28563 if (optparms == error_mark_node)
28564 return error_mark_node;
28565
28566 return objc_build_method_signature (is_class_method, rettype, kwdparms, optparms, ellipsis);
28567 }
28568
28569 static bool
28570 cp_parser_objc_method_maybe_bad_prefix_attributes (cp_parser* parser)
28571 {
28572 tree tattr;
28573 cp_lexer_save_tokens (parser->lexer);
28574 tattr = cp_parser_attributes_opt (parser);
28575 gcc_assert (tattr) ;
28576
28577 /* If the attributes are followed by a method introducer, this is not allowed.
28578 Dump the attributes and flag the situation. */
28579 if (cp_lexer_next_token_is (parser->lexer, CPP_PLUS)
28580 || cp_lexer_next_token_is (parser->lexer, CPP_MINUS))
28581 return true;
28582
28583 /* Otherwise, the attributes introduce some interstitial code, possibly so
28584 rewind to allow that check. */
28585 cp_lexer_rollback_tokens (parser->lexer);
28586 return false;
28587 }
28588
28589 /* Parse an Objective-C method prototype list. */
28590
28591 static void
28592 cp_parser_objc_method_prototype_list (cp_parser* parser)
28593 {
28594 cp_token *token = cp_lexer_peek_token (parser->lexer);
28595
28596 while (token->keyword != RID_AT_END && token->type != CPP_EOF)
28597 {
28598 if (token->type == CPP_PLUS || token->type == CPP_MINUS)
28599 {
28600 tree attributes, sig;
28601 bool is_class_method;
28602 if (token->type == CPP_PLUS)
28603 is_class_method = true;
28604 else
28605 is_class_method = false;
28606 sig = cp_parser_objc_method_signature (parser, &attributes);
28607 if (sig == error_mark_node)
28608 {
28609 cp_parser_skip_to_end_of_block_or_statement (parser);
28610 token = cp_lexer_peek_token (parser->lexer);
28611 continue;
28612 }
28613 objc_add_method_declaration (is_class_method, sig, attributes);
28614 cp_parser_consume_semicolon_at_end_of_statement (parser);
28615 }
28616 else if (token->keyword == RID_AT_PROPERTY)
28617 cp_parser_objc_at_property_declaration (parser);
28618 else if (token->keyword == RID_ATTRIBUTE
28619 && cp_parser_objc_method_maybe_bad_prefix_attributes(parser))
28620 warning_at (cp_lexer_peek_token (parser->lexer)->location,
28621 OPT_Wattributes,
28622 "prefix attributes are ignored for methods");
28623 else
28624 /* Allow for interspersed non-ObjC++ code. */
28625 cp_parser_objc_interstitial_code (parser);
28626
28627 token = cp_lexer_peek_token (parser->lexer);
28628 }
28629
28630 if (token->type != CPP_EOF)
28631 cp_lexer_consume_token (parser->lexer); /* Eat '@end'. */
28632 else
28633 cp_parser_error (parser, "expected %<@end%>");
28634
28635 objc_finish_interface ();
28636 }
28637
28638 /* Parse an Objective-C method definition list. */
28639
28640 static void
28641 cp_parser_objc_method_definition_list (cp_parser* parser)
28642 {
28643 cp_token *token = cp_lexer_peek_token (parser->lexer);
28644
28645 while (token->keyword != RID_AT_END && token->type != CPP_EOF)
28646 {
28647 tree meth;
28648
28649 if (token->type == CPP_PLUS || token->type == CPP_MINUS)
28650 {
28651 cp_token *ptk;
28652 tree sig, attribute;
28653 bool is_class_method;
28654 if (token->type == CPP_PLUS)
28655 is_class_method = true;
28656 else
28657 is_class_method = false;
28658 push_deferring_access_checks (dk_deferred);
28659 sig = cp_parser_objc_method_signature (parser, &attribute);
28660 if (sig == error_mark_node)
28661 {
28662 cp_parser_skip_to_end_of_block_or_statement (parser);
28663 token = cp_lexer_peek_token (parser->lexer);
28664 continue;
28665 }
28666 objc_start_method_definition (is_class_method, sig, attribute,
28667 NULL_TREE);
28668
28669 /* For historical reasons, we accept an optional semicolon. */
28670 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
28671 cp_lexer_consume_token (parser->lexer);
28672
28673 ptk = cp_lexer_peek_token (parser->lexer);
28674 if (!(ptk->type == CPP_PLUS || ptk->type == CPP_MINUS
28675 || ptk->type == CPP_EOF || ptk->keyword == RID_AT_END))
28676 {
28677 perform_deferred_access_checks (tf_warning_or_error);
28678 stop_deferring_access_checks ();
28679 meth = cp_parser_function_definition_after_declarator (parser,
28680 false);
28681 pop_deferring_access_checks ();
28682 objc_finish_method_definition (meth);
28683 }
28684 }
28685 /* The following case will be removed once @synthesize is
28686 completely implemented. */
28687 else if (token->keyword == RID_AT_PROPERTY)
28688 cp_parser_objc_at_property_declaration (parser);
28689 else if (token->keyword == RID_AT_SYNTHESIZE)
28690 cp_parser_objc_at_synthesize_declaration (parser);
28691 else if (token->keyword == RID_AT_DYNAMIC)
28692 cp_parser_objc_at_dynamic_declaration (parser);
28693 else if (token->keyword == RID_ATTRIBUTE
28694 && cp_parser_objc_method_maybe_bad_prefix_attributes(parser))
28695 warning_at (token->location, OPT_Wattributes,
28696 "prefix attributes are ignored for methods");
28697 else
28698 /* Allow for interspersed non-ObjC++ code. */
28699 cp_parser_objc_interstitial_code (parser);
28700
28701 token = cp_lexer_peek_token (parser->lexer);
28702 }
28703
28704 if (token->type != CPP_EOF)
28705 cp_lexer_consume_token (parser->lexer); /* Eat '@end'. */
28706 else
28707 cp_parser_error (parser, "expected %<@end%>");
28708
28709 objc_finish_implementation ();
28710 }
28711
28712 /* Parse Objective-C ivars. */
28713
28714 static void
28715 cp_parser_objc_class_ivars (cp_parser* parser)
28716 {
28717 cp_token *token = cp_lexer_peek_token (parser->lexer);
28718
28719 if (token->type != CPP_OPEN_BRACE)
28720 return; /* No ivars specified. */
28721
28722 cp_lexer_consume_token (parser->lexer); /* Eat '{'. */
28723 token = cp_lexer_peek_token (parser->lexer);
28724
28725 while (token->type != CPP_CLOSE_BRACE
28726 && token->keyword != RID_AT_END && token->type != CPP_EOF)
28727 {
28728 cp_decl_specifier_seq declspecs;
28729 int decl_class_or_enum_p;
28730 tree prefix_attributes;
28731
28732 cp_parser_objc_visibility_spec (parser);
28733
28734 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
28735 break;
28736
28737 cp_parser_decl_specifier_seq (parser,
28738 CP_PARSER_FLAGS_OPTIONAL,
28739 &declspecs,
28740 &decl_class_or_enum_p);
28741
28742 /* auto, register, static, extern, mutable. */
28743 if (declspecs.storage_class != sc_none)
28744 {
28745 cp_parser_error (parser, "invalid type for instance variable");
28746 declspecs.storage_class = sc_none;
28747 }
28748
28749 /* thread_local. */
28750 if (decl_spec_seq_has_spec_p (&declspecs, ds_thread))
28751 {
28752 cp_parser_error (parser, "invalid type for instance variable");
28753 declspecs.locations[ds_thread] = 0;
28754 }
28755
28756 /* typedef. */
28757 if (decl_spec_seq_has_spec_p (&declspecs, ds_typedef))
28758 {
28759 cp_parser_error (parser, "invalid type for instance variable");
28760 declspecs.locations[ds_typedef] = 0;
28761 }
28762
28763 prefix_attributes = declspecs.attributes;
28764 declspecs.attributes = NULL_TREE;
28765
28766 /* Keep going until we hit the `;' at the end of the
28767 declaration. */
28768 while (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
28769 {
28770 tree width = NULL_TREE, attributes, first_attribute, decl;
28771 cp_declarator *declarator = NULL;
28772 int ctor_dtor_or_conv_p;
28773
28774 /* Check for a (possibly unnamed) bitfield declaration. */
28775 token = cp_lexer_peek_token (parser->lexer);
28776 if (token->type == CPP_COLON)
28777 goto eat_colon;
28778
28779 if (token->type == CPP_NAME
28780 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
28781 == CPP_COLON))
28782 {
28783 /* Get the name of the bitfield. */
28784 declarator = make_id_declarator (NULL_TREE,
28785 cp_parser_identifier (parser),
28786 sfk_none);
28787
28788 eat_colon:
28789 cp_lexer_consume_token (parser->lexer); /* Eat ':'. */
28790 /* Get the width of the bitfield. */
28791 width
28792 = cp_parser_constant_expression (parser);
28793 }
28794 else
28795 {
28796 /* Parse the declarator. */
28797 declarator
28798 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
28799 &ctor_dtor_or_conv_p,
28800 /*parenthesized_p=*/NULL,
28801 /*member_p=*/false,
28802 /*friend_p=*/false);
28803 }
28804
28805 /* Look for attributes that apply to the ivar. */
28806 attributes = cp_parser_attributes_opt (parser);
28807 /* Remember which attributes are prefix attributes and
28808 which are not. */
28809 first_attribute = attributes;
28810 /* Combine the attributes. */
28811 attributes = chainon (prefix_attributes, attributes);
28812
28813 if (width)
28814 /* Create the bitfield declaration. */
28815 decl = grokbitfield (declarator, &declspecs,
28816 width,
28817 attributes);
28818 else
28819 decl = grokfield (declarator, &declspecs,
28820 NULL_TREE, /*init_const_expr_p=*/false,
28821 NULL_TREE, attributes);
28822
28823 /* Add the instance variable. */
28824 if (decl != error_mark_node && decl != NULL_TREE)
28825 objc_add_instance_variable (decl);
28826
28827 /* Reset PREFIX_ATTRIBUTES. */
28828 while (attributes && TREE_CHAIN (attributes) != first_attribute)
28829 attributes = TREE_CHAIN (attributes);
28830 if (attributes)
28831 TREE_CHAIN (attributes) = NULL_TREE;
28832
28833 token = cp_lexer_peek_token (parser->lexer);
28834
28835 if (token->type == CPP_COMMA)
28836 {
28837 cp_lexer_consume_token (parser->lexer); /* Eat ','. */
28838 continue;
28839 }
28840 break;
28841 }
28842
28843 cp_parser_consume_semicolon_at_end_of_statement (parser);
28844 token = cp_lexer_peek_token (parser->lexer);
28845 }
28846
28847 if (token->keyword == RID_AT_END)
28848 cp_parser_error (parser, "expected %<}%>");
28849
28850 /* Do not consume the RID_AT_END, so it will be read again as terminating
28851 the @interface of @implementation. */
28852 if (token->keyword != RID_AT_END && token->type != CPP_EOF)
28853 cp_lexer_consume_token (parser->lexer); /* Eat '}'. */
28854
28855 /* For historical reasons, we accept an optional semicolon. */
28856 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
28857 cp_lexer_consume_token (parser->lexer);
28858 }
28859
28860 /* Parse an Objective-C protocol declaration. */
28861
28862 static void
28863 cp_parser_objc_protocol_declaration (cp_parser* parser, tree attributes)
28864 {
28865 tree proto, protorefs;
28866 cp_token *tok;
28867
28868 cp_lexer_consume_token (parser->lexer); /* Eat '@protocol'. */
28869 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NAME))
28870 {
28871 tok = cp_lexer_peek_token (parser->lexer);
28872 error_at (tok->location, "identifier expected after %<@protocol%>");
28873 cp_parser_consume_semicolon_at_end_of_statement (parser);
28874 return;
28875 }
28876
28877 /* See if we have a forward declaration or a definition. */
28878 tok = cp_lexer_peek_nth_token (parser->lexer, 2);
28879
28880 /* Try a forward declaration first. */
28881 if (tok->type == CPP_COMMA || tok->type == CPP_SEMICOLON)
28882 {
28883 while (true)
28884 {
28885 tree id;
28886
28887 id = cp_parser_identifier (parser);
28888 if (id == error_mark_node)
28889 break;
28890
28891 objc_declare_protocol (id, attributes);
28892
28893 if(cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
28894 cp_lexer_consume_token (parser->lexer);
28895 else
28896 break;
28897 }
28898 cp_parser_consume_semicolon_at_end_of_statement (parser);
28899 }
28900
28901 /* Ok, we got a full-fledged definition (or at least should). */
28902 else
28903 {
28904 proto = cp_parser_identifier (parser);
28905 protorefs = cp_parser_objc_protocol_refs_opt (parser);
28906 objc_start_protocol (proto, protorefs, attributes);
28907 cp_parser_objc_method_prototype_list (parser);
28908 }
28909 }
28910
28911 /* Parse an Objective-C superclass or category. */
28912
28913 static void
28914 cp_parser_objc_superclass_or_category (cp_parser *parser,
28915 bool iface_p,
28916 tree *super,
28917 tree *categ, bool *is_class_extension)
28918 {
28919 cp_token *next = cp_lexer_peek_token (parser->lexer);
28920
28921 *super = *categ = NULL_TREE;
28922 *is_class_extension = false;
28923 if (next->type == CPP_COLON)
28924 {
28925 cp_lexer_consume_token (parser->lexer); /* Eat ':'. */
28926 *super = cp_parser_identifier (parser);
28927 }
28928 else if (next->type == CPP_OPEN_PAREN)
28929 {
28930 cp_lexer_consume_token (parser->lexer); /* Eat '('. */
28931
28932 /* If there is no category name, and this is an @interface, we
28933 have a class extension. */
28934 if (iface_p && cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN))
28935 {
28936 *categ = NULL_TREE;
28937 *is_class_extension = true;
28938 }
28939 else
28940 *categ = cp_parser_identifier (parser);
28941
28942 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
28943 }
28944 }
28945
28946 /* Parse an Objective-C class interface. */
28947
28948 static void
28949 cp_parser_objc_class_interface (cp_parser* parser, tree attributes)
28950 {
28951 tree name, super, categ, protos;
28952 bool is_class_extension;
28953
28954 cp_lexer_consume_token (parser->lexer); /* Eat '@interface'. */
28955 name = cp_parser_identifier (parser);
28956 if (name == error_mark_node)
28957 {
28958 /* It's hard to recover because even if valid @interface stuff
28959 is to follow, we can't compile it (or validate it) if we
28960 don't even know which class it refers to. Let's assume this
28961 was a stray '@interface' token in the stream and skip it.
28962 */
28963 return;
28964 }
28965 cp_parser_objc_superclass_or_category (parser, true, &super, &categ,
28966 &is_class_extension);
28967 protos = cp_parser_objc_protocol_refs_opt (parser);
28968
28969 /* We have either a class or a category on our hands. */
28970 if (categ || is_class_extension)
28971 objc_start_category_interface (name, categ, protos, attributes);
28972 else
28973 {
28974 objc_start_class_interface (name, super, protos, attributes);
28975 /* Handle instance variable declarations, if any. */
28976 cp_parser_objc_class_ivars (parser);
28977 objc_continue_interface ();
28978 }
28979
28980 cp_parser_objc_method_prototype_list (parser);
28981 }
28982
28983 /* Parse an Objective-C class implementation. */
28984
28985 static void
28986 cp_parser_objc_class_implementation (cp_parser* parser)
28987 {
28988 tree name, super, categ;
28989 bool is_class_extension;
28990
28991 cp_lexer_consume_token (parser->lexer); /* Eat '@implementation'. */
28992 name = cp_parser_identifier (parser);
28993 if (name == error_mark_node)
28994 {
28995 /* It's hard to recover because even if valid @implementation
28996 stuff is to follow, we can't compile it (or validate it) if
28997 we don't even know which class it refers to. Let's assume
28998 this was a stray '@implementation' token in the stream and
28999 skip it.
29000 */
29001 return;
29002 }
29003 cp_parser_objc_superclass_or_category (parser, false, &super, &categ,
29004 &is_class_extension);
29005
29006 /* We have either a class or a category on our hands. */
29007 if (categ)
29008 objc_start_category_implementation (name, categ);
29009 else
29010 {
29011 objc_start_class_implementation (name, super);
29012 /* Handle instance variable declarations, if any. */
29013 cp_parser_objc_class_ivars (parser);
29014 objc_continue_implementation ();
29015 }
29016
29017 cp_parser_objc_method_definition_list (parser);
29018 }
29019
29020 /* Consume the @end token and finish off the implementation. */
29021
29022 static void
29023 cp_parser_objc_end_implementation (cp_parser* parser)
29024 {
29025 cp_lexer_consume_token (parser->lexer); /* Eat '@end'. */
29026 objc_finish_implementation ();
29027 }
29028
29029 /* Parse an Objective-C declaration. */
29030
29031 static void
29032 cp_parser_objc_declaration (cp_parser* parser, tree attributes)
29033 {
29034 /* Try to figure out what kind of declaration is present. */
29035 cp_token *kwd = cp_lexer_peek_token (parser->lexer);
29036
29037 if (attributes)
29038 switch (kwd->keyword)
29039 {
29040 case RID_AT_ALIAS:
29041 case RID_AT_CLASS:
29042 case RID_AT_END:
29043 error_at (kwd->location, "attributes may not be specified before"
29044 " the %<@%D%> Objective-C++ keyword",
29045 kwd->u.value);
29046 attributes = NULL;
29047 break;
29048 case RID_AT_IMPLEMENTATION:
29049 warning_at (kwd->location, OPT_Wattributes,
29050 "prefix attributes are ignored before %<@%D%>",
29051 kwd->u.value);
29052 attributes = NULL;
29053 default:
29054 break;
29055 }
29056
29057 switch (kwd->keyword)
29058 {
29059 case RID_AT_ALIAS:
29060 cp_parser_objc_alias_declaration (parser);
29061 break;
29062 case RID_AT_CLASS:
29063 cp_parser_objc_class_declaration (parser);
29064 break;
29065 case RID_AT_PROTOCOL:
29066 cp_parser_objc_protocol_declaration (parser, attributes);
29067 break;
29068 case RID_AT_INTERFACE:
29069 cp_parser_objc_class_interface (parser, attributes);
29070 break;
29071 case RID_AT_IMPLEMENTATION:
29072 cp_parser_objc_class_implementation (parser);
29073 break;
29074 case RID_AT_END:
29075 cp_parser_objc_end_implementation (parser);
29076 break;
29077 default:
29078 error_at (kwd->location, "misplaced %<@%D%> Objective-C++ construct",
29079 kwd->u.value);
29080 cp_parser_skip_to_end_of_block_or_statement (parser);
29081 }
29082 }
29083
29084 /* Parse an Objective-C try-catch-finally statement.
29085
29086 objc-try-catch-finally-stmt:
29087 @try compound-statement objc-catch-clause-seq [opt]
29088 objc-finally-clause [opt]
29089
29090 objc-catch-clause-seq:
29091 objc-catch-clause objc-catch-clause-seq [opt]
29092
29093 objc-catch-clause:
29094 @catch ( objc-exception-declaration ) compound-statement
29095
29096 objc-finally-clause:
29097 @finally compound-statement
29098
29099 objc-exception-declaration:
29100 parameter-declaration
29101 '...'
29102
29103 where '...' is to be interpreted literally, that is, it means CPP_ELLIPSIS.
29104
29105 Returns NULL_TREE.
29106
29107 PS: This function is identical to c_parser_objc_try_catch_finally_statement
29108 for C. Keep them in sync. */
29109
29110 static tree
29111 cp_parser_objc_try_catch_finally_statement (cp_parser *parser)
29112 {
29113 location_t location;
29114 tree stmt;
29115
29116 cp_parser_require_keyword (parser, RID_AT_TRY, RT_AT_TRY);
29117 location = cp_lexer_peek_token (parser->lexer)->location;
29118 objc_maybe_warn_exceptions (location);
29119 /* NB: The @try block needs to be wrapped in its own STATEMENT_LIST
29120 node, lest it get absorbed into the surrounding block. */
29121 stmt = push_stmt_list ();
29122 cp_parser_compound_statement (parser, NULL, BCS_NORMAL, false);
29123 objc_begin_try_stmt (location, pop_stmt_list (stmt));
29124
29125 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_AT_CATCH))
29126 {
29127 cp_parameter_declarator *parm;
29128 tree parameter_declaration = error_mark_node;
29129 bool seen_open_paren = false;
29130
29131 cp_lexer_consume_token (parser->lexer);
29132 if (cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
29133 seen_open_paren = true;
29134 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
29135 {
29136 /* We have "@catch (...)" (where the '...' are literally
29137 what is in the code). Skip the '...'.
29138 parameter_declaration is set to NULL_TREE, and
29139 objc_being_catch_clauses() knows that that means
29140 '...'. */
29141 cp_lexer_consume_token (parser->lexer);
29142 parameter_declaration = NULL_TREE;
29143 }
29144 else
29145 {
29146 /* We have "@catch (NSException *exception)" or something
29147 like that. Parse the parameter declaration. */
29148 parm = cp_parser_parameter_declaration (parser, false, NULL);
29149 if (parm == NULL)
29150 parameter_declaration = error_mark_node;
29151 else
29152 parameter_declaration = grokdeclarator (parm->declarator,
29153 &parm->decl_specifiers,
29154 PARM, /*initialized=*/0,
29155 /*attrlist=*/NULL);
29156 }
29157 if (seen_open_paren)
29158 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
29159 else
29160 {
29161 /* If there was no open parenthesis, we are recovering from
29162 an error, and we are trying to figure out what mistake
29163 the user has made. */
29164
29165 /* If there is an immediate closing parenthesis, the user
29166 probably forgot the opening one (ie, they typed "@catch
29167 NSException *e)". Parse the closing parenthesis and keep
29168 going. */
29169 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN))
29170 cp_lexer_consume_token (parser->lexer);
29171
29172 /* If these is no immediate closing parenthesis, the user
29173 probably doesn't know that parenthesis are required at
29174 all (ie, they typed "@catch NSException *e"). So, just
29175 forget about the closing parenthesis and keep going. */
29176 }
29177 objc_begin_catch_clause (parameter_declaration);
29178 cp_parser_compound_statement (parser, NULL, BCS_NORMAL, false);
29179 objc_finish_catch_clause ();
29180 }
29181 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_AT_FINALLY))
29182 {
29183 cp_lexer_consume_token (parser->lexer);
29184 location = cp_lexer_peek_token (parser->lexer)->location;
29185 /* NB: The @finally block needs to be wrapped in its own STATEMENT_LIST
29186 node, lest it get absorbed into the surrounding block. */
29187 stmt = push_stmt_list ();
29188 cp_parser_compound_statement (parser, NULL, BCS_NORMAL, false);
29189 objc_build_finally_clause (location, pop_stmt_list (stmt));
29190 }
29191
29192 return objc_finish_try_stmt ();
29193 }
29194
29195 /* Parse an Objective-C synchronized statement.
29196
29197 objc-synchronized-stmt:
29198 @synchronized ( expression ) compound-statement
29199
29200 Returns NULL_TREE. */
29201
29202 static tree
29203 cp_parser_objc_synchronized_statement (cp_parser *parser)
29204 {
29205 location_t location;
29206 tree lock, stmt;
29207
29208 cp_parser_require_keyword (parser, RID_AT_SYNCHRONIZED, RT_AT_SYNCHRONIZED);
29209
29210 location = cp_lexer_peek_token (parser->lexer)->location;
29211 objc_maybe_warn_exceptions (location);
29212 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
29213 lock = cp_parser_expression (parser);
29214 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
29215
29216 /* NB: The @synchronized block needs to be wrapped in its own STATEMENT_LIST
29217 node, lest it get absorbed into the surrounding block. */
29218 stmt = push_stmt_list ();
29219 cp_parser_compound_statement (parser, NULL, BCS_NORMAL, false);
29220
29221 return objc_build_synchronized (location, lock, pop_stmt_list (stmt));
29222 }
29223
29224 /* Parse an Objective-C throw statement.
29225
29226 objc-throw-stmt:
29227 @throw assignment-expression [opt] ;
29228
29229 Returns a constructed '@throw' statement. */
29230
29231 static tree
29232 cp_parser_objc_throw_statement (cp_parser *parser)
29233 {
29234 tree expr = NULL_TREE;
29235 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
29236
29237 cp_parser_require_keyword (parser, RID_AT_THROW, RT_AT_THROW);
29238
29239 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
29240 expr = cp_parser_expression (parser);
29241
29242 cp_parser_consume_semicolon_at_end_of_statement (parser);
29243
29244 return objc_build_throw_stmt (loc, expr);
29245 }
29246
29247 /* Parse an Objective-C statement. */
29248
29249 static tree
29250 cp_parser_objc_statement (cp_parser * parser)
29251 {
29252 /* Try to figure out what kind of declaration is present. */
29253 cp_token *kwd = cp_lexer_peek_token (parser->lexer);
29254
29255 switch (kwd->keyword)
29256 {
29257 case RID_AT_TRY:
29258 return cp_parser_objc_try_catch_finally_statement (parser);
29259 case RID_AT_SYNCHRONIZED:
29260 return cp_parser_objc_synchronized_statement (parser);
29261 case RID_AT_THROW:
29262 return cp_parser_objc_throw_statement (parser);
29263 default:
29264 error_at (kwd->location, "misplaced %<@%D%> Objective-C++ construct",
29265 kwd->u.value);
29266 cp_parser_skip_to_end_of_block_or_statement (parser);
29267 }
29268
29269 return error_mark_node;
29270 }
29271
29272 /* If we are compiling ObjC++ and we see an __attribute__ we neeed to
29273 look ahead to see if an objc keyword follows the attributes. This
29274 is to detect the use of prefix attributes on ObjC @interface and
29275 @protocol. */
29276
29277 static bool
29278 cp_parser_objc_valid_prefix_attributes (cp_parser* parser, tree *attrib)
29279 {
29280 cp_lexer_save_tokens (parser->lexer);
29281 *attrib = cp_parser_attributes_opt (parser);
29282 gcc_assert (*attrib);
29283 if (OBJC_IS_AT_KEYWORD (cp_lexer_peek_token (parser->lexer)->keyword))
29284 {
29285 cp_lexer_commit_tokens (parser->lexer);
29286 return true;
29287 }
29288 cp_lexer_rollback_tokens (parser->lexer);
29289 return false;
29290 }
29291
29292 /* This routine is a minimal replacement for
29293 c_parser_struct_declaration () used when parsing the list of
29294 types/names or ObjC++ properties. For example, when parsing the
29295 code
29296
29297 @property (readonly) int a, b, c;
29298
29299 this function is responsible for parsing "int a, int b, int c" and
29300 returning the declarations as CHAIN of DECLs.
29301
29302 TODO: Share this code with cp_parser_objc_class_ivars. It's very
29303 similar parsing. */
29304 static tree
29305 cp_parser_objc_struct_declaration (cp_parser *parser)
29306 {
29307 tree decls = NULL_TREE;
29308 cp_decl_specifier_seq declspecs;
29309 int decl_class_or_enum_p;
29310 tree prefix_attributes;
29311
29312 cp_parser_decl_specifier_seq (parser,
29313 CP_PARSER_FLAGS_NONE,
29314 &declspecs,
29315 &decl_class_or_enum_p);
29316
29317 if (declspecs.type == error_mark_node)
29318 return error_mark_node;
29319
29320 /* auto, register, static, extern, mutable. */
29321 if (declspecs.storage_class != sc_none)
29322 {
29323 cp_parser_error (parser, "invalid type for property");
29324 declspecs.storage_class = sc_none;
29325 }
29326
29327 /* thread_local. */
29328 if (decl_spec_seq_has_spec_p (&declspecs, ds_thread))
29329 {
29330 cp_parser_error (parser, "invalid type for property");
29331 declspecs.locations[ds_thread] = 0;
29332 }
29333
29334 /* typedef. */
29335 if (decl_spec_seq_has_spec_p (&declspecs, ds_typedef))
29336 {
29337 cp_parser_error (parser, "invalid type for property");
29338 declspecs.locations[ds_typedef] = 0;
29339 }
29340
29341 prefix_attributes = declspecs.attributes;
29342 declspecs.attributes = NULL_TREE;
29343
29344 /* Keep going until we hit the `;' at the end of the declaration. */
29345 while (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
29346 {
29347 tree attributes, first_attribute, decl;
29348 cp_declarator *declarator;
29349 cp_token *token;
29350
29351 /* Parse the declarator. */
29352 declarator = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
29353 NULL, NULL, false, false);
29354
29355 /* Look for attributes that apply to the ivar. */
29356 attributes = cp_parser_attributes_opt (parser);
29357 /* Remember which attributes are prefix attributes and
29358 which are not. */
29359 first_attribute = attributes;
29360 /* Combine the attributes. */
29361 attributes = chainon (prefix_attributes, attributes);
29362
29363 decl = grokfield (declarator, &declspecs,
29364 NULL_TREE, /*init_const_expr_p=*/false,
29365 NULL_TREE, attributes);
29366
29367 if (decl == error_mark_node || decl == NULL_TREE)
29368 return error_mark_node;
29369
29370 /* Reset PREFIX_ATTRIBUTES. */
29371 while (attributes && TREE_CHAIN (attributes) != first_attribute)
29372 attributes = TREE_CHAIN (attributes);
29373 if (attributes)
29374 TREE_CHAIN (attributes) = NULL_TREE;
29375
29376 DECL_CHAIN (decl) = decls;
29377 decls = decl;
29378
29379 token = cp_lexer_peek_token (parser->lexer);
29380 if (token->type == CPP_COMMA)
29381 {
29382 cp_lexer_consume_token (parser->lexer); /* Eat ','. */
29383 continue;
29384 }
29385 else
29386 break;
29387 }
29388 return decls;
29389 }
29390
29391 /* Parse an Objective-C @property declaration. The syntax is:
29392
29393 objc-property-declaration:
29394 '@property' objc-property-attributes[opt] struct-declaration ;
29395
29396 objc-property-attributes:
29397 '(' objc-property-attribute-list ')'
29398
29399 objc-property-attribute-list:
29400 objc-property-attribute
29401 objc-property-attribute-list, objc-property-attribute
29402
29403 objc-property-attribute
29404 'getter' = identifier
29405 'setter' = identifier
29406 'readonly'
29407 'readwrite'
29408 'assign'
29409 'retain'
29410 'copy'
29411 'nonatomic'
29412
29413 For example:
29414 @property NSString *name;
29415 @property (readonly) id object;
29416 @property (retain, nonatomic, getter=getTheName) id name;
29417 @property int a, b, c;
29418
29419 PS: This function is identical to
29420 c_parser_objc_at_property_declaration for C. Keep them in sync. */
29421 static void
29422 cp_parser_objc_at_property_declaration (cp_parser *parser)
29423 {
29424 /* The following variables hold the attributes of the properties as
29425 parsed. They are 'false' or 'NULL_TREE' if the attribute was not
29426 seen. When we see an attribute, we set them to 'true' (if they
29427 are boolean properties) or to the identifier (if they have an
29428 argument, ie, for getter and setter). Note that here we only
29429 parse the list of attributes, check the syntax and accumulate the
29430 attributes that we find. objc_add_property_declaration() will
29431 then process the information. */
29432 bool property_assign = false;
29433 bool property_copy = false;
29434 tree property_getter_ident = NULL_TREE;
29435 bool property_nonatomic = false;
29436 bool property_readonly = false;
29437 bool property_readwrite = false;
29438 bool property_retain = false;
29439 tree property_setter_ident = NULL_TREE;
29440
29441 /* 'properties' is the list of properties that we read. Usually a
29442 single one, but maybe more (eg, in "@property int a, b, c;" there
29443 are three). */
29444 tree properties;
29445 location_t loc;
29446
29447 loc = cp_lexer_peek_token (parser->lexer)->location;
29448
29449 cp_lexer_consume_token (parser->lexer); /* Eat '@property'. */
29450
29451 /* Parse the optional attribute list... */
29452 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
29453 {
29454 /* Eat the '('. */
29455 cp_lexer_consume_token (parser->lexer);
29456
29457 while (true)
29458 {
29459 bool syntax_error = false;
29460 cp_token *token = cp_lexer_peek_token (parser->lexer);
29461 enum rid keyword;
29462
29463 if (token->type != CPP_NAME)
29464 {
29465 cp_parser_error (parser, "expected identifier");
29466 break;
29467 }
29468 keyword = C_RID_CODE (token->u.value);
29469 cp_lexer_consume_token (parser->lexer);
29470 switch (keyword)
29471 {
29472 case RID_ASSIGN: property_assign = true; break;
29473 case RID_COPY: property_copy = true; break;
29474 case RID_NONATOMIC: property_nonatomic = true; break;
29475 case RID_READONLY: property_readonly = true; break;
29476 case RID_READWRITE: property_readwrite = true; break;
29477 case RID_RETAIN: property_retain = true; break;
29478
29479 case RID_GETTER:
29480 case RID_SETTER:
29481 if (cp_lexer_next_token_is_not (parser->lexer, CPP_EQ))
29482 {
29483 if (keyword == RID_GETTER)
29484 cp_parser_error (parser,
29485 "missing %<=%> (after %<getter%> attribute)");
29486 else
29487 cp_parser_error (parser,
29488 "missing %<=%> (after %<setter%> attribute)");
29489 syntax_error = true;
29490 break;
29491 }
29492 cp_lexer_consume_token (parser->lexer); /* eat the = */
29493 if (!cp_parser_objc_selector_p (cp_lexer_peek_token (parser->lexer)->type))
29494 {
29495 cp_parser_error (parser, "expected identifier");
29496 syntax_error = true;
29497 break;
29498 }
29499 if (keyword == RID_SETTER)
29500 {
29501 if (property_setter_ident != NULL_TREE)
29502 {
29503 cp_parser_error (parser, "the %<setter%> attribute may only be specified once");
29504 cp_lexer_consume_token (parser->lexer);
29505 }
29506 else
29507 property_setter_ident = cp_parser_objc_selector (parser);
29508 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COLON))
29509 cp_parser_error (parser, "setter name must terminate with %<:%>");
29510 else
29511 cp_lexer_consume_token (parser->lexer);
29512 }
29513 else
29514 {
29515 if (property_getter_ident != NULL_TREE)
29516 {
29517 cp_parser_error (parser, "the %<getter%> attribute may only be specified once");
29518 cp_lexer_consume_token (parser->lexer);
29519 }
29520 else
29521 property_getter_ident = cp_parser_objc_selector (parser);
29522 }
29523 break;
29524 default:
29525 cp_parser_error (parser, "unknown property attribute");
29526 syntax_error = true;
29527 break;
29528 }
29529
29530 if (syntax_error)
29531 break;
29532
29533 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
29534 cp_lexer_consume_token (parser->lexer);
29535 else
29536 break;
29537 }
29538
29539 /* FIXME: "@property (setter, assign);" will generate a spurious
29540 "error: expected ‘)’ before ‘,’ token". This is because
29541 cp_parser_require, unlike the C counterpart, will produce an
29542 error even if we are in error recovery. */
29543 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
29544 {
29545 cp_parser_skip_to_closing_parenthesis (parser,
29546 /*recovering=*/true,
29547 /*or_comma=*/false,
29548 /*consume_paren=*/true);
29549 }
29550 }
29551
29552 /* ... and the property declaration(s). */
29553 properties = cp_parser_objc_struct_declaration (parser);
29554
29555 if (properties == error_mark_node)
29556 {
29557 cp_parser_skip_to_end_of_statement (parser);
29558 /* If the next token is now a `;', consume it. */
29559 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
29560 cp_lexer_consume_token (parser->lexer);
29561 return;
29562 }
29563
29564 if (properties == NULL_TREE)
29565 cp_parser_error (parser, "expected identifier");
29566 else
29567 {
29568 /* Comma-separated properties are chained together in
29569 reverse order; add them one by one. */
29570 properties = nreverse (properties);
29571
29572 for (; properties; properties = TREE_CHAIN (properties))
29573 objc_add_property_declaration (loc, copy_node (properties),
29574 property_readonly, property_readwrite,
29575 property_assign, property_retain,
29576 property_copy, property_nonatomic,
29577 property_getter_ident, property_setter_ident);
29578 }
29579
29580 cp_parser_consume_semicolon_at_end_of_statement (parser);
29581 }
29582
29583 /* Parse an Objective-C++ @synthesize declaration. The syntax is:
29584
29585 objc-synthesize-declaration:
29586 @synthesize objc-synthesize-identifier-list ;
29587
29588 objc-synthesize-identifier-list:
29589 objc-synthesize-identifier
29590 objc-synthesize-identifier-list, objc-synthesize-identifier
29591
29592 objc-synthesize-identifier
29593 identifier
29594 identifier = identifier
29595
29596 For example:
29597 @synthesize MyProperty;
29598 @synthesize OneProperty, AnotherProperty=MyIvar, YetAnotherProperty;
29599
29600 PS: This function is identical to c_parser_objc_at_synthesize_declaration
29601 for C. Keep them in sync.
29602 */
29603 static void
29604 cp_parser_objc_at_synthesize_declaration (cp_parser *parser)
29605 {
29606 tree list = NULL_TREE;
29607 location_t loc;
29608 loc = cp_lexer_peek_token (parser->lexer)->location;
29609
29610 cp_lexer_consume_token (parser->lexer); /* Eat '@synthesize'. */
29611 while (true)
29612 {
29613 tree property, ivar;
29614 property = cp_parser_identifier (parser);
29615 if (property == error_mark_node)
29616 {
29617 cp_parser_consume_semicolon_at_end_of_statement (parser);
29618 return;
29619 }
29620 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
29621 {
29622 cp_lexer_consume_token (parser->lexer);
29623 ivar = cp_parser_identifier (parser);
29624 if (ivar == error_mark_node)
29625 {
29626 cp_parser_consume_semicolon_at_end_of_statement (parser);
29627 return;
29628 }
29629 }
29630 else
29631 ivar = NULL_TREE;
29632 list = chainon (list, build_tree_list (ivar, property));
29633 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
29634 cp_lexer_consume_token (parser->lexer);
29635 else
29636 break;
29637 }
29638 cp_parser_consume_semicolon_at_end_of_statement (parser);
29639 objc_add_synthesize_declaration (loc, list);
29640 }
29641
29642 /* Parse an Objective-C++ @dynamic declaration. The syntax is:
29643
29644 objc-dynamic-declaration:
29645 @dynamic identifier-list ;
29646
29647 For example:
29648 @dynamic MyProperty;
29649 @dynamic MyProperty, AnotherProperty;
29650
29651 PS: This function is identical to c_parser_objc_at_dynamic_declaration
29652 for C. Keep them in sync.
29653 */
29654 static void
29655 cp_parser_objc_at_dynamic_declaration (cp_parser *parser)
29656 {
29657 tree list = NULL_TREE;
29658 location_t loc;
29659 loc = cp_lexer_peek_token (parser->lexer)->location;
29660
29661 cp_lexer_consume_token (parser->lexer); /* Eat '@dynamic'. */
29662 while (true)
29663 {
29664 tree property;
29665 property = cp_parser_identifier (parser);
29666 if (property == error_mark_node)
29667 {
29668 cp_parser_consume_semicolon_at_end_of_statement (parser);
29669 return;
29670 }
29671 list = chainon (list, build_tree_list (NULL, property));
29672 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
29673 cp_lexer_consume_token (parser->lexer);
29674 else
29675 break;
29676 }
29677 cp_parser_consume_semicolon_at_end_of_statement (parser);
29678 objc_add_dynamic_declaration (loc, list);
29679 }
29680
29681 \f
29682 /* OpenMP 2.5 / 3.0 / 3.1 / 4.0 parsing routines. */
29683
29684 /* Returns name of the next clause.
29685 If the clause is not recognized PRAGMA_OMP_CLAUSE_NONE is returned and
29686 the token is not consumed. Otherwise appropriate pragma_omp_clause is
29687 returned and the token is consumed. */
29688
29689 static pragma_omp_clause
29690 cp_parser_omp_clause_name (cp_parser *parser)
29691 {
29692 pragma_omp_clause result = PRAGMA_OMP_CLAUSE_NONE;
29693
29694 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_AUTO))
29695 result = PRAGMA_OACC_CLAUSE_AUTO;
29696 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_IF))
29697 result = PRAGMA_OMP_CLAUSE_IF;
29698 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_DEFAULT))
29699 result = PRAGMA_OMP_CLAUSE_DEFAULT;
29700 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_DELETE))
29701 result = PRAGMA_OACC_CLAUSE_DELETE;
29702 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_PRIVATE))
29703 result = PRAGMA_OMP_CLAUSE_PRIVATE;
29704 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_FOR))
29705 result = PRAGMA_OMP_CLAUSE_FOR;
29706 else if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
29707 {
29708 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
29709 const char *p = IDENTIFIER_POINTER (id);
29710
29711 switch (p[0])
29712 {
29713 case 'a':
29714 if (!strcmp ("aligned", p))
29715 result = PRAGMA_OMP_CLAUSE_ALIGNED;
29716 else if (!strcmp ("async", p))
29717 result = PRAGMA_OACC_CLAUSE_ASYNC;
29718 break;
29719 case 'c':
29720 if (!strcmp ("collapse", p))
29721 result = PRAGMA_OMP_CLAUSE_COLLAPSE;
29722 else if (!strcmp ("copy", p))
29723 result = PRAGMA_OACC_CLAUSE_COPY;
29724 else if (!strcmp ("copyin", p))
29725 result = PRAGMA_OMP_CLAUSE_COPYIN;
29726 else if (!strcmp ("copyout", p))
29727 result = PRAGMA_OACC_CLAUSE_COPYOUT;
29728 else if (!strcmp ("copyprivate", p))
29729 result = PRAGMA_OMP_CLAUSE_COPYPRIVATE;
29730 else if (!strcmp ("create", p))
29731 result = PRAGMA_OACC_CLAUSE_CREATE;
29732 break;
29733 case 'd':
29734 if (!strcmp ("defaultmap", p))
29735 result = PRAGMA_OMP_CLAUSE_DEFAULTMAP;
29736 else if (!strcmp ("depend", p))
29737 result = PRAGMA_OMP_CLAUSE_DEPEND;
29738 else if (!strcmp ("device", p))
29739 result = PRAGMA_OMP_CLAUSE_DEVICE;
29740 else if (!strcmp ("deviceptr", p))
29741 result = PRAGMA_OACC_CLAUSE_DEVICEPTR;
29742 else if (!strcmp ("device_resident", p))
29743 result = PRAGMA_OACC_CLAUSE_DEVICE_RESIDENT;
29744 else if (!strcmp ("dist_schedule", p))
29745 result = PRAGMA_OMP_CLAUSE_DIST_SCHEDULE;
29746 break;
29747 case 'f':
29748 if (!strcmp ("final", p))
29749 result = PRAGMA_OMP_CLAUSE_FINAL;
29750 else if (!strcmp ("firstprivate", p))
29751 result = PRAGMA_OMP_CLAUSE_FIRSTPRIVATE;
29752 else if (!strcmp ("from", p))
29753 result = PRAGMA_OMP_CLAUSE_FROM;
29754 break;
29755 case 'g':
29756 if (!strcmp ("gang", p))
29757 result = PRAGMA_OACC_CLAUSE_GANG;
29758 else if (!strcmp ("grainsize", p))
29759 result = PRAGMA_OMP_CLAUSE_GRAINSIZE;
29760 break;
29761 case 'h':
29762 if (!strcmp ("hint", p))
29763 result = PRAGMA_OMP_CLAUSE_HINT;
29764 else if (!strcmp ("host", p))
29765 result = PRAGMA_OACC_CLAUSE_HOST;
29766 break;
29767 case 'i':
29768 if (!strcmp ("inbranch", p))
29769 result = PRAGMA_OMP_CLAUSE_INBRANCH;
29770 else if (!strcmp ("independent", p))
29771 result = PRAGMA_OACC_CLAUSE_INDEPENDENT;
29772 else if (!strcmp ("is_device_ptr", p))
29773 result = PRAGMA_OMP_CLAUSE_IS_DEVICE_PTR;
29774 break;
29775 case 'l':
29776 if (!strcmp ("lastprivate", p))
29777 result = PRAGMA_OMP_CLAUSE_LASTPRIVATE;
29778 else if (!strcmp ("linear", p))
29779 result = PRAGMA_OMP_CLAUSE_LINEAR;
29780 else if (!strcmp ("link", p))
29781 result = PRAGMA_OMP_CLAUSE_LINK;
29782 break;
29783 case 'm':
29784 if (!strcmp ("map", p))
29785 result = PRAGMA_OMP_CLAUSE_MAP;
29786 else if (!strcmp ("mergeable", p))
29787 result = PRAGMA_OMP_CLAUSE_MERGEABLE;
29788 else if (flag_cilkplus && !strcmp ("mask", p))
29789 result = PRAGMA_CILK_CLAUSE_MASK;
29790 break;
29791 case 'n':
29792 if (!strcmp ("nogroup", p))
29793 result = PRAGMA_OMP_CLAUSE_NOGROUP;
29794 else if (!strcmp ("notinbranch", p))
29795 result = PRAGMA_OMP_CLAUSE_NOTINBRANCH;
29796 else if (!strcmp ("nowait", p))
29797 result = PRAGMA_OMP_CLAUSE_NOWAIT;
29798 else if (flag_cilkplus && !strcmp ("nomask", p))
29799 result = PRAGMA_CILK_CLAUSE_NOMASK;
29800 else if (!strcmp ("num_gangs", p))
29801 result = PRAGMA_OACC_CLAUSE_NUM_GANGS;
29802 else if (!strcmp ("num_tasks", p))
29803 result = PRAGMA_OMP_CLAUSE_NUM_TASKS;
29804 else if (!strcmp ("num_teams", p))
29805 result = PRAGMA_OMP_CLAUSE_NUM_TEAMS;
29806 else if (!strcmp ("num_threads", p))
29807 result = PRAGMA_OMP_CLAUSE_NUM_THREADS;
29808 else if (!strcmp ("num_workers", p))
29809 result = PRAGMA_OACC_CLAUSE_NUM_WORKERS;
29810 break;
29811 case 'o':
29812 if (!strcmp ("ordered", p))
29813 result = PRAGMA_OMP_CLAUSE_ORDERED;
29814 break;
29815 case 'p':
29816 if (!strcmp ("parallel", p))
29817 result = PRAGMA_OMP_CLAUSE_PARALLEL;
29818 else if (!strcmp ("present", p))
29819 result = PRAGMA_OACC_CLAUSE_PRESENT;
29820 else if (!strcmp ("present_or_copy", p)
29821 || !strcmp ("pcopy", p))
29822 result = PRAGMA_OACC_CLAUSE_PRESENT_OR_COPY;
29823 else if (!strcmp ("present_or_copyin", p)
29824 || !strcmp ("pcopyin", p))
29825 result = PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN;
29826 else if (!strcmp ("present_or_copyout", p)
29827 || !strcmp ("pcopyout", p))
29828 result = PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYOUT;
29829 else if (!strcmp ("present_or_create", p)
29830 || !strcmp ("pcreate", p))
29831 result = PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE;
29832 else if (!strcmp ("priority", p))
29833 result = PRAGMA_OMP_CLAUSE_PRIORITY;
29834 else if (!strcmp ("proc_bind", p))
29835 result = PRAGMA_OMP_CLAUSE_PROC_BIND;
29836 break;
29837 case 'r':
29838 if (!strcmp ("reduction", p))
29839 result = PRAGMA_OMP_CLAUSE_REDUCTION;
29840 break;
29841 case 's':
29842 if (!strcmp ("safelen", p))
29843 result = PRAGMA_OMP_CLAUSE_SAFELEN;
29844 else if (!strcmp ("schedule", p))
29845 result = PRAGMA_OMP_CLAUSE_SCHEDULE;
29846 else if (!strcmp ("sections", p))
29847 result = PRAGMA_OMP_CLAUSE_SECTIONS;
29848 else if (!strcmp ("self", p))
29849 result = PRAGMA_OACC_CLAUSE_SELF;
29850 else if (!strcmp ("seq", p))
29851 result = PRAGMA_OACC_CLAUSE_SEQ;
29852 else if (!strcmp ("shared", p))
29853 result = PRAGMA_OMP_CLAUSE_SHARED;
29854 else if (!strcmp ("simd", p))
29855 result = PRAGMA_OMP_CLAUSE_SIMD;
29856 else if (!strcmp ("simdlen", p))
29857 result = PRAGMA_OMP_CLAUSE_SIMDLEN;
29858 break;
29859 case 't':
29860 if (!strcmp ("taskgroup", p))
29861 result = PRAGMA_OMP_CLAUSE_TASKGROUP;
29862 else if (!strcmp ("thread_limit", p))
29863 result = PRAGMA_OMP_CLAUSE_THREAD_LIMIT;
29864 else if (!strcmp ("threads", p))
29865 result = PRAGMA_OMP_CLAUSE_THREADS;
29866 else if (!strcmp ("tile", p))
29867 result = PRAGMA_OACC_CLAUSE_TILE;
29868 else if (!strcmp ("to", p))
29869 result = PRAGMA_OMP_CLAUSE_TO;
29870 break;
29871 case 'u':
29872 if (!strcmp ("uniform", p))
29873 result = PRAGMA_OMP_CLAUSE_UNIFORM;
29874 else if (!strcmp ("untied", p))
29875 result = PRAGMA_OMP_CLAUSE_UNTIED;
29876 else if (!strcmp ("use_device", p))
29877 result = PRAGMA_OACC_CLAUSE_USE_DEVICE;
29878 else if (!strcmp ("use_device_ptr", p))
29879 result = PRAGMA_OMP_CLAUSE_USE_DEVICE_PTR;
29880 break;
29881 case 'v':
29882 if (!strcmp ("vector", p))
29883 result = PRAGMA_OACC_CLAUSE_VECTOR;
29884 else if (!strcmp ("vector_length", p))
29885 result = PRAGMA_OACC_CLAUSE_VECTOR_LENGTH;
29886 else if (flag_cilkplus && !strcmp ("vectorlength", p))
29887 result = PRAGMA_CILK_CLAUSE_VECTORLENGTH;
29888 break;
29889 case 'w':
29890 if (!strcmp ("wait", p))
29891 result = PRAGMA_OACC_CLAUSE_WAIT;
29892 else if (!strcmp ("worker", p))
29893 result = PRAGMA_OACC_CLAUSE_WORKER;
29894 break;
29895 }
29896 }
29897
29898 if (result != PRAGMA_OMP_CLAUSE_NONE)
29899 cp_lexer_consume_token (parser->lexer);
29900
29901 return result;
29902 }
29903
29904 /* Validate that a clause of the given type does not already exist. */
29905
29906 static void
29907 check_no_duplicate_clause (tree clauses, enum omp_clause_code code,
29908 const char *name, location_t location)
29909 {
29910 tree c;
29911
29912 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
29913 if (OMP_CLAUSE_CODE (c) == code)
29914 {
29915 error_at (location, "too many %qs clauses", name);
29916 break;
29917 }
29918 }
29919
29920 /* OpenMP 2.5:
29921 variable-list:
29922 identifier
29923 variable-list , identifier
29924
29925 In addition, we match a closing parenthesis (or, if COLON is non-NULL,
29926 colon). An opening parenthesis will have been consumed by the caller.
29927
29928 If KIND is nonzero, create the appropriate node and install the decl
29929 in OMP_CLAUSE_DECL and add the node to the head of the list.
29930
29931 If KIND is zero, create a TREE_LIST with the decl in TREE_PURPOSE;
29932 return the list created.
29933
29934 COLON can be NULL if only closing parenthesis should end the list,
29935 or pointer to bool which will receive false if the list is terminated
29936 by closing parenthesis or true if the list is terminated by colon. */
29937
29938 static tree
29939 cp_parser_omp_var_list_no_open (cp_parser *parser, enum omp_clause_code kind,
29940 tree list, bool *colon)
29941 {
29942 cp_token *token;
29943 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
29944 if (colon)
29945 {
29946 parser->colon_corrects_to_scope_p = false;
29947 *colon = false;
29948 }
29949 while (1)
29950 {
29951 tree name, decl;
29952
29953 token = cp_lexer_peek_token (parser->lexer);
29954 if (kind != 0
29955 && current_class_ptr
29956 && cp_parser_is_keyword (token, RID_THIS))
29957 {
29958 decl = finish_this_expr ();
29959 if (TREE_CODE (decl) == NON_LVALUE_EXPR
29960 || CONVERT_EXPR_P (decl))
29961 decl = TREE_OPERAND (decl, 0);
29962 cp_lexer_consume_token (parser->lexer);
29963 }
29964 else
29965 {
29966 name = cp_parser_id_expression (parser, /*template_p=*/false,
29967 /*check_dependency_p=*/true,
29968 /*template_p=*/NULL,
29969 /*declarator_p=*/false,
29970 /*optional_p=*/false);
29971 if (name == error_mark_node)
29972 goto skip_comma;
29973
29974 decl = cp_parser_lookup_name_simple (parser, name, token->location);
29975 if (decl == error_mark_node)
29976 cp_parser_name_lookup_error (parser, name, decl, NLE_NULL,
29977 token->location);
29978 }
29979 if (decl == error_mark_node)
29980 ;
29981 else if (kind != 0)
29982 {
29983 switch (kind)
29984 {
29985 case OMP_CLAUSE__CACHE_:
29986 if (cp_lexer_peek_token (parser->lexer)->type != CPP_OPEN_SQUARE)
29987 {
29988 error_at (token->location, "expected %<[%>");
29989 decl = error_mark_node;
29990 break;
29991 }
29992 /* FALLTHROUGH. */
29993 case OMP_CLAUSE_MAP:
29994 case OMP_CLAUSE_FROM:
29995 case OMP_CLAUSE_TO:
29996 while (cp_lexer_next_token_is (parser->lexer, CPP_DOT))
29997 {
29998 location_t loc
29999 = cp_lexer_peek_token (parser->lexer)->location;
30000 cp_id_kind idk = CP_ID_KIND_NONE;
30001 cp_lexer_consume_token (parser->lexer);
30002 decl
30003 = cp_parser_postfix_dot_deref_expression (parser, CPP_DOT,
30004 decl, false,
30005 &idk, loc);
30006 }
30007 /* FALLTHROUGH. */
30008 case OMP_CLAUSE_DEPEND:
30009 case OMP_CLAUSE_REDUCTION:
30010 while (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
30011 {
30012 tree low_bound = NULL_TREE, length = NULL_TREE;
30013
30014 parser->colon_corrects_to_scope_p = false;
30015 cp_lexer_consume_token (parser->lexer);
30016 if (!cp_lexer_next_token_is (parser->lexer, CPP_COLON))
30017 low_bound = cp_parser_expression (parser);
30018 if (!colon)
30019 parser->colon_corrects_to_scope_p
30020 = saved_colon_corrects_to_scope_p;
30021 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_SQUARE))
30022 length = integer_one_node;
30023 else
30024 {
30025 /* Look for `:'. */
30026 if (!cp_parser_require (parser, CPP_COLON, RT_COLON))
30027 goto skip_comma;
30028 if (!cp_lexer_next_token_is (parser->lexer,
30029 CPP_CLOSE_SQUARE))
30030 length = cp_parser_expression (parser);
30031 }
30032 /* Look for the closing `]'. */
30033 if (!cp_parser_require (parser, CPP_CLOSE_SQUARE,
30034 RT_CLOSE_SQUARE))
30035 goto skip_comma;
30036
30037 if (kind == OMP_CLAUSE__CACHE_)
30038 {
30039 if (TREE_CODE (low_bound) != INTEGER_CST
30040 && !TREE_READONLY (low_bound))
30041 {
30042 error_at (token->location,
30043 "%qD is not a constant", low_bound);
30044 decl = error_mark_node;
30045 }
30046
30047 if (TREE_CODE (length) != INTEGER_CST
30048 && !TREE_READONLY (length))
30049 {
30050 error_at (token->location,
30051 "%qD is not a constant", length);
30052 decl = error_mark_node;
30053 }
30054 }
30055
30056 decl = tree_cons (low_bound, length, decl);
30057 }
30058 break;
30059 default:
30060 break;
30061 }
30062
30063 tree u = build_omp_clause (token->location, kind);
30064 OMP_CLAUSE_DECL (u) = decl;
30065 OMP_CLAUSE_CHAIN (u) = list;
30066 list = u;
30067 }
30068 else
30069 list = tree_cons (decl, NULL_TREE, list);
30070
30071 get_comma:
30072 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
30073 break;
30074 cp_lexer_consume_token (parser->lexer);
30075 }
30076
30077 if (colon)
30078 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
30079
30080 if (colon != NULL && cp_lexer_next_token_is (parser->lexer, CPP_COLON))
30081 {
30082 *colon = true;
30083 cp_parser_require (parser, CPP_COLON, RT_COLON);
30084 return list;
30085 }
30086
30087 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30088 {
30089 int ending;
30090
30091 /* Try to resync to an unnested comma. Copied from
30092 cp_parser_parenthesized_expression_list. */
30093 skip_comma:
30094 if (colon)
30095 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
30096 ending = cp_parser_skip_to_closing_parenthesis (parser,
30097 /*recovering=*/true,
30098 /*or_comma=*/true,
30099 /*consume_paren=*/true);
30100 if (ending < 0)
30101 goto get_comma;
30102 }
30103
30104 return list;
30105 }
30106
30107 /* Similarly, but expect leading and trailing parenthesis. This is a very
30108 common case for omp clauses. */
30109
30110 static tree
30111 cp_parser_omp_var_list (cp_parser *parser, enum omp_clause_code kind, tree list)
30112 {
30113 if (cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30114 return cp_parser_omp_var_list_no_open (parser, kind, list, NULL);
30115 return list;
30116 }
30117
30118 /* OpenACC 2.0:
30119 copy ( variable-list )
30120 copyin ( variable-list )
30121 copyout ( variable-list )
30122 create ( variable-list )
30123 delete ( variable-list )
30124 present ( variable-list )
30125 present_or_copy ( variable-list )
30126 pcopy ( variable-list )
30127 present_or_copyin ( variable-list )
30128 pcopyin ( variable-list )
30129 present_or_copyout ( variable-list )
30130 pcopyout ( variable-list )
30131 present_or_create ( variable-list )
30132 pcreate ( variable-list ) */
30133
30134 static tree
30135 cp_parser_oacc_data_clause (cp_parser *parser, pragma_omp_clause c_kind,
30136 tree list)
30137 {
30138 enum gomp_map_kind kind;
30139 switch (c_kind)
30140 {
30141 case PRAGMA_OACC_CLAUSE_COPY:
30142 kind = GOMP_MAP_FORCE_TOFROM;
30143 break;
30144 case PRAGMA_OACC_CLAUSE_COPYIN:
30145 kind = GOMP_MAP_FORCE_TO;
30146 break;
30147 case PRAGMA_OACC_CLAUSE_COPYOUT:
30148 kind = GOMP_MAP_FORCE_FROM;
30149 break;
30150 case PRAGMA_OACC_CLAUSE_CREATE:
30151 kind = GOMP_MAP_FORCE_ALLOC;
30152 break;
30153 case PRAGMA_OACC_CLAUSE_DELETE:
30154 kind = GOMP_MAP_DELETE;
30155 break;
30156 case PRAGMA_OACC_CLAUSE_DEVICE:
30157 kind = GOMP_MAP_FORCE_TO;
30158 break;
30159 case PRAGMA_OACC_CLAUSE_DEVICE_RESIDENT:
30160 kind = GOMP_MAP_DEVICE_RESIDENT;
30161 break;
30162 case PRAGMA_OACC_CLAUSE_HOST:
30163 case PRAGMA_OACC_CLAUSE_SELF:
30164 kind = GOMP_MAP_FORCE_FROM;
30165 break;
30166 case PRAGMA_OACC_CLAUSE_LINK:
30167 kind = GOMP_MAP_LINK;
30168 break;
30169 case PRAGMA_OACC_CLAUSE_PRESENT:
30170 kind = GOMP_MAP_FORCE_PRESENT;
30171 break;
30172 case PRAGMA_OACC_CLAUSE_PRESENT_OR_COPY:
30173 kind = GOMP_MAP_TOFROM;
30174 break;
30175 case PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN:
30176 kind = GOMP_MAP_TO;
30177 break;
30178 case PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYOUT:
30179 kind = GOMP_MAP_FROM;
30180 break;
30181 case PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE:
30182 kind = GOMP_MAP_ALLOC;
30183 break;
30184 default:
30185 gcc_unreachable ();
30186 }
30187 tree nl, c;
30188 nl = cp_parser_omp_var_list (parser, OMP_CLAUSE_MAP, list);
30189
30190 for (c = nl; c != list; c = OMP_CLAUSE_CHAIN (c))
30191 OMP_CLAUSE_SET_MAP_KIND (c, kind);
30192
30193 return nl;
30194 }
30195
30196 /* OpenACC 2.0:
30197 deviceptr ( variable-list ) */
30198
30199 static tree
30200 cp_parser_oacc_data_clause_deviceptr (cp_parser *parser, tree list)
30201 {
30202 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
30203 tree vars, t;
30204
30205 /* Can't use OMP_CLAUSE_MAP here (that is, can't use the generic
30206 cp_parser_oacc_data_clause), as for PRAGMA_OACC_CLAUSE_DEVICEPTR,
30207 variable-list must only allow for pointer variables. */
30208 vars = cp_parser_omp_var_list (parser, OMP_CLAUSE_ERROR, NULL);
30209 for (t = vars; t; t = TREE_CHAIN (t))
30210 {
30211 tree v = TREE_PURPOSE (t);
30212 tree u = build_omp_clause (loc, OMP_CLAUSE_MAP);
30213 OMP_CLAUSE_SET_MAP_KIND (u, GOMP_MAP_FORCE_DEVICEPTR);
30214 OMP_CLAUSE_DECL (u) = v;
30215 OMP_CLAUSE_CHAIN (u) = list;
30216 list = u;
30217 }
30218
30219 return list;
30220 }
30221
30222 /* OpenACC 2.0:
30223 auto
30224 independent
30225 nohost
30226 seq */
30227
30228 static tree
30229 cp_parser_oacc_simple_clause (cp_parser * /* parser */,
30230 enum omp_clause_code code,
30231 tree list, location_t location)
30232 {
30233 check_no_duplicate_clause (list, code, omp_clause_code_name[code], location);
30234 tree c = build_omp_clause (location, code);
30235 OMP_CLAUSE_CHAIN (c) = list;
30236 return c;
30237 }
30238
30239 /* OpenACC:
30240 num_gangs ( expression )
30241 num_workers ( expression )
30242 vector_length ( expression ) */
30243
30244 static tree
30245 cp_parser_oacc_single_int_clause (cp_parser *parser, omp_clause_code code,
30246 const char *str, tree list)
30247 {
30248 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
30249
30250 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30251 return list;
30252
30253 tree t = cp_parser_assignment_expression (parser, NULL, false, false);
30254
30255 if (t == error_mark_node
30256 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30257 {
30258 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
30259 /*or_comma=*/false,
30260 /*consume_paren=*/true);
30261 return list;
30262 }
30263
30264 check_no_duplicate_clause (list, code, str, loc);
30265
30266 tree c = build_omp_clause (loc, code);
30267 OMP_CLAUSE_OPERAND (c, 0) = t;
30268 OMP_CLAUSE_CHAIN (c) = list;
30269 return c;
30270 }
30271
30272 /* OpenACC:
30273
30274 gang [( gang-arg-list )]
30275 worker [( [num:] int-expr )]
30276 vector [( [length:] int-expr )]
30277
30278 where gang-arg is one of:
30279
30280 [num:] int-expr
30281 static: size-expr
30282
30283 and size-expr may be:
30284
30285 *
30286 int-expr
30287 */
30288
30289 static tree
30290 cp_parser_oacc_shape_clause (cp_parser *parser, omp_clause_code kind,
30291 const char *str, tree list)
30292 {
30293 const char *id = "num";
30294 cp_lexer *lexer = parser->lexer;
30295 tree ops[2] = { NULL_TREE, NULL_TREE }, c;
30296 location_t loc = cp_lexer_peek_token (lexer)->location;
30297
30298 if (kind == OMP_CLAUSE_VECTOR)
30299 id = "length";
30300
30301 if (cp_lexer_next_token_is (lexer, CPP_OPEN_PAREN))
30302 {
30303 cp_lexer_consume_token (lexer);
30304
30305 do
30306 {
30307 cp_token *next = cp_lexer_peek_token (lexer);
30308 int idx = 0;
30309
30310 /* Gang static argument. */
30311 if (kind == OMP_CLAUSE_GANG
30312 && cp_lexer_next_token_is_keyword (lexer, RID_STATIC))
30313 {
30314 cp_lexer_consume_token (lexer);
30315
30316 if (!cp_parser_require (parser, CPP_COLON, RT_COLON))
30317 goto cleanup_error;
30318
30319 idx = 1;
30320 if (ops[idx] != NULL)
30321 {
30322 cp_parser_error (parser, "too many %<static%> arguments");
30323 goto cleanup_error;
30324 }
30325
30326 /* Check for the '*' argument. */
30327 if (cp_lexer_next_token_is (lexer, CPP_MULT)
30328 && (cp_lexer_nth_token_is (parser->lexer, 2, CPP_COMMA)
30329 || cp_lexer_nth_token_is (parser->lexer, 2,
30330 CPP_CLOSE_PAREN)))
30331 {
30332 cp_lexer_consume_token (lexer);
30333 ops[idx] = integer_minus_one_node;
30334
30335 if (cp_lexer_next_token_is (lexer, CPP_COMMA))
30336 {
30337 cp_lexer_consume_token (lexer);
30338 continue;
30339 }
30340 else break;
30341 }
30342 }
30343 /* Worker num: argument and vector length: arguments. */
30344 else if (cp_lexer_next_token_is (lexer, CPP_NAME)
30345 && strcmp (id, IDENTIFIER_POINTER (next->u.value)) == 0
30346 && cp_lexer_nth_token_is (lexer, 2, CPP_COLON))
30347 {
30348 cp_lexer_consume_token (lexer); /* id */
30349 cp_lexer_consume_token (lexer); /* ':' */
30350 }
30351
30352 /* Now collect the actual argument. */
30353 if (ops[idx] != NULL_TREE)
30354 {
30355 cp_parser_error (parser, "unexpected argument");
30356 goto cleanup_error;
30357 }
30358
30359 tree expr = cp_parser_assignment_expression (parser, NULL, false,
30360 false);
30361 if (expr == error_mark_node)
30362 goto cleanup_error;
30363
30364 mark_exp_read (expr);
30365 ops[idx] = expr;
30366
30367 if (kind == OMP_CLAUSE_GANG
30368 && cp_lexer_next_token_is (lexer, CPP_COMMA))
30369 {
30370 cp_lexer_consume_token (lexer);
30371 continue;
30372 }
30373 break;
30374 }
30375 while (1);
30376
30377 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30378 goto cleanup_error;
30379 }
30380
30381 check_no_duplicate_clause (list, kind, str, loc);
30382
30383 c = build_omp_clause (loc, kind);
30384
30385 if (ops[1])
30386 OMP_CLAUSE_OPERAND (c, 1) = ops[1];
30387
30388 OMP_CLAUSE_OPERAND (c, 0) = ops[0];
30389 OMP_CLAUSE_CHAIN (c) = list;
30390
30391 return c;
30392
30393 cleanup_error:
30394 cp_parser_skip_to_closing_parenthesis (parser, false, false, true);
30395 return list;
30396 }
30397
30398 /* OpenACC 2.0:
30399 tile ( size-expr-list ) */
30400
30401 static tree
30402 cp_parser_oacc_clause_tile (cp_parser *parser, location_t clause_loc, tree list)
30403 {
30404 tree c, expr = error_mark_node;
30405 tree tile = NULL_TREE;
30406
30407 check_no_duplicate_clause (list, OMP_CLAUSE_TILE, "tile", clause_loc);
30408
30409 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30410 return list;
30411
30412 do
30413 {
30414 if (cp_lexer_next_token_is (parser->lexer, CPP_MULT)
30415 && (cp_lexer_nth_token_is (parser->lexer, 2, CPP_COMMA)
30416 || cp_lexer_nth_token_is (parser->lexer, 2, CPP_CLOSE_PAREN)))
30417 {
30418 cp_lexer_consume_token (parser->lexer);
30419 expr = integer_minus_one_node;
30420 }
30421 else
30422 expr = cp_parser_assignment_expression (parser, NULL, false, false);
30423
30424 if (expr == error_mark_node)
30425 return list;
30426
30427 tile = tree_cons (NULL_TREE, expr, tile);
30428
30429 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
30430 cp_lexer_consume_token (parser->lexer);
30431 }
30432 while (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN));
30433
30434 /* Consume the trailing ')'. */
30435 cp_lexer_consume_token (parser->lexer);
30436
30437 c = build_omp_clause (clause_loc, OMP_CLAUSE_TILE);
30438 tile = nreverse (tile);
30439 OMP_CLAUSE_TILE_LIST (c) = tile;
30440 OMP_CLAUSE_CHAIN (c) = list;
30441 return c;
30442 }
30443
30444 /* OpenACC 2.0
30445 Parse wait clause or directive parameters. */
30446
30447 static tree
30448 cp_parser_oacc_wait_list (cp_parser *parser, location_t clause_loc, tree list)
30449 {
30450 vec<tree, va_gc> *args;
30451 tree t, args_tree;
30452
30453 args = cp_parser_parenthesized_expression_list (parser, non_attr,
30454 /*cast_p=*/false,
30455 /*allow_expansion_p=*/true,
30456 /*non_constant_p=*/NULL);
30457
30458 if (args == NULL || args->length () == 0)
30459 {
30460 cp_parser_error (parser, "expected integer expression before ')'");
30461 if (args != NULL)
30462 release_tree_vector (args);
30463 return list;
30464 }
30465
30466 args_tree = build_tree_list_vec (args);
30467
30468 release_tree_vector (args);
30469
30470 for (t = args_tree; t; t = TREE_CHAIN (t))
30471 {
30472 tree targ = TREE_VALUE (t);
30473
30474 if (targ != error_mark_node)
30475 {
30476 if (!INTEGRAL_TYPE_P (TREE_TYPE (targ)))
30477 error ("%<wait%> expression must be integral");
30478 else
30479 {
30480 tree c = build_omp_clause (clause_loc, OMP_CLAUSE_WAIT);
30481
30482 mark_rvalue_use (targ);
30483 OMP_CLAUSE_DECL (c) = targ;
30484 OMP_CLAUSE_CHAIN (c) = list;
30485 list = c;
30486 }
30487 }
30488 }
30489
30490 return list;
30491 }
30492
30493 /* OpenACC:
30494 wait ( int-expr-list ) */
30495
30496 static tree
30497 cp_parser_oacc_clause_wait (cp_parser *parser, tree list)
30498 {
30499 location_t location = cp_lexer_peek_token (parser->lexer)->location;
30500
30501 if (cp_lexer_peek_token (parser->lexer)->type != CPP_OPEN_PAREN)
30502 return list;
30503
30504 list = cp_parser_oacc_wait_list (parser, location, list);
30505
30506 return list;
30507 }
30508
30509 /* OpenMP 3.0:
30510 collapse ( constant-expression ) */
30511
30512 static tree
30513 cp_parser_omp_clause_collapse (cp_parser *parser, tree list, location_t location)
30514 {
30515 tree c, num;
30516 location_t loc;
30517 HOST_WIDE_INT n;
30518
30519 loc = cp_lexer_peek_token (parser->lexer)->location;
30520 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30521 return list;
30522
30523 num = cp_parser_constant_expression (parser);
30524
30525 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30526 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
30527 /*or_comma=*/false,
30528 /*consume_paren=*/true);
30529
30530 if (num == error_mark_node)
30531 return list;
30532 num = fold_non_dependent_expr (num);
30533 if (!tree_fits_shwi_p (num)
30534 || !INTEGRAL_TYPE_P (TREE_TYPE (num))
30535 || (n = tree_to_shwi (num)) <= 0
30536 || (int) n != n)
30537 {
30538 error_at (loc, "collapse argument needs positive constant integer expression");
30539 return list;
30540 }
30541
30542 check_no_duplicate_clause (list, OMP_CLAUSE_COLLAPSE, "collapse", location);
30543 c = build_omp_clause (loc, OMP_CLAUSE_COLLAPSE);
30544 OMP_CLAUSE_CHAIN (c) = list;
30545 OMP_CLAUSE_COLLAPSE_EXPR (c) = num;
30546
30547 return c;
30548 }
30549
30550 /* OpenMP 2.5:
30551 default ( shared | none )
30552
30553 OpenACC 2.0
30554 default (none) */
30555
30556 static tree
30557 cp_parser_omp_clause_default (cp_parser *parser, tree list,
30558 location_t location, bool is_oacc)
30559 {
30560 enum omp_clause_default_kind kind = OMP_CLAUSE_DEFAULT_UNSPECIFIED;
30561 tree c;
30562
30563 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30564 return list;
30565 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
30566 {
30567 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
30568 const char *p = IDENTIFIER_POINTER (id);
30569
30570 switch (p[0])
30571 {
30572 case 'n':
30573 if (strcmp ("none", p) != 0)
30574 goto invalid_kind;
30575 kind = OMP_CLAUSE_DEFAULT_NONE;
30576 break;
30577
30578 case 's':
30579 if (strcmp ("shared", p) != 0 || is_oacc)
30580 goto invalid_kind;
30581 kind = OMP_CLAUSE_DEFAULT_SHARED;
30582 break;
30583
30584 default:
30585 goto invalid_kind;
30586 }
30587
30588 cp_lexer_consume_token (parser->lexer);
30589 }
30590 else
30591 {
30592 invalid_kind:
30593 if (is_oacc)
30594 cp_parser_error (parser, "expected %<none%>");
30595 else
30596 cp_parser_error (parser, "expected %<none%> or %<shared%>");
30597 }
30598
30599 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30600 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
30601 /*or_comma=*/false,
30602 /*consume_paren=*/true);
30603
30604 if (kind == OMP_CLAUSE_DEFAULT_UNSPECIFIED)
30605 return list;
30606
30607 check_no_duplicate_clause (list, OMP_CLAUSE_DEFAULT, "default", location);
30608 c = build_omp_clause (location, OMP_CLAUSE_DEFAULT);
30609 OMP_CLAUSE_CHAIN (c) = list;
30610 OMP_CLAUSE_DEFAULT_KIND (c) = kind;
30611
30612 return c;
30613 }
30614
30615 /* OpenMP 3.1:
30616 final ( expression ) */
30617
30618 static tree
30619 cp_parser_omp_clause_final (cp_parser *parser, tree list, location_t location)
30620 {
30621 tree t, c;
30622
30623 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30624 return list;
30625
30626 t = cp_parser_condition (parser);
30627
30628 if (t == error_mark_node
30629 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30630 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
30631 /*or_comma=*/false,
30632 /*consume_paren=*/true);
30633
30634 check_no_duplicate_clause (list, OMP_CLAUSE_FINAL, "final", location);
30635
30636 c = build_omp_clause (location, OMP_CLAUSE_FINAL);
30637 OMP_CLAUSE_FINAL_EXPR (c) = t;
30638 OMP_CLAUSE_CHAIN (c) = list;
30639
30640 return c;
30641 }
30642
30643 /* OpenMP 2.5:
30644 if ( expression )
30645
30646 OpenMP 4.5:
30647 if ( directive-name-modifier : expression )
30648
30649 directive-name-modifier:
30650 parallel | task | taskloop | target data | target | target update
30651 | target enter data | target exit data */
30652
30653 static tree
30654 cp_parser_omp_clause_if (cp_parser *parser, tree list, location_t location,
30655 bool is_omp)
30656 {
30657 tree t, c;
30658 enum tree_code if_modifier = ERROR_MARK;
30659
30660 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30661 return list;
30662
30663 if (is_omp && cp_lexer_next_token_is (parser->lexer, CPP_NAME))
30664 {
30665 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
30666 const char *p = IDENTIFIER_POINTER (id);
30667 int n = 2;
30668
30669 if (strcmp ("parallel", p) == 0)
30670 if_modifier = OMP_PARALLEL;
30671 else if (strcmp ("task", p) == 0)
30672 if_modifier = OMP_TASK;
30673 else if (strcmp ("taskloop", p) == 0)
30674 if_modifier = OMP_TASKLOOP;
30675 else if (strcmp ("target", p) == 0)
30676 {
30677 if_modifier = OMP_TARGET;
30678 if (cp_lexer_nth_token_is (parser->lexer, 2, CPP_NAME))
30679 {
30680 id = cp_lexer_peek_nth_token (parser->lexer, 2)->u.value;
30681 p = IDENTIFIER_POINTER (id);
30682 if (strcmp ("data", p) == 0)
30683 if_modifier = OMP_TARGET_DATA;
30684 else if (strcmp ("update", p) == 0)
30685 if_modifier = OMP_TARGET_UPDATE;
30686 else if (strcmp ("enter", p) == 0)
30687 if_modifier = OMP_TARGET_ENTER_DATA;
30688 else if (strcmp ("exit", p) == 0)
30689 if_modifier = OMP_TARGET_EXIT_DATA;
30690 if (if_modifier != OMP_TARGET)
30691 n = 3;
30692 else
30693 {
30694 location_t loc
30695 = cp_lexer_peek_nth_token (parser->lexer, 2)->location;
30696 error_at (loc, "expected %<data%>, %<update%>, %<enter%> "
30697 "or %<exit%>");
30698 if_modifier = ERROR_MARK;
30699 }
30700 if (if_modifier == OMP_TARGET_ENTER_DATA
30701 || if_modifier == OMP_TARGET_EXIT_DATA)
30702 {
30703 if (cp_lexer_nth_token_is (parser->lexer, 3, CPP_NAME))
30704 {
30705 id = cp_lexer_peek_nth_token (parser->lexer, 3)->u.value;
30706 p = IDENTIFIER_POINTER (id);
30707 if (strcmp ("data", p) == 0)
30708 n = 4;
30709 }
30710 if (n != 4)
30711 {
30712 location_t loc
30713 = cp_lexer_peek_nth_token (parser->lexer, 3)->location;
30714 error_at (loc, "expected %<data%>");
30715 if_modifier = ERROR_MARK;
30716 }
30717 }
30718 }
30719 }
30720 if (if_modifier != ERROR_MARK)
30721 {
30722 if (cp_lexer_nth_token_is (parser->lexer, n, CPP_COLON))
30723 {
30724 while (n-- > 0)
30725 cp_lexer_consume_token (parser->lexer);
30726 }
30727 else
30728 {
30729 if (n > 2)
30730 {
30731 location_t loc
30732 = cp_lexer_peek_nth_token (parser->lexer, n)->location;
30733 error_at (loc, "expected %<:%>");
30734 }
30735 if_modifier = ERROR_MARK;
30736 }
30737 }
30738 }
30739
30740 t = cp_parser_condition (parser);
30741
30742 if (t == error_mark_node
30743 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30744 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
30745 /*or_comma=*/false,
30746 /*consume_paren=*/true);
30747
30748 for (c = list; c ; c = OMP_CLAUSE_CHAIN (c))
30749 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_IF)
30750 {
30751 if (if_modifier != ERROR_MARK
30752 && OMP_CLAUSE_IF_MODIFIER (c) == if_modifier)
30753 {
30754 const char *p = NULL;
30755 switch (if_modifier)
30756 {
30757 case OMP_PARALLEL: p = "parallel"; break;
30758 case OMP_TASK: p = "task"; break;
30759 case OMP_TASKLOOP: p = "taskloop"; break;
30760 case OMP_TARGET_DATA: p = "target data"; break;
30761 case OMP_TARGET: p = "target"; break;
30762 case OMP_TARGET_UPDATE: p = "target update"; break;
30763 case OMP_TARGET_ENTER_DATA: p = "enter data"; break;
30764 case OMP_TARGET_EXIT_DATA: p = "exit data"; break;
30765 default: gcc_unreachable ();
30766 }
30767 error_at (location, "too many %<if%> clauses with %qs modifier",
30768 p);
30769 return list;
30770 }
30771 else if (OMP_CLAUSE_IF_MODIFIER (c) == if_modifier)
30772 {
30773 if (!is_omp)
30774 error_at (location, "too many %<if%> clauses");
30775 else
30776 error_at (location, "too many %<if%> clauses without modifier");
30777 return list;
30778 }
30779 else if (if_modifier == ERROR_MARK
30780 || OMP_CLAUSE_IF_MODIFIER (c) == ERROR_MARK)
30781 {
30782 error_at (location, "if any %<if%> clause has modifier, then all "
30783 "%<if%> clauses have to use modifier");
30784 return list;
30785 }
30786 }
30787
30788 c = build_omp_clause (location, OMP_CLAUSE_IF);
30789 OMP_CLAUSE_IF_MODIFIER (c) = if_modifier;
30790 OMP_CLAUSE_IF_EXPR (c) = t;
30791 OMP_CLAUSE_CHAIN (c) = list;
30792
30793 return c;
30794 }
30795
30796 /* OpenMP 3.1:
30797 mergeable */
30798
30799 static tree
30800 cp_parser_omp_clause_mergeable (cp_parser * /*parser*/,
30801 tree list, location_t location)
30802 {
30803 tree c;
30804
30805 check_no_duplicate_clause (list, OMP_CLAUSE_MERGEABLE, "mergeable",
30806 location);
30807
30808 c = build_omp_clause (location, OMP_CLAUSE_MERGEABLE);
30809 OMP_CLAUSE_CHAIN (c) = list;
30810 return c;
30811 }
30812
30813 /* OpenMP 2.5:
30814 nowait */
30815
30816 static tree
30817 cp_parser_omp_clause_nowait (cp_parser * /*parser*/,
30818 tree list, location_t location)
30819 {
30820 tree c;
30821
30822 check_no_duplicate_clause (list, OMP_CLAUSE_NOWAIT, "nowait", location);
30823
30824 c = build_omp_clause (location, OMP_CLAUSE_NOWAIT);
30825 OMP_CLAUSE_CHAIN (c) = list;
30826 return c;
30827 }
30828
30829 /* OpenMP 2.5:
30830 num_threads ( expression ) */
30831
30832 static tree
30833 cp_parser_omp_clause_num_threads (cp_parser *parser, tree list,
30834 location_t location)
30835 {
30836 tree t, c;
30837
30838 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30839 return list;
30840
30841 t = cp_parser_expression (parser);
30842
30843 if (t == error_mark_node
30844 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30845 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
30846 /*or_comma=*/false,
30847 /*consume_paren=*/true);
30848
30849 check_no_duplicate_clause (list, OMP_CLAUSE_NUM_THREADS,
30850 "num_threads", location);
30851
30852 c = build_omp_clause (location, OMP_CLAUSE_NUM_THREADS);
30853 OMP_CLAUSE_NUM_THREADS_EXPR (c) = t;
30854 OMP_CLAUSE_CHAIN (c) = list;
30855
30856 return c;
30857 }
30858
30859 /* OpenMP 4.5:
30860 num_tasks ( expression ) */
30861
30862 static tree
30863 cp_parser_omp_clause_num_tasks (cp_parser *parser, tree list,
30864 location_t location)
30865 {
30866 tree t, c;
30867
30868 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30869 return list;
30870
30871 t = cp_parser_expression (parser);
30872
30873 if (t == error_mark_node
30874 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30875 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
30876 /*or_comma=*/false,
30877 /*consume_paren=*/true);
30878
30879 check_no_duplicate_clause (list, OMP_CLAUSE_NUM_TASKS,
30880 "num_tasks", location);
30881
30882 c = build_omp_clause (location, OMP_CLAUSE_NUM_TASKS);
30883 OMP_CLAUSE_NUM_TASKS_EXPR (c) = t;
30884 OMP_CLAUSE_CHAIN (c) = list;
30885
30886 return c;
30887 }
30888
30889 /* OpenMP 4.5:
30890 grainsize ( expression ) */
30891
30892 static tree
30893 cp_parser_omp_clause_grainsize (cp_parser *parser, tree list,
30894 location_t location)
30895 {
30896 tree t, c;
30897
30898 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30899 return list;
30900
30901 t = cp_parser_expression (parser);
30902
30903 if (t == error_mark_node
30904 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30905 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
30906 /*or_comma=*/false,
30907 /*consume_paren=*/true);
30908
30909 check_no_duplicate_clause (list, OMP_CLAUSE_GRAINSIZE,
30910 "grainsize", location);
30911
30912 c = build_omp_clause (location, OMP_CLAUSE_GRAINSIZE);
30913 OMP_CLAUSE_GRAINSIZE_EXPR (c) = t;
30914 OMP_CLAUSE_CHAIN (c) = list;
30915
30916 return c;
30917 }
30918
30919 /* OpenMP 4.5:
30920 priority ( expression ) */
30921
30922 static tree
30923 cp_parser_omp_clause_priority (cp_parser *parser, tree list,
30924 location_t location)
30925 {
30926 tree t, c;
30927
30928 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30929 return list;
30930
30931 t = cp_parser_expression (parser);
30932
30933 if (t == error_mark_node
30934 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30935 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
30936 /*or_comma=*/false,
30937 /*consume_paren=*/true);
30938
30939 check_no_duplicate_clause (list, OMP_CLAUSE_PRIORITY,
30940 "priority", location);
30941
30942 c = build_omp_clause (location, OMP_CLAUSE_PRIORITY);
30943 OMP_CLAUSE_PRIORITY_EXPR (c) = t;
30944 OMP_CLAUSE_CHAIN (c) = list;
30945
30946 return c;
30947 }
30948
30949 /* OpenMP 4.5:
30950 hint ( expression ) */
30951
30952 static tree
30953 cp_parser_omp_clause_hint (cp_parser *parser, tree list,
30954 location_t location)
30955 {
30956 tree t, c;
30957
30958 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30959 return list;
30960
30961 t = cp_parser_expression (parser);
30962
30963 if (t == error_mark_node
30964 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
30965 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
30966 /*or_comma=*/false,
30967 /*consume_paren=*/true);
30968
30969 check_no_duplicate_clause (list, OMP_CLAUSE_HINT, "hint", location);
30970
30971 c = build_omp_clause (location, OMP_CLAUSE_HINT);
30972 OMP_CLAUSE_HINT_EXPR (c) = t;
30973 OMP_CLAUSE_CHAIN (c) = list;
30974
30975 return c;
30976 }
30977
30978 /* OpenMP 4.5:
30979 defaultmap ( tofrom : scalar ) */
30980
30981 static tree
30982 cp_parser_omp_clause_defaultmap (cp_parser *parser, tree list,
30983 location_t location)
30984 {
30985 tree c, id;
30986 const char *p;
30987
30988 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
30989 return list;
30990
30991 if (!cp_lexer_next_token_is (parser->lexer, CPP_NAME))
30992 {
30993 cp_parser_error (parser, "expected %<tofrom%>");
30994 goto out_err;
30995 }
30996 id = cp_lexer_peek_token (parser->lexer)->u.value;
30997 p = IDENTIFIER_POINTER (id);
30998 if (strcmp (p, "tofrom") != 0)
30999 {
31000 cp_parser_error (parser, "expected %<tofrom%>");
31001 goto out_err;
31002 }
31003 cp_lexer_consume_token (parser->lexer);
31004 if (!cp_parser_require (parser, CPP_COLON, RT_COLON))
31005 goto out_err;
31006
31007 if (!cp_lexer_next_token_is (parser->lexer, CPP_NAME))
31008 {
31009 cp_parser_error (parser, "expected %<scalar%>");
31010 goto out_err;
31011 }
31012 id = cp_lexer_peek_token (parser->lexer)->u.value;
31013 p = IDENTIFIER_POINTER (id);
31014 if (strcmp (p, "scalar") != 0)
31015 {
31016 cp_parser_error (parser, "expected %<scalar%>");
31017 goto out_err;
31018 }
31019 cp_lexer_consume_token (parser->lexer);
31020 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31021 goto out_err;
31022
31023 check_no_duplicate_clause (list, OMP_CLAUSE_DEFAULTMAP, "defaultmap",
31024 location);
31025
31026 c = build_omp_clause (location, OMP_CLAUSE_DEFAULTMAP);
31027 OMP_CLAUSE_CHAIN (c) = list;
31028 return c;
31029
31030 out_err:
31031 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31032 /*or_comma=*/false,
31033 /*consume_paren=*/true);
31034 return list;
31035 }
31036
31037 /* OpenMP 2.5:
31038 ordered
31039
31040 OpenMP 4.5:
31041 ordered ( constant-expression ) */
31042
31043 static tree
31044 cp_parser_omp_clause_ordered (cp_parser *parser,
31045 tree list, location_t location)
31046 {
31047 tree c, num = NULL_TREE;
31048 HOST_WIDE_INT n;
31049
31050 check_no_duplicate_clause (list, OMP_CLAUSE_ORDERED,
31051 "ordered", location);
31052
31053 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
31054 {
31055 cp_lexer_consume_token (parser->lexer);
31056
31057 num = cp_parser_constant_expression (parser);
31058
31059 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31060 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31061 /*or_comma=*/false,
31062 /*consume_paren=*/true);
31063
31064 if (num == error_mark_node)
31065 return list;
31066 num = fold_non_dependent_expr (num);
31067 if (!tree_fits_shwi_p (num)
31068 || !INTEGRAL_TYPE_P (TREE_TYPE (num))
31069 || (n = tree_to_shwi (num)) <= 0
31070 || (int) n != n)
31071 {
31072 error_at (location,
31073 "ordered argument needs positive constant integer "
31074 "expression");
31075 return list;
31076 }
31077 }
31078
31079 c = build_omp_clause (location, OMP_CLAUSE_ORDERED);
31080 OMP_CLAUSE_ORDERED_EXPR (c) = num;
31081 OMP_CLAUSE_CHAIN (c) = list;
31082 return c;
31083 }
31084
31085 /* OpenMP 2.5:
31086 reduction ( reduction-operator : variable-list )
31087
31088 reduction-operator:
31089 One of: + * - & ^ | && ||
31090
31091 OpenMP 3.1:
31092
31093 reduction-operator:
31094 One of: + * - & ^ | && || min max
31095
31096 OpenMP 4.0:
31097
31098 reduction-operator:
31099 One of: + * - & ^ | && ||
31100 id-expression */
31101
31102 static tree
31103 cp_parser_omp_clause_reduction (cp_parser *parser, tree list)
31104 {
31105 enum tree_code code = ERROR_MARK;
31106 tree nlist, c, id = NULL_TREE;
31107
31108 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31109 return list;
31110
31111 switch (cp_lexer_peek_token (parser->lexer)->type)
31112 {
31113 case CPP_PLUS: code = PLUS_EXPR; break;
31114 case CPP_MULT: code = MULT_EXPR; break;
31115 case CPP_MINUS: code = MINUS_EXPR; break;
31116 case CPP_AND: code = BIT_AND_EXPR; break;
31117 case CPP_XOR: code = BIT_XOR_EXPR; break;
31118 case CPP_OR: code = BIT_IOR_EXPR; break;
31119 case CPP_AND_AND: code = TRUTH_ANDIF_EXPR; break;
31120 case CPP_OR_OR: code = TRUTH_ORIF_EXPR; break;
31121 default: break;
31122 }
31123
31124 if (code != ERROR_MARK)
31125 cp_lexer_consume_token (parser->lexer);
31126 else
31127 {
31128 bool saved_colon_corrects_to_scope_p;
31129 saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
31130 parser->colon_corrects_to_scope_p = false;
31131 id = cp_parser_id_expression (parser, /*template_p=*/false,
31132 /*check_dependency_p=*/true,
31133 /*template_p=*/NULL,
31134 /*declarator_p=*/false,
31135 /*optional_p=*/false);
31136 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
31137 if (identifier_p (id))
31138 {
31139 const char *p = IDENTIFIER_POINTER (id);
31140
31141 if (strcmp (p, "min") == 0)
31142 code = MIN_EXPR;
31143 else if (strcmp (p, "max") == 0)
31144 code = MAX_EXPR;
31145 else if (id == ansi_opname (PLUS_EXPR))
31146 code = PLUS_EXPR;
31147 else if (id == ansi_opname (MULT_EXPR))
31148 code = MULT_EXPR;
31149 else if (id == ansi_opname (MINUS_EXPR))
31150 code = MINUS_EXPR;
31151 else if (id == ansi_opname (BIT_AND_EXPR))
31152 code = BIT_AND_EXPR;
31153 else if (id == ansi_opname (BIT_IOR_EXPR))
31154 code = BIT_IOR_EXPR;
31155 else if (id == ansi_opname (BIT_XOR_EXPR))
31156 code = BIT_XOR_EXPR;
31157 else if (id == ansi_opname (TRUTH_ANDIF_EXPR))
31158 code = TRUTH_ANDIF_EXPR;
31159 else if (id == ansi_opname (TRUTH_ORIF_EXPR))
31160 code = TRUTH_ORIF_EXPR;
31161 id = omp_reduction_id (code, id, NULL_TREE);
31162 tree scope = parser->scope;
31163 if (scope)
31164 id = build_qualified_name (NULL_TREE, scope, id, false);
31165 parser->scope = NULL_TREE;
31166 parser->qualifying_scope = NULL_TREE;
31167 parser->object_scope = NULL_TREE;
31168 }
31169 else
31170 {
31171 error ("invalid reduction-identifier");
31172 resync_fail:
31173 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31174 /*or_comma=*/false,
31175 /*consume_paren=*/true);
31176 return list;
31177 }
31178 }
31179
31180 if (!cp_parser_require (parser, CPP_COLON, RT_COLON))
31181 goto resync_fail;
31182
31183 nlist = cp_parser_omp_var_list_no_open (parser, OMP_CLAUSE_REDUCTION, list,
31184 NULL);
31185 for (c = nlist; c != list; c = OMP_CLAUSE_CHAIN (c))
31186 {
31187 OMP_CLAUSE_REDUCTION_CODE (c) = code;
31188 OMP_CLAUSE_REDUCTION_PLACEHOLDER (c) = id;
31189 }
31190
31191 return nlist;
31192 }
31193
31194 /* OpenMP 2.5:
31195 schedule ( schedule-kind )
31196 schedule ( schedule-kind , expression )
31197
31198 schedule-kind:
31199 static | dynamic | guided | runtime | auto
31200
31201 OpenMP 4.5:
31202 schedule ( schedule-modifier : schedule-kind )
31203 schedule ( schedule-modifier [ , schedule-modifier ] : schedule-kind , expression )
31204
31205 schedule-modifier:
31206 simd
31207 monotonic
31208 nonmonotonic */
31209
31210 static tree
31211 cp_parser_omp_clause_schedule (cp_parser *parser, tree list, location_t location)
31212 {
31213 tree c, t;
31214 int modifiers = 0, nmodifiers = 0;
31215
31216 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31217 return list;
31218
31219 c = build_omp_clause (location, OMP_CLAUSE_SCHEDULE);
31220
31221 while (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
31222 {
31223 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
31224 const char *p = IDENTIFIER_POINTER (id);
31225 if (strcmp ("simd", p) == 0)
31226 OMP_CLAUSE_SCHEDULE_SIMD (c) = 1;
31227 else if (strcmp ("monotonic", p) == 0)
31228 modifiers |= OMP_CLAUSE_SCHEDULE_MONOTONIC;
31229 else if (strcmp ("nonmonotonic", p) == 0)
31230 modifiers |= OMP_CLAUSE_SCHEDULE_NONMONOTONIC;
31231 else
31232 break;
31233 cp_lexer_consume_token (parser->lexer);
31234 if (nmodifiers++ == 0
31235 && cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
31236 cp_lexer_consume_token (parser->lexer);
31237 else
31238 {
31239 cp_parser_require (parser, CPP_COLON, RT_COLON);
31240 break;
31241 }
31242 }
31243
31244 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
31245 {
31246 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
31247 const char *p = IDENTIFIER_POINTER (id);
31248
31249 switch (p[0])
31250 {
31251 case 'd':
31252 if (strcmp ("dynamic", p) != 0)
31253 goto invalid_kind;
31254 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_DYNAMIC;
31255 break;
31256
31257 case 'g':
31258 if (strcmp ("guided", p) != 0)
31259 goto invalid_kind;
31260 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_GUIDED;
31261 break;
31262
31263 case 'r':
31264 if (strcmp ("runtime", p) != 0)
31265 goto invalid_kind;
31266 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_RUNTIME;
31267 break;
31268
31269 default:
31270 goto invalid_kind;
31271 }
31272 }
31273 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_STATIC))
31274 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_STATIC;
31275 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_AUTO))
31276 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_AUTO;
31277 else
31278 goto invalid_kind;
31279 cp_lexer_consume_token (parser->lexer);
31280
31281 if ((modifiers & (OMP_CLAUSE_SCHEDULE_MONOTONIC
31282 | OMP_CLAUSE_SCHEDULE_NONMONOTONIC))
31283 == (OMP_CLAUSE_SCHEDULE_MONOTONIC
31284 | OMP_CLAUSE_SCHEDULE_NONMONOTONIC))
31285 {
31286 error_at (location, "both %<monotonic%> and %<nonmonotonic%> modifiers "
31287 "specified");
31288 modifiers = 0;
31289 }
31290
31291 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
31292 {
31293 cp_token *token;
31294 cp_lexer_consume_token (parser->lexer);
31295
31296 token = cp_lexer_peek_token (parser->lexer);
31297 t = cp_parser_assignment_expression (parser);
31298
31299 if (t == error_mark_node)
31300 goto resync_fail;
31301 else if (OMP_CLAUSE_SCHEDULE_KIND (c) == OMP_CLAUSE_SCHEDULE_RUNTIME)
31302 error_at (token->location, "schedule %<runtime%> does not take "
31303 "a %<chunk_size%> parameter");
31304 else if (OMP_CLAUSE_SCHEDULE_KIND (c) == OMP_CLAUSE_SCHEDULE_AUTO)
31305 error_at (token->location, "schedule %<auto%> does not take "
31306 "a %<chunk_size%> parameter");
31307 else
31308 OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c) = t;
31309
31310 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31311 goto resync_fail;
31312 }
31313 else if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_COMMA_CLOSE_PAREN))
31314 goto resync_fail;
31315
31316 OMP_CLAUSE_SCHEDULE_KIND (c)
31317 = (enum omp_clause_schedule_kind)
31318 (OMP_CLAUSE_SCHEDULE_KIND (c) | modifiers);
31319
31320 check_no_duplicate_clause (list, OMP_CLAUSE_SCHEDULE, "schedule", location);
31321 OMP_CLAUSE_CHAIN (c) = list;
31322 return c;
31323
31324 invalid_kind:
31325 cp_parser_error (parser, "invalid schedule kind");
31326 resync_fail:
31327 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31328 /*or_comma=*/false,
31329 /*consume_paren=*/true);
31330 return list;
31331 }
31332
31333 /* OpenMP 3.0:
31334 untied */
31335
31336 static tree
31337 cp_parser_omp_clause_untied (cp_parser * /*parser*/,
31338 tree list, location_t location)
31339 {
31340 tree c;
31341
31342 check_no_duplicate_clause (list, OMP_CLAUSE_UNTIED, "untied", location);
31343
31344 c = build_omp_clause (location, OMP_CLAUSE_UNTIED);
31345 OMP_CLAUSE_CHAIN (c) = list;
31346 return c;
31347 }
31348
31349 /* OpenMP 4.0:
31350 inbranch
31351 notinbranch */
31352
31353 static tree
31354 cp_parser_omp_clause_branch (cp_parser * /*parser*/, enum omp_clause_code code,
31355 tree list, location_t location)
31356 {
31357 check_no_duplicate_clause (list, code, omp_clause_code_name[code], location);
31358 tree c = build_omp_clause (location, code);
31359 OMP_CLAUSE_CHAIN (c) = list;
31360 return c;
31361 }
31362
31363 /* OpenMP 4.0:
31364 parallel
31365 for
31366 sections
31367 taskgroup */
31368
31369 static tree
31370 cp_parser_omp_clause_cancelkind (cp_parser * /*parser*/,
31371 enum omp_clause_code code,
31372 tree list, location_t location)
31373 {
31374 tree c = build_omp_clause (location, code);
31375 OMP_CLAUSE_CHAIN (c) = list;
31376 return c;
31377 }
31378
31379 /* OpenMP 4.5:
31380 nogroup */
31381
31382 static tree
31383 cp_parser_omp_clause_nogroup (cp_parser * /*parser*/,
31384 tree list, location_t location)
31385 {
31386 check_no_duplicate_clause (list, OMP_CLAUSE_NOGROUP, "nogroup", location);
31387 tree c = build_omp_clause (location, OMP_CLAUSE_NOGROUP);
31388 OMP_CLAUSE_CHAIN (c) = list;
31389 return c;
31390 }
31391
31392 /* OpenMP 4.5:
31393 simd
31394 threads */
31395
31396 static tree
31397 cp_parser_omp_clause_orderedkind (cp_parser * /*parser*/,
31398 enum omp_clause_code code,
31399 tree list, location_t location)
31400 {
31401 check_no_duplicate_clause (list, code, omp_clause_code_name[code], location);
31402 tree c = build_omp_clause (location, code);
31403 OMP_CLAUSE_CHAIN (c) = list;
31404 return c;
31405 }
31406
31407 /* OpenMP 4.0:
31408 num_teams ( expression ) */
31409
31410 static tree
31411 cp_parser_omp_clause_num_teams (cp_parser *parser, tree list,
31412 location_t location)
31413 {
31414 tree t, c;
31415
31416 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31417 return list;
31418
31419 t = cp_parser_expression (parser);
31420
31421 if (t == error_mark_node
31422 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31423 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31424 /*or_comma=*/false,
31425 /*consume_paren=*/true);
31426
31427 check_no_duplicate_clause (list, OMP_CLAUSE_NUM_TEAMS,
31428 "num_teams", location);
31429
31430 c = build_omp_clause (location, OMP_CLAUSE_NUM_TEAMS);
31431 OMP_CLAUSE_NUM_TEAMS_EXPR (c) = t;
31432 OMP_CLAUSE_CHAIN (c) = list;
31433
31434 return c;
31435 }
31436
31437 /* OpenMP 4.0:
31438 thread_limit ( expression ) */
31439
31440 static tree
31441 cp_parser_omp_clause_thread_limit (cp_parser *parser, tree list,
31442 location_t location)
31443 {
31444 tree t, c;
31445
31446 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31447 return list;
31448
31449 t = cp_parser_expression (parser);
31450
31451 if (t == error_mark_node
31452 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31453 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31454 /*or_comma=*/false,
31455 /*consume_paren=*/true);
31456
31457 check_no_duplicate_clause (list, OMP_CLAUSE_THREAD_LIMIT,
31458 "thread_limit", location);
31459
31460 c = build_omp_clause (location, OMP_CLAUSE_THREAD_LIMIT);
31461 OMP_CLAUSE_THREAD_LIMIT_EXPR (c) = t;
31462 OMP_CLAUSE_CHAIN (c) = list;
31463
31464 return c;
31465 }
31466
31467 /* OpenMP 4.0:
31468 aligned ( variable-list )
31469 aligned ( variable-list : constant-expression ) */
31470
31471 static tree
31472 cp_parser_omp_clause_aligned (cp_parser *parser, tree list)
31473 {
31474 tree nlist, c, alignment = NULL_TREE;
31475 bool colon;
31476
31477 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31478 return list;
31479
31480 nlist = cp_parser_omp_var_list_no_open (parser, OMP_CLAUSE_ALIGNED, list,
31481 &colon);
31482
31483 if (colon)
31484 {
31485 alignment = cp_parser_constant_expression (parser);
31486
31487 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31488 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31489 /*or_comma=*/false,
31490 /*consume_paren=*/true);
31491
31492 if (alignment == error_mark_node)
31493 alignment = NULL_TREE;
31494 }
31495
31496 for (c = nlist; c != list; c = OMP_CLAUSE_CHAIN (c))
31497 OMP_CLAUSE_ALIGNED_ALIGNMENT (c) = alignment;
31498
31499 return nlist;
31500 }
31501
31502 /* OpenMP 4.0:
31503 linear ( variable-list )
31504 linear ( variable-list : expression )
31505
31506 OpenMP 4.5:
31507 linear ( modifier ( variable-list ) )
31508 linear ( modifier ( variable-list ) : expression ) */
31509
31510 static tree
31511 cp_parser_omp_clause_linear (cp_parser *parser, tree list,
31512 bool is_cilk_simd_fn, bool declare_simd)
31513 {
31514 tree nlist, c, step = integer_one_node;
31515 bool colon;
31516 enum omp_clause_linear_kind kind = OMP_CLAUSE_LINEAR_DEFAULT;
31517
31518 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31519 return list;
31520
31521 if (!is_cilk_simd_fn
31522 && cp_lexer_next_token_is (parser->lexer, CPP_NAME))
31523 {
31524 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
31525 const char *p = IDENTIFIER_POINTER (id);
31526
31527 if (strcmp ("ref", p) == 0)
31528 kind = OMP_CLAUSE_LINEAR_REF;
31529 else if (strcmp ("val", p) == 0)
31530 kind = OMP_CLAUSE_LINEAR_VAL;
31531 else if (strcmp ("uval", p) == 0)
31532 kind = OMP_CLAUSE_LINEAR_UVAL;
31533 if (cp_lexer_nth_token_is (parser->lexer, 2, CPP_OPEN_PAREN))
31534 cp_lexer_consume_token (parser->lexer);
31535 else
31536 kind = OMP_CLAUSE_LINEAR_DEFAULT;
31537 }
31538
31539 if (kind == OMP_CLAUSE_LINEAR_DEFAULT)
31540 nlist = cp_parser_omp_var_list_no_open (parser, OMP_CLAUSE_LINEAR, list,
31541 &colon);
31542 else
31543 {
31544 nlist = cp_parser_omp_var_list (parser, OMP_CLAUSE_LINEAR, list);
31545 colon = cp_lexer_next_token_is (parser->lexer, CPP_COLON);
31546 if (colon)
31547 cp_parser_require (parser, CPP_COLON, RT_COLON);
31548 else if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31549 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31550 /*or_comma=*/false,
31551 /*consume_paren=*/true);
31552 }
31553
31554 if (colon)
31555 {
31556 step = NULL_TREE;
31557 if (declare_simd
31558 && cp_lexer_next_token_is (parser->lexer, CPP_NAME)
31559 && cp_lexer_nth_token_is (parser->lexer, 2, CPP_CLOSE_PAREN))
31560 {
31561 cp_token *token = cp_lexer_peek_token (parser->lexer);
31562 cp_parser_parse_tentatively (parser);
31563 step = cp_parser_id_expression (parser, /*template_p=*/false,
31564 /*check_dependency_p=*/true,
31565 /*template_p=*/NULL,
31566 /*declarator_p=*/false,
31567 /*optional_p=*/false);
31568 if (step != error_mark_node)
31569 step = cp_parser_lookup_name_simple (parser, step, token->location);
31570 if (step == error_mark_node)
31571 {
31572 step = NULL_TREE;
31573 cp_parser_abort_tentative_parse (parser);
31574 }
31575 else if (!cp_parser_parse_definitely (parser))
31576 step = NULL_TREE;
31577 }
31578 if (!step)
31579 step = cp_parser_expression (parser);
31580
31581 if (is_cilk_simd_fn && TREE_CODE (step) == PARM_DECL)
31582 {
31583 sorry ("using parameters for %<linear%> step is not supported yet");
31584 step = integer_one_node;
31585 }
31586 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31587 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31588 /*or_comma=*/false,
31589 /*consume_paren=*/true);
31590
31591 if (step == error_mark_node)
31592 return list;
31593 }
31594
31595 for (c = nlist; c != list; c = OMP_CLAUSE_CHAIN (c))
31596 {
31597 OMP_CLAUSE_LINEAR_STEP (c) = step;
31598 OMP_CLAUSE_LINEAR_KIND (c) = kind;
31599 }
31600
31601 return nlist;
31602 }
31603
31604 /* OpenMP 4.0:
31605 safelen ( constant-expression ) */
31606
31607 static tree
31608 cp_parser_omp_clause_safelen (cp_parser *parser, tree list,
31609 location_t location)
31610 {
31611 tree t, c;
31612
31613 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31614 return list;
31615
31616 t = cp_parser_constant_expression (parser);
31617
31618 if (t == error_mark_node
31619 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31620 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31621 /*or_comma=*/false,
31622 /*consume_paren=*/true);
31623
31624 check_no_duplicate_clause (list, OMP_CLAUSE_SAFELEN, "safelen", location);
31625
31626 c = build_omp_clause (location, OMP_CLAUSE_SAFELEN);
31627 OMP_CLAUSE_SAFELEN_EXPR (c) = t;
31628 OMP_CLAUSE_CHAIN (c) = list;
31629
31630 return c;
31631 }
31632
31633 /* OpenMP 4.0:
31634 simdlen ( constant-expression ) */
31635
31636 static tree
31637 cp_parser_omp_clause_simdlen (cp_parser *parser, tree list,
31638 location_t location)
31639 {
31640 tree t, c;
31641
31642 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31643 return list;
31644
31645 t = cp_parser_constant_expression (parser);
31646
31647 if (t == error_mark_node
31648 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31649 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31650 /*or_comma=*/false,
31651 /*consume_paren=*/true);
31652
31653 check_no_duplicate_clause (list, OMP_CLAUSE_SIMDLEN, "simdlen", location);
31654
31655 c = build_omp_clause (location, OMP_CLAUSE_SIMDLEN);
31656 OMP_CLAUSE_SIMDLEN_EXPR (c) = t;
31657 OMP_CLAUSE_CHAIN (c) = list;
31658
31659 return c;
31660 }
31661
31662 /* OpenMP 4.5:
31663 vec:
31664 identifier [+/- integer]
31665 vec , identifier [+/- integer]
31666 */
31667
31668 static tree
31669 cp_parser_omp_clause_depend_sink (cp_parser *parser, location_t clause_loc,
31670 tree list)
31671 {
31672 tree vec = NULL;
31673
31674 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NAME))
31675 {
31676 cp_parser_error (parser, "expected identifier");
31677 return list;
31678 }
31679
31680 while (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
31681 {
31682 location_t id_loc = cp_lexer_peek_token (parser->lexer)->location;
31683 tree t, identifier = cp_parser_identifier (parser);
31684 tree addend = NULL;
31685
31686 if (identifier == error_mark_node)
31687 t = error_mark_node;
31688 else
31689 {
31690 t = cp_parser_lookup_name_simple
31691 (parser, identifier,
31692 cp_lexer_peek_token (parser->lexer)->location);
31693 if (t == error_mark_node)
31694 cp_parser_name_lookup_error (parser, identifier, t, NLE_NULL,
31695 id_loc);
31696 }
31697
31698 bool neg = false;
31699 if (cp_lexer_next_token_is (parser->lexer, CPP_MINUS))
31700 neg = true;
31701 else if (!cp_lexer_next_token_is (parser->lexer, CPP_PLUS))
31702 {
31703 addend = integer_zero_node;
31704 goto add_to_vector;
31705 }
31706 cp_lexer_consume_token (parser->lexer);
31707
31708 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NUMBER))
31709 {
31710 cp_parser_error (parser, "expected integer");
31711 return list;
31712 }
31713
31714 addend = cp_lexer_peek_token (parser->lexer)->u.value;
31715 if (TREE_CODE (addend) != INTEGER_CST)
31716 {
31717 cp_parser_error (parser, "expected integer");
31718 return list;
31719 }
31720 cp_lexer_consume_token (parser->lexer);
31721
31722 add_to_vector:
31723 if (t != error_mark_node)
31724 {
31725 vec = tree_cons (addend, t, vec);
31726 if (neg)
31727 OMP_CLAUSE_DEPEND_SINK_NEGATIVE (vec) = 1;
31728 }
31729
31730 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
31731 break;
31732
31733 cp_lexer_consume_token (parser->lexer);
31734 }
31735
31736 if (cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN) && vec)
31737 {
31738 tree u = build_omp_clause (clause_loc, OMP_CLAUSE_DEPEND);
31739 OMP_CLAUSE_DEPEND_KIND (u) = OMP_CLAUSE_DEPEND_SINK;
31740 OMP_CLAUSE_DECL (u) = nreverse (vec);
31741 OMP_CLAUSE_CHAIN (u) = list;
31742 return u;
31743 }
31744 return list;
31745 }
31746
31747 /* OpenMP 4.0:
31748 depend ( depend-kind : variable-list )
31749
31750 depend-kind:
31751 in | out | inout
31752
31753 OpenMP 4.5:
31754 depend ( source )
31755
31756 depend ( sink : vec ) */
31757
31758 static tree
31759 cp_parser_omp_clause_depend (cp_parser *parser, tree list, location_t loc)
31760 {
31761 tree nlist, c;
31762 enum omp_clause_depend_kind kind = OMP_CLAUSE_DEPEND_INOUT;
31763
31764 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31765 return list;
31766
31767 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
31768 {
31769 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
31770 const char *p = IDENTIFIER_POINTER (id);
31771
31772 if (strcmp ("in", p) == 0)
31773 kind = OMP_CLAUSE_DEPEND_IN;
31774 else if (strcmp ("inout", p) == 0)
31775 kind = OMP_CLAUSE_DEPEND_INOUT;
31776 else if (strcmp ("out", p) == 0)
31777 kind = OMP_CLAUSE_DEPEND_OUT;
31778 else if (strcmp ("source", p) == 0)
31779 kind = OMP_CLAUSE_DEPEND_SOURCE;
31780 else if (strcmp ("sink", p) == 0)
31781 kind = OMP_CLAUSE_DEPEND_SINK;
31782 else
31783 goto invalid_kind;
31784 }
31785 else
31786 goto invalid_kind;
31787
31788 cp_lexer_consume_token (parser->lexer);
31789
31790 if (kind == OMP_CLAUSE_DEPEND_SOURCE)
31791 {
31792 c = build_omp_clause (loc, OMP_CLAUSE_DEPEND);
31793 OMP_CLAUSE_DEPEND_KIND (c) = kind;
31794 OMP_CLAUSE_DECL (c) = NULL_TREE;
31795 OMP_CLAUSE_CHAIN (c) = list;
31796 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31797 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31798 /*or_comma=*/false,
31799 /*consume_paren=*/true);
31800 return c;
31801 }
31802
31803 if (!cp_parser_require (parser, CPP_COLON, RT_COLON))
31804 goto resync_fail;
31805
31806 if (kind == OMP_CLAUSE_DEPEND_SINK)
31807 nlist = cp_parser_omp_clause_depend_sink (parser, loc, list);
31808 else
31809 {
31810 nlist = cp_parser_omp_var_list_no_open (parser, OMP_CLAUSE_DEPEND,
31811 list, NULL);
31812
31813 for (c = nlist; c != list; c = OMP_CLAUSE_CHAIN (c))
31814 OMP_CLAUSE_DEPEND_KIND (c) = kind;
31815 }
31816 return nlist;
31817
31818 invalid_kind:
31819 cp_parser_error (parser, "invalid depend kind");
31820 resync_fail:
31821 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31822 /*or_comma=*/false,
31823 /*consume_paren=*/true);
31824 return list;
31825 }
31826
31827 /* OpenMP 4.0:
31828 map ( map-kind : variable-list )
31829 map ( variable-list )
31830
31831 map-kind:
31832 alloc | to | from | tofrom
31833
31834 OpenMP 4.5:
31835 map-kind:
31836 alloc | to | from | tofrom | release | delete
31837
31838 map ( always [,] map-kind: variable-list ) */
31839
31840 static tree
31841 cp_parser_omp_clause_map (cp_parser *parser, tree list)
31842 {
31843 tree nlist, c;
31844 enum gomp_map_kind kind = GOMP_MAP_TOFROM;
31845 bool always = false;
31846
31847 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31848 return list;
31849
31850 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
31851 {
31852 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
31853 const char *p = IDENTIFIER_POINTER (id);
31854
31855 if (strcmp ("always", p) == 0)
31856 {
31857 int nth = 2;
31858 if (cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_COMMA)
31859 nth++;
31860 if ((cp_lexer_peek_nth_token (parser->lexer, nth)->type == CPP_NAME
31861 || (cp_lexer_peek_nth_token (parser->lexer, nth)->keyword
31862 == RID_DELETE))
31863 && (cp_lexer_peek_nth_token (parser->lexer, nth + 1)->type
31864 == CPP_COLON))
31865 {
31866 always = true;
31867 cp_lexer_consume_token (parser->lexer);
31868 if (nth == 3)
31869 cp_lexer_consume_token (parser->lexer);
31870 }
31871 }
31872 }
31873
31874 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME)
31875 && cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_COLON)
31876 {
31877 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
31878 const char *p = IDENTIFIER_POINTER (id);
31879
31880 if (strcmp ("alloc", p) == 0)
31881 kind = GOMP_MAP_ALLOC;
31882 else if (strcmp ("to", p) == 0)
31883 kind = always ? GOMP_MAP_ALWAYS_TO : GOMP_MAP_TO;
31884 else if (strcmp ("from", p) == 0)
31885 kind = always ? GOMP_MAP_ALWAYS_FROM : GOMP_MAP_FROM;
31886 else if (strcmp ("tofrom", p) == 0)
31887 kind = always ? GOMP_MAP_ALWAYS_TOFROM : GOMP_MAP_TOFROM;
31888 else if (strcmp ("release", p) == 0)
31889 kind = GOMP_MAP_RELEASE;
31890 else
31891 {
31892 cp_parser_error (parser, "invalid map kind");
31893 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31894 /*or_comma=*/false,
31895 /*consume_paren=*/true);
31896 return list;
31897 }
31898 cp_lexer_consume_token (parser->lexer);
31899 cp_lexer_consume_token (parser->lexer);
31900 }
31901 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_DELETE)
31902 && cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_COLON)
31903 {
31904 kind = GOMP_MAP_DELETE;
31905 cp_lexer_consume_token (parser->lexer);
31906 cp_lexer_consume_token (parser->lexer);
31907 }
31908
31909 nlist = cp_parser_omp_var_list_no_open (parser, OMP_CLAUSE_MAP, list,
31910 NULL);
31911
31912 for (c = nlist; c != list; c = OMP_CLAUSE_CHAIN (c))
31913 OMP_CLAUSE_SET_MAP_KIND (c, kind);
31914
31915 return nlist;
31916 }
31917
31918 /* OpenMP 4.0:
31919 device ( expression ) */
31920
31921 static tree
31922 cp_parser_omp_clause_device (cp_parser *parser, tree list,
31923 location_t location)
31924 {
31925 tree t, c;
31926
31927 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31928 return list;
31929
31930 t = cp_parser_expression (parser);
31931
31932 if (t == error_mark_node
31933 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31934 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31935 /*or_comma=*/false,
31936 /*consume_paren=*/true);
31937
31938 check_no_duplicate_clause (list, OMP_CLAUSE_DEVICE,
31939 "device", location);
31940
31941 c = build_omp_clause (location, OMP_CLAUSE_DEVICE);
31942 OMP_CLAUSE_DEVICE_ID (c) = t;
31943 OMP_CLAUSE_CHAIN (c) = list;
31944
31945 return c;
31946 }
31947
31948 /* OpenMP 4.0:
31949 dist_schedule ( static )
31950 dist_schedule ( static , expression ) */
31951
31952 static tree
31953 cp_parser_omp_clause_dist_schedule (cp_parser *parser, tree list,
31954 location_t location)
31955 {
31956 tree c, t;
31957
31958 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
31959 return list;
31960
31961 c = build_omp_clause (location, OMP_CLAUSE_DIST_SCHEDULE);
31962
31963 if (!cp_lexer_next_token_is_keyword (parser->lexer, RID_STATIC))
31964 goto invalid_kind;
31965 cp_lexer_consume_token (parser->lexer);
31966
31967 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
31968 {
31969 cp_lexer_consume_token (parser->lexer);
31970
31971 t = cp_parser_assignment_expression (parser);
31972
31973 if (t == error_mark_node)
31974 goto resync_fail;
31975 OMP_CLAUSE_DIST_SCHEDULE_CHUNK_EXPR (c) = t;
31976
31977 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
31978 goto resync_fail;
31979 }
31980 else if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_COMMA_CLOSE_PAREN))
31981 goto resync_fail;
31982
31983 check_no_duplicate_clause (list, OMP_CLAUSE_DIST_SCHEDULE, "dist_schedule",
31984 location);
31985 OMP_CLAUSE_CHAIN (c) = list;
31986 return c;
31987
31988 invalid_kind:
31989 cp_parser_error (parser, "invalid dist_schedule kind");
31990 resync_fail:
31991 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
31992 /*or_comma=*/false,
31993 /*consume_paren=*/true);
31994 return list;
31995 }
31996
31997 /* OpenMP 4.0:
31998 proc_bind ( proc-bind-kind )
31999
32000 proc-bind-kind:
32001 master | close | spread */
32002
32003 static tree
32004 cp_parser_omp_clause_proc_bind (cp_parser *parser, tree list,
32005 location_t location)
32006 {
32007 tree c;
32008 enum omp_clause_proc_bind_kind kind;
32009
32010 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
32011 return list;
32012
32013 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
32014 {
32015 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
32016 const char *p = IDENTIFIER_POINTER (id);
32017
32018 if (strcmp ("master", p) == 0)
32019 kind = OMP_CLAUSE_PROC_BIND_MASTER;
32020 else if (strcmp ("close", p) == 0)
32021 kind = OMP_CLAUSE_PROC_BIND_CLOSE;
32022 else if (strcmp ("spread", p) == 0)
32023 kind = OMP_CLAUSE_PROC_BIND_SPREAD;
32024 else
32025 goto invalid_kind;
32026 }
32027 else
32028 goto invalid_kind;
32029
32030 cp_lexer_consume_token (parser->lexer);
32031 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_COMMA_CLOSE_PAREN))
32032 goto resync_fail;
32033
32034 c = build_omp_clause (location, OMP_CLAUSE_PROC_BIND);
32035 check_no_duplicate_clause (list, OMP_CLAUSE_PROC_BIND, "proc_bind",
32036 location);
32037 OMP_CLAUSE_PROC_BIND_KIND (c) = kind;
32038 OMP_CLAUSE_CHAIN (c) = list;
32039 return c;
32040
32041 invalid_kind:
32042 cp_parser_error (parser, "invalid depend kind");
32043 resync_fail:
32044 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
32045 /*or_comma=*/false,
32046 /*consume_paren=*/true);
32047 return list;
32048 }
32049
32050 /* OpenACC:
32051 async [( int-expr )] */
32052
32053 static tree
32054 cp_parser_oacc_clause_async (cp_parser *parser, tree list)
32055 {
32056 tree c, t;
32057 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
32058
32059 t = build_int_cst (integer_type_node, GOMP_ASYNC_NOVAL);
32060
32061 if (cp_lexer_peek_token (parser->lexer)->type == CPP_OPEN_PAREN)
32062 {
32063 cp_lexer_consume_token (parser->lexer);
32064
32065 t = cp_parser_expression (parser);
32066 if (t == error_mark_node
32067 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
32068 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
32069 /*or_comma=*/false,
32070 /*consume_paren=*/true);
32071 }
32072
32073 check_no_duplicate_clause (list, OMP_CLAUSE_ASYNC, "async", loc);
32074
32075 c = build_omp_clause (loc, OMP_CLAUSE_ASYNC);
32076 OMP_CLAUSE_ASYNC_EXPR (c) = t;
32077 OMP_CLAUSE_CHAIN (c) = list;
32078 list = c;
32079
32080 return list;
32081 }
32082
32083 /* Parse all OpenACC clauses. The set clauses allowed by the directive
32084 is a bitmask in MASK. Return the list of clauses found. */
32085
32086 static tree
32087 cp_parser_oacc_all_clauses (cp_parser *parser, omp_clause_mask mask,
32088 const char *where, cp_token *pragma_tok,
32089 bool finish_p = true)
32090 {
32091 tree clauses = NULL;
32092 bool first = true;
32093
32094 while (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL))
32095 {
32096 location_t here;
32097 pragma_omp_clause c_kind;
32098 omp_clause_code code;
32099 const char *c_name;
32100 tree prev = clauses;
32101
32102 if (!first && cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
32103 cp_lexer_consume_token (parser->lexer);
32104
32105 here = cp_lexer_peek_token (parser->lexer)->location;
32106 c_kind = cp_parser_omp_clause_name (parser);
32107
32108 switch (c_kind)
32109 {
32110 case PRAGMA_OACC_CLAUSE_ASYNC:
32111 clauses = cp_parser_oacc_clause_async (parser, clauses);
32112 c_name = "async";
32113 break;
32114 case PRAGMA_OACC_CLAUSE_AUTO:
32115 clauses = cp_parser_oacc_simple_clause (parser, OMP_CLAUSE_AUTO,
32116 clauses, here);
32117 c_name = "auto";
32118 break;
32119 case PRAGMA_OACC_CLAUSE_COLLAPSE:
32120 clauses = cp_parser_omp_clause_collapse (parser, clauses, here);
32121 c_name = "collapse";
32122 break;
32123 case PRAGMA_OACC_CLAUSE_COPY:
32124 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32125 c_name = "copy";
32126 break;
32127 case PRAGMA_OACC_CLAUSE_COPYIN:
32128 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32129 c_name = "copyin";
32130 break;
32131 case PRAGMA_OACC_CLAUSE_COPYOUT:
32132 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32133 c_name = "copyout";
32134 break;
32135 case PRAGMA_OACC_CLAUSE_CREATE:
32136 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32137 c_name = "create";
32138 break;
32139 case PRAGMA_OACC_CLAUSE_DELETE:
32140 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32141 c_name = "delete";
32142 break;
32143 case PRAGMA_OMP_CLAUSE_DEFAULT:
32144 clauses = cp_parser_omp_clause_default (parser, clauses, here, true);
32145 c_name = "default";
32146 break;
32147 case PRAGMA_OACC_CLAUSE_DEVICE:
32148 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32149 c_name = "device";
32150 break;
32151 case PRAGMA_OACC_CLAUSE_DEVICEPTR:
32152 clauses = cp_parser_oacc_data_clause_deviceptr (parser, clauses);
32153 c_name = "deviceptr";
32154 break;
32155 case PRAGMA_OACC_CLAUSE_DEVICE_RESIDENT:
32156 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32157 c_name = "device_resident";
32158 break;
32159 case PRAGMA_OACC_CLAUSE_FIRSTPRIVATE:
32160 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_FIRSTPRIVATE,
32161 clauses);
32162 c_name = "firstprivate";
32163 break;
32164 case PRAGMA_OACC_CLAUSE_GANG:
32165 c_name = "gang";
32166 clauses = cp_parser_oacc_shape_clause (parser, OMP_CLAUSE_GANG,
32167 c_name, clauses);
32168 break;
32169 case PRAGMA_OACC_CLAUSE_HOST:
32170 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32171 c_name = "host";
32172 break;
32173 case PRAGMA_OACC_CLAUSE_IF:
32174 clauses = cp_parser_omp_clause_if (parser, clauses, here, false);
32175 c_name = "if";
32176 break;
32177 case PRAGMA_OACC_CLAUSE_INDEPENDENT:
32178 clauses = cp_parser_oacc_simple_clause (parser,
32179 OMP_CLAUSE_INDEPENDENT,
32180 clauses, here);
32181 c_name = "independent";
32182 break;
32183 case PRAGMA_OACC_CLAUSE_LINK:
32184 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32185 c_name = "link";
32186 break;
32187 case PRAGMA_OACC_CLAUSE_NUM_GANGS:
32188 code = OMP_CLAUSE_NUM_GANGS;
32189 c_name = "num_gangs";
32190 clauses = cp_parser_oacc_single_int_clause (parser, code, c_name,
32191 clauses);
32192 break;
32193 case PRAGMA_OACC_CLAUSE_NUM_WORKERS:
32194 c_name = "num_workers";
32195 code = OMP_CLAUSE_NUM_WORKERS;
32196 clauses = cp_parser_oacc_single_int_clause (parser, code, c_name,
32197 clauses);
32198 break;
32199 case PRAGMA_OACC_CLAUSE_PRESENT:
32200 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32201 c_name = "present";
32202 break;
32203 case PRAGMA_OACC_CLAUSE_PRESENT_OR_COPY:
32204 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32205 c_name = "present_or_copy";
32206 break;
32207 case PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN:
32208 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32209 c_name = "present_or_copyin";
32210 break;
32211 case PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYOUT:
32212 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32213 c_name = "present_or_copyout";
32214 break;
32215 case PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE:
32216 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32217 c_name = "present_or_create";
32218 break;
32219 case PRAGMA_OACC_CLAUSE_PRIVATE:
32220 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_PRIVATE,
32221 clauses);
32222 c_name = "private";
32223 break;
32224 case PRAGMA_OACC_CLAUSE_REDUCTION:
32225 clauses = cp_parser_omp_clause_reduction (parser, clauses);
32226 c_name = "reduction";
32227 break;
32228 case PRAGMA_OACC_CLAUSE_SELF:
32229 clauses = cp_parser_oacc_data_clause (parser, c_kind, clauses);
32230 c_name = "self";
32231 break;
32232 case PRAGMA_OACC_CLAUSE_SEQ:
32233 clauses = cp_parser_oacc_simple_clause (parser, OMP_CLAUSE_SEQ,
32234 clauses, here);
32235 c_name = "seq";
32236 break;
32237 case PRAGMA_OACC_CLAUSE_TILE:
32238 clauses = cp_parser_oacc_clause_tile (parser, here, clauses);
32239 c_name = "tile";
32240 break;
32241 case PRAGMA_OACC_CLAUSE_USE_DEVICE:
32242 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_USE_DEVICE_PTR,
32243 clauses);
32244 c_name = "use_device";
32245 break;
32246 case PRAGMA_OACC_CLAUSE_VECTOR:
32247 c_name = "vector";
32248 clauses = cp_parser_oacc_shape_clause (parser, OMP_CLAUSE_VECTOR,
32249 c_name, clauses);
32250 break;
32251 case PRAGMA_OACC_CLAUSE_VECTOR_LENGTH:
32252 c_name = "vector_length";
32253 code = OMP_CLAUSE_VECTOR_LENGTH;
32254 clauses = cp_parser_oacc_single_int_clause (parser, code, c_name,
32255 clauses);
32256 break;
32257 case PRAGMA_OACC_CLAUSE_WAIT:
32258 clauses = cp_parser_oacc_clause_wait (parser, clauses);
32259 c_name = "wait";
32260 break;
32261 case PRAGMA_OACC_CLAUSE_WORKER:
32262 c_name = "worker";
32263 clauses = cp_parser_oacc_shape_clause (parser, OMP_CLAUSE_WORKER,
32264 c_name, clauses);
32265 break;
32266 default:
32267 cp_parser_error (parser, "expected %<#pragma acc%> clause");
32268 goto saw_error;
32269 }
32270
32271 first = false;
32272
32273 if (((mask >> c_kind) & 1) == 0)
32274 {
32275 /* Remove the invalid clause(s) from the list to avoid
32276 confusing the rest of the compiler. */
32277 clauses = prev;
32278 error_at (here, "%qs is not valid for %qs", c_name, where);
32279 }
32280 }
32281
32282 saw_error:
32283 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
32284
32285 if (finish_p)
32286 return finish_omp_clauses (clauses, C_ORT_ACC);
32287
32288 return clauses;
32289 }
32290
32291 /* Parse all OpenMP clauses. The set clauses allowed by the directive
32292 is a bitmask in MASK. Return the list of clauses found; the result
32293 of clause default goes in *pdefault. */
32294
32295 static tree
32296 cp_parser_omp_all_clauses (cp_parser *parser, omp_clause_mask mask,
32297 const char *where, cp_token *pragma_tok,
32298 bool finish_p = true)
32299 {
32300 tree clauses = NULL;
32301 bool first = true;
32302 cp_token *token = NULL;
32303
32304 while (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL))
32305 {
32306 pragma_omp_clause c_kind;
32307 const char *c_name;
32308 tree prev = clauses;
32309
32310 if (!first && cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
32311 cp_lexer_consume_token (parser->lexer);
32312
32313 token = cp_lexer_peek_token (parser->lexer);
32314 c_kind = cp_parser_omp_clause_name (parser);
32315
32316 switch (c_kind)
32317 {
32318 case PRAGMA_OMP_CLAUSE_COLLAPSE:
32319 clauses = cp_parser_omp_clause_collapse (parser, clauses,
32320 token->location);
32321 c_name = "collapse";
32322 break;
32323 case PRAGMA_OMP_CLAUSE_COPYIN:
32324 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_COPYIN, clauses);
32325 c_name = "copyin";
32326 break;
32327 case PRAGMA_OMP_CLAUSE_COPYPRIVATE:
32328 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_COPYPRIVATE,
32329 clauses);
32330 c_name = "copyprivate";
32331 break;
32332 case PRAGMA_OMP_CLAUSE_DEFAULT:
32333 clauses = cp_parser_omp_clause_default (parser, clauses,
32334 token->location, false);
32335 c_name = "default";
32336 break;
32337 case PRAGMA_OMP_CLAUSE_FINAL:
32338 clauses = cp_parser_omp_clause_final (parser, clauses, token->location);
32339 c_name = "final";
32340 break;
32341 case PRAGMA_OMP_CLAUSE_FIRSTPRIVATE:
32342 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_FIRSTPRIVATE,
32343 clauses);
32344 c_name = "firstprivate";
32345 break;
32346 case PRAGMA_OMP_CLAUSE_GRAINSIZE:
32347 clauses = cp_parser_omp_clause_grainsize (parser, clauses,
32348 token->location);
32349 c_name = "grainsize";
32350 break;
32351 case PRAGMA_OMP_CLAUSE_HINT:
32352 clauses = cp_parser_omp_clause_hint (parser, clauses,
32353 token->location);
32354 c_name = "hint";
32355 break;
32356 case PRAGMA_OMP_CLAUSE_DEFAULTMAP:
32357 clauses = cp_parser_omp_clause_defaultmap (parser, clauses,
32358 token->location);
32359 c_name = "defaultmap";
32360 break;
32361 case PRAGMA_OMP_CLAUSE_USE_DEVICE_PTR:
32362 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_USE_DEVICE_PTR,
32363 clauses);
32364 c_name = "use_device_ptr";
32365 break;
32366 case PRAGMA_OMP_CLAUSE_IS_DEVICE_PTR:
32367 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_IS_DEVICE_PTR,
32368 clauses);
32369 c_name = "is_device_ptr";
32370 break;
32371 case PRAGMA_OMP_CLAUSE_IF:
32372 clauses = cp_parser_omp_clause_if (parser, clauses, token->location,
32373 true);
32374 c_name = "if";
32375 break;
32376 case PRAGMA_OMP_CLAUSE_LASTPRIVATE:
32377 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_LASTPRIVATE,
32378 clauses);
32379 c_name = "lastprivate";
32380 break;
32381 case PRAGMA_OMP_CLAUSE_MERGEABLE:
32382 clauses = cp_parser_omp_clause_mergeable (parser, clauses,
32383 token->location);
32384 c_name = "mergeable";
32385 break;
32386 case PRAGMA_OMP_CLAUSE_NOWAIT:
32387 clauses = cp_parser_omp_clause_nowait (parser, clauses, token->location);
32388 c_name = "nowait";
32389 break;
32390 case PRAGMA_OMP_CLAUSE_NUM_TASKS:
32391 clauses = cp_parser_omp_clause_num_tasks (parser, clauses,
32392 token->location);
32393 c_name = "num_tasks";
32394 break;
32395 case PRAGMA_OMP_CLAUSE_NUM_THREADS:
32396 clauses = cp_parser_omp_clause_num_threads (parser, clauses,
32397 token->location);
32398 c_name = "num_threads";
32399 break;
32400 case PRAGMA_OMP_CLAUSE_ORDERED:
32401 clauses = cp_parser_omp_clause_ordered (parser, clauses,
32402 token->location);
32403 c_name = "ordered";
32404 break;
32405 case PRAGMA_OMP_CLAUSE_PRIORITY:
32406 clauses = cp_parser_omp_clause_priority (parser, clauses,
32407 token->location);
32408 c_name = "priority";
32409 break;
32410 case PRAGMA_OMP_CLAUSE_PRIVATE:
32411 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_PRIVATE,
32412 clauses);
32413 c_name = "private";
32414 break;
32415 case PRAGMA_OMP_CLAUSE_REDUCTION:
32416 clauses = cp_parser_omp_clause_reduction (parser, clauses);
32417 c_name = "reduction";
32418 break;
32419 case PRAGMA_OMP_CLAUSE_SCHEDULE:
32420 clauses = cp_parser_omp_clause_schedule (parser, clauses,
32421 token->location);
32422 c_name = "schedule";
32423 break;
32424 case PRAGMA_OMP_CLAUSE_SHARED:
32425 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_SHARED,
32426 clauses);
32427 c_name = "shared";
32428 break;
32429 case PRAGMA_OMP_CLAUSE_UNTIED:
32430 clauses = cp_parser_omp_clause_untied (parser, clauses,
32431 token->location);
32432 c_name = "untied";
32433 break;
32434 case PRAGMA_OMP_CLAUSE_INBRANCH:
32435 case PRAGMA_CILK_CLAUSE_MASK:
32436 clauses = cp_parser_omp_clause_branch (parser, OMP_CLAUSE_INBRANCH,
32437 clauses, token->location);
32438 c_name = "inbranch";
32439 break;
32440 case PRAGMA_OMP_CLAUSE_NOTINBRANCH:
32441 case PRAGMA_CILK_CLAUSE_NOMASK:
32442 clauses = cp_parser_omp_clause_branch (parser,
32443 OMP_CLAUSE_NOTINBRANCH,
32444 clauses, token->location);
32445 c_name = "notinbranch";
32446 break;
32447 case PRAGMA_OMP_CLAUSE_PARALLEL:
32448 clauses = cp_parser_omp_clause_cancelkind (parser, OMP_CLAUSE_PARALLEL,
32449 clauses, token->location);
32450 c_name = "parallel";
32451 if (!first)
32452 {
32453 clause_not_first:
32454 error_at (token->location, "%qs must be the first clause of %qs",
32455 c_name, where);
32456 clauses = prev;
32457 }
32458 break;
32459 case PRAGMA_OMP_CLAUSE_FOR:
32460 clauses = cp_parser_omp_clause_cancelkind (parser, OMP_CLAUSE_FOR,
32461 clauses, token->location);
32462 c_name = "for";
32463 if (!first)
32464 goto clause_not_first;
32465 break;
32466 case PRAGMA_OMP_CLAUSE_SECTIONS:
32467 clauses = cp_parser_omp_clause_cancelkind (parser, OMP_CLAUSE_SECTIONS,
32468 clauses, token->location);
32469 c_name = "sections";
32470 if (!first)
32471 goto clause_not_first;
32472 break;
32473 case PRAGMA_OMP_CLAUSE_TASKGROUP:
32474 clauses = cp_parser_omp_clause_cancelkind (parser, OMP_CLAUSE_TASKGROUP,
32475 clauses, token->location);
32476 c_name = "taskgroup";
32477 if (!first)
32478 goto clause_not_first;
32479 break;
32480 case PRAGMA_OMP_CLAUSE_LINK:
32481 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_LINK, clauses);
32482 c_name = "to";
32483 break;
32484 case PRAGMA_OMP_CLAUSE_TO:
32485 if ((mask & (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LINK)) != 0)
32486 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_TO_DECLARE,
32487 clauses);
32488 else
32489 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_TO, clauses);
32490 c_name = "to";
32491 break;
32492 case PRAGMA_OMP_CLAUSE_FROM:
32493 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_FROM, clauses);
32494 c_name = "from";
32495 break;
32496 case PRAGMA_OMP_CLAUSE_UNIFORM:
32497 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_UNIFORM,
32498 clauses);
32499 c_name = "uniform";
32500 break;
32501 case PRAGMA_OMP_CLAUSE_NUM_TEAMS:
32502 clauses = cp_parser_omp_clause_num_teams (parser, clauses,
32503 token->location);
32504 c_name = "num_teams";
32505 break;
32506 case PRAGMA_OMP_CLAUSE_THREAD_LIMIT:
32507 clauses = cp_parser_omp_clause_thread_limit (parser, clauses,
32508 token->location);
32509 c_name = "thread_limit";
32510 break;
32511 case PRAGMA_OMP_CLAUSE_ALIGNED:
32512 clauses = cp_parser_omp_clause_aligned (parser, clauses);
32513 c_name = "aligned";
32514 break;
32515 case PRAGMA_OMP_CLAUSE_LINEAR:
32516 {
32517 bool cilk_simd_fn = false, declare_simd = false;
32518 if (((mask >> PRAGMA_CILK_CLAUSE_VECTORLENGTH) & 1) != 0)
32519 cilk_simd_fn = true;
32520 else if (((mask >> PRAGMA_OMP_CLAUSE_UNIFORM) & 1) != 0)
32521 declare_simd = true;
32522 clauses = cp_parser_omp_clause_linear (parser, clauses,
32523 cilk_simd_fn, declare_simd);
32524 }
32525 c_name = "linear";
32526 break;
32527 case PRAGMA_OMP_CLAUSE_DEPEND:
32528 clauses = cp_parser_omp_clause_depend (parser, clauses,
32529 token->location);
32530 c_name = "depend";
32531 break;
32532 case PRAGMA_OMP_CLAUSE_MAP:
32533 clauses = cp_parser_omp_clause_map (parser, clauses);
32534 c_name = "map";
32535 break;
32536 case PRAGMA_OMP_CLAUSE_DEVICE:
32537 clauses = cp_parser_omp_clause_device (parser, clauses,
32538 token->location);
32539 c_name = "device";
32540 break;
32541 case PRAGMA_OMP_CLAUSE_DIST_SCHEDULE:
32542 clauses = cp_parser_omp_clause_dist_schedule (parser, clauses,
32543 token->location);
32544 c_name = "dist_schedule";
32545 break;
32546 case PRAGMA_OMP_CLAUSE_PROC_BIND:
32547 clauses = cp_parser_omp_clause_proc_bind (parser, clauses,
32548 token->location);
32549 c_name = "proc_bind";
32550 break;
32551 case PRAGMA_OMP_CLAUSE_SAFELEN:
32552 clauses = cp_parser_omp_clause_safelen (parser, clauses,
32553 token->location);
32554 c_name = "safelen";
32555 break;
32556 case PRAGMA_OMP_CLAUSE_SIMDLEN:
32557 clauses = cp_parser_omp_clause_simdlen (parser, clauses,
32558 token->location);
32559 c_name = "simdlen";
32560 break;
32561 case PRAGMA_OMP_CLAUSE_NOGROUP:
32562 clauses = cp_parser_omp_clause_nogroup (parser, clauses,
32563 token->location);
32564 c_name = "nogroup";
32565 break;
32566 case PRAGMA_OMP_CLAUSE_THREADS:
32567 clauses
32568 = cp_parser_omp_clause_orderedkind (parser, OMP_CLAUSE_THREADS,
32569 clauses, token->location);
32570 c_name = "threads";
32571 break;
32572 case PRAGMA_OMP_CLAUSE_SIMD:
32573 clauses
32574 = cp_parser_omp_clause_orderedkind (parser, OMP_CLAUSE_SIMD,
32575 clauses, token->location);
32576 c_name = "simd";
32577 break;
32578 case PRAGMA_CILK_CLAUSE_VECTORLENGTH:
32579 clauses = cp_parser_cilk_simd_vectorlength (parser, clauses, true);
32580 c_name = "simdlen";
32581 break;
32582 default:
32583 cp_parser_error (parser, "expected %<#pragma omp%> clause");
32584 goto saw_error;
32585 }
32586
32587 first = false;
32588
32589 if (((mask >> c_kind) & 1) == 0)
32590 {
32591 /* Remove the invalid clause(s) from the list to avoid
32592 confusing the rest of the compiler. */
32593 clauses = prev;
32594 error_at (token->location, "%qs is not valid for %qs", c_name, where);
32595 }
32596 }
32597 saw_error:
32598 /* In Cilk Plus SIMD enabled functions there is no pragma_token, so
32599 no reason to skip to the end. */
32600 if (!(flag_cilkplus && pragma_tok == NULL))
32601 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
32602 if (finish_p)
32603 {
32604 if ((mask & (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_UNIFORM)) != 0)
32605 return finish_omp_clauses (clauses, C_ORT_OMP_DECLARE_SIMD);
32606 else
32607 return finish_omp_clauses (clauses, C_ORT_OMP);
32608 }
32609 return clauses;
32610 }
32611
32612 /* OpenMP 2.5:
32613 structured-block:
32614 statement
32615
32616 In practice, we're also interested in adding the statement to an
32617 outer node. So it is convenient if we work around the fact that
32618 cp_parser_statement calls add_stmt. */
32619
32620 static unsigned
32621 cp_parser_begin_omp_structured_block (cp_parser *parser)
32622 {
32623 unsigned save = parser->in_statement;
32624
32625 /* Only move the values to IN_OMP_BLOCK if they weren't false.
32626 This preserves the "not within loop or switch" style error messages
32627 for nonsense cases like
32628 void foo() {
32629 #pragma omp single
32630 break;
32631 }
32632 */
32633 if (parser->in_statement)
32634 parser->in_statement = IN_OMP_BLOCK;
32635
32636 return save;
32637 }
32638
32639 static void
32640 cp_parser_end_omp_structured_block (cp_parser *parser, unsigned save)
32641 {
32642 parser->in_statement = save;
32643 }
32644
32645 static tree
32646 cp_parser_omp_structured_block (cp_parser *parser, bool *if_p)
32647 {
32648 tree stmt = begin_omp_structured_block ();
32649 unsigned int save = cp_parser_begin_omp_structured_block (parser);
32650
32651 cp_parser_statement (parser, NULL_TREE, false, if_p);
32652
32653 cp_parser_end_omp_structured_block (parser, save);
32654 return finish_omp_structured_block (stmt);
32655 }
32656
32657 /* OpenMP 2.5:
32658 # pragma omp atomic new-line
32659 expression-stmt
32660
32661 expression-stmt:
32662 x binop= expr | x++ | ++x | x-- | --x
32663 binop:
32664 +, *, -, /, &, ^, |, <<, >>
32665
32666 where x is an lvalue expression with scalar type.
32667
32668 OpenMP 3.1:
32669 # pragma omp atomic new-line
32670 update-stmt
32671
32672 # pragma omp atomic read new-line
32673 read-stmt
32674
32675 # pragma omp atomic write new-line
32676 write-stmt
32677
32678 # pragma omp atomic update new-line
32679 update-stmt
32680
32681 # pragma omp atomic capture new-line
32682 capture-stmt
32683
32684 # pragma omp atomic capture new-line
32685 capture-block
32686
32687 read-stmt:
32688 v = x
32689 write-stmt:
32690 x = expr
32691 update-stmt:
32692 expression-stmt | x = x binop expr
32693 capture-stmt:
32694 v = expression-stmt
32695 capture-block:
32696 { v = x; update-stmt; } | { update-stmt; v = x; }
32697
32698 OpenMP 4.0:
32699 update-stmt:
32700 expression-stmt | x = x binop expr | x = expr binop x
32701 capture-stmt:
32702 v = update-stmt
32703 capture-block:
32704 { v = x; update-stmt; } | { update-stmt; v = x; } | { v = x; x = expr; }
32705
32706 where x and v are lvalue expressions with scalar type. */
32707
32708 static void
32709 cp_parser_omp_atomic (cp_parser *parser, cp_token *pragma_tok)
32710 {
32711 tree lhs = NULL_TREE, rhs = NULL_TREE, v = NULL_TREE, lhs1 = NULL_TREE;
32712 tree rhs1 = NULL_TREE, orig_lhs;
32713 enum tree_code code = OMP_ATOMIC, opcode = NOP_EXPR;
32714 bool structured_block = false;
32715 bool seq_cst = false;
32716
32717 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
32718 {
32719 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
32720 const char *p = IDENTIFIER_POINTER (id);
32721
32722 if (!strcmp (p, "seq_cst"))
32723 {
32724 seq_cst = true;
32725 cp_lexer_consume_token (parser->lexer);
32726 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA)
32727 && cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_NAME)
32728 cp_lexer_consume_token (parser->lexer);
32729 }
32730 }
32731 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
32732 {
32733 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
32734 const char *p = IDENTIFIER_POINTER (id);
32735
32736 if (!strcmp (p, "read"))
32737 code = OMP_ATOMIC_READ;
32738 else if (!strcmp (p, "write"))
32739 code = NOP_EXPR;
32740 else if (!strcmp (p, "update"))
32741 code = OMP_ATOMIC;
32742 else if (!strcmp (p, "capture"))
32743 code = OMP_ATOMIC_CAPTURE_NEW;
32744 else
32745 p = NULL;
32746 if (p)
32747 cp_lexer_consume_token (parser->lexer);
32748 }
32749 if (!seq_cst)
32750 {
32751 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA)
32752 && cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_NAME)
32753 cp_lexer_consume_token (parser->lexer);
32754
32755 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
32756 {
32757 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
32758 const char *p = IDENTIFIER_POINTER (id);
32759
32760 if (!strcmp (p, "seq_cst"))
32761 {
32762 seq_cst = true;
32763 cp_lexer_consume_token (parser->lexer);
32764 }
32765 }
32766 }
32767 cp_parser_require_pragma_eol (parser, pragma_tok);
32768
32769 switch (code)
32770 {
32771 case OMP_ATOMIC_READ:
32772 case NOP_EXPR: /* atomic write */
32773 v = cp_parser_unary_expression (parser);
32774 if (v == error_mark_node)
32775 goto saw_error;
32776 if (!cp_parser_require (parser, CPP_EQ, RT_EQ))
32777 goto saw_error;
32778 if (code == NOP_EXPR)
32779 lhs = cp_parser_expression (parser);
32780 else
32781 lhs = cp_parser_unary_expression (parser);
32782 if (lhs == error_mark_node)
32783 goto saw_error;
32784 if (code == NOP_EXPR)
32785 {
32786 /* atomic write is represented by OMP_ATOMIC with NOP_EXPR
32787 opcode. */
32788 code = OMP_ATOMIC;
32789 rhs = lhs;
32790 lhs = v;
32791 v = NULL_TREE;
32792 }
32793 goto done;
32794 case OMP_ATOMIC_CAPTURE_NEW:
32795 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
32796 {
32797 cp_lexer_consume_token (parser->lexer);
32798 structured_block = true;
32799 }
32800 else
32801 {
32802 v = cp_parser_unary_expression (parser);
32803 if (v == error_mark_node)
32804 goto saw_error;
32805 if (!cp_parser_require (parser, CPP_EQ, RT_EQ))
32806 goto saw_error;
32807 }
32808 default:
32809 break;
32810 }
32811
32812 restart:
32813 lhs = cp_parser_unary_expression (parser);
32814 orig_lhs = lhs;
32815 switch (TREE_CODE (lhs))
32816 {
32817 case ERROR_MARK:
32818 goto saw_error;
32819
32820 case POSTINCREMENT_EXPR:
32821 if (code == OMP_ATOMIC_CAPTURE_NEW && !structured_block)
32822 code = OMP_ATOMIC_CAPTURE_OLD;
32823 /* FALLTHROUGH */
32824 case PREINCREMENT_EXPR:
32825 lhs = TREE_OPERAND (lhs, 0);
32826 opcode = PLUS_EXPR;
32827 rhs = integer_one_node;
32828 break;
32829
32830 case POSTDECREMENT_EXPR:
32831 if (code == OMP_ATOMIC_CAPTURE_NEW && !structured_block)
32832 code = OMP_ATOMIC_CAPTURE_OLD;
32833 /* FALLTHROUGH */
32834 case PREDECREMENT_EXPR:
32835 lhs = TREE_OPERAND (lhs, 0);
32836 opcode = MINUS_EXPR;
32837 rhs = integer_one_node;
32838 break;
32839
32840 case COMPOUND_EXPR:
32841 if (TREE_CODE (TREE_OPERAND (lhs, 0)) == SAVE_EXPR
32842 && TREE_CODE (TREE_OPERAND (lhs, 1)) == COMPOUND_EXPR
32843 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (lhs, 1), 0)) == MODIFY_EXPR
32844 && TREE_OPERAND (TREE_OPERAND (lhs, 1), 1) == TREE_OPERAND (lhs, 0)
32845 && TREE_CODE (TREE_TYPE (TREE_OPERAND (TREE_OPERAND
32846 (TREE_OPERAND (lhs, 1), 0), 0)))
32847 == BOOLEAN_TYPE)
32848 /* Undo effects of boolean_increment for post {in,de}crement. */
32849 lhs = TREE_OPERAND (TREE_OPERAND (lhs, 1), 0);
32850 /* FALLTHRU */
32851 case MODIFY_EXPR:
32852 if (TREE_CODE (lhs) == MODIFY_EXPR
32853 && TREE_CODE (TREE_TYPE (TREE_OPERAND (lhs, 0))) == BOOLEAN_TYPE)
32854 {
32855 /* Undo effects of boolean_increment. */
32856 if (integer_onep (TREE_OPERAND (lhs, 1)))
32857 {
32858 /* This is pre or post increment. */
32859 rhs = TREE_OPERAND (lhs, 1);
32860 lhs = TREE_OPERAND (lhs, 0);
32861 opcode = NOP_EXPR;
32862 if (code == OMP_ATOMIC_CAPTURE_NEW
32863 && !structured_block
32864 && TREE_CODE (orig_lhs) == COMPOUND_EXPR)
32865 code = OMP_ATOMIC_CAPTURE_OLD;
32866 break;
32867 }
32868 }
32869 /* FALLTHRU */
32870 default:
32871 switch (cp_lexer_peek_token (parser->lexer)->type)
32872 {
32873 case CPP_MULT_EQ:
32874 opcode = MULT_EXPR;
32875 break;
32876 case CPP_DIV_EQ:
32877 opcode = TRUNC_DIV_EXPR;
32878 break;
32879 case CPP_PLUS_EQ:
32880 opcode = PLUS_EXPR;
32881 break;
32882 case CPP_MINUS_EQ:
32883 opcode = MINUS_EXPR;
32884 break;
32885 case CPP_LSHIFT_EQ:
32886 opcode = LSHIFT_EXPR;
32887 break;
32888 case CPP_RSHIFT_EQ:
32889 opcode = RSHIFT_EXPR;
32890 break;
32891 case CPP_AND_EQ:
32892 opcode = BIT_AND_EXPR;
32893 break;
32894 case CPP_OR_EQ:
32895 opcode = BIT_IOR_EXPR;
32896 break;
32897 case CPP_XOR_EQ:
32898 opcode = BIT_XOR_EXPR;
32899 break;
32900 case CPP_EQ:
32901 enum cp_parser_prec oprec;
32902 cp_token *token;
32903 cp_lexer_consume_token (parser->lexer);
32904 cp_parser_parse_tentatively (parser);
32905 rhs1 = cp_parser_simple_cast_expression (parser);
32906 if (rhs1 == error_mark_node)
32907 {
32908 cp_parser_abort_tentative_parse (parser);
32909 cp_parser_simple_cast_expression (parser);
32910 goto saw_error;
32911 }
32912 token = cp_lexer_peek_token (parser->lexer);
32913 if (token->type != CPP_SEMICOLON && !cp_tree_equal (lhs, rhs1))
32914 {
32915 cp_parser_abort_tentative_parse (parser);
32916 cp_parser_parse_tentatively (parser);
32917 rhs = cp_parser_binary_expression (parser, false, true,
32918 PREC_NOT_OPERATOR, NULL);
32919 if (rhs == error_mark_node)
32920 {
32921 cp_parser_abort_tentative_parse (parser);
32922 cp_parser_binary_expression (parser, false, true,
32923 PREC_NOT_OPERATOR, NULL);
32924 goto saw_error;
32925 }
32926 switch (TREE_CODE (rhs))
32927 {
32928 case MULT_EXPR:
32929 case TRUNC_DIV_EXPR:
32930 case RDIV_EXPR:
32931 case PLUS_EXPR:
32932 case MINUS_EXPR:
32933 case LSHIFT_EXPR:
32934 case RSHIFT_EXPR:
32935 case BIT_AND_EXPR:
32936 case BIT_IOR_EXPR:
32937 case BIT_XOR_EXPR:
32938 if (cp_tree_equal (lhs, TREE_OPERAND (rhs, 1)))
32939 {
32940 if (cp_parser_parse_definitely (parser))
32941 {
32942 opcode = TREE_CODE (rhs);
32943 rhs1 = TREE_OPERAND (rhs, 0);
32944 rhs = TREE_OPERAND (rhs, 1);
32945 goto stmt_done;
32946 }
32947 else
32948 goto saw_error;
32949 }
32950 break;
32951 default:
32952 break;
32953 }
32954 cp_parser_abort_tentative_parse (parser);
32955 if (structured_block && code == OMP_ATOMIC_CAPTURE_OLD)
32956 {
32957 rhs = cp_parser_expression (parser);
32958 if (rhs == error_mark_node)
32959 goto saw_error;
32960 opcode = NOP_EXPR;
32961 rhs1 = NULL_TREE;
32962 goto stmt_done;
32963 }
32964 cp_parser_error (parser,
32965 "invalid form of %<#pragma omp atomic%>");
32966 goto saw_error;
32967 }
32968 if (!cp_parser_parse_definitely (parser))
32969 goto saw_error;
32970 switch (token->type)
32971 {
32972 case CPP_SEMICOLON:
32973 if (structured_block && code == OMP_ATOMIC_CAPTURE_NEW)
32974 {
32975 code = OMP_ATOMIC_CAPTURE_OLD;
32976 v = lhs;
32977 lhs = NULL_TREE;
32978 lhs1 = rhs1;
32979 rhs1 = NULL_TREE;
32980 cp_lexer_consume_token (parser->lexer);
32981 goto restart;
32982 }
32983 else if (structured_block)
32984 {
32985 opcode = NOP_EXPR;
32986 rhs = rhs1;
32987 rhs1 = NULL_TREE;
32988 goto stmt_done;
32989 }
32990 cp_parser_error (parser,
32991 "invalid form of %<#pragma omp atomic%>");
32992 goto saw_error;
32993 case CPP_MULT:
32994 opcode = MULT_EXPR;
32995 break;
32996 case CPP_DIV:
32997 opcode = TRUNC_DIV_EXPR;
32998 break;
32999 case CPP_PLUS:
33000 opcode = PLUS_EXPR;
33001 break;
33002 case CPP_MINUS:
33003 opcode = MINUS_EXPR;
33004 break;
33005 case CPP_LSHIFT:
33006 opcode = LSHIFT_EXPR;
33007 break;
33008 case CPP_RSHIFT:
33009 opcode = RSHIFT_EXPR;
33010 break;
33011 case CPP_AND:
33012 opcode = BIT_AND_EXPR;
33013 break;
33014 case CPP_OR:
33015 opcode = BIT_IOR_EXPR;
33016 break;
33017 case CPP_XOR:
33018 opcode = BIT_XOR_EXPR;
33019 break;
33020 default:
33021 cp_parser_error (parser,
33022 "invalid operator for %<#pragma omp atomic%>");
33023 goto saw_error;
33024 }
33025 oprec = TOKEN_PRECEDENCE (token);
33026 gcc_assert (oprec != PREC_NOT_OPERATOR);
33027 if (commutative_tree_code (opcode))
33028 oprec = (enum cp_parser_prec) (oprec - 1);
33029 cp_lexer_consume_token (parser->lexer);
33030 rhs = cp_parser_binary_expression (parser, false, false,
33031 oprec, NULL);
33032 if (rhs == error_mark_node)
33033 goto saw_error;
33034 goto stmt_done;
33035 /* FALLTHROUGH */
33036 default:
33037 cp_parser_error (parser,
33038 "invalid operator for %<#pragma omp atomic%>");
33039 goto saw_error;
33040 }
33041 cp_lexer_consume_token (parser->lexer);
33042
33043 rhs = cp_parser_expression (parser);
33044 if (rhs == error_mark_node)
33045 goto saw_error;
33046 break;
33047 }
33048 stmt_done:
33049 if (structured_block && code == OMP_ATOMIC_CAPTURE_NEW)
33050 {
33051 if (!cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON))
33052 goto saw_error;
33053 v = cp_parser_unary_expression (parser);
33054 if (v == error_mark_node)
33055 goto saw_error;
33056 if (!cp_parser_require (parser, CPP_EQ, RT_EQ))
33057 goto saw_error;
33058 lhs1 = cp_parser_unary_expression (parser);
33059 if (lhs1 == error_mark_node)
33060 goto saw_error;
33061 }
33062 if (structured_block)
33063 {
33064 cp_parser_consume_semicolon_at_end_of_statement (parser);
33065 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
33066 }
33067 done:
33068 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1, seq_cst);
33069 if (!structured_block)
33070 cp_parser_consume_semicolon_at_end_of_statement (parser);
33071 return;
33072
33073 saw_error:
33074 cp_parser_skip_to_end_of_block_or_statement (parser);
33075 if (structured_block)
33076 {
33077 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
33078 cp_lexer_consume_token (parser->lexer);
33079 else if (code == OMP_ATOMIC_CAPTURE_NEW)
33080 {
33081 cp_parser_skip_to_end_of_block_or_statement (parser);
33082 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
33083 cp_lexer_consume_token (parser->lexer);
33084 }
33085 }
33086 }
33087
33088
33089 /* OpenMP 2.5:
33090 # pragma omp barrier new-line */
33091
33092 static void
33093 cp_parser_omp_barrier (cp_parser *parser, cp_token *pragma_tok)
33094 {
33095 cp_parser_require_pragma_eol (parser, pragma_tok);
33096 finish_omp_barrier ();
33097 }
33098
33099 /* OpenMP 2.5:
33100 # pragma omp critical [(name)] new-line
33101 structured-block
33102
33103 OpenMP 4.5:
33104 # pragma omp critical [(name) [hint(expression)]] new-line
33105 structured-block */
33106
33107 #define OMP_CRITICAL_CLAUSE_MASK \
33108 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_HINT) )
33109
33110 static tree
33111 cp_parser_omp_critical (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
33112 {
33113 tree stmt, name = NULL_TREE, clauses = NULL_TREE;
33114
33115 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
33116 {
33117 cp_lexer_consume_token (parser->lexer);
33118
33119 name = cp_parser_identifier (parser);
33120
33121 if (name == error_mark_node
33122 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
33123 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
33124 /*or_comma=*/false,
33125 /*consume_paren=*/true);
33126 if (name == error_mark_node)
33127 name = NULL;
33128
33129 clauses = cp_parser_omp_all_clauses (parser,
33130 OMP_CRITICAL_CLAUSE_MASK,
33131 "#pragma omp critical", pragma_tok);
33132 }
33133 else
33134 cp_parser_require_pragma_eol (parser, pragma_tok);
33135
33136 stmt = cp_parser_omp_structured_block (parser, if_p);
33137 return c_finish_omp_critical (input_location, stmt, name, clauses);
33138 }
33139
33140 /* OpenMP 2.5:
33141 # pragma omp flush flush-vars[opt] new-line
33142
33143 flush-vars:
33144 ( variable-list ) */
33145
33146 static void
33147 cp_parser_omp_flush (cp_parser *parser, cp_token *pragma_tok)
33148 {
33149 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
33150 (void) cp_parser_omp_var_list (parser, OMP_CLAUSE_ERROR, NULL);
33151 cp_parser_require_pragma_eol (parser, pragma_tok);
33152
33153 finish_omp_flush ();
33154 }
33155
33156 /* Helper function, to parse omp for increment expression. */
33157
33158 static tree
33159 cp_parser_omp_for_cond (cp_parser *parser, tree decl, enum tree_code code)
33160 {
33161 tree cond = cp_parser_binary_expression (parser, false, true,
33162 PREC_NOT_OPERATOR, NULL);
33163 if (cond == error_mark_node
33164 || cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
33165 {
33166 cp_parser_skip_to_end_of_statement (parser);
33167 return error_mark_node;
33168 }
33169
33170 switch (TREE_CODE (cond))
33171 {
33172 case GT_EXPR:
33173 case GE_EXPR:
33174 case LT_EXPR:
33175 case LE_EXPR:
33176 break;
33177 case NE_EXPR:
33178 if (code == CILK_SIMD || code == CILK_FOR)
33179 break;
33180 /* Fall through: OpenMP disallows NE_EXPR. */
33181 default:
33182 return error_mark_node;
33183 }
33184
33185 /* If decl is an iterator, preserve LHS and RHS of the relational
33186 expr until finish_omp_for. */
33187 if (decl
33188 && (type_dependent_expression_p (decl)
33189 || CLASS_TYPE_P (TREE_TYPE (decl))))
33190 return cond;
33191
33192 return build_x_binary_op (EXPR_LOC_OR_LOC (cond, input_location),
33193 TREE_CODE (cond),
33194 TREE_OPERAND (cond, 0), ERROR_MARK,
33195 TREE_OPERAND (cond, 1), ERROR_MARK,
33196 /*overload=*/NULL, tf_warning_or_error);
33197 }
33198
33199 /* Helper function, to parse omp for increment expression. */
33200
33201 static tree
33202 cp_parser_omp_for_incr (cp_parser *parser, tree decl)
33203 {
33204 cp_token *token = cp_lexer_peek_token (parser->lexer);
33205 enum tree_code op;
33206 tree lhs, rhs;
33207 cp_id_kind idk;
33208 bool decl_first;
33209
33210 if (token->type == CPP_PLUS_PLUS || token->type == CPP_MINUS_MINUS)
33211 {
33212 op = (token->type == CPP_PLUS_PLUS
33213 ? PREINCREMENT_EXPR : PREDECREMENT_EXPR);
33214 cp_lexer_consume_token (parser->lexer);
33215 lhs = cp_parser_simple_cast_expression (parser);
33216 if (lhs != decl
33217 && (!processing_template_decl || !cp_tree_equal (lhs, decl)))
33218 return error_mark_node;
33219 return build2 (op, TREE_TYPE (decl), decl, NULL_TREE);
33220 }
33221
33222 lhs = cp_parser_primary_expression (parser, false, false, false, &idk);
33223 if (lhs != decl
33224 && (!processing_template_decl || !cp_tree_equal (lhs, decl)))
33225 return error_mark_node;
33226
33227 token = cp_lexer_peek_token (parser->lexer);
33228 if (token->type == CPP_PLUS_PLUS || token->type == CPP_MINUS_MINUS)
33229 {
33230 op = (token->type == CPP_PLUS_PLUS
33231 ? POSTINCREMENT_EXPR : POSTDECREMENT_EXPR);
33232 cp_lexer_consume_token (parser->lexer);
33233 return build2 (op, TREE_TYPE (decl), decl, NULL_TREE);
33234 }
33235
33236 op = cp_parser_assignment_operator_opt (parser);
33237 if (op == ERROR_MARK)
33238 return error_mark_node;
33239
33240 if (op != NOP_EXPR)
33241 {
33242 rhs = cp_parser_assignment_expression (parser);
33243 rhs = build2 (op, TREE_TYPE (decl), decl, rhs);
33244 return build2 (MODIFY_EXPR, TREE_TYPE (decl), decl, rhs);
33245 }
33246
33247 lhs = cp_parser_binary_expression (parser, false, false,
33248 PREC_ADDITIVE_EXPRESSION, NULL);
33249 token = cp_lexer_peek_token (parser->lexer);
33250 decl_first = (lhs == decl
33251 || (processing_template_decl && cp_tree_equal (lhs, decl)));
33252 if (decl_first)
33253 lhs = NULL_TREE;
33254 if (token->type != CPP_PLUS
33255 && token->type != CPP_MINUS)
33256 return error_mark_node;
33257
33258 do
33259 {
33260 op = token->type == CPP_PLUS ? PLUS_EXPR : MINUS_EXPR;
33261 cp_lexer_consume_token (parser->lexer);
33262 rhs = cp_parser_binary_expression (parser, false, false,
33263 PREC_ADDITIVE_EXPRESSION, NULL);
33264 token = cp_lexer_peek_token (parser->lexer);
33265 if (token->type == CPP_PLUS || token->type == CPP_MINUS || decl_first)
33266 {
33267 if (lhs == NULL_TREE)
33268 {
33269 if (op == PLUS_EXPR)
33270 lhs = rhs;
33271 else
33272 lhs = build_x_unary_op (input_location, NEGATE_EXPR, rhs,
33273 tf_warning_or_error);
33274 }
33275 else
33276 lhs = build_x_binary_op (input_location, op, lhs, ERROR_MARK, rhs,
33277 ERROR_MARK, NULL, tf_warning_or_error);
33278 }
33279 }
33280 while (token->type == CPP_PLUS || token->type == CPP_MINUS);
33281
33282 if (!decl_first)
33283 {
33284 if ((rhs != decl
33285 && (!processing_template_decl || !cp_tree_equal (rhs, decl)))
33286 || op == MINUS_EXPR)
33287 return error_mark_node;
33288 rhs = build2 (op, TREE_TYPE (decl), lhs, decl);
33289 }
33290 else
33291 rhs = build2 (PLUS_EXPR, TREE_TYPE (decl), decl, lhs);
33292
33293 return build2 (MODIFY_EXPR, TREE_TYPE (decl), decl, rhs);
33294 }
33295
33296 /* Parse the initialization statement of either an OpenMP for loop or
33297 a Cilk Plus for loop.
33298
33299 Return true if the resulting construct should have an
33300 OMP_CLAUSE_PRIVATE added to it. */
33301
33302 static tree
33303 cp_parser_omp_for_loop_init (cp_parser *parser,
33304 enum tree_code code,
33305 tree &this_pre_body,
33306 vec<tree, va_gc> *for_block,
33307 tree &init,
33308 tree &orig_init,
33309 tree &decl,
33310 tree &real_decl)
33311 {
33312 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
33313 return NULL_TREE;
33314
33315 tree add_private_clause = NULL_TREE;
33316
33317 /* See 2.5.1 (in OpenMP 3.0, similar wording is in 2.5 standard too):
33318
33319 init-expr:
33320 var = lb
33321 integer-type var = lb
33322 random-access-iterator-type var = lb
33323 pointer-type var = lb
33324 */
33325 cp_decl_specifier_seq type_specifiers;
33326
33327 /* First, try to parse as an initialized declaration. See
33328 cp_parser_condition, from whence the bulk of this is copied. */
33329
33330 cp_parser_parse_tentatively (parser);
33331 cp_parser_type_specifier_seq (parser, /*is_declaration=*/true,
33332 /*is_trailing_return=*/false,
33333 &type_specifiers);
33334 if (cp_parser_parse_definitely (parser))
33335 {
33336 /* If parsing a type specifier seq succeeded, then this
33337 MUST be a initialized declaration. */
33338 tree asm_specification, attributes;
33339 cp_declarator *declarator;
33340
33341 declarator = cp_parser_declarator (parser,
33342 CP_PARSER_DECLARATOR_NAMED,
33343 /*ctor_dtor_or_conv_p=*/NULL,
33344 /*parenthesized_p=*/NULL,
33345 /*member_p=*/false,
33346 /*friend_p=*/false);
33347 attributes = cp_parser_attributes_opt (parser);
33348 asm_specification = cp_parser_asm_specification_opt (parser);
33349
33350 if (declarator == cp_error_declarator)
33351 cp_parser_skip_to_end_of_statement (parser);
33352
33353 else
33354 {
33355 tree pushed_scope, auto_node;
33356
33357 decl = start_decl (declarator, &type_specifiers,
33358 SD_INITIALIZED, attributes,
33359 /*prefix_attributes=*/NULL_TREE,
33360 &pushed_scope);
33361
33362 auto_node = type_uses_auto (TREE_TYPE (decl));
33363 if (cp_lexer_next_token_is_not (parser->lexer, CPP_EQ))
33364 {
33365 if (cp_lexer_next_token_is (parser->lexer,
33366 CPP_OPEN_PAREN))
33367 {
33368 if (code != CILK_SIMD && code != CILK_FOR)
33369 error ("parenthesized initialization is not allowed in "
33370 "OpenMP %<for%> loop");
33371 else
33372 error ("parenthesized initialization is "
33373 "not allowed in for-loop");
33374 }
33375 else
33376 /* Trigger an error. */
33377 cp_parser_require (parser, CPP_EQ, RT_EQ);
33378
33379 init = error_mark_node;
33380 cp_parser_skip_to_end_of_statement (parser);
33381 }
33382 else if (CLASS_TYPE_P (TREE_TYPE (decl))
33383 || type_dependent_expression_p (decl)
33384 || auto_node)
33385 {
33386 bool is_direct_init, is_non_constant_init;
33387
33388 init = cp_parser_initializer (parser,
33389 &is_direct_init,
33390 &is_non_constant_init);
33391
33392 if (auto_node)
33393 {
33394 TREE_TYPE (decl)
33395 = do_auto_deduction (TREE_TYPE (decl), init,
33396 auto_node);
33397
33398 if (!CLASS_TYPE_P (TREE_TYPE (decl))
33399 && !type_dependent_expression_p (decl))
33400 goto non_class;
33401 }
33402
33403 cp_finish_decl (decl, init, !is_non_constant_init,
33404 asm_specification,
33405 LOOKUP_ONLYCONVERTING);
33406 orig_init = init;
33407 if (CLASS_TYPE_P (TREE_TYPE (decl)))
33408 {
33409 vec_safe_push (for_block, this_pre_body);
33410 init = NULL_TREE;
33411 }
33412 else
33413 init = pop_stmt_list (this_pre_body);
33414 this_pre_body = NULL_TREE;
33415 }
33416 else
33417 {
33418 /* Consume '='. */
33419 cp_lexer_consume_token (parser->lexer);
33420 init = cp_parser_assignment_expression (parser);
33421
33422 non_class:
33423 if (TREE_CODE (TREE_TYPE (decl)) == REFERENCE_TYPE)
33424 init = error_mark_node;
33425 else
33426 cp_finish_decl (decl, NULL_TREE,
33427 /*init_const_expr_p=*/false,
33428 asm_specification,
33429 LOOKUP_ONLYCONVERTING);
33430 }
33431
33432 if (pushed_scope)
33433 pop_scope (pushed_scope);
33434 }
33435 }
33436 else
33437 {
33438 cp_id_kind idk;
33439 /* If parsing a type specifier sequence failed, then
33440 this MUST be a simple expression. */
33441 if (code == CILK_FOR)
33442 error ("%<_Cilk_for%> allows expression instead of declaration only "
33443 "in C, not in C++");
33444 cp_parser_parse_tentatively (parser);
33445 decl = cp_parser_primary_expression (parser, false, false,
33446 false, &idk);
33447 cp_token *last_tok = cp_lexer_peek_token (parser->lexer);
33448 if (!cp_parser_error_occurred (parser)
33449 && decl
33450 && (TREE_CODE (decl) == COMPONENT_REF
33451 || (TREE_CODE (decl) == SCOPE_REF && TREE_TYPE (decl))))
33452 {
33453 cp_parser_abort_tentative_parse (parser);
33454 cp_parser_parse_tentatively (parser);
33455 cp_token *token = cp_lexer_peek_token (parser->lexer);
33456 tree name = cp_parser_id_expression (parser, /*template_p=*/false,
33457 /*check_dependency_p=*/true,
33458 /*template_p=*/NULL,
33459 /*declarator_p=*/false,
33460 /*optional_p=*/false);
33461 if (name != error_mark_node
33462 && last_tok == cp_lexer_peek_token (parser->lexer))
33463 {
33464 decl = cp_parser_lookup_name_simple (parser, name,
33465 token->location);
33466 if (TREE_CODE (decl) == FIELD_DECL)
33467 add_private_clause = omp_privatize_field (decl, false);
33468 }
33469 cp_parser_abort_tentative_parse (parser);
33470 cp_parser_parse_tentatively (parser);
33471 decl = cp_parser_primary_expression (parser, false, false,
33472 false, &idk);
33473 }
33474 if (!cp_parser_error_occurred (parser)
33475 && decl
33476 && DECL_P (decl)
33477 && CLASS_TYPE_P (TREE_TYPE (decl)))
33478 {
33479 tree rhs;
33480
33481 cp_parser_parse_definitely (parser);
33482 cp_parser_require (parser, CPP_EQ, RT_EQ);
33483 rhs = cp_parser_assignment_expression (parser);
33484 orig_init = rhs;
33485 finish_expr_stmt (build_x_modify_expr (EXPR_LOCATION (rhs),
33486 decl, NOP_EXPR,
33487 rhs,
33488 tf_warning_or_error));
33489 if (!add_private_clause)
33490 add_private_clause = decl;
33491 }
33492 else
33493 {
33494 decl = NULL;
33495 cp_parser_abort_tentative_parse (parser);
33496 init = cp_parser_expression (parser);
33497 if (init)
33498 {
33499 if (TREE_CODE (init) == MODIFY_EXPR
33500 || TREE_CODE (init) == MODOP_EXPR)
33501 real_decl = TREE_OPERAND (init, 0);
33502 }
33503 }
33504 }
33505 return add_private_clause;
33506 }
33507
33508 /* Parse the restricted form of the for statement allowed by OpenMP. */
33509
33510 static tree
33511 cp_parser_omp_for_loop (cp_parser *parser, enum tree_code code, tree clauses,
33512 tree *cclauses, bool *if_p)
33513 {
33514 tree init, orig_init, cond, incr, body, decl, pre_body = NULL_TREE, ret;
33515 tree real_decl, initv, condv, incrv, declv;
33516 tree this_pre_body, cl, ordered_cl = NULL_TREE;
33517 location_t loc_first;
33518 bool collapse_err = false;
33519 int i, collapse = 1, ordered = 0, count, nbraces = 0;
33520 vec<tree, va_gc> *for_block = make_tree_vector ();
33521 auto_vec<tree, 4> orig_inits;
33522
33523 for (cl = clauses; cl; cl = OMP_CLAUSE_CHAIN (cl))
33524 if (OMP_CLAUSE_CODE (cl) == OMP_CLAUSE_COLLAPSE)
33525 collapse = tree_to_shwi (OMP_CLAUSE_COLLAPSE_EXPR (cl));
33526 else if (OMP_CLAUSE_CODE (cl) == OMP_CLAUSE_ORDERED
33527 && OMP_CLAUSE_ORDERED_EXPR (cl))
33528 {
33529 ordered_cl = cl;
33530 ordered = tree_to_shwi (OMP_CLAUSE_ORDERED_EXPR (cl));
33531 }
33532
33533 if (ordered && ordered < collapse)
33534 {
33535 error_at (OMP_CLAUSE_LOCATION (ordered_cl),
33536 "%<ordered%> clause parameter is less than %<collapse%>");
33537 OMP_CLAUSE_ORDERED_EXPR (ordered_cl)
33538 = build_int_cst (NULL_TREE, collapse);
33539 ordered = collapse;
33540 }
33541 if (ordered)
33542 {
33543 for (tree *pc = &clauses; *pc; )
33544 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_LINEAR)
33545 {
33546 error_at (OMP_CLAUSE_LOCATION (*pc),
33547 "%<linear%> clause may not be specified together "
33548 "with %<ordered%> clause with a parameter");
33549 *pc = OMP_CLAUSE_CHAIN (*pc);
33550 }
33551 else
33552 pc = &OMP_CLAUSE_CHAIN (*pc);
33553 }
33554
33555 gcc_assert (collapse >= 1 && ordered >= 0);
33556 count = ordered ? ordered : collapse;
33557
33558 declv = make_tree_vec (count);
33559 initv = make_tree_vec (count);
33560 condv = make_tree_vec (count);
33561 incrv = make_tree_vec (count);
33562
33563 loc_first = cp_lexer_peek_token (parser->lexer)->location;
33564
33565 for (i = 0; i < count; i++)
33566 {
33567 int bracecount = 0;
33568 tree add_private_clause = NULL_TREE;
33569 location_t loc;
33570
33571 if (code != CILK_FOR
33572 && !cp_lexer_next_token_is_keyword (parser->lexer, RID_FOR))
33573 {
33574 cp_parser_error (parser, "for statement expected");
33575 return NULL;
33576 }
33577 if (code == CILK_FOR
33578 && !cp_lexer_next_token_is_keyword (parser->lexer, RID_CILK_FOR))
33579 {
33580 cp_parser_error (parser, "_Cilk_for statement expected");
33581 return NULL;
33582 }
33583 loc = cp_lexer_consume_token (parser->lexer)->location;
33584
33585 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
33586 return NULL;
33587
33588 init = orig_init = decl = real_decl = NULL;
33589 this_pre_body = push_stmt_list ();
33590
33591 add_private_clause
33592 = cp_parser_omp_for_loop_init (parser, code,
33593 this_pre_body, for_block,
33594 init, orig_init, decl, real_decl);
33595
33596 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
33597 if (this_pre_body)
33598 {
33599 this_pre_body = pop_stmt_list (this_pre_body);
33600 if (pre_body)
33601 {
33602 tree t = pre_body;
33603 pre_body = push_stmt_list ();
33604 add_stmt (t);
33605 add_stmt (this_pre_body);
33606 pre_body = pop_stmt_list (pre_body);
33607 }
33608 else
33609 pre_body = this_pre_body;
33610 }
33611
33612 if (decl)
33613 real_decl = decl;
33614 if (cclauses != NULL
33615 && cclauses[C_OMP_CLAUSE_SPLIT_PARALLEL] != NULL
33616 && real_decl != NULL_TREE)
33617 {
33618 tree *c;
33619 for (c = &cclauses[C_OMP_CLAUSE_SPLIT_PARALLEL]; *c ; )
33620 if (OMP_CLAUSE_CODE (*c) == OMP_CLAUSE_FIRSTPRIVATE
33621 && OMP_CLAUSE_DECL (*c) == real_decl)
33622 {
33623 error_at (loc, "iteration variable %qD"
33624 " should not be firstprivate", real_decl);
33625 *c = OMP_CLAUSE_CHAIN (*c);
33626 }
33627 else if (OMP_CLAUSE_CODE (*c) == OMP_CLAUSE_LASTPRIVATE
33628 && OMP_CLAUSE_DECL (*c) == real_decl)
33629 {
33630 /* Move lastprivate (decl) clause to OMP_FOR_CLAUSES. */
33631 tree l = *c;
33632 *c = OMP_CLAUSE_CHAIN (*c);
33633 if (code == OMP_SIMD)
33634 {
33635 OMP_CLAUSE_CHAIN (l) = cclauses[C_OMP_CLAUSE_SPLIT_FOR];
33636 cclauses[C_OMP_CLAUSE_SPLIT_FOR] = l;
33637 }
33638 else
33639 {
33640 OMP_CLAUSE_CHAIN (l) = clauses;
33641 clauses = l;
33642 }
33643 add_private_clause = NULL_TREE;
33644 }
33645 else
33646 {
33647 if (OMP_CLAUSE_CODE (*c) == OMP_CLAUSE_PRIVATE
33648 && OMP_CLAUSE_DECL (*c) == real_decl)
33649 add_private_clause = NULL_TREE;
33650 c = &OMP_CLAUSE_CHAIN (*c);
33651 }
33652 }
33653
33654 if (add_private_clause)
33655 {
33656 tree c;
33657 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
33658 {
33659 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_PRIVATE
33660 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE)
33661 && OMP_CLAUSE_DECL (c) == decl)
33662 break;
33663 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
33664 && OMP_CLAUSE_DECL (c) == decl)
33665 error_at (loc, "iteration variable %qD "
33666 "should not be firstprivate",
33667 decl);
33668 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
33669 && OMP_CLAUSE_DECL (c) == decl)
33670 error_at (loc, "iteration variable %qD should not be reduction",
33671 decl);
33672 }
33673 if (c == NULL)
33674 {
33675 if (code != OMP_SIMD)
33676 c = build_omp_clause (loc, OMP_CLAUSE_PRIVATE);
33677 else if (collapse == 1)
33678 c = build_omp_clause (loc, OMP_CLAUSE_LINEAR);
33679 else
33680 c = build_omp_clause (loc, OMP_CLAUSE_LASTPRIVATE);
33681 OMP_CLAUSE_DECL (c) = add_private_clause;
33682 c = finish_omp_clauses (c, C_ORT_OMP);
33683 if (c)
33684 {
33685 OMP_CLAUSE_CHAIN (c) = clauses;
33686 clauses = c;
33687 /* For linear, signal that we need to fill up
33688 the so far unknown linear step. */
33689 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LINEAR)
33690 OMP_CLAUSE_LINEAR_STEP (c) = NULL_TREE;
33691 }
33692 }
33693 }
33694
33695 cond = NULL;
33696 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
33697 cond = cp_parser_omp_for_cond (parser, decl, code);
33698 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
33699
33700 incr = NULL;
33701 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN))
33702 {
33703 /* If decl is an iterator, preserve the operator on decl
33704 until finish_omp_for. */
33705 if (real_decl
33706 && ((processing_template_decl
33707 && (TREE_TYPE (real_decl) == NULL_TREE
33708 || !POINTER_TYPE_P (TREE_TYPE (real_decl))))
33709 || CLASS_TYPE_P (TREE_TYPE (real_decl))))
33710 incr = cp_parser_omp_for_incr (parser, real_decl);
33711 else
33712 incr = cp_parser_expression (parser);
33713 if (!EXPR_HAS_LOCATION (incr))
33714 protected_set_expr_location (incr, input_location);
33715 }
33716
33717 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
33718 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
33719 /*or_comma=*/false,
33720 /*consume_paren=*/true);
33721
33722 TREE_VEC_ELT (declv, i) = decl;
33723 TREE_VEC_ELT (initv, i) = init;
33724 TREE_VEC_ELT (condv, i) = cond;
33725 TREE_VEC_ELT (incrv, i) = incr;
33726 if (orig_init)
33727 {
33728 orig_inits.safe_grow_cleared (i + 1);
33729 orig_inits[i] = orig_init;
33730 }
33731
33732 if (i == count - 1)
33733 break;
33734
33735 /* FIXME: OpenMP 3.0 draft isn't very clear on what exactly is allowed
33736 in between the collapsed for loops to be still considered perfectly
33737 nested. Hopefully the final version clarifies this.
33738 For now handle (multiple) {'s and empty statements. */
33739 cp_parser_parse_tentatively (parser);
33740 do
33741 {
33742 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_FOR))
33743 break;
33744 else if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
33745 {
33746 cp_lexer_consume_token (parser->lexer);
33747 bracecount++;
33748 }
33749 else if (bracecount
33750 && cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
33751 cp_lexer_consume_token (parser->lexer);
33752 else
33753 {
33754 loc = cp_lexer_peek_token (parser->lexer)->location;
33755 error_at (loc, "not enough collapsed for loops");
33756 collapse_err = true;
33757 cp_parser_abort_tentative_parse (parser);
33758 declv = NULL_TREE;
33759 break;
33760 }
33761 }
33762 while (1);
33763
33764 if (declv)
33765 {
33766 cp_parser_parse_definitely (parser);
33767 nbraces += bracecount;
33768 }
33769 }
33770
33771 if (nbraces)
33772 if_p = NULL;
33773
33774 /* Note that we saved the original contents of this flag when we entered
33775 the structured block, and so we don't need to re-save it here. */
33776 if (code == CILK_SIMD || code == CILK_FOR)
33777 parser->in_statement = IN_CILK_SIMD_FOR;
33778 else
33779 parser->in_statement = IN_OMP_FOR;
33780
33781 /* Note that the grammar doesn't call for a structured block here,
33782 though the loop as a whole is a structured block. */
33783 body = push_stmt_list ();
33784 cp_parser_statement (parser, NULL_TREE, false, if_p);
33785 body = pop_stmt_list (body);
33786
33787 if (declv == NULL_TREE)
33788 ret = NULL_TREE;
33789 else
33790 ret = finish_omp_for (loc_first, code, declv, NULL, initv, condv, incrv,
33791 body, pre_body, &orig_inits, clauses);
33792
33793 while (nbraces)
33794 {
33795 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
33796 {
33797 cp_lexer_consume_token (parser->lexer);
33798 nbraces--;
33799 }
33800 else if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
33801 cp_lexer_consume_token (parser->lexer);
33802 else
33803 {
33804 if (!collapse_err)
33805 {
33806 error_at (cp_lexer_peek_token (parser->lexer)->location,
33807 "collapsed loops not perfectly nested");
33808 }
33809 collapse_err = true;
33810 cp_parser_statement_seq_opt (parser, NULL);
33811 if (cp_lexer_next_token_is (parser->lexer, CPP_EOF))
33812 break;
33813 }
33814 }
33815
33816 while (!for_block->is_empty ())
33817 add_stmt (pop_stmt_list (for_block->pop ()));
33818 release_tree_vector (for_block);
33819
33820 return ret;
33821 }
33822
33823 /* Helper function for OpenMP parsing, split clauses and call
33824 finish_omp_clauses on each of the set of clauses afterwards. */
33825
33826 static void
33827 cp_omp_split_clauses (location_t loc, enum tree_code code,
33828 omp_clause_mask mask, tree clauses, tree *cclauses)
33829 {
33830 int i;
33831 c_omp_split_clauses (loc, code, mask, clauses, cclauses);
33832 for (i = 0; i < C_OMP_CLAUSE_SPLIT_COUNT; i++)
33833 if (cclauses[i])
33834 cclauses[i] = finish_omp_clauses (cclauses[i], C_ORT_OMP);
33835 }
33836
33837 /* OpenMP 4.0:
33838 #pragma omp simd simd-clause[optseq] new-line
33839 for-loop */
33840
33841 #define OMP_SIMD_CLAUSE_MASK \
33842 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SAFELEN) \
33843 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SIMDLEN) \
33844 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LINEAR) \
33845 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_ALIGNED) \
33846 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
33847 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
33848 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_REDUCTION) \
33849 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COLLAPSE))
33850
33851 static tree
33852 cp_parser_omp_simd (cp_parser *parser, cp_token *pragma_tok,
33853 char *p_name, omp_clause_mask mask, tree *cclauses,
33854 bool *if_p)
33855 {
33856 tree clauses, sb, ret;
33857 unsigned int save;
33858 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
33859
33860 strcat (p_name, " simd");
33861 mask |= OMP_SIMD_CLAUSE_MASK;
33862
33863 clauses = cp_parser_omp_all_clauses (parser, mask, p_name, pragma_tok,
33864 cclauses == NULL);
33865 if (cclauses)
33866 {
33867 cp_omp_split_clauses (loc, OMP_SIMD, mask, clauses, cclauses);
33868 clauses = cclauses[C_OMP_CLAUSE_SPLIT_SIMD];
33869 tree c = find_omp_clause (cclauses[C_OMP_CLAUSE_SPLIT_FOR],
33870 OMP_CLAUSE_ORDERED);
33871 if (c && OMP_CLAUSE_ORDERED_EXPR (c))
33872 {
33873 error_at (OMP_CLAUSE_LOCATION (c),
33874 "%<ordered%> clause with parameter may not be specified "
33875 "on %qs construct", p_name);
33876 OMP_CLAUSE_ORDERED_EXPR (c) = NULL_TREE;
33877 }
33878 }
33879
33880 sb = begin_omp_structured_block ();
33881 save = cp_parser_begin_omp_structured_block (parser);
33882
33883 ret = cp_parser_omp_for_loop (parser, OMP_SIMD, clauses, cclauses, if_p);
33884
33885 cp_parser_end_omp_structured_block (parser, save);
33886 add_stmt (finish_omp_structured_block (sb));
33887
33888 return ret;
33889 }
33890
33891 /* OpenMP 2.5:
33892 #pragma omp for for-clause[optseq] new-line
33893 for-loop
33894
33895 OpenMP 4.0:
33896 #pragma omp for simd for-simd-clause[optseq] new-line
33897 for-loop */
33898
33899 #define OMP_FOR_CLAUSE_MASK \
33900 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
33901 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
33902 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
33903 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LINEAR) \
33904 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_REDUCTION) \
33905 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_ORDERED) \
33906 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SCHEDULE) \
33907 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT) \
33908 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COLLAPSE))
33909
33910 static tree
33911 cp_parser_omp_for (cp_parser *parser, cp_token *pragma_tok,
33912 char *p_name, omp_clause_mask mask, tree *cclauses,
33913 bool *if_p)
33914 {
33915 tree clauses, sb, ret;
33916 unsigned int save;
33917 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
33918
33919 strcat (p_name, " for");
33920 mask |= OMP_FOR_CLAUSE_MASK;
33921 if (cclauses)
33922 mask &= ~(OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT);
33923 /* Composite distribute parallel for{, simd} disallows ordered clause. */
33924 if ((mask & (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DIST_SCHEDULE)) != 0)
33925 mask &= ~(OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_ORDERED);
33926
33927 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
33928 {
33929 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
33930 const char *p = IDENTIFIER_POINTER (id);
33931
33932 if (strcmp (p, "simd") == 0)
33933 {
33934 tree cclauses_buf[C_OMP_CLAUSE_SPLIT_COUNT];
33935 if (cclauses == NULL)
33936 cclauses = cclauses_buf;
33937
33938 cp_lexer_consume_token (parser->lexer);
33939 if (!flag_openmp) /* flag_openmp_simd */
33940 return cp_parser_omp_simd (parser, pragma_tok, p_name, mask,
33941 cclauses, if_p);
33942 sb = begin_omp_structured_block ();
33943 save = cp_parser_begin_omp_structured_block (parser);
33944 ret = cp_parser_omp_simd (parser, pragma_tok, p_name, mask,
33945 cclauses, if_p);
33946 cp_parser_end_omp_structured_block (parser, save);
33947 tree body = finish_omp_structured_block (sb);
33948 if (ret == NULL)
33949 return ret;
33950 ret = make_node (OMP_FOR);
33951 TREE_TYPE (ret) = void_type_node;
33952 OMP_FOR_BODY (ret) = body;
33953 OMP_FOR_CLAUSES (ret) = cclauses[C_OMP_CLAUSE_SPLIT_FOR];
33954 SET_EXPR_LOCATION (ret, loc);
33955 add_stmt (ret);
33956 return ret;
33957 }
33958 }
33959 if (!flag_openmp) /* flag_openmp_simd */
33960 {
33961 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
33962 return NULL_TREE;
33963 }
33964
33965 /* Composite distribute parallel for disallows linear clause. */
33966 if ((mask & (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DIST_SCHEDULE)) != 0)
33967 mask &= ~(OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LINEAR);
33968
33969 clauses = cp_parser_omp_all_clauses (parser, mask, p_name, pragma_tok,
33970 cclauses == NULL);
33971 if (cclauses)
33972 {
33973 cp_omp_split_clauses (loc, OMP_FOR, mask, clauses, cclauses);
33974 clauses = cclauses[C_OMP_CLAUSE_SPLIT_FOR];
33975 }
33976
33977 sb = begin_omp_structured_block ();
33978 save = cp_parser_begin_omp_structured_block (parser);
33979
33980 ret = cp_parser_omp_for_loop (parser, OMP_FOR, clauses, cclauses, if_p);
33981
33982 cp_parser_end_omp_structured_block (parser, save);
33983 add_stmt (finish_omp_structured_block (sb));
33984
33985 return ret;
33986 }
33987
33988 /* OpenMP 2.5:
33989 # pragma omp master new-line
33990 structured-block */
33991
33992 static tree
33993 cp_parser_omp_master (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
33994 {
33995 cp_parser_require_pragma_eol (parser, pragma_tok);
33996 return c_finish_omp_master (input_location,
33997 cp_parser_omp_structured_block (parser, if_p));
33998 }
33999
34000 /* OpenMP 2.5:
34001 # pragma omp ordered new-line
34002 structured-block
34003
34004 OpenMP 4.5:
34005 # pragma omp ordered ordered-clauses new-line
34006 structured-block */
34007
34008 #define OMP_ORDERED_CLAUSE_MASK \
34009 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_THREADS) \
34010 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SIMD))
34011
34012 #define OMP_ORDERED_DEPEND_CLAUSE_MASK \
34013 (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEPEND)
34014
34015 static bool
34016 cp_parser_omp_ordered (cp_parser *parser, cp_token *pragma_tok,
34017 enum pragma_context context, bool *if_p)
34018 {
34019 location_t loc = pragma_tok->location;
34020
34021 if (context != pragma_stmt && context != pragma_compound)
34022 {
34023 cp_parser_error (parser, "expected declaration specifiers");
34024 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
34025 return false;
34026 }
34027
34028 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
34029 {
34030 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
34031 const char *p = IDENTIFIER_POINTER (id);
34032
34033 if (strcmp (p, "depend") == 0)
34034 {
34035 if (context == pragma_stmt)
34036 {
34037 error_at (pragma_tok->location, "%<#pragma omp ordered%> with "
34038 "%<depend%> clause may only be used in compound "
34039 "statements");
34040 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
34041 return false;
34042 }
34043 tree clauses
34044 = cp_parser_omp_all_clauses (parser,
34045 OMP_ORDERED_DEPEND_CLAUSE_MASK,
34046 "#pragma omp ordered", pragma_tok);
34047 c_finish_omp_ordered (loc, clauses, NULL_TREE);
34048 return false;
34049 }
34050 }
34051
34052 tree clauses
34053 = cp_parser_omp_all_clauses (parser, OMP_ORDERED_CLAUSE_MASK,
34054 "#pragma omp ordered", pragma_tok);
34055 c_finish_omp_ordered (loc, clauses,
34056 cp_parser_omp_structured_block (parser, if_p));
34057 return true;
34058 }
34059
34060 /* OpenMP 2.5:
34061
34062 section-scope:
34063 { section-sequence }
34064
34065 section-sequence:
34066 section-directive[opt] structured-block
34067 section-sequence section-directive structured-block */
34068
34069 static tree
34070 cp_parser_omp_sections_scope (cp_parser *parser)
34071 {
34072 tree stmt, substmt;
34073 bool error_suppress = false;
34074 cp_token *tok;
34075
34076 if (!cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
34077 return NULL_TREE;
34078
34079 stmt = push_stmt_list ();
34080
34081 if (cp_parser_pragma_kind (cp_lexer_peek_token (parser->lexer))
34082 != PRAGMA_OMP_SECTION)
34083 {
34084 substmt = cp_parser_omp_structured_block (parser, NULL);
34085 substmt = build1 (OMP_SECTION, void_type_node, substmt);
34086 add_stmt (substmt);
34087 }
34088
34089 while (1)
34090 {
34091 tok = cp_lexer_peek_token (parser->lexer);
34092 if (tok->type == CPP_CLOSE_BRACE)
34093 break;
34094 if (tok->type == CPP_EOF)
34095 break;
34096
34097 if (cp_parser_pragma_kind (tok) == PRAGMA_OMP_SECTION)
34098 {
34099 cp_lexer_consume_token (parser->lexer);
34100 cp_parser_require_pragma_eol (parser, tok);
34101 error_suppress = false;
34102 }
34103 else if (!error_suppress)
34104 {
34105 cp_parser_error (parser, "expected %<#pragma omp section%> or %<}%>");
34106 error_suppress = true;
34107 }
34108
34109 substmt = cp_parser_omp_structured_block (parser, NULL);
34110 substmt = build1 (OMP_SECTION, void_type_node, substmt);
34111 add_stmt (substmt);
34112 }
34113 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
34114
34115 substmt = pop_stmt_list (stmt);
34116
34117 stmt = make_node (OMP_SECTIONS);
34118 TREE_TYPE (stmt) = void_type_node;
34119 OMP_SECTIONS_BODY (stmt) = substmt;
34120
34121 add_stmt (stmt);
34122 return stmt;
34123 }
34124
34125 /* OpenMP 2.5:
34126 # pragma omp sections sections-clause[optseq] newline
34127 sections-scope */
34128
34129 #define OMP_SECTIONS_CLAUSE_MASK \
34130 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
34131 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
34132 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
34133 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_REDUCTION) \
34134 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT))
34135
34136 static tree
34137 cp_parser_omp_sections (cp_parser *parser, cp_token *pragma_tok,
34138 char *p_name, omp_clause_mask mask, tree *cclauses)
34139 {
34140 tree clauses, ret;
34141 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
34142
34143 strcat (p_name, " sections");
34144 mask |= OMP_SECTIONS_CLAUSE_MASK;
34145 if (cclauses)
34146 mask &= ~(OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT);
34147
34148 clauses = cp_parser_omp_all_clauses (parser, mask, p_name, pragma_tok,
34149 cclauses == NULL);
34150 if (cclauses)
34151 {
34152 cp_omp_split_clauses (loc, OMP_SECTIONS, mask, clauses, cclauses);
34153 clauses = cclauses[C_OMP_CLAUSE_SPLIT_SECTIONS];
34154 }
34155
34156 ret = cp_parser_omp_sections_scope (parser);
34157 if (ret)
34158 OMP_SECTIONS_CLAUSES (ret) = clauses;
34159
34160 return ret;
34161 }
34162
34163 /* OpenMP 2.5:
34164 # pragma omp parallel parallel-clause[optseq] new-line
34165 structured-block
34166 # pragma omp parallel for parallel-for-clause[optseq] new-line
34167 structured-block
34168 # pragma omp parallel sections parallel-sections-clause[optseq] new-line
34169 structured-block
34170
34171 OpenMP 4.0:
34172 # pragma omp parallel for simd parallel-for-simd-clause[optseq] new-line
34173 structured-block */
34174
34175 #define OMP_PARALLEL_CLAUSE_MASK \
34176 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
34177 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
34178 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
34179 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEFAULT) \
34180 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SHARED) \
34181 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COPYIN) \
34182 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_REDUCTION) \
34183 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NUM_THREADS) \
34184 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PROC_BIND))
34185
34186 static tree
34187 cp_parser_omp_parallel (cp_parser *parser, cp_token *pragma_tok,
34188 char *p_name, omp_clause_mask mask, tree *cclauses,
34189 bool *if_p)
34190 {
34191 tree stmt, clauses, block;
34192 unsigned int save;
34193 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
34194
34195 strcat (p_name, " parallel");
34196 mask |= OMP_PARALLEL_CLAUSE_MASK;
34197 /* #pragma omp target parallel{, for, for simd} disallow copyin clause. */
34198 if ((mask & (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MAP)) != 0
34199 && (mask & (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DIST_SCHEDULE)) == 0)
34200 mask &= ~(OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COPYIN);
34201
34202 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_FOR))
34203 {
34204 tree cclauses_buf[C_OMP_CLAUSE_SPLIT_COUNT];
34205 if (cclauses == NULL)
34206 cclauses = cclauses_buf;
34207
34208 cp_lexer_consume_token (parser->lexer);
34209 if (!flag_openmp) /* flag_openmp_simd */
34210 return cp_parser_omp_for (parser, pragma_tok, p_name, mask, cclauses,
34211 if_p);
34212 block = begin_omp_parallel ();
34213 save = cp_parser_begin_omp_structured_block (parser);
34214 tree ret = cp_parser_omp_for (parser, pragma_tok, p_name, mask, cclauses,
34215 if_p);
34216 cp_parser_end_omp_structured_block (parser, save);
34217 stmt = finish_omp_parallel (cclauses[C_OMP_CLAUSE_SPLIT_PARALLEL],
34218 block);
34219 if (ret == NULL_TREE)
34220 return ret;
34221 OMP_PARALLEL_COMBINED (stmt) = 1;
34222 return stmt;
34223 }
34224 /* When combined with distribute, parallel has to be followed by for.
34225 #pragma omp target parallel is allowed though. */
34226 else if (cclauses
34227 && (mask & (OMP_CLAUSE_MASK_1
34228 << PRAGMA_OMP_CLAUSE_DIST_SCHEDULE)) != 0)
34229 {
34230 error_at (loc, "expected %<for%> after %qs", p_name);
34231 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
34232 return NULL_TREE;
34233 }
34234 else if (!flag_openmp) /* flag_openmp_simd */
34235 {
34236 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
34237 return NULL_TREE;
34238 }
34239 else if (cclauses == NULL && cp_lexer_next_token_is (parser->lexer, CPP_NAME))
34240 {
34241 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
34242 const char *p = IDENTIFIER_POINTER (id);
34243 if (strcmp (p, "sections") == 0)
34244 {
34245 tree cclauses_buf[C_OMP_CLAUSE_SPLIT_COUNT];
34246 cclauses = cclauses_buf;
34247
34248 cp_lexer_consume_token (parser->lexer);
34249 block = begin_omp_parallel ();
34250 save = cp_parser_begin_omp_structured_block (parser);
34251 cp_parser_omp_sections (parser, pragma_tok, p_name, mask, cclauses);
34252 cp_parser_end_omp_structured_block (parser, save);
34253 stmt = finish_omp_parallel (cclauses[C_OMP_CLAUSE_SPLIT_PARALLEL],
34254 block);
34255 OMP_PARALLEL_COMBINED (stmt) = 1;
34256 return stmt;
34257 }
34258 }
34259
34260 clauses = cp_parser_omp_all_clauses (parser, mask, p_name, pragma_tok);
34261 if (cclauses)
34262 {
34263 cp_omp_split_clauses (loc, OMP_PARALLEL, mask, clauses, cclauses);
34264 clauses = cclauses[C_OMP_CLAUSE_SPLIT_PARALLEL];
34265 }
34266
34267 block = begin_omp_parallel ();
34268 save = cp_parser_begin_omp_structured_block (parser);
34269 cp_parser_statement (parser, NULL_TREE, false, if_p);
34270 cp_parser_end_omp_structured_block (parser, save);
34271 stmt = finish_omp_parallel (clauses, block);
34272 return stmt;
34273 }
34274
34275 /* OpenMP 2.5:
34276 # pragma omp single single-clause[optseq] new-line
34277 structured-block */
34278
34279 #define OMP_SINGLE_CLAUSE_MASK \
34280 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
34281 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
34282 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COPYPRIVATE) \
34283 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT))
34284
34285 static tree
34286 cp_parser_omp_single (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
34287 {
34288 tree stmt = make_node (OMP_SINGLE);
34289 TREE_TYPE (stmt) = void_type_node;
34290
34291 OMP_SINGLE_CLAUSES (stmt)
34292 = cp_parser_omp_all_clauses (parser, OMP_SINGLE_CLAUSE_MASK,
34293 "#pragma omp single", pragma_tok);
34294 OMP_SINGLE_BODY (stmt) = cp_parser_omp_structured_block (parser, if_p);
34295
34296 return add_stmt (stmt);
34297 }
34298
34299 /* OpenMP 3.0:
34300 # pragma omp task task-clause[optseq] new-line
34301 structured-block */
34302
34303 #define OMP_TASK_CLAUSE_MASK \
34304 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
34305 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_UNTIED) \
34306 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEFAULT) \
34307 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
34308 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
34309 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SHARED) \
34310 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FINAL) \
34311 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MERGEABLE) \
34312 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEPEND) \
34313 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIORITY))
34314
34315 static tree
34316 cp_parser_omp_task (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
34317 {
34318 tree clauses, block;
34319 unsigned int save;
34320
34321 clauses = cp_parser_omp_all_clauses (parser, OMP_TASK_CLAUSE_MASK,
34322 "#pragma omp task", pragma_tok);
34323 block = begin_omp_task ();
34324 save = cp_parser_begin_omp_structured_block (parser);
34325 cp_parser_statement (parser, NULL_TREE, false, if_p);
34326 cp_parser_end_omp_structured_block (parser, save);
34327 return finish_omp_task (clauses, block);
34328 }
34329
34330 /* OpenMP 3.0:
34331 # pragma omp taskwait new-line */
34332
34333 static void
34334 cp_parser_omp_taskwait (cp_parser *parser, cp_token *pragma_tok)
34335 {
34336 cp_parser_require_pragma_eol (parser, pragma_tok);
34337 finish_omp_taskwait ();
34338 }
34339
34340 /* OpenMP 3.1:
34341 # pragma omp taskyield new-line */
34342
34343 static void
34344 cp_parser_omp_taskyield (cp_parser *parser, cp_token *pragma_tok)
34345 {
34346 cp_parser_require_pragma_eol (parser, pragma_tok);
34347 finish_omp_taskyield ();
34348 }
34349
34350 /* OpenMP 4.0:
34351 # pragma omp taskgroup new-line
34352 structured-block */
34353
34354 static tree
34355 cp_parser_omp_taskgroup (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
34356 {
34357 cp_parser_require_pragma_eol (parser, pragma_tok);
34358 return c_finish_omp_taskgroup (input_location,
34359 cp_parser_omp_structured_block (parser,
34360 if_p));
34361 }
34362
34363
34364 /* OpenMP 2.5:
34365 # pragma omp threadprivate (variable-list) */
34366
34367 static void
34368 cp_parser_omp_threadprivate (cp_parser *parser, cp_token *pragma_tok)
34369 {
34370 tree vars;
34371
34372 vars = cp_parser_omp_var_list (parser, OMP_CLAUSE_ERROR, NULL);
34373 cp_parser_require_pragma_eol (parser, pragma_tok);
34374
34375 finish_omp_threadprivate (vars);
34376 }
34377
34378 /* OpenMP 4.0:
34379 # pragma omp cancel cancel-clause[optseq] new-line */
34380
34381 #define OMP_CANCEL_CLAUSE_MASK \
34382 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PARALLEL) \
34383 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FOR) \
34384 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SECTIONS) \
34385 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_TASKGROUP) \
34386 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF))
34387
34388 static void
34389 cp_parser_omp_cancel (cp_parser *parser, cp_token *pragma_tok)
34390 {
34391 tree clauses = cp_parser_omp_all_clauses (parser, OMP_CANCEL_CLAUSE_MASK,
34392 "#pragma omp cancel", pragma_tok);
34393 finish_omp_cancel (clauses);
34394 }
34395
34396 /* OpenMP 4.0:
34397 # pragma omp cancellation point cancelpt-clause[optseq] new-line */
34398
34399 #define OMP_CANCELLATION_POINT_CLAUSE_MASK \
34400 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PARALLEL) \
34401 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FOR) \
34402 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SECTIONS) \
34403 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_TASKGROUP))
34404
34405 static void
34406 cp_parser_omp_cancellation_point (cp_parser *parser, cp_token *pragma_tok)
34407 {
34408 tree clauses;
34409 bool point_seen = false;
34410
34411 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
34412 {
34413 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
34414 const char *p = IDENTIFIER_POINTER (id);
34415
34416 if (strcmp (p, "point") == 0)
34417 {
34418 cp_lexer_consume_token (parser->lexer);
34419 point_seen = true;
34420 }
34421 }
34422 if (!point_seen)
34423 {
34424 cp_parser_error (parser, "expected %<point%>");
34425 cp_parser_require_pragma_eol (parser, pragma_tok);
34426 return;
34427 }
34428
34429 clauses = cp_parser_omp_all_clauses (parser,
34430 OMP_CANCELLATION_POINT_CLAUSE_MASK,
34431 "#pragma omp cancellation point",
34432 pragma_tok);
34433 finish_omp_cancellation_point (clauses);
34434 }
34435
34436 /* OpenMP 4.0:
34437 #pragma omp distribute distribute-clause[optseq] new-line
34438 for-loop */
34439
34440 #define OMP_DISTRIBUTE_CLAUSE_MASK \
34441 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
34442 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
34443 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
34444 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DIST_SCHEDULE)\
34445 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COLLAPSE))
34446
34447 static tree
34448 cp_parser_omp_distribute (cp_parser *parser, cp_token *pragma_tok,
34449 char *p_name, omp_clause_mask mask, tree *cclauses,
34450 bool *if_p)
34451 {
34452 tree clauses, sb, ret;
34453 unsigned int save;
34454 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
34455
34456 strcat (p_name, " distribute");
34457 mask |= OMP_DISTRIBUTE_CLAUSE_MASK;
34458
34459 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
34460 {
34461 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
34462 const char *p = IDENTIFIER_POINTER (id);
34463 bool simd = false;
34464 bool parallel = false;
34465
34466 if (strcmp (p, "simd") == 0)
34467 simd = true;
34468 else
34469 parallel = strcmp (p, "parallel") == 0;
34470 if (parallel || simd)
34471 {
34472 tree cclauses_buf[C_OMP_CLAUSE_SPLIT_COUNT];
34473 if (cclauses == NULL)
34474 cclauses = cclauses_buf;
34475 cp_lexer_consume_token (parser->lexer);
34476 if (!flag_openmp) /* flag_openmp_simd */
34477 {
34478 if (simd)
34479 return cp_parser_omp_simd (parser, pragma_tok, p_name, mask,
34480 cclauses, if_p);
34481 else
34482 return cp_parser_omp_parallel (parser, pragma_tok, p_name, mask,
34483 cclauses, if_p);
34484 }
34485 sb = begin_omp_structured_block ();
34486 save = cp_parser_begin_omp_structured_block (parser);
34487 if (simd)
34488 ret = cp_parser_omp_simd (parser, pragma_tok, p_name, mask,
34489 cclauses, if_p);
34490 else
34491 ret = cp_parser_omp_parallel (parser, pragma_tok, p_name, mask,
34492 cclauses, if_p);
34493 cp_parser_end_omp_structured_block (parser, save);
34494 tree body = finish_omp_structured_block (sb);
34495 if (ret == NULL)
34496 return ret;
34497 ret = make_node (OMP_DISTRIBUTE);
34498 TREE_TYPE (ret) = void_type_node;
34499 OMP_FOR_BODY (ret) = body;
34500 OMP_FOR_CLAUSES (ret) = cclauses[C_OMP_CLAUSE_SPLIT_DISTRIBUTE];
34501 SET_EXPR_LOCATION (ret, loc);
34502 add_stmt (ret);
34503 return ret;
34504 }
34505 }
34506 if (!flag_openmp) /* flag_openmp_simd */
34507 {
34508 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
34509 return NULL_TREE;
34510 }
34511
34512 clauses = cp_parser_omp_all_clauses (parser, mask, p_name, pragma_tok,
34513 cclauses == NULL);
34514 if (cclauses)
34515 {
34516 cp_omp_split_clauses (loc, OMP_DISTRIBUTE, mask, clauses, cclauses);
34517 clauses = cclauses[C_OMP_CLAUSE_SPLIT_DISTRIBUTE];
34518 }
34519
34520 sb = begin_omp_structured_block ();
34521 save = cp_parser_begin_omp_structured_block (parser);
34522
34523 ret = cp_parser_omp_for_loop (parser, OMP_DISTRIBUTE, clauses, NULL, if_p);
34524
34525 cp_parser_end_omp_structured_block (parser, save);
34526 add_stmt (finish_omp_structured_block (sb));
34527
34528 return ret;
34529 }
34530
34531 /* OpenMP 4.0:
34532 # pragma omp teams teams-clause[optseq] new-line
34533 structured-block */
34534
34535 #define OMP_TEAMS_CLAUSE_MASK \
34536 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
34537 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
34538 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SHARED) \
34539 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_REDUCTION) \
34540 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NUM_TEAMS) \
34541 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_THREAD_LIMIT) \
34542 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEFAULT))
34543
34544 static tree
34545 cp_parser_omp_teams (cp_parser *parser, cp_token *pragma_tok,
34546 char *p_name, omp_clause_mask mask, tree *cclauses,
34547 bool *if_p)
34548 {
34549 tree clauses, sb, ret;
34550 unsigned int save;
34551 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
34552
34553 strcat (p_name, " teams");
34554 mask |= OMP_TEAMS_CLAUSE_MASK;
34555
34556 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
34557 {
34558 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
34559 const char *p = IDENTIFIER_POINTER (id);
34560 if (strcmp (p, "distribute") == 0)
34561 {
34562 tree cclauses_buf[C_OMP_CLAUSE_SPLIT_COUNT];
34563 if (cclauses == NULL)
34564 cclauses = cclauses_buf;
34565
34566 cp_lexer_consume_token (parser->lexer);
34567 if (!flag_openmp) /* flag_openmp_simd */
34568 return cp_parser_omp_distribute (parser, pragma_tok, p_name, mask,
34569 cclauses, if_p);
34570 sb = begin_omp_structured_block ();
34571 save = cp_parser_begin_omp_structured_block (parser);
34572 ret = cp_parser_omp_distribute (parser, pragma_tok, p_name, mask,
34573 cclauses, if_p);
34574 cp_parser_end_omp_structured_block (parser, save);
34575 tree body = finish_omp_structured_block (sb);
34576 if (ret == NULL)
34577 return ret;
34578 clauses = cclauses[C_OMP_CLAUSE_SPLIT_TEAMS];
34579 ret = make_node (OMP_TEAMS);
34580 TREE_TYPE (ret) = void_type_node;
34581 OMP_TEAMS_CLAUSES (ret) = clauses;
34582 OMP_TEAMS_BODY (ret) = body;
34583 OMP_TEAMS_COMBINED (ret) = 1;
34584 return add_stmt (ret);
34585 }
34586 }
34587 if (!flag_openmp) /* flag_openmp_simd */
34588 {
34589 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
34590 return NULL_TREE;
34591 }
34592
34593 clauses = cp_parser_omp_all_clauses (parser, mask, p_name, pragma_tok,
34594 cclauses == NULL);
34595 if (cclauses)
34596 {
34597 cp_omp_split_clauses (loc, OMP_TEAMS, mask, clauses, cclauses);
34598 clauses = cclauses[C_OMP_CLAUSE_SPLIT_TEAMS];
34599 }
34600
34601 tree stmt = make_node (OMP_TEAMS);
34602 TREE_TYPE (stmt) = void_type_node;
34603 OMP_TEAMS_CLAUSES (stmt) = clauses;
34604 OMP_TEAMS_BODY (stmt) = cp_parser_omp_structured_block (parser, if_p);
34605
34606 return add_stmt (stmt);
34607 }
34608
34609 /* OpenMP 4.0:
34610 # pragma omp target data target-data-clause[optseq] new-line
34611 structured-block */
34612
34613 #define OMP_TARGET_DATA_CLAUSE_MASK \
34614 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEVICE) \
34615 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MAP) \
34616 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
34617 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_USE_DEVICE_PTR))
34618
34619 static tree
34620 cp_parser_omp_target_data (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
34621 {
34622 tree clauses
34623 = cp_parser_omp_all_clauses (parser, OMP_TARGET_DATA_CLAUSE_MASK,
34624 "#pragma omp target data", pragma_tok);
34625 int map_seen = 0;
34626 for (tree *pc = &clauses; *pc;)
34627 {
34628 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_MAP)
34629 switch (OMP_CLAUSE_MAP_KIND (*pc))
34630 {
34631 case GOMP_MAP_TO:
34632 case GOMP_MAP_ALWAYS_TO:
34633 case GOMP_MAP_FROM:
34634 case GOMP_MAP_ALWAYS_FROM:
34635 case GOMP_MAP_TOFROM:
34636 case GOMP_MAP_ALWAYS_TOFROM:
34637 case GOMP_MAP_ALLOC:
34638 map_seen = 3;
34639 break;
34640 case GOMP_MAP_FIRSTPRIVATE_POINTER:
34641 case GOMP_MAP_FIRSTPRIVATE_REFERENCE:
34642 case GOMP_MAP_ALWAYS_POINTER:
34643 break;
34644 default:
34645 map_seen |= 1;
34646 error_at (OMP_CLAUSE_LOCATION (*pc),
34647 "%<#pragma omp target data%> with map-type other "
34648 "than %<to%>, %<from%>, %<tofrom%> or %<alloc%> "
34649 "on %<map%> clause");
34650 *pc = OMP_CLAUSE_CHAIN (*pc);
34651 continue;
34652 }
34653 pc = &OMP_CLAUSE_CHAIN (*pc);
34654 }
34655
34656 if (map_seen != 3)
34657 {
34658 if (map_seen == 0)
34659 error_at (pragma_tok->location,
34660 "%<#pragma omp target data%> must contain at least "
34661 "one %<map%> clause");
34662 return NULL_TREE;
34663 }
34664
34665 tree stmt = make_node (OMP_TARGET_DATA);
34666 TREE_TYPE (stmt) = void_type_node;
34667 OMP_TARGET_DATA_CLAUSES (stmt) = clauses;
34668
34669 keep_next_level (true);
34670 OMP_TARGET_DATA_BODY (stmt) = cp_parser_omp_structured_block (parser, if_p);
34671
34672 SET_EXPR_LOCATION (stmt, pragma_tok->location);
34673 return add_stmt (stmt);
34674 }
34675
34676 /* OpenMP 4.5:
34677 # pragma omp target enter data target-enter-data-clause[optseq] new-line
34678 structured-block */
34679
34680 #define OMP_TARGET_ENTER_DATA_CLAUSE_MASK \
34681 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEVICE) \
34682 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MAP) \
34683 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
34684 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEPEND) \
34685 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT))
34686
34687 static tree
34688 cp_parser_omp_target_enter_data (cp_parser *parser, cp_token *pragma_tok,
34689 enum pragma_context context)
34690 {
34691 bool data_seen = false;
34692 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
34693 {
34694 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
34695 const char *p = IDENTIFIER_POINTER (id);
34696
34697 if (strcmp (p, "data") == 0)
34698 {
34699 cp_lexer_consume_token (parser->lexer);
34700 data_seen = true;
34701 }
34702 }
34703 if (!data_seen)
34704 {
34705 cp_parser_error (parser, "expected %<data%>");
34706 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
34707 return NULL_TREE;
34708 }
34709
34710 if (context == pragma_stmt)
34711 {
34712 error_at (pragma_tok->location,
34713 "%<#pragma omp target enter data%> may only be "
34714 "used in compound statements");
34715 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
34716 return NULL_TREE;
34717 }
34718
34719 tree clauses
34720 = cp_parser_omp_all_clauses (parser, OMP_TARGET_ENTER_DATA_CLAUSE_MASK,
34721 "#pragma omp target enter data", pragma_tok);
34722 int map_seen = 0;
34723 for (tree *pc = &clauses; *pc;)
34724 {
34725 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_MAP)
34726 switch (OMP_CLAUSE_MAP_KIND (*pc))
34727 {
34728 case GOMP_MAP_TO:
34729 case GOMP_MAP_ALWAYS_TO:
34730 case GOMP_MAP_ALLOC:
34731 map_seen = 3;
34732 break;
34733 case GOMP_MAP_FIRSTPRIVATE_POINTER:
34734 case GOMP_MAP_FIRSTPRIVATE_REFERENCE:
34735 case GOMP_MAP_ALWAYS_POINTER:
34736 break;
34737 default:
34738 map_seen |= 1;
34739 error_at (OMP_CLAUSE_LOCATION (*pc),
34740 "%<#pragma omp target enter data%> with map-type other "
34741 "than %<to%> or %<alloc%> on %<map%> clause");
34742 *pc = OMP_CLAUSE_CHAIN (*pc);
34743 continue;
34744 }
34745 pc = &OMP_CLAUSE_CHAIN (*pc);
34746 }
34747
34748 if (map_seen != 3)
34749 {
34750 if (map_seen == 0)
34751 error_at (pragma_tok->location,
34752 "%<#pragma omp target enter data%> must contain at least "
34753 "one %<map%> clause");
34754 return NULL_TREE;
34755 }
34756
34757 tree stmt = make_node (OMP_TARGET_ENTER_DATA);
34758 TREE_TYPE (stmt) = void_type_node;
34759 OMP_TARGET_ENTER_DATA_CLAUSES (stmt) = clauses;
34760 SET_EXPR_LOCATION (stmt, pragma_tok->location);
34761 return add_stmt (stmt);
34762 }
34763
34764 /* OpenMP 4.5:
34765 # pragma omp target exit data target-enter-data-clause[optseq] new-line
34766 structured-block */
34767
34768 #define OMP_TARGET_EXIT_DATA_CLAUSE_MASK \
34769 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEVICE) \
34770 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MAP) \
34771 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
34772 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEPEND) \
34773 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT))
34774
34775 static tree
34776 cp_parser_omp_target_exit_data (cp_parser *parser, cp_token *pragma_tok,
34777 enum pragma_context context)
34778 {
34779 bool data_seen = false;
34780 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
34781 {
34782 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
34783 const char *p = IDENTIFIER_POINTER (id);
34784
34785 if (strcmp (p, "data") == 0)
34786 {
34787 cp_lexer_consume_token (parser->lexer);
34788 data_seen = true;
34789 }
34790 }
34791 if (!data_seen)
34792 {
34793 cp_parser_error (parser, "expected %<data%>");
34794 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
34795 return NULL_TREE;
34796 }
34797
34798 if (context == pragma_stmt)
34799 {
34800 error_at (pragma_tok->location,
34801 "%<#pragma omp target exit data%> may only be "
34802 "used in compound statements");
34803 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
34804 return NULL_TREE;
34805 }
34806
34807 tree clauses
34808 = cp_parser_omp_all_clauses (parser, OMP_TARGET_EXIT_DATA_CLAUSE_MASK,
34809 "#pragma omp target exit data", pragma_tok);
34810 int map_seen = 0;
34811 for (tree *pc = &clauses; *pc;)
34812 {
34813 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_MAP)
34814 switch (OMP_CLAUSE_MAP_KIND (*pc))
34815 {
34816 case GOMP_MAP_FROM:
34817 case GOMP_MAP_ALWAYS_FROM:
34818 case GOMP_MAP_RELEASE:
34819 case GOMP_MAP_DELETE:
34820 map_seen = 3;
34821 break;
34822 case GOMP_MAP_FIRSTPRIVATE_POINTER:
34823 case GOMP_MAP_FIRSTPRIVATE_REFERENCE:
34824 case GOMP_MAP_ALWAYS_POINTER:
34825 break;
34826 default:
34827 map_seen |= 1;
34828 error_at (OMP_CLAUSE_LOCATION (*pc),
34829 "%<#pragma omp target exit data%> with map-type other "
34830 "than %<from%>, %<release%> or %<delete%> on %<map%>"
34831 " clause");
34832 *pc = OMP_CLAUSE_CHAIN (*pc);
34833 continue;
34834 }
34835 pc = &OMP_CLAUSE_CHAIN (*pc);
34836 }
34837
34838 if (map_seen != 3)
34839 {
34840 if (map_seen == 0)
34841 error_at (pragma_tok->location,
34842 "%<#pragma omp target exit data%> must contain at least "
34843 "one %<map%> clause");
34844 return NULL_TREE;
34845 }
34846
34847 tree stmt = make_node (OMP_TARGET_EXIT_DATA);
34848 TREE_TYPE (stmt) = void_type_node;
34849 OMP_TARGET_EXIT_DATA_CLAUSES (stmt) = clauses;
34850 SET_EXPR_LOCATION (stmt, pragma_tok->location);
34851 return add_stmt (stmt);
34852 }
34853
34854 /* OpenMP 4.0:
34855 # pragma omp target update target-update-clause[optseq] new-line */
34856
34857 #define OMP_TARGET_UPDATE_CLAUSE_MASK \
34858 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FROM) \
34859 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_TO) \
34860 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEVICE) \
34861 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
34862 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEPEND) \
34863 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT))
34864
34865 static bool
34866 cp_parser_omp_target_update (cp_parser *parser, cp_token *pragma_tok,
34867 enum pragma_context context)
34868 {
34869 if (context == pragma_stmt)
34870 {
34871 error_at (pragma_tok->location,
34872 "%<#pragma omp target update%> may only be "
34873 "used in compound statements");
34874 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
34875 return false;
34876 }
34877
34878 tree clauses
34879 = cp_parser_omp_all_clauses (parser, OMP_TARGET_UPDATE_CLAUSE_MASK,
34880 "#pragma omp target update", pragma_tok);
34881 if (find_omp_clause (clauses, OMP_CLAUSE_TO) == NULL_TREE
34882 && find_omp_clause (clauses, OMP_CLAUSE_FROM) == NULL_TREE)
34883 {
34884 error_at (pragma_tok->location,
34885 "%<#pragma omp target update%> must contain at least one "
34886 "%<from%> or %<to%> clauses");
34887 return false;
34888 }
34889
34890 tree stmt = make_node (OMP_TARGET_UPDATE);
34891 TREE_TYPE (stmt) = void_type_node;
34892 OMP_TARGET_UPDATE_CLAUSES (stmt) = clauses;
34893 SET_EXPR_LOCATION (stmt, pragma_tok->location);
34894 add_stmt (stmt);
34895 return false;
34896 }
34897
34898 /* OpenMP 4.0:
34899 # pragma omp target target-clause[optseq] new-line
34900 structured-block */
34901
34902 #define OMP_TARGET_CLAUSE_MASK \
34903 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEVICE) \
34904 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MAP) \
34905 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
34906 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEPEND) \
34907 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOWAIT) \
34908 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
34909 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
34910 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEFAULTMAP) \
34911 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IS_DEVICE_PTR))
34912
34913 static bool
34914 cp_parser_omp_target (cp_parser *parser, cp_token *pragma_tok,
34915 enum pragma_context context, bool *if_p)
34916 {
34917 tree *pc = NULL, stmt;
34918
34919 if (context != pragma_stmt && context != pragma_compound)
34920 {
34921 cp_parser_error (parser, "expected declaration specifiers");
34922 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
34923 return false;
34924 }
34925
34926 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
34927 {
34928 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
34929 const char *p = IDENTIFIER_POINTER (id);
34930 enum tree_code ccode = ERROR_MARK;
34931
34932 if (strcmp (p, "teams") == 0)
34933 ccode = OMP_TEAMS;
34934 else if (strcmp (p, "parallel") == 0)
34935 ccode = OMP_PARALLEL;
34936 else if (strcmp (p, "simd") == 0)
34937 ccode = OMP_SIMD;
34938 if (ccode != ERROR_MARK)
34939 {
34940 tree cclauses[C_OMP_CLAUSE_SPLIT_COUNT];
34941 char p_name[sizeof ("#pragma omp target teams distribute "
34942 "parallel for simd")];
34943
34944 cp_lexer_consume_token (parser->lexer);
34945 strcpy (p_name, "#pragma omp target");
34946 if (!flag_openmp) /* flag_openmp_simd */
34947 {
34948 tree stmt;
34949 switch (ccode)
34950 {
34951 case OMP_TEAMS:
34952 stmt = cp_parser_omp_teams (parser, pragma_tok, p_name,
34953 OMP_TARGET_CLAUSE_MASK,
34954 cclauses, if_p);
34955 break;
34956 case OMP_PARALLEL:
34957 stmt = cp_parser_omp_parallel (parser, pragma_tok, p_name,
34958 OMP_TARGET_CLAUSE_MASK,
34959 cclauses, if_p);
34960 break;
34961 case OMP_SIMD:
34962 stmt = cp_parser_omp_simd (parser, pragma_tok, p_name,
34963 OMP_TARGET_CLAUSE_MASK,
34964 cclauses, if_p);
34965 break;
34966 default:
34967 gcc_unreachable ();
34968 }
34969 return stmt != NULL_TREE;
34970 }
34971 keep_next_level (true);
34972 tree sb = begin_omp_structured_block (), ret;
34973 unsigned save = cp_parser_begin_omp_structured_block (parser);
34974 switch (ccode)
34975 {
34976 case OMP_TEAMS:
34977 ret = cp_parser_omp_teams (parser, pragma_tok, p_name,
34978 OMP_TARGET_CLAUSE_MASK, cclauses,
34979 if_p);
34980 break;
34981 case OMP_PARALLEL:
34982 ret = cp_parser_omp_parallel (parser, pragma_tok, p_name,
34983 OMP_TARGET_CLAUSE_MASK, cclauses,
34984 if_p);
34985 break;
34986 case OMP_SIMD:
34987 ret = cp_parser_omp_simd (parser, pragma_tok, p_name,
34988 OMP_TARGET_CLAUSE_MASK, cclauses,
34989 if_p);
34990 break;
34991 default:
34992 gcc_unreachable ();
34993 }
34994 cp_parser_end_omp_structured_block (parser, save);
34995 tree body = finish_omp_structured_block (sb);
34996 if (ret == NULL_TREE)
34997 return false;
34998 if (ccode == OMP_TEAMS && !processing_template_decl)
34999 {
35000 /* For combined target teams, ensure the num_teams and
35001 thread_limit clause expressions are evaluated on the host,
35002 before entering the target construct. */
35003 tree c;
35004 for (c = cclauses[C_OMP_CLAUSE_SPLIT_TEAMS];
35005 c; c = OMP_CLAUSE_CHAIN (c))
35006 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_NUM_TEAMS
35007 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_THREAD_LIMIT)
35008 && TREE_CODE (OMP_CLAUSE_OPERAND (c, 0)) != INTEGER_CST)
35009 {
35010 tree expr = OMP_CLAUSE_OPERAND (c, 0);
35011 expr = force_target_expr (TREE_TYPE (expr), expr, tf_none);
35012 if (expr == error_mark_node)
35013 continue;
35014 tree tmp = TARGET_EXPR_SLOT (expr);
35015 add_stmt (expr);
35016 OMP_CLAUSE_OPERAND (c, 0) = expr;
35017 tree tc = build_omp_clause (OMP_CLAUSE_LOCATION (c),
35018 OMP_CLAUSE_FIRSTPRIVATE);
35019 OMP_CLAUSE_DECL (tc) = tmp;
35020 OMP_CLAUSE_CHAIN (tc)
35021 = cclauses[C_OMP_CLAUSE_SPLIT_TARGET];
35022 cclauses[C_OMP_CLAUSE_SPLIT_TARGET] = tc;
35023 }
35024 }
35025 tree stmt = make_node (OMP_TARGET);
35026 TREE_TYPE (stmt) = void_type_node;
35027 OMP_TARGET_CLAUSES (stmt) = cclauses[C_OMP_CLAUSE_SPLIT_TARGET];
35028 OMP_TARGET_BODY (stmt) = body;
35029 OMP_TARGET_COMBINED (stmt) = 1;
35030 add_stmt (stmt);
35031 pc = &OMP_TARGET_CLAUSES (stmt);
35032 goto check_clauses;
35033 }
35034 else if (!flag_openmp) /* flag_openmp_simd */
35035 {
35036 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
35037 return false;
35038 }
35039 else if (strcmp (p, "data") == 0)
35040 {
35041 cp_lexer_consume_token (parser->lexer);
35042 cp_parser_omp_target_data (parser, pragma_tok, if_p);
35043 return true;
35044 }
35045 else if (strcmp (p, "enter") == 0)
35046 {
35047 cp_lexer_consume_token (parser->lexer);
35048 cp_parser_omp_target_enter_data (parser, pragma_tok, context);
35049 return false;
35050 }
35051 else if (strcmp (p, "exit") == 0)
35052 {
35053 cp_lexer_consume_token (parser->lexer);
35054 cp_parser_omp_target_exit_data (parser, pragma_tok, context);
35055 return false;
35056 }
35057 else if (strcmp (p, "update") == 0)
35058 {
35059 cp_lexer_consume_token (parser->lexer);
35060 return cp_parser_omp_target_update (parser, pragma_tok, context);
35061 }
35062 }
35063
35064 stmt = make_node (OMP_TARGET);
35065 TREE_TYPE (stmt) = void_type_node;
35066
35067 OMP_TARGET_CLAUSES (stmt)
35068 = cp_parser_omp_all_clauses (parser, OMP_TARGET_CLAUSE_MASK,
35069 "#pragma omp target", pragma_tok);
35070 pc = &OMP_TARGET_CLAUSES (stmt);
35071 keep_next_level (true);
35072 OMP_TARGET_BODY (stmt) = cp_parser_omp_structured_block (parser, if_p);
35073
35074 SET_EXPR_LOCATION (stmt, pragma_tok->location);
35075 add_stmt (stmt);
35076
35077 check_clauses:
35078 while (*pc)
35079 {
35080 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_MAP)
35081 switch (OMP_CLAUSE_MAP_KIND (*pc))
35082 {
35083 case GOMP_MAP_TO:
35084 case GOMP_MAP_ALWAYS_TO:
35085 case GOMP_MAP_FROM:
35086 case GOMP_MAP_ALWAYS_FROM:
35087 case GOMP_MAP_TOFROM:
35088 case GOMP_MAP_ALWAYS_TOFROM:
35089 case GOMP_MAP_ALLOC:
35090 case GOMP_MAP_FIRSTPRIVATE_POINTER:
35091 case GOMP_MAP_FIRSTPRIVATE_REFERENCE:
35092 case GOMP_MAP_ALWAYS_POINTER:
35093 break;
35094 default:
35095 error_at (OMP_CLAUSE_LOCATION (*pc),
35096 "%<#pragma omp target%> with map-type other "
35097 "than %<to%>, %<from%>, %<tofrom%> or %<alloc%> "
35098 "on %<map%> clause");
35099 *pc = OMP_CLAUSE_CHAIN (*pc);
35100 continue;
35101 }
35102 pc = &OMP_CLAUSE_CHAIN (*pc);
35103 }
35104 return true;
35105 }
35106
35107 /* OpenACC 2.0:
35108 # pragma acc cache (variable-list) new-line
35109 */
35110
35111 static tree
35112 cp_parser_oacc_cache (cp_parser *parser, cp_token *pragma_tok)
35113 {
35114 tree stmt, clauses;
35115
35116 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE__CACHE_, NULL_TREE);
35117 clauses = finish_omp_clauses (clauses, C_ORT_ACC);
35118
35119 cp_parser_require_pragma_eol (parser, cp_lexer_peek_token (parser->lexer));
35120
35121 stmt = make_node (OACC_CACHE);
35122 TREE_TYPE (stmt) = void_type_node;
35123 OACC_CACHE_CLAUSES (stmt) = clauses;
35124 SET_EXPR_LOCATION (stmt, pragma_tok->location);
35125 add_stmt (stmt);
35126
35127 return stmt;
35128 }
35129
35130 /* OpenACC 2.0:
35131 # pragma acc data oacc-data-clause[optseq] new-line
35132 structured-block */
35133
35134 #define OACC_DATA_CLAUSE_MASK \
35135 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPY) \
35136 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYIN) \
35137 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYOUT) \
35138 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_CREATE) \
35139 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DEVICEPTR) \
35140 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_IF) \
35141 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT) \
35142 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPY) \
35143 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN) \
35144 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYOUT) \
35145 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE))
35146
35147 static tree
35148 cp_parser_oacc_data (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
35149 {
35150 tree stmt, clauses, block;
35151 unsigned int save;
35152
35153 clauses = cp_parser_oacc_all_clauses (parser, OACC_DATA_CLAUSE_MASK,
35154 "#pragma acc data", pragma_tok);
35155
35156 block = begin_omp_parallel ();
35157 save = cp_parser_begin_omp_structured_block (parser);
35158 cp_parser_statement (parser, NULL_TREE, false, if_p);
35159 cp_parser_end_omp_structured_block (parser, save);
35160 stmt = finish_oacc_data (clauses, block);
35161 return stmt;
35162 }
35163
35164 /* OpenACC 2.0:
35165 # pragma acc host_data <clauses> new-line
35166 structured-block */
35167
35168 #define OACC_HOST_DATA_CLAUSE_MASK \
35169 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_USE_DEVICE) )
35170
35171 static tree
35172 cp_parser_oacc_host_data (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
35173 {
35174 tree stmt, clauses, block;
35175 unsigned int save;
35176
35177 clauses = cp_parser_oacc_all_clauses (parser, OACC_HOST_DATA_CLAUSE_MASK,
35178 "#pragma acc host_data", pragma_tok);
35179
35180 block = begin_omp_parallel ();
35181 save = cp_parser_begin_omp_structured_block (parser);
35182 cp_parser_statement (parser, NULL_TREE, false, if_p);
35183 cp_parser_end_omp_structured_block (parser, save);
35184 stmt = finish_oacc_host_data (clauses, block);
35185 return stmt;
35186 }
35187
35188 /* OpenACC 2.0:
35189 # pragma acc declare oacc-data-clause[optseq] new-line
35190 */
35191
35192 #define OACC_DECLARE_CLAUSE_MASK \
35193 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPY) \
35194 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYIN) \
35195 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYOUT) \
35196 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_CREATE) \
35197 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DEVICEPTR) \
35198 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DEVICE_RESIDENT) \
35199 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_LINK) \
35200 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT) \
35201 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPY) \
35202 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN) \
35203 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYOUT) \
35204 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE))
35205
35206 static tree
35207 cp_parser_oacc_declare (cp_parser *parser, cp_token *pragma_tok)
35208 {
35209 tree clauses, stmt;
35210 bool error = false;
35211
35212 clauses = cp_parser_oacc_all_clauses (parser, OACC_DECLARE_CLAUSE_MASK,
35213 "#pragma acc declare", pragma_tok, true);
35214
35215
35216 if (find_omp_clause (clauses, OMP_CLAUSE_MAP) == NULL_TREE)
35217 {
35218 error_at (pragma_tok->location,
35219 "no valid clauses specified in %<#pragma acc declare%>");
35220 return NULL_TREE;
35221 }
35222
35223 for (tree t = clauses; t; t = OMP_CLAUSE_CHAIN (t))
35224 {
35225 location_t loc = OMP_CLAUSE_LOCATION (t);
35226 tree decl = OMP_CLAUSE_DECL (t);
35227 if (!DECL_P (decl))
35228 {
35229 error_at (loc, "array section in %<#pragma acc declare%>");
35230 error = true;
35231 continue;
35232 }
35233 gcc_assert (OMP_CLAUSE_CODE (t) == OMP_CLAUSE_MAP);
35234 switch (OMP_CLAUSE_MAP_KIND (t))
35235 {
35236 case GOMP_MAP_FIRSTPRIVATE_POINTER:
35237 case GOMP_MAP_FORCE_ALLOC:
35238 case GOMP_MAP_FORCE_TO:
35239 case GOMP_MAP_FORCE_DEVICEPTR:
35240 case GOMP_MAP_DEVICE_RESIDENT:
35241 break;
35242
35243 case GOMP_MAP_POINTER:
35244 /* Generated by c_finish_omp_clauses from array sections;
35245 avoid spurious diagnostics. */
35246 break;
35247
35248 case GOMP_MAP_LINK:
35249 if (!global_bindings_p ()
35250 && (TREE_STATIC (decl)
35251 || !DECL_EXTERNAL (decl)))
35252 {
35253 error_at (loc,
35254 "%qD must be a global variable in"
35255 "%<#pragma acc declare link%>",
35256 decl);
35257 error = true;
35258 continue;
35259 }
35260 break;
35261
35262 default:
35263 if (global_bindings_p ())
35264 {
35265 error_at (loc, "invalid OpenACC clause at file scope");
35266 error = true;
35267 continue;
35268 }
35269 if (DECL_EXTERNAL (decl))
35270 {
35271 error_at (loc,
35272 "invalid use of %<extern%> variable %qD "
35273 "in %<#pragma acc declare%>", decl);
35274 error = true;
35275 continue;
35276 }
35277 else if (TREE_PUBLIC (decl))
35278 {
35279 error_at (loc,
35280 "invalid use of %<global%> variable %qD "
35281 "in %<#pragma acc declare%>", decl);
35282 error = true;
35283 continue;
35284 }
35285 break;
35286 }
35287
35288 if (lookup_attribute ("omp declare target", DECL_ATTRIBUTES (decl))
35289 || lookup_attribute ("omp declare target link",
35290 DECL_ATTRIBUTES (decl)))
35291 {
35292 error_at (loc, "variable %qD used more than once with "
35293 "%<#pragma acc declare%>", decl);
35294 error = true;
35295 continue;
35296 }
35297
35298 if (!error)
35299 {
35300 tree id;
35301
35302 if (OMP_CLAUSE_MAP_KIND (t) == GOMP_MAP_LINK)
35303 id = get_identifier ("omp declare target link");
35304 else
35305 id = get_identifier ("omp declare target");
35306
35307 DECL_ATTRIBUTES (decl)
35308 = tree_cons (id, NULL_TREE, DECL_ATTRIBUTES (decl));
35309 if (global_bindings_p ())
35310 {
35311 symtab_node *node = symtab_node::get (decl);
35312 if (node != NULL)
35313 {
35314 node->offloadable = 1;
35315 if (ENABLE_OFFLOADING)
35316 {
35317 g->have_offload = true;
35318 if (is_a <varpool_node *> (node))
35319 vec_safe_push (offload_vars, decl);
35320 }
35321 }
35322 }
35323 }
35324 }
35325
35326 if (error || global_bindings_p ())
35327 return NULL_TREE;
35328
35329 stmt = make_node (OACC_DECLARE);
35330 TREE_TYPE (stmt) = void_type_node;
35331 OACC_DECLARE_CLAUSES (stmt) = clauses;
35332 SET_EXPR_LOCATION (stmt, pragma_tok->location);
35333
35334 add_stmt (stmt);
35335
35336 return NULL_TREE;
35337 }
35338
35339 /* OpenACC 2.0:
35340 # pragma acc enter data oacc-enter-data-clause[optseq] new-line
35341
35342 or
35343
35344 # pragma acc exit data oacc-exit-data-clause[optseq] new-line
35345
35346 LOC is the location of the #pragma token.
35347 */
35348
35349 #define OACC_ENTER_DATA_CLAUSE_MASK \
35350 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_IF) \
35351 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_ASYNC) \
35352 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYIN) \
35353 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_CREATE) \
35354 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN) \
35355 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE) \
35356 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_WAIT) )
35357
35358 #define OACC_EXIT_DATA_CLAUSE_MASK \
35359 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_IF) \
35360 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_ASYNC) \
35361 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYOUT) \
35362 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DELETE) \
35363 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_WAIT) )
35364
35365 static tree
35366 cp_parser_oacc_enter_exit_data (cp_parser *parser, cp_token *pragma_tok,
35367 bool enter)
35368 {
35369 tree stmt, clauses;
35370
35371 if (cp_lexer_next_token_is (parser->lexer, CPP_PRAGMA_EOL)
35372 || cp_lexer_next_token_is_not (parser->lexer, CPP_NAME))
35373 {
35374 cp_parser_error (parser, enter
35375 ? "expected %<data%> in %<#pragma acc enter data%>"
35376 : "expected %<data%> in %<#pragma acc exit data%>");
35377 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
35378 return NULL_TREE;
35379 }
35380
35381 const char *p =
35382 IDENTIFIER_POINTER (cp_lexer_peek_token (parser->lexer)->u.value);
35383 if (strcmp (p, "data") != 0)
35384 {
35385 cp_parser_error (parser, "invalid pragma");
35386 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
35387 return NULL_TREE;
35388 }
35389
35390 cp_lexer_consume_token (parser->lexer);
35391
35392 if (enter)
35393 clauses = cp_parser_oacc_all_clauses (parser, OACC_ENTER_DATA_CLAUSE_MASK,
35394 "#pragma acc enter data", pragma_tok);
35395 else
35396 clauses = cp_parser_oacc_all_clauses (parser, OACC_EXIT_DATA_CLAUSE_MASK,
35397 "#pragma acc exit data", pragma_tok);
35398
35399 if (find_omp_clause (clauses, OMP_CLAUSE_MAP) == NULL_TREE)
35400 {
35401 error_at (pragma_tok->location,
35402 "%<#pragma acc enter data%> has no data movement clause");
35403 return NULL_TREE;
35404 }
35405
35406 stmt = enter ? make_node (OACC_ENTER_DATA) : make_node (OACC_EXIT_DATA);
35407 TREE_TYPE (stmt) = void_type_node;
35408 OMP_STANDALONE_CLAUSES (stmt) = clauses;
35409 SET_EXPR_LOCATION (stmt, pragma_tok->location);
35410 add_stmt (stmt);
35411 return stmt;
35412 }
35413
35414 /* OpenACC 2.0:
35415 # pragma acc loop oacc-loop-clause[optseq] new-line
35416 structured-block */
35417
35418 #define OACC_LOOP_CLAUSE_MASK \
35419 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COLLAPSE) \
35420 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRIVATE) \
35421 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_REDUCTION) \
35422 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_GANG) \
35423 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_VECTOR) \
35424 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_WORKER) \
35425 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_AUTO) \
35426 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_INDEPENDENT) \
35427 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_SEQ) \
35428 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_TILE))
35429
35430 static tree
35431 cp_parser_oacc_loop (cp_parser *parser, cp_token *pragma_tok, char *p_name,
35432 omp_clause_mask mask, tree *cclauses, bool *if_p)
35433 {
35434 bool is_parallel = ((mask >> PRAGMA_OACC_CLAUSE_REDUCTION) & 1) == 1;
35435
35436 strcat (p_name, " loop");
35437 mask |= OACC_LOOP_CLAUSE_MASK;
35438
35439 tree clauses = cp_parser_oacc_all_clauses (parser, mask, p_name, pragma_tok,
35440 cclauses == NULL);
35441 if (cclauses)
35442 {
35443 clauses = c_oacc_split_loop_clauses (clauses, cclauses, is_parallel);
35444 if (*cclauses)
35445 *cclauses = finish_omp_clauses (*cclauses, C_ORT_ACC);
35446 if (clauses)
35447 clauses = finish_omp_clauses (clauses, C_ORT_ACC);
35448 }
35449
35450 tree block = begin_omp_structured_block ();
35451 int save = cp_parser_begin_omp_structured_block (parser);
35452 tree stmt = cp_parser_omp_for_loop (parser, OACC_LOOP, clauses, NULL, if_p);
35453 cp_parser_end_omp_structured_block (parser, save);
35454 add_stmt (finish_omp_structured_block (block));
35455
35456 return stmt;
35457 }
35458
35459 /* OpenACC 2.0:
35460 # pragma acc kernels oacc-kernels-clause[optseq] new-line
35461 structured-block
35462
35463 or
35464
35465 # pragma acc parallel oacc-parallel-clause[optseq] new-line
35466 structured-block
35467 */
35468
35469 #define OACC_KERNELS_CLAUSE_MASK \
35470 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_ASYNC) \
35471 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPY) \
35472 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYIN) \
35473 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYOUT) \
35474 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_CREATE) \
35475 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DEFAULT) \
35476 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DEVICEPTR) \
35477 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_IF) \
35478 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT) \
35479 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPY) \
35480 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN) \
35481 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYOUT) \
35482 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE) \
35483 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_WAIT) )
35484
35485 #define OACC_PARALLEL_CLAUSE_MASK \
35486 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_ASYNC) \
35487 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPY) \
35488 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYIN) \
35489 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_COPYOUT) \
35490 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_CREATE) \
35491 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DEFAULT) \
35492 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DEVICEPTR) \
35493 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_FIRSTPRIVATE) \
35494 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_IF) \
35495 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_NUM_GANGS) \
35496 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_NUM_WORKERS) \
35497 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT) \
35498 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPY) \
35499 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN) \
35500 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYOUT) \
35501 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE) \
35502 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_PRIVATE) \
35503 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_REDUCTION) \
35504 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_VECTOR_LENGTH) \
35505 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_WAIT) )
35506
35507 static tree
35508 cp_parser_oacc_kernels_parallel (cp_parser *parser, cp_token *pragma_tok,
35509 char *p_name, bool *if_p)
35510 {
35511 omp_clause_mask mask;
35512 enum tree_code code;
35513 switch (cp_parser_pragma_kind (pragma_tok))
35514 {
35515 case PRAGMA_OACC_KERNELS:
35516 strcat (p_name, " kernels");
35517 mask = OACC_KERNELS_CLAUSE_MASK;
35518 code = OACC_KERNELS;
35519 break;
35520 case PRAGMA_OACC_PARALLEL:
35521 strcat (p_name, " parallel");
35522 mask = OACC_PARALLEL_CLAUSE_MASK;
35523 code = OACC_PARALLEL;
35524 break;
35525 default:
35526 gcc_unreachable ();
35527 }
35528
35529 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
35530 {
35531 const char *p
35532 = IDENTIFIER_POINTER (cp_lexer_peek_token (parser->lexer)->u.value);
35533 if (strcmp (p, "loop") == 0)
35534 {
35535 cp_lexer_consume_token (parser->lexer);
35536 tree block = begin_omp_parallel ();
35537 tree clauses;
35538 cp_parser_oacc_loop (parser, pragma_tok, p_name, mask, &clauses,
35539 if_p);
35540 return finish_omp_construct (code, block, clauses);
35541 }
35542 }
35543
35544 tree clauses = cp_parser_oacc_all_clauses (parser, mask, p_name, pragma_tok);
35545
35546 tree block = begin_omp_parallel ();
35547 unsigned int save = cp_parser_begin_omp_structured_block (parser);
35548 cp_parser_statement (parser, NULL_TREE, false, if_p);
35549 cp_parser_end_omp_structured_block (parser, save);
35550 return finish_omp_construct (code, block, clauses);
35551 }
35552
35553 /* OpenACC 2.0:
35554 # pragma acc update oacc-update-clause[optseq] new-line
35555 */
35556
35557 #define OACC_UPDATE_CLAUSE_MASK \
35558 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_ASYNC) \
35559 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_DEVICE) \
35560 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_HOST) \
35561 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_IF) \
35562 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_SELF) \
35563 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_WAIT))
35564
35565 static tree
35566 cp_parser_oacc_update (cp_parser *parser, cp_token *pragma_tok)
35567 {
35568 tree stmt, clauses;
35569
35570 clauses = cp_parser_oacc_all_clauses (parser, OACC_UPDATE_CLAUSE_MASK,
35571 "#pragma acc update", pragma_tok);
35572
35573 if (find_omp_clause (clauses, OMP_CLAUSE_MAP) == NULL_TREE)
35574 {
35575 error_at (pragma_tok->location,
35576 "%<#pragma acc update%> must contain at least one "
35577 "%<device%> or %<host%> or %<self%> clause");
35578 return NULL_TREE;
35579 }
35580
35581 stmt = make_node (OACC_UPDATE);
35582 TREE_TYPE (stmt) = void_type_node;
35583 OACC_UPDATE_CLAUSES (stmt) = clauses;
35584 SET_EXPR_LOCATION (stmt, pragma_tok->location);
35585 add_stmt (stmt);
35586 return stmt;
35587 }
35588
35589 /* OpenACC 2.0:
35590 # pragma acc wait [(intseq)] oacc-wait-clause[optseq] new-line
35591
35592 LOC is the location of the #pragma token.
35593 */
35594
35595 #define OACC_WAIT_CLAUSE_MASK \
35596 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_ASYNC))
35597
35598 static tree
35599 cp_parser_oacc_wait (cp_parser *parser, cp_token *pragma_tok)
35600 {
35601 tree clauses, list = NULL_TREE, stmt = NULL_TREE;
35602 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
35603
35604 if (cp_lexer_peek_token (parser->lexer)->type == CPP_OPEN_PAREN)
35605 list = cp_parser_oacc_wait_list (parser, loc, list);
35606
35607 clauses = cp_parser_oacc_all_clauses (parser, OACC_WAIT_CLAUSE_MASK,
35608 "#pragma acc wait", pragma_tok);
35609
35610 stmt = c_finish_oacc_wait (loc, list, clauses);
35611 stmt = finish_expr_stmt (stmt);
35612
35613 return stmt;
35614 }
35615
35616 /* OpenMP 4.0:
35617 # pragma omp declare simd declare-simd-clauses[optseq] new-line */
35618
35619 #define OMP_DECLARE_SIMD_CLAUSE_MASK \
35620 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SIMDLEN) \
35621 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LINEAR) \
35622 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_ALIGNED) \
35623 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_UNIFORM) \
35624 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_INBRANCH) \
35625 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOTINBRANCH))
35626
35627 static void
35628 cp_parser_omp_declare_simd (cp_parser *parser, cp_token *pragma_tok,
35629 enum pragma_context context)
35630 {
35631 bool first_p = parser->omp_declare_simd == NULL;
35632 cp_omp_declare_simd_data data;
35633 if (first_p)
35634 {
35635 data.error_seen = false;
35636 data.fndecl_seen = false;
35637 data.tokens = vNULL;
35638 parser->omp_declare_simd = &data;
35639 }
35640 while (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL)
35641 && cp_lexer_next_token_is_not (parser->lexer, CPP_EOF))
35642 cp_lexer_consume_token (parser->lexer);
35643 if (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL))
35644 parser->omp_declare_simd->error_seen = true;
35645 cp_parser_require_pragma_eol (parser, pragma_tok);
35646 struct cp_token_cache *cp
35647 = cp_token_cache_new (pragma_tok, cp_lexer_peek_token (parser->lexer));
35648 parser->omp_declare_simd->tokens.safe_push (cp);
35649 if (first_p)
35650 {
35651 while (cp_lexer_next_token_is (parser->lexer, CPP_PRAGMA))
35652 cp_parser_pragma (parser, context, NULL);
35653 switch (context)
35654 {
35655 case pragma_external:
35656 cp_parser_declaration (parser);
35657 break;
35658 case pragma_member:
35659 cp_parser_member_declaration (parser);
35660 break;
35661 case pragma_objc_icode:
35662 cp_parser_block_declaration (parser, /*statement_p=*/false);
35663 break;
35664 default:
35665 cp_parser_declaration_statement (parser);
35666 break;
35667 }
35668 if (parser->omp_declare_simd
35669 && !parser->omp_declare_simd->error_seen
35670 && !parser->omp_declare_simd->fndecl_seen)
35671 error_at (pragma_tok->location,
35672 "%<#pragma omp declare simd%> not immediately followed by "
35673 "function declaration or definition");
35674 data.tokens.release ();
35675 parser->omp_declare_simd = NULL;
35676 }
35677 }
35678
35679 /* Handles the delayed parsing of the Cilk Plus SIMD-enabled function.
35680 This function is modelled similar to the late parsing of omp declare
35681 simd. */
35682
35683 static tree
35684 cp_parser_late_parsing_cilk_simd_fn_info (cp_parser *parser, tree attrs)
35685 {
35686 struct cp_token_cache *ce;
35687 cp_omp_declare_simd_data *info = parser->cilk_simd_fn_info;
35688 int ii = 0;
35689
35690 if (parser->omp_declare_simd != NULL
35691 || lookup_attribute ("simd", attrs))
35692 {
35693 error ("%<#pragma omp declare simd%> of %<simd%> attribute cannot be "
35694 "used in the same function marked as a Cilk Plus SIMD-enabled "
35695 " function");
35696 parser->cilk_simd_fn_info->tokens.release ();
35697 XDELETE (parser->cilk_simd_fn_info);
35698 parser->cilk_simd_fn_info = NULL;
35699 return attrs;
35700 }
35701 if (!info->error_seen && info->fndecl_seen)
35702 {
35703 error ("vector attribute not immediately followed by a single function"
35704 " declaration or definition");
35705 info->error_seen = true;
35706 }
35707 if (info->error_seen)
35708 return attrs;
35709
35710 FOR_EACH_VEC_ELT (info->tokens, ii, ce)
35711 {
35712 tree c, cl;
35713
35714 cp_parser_push_lexer_for_tokens (parser, ce);
35715 parser->lexer->in_pragma = true;
35716 cl = cp_parser_omp_all_clauses (parser, CILK_SIMD_FN_CLAUSE_MASK,
35717 "SIMD-enabled functions attribute",
35718 NULL);
35719 cp_parser_pop_lexer (parser);
35720 if (cl)
35721 cl = tree_cons (NULL_TREE, cl, NULL_TREE);
35722
35723 c = build_tree_list (get_identifier ("cilk simd function"), NULL_TREE);
35724 TREE_CHAIN (c) = attrs;
35725 attrs = c;
35726
35727 c = build_tree_list (get_identifier ("omp declare simd"), cl);
35728 TREE_CHAIN (c) = attrs;
35729 if (processing_template_decl)
35730 ATTR_IS_DEPENDENT (c) = 1;
35731 attrs = c;
35732 }
35733 info->fndecl_seen = true;
35734 parser->cilk_simd_fn_info->tokens.release ();
35735 XDELETE (parser->cilk_simd_fn_info);
35736 parser->cilk_simd_fn_info = NULL;
35737 return attrs;
35738 }
35739
35740 /* Finalize #pragma omp declare simd clauses after direct declarator has
35741 been parsed, and put that into "omp declare simd" attribute. */
35742
35743 static tree
35744 cp_parser_late_parsing_omp_declare_simd (cp_parser *parser, tree attrs)
35745 {
35746 struct cp_token_cache *ce;
35747 cp_omp_declare_simd_data *data = parser->omp_declare_simd;
35748 int i;
35749
35750 if (!data->error_seen && data->fndecl_seen)
35751 {
35752 error ("%<#pragma omp declare simd%> not immediately followed by "
35753 "a single function declaration or definition");
35754 data->error_seen = true;
35755 return attrs;
35756 }
35757 if (data->error_seen)
35758 return attrs;
35759
35760 FOR_EACH_VEC_ELT (data->tokens, i, ce)
35761 {
35762 tree c, cl;
35763
35764 cp_parser_push_lexer_for_tokens (parser, ce);
35765 parser->lexer->in_pragma = true;
35766 gcc_assert (cp_lexer_peek_token (parser->lexer)->type == CPP_PRAGMA);
35767 cp_token *pragma_tok = cp_lexer_consume_token (parser->lexer);
35768 cp_lexer_consume_token (parser->lexer);
35769 cl = cp_parser_omp_all_clauses (parser, OMP_DECLARE_SIMD_CLAUSE_MASK,
35770 "#pragma omp declare simd", pragma_tok);
35771 cp_parser_pop_lexer (parser);
35772 if (cl)
35773 cl = tree_cons (NULL_TREE, cl, NULL_TREE);
35774 c = build_tree_list (get_identifier ("omp declare simd"), cl);
35775 TREE_CHAIN (c) = attrs;
35776 if (processing_template_decl)
35777 ATTR_IS_DEPENDENT (c) = 1;
35778 attrs = c;
35779 }
35780
35781 data->fndecl_seen = true;
35782 return attrs;
35783 }
35784
35785
35786 /* OpenMP 4.0:
35787 # pragma omp declare target new-line
35788 declarations and definitions
35789 # pragma omp end declare target new-line
35790
35791 OpenMP 4.5:
35792 # pragma omp declare target ( extended-list ) new-line
35793
35794 # pragma omp declare target declare-target-clauses[seq] new-line */
35795
35796 #define OMP_DECLARE_TARGET_CLAUSE_MASK \
35797 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_TO) \
35798 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LINK))
35799
35800 static void
35801 cp_parser_omp_declare_target (cp_parser *parser, cp_token *pragma_tok)
35802 {
35803 tree clauses = NULL_TREE;
35804 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
35805 clauses
35806 = cp_parser_omp_all_clauses (parser, OMP_DECLARE_TARGET_CLAUSE_MASK,
35807 "#pragma omp declare target", pragma_tok);
35808 else if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
35809 {
35810 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_TO_DECLARE,
35811 clauses);
35812 clauses = finish_omp_clauses (clauses, C_ORT_OMP);
35813 cp_parser_require_pragma_eol (parser, pragma_tok);
35814 }
35815 else
35816 {
35817 cp_parser_require_pragma_eol (parser, pragma_tok);
35818 scope_chain->omp_declare_target_attribute++;
35819 return;
35820 }
35821 if (scope_chain->omp_declare_target_attribute)
35822 error_at (pragma_tok->location,
35823 "%<#pragma omp declare target%> with clauses in between "
35824 "%<#pragma omp declare target%> without clauses and "
35825 "%<#pragma omp end declare target%>");
35826 for (tree c = clauses; c; c = OMP_CLAUSE_CHAIN (c))
35827 {
35828 tree t = OMP_CLAUSE_DECL (c), id;
35829 tree at1 = lookup_attribute ("omp declare target", DECL_ATTRIBUTES (t));
35830 tree at2 = lookup_attribute ("omp declare target link",
35831 DECL_ATTRIBUTES (t));
35832 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LINK)
35833 {
35834 id = get_identifier ("omp declare target link");
35835 std::swap (at1, at2);
35836 }
35837 else
35838 id = get_identifier ("omp declare target");
35839 if (at2)
35840 {
35841 error_at (OMP_CLAUSE_LOCATION (c),
35842 "%qD specified both in declare target %<link%> and %<to%>"
35843 " clauses", t);
35844 continue;
35845 }
35846 if (!at1)
35847 {
35848 symtab_node *node = symtab_node::get (t);
35849 DECL_ATTRIBUTES (t) = tree_cons (id, NULL_TREE, DECL_ATTRIBUTES (t));
35850 if (node != NULL)
35851 {
35852 node->offloadable = 1;
35853 if (ENABLE_OFFLOADING)
35854 {
35855 g->have_offload = true;
35856 if (is_a <varpool_node *> (node))
35857 vec_safe_push (offload_vars, t);
35858 }
35859 }
35860 }
35861 }
35862 }
35863
35864 static void
35865 cp_parser_omp_end_declare_target (cp_parser *parser, cp_token *pragma_tok)
35866 {
35867 const char *p = "";
35868 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
35869 {
35870 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
35871 p = IDENTIFIER_POINTER (id);
35872 }
35873 if (strcmp (p, "declare") == 0)
35874 {
35875 cp_lexer_consume_token (parser->lexer);
35876 p = "";
35877 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
35878 {
35879 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
35880 p = IDENTIFIER_POINTER (id);
35881 }
35882 if (strcmp (p, "target") == 0)
35883 cp_lexer_consume_token (parser->lexer);
35884 else
35885 {
35886 cp_parser_error (parser, "expected %<target%>");
35887 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
35888 return;
35889 }
35890 }
35891 else
35892 {
35893 cp_parser_error (parser, "expected %<declare%>");
35894 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
35895 return;
35896 }
35897 cp_parser_require_pragma_eol (parser, pragma_tok);
35898 if (!scope_chain->omp_declare_target_attribute)
35899 error_at (pragma_tok->location,
35900 "%<#pragma omp end declare target%> without corresponding "
35901 "%<#pragma omp declare target%>");
35902 else
35903 scope_chain->omp_declare_target_attribute--;
35904 }
35905
35906 /* Helper function of cp_parser_omp_declare_reduction. Parse the combiner
35907 expression and optional initializer clause of
35908 #pragma omp declare reduction. We store the expression(s) as
35909 either 3, 6 or 7 special statements inside of the artificial function's
35910 body. The first two statements are DECL_EXPRs for the artificial
35911 OMP_OUT resp. OMP_IN variables, followed by a statement with the combiner
35912 expression that uses those variables.
35913 If there was any INITIALIZER clause, this is followed by further statements,
35914 the fourth and fifth statements are DECL_EXPRs for the artificial
35915 OMP_PRIV resp. OMP_ORIG variables. If the INITIALIZER clause wasn't the
35916 constructor variant (first token after open paren is not omp_priv),
35917 then the sixth statement is a statement with the function call expression
35918 that uses the OMP_PRIV and optionally OMP_ORIG variable.
35919 Otherwise, the sixth statement is whatever statement cp_finish_decl emits
35920 to initialize the OMP_PRIV artificial variable and there is seventh
35921 statement, a DECL_EXPR of the OMP_PRIV statement again. */
35922
35923 static bool
35924 cp_parser_omp_declare_reduction_exprs (tree fndecl, cp_parser *parser)
35925 {
35926 tree type = TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (fndecl)));
35927 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
35928 type = TREE_TYPE (type);
35929 tree omp_out = build_lang_decl (VAR_DECL, get_identifier ("omp_out"), type);
35930 DECL_ARTIFICIAL (omp_out) = 1;
35931 pushdecl (omp_out);
35932 add_decl_expr (omp_out);
35933 tree omp_in = build_lang_decl (VAR_DECL, get_identifier ("omp_in"), type);
35934 DECL_ARTIFICIAL (omp_in) = 1;
35935 pushdecl (omp_in);
35936 add_decl_expr (omp_in);
35937 tree combiner;
35938 tree omp_priv = NULL_TREE, omp_orig = NULL_TREE, initializer = NULL_TREE;
35939
35940 keep_next_level (true);
35941 tree block = begin_omp_structured_block ();
35942 combiner = cp_parser_expression (parser);
35943 finish_expr_stmt (combiner);
35944 block = finish_omp_structured_block (block);
35945 add_stmt (block);
35946
35947 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
35948 return false;
35949
35950 const char *p = "";
35951 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
35952 {
35953 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
35954 p = IDENTIFIER_POINTER (id);
35955 }
35956
35957 if (strcmp (p, "initializer") == 0)
35958 {
35959 cp_lexer_consume_token (parser->lexer);
35960 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
35961 return false;
35962
35963 p = "";
35964 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
35965 {
35966 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
35967 p = IDENTIFIER_POINTER (id);
35968 }
35969
35970 omp_priv = build_lang_decl (VAR_DECL, get_identifier ("omp_priv"), type);
35971 DECL_ARTIFICIAL (omp_priv) = 1;
35972 pushdecl (omp_priv);
35973 add_decl_expr (omp_priv);
35974 omp_orig = build_lang_decl (VAR_DECL, get_identifier ("omp_orig"), type);
35975 DECL_ARTIFICIAL (omp_orig) = 1;
35976 pushdecl (omp_orig);
35977 add_decl_expr (omp_orig);
35978
35979 keep_next_level (true);
35980 block = begin_omp_structured_block ();
35981
35982 bool ctor = false;
35983 if (strcmp (p, "omp_priv") == 0)
35984 {
35985 bool is_direct_init, is_non_constant_init;
35986 ctor = true;
35987 cp_lexer_consume_token (parser->lexer);
35988 /* Reject initializer (omp_priv) and initializer (omp_priv ()). */
35989 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN)
35990 || (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN)
35991 && cp_lexer_peek_nth_token (parser->lexer, 2)->type
35992 == CPP_CLOSE_PAREN
35993 && cp_lexer_peek_nth_token (parser->lexer, 3)->type
35994 == CPP_CLOSE_PAREN))
35995 {
35996 finish_omp_structured_block (block);
35997 error ("invalid initializer clause");
35998 return false;
35999 }
36000 initializer = cp_parser_initializer (parser, &is_direct_init,
36001 &is_non_constant_init);
36002 cp_finish_decl (omp_priv, initializer, !is_non_constant_init,
36003 NULL_TREE, LOOKUP_ONLYCONVERTING);
36004 }
36005 else
36006 {
36007 cp_parser_parse_tentatively (parser);
36008 tree fn_name = cp_parser_id_expression (parser, /*template_p=*/false,
36009 /*check_dependency_p=*/true,
36010 /*template_p=*/NULL,
36011 /*declarator_p=*/false,
36012 /*optional_p=*/false);
36013 vec<tree, va_gc> *args;
36014 if (fn_name == error_mark_node
36015 || cp_parser_error_occurred (parser)
36016 || !cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN)
36017 || ((args = cp_parser_parenthesized_expression_list
36018 (parser, non_attr, /*cast_p=*/false,
36019 /*allow_expansion_p=*/true,
36020 /*non_constant_p=*/NULL)),
36021 cp_parser_error_occurred (parser)))
36022 {
36023 finish_omp_structured_block (block);
36024 cp_parser_abort_tentative_parse (parser);
36025 cp_parser_error (parser, "expected id-expression (arguments)");
36026 return false;
36027 }
36028 unsigned int i;
36029 tree arg;
36030 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
36031 if (arg == omp_priv
36032 || (TREE_CODE (arg) == ADDR_EXPR
36033 && TREE_OPERAND (arg, 0) == omp_priv))
36034 break;
36035 cp_parser_abort_tentative_parse (parser);
36036 if (arg == NULL_TREE)
36037 error ("one of the initializer call arguments should be %<omp_priv%>"
36038 " or %<&omp_priv%>");
36039 initializer = cp_parser_postfix_expression (parser, false, false, false,
36040 false, NULL);
36041 finish_expr_stmt (initializer);
36042 }
36043
36044 block = finish_omp_structured_block (block);
36045 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
36046 add_stmt (block);
36047
36048 if (ctor)
36049 add_decl_expr (omp_orig);
36050
36051 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
36052 return false;
36053 }
36054
36055 if (!cp_lexer_next_token_is (parser->lexer, CPP_PRAGMA_EOL))
36056 cp_parser_required_error (parser, RT_PRAGMA_EOL, /*keyword=*/false);
36057
36058 return true;
36059 }
36060
36061 /* OpenMP 4.0
36062 #pragma omp declare reduction (reduction-id : typename-list : expression) \
36063 initializer-clause[opt] new-line
36064
36065 initializer-clause:
36066 initializer (omp_priv initializer)
36067 initializer (function-name (argument-list)) */
36068
36069 static void
36070 cp_parser_omp_declare_reduction (cp_parser *parser, cp_token *pragma_tok,
36071 enum pragma_context)
36072 {
36073 auto_vec<tree> types;
36074 enum tree_code reduc_code = ERROR_MARK;
36075 tree reduc_id = NULL_TREE, orig_reduc_id = NULL_TREE, type;
36076 unsigned int i;
36077 cp_token *first_token;
36078 cp_token_cache *cp;
36079 int errs;
36080 void *p;
36081
36082 /* Get the high-water mark for the DECLARATOR_OBSTACK. */
36083 p = obstack_alloc (&declarator_obstack, 0);
36084
36085 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
36086 goto fail;
36087
36088 switch (cp_lexer_peek_token (parser->lexer)->type)
36089 {
36090 case CPP_PLUS:
36091 reduc_code = PLUS_EXPR;
36092 break;
36093 case CPP_MULT:
36094 reduc_code = MULT_EXPR;
36095 break;
36096 case CPP_MINUS:
36097 reduc_code = MINUS_EXPR;
36098 break;
36099 case CPP_AND:
36100 reduc_code = BIT_AND_EXPR;
36101 break;
36102 case CPP_XOR:
36103 reduc_code = BIT_XOR_EXPR;
36104 break;
36105 case CPP_OR:
36106 reduc_code = BIT_IOR_EXPR;
36107 break;
36108 case CPP_AND_AND:
36109 reduc_code = TRUTH_ANDIF_EXPR;
36110 break;
36111 case CPP_OR_OR:
36112 reduc_code = TRUTH_ORIF_EXPR;
36113 break;
36114 case CPP_NAME:
36115 reduc_id = orig_reduc_id = cp_parser_identifier (parser);
36116 break;
36117 default:
36118 cp_parser_error (parser, "expected %<+%>, %<*%>, %<-%>, %<&%>, %<^%>, "
36119 "%<|%>, %<&&%>, %<||%> or identifier");
36120 goto fail;
36121 }
36122
36123 if (reduc_code != ERROR_MARK)
36124 cp_lexer_consume_token (parser->lexer);
36125
36126 reduc_id = omp_reduction_id (reduc_code, reduc_id, NULL_TREE);
36127 if (reduc_id == error_mark_node)
36128 goto fail;
36129
36130 if (!cp_parser_require (parser, CPP_COLON, RT_COLON))
36131 goto fail;
36132
36133 /* Types may not be defined in declare reduction type list. */
36134 const char *saved_message;
36135 saved_message = parser->type_definition_forbidden_message;
36136 parser->type_definition_forbidden_message
36137 = G_("types may not be defined in declare reduction type list");
36138 bool saved_colon_corrects_to_scope_p;
36139 saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
36140 parser->colon_corrects_to_scope_p = false;
36141 bool saved_colon_doesnt_start_class_def_p;
36142 saved_colon_doesnt_start_class_def_p
36143 = parser->colon_doesnt_start_class_def_p;
36144 parser->colon_doesnt_start_class_def_p = true;
36145
36146 while (true)
36147 {
36148 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
36149 type = cp_parser_type_id (parser);
36150 if (type == error_mark_node)
36151 ;
36152 else if (ARITHMETIC_TYPE_P (type)
36153 && (orig_reduc_id == NULL_TREE
36154 || (TREE_CODE (type) != COMPLEX_TYPE
36155 && (strcmp (IDENTIFIER_POINTER (orig_reduc_id),
36156 "min") == 0
36157 || strcmp (IDENTIFIER_POINTER (orig_reduc_id),
36158 "max") == 0))))
36159 error_at (loc, "predeclared arithmetic type %qT in "
36160 "%<#pragma omp declare reduction%>", type);
36161 else if (TREE_CODE (type) == FUNCTION_TYPE
36162 || TREE_CODE (type) == METHOD_TYPE
36163 || TREE_CODE (type) == ARRAY_TYPE)
36164 error_at (loc, "function or array type %qT in "
36165 "%<#pragma omp declare reduction%>", type);
36166 else if (TREE_CODE (type) == REFERENCE_TYPE)
36167 error_at (loc, "reference type %qT in "
36168 "%<#pragma omp declare reduction%>", type);
36169 else if (TYPE_QUALS_NO_ADDR_SPACE (type))
36170 error_at (loc, "const, volatile or __restrict qualified type %qT in "
36171 "%<#pragma omp declare reduction%>", type);
36172 else
36173 types.safe_push (type);
36174
36175 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
36176 cp_lexer_consume_token (parser->lexer);
36177 else
36178 break;
36179 }
36180
36181 /* Restore the saved message. */
36182 parser->type_definition_forbidden_message = saved_message;
36183 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
36184 parser->colon_doesnt_start_class_def_p
36185 = saved_colon_doesnt_start_class_def_p;
36186
36187 if (!cp_parser_require (parser, CPP_COLON, RT_COLON)
36188 || types.is_empty ())
36189 {
36190 fail:
36191 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
36192 goto done;
36193 }
36194
36195 first_token = cp_lexer_peek_token (parser->lexer);
36196 cp = NULL;
36197 errs = errorcount;
36198 FOR_EACH_VEC_ELT (types, i, type)
36199 {
36200 tree fntype
36201 = build_function_type_list (void_type_node,
36202 cp_build_reference_type (type, false),
36203 NULL_TREE);
36204 tree this_reduc_id = reduc_id;
36205 if (!dependent_type_p (type))
36206 this_reduc_id = omp_reduction_id (ERROR_MARK, reduc_id, type);
36207 tree fndecl = build_lang_decl (FUNCTION_DECL, this_reduc_id, fntype);
36208 DECL_SOURCE_LOCATION (fndecl) = pragma_tok->location;
36209 DECL_ARTIFICIAL (fndecl) = 1;
36210 DECL_EXTERNAL (fndecl) = 1;
36211 DECL_DECLARED_INLINE_P (fndecl) = 1;
36212 DECL_IGNORED_P (fndecl) = 1;
36213 DECL_OMP_DECLARE_REDUCTION_P (fndecl) = 1;
36214 SET_DECL_ASSEMBLER_NAME (fndecl, get_identifier ("<udr>"));
36215 DECL_ATTRIBUTES (fndecl)
36216 = tree_cons (get_identifier ("gnu_inline"), NULL_TREE,
36217 DECL_ATTRIBUTES (fndecl));
36218 if (processing_template_decl)
36219 fndecl = push_template_decl (fndecl);
36220 bool block_scope = false;
36221 tree block = NULL_TREE;
36222 if (current_function_decl)
36223 {
36224 block_scope = true;
36225 DECL_CONTEXT (fndecl) = global_namespace;
36226 if (!processing_template_decl)
36227 pushdecl (fndecl);
36228 }
36229 else if (current_class_type)
36230 {
36231 if (cp == NULL)
36232 {
36233 while (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL)
36234 && cp_lexer_next_token_is_not (parser->lexer, CPP_EOF))
36235 cp_lexer_consume_token (parser->lexer);
36236 if (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL))
36237 goto fail;
36238 cp = cp_token_cache_new (first_token,
36239 cp_lexer_peek_nth_token (parser->lexer,
36240 2));
36241 }
36242 DECL_STATIC_FUNCTION_P (fndecl) = 1;
36243 finish_member_declaration (fndecl);
36244 DECL_PENDING_INLINE_INFO (fndecl) = cp;
36245 DECL_PENDING_INLINE_P (fndecl) = 1;
36246 vec_safe_push (unparsed_funs_with_definitions, fndecl);
36247 continue;
36248 }
36249 else
36250 {
36251 DECL_CONTEXT (fndecl) = current_namespace;
36252 pushdecl (fndecl);
36253 }
36254 if (!block_scope)
36255 start_preparsed_function (fndecl, NULL_TREE, SF_PRE_PARSED);
36256 else
36257 block = begin_omp_structured_block ();
36258 if (cp)
36259 {
36260 cp_parser_push_lexer_for_tokens (parser, cp);
36261 parser->lexer->in_pragma = true;
36262 }
36263 if (!cp_parser_omp_declare_reduction_exprs (fndecl, parser))
36264 {
36265 if (!block_scope)
36266 finish_function (0);
36267 else
36268 DECL_CONTEXT (fndecl) = current_function_decl;
36269 if (cp)
36270 cp_parser_pop_lexer (parser);
36271 goto fail;
36272 }
36273 if (cp)
36274 cp_parser_pop_lexer (parser);
36275 if (!block_scope)
36276 finish_function (0);
36277 else
36278 {
36279 DECL_CONTEXT (fndecl) = current_function_decl;
36280 block = finish_omp_structured_block (block);
36281 if (TREE_CODE (block) == BIND_EXPR)
36282 DECL_SAVED_TREE (fndecl) = BIND_EXPR_BODY (block);
36283 else if (TREE_CODE (block) == STATEMENT_LIST)
36284 DECL_SAVED_TREE (fndecl) = block;
36285 if (processing_template_decl)
36286 add_decl_expr (fndecl);
36287 }
36288 cp_check_omp_declare_reduction (fndecl);
36289 if (cp == NULL && types.length () > 1)
36290 cp = cp_token_cache_new (first_token,
36291 cp_lexer_peek_nth_token (parser->lexer, 2));
36292 if (errs != errorcount)
36293 break;
36294 }
36295
36296 cp_parser_require_pragma_eol (parser, pragma_tok);
36297
36298 done:
36299 /* Free any declarators allocated. */
36300 obstack_free (&declarator_obstack, p);
36301 }
36302
36303 /* OpenMP 4.0
36304 #pragma omp declare simd declare-simd-clauses[optseq] new-line
36305 #pragma omp declare reduction (reduction-id : typename-list : expression) \
36306 initializer-clause[opt] new-line
36307 #pragma omp declare target new-line */
36308
36309 static void
36310 cp_parser_omp_declare (cp_parser *parser, cp_token *pragma_tok,
36311 enum pragma_context context)
36312 {
36313 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
36314 {
36315 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
36316 const char *p = IDENTIFIER_POINTER (id);
36317
36318 if (strcmp (p, "simd") == 0)
36319 {
36320 cp_lexer_consume_token (parser->lexer);
36321 cp_parser_omp_declare_simd (parser, pragma_tok,
36322 context);
36323 return;
36324 }
36325 cp_ensure_no_omp_declare_simd (parser);
36326 if (strcmp (p, "reduction") == 0)
36327 {
36328 cp_lexer_consume_token (parser->lexer);
36329 cp_parser_omp_declare_reduction (parser, pragma_tok,
36330 context);
36331 return;
36332 }
36333 if (!flag_openmp) /* flag_openmp_simd */
36334 {
36335 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
36336 return;
36337 }
36338 if (strcmp (p, "target") == 0)
36339 {
36340 cp_lexer_consume_token (parser->lexer);
36341 cp_parser_omp_declare_target (parser, pragma_tok);
36342 return;
36343 }
36344 }
36345 cp_parser_error (parser, "expected %<simd%> or %<reduction%> "
36346 "or %<target%>");
36347 cp_parser_require_pragma_eol (parser, pragma_tok);
36348 }
36349
36350 /* OpenMP 4.5:
36351 #pragma omp taskloop taskloop-clause[optseq] new-line
36352 for-loop
36353
36354 #pragma omp taskloop simd taskloop-simd-clause[optseq] new-line
36355 for-loop */
36356
36357 #define OMP_TASKLOOP_CLAUSE_MASK \
36358 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_SHARED) \
36359 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIVATE) \
36360 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
36361 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
36362 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_DEFAULT) \
36363 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_GRAINSIZE) \
36364 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NUM_TASKS) \
36365 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_COLLAPSE) \
36366 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_UNTIED) \
36367 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_IF) \
36368 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_FINAL) \
36369 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_MERGEABLE) \
36370 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_NOGROUP) \
36371 | (OMP_CLAUSE_MASK_1 << PRAGMA_OMP_CLAUSE_PRIORITY))
36372
36373 static tree
36374 cp_parser_omp_taskloop (cp_parser *parser, cp_token *pragma_tok,
36375 char *p_name, omp_clause_mask mask, tree *cclauses,
36376 bool *if_p)
36377 {
36378 tree clauses, sb, ret;
36379 unsigned int save;
36380 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
36381
36382 strcat (p_name, " taskloop");
36383 mask |= OMP_TASKLOOP_CLAUSE_MASK;
36384
36385 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
36386 {
36387 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
36388 const char *p = IDENTIFIER_POINTER (id);
36389
36390 if (strcmp (p, "simd") == 0)
36391 {
36392 tree cclauses_buf[C_OMP_CLAUSE_SPLIT_COUNT];
36393 if (cclauses == NULL)
36394 cclauses = cclauses_buf;
36395
36396 cp_lexer_consume_token (parser->lexer);
36397 if (!flag_openmp) /* flag_openmp_simd */
36398 return cp_parser_omp_simd (parser, pragma_tok, p_name, mask,
36399 cclauses, if_p);
36400 sb = begin_omp_structured_block ();
36401 save = cp_parser_begin_omp_structured_block (parser);
36402 ret = cp_parser_omp_simd (parser, pragma_tok, p_name, mask,
36403 cclauses, if_p);
36404 cp_parser_end_omp_structured_block (parser, save);
36405 tree body = finish_omp_structured_block (sb);
36406 if (ret == NULL)
36407 return ret;
36408 ret = make_node (OMP_TASKLOOP);
36409 TREE_TYPE (ret) = void_type_node;
36410 OMP_FOR_BODY (ret) = body;
36411 OMP_FOR_CLAUSES (ret) = cclauses[C_OMP_CLAUSE_SPLIT_TASKLOOP];
36412 SET_EXPR_LOCATION (ret, loc);
36413 add_stmt (ret);
36414 return ret;
36415 }
36416 }
36417 if (!flag_openmp) /* flag_openmp_simd */
36418 {
36419 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
36420 return NULL_TREE;
36421 }
36422
36423 clauses = cp_parser_omp_all_clauses (parser, mask, p_name, pragma_tok,
36424 cclauses == NULL);
36425 if (cclauses)
36426 {
36427 cp_omp_split_clauses (loc, OMP_TASKLOOP, mask, clauses, cclauses);
36428 clauses = cclauses[C_OMP_CLAUSE_SPLIT_TASKLOOP];
36429 }
36430
36431 sb = begin_omp_structured_block ();
36432 save = cp_parser_begin_omp_structured_block (parser);
36433
36434 ret = cp_parser_omp_for_loop (parser, OMP_TASKLOOP, clauses, cclauses,
36435 if_p);
36436
36437 cp_parser_end_omp_structured_block (parser, save);
36438 add_stmt (finish_omp_structured_block (sb));
36439
36440 return ret;
36441 }
36442
36443
36444 /* OpenACC 2.0:
36445 # pragma acc routine oacc-routine-clause[optseq] new-line
36446 function-definition
36447
36448 # pragma acc routine ( name ) oacc-routine-clause[optseq] new-line
36449 */
36450
36451 #define OACC_ROUTINE_CLAUSE_MASK \
36452 ( (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_GANG) \
36453 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_WORKER) \
36454 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_VECTOR) \
36455 | (OMP_CLAUSE_MASK_1 << PRAGMA_OACC_CLAUSE_SEQ))
36456
36457
36458 /* Parse the OpenACC routine pragma. This has an optional '( name )'
36459 component, which must resolve to a declared namespace-scope
36460 function. The clauses are either processed directly (for a named
36461 function), or defered until the immediatley following declaration
36462 is parsed. */
36463
36464 static void
36465 cp_parser_oacc_routine (cp_parser *parser, cp_token *pragma_tok,
36466 enum pragma_context context)
36467 {
36468 bool first_p = parser->oacc_routine == NULL;
36469 location_t loc = pragma_tok->location;
36470 cp_omp_declare_simd_data data;
36471 if (first_p)
36472 {
36473 data.error_seen = false;
36474 data.fndecl_seen = false;
36475 data.tokens = vNULL;
36476 data.clauses = NULL_TREE;
36477 parser->oacc_routine = &data;
36478 }
36479
36480 tree decl = NULL_TREE;
36481 /* Create a dummy claue, to record location. */
36482 tree c_head = build_omp_clause (pragma_tok->location, OMP_CLAUSE_SEQ);
36483
36484 if (context != pragma_external)
36485 {
36486 cp_parser_error (parser, "%<#pragma acc routine%> not at file scope");
36487 parser->oacc_routine->error_seen = true;
36488 parser->oacc_routine = NULL;
36489 return;
36490 }
36491
36492 /* Look for optional '( name )'. */
36493 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
36494 {
36495 if (!first_p)
36496 {
36497 while (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL)
36498 && cp_lexer_next_token_is_not (parser->lexer, CPP_EOF))
36499 cp_lexer_consume_token (parser->lexer);
36500 if (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL))
36501 parser->oacc_routine->error_seen = true;
36502 cp_parser_require_pragma_eol (parser, pragma_tok);
36503
36504 error_at (OMP_CLAUSE_LOCATION (parser->oacc_routine->clauses),
36505 "%<#pragma acc routine%> not followed by a "
36506 "function declaration or definition");
36507
36508 parser->oacc_routine->error_seen = true;
36509 return;
36510 }
36511
36512 cp_lexer_consume_token (parser->lexer);
36513 cp_token *token = cp_lexer_peek_token (parser->lexer);
36514
36515 /* We parse the name as an id-expression. If it resolves to
36516 anything other than a non-overloaded function at namespace
36517 scope, it's an error. */
36518 tree id = cp_parser_id_expression (parser,
36519 /*template_keyword_p=*/false,
36520 /*check_dependency_p=*/false,
36521 /*template_p=*/NULL,
36522 /*declarator_p=*/false,
36523 /*optional_p=*/false);
36524 decl = cp_parser_lookup_name_simple (parser, id, token->location);
36525 if (id != error_mark_node && decl == error_mark_node)
36526 cp_parser_name_lookup_error (parser, id, decl, NLE_NULL,
36527 token->location);
36528
36529 if (decl == error_mark_node
36530 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
36531 {
36532 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
36533 parser->oacc_routine = NULL;
36534 return;
36535 }
36536
36537 /* Build a chain of clauses. */
36538 parser->lexer->in_pragma = true;
36539 tree clauses = NULL_TREE;
36540 clauses = cp_parser_oacc_all_clauses (parser, OACC_ROUTINE_CLAUSE_MASK,
36541 "#pragma acc routine",
36542 cp_lexer_peek_token
36543 (parser->lexer));
36544
36545 /* Force clauses to be non-null, by attaching context to it. */
36546 clauses = tree_cons (c_head, clauses, NULL_TREE);
36547
36548 if (decl && is_overloaded_fn (decl)
36549 && (TREE_CODE (decl) != FUNCTION_DECL
36550 || DECL_FUNCTION_TEMPLATE_P (decl)))
36551 {
36552 error_at (loc, "%<#pragma acc routine%> names a set of overloads");
36553 parser->oacc_routine = NULL;
36554 return;
36555 }
36556
36557 /* Perhaps we should use the same rule as declarations in different
36558 namespaces? */
36559 if (!DECL_NAMESPACE_SCOPE_P (decl))
36560 {
36561 error_at (loc, "%<#pragma acc routine%> does not refer to a "
36562 "namespace scope function");
36563 parser->oacc_routine = NULL;
36564 return;
36565 }
36566
36567 if (!decl || TREE_CODE (decl) != FUNCTION_DECL)
36568 {
36569 error_at (loc,
36570 "%<#pragma acc routine%> does not refer to a function");
36571 parser->oacc_routine = NULL;
36572 return;
36573 }
36574
36575 data.clauses = clauses;
36576
36577 cp_finalize_oacc_routine (parser, decl, false);
36578 data.tokens.release ();
36579 parser->oacc_routine = NULL;
36580 }
36581 else
36582 {
36583 while (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL)
36584 && cp_lexer_next_token_is_not (parser->lexer, CPP_EOF))
36585 cp_lexer_consume_token (parser->lexer);
36586 if (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL))
36587 parser->oacc_routine->error_seen = true;
36588 cp_parser_require_pragma_eol (parser, pragma_tok);
36589
36590 struct cp_token_cache *cp
36591 = cp_token_cache_new (pragma_tok, cp_lexer_peek_token (parser->lexer));
36592 parser->oacc_routine->tokens.safe_push (cp);
36593
36594 if (first_p)
36595 parser->oacc_routine->clauses = c_head;
36596
36597 while (cp_lexer_next_token_is (parser->lexer, CPP_PRAGMA))
36598 cp_parser_pragma (parser, context, NULL);
36599
36600 if (first_p)
36601 {
36602 /* Create an empty list of clauses. */
36603 parser->oacc_routine->clauses = tree_cons (c_head, NULL_TREE,
36604 NULL_TREE);
36605 cp_parser_declaration (parser);
36606
36607 if (parser->oacc_routine
36608 && !parser->oacc_routine->error_seen
36609 && !parser->oacc_routine->fndecl_seen)
36610 error_at (loc, "%<#pragma acc routine%> not followed by a "
36611 "function declaration or definition");
36612
36613 data.tokens.release ();
36614 parser->oacc_routine = NULL;
36615 }
36616 }
36617 }
36618
36619 /* Finalize #pragma acc routine clauses after direct declarator has
36620 been parsed, and put that into "oacc function" attribute. */
36621
36622 static tree
36623 cp_parser_late_parsing_oacc_routine (cp_parser *parser, tree attrs)
36624 {
36625 struct cp_token_cache *ce;
36626 cp_omp_declare_simd_data *data = parser->oacc_routine;
36627 tree cl, clauses = parser->oacc_routine->clauses;
36628 location_t loc;
36629
36630 loc = OMP_CLAUSE_LOCATION (TREE_PURPOSE(clauses));
36631
36632 if ((!data->error_seen && data->fndecl_seen)
36633 || data->tokens.length () != 1)
36634 {
36635 error_at (loc, "%<#pragma acc routine%> not followed by a "
36636 "function declaration or definition");
36637 data->error_seen = true;
36638 return attrs;
36639 }
36640 if (data->error_seen)
36641 return attrs;
36642
36643 ce = data->tokens[0];
36644
36645 cp_parser_push_lexer_for_tokens (parser, ce);
36646 parser->lexer->in_pragma = true;
36647 gcc_assert (cp_lexer_peek_token (parser->lexer)->type == CPP_PRAGMA);
36648
36649 cp_token *pragma_tok = cp_lexer_consume_token (parser->lexer);
36650 cl = cp_parser_oacc_all_clauses (parser, OACC_ROUTINE_CLAUSE_MASK,
36651 "#pragma acc routine", pragma_tok);
36652 cp_parser_pop_lexer (parser);
36653
36654 tree c_head = build_omp_clause (loc, OMP_CLAUSE_SEQ);
36655
36656 /* Force clauses to be non-null, by attaching context to it. */
36657 parser->oacc_routine->clauses = tree_cons (c_head, cl, NULL_TREE);
36658
36659 data->fndecl_seen = true;
36660 return attrs;
36661 }
36662
36663 /* Apply any saved OpenACC routine clauses to a just-parsed
36664 declaration. */
36665
36666 static void
36667 cp_finalize_oacc_routine (cp_parser *parser, tree fndecl, bool is_defn)
36668 {
36669 if (__builtin_expect (parser->oacc_routine != NULL, 0))
36670 {
36671 tree clauses = parser->oacc_routine->clauses;
36672 location_t loc = OMP_CLAUSE_LOCATION (TREE_PURPOSE(clauses));
36673
36674 if (parser->oacc_routine->error_seen)
36675 return;
36676
36677 if (fndecl == error_mark_node)
36678 {
36679 parser->oacc_routine = NULL;
36680 return;
36681 }
36682
36683 if (TREE_CODE (fndecl) != FUNCTION_DECL)
36684 {
36685 cp_ensure_no_oacc_routine (parser);
36686 return;
36687 }
36688
36689 if (!fndecl || TREE_CODE (fndecl) != FUNCTION_DECL)
36690 {
36691 error_at (loc,
36692 "%<#pragma acc routine%> not followed by a function "
36693 "declaration or definition");
36694 parser->oacc_routine = NULL;
36695 }
36696
36697 if (get_oacc_fn_attrib (fndecl))
36698 {
36699 error_at (loc, "%<#pragma acc routine%> already applied to %D",
36700 fndecl);
36701 parser->oacc_routine = NULL;
36702 }
36703
36704 if (TREE_USED (fndecl) || (!is_defn && DECL_SAVED_TREE (fndecl)))
36705 {
36706 error_at (loc, "%<#pragma acc routine%> must be applied before %s",
36707 TREE_USED (fndecl) ? "use" : "definition");
36708 parser->oacc_routine = NULL;
36709 }
36710
36711 /* Process for function attrib */
36712 tree dims = build_oacc_routine_dims (TREE_VALUE (clauses));
36713 replace_oacc_fn_attrib (fndecl, dims);
36714
36715 /* Add an "omp target" attribute. */
36716 DECL_ATTRIBUTES (fndecl)
36717 = tree_cons (get_identifier ("omp declare target"),
36718 NULL_TREE, DECL_ATTRIBUTES (fndecl));
36719 }
36720 }
36721
36722 /* Main entry point to OpenMP statement pragmas. */
36723
36724 static void
36725 cp_parser_omp_construct (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
36726 {
36727 tree stmt;
36728 char p_name[sizeof "#pragma omp teams distribute parallel for simd"];
36729 omp_clause_mask mask (0);
36730
36731 switch (cp_parser_pragma_kind (pragma_tok))
36732 {
36733 case PRAGMA_OACC_ATOMIC:
36734 cp_parser_omp_atomic (parser, pragma_tok);
36735 return;
36736 case PRAGMA_OACC_CACHE:
36737 stmt = cp_parser_oacc_cache (parser, pragma_tok);
36738 break;
36739 case PRAGMA_OACC_DATA:
36740 stmt = cp_parser_oacc_data (parser, pragma_tok, if_p);
36741 break;
36742 case PRAGMA_OACC_ENTER_DATA:
36743 stmt = cp_parser_oacc_enter_exit_data (parser, pragma_tok, true);
36744 break;
36745 case PRAGMA_OACC_EXIT_DATA:
36746 stmt = cp_parser_oacc_enter_exit_data (parser, pragma_tok, false);
36747 break;
36748 case PRAGMA_OACC_HOST_DATA:
36749 stmt = cp_parser_oacc_host_data (parser, pragma_tok, if_p);
36750 break;
36751 case PRAGMA_OACC_KERNELS:
36752 case PRAGMA_OACC_PARALLEL:
36753 strcpy (p_name, "#pragma acc");
36754 stmt = cp_parser_oacc_kernels_parallel (parser, pragma_tok, p_name,
36755 if_p);
36756 break;
36757 case PRAGMA_OACC_LOOP:
36758 strcpy (p_name, "#pragma acc");
36759 stmt = cp_parser_oacc_loop (parser, pragma_tok, p_name, mask, NULL,
36760 if_p);
36761 break;
36762 case PRAGMA_OACC_UPDATE:
36763 stmt = cp_parser_oacc_update (parser, pragma_tok);
36764 break;
36765 case PRAGMA_OACC_WAIT:
36766 stmt = cp_parser_oacc_wait (parser, pragma_tok);
36767 break;
36768 case PRAGMA_OMP_ATOMIC:
36769 cp_parser_omp_atomic (parser, pragma_tok);
36770 return;
36771 case PRAGMA_OMP_CRITICAL:
36772 stmt = cp_parser_omp_critical (parser, pragma_tok, if_p);
36773 break;
36774 case PRAGMA_OMP_DISTRIBUTE:
36775 strcpy (p_name, "#pragma omp");
36776 stmt = cp_parser_omp_distribute (parser, pragma_tok, p_name, mask, NULL,
36777 if_p);
36778 break;
36779 case PRAGMA_OMP_FOR:
36780 strcpy (p_name, "#pragma omp");
36781 stmt = cp_parser_omp_for (parser, pragma_tok, p_name, mask, NULL,
36782 if_p);
36783 break;
36784 case PRAGMA_OMP_MASTER:
36785 stmt = cp_parser_omp_master (parser, pragma_tok, if_p);
36786 break;
36787 case PRAGMA_OMP_PARALLEL:
36788 strcpy (p_name, "#pragma omp");
36789 stmt = cp_parser_omp_parallel (parser, pragma_tok, p_name, mask, NULL,
36790 if_p);
36791 break;
36792 case PRAGMA_OMP_SECTIONS:
36793 strcpy (p_name, "#pragma omp");
36794 stmt = cp_parser_omp_sections (parser, pragma_tok, p_name, mask, NULL);
36795 break;
36796 case PRAGMA_OMP_SIMD:
36797 strcpy (p_name, "#pragma omp");
36798 stmt = cp_parser_omp_simd (parser, pragma_tok, p_name, mask, NULL,
36799 if_p);
36800 break;
36801 case PRAGMA_OMP_SINGLE:
36802 stmt = cp_parser_omp_single (parser, pragma_tok, if_p);
36803 break;
36804 case PRAGMA_OMP_TASK:
36805 stmt = cp_parser_omp_task (parser, pragma_tok, if_p);
36806 break;
36807 case PRAGMA_OMP_TASKGROUP:
36808 stmt = cp_parser_omp_taskgroup (parser, pragma_tok, if_p);
36809 break;
36810 case PRAGMA_OMP_TASKLOOP:
36811 strcpy (p_name, "#pragma omp");
36812 stmt = cp_parser_omp_taskloop (parser, pragma_tok, p_name, mask, NULL,
36813 if_p);
36814 break;
36815 case PRAGMA_OMP_TEAMS:
36816 strcpy (p_name, "#pragma omp");
36817 stmt = cp_parser_omp_teams (parser, pragma_tok, p_name, mask, NULL,
36818 if_p);
36819 break;
36820 default:
36821 gcc_unreachable ();
36822 }
36823
36824 protected_set_expr_location (stmt, pragma_tok->location);
36825 }
36826 \f
36827 /* Transactional Memory parsing routines. */
36828
36829 /* Parse a transaction attribute.
36830
36831 txn-attribute:
36832 attribute
36833 [ [ identifier ] ]
36834
36835 We use this instead of cp_parser_attributes_opt for transactions to avoid
36836 the pedwarn in C++98 mode. */
36837
36838 static tree
36839 cp_parser_txn_attribute_opt (cp_parser *parser)
36840 {
36841 cp_token *token;
36842 tree attr_name, attr = NULL;
36843
36844 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_ATTRIBUTE))
36845 return cp_parser_attributes_opt (parser);
36846
36847 if (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_SQUARE))
36848 return NULL_TREE;
36849 cp_lexer_consume_token (parser->lexer);
36850 if (!cp_parser_require (parser, CPP_OPEN_SQUARE, RT_OPEN_SQUARE))
36851 goto error1;
36852
36853 token = cp_lexer_peek_token (parser->lexer);
36854 if (token->type == CPP_NAME || token->type == CPP_KEYWORD)
36855 {
36856 token = cp_lexer_consume_token (parser->lexer);
36857
36858 attr_name = (token->type == CPP_KEYWORD
36859 /* For keywords, use the canonical spelling,
36860 not the parsed identifier. */
36861 ? ridpointers[(int) token->keyword]
36862 : token->u.value);
36863 attr = build_tree_list (attr_name, NULL_TREE);
36864 }
36865 else
36866 cp_parser_error (parser, "expected identifier");
36867
36868 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
36869 error1:
36870 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
36871 return attr;
36872 }
36873
36874 /* Parse a __transaction_atomic or __transaction_relaxed statement.
36875
36876 transaction-statement:
36877 __transaction_atomic txn-attribute[opt] txn-noexcept-spec[opt]
36878 compound-statement
36879 __transaction_relaxed txn-noexcept-spec[opt] compound-statement
36880 */
36881
36882 static tree
36883 cp_parser_transaction (cp_parser *parser, cp_token *token)
36884 {
36885 unsigned char old_in = parser->in_transaction;
36886 unsigned char this_in = 1, new_in;
36887 enum rid keyword = token->keyword;
36888 tree stmt, attrs, noex;
36889
36890 cp_lexer_consume_token (parser->lexer);
36891
36892 if (keyword == RID_TRANSACTION_RELAXED
36893 || keyword == RID_SYNCHRONIZED)
36894 this_in |= TM_STMT_ATTR_RELAXED;
36895 else
36896 {
36897 attrs = cp_parser_txn_attribute_opt (parser);
36898 if (attrs)
36899 this_in |= parse_tm_stmt_attr (attrs, TM_STMT_ATTR_OUTER);
36900 }
36901
36902 /* Parse a noexcept specification. */
36903 if (keyword == RID_ATOMIC_NOEXCEPT)
36904 noex = boolean_true_node;
36905 else if (keyword == RID_ATOMIC_CANCEL)
36906 {
36907 /* cancel-and-throw is unimplemented. */
36908 sorry ("atomic_cancel");
36909 noex = NULL_TREE;
36910 }
36911 else
36912 noex = cp_parser_noexcept_specification_opt (parser, true, NULL, true);
36913
36914 /* Keep track if we're in the lexical scope of an outer transaction. */
36915 new_in = this_in | (old_in & TM_STMT_ATTR_OUTER);
36916
36917 stmt = begin_transaction_stmt (token->location, NULL, this_in);
36918
36919 parser->in_transaction = new_in;
36920 cp_parser_compound_statement (parser, NULL, BCS_TRANSACTION, false);
36921 parser->in_transaction = old_in;
36922
36923 finish_transaction_stmt (stmt, NULL, this_in, noex);
36924
36925 return stmt;
36926 }
36927
36928 /* Parse a __transaction_atomic or __transaction_relaxed expression.
36929
36930 transaction-expression:
36931 __transaction_atomic txn-noexcept-spec[opt] ( expression )
36932 __transaction_relaxed txn-noexcept-spec[opt] ( expression )
36933 */
36934
36935 static tree
36936 cp_parser_transaction_expression (cp_parser *parser, enum rid keyword)
36937 {
36938 unsigned char old_in = parser->in_transaction;
36939 unsigned char this_in = 1;
36940 cp_token *token;
36941 tree expr, noex;
36942 bool noex_expr;
36943 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
36944
36945 gcc_assert (keyword == RID_TRANSACTION_ATOMIC
36946 || keyword == RID_TRANSACTION_RELAXED);
36947
36948 if (!flag_tm)
36949 error_at (loc,
36950 keyword == RID_TRANSACTION_RELAXED
36951 ? G_("%<__transaction_relaxed%> without transactional memory "
36952 "support enabled")
36953 : G_("%<__transaction_atomic%> without transactional memory "
36954 "support enabled"));
36955
36956 token = cp_parser_require_keyword (parser, keyword,
36957 (keyword == RID_TRANSACTION_ATOMIC ? RT_TRANSACTION_ATOMIC
36958 : RT_TRANSACTION_RELAXED));
36959 gcc_assert (token != NULL);
36960
36961 if (keyword == RID_TRANSACTION_RELAXED)
36962 this_in |= TM_STMT_ATTR_RELAXED;
36963
36964 /* Set this early. This might mean that we allow transaction_cancel in
36965 an expression that we find out later actually has to be a constexpr.
36966 However, we expect that cxx_constant_value will be able to deal with
36967 this; also, if the noexcept has no constexpr, then what we parse next
36968 really is a transaction's body. */
36969 parser->in_transaction = this_in;
36970
36971 /* Parse a noexcept specification. */
36972 noex = cp_parser_noexcept_specification_opt (parser, false, &noex_expr,
36973 true);
36974
36975 if (!noex || !noex_expr
36976 || cp_lexer_peek_token (parser->lexer)->type == CPP_OPEN_PAREN)
36977 {
36978 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
36979
36980 expr = cp_parser_expression (parser);
36981 expr = finish_parenthesized_expr (expr);
36982
36983 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
36984 }
36985 else
36986 {
36987 /* The only expression that is available got parsed for the noexcept
36988 already. noexcept is true then. */
36989 expr = noex;
36990 noex = boolean_true_node;
36991 }
36992
36993 expr = build_transaction_expr (token->location, expr, this_in, noex);
36994 parser->in_transaction = old_in;
36995
36996 if (cp_parser_non_integral_constant_expression (parser, NIC_TRANSACTION))
36997 return error_mark_node;
36998
36999 return (flag_tm ? expr : error_mark_node);
37000 }
37001
37002 /* Parse a function-transaction-block.
37003
37004 function-transaction-block:
37005 __transaction_atomic txn-attribute[opt] ctor-initializer[opt]
37006 function-body
37007 __transaction_atomic txn-attribute[opt] function-try-block
37008 __transaction_relaxed ctor-initializer[opt] function-body
37009 __transaction_relaxed function-try-block
37010 */
37011
37012 static bool
37013 cp_parser_function_transaction (cp_parser *parser, enum rid keyword)
37014 {
37015 unsigned char old_in = parser->in_transaction;
37016 unsigned char new_in = 1;
37017 tree compound_stmt, stmt, attrs;
37018 bool ctor_initializer_p;
37019 cp_token *token;
37020
37021 gcc_assert (keyword == RID_TRANSACTION_ATOMIC
37022 || keyword == RID_TRANSACTION_RELAXED);
37023 token = cp_parser_require_keyword (parser, keyword,
37024 (keyword == RID_TRANSACTION_ATOMIC ? RT_TRANSACTION_ATOMIC
37025 : RT_TRANSACTION_RELAXED));
37026 gcc_assert (token != NULL);
37027
37028 if (keyword == RID_TRANSACTION_RELAXED)
37029 new_in |= TM_STMT_ATTR_RELAXED;
37030 else
37031 {
37032 attrs = cp_parser_txn_attribute_opt (parser);
37033 if (attrs)
37034 new_in |= parse_tm_stmt_attr (attrs, TM_STMT_ATTR_OUTER);
37035 }
37036
37037 stmt = begin_transaction_stmt (token->location, &compound_stmt, new_in);
37038
37039 parser->in_transaction = new_in;
37040
37041 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TRY))
37042 ctor_initializer_p = cp_parser_function_try_block (parser);
37043 else
37044 ctor_initializer_p = cp_parser_ctor_initializer_opt_and_function_body
37045 (parser, /*in_function_try_block=*/false);
37046
37047 parser->in_transaction = old_in;
37048
37049 finish_transaction_stmt (stmt, compound_stmt, new_in, NULL_TREE);
37050
37051 return ctor_initializer_p;
37052 }
37053
37054 /* Parse a __transaction_cancel statement.
37055
37056 cancel-statement:
37057 __transaction_cancel txn-attribute[opt] ;
37058 __transaction_cancel txn-attribute[opt] throw-expression ;
37059
37060 ??? Cancel and throw is not yet implemented. */
37061
37062 static tree
37063 cp_parser_transaction_cancel (cp_parser *parser)
37064 {
37065 cp_token *token;
37066 bool is_outer = false;
37067 tree stmt, attrs;
37068
37069 token = cp_parser_require_keyword (parser, RID_TRANSACTION_CANCEL,
37070 RT_TRANSACTION_CANCEL);
37071 gcc_assert (token != NULL);
37072
37073 attrs = cp_parser_txn_attribute_opt (parser);
37074 if (attrs)
37075 is_outer = (parse_tm_stmt_attr (attrs, TM_STMT_ATTR_OUTER) != 0);
37076
37077 /* ??? Parse cancel-and-throw here. */
37078
37079 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
37080
37081 if (!flag_tm)
37082 {
37083 error_at (token->location, "%<__transaction_cancel%> without "
37084 "transactional memory support enabled");
37085 return error_mark_node;
37086 }
37087 else if (parser->in_transaction & TM_STMT_ATTR_RELAXED)
37088 {
37089 error_at (token->location, "%<__transaction_cancel%> within a "
37090 "%<__transaction_relaxed%>");
37091 return error_mark_node;
37092 }
37093 else if (is_outer)
37094 {
37095 if ((parser->in_transaction & TM_STMT_ATTR_OUTER) == 0
37096 && !is_tm_may_cancel_outer (current_function_decl))
37097 {
37098 error_at (token->location, "outer %<__transaction_cancel%> not "
37099 "within outer %<__transaction_atomic%>");
37100 error_at (token->location,
37101 " or a %<transaction_may_cancel_outer%> function");
37102 return error_mark_node;
37103 }
37104 }
37105 else if (parser->in_transaction == 0)
37106 {
37107 error_at (token->location, "%<__transaction_cancel%> not within "
37108 "%<__transaction_atomic%>");
37109 return error_mark_node;
37110 }
37111
37112 stmt = build_tm_abort_call (token->location, is_outer);
37113 add_stmt (stmt);
37114
37115 return stmt;
37116 }
37117 \f
37118 /* The parser. */
37119
37120 static GTY (()) cp_parser *the_parser;
37121
37122 \f
37123 /* Special handling for the first token or line in the file. The first
37124 thing in the file might be #pragma GCC pch_preprocess, which loads a
37125 PCH file, which is a GC collection point. So we need to handle this
37126 first pragma without benefit of an existing lexer structure.
37127
37128 Always returns one token to the caller in *FIRST_TOKEN. This is
37129 either the true first token of the file, or the first token after
37130 the initial pragma. */
37131
37132 static void
37133 cp_parser_initial_pragma (cp_token *first_token)
37134 {
37135 tree name = NULL;
37136
37137 cp_lexer_get_preprocessor_token (NULL, first_token);
37138 if (cp_parser_pragma_kind (first_token) != PRAGMA_GCC_PCH_PREPROCESS)
37139 return;
37140
37141 cp_lexer_get_preprocessor_token (NULL, first_token);
37142 if (first_token->type == CPP_STRING)
37143 {
37144 name = first_token->u.value;
37145
37146 cp_lexer_get_preprocessor_token (NULL, first_token);
37147 if (first_token->type != CPP_PRAGMA_EOL)
37148 error_at (first_token->location,
37149 "junk at end of %<#pragma GCC pch_preprocess%>");
37150 }
37151 else
37152 error_at (first_token->location, "expected string literal");
37153
37154 /* Skip to the end of the pragma. */
37155 while (first_token->type != CPP_PRAGMA_EOL && first_token->type != CPP_EOF)
37156 cp_lexer_get_preprocessor_token (NULL, first_token);
37157
37158 /* Now actually load the PCH file. */
37159 if (name)
37160 c_common_pch_pragma (parse_in, TREE_STRING_POINTER (name));
37161
37162 /* Read one more token to return to our caller. We have to do this
37163 after reading the PCH file in, since its pointers have to be
37164 live. */
37165 cp_lexer_get_preprocessor_token (NULL, first_token);
37166 }
37167
37168 /* Parses the grainsize pragma for the _Cilk_for statement.
37169 Syntax:
37170 #pragma cilk grainsize = <VALUE>. */
37171
37172 static void
37173 cp_parser_cilk_grainsize (cp_parser *parser, cp_token *pragma_tok, bool *if_p)
37174 {
37175 if (cp_parser_require (parser, CPP_EQ, RT_EQ))
37176 {
37177 tree exp = cp_parser_binary_expression (parser, false, false,
37178 PREC_NOT_OPERATOR, NULL);
37179 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
37180 if (!exp || exp == error_mark_node)
37181 {
37182 error_at (pragma_tok->location, "invalid grainsize for _Cilk_for");
37183 return;
37184 }
37185
37186 /* Make sure the next token is _Cilk_for, it is invalid otherwise. */
37187 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_CILK_FOR))
37188 cp_parser_cilk_for (parser, exp, if_p);
37189 else
37190 warning_at (cp_lexer_peek_token (parser->lexer)->location, 0,
37191 "%<#pragma cilk grainsize%> is not followed by "
37192 "%<_Cilk_for%>");
37193 return;
37194 }
37195 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
37196 }
37197
37198 /* Normal parsing of a pragma token. Here we can (and must) use the
37199 regular lexer. */
37200
37201 static bool
37202 cp_parser_pragma (cp_parser *parser, enum pragma_context context, bool *if_p)
37203 {
37204 cp_token *pragma_tok;
37205 unsigned int id;
37206 tree stmt;
37207 bool ret;
37208
37209 pragma_tok = cp_lexer_consume_token (parser->lexer);
37210 gcc_assert (pragma_tok->type == CPP_PRAGMA);
37211 parser->lexer->in_pragma = true;
37212
37213 id = cp_parser_pragma_kind (pragma_tok);
37214 if (id != PRAGMA_OMP_DECLARE_REDUCTION && id != PRAGMA_OACC_ROUTINE)
37215 cp_ensure_no_omp_declare_simd (parser);
37216 switch (id)
37217 {
37218 case PRAGMA_GCC_PCH_PREPROCESS:
37219 error_at (pragma_tok->location,
37220 "%<#pragma GCC pch_preprocess%> must be first");
37221 break;
37222
37223 case PRAGMA_OMP_BARRIER:
37224 switch (context)
37225 {
37226 case pragma_compound:
37227 cp_parser_omp_barrier (parser, pragma_tok);
37228 return false;
37229 case pragma_stmt:
37230 error_at (pragma_tok->location, "%<#pragma omp barrier%> may only be "
37231 "used in compound statements");
37232 break;
37233 default:
37234 goto bad_stmt;
37235 }
37236 break;
37237
37238 case PRAGMA_OMP_FLUSH:
37239 switch (context)
37240 {
37241 case pragma_compound:
37242 cp_parser_omp_flush (parser, pragma_tok);
37243 return false;
37244 case pragma_stmt:
37245 error_at (pragma_tok->location, "%<#pragma omp flush%> may only be "
37246 "used in compound statements");
37247 break;
37248 default:
37249 goto bad_stmt;
37250 }
37251 break;
37252
37253 case PRAGMA_OMP_TASKWAIT:
37254 switch (context)
37255 {
37256 case pragma_compound:
37257 cp_parser_omp_taskwait (parser, pragma_tok);
37258 return false;
37259 case pragma_stmt:
37260 error_at (pragma_tok->location,
37261 "%<#pragma omp taskwait%> may only be "
37262 "used in compound statements");
37263 break;
37264 default:
37265 goto bad_stmt;
37266 }
37267 break;
37268
37269 case PRAGMA_OMP_TASKYIELD:
37270 switch (context)
37271 {
37272 case pragma_compound:
37273 cp_parser_omp_taskyield (parser, pragma_tok);
37274 return false;
37275 case pragma_stmt:
37276 error_at (pragma_tok->location,
37277 "%<#pragma omp taskyield%> may only be "
37278 "used in compound statements");
37279 break;
37280 default:
37281 goto bad_stmt;
37282 }
37283 break;
37284
37285 case PRAGMA_OMP_CANCEL:
37286 switch (context)
37287 {
37288 case pragma_compound:
37289 cp_parser_omp_cancel (parser, pragma_tok);
37290 return false;
37291 case pragma_stmt:
37292 error_at (pragma_tok->location,
37293 "%<#pragma omp cancel%> may only be "
37294 "used in compound statements");
37295 break;
37296 default:
37297 goto bad_stmt;
37298 }
37299 break;
37300
37301 case PRAGMA_OMP_CANCELLATION_POINT:
37302 switch (context)
37303 {
37304 case pragma_compound:
37305 cp_parser_omp_cancellation_point (parser, pragma_tok);
37306 return false;
37307 case pragma_stmt:
37308 error_at (pragma_tok->location,
37309 "%<#pragma omp cancellation point%> may only be "
37310 "used in compound statements");
37311 break;
37312 default:
37313 goto bad_stmt;
37314 }
37315 break;
37316
37317 case PRAGMA_OMP_THREADPRIVATE:
37318 cp_parser_omp_threadprivate (parser, pragma_tok);
37319 return false;
37320
37321 case PRAGMA_OMP_DECLARE_REDUCTION:
37322 cp_parser_omp_declare (parser, pragma_tok, context);
37323 return false;
37324
37325 case PRAGMA_OACC_DECLARE:
37326 cp_parser_oacc_declare (parser, pragma_tok);
37327 return false;
37328
37329 case PRAGMA_OACC_ROUTINE:
37330 cp_parser_oacc_routine (parser, pragma_tok, context);
37331 return false;
37332
37333 case PRAGMA_OACC_ATOMIC:
37334 case PRAGMA_OACC_CACHE:
37335 case PRAGMA_OACC_DATA:
37336 case PRAGMA_OACC_ENTER_DATA:
37337 case PRAGMA_OACC_EXIT_DATA:
37338 case PRAGMA_OACC_HOST_DATA:
37339 case PRAGMA_OACC_KERNELS:
37340 case PRAGMA_OACC_PARALLEL:
37341 case PRAGMA_OACC_LOOP:
37342 case PRAGMA_OACC_UPDATE:
37343 case PRAGMA_OACC_WAIT:
37344 case PRAGMA_OMP_ATOMIC:
37345 case PRAGMA_OMP_CRITICAL:
37346 case PRAGMA_OMP_DISTRIBUTE:
37347 case PRAGMA_OMP_FOR:
37348 case PRAGMA_OMP_MASTER:
37349 case PRAGMA_OMP_PARALLEL:
37350 case PRAGMA_OMP_SECTIONS:
37351 case PRAGMA_OMP_SIMD:
37352 case PRAGMA_OMP_SINGLE:
37353 case PRAGMA_OMP_TASK:
37354 case PRAGMA_OMP_TASKGROUP:
37355 case PRAGMA_OMP_TASKLOOP:
37356 case PRAGMA_OMP_TEAMS:
37357 if (context != pragma_stmt && context != pragma_compound)
37358 goto bad_stmt;
37359 stmt = push_omp_privatization_clauses (false);
37360 cp_parser_omp_construct (parser, pragma_tok, if_p);
37361 pop_omp_privatization_clauses (stmt);
37362 return true;
37363
37364 case PRAGMA_OMP_ORDERED:
37365 stmt = push_omp_privatization_clauses (false);
37366 ret = cp_parser_omp_ordered (parser, pragma_tok, context, if_p);
37367 pop_omp_privatization_clauses (stmt);
37368 return ret;
37369
37370 case PRAGMA_OMP_TARGET:
37371 stmt = push_omp_privatization_clauses (false);
37372 ret = cp_parser_omp_target (parser, pragma_tok, context, if_p);
37373 pop_omp_privatization_clauses (stmt);
37374 return ret;
37375
37376 case PRAGMA_OMP_END_DECLARE_TARGET:
37377 cp_parser_omp_end_declare_target (parser, pragma_tok);
37378 return false;
37379
37380 case PRAGMA_OMP_SECTION:
37381 error_at (pragma_tok->location,
37382 "%<#pragma omp section%> may only be used in "
37383 "%<#pragma omp sections%> construct");
37384 break;
37385
37386 case PRAGMA_IVDEP:
37387 {
37388 if (context == pragma_external)
37389 {
37390 error_at (pragma_tok->location,
37391 "%<#pragma GCC ivdep%> must be inside a function");
37392 break;
37393 }
37394 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
37395 cp_token *tok;
37396 tok = cp_lexer_peek_token (the_parser->lexer);
37397 if (tok->type != CPP_KEYWORD
37398 || (tok->keyword != RID_FOR && tok->keyword != RID_WHILE
37399 && tok->keyword != RID_DO))
37400 {
37401 cp_parser_error (parser, "for, while or do statement expected");
37402 return false;
37403 }
37404 cp_parser_iteration_statement (parser, if_p, true);
37405 return true;
37406 }
37407
37408 case PRAGMA_CILK_SIMD:
37409 if (context == pragma_external)
37410 {
37411 error_at (pragma_tok->location,
37412 "%<#pragma simd%> must be inside a function");
37413 break;
37414 }
37415 stmt = push_omp_privatization_clauses (false);
37416 cp_parser_cilk_simd (parser, pragma_tok, if_p);
37417 pop_omp_privatization_clauses (stmt);
37418 return true;
37419
37420 case PRAGMA_CILK_GRAINSIZE:
37421 if (context == pragma_external)
37422 {
37423 error_at (pragma_tok->location,
37424 "%<#pragma cilk grainsize%> must be inside a function");
37425 break;
37426 }
37427
37428 /* Ignore the pragma if Cilk Plus is not enabled. */
37429 if (flag_cilkplus)
37430 {
37431 cp_parser_cilk_grainsize (parser, pragma_tok, if_p);
37432 return true;
37433 }
37434 else
37435 {
37436 error_at (pragma_tok->location, "-fcilkplus must be enabled to use "
37437 "%<#pragma cilk grainsize%>");
37438 break;
37439 }
37440
37441 default:
37442 gcc_assert (id >= PRAGMA_FIRST_EXTERNAL);
37443 c_invoke_pragma_handler (id);
37444 break;
37445
37446 bad_stmt:
37447 cp_parser_error (parser, "expected declaration specifiers");
37448 break;
37449 }
37450
37451 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
37452 return false;
37453 }
37454
37455 /* The interface the pragma parsers have to the lexer. */
37456
37457 enum cpp_ttype
37458 pragma_lex (tree *value, location_t *loc)
37459 {
37460 cp_token *tok = cp_lexer_peek_token (the_parser->lexer);
37461 enum cpp_ttype ret = tok->type;
37462
37463 *value = tok->u.value;
37464 if (loc)
37465 *loc = tok->location;
37466
37467 if (ret == CPP_PRAGMA_EOL || ret == CPP_EOF)
37468 ret = CPP_EOF;
37469 else if (ret == CPP_STRING)
37470 *value = cp_parser_string_literal (the_parser, false, false);
37471 else
37472 {
37473 if (ret == CPP_KEYWORD)
37474 ret = CPP_NAME;
37475 cp_lexer_consume_token (the_parser->lexer);
37476 }
37477
37478 return ret;
37479 }
37480
37481 \f
37482 /* External interface. */
37483
37484 /* Parse one entire translation unit. */
37485
37486 void
37487 c_parse_file (void)
37488 {
37489 static bool already_called = false;
37490
37491 if (already_called)
37492 fatal_error (input_location,
37493 "inter-module optimizations not implemented for C++");
37494 already_called = true;
37495
37496 the_parser = cp_parser_new ();
37497 push_deferring_access_checks (flag_access_control
37498 ? dk_no_deferred : dk_no_check);
37499 cp_parser_translation_unit (the_parser);
37500 the_parser = NULL;
37501 }
37502
37503 /* Parses the Cilk Plus #pragma simd and SIMD-enabled function attribute's
37504 vectorlength clause:
37505 Syntax:
37506 vectorlength ( constant-expression ) */
37507
37508 static tree
37509 cp_parser_cilk_simd_vectorlength (cp_parser *parser, tree clauses,
37510 bool is_simd_fn)
37511 {
37512 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
37513 tree expr;
37514 /* The vectorlength clause in #pragma simd behaves exactly like OpenMP's
37515 safelen clause. Thus, vectorlength is represented as OMP 4.0
37516 safelen. For SIMD-enabled function it is represented by OMP 4.0
37517 simdlen. */
37518 if (!is_simd_fn)
37519 check_no_duplicate_clause (clauses, OMP_CLAUSE_SAFELEN, "vectorlength",
37520 loc);
37521 else
37522 check_no_duplicate_clause (clauses, OMP_CLAUSE_SIMDLEN, "vectorlength",
37523 loc);
37524
37525 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
37526 return error_mark_node;
37527
37528 expr = cp_parser_constant_expression (parser);
37529 expr = maybe_constant_value (expr);
37530
37531 /* If expr == error_mark_node, then don't emit any errors nor
37532 create a clause. if any of the above functions returns
37533 error mark node then they would have emitted an error message. */
37534 if (expr == error_mark_node)
37535 ;
37536 else if (!TREE_TYPE (expr)
37537 || !TREE_CONSTANT (expr)
37538 || !INTEGRAL_TYPE_P (TREE_TYPE (expr)))
37539 error_at (loc, "vectorlength must be an integer constant");
37540 else if (TREE_CONSTANT (expr)
37541 && exact_log2 (TREE_INT_CST_LOW (expr)) == -1)
37542 error_at (loc, "vectorlength must be a power of 2");
37543 else
37544 {
37545 tree c;
37546 if (!is_simd_fn)
37547 {
37548 c = build_omp_clause (loc, OMP_CLAUSE_SAFELEN);
37549 OMP_CLAUSE_SAFELEN_EXPR (c) = expr;
37550 OMP_CLAUSE_CHAIN (c) = clauses;
37551 clauses = c;
37552 }
37553 else
37554 {
37555 c = build_omp_clause (loc, OMP_CLAUSE_SIMDLEN);
37556 OMP_CLAUSE_SIMDLEN_EXPR (c) = expr;
37557 OMP_CLAUSE_CHAIN (c) = clauses;
37558 clauses = c;
37559 }
37560 }
37561
37562 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
37563 return error_mark_node;
37564 return clauses;
37565 }
37566
37567 /* Handles the Cilk Plus #pragma simd linear clause.
37568 Syntax:
37569 linear ( simd-linear-variable-list )
37570
37571 simd-linear-variable-list:
37572 simd-linear-variable
37573 simd-linear-variable-list , simd-linear-variable
37574
37575 simd-linear-variable:
37576 id-expression
37577 id-expression : simd-linear-step
37578
37579 simd-linear-step:
37580 conditional-expression */
37581
37582 static tree
37583 cp_parser_cilk_simd_linear (cp_parser *parser, tree clauses)
37584 {
37585 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
37586
37587 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
37588 return clauses;
37589 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NAME))
37590 {
37591 cp_parser_error (parser, "expected identifier");
37592 cp_parser_skip_to_closing_parenthesis (parser, false, false, true);
37593 return error_mark_node;
37594 }
37595
37596 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
37597 parser->colon_corrects_to_scope_p = false;
37598 while (1)
37599 {
37600 cp_token *token = cp_lexer_peek_token (parser->lexer);
37601 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NAME))
37602 {
37603 cp_parser_error (parser, "expected variable-name");
37604 clauses = error_mark_node;
37605 break;
37606 }
37607
37608 tree var_name = cp_parser_id_expression (parser, false, true, NULL,
37609 false, false);
37610 tree decl = cp_parser_lookup_name_simple (parser, var_name,
37611 token->location);
37612 if (decl == error_mark_node)
37613 {
37614 cp_parser_name_lookup_error (parser, var_name, decl, NLE_NULL,
37615 token->location);
37616 clauses = error_mark_node;
37617 }
37618 else
37619 {
37620 tree e = NULL_TREE;
37621 tree step_size = integer_one_node;
37622
37623 /* If present, parse the linear step. Otherwise, assume the default
37624 value of 1. */
37625 if (cp_lexer_peek_token (parser->lexer)->type == CPP_COLON)
37626 {
37627 cp_lexer_consume_token (parser->lexer);
37628
37629 e = cp_parser_assignment_expression (parser);
37630 e = maybe_constant_value (e);
37631
37632 if (e == error_mark_node)
37633 {
37634 /* If an error has occurred, then the whole pragma is
37635 considered ill-formed. Thus, no reason to keep
37636 parsing. */
37637 clauses = error_mark_node;
37638 break;
37639 }
37640 else if (type_dependent_expression_p (e)
37641 || value_dependent_expression_p (e)
37642 || (TREE_TYPE (e)
37643 && INTEGRAL_TYPE_P (TREE_TYPE (e))
37644 && (TREE_CONSTANT (e)
37645 || DECL_P (e))))
37646 step_size = e;
37647 else
37648 cp_parser_error (parser,
37649 "step size must be an integer constant "
37650 "expression or an integer variable");
37651 }
37652
37653 /* Use the OMP_CLAUSE_LINEAR, which has the same semantics. */
37654 tree l = build_omp_clause (loc, OMP_CLAUSE_LINEAR);
37655 OMP_CLAUSE_DECL (l) = decl;
37656 OMP_CLAUSE_LINEAR_STEP (l) = step_size;
37657 OMP_CLAUSE_CHAIN (l) = clauses;
37658 clauses = l;
37659 }
37660 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
37661 cp_lexer_consume_token (parser->lexer);
37662 else if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN))
37663 break;
37664 else
37665 {
37666 error_at (cp_lexer_peek_token (parser->lexer)->location,
37667 "expected %<,%> or %<)%> after %qE", decl);
37668 clauses = error_mark_node;
37669 break;
37670 }
37671 }
37672 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
37673 cp_parser_skip_to_closing_parenthesis (parser, false, false, true);
37674 return clauses;
37675 }
37676
37677 /* Returns the name of the next clause. If the clause is not
37678 recognized, then PRAGMA_CILK_CLAUSE_NONE is returned and the next
37679 token is not consumed. Otherwise, the appropriate enum from the
37680 pragma_simd_clause is returned and the token is consumed. */
37681
37682 static pragma_omp_clause
37683 cp_parser_cilk_simd_clause_name (cp_parser *parser)
37684 {
37685 pragma_omp_clause clause_type;
37686 cp_token *token = cp_lexer_peek_token (parser->lexer);
37687
37688 if (token->keyword == RID_PRIVATE)
37689 clause_type = PRAGMA_CILK_CLAUSE_PRIVATE;
37690 else if (!token->u.value || token->type != CPP_NAME)
37691 return PRAGMA_CILK_CLAUSE_NONE;
37692 else if (!strcmp (IDENTIFIER_POINTER (token->u.value), "vectorlength"))
37693 clause_type = PRAGMA_CILK_CLAUSE_VECTORLENGTH;
37694 else if (!strcmp (IDENTIFIER_POINTER (token->u.value), "linear"))
37695 clause_type = PRAGMA_CILK_CLAUSE_LINEAR;
37696 else if (!strcmp (IDENTIFIER_POINTER (token->u.value), "firstprivate"))
37697 clause_type = PRAGMA_CILK_CLAUSE_FIRSTPRIVATE;
37698 else if (!strcmp (IDENTIFIER_POINTER (token->u.value), "lastprivate"))
37699 clause_type = PRAGMA_CILK_CLAUSE_LASTPRIVATE;
37700 else if (!strcmp (IDENTIFIER_POINTER (token->u.value), "reduction"))
37701 clause_type = PRAGMA_CILK_CLAUSE_REDUCTION;
37702 else
37703 return PRAGMA_CILK_CLAUSE_NONE;
37704
37705 cp_lexer_consume_token (parser->lexer);
37706 return clause_type;
37707 }
37708
37709 /* Parses all the #pragma simd clauses. Returns a list of clauses found. */
37710
37711 static tree
37712 cp_parser_cilk_simd_all_clauses (cp_parser *parser, cp_token *pragma_token)
37713 {
37714 tree clauses = NULL_TREE;
37715
37716 while (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL)
37717 && clauses != error_mark_node)
37718 {
37719 pragma_omp_clause c_kind;
37720 c_kind = cp_parser_cilk_simd_clause_name (parser);
37721 if (c_kind == PRAGMA_CILK_CLAUSE_VECTORLENGTH)
37722 clauses = cp_parser_cilk_simd_vectorlength (parser, clauses, false);
37723 else if (c_kind == PRAGMA_CILK_CLAUSE_LINEAR)
37724 clauses = cp_parser_cilk_simd_linear (parser, clauses);
37725 else if (c_kind == PRAGMA_CILK_CLAUSE_PRIVATE)
37726 /* Use the OpenMP 4.0 equivalent function. */
37727 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_PRIVATE, clauses);
37728 else if (c_kind == PRAGMA_CILK_CLAUSE_FIRSTPRIVATE)
37729 /* Use the OpenMP 4.0 equivalent function. */
37730 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_FIRSTPRIVATE,
37731 clauses);
37732 else if (c_kind == PRAGMA_CILK_CLAUSE_LASTPRIVATE)
37733 /* Use the OMP 4.0 equivalent function. */
37734 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_LASTPRIVATE,
37735 clauses);
37736 else if (c_kind == PRAGMA_CILK_CLAUSE_REDUCTION)
37737 /* Use the OMP 4.0 equivalent function. */
37738 clauses = cp_parser_omp_clause_reduction (parser, clauses);
37739 else
37740 {
37741 clauses = error_mark_node;
37742 cp_parser_error (parser, "expected %<#pragma simd%> clause");
37743 break;
37744 }
37745 }
37746
37747 cp_parser_skip_to_pragma_eol (parser, pragma_token);
37748
37749 if (clauses == error_mark_node)
37750 return error_mark_node;
37751 else
37752 return finish_omp_clauses (clauses, C_ORT_CILK);
37753 }
37754
37755 /* Main entry-point for parsing Cilk Plus <#pragma simd> for loops. */
37756
37757 static void
37758 cp_parser_cilk_simd (cp_parser *parser, cp_token *pragma_token, bool *if_p)
37759 {
37760 tree clauses = cp_parser_cilk_simd_all_clauses (parser, pragma_token);
37761
37762 if (clauses == error_mark_node)
37763 return;
37764
37765 if (cp_lexer_next_token_is_not_keyword (parser->lexer, RID_FOR))
37766 {
37767 error_at (cp_lexer_peek_token (parser->lexer)->location,
37768 "for statement expected");
37769 return;
37770 }
37771
37772 tree sb = begin_omp_structured_block ();
37773 int save = cp_parser_begin_omp_structured_block (parser);
37774 tree ret = cp_parser_omp_for_loop (parser, CILK_SIMD, clauses, NULL, if_p);
37775 if (ret)
37776 cpp_validate_cilk_plus_loop (OMP_FOR_BODY (ret));
37777 cp_parser_end_omp_structured_block (parser, save);
37778 add_stmt (finish_omp_structured_block (sb));
37779 }
37780
37781 /* Main entry-point for parsing Cilk Plus _Cilk_for
37782 loops. The return value is error_mark_node
37783 when errors happen and CILK_FOR tree on success. */
37784
37785 static tree
37786 cp_parser_cilk_for (cp_parser *parser, tree grain, bool *if_p)
37787 {
37788 if (cp_lexer_next_token_is_not_keyword (parser->lexer, RID_CILK_FOR))
37789 gcc_unreachable ();
37790
37791 tree sb = begin_omp_structured_block ();
37792 int save = cp_parser_begin_omp_structured_block (parser);
37793
37794 tree clauses = build_omp_clause (EXPR_LOCATION (grain), OMP_CLAUSE_SCHEDULE);
37795 OMP_CLAUSE_SCHEDULE_KIND (clauses) = OMP_CLAUSE_SCHEDULE_CILKFOR;
37796 OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (clauses) = grain;
37797 clauses = finish_omp_clauses (clauses, C_ORT_CILK);
37798
37799 tree ret = cp_parser_omp_for_loop (parser, CILK_FOR, clauses, NULL, if_p);
37800 if (ret)
37801 cpp_validate_cilk_plus_loop (ret);
37802 else
37803 ret = error_mark_node;
37804
37805 cp_parser_end_omp_structured_block (parser, save);
37806 add_stmt (finish_omp_structured_block (sb));
37807 return ret;
37808 }
37809
37810 /* Create an identifier for a generic parameter type (a synthesized
37811 template parameter implied by `auto' or a concept identifier). */
37812
37813 static GTY(()) int generic_parm_count;
37814 static tree
37815 make_generic_type_name ()
37816 {
37817 char buf[32];
37818 sprintf (buf, "auto:%d", ++generic_parm_count);
37819 return get_identifier (buf);
37820 }
37821
37822 /* Predicate that behaves as is_auto_or_concept but matches the parent
37823 node of the generic type rather than the generic type itself. This
37824 allows for type transformation in add_implicit_template_parms. */
37825
37826 static inline bool
37827 tree_type_is_auto_or_concept (const_tree t)
37828 {
37829 return TREE_TYPE (t) && is_auto_or_concept (TREE_TYPE (t));
37830 }
37831
37832 /* Add an implicit template type parameter to the CURRENT_TEMPLATE_PARMS
37833 (creating a new template parameter list if necessary). Returns the newly
37834 created template type parm. */
37835
37836 static tree
37837 synthesize_implicit_template_parm (cp_parser *parser, tree constr)
37838 {
37839 gcc_assert (current_binding_level->kind == sk_function_parms);
37840
37841 /* Before committing to modifying any scope, if we're in an
37842 implicit template scope, and we're trying to synthesize a
37843 constrained parameter, try to find a previous parameter with
37844 the same name. This is the same-type rule for abbreviated
37845 function templates. */
37846 if (parser->implicit_template_scope && constr)
37847 {
37848 tree t = parser->implicit_template_parms;
37849 while (t)
37850 {
37851 if (equivalent_placeholder_constraints (TREE_TYPE (t), constr))
37852 {
37853 tree d = TREE_VALUE (t);
37854 if (TREE_CODE (d) == PARM_DECL)
37855 /* Return the TEMPLATE_PARM_INDEX. */
37856 d = DECL_INITIAL (d);
37857 return d;
37858 }
37859 t = TREE_CHAIN (t);
37860 }
37861 }
37862
37863 /* We are either continuing a function template that already contains implicit
37864 template parameters, creating a new fully-implicit function template, or
37865 extending an existing explicit function template with implicit template
37866 parameters. */
37867
37868 cp_binding_level *const entry_scope = current_binding_level;
37869
37870 bool become_template = false;
37871 cp_binding_level *parent_scope = 0;
37872
37873 if (parser->implicit_template_scope)
37874 {
37875 gcc_assert (parser->implicit_template_parms);
37876
37877 current_binding_level = parser->implicit_template_scope;
37878 }
37879 else
37880 {
37881 /* Roll back to the existing template parameter scope (in the case of
37882 extending an explicit function template) or introduce a new template
37883 parameter scope ahead of the function parameter scope (or class scope
37884 in the case of out-of-line member definitions). The function scope is
37885 added back after template parameter synthesis below. */
37886
37887 cp_binding_level *scope = entry_scope;
37888
37889 while (scope->kind == sk_function_parms)
37890 {
37891 parent_scope = scope;
37892 scope = scope->level_chain;
37893 }
37894 if (current_class_type && !LAMBDA_TYPE_P (current_class_type))
37895 {
37896 /* If not defining a class, then any class scope is a scope level in
37897 an out-of-line member definition. In this case simply wind back
37898 beyond the first such scope to inject the template parameter list.
37899 Otherwise wind back to the class being defined. The latter can
37900 occur in class member friend declarations such as:
37901
37902 class A {
37903 void foo (auto);
37904 };
37905 class B {
37906 friend void A::foo (auto);
37907 };
37908
37909 The template parameter list synthesized for the friend declaration
37910 must be injected in the scope of 'B'. This can also occur in
37911 erroneous cases such as:
37912
37913 struct A {
37914 struct B {
37915 void foo (auto);
37916 };
37917 void B::foo (auto) {}
37918 };
37919
37920 Here the attempted definition of 'B::foo' within 'A' is ill-formed
37921 but, nevertheless, the template parameter list synthesized for the
37922 declarator should be injected into the scope of 'A' as if the
37923 ill-formed template was specified explicitly. */
37924
37925 while (scope->kind == sk_class && !scope->defining_class_p)
37926 {
37927 parent_scope = scope;
37928 scope = scope->level_chain;
37929 }
37930 }
37931
37932 current_binding_level = scope;
37933
37934 if (scope->kind != sk_template_parms
37935 || !function_being_declared_is_template_p (parser))
37936 {
37937 /* Introduce a new template parameter list for implicit template
37938 parameters. */
37939
37940 become_template = true;
37941
37942 parser->implicit_template_scope
37943 = begin_scope (sk_template_parms, NULL);
37944
37945 ++processing_template_decl;
37946
37947 parser->fully_implicit_function_template_p = true;
37948 ++parser->num_template_parameter_lists;
37949 }
37950 else
37951 {
37952 /* Synthesize implicit template parameters at the end of the explicit
37953 template parameter list. */
37954
37955 gcc_assert (current_template_parms);
37956
37957 parser->implicit_template_scope = scope;
37958
37959 tree v = INNERMOST_TEMPLATE_PARMS (current_template_parms);
37960 parser->implicit_template_parms
37961 = TREE_VEC_ELT (v, TREE_VEC_LENGTH (v) - 1);
37962 }
37963 }
37964
37965 /* Synthesize a new template parameter and track the current template
37966 parameter chain with implicit_template_parms. */
37967
37968 tree proto = constr ? DECL_INITIAL (constr) : NULL_TREE;
37969 tree synth_id = make_generic_type_name ();
37970 tree synth_tmpl_parm;
37971 bool non_type = false;
37972
37973 if (proto == NULL_TREE || TREE_CODE (proto) == TYPE_DECL)
37974 synth_tmpl_parm
37975 = finish_template_type_parm (class_type_node, synth_id);
37976 else if (TREE_CODE (proto) == TEMPLATE_DECL)
37977 synth_tmpl_parm
37978 = finish_constrained_template_template_parm (proto, synth_id);
37979 else
37980 {
37981 synth_tmpl_parm = copy_decl (proto);
37982 DECL_NAME (synth_tmpl_parm) = synth_id;
37983 non_type = true;
37984 }
37985
37986 // Attach the constraint to the parm before processing.
37987 tree node = build_tree_list (NULL_TREE, synth_tmpl_parm);
37988 TREE_TYPE (node) = constr;
37989 tree new_parm
37990 = process_template_parm (parser->implicit_template_parms,
37991 input_location,
37992 node,
37993 /*non_type=*/non_type,
37994 /*param_pack=*/false);
37995
37996 // Chain the new parameter to the list of implicit parameters.
37997 if (parser->implicit_template_parms)
37998 parser->implicit_template_parms
37999 = TREE_CHAIN (parser->implicit_template_parms);
38000 else
38001 parser->implicit_template_parms = new_parm;
38002
38003 tree new_decl = getdecls ();
38004 if (non_type)
38005 /* Return the TEMPLATE_PARM_INDEX, not the PARM_DECL. */
38006 new_decl = DECL_INITIAL (new_decl);
38007
38008 /* If creating a fully implicit function template, start the new implicit
38009 template parameter list with this synthesized type, otherwise grow the
38010 current template parameter list. */
38011
38012 if (become_template)
38013 {
38014 parent_scope->level_chain = current_binding_level;
38015
38016 tree new_parms = make_tree_vec (1);
38017 TREE_VEC_ELT (new_parms, 0) = parser->implicit_template_parms;
38018 current_template_parms = tree_cons (size_int (processing_template_decl),
38019 new_parms, current_template_parms);
38020 }
38021 else
38022 {
38023 tree& new_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
38024 int new_parm_idx = TREE_VEC_LENGTH (new_parms);
38025 new_parms = grow_tree_vec (new_parms, new_parm_idx + 1);
38026 TREE_VEC_ELT (new_parms, new_parm_idx) = parser->implicit_template_parms;
38027 }
38028
38029 // If the new parameter was constrained, we need to add that to the
38030 // constraints in the template parameter list.
38031 if (tree req = TEMPLATE_PARM_CONSTRAINTS (tree_last (new_parm)))
38032 {
38033 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
38034 reqs = conjoin_constraints (reqs, req);
38035 TEMPLATE_PARMS_CONSTRAINTS (current_template_parms) = reqs;
38036 }
38037
38038 current_binding_level = entry_scope;
38039
38040 return new_decl;
38041 }
38042
38043 /* Finish the declaration of a fully implicit function template. Such a
38044 template has no explicit template parameter list so has not been through the
38045 normal template head and tail processing. synthesize_implicit_template_parm
38046 tries to do the head; this tries to do the tail. MEMBER_DECL_OPT should be
38047 provided if the declaration is a class member such that its template
38048 declaration can be completed. If MEMBER_DECL_OPT is provided the finished
38049 form is returned. Otherwise NULL_TREE is returned. */
38050
38051 static tree
38052 finish_fully_implicit_template (cp_parser *parser, tree member_decl_opt)
38053 {
38054 gcc_assert (parser->fully_implicit_function_template_p);
38055
38056 if (member_decl_opt && member_decl_opt != error_mark_node
38057 && DECL_VIRTUAL_P (member_decl_opt))
38058 {
38059 error_at (DECL_SOURCE_LOCATION (member_decl_opt),
38060 "implicit templates may not be %<virtual%>");
38061 DECL_VIRTUAL_P (member_decl_opt) = false;
38062 }
38063
38064 if (member_decl_opt)
38065 member_decl_opt = finish_member_template_decl (member_decl_opt);
38066 end_template_decl ();
38067
38068 parser->fully_implicit_function_template_p = false;
38069 --parser->num_template_parameter_lists;
38070
38071 return member_decl_opt;
38072 }
38073
38074 #include "gt-cp-parser.h"