1e8f03bddca94cdcd8284abf24b8d812fcbd09d5
[gcc.git] / gcc / cp / parser.c
1 /* C++ Parser.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004,
3 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
4 Written by Mark Mitchell <mark@codesourcery.com>.
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
12
13 GCC is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
21
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "cpplib.h"
27 #include "tree.h"
28 #include "cp-tree.h"
29 #include "intl.h"
30 #include "c-family/c-pragma.h"
31 #include "decl.h"
32 #include "flags.h"
33 #include "diagnostic-core.h"
34 #include "output.h"
35 #include "target.h"
36 #include "cgraph.h"
37 #include "c-family/c-common.h"
38 #include "c-family/c-objc.h"
39 #include "plugin.h"
40
41 \f
42 /* The lexer. */
43
44 /* The cp_lexer_* routines mediate between the lexer proper (in libcpp
45 and c-lex.c) and the C++ parser. */
46
47 /* A token's value and its associated deferred access checks and
48 qualifying scope. */
49
50 struct GTY(()) tree_check {
51 /* The value associated with the token. */
52 tree value;
53 /* The checks that have been associated with value. */
54 VEC (deferred_access_check, gc)* checks;
55 /* The token's qualifying scope (used when it is a
56 CPP_NESTED_NAME_SPECIFIER). */
57 tree qualifying_scope;
58 };
59
60 /* A C++ token. */
61
62 typedef struct GTY (()) cp_token {
63 /* The kind of token. */
64 ENUM_BITFIELD (cpp_ttype) type : 8;
65 /* If this token is a keyword, this value indicates which keyword.
66 Otherwise, this value is RID_MAX. */
67 ENUM_BITFIELD (rid) keyword : 8;
68 /* Token flags. */
69 unsigned char flags;
70 /* Identifier for the pragma. */
71 ENUM_BITFIELD (pragma_kind) pragma_kind : 6;
72 /* True if this token is from a context where it is implicitly extern "C" */
73 BOOL_BITFIELD implicit_extern_c : 1;
74 /* True for a CPP_NAME token that is not a keyword (i.e., for which
75 KEYWORD is RID_MAX) iff this name was looked up and found to be
76 ambiguous. An error has already been reported. */
77 BOOL_BITFIELD ambiguous_p : 1;
78 /* The location at which this token was found. */
79 location_t location;
80 /* The value associated with this token, if any. */
81 union cp_token_value {
82 /* Used for CPP_NESTED_NAME_SPECIFIER and CPP_TEMPLATE_ID. */
83 struct tree_check* GTY((tag ("1"))) tree_check_value;
84 /* Use for all other tokens. */
85 tree GTY((tag ("0"))) value;
86 } GTY((desc ("(%1.type == CPP_TEMPLATE_ID) || (%1.type == CPP_NESTED_NAME_SPECIFIER)"))) u;
87 } cp_token;
88
89 /* We use a stack of token pointer for saving token sets. */
90 typedef struct cp_token *cp_token_position;
91 DEF_VEC_P (cp_token_position);
92 DEF_VEC_ALLOC_P (cp_token_position,heap);
93
94 static cp_token eof_token =
95 {
96 CPP_EOF, RID_MAX, 0, PRAGMA_NONE, false, 0, 0, { NULL }
97 };
98
99 /* The cp_lexer structure represents the C++ lexer. It is responsible
100 for managing the token stream from the preprocessor and supplying
101 it to the parser. Tokens are never added to the cp_lexer after
102 it is created. */
103
104 typedef struct GTY (()) cp_lexer {
105 /* The memory allocated for the buffer. NULL if this lexer does not
106 own the token buffer. */
107 cp_token * GTY ((length ("%h.buffer_length"))) buffer;
108 /* If the lexer owns the buffer, this is the number of tokens in the
109 buffer. */
110 size_t buffer_length;
111
112 /* A pointer just past the last available token. The tokens
113 in this lexer are [buffer, last_token). */
114 cp_token_position GTY ((skip)) last_token;
115
116 /* The next available token. If NEXT_TOKEN is &eof_token, then there are
117 no more available tokens. */
118 cp_token_position GTY ((skip)) next_token;
119
120 /* A stack indicating positions at which cp_lexer_save_tokens was
121 called. The top entry is the most recent position at which we
122 began saving tokens. If the stack is non-empty, we are saving
123 tokens. */
124 VEC(cp_token_position,heap) *GTY ((skip)) saved_tokens;
125
126 /* The next lexer in a linked list of lexers. */
127 struct cp_lexer *next;
128
129 /* True if we should output debugging information. */
130 bool debugging_p;
131
132 /* True if we're in the context of parsing a pragma, and should not
133 increment past the end-of-line marker. */
134 bool in_pragma;
135 } cp_lexer;
136
137 /* cp_token_cache is a range of tokens. There is no need to represent
138 allocate heap memory for it, since tokens are never removed from the
139 lexer's array. There is also no need for the GC to walk through
140 a cp_token_cache, since everything in here is referenced through
141 a lexer. */
142
143 typedef struct GTY(()) cp_token_cache {
144 /* The beginning of the token range. */
145 cp_token * GTY((skip)) first;
146
147 /* Points immediately after the last token in the range. */
148 cp_token * GTY ((skip)) last;
149 } cp_token_cache;
150
151 /* The various kinds of non integral constant we encounter. */
152 typedef enum non_integral_constant {
153 NIC_NONE,
154 /* floating-point literal */
155 NIC_FLOAT,
156 /* %<this%> */
157 NIC_THIS,
158 /* %<__FUNCTION__%> */
159 NIC_FUNC_NAME,
160 /* %<__PRETTY_FUNCTION__%> */
161 NIC_PRETTY_FUNC,
162 /* %<__func__%> */
163 NIC_C99_FUNC,
164 /* "%<va_arg%> */
165 NIC_VA_ARG,
166 /* a cast */
167 NIC_CAST,
168 /* %<typeid%> operator */
169 NIC_TYPEID,
170 /* non-constant compound literals */
171 NIC_NCC,
172 /* a function call */
173 NIC_FUNC_CALL,
174 /* an increment */
175 NIC_INC,
176 /* an decrement */
177 NIC_DEC,
178 /* an array reference */
179 NIC_ARRAY_REF,
180 /* %<->%> */
181 NIC_ARROW,
182 /* %<.%> */
183 NIC_POINT,
184 /* the address of a label */
185 NIC_ADDR_LABEL,
186 /* %<*%> */
187 NIC_STAR,
188 /* %<&%> */
189 NIC_ADDR,
190 /* %<++%> */
191 NIC_PREINCREMENT,
192 /* %<--%> */
193 NIC_PREDECREMENT,
194 /* %<new%> */
195 NIC_NEW,
196 /* %<delete%> */
197 NIC_DEL,
198 /* calls to overloaded operators */
199 NIC_OVERLOADED,
200 /* an assignment */
201 NIC_ASSIGNMENT,
202 /* a comma operator */
203 NIC_COMMA,
204 /* a call to a constructor */
205 NIC_CONSTRUCTOR
206 } non_integral_constant;
207
208 /* The various kinds of errors about name-lookup failing. */
209 typedef enum name_lookup_error {
210 /* NULL */
211 NLE_NULL,
212 /* is not a type */
213 NLE_TYPE,
214 /* is not a class or namespace */
215 NLE_CXX98,
216 /* is not a class, namespace, or enumeration */
217 NLE_NOT_CXX98
218 } name_lookup_error;
219
220 /* The various kinds of required token */
221 typedef enum required_token {
222 RT_NONE,
223 RT_SEMICOLON, /* ';' */
224 RT_OPEN_PAREN, /* '(' */
225 RT_CLOSE_BRACE, /* '}' */
226 RT_OPEN_BRACE, /* '{' */
227 RT_CLOSE_SQUARE, /* ']' */
228 RT_OPEN_SQUARE, /* '[' */
229 RT_COMMA, /* ',' */
230 RT_SCOPE, /* '::' */
231 RT_LESS, /* '<' */
232 RT_GREATER, /* '>' */
233 RT_EQ, /* '=' */
234 RT_ELLIPSIS, /* '...' */
235 RT_MULT, /* '*' */
236 RT_COMPL, /* '~' */
237 RT_COLON, /* ':' */
238 RT_COLON_SCOPE, /* ':' or '::' */
239 RT_CLOSE_PAREN, /* ')' */
240 RT_COMMA_CLOSE_PAREN, /* ',' or ')' */
241 RT_PRAGMA_EOL, /* end of line */
242 RT_NAME, /* identifier */
243
244 /* The type is CPP_KEYWORD */
245 RT_NEW, /* new */
246 RT_DELETE, /* delete */
247 RT_RETURN, /* return */
248 RT_WHILE, /* while */
249 RT_EXTERN, /* extern */
250 RT_STATIC_ASSERT, /* static_assert */
251 RT_DECLTYPE, /* decltype */
252 RT_OPERATOR, /* operator */
253 RT_CLASS, /* class */
254 RT_TEMPLATE, /* template */
255 RT_NAMESPACE, /* namespace */
256 RT_USING, /* using */
257 RT_ASM, /* asm */
258 RT_TRY, /* try */
259 RT_CATCH, /* catch */
260 RT_THROW, /* throw */
261 RT_LABEL, /* __label__ */
262 RT_AT_TRY, /* @try */
263 RT_AT_SYNCHRONIZED, /* @synchronized */
264 RT_AT_THROW, /* @throw */
265
266 RT_SELECT, /* selection-statement */
267 RT_INTERATION, /* iteration-statement */
268 RT_JUMP, /* jump-statement */
269 RT_CLASS_KEY, /* class-key */
270 RT_CLASS_TYPENAME_TEMPLATE /* class, typename, or template */
271 } required_token;
272
273 /* Prototypes. */
274
275 static cp_lexer *cp_lexer_new_main
276 (void);
277 static cp_lexer *cp_lexer_new_from_tokens
278 (cp_token_cache *tokens);
279 static void cp_lexer_destroy
280 (cp_lexer *);
281 static int cp_lexer_saving_tokens
282 (const cp_lexer *);
283 static cp_token_position cp_lexer_token_position
284 (cp_lexer *, bool);
285 static cp_token *cp_lexer_token_at
286 (cp_lexer *, cp_token_position);
287 static void cp_lexer_get_preprocessor_token
288 (cp_lexer *, cp_token *);
289 static inline cp_token *cp_lexer_peek_token
290 (cp_lexer *);
291 static cp_token *cp_lexer_peek_nth_token
292 (cp_lexer *, size_t);
293 static inline bool cp_lexer_next_token_is
294 (cp_lexer *, enum cpp_ttype);
295 static bool cp_lexer_next_token_is_not
296 (cp_lexer *, enum cpp_ttype);
297 static bool cp_lexer_next_token_is_keyword
298 (cp_lexer *, enum rid);
299 static cp_token *cp_lexer_consume_token
300 (cp_lexer *);
301 static void cp_lexer_purge_token
302 (cp_lexer *);
303 static void cp_lexer_purge_tokens_after
304 (cp_lexer *, cp_token_position);
305 static void cp_lexer_save_tokens
306 (cp_lexer *);
307 static void cp_lexer_commit_tokens
308 (cp_lexer *);
309 static void cp_lexer_rollback_tokens
310 (cp_lexer *);
311 #ifdef ENABLE_CHECKING
312 static void cp_lexer_print_token
313 (FILE *, cp_token *);
314 static inline bool cp_lexer_debugging_p
315 (cp_lexer *);
316 static void cp_lexer_start_debugging
317 (cp_lexer *) ATTRIBUTE_UNUSED;
318 static void cp_lexer_stop_debugging
319 (cp_lexer *) ATTRIBUTE_UNUSED;
320 #else
321 /* If we define cp_lexer_debug_stream to NULL it will provoke warnings
322 about passing NULL to functions that require non-NULL arguments
323 (fputs, fprintf). It will never be used, so all we need is a value
324 of the right type that's guaranteed not to be NULL. */
325 #define cp_lexer_debug_stream stdout
326 #define cp_lexer_print_token(str, tok) (void) 0
327 #define cp_lexer_debugging_p(lexer) 0
328 #endif /* ENABLE_CHECKING */
329
330 static cp_token_cache *cp_token_cache_new
331 (cp_token *, cp_token *);
332
333 static void cp_parser_initial_pragma
334 (cp_token *);
335
336 /* Manifest constants. */
337 #define CP_LEXER_BUFFER_SIZE ((256 * 1024) / sizeof (cp_token))
338 #define CP_SAVED_TOKEN_STACK 5
339
340 /* A token type for keywords, as opposed to ordinary identifiers. */
341 #define CPP_KEYWORD ((enum cpp_ttype) (N_TTYPES + 1))
342
343 /* A token type for template-ids. If a template-id is processed while
344 parsing tentatively, it is replaced with a CPP_TEMPLATE_ID token;
345 the value of the CPP_TEMPLATE_ID is whatever was returned by
346 cp_parser_template_id. */
347 #define CPP_TEMPLATE_ID ((enum cpp_ttype) (CPP_KEYWORD + 1))
348
349 /* A token type for nested-name-specifiers. If a
350 nested-name-specifier is processed while parsing tentatively, it is
351 replaced with a CPP_NESTED_NAME_SPECIFIER token; the value of the
352 CPP_NESTED_NAME_SPECIFIER is whatever was returned by
353 cp_parser_nested_name_specifier_opt. */
354 #define CPP_NESTED_NAME_SPECIFIER ((enum cpp_ttype) (CPP_TEMPLATE_ID + 1))
355
356 /* A token type for tokens that are not tokens at all; these are used
357 to represent slots in the array where there used to be a token
358 that has now been deleted. */
359 #define CPP_PURGED ((enum cpp_ttype) (CPP_NESTED_NAME_SPECIFIER + 1))
360
361 /* The number of token types, including C++-specific ones. */
362 #define N_CP_TTYPES ((int) (CPP_PURGED + 1))
363
364 /* Variables. */
365
366 #ifdef ENABLE_CHECKING
367 /* The stream to which debugging output should be written. */
368 static FILE *cp_lexer_debug_stream;
369 #endif /* ENABLE_CHECKING */
370
371 /* Nonzero if we are parsing an unevaluated operand: an operand to
372 sizeof, typeof, or alignof. */
373 int cp_unevaluated_operand;
374
375 /* Create a new main C++ lexer, the lexer that gets tokens from the
376 preprocessor. */
377
378 static cp_lexer *
379 cp_lexer_new_main (void)
380 {
381 cp_token first_token;
382 cp_lexer *lexer;
383 cp_token *pos;
384 size_t alloc;
385 size_t space;
386 cp_token *buffer;
387
388 /* It's possible that parsing the first pragma will load a PCH file,
389 which is a GC collection point. So we have to do that before
390 allocating any memory. */
391 cp_parser_initial_pragma (&first_token);
392
393 c_common_no_more_pch ();
394
395 /* Allocate the memory. */
396 lexer = ggc_alloc_cleared_cp_lexer ();
397
398 #ifdef ENABLE_CHECKING
399 /* Initially we are not debugging. */
400 lexer->debugging_p = false;
401 #endif /* ENABLE_CHECKING */
402 lexer->saved_tokens = VEC_alloc (cp_token_position, heap,
403 CP_SAVED_TOKEN_STACK);
404
405 /* Create the buffer. */
406 alloc = CP_LEXER_BUFFER_SIZE;
407 buffer = ggc_alloc_vec_cp_token (alloc);
408
409 /* Put the first token in the buffer. */
410 space = alloc;
411 pos = buffer;
412 *pos = first_token;
413
414 /* Get the remaining tokens from the preprocessor. */
415 while (pos->type != CPP_EOF)
416 {
417 pos++;
418 if (!--space)
419 {
420 space = alloc;
421 alloc *= 2;
422 buffer = GGC_RESIZEVEC (cp_token, buffer, alloc);
423 pos = buffer + space;
424 }
425 cp_lexer_get_preprocessor_token (lexer, pos);
426 }
427 lexer->buffer = buffer;
428 lexer->buffer_length = alloc - space;
429 lexer->last_token = pos;
430 lexer->next_token = lexer->buffer_length ? buffer : &eof_token;
431
432 /* Subsequent preprocessor diagnostics should use compiler
433 diagnostic functions to get the compiler source location. */
434 done_lexing = true;
435
436 gcc_assert (lexer->next_token->type != CPP_PURGED);
437 return lexer;
438 }
439
440 /* Create a new lexer whose token stream is primed with the tokens in
441 CACHE. When these tokens are exhausted, no new tokens will be read. */
442
443 static cp_lexer *
444 cp_lexer_new_from_tokens (cp_token_cache *cache)
445 {
446 cp_token *first = cache->first;
447 cp_token *last = cache->last;
448 cp_lexer *lexer = ggc_alloc_cleared_cp_lexer ();
449
450 /* We do not own the buffer. */
451 lexer->buffer = NULL;
452 lexer->buffer_length = 0;
453 lexer->next_token = first == last ? &eof_token : first;
454 lexer->last_token = last;
455
456 lexer->saved_tokens = VEC_alloc (cp_token_position, heap,
457 CP_SAVED_TOKEN_STACK);
458
459 #ifdef ENABLE_CHECKING
460 /* Initially we are not debugging. */
461 lexer->debugging_p = false;
462 #endif
463
464 gcc_assert (lexer->next_token->type != CPP_PURGED);
465 return lexer;
466 }
467
468 /* Frees all resources associated with LEXER. */
469
470 static void
471 cp_lexer_destroy (cp_lexer *lexer)
472 {
473 if (lexer->buffer)
474 ggc_free (lexer->buffer);
475 VEC_free (cp_token_position, heap, lexer->saved_tokens);
476 ggc_free (lexer);
477 }
478
479 /* Returns nonzero if debugging information should be output. */
480
481 #ifdef ENABLE_CHECKING
482
483 static inline bool
484 cp_lexer_debugging_p (cp_lexer *lexer)
485 {
486 return lexer->debugging_p;
487 }
488
489 #endif /* ENABLE_CHECKING */
490
491 static inline cp_token_position
492 cp_lexer_token_position (cp_lexer *lexer, bool previous_p)
493 {
494 gcc_assert (!previous_p || lexer->next_token != &eof_token);
495
496 return lexer->next_token - previous_p;
497 }
498
499 static inline cp_token *
500 cp_lexer_token_at (cp_lexer *lexer ATTRIBUTE_UNUSED, cp_token_position pos)
501 {
502 return pos;
503 }
504
505 static inline void
506 cp_lexer_set_token_position (cp_lexer *lexer, cp_token_position pos)
507 {
508 lexer->next_token = cp_lexer_token_at (lexer, pos);
509 }
510
511 static inline cp_token_position
512 cp_lexer_previous_token_position (cp_lexer *lexer)
513 {
514 if (lexer->next_token == &eof_token)
515 return lexer->last_token - 1;
516 else
517 return cp_lexer_token_position (lexer, true);
518 }
519
520 static inline cp_token *
521 cp_lexer_previous_token (cp_lexer *lexer)
522 {
523 cp_token_position tp = cp_lexer_previous_token_position (lexer);
524
525 return cp_lexer_token_at (lexer, tp);
526 }
527
528 /* nonzero if we are presently saving tokens. */
529
530 static inline int
531 cp_lexer_saving_tokens (const cp_lexer* lexer)
532 {
533 return VEC_length (cp_token_position, lexer->saved_tokens) != 0;
534 }
535
536 /* Store the next token from the preprocessor in *TOKEN. Return true
537 if we reach EOF. If LEXER is NULL, assume we are handling an
538 initial #pragma pch_preprocess, and thus want the lexer to return
539 processed strings. */
540
541 static void
542 cp_lexer_get_preprocessor_token (cp_lexer *lexer, cp_token *token)
543 {
544 static int is_extern_c = 0;
545
546 /* Get a new token from the preprocessor. */
547 token->type
548 = c_lex_with_flags (&token->u.value, &token->location, &token->flags,
549 lexer == NULL ? 0 : C_LEX_STRING_NO_JOIN);
550 token->keyword = RID_MAX;
551 token->pragma_kind = PRAGMA_NONE;
552
553 /* On some systems, some header files are surrounded by an
554 implicit extern "C" block. Set a flag in the token if it
555 comes from such a header. */
556 is_extern_c += pending_lang_change;
557 pending_lang_change = 0;
558 token->implicit_extern_c = is_extern_c > 0;
559
560 /* Check to see if this token is a keyword. */
561 if (token->type == CPP_NAME)
562 {
563 if (C_IS_RESERVED_WORD (token->u.value))
564 {
565 /* Mark this token as a keyword. */
566 token->type = CPP_KEYWORD;
567 /* Record which keyword. */
568 token->keyword = C_RID_CODE (token->u.value);
569 }
570 else
571 {
572 if (warn_cxx0x_compat
573 && C_RID_CODE (token->u.value) >= RID_FIRST_CXX0X
574 && C_RID_CODE (token->u.value) <= RID_LAST_CXX0X)
575 {
576 /* Warn about the C++0x keyword (but still treat it as
577 an identifier). */
578 warning (OPT_Wc__0x_compat,
579 "identifier %qE will become a keyword in C++0x",
580 token->u.value);
581
582 /* Clear out the C_RID_CODE so we don't warn about this
583 particular identifier-turned-keyword again. */
584 C_SET_RID_CODE (token->u.value, RID_MAX);
585 }
586
587 token->ambiguous_p = false;
588 token->keyword = RID_MAX;
589 }
590 }
591 else if (token->type == CPP_AT_NAME)
592 {
593 /* This only happens in Objective-C++; it must be a keyword. */
594 token->type = CPP_KEYWORD;
595 switch (C_RID_CODE (token->u.value))
596 {
597 /* Replace 'class' with '@class', 'private' with '@private',
598 etc. This prevents confusion with the C++ keyword
599 'class', and makes the tokens consistent with other
600 Objective-C 'AT' keywords. For example '@class' is
601 reported as RID_AT_CLASS which is consistent with
602 '@synchronized', which is reported as
603 RID_AT_SYNCHRONIZED.
604 */
605 case RID_CLASS: token->keyword = RID_AT_CLASS; break;
606 case RID_PRIVATE: token->keyword = RID_AT_PRIVATE; break;
607 case RID_PROTECTED: token->keyword = RID_AT_PROTECTED; break;
608 case RID_PUBLIC: token->keyword = RID_AT_PUBLIC; break;
609 case RID_THROW: token->keyword = RID_AT_THROW; break;
610 case RID_TRY: token->keyword = RID_AT_TRY; break;
611 case RID_CATCH: token->keyword = RID_AT_CATCH; break;
612 default: token->keyword = C_RID_CODE (token->u.value);
613 }
614 }
615 else if (token->type == CPP_PRAGMA)
616 {
617 /* We smuggled the cpp_token->u.pragma value in an INTEGER_CST. */
618 token->pragma_kind = ((enum pragma_kind)
619 TREE_INT_CST_LOW (token->u.value));
620 token->u.value = NULL_TREE;
621 }
622 }
623
624 /* Update the globals input_location and the input file stack from TOKEN. */
625 static inline void
626 cp_lexer_set_source_position_from_token (cp_token *token)
627 {
628 if (token->type != CPP_EOF)
629 {
630 input_location = token->location;
631 }
632 }
633
634 /* Return a pointer to the next token in the token stream, but do not
635 consume it. */
636
637 static inline cp_token *
638 cp_lexer_peek_token (cp_lexer *lexer)
639 {
640 if (cp_lexer_debugging_p (lexer))
641 {
642 fputs ("cp_lexer: peeking at token: ", cp_lexer_debug_stream);
643 cp_lexer_print_token (cp_lexer_debug_stream, lexer->next_token);
644 putc ('\n', cp_lexer_debug_stream);
645 }
646 return lexer->next_token;
647 }
648
649 /* Return true if the next token has the indicated TYPE. */
650
651 static inline bool
652 cp_lexer_next_token_is (cp_lexer* lexer, enum cpp_ttype type)
653 {
654 return cp_lexer_peek_token (lexer)->type == type;
655 }
656
657 /* Return true if the next token does not have the indicated TYPE. */
658
659 static inline bool
660 cp_lexer_next_token_is_not (cp_lexer* lexer, enum cpp_ttype type)
661 {
662 return !cp_lexer_next_token_is (lexer, type);
663 }
664
665 /* Return true if the next token is the indicated KEYWORD. */
666
667 static inline bool
668 cp_lexer_next_token_is_keyword (cp_lexer* lexer, enum rid keyword)
669 {
670 return cp_lexer_peek_token (lexer)->keyword == keyword;
671 }
672
673 /* Return true if the next token is not the indicated KEYWORD. */
674
675 static inline bool
676 cp_lexer_next_token_is_not_keyword (cp_lexer* lexer, enum rid keyword)
677 {
678 return cp_lexer_peek_token (lexer)->keyword != keyword;
679 }
680
681 /* Return true if the next token is a keyword for a decl-specifier. */
682
683 static bool
684 cp_lexer_next_token_is_decl_specifier_keyword (cp_lexer *lexer)
685 {
686 cp_token *token;
687
688 token = cp_lexer_peek_token (lexer);
689 switch (token->keyword)
690 {
691 /* auto specifier: storage-class-specifier in C++,
692 simple-type-specifier in C++0x. */
693 case RID_AUTO:
694 /* Storage classes. */
695 case RID_REGISTER:
696 case RID_STATIC:
697 case RID_EXTERN:
698 case RID_MUTABLE:
699 case RID_THREAD:
700 /* Elaborated type specifiers. */
701 case RID_ENUM:
702 case RID_CLASS:
703 case RID_STRUCT:
704 case RID_UNION:
705 case RID_TYPENAME:
706 /* Simple type specifiers. */
707 case RID_CHAR:
708 case RID_CHAR16:
709 case RID_CHAR32:
710 case RID_WCHAR:
711 case RID_BOOL:
712 case RID_SHORT:
713 case RID_INT:
714 case RID_LONG:
715 case RID_INT128:
716 case RID_SIGNED:
717 case RID_UNSIGNED:
718 case RID_FLOAT:
719 case RID_DOUBLE:
720 case RID_VOID:
721 /* GNU extensions. */
722 case RID_ATTRIBUTE:
723 case RID_TYPEOF:
724 /* C++0x extensions. */
725 case RID_DECLTYPE:
726 return true;
727
728 default:
729 return false;
730 }
731 }
732
733 /* Return a pointer to the Nth token in the token stream. If N is 1,
734 then this is precisely equivalent to cp_lexer_peek_token (except
735 that it is not inline). One would like to disallow that case, but
736 there is one case (cp_parser_nth_token_starts_template_id) where
737 the caller passes a variable for N and it might be 1. */
738
739 static cp_token *
740 cp_lexer_peek_nth_token (cp_lexer* lexer, size_t n)
741 {
742 cp_token *token;
743
744 /* N is 1-based, not zero-based. */
745 gcc_assert (n > 0);
746
747 if (cp_lexer_debugging_p (lexer))
748 fprintf (cp_lexer_debug_stream,
749 "cp_lexer: peeking ahead %ld at token: ", (long)n);
750
751 --n;
752 token = lexer->next_token;
753 gcc_assert (!n || token != &eof_token);
754 while (n != 0)
755 {
756 ++token;
757 if (token == lexer->last_token)
758 {
759 token = &eof_token;
760 break;
761 }
762
763 if (token->type != CPP_PURGED)
764 --n;
765 }
766
767 if (cp_lexer_debugging_p (lexer))
768 {
769 cp_lexer_print_token (cp_lexer_debug_stream, token);
770 putc ('\n', cp_lexer_debug_stream);
771 }
772
773 return token;
774 }
775
776 /* Return the next token, and advance the lexer's next_token pointer
777 to point to the next non-purged token. */
778
779 static cp_token *
780 cp_lexer_consume_token (cp_lexer* lexer)
781 {
782 cp_token *token = lexer->next_token;
783
784 gcc_assert (token != &eof_token);
785 gcc_assert (!lexer->in_pragma || token->type != CPP_PRAGMA_EOL);
786
787 do
788 {
789 lexer->next_token++;
790 if (lexer->next_token == lexer->last_token)
791 {
792 lexer->next_token = &eof_token;
793 break;
794 }
795
796 }
797 while (lexer->next_token->type == CPP_PURGED);
798
799 cp_lexer_set_source_position_from_token (token);
800
801 /* Provide debugging output. */
802 if (cp_lexer_debugging_p (lexer))
803 {
804 fputs ("cp_lexer: consuming token: ", cp_lexer_debug_stream);
805 cp_lexer_print_token (cp_lexer_debug_stream, token);
806 putc ('\n', cp_lexer_debug_stream);
807 }
808
809 return token;
810 }
811
812 /* Permanently remove the next token from the token stream, and
813 advance the next_token pointer to refer to the next non-purged
814 token. */
815
816 static void
817 cp_lexer_purge_token (cp_lexer *lexer)
818 {
819 cp_token *tok = lexer->next_token;
820
821 gcc_assert (tok != &eof_token);
822 tok->type = CPP_PURGED;
823 tok->location = UNKNOWN_LOCATION;
824 tok->u.value = NULL_TREE;
825 tok->keyword = RID_MAX;
826
827 do
828 {
829 tok++;
830 if (tok == lexer->last_token)
831 {
832 tok = &eof_token;
833 break;
834 }
835 }
836 while (tok->type == CPP_PURGED);
837 lexer->next_token = tok;
838 }
839
840 /* Permanently remove all tokens after TOK, up to, but not
841 including, the token that will be returned next by
842 cp_lexer_peek_token. */
843
844 static void
845 cp_lexer_purge_tokens_after (cp_lexer *lexer, cp_token *tok)
846 {
847 cp_token *peek = lexer->next_token;
848
849 if (peek == &eof_token)
850 peek = lexer->last_token;
851
852 gcc_assert (tok < peek);
853
854 for ( tok += 1; tok != peek; tok += 1)
855 {
856 tok->type = CPP_PURGED;
857 tok->location = UNKNOWN_LOCATION;
858 tok->u.value = NULL_TREE;
859 tok->keyword = RID_MAX;
860 }
861 }
862
863 /* Begin saving tokens. All tokens consumed after this point will be
864 preserved. */
865
866 static void
867 cp_lexer_save_tokens (cp_lexer* lexer)
868 {
869 /* Provide debugging output. */
870 if (cp_lexer_debugging_p (lexer))
871 fprintf (cp_lexer_debug_stream, "cp_lexer: saving tokens\n");
872
873 VEC_safe_push (cp_token_position, heap,
874 lexer->saved_tokens, lexer->next_token);
875 }
876
877 /* Commit to the portion of the token stream most recently saved. */
878
879 static void
880 cp_lexer_commit_tokens (cp_lexer* lexer)
881 {
882 /* Provide debugging output. */
883 if (cp_lexer_debugging_p (lexer))
884 fprintf (cp_lexer_debug_stream, "cp_lexer: committing tokens\n");
885
886 VEC_pop (cp_token_position, lexer->saved_tokens);
887 }
888
889 /* Return all tokens saved since the last call to cp_lexer_save_tokens
890 to the token stream. Stop saving tokens. */
891
892 static void
893 cp_lexer_rollback_tokens (cp_lexer* lexer)
894 {
895 /* Provide debugging output. */
896 if (cp_lexer_debugging_p (lexer))
897 fprintf (cp_lexer_debug_stream, "cp_lexer: restoring tokens\n");
898
899 lexer->next_token = VEC_pop (cp_token_position, lexer->saved_tokens);
900 }
901
902 /* Print a representation of the TOKEN on the STREAM. */
903
904 #ifdef ENABLE_CHECKING
905
906 static void
907 cp_lexer_print_token (FILE * stream, cp_token *token)
908 {
909 /* We don't use cpp_type2name here because the parser defines
910 a few tokens of its own. */
911 static const char *const token_names[] = {
912 /* cpplib-defined token types */
913 #define OP(e, s) #e,
914 #define TK(e, s) #e,
915 TTYPE_TABLE
916 #undef OP
917 #undef TK
918 /* C++ parser token types - see "Manifest constants", above. */
919 "KEYWORD",
920 "TEMPLATE_ID",
921 "NESTED_NAME_SPECIFIER",
922 "PURGED"
923 };
924
925 /* If we have a name for the token, print it out. Otherwise, we
926 simply give the numeric code. */
927 gcc_assert (token->type < ARRAY_SIZE(token_names));
928 fputs (token_names[token->type], stream);
929
930 /* For some tokens, print the associated data. */
931 switch (token->type)
932 {
933 case CPP_KEYWORD:
934 /* Some keywords have a value that is not an IDENTIFIER_NODE.
935 For example, `struct' is mapped to an INTEGER_CST. */
936 if (TREE_CODE (token->u.value) != IDENTIFIER_NODE)
937 break;
938 /* else fall through */
939 case CPP_NAME:
940 fputs (IDENTIFIER_POINTER (token->u.value), stream);
941 break;
942
943 case CPP_STRING:
944 case CPP_STRING16:
945 case CPP_STRING32:
946 case CPP_WSTRING:
947 case CPP_UTF8STRING:
948 fprintf (stream, " \"%s\"", TREE_STRING_POINTER (token->u.value));
949 break;
950
951 default:
952 break;
953 }
954 }
955
956 /* Start emitting debugging information. */
957
958 static void
959 cp_lexer_start_debugging (cp_lexer* lexer)
960 {
961 lexer->debugging_p = true;
962 }
963
964 /* Stop emitting debugging information. */
965
966 static void
967 cp_lexer_stop_debugging (cp_lexer* lexer)
968 {
969 lexer->debugging_p = false;
970 }
971
972 #endif /* ENABLE_CHECKING */
973
974 /* Create a new cp_token_cache, representing a range of tokens. */
975
976 static cp_token_cache *
977 cp_token_cache_new (cp_token *first, cp_token *last)
978 {
979 cp_token_cache *cache = ggc_alloc_cp_token_cache ();
980 cache->first = first;
981 cache->last = last;
982 return cache;
983 }
984
985 \f
986 /* Decl-specifiers. */
987
988 /* Set *DECL_SPECS to represent an empty decl-specifier-seq. */
989
990 static void
991 clear_decl_specs (cp_decl_specifier_seq *decl_specs)
992 {
993 memset (decl_specs, 0, sizeof (cp_decl_specifier_seq));
994 }
995
996 /* Declarators. */
997
998 /* Nothing other than the parser should be creating declarators;
999 declarators are a semi-syntactic representation of C++ entities.
1000 Other parts of the front end that need to create entities (like
1001 VAR_DECLs or FUNCTION_DECLs) should do that directly. */
1002
1003 static cp_declarator *make_call_declarator
1004 (cp_declarator *, tree, cp_cv_quals, tree, tree);
1005 static cp_declarator *make_array_declarator
1006 (cp_declarator *, tree);
1007 static cp_declarator *make_pointer_declarator
1008 (cp_cv_quals, cp_declarator *);
1009 static cp_declarator *make_reference_declarator
1010 (cp_cv_quals, cp_declarator *, bool);
1011 static cp_parameter_declarator *make_parameter_declarator
1012 (cp_decl_specifier_seq *, cp_declarator *, tree);
1013 static cp_declarator *make_ptrmem_declarator
1014 (cp_cv_quals, tree, cp_declarator *);
1015
1016 /* An erroneous declarator. */
1017 static cp_declarator *cp_error_declarator;
1018
1019 /* The obstack on which declarators and related data structures are
1020 allocated. */
1021 static struct obstack declarator_obstack;
1022
1023 /* Alloc BYTES from the declarator memory pool. */
1024
1025 static inline void *
1026 alloc_declarator (size_t bytes)
1027 {
1028 return obstack_alloc (&declarator_obstack, bytes);
1029 }
1030
1031 /* Allocate a declarator of the indicated KIND. Clear fields that are
1032 common to all declarators. */
1033
1034 static cp_declarator *
1035 make_declarator (cp_declarator_kind kind)
1036 {
1037 cp_declarator *declarator;
1038
1039 declarator = (cp_declarator *) alloc_declarator (sizeof (cp_declarator));
1040 declarator->kind = kind;
1041 declarator->attributes = NULL_TREE;
1042 declarator->declarator = NULL;
1043 declarator->parameter_pack_p = false;
1044 declarator->id_loc = UNKNOWN_LOCATION;
1045
1046 return declarator;
1047 }
1048
1049 /* Make a declarator for a generalized identifier. If
1050 QUALIFYING_SCOPE is non-NULL, the identifier is
1051 QUALIFYING_SCOPE::UNQUALIFIED_NAME; otherwise, it is just
1052 UNQUALIFIED_NAME. SFK indicates the kind of special function this
1053 is, if any. */
1054
1055 static cp_declarator *
1056 make_id_declarator (tree qualifying_scope, tree unqualified_name,
1057 special_function_kind sfk)
1058 {
1059 cp_declarator *declarator;
1060
1061 /* It is valid to write:
1062
1063 class C { void f(); };
1064 typedef C D;
1065 void D::f();
1066
1067 The standard is not clear about whether `typedef const C D' is
1068 legal; as of 2002-09-15 the committee is considering that
1069 question. EDG 3.0 allows that syntax. Therefore, we do as
1070 well. */
1071 if (qualifying_scope && TYPE_P (qualifying_scope))
1072 qualifying_scope = TYPE_MAIN_VARIANT (qualifying_scope);
1073
1074 gcc_assert (TREE_CODE (unqualified_name) == IDENTIFIER_NODE
1075 || TREE_CODE (unqualified_name) == BIT_NOT_EXPR
1076 || TREE_CODE (unqualified_name) == TEMPLATE_ID_EXPR);
1077
1078 declarator = make_declarator (cdk_id);
1079 declarator->u.id.qualifying_scope = qualifying_scope;
1080 declarator->u.id.unqualified_name = unqualified_name;
1081 declarator->u.id.sfk = sfk;
1082
1083 return declarator;
1084 }
1085
1086 /* Make a declarator for a pointer to TARGET. CV_QUALIFIERS is a list
1087 of modifiers such as const or volatile to apply to the pointer
1088 type, represented as identifiers. */
1089
1090 cp_declarator *
1091 make_pointer_declarator (cp_cv_quals cv_qualifiers, cp_declarator *target)
1092 {
1093 cp_declarator *declarator;
1094
1095 declarator = make_declarator (cdk_pointer);
1096 declarator->declarator = target;
1097 declarator->u.pointer.qualifiers = cv_qualifiers;
1098 declarator->u.pointer.class_type = NULL_TREE;
1099 if (target)
1100 {
1101 declarator->id_loc = target->id_loc;
1102 declarator->parameter_pack_p = target->parameter_pack_p;
1103 target->parameter_pack_p = false;
1104 }
1105 else
1106 declarator->parameter_pack_p = false;
1107
1108 return declarator;
1109 }
1110
1111 /* Like make_pointer_declarator -- but for references. */
1112
1113 cp_declarator *
1114 make_reference_declarator (cp_cv_quals cv_qualifiers, cp_declarator *target,
1115 bool rvalue_ref)
1116 {
1117 cp_declarator *declarator;
1118
1119 declarator = make_declarator (cdk_reference);
1120 declarator->declarator = target;
1121 declarator->u.reference.qualifiers = cv_qualifiers;
1122 declarator->u.reference.rvalue_ref = rvalue_ref;
1123 if (target)
1124 {
1125 declarator->id_loc = target->id_loc;
1126 declarator->parameter_pack_p = target->parameter_pack_p;
1127 target->parameter_pack_p = false;
1128 }
1129 else
1130 declarator->parameter_pack_p = false;
1131
1132 return declarator;
1133 }
1134
1135 /* Like make_pointer_declarator -- but for a pointer to a non-static
1136 member of CLASS_TYPE. */
1137
1138 cp_declarator *
1139 make_ptrmem_declarator (cp_cv_quals cv_qualifiers, tree class_type,
1140 cp_declarator *pointee)
1141 {
1142 cp_declarator *declarator;
1143
1144 declarator = make_declarator (cdk_ptrmem);
1145 declarator->declarator = pointee;
1146 declarator->u.pointer.qualifiers = cv_qualifiers;
1147 declarator->u.pointer.class_type = class_type;
1148
1149 if (pointee)
1150 {
1151 declarator->parameter_pack_p = pointee->parameter_pack_p;
1152 pointee->parameter_pack_p = false;
1153 }
1154 else
1155 declarator->parameter_pack_p = false;
1156
1157 return declarator;
1158 }
1159
1160 /* Make a declarator for the function given by TARGET, with the
1161 indicated PARMS. The CV_QUALIFIERS aply to the function, as in
1162 "const"-qualified member function. The EXCEPTION_SPECIFICATION
1163 indicates what exceptions can be thrown. */
1164
1165 cp_declarator *
1166 make_call_declarator (cp_declarator *target,
1167 tree parms,
1168 cp_cv_quals cv_qualifiers,
1169 tree exception_specification,
1170 tree late_return_type)
1171 {
1172 cp_declarator *declarator;
1173
1174 declarator = make_declarator (cdk_function);
1175 declarator->declarator = target;
1176 declarator->u.function.parameters = parms;
1177 declarator->u.function.qualifiers = cv_qualifiers;
1178 declarator->u.function.exception_specification = exception_specification;
1179 declarator->u.function.late_return_type = late_return_type;
1180 if (target)
1181 {
1182 declarator->id_loc = target->id_loc;
1183 declarator->parameter_pack_p = target->parameter_pack_p;
1184 target->parameter_pack_p = false;
1185 }
1186 else
1187 declarator->parameter_pack_p = false;
1188
1189 return declarator;
1190 }
1191
1192 /* Make a declarator for an array of BOUNDS elements, each of which is
1193 defined by ELEMENT. */
1194
1195 cp_declarator *
1196 make_array_declarator (cp_declarator *element, tree bounds)
1197 {
1198 cp_declarator *declarator;
1199
1200 declarator = make_declarator (cdk_array);
1201 declarator->declarator = element;
1202 declarator->u.array.bounds = bounds;
1203 if (element)
1204 {
1205 declarator->id_loc = element->id_loc;
1206 declarator->parameter_pack_p = element->parameter_pack_p;
1207 element->parameter_pack_p = false;
1208 }
1209 else
1210 declarator->parameter_pack_p = false;
1211
1212 return declarator;
1213 }
1214
1215 /* Determine whether the declarator we've seen so far can be a
1216 parameter pack, when followed by an ellipsis. */
1217 static bool
1218 declarator_can_be_parameter_pack (cp_declarator *declarator)
1219 {
1220 /* Search for a declarator name, or any other declarator that goes
1221 after the point where the ellipsis could appear in a parameter
1222 pack. If we find any of these, then this declarator can not be
1223 made into a parameter pack. */
1224 bool found = false;
1225 while (declarator && !found)
1226 {
1227 switch ((int)declarator->kind)
1228 {
1229 case cdk_id:
1230 case cdk_array:
1231 found = true;
1232 break;
1233
1234 case cdk_error:
1235 return true;
1236
1237 default:
1238 declarator = declarator->declarator;
1239 break;
1240 }
1241 }
1242
1243 return !found;
1244 }
1245
1246 cp_parameter_declarator *no_parameters;
1247
1248 /* Create a parameter declarator with the indicated DECL_SPECIFIERS,
1249 DECLARATOR and DEFAULT_ARGUMENT. */
1250
1251 cp_parameter_declarator *
1252 make_parameter_declarator (cp_decl_specifier_seq *decl_specifiers,
1253 cp_declarator *declarator,
1254 tree default_argument)
1255 {
1256 cp_parameter_declarator *parameter;
1257
1258 parameter = ((cp_parameter_declarator *)
1259 alloc_declarator (sizeof (cp_parameter_declarator)));
1260 parameter->next = NULL;
1261 if (decl_specifiers)
1262 parameter->decl_specifiers = *decl_specifiers;
1263 else
1264 clear_decl_specs (&parameter->decl_specifiers);
1265 parameter->declarator = declarator;
1266 parameter->default_argument = default_argument;
1267 parameter->ellipsis_p = false;
1268
1269 return parameter;
1270 }
1271
1272 /* Returns true iff DECLARATOR is a declaration for a function. */
1273
1274 static bool
1275 function_declarator_p (const cp_declarator *declarator)
1276 {
1277 while (declarator)
1278 {
1279 if (declarator->kind == cdk_function
1280 && declarator->declarator->kind == cdk_id)
1281 return true;
1282 if (declarator->kind == cdk_id
1283 || declarator->kind == cdk_error)
1284 return false;
1285 declarator = declarator->declarator;
1286 }
1287 return false;
1288 }
1289
1290 /* The parser. */
1291
1292 /* Overview
1293 --------
1294
1295 A cp_parser parses the token stream as specified by the C++
1296 grammar. Its job is purely parsing, not semantic analysis. For
1297 example, the parser breaks the token stream into declarators,
1298 expressions, statements, and other similar syntactic constructs.
1299 It does not check that the types of the expressions on either side
1300 of an assignment-statement are compatible, or that a function is
1301 not declared with a parameter of type `void'.
1302
1303 The parser invokes routines elsewhere in the compiler to perform
1304 semantic analysis and to build up the abstract syntax tree for the
1305 code processed.
1306
1307 The parser (and the template instantiation code, which is, in a
1308 way, a close relative of parsing) are the only parts of the
1309 compiler that should be calling push_scope and pop_scope, or
1310 related functions. The parser (and template instantiation code)
1311 keeps track of what scope is presently active; everything else
1312 should simply honor that. (The code that generates static
1313 initializers may also need to set the scope, in order to check
1314 access control correctly when emitting the initializers.)
1315
1316 Methodology
1317 -----------
1318
1319 The parser is of the standard recursive-descent variety. Upcoming
1320 tokens in the token stream are examined in order to determine which
1321 production to use when parsing a non-terminal. Some C++ constructs
1322 require arbitrary look ahead to disambiguate. For example, it is
1323 impossible, in the general case, to tell whether a statement is an
1324 expression or declaration without scanning the entire statement.
1325 Therefore, the parser is capable of "parsing tentatively." When the
1326 parser is not sure what construct comes next, it enters this mode.
1327 Then, while we attempt to parse the construct, the parser queues up
1328 error messages, rather than issuing them immediately, and saves the
1329 tokens it consumes. If the construct is parsed successfully, the
1330 parser "commits", i.e., it issues any queued error messages and
1331 the tokens that were being preserved are permanently discarded.
1332 If, however, the construct is not parsed successfully, the parser
1333 rolls back its state completely so that it can resume parsing using
1334 a different alternative.
1335
1336 Future Improvements
1337 -------------------
1338
1339 The performance of the parser could probably be improved substantially.
1340 We could often eliminate the need to parse tentatively by looking ahead
1341 a little bit. In some places, this approach might not entirely eliminate
1342 the need to parse tentatively, but it might still speed up the average
1343 case. */
1344
1345 /* Flags that are passed to some parsing functions. These values can
1346 be bitwise-ored together. */
1347
1348 enum
1349 {
1350 /* No flags. */
1351 CP_PARSER_FLAGS_NONE = 0x0,
1352 /* The construct is optional. If it is not present, then no error
1353 should be issued. */
1354 CP_PARSER_FLAGS_OPTIONAL = 0x1,
1355 /* When parsing a type-specifier, treat user-defined type-names
1356 as non-type identifiers. */
1357 CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES = 0x2,
1358 /* When parsing a type-specifier, do not try to parse a class-specifier
1359 or enum-specifier. */
1360 CP_PARSER_FLAGS_NO_TYPE_DEFINITIONS = 0x4,
1361 /* When parsing a decl-specifier-seq, only allow type-specifier or
1362 constexpr. */
1363 CP_PARSER_FLAGS_ONLY_TYPE_OR_CONSTEXPR = 0x8
1364 };
1365
1366 /* This type is used for parameters and variables which hold
1367 combinations of the above flags. */
1368 typedef int cp_parser_flags;
1369
1370 /* The different kinds of declarators we want to parse. */
1371
1372 typedef enum cp_parser_declarator_kind
1373 {
1374 /* We want an abstract declarator. */
1375 CP_PARSER_DECLARATOR_ABSTRACT,
1376 /* We want a named declarator. */
1377 CP_PARSER_DECLARATOR_NAMED,
1378 /* We don't mind, but the name must be an unqualified-id. */
1379 CP_PARSER_DECLARATOR_EITHER
1380 } cp_parser_declarator_kind;
1381
1382 /* The precedence values used to parse binary expressions. The minimum value
1383 of PREC must be 1, because zero is reserved to quickly discriminate
1384 binary operators from other tokens. */
1385
1386 enum cp_parser_prec
1387 {
1388 PREC_NOT_OPERATOR,
1389 PREC_LOGICAL_OR_EXPRESSION,
1390 PREC_LOGICAL_AND_EXPRESSION,
1391 PREC_INCLUSIVE_OR_EXPRESSION,
1392 PREC_EXCLUSIVE_OR_EXPRESSION,
1393 PREC_AND_EXPRESSION,
1394 PREC_EQUALITY_EXPRESSION,
1395 PREC_RELATIONAL_EXPRESSION,
1396 PREC_SHIFT_EXPRESSION,
1397 PREC_ADDITIVE_EXPRESSION,
1398 PREC_MULTIPLICATIVE_EXPRESSION,
1399 PREC_PM_EXPRESSION,
1400 NUM_PREC_VALUES = PREC_PM_EXPRESSION
1401 };
1402
1403 /* A mapping from a token type to a corresponding tree node type, with a
1404 precedence value. */
1405
1406 typedef struct cp_parser_binary_operations_map_node
1407 {
1408 /* The token type. */
1409 enum cpp_ttype token_type;
1410 /* The corresponding tree code. */
1411 enum tree_code tree_type;
1412 /* The precedence of this operator. */
1413 enum cp_parser_prec prec;
1414 } cp_parser_binary_operations_map_node;
1415
1416 /* The status of a tentative parse. */
1417
1418 typedef enum cp_parser_status_kind
1419 {
1420 /* No errors have occurred. */
1421 CP_PARSER_STATUS_KIND_NO_ERROR,
1422 /* An error has occurred. */
1423 CP_PARSER_STATUS_KIND_ERROR,
1424 /* We are committed to this tentative parse, whether or not an error
1425 has occurred. */
1426 CP_PARSER_STATUS_KIND_COMMITTED
1427 } cp_parser_status_kind;
1428
1429 typedef struct cp_parser_expression_stack_entry
1430 {
1431 /* Left hand side of the binary operation we are currently
1432 parsing. */
1433 tree lhs;
1434 /* Original tree code for left hand side, if it was a binary
1435 expression itself (used for -Wparentheses). */
1436 enum tree_code lhs_type;
1437 /* Tree code for the binary operation we are parsing. */
1438 enum tree_code tree_type;
1439 /* Precedence of the binary operation we are parsing. */
1440 enum cp_parser_prec prec;
1441 } cp_parser_expression_stack_entry;
1442
1443 /* The stack for storing partial expressions. We only need NUM_PREC_VALUES
1444 entries because precedence levels on the stack are monotonically
1445 increasing. */
1446 typedef struct cp_parser_expression_stack_entry
1447 cp_parser_expression_stack[NUM_PREC_VALUES];
1448
1449 /* Context that is saved and restored when parsing tentatively. */
1450 typedef struct GTY (()) cp_parser_context {
1451 /* If this is a tentative parsing context, the status of the
1452 tentative parse. */
1453 enum cp_parser_status_kind status;
1454 /* If non-NULL, we have just seen a `x->' or `x.' expression. Names
1455 that are looked up in this context must be looked up both in the
1456 scope given by OBJECT_TYPE (the type of `x' or `*x') and also in
1457 the context of the containing expression. */
1458 tree object_type;
1459
1460 /* The next parsing context in the stack. */
1461 struct cp_parser_context *next;
1462 } cp_parser_context;
1463
1464 /* Prototypes. */
1465
1466 /* Constructors and destructors. */
1467
1468 static cp_parser_context *cp_parser_context_new
1469 (cp_parser_context *);
1470
1471 /* Class variables. */
1472
1473 static GTY((deletable)) cp_parser_context* cp_parser_context_free_list;
1474
1475 /* The operator-precedence table used by cp_parser_binary_expression.
1476 Transformed into an associative array (binops_by_token) by
1477 cp_parser_new. */
1478
1479 static const cp_parser_binary_operations_map_node binops[] = {
1480 { CPP_DEREF_STAR, MEMBER_REF, PREC_PM_EXPRESSION },
1481 { CPP_DOT_STAR, DOTSTAR_EXPR, PREC_PM_EXPRESSION },
1482
1483 { CPP_MULT, MULT_EXPR, PREC_MULTIPLICATIVE_EXPRESSION },
1484 { CPP_DIV, TRUNC_DIV_EXPR, PREC_MULTIPLICATIVE_EXPRESSION },
1485 { CPP_MOD, TRUNC_MOD_EXPR, PREC_MULTIPLICATIVE_EXPRESSION },
1486
1487 { CPP_PLUS, PLUS_EXPR, PREC_ADDITIVE_EXPRESSION },
1488 { CPP_MINUS, MINUS_EXPR, PREC_ADDITIVE_EXPRESSION },
1489
1490 { CPP_LSHIFT, LSHIFT_EXPR, PREC_SHIFT_EXPRESSION },
1491 { CPP_RSHIFT, RSHIFT_EXPR, PREC_SHIFT_EXPRESSION },
1492
1493 { CPP_LESS, LT_EXPR, PREC_RELATIONAL_EXPRESSION },
1494 { CPP_GREATER, GT_EXPR, PREC_RELATIONAL_EXPRESSION },
1495 { CPP_LESS_EQ, LE_EXPR, PREC_RELATIONAL_EXPRESSION },
1496 { CPP_GREATER_EQ, GE_EXPR, PREC_RELATIONAL_EXPRESSION },
1497
1498 { CPP_EQ_EQ, EQ_EXPR, PREC_EQUALITY_EXPRESSION },
1499 { CPP_NOT_EQ, NE_EXPR, PREC_EQUALITY_EXPRESSION },
1500
1501 { CPP_AND, BIT_AND_EXPR, PREC_AND_EXPRESSION },
1502
1503 { CPP_XOR, BIT_XOR_EXPR, PREC_EXCLUSIVE_OR_EXPRESSION },
1504
1505 { CPP_OR, BIT_IOR_EXPR, PREC_INCLUSIVE_OR_EXPRESSION },
1506
1507 { CPP_AND_AND, TRUTH_ANDIF_EXPR, PREC_LOGICAL_AND_EXPRESSION },
1508
1509 { CPP_OR_OR, TRUTH_ORIF_EXPR, PREC_LOGICAL_OR_EXPRESSION }
1510 };
1511
1512 /* The same as binops, but initialized by cp_parser_new so that
1513 binops_by_token[N].token_type == N. Used in cp_parser_binary_expression
1514 for speed. */
1515 static cp_parser_binary_operations_map_node binops_by_token[N_CP_TTYPES];
1516
1517 /* Constructors and destructors. */
1518
1519 /* Construct a new context. The context below this one on the stack
1520 is given by NEXT. */
1521
1522 static cp_parser_context *
1523 cp_parser_context_new (cp_parser_context* next)
1524 {
1525 cp_parser_context *context;
1526
1527 /* Allocate the storage. */
1528 if (cp_parser_context_free_list != NULL)
1529 {
1530 /* Pull the first entry from the free list. */
1531 context = cp_parser_context_free_list;
1532 cp_parser_context_free_list = context->next;
1533 memset (context, 0, sizeof (*context));
1534 }
1535 else
1536 context = ggc_alloc_cleared_cp_parser_context ();
1537
1538 /* No errors have occurred yet in this context. */
1539 context->status = CP_PARSER_STATUS_KIND_NO_ERROR;
1540 /* If this is not the bottommost context, copy information that we
1541 need from the previous context. */
1542 if (next)
1543 {
1544 /* If, in the NEXT context, we are parsing an `x->' or `x.'
1545 expression, then we are parsing one in this context, too. */
1546 context->object_type = next->object_type;
1547 /* Thread the stack. */
1548 context->next = next;
1549 }
1550
1551 return context;
1552 }
1553
1554 /* An entry in a queue of function arguments that require post-processing. */
1555
1556 typedef struct GTY(()) cp_default_arg_entry_d {
1557 /* The current_class_type when we parsed this arg. */
1558 tree class_type;
1559
1560 /* The function decl itself. */
1561 tree decl;
1562 } cp_default_arg_entry;
1563
1564 DEF_VEC_O(cp_default_arg_entry);
1565 DEF_VEC_ALLOC_O(cp_default_arg_entry,gc);
1566
1567 /* An entry in a stack for member functions of local classes. */
1568
1569 typedef struct GTY(()) cp_unparsed_functions_entry_d {
1570 /* Functions with default arguments that require post-processing.
1571 Functions appear in this list in declaration order. */
1572 VEC(cp_default_arg_entry,gc) *funs_with_default_args;
1573
1574 /* Functions with defintions that require post-processing. Functions
1575 appear in this list in declaration order. */
1576 VEC(tree,gc) *funs_with_definitions;
1577 } cp_unparsed_functions_entry;
1578
1579 DEF_VEC_O(cp_unparsed_functions_entry);
1580 DEF_VEC_ALLOC_O(cp_unparsed_functions_entry,gc);
1581
1582 /* The cp_parser structure represents the C++ parser. */
1583
1584 typedef struct GTY(()) cp_parser {
1585 /* The lexer from which we are obtaining tokens. */
1586 cp_lexer *lexer;
1587
1588 /* The scope in which names should be looked up. If NULL_TREE, then
1589 we look up names in the scope that is currently open in the
1590 source program. If non-NULL, this is either a TYPE or
1591 NAMESPACE_DECL for the scope in which we should look. It can
1592 also be ERROR_MARK, when we've parsed a bogus scope.
1593
1594 This value is not cleared automatically after a name is looked
1595 up, so we must be careful to clear it before starting a new look
1596 up sequence. (If it is not cleared, then `X::Y' followed by `Z'
1597 will look up `Z' in the scope of `X', rather than the current
1598 scope.) Unfortunately, it is difficult to tell when name lookup
1599 is complete, because we sometimes peek at a token, look it up,
1600 and then decide not to consume it. */
1601 tree scope;
1602
1603 /* OBJECT_SCOPE and QUALIFYING_SCOPE give the scopes in which the
1604 last lookup took place. OBJECT_SCOPE is used if an expression
1605 like "x->y" or "x.y" was used; it gives the type of "*x" or "x",
1606 respectively. QUALIFYING_SCOPE is used for an expression of the
1607 form "X::Y"; it refers to X. */
1608 tree object_scope;
1609 tree qualifying_scope;
1610
1611 /* A stack of parsing contexts. All but the bottom entry on the
1612 stack will be tentative contexts.
1613
1614 We parse tentatively in order to determine which construct is in
1615 use in some situations. For example, in order to determine
1616 whether a statement is an expression-statement or a
1617 declaration-statement we parse it tentatively as a
1618 declaration-statement. If that fails, we then reparse the same
1619 token stream as an expression-statement. */
1620 cp_parser_context *context;
1621
1622 /* True if we are parsing GNU C++. If this flag is not set, then
1623 GNU extensions are not recognized. */
1624 bool allow_gnu_extensions_p;
1625
1626 /* TRUE if the `>' token should be interpreted as the greater-than
1627 operator. FALSE if it is the end of a template-id or
1628 template-parameter-list. In C++0x mode, this flag also applies to
1629 `>>' tokens, which are viewed as two consecutive `>' tokens when
1630 this flag is FALSE. */
1631 bool greater_than_is_operator_p;
1632
1633 /* TRUE if default arguments are allowed within a parameter list
1634 that starts at this point. FALSE if only a gnu extension makes
1635 them permissible. */
1636 bool default_arg_ok_p;
1637
1638 /* TRUE if we are parsing an integral constant-expression. See
1639 [expr.const] for a precise definition. */
1640 bool integral_constant_expression_p;
1641
1642 /* TRUE if we are parsing an integral constant-expression -- but a
1643 non-constant expression should be permitted as well. This flag
1644 is used when parsing an array bound so that GNU variable-length
1645 arrays are tolerated. */
1646 bool allow_non_integral_constant_expression_p;
1647
1648 /* TRUE if ALLOW_NON_CONSTANT_EXPRESSION_P is TRUE and something has
1649 been seen that makes the expression non-constant. */
1650 bool non_integral_constant_expression_p;
1651
1652 /* TRUE if local variable names and `this' are forbidden in the
1653 current context. */
1654 bool local_variables_forbidden_p;
1655
1656 /* TRUE if the declaration we are parsing is part of a
1657 linkage-specification of the form `extern string-literal
1658 declaration'. */
1659 bool in_unbraced_linkage_specification_p;
1660
1661 /* TRUE if we are presently parsing a declarator, after the
1662 direct-declarator. */
1663 bool in_declarator_p;
1664
1665 /* TRUE if we are presently parsing a template-argument-list. */
1666 bool in_template_argument_list_p;
1667
1668 /* Set to IN_ITERATION_STMT if parsing an iteration-statement,
1669 to IN_OMP_BLOCK if parsing OpenMP structured block and
1670 IN_OMP_FOR if parsing OpenMP loop. If parsing a switch statement,
1671 this is bitwise ORed with IN_SWITCH_STMT, unless parsing an
1672 iteration-statement, OpenMP block or loop within that switch. */
1673 #define IN_SWITCH_STMT 1
1674 #define IN_ITERATION_STMT 2
1675 #define IN_OMP_BLOCK 4
1676 #define IN_OMP_FOR 8
1677 #define IN_IF_STMT 16
1678 unsigned char in_statement;
1679
1680 /* TRUE if we are presently parsing the body of a switch statement.
1681 Note that this doesn't quite overlap with in_statement above.
1682 The difference relates to giving the right sets of error messages:
1683 "case not in switch" vs "break statement used with OpenMP...". */
1684 bool in_switch_statement_p;
1685
1686 /* TRUE if we are parsing a type-id in an expression context. In
1687 such a situation, both "type (expr)" and "type (type)" are valid
1688 alternatives. */
1689 bool in_type_id_in_expr_p;
1690
1691 /* TRUE if we are currently in a header file where declarations are
1692 implicitly extern "C". */
1693 bool implicit_extern_c;
1694
1695 /* TRUE if strings in expressions should be translated to the execution
1696 character set. */
1697 bool translate_strings_p;
1698
1699 /* TRUE if we are presently parsing the body of a function, but not
1700 a local class. */
1701 bool in_function_body;
1702
1703 /* TRUE if we can auto-correct a colon to a scope operator. */
1704 bool colon_corrects_to_scope_p;
1705
1706 /* If non-NULL, then we are parsing a construct where new type
1707 definitions are not permitted. The string stored here will be
1708 issued as an error message if a type is defined. */
1709 const char *type_definition_forbidden_message;
1710
1711 /* A stack used for member functions of local classes. The lists
1712 contained in an individual entry can only be processed once the
1713 outermost class being defined is complete. */
1714 VEC(cp_unparsed_functions_entry,gc) *unparsed_queues;
1715
1716 /* The number of classes whose definitions are currently in
1717 progress. */
1718 unsigned num_classes_being_defined;
1719
1720 /* The number of template parameter lists that apply directly to the
1721 current declaration. */
1722 unsigned num_template_parameter_lists;
1723 } cp_parser;
1724
1725 /* Managing the unparsed function queues. */
1726
1727 #define unparsed_funs_with_default_args \
1728 VEC_last (cp_unparsed_functions_entry, parser->unparsed_queues)->funs_with_default_args
1729 #define unparsed_funs_with_definitions \
1730 VEC_last (cp_unparsed_functions_entry, parser->unparsed_queues)->funs_with_definitions
1731
1732 static void
1733 push_unparsed_function_queues (cp_parser *parser)
1734 {
1735 VEC_safe_push (cp_unparsed_functions_entry, gc,
1736 parser->unparsed_queues, NULL);
1737 unparsed_funs_with_default_args = NULL;
1738 unparsed_funs_with_definitions = make_tree_vector ();
1739 }
1740
1741 static void
1742 pop_unparsed_function_queues (cp_parser *parser)
1743 {
1744 release_tree_vector (unparsed_funs_with_definitions);
1745 VEC_pop (cp_unparsed_functions_entry, parser->unparsed_queues);
1746 }
1747
1748 /* Prototypes. */
1749
1750 /* Constructors and destructors. */
1751
1752 static cp_parser *cp_parser_new
1753 (void);
1754
1755 /* Routines to parse various constructs.
1756
1757 Those that return `tree' will return the error_mark_node (rather
1758 than NULL_TREE) if a parse error occurs, unless otherwise noted.
1759 Sometimes, they will return an ordinary node if error-recovery was
1760 attempted, even though a parse error occurred. So, to check
1761 whether or not a parse error occurred, you should always use
1762 cp_parser_error_occurred. If the construct is optional (indicated
1763 either by an `_opt' in the name of the function that does the
1764 parsing or via a FLAGS parameter), then NULL_TREE is returned if
1765 the construct is not present. */
1766
1767 /* Lexical conventions [gram.lex] */
1768
1769 static tree cp_parser_identifier
1770 (cp_parser *);
1771 static tree cp_parser_string_literal
1772 (cp_parser *, bool, bool);
1773
1774 /* Basic concepts [gram.basic] */
1775
1776 static bool cp_parser_translation_unit
1777 (cp_parser *);
1778
1779 /* Expressions [gram.expr] */
1780
1781 static tree cp_parser_primary_expression
1782 (cp_parser *, bool, bool, bool, cp_id_kind *);
1783 static tree cp_parser_id_expression
1784 (cp_parser *, bool, bool, bool *, bool, bool);
1785 static tree cp_parser_unqualified_id
1786 (cp_parser *, bool, bool, bool, bool);
1787 static tree cp_parser_nested_name_specifier_opt
1788 (cp_parser *, bool, bool, bool, bool);
1789 static tree cp_parser_nested_name_specifier
1790 (cp_parser *, bool, bool, bool, bool);
1791 static tree cp_parser_qualifying_entity
1792 (cp_parser *, bool, bool, bool, bool, bool);
1793 static tree cp_parser_postfix_expression
1794 (cp_parser *, bool, bool, bool, cp_id_kind *);
1795 static tree cp_parser_postfix_open_square_expression
1796 (cp_parser *, tree, bool);
1797 static tree cp_parser_postfix_dot_deref_expression
1798 (cp_parser *, enum cpp_ttype, tree, bool, cp_id_kind *, location_t);
1799 static VEC(tree,gc) *cp_parser_parenthesized_expression_list
1800 (cp_parser *, int, bool, bool, bool *);
1801 /* Values for the second parameter of cp_parser_parenthesized_expression_list. */
1802 enum { non_attr = 0, normal_attr = 1, id_attr = 2 };
1803 static void cp_parser_pseudo_destructor_name
1804 (cp_parser *, tree *, tree *);
1805 static tree cp_parser_unary_expression
1806 (cp_parser *, bool, bool, cp_id_kind *);
1807 static enum tree_code cp_parser_unary_operator
1808 (cp_token *);
1809 static tree cp_parser_new_expression
1810 (cp_parser *);
1811 static VEC(tree,gc) *cp_parser_new_placement
1812 (cp_parser *);
1813 static tree cp_parser_new_type_id
1814 (cp_parser *, tree *);
1815 static cp_declarator *cp_parser_new_declarator_opt
1816 (cp_parser *);
1817 static cp_declarator *cp_parser_direct_new_declarator
1818 (cp_parser *);
1819 static VEC(tree,gc) *cp_parser_new_initializer
1820 (cp_parser *);
1821 static tree cp_parser_delete_expression
1822 (cp_parser *);
1823 static tree cp_parser_cast_expression
1824 (cp_parser *, bool, bool, cp_id_kind *);
1825 static tree cp_parser_binary_expression
1826 (cp_parser *, bool, bool, enum cp_parser_prec, cp_id_kind *);
1827 static tree cp_parser_question_colon_clause
1828 (cp_parser *, tree);
1829 static tree cp_parser_assignment_expression
1830 (cp_parser *, bool, cp_id_kind *);
1831 static enum tree_code cp_parser_assignment_operator_opt
1832 (cp_parser *);
1833 static tree cp_parser_expression
1834 (cp_parser *, bool, cp_id_kind *);
1835 static tree cp_parser_constant_expression
1836 (cp_parser *, bool, bool *);
1837 static tree cp_parser_builtin_offsetof
1838 (cp_parser *);
1839 static tree cp_parser_lambda_expression
1840 (cp_parser *);
1841 static void cp_parser_lambda_introducer
1842 (cp_parser *, tree);
1843 static void cp_parser_lambda_declarator_opt
1844 (cp_parser *, tree);
1845 static void cp_parser_lambda_body
1846 (cp_parser *, tree);
1847
1848 /* Statements [gram.stmt.stmt] */
1849
1850 static void cp_parser_statement
1851 (cp_parser *, tree, bool, bool *);
1852 static void cp_parser_label_for_labeled_statement
1853 (cp_parser *);
1854 static tree cp_parser_expression_statement
1855 (cp_parser *, tree);
1856 static tree cp_parser_compound_statement
1857 (cp_parser *, tree, bool);
1858 static void cp_parser_statement_seq_opt
1859 (cp_parser *, tree);
1860 static tree cp_parser_selection_statement
1861 (cp_parser *, bool *);
1862 static tree cp_parser_condition
1863 (cp_parser *);
1864 static tree cp_parser_iteration_statement
1865 (cp_parser *);
1866 static bool cp_parser_for_init_statement
1867 (cp_parser *, tree *decl);
1868 static tree cp_parser_for
1869 (cp_parser *);
1870 static tree cp_parser_c_for
1871 (cp_parser *, tree, tree);
1872 static tree cp_parser_range_for
1873 (cp_parser *, tree, tree, tree);
1874 static tree cp_parser_jump_statement
1875 (cp_parser *);
1876 static void cp_parser_declaration_statement
1877 (cp_parser *);
1878
1879 static tree cp_parser_implicitly_scoped_statement
1880 (cp_parser *, bool *);
1881 static void cp_parser_already_scoped_statement
1882 (cp_parser *);
1883
1884 /* Declarations [gram.dcl.dcl] */
1885
1886 static void cp_parser_declaration_seq_opt
1887 (cp_parser *);
1888 static void cp_parser_declaration
1889 (cp_parser *);
1890 static void cp_parser_block_declaration
1891 (cp_parser *, bool);
1892 static void cp_parser_simple_declaration
1893 (cp_parser *, bool, tree *);
1894 static void cp_parser_decl_specifier_seq
1895 (cp_parser *, cp_parser_flags, cp_decl_specifier_seq *, int *);
1896 static tree cp_parser_storage_class_specifier_opt
1897 (cp_parser *);
1898 static tree cp_parser_function_specifier_opt
1899 (cp_parser *, cp_decl_specifier_seq *);
1900 static tree cp_parser_type_specifier
1901 (cp_parser *, cp_parser_flags, cp_decl_specifier_seq *, bool,
1902 int *, bool *);
1903 static tree cp_parser_simple_type_specifier
1904 (cp_parser *, cp_decl_specifier_seq *, cp_parser_flags);
1905 static tree cp_parser_type_name
1906 (cp_parser *);
1907 static tree cp_parser_nonclass_name
1908 (cp_parser* parser);
1909 static tree cp_parser_elaborated_type_specifier
1910 (cp_parser *, bool, bool);
1911 static tree cp_parser_enum_specifier
1912 (cp_parser *);
1913 static void cp_parser_enumerator_list
1914 (cp_parser *, tree);
1915 static void cp_parser_enumerator_definition
1916 (cp_parser *, tree);
1917 static tree cp_parser_namespace_name
1918 (cp_parser *);
1919 static void cp_parser_namespace_definition
1920 (cp_parser *);
1921 static void cp_parser_namespace_body
1922 (cp_parser *);
1923 static tree cp_parser_qualified_namespace_specifier
1924 (cp_parser *);
1925 static void cp_parser_namespace_alias_definition
1926 (cp_parser *);
1927 static bool cp_parser_using_declaration
1928 (cp_parser *, bool);
1929 static void cp_parser_using_directive
1930 (cp_parser *);
1931 static void cp_parser_asm_definition
1932 (cp_parser *);
1933 static void cp_parser_linkage_specification
1934 (cp_parser *);
1935 static void cp_parser_static_assert
1936 (cp_parser *, bool);
1937 static tree cp_parser_decltype
1938 (cp_parser *);
1939
1940 /* Declarators [gram.dcl.decl] */
1941
1942 static tree cp_parser_init_declarator
1943 (cp_parser *, cp_decl_specifier_seq *, VEC (deferred_access_check,gc)*, bool, bool, int, bool *, tree *);
1944 static cp_declarator *cp_parser_declarator
1945 (cp_parser *, cp_parser_declarator_kind, int *, bool *, bool);
1946 static cp_declarator *cp_parser_direct_declarator
1947 (cp_parser *, cp_parser_declarator_kind, int *, bool);
1948 static enum tree_code cp_parser_ptr_operator
1949 (cp_parser *, tree *, cp_cv_quals *);
1950 static cp_cv_quals cp_parser_cv_qualifier_seq_opt
1951 (cp_parser *);
1952 static tree cp_parser_late_return_type_opt
1953 (cp_parser *);
1954 static tree cp_parser_declarator_id
1955 (cp_parser *, bool);
1956 static tree cp_parser_type_id
1957 (cp_parser *);
1958 static tree cp_parser_template_type_arg
1959 (cp_parser *);
1960 static tree cp_parser_trailing_type_id (cp_parser *);
1961 static tree cp_parser_type_id_1
1962 (cp_parser *, bool, bool);
1963 static void cp_parser_type_specifier_seq
1964 (cp_parser *, bool, bool, cp_decl_specifier_seq *);
1965 static tree cp_parser_parameter_declaration_clause
1966 (cp_parser *);
1967 static tree cp_parser_parameter_declaration_list
1968 (cp_parser *, bool *);
1969 static cp_parameter_declarator *cp_parser_parameter_declaration
1970 (cp_parser *, bool, bool *);
1971 static tree cp_parser_default_argument
1972 (cp_parser *, bool);
1973 static void cp_parser_function_body
1974 (cp_parser *);
1975 static tree cp_parser_initializer
1976 (cp_parser *, bool *, bool *);
1977 static tree cp_parser_initializer_clause
1978 (cp_parser *, bool *);
1979 static tree cp_parser_braced_list
1980 (cp_parser*, bool*);
1981 static VEC(constructor_elt,gc) *cp_parser_initializer_list
1982 (cp_parser *, bool *);
1983
1984 static bool cp_parser_ctor_initializer_opt_and_function_body
1985 (cp_parser *);
1986
1987 /* Classes [gram.class] */
1988
1989 static tree cp_parser_class_name
1990 (cp_parser *, bool, bool, enum tag_types, bool, bool, bool);
1991 static tree cp_parser_class_specifier
1992 (cp_parser *);
1993 static tree cp_parser_class_head
1994 (cp_parser *, bool *, tree *, tree *);
1995 static enum tag_types cp_parser_class_key
1996 (cp_parser *);
1997 static void cp_parser_member_specification_opt
1998 (cp_parser *);
1999 static void cp_parser_member_declaration
2000 (cp_parser *);
2001 static tree cp_parser_pure_specifier
2002 (cp_parser *);
2003 static tree cp_parser_constant_initializer
2004 (cp_parser *);
2005
2006 /* Derived classes [gram.class.derived] */
2007
2008 static tree cp_parser_base_clause
2009 (cp_parser *);
2010 static tree cp_parser_base_specifier
2011 (cp_parser *);
2012
2013 /* Special member functions [gram.special] */
2014
2015 static tree cp_parser_conversion_function_id
2016 (cp_parser *);
2017 static tree cp_parser_conversion_type_id
2018 (cp_parser *);
2019 static cp_declarator *cp_parser_conversion_declarator_opt
2020 (cp_parser *);
2021 static bool cp_parser_ctor_initializer_opt
2022 (cp_parser *);
2023 static void cp_parser_mem_initializer_list
2024 (cp_parser *);
2025 static tree cp_parser_mem_initializer
2026 (cp_parser *);
2027 static tree cp_parser_mem_initializer_id
2028 (cp_parser *);
2029
2030 /* Overloading [gram.over] */
2031
2032 static tree cp_parser_operator_function_id
2033 (cp_parser *);
2034 static tree cp_parser_operator
2035 (cp_parser *);
2036
2037 /* Templates [gram.temp] */
2038
2039 static void cp_parser_template_declaration
2040 (cp_parser *, bool);
2041 static tree cp_parser_template_parameter_list
2042 (cp_parser *);
2043 static tree cp_parser_template_parameter
2044 (cp_parser *, bool *, bool *);
2045 static tree cp_parser_type_parameter
2046 (cp_parser *, bool *);
2047 static tree cp_parser_template_id
2048 (cp_parser *, bool, bool, bool);
2049 static tree cp_parser_template_name
2050 (cp_parser *, bool, bool, bool, bool *);
2051 static tree cp_parser_template_argument_list
2052 (cp_parser *);
2053 static tree cp_parser_template_argument
2054 (cp_parser *);
2055 static void cp_parser_explicit_instantiation
2056 (cp_parser *);
2057 static void cp_parser_explicit_specialization
2058 (cp_parser *);
2059
2060 /* Exception handling [gram.exception] */
2061
2062 static tree cp_parser_try_block
2063 (cp_parser *);
2064 static bool cp_parser_function_try_block
2065 (cp_parser *);
2066 static void cp_parser_handler_seq
2067 (cp_parser *);
2068 static void cp_parser_handler
2069 (cp_parser *);
2070 static tree cp_parser_exception_declaration
2071 (cp_parser *);
2072 static tree cp_parser_throw_expression
2073 (cp_parser *);
2074 static tree cp_parser_exception_specification_opt
2075 (cp_parser *);
2076 static tree cp_parser_type_id_list
2077 (cp_parser *);
2078
2079 /* GNU Extensions */
2080
2081 static tree cp_parser_asm_specification_opt
2082 (cp_parser *);
2083 static tree cp_parser_asm_operand_list
2084 (cp_parser *);
2085 static tree cp_parser_asm_clobber_list
2086 (cp_parser *);
2087 static tree cp_parser_asm_label_list
2088 (cp_parser *);
2089 static tree cp_parser_attributes_opt
2090 (cp_parser *);
2091 static tree cp_parser_attribute_list
2092 (cp_parser *);
2093 static bool cp_parser_extension_opt
2094 (cp_parser *, int *);
2095 static void cp_parser_label_declaration
2096 (cp_parser *);
2097
2098 enum pragma_context { pragma_external, pragma_stmt, pragma_compound };
2099 static bool cp_parser_pragma
2100 (cp_parser *, enum pragma_context);
2101
2102 /* Objective-C++ Productions */
2103
2104 static tree cp_parser_objc_message_receiver
2105 (cp_parser *);
2106 static tree cp_parser_objc_message_args
2107 (cp_parser *);
2108 static tree cp_parser_objc_message_expression
2109 (cp_parser *);
2110 static tree cp_parser_objc_encode_expression
2111 (cp_parser *);
2112 static tree cp_parser_objc_defs_expression
2113 (cp_parser *);
2114 static tree cp_parser_objc_protocol_expression
2115 (cp_parser *);
2116 static tree cp_parser_objc_selector_expression
2117 (cp_parser *);
2118 static tree cp_parser_objc_expression
2119 (cp_parser *);
2120 static bool cp_parser_objc_selector_p
2121 (enum cpp_ttype);
2122 static tree cp_parser_objc_selector
2123 (cp_parser *);
2124 static tree cp_parser_objc_protocol_refs_opt
2125 (cp_parser *);
2126 static void cp_parser_objc_declaration
2127 (cp_parser *, tree);
2128 static tree cp_parser_objc_statement
2129 (cp_parser *);
2130 static bool cp_parser_objc_valid_prefix_attributes
2131 (cp_parser *, tree *);
2132 static void cp_parser_objc_at_property_declaration
2133 (cp_parser *) ;
2134 static void cp_parser_objc_at_synthesize_declaration
2135 (cp_parser *) ;
2136 static void cp_parser_objc_at_dynamic_declaration
2137 (cp_parser *) ;
2138 static tree cp_parser_objc_struct_declaration
2139 (cp_parser *) ;
2140
2141 /* Utility Routines */
2142
2143 static tree cp_parser_lookup_name
2144 (cp_parser *, tree, enum tag_types, bool, bool, bool, tree *, location_t);
2145 static tree cp_parser_lookup_name_simple
2146 (cp_parser *, tree, location_t);
2147 static tree cp_parser_maybe_treat_template_as_class
2148 (tree, bool);
2149 static bool cp_parser_check_declarator_template_parameters
2150 (cp_parser *, cp_declarator *, location_t);
2151 static bool cp_parser_check_template_parameters
2152 (cp_parser *, unsigned, location_t, cp_declarator *);
2153 static tree cp_parser_simple_cast_expression
2154 (cp_parser *);
2155 static tree cp_parser_global_scope_opt
2156 (cp_parser *, bool);
2157 static bool cp_parser_constructor_declarator_p
2158 (cp_parser *, bool);
2159 static tree cp_parser_function_definition_from_specifiers_and_declarator
2160 (cp_parser *, cp_decl_specifier_seq *, tree, const cp_declarator *);
2161 static tree cp_parser_function_definition_after_declarator
2162 (cp_parser *, bool);
2163 static void cp_parser_template_declaration_after_export
2164 (cp_parser *, bool);
2165 static void cp_parser_perform_template_parameter_access_checks
2166 (VEC (deferred_access_check,gc)*);
2167 static tree cp_parser_single_declaration
2168 (cp_parser *, VEC (deferred_access_check,gc)*, bool, bool, bool *);
2169 static tree cp_parser_functional_cast
2170 (cp_parser *, tree);
2171 static tree cp_parser_save_member_function_body
2172 (cp_parser *, cp_decl_specifier_seq *, cp_declarator *, tree);
2173 static tree cp_parser_enclosed_template_argument_list
2174 (cp_parser *);
2175 static void cp_parser_save_default_args
2176 (cp_parser *, tree);
2177 static void cp_parser_late_parsing_for_member
2178 (cp_parser *, tree);
2179 static void cp_parser_late_parsing_default_args
2180 (cp_parser *, tree);
2181 static tree cp_parser_sizeof_operand
2182 (cp_parser *, enum rid);
2183 static tree cp_parser_trait_expr
2184 (cp_parser *, enum rid);
2185 static bool cp_parser_declares_only_class_p
2186 (cp_parser *);
2187 static void cp_parser_set_storage_class
2188 (cp_parser *, cp_decl_specifier_seq *, enum rid, location_t);
2189 static void cp_parser_set_decl_spec_type
2190 (cp_decl_specifier_seq *, tree, location_t, bool);
2191 static bool cp_parser_friend_p
2192 (const cp_decl_specifier_seq *);
2193 static void cp_parser_required_error
2194 (cp_parser *, required_token, bool);
2195 static cp_token *cp_parser_require
2196 (cp_parser *, enum cpp_ttype, required_token);
2197 static cp_token *cp_parser_require_keyword
2198 (cp_parser *, enum rid, required_token);
2199 static bool cp_parser_token_starts_function_definition_p
2200 (cp_token *);
2201 static bool cp_parser_next_token_starts_class_definition_p
2202 (cp_parser *);
2203 static bool cp_parser_next_token_ends_template_argument_p
2204 (cp_parser *);
2205 static bool cp_parser_nth_token_starts_template_argument_list_p
2206 (cp_parser *, size_t);
2207 static enum tag_types cp_parser_token_is_class_key
2208 (cp_token *);
2209 static void cp_parser_check_class_key
2210 (enum tag_types, tree type);
2211 static void cp_parser_check_access_in_redeclaration
2212 (tree type, location_t location);
2213 static bool cp_parser_optional_template_keyword
2214 (cp_parser *);
2215 static void cp_parser_pre_parsed_nested_name_specifier
2216 (cp_parser *);
2217 static bool cp_parser_cache_group
2218 (cp_parser *, enum cpp_ttype, unsigned);
2219 static void cp_parser_parse_tentatively
2220 (cp_parser *);
2221 static void cp_parser_commit_to_tentative_parse
2222 (cp_parser *);
2223 static void cp_parser_abort_tentative_parse
2224 (cp_parser *);
2225 static bool cp_parser_parse_definitely
2226 (cp_parser *);
2227 static inline bool cp_parser_parsing_tentatively
2228 (cp_parser *);
2229 static bool cp_parser_uncommitted_to_tentative_parse_p
2230 (cp_parser *);
2231 static void cp_parser_error
2232 (cp_parser *, const char *);
2233 static void cp_parser_name_lookup_error
2234 (cp_parser *, tree, tree, name_lookup_error, location_t);
2235 static bool cp_parser_simulate_error
2236 (cp_parser *);
2237 static bool cp_parser_check_type_definition
2238 (cp_parser *);
2239 static void cp_parser_check_for_definition_in_return_type
2240 (cp_declarator *, tree, location_t type_location);
2241 static void cp_parser_check_for_invalid_template_id
2242 (cp_parser *, tree, location_t location);
2243 static bool cp_parser_non_integral_constant_expression
2244 (cp_parser *, non_integral_constant);
2245 static void cp_parser_diagnose_invalid_type_name
2246 (cp_parser *, tree, tree, location_t);
2247 static bool cp_parser_parse_and_diagnose_invalid_type_name
2248 (cp_parser *);
2249 static int cp_parser_skip_to_closing_parenthesis
2250 (cp_parser *, bool, bool, bool);
2251 static void cp_parser_skip_to_end_of_statement
2252 (cp_parser *);
2253 static void cp_parser_consume_semicolon_at_end_of_statement
2254 (cp_parser *);
2255 static void cp_parser_skip_to_end_of_block_or_statement
2256 (cp_parser *);
2257 static bool cp_parser_skip_to_closing_brace
2258 (cp_parser *);
2259 static void cp_parser_skip_to_end_of_template_parameter_list
2260 (cp_parser *);
2261 static void cp_parser_skip_to_pragma_eol
2262 (cp_parser*, cp_token *);
2263 static bool cp_parser_error_occurred
2264 (cp_parser *);
2265 static bool cp_parser_allow_gnu_extensions_p
2266 (cp_parser *);
2267 static bool cp_parser_is_string_literal
2268 (cp_token *);
2269 static bool cp_parser_is_keyword
2270 (cp_token *, enum rid);
2271 static tree cp_parser_make_typename_type
2272 (cp_parser *, tree, tree, location_t location);
2273 static cp_declarator * cp_parser_make_indirect_declarator
2274 (enum tree_code, tree, cp_cv_quals, cp_declarator *);
2275
2276 /* Returns nonzero if we are parsing tentatively. */
2277
2278 static inline bool
2279 cp_parser_parsing_tentatively (cp_parser* parser)
2280 {
2281 return parser->context->next != NULL;
2282 }
2283
2284 /* Returns nonzero if TOKEN is a string literal. */
2285
2286 static bool
2287 cp_parser_is_string_literal (cp_token* token)
2288 {
2289 return (token->type == CPP_STRING ||
2290 token->type == CPP_STRING16 ||
2291 token->type == CPP_STRING32 ||
2292 token->type == CPP_WSTRING ||
2293 token->type == CPP_UTF8STRING);
2294 }
2295
2296 /* Returns nonzero if TOKEN is the indicated KEYWORD. */
2297
2298 static bool
2299 cp_parser_is_keyword (cp_token* token, enum rid keyword)
2300 {
2301 return token->keyword == keyword;
2302 }
2303
2304 /* If not parsing tentatively, issue a diagnostic of the form
2305 FILE:LINE: MESSAGE before TOKEN
2306 where TOKEN is the next token in the input stream. MESSAGE
2307 (specified by the caller) is usually of the form "expected
2308 OTHER-TOKEN". */
2309
2310 static void
2311 cp_parser_error (cp_parser* parser, const char* gmsgid)
2312 {
2313 if (!cp_parser_simulate_error (parser))
2314 {
2315 cp_token *token = cp_lexer_peek_token (parser->lexer);
2316 /* This diagnostic makes more sense if it is tagged to the line
2317 of the token we just peeked at. */
2318 cp_lexer_set_source_position_from_token (token);
2319
2320 if (token->type == CPP_PRAGMA)
2321 {
2322 error_at (token->location,
2323 "%<#pragma%> is not allowed here");
2324 cp_parser_skip_to_pragma_eol (parser, token);
2325 return;
2326 }
2327
2328 c_parse_error (gmsgid,
2329 /* Because c_parser_error does not understand
2330 CPP_KEYWORD, keywords are treated like
2331 identifiers. */
2332 (token->type == CPP_KEYWORD ? CPP_NAME : token->type),
2333 token->u.value, token->flags);
2334 }
2335 }
2336
2337 /* Issue an error about name-lookup failing. NAME is the
2338 IDENTIFIER_NODE DECL is the result of
2339 the lookup (as returned from cp_parser_lookup_name). DESIRED is
2340 the thing that we hoped to find. */
2341
2342 static void
2343 cp_parser_name_lookup_error (cp_parser* parser,
2344 tree name,
2345 tree decl,
2346 name_lookup_error desired,
2347 location_t location)
2348 {
2349 /* If name lookup completely failed, tell the user that NAME was not
2350 declared. */
2351 if (decl == error_mark_node)
2352 {
2353 if (parser->scope && parser->scope != global_namespace)
2354 error_at (location, "%<%E::%E%> has not been declared",
2355 parser->scope, name);
2356 else if (parser->scope == global_namespace)
2357 error_at (location, "%<::%E%> has not been declared", name);
2358 else if (parser->object_scope
2359 && !CLASS_TYPE_P (parser->object_scope))
2360 error_at (location, "request for member %qE in non-class type %qT",
2361 name, parser->object_scope);
2362 else if (parser->object_scope)
2363 error_at (location, "%<%T::%E%> has not been declared",
2364 parser->object_scope, name);
2365 else
2366 error_at (location, "%qE has not been declared", name);
2367 }
2368 else if (parser->scope && parser->scope != global_namespace)
2369 {
2370 switch (desired)
2371 {
2372 case NLE_TYPE:
2373 error_at (location, "%<%E::%E%> is not a type",
2374 parser->scope, name);
2375 break;
2376 case NLE_CXX98:
2377 error_at (location, "%<%E::%E%> is not a class or namespace",
2378 parser->scope, name);
2379 break;
2380 case NLE_NOT_CXX98:
2381 error_at (location,
2382 "%<%E::%E%> is not a class, namespace, or enumeration",
2383 parser->scope, name);
2384 break;
2385 default:
2386 gcc_unreachable ();
2387
2388 }
2389 }
2390 else if (parser->scope == global_namespace)
2391 {
2392 switch (desired)
2393 {
2394 case NLE_TYPE:
2395 error_at (location, "%<::%E%> is not a type", name);
2396 break;
2397 case NLE_CXX98:
2398 error_at (location, "%<::%E%> is not a class or namespace", name);
2399 break;
2400 case NLE_NOT_CXX98:
2401 error_at (location,
2402 "%<::%E%> is not a class, namespace, or enumeration",
2403 name);
2404 break;
2405 default:
2406 gcc_unreachable ();
2407 }
2408 }
2409 else
2410 {
2411 switch (desired)
2412 {
2413 case NLE_TYPE:
2414 error_at (location, "%qE is not a type", name);
2415 break;
2416 case NLE_CXX98:
2417 error_at (location, "%qE is not a class or namespace", name);
2418 break;
2419 case NLE_NOT_CXX98:
2420 error_at (location,
2421 "%qE is not a class, namespace, or enumeration", name);
2422 break;
2423 default:
2424 gcc_unreachable ();
2425 }
2426 }
2427 }
2428
2429 /* If we are parsing tentatively, remember that an error has occurred
2430 during this tentative parse. Returns true if the error was
2431 simulated; false if a message should be issued by the caller. */
2432
2433 static bool
2434 cp_parser_simulate_error (cp_parser* parser)
2435 {
2436 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
2437 {
2438 parser->context->status = CP_PARSER_STATUS_KIND_ERROR;
2439 return true;
2440 }
2441 return false;
2442 }
2443
2444 /* Check for repeated decl-specifiers. */
2445
2446 static void
2447 cp_parser_check_decl_spec (cp_decl_specifier_seq *decl_specs,
2448 location_t location)
2449 {
2450 int ds;
2451
2452 for (ds = ds_first; ds != ds_last; ++ds)
2453 {
2454 unsigned count = decl_specs->specs[ds];
2455 if (count < 2)
2456 continue;
2457 /* The "long" specifier is a special case because of "long long". */
2458 if (ds == ds_long)
2459 {
2460 if (count > 2)
2461 error_at (location, "%<long long long%> is too long for GCC");
2462 else
2463 pedwarn_cxx98 (location, OPT_Wlong_long,
2464 "ISO C++ 1998 does not support %<long long%>");
2465 }
2466 else if (count > 1)
2467 {
2468 static const char *const decl_spec_names[] = {
2469 "signed",
2470 "unsigned",
2471 "short",
2472 "long",
2473 "const",
2474 "volatile",
2475 "restrict",
2476 "inline",
2477 "virtual",
2478 "explicit",
2479 "friend",
2480 "typedef",
2481 "constexpr",
2482 "__complex",
2483 "__thread"
2484 };
2485 error_at (location, "duplicate %qs", decl_spec_names[ds]);
2486 }
2487 }
2488 }
2489
2490 /* This function is called when a type is defined. If type
2491 definitions are forbidden at this point, an error message is
2492 issued. */
2493
2494 static bool
2495 cp_parser_check_type_definition (cp_parser* parser)
2496 {
2497 /* If types are forbidden here, issue a message. */
2498 if (parser->type_definition_forbidden_message)
2499 {
2500 /* Don't use `%s' to print the string, because quotations (`%<', `%>')
2501 in the message need to be interpreted. */
2502 error (parser->type_definition_forbidden_message);
2503 return false;
2504 }
2505 return true;
2506 }
2507
2508 /* This function is called when the DECLARATOR is processed. The TYPE
2509 was a type defined in the decl-specifiers. If it is invalid to
2510 define a type in the decl-specifiers for DECLARATOR, an error is
2511 issued. TYPE_LOCATION is the location of TYPE and is used
2512 for error reporting. */
2513
2514 static void
2515 cp_parser_check_for_definition_in_return_type (cp_declarator *declarator,
2516 tree type, location_t type_location)
2517 {
2518 /* [dcl.fct] forbids type definitions in return types.
2519 Unfortunately, it's not easy to know whether or not we are
2520 processing a return type until after the fact. */
2521 while (declarator
2522 && (declarator->kind == cdk_pointer
2523 || declarator->kind == cdk_reference
2524 || declarator->kind == cdk_ptrmem))
2525 declarator = declarator->declarator;
2526 if (declarator
2527 && declarator->kind == cdk_function)
2528 {
2529 error_at (type_location,
2530 "new types may not be defined in a return type");
2531 inform (type_location,
2532 "(perhaps a semicolon is missing after the definition of %qT)",
2533 type);
2534 }
2535 }
2536
2537 /* A type-specifier (TYPE) has been parsed which cannot be followed by
2538 "<" in any valid C++ program. If the next token is indeed "<",
2539 issue a message warning the user about what appears to be an
2540 invalid attempt to form a template-id. LOCATION is the location
2541 of the type-specifier (TYPE) */
2542
2543 static void
2544 cp_parser_check_for_invalid_template_id (cp_parser* parser,
2545 tree type, location_t location)
2546 {
2547 cp_token_position start = 0;
2548
2549 if (cp_lexer_next_token_is (parser->lexer, CPP_LESS))
2550 {
2551 if (TYPE_P (type))
2552 error_at (location, "%qT is not a template", type);
2553 else if (TREE_CODE (type) == IDENTIFIER_NODE)
2554 error_at (location, "%qE is not a template", type);
2555 else
2556 error_at (location, "invalid template-id");
2557 /* Remember the location of the invalid "<". */
2558 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
2559 start = cp_lexer_token_position (parser->lexer, true);
2560 /* Consume the "<". */
2561 cp_lexer_consume_token (parser->lexer);
2562 /* Parse the template arguments. */
2563 cp_parser_enclosed_template_argument_list (parser);
2564 /* Permanently remove the invalid template arguments so that
2565 this error message is not issued again. */
2566 if (start)
2567 cp_lexer_purge_tokens_after (parser->lexer, start);
2568 }
2569 }
2570
2571 /* If parsing an integral constant-expression, issue an error message
2572 about the fact that THING appeared and return true. Otherwise,
2573 return false. In either case, set
2574 PARSER->NON_INTEGRAL_CONSTANT_EXPRESSION_P. */
2575
2576 static bool
2577 cp_parser_non_integral_constant_expression (cp_parser *parser,
2578 non_integral_constant thing)
2579 {
2580 parser->non_integral_constant_expression_p = true;
2581 if (parser->integral_constant_expression_p)
2582 {
2583 if (!parser->allow_non_integral_constant_expression_p)
2584 {
2585 const char *msg = NULL;
2586 switch (thing)
2587 {
2588 case NIC_FLOAT:
2589 error ("floating-point literal "
2590 "cannot appear in a constant-expression");
2591 return true;
2592 case NIC_CAST:
2593 error ("a cast to a type other than an integral or "
2594 "enumeration type cannot appear in a "
2595 "constant-expression");
2596 return true;
2597 case NIC_TYPEID:
2598 error ("%<typeid%> operator "
2599 "cannot appear in a constant-expression");
2600 return true;
2601 case NIC_NCC:
2602 error ("non-constant compound literals "
2603 "cannot appear in a constant-expression");
2604 return true;
2605 case NIC_FUNC_CALL:
2606 error ("a function call "
2607 "cannot appear in a constant-expression");
2608 return true;
2609 case NIC_INC:
2610 error ("an increment "
2611 "cannot appear in a constant-expression");
2612 return true;
2613 case NIC_DEC:
2614 error ("an decrement "
2615 "cannot appear in a constant-expression");
2616 return true;
2617 case NIC_ARRAY_REF:
2618 error ("an array reference "
2619 "cannot appear in a constant-expression");
2620 return true;
2621 case NIC_ADDR_LABEL:
2622 error ("the address of a label "
2623 "cannot appear in a constant-expression");
2624 return true;
2625 case NIC_OVERLOADED:
2626 error ("calls to overloaded operators "
2627 "cannot appear in a constant-expression");
2628 return true;
2629 case NIC_ASSIGNMENT:
2630 error ("an assignment cannot appear in a constant-expression");
2631 return true;
2632 case NIC_COMMA:
2633 error ("a comma operator "
2634 "cannot appear in a constant-expression");
2635 return true;
2636 case NIC_CONSTRUCTOR:
2637 error ("a call to a constructor "
2638 "cannot appear in a constant-expression");
2639 return true;
2640 case NIC_THIS:
2641 msg = "this";
2642 break;
2643 case NIC_FUNC_NAME:
2644 msg = "__FUNCTION__";
2645 break;
2646 case NIC_PRETTY_FUNC:
2647 msg = "__PRETTY_FUNCTION__";
2648 break;
2649 case NIC_C99_FUNC:
2650 msg = "__func__";
2651 break;
2652 case NIC_VA_ARG:
2653 msg = "va_arg";
2654 break;
2655 case NIC_ARROW:
2656 msg = "->";
2657 break;
2658 case NIC_POINT:
2659 msg = ".";
2660 break;
2661 case NIC_STAR:
2662 msg = "*";
2663 break;
2664 case NIC_ADDR:
2665 msg = "&";
2666 break;
2667 case NIC_PREINCREMENT:
2668 msg = "++";
2669 break;
2670 case NIC_PREDECREMENT:
2671 msg = "--";
2672 break;
2673 case NIC_NEW:
2674 msg = "new";
2675 break;
2676 case NIC_DEL:
2677 msg = "delete";
2678 break;
2679 default:
2680 gcc_unreachable ();
2681 }
2682 if (msg)
2683 error ("%qs cannot appear in a constant-expression", msg);
2684 return true;
2685 }
2686 }
2687 return false;
2688 }
2689
2690 /* Emit a diagnostic for an invalid type name. SCOPE is the
2691 qualifying scope (or NULL, if none) for ID. This function commits
2692 to the current active tentative parse, if any. (Otherwise, the
2693 problematic construct might be encountered again later, resulting
2694 in duplicate error messages.) LOCATION is the location of ID. */
2695
2696 static void
2697 cp_parser_diagnose_invalid_type_name (cp_parser *parser,
2698 tree scope, tree id,
2699 location_t location)
2700 {
2701 tree decl, old_scope;
2702 /* Try to lookup the identifier. */
2703 old_scope = parser->scope;
2704 parser->scope = scope;
2705 decl = cp_parser_lookup_name_simple (parser, id, location);
2706 parser->scope = old_scope;
2707 /* If the lookup found a template-name, it means that the user forgot
2708 to specify an argument list. Emit a useful error message. */
2709 if (TREE_CODE (decl) == TEMPLATE_DECL)
2710 error_at (location,
2711 "invalid use of template-name %qE without an argument list",
2712 decl);
2713 else if (TREE_CODE (id) == BIT_NOT_EXPR)
2714 error_at (location, "invalid use of destructor %qD as a type", id);
2715 else if (TREE_CODE (decl) == TYPE_DECL)
2716 /* Something like 'unsigned A a;' */
2717 error_at (location, "invalid combination of multiple type-specifiers");
2718 else if (!parser->scope)
2719 {
2720 /* Issue an error message. */
2721 error_at (location, "%qE does not name a type", id);
2722 /* If we're in a template class, it's possible that the user was
2723 referring to a type from a base class. For example:
2724
2725 template <typename T> struct A { typedef T X; };
2726 template <typename T> struct B : public A<T> { X x; };
2727
2728 The user should have said "typename A<T>::X". */
2729 if (cxx_dialect < cxx0x && id == ridpointers[(int)RID_CONSTEXPR])
2730 inform (location, "C++0x %<constexpr%> only available with "
2731 "-std=c++0x or -std=gnu++0x");
2732 else if (processing_template_decl && current_class_type
2733 && TYPE_BINFO (current_class_type))
2734 {
2735 tree b;
2736
2737 for (b = TREE_CHAIN (TYPE_BINFO (current_class_type));
2738 b;
2739 b = TREE_CHAIN (b))
2740 {
2741 tree base_type = BINFO_TYPE (b);
2742 if (CLASS_TYPE_P (base_type)
2743 && dependent_type_p (base_type))
2744 {
2745 tree field;
2746 /* Go from a particular instantiation of the
2747 template (which will have an empty TYPE_FIELDs),
2748 to the main version. */
2749 base_type = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (base_type);
2750 for (field = TYPE_FIELDS (base_type);
2751 field;
2752 field = DECL_CHAIN (field))
2753 if (TREE_CODE (field) == TYPE_DECL
2754 && DECL_NAME (field) == id)
2755 {
2756 inform (location,
2757 "(perhaps %<typename %T::%E%> was intended)",
2758 BINFO_TYPE (b), id);
2759 break;
2760 }
2761 if (field)
2762 break;
2763 }
2764 }
2765 }
2766 }
2767 /* Here we diagnose qualified-ids where the scope is actually correct,
2768 but the identifier does not resolve to a valid type name. */
2769 else if (parser->scope != error_mark_node)
2770 {
2771 if (TREE_CODE (parser->scope) == NAMESPACE_DECL)
2772 error_at (location, "%qE in namespace %qE does not name a type",
2773 id, parser->scope);
2774 else if (CLASS_TYPE_P (parser->scope)
2775 && constructor_name_p (id, parser->scope))
2776 {
2777 /* A<T>::A<T>() */
2778 error_at (location, "%<%T::%E%> names the constructor, not"
2779 " the type", parser->scope, id);
2780 if (cp_lexer_next_token_is (parser->lexer, CPP_LESS))
2781 error_at (location, "and %qT has no template constructors",
2782 parser->scope);
2783 }
2784 else if (TYPE_P (parser->scope)
2785 && dependent_scope_p (parser->scope))
2786 error_at (location, "need %<typename%> before %<%T::%E%> because "
2787 "%qT is a dependent scope",
2788 parser->scope, id, parser->scope);
2789 else if (TYPE_P (parser->scope))
2790 error_at (location, "%qE in class %qT does not name a type",
2791 id, parser->scope);
2792 else
2793 gcc_unreachable ();
2794 }
2795 cp_parser_commit_to_tentative_parse (parser);
2796 }
2797
2798 /* Check for a common situation where a type-name should be present,
2799 but is not, and issue a sensible error message. Returns true if an
2800 invalid type-name was detected.
2801
2802 The situation handled by this function are variable declarations of the
2803 form `ID a', where `ID' is an id-expression and `a' is a plain identifier.
2804 Usually, `ID' should name a type, but if we got here it means that it
2805 does not. We try to emit the best possible error message depending on
2806 how exactly the id-expression looks like. */
2807
2808 static bool
2809 cp_parser_parse_and_diagnose_invalid_type_name (cp_parser *parser)
2810 {
2811 tree id;
2812 cp_token *token = cp_lexer_peek_token (parser->lexer);
2813
2814 /* Avoid duplicate error about ambiguous lookup. */
2815 if (token->type == CPP_NESTED_NAME_SPECIFIER)
2816 {
2817 cp_token *next = cp_lexer_peek_nth_token (parser->lexer, 2);
2818 if (next->type == CPP_NAME && next->ambiguous_p)
2819 goto out;
2820 }
2821
2822 cp_parser_parse_tentatively (parser);
2823 id = cp_parser_id_expression (parser,
2824 /*template_keyword_p=*/false,
2825 /*check_dependency_p=*/true,
2826 /*template_p=*/NULL,
2827 /*declarator_p=*/true,
2828 /*optional_p=*/false);
2829 /* If the next token is a (, this is a function with no explicit return
2830 type, i.e. constructor, destructor or conversion op. */
2831 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN)
2832 || TREE_CODE (id) == TYPE_DECL)
2833 {
2834 cp_parser_abort_tentative_parse (parser);
2835 return false;
2836 }
2837 if (!cp_parser_parse_definitely (parser))
2838 return false;
2839
2840 /* Emit a diagnostic for the invalid type. */
2841 cp_parser_diagnose_invalid_type_name (parser, parser->scope,
2842 id, token->location);
2843 out:
2844 /* If we aren't in the middle of a declarator (i.e. in a
2845 parameter-declaration-clause), skip to the end of the declaration;
2846 there's no point in trying to process it. */
2847 if (!parser->in_declarator_p)
2848 cp_parser_skip_to_end_of_block_or_statement (parser);
2849 return true;
2850 }
2851
2852 /* Consume tokens up to, and including, the next non-nested closing `)'.
2853 Returns 1 iff we found a closing `)'. RECOVERING is true, if we
2854 are doing error recovery. Returns -1 if OR_COMMA is true and we
2855 found an unnested comma. */
2856
2857 static int
2858 cp_parser_skip_to_closing_parenthesis (cp_parser *parser,
2859 bool recovering,
2860 bool or_comma,
2861 bool consume_paren)
2862 {
2863 unsigned paren_depth = 0;
2864 unsigned brace_depth = 0;
2865 unsigned square_depth = 0;
2866
2867 if (recovering && !or_comma
2868 && cp_parser_uncommitted_to_tentative_parse_p (parser))
2869 return 0;
2870
2871 while (true)
2872 {
2873 cp_token * token = cp_lexer_peek_token (parser->lexer);
2874
2875 switch (token->type)
2876 {
2877 case CPP_EOF:
2878 case CPP_PRAGMA_EOL:
2879 /* If we've run out of tokens, then there is no closing `)'. */
2880 return 0;
2881
2882 /* This is good for lambda expression capture-lists. */
2883 case CPP_OPEN_SQUARE:
2884 ++square_depth;
2885 break;
2886 case CPP_CLOSE_SQUARE:
2887 if (!square_depth--)
2888 return 0;
2889 break;
2890
2891 case CPP_SEMICOLON:
2892 /* This matches the processing in skip_to_end_of_statement. */
2893 if (!brace_depth)
2894 return 0;
2895 break;
2896
2897 case CPP_OPEN_BRACE:
2898 ++brace_depth;
2899 break;
2900 case CPP_CLOSE_BRACE:
2901 if (!brace_depth--)
2902 return 0;
2903 break;
2904
2905 case CPP_COMMA:
2906 if (recovering && or_comma && !brace_depth && !paren_depth
2907 && !square_depth)
2908 return -1;
2909 break;
2910
2911 case CPP_OPEN_PAREN:
2912 if (!brace_depth)
2913 ++paren_depth;
2914 break;
2915
2916 case CPP_CLOSE_PAREN:
2917 if (!brace_depth && !paren_depth--)
2918 {
2919 if (consume_paren)
2920 cp_lexer_consume_token (parser->lexer);
2921 return 1;
2922 }
2923 break;
2924
2925 default:
2926 break;
2927 }
2928
2929 /* Consume the token. */
2930 cp_lexer_consume_token (parser->lexer);
2931 }
2932 }
2933
2934 /* Consume tokens until we reach the end of the current statement.
2935 Normally, that will be just before consuming a `;'. However, if a
2936 non-nested `}' comes first, then we stop before consuming that. */
2937
2938 static void
2939 cp_parser_skip_to_end_of_statement (cp_parser* parser)
2940 {
2941 unsigned nesting_depth = 0;
2942
2943 while (true)
2944 {
2945 cp_token *token = cp_lexer_peek_token (parser->lexer);
2946
2947 switch (token->type)
2948 {
2949 case CPP_EOF:
2950 case CPP_PRAGMA_EOL:
2951 /* If we've run out of tokens, stop. */
2952 return;
2953
2954 case CPP_SEMICOLON:
2955 /* If the next token is a `;', we have reached the end of the
2956 statement. */
2957 if (!nesting_depth)
2958 return;
2959 break;
2960
2961 case CPP_CLOSE_BRACE:
2962 /* If this is a non-nested '}', stop before consuming it.
2963 That way, when confronted with something like:
2964
2965 { 3 + }
2966
2967 we stop before consuming the closing '}', even though we
2968 have not yet reached a `;'. */
2969 if (nesting_depth == 0)
2970 return;
2971
2972 /* If it is the closing '}' for a block that we have
2973 scanned, stop -- but only after consuming the token.
2974 That way given:
2975
2976 void f g () { ... }
2977 typedef int I;
2978
2979 we will stop after the body of the erroneously declared
2980 function, but before consuming the following `typedef'
2981 declaration. */
2982 if (--nesting_depth == 0)
2983 {
2984 cp_lexer_consume_token (parser->lexer);
2985 return;
2986 }
2987
2988 case CPP_OPEN_BRACE:
2989 ++nesting_depth;
2990 break;
2991
2992 default:
2993 break;
2994 }
2995
2996 /* Consume the token. */
2997 cp_lexer_consume_token (parser->lexer);
2998 }
2999 }
3000
3001 /* This function is called at the end of a statement or declaration.
3002 If the next token is a semicolon, it is consumed; otherwise, error
3003 recovery is attempted. */
3004
3005 static void
3006 cp_parser_consume_semicolon_at_end_of_statement (cp_parser *parser)
3007 {
3008 /* Look for the trailing `;'. */
3009 if (!cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON))
3010 {
3011 /* If there is additional (erroneous) input, skip to the end of
3012 the statement. */
3013 cp_parser_skip_to_end_of_statement (parser);
3014 /* If the next token is now a `;', consume it. */
3015 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
3016 cp_lexer_consume_token (parser->lexer);
3017 }
3018 }
3019
3020 /* Skip tokens until we have consumed an entire block, or until we
3021 have consumed a non-nested `;'. */
3022
3023 static void
3024 cp_parser_skip_to_end_of_block_or_statement (cp_parser* parser)
3025 {
3026 int nesting_depth = 0;
3027
3028 while (nesting_depth >= 0)
3029 {
3030 cp_token *token = cp_lexer_peek_token (parser->lexer);
3031
3032 switch (token->type)
3033 {
3034 case CPP_EOF:
3035 case CPP_PRAGMA_EOL:
3036 /* If we've run out of tokens, stop. */
3037 return;
3038
3039 case CPP_SEMICOLON:
3040 /* Stop if this is an unnested ';'. */
3041 if (!nesting_depth)
3042 nesting_depth = -1;
3043 break;
3044
3045 case CPP_CLOSE_BRACE:
3046 /* Stop if this is an unnested '}', or closes the outermost
3047 nesting level. */
3048 nesting_depth--;
3049 if (nesting_depth < 0)
3050 return;
3051 if (!nesting_depth)
3052 nesting_depth = -1;
3053 break;
3054
3055 case CPP_OPEN_BRACE:
3056 /* Nest. */
3057 nesting_depth++;
3058 break;
3059
3060 default:
3061 break;
3062 }
3063
3064 /* Consume the token. */
3065 cp_lexer_consume_token (parser->lexer);
3066 }
3067 }
3068
3069 /* Skip tokens until a non-nested closing curly brace is the next
3070 token, or there are no more tokens. Return true in the first case,
3071 false otherwise. */
3072
3073 static bool
3074 cp_parser_skip_to_closing_brace (cp_parser *parser)
3075 {
3076 unsigned nesting_depth = 0;
3077
3078 while (true)
3079 {
3080 cp_token *token = cp_lexer_peek_token (parser->lexer);
3081
3082 switch (token->type)
3083 {
3084 case CPP_EOF:
3085 case CPP_PRAGMA_EOL:
3086 /* If we've run out of tokens, stop. */
3087 return false;
3088
3089 case CPP_CLOSE_BRACE:
3090 /* If the next token is a non-nested `}', then we have reached
3091 the end of the current block. */
3092 if (nesting_depth-- == 0)
3093 return true;
3094 break;
3095
3096 case CPP_OPEN_BRACE:
3097 /* If it the next token is a `{', then we are entering a new
3098 block. Consume the entire block. */
3099 ++nesting_depth;
3100 break;
3101
3102 default:
3103 break;
3104 }
3105
3106 /* Consume the token. */
3107 cp_lexer_consume_token (parser->lexer);
3108 }
3109 }
3110
3111 /* Consume tokens until we reach the end of the pragma. The PRAGMA_TOK
3112 parameter is the PRAGMA token, allowing us to purge the entire pragma
3113 sequence. */
3114
3115 static void
3116 cp_parser_skip_to_pragma_eol (cp_parser* parser, cp_token *pragma_tok)
3117 {
3118 cp_token *token;
3119
3120 parser->lexer->in_pragma = false;
3121
3122 do
3123 token = cp_lexer_consume_token (parser->lexer);
3124 while (token->type != CPP_PRAGMA_EOL && token->type != CPP_EOF);
3125
3126 /* Ensure that the pragma is not parsed again. */
3127 cp_lexer_purge_tokens_after (parser->lexer, pragma_tok);
3128 }
3129
3130 /* Require pragma end of line, resyncing with it as necessary. The
3131 arguments are as for cp_parser_skip_to_pragma_eol. */
3132
3133 static void
3134 cp_parser_require_pragma_eol (cp_parser *parser, cp_token *pragma_tok)
3135 {
3136 parser->lexer->in_pragma = false;
3137 if (!cp_parser_require (parser, CPP_PRAGMA_EOL, RT_PRAGMA_EOL))
3138 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
3139 }
3140
3141 /* This is a simple wrapper around make_typename_type. When the id is
3142 an unresolved identifier node, we can provide a superior diagnostic
3143 using cp_parser_diagnose_invalid_type_name. */
3144
3145 static tree
3146 cp_parser_make_typename_type (cp_parser *parser, tree scope,
3147 tree id, location_t id_location)
3148 {
3149 tree result;
3150 if (TREE_CODE (id) == IDENTIFIER_NODE)
3151 {
3152 result = make_typename_type (scope, id, typename_type,
3153 /*complain=*/tf_none);
3154 if (result == error_mark_node)
3155 cp_parser_diagnose_invalid_type_name (parser, scope, id, id_location);
3156 return result;
3157 }
3158 return make_typename_type (scope, id, typename_type, tf_error);
3159 }
3160
3161 /* This is a wrapper around the
3162 make_{pointer,ptrmem,reference}_declarator functions that decides
3163 which one to call based on the CODE and CLASS_TYPE arguments. The
3164 CODE argument should be one of the values returned by
3165 cp_parser_ptr_operator. */
3166 static cp_declarator *
3167 cp_parser_make_indirect_declarator (enum tree_code code, tree class_type,
3168 cp_cv_quals cv_qualifiers,
3169 cp_declarator *target)
3170 {
3171 if (code == ERROR_MARK)
3172 return cp_error_declarator;
3173
3174 if (code == INDIRECT_REF)
3175 if (class_type == NULL_TREE)
3176 return make_pointer_declarator (cv_qualifiers, target);
3177 else
3178 return make_ptrmem_declarator (cv_qualifiers, class_type, target);
3179 else if (code == ADDR_EXPR && class_type == NULL_TREE)
3180 return make_reference_declarator (cv_qualifiers, target, false);
3181 else if (code == NON_LVALUE_EXPR && class_type == NULL_TREE)
3182 return make_reference_declarator (cv_qualifiers, target, true);
3183 gcc_unreachable ();
3184 }
3185
3186 /* Create a new C++ parser. */
3187
3188 static cp_parser *
3189 cp_parser_new (void)
3190 {
3191 cp_parser *parser;
3192 cp_lexer *lexer;
3193 unsigned i;
3194
3195 /* cp_lexer_new_main is called before doing GC allocation because
3196 cp_lexer_new_main might load a PCH file. */
3197 lexer = cp_lexer_new_main ();
3198
3199 /* Initialize the binops_by_token so that we can get the tree
3200 directly from the token. */
3201 for (i = 0; i < sizeof (binops) / sizeof (binops[0]); i++)
3202 binops_by_token[binops[i].token_type] = binops[i];
3203
3204 parser = ggc_alloc_cleared_cp_parser ();
3205 parser->lexer = lexer;
3206 parser->context = cp_parser_context_new (NULL);
3207
3208 /* For now, we always accept GNU extensions. */
3209 parser->allow_gnu_extensions_p = 1;
3210
3211 /* The `>' token is a greater-than operator, not the end of a
3212 template-id. */
3213 parser->greater_than_is_operator_p = true;
3214
3215 parser->default_arg_ok_p = true;
3216
3217 /* We are not parsing a constant-expression. */
3218 parser->integral_constant_expression_p = false;
3219 parser->allow_non_integral_constant_expression_p = false;
3220 parser->non_integral_constant_expression_p = false;
3221
3222 /* Local variable names are not forbidden. */
3223 parser->local_variables_forbidden_p = false;
3224
3225 /* We are not processing an `extern "C"' declaration. */
3226 parser->in_unbraced_linkage_specification_p = false;
3227
3228 /* We are not processing a declarator. */
3229 parser->in_declarator_p = false;
3230
3231 /* We are not processing a template-argument-list. */
3232 parser->in_template_argument_list_p = false;
3233
3234 /* We are not in an iteration statement. */
3235 parser->in_statement = 0;
3236
3237 /* We are not in a switch statement. */
3238 parser->in_switch_statement_p = false;
3239
3240 /* We are not parsing a type-id inside an expression. */
3241 parser->in_type_id_in_expr_p = false;
3242
3243 /* Declarations aren't implicitly extern "C". */
3244 parser->implicit_extern_c = false;
3245
3246 /* String literals should be translated to the execution character set. */
3247 parser->translate_strings_p = true;
3248
3249 /* We are not parsing a function body. */
3250 parser->in_function_body = false;
3251
3252 /* We can correct until told otherwise. */
3253 parser->colon_corrects_to_scope_p = true;
3254
3255 /* The unparsed function queue is empty. */
3256 push_unparsed_function_queues (parser);
3257
3258 /* There are no classes being defined. */
3259 parser->num_classes_being_defined = 0;
3260
3261 /* No template parameters apply. */
3262 parser->num_template_parameter_lists = 0;
3263
3264 return parser;
3265 }
3266
3267 /* Create a cp_lexer structure which will emit the tokens in CACHE
3268 and push it onto the parser's lexer stack. This is used for delayed
3269 parsing of in-class method bodies and default arguments, and should
3270 not be confused with tentative parsing. */
3271 static void
3272 cp_parser_push_lexer_for_tokens (cp_parser *parser, cp_token_cache *cache)
3273 {
3274 cp_lexer *lexer = cp_lexer_new_from_tokens (cache);
3275 lexer->next = parser->lexer;
3276 parser->lexer = lexer;
3277
3278 /* Move the current source position to that of the first token in the
3279 new lexer. */
3280 cp_lexer_set_source_position_from_token (lexer->next_token);
3281 }
3282
3283 /* Pop the top lexer off the parser stack. This is never used for the
3284 "main" lexer, only for those pushed by cp_parser_push_lexer_for_tokens. */
3285 static void
3286 cp_parser_pop_lexer (cp_parser *parser)
3287 {
3288 cp_lexer *lexer = parser->lexer;
3289 parser->lexer = lexer->next;
3290 cp_lexer_destroy (lexer);
3291
3292 /* Put the current source position back where it was before this
3293 lexer was pushed. */
3294 cp_lexer_set_source_position_from_token (parser->lexer->next_token);
3295 }
3296
3297 /* Lexical conventions [gram.lex] */
3298
3299 /* Parse an identifier. Returns an IDENTIFIER_NODE representing the
3300 identifier. */
3301
3302 static tree
3303 cp_parser_identifier (cp_parser* parser)
3304 {
3305 cp_token *token;
3306
3307 /* Look for the identifier. */
3308 token = cp_parser_require (parser, CPP_NAME, RT_NAME);
3309 /* Return the value. */
3310 return token ? token->u.value : error_mark_node;
3311 }
3312
3313 /* Parse a sequence of adjacent string constants. Returns a
3314 TREE_STRING representing the combined, nul-terminated string
3315 constant. If TRANSLATE is true, translate the string to the
3316 execution character set. If WIDE_OK is true, a wide string is
3317 invalid here.
3318
3319 C++98 [lex.string] says that if a narrow string literal token is
3320 adjacent to a wide string literal token, the behavior is undefined.
3321 However, C99 6.4.5p4 says that this results in a wide string literal.
3322 We follow C99 here, for consistency with the C front end.
3323
3324 This code is largely lifted from lex_string() in c-lex.c.
3325
3326 FUTURE: ObjC++ will need to handle @-strings here. */
3327 static tree
3328 cp_parser_string_literal (cp_parser *parser, bool translate, bool wide_ok)
3329 {
3330 tree value;
3331 size_t count;
3332 struct obstack str_ob;
3333 cpp_string str, istr, *strs;
3334 cp_token *tok;
3335 enum cpp_ttype type;
3336
3337 tok = cp_lexer_peek_token (parser->lexer);
3338 if (!cp_parser_is_string_literal (tok))
3339 {
3340 cp_parser_error (parser, "expected string-literal");
3341 return error_mark_node;
3342 }
3343
3344 type = tok->type;
3345
3346 /* Try to avoid the overhead of creating and destroying an obstack
3347 for the common case of just one string. */
3348 if (!cp_parser_is_string_literal
3349 (cp_lexer_peek_nth_token (parser->lexer, 2)))
3350 {
3351 cp_lexer_consume_token (parser->lexer);
3352
3353 str.text = (const unsigned char *)TREE_STRING_POINTER (tok->u.value);
3354 str.len = TREE_STRING_LENGTH (tok->u.value);
3355 count = 1;
3356
3357 strs = &str;
3358 }
3359 else
3360 {
3361 gcc_obstack_init (&str_ob);
3362 count = 0;
3363
3364 do
3365 {
3366 cp_lexer_consume_token (parser->lexer);
3367 count++;
3368 str.text = (const unsigned char *)TREE_STRING_POINTER (tok->u.value);
3369 str.len = TREE_STRING_LENGTH (tok->u.value);
3370
3371 if (type != tok->type)
3372 {
3373 if (type == CPP_STRING)
3374 type = tok->type;
3375 else if (tok->type != CPP_STRING)
3376 error_at (tok->location,
3377 "unsupported non-standard concatenation "
3378 "of string literals");
3379 }
3380
3381 obstack_grow (&str_ob, &str, sizeof (cpp_string));
3382
3383 tok = cp_lexer_peek_token (parser->lexer);
3384 }
3385 while (cp_parser_is_string_literal (tok));
3386
3387 strs = (cpp_string *) obstack_finish (&str_ob);
3388 }
3389
3390 if (type != CPP_STRING && !wide_ok)
3391 {
3392 cp_parser_error (parser, "a wide string is invalid in this context");
3393 type = CPP_STRING;
3394 }
3395
3396 if ((translate ? cpp_interpret_string : cpp_interpret_string_notranslate)
3397 (parse_in, strs, count, &istr, type))
3398 {
3399 value = build_string (istr.len, (const char *)istr.text);
3400 free (CONST_CAST (unsigned char *, istr.text));
3401
3402 switch (type)
3403 {
3404 default:
3405 case CPP_STRING:
3406 case CPP_UTF8STRING:
3407 TREE_TYPE (value) = char_array_type_node;
3408 break;
3409 case CPP_STRING16:
3410 TREE_TYPE (value) = char16_array_type_node;
3411 break;
3412 case CPP_STRING32:
3413 TREE_TYPE (value) = char32_array_type_node;
3414 break;
3415 case CPP_WSTRING:
3416 TREE_TYPE (value) = wchar_array_type_node;
3417 break;
3418 }
3419
3420 value = fix_string_type (value);
3421 }
3422 else
3423 /* cpp_interpret_string has issued an error. */
3424 value = error_mark_node;
3425
3426 if (count > 1)
3427 obstack_free (&str_ob, 0);
3428
3429 return value;
3430 }
3431
3432
3433 /* Basic concepts [gram.basic] */
3434
3435 /* Parse a translation-unit.
3436
3437 translation-unit:
3438 declaration-seq [opt]
3439
3440 Returns TRUE if all went well. */
3441
3442 static bool
3443 cp_parser_translation_unit (cp_parser* parser)
3444 {
3445 /* The address of the first non-permanent object on the declarator
3446 obstack. */
3447 static void *declarator_obstack_base;
3448
3449 bool success;
3450
3451 /* Create the declarator obstack, if necessary. */
3452 if (!cp_error_declarator)
3453 {
3454 gcc_obstack_init (&declarator_obstack);
3455 /* Create the error declarator. */
3456 cp_error_declarator = make_declarator (cdk_error);
3457 /* Create the empty parameter list. */
3458 no_parameters = make_parameter_declarator (NULL, NULL, NULL_TREE);
3459 /* Remember where the base of the declarator obstack lies. */
3460 declarator_obstack_base = obstack_next_free (&declarator_obstack);
3461 }
3462
3463 cp_parser_declaration_seq_opt (parser);
3464
3465 /* If there are no tokens left then all went well. */
3466 if (cp_lexer_next_token_is (parser->lexer, CPP_EOF))
3467 {
3468 /* Get rid of the token array; we don't need it any more. */
3469 cp_lexer_destroy (parser->lexer);
3470 parser->lexer = NULL;
3471
3472 /* This file might have been a context that's implicitly extern
3473 "C". If so, pop the lang context. (Only relevant for PCH.) */
3474 if (parser->implicit_extern_c)
3475 {
3476 pop_lang_context ();
3477 parser->implicit_extern_c = false;
3478 }
3479
3480 /* Finish up. */
3481 finish_translation_unit ();
3482
3483 success = true;
3484 }
3485 else
3486 {
3487 cp_parser_error (parser, "expected declaration");
3488 success = false;
3489 }
3490
3491 /* Make sure the declarator obstack was fully cleaned up. */
3492 gcc_assert (obstack_next_free (&declarator_obstack)
3493 == declarator_obstack_base);
3494
3495 /* All went well. */
3496 return success;
3497 }
3498
3499 /* Expressions [gram.expr] */
3500
3501 /* Parse a primary-expression.
3502
3503 primary-expression:
3504 literal
3505 this
3506 ( expression )
3507 id-expression
3508
3509 GNU Extensions:
3510
3511 primary-expression:
3512 ( compound-statement )
3513 __builtin_va_arg ( assignment-expression , type-id )
3514 __builtin_offsetof ( type-id , offsetof-expression )
3515
3516 C++ Extensions:
3517 __has_nothrow_assign ( type-id )
3518 __has_nothrow_constructor ( type-id )
3519 __has_nothrow_copy ( type-id )
3520 __has_trivial_assign ( type-id )
3521 __has_trivial_constructor ( type-id )
3522 __has_trivial_copy ( type-id )
3523 __has_trivial_destructor ( type-id )
3524 __has_virtual_destructor ( type-id )
3525 __is_abstract ( type-id )
3526 __is_base_of ( type-id , type-id )
3527 __is_class ( type-id )
3528 __is_convertible_to ( type-id , type-id )
3529 __is_empty ( type-id )
3530 __is_enum ( type-id )
3531 __is_pod ( type-id )
3532 __is_polymorphic ( type-id )
3533 __is_union ( type-id )
3534
3535 Objective-C++ Extension:
3536
3537 primary-expression:
3538 objc-expression
3539
3540 literal:
3541 __null
3542
3543 ADDRESS_P is true iff this expression was immediately preceded by
3544 "&" and therefore might denote a pointer-to-member. CAST_P is true
3545 iff this expression is the target of a cast. TEMPLATE_ARG_P is
3546 true iff this expression is a template argument.
3547
3548 Returns a representation of the expression. Upon return, *IDK
3549 indicates what kind of id-expression (if any) was present. */
3550
3551 static tree
3552 cp_parser_primary_expression (cp_parser *parser,
3553 bool address_p,
3554 bool cast_p,
3555 bool template_arg_p,
3556 cp_id_kind *idk)
3557 {
3558 cp_token *token = NULL;
3559
3560 /* Assume the primary expression is not an id-expression. */
3561 *idk = CP_ID_KIND_NONE;
3562
3563 /* Peek at the next token. */
3564 token = cp_lexer_peek_token (parser->lexer);
3565 switch (token->type)
3566 {
3567 /* literal:
3568 integer-literal
3569 character-literal
3570 floating-literal
3571 string-literal
3572 boolean-literal */
3573 case CPP_CHAR:
3574 case CPP_CHAR16:
3575 case CPP_CHAR32:
3576 case CPP_WCHAR:
3577 case CPP_NUMBER:
3578 token = cp_lexer_consume_token (parser->lexer);
3579 if (TREE_CODE (token->u.value) == FIXED_CST)
3580 {
3581 error_at (token->location,
3582 "fixed-point types not supported in C++");
3583 return error_mark_node;
3584 }
3585 /* Floating-point literals are only allowed in an integral
3586 constant expression if they are cast to an integral or
3587 enumeration type. */
3588 if (TREE_CODE (token->u.value) == REAL_CST
3589 && parser->integral_constant_expression_p
3590 && pedantic)
3591 {
3592 /* CAST_P will be set even in invalid code like "int(2.7 +
3593 ...)". Therefore, we have to check that the next token
3594 is sure to end the cast. */
3595 if (cast_p)
3596 {
3597 cp_token *next_token;
3598
3599 next_token = cp_lexer_peek_token (parser->lexer);
3600 if (/* The comma at the end of an
3601 enumerator-definition. */
3602 next_token->type != CPP_COMMA
3603 /* The curly brace at the end of an enum-specifier. */
3604 && next_token->type != CPP_CLOSE_BRACE
3605 /* The end of a statement. */
3606 && next_token->type != CPP_SEMICOLON
3607 /* The end of the cast-expression. */
3608 && next_token->type != CPP_CLOSE_PAREN
3609 /* The end of an array bound. */
3610 && next_token->type != CPP_CLOSE_SQUARE
3611 /* The closing ">" in a template-argument-list. */
3612 && (next_token->type != CPP_GREATER
3613 || parser->greater_than_is_operator_p)
3614 /* C++0x only: A ">>" treated like two ">" tokens,
3615 in a template-argument-list. */
3616 && (next_token->type != CPP_RSHIFT
3617 || (cxx_dialect == cxx98)
3618 || parser->greater_than_is_operator_p))
3619 cast_p = false;
3620 }
3621
3622 /* If we are within a cast, then the constraint that the
3623 cast is to an integral or enumeration type will be
3624 checked at that point. If we are not within a cast, then
3625 this code is invalid. */
3626 if (!cast_p)
3627 cp_parser_non_integral_constant_expression (parser, NIC_FLOAT);
3628 }
3629 return token->u.value;
3630
3631 case CPP_STRING:
3632 case CPP_STRING16:
3633 case CPP_STRING32:
3634 case CPP_WSTRING:
3635 case CPP_UTF8STRING:
3636 /* ??? Should wide strings be allowed when parser->translate_strings_p
3637 is false (i.e. in attributes)? If not, we can kill the third
3638 argument to cp_parser_string_literal. */
3639 return cp_parser_string_literal (parser,
3640 parser->translate_strings_p,
3641 true);
3642
3643 case CPP_OPEN_PAREN:
3644 {
3645 tree expr;
3646 bool saved_greater_than_is_operator_p;
3647
3648 /* Consume the `('. */
3649 cp_lexer_consume_token (parser->lexer);
3650 /* Within a parenthesized expression, a `>' token is always
3651 the greater-than operator. */
3652 saved_greater_than_is_operator_p
3653 = parser->greater_than_is_operator_p;
3654 parser->greater_than_is_operator_p = true;
3655 /* If we see `( { ' then we are looking at the beginning of
3656 a GNU statement-expression. */
3657 if (cp_parser_allow_gnu_extensions_p (parser)
3658 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
3659 {
3660 /* Statement-expressions are not allowed by the standard. */
3661 pedwarn (token->location, OPT_pedantic,
3662 "ISO C++ forbids braced-groups within expressions");
3663
3664 /* And they're not allowed outside of a function-body; you
3665 cannot, for example, write:
3666
3667 int i = ({ int j = 3; j + 1; });
3668
3669 at class or namespace scope. */
3670 if (!parser->in_function_body
3671 || parser->in_template_argument_list_p)
3672 {
3673 error_at (token->location,
3674 "statement-expressions are not allowed outside "
3675 "functions nor in template-argument lists");
3676 cp_parser_skip_to_end_of_block_or_statement (parser);
3677 expr = error_mark_node;
3678 }
3679 else
3680 {
3681 /* Start the statement-expression. */
3682 expr = begin_stmt_expr ();
3683 /* Parse the compound-statement. */
3684 cp_parser_compound_statement (parser, expr, false);
3685 /* Finish up. */
3686 expr = finish_stmt_expr (expr, false);
3687 }
3688 }
3689 else
3690 {
3691 /* Parse the parenthesized expression. */
3692 expr = cp_parser_expression (parser, cast_p, idk);
3693 /* Let the front end know that this expression was
3694 enclosed in parentheses. This matters in case, for
3695 example, the expression is of the form `A::B', since
3696 `&A::B' might be a pointer-to-member, but `&(A::B)' is
3697 not. */
3698 finish_parenthesized_expr (expr);
3699 }
3700 /* The `>' token might be the end of a template-id or
3701 template-parameter-list now. */
3702 parser->greater_than_is_operator_p
3703 = saved_greater_than_is_operator_p;
3704 /* Consume the `)'. */
3705 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
3706 cp_parser_skip_to_end_of_statement (parser);
3707
3708 return expr;
3709 }
3710
3711 case CPP_OPEN_SQUARE:
3712 if (c_dialect_objc ())
3713 /* We have an Objective-C++ message. */
3714 return cp_parser_objc_expression (parser);
3715 maybe_warn_cpp0x (CPP0X_LAMBDA_EXPR);
3716 return cp_parser_lambda_expression (parser);
3717
3718 case CPP_OBJC_STRING:
3719 if (c_dialect_objc ())
3720 /* We have an Objective-C++ string literal. */
3721 return cp_parser_objc_expression (parser);
3722 cp_parser_error (parser, "expected primary-expression");
3723 return error_mark_node;
3724
3725 case CPP_KEYWORD:
3726 switch (token->keyword)
3727 {
3728 /* These two are the boolean literals. */
3729 case RID_TRUE:
3730 cp_lexer_consume_token (parser->lexer);
3731 return boolean_true_node;
3732 case RID_FALSE:
3733 cp_lexer_consume_token (parser->lexer);
3734 return boolean_false_node;
3735
3736 /* The `__null' literal. */
3737 case RID_NULL:
3738 cp_lexer_consume_token (parser->lexer);
3739 return null_node;
3740
3741 /* The `nullptr' literal. */
3742 case RID_NULLPTR:
3743 cp_lexer_consume_token (parser->lexer);
3744 return nullptr_node;
3745
3746 /* Recognize the `this' keyword. */
3747 case RID_THIS:
3748 cp_lexer_consume_token (parser->lexer);
3749 if (parser->local_variables_forbidden_p)
3750 {
3751 error_at (token->location,
3752 "%<this%> may not be used in this context");
3753 return error_mark_node;
3754 }
3755 /* Pointers cannot appear in constant-expressions. */
3756 if (cp_parser_non_integral_constant_expression (parser, NIC_THIS))
3757 return error_mark_node;
3758 return finish_this_expr ();
3759
3760 /* The `operator' keyword can be the beginning of an
3761 id-expression. */
3762 case RID_OPERATOR:
3763 goto id_expression;
3764
3765 case RID_FUNCTION_NAME:
3766 case RID_PRETTY_FUNCTION_NAME:
3767 case RID_C99_FUNCTION_NAME:
3768 {
3769 non_integral_constant name;
3770
3771 /* The symbols __FUNCTION__, __PRETTY_FUNCTION__, and
3772 __func__ are the names of variables -- but they are
3773 treated specially. Therefore, they are handled here,
3774 rather than relying on the generic id-expression logic
3775 below. Grammatically, these names are id-expressions.
3776
3777 Consume the token. */
3778 token = cp_lexer_consume_token (parser->lexer);
3779
3780 switch (token->keyword)
3781 {
3782 case RID_FUNCTION_NAME:
3783 name = NIC_FUNC_NAME;
3784 break;
3785 case RID_PRETTY_FUNCTION_NAME:
3786 name = NIC_PRETTY_FUNC;
3787 break;
3788 case RID_C99_FUNCTION_NAME:
3789 name = NIC_C99_FUNC;
3790 break;
3791 default:
3792 gcc_unreachable ();
3793 }
3794
3795 if (cp_parser_non_integral_constant_expression (parser, name))
3796 return error_mark_node;
3797
3798 /* Look up the name. */
3799 return finish_fname (token->u.value);
3800 }
3801
3802 case RID_VA_ARG:
3803 {
3804 tree expression;
3805 tree type;
3806
3807 /* The `__builtin_va_arg' construct is used to handle
3808 `va_arg'. Consume the `__builtin_va_arg' token. */
3809 cp_lexer_consume_token (parser->lexer);
3810 /* Look for the opening `('. */
3811 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
3812 /* Now, parse the assignment-expression. */
3813 expression = cp_parser_assignment_expression (parser,
3814 /*cast_p=*/false, NULL);
3815 /* Look for the `,'. */
3816 cp_parser_require (parser, CPP_COMMA, RT_COMMA);
3817 /* Parse the type-id. */
3818 type = cp_parser_type_id (parser);
3819 /* Look for the closing `)'. */
3820 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
3821 /* Using `va_arg' in a constant-expression is not
3822 allowed. */
3823 if (cp_parser_non_integral_constant_expression (parser,
3824 NIC_VA_ARG))
3825 return error_mark_node;
3826 return build_x_va_arg (expression, type);
3827 }
3828
3829 case RID_OFFSETOF:
3830 return cp_parser_builtin_offsetof (parser);
3831
3832 case RID_HAS_NOTHROW_ASSIGN:
3833 case RID_HAS_NOTHROW_CONSTRUCTOR:
3834 case RID_HAS_NOTHROW_COPY:
3835 case RID_HAS_TRIVIAL_ASSIGN:
3836 case RID_HAS_TRIVIAL_CONSTRUCTOR:
3837 case RID_HAS_TRIVIAL_COPY:
3838 case RID_HAS_TRIVIAL_DESTRUCTOR:
3839 case RID_HAS_VIRTUAL_DESTRUCTOR:
3840 case RID_IS_ABSTRACT:
3841 case RID_IS_BASE_OF:
3842 case RID_IS_CLASS:
3843 case RID_IS_CONVERTIBLE_TO:
3844 case RID_IS_EMPTY:
3845 case RID_IS_ENUM:
3846 case RID_IS_POD:
3847 case RID_IS_POLYMORPHIC:
3848 case RID_IS_STD_LAYOUT:
3849 case RID_IS_TRIVIAL:
3850 case RID_IS_UNION:
3851 case RID_IS_LITERAL_TYPE:
3852 return cp_parser_trait_expr (parser, token->keyword);
3853
3854 /* Objective-C++ expressions. */
3855 case RID_AT_ENCODE:
3856 case RID_AT_PROTOCOL:
3857 case RID_AT_SELECTOR:
3858 return cp_parser_objc_expression (parser);
3859
3860 case RID_TEMPLATE:
3861 if (parser->in_function_body
3862 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
3863 == CPP_LESS))
3864 {
3865 error_at (token->location,
3866 "a template declaration cannot appear at block scope");
3867 cp_parser_skip_to_end_of_block_or_statement (parser);
3868 return error_mark_node;
3869 }
3870 default:
3871 cp_parser_error (parser, "expected primary-expression");
3872 return error_mark_node;
3873 }
3874
3875 /* An id-expression can start with either an identifier, a
3876 `::' as the beginning of a qualified-id, or the "operator"
3877 keyword. */
3878 case CPP_NAME:
3879 case CPP_SCOPE:
3880 case CPP_TEMPLATE_ID:
3881 case CPP_NESTED_NAME_SPECIFIER:
3882 {
3883 tree id_expression;
3884 tree decl;
3885 const char *error_msg;
3886 bool template_p;
3887 bool done;
3888 cp_token *id_expr_token;
3889
3890 id_expression:
3891 /* Parse the id-expression. */
3892 id_expression
3893 = cp_parser_id_expression (parser,
3894 /*template_keyword_p=*/false,
3895 /*check_dependency_p=*/true,
3896 &template_p,
3897 /*declarator_p=*/false,
3898 /*optional_p=*/false);
3899 if (id_expression == error_mark_node)
3900 return error_mark_node;
3901 id_expr_token = token;
3902 token = cp_lexer_peek_token (parser->lexer);
3903 done = (token->type != CPP_OPEN_SQUARE
3904 && token->type != CPP_OPEN_PAREN
3905 && token->type != CPP_DOT
3906 && token->type != CPP_DEREF
3907 && token->type != CPP_PLUS_PLUS
3908 && token->type != CPP_MINUS_MINUS);
3909 /* If we have a template-id, then no further lookup is
3910 required. If the template-id was for a template-class, we
3911 will sometimes have a TYPE_DECL at this point. */
3912 if (TREE_CODE (id_expression) == TEMPLATE_ID_EXPR
3913 || TREE_CODE (id_expression) == TYPE_DECL)
3914 decl = id_expression;
3915 /* Look up the name. */
3916 else
3917 {
3918 tree ambiguous_decls;
3919
3920 /* If we already know that this lookup is ambiguous, then
3921 we've already issued an error message; there's no reason
3922 to check again. */
3923 if (id_expr_token->type == CPP_NAME
3924 && id_expr_token->ambiguous_p)
3925 {
3926 cp_parser_simulate_error (parser);
3927 return error_mark_node;
3928 }
3929
3930 decl = cp_parser_lookup_name (parser, id_expression,
3931 none_type,
3932 template_p,
3933 /*is_namespace=*/false,
3934 /*check_dependency=*/true,
3935 &ambiguous_decls,
3936 id_expr_token->location);
3937 /* If the lookup was ambiguous, an error will already have
3938 been issued. */
3939 if (ambiguous_decls)
3940 return error_mark_node;
3941
3942 /* In Objective-C++, we may have an Objective-C 2.0
3943 dot-syntax for classes here. */
3944 if (c_dialect_objc ()
3945 && cp_lexer_peek_token (parser->lexer)->type == CPP_DOT
3946 && TREE_CODE (decl) == TYPE_DECL
3947 && objc_is_class_name (decl))
3948 {
3949 tree component;
3950 cp_lexer_consume_token (parser->lexer);
3951 component = cp_parser_identifier (parser);
3952 if (component == error_mark_node)
3953 return error_mark_node;
3954
3955 return objc_build_class_component_ref (id_expression, component);
3956 }
3957
3958 /* In Objective-C++, an instance variable (ivar) may be preferred
3959 to whatever cp_parser_lookup_name() found. */
3960 decl = objc_lookup_ivar (decl, id_expression);
3961
3962 /* If name lookup gives us a SCOPE_REF, then the
3963 qualifying scope was dependent. */
3964 if (TREE_CODE (decl) == SCOPE_REF)
3965 {
3966 /* At this point, we do not know if DECL is a valid
3967 integral constant expression. We assume that it is
3968 in fact such an expression, so that code like:
3969
3970 template <int N> struct A {
3971 int a[B<N>::i];
3972 };
3973
3974 is accepted. At template-instantiation time, we
3975 will check that B<N>::i is actually a constant. */
3976 return decl;
3977 }
3978 /* Check to see if DECL is a local variable in a context
3979 where that is forbidden. */
3980 if (parser->local_variables_forbidden_p
3981 && local_variable_p (decl))
3982 {
3983 /* It might be that we only found DECL because we are
3984 trying to be generous with pre-ISO scoping rules.
3985 For example, consider:
3986
3987 int i;
3988 void g() {
3989 for (int i = 0; i < 10; ++i) {}
3990 extern void f(int j = i);
3991 }
3992
3993 Here, name look up will originally find the out
3994 of scope `i'. We need to issue a warning message,
3995 but then use the global `i'. */
3996 decl = check_for_out_of_scope_variable (decl);
3997 if (local_variable_p (decl))
3998 {
3999 error_at (id_expr_token->location,
4000 "local variable %qD may not appear in this context",
4001 decl);
4002 return error_mark_node;
4003 }
4004 }
4005 }
4006
4007 decl = (finish_id_expression
4008 (id_expression, decl, parser->scope,
4009 idk,
4010 parser->integral_constant_expression_p,
4011 parser->allow_non_integral_constant_expression_p,
4012 &parser->non_integral_constant_expression_p,
4013 template_p, done, address_p,
4014 template_arg_p,
4015 &error_msg,
4016 id_expr_token->location));
4017 if (error_msg)
4018 cp_parser_error (parser, error_msg);
4019 return decl;
4020 }
4021
4022 /* Anything else is an error. */
4023 default:
4024 cp_parser_error (parser, "expected primary-expression");
4025 return error_mark_node;
4026 }
4027 }
4028
4029 /* Parse an id-expression.
4030
4031 id-expression:
4032 unqualified-id
4033 qualified-id
4034
4035 qualified-id:
4036 :: [opt] nested-name-specifier template [opt] unqualified-id
4037 :: identifier
4038 :: operator-function-id
4039 :: template-id
4040
4041 Return a representation of the unqualified portion of the
4042 identifier. Sets PARSER->SCOPE to the qualifying scope if there is
4043 a `::' or nested-name-specifier.
4044
4045 Often, if the id-expression was a qualified-id, the caller will
4046 want to make a SCOPE_REF to represent the qualified-id. This
4047 function does not do this in order to avoid wastefully creating
4048 SCOPE_REFs when they are not required.
4049
4050 If TEMPLATE_KEYWORD_P is true, then we have just seen the
4051 `template' keyword.
4052
4053 If CHECK_DEPENDENCY_P is false, then names are looked up inside
4054 uninstantiated templates.
4055
4056 If *TEMPLATE_P is non-NULL, it is set to true iff the
4057 `template' keyword is used to explicitly indicate that the entity
4058 named is a template.
4059
4060 If DECLARATOR_P is true, the id-expression is appearing as part of
4061 a declarator, rather than as part of an expression. */
4062
4063 static tree
4064 cp_parser_id_expression (cp_parser *parser,
4065 bool template_keyword_p,
4066 bool check_dependency_p,
4067 bool *template_p,
4068 bool declarator_p,
4069 bool optional_p)
4070 {
4071 bool global_scope_p;
4072 bool nested_name_specifier_p;
4073
4074 /* Assume the `template' keyword was not used. */
4075 if (template_p)
4076 *template_p = template_keyword_p;
4077
4078 /* Look for the optional `::' operator. */
4079 global_scope_p
4080 = (cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/false)
4081 != NULL_TREE);
4082 /* Look for the optional nested-name-specifier. */
4083 nested_name_specifier_p
4084 = (cp_parser_nested_name_specifier_opt (parser,
4085 /*typename_keyword_p=*/false,
4086 check_dependency_p,
4087 /*type_p=*/false,
4088 declarator_p)
4089 != NULL_TREE);
4090 /* If there is a nested-name-specifier, then we are looking at
4091 the first qualified-id production. */
4092 if (nested_name_specifier_p)
4093 {
4094 tree saved_scope;
4095 tree saved_object_scope;
4096 tree saved_qualifying_scope;
4097 tree unqualified_id;
4098 bool is_template;
4099
4100 /* See if the next token is the `template' keyword. */
4101 if (!template_p)
4102 template_p = &is_template;
4103 *template_p = cp_parser_optional_template_keyword (parser);
4104 /* Name lookup we do during the processing of the
4105 unqualified-id might obliterate SCOPE. */
4106 saved_scope = parser->scope;
4107 saved_object_scope = parser->object_scope;
4108 saved_qualifying_scope = parser->qualifying_scope;
4109 /* Process the final unqualified-id. */
4110 unqualified_id = cp_parser_unqualified_id (parser, *template_p,
4111 check_dependency_p,
4112 declarator_p,
4113 /*optional_p=*/false);
4114 /* Restore the SAVED_SCOPE for our caller. */
4115 parser->scope = saved_scope;
4116 parser->object_scope = saved_object_scope;
4117 parser->qualifying_scope = saved_qualifying_scope;
4118
4119 return unqualified_id;
4120 }
4121 /* Otherwise, if we are in global scope, then we are looking at one
4122 of the other qualified-id productions. */
4123 else if (global_scope_p)
4124 {
4125 cp_token *token;
4126 tree id;
4127
4128 /* Peek at the next token. */
4129 token = cp_lexer_peek_token (parser->lexer);
4130
4131 /* If it's an identifier, and the next token is not a "<", then
4132 we can avoid the template-id case. This is an optimization
4133 for this common case. */
4134 if (token->type == CPP_NAME
4135 && !cp_parser_nth_token_starts_template_argument_list_p
4136 (parser, 2))
4137 return cp_parser_identifier (parser);
4138
4139 cp_parser_parse_tentatively (parser);
4140 /* Try a template-id. */
4141 id = cp_parser_template_id (parser,
4142 /*template_keyword_p=*/false,
4143 /*check_dependency_p=*/true,
4144 declarator_p);
4145 /* If that worked, we're done. */
4146 if (cp_parser_parse_definitely (parser))
4147 return id;
4148
4149 /* Peek at the next token. (Changes in the token buffer may
4150 have invalidated the pointer obtained above.) */
4151 token = cp_lexer_peek_token (parser->lexer);
4152
4153 switch (token->type)
4154 {
4155 case CPP_NAME:
4156 return cp_parser_identifier (parser);
4157
4158 case CPP_KEYWORD:
4159 if (token->keyword == RID_OPERATOR)
4160 return cp_parser_operator_function_id (parser);
4161 /* Fall through. */
4162
4163 default:
4164 cp_parser_error (parser, "expected id-expression");
4165 return error_mark_node;
4166 }
4167 }
4168 else
4169 return cp_parser_unqualified_id (parser, template_keyword_p,
4170 /*check_dependency_p=*/true,
4171 declarator_p,
4172 optional_p);
4173 }
4174
4175 /* Parse an unqualified-id.
4176
4177 unqualified-id:
4178 identifier
4179 operator-function-id
4180 conversion-function-id
4181 ~ class-name
4182 template-id
4183
4184 If TEMPLATE_KEYWORD_P is TRUE, we have just seen the `template'
4185 keyword, in a construct like `A::template ...'.
4186
4187 Returns a representation of unqualified-id. For the `identifier'
4188 production, an IDENTIFIER_NODE is returned. For the `~ class-name'
4189 production a BIT_NOT_EXPR is returned; the operand of the
4190 BIT_NOT_EXPR is an IDENTIFIER_NODE for the class-name. For the
4191 other productions, see the documentation accompanying the
4192 corresponding parsing functions. If CHECK_DEPENDENCY_P is false,
4193 names are looked up in uninstantiated templates. If DECLARATOR_P
4194 is true, the unqualified-id is appearing as part of a declarator,
4195 rather than as part of an expression. */
4196
4197 static tree
4198 cp_parser_unqualified_id (cp_parser* parser,
4199 bool template_keyword_p,
4200 bool check_dependency_p,
4201 bool declarator_p,
4202 bool optional_p)
4203 {
4204 cp_token *token;
4205
4206 /* Peek at the next token. */
4207 token = cp_lexer_peek_token (parser->lexer);
4208
4209 switch (token->type)
4210 {
4211 case CPP_NAME:
4212 {
4213 tree id;
4214
4215 /* We don't know yet whether or not this will be a
4216 template-id. */
4217 cp_parser_parse_tentatively (parser);
4218 /* Try a template-id. */
4219 id = cp_parser_template_id (parser, template_keyword_p,
4220 check_dependency_p,
4221 declarator_p);
4222 /* If it worked, we're done. */
4223 if (cp_parser_parse_definitely (parser))
4224 return id;
4225 /* Otherwise, it's an ordinary identifier. */
4226 return cp_parser_identifier (parser);
4227 }
4228
4229 case CPP_TEMPLATE_ID:
4230 return cp_parser_template_id (parser, template_keyword_p,
4231 check_dependency_p,
4232 declarator_p);
4233
4234 case CPP_COMPL:
4235 {
4236 tree type_decl;
4237 tree qualifying_scope;
4238 tree object_scope;
4239 tree scope;
4240 bool done;
4241
4242 /* Consume the `~' token. */
4243 cp_lexer_consume_token (parser->lexer);
4244 /* Parse the class-name. The standard, as written, seems to
4245 say that:
4246
4247 template <typename T> struct S { ~S (); };
4248 template <typename T> S<T>::~S() {}
4249
4250 is invalid, since `~' must be followed by a class-name, but
4251 `S<T>' is dependent, and so not known to be a class.
4252 That's not right; we need to look in uninstantiated
4253 templates. A further complication arises from:
4254
4255 template <typename T> void f(T t) {
4256 t.T::~T();
4257 }
4258
4259 Here, it is not possible to look up `T' in the scope of `T'
4260 itself. We must look in both the current scope, and the
4261 scope of the containing complete expression.
4262
4263 Yet another issue is:
4264
4265 struct S {
4266 int S;
4267 ~S();
4268 };
4269
4270 S::~S() {}
4271
4272 The standard does not seem to say that the `S' in `~S'
4273 should refer to the type `S' and not the data member
4274 `S::S'. */
4275
4276 /* DR 244 says that we look up the name after the "~" in the
4277 same scope as we looked up the qualifying name. That idea
4278 isn't fully worked out; it's more complicated than that. */
4279 scope = parser->scope;
4280 object_scope = parser->object_scope;
4281 qualifying_scope = parser->qualifying_scope;
4282
4283 /* Check for invalid scopes. */
4284 if (scope == error_mark_node)
4285 {
4286 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
4287 cp_lexer_consume_token (parser->lexer);
4288 return error_mark_node;
4289 }
4290 if (scope && TREE_CODE (scope) == NAMESPACE_DECL)
4291 {
4292 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
4293 error_at (token->location,
4294 "scope %qT before %<~%> is not a class-name",
4295 scope);
4296 cp_parser_simulate_error (parser);
4297 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
4298 cp_lexer_consume_token (parser->lexer);
4299 return error_mark_node;
4300 }
4301 gcc_assert (!scope || TYPE_P (scope));
4302
4303 /* If the name is of the form "X::~X" it's OK even if X is a
4304 typedef. */
4305 token = cp_lexer_peek_token (parser->lexer);
4306 if (scope
4307 && token->type == CPP_NAME
4308 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
4309 != CPP_LESS)
4310 && (token->u.value == TYPE_IDENTIFIER (scope)
4311 || constructor_name_p (token->u.value, scope)))
4312 {
4313 cp_lexer_consume_token (parser->lexer);
4314 return build_nt (BIT_NOT_EXPR, scope);
4315 }
4316
4317 /* If there was an explicit qualification (S::~T), first look
4318 in the scope given by the qualification (i.e., S).
4319
4320 Note: in the calls to cp_parser_class_name below we pass
4321 typename_type so that lookup finds the injected-class-name
4322 rather than the constructor. */
4323 done = false;
4324 type_decl = NULL_TREE;
4325 if (scope)
4326 {
4327 cp_parser_parse_tentatively (parser);
4328 type_decl = cp_parser_class_name (parser,
4329 /*typename_keyword_p=*/false,
4330 /*template_keyword_p=*/false,
4331 typename_type,
4332 /*check_dependency=*/false,
4333 /*class_head_p=*/false,
4334 declarator_p);
4335 if (cp_parser_parse_definitely (parser))
4336 done = true;
4337 }
4338 /* In "N::S::~S", look in "N" as well. */
4339 if (!done && scope && qualifying_scope)
4340 {
4341 cp_parser_parse_tentatively (parser);
4342 parser->scope = qualifying_scope;
4343 parser->object_scope = NULL_TREE;
4344 parser->qualifying_scope = NULL_TREE;
4345 type_decl
4346 = cp_parser_class_name (parser,
4347 /*typename_keyword_p=*/false,
4348 /*template_keyword_p=*/false,
4349 typename_type,
4350 /*check_dependency=*/false,
4351 /*class_head_p=*/false,
4352 declarator_p);
4353 if (cp_parser_parse_definitely (parser))
4354 done = true;
4355 }
4356 /* In "p->S::~T", look in the scope given by "*p" as well. */
4357 else if (!done && object_scope)
4358 {
4359 cp_parser_parse_tentatively (parser);
4360 parser->scope = object_scope;
4361 parser->object_scope = NULL_TREE;
4362 parser->qualifying_scope = NULL_TREE;
4363 type_decl
4364 = cp_parser_class_name (parser,
4365 /*typename_keyword_p=*/false,
4366 /*template_keyword_p=*/false,
4367 typename_type,
4368 /*check_dependency=*/false,
4369 /*class_head_p=*/false,
4370 declarator_p);
4371 if (cp_parser_parse_definitely (parser))
4372 done = true;
4373 }
4374 /* Look in the surrounding context. */
4375 if (!done)
4376 {
4377 parser->scope = NULL_TREE;
4378 parser->object_scope = NULL_TREE;
4379 parser->qualifying_scope = NULL_TREE;
4380 if (processing_template_decl)
4381 cp_parser_parse_tentatively (parser);
4382 type_decl
4383 = cp_parser_class_name (parser,
4384 /*typename_keyword_p=*/false,
4385 /*template_keyword_p=*/false,
4386 typename_type,
4387 /*check_dependency=*/false,
4388 /*class_head_p=*/false,
4389 declarator_p);
4390 if (processing_template_decl
4391 && ! cp_parser_parse_definitely (parser))
4392 {
4393 /* We couldn't find a type with this name, so just accept
4394 it and check for a match at instantiation time. */
4395 type_decl = cp_parser_identifier (parser);
4396 if (type_decl != error_mark_node)
4397 type_decl = build_nt (BIT_NOT_EXPR, type_decl);
4398 return type_decl;
4399 }
4400 }
4401 /* If an error occurred, assume that the name of the
4402 destructor is the same as the name of the qualifying
4403 class. That allows us to keep parsing after running
4404 into ill-formed destructor names. */
4405 if (type_decl == error_mark_node && scope)
4406 return build_nt (BIT_NOT_EXPR, scope);
4407 else if (type_decl == error_mark_node)
4408 return error_mark_node;
4409
4410 /* Check that destructor name and scope match. */
4411 if (declarator_p && scope && !check_dtor_name (scope, type_decl))
4412 {
4413 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
4414 error_at (token->location,
4415 "declaration of %<~%T%> as member of %qT",
4416 type_decl, scope);
4417 cp_parser_simulate_error (parser);
4418 return error_mark_node;
4419 }
4420
4421 /* [class.dtor]
4422
4423 A typedef-name that names a class shall not be used as the
4424 identifier in the declarator for a destructor declaration. */
4425 if (declarator_p
4426 && !DECL_IMPLICIT_TYPEDEF_P (type_decl)
4427 && !DECL_SELF_REFERENCE_P (type_decl)
4428 && !cp_parser_uncommitted_to_tentative_parse_p (parser))
4429 error_at (token->location,
4430 "typedef-name %qD used as destructor declarator",
4431 type_decl);
4432
4433 return build_nt (BIT_NOT_EXPR, TREE_TYPE (type_decl));
4434 }
4435
4436 case CPP_KEYWORD:
4437 if (token->keyword == RID_OPERATOR)
4438 {
4439 tree id;
4440
4441 /* This could be a template-id, so we try that first. */
4442 cp_parser_parse_tentatively (parser);
4443 /* Try a template-id. */
4444 id = cp_parser_template_id (parser, template_keyword_p,
4445 /*check_dependency_p=*/true,
4446 declarator_p);
4447 /* If that worked, we're done. */
4448 if (cp_parser_parse_definitely (parser))
4449 return id;
4450 /* We still don't know whether we're looking at an
4451 operator-function-id or a conversion-function-id. */
4452 cp_parser_parse_tentatively (parser);
4453 /* Try an operator-function-id. */
4454 id = cp_parser_operator_function_id (parser);
4455 /* If that didn't work, try a conversion-function-id. */
4456 if (!cp_parser_parse_definitely (parser))
4457 id = cp_parser_conversion_function_id (parser);
4458
4459 return id;
4460 }
4461 /* Fall through. */
4462
4463 default:
4464 if (optional_p)
4465 return NULL_TREE;
4466 cp_parser_error (parser, "expected unqualified-id");
4467 return error_mark_node;
4468 }
4469 }
4470
4471 /* Parse an (optional) nested-name-specifier.
4472
4473 nested-name-specifier: [C++98]
4474 class-or-namespace-name :: nested-name-specifier [opt]
4475 class-or-namespace-name :: template nested-name-specifier [opt]
4476
4477 nested-name-specifier: [C++0x]
4478 type-name ::
4479 namespace-name ::
4480 nested-name-specifier identifier ::
4481 nested-name-specifier template [opt] simple-template-id ::
4482
4483 PARSER->SCOPE should be set appropriately before this function is
4484 called. TYPENAME_KEYWORD_P is TRUE if the `typename' keyword is in
4485 effect. TYPE_P is TRUE if we non-type bindings should be ignored
4486 in name lookups.
4487
4488 Sets PARSER->SCOPE to the class (TYPE) or namespace
4489 (NAMESPACE_DECL) specified by the nested-name-specifier, or leaves
4490 it unchanged if there is no nested-name-specifier. Returns the new
4491 scope iff there is a nested-name-specifier, or NULL_TREE otherwise.
4492
4493 If IS_DECLARATION is TRUE, the nested-name-specifier is known to be
4494 part of a declaration and/or decl-specifier. */
4495
4496 static tree
4497 cp_parser_nested_name_specifier_opt (cp_parser *parser,
4498 bool typename_keyword_p,
4499 bool check_dependency_p,
4500 bool type_p,
4501 bool is_declaration)
4502 {
4503 bool success = false;
4504 cp_token_position start = 0;
4505 cp_token *token;
4506
4507 /* Remember where the nested-name-specifier starts. */
4508 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
4509 {
4510 start = cp_lexer_token_position (parser->lexer, false);
4511 push_deferring_access_checks (dk_deferred);
4512 }
4513
4514 while (true)
4515 {
4516 tree new_scope;
4517 tree old_scope;
4518 tree saved_qualifying_scope;
4519 bool template_keyword_p;
4520
4521 /* Spot cases that cannot be the beginning of a
4522 nested-name-specifier. */
4523 token = cp_lexer_peek_token (parser->lexer);
4524
4525 /* If the next token is CPP_NESTED_NAME_SPECIFIER, just process
4526 the already parsed nested-name-specifier. */
4527 if (token->type == CPP_NESTED_NAME_SPECIFIER)
4528 {
4529 /* Grab the nested-name-specifier and continue the loop. */
4530 cp_parser_pre_parsed_nested_name_specifier (parser);
4531 /* If we originally encountered this nested-name-specifier
4532 with IS_DECLARATION set to false, we will not have
4533 resolved TYPENAME_TYPEs, so we must do so here. */
4534 if (is_declaration
4535 && TREE_CODE (parser->scope) == TYPENAME_TYPE)
4536 {
4537 new_scope = resolve_typename_type (parser->scope,
4538 /*only_current_p=*/false);
4539 if (TREE_CODE (new_scope) != TYPENAME_TYPE)
4540 parser->scope = new_scope;
4541 }
4542 success = true;
4543 continue;
4544 }
4545
4546 /* Spot cases that cannot be the beginning of a
4547 nested-name-specifier. On the second and subsequent times
4548 through the loop, we look for the `template' keyword. */
4549 if (success && token->keyword == RID_TEMPLATE)
4550 ;
4551 /* A template-id can start a nested-name-specifier. */
4552 else if (token->type == CPP_TEMPLATE_ID)
4553 ;
4554 else
4555 {
4556 /* If the next token is not an identifier, then it is
4557 definitely not a type-name or namespace-name. */
4558 if (token->type != CPP_NAME)
4559 break;
4560 /* If the following token is neither a `<' (to begin a
4561 template-id), nor a `::', then we are not looking at a
4562 nested-name-specifier. */
4563 token = cp_lexer_peek_nth_token (parser->lexer, 2);
4564
4565 if (token->type == CPP_COLON
4566 && parser->colon_corrects_to_scope_p
4567 && cp_lexer_peek_nth_token (parser->lexer, 3)->type == CPP_NAME)
4568 {
4569 error_at (token->location,
4570 "found %<:%> in nested-name-specifier, expected %<::%>");
4571 token->type = CPP_SCOPE;
4572 }
4573
4574 if (token->type != CPP_SCOPE
4575 && !cp_parser_nth_token_starts_template_argument_list_p
4576 (parser, 2))
4577 break;
4578 }
4579
4580 /* The nested-name-specifier is optional, so we parse
4581 tentatively. */
4582 cp_parser_parse_tentatively (parser);
4583
4584 /* Look for the optional `template' keyword, if this isn't the
4585 first time through the loop. */
4586 if (success)
4587 template_keyword_p = cp_parser_optional_template_keyword (parser);
4588 else
4589 template_keyword_p = false;
4590
4591 /* Save the old scope since the name lookup we are about to do
4592 might destroy it. */
4593 old_scope = parser->scope;
4594 saved_qualifying_scope = parser->qualifying_scope;
4595 /* In a declarator-id like "X<T>::I::Y<T>" we must be able to
4596 look up names in "X<T>::I" in order to determine that "Y" is
4597 a template. So, if we have a typename at this point, we make
4598 an effort to look through it. */
4599 if (is_declaration
4600 && !typename_keyword_p
4601 && parser->scope
4602 && TREE_CODE (parser->scope) == TYPENAME_TYPE)
4603 parser->scope = resolve_typename_type (parser->scope,
4604 /*only_current_p=*/false);
4605 /* Parse the qualifying entity. */
4606 new_scope
4607 = cp_parser_qualifying_entity (parser,
4608 typename_keyword_p,
4609 template_keyword_p,
4610 check_dependency_p,
4611 type_p,
4612 is_declaration);
4613 /* Look for the `::' token. */
4614 cp_parser_require (parser, CPP_SCOPE, RT_SCOPE);
4615
4616 /* If we found what we wanted, we keep going; otherwise, we're
4617 done. */
4618 if (!cp_parser_parse_definitely (parser))
4619 {
4620 bool error_p = false;
4621
4622 /* Restore the OLD_SCOPE since it was valid before the
4623 failed attempt at finding the last
4624 class-or-namespace-name. */
4625 parser->scope = old_scope;
4626 parser->qualifying_scope = saved_qualifying_scope;
4627 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
4628 break;
4629 /* If the next token is an identifier, and the one after
4630 that is a `::', then any valid interpretation would have
4631 found a class-or-namespace-name. */
4632 while (cp_lexer_next_token_is (parser->lexer, CPP_NAME)
4633 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
4634 == CPP_SCOPE)
4635 && (cp_lexer_peek_nth_token (parser->lexer, 3)->type
4636 != CPP_COMPL))
4637 {
4638 token = cp_lexer_consume_token (parser->lexer);
4639 if (!error_p)
4640 {
4641 if (!token->ambiguous_p)
4642 {
4643 tree decl;
4644 tree ambiguous_decls;
4645
4646 decl = cp_parser_lookup_name (parser, token->u.value,
4647 none_type,
4648 /*is_template=*/false,
4649 /*is_namespace=*/false,
4650 /*check_dependency=*/true,
4651 &ambiguous_decls,
4652 token->location);
4653 if (TREE_CODE (decl) == TEMPLATE_DECL)
4654 error_at (token->location,
4655 "%qD used without template parameters",
4656 decl);
4657 else if (ambiguous_decls)
4658 {
4659 error_at (token->location,
4660 "reference to %qD is ambiguous",
4661 token->u.value);
4662 print_candidates (ambiguous_decls);
4663 decl = error_mark_node;
4664 }
4665 else
4666 {
4667 if (cxx_dialect != cxx98)
4668 cp_parser_name_lookup_error
4669 (parser, token->u.value, decl, NLE_NOT_CXX98,
4670 token->location);
4671 else
4672 cp_parser_name_lookup_error
4673 (parser, token->u.value, decl, NLE_CXX98,
4674 token->location);
4675 }
4676 }
4677 parser->scope = error_mark_node;
4678 error_p = true;
4679 /* Treat this as a successful nested-name-specifier
4680 due to:
4681
4682 [basic.lookup.qual]
4683
4684 If the name found is not a class-name (clause
4685 _class_) or namespace-name (_namespace.def_), the
4686 program is ill-formed. */
4687 success = true;
4688 }
4689 cp_lexer_consume_token (parser->lexer);
4690 }
4691 break;
4692 }
4693 /* We've found one valid nested-name-specifier. */
4694 success = true;
4695 /* Name lookup always gives us a DECL. */
4696 if (TREE_CODE (new_scope) == TYPE_DECL)
4697 new_scope = TREE_TYPE (new_scope);
4698 /* Uses of "template" must be followed by actual templates. */
4699 if (template_keyword_p
4700 && !(CLASS_TYPE_P (new_scope)
4701 && ((CLASSTYPE_USE_TEMPLATE (new_scope)
4702 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (new_scope)))
4703 || CLASSTYPE_IS_TEMPLATE (new_scope)))
4704 && !(TREE_CODE (new_scope) == TYPENAME_TYPE
4705 && (TREE_CODE (TYPENAME_TYPE_FULLNAME (new_scope))
4706 == TEMPLATE_ID_EXPR)))
4707 permerror (input_location, TYPE_P (new_scope)
4708 ? "%qT is not a template"
4709 : "%qD is not a template",
4710 new_scope);
4711 /* If it is a class scope, try to complete it; we are about to
4712 be looking up names inside the class. */
4713 if (TYPE_P (new_scope)
4714 /* Since checking types for dependency can be expensive,
4715 avoid doing it if the type is already complete. */
4716 && !COMPLETE_TYPE_P (new_scope)
4717 /* Do not try to complete dependent types. */
4718 && !dependent_type_p (new_scope))
4719 {
4720 new_scope = complete_type (new_scope);
4721 /* If it is a typedef to current class, use the current
4722 class instead, as the typedef won't have any names inside
4723 it yet. */
4724 if (!COMPLETE_TYPE_P (new_scope)
4725 && currently_open_class (new_scope))
4726 new_scope = TYPE_MAIN_VARIANT (new_scope);
4727 }
4728 /* Make sure we look in the right scope the next time through
4729 the loop. */
4730 parser->scope = new_scope;
4731 }
4732
4733 /* If parsing tentatively, replace the sequence of tokens that makes
4734 up the nested-name-specifier with a CPP_NESTED_NAME_SPECIFIER
4735 token. That way, should we re-parse the token stream, we will
4736 not have to repeat the effort required to do the parse, nor will
4737 we issue duplicate error messages. */
4738 if (success && start)
4739 {
4740 cp_token *token;
4741
4742 token = cp_lexer_token_at (parser->lexer, start);
4743 /* Reset the contents of the START token. */
4744 token->type = CPP_NESTED_NAME_SPECIFIER;
4745 /* Retrieve any deferred checks. Do not pop this access checks yet
4746 so the memory will not be reclaimed during token replacing below. */
4747 token->u.tree_check_value = ggc_alloc_cleared_tree_check ();
4748 token->u.tree_check_value->value = parser->scope;
4749 token->u.tree_check_value->checks = get_deferred_access_checks ();
4750 token->u.tree_check_value->qualifying_scope =
4751 parser->qualifying_scope;
4752 token->keyword = RID_MAX;
4753
4754 /* Purge all subsequent tokens. */
4755 cp_lexer_purge_tokens_after (parser->lexer, start);
4756 }
4757
4758 if (start)
4759 pop_to_parent_deferring_access_checks ();
4760
4761 return success ? parser->scope : NULL_TREE;
4762 }
4763
4764 /* Parse a nested-name-specifier. See
4765 cp_parser_nested_name_specifier_opt for details. This function
4766 behaves identically, except that it will an issue an error if no
4767 nested-name-specifier is present. */
4768
4769 static tree
4770 cp_parser_nested_name_specifier (cp_parser *parser,
4771 bool typename_keyword_p,
4772 bool check_dependency_p,
4773 bool type_p,
4774 bool is_declaration)
4775 {
4776 tree scope;
4777
4778 /* Look for the nested-name-specifier. */
4779 scope = cp_parser_nested_name_specifier_opt (parser,
4780 typename_keyword_p,
4781 check_dependency_p,
4782 type_p,
4783 is_declaration);
4784 /* If it was not present, issue an error message. */
4785 if (!scope)
4786 {
4787 cp_parser_error (parser, "expected nested-name-specifier");
4788 parser->scope = NULL_TREE;
4789 }
4790
4791 return scope;
4792 }
4793
4794 /* Parse the qualifying entity in a nested-name-specifier. For C++98,
4795 this is either a class-name or a namespace-name (which corresponds
4796 to the class-or-namespace-name production in the grammar). For
4797 C++0x, it can also be a type-name that refers to an enumeration
4798 type.
4799
4800 TYPENAME_KEYWORD_P is TRUE iff the `typename' keyword is in effect.
4801 TEMPLATE_KEYWORD_P is TRUE iff the `template' keyword is in effect.
4802 CHECK_DEPENDENCY_P is FALSE iff dependent names should be looked up.
4803 TYPE_P is TRUE iff the next name should be taken as a class-name,
4804 even the same name is declared to be another entity in the same
4805 scope.
4806
4807 Returns the class (TYPE_DECL) or namespace (NAMESPACE_DECL)
4808 specified by the class-or-namespace-name. If neither is found the
4809 ERROR_MARK_NODE is returned. */
4810
4811 static tree
4812 cp_parser_qualifying_entity (cp_parser *parser,
4813 bool typename_keyword_p,
4814 bool template_keyword_p,
4815 bool check_dependency_p,
4816 bool type_p,
4817 bool is_declaration)
4818 {
4819 tree saved_scope;
4820 tree saved_qualifying_scope;
4821 tree saved_object_scope;
4822 tree scope;
4823 bool only_class_p;
4824 bool successful_parse_p;
4825
4826 /* Before we try to parse the class-name, we must save away the
4827 current PARSER->SCOPE since cp_parser_class_name will destroy
4828 it. */
4829 saved_scope = parser->scope;
4830 saved_qualifying_scope = parser->qualifying_scope;
4831 saved_object_scope = parser->object_scope;
4832 /* Try for a class-name first. If the SAVED_SCOPE is a type, then
4833 there is no need to look for a namespace-name. */
4834 only_class_p = template_keyword_p
4835 || (saved_scope && TYPE_P (saved_scope) && cxx_dialect == cxx98);
4836 if (!only_class_p)
4837 cp_parser_parse_tentatively (parser);
4838 scope = cp_parser_class_name (parser,
4839 typename_keyword_p,
4840 template_keyword_p,
4841 type_p ? class_type : none_type,
4842 check_dependency_p,
4843 /*class_head_p=*/false,
4844 is_declaration);
4845 successful_parse_p = only_class_p || cp_parser_parse_definitely (parser);
4846 /* If that didn't work and we're in C++0x mode, try for a type-name. */
4847 if (!only_class_p
4848 && cxx_dialect != cxx98
4849 && !successful_parse_p)
4850 {
4851 /* Restore the saved scope. */
4852 parser->scope = saved_scope;
4853 parser->qualifying_scope = saved_qualifying_scope;
4854 parser->object_scope = saved_object_scope;
4855
4856 /* Parse tentatively. */
4857 cp_parser_parse_tentatively (parser);
4858
4859 /* Parse a typedef-name or enum-name. */
4860 scope = cp_parser_nonclass_name (parser);
4861
4862 /* "If the name found does not designate a namespace or a class,
4863 enumeration, or dependent type, the program is ill-formed."
4864
4865 We cover classes and dependent types above and namespaces below,
4866 so this code is only looking for enums. */
4867 if (!scope || TREE_CODE (scope) != TYPE_DECL
4868 || TREE_CODE (TREE_TYPE (scope)) != ENUMERAL_TYPE)
4869 cp_parser_simulate_error (parser);
4870
4871 successful_parse_p = cp_parser_parse_definitely (parser);
4872 }
4873 /* If that didn't work, try for a namespace-name. */
4874 if (!only_class_p && !successful_parse_p)
4875 {
4876 /* Restore the saved scope. */
4877 parser->scope = saved_scope;
4878 parser->qualifying_scope = saved_qualifying_scope;
4879 parser->object_scope = saved_object_scope;
4880 /* If we are not looking at an identifier followed by the scope
4881 resolution operator, then this is not part of a
4882 nested-name-specifier. (Note that this function is only used
4883 to parse the components of a nested-name-specifier.) */
4884 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NAME)
4885 || cp_lexer_peek_nth_token (parser->lexer, 2)->type != CPP_SCOPE)
4886 return error_mark_node;
4887 scope = cp_parser_namespace_name (parser);
4888 }
4889
4890 return scope;
4891 }
4892
4893 /* Parse a postfix-expression.
4894
4895 postfix-expression:
4896 primary-expression
4897 postfix-expression [ expression ]
4898 postfix-expression ( expression-list [opt] )
4899 simple-type-specifier ( expression-list [opt] )
4900 typename :: [opt] nested-name-specifier identifier
4901 ( expression-list [opt] )
4902 typename :: [opt] nested-name-specifier template [opt] template-id
4903 ( expression-list [opt] )
4904 postfix-expression . template [opt] id-expression
4905 postfix-expression -> template [opt] id-expression
4906 postfix-expression . pseudo-destructor-name
4907 postfix-expression -> pseudo-destructor-name
4908 postfix-expression ++
4909 postfix-expression --
4910 dynamic_cast < type-id > ( expression )
4911 static_cast < type-id > ( expression )
4912 reinterpret_cast < type-id > ( expression )
4913 const_cast < type-id > ( expression )
4914 typeid ( expression )
4915 typeid ( type-id )
4916
4917 GNU Extension:
4918
4919 postfix-expression:
4920 ( type-id ) { initializer-list , [opt] }
4921
4922 This extension is a GNU version of the C99 compound-literal
4923 construct. (The C99 grammar uses `type-name' instead of `type-id',
4924 but they are essentially the same concept.)
4925
4926 If ADDRESS_P is true, the postfix expression is the operand of the
4927 `&' operator. CAST_P is true if this expression is the target of a
4928 cast.
4929
4930 If MEMBER_ACCESS_ONLY_P, we only allow postfix expressions that are
4931 class member access expressions [expr.ref].
4932
4933 Returns a representation of the expression. */
4934
4935 static tree
4936 cp_parser_postfix_expression (cp_parser *parser, bool address_p, bool cast_p,
4937 bool member_access_only_p,
4938 cp_id_kind * pidk_return)
4939 {
4940 cp_token *token;
4941 enum rid keyword;
4942 cp_id_kind idk = CP_ID_KIND_NONE;
4943 tree postfix_expression = NULL_TREE;
4944 bool is_member_access = false;
4945
4946 /* Peek at the next token. */
4947 token = cp_lexer_peek_token (parser->lexer);
4948 /* Some of the productions are determined by keywords. */
4949 keyword = token->keyword;
4950 switch (keyword)
4951 {
4952 case RID_DYNCAST:
4953 case RID_STATCAST:
4954 case RID_REINTCAST:
4955 case RID_CONSTCAST:
4956 {
4957 tree type;
4958 tree expression;
4959 const char *saved_message;
4960
4961 /* All of these can be handled in the same way from the point
4962 of view of parsing. Begin by consuming the token
4963 identifying the cast. */
4964 cp_lexer_consume_token (parser->lexer);
4965
4966 /* New types cannot be defined in the cast. */
4967 saved_message = parser->type_definition_forbidden_message;
4968 parser->type_definition_forbidden_message
4969 = G_("types may not be defined in casts");
4970
4971 /* Look for the opening `<'. */
4972 cp_parser_require (parser, CPP_LESS, RT_LESS);
4973 /* Parse the type to which we are casting. */
4974 type = cp_parser_type_id (parser);
4975 /* Look for the closing `>'. */
4976 cp_parser_require (parser, CPP_GREATER, RT_GREATER);
4977 /* Restore the old message. */
4978 parser->type_definition_forbidden_message = saved_message;
4979
4980 /* And the expression which is being cast. */
4981 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
4982 expression = cp_parser_expression (parser, /*cast_p=*/true, & idk);
4983 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
4984
4985 /* Only type conversions to integral or enumeration types
4986 can be used in constant-expressions. */
4987 if (!cast_valid_in_integral_constant_expression_p (type)
4988 && cp_parser_non_integral_constant_expression (parser, NIC_CAST))
4989 return error_mark_node;
4990
4991 switch (keyword)
4992 {
4993 case RID_DYNCAST:
4994 postfix_expression
4995 = build_dynamic_cast (type, expression, tf_warning_or_error);
4996 break;
4997 case RID_STATCAST:
4998 postfix_expression
4999 = build_static_cast (type, expression, tf_warning_or_error);
5000 break;
5001 case RID_REINTCAST:
5002 postfix_expression
5003 = build_reinterpret_cast (type, expression,
5004 tf_warning_or_error);
5005 break;
5006 case RID_CONSTCAST:
5007 postfix_expression
5008 = build_const_cast (type, expression, tf_warning_or_error);
5009 break;
5010 default:
5011 gcc_unreachable ();
5012 }
5013 }
5014 break;
5015
5016 case RID_TYPEID:
5017 {
5018 tree type;
5019 const char *saved_message;
5020 bool saved_in_type_id_in_expr_p;
5021
5022 /* Consume the `typeid' token. */
5023 cp_lexer_consume_token (parser->lexer);
5024 /* Look for the `(' token. */
5025 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
5026 /* Types cannot be defined in a `typeid' expression. */
5027 saved_message = parser->type_definition_forbidden_message;
5028 parser->type_definition_forbidden_message
5029 = G_("types may not be defined in a %<typeid%> expression");
5030 /* We can't be sure yet whether we're looking at a type-id or an
5031 expression. */
5032 cp_parser_parse_tentatively (parser);
5033 /* Try a type-id first. */
5034 saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
5035 parser->in_type_id_in_expr_p = true;
5036 type = cp_parser_type_id (parser);
5037 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
5038 /* Look for the `)' token. Otherwise, we can't be sure that
5039 we're not looking at an expression: consider `typeid (int
5040 (3))', for example. */
5041 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
5042 /* If all went well, simply lookup the type-id. */
5043 if (cp_parser_parse_definitely (parser))
5044 postfix_expression = get_typeid (type);
5045 /* Otherwise, fall back to the expression variant. */
5046 else
5047 {
5048 tree expression;
5049
5050 /* Look for an expression. */
5051 expression = cp_parser_expression (parser, /*cast_p=*/false, & idk);
5052 /* Compute its typeid. */
5053 postfix_expression = build_typeid (expression);
5054 /* Look for the `)' token. */
5055 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
5056 }
5057 /* Restore the saved message. */
5058 parser->type_definition_forbidden_message = saved_message;
5059 /* `typeid' may not appear in an integral constant expression. */
5060 if (cp_parser_non_integral_constant_expression(parser, NIC_TYPEID))
5061 return error_mark_node;
5062 }
5063 break;
5064
5065 case RID_TYPENAME:
5066 {
5067 tree type;
5068 /* The syntax permitted here is the same permitted for an
5069 elaborated-type-specifier. */
5070 type = cp_parser_elaborated_type_specifier (parser,
5071 /*is_friend=*/false,
5072 /*is_declaration=*/false);
5073 postfix_expression = cp_parser_functional_cast (parser, type);
5074 }
5075 break;
5076
5077 default:
5078 {
5079 tree type;
5080
5081 /* If the next thing is a simple-type-specifier, we may be
5082 looking at a functional cast. We could also be looking at
5083 an id-expression. So, we try the functional cast, and if
5084 that doesn't work we fall back to the primary-expression. */
5085 cp_parser_parse_tentatively (parser);
5086 /* Look for the simple-type-specifier. */
5087 type = cp_parser_simple_type_specifier (parser,
5088 /*decl_specs=*/NULL,
5089 CP_PARSER_FLAGS_NONE);
5090 /* Parse the cast itself. */
5091 if (!cp_parser_error_occurred (parser))
5092 postfix_expression
5093 = cp_parser_functional_cast (parser, type);
5094 /* If that worked, we're done. */
5095 if (cp_parser_parse_definitely (parser))
5096 break;
5097
5098 /* If the functional-cast didn't work out, try a
5099 compound-literal. */
5100 if (cp_parser_allow_gnu_extensions_p (parser)
5101 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
5102 {
5103 VEC(constructor_elt,gc) *initializer_list = NULL;
5104 bool saved_in_type_id_in_expr_p;
5105
5106 cp_parser_parse_tentatively (parser);
5107 /* Consume the `('. */
5108 cp_lexer_consume_token (parser->lexer);
5109 /* Parse the type. */
5110 saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
5111 parser->in_type_id_in_expr_p = true;
5112 type = cp_parser_type_id (parser);
5113 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
5114 /* Look for the `)'. */
5115 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
5116 /* Look for the `{'. */
5117 cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE);
5118 /* If things aren't going well, there's no need to
5119 keep going. */
5120 if (!cp_parser_error_occurred (parser))
5121 {
5122 bool non_constant_p;
5123 /* Parse the initializer-list. */
5124 initializer_list
5125 = cp_parser_initializer_list (parser, &non_constant_p);
5126 /* Allow a trailing `,'. */
5127 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
5128 cp_lexer_consume_token (parser->lexer);
5129 /* Look for the final `}'. */
5130 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
5131 }
5132 /* If that worked, we're definitely looking at a
5133 compound-literal expression. */
5134 if (cp_parser_parse_definitely (parser))
5135 {
5136 /* Warn the user that a compound literal is not
5137 allowed in standard C++. */
5138 pedwarn (input_location, OPT_pedantic, "ISO C++ forbids compound-literals");
5139 /* For simplicity, we disallow compound literals in
5140 constant-expressions. We could
5141 allow compound literals of integer type, whose
5142 initializer was a constant, in constant
5143 expressions. Permitting that usage, as a further
5144 extension, would not change the meaning of any
5145 currently accepted programs. (Of course, as
5146 compound literals are not part of ISO C++, the
5147 standard has nothing to say.) */
5148 if (cp_parser_non_integral_constant_expression (parser,
5149 NIC_NCC))
5150 {
5151 postfix_expression = error_mark_node;
5152 break;
5153 }
5154 /* Form the representation of the compound-literal. */
5155 postfix_expression
5156 = (finish_compound_literal
5157 (type, build_constructor (init_list_type_node,
5158 initializer_list)));
5159 break;
5160 }
5161 }
5162
5163 /* It must be a primary-expression. */
5164 postfix_expression
5165 = cp_parser_primary_expression (parser, address_p, cast_p,
5166 /*template_arg_p=*/false,
5167 &idk);
5168 }
5169 break;
5170 }
5171
5172 /* Keep looping until the postfix-expression is complete. */
5173 while (true)
5174 {
5175 if (idk == CP_ID_KIND_UNQUALIFIED
5176 && TREE_CODE (postfix_expression) == IDENTIFIER_NODE
5177 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_PAREN))
5178 /* It is not a Koenig lookup function call. */
5179 postfix_expression
5180 = unqualified_name_lookup_error (postfix_expression);
5181
5182 /* Peek at the next token. */
5183 token = cp_lexer_peek_token (parser->lexer);
5184
5185 switch (token->type)
5186 {
5187 case CPP_OPEN_SQUARE:
5188 postfix_expression
5189 = cp_parser_postfix_open_square_expression (parser,
5190 postfix_expression,
5191 false);
5192 idk = CP_ID_KIND_NONE;
5193 is_member_access = false;
5194 break;
5195
5196 case CPP_OPEN_PAREN:
5197 /* postfix-expression ( expression-list [opt] ) */
5198 {
5199 bool koenig_p;
5200 bool is_builtin_constant_p;
5201 bool saved_integral_constant_expression_p = false;
5202 bool saved_non_integral_constant_expression_p = false;
5203 VEC(tree,gc) *args;
5204
5205 is_member_access = false;
5206
5207 is_builtin_constant_p
5208 = DECL_IS_BUILTIN_CONSTANT_P (postfix_expression);
5209 if (is_builtin_constant_p)
5210 {
5211 /* The whole point of __builtin_constant_p is to allow
5212 non-constant expressions to appear as arguments. */
5213 saved_integral_constant_expression_p
5214 = parser->integral_constant_expression_p;
5215 saved_non_integral_constant_expression_p
5216 = parser->non_integral_constant_expression_p;
5217 parser->integral_constant_expression_p = false;
5218 }
5219 args = (cp_parser_parenthesized_expression_list
5220 (parser, non_attr,
5221 /*cast_p=*/false, /*allow_expansion_p=*/true,
5222 /*non_constant_p=*/NULL));
5223 if (is_builtin_constant_p)
5224 {
5225 parser->integral_constant_expression_p
5226 = saved_integral_constant_expression_p;
5227 parser->non_integral_constant_expression_p
5228 = saved_non_integral_constant_expression_p;
5229 }
5230
5231 if (args == NULL)
5232 {
5233 postfix_expression = error_mark_node;
5234 break;
5235 }
5236
5237 /* Function calls are not permitted in
5238 constant-expressions. */
5239 if (! builtin_valid_in_constant_expr_p (postfix_expression)
5240 && cp_parser_non_integral_constant_expression (parser,
5241 NIC_FUNC_CALL))
5242 {
5243 postfix_expression = error_mark_node;
5244 release_tree_vector (args);
5245 break;
5246 }
5247
5248 koenig_p = false;
5249 if (idk == CP_ID_KIND_UNQUALIFIED
5250 || idk == CP_ID_KIND_TEMPLATE_ID)
5251 {
5252 if (TREE_CODE (postfix_expression) == IDENTIFIER_NODE)
5253 {
5254 if (!VEC_empty (tree, args))
5255 {
5256 koenig_p = true;
5257 if (!any_type_dependent_arguments_p (args))
5258 postfix_expression
5259 = perform_koenig_lookup (postfix_expression, args,
5260 /*include_std=*/false);
5261 }
5262 else
5263 postfix_expression
5264 = unqualified_fn_lookup_error (postfix_expression);
5265 }
5266 /* We do not perform argument-dependent lookup if
5267 normal lookup finds a non-function, in accordance
5268 with the expected resolution of DR 218. */
5269 else if (!VEC_empty (tree, args)
5270 && is_overloaded_fn (postfix_expression))
5271 {
5272 tree fn = get_first_fn (postfix_expression);
5273 fn = STRIP_TEMPLATE (fn);
5274
5275 /* Do not do argument dependent lookup if regular
5276 lookup finds a member function or a block-scope
5277 function declaration. [basic.lookup.argdep]/3 */
5278 if (!DECL_FUNCTION_MEMBER_P (fn)
5279 && !DECL_LOCAL_FUNCTION_P (fn))
5280 {
5281 koenig_p = true;
5282 if (!any_type_dependent_arguments_p (args))
5283 postfix_expression
5284 = perform_koenig_lookup (postfix_expression, args,
5285 /*include_std=*/false);
5286 }
5287 }
5288 }
5289
5290 if (TREE_CODE (postfix_expression) == COMPONENT_REF)
5291 {
5292 tree instance = TREE_OPERAND (postfix_expression, 0);
5293 tree fn = TREE_OPERAND (postfix_expression, 1);
5294
5295 if (processing_template_decl
5296 && (type_dependent_expression_p (instance)
5297 || (!BASELINK_P (fn)
5298 && TREE_CODE (fn) != FIELD_DECL)
5299 || type_dependent_expression_p (fn)
5300 || any_type_dependent_arguments_p (args)))
5301 {
5302 postfix_expression
5303 = build_nt_call_vec (postfix_expression, args);
5304 release_tree_vector (args);
5305 break;
5306 }
5307
5308 if (BASELINK_P (fn))
5309 {
5310 postfix_expression
5311 = (build_new_method_call
5312 (instance, fn, &args, NULL_TREE,
5313 (idk == CP_ID_KIND_QUALIFIED
5314 ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL),
5315 /*fn_p=*/NULL,
5316 tf_warning_or_error));
5317 }
5318 else
5319 postfix_expression
5320 = finish_call_expr (postfix_expression, &args,
5321 /*disallow_virtual=*/false,
5322 /*koenig_p=*/false,
5323 tf_warning_or_error);
5324 }
5325 else if (TREE_CODE (postfix_expression) == OFFSET_REF
5326 || TREE_CODE (postfix_expression) == MEMBER_REF
5327 || TREE_CODE (postfix_expression) == DOTSTAR_EXPR)
5328 postfix_expression = (build_offset_ref_call_from_tree
5329 (postfix_expression, &args));
5330 else if (idk == CP_ID_KIND_QUALIFIED)
5331 /* A call to a static class member, or a namespace-scope
5332 function. */
5333 postfix_expression
5334 = finish_call_expr (postfix_expression, &args,
5335 /*disallow_virtual=*/true,
5336 koenig_p,
5337 tf_warning_or_error);
5338 else
5339 /* All other function calls. */
5340 postfix_expression
5341 = finish_call_expr (postfix_expression, &args,
5342 /*disallow_virtual=*/false,
5343 koenig_p,
5344 tf_warning_or_error);
5345
5346 /* The POSTFIX_EXPRESSION is certainly no longer an id. */
5347 idk = CP_ID_KIND_NONE;
5348
5349 release_tree_vector (args);
5350 }
5351 break;
5352
5353 case CPP_DOT:
5354 case CPP_DEREF:
5355 /* postfix-expression . template [opt] id-expression
5356 postfix-expression . pseudo-destructor-name
5357 postfix-expression -> template [opt] id-expression
5358 postfix-expression -> pseudo-destructor-name */
5359
5360 /* Consume the `.' or `->' operator. */
5361 cp_lexer_consume_token (parser->lexer);
5362
5363 postfix_expression
5364 = cp_parser_postfix_dot_deref_expression (parser, token->type,
5365 postfix_expression,
5366 false, &idk,
5367 token->location);
5368
5369 is_member_access = true;
5370 break;
5371
5372 case CPP_PLUS_PLUS:
5373 /* postfix-expression ++ */
5374 /* Consume the `++' token. */
5375 cp_lexer_consume_token (parser->lexer);
5376 /* Generate a representation for the complete expression. */
5377 postfix_expression
5378 = finish_increment_expr (postfix_expression,
5379 POSTINCREMENT_EXPR);
5380 /* Increments may not appear in constant-expressions. */
5381 if (cp_parser_non_integral_constant_expression (parser, NIC_INC))
5382 postfix_expression = error_mark_node;
5383 idk = CP_ID_KIND_NONE;
5384 is_member_access = false;
5385 break;
5386
5387 case CPP_MINUS_MINUS:
5388 /* postfix-expression -- */
5389 /* Consume the `--' token. */
5390 cp_lexer_consume_token (parser->lexer);
5391 /* Generate a representation for the complete expression. */
5392 postfix_expression
5393 = finish_increment_expr (postfix_expression,
5394 POSTDECREMENT_EXPR);
5395 /* Decrements may not appear in constant-expressions. */
5396 if (cp_parser_non_integral_constant_expression (parser, NIC_DEC))
5397 postfix_expression = error_mark_node;
5398 idk = CP_ID_KIND_NONE;
5399 is_member_access = false;
5400 break;
5401
5402 default:
5403 if (pidk_return != NULL)
5404 * pidk_return = idk;
5405 if (member_access_only_p)
5406 return is_member_access? postfix_expression : error_mark_node;
5407 else
5408 return postfix_expression;
5409 }
5410 }
5411
5412 /* We should never get here. */
5413 gcc_unreachable ();
5414 return error_mark_node;
5415 }
5416
5417 /* A subroutine of cp_parser_postfix_expression that also gets hijacked
5418 by cp_parser_builtin_offsetof. We're looking for
5419
5420 postfix-expression [ expression ]
5421
5422 FOR_OFFSETOF is set if we're being called in that context, which
5423 changes how we deal with integer constant expressions. */
5424
5425 static tree
5426 cp_parser_postfix_open_square_expression (cp_parser *parser,
5427 tree postfix_expression,
5428 bool for_offsetof)
5429 {
5430 tree index;
5431
5432 /* Consume the `[' token. */
5433 cp_lexer_consume_token (parser->lexer);
5434
5435 /* Parse the index expression. */
5436 /* ??? For offsetof, there is a question of what to allow here. If
5437 offsetof is not being used in an integral constant expression context,
5438 then we *could* get the right answer by computing the value at runtime.
5439 If we are in an integral constant expression context, then we might
5440 could accept any constant expression; hard to say without analysis.
5441 Rather than open the barn door too wide right away, allow only integer
5442 constant expressions here. */
5443 if (for_offsetof)
5444 index = cp_parser_constant_expression (parser, false, NULL);
5445 else
5446 index = cp_parser_expression (parser, /*cast_p=*/false, NULL);
5447
5448 /* Look for the closing `]'. */
5449 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
5450
5451 /* Build the ARRAY_REF. */
5452 postfix_expression = grok_array_decl (postfix_expression, index);
5453
5454 /* When not doing offsetof, array references are not permitted in
5455 constant-expressions. */
5456 if (!for_offsetof
5457 && (cp_parser_non_integral_constant_expression (parser, NIC_ARRAY_REF)))
5458 postfix_expression = error_mark_node;
5459
5460 return postfix_expression;
5461 }
5462
5463 /* A subroutine of cp_parser_postfix_expression that also gets hijacked
5464 by cp_parser_builtin_offsetof. We're looking for
5465
5466 postfix-expression . template [opt] id-expression
5467 postfix-expression . pseudo-destructor-name
5468 postfix-expression -> template [opt] id-expression
5469 postfix-expression -> pseudo-destructor-name
5470
5471 FOR_OFFSETOF is set if we're being called in that context. That sorta
5472 limits what of the above we'll actually accept, but nevermind.
5473 TOKEN_TYPE is the "." or "->" token, which will already have been
5474 removed from the stream. */
5475
5476 static tree
5477 cp_parser_postfix_dot_deref_expression (cp_parser *parser,
5478 enum cpp_ttype token_type,
5479 tree postfix_expression,
5480 bool for_offsetof, cp_id_kind *idk,
5481 location_t location)
5482 {
5483 tree name;
5484 bool dependent_p;
5485 bool pseudo_destructor_p;
5486 tree scope = NULL_TREE;
5487
5488 /* If this is a `->' operator, dereference the pointer. */
5489 if (token_type == CPP_DEREF)
5490 postfix_expression = build_x_arrow (postfix_expression);
5491 /* Check to see whether or not the expression is type-dependent. */
5492 dependent_p = type_dependent_expression_p (postfix_expression);
5493 /* The identifier following the `->' or `.' is not qualified. */
5494 parser->scope = NULL_TREE;
5495 parser->qualifying_scope = NULL_TREE;
5496 parser->object_scope = NULL_TREE;
5497 *idk = CP_ID_KIND_NONE;
5498
5499 /* Enter the scope corresponding to the type of the object
5500 given by the POSTFIX_EXPRESSION. */
5501 if (!dependent_p && TREE_TYPE (postfix_expression) != NULL_TREE)
5502 {
5503 scope = TREE_TYPE (postfix_expression);
5504 /* According to the standard, no expression should ever have
5505 reference type. Unfortunately, we do not currently match
5506 the standard in this respect in that our internal representation
5507 of an expression may have reference type even when the standard
5508 says it does not. Therefore, we have to manually obtain the
5509 underlying type here. */
5510 scope = non_reference (scope);
5511 /* The type of the POSTFIX_EXPRESSION must be complete. */
5512 if (scope == unknown_type_node)
5513 {
5514 error_at (location, "%qE does not have class type",
5515 postfix_expression);
5516 scope = NULL_TREE;
5517 }
5518 else
5519 scope = complete_type_or_else (scope, NULL_TREE);
5520 /* Let the name lookup machinery know that we are processing a
5521 class member access expression. */
5522 parser->context->object_type = scope;
5523 /* If something went wrong, we want to be able to discern that case,
5524 as opposed to the case where there was no SCOPE due to the type
5525 of expression being dependent. */
5526 if (!scope)
5527 scope = error_mark_node;
5528 /* If the SCOPE was erroneous, make the various semantic analysis
5529 functions exit quickly -- and without issuing additional error
5530 messages. */
5531 if (scope == error_mark_node)
5532 postfix_expression = error_mark_node;
5533 }
5534
5535 /* Assume this expression is not a pseudo-destructor access. */
5536 pseudo_destructor_p = false;
5537
5538 /* If the SCOPE is a scalar type, then, if this is a valid program,
5539 we must be looking at a pseudo-destructor-name. If POSTFIX_EXPRESSION
5540 is type dependent, it can be pseudo-destructor-name or something else.
5541 Try to parse it as pseudo-destructor-name first. */
5542 if ((scope && SCALAR_TYPE_P (scope)) || dependent_p)
5543 {
5544 tree s;
5545 tree type;
5546
5547 cp_parser_parse_tentatively (parser);
5548 /* Parse the pseudo-destructor-name. */
5549 s = NULL_TREE;
5550 cp_parser_pseudo_destructor_name (parser, &s, &type);
5551 if (dependent_p
5552 && (cp_parser_error_occurred (parser)
5553 || TREE_CODE (type) != TYPE_DECL
5554 || !SCALAR_TYPE_P (TREE_TYPE (type))))
5555 cp_parser_abort_tentative_parse (parser);
5556 else if (cp_parser_parse_definitely (parser))
5557 {
5558 pseudo_destructor_p = true;
5559 postfix_expression
5560 = finish_pseudo_destructor_expr (postfix_expression,
5561 s, TREE_TYPE (type));
5562 }
5563 }
5564
5565 if (!pseudo_destructor_p)
5566 {
5567 /* If the SCOPE is not a scalar type, we are looking at an
5568 ordinary class member access expression, rather than a
5569 pseudo-destructor-name. */
5570 bool template_p;
5571 cp_token *token = cp_lexer_peek_token (parser->lexer);
5572 /* Parse the id-expression. */
5573 name = (cp_parser_id_expression
5574 (parser,
5575 cp_parser_optional_template_keyword (parser),
5576 /*check_dependency_p=*/true,
5577 &template_p,
5578 /*declarator_p=*/false,
5579 /*optional_p=*/false));
5580 /* In general, build a SCOPE_REF if the member name is qualified.
5581 However, if the name was not dependent and has already been
5582 resolved; there is no need to build the SCOPE_REF. For example;
5583
5584 struct X { void f(); };
5585 template <typename T> void f(T* t) { t->X::f(); }
5586
5587 Even though "t" is dependent, "X::f" is not and has been resolved
5588 to a BASELINK; there is no need to include scope information. */
5589
5590 /* But we do need to remember that there was an explicit scope for
5591 virtual function calls. */
5592 if (parser->scope)
5593 *idk = CP_ID_KIND_QUALIFIED;
5594
5595 /* If the name is a template-id that names a type, we will get a
5596 TYPE_DECL here. That is invalid code. */
5597 if (TREE_CODE (name) == TYPE_DECL)
5598 {
5599 error_at (token->location, "invalid use of %qD", name);
5600 postfix_expression = error_mark_node;
5601 }
5602 else
5603 {
5604 if (name != error_mark_node && !BASELINK_P (name) && parser->scope)
5605 {
5606 name = build_qualified_name (/*type=*/NULL_TREE,
5607 parser->scope,
5608 name,
5609 template_p);
5610 parser->scope = NULL_TREE;
5611 parser->qualifying_scope = NULL_TREE;
5612 parser->object_scope = NULL_TREE;
5613 }
5614 if (scope && name && BASELINK_P (name))
5615 adjust_result_of_qualified_name_lookup
5616 (name, BINFO_TYPE (BASELINK_ACCESS_BINFO (name)), scope);
5617 postfix_expression
5618 = finish_class_member_access_expr (postfix_expression, name,
5619 template_p,
5620 tf_warning_or_error);
5621 }
5622 }
5623
5624 /* We no longer need to look up names in the scope of the object on
5625 the left-hand side of the `.' or `->' operator. */
5626 parser->context->object_type = NULL_TREE;
5627
5628 /* Outside of offsetof, these operators may not appear in
5629 constant-expressions. */
5630 if (!for_offsetof
5631 && (cp_parser_non_integral_constant_expression
5632 (parser, token_type == CPP_DEREF ? NIC_ARROW : NIC_POINT)))
5633 postfix_expression = error_mark_node;
5634
5635 return postfix_expression;
5636 }
5637
5638 /* Parse a parenthesized expression-list.
5639
5640 expression-list:
5641 assignment-expression
5642 expression-list, assignment-expression
5643
5644 attribute-list:
5645 expression-list
5646 identifier
5647 identifier, expression-list
5648
5649 CAST_P is true if this expression is the target of a cast.
5650
5651 ALLOW_EXPANSION_P is true if this expression allows expansion of an
5652 argument pack.
5653
5654 Returns a vector of trees. Each element is a representation of an
5655 assignment-expression. NULL is returned if the ( and or ) are
5656 missing. An empty, but allocated, vector is returned on no
5657 expressions. The parentheses are eaten. IS_ATTRIBUTE_LIST is id_attr
5658 if we are parsing an attribute list for an attribute that wants a
5659 plain identifier argument, normal_attr for an attribute that wants
5660 an expression, or non_attr if we aren't parsing an attribute list. If
5661 NON_CONSTANT_P is non-NULL, *NON_CONSTANT_P indicates whether or
5662 not all of the expressions in the list were constant. */
5663
5664 static VEC(tree,gc) *
5665 cp_parser_parenthesized_expression_list (cp_parser* parser,
5666 int is_attribute_list,
5667 bool cast_p,
5668 bool allow_expansion_p,
5669 bool *non_constant_p)
5670 {
5671 VEC(tree,gc) *expression_list;
5672 bool fold_expr_p = is_attribute_list != non_attr;
5673 tree identifier = NULL_TREE;
5674 bool saved_greater_than_is_operator_p;
5675
5676 /* Assume all the expressions will be constant. */
5677 if (non_constant_p)
5678 *non_constant_p = false;
5679
5680 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
5681 return NULL;
5682
5683 expression_list = make_tree_vector ();
5684
5685 /* Within a parenthesized expression, a `>' token is always
5686 the greater-than operator. */
5687 saved_greater_than_is_operator_p
5688 = parser->greater_than_is_operator_p;
5689 parser->greater_than_is_operator_p = true;
5690
5691 /* Consume expressions until there are no more. */
5692 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN))
5693 while (true)
5694 {
5695 tree expr;
5696
5697 /* At the beginning of attribute lists, check to see if the
5698 next token is an identifier. */
5699 if (is_attribute_list == id_attr
5700 && cp_lexer_peek_token (parser->lexer)->type == CPP_NAME)
5701 {
5702 cp_token *token;
5703
5704 /* Consume the identifier. */
5705 token = cp_lexer_consume_token (parser->lexer);
5706 /* Save the identifier. */
5707 identifier = token->u.value;
5708 }
5709 else
5710 {
5711 bool expr_non_constant_p;
5712
5713 /* Parse the next assignment-expression. */
5714 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
5715 {
5716 /* A braced-init-list. */
5717 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
5718 expr = cp_parser_braced_list (parser, &expr_non_constant_p);
5719 if (non_constant_p && expr_non_constant_p)
5720 *non_constant_p = true;
5721 }
5722 else if (non_constant_p)
5723 {
5724 expr = (cp_parser_constant_expression
5725 (parser, /*allow_non_constant_p=*/true,
5726 &expr_non_constant_p));
5727 if (expr_non_constant_p)
5728 *non_constant_p = true;
5729 }
5730 else
5731 expr = cp_parser_assignment_expression (parser, cast_p, NULL);
5732
5733 if (fold_expr_p)
5734 expr = fold_non_dependent_expr (expr);
5735
5736 /* If we have an ellipsis, then this is an expression
5737 expansion. */
5738 if (allow_expansion_p
5739 && cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
5740 {
5741 /* Consume the `...'. */
5742 cp_lexer_consume_token (parser->lexer);
5743
5744 /* Build the argument pack. */
5745 expr = make_pack_expansion (expr);
5746 }
5747
5748 /* Add it to the list. We add error_mark_node
5749 expressions to the list, so that we can still tell if
5750 the correct form for a parenthesized expression-list
5751 is found. That gives better errors. */
5752 VEC_safe_push (tree, gc, expression_list, expr);
5753
5754 if (expr == error_mark_node)
5755 goto skip_comma;
5756 }
5757
5758 /* After the first item, attribute lists look the same as
5759 expression lists. */
5760 is_attribute_list = non_attr;
5761
5762 get_comma:;
5763 /* If the next token isn't a `,', then we are done. */
5764 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
5765 break;
5766
5767 /* Otherwise, consume the `,' and keep going. */
5768 cp_lexer_consume_token (parser->lexer);
5769 }
5770
5771 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
5772 {
5773 int ending;
5774
5775 skip_comma:;
5776 /* We try and resync to an unnested comma, as that will give the
5777 user better diagnostics. */
5778 ending = cp_parser_skip_to_closing_parenthesis (parser,
5779 /*recovering=*/true,
5780 /*or_comma=*/true,
5781 /*consume_paren=*/true);
5782 if (ending < 0)
5783 goto get_comma;
5784 if (!ending)
5785 {
5786 parser->greater_than_is_operator_p
5787 = saved_greater_than_is_operator_p;
5788 return NULL;
5789 }
5790 }
5791
5792 parser->greater_than_is_operator_p
5793 = saved_greater_than_is_operator_p;
5794
5795 if (identifier)
5796 VEC_safe_insert (tree, gc, expression_list, 0, identifier);
5797
5798 return expression_list;
5799 }
5800
5801 /* Parse a pseudo-destructor-name.
5802
5803 pseudo-destructor-name:
5804 :: [opt] nested-name-specifier [opt] type-name :: ~ type-name
5805 :: [opt] nested-name-specifier template template-id :: ~ type-name
5806 :: [opt] nested-name-specifier [opt] ~ type-name
5807
5808 If either of the first two productions is used, sets *SCOPE to the
5809 TYPE specified before the final `::'. Otherwise, *SCOPE is set to
5810 NULL_TREE. *TYPE is set to the TYPE_DECL for the final type-name,
5811 or ERROR_MARK_NODE if the parse fails. */
5812
5813 static void
5814 cp_parser_pseudo_destructor_name (cp_parser* parser,
5815 tree* scope,
5816 tree* type)
5817 {
5818 bool nested_name_specifier_p;
5819
5820 /* Assume that things will not work out. */
5821 *type = error_mark_node;
5822
5823 /* Look for the optional `::' operator. */
5824 cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/true);
5825 /* Look for the optional nested-name-specifier. */
5826 nested_name_specifier_p
5827 = (cp_parser_nested_name_specifier_opt (parser,
5828 /*typename_keyword_p=*/false,
5829 /*check_dependency_p=*/true,
5830 /*type_p=*/false,
5831 /*is_declaration=*/false)
5832 != NULL_TREE);
5833 /* Now, if we saw a nested-name-specifier, we might be doing the
5834 second production. */
5835 if (nested_name_specifier_p
5836 && cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
5837 {
5838 /* Consume the `template' keyword. */
5839 cp_lexer_consume_token (parser->lexer);
5840 /* Parse the template-id. */
5841 cp_parser_template_id (parser,
5842 /*template_keyword_p=*/true,
5843 /*check_dependency_p=*/false,
5844 /*is_declaration=*/true);
5845 /* Look for the `::' token. */
5846 cp_parser_require (parser, CPP_SCOPE, RT_SCOPE);
5847 }
5848 /* If the next token is not a `~', then there might be some
5849 additional qualification. */
5850 else if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMPL))
5851 {
5852 /* At this point, we're looking for "type-name :: ~". The type-name
5853 must not be a class-name, since this is a pseudo-destructor. So,
5854 it must be either an enum-name, or a typedef-name -- both of which
5855 are just identifiers. So, we peek ahead to check that the "::"
5856 and "~" tokens are present; if they are not, then we can avoid
5857 calling type_name. */
5858 if (cp_lexer_peek_token (parser->lexer)->type != CPP_NAME
5859 || cp_lexer_peek_nth_token (parser->lexer, 2)->type != CPP_SCOPE
5860 || cp_lexer_peek_nth_token (parser->lexer, 3)->type != CPP_COMPL)
5861 {
5862 cp_parser_error (parser, "non-scalar type");
5863 return;
5864 }
5865
5866 /* Look for the type-name. */
5867 *scope = TREE_TYPE (cp_parser_nonclass_name (parser));
5868 if (*scope == error_mark_node)
5869 return;
5870
5871 /* Look for the `::' token. */
5872 cp_parser_require (parser, CPP_SCOPE, RT_SCOPE);
5873 }
5874 else
5875 *scope = NULL_TREE;
5876
5877 /* Look for the `~'. */
5878 cp_parser_require (parser, CPP_COMPL, RT_COMPL);
5879 /* Look for the type-name again. We are not responsible for
5880 checking that it matches the first type-name. */
5881 *type = cp_parser_nonclass_name (parser);
5882 }
5883
5884 /* Parse a unary-expression.
5885
5886 unary-expression:
5887 postfix-expression
5888 ++ cast-expression
5889 -- cast-expression
5890 unary-operator cast-expression
5891 sizeof unary-expression
5892 sizeof ( type-id )
5893 alignof ( type-id ) [C++0x]
5894 new-expression
5895 delete-expression
5896
5897 GNU Extensions:
5898
5899 unary-expression:
5900 __extension__ cast-expression
5901 __alignof__ unary-expression
5902 __alignof__ ( type-id )
5903 alignof unary-expression [C++0x]
5904 __real__ cast-expression
5905 __imag__ cast-expression
5906 && identifier
5907
5908 ADDRESS_P is true iff the unary-expression is appearing as the
5909 operand of the `&' operator. CAST_P is true if this expression is
5910 the target of a cast.
5911
5912 Returns a representation of the expression. */
5913
5914 static tree
5915 cp_parser_unary_expression (cp_parser *parser, bool address_p, bool cast_p,
5916 cp_id_kind * pidk)
5917 {
5918 cp_token *token;
5919 enum tree_code unary_operator;
5920
5921 /* Peek at the next token. */
5922 token = cp_lexer_peek_token (parser->lexer);
5923 /* Some keywords give away the kind of expression. */
5924 if (token->type == CPP_KEYWORD)
5925 {
5926 enum rid keyword = token->keyword;
5927
5928 switch (keyword)
5929 {
5930 case RID_ALIGNOF:
5931 case RID_SIZEOF:
5932 {
5933 tree operand;
5934 enum tree_code op;
5935
5936 op = keyword == RID_ALIGNOF ? ALIGNOF_EXPR : SIZEOF_EXPR;
5937 /* Consume the token. */
5938 cp_lexer_consume_token (parser->lexer);
5939 /* Parse the operand. */
5940 operand = cp_parser_sizeof_operand (parser, keyword);
5941
5942 if (TYPE_P (operand))
5943 return cxx_sizeof_or_alignof_type (operand, op, true);
5944 else
5945 {
5946 /* ISO C++ defines alignof only with types, not with
5947 expressions. So pedwarn if alignof is used with a non-
5948 type expression. However, __alignof__ is ok. */
5949 if (!strcmp (IDENTIFIER_POINTER (token->u.value), "alignof"))
5950 pedwarn (token->location, OPT_pedantic,
5951 "ISO C++ does not allow %<alignof%> "
5952 "with a non-type");
5953
5954 return cxx_sizeof_or_alignof_expr (operand, op, true);
5955 }
5956 }
5957
5958 case RID_NEW:
5959 return cp_parser_new_expression (parser);
5960
5961 case RID_DELETE:
5962 return cp_parser_delete_expression (parser);
5963
5964 case RID_EXTENSION:
5965 {
5966 /* The saved value of the PEDANTIC flag. */
5967 int saved_pedantic;
5968 tree expr;
5969
5970 /* Save away the PEDANTIC flag. */
5971 cp_parser_extension_opt (parser, &saved_pedantic);
5972 /* Parse the cast-expression. */
5973 expr = cp_parser_simple_cast_expression (parser);
5974 /* Restore the PEDANTIC flag. */
5975 pedantic = saved_pedantic;
5976
5977 return expr;
5978 }
5979
5980 case RID_REALPART:
5981 case RID_IMAGPART:
5982 {
5983 tree expression;
5984
5985 /* Consume the `__real__' or `__imag__' token. */
5986 cp_lexer_consume_token (parser->lexer);
5987 /* Parse the cast-expression. */
5988 expression = cp_parser_simple_cast_expression (parser);
5989 /* Create the complete representation. */
5990 return build_x_unary_op ((keyword == RID_REALPART
5991 ? REALPART_EXPR : IMAGPART_EXPR),
5992 expression,
5993 tf_warning_or_error);
5994 }
5995 break;
5996
5997 case RID_NOEXCEPT:
5998 {
5999 tree expr;
6000 const char *saved_message;
6001 bool saved_integral_constant_expression_p;
6002 bool saved_non_integral_constant_expression_p;
6003 bool saved_greater_than_is_operator_p;
6004
6005 cp_lexer_consume_token (parser->lexer);
6006 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
6007
6008 saved_message = parser->type_definition_forbidden_message;
6009 parser->type_definition_forbidden_message
6010 = G_("types may not be defined in %<noexcept%> expressions");
6011
6012 saved_integral_constant_expression_p
6013 = parser->integral_constant_expression_p;
6014 saved_non_integral_constant_expression_p
6015 = parser->non_integral_constant_expression_p;
6016 parser->integral_constant_expression_p = false;
6017
6018 saved_greater_than_is_operator_p
6019 = parser->greater_than_is_operator_p;
6020 parser->greater_than_is_operator_p = true;
6021
6022 ++cp_unevaluated_operand;
6023 ++c_inhibit_evaluation_warnings;
6024 expr = cp_parser_expression (parser, false, NULL);
6025 --c_inhibit_evaluation_warnings;
6026 --cp_unevaluated_operand;
6027
6028 parser->greater_than_is_operator_p
6029 = saved_greater_than_is_operator_p;
6030
6031 parser->integral_constant_expression_p
6032 = saved_integral_constant_expression_p;
6033 parser->non_integral_constant_expression_p
6034 = saved_non_integral_constant_expression_p;
6035
6036 parser->type_definition_forbidden_message = saved_message;
6037
6038 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
6039 return finish_noexcept_expr (expr, tf_warning_or_error);
6040 }
6041
6042 default:
6043 break;
6044 }
6045 }
6046
6047 /* Look for the `:: new' and `:: delete', which also signal the
6048 beginning of a new-expression, or delete-expression,
6049 respectively. If the next token is `::', then it might be one of
6050 these. */
6051 if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
6052 {
6053 enum rid keyword;
6054
6055 /* See if the token after the `::' is one of the keywords in
6056 which we're interested. */
6057 keyword = cp_lexer_peek_nth_token (parser->lexer, 2)->keyword;
6058 /* If it's `new', we have a new-expression. */
6059 if (keyword == RID_NEW)
6060 return cp_parser_new_expression (parser);
6061 /* Similarly, for `delete'. */
6062 else if (keyword == RID_DELETE)
6063 return cp_parser_delete_expression (parser);
6064 }
6065
6066 /* Look for a unary operator. */
6067 unary_operator = cp_parser_unary_operator (token);
6068 /* The `++' and `--' operators can be handled similarly, even though
6069 they are not technically unary-operators in the grammar. */
6070 if (unary_operator == ERROR_MARK)
6071 {
6072 if (token->type == CPP_PLUS_PLUS)
6073 unary_operator = PREINCREMENT_EXPR;
6074 else if (token->type == CPP_MINUS_MINUS)
6075 unary_operator = PREDECREMENT_EXPR;
6076 /* Handle the GNU address-of-label extension. */
6077 else if (cp_parser_allow_gnu_extensions_p (parser)
6078 && token->type == CPP_AND_AND)
6079 {
6080 tree identifier;
6081 tree expression;
6082 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
6083
6084 /* Consume the '&&' token. */
6085 cp_lexer_consume_token (parser->lexer);
6086 /* Look for the identifier. */
6087 identifier = cp_parser_identifier (parser);
6088 /* Create an expression representing the address. */
6089 expression = finish_label_address_expr (identifier, loc);
6090 if (cp_parser_non_integral_constant_expression (parser,
6091 NIC_ADDR_LABEL))
6092 expression = error_mark_node;
6093 return expression;
6094 }
6095 }
6096 if (unary_operator != ERROR_MARK)
6097 {
6098 tree cast_expression;
6099 tree expression = error_mark_node;
6100 non_integral_constant non_constant_p = NIC_NONE;
6101
6102 /* Consume the operator token. */
6103 token = cp_lexer_consume_token (parser->lexer);
6104 /* Parse the cast-expression. */
6105 cast_expression
6106 = cp_parser_cast_expression (parser,
6107 unary_operator == ADDR_EXPR,
6108 /*cast_p=*/false, pidk);
6109 /* Now, build an appropriate representation. */
6110 switch (unary_operator)
6111 {
6112 case INDIRECT_REF:
6113 non_constant_p = NIC_STAR;
6114 expression = build_x_indirect_ref (cast_expression, RO_UNARY_STAR,
6115 tf_warning_or_error);
6116 break;
6117
6118 case ADDR_EXPR:
6119 non_constant_p = NIC_ADDR;
6120 /* Fall through. */
6121 case BIT_NOT_EXPR:
6122 expression = build_x_unary_op (unary_operator, cast_expression,
6123 tf_warning_or_error);
6124 break;
6125
6126 case PREINCREMENT_EXPR:
6127 case PREDECREMENT_EXPR:
6128 non_constant_p = unary_operator == PREINCREMENT_EXPR
6129 ? NIC_PREINCREMENT : NIC_PREDECREMENT;
6130 /* Fall through. */
6131 case UNARY_PLUS_EXPR:
6132 case NEGATE_EXPR:
6133 case TRUTH_NOT_EXPR:
6134 expression = finish_unary_op_expr (unary_operator, cast_expression);
6135 break;
6136
6137 default:
6138 gcc_unreachable ();
6139 }
6140
6141 if (non_constant_p != NIC_NONE
6142 && cp_parser_non_integral_constant_expression (parser,
6143 non_constant_p))
6144 expression = error_mark_node;
6145
6146 return expression;
6147 }
6148
6149 return cp_parser_postfix_expression (parser, address_p, cast_p,
6150 /*member_access_only_p=*/false,
6151 pidk);
6152 }
6153
6154 /* Returns ERROR_MARK if TOKEN is not a unary-operator. If TOKEN is a
6155 unary-operator, the corresponding tree code is returned. */
6156
6157 static enum tree_code
6158 cp_parser_unary_operator (cp_token* token)
6159 {
6160 switch (token->type)
6161 {
6162 case CPP_MULT:
6163 return INDIRECT_REF;
6164
6165 case CPP_AND:
6166 return ADDR_EXPR;
6167
6168 case CPP_PLUS:
6169 return UNARY_PLUS_EXPR;
6170
6171 case CPP_MINUS:
6172 return NEGATE_EXPR;
6173
6174 case CPP_NOT:
6175 return TRUTH_NOT_EXPR;
6176
6177 case CPP_COMPL:
6178 return BIT_NOT_EXPR;
6179
6180 default:
6181 return ERROR_MARK;
6182 }
6183 }
6184
6185 /* Parse a new-expression.
6186
6187 new-expression:
6188 :: [opt] new new-placement [opt] new-type-id new-initializer [opt]
6189 :: [opt] new new-placement [opt] ( type-id ) new-initializer [opt]
6190
6191 Returns a representation of the expression. */
6192
6193 static tree
6194 cp_parser_new_expression (cp_parser* parser)
6195 {
6196 bool global_scope_p;
6197 VEC(tree,gc) *placement;
6198 tree type;
6199 VEC(tree,gc) *initializer;
6200 tree nelts;
6201 tree ret;
6202
6203 /* Look for the optional `::' operator. */
6204 global_scope_p
6205 = (cp_parser_global_scope_opt (parser,
6206 /*current_scope_valid_p=*/false)
6207 != NULL_TREE);
6208 /* Look for the `new' operator. */
6209 cp_parser_require_keyword (parser, RID_NEW, RT_NEW);
6210 /* There's no easy way to tell a new-placement from the
6211 `( type-id )' construct. */
6212 cp_parser_parse_tentatively (parser);
6213 /* Look for a new-placement. */
6214 placement = cp_parser_new_placement (parser);
6215 /* If that didn't work out, there's no new-placement. */
6216 if (!cp_parser_parse_definitely (parser))
6217 {
6218 if (placement != NULL)
6219 release_tree_vector (placement);
6220 placement = NULL;
6221 }
6222
6223 /* If the next token is a `(', then we have a parenthesized
6224 type-id. */
6225 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
6226 {
6227 cp_token *token;
6228 /* Consume the `('. */
6229 cp_lexer_consume_token (parser->lexer);
6230 /* Parse the type-id. */
6231 type = cp_parser_type_id (parser);
6232 /* Look for the closing `)'. */
6233 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
6234 token = cp_lexer_peek_token (parser->lexer);
6235 /* There should not be a direct-new-declarator in this production,
6236 but GCC used to allowed this, so we check and emit a sensible error
6237 message for this case. */
6238 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
6239 {
6240 error_at (token->location,
6241 "array bound forbidden after parenthesized type-id");
6242 inform (token->location,
6243 "try removing the parentheses around the type-id");
6244 cp_parser_direct_new_declarator (parser);
6245 }
6246 nelts = NULL_TREE;
6247 }
6248 /* Otherwise, there must be a new-type-id. */
6249 else
6250 type = cp_parser_new_type_id (parser, &nelts);
6251
6252 /* If the next token is a `(' or '{', then we have a new-initializer. */
6253 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN)
6254 || cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
6255 initializer = cp_parser_new_initializer (parser);
6256 else
6257 initializer = NULL;
6258
6259 /* A new-expression may not appear in an integral constant
6260 expression. */
6261 if (cp_parser_non_integral_constant_expression (parser, NIC_NEW))
6262 ret = error_mark_node;
6263 else
6264 {
6265 /* Create a representation of the new-expression. */
6266 ret = build_new (&placement, type, nelts, &initializer, global_scope_p,
6267 tf_warning_or_error);
6268 }
6269
6270 if (placement != NULL)
6271 release_tree_vector (placement);
6272 if (initializer != NULL)
6273 release_tree_vector (initializer);
6274
6275 return ret;
6276 }
6277
6278 /* Parse a new-placement.
6279
6280 new-placement:
6281 ( expression-list )
6282
6283 Returns the same representation as for an expression-list. */
6284
6285 static VEC(tree,gc) *
6286 cp_parser_new_placement (cp_parser* parser)
6287 {
6288 VEC(tree,gc) *expression_list;
6289
6290 /* Parse the expression-list. */
6291 expression_list = (cp_parser_parenthesized_expression_list
6292 (parser, non_attr, /*cast_p=*/false,
6293 /*allow_expansion_p=*/true,
6294 /*non_constant_p=*/NULL));
6295
6296 return expression_list;
6297 }
6298
6299 /* Parse a new-type-id.
6300
6301 new-type-id:
6302 type-specifier-seq new-declarator [opt]
6303
6304 Returns the TYPE allocated. If the new-type-id indicates an array
6305 type, *NELTS is set to the number of elements in the last array
6306 bound; the TYPE will not include the last array bound. */
6307
6308 static tree
6309 cp_parser_new_type_id (cp_parser* parser, tree *nelts)
6310 {
6311 cp_decl_specifier_seq type_specifier_seq;
6312 cp_declarator *new_declarator;
6313 cp_declarator *declarator;
6314 cp_declarator *outer_declarator;
6315 const char *saved_message;
6316 tree type;
6317
6318 /* The type-specifier sequence must not contain type definitions.
6319 (It cannot contain declarations of new types either, but if they
6320 are not definitions we will catch that because they are not
6321 complete.) */
6322 saved_message = parser->type_definition_forbidden_message;
6323 parser->type_definition_forbidden_message
6324 = G_("types may not be defined in a new-type-id");
6325 /* Parse the type-specifier-seq. */
6326 cp_parser_type_specifier_seq (parser, /*is_declaration=*/false,
6327 /*is_trailing_return=*/false,
6328 &type_specifier_seq);
6329 /* Restore the old message. */
6330 parser->type_definition_forbidden_message = saved_message;
6331 /* Parse the new-declarator. */
6332 new_declarator = cp_parser_new_declarator_opt (parser);
6333
6334 /* Determine the number of elements in the last array dimension, if
6335 any. */
6336 *nelts = NULL_TREE;
6337 /* Skip down to the last array dimension. */
6338 declarator = new_declarator;
6339 outer_declarator = NULL;
6340 while (declarator && (declarator->kind == cdk_pointer
6341 || declarator->kind == cdk_ptrmem))
6342 {
6343 outer_declarator = declarator;
6344 declarator = declarator->declarator;
6345 }
6346 while (declarator
6347 && declarator->kind == cdk_array
6348 && declarator->declarator
6349 && declarator->declarator->kind == cdk_array)
6350 {
6351 outer_declarator = declarator;
6352 declarator = declarator->declarator;
6353 }
6354
6355 if (declarator && declarator->kind == cdk_array)
6356 {
6357 *nelts = declarator->u.array.bounds;
6358 if (*nelts == error_mark_node)
6359 *nelts = integer_one_node;
6360
6361 if (outer_declarator)
6362 outer_declarator->declarator = declarator->declarator;
6363 else
6364 new_declarator = NULL;
6365 }
6366
6367 type = groktypename (&type_specifier_seq, new_declarator, false);
6368 return type;
6369 }
6370
6371 /* Parse an (optional) new-declarator.
6372
6373 new-declarator:
6374 ptr-operator new-declarator [opt]
6375 direct-new-declarator
6376
6377 Returns the declarator. */
6378
6379 static cp_declarator *
6380 cp_parser_new_declarator_opt (cp_parser* parser)
6381 {
6382 enum tree_code code;
6383 tree type;
6384 cp_cv_quals cv_quals;
6385
6386 /* We don't know if there's a ptr-operator next, or not. */
6387 cp_parser_parse_tentatively (parser);
6388 /* Look for a ptr-operator. */
6389 code = cp_parser_ptr_operator (parser, &type, &cv_quals);
6390 /* If that worked, look for more new-declarators. */
6391 if (cp_parser_parse_definitely (parser))
6392 {
6393 cp_declarator *declarator;
6394
6395 /* Parse another optional declarator. */
6396 declarator = cp_parser_new_declarator_opt (parser);
6397
6398 return cp_parser_make_indirect_declarator
6399 (code, type, cv_quals, declarator);
6400 }
6401
6402 /* If the next token is a `[', there is a direct-new-declarator. */
6403 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
6404 return cp_parser_direct_new_declarator (parser);
6405
6406 return NULL;
6407 }
6408
6409 /* Parse a direct-new-declarator.
6410
6411 direct-new-declarator:
6412 [ expression ]
6413 direct-new-declarator [constant-expression]
6414
6415 */
6416
6417 static cp_declarator *
6418 cp_parser_direct_new_declarator (cp_parser* parser)
6419 {
6420 cp_declarator *declarator = NULL;
6421
6422 while (true)
6423 {
6424 tree expression;
6425
6426 /* Look for the opening `['. */
6427 cp_parser_require (parser, CPP_OPEN_SQUARE, RT_OPEN_SQUARE);
6428 /* The first expression is not required to be constant. */
6429 if (!declarator)
6430 {
6431 cp_token *token = cp_lexer_peek_token (parser->lexer);
6432 expression = cp_parser_expression (parser, /*cast_p=*/false, NULL);
6433 /* The standard requires that the expression have integral
6434 type. DR 74 adds enumeration types. We believe that the
6435 real intent is that these expressions be handled like the
6436 expression in a `switch' condition, which also allows
6437 classes with a single conversion to integral or
6438 enumeration type. */
6439 if (!processing_template_decl)
6440 {
6441 expression
6442 = build_expr_type_conversion (WANT_INT | WANT_ENUM,
6443 expression,
6444 /*complain=*/true);
6445 if (!expression)
6446 {
6447 error_at (token->location,
6448 "expression in new-declarator must have integral "
6449 "or enumeration type");
6450 expression = error_mark_node;
6451 }
6452 }
6453 }
6454 /* But all the other expressions must be. */
6455 else
6456 expression
6457 = cp_parser_constant_expression (parser,
6458 /*allow_non_constant=*/false,
6459 NULL);
6460 /* Look for the closing `]'. */
6461 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
6462
6463 /* Add this bound to the declarator. */
6464 declarator = make_array_declarator (declarator, expression);
6465
6466 /* If the next token is not a `[', then there are no more
6467 bounds. */
6468 if (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_SQUARE))
6469 break;
6470 }
6471
6472 return declarator;
6473 }
6474
6475 /* Parse a new-initializer.
6476
6477 new-initializer:
6478 ( expression-list [opt] )
6479 braced-init-list
6480
6481 Returns a representation of the expression-list. */
6482
6483 static VEC(tree,gc) *
6484 cp_parser_new_initializer (cp_parser* parser)
6485 {
6486 VEC(tree,gc) *expression_list;
6487
6488 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
6489 {
6490 tree t;
6491 bool expr_non_constant_p;
6492 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
6493 t = cp_parser_braced_list (parser, &expr_non_constant_p);
6494 CONSTRUCTOR_IS_DIRECT_INIT (t) = 1;
6495 expression_list = make_tree_vector_single (t);
6496 }
6497 else
6498 expression_list = (cp_parser_parenthesized_expression_list
6499 (parser, non_attr, /*cast_p=*/false,
6500 /*allow_expansion_p=*/true,
6501 /*non_constant_p=*/NULL));
6502
6503 return expression_list;
6504 }
6505
6506 /* Parse a delete-expression.
6507
6508 delete-expression:
6509 :: [opt] delete cast-expression
6510 :: [opt] delete [ ] cast-expression
6511
6512 Returns a representation of the expression. */
6513
6514 static tree
6515 cp_parser_delete_expression (cp_parser* parser)
6516 {
6517 bool global_scope_p;
6518 bool array_p;
6519 tree expression;
6520
6521 /* Look for the optional `::' operator. */
6522 global_scope_p
6523 = (cp_parser_global_scope_opt (parser,
6524 /*current_scope_valid_p=*/false)
6525 != NULL_TREE);
6526 /* Look for the `delete' keyword. */
6527 cp_parser_require_keyword (parser, RID_DELETE, RT_DELETE);
6528 /* See if the array syntax is in use. */
6529 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
6530 {
6531 /* Consume the `[' token. */
6532 cp_lexer_consume_token (parser->lexer);
6533 /* Look for the `]' token. */
6534 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
6535 /* Remember that this is the `[]' construct. */
6536 array_p = true;
6537 }
6538 else
6539 array_p = false;
6540
6541 /* Parse the cast-expression. */
6542 expression = cp_parser_simple_cast_expression (parser);
6543
6544 /* A delete-expression may not appear in an integral constant
6545 expression. */
6546 if (cp_parser_non_integral_constant_expression (parser, NIC_DEL))
6547 return error_mark_node;
6548
6549 return delete_sanity (expression, NULL_TREE, array_p, global_scope_p);
6550 }
6551
6552 /* Returns true if TOKEN may start a cast-expression and false
6553 otherwise. */
6554
6555 static bool
6556 cp_parser_token_starts_cast_expression (cp_token *token)
6557 {
6558 switch (token->type)
6559 {
6560 case CPP_COMMA:
6561 case CPP_SEMICOLON:
6562 case CPP_QUERY:
6563 case CPP_COLON:
6564 case CPP_CLOSE_SQUARE:
6565 case CPP_CLOSE_PAREN:
6566 case CPP_CLOSE_BRACE:
6567 case CPP_DOT:
6568 case CPP_DOT_STAR:
6569 case CPP_DEREF:
6570 case CPP_DEREF_STAR:
6571 case CPP_DIV:
6572 case CPP_MOD:
6573 case CPP_LSHIFT:
6574 case CPP_RSHIFT:
6575 case CPP_LESS:
6576 case CPP_GREATER:
6577 case CPP_LESS_EQ:
6578 case CPP_GREATER_EQ:
6579 case CPP_EQ_EQ:
6580 case CPP_NOT_EQ:
6581 case CPP_EQ:
6582 case CPP_MULT_EQ:
6583 case CPP_DIV_EQ:
6584 case CPP_MOD_EQ:
6585 case CPP_PLUS_EQ:
6586 case CPP_MINUS_EQ:
6587 case CPP_RSHIFT_EQ:
6588 case CPP_LSHIFT_EQ:
6589 case CPP_AND_EQ:
6590 case CPP_XOR_EQ:
6591 case CPP_OR_EQ:
6592 case CPP_XOR:
6593 case CPP_OR:
6594 case CPP_OR_OR:
6595 case CPP_EOF:
6596 return false;
6597
6598 /* '[' may start a primary-expression in obj-c++. */
6599 case CPP_OPEN_SQUARE:
6600 return c_dialect_objc ();
6601
6602 default:
6603 return true;
6604 }
6605 }
6606
6607 /* Parse a cast-expression.
6608
6609 cast-expression:
6610 unary-expression
6611 ( type-id ) cast-expression
6612
6613 ADDRESS_P is true iff the unary-expression is appearing as the
6614 operand of the `&' operator. CAST_P is true if this expression is
6615 the target of a cast.
6616
6617 Returns a representation of the expression. */
6618
6619 static tree
6620 cp_parser_cast_expression (cp_parser *parser, bool address_p, bool cast_p,
6621 cp_id_kind * pidk)
6622 {
6623 /* If it's a `(', then we might be looking at a cast. */
6624 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
6625 {
6626 tree type = NULL_TREE;
6627 tree expr = NULL_TREE;
6628 bool compound_literal_p;
6629 const char *saved_message;
6630
6631 /* There's no way to know yet whether or not this is a cast.
6632 For example, `(int (3))' is a unary-expression, while `(int)
6633 3' is a cast. So, we resort to parsing tentatively. */
6634 cp_parser_parse_tentatively (parser);
6635 /* Types may not be defined in a cast. */
6636 saved_message = parser->type_definition_forbidden_message;
6637 parser->type_definition_forbidden_message
6638 = G_("types may not be defined in casts");
6639 /* Consume the `('. */
6640 cp_lexer_consume_token (parser->lexer);
6641 /* A very tricky bit is that `(struct S) { 3 }' is a
6642 compound-literal (which we permit in C++ as an extension).
6643 But, that construct is not a cast-expression -- it is a
6644 postfix-expression. (The reason is that `(struct S) { 3 }.i'
6645 is legal; if the compound-literal were a cast-expression,
6646 you'd need an extra set of parentheses.) But, if we parse
6647 the type-id, and it happens to be a class-specifier, then we
6648 will commit to the parse at that point, because we cannot
6649 undo the action that is done when creating a new class. So,
6650 then we cannot back up and do a postfix-expression.
6651
6652 Therefore, we scan ahead to the closing `)', and check to see
6653 if the token after the `)' is a `{'. If so, we are not
6654 looking at a cast-expression.
6655
6656 Save tokens so that we can put them back. */
6657 cp_lexer_save_tokens (parser->lexer);
6658 /* Skip tokens until the next token is a closing parenthesis.
6659 If we find the closing `)', and the next token is a `{', then
6660 we are looking at a compound-literal. */
6661 compound_literal_p
6662 = (cp_parser_skip_to_closing_parenthesis (parser, false, false,
6663 /*consume_paren=*/true)
6664 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE));
6665 /* Roll back the tokens we skipped. */
6666 cp_lexer_rollback_tokens (parser->lexer);
6667 /* If we were looking at a compound-literal, simulate an error
6668 so that the call to cp_parser_parse_definitely below will
6669 fail. */
6670 if (compound_literal_p)
6671 cp_parser_simulate_error (parser);
6672 else
6673 {
6674 bool saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
6675 parser->in_type_id_in_expr_p = true;
6676 /* Look for the type-id. */
6677 type = cp_parser_type_id (parser);
6678 /* Look for the closing `)'. */
6679 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
6680 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
6681 }
6682
6683 /* Restore the saved message. */
6684 parser->type_definition_forbidden_message = saved_message;
6685
6686 /* At this point this can only be either a cast or a
6687 parenthesized ctor such as `(T ())' that looks like a cast to
6688 function returning T. */
6689 if (!cp_parser_error_occurred (parser)
6690 && cp_parser_token_starts_cast_expression (cp_lexer_peek_token
6691 (parser->lexer)))
6692 {
6693 cp_parser_parse_definitely (parser);
6694 expr = cp_parser_cast_expression (parser,
6695 /*address_p=*/false,
6696 /*cast_p=*/true, pidk);
6697
6698 /* Warn about old-style casts, if so requested. */
6699 if (warn_old_style_cast
6700 && !in_system_header
6701 && !VOID_TYPE_P (type)
6702 && current_lang_name != lang_name_c)
6703 warning (OPT_Wold_style_cast, "use of old-style cast");
6704
6705 /* Only type conversions to integral or enumeration types
6706 can be used in constant-expressions. */
6707 if (!cast_valid_in_integral_constant_expression_p (type)
6708 && cp_parser_non_integral_constant_expression (parser,
6709 NIC_CAST))
6710 return error_mark_node;
6711
6712 /* Perform the cast. */
6713 expr = build_c_cast (input_location, type, expr);
6714 return expr;
6715 }
6716 else
6717 cp_parser_abort_tentative_parse (parser);
6718 }
6719
6720 /* If we get here, then it's not a cast, so it must be a
6721 unary-expression. */
6722 return cp_parser_unary_expression (parser, address_p, cast_p, pidk);
6723 }
6724
6725 /* Parse a binary expression of the general form:
6726
6727 pm-expression:
6728 cast-expression
6729 pm-expression .* cast-expression
6730 pm-expression ->* cast-expression
6731
6732 multiplicative-expression:
6733 pm-expression
6734 multiplicative-expression * pm-expression
6735 multiplicative-expression / pm-expression
6736 multiplicative-expression % pm-expression
6737
6738 additive-expression:
6739 multiplicative-expression
6740 additive-expression + multiplicative-expression
6741 additive-expression - multiplicative-expression
6742
6743 shift-expression:
6744 additive-expression
6745 shift-expression << additive-expression
6746 shift-expression >> additive-expression
6747
6748 relational-expression:
6749 shift-expression
6750 relational-expression < shift-expression
6751 relational-expression > shift-expression
6752 relational-expression <= shift-expression
6753 relational-expression >= shift-expression
6754
6755 GNU Extension:
6756
6757 relational-expression:
6758 relational-expression <? shift-expression
6759 relational-expression >? shift-expression
6760
6761 equality-expression:
6762 relational-expression
6763 equality-expression == relational-expression
6764 equality-expression != relational-expression
6765
6766 and-expression:
6767 equality-expression
6768 and-expression & equality-expression
6769
6770 exclusive-or-expression:
6771 and-expression
6772 exclusive-or-expression ^ and-expression
6773
6774 inclusive-or-expression:
6775 exclusive-or-expression
6776 inclusive-or-expression | exclusive-or-expression
6777
6778 logical-and-expression:
6779 inclusive-or-expression
6780 logical-and-expression && inclusive-or-expression
6781
6782 logical-or-expression:
6783 logical-and-expression
6784 logical-or-expression || logical-and-expression
6785
6786 All these are implemented with a single function like:
6787
6788 binary-expression:
6789 simple-cast-expression
6790 binary-expression <token> binary-expression
6791
6792 CAST_P is true if this expression is the target of a cast.
6793
6794 The binops_by_token map is used to get the tree codes for each <token> type.
6795 binary-expressions are associated according to a precedence table. */
6796
6797 #define TOKEN_PRECEDENCE(token) \
6798 (((token->type == CPP_GREATER \
6799 || ((cxx_dialect != cxx98) && token->type == CPP_RSHIFT)) \
6800 && !parser->greater_than_is_operator_p) \
6801 ? PREC_NOT_OPERATOR \
6802 : binops_by_token[token->type].prec)
6803
6804 static tree
6805 cp_parser_binary_expression (cp_parser* parser, bool cast_p,
6806 bool no_toplevel_fold_p,
6807 enum cp_parser_prec prec,
6808 cp_id_kind * pidk)
6809 {
6810 cp_parser_expression_stack stack;
6811 cp_parser_expression_stack_entry *sp = &stack[0];
6812 tree lhs, rhs;
6813 cp_token *token;
6814 enum tree_code tree_type, lhs_type, rhs_type;
6815 enum cp_parser_prec new_prec, lookahead_prec;
6816 bool overloaded_p;
6817
6818 /* Parse the first expression. */
6819 lhs = cp_parser_cast_expression (parser, /*address_p=*/false, cast_p, pidk);
6820 lhs_type = ERROR_MARK;
6821
6822 for (;;)
6823 {
6824 /* Get an operator token. */
6825 token = cp_lexer_peek_token (parser->lexer);
6826
6827 if (warn_cxx0x_compat
6828 && token->type == CPP_RSHIFT
6829 && !parser->greater_than_is_operator_p)
6830 {
6831 if (warning_at (token->location, OPT_Wc__0x_compat,
6832 "%<>>%> operator will be treated as"
6833 " two right angle brackets in C++0x"))
6834 inform (token->location,
6835 "suggest parentheses around %<>>%> expression");
6836 }
6837
6838 new_prec = TOKEN_PRECEDENCE (token);
6839
6840 /* Popping an entry off the stack means we completed a subexpression:
6841 - either we found a token which is not an operator (`>' where it is not
6842 an operator, or prec == PREC_NOT_OPERATOR), in which case popping
6843 will happen repeatedly;
6844 - or, we found an operator which has lower priority. This is the case
6845 where the recursive descent *ascends*, as in `3 * 4 + 5' after
6846 parsing `3 * 4'. */
6847 if (new_prec <= prec)
6848 {
6849 if (sp == stack)
6850 break;
6851 else
6852 goto pop;
6853 }
6854
6855 get_rhs:
6856 tree_type = binops_by_token[token->type].tree_type;
6857
6858 /* We used the operator token. */
6859 cp_lexer_consume_token (parser->lexer);
6860
6861 /* For "false && x" or "true || x", x will never be executed;
6862 disable warnings while evaluating it. */
6863 if (tree_type == TRUTH_ANDIF_EXPR)
6864 c_inhibit_evaluation_warnings += lhs == truthvalue_false_node;
6865 else if (tree_type == TRUTH_ORIF_EXPR)
6866 c_inhibit_evaluation_warnings += lhs == truthvalue_true_node;
6867
6868 /* Extract another operand. It may be the RHS of this expression
6869 or the LHS of a new, higher priority expression. */
6870 rhs = cp_parser_simple_cast_expression (parser);
6871 rhs_type = ERROR_MARK;
6872
6873 /* Get another operator token. Look up its precedence to avoid
6874 building a useless (immediately popped) stack entry for common
6875 cases such as 3 + 4 + 5 or 3 * 4 + 5. */
6876 token = cp_lexer_peek_token (parser->lexer);
6877 lookahead_prec = TOKEN_PRECEDENCE (token);
6878 if (lookahead_prec > new_prec)
6879 {
6880 /* ... and prepare to parse the RHS of the new, higher priority
6881 expression. Since precedence levels on the stack are
6882 monotonically increasing, we do not have to care about
6883 stack overflows. */
6884 sp->prec = prec;
6885 sp->tree_type = tree_type;
6886 sp->lhs = lhs;
6887 sp->lhs_type = lhs_type;
6888 sp++;
6889 lhs = rhs;
6890 lhs_type = rhs_type;
6891 prec = new_prec;
6892 new_prec = lookahead_prec;
6893 goto get_rhs;
6894
6895 pop:
6896 lookahead_prec = new_prec;
6897 /* If the stack is not empty, we have parsed into LHS the right side
6898 (`4' in the example above) of an expression we had suspended.
6899 We can use the information on the stack to recover the LHS (`3')
6900 from the stack together with the tree code (`MULT_EXPR'), and
6901 the precedence of the higher level subexpression
6902 (`PREC_ADDITIVE_EXPRESSION'). TOKEN is the CPP_PLUS token,
6903 which will be used to actually build the additive expression. */
6904 --sp;
6905 prec = sp->prec;
6906 tree_type = sp->tree_type;
6907 rhs = lhs;
6908 rhs_type = lhs_type;
6909 lhs = sp->lhs;
6910 lhs_type = sp->lhs_type;
6911 }
6912
6913 /* Undo the disabling of warnings done above. */
6914 if (tree_type == TRUTH_ANDIF_EXPR)
6915 c_inhibit_evaluation_warnings -= lhs == truthvalue_false_node;
6916 else if (tree_type == TRUTH_ORIF_EXPR)
6917 c_inhibit_evaluation_warnings -= lhs == truthvalue_true_node;
6918
6919 overloaded_p = false;
6920 /* ??? Currently we pass lhs_type == ERROR_MARK and rhs_type ==
6921 ERROR_MARK for everything that is not a binary expression.
6922 This makes warn_about_parentheses miss some warnings that
6923 involve unary operators. For unary expressions we should
6924 pass the correct tree_code unless the unary expression was
6925 surrounded by parentheses.
6926 */
6927 if (no_toplevel_fold_p
6928 && lookahead_prec <= prec
6929 && sp == stack
6930 && TREE_CODE_CLASS (tree_type) == tcc_comparison)
6931 lhs = build2 (tree_type, boolean_type_node, lhs, rhs);
6932 else
6933 lhs = build_x_binary_op (tree_type, lhs, lhs_type, rhs, rhs_type,
6934 &overloaded_p, tf_warning_or_error);
6935 lhs_type = tree_type;
6936
6937 /* If the binary operator required the use of an overloaded operator,
6938 then this expression cannot be an integral constant-expression.
6939 An overloaded operator can be used even if both operands are
6940 otherwise permissible in an integral constant-expression if at
6941 least one of the operands is of enumeration type. */
6942
6943 if (overloaded_p
6944 && cp_parser_non_integral_constant_expression (parser,
6945 NIC_OVERLOADED))
6946 return error_mark_node;
6947 }
6948
6949 return lhs;
6950 }
6951
6952
6953 /* Parse the `? expression : assignment-expression' part of a
6954 conditional-expression. The LOGICAL_OR_EXPR is the
6955 logical-or-expression that started the conditional-expression.
6956 Returns a representation of the entire conditional-expression.
6957
6958 This routine is used by cp_parser_assignment_expression.
6959
6960 ? expression : assignment-expression
6961
6962 GNU Extensions:
6963
6964 ? : assignment-expression */
6965
6966 static tree
6967 cp_parser_question_colon_clause (cp_parser* parser, tree logical_or_expr)
6968 {
6969 tree expr;
6970 tree assignment_expr;
6971 struct cp_token *token;
6972
6973 /* Consume the `?' token. */
6974 cp_lexer_consume_token (parser->lexer);
6975 token = cp_lexer_peek_token (parser->lexer);
6976 if (cp_parser_allow_gnu_extensions_p (parser)
6977 && token->type == CPP_COLON)
6978 {
6979 pedwarn (token->location, OPT_pedantic,
6980 "ISO C++ does not allow ?: with omitted middle operand");
6981 /* Implicit true clause. */
6982 expr = NULL_TREE;
6983 c_inhibit_evaluation_warnings += logical_or_expr == truthvalue_true_node;
6984 warn_for_omitted_condop (token->location, logical_or_expr);
6985 }
6986 else
6987 {
6988 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
6989 parser->colon_corrects_to_scope_p = false;
6990 /* Parse the expression. */
6991 c_inhibit_evaluation_warnings += logical_or_expr == truthvalue_false_node;
6992 expr = cp_parser_expression (parser, /*cast_p=*/false, NULL);
6993 c_inhibit_evaluation_warnings +=
6994 ((logical_or_expr == truthvalue_true_node)
6995 - (logical_or_expr == truthvalue_false_node));
6996 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
6997 }
6998
6999 /* The next token should be a `:'. */
7000 cp_parser_require (parser, CPP_COLON, RT_COLON);
7001 /* Parse the assignment-expression. */
7002 assignment_expr = cp_parser_assignment_expression (parser, /*cast_p=*/false, NULL);
7003 c_inhibit_evaluation_warnings -= logical_or_expr == truthvalue_true_node;
7004
7005 /* Build the conditional-expression. */
7006 return build_x_conditional_expr (logical_or_expr,
7007 expr,
7008 assignment_expr,
7009 tf_warning_or_error);
7010 }
7011
7012 /* Parse an assignment-expression.
7013
7014 assignment-expression:
7015 conditional-expression
7016 logical-or-expression assignment-operator assignment_expression
7017 throw-expression
7018
7019 CAST_P is true if this expression is the target of a cast.
7020
7021 Returns a representation for the expression. */
7022
7023 static tree
7024 cp_parser_assignment_expression (cp_parser* parser, bool cast_p,
7025 cp_id_kind * pidk)
7026 {
7027 tree expr;
7028
7029 /* If the next token is the `throw' keyword, then we're looking at
7030 a throw-expression. */
7031 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_THROW))
7032 expr = cp_parser_throw_expression (parser);
7033 /* Otherwise, it must be that we are looking at a
7034 logical-or-expression. */
7035 else
7036 {
7037 /* Parse the binary expressions (logical-or-expression). */
7038 expr = cp_parser_binary_expression (parser, cast_p, false,
7039 PREC_NOT_OPERATOR, pidk);
7040 /* If the next token is a `?' then we're actually looking at a
7041 conditional-expression. */
7042 if (cp_lexer_next_token_is (parser->lexer, CPP_QUERY))
7043 return cp_parser_question_colon_clause (parser, expr);
7044 else
7045 {
7046 enum tree_code assignment_operator;
7047
7048 /* If it's an assignment-operator, we're using the second
7049 production. */
7050 assignment_operator
7051 = cp_parser_assignment_operator_opt (parser);
7052 if (assignment_operator != ERROR_MARK)
7053 {
7054 bool non_constant_p;
7055
7056 /* Parse the right-hand side of the assignment. */
7057 tree rhs = cp_parser_initializer_clause (parser, &non_constant_p);
7058
7059 if (BRACE_ENCLOSED_INITIALIZER_P (rhs))
7060 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
7061
7062 /* An assignment may not appear in a
7063 constant-expression. */
7064 if (cp_parser_non_integral_constant_expression (parser,
7065 NIC_ASSIGNMENT))
7066 return error_mark_node;
7067 /* Build the assignment expression. */
7068 expr = build_x_modify_expr (expr,
7069 assignment_operator,
7070 rhs,
7071 tf_warning_or_error);
7072 }
7073 }
7074 }
7075
7076 return expr;
7077 }
7078
7079 /* Parse an (optional) assignment-operator.
7080
7081 assignment-operator: one of
7082 = *= /= %= += -= >>= <<= &= ^= |=
7083
7084 GNU Extension:
7085
7086 assignment-operator: one of
7087 <?= >?=
7088
7089 If the next token is an assignment operator, the corresponding tree
7090 code is returned, and the token is consumed. For example, for
7091 `+=', PLUS_EXPR is returned. For `=' itself, the code returned is
7092 NOP_EXPR. For `/', TRUNC_DIV_EXPR is returned; for `%',
7093 TRUNC_MOD_EXPR is returned. If TOKEN is not an assignment
7094 operator, ERROR_MARK is returned. */
7095
7096 static enum tree_code
7097 cp_parser_assignment_operator_opt (cp_parser* parser)
7098 {
7099 enum tree_code op;
7100 cp_token *token;
7101
7102 /* Peek at the next token. */
7103 token = cp_lexer_peek_token (parser->lexer);
7104
7105 switch (token->type)
7106 {
7107 case CPP_EQ:
7108 op = NOP_EXPR;
7109 break;
7110
7111 case CPP_MULT_EQ:
7112 op = MULT_EXPR;
7113 break;
7114
7115 case CPP_DIV_EQ:
7116 op = TRUNC_DIV_EXPR;
7117 break;
7118
7119 case CPP_MOD_EQ:
7120 op = TRUNC_MOD_EXPR;
7121 break;
7122
7123 case CPP_PLUS_EQ:
7124 op = PLUS_EXPR;
7125 break;
7126
7127 case CPP_MINUS_EQ:
7128 op = MINUS_EXPR;
7129 break;
7130
7131 case CPP_RSHIFT_EQ:
7132 op = RSHIFT_EXPR;
7133 break;
7134
7135 case CPP_LSHIFT_EQ:
7136 op = LSHIFT_EXPR;
7137 break;
7138
7139 case CPP_AND_EQ:
7140 op = BIT_AND_EXPR;
7141 break;
7142
7143 case CPP_XOR_EQ:
7144 op = BIT_XOR_EXPR;
7145 break;
7146
7147 case CPP_OR_EQ:
7148 op = BIT_IOR_EXPR;
7149 break;
7150
7151 default:
7152 /* Nothing else is an assignment operator. */
7153 op = ERROR_MARK;
7154 }
7155
7156 /* If it was an assignment operator, consume it. */
7157 if (op != ERROR_MARK)
7158 cp_lexer_consume_token (parser->lexer);
7159
7160 return op;
7161 }
7162
7163 /* Parse an expression.
7164
7165 expression:
7166 assignment-expression
7167 expression , assignment-expression
7168
7169 CAST_P is true if this expression is the target of a cast.
7170
7171 Returns a representation of the expression. */
7172
7173 static tree
7174 cp_parser_expression (cp_parser* parser, bool cast_p, cp_id_kind * pidk)
7175 {
7176 tree expression = NULL_TREE;
7177
7178 while (true)
7179 {
7180 tree assignment_expression;
7181
7182 /* Parse the next assignment-expression. */
7183 assignment_expression
7184 = cp_parser_assignment_expression (parser, cast_p, pidk);
7185 /* If this is the first assignment-expression, we can just
7186 save it away. */
7187 if (!expression)
7188 expression = assignment_expression;
7189 else
7190 expression = build_x_compound_expr (expression,
7191 assignment_expression,
7192 tf_warning_or_error);
7193 /* If the next token is not a comma, then we are done with the
7194 expression. */
7195 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
7196 break;
7197 /* Consume the `,'. */
7198 cp_lexer_consume_token (parser->lexer);
7199 /* A comma operator cannot appear in a constant-expression. */
7200 if (cp_parser_non_integral_constant_expression (parser, NIC_COMMA))
7201 expression = error_mark_node;
7202 }
7203
7204 return expression;
7205 }
7206
7207 /* Parse a constant-expression.
7208
7209 constant-expression:
7210 conditional-expression
7211
7212 If ALLOW_NON_CONSTANT_P a non-constant expression is silently
7213 accepted. If ALLOW_NON_CONSTANT_P is true and the expression is not
7214 constant, *NON_CONSTANT_P is set to TRUE. If ALLOW_NON_CONSTANT_P
7215 is false, NON_CONSTANT_P should be NULL. */
7216
7217 static tree
7218 cp_parser_constant_expression (cp_parser* parser,
7219 bool allow_non_constant_p,
7220 bool *non_constant_p)
7221 {
7222 bool saved_integral_constant_expression_p;
7223 bool saved_allow_non_integral_constant_expression_p;
7224 bool saved_non_integral_constant_expression_p;
7225 tree expression;
7226
7227 /* It might seem that we could simply parse the
7228 conditional-expression, and then check to see if it were
7229 TREE_CONSTANT. However, an expression that is TREE_CONSTANT is
7230 one that the compiler can figure out is constant, possibly after
7231 doing some simplifications or optimizations. The standard has a
7232 precise definition of constant-expression, and we must honor
7233 that, even though it is somewhat more restrictive.
7234
7235 For example:
7236
7237 int i[(2, 3)];
7238
7239 is not a legal declaration, because `(2, 3)' is not a
7240 constant-expression. The `,' operator is forbidden in a
7241 constant-expression. However, GCC's constant-folding machinery
7242 will fold this operation to an INTEGER_CST for `3'. */
7243
7244 /* Save the old settings. */
7245 saved_integral_constant_expression_p = parser->integral_constant_expression_p;
7246 saved_allow_non_integral_constant_expression_p
7247 = parser->allow_non_integral_constant_expression_p;
7248 saved_non_integral_constant_expression_p = parser->non_integral_constant_expression_p;
7249 /* We are now parsing a constant-expression. */
7250 parser->integral_constant_expression_p = true;
7251 parser->allow_non_integral_constant_expression_p
7252 = (allow_non_constant_p || cxx_dialect >= cxx0x);
7253 parser->non_integral_constant_expression_p = false;
7254 /* Although the grammar says "conditional-expression", we parse an
7255 "assignment-expression", which also permits "throw-expression"
7256 and the use of assignment operators. In the case that
7257 ALLOW_NON_CONSTANT_P is false, we get better errors than we would
7258 otherwise. In the case that ALLOW_NON_CONSTANT_P is true, it is
7259 actually essential that we look for an assignment-expression.
7260 For example, cp_parser_initializer_clauses uses this function to
7261 determine whether a particular assignment-expression is in fact
7262 constant. */
7263 expression = cp_parser_assignment_expression (parser, /*cast_p=*/false, NULL);
7264 /* Restore the old settings. */
7265 parser->integral_constant_expression_p
7266 = saved_integral_constant_expression_p;
7267 parser->allow_non_integral_constant_expression_p
7268 = saved_allow_non_integral_constant_expression_p;
7269 if (allow_non_constant_p)
7270 *non_constant_p = parser->non_integral_constant_expression_p;
7271 else if (parser->non_integral_constant_expression_p
7272 && cxx_dialect < cxx0x)
7273 expression = error_mark_node;
7274 parser->non_integral_constant_expression_p
7275 = saved_non_integral_constant_expression_p;
7276
7277 return expression;
7278 }
7279
7280 /* Parse __builtin_offsetof.
7281
7282 offsetof-expression:
7283 "__builtin_offsetof" "(" type-id "," offsetof-member-designator ")"
7284
7285 offsetof-member-designator:
7286 id-expression
7287 | offsetof-member-designator "." id-expression
7288 | offsetof-member-designator "[" expression "]"
7289 | offsetof-member-designator "->" id-expression */
7290
7291 static tree
7292 cp_parser_builtin_offsetof (cp_parser *parser)
7293 {
7294 int save_ice_p, save_non_ice_p;
7295 tree type, expr;
7296 cp_id_kind dummy;
7297 cp_token *token;
7298
7299 /* We're about to accept non-integral-constant things, but will
7300 definitely yield an integral constant expression. Save and
7301 restore these values around our local parsing. */
7302 save_ice_p = parser->integral_constant_expression_p;
7303 save_non_ice_p = parser->non_integral_constant_expression_p;
7304
7305 /* Consume the "__builtin_offsetof" token. */
7306 cp_lexer_consume_token (parser->lexer);
7307 /* Consume the opening `('. */
7308 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
7309 /* Parse the type-id. */
7310 type = cp_parser_type_id (parser);
7311 /* Look for the `,'. */
7312 cp_parser_require (parser, CPP_COMMA, RT_COMMA);
7313 token = cp_lexer_peek_token (parser->lexer);
7314
7315 /* Build the (type *)null that begins the traditional offsetof macro. */
7316 expr = build_static_cast (build_pointer_type (type), null_pointer_node,
7317 tf_warning_or_error);
7318
7319 /* Parse the offsetof-member-designator. We begin as if we saw "expr->". */
7320 expr = cp_parser_postfix_dot_deref_expression (parser, CPP_DEREF, expr,
7321 true, &dummy, token->location);
7322 while (true)
7323 {
7324 token = cp_lexer_peek_token (parser->lexer);
7325 switch (token->type)
7326 {
7327 case CPP_OPEN_SQUARE:
7328 /* offsetof-member-designator "[" expression "]" */
7329 expr = cp_parser_postfix_open_square_expression (parser, expr, true);
7330 break;
7331
7332 case CPP_DEREF:
7333 /* offsetof-member-designator "->" identifier */
7334 expr = grok_array_decl (expr, integer_zero_node);
7335 /* FALLTHRU */
7336
7337 case CPP_DOT:
7338 /* offsetof-member-designator "." identifier */
7339 cp_lexer_consume_token (parser->lexer);
7340 expr = cp_parser_postfix_dot_deref_expression (parser, CPP_DOT,
7341 expr, true, &dummy,
7342 token->location);
7343 break;
7344
7345 case CPP_CLOSE_PAREN:
7346 /* Consume the ")" token. */
7347 cp_lexer_consume_token (parser->lexer);
7348 goto success;
7349
7350 default:
7351 /* Error. We know the following require will fail, but
7352 that gives the proper error message. */
7353 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
7354 cp_parser_skip_to_closing_parenthesis (parser, true, false, true);
7355 expr = error_mark_node;
7356 goto failure;
7357 }
7358 }
7359
7360 success:
7361 /* If we're processing a template, we can't finish the semantics yet.
7362 Otherwise we can fold the entire expression now. */
7363 if (processing_template_decl)
7364 expr = build1 (OFFSETOF_EXPR, size_type_node, expr);
7365 else
7366 expr = finish_offsetof (expr);
7367
7368 failure:
7369 parser->integral_constant_expression_p = save_ice_p;
7370 parser->non_integral_constant_expression_p = save_non_ice_p;
7371
7372 return expr;
7373 }
7374
7375 /* Parse a trait expression. */
7376
7377 static tree
7378 cp_parser_trait_expr (cp_parser* parser, enum rid keyword)
7379 {
7380 cp_trait_kind kind;
7381 tree type1, type2 = NULL_TREE;
7382 bool binary = false;
7383 cp_decl_specifier_seq decl_specs;
7384
7385 switch (keyword)
7386 {
7387 case RID_HAS_NOTHROW_ASSIGN:
7388 kind = CPTK_HAS_NOTHROW_ASSIGN;
7389 break;
7390 case RID_HAS_NOTHROW_CONSTRUCTOR:
7391 kind = CPTK_HAS_NOTHROW_CONSTRUCTOR;
7392 break;
7393 case RID_HAS_NOTHROW_COPY:
7394 kind = CPTK_HAS_NOTHROW_COPY;
7395 break;
7396 case RID_HAS_TRIVIAL_ASSIGN:
7397 kind = CPTK_HAS_TRIVIAL_ASSIGN;
7398 break;
7399 case RID_HAS_TRIVIAL_CONSTRUCTOR:
7400 kind = CPTK_HAS_TRIVIAL_CONSTRUCTOR;
7401 break;
7402 case RID_HAS_TRIVIAL_COPY:
7403 kind = CPTK_HAS_TRIVIAL_COPY;
7404 break;
7405 case RID_HAS_TRIVIAL_DESTRUCTOR:
7406 kind = CPTK_HAS_TRIVIAL_DESTRUCTOR;
7407 break;
7408 case RID_HAS_VIRTUAL_DESTRUCTOR:
7409 kind = CPTK_HAS_VIRTUAL_DESTRUCTOR;
7410 break;
7411 case RID_IS_ABSTRACT:
7412 kind = CPTK_IS_ABSTRACT;
7413 break;
7414 case RID_IS_BASE_OF:
7415 kind = CPTK_IS_BASE_OF;
7416 binary = true;
7417 break;
7418 case RID_IS_CLASS:
7419 kind = CPTK_IS_CLASS;
7420 break;
7421 case RID_IS_CONVERTIBLE_TO:
7422 kind = CPTK_IS_CONVERTIBLE_TO;
7423 binary = true;
7424 break;
7425 case RID_IS_EMPTY:
7426 kind = CPTK_IS_EMPTY;
7427 break;
7428 case RID_IS_ENUM:
7429 kind = CPTK_IS_ENUM;
7430 break;
7431 case RID_IS_POD:
7432 kind = CPTK_IS_POD;
7433 break;
7434 case RID_IS_POLYMORPHIC:
7435 kind = CPTK_IS_POLYMORPHIC;
7436 break;
7437 case RID_IS_STD_LAYOUT:
7438 kind = CPTK_IS_STD_LAYOUT;
7439 break;
7440 case RID_IS_TRIVIAL:
7441 kind = CPTK_IS_TRIVIAL;
7442 break;
7443 case RID_IS_UNION:
7444 kind = CPTK_IS_UNION;
7445 break;
7446 case RID_IS_LITERAL_TYPE:
7447 kind = CPTK_IS_LITERAL_TYPE;
7448 break;
7449 default:
7450 gcc_unreachable ();
7451 }
7452
7453 /* Consume the token. */
7454 cp_lexer_consume_token (parser->lexer);
7455
7456 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
7457
7458 type1 = cp_parser_type_id (parser);
7459
7460 if (type1 == error_mark_node)
7461 return error_mark_node;
7462
7463 /* Build a trivial decl-specifier-seq. */
7464 clear_decl_specs (&decl_specs);
7465 decl_specs.type = type1;
7466
7467 /* Call grokdeclarator to figure out what type this is. */
7468 type1 = grokdeclarator (NULL, &decl_specs, TYPENAME,
7469 /*initialized=*/0, /*attrlist=*/NULL);
7470
7471 if (binary)
7472 {
7473 cp_parser_require (parser, CPP_COMMA, RT_COMMA);
7474
7475 type2 = cp_parser_type_id (parser);
7476
7477 if (type2 == error_mark_node)
7478 return error_mark_node;
7479
7480 /* Build a trivial decl-specifier-seq. */
7481 clear_decl_specs (&decl_specs);
7482 decl_specs.type = type2;
7483
7484 /* Call grokdeclarator to figure out what type this is. */
7485 type2 = grokdeclarator (NULL, &decl_specs, TYPENAME,
7486 /*initialized=*/0, /*attrlist=*/NULL);
7487 }
7488
7489 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
7490
7491 /* Complete the trait expression, which may mean either processing
7492 the trait expr now or saving it for template instantiation. */
7493 return finish_trait_expr (kind, type1, type2);
7494 }
7495
7496 /* Lambdas that appear in variable initializer or default argument scope
7497 get that in their mangling, so we need to record it. We might as well
7498 use the count for function and namespace scopes as well. */
7499 static GTY(()) tree lambda_scope;
7500 static GTY(()) int lambda_count;
7501 typedef struct GTY(()) tree_int
7502 {
7503 tree t;
7504 int i;
7505 } tree_int;
7506 DEF_VEC_O(tree_int);
7507 DEF_VEC_ALLOC_O(tree_int,gc);
7508 static GTY(()) VEC(tree_int,gc) *lambda_scope_stack;
7509
7510 static void
7511 start_lambda_scope (tree decl)
7512 {
7513 tree_int ti;
7514 gcc_assert (decl);
7515 /* Once we're inside a function, we ignore other scopes and just push
7516 the function again so that popping works properly. */
7517 if (current_function_decl && TREE_CODE (decl) != FUNCTION_DECL)
7518 decl = current_function_decl;
7519 ti.t = lambda_scope;
7520 ti.i = lambda_count;
7521 VEC_safe_push (tree_int, gc, lambda_scope_stack, &ti);
7522 if (lambda_scope != decl)
7523 {
7524 /* Don't reset the count if we're still in the same function. */
7525 lambda_scope = decl;
7526 lambda_count = 0;
7527 }
7528 }
7529
7530 static void
7531 record_lambda_scope (tree lambda)
7532 {
7533 LAMBDA_EXPR_EXTRA_SCOPE (lambda) = lambda_scope;
7534 LAMBDA_EXPR_DISCRIMINATOR (lambda) = lambda_count++;
7535 }
7536
7537 static void
7538 finish_lambda_scope (void)
7539 {
7540 tree_int *p = VEC_last (tree_int, lambda_scope_stack);
7541 if (lambda_scope != p->t)
7542 {
7543 lambda_scope = p->t;
7544 lambda_count = p->i;
7545 }
7546 VEC_pop (tree_int, lambda_scope_stack);
7547 }
7548
7549 /* Parse a lambda expression.
7550
7551 lambda-expression:
7552 lambda-introducer lambda-declarator [opt] compound-statement
7553
7554 Returns a representation of the expression. */
7555
7556 static tree
7557 cp_parser_lambda_expression (cp_parser* parser)
7558 {
7559 tree lambda_expr = build_lambda_expr ();
7560 tree type;
7561
7562 LAMBDA_EXPR_LOCATION (lambda_expr)
7563 = cp_lexer_peek_token (parser->lexer)->location;
7564
7565 if (cp_unevaluated_operand)
7566 error_at (LAMBDA_EXPR_LOCATION (lambda_expr),
7567 "lambda-expression in unevaluated context");
7568
7569 /* We may be in the middle of deferred access check. Disable
7570 it now. */
7571 push_deferring_access_checks (dk_no_deferred);
7572
7573 cp_parser_lambda_introducer (parser, lambda_expr);
7574
7575 type = begin_lambda_type (lambda_expr);
7576
7577 record_lambda_scope (lambda_expr);
7578
7579 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
7580 determine_visibility (TYPE_NAME (type));
7581
7582 /* Now that we've started the type, add the capture fields for any
7583 explicit captures. */
7584 register_capture_members (LAMBDA_EXPR_CAPTURE_LIST (lambda_expr));
7585
7586 {
7587 /* Inside the class, surrounding template-parameter-lists do not apply. */
7588 unsigned int saved_num_template_parameter_lists
7589 = parser->num_template_parameter_lists;
7590
7591 parser->num_template_parameter_lists = 0;
7592
7593 /* By virtue of defining a local class, a lambda expression has access to
7594 the private variables of enclosing classes. */
7595
7596 cp_parser_lambda_declarator_opt (parser, lambda_expr);
7597
7598 cp_parser_lambda_body (parser, lambda_expr);
7599
7600 /* The capture list was built up in reverse order; fix that now. */
7601 {
7602 tree newlist = NULL_TREE;
7603 tree elt, next;
7604
7605 for (elt = LAMBDA_EXPR_CAPTURE_LIST (lambda_expr);
7606 elt; elt = next)
7607 {
7608 tree field = TREE_PURPOSE (elt);
7609 char *buf;
7610
7611 next = TREE_CHAIN (elt);
7612 TREE_CHAIN (elt) = newlist;
7613 newlist = elt;
7614
7615 /* Also add __ to the beginning of the field name so that code
7616 outside the lambda body can't see the captured name. We could
7617 just remove the name entirely, but this is more useful for
7618 debugging. */
7619 if (field == LAMBDA_EXPR_THIS_CAPTURE (lambda_expr))
7620 /* The 'this' capture already starts with __. */
7621 continue;
7622
7623 buf = (char *) alloca (IDENTIFIER_LENGTH (DECL_NAME (field)) + 3);
7624 buf[1] = buf[0] = '_';
7625 memcpy (buf + 2, IDENTIFIER_POINTER (DECL_NAME (field)),
7626 IDENTIFIER_LENGTH (DECL_NAME (field)) + 1);
7627 DECL_NAME (field) = get_identifier (buf);
7628 }
7629 LAMBDA_EXPR_CAPTURE_LIST (lambda_expr) = newlist;
7630 }
7631
7632 maybe_add_lambda_conv_op (type);
7633
7634 type = finish_struct (type, /*attributes=*/NULL_TREE);
7635
7636 parser->num_template_parameter_lists = saved_num_template_parameter_lists;
7637 }
7638
7639 pop_deferring_access_checks ();
7640
7641 return build_lambda_object (lambda_expr);
7642 }
7643
7644 /* Parse the beginning of a lambda expression.
7645
7646 lambda-introducer:
7647 [ lambda-capture [opt] ]
7648
7649 LAMBDA_EXPR is the current representation of the lambda expression. */
7650
7651 static void
7652 cp_parser_lambda_introducer (cp_parser* parser, tree lambda_expr)
7653 {
7654 /* Need commas after the first capture. */
7655 bool first = true;
7656
7657 /* Eat the leading `['. */
7658 cp_parser_require (parser, CPP_OPEN_SQUARE, RT_OPEN_SQUARE);
7659
7660 /* Record default capture mode. "[&" "[=" "[&," "[=," */
7661 if (cp_lexer_next_token_is (parser->lexer, CPP_AND)
7662 && cp_lexer_peek_nth_token (parser->lexer, 2)->type != CPP_NAME)
7663 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) = CPLD_REFERENCE;
7664 else if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
7665 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) = CPLD_COPY;
7666
7667 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) != CPLD_NONE)
7668 {
7669 cp_lexer_consume_token (parser->lexer);
7670 first = false;
7671 }
7672
7673 while (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_SQUARE))
7674 {
7675 cp_token* capture_token;
7676 tree capture_id;
7677 tree capture_init_expr;
7678 cp_id_kind idk = CP_ID_KIND_NONE;
7679 bool explicit_init_p = false;
7680
7681 enum capture_kind_type
7682 {
7683 BY_COPY,
7684 BY_REFERENCE
7685 };
7686 enum capture_kind_type capture_kind = BY_COPY;
7687
7688 if (cp_lexer_next_token_is (parser->lexer, CPP_EOF))
7689 {
7690 error ("expected end of capture-list");
7691 return;
7692 }
7693
7694 if (first)
7695 first = false;
7696 else
7697 cp_parser_require (parser, CPP_COMMA, RT_COMMA);
7698
7699 /* Possibly capture `this'. */
7700 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_THIS))
7701 {
7702 cp_lexer_consume_token (parser->lexer);
7703 add_capture (lambda_expr,
7704 /*id=*/get_identifier ("__this"),
7705 /*initializer=*/finish_this_expr(),
7706 /*by_reference_p=*/false,
7707 explicit_init_p);
7708 continue;
7709 }
7710
7711 /* Remember whether we want to capture as a reference or not. */
7712 if (cp_lexer_next_token_is (parser->lexer, CPP_AND))
7713 {
7714 capture_kind = BY_REFERENCE;
7715 cp_lexer_consume_token (parser->lexer);
7716 }
7717
7718 /* Get the identifier. */
7719 capture_token = cp_lexer_peek_token (parser->lexer);
7720 capture_id = cp_parser_identifier (parser);
7721
7722 if (capture_id == error_mark_node)
7723 /* Would be nice to have a cp_parser_skip_to_closing_x for general
7724 delimiters, but I modified this to stop on unnested ']' as well. It
7725 was already changed to stop on unnested '}', so the
7726 "closing_parenthesis" name is no more misleading with my change. */
7727 {
7728 cp_parser_skip_to_closing_parenthesis (parser,
7729 /*recovering=*/true,
7730 /*or_comma=*/true,
7731 /*consume_paren=*/true);
7732 break;
7733 }
7734
7735 /* Find the initializer for this capture. */
7736 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
7737 {
7738 /* An explicit expression exists. */
7739 cp_lexer_consume_token (parser->lexer);
7740 pedwarn (input_location, OPT_pedantic,
7741 "ISO C++ does not allow initializers "
7742 "in lambda expression capture lists");
7743 capture_init_expr = cp_parser_assignment_expression (parser,
7744 /*cast_p=*/true,
7745 &idk);
7746 explicit_init_p = true;
7747 }
7748 else
7749 {
7750 const char* error_msg;
7751
7752 /* Turn the identifier into an id-expression. */
7753 capture_init_expr
7754 = cp_parser_lookup_name
7755 (parser,
7756 capture_id,
7757 none_type,
7758 /*is_template=*/false,
7759 /*is_namespace=*/false,
7760 /*check_dependency=*/true,
7761 /*ambiguous_decls=*/NULL,
7762 capture_token->location);
7763
7764 capture_init_expr
7765 = finish_id_expression
7766 (capture_id,
7767 capture_init_expr,
7768 parser->scope,
7769 &idk,
7770 /*integral_constant_expression_p=*/false,
7771 /*allow_non_integral_constant_expression_p=*/false,
7772 /*non_integral_constant_expression_p=*/NULL,
7773 /*template_p=*/false,
7774 /*done=*/true,
7775 /*address_p=*/false,
7776 /*template_arg_p=*/false,
7777 &error_msg,
7778 capture_token->location);
7779 }
7780
7781 if (TREE_CODE (capture_init_expr) == IDENTIFIER_NODE)
7782 capture_init_expr
7783 = unqualified_name_lookup_error (capture_init_expr);
7784
7785 add_capture (lambda_expr,
7786 capture_id,
7787 capture_init_expr,
7788 /*by_reference_p=*/capture_kind == BY_REFERENCE,
7789 explicit_init_p);
7790 }
7791
7792 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
7793 }
7794
7795 /* Parse the (optional) middle of a lambda expression.
7796
7797 lambda-declarator:
7798 ( parameter-declaration-clause [opt] )
7799 attribute-specifier [opt]
7800 mutable [opt]
7801 exception-specification [opt]
7802 lambda-return-type-clause [opt]
7803
7804 LAMBDA_EXPR is the current representation of the lambda expression. */
7805
7806 static void
7807 cp_parser_lambda_declarator_opt (cp_parser* parser, tree lambda_expr)
7808 {
7809 /* 5.1.1.4 of the standard says:
7810 If a lambda-expression does not include a lambda-declarator, it is as if
7811 the lambda-declarator were ().
7812 This means an empty parameter list, no attributes, and no exception
7813 specification. */
7814 tree param_list = void_list_node;
7815 tree attributes = NULL_TREE;
7816 tree exception_spec = NULL_TREE;
7817 tree t;
7818
7819 /* The lambda-declarator is optional, but must begin with an opening
7820 parenthesis if present. */
7821 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
7822 {
7823 cp_lexer_consume_token (parser->lexer);
7824
7825 begin_scope (sk_function_parms, /*entity=*/NULL_TREE);
7826
7827 /* Parse parameters. */
7828 param_list = cp_parser_parameter_declaration_clause (parser);
7829
7830 /* Default arguments shall not be specified in the
7831 parameter-declaration-clause of a lambda-declarator. */
7832 for (t = param_list; t; t = TREE_CHAIN (t))
7833 if (TREE_PURPOSE (t))
7834 pedwarn (DECL_SOURCE_LOCATION (TREE_VALUE (t)), OPT_pedantic,
7835 "default argument specified for lambda parameter");
7836
7837 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
7838
7839 attributes = cp_parser_attributes_opt (parser);
7840
7841 /* Parse optional `mutable' keyword. */
7842 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_MUTABLE))
7843 {
7844 cp_lexer_consume_token (parser->lexer);
7845 LAMBDA_EXPR_MUTABLE_P (lambda_expr) = 1;
7846 }
7847
7848 /* Parse optional exception specification. */
7849 exception_spec = cp_parser_exception_specification_opt (parser);
7850
7851 /* Parse optional trailing return type. */
7852 if (cp_lexer_next_token_is (parser->lexer, CPP_DEREF))
7853 {
7854 cp_lexer_consume_token (parser->lexer);
7855 LAMBDA_EXPR_RETURN_TYPE (lambda_expr) = cp_parser_type_id (parser);
7856 }
7857
7858 /* The function parameters must be in scope all the way until after the
7859 trailing-return-type in case of decltype. */
7860 for (t = current_binding_level->names; t; t = DECL_CHAIN (t))
7861 pop_binding (DECL_NAME (t), t);
7862
7863 leave_scope ();
7864 }
7865
7866 /* Create the function call operator.
7867
7868 Messing with declarators like this is no uglier than building up the
7869 FUNCTION_DECL by hand, and this is less likely to get out of sync with
7870 other code. */
7871 {
7872 cp_decl_specifier_seq return_type_specs;
7873 cp_declarator* declarator;
7874 tree fco;
7875 int quals;
7876 void *p;
7877
7878 clear_decl_specs (&return_type_specs);
7879 if (LAMBDA_EXPR_RETURN_TYPE (lambda_expr))
7880 return_type_specs.type = LAMBDA_EXPR_RETURN_TYPE (lambda_expr);
7881 else
7882 /* Maybe we will deduce the return type later, but we can use void
7883 as a placeholder return type anyways. */
7884 return_type_specs.type = void_type_node;
7885
7886 p = obstack_alloc (&declarator_obstack, 0);
7887
7888 declarator = make_id_declarator (NULL_TREE, ansi_opname (CALL_EXPR),
7889 sfk_none);
7890
7891 quals = (LAMBDA_EXPR_MUTABLE_P (lambda_expr)
7892 ? TYPE_UNQUALIFIED : TYPE_QUAL_CONST);
7893 declarator = make_call_declarator (declarator, param_list, quals,
7894 exception_spec,
7895 /*late_return_type=*/NULL_TREE);
7896 declarator->id_loc = LAMBDA_EXPR_LOCATION (lambda_expr);
7897
7898 fco = grokmethod (&return_type_specs,
7899 declarator,
7900 attributes);
7901 DECL_INITIALIZED_IN_CLASS_P (fco) = 1;
7902 DECL_ARTIFICIAL (fco) = 1;
7903
7904 finish_member_declaration (fco);
7905
7906 obstack_free (&declarator_obstack, p);
7907 }
7908 }
7909
7910 /* Parse the body of a lambda expression, which is simply
7911
7912 compound-statement
7913
7914 but which requires special handling.
7915 LAMBDA_EXPR is the current representation of the lambda expression. */
7916
7917 static void
7918 cp_parser_lambda_body (cp_parser* parser, tree lambda_expr)
7919 {
7920 bool nested = (current_function_decl != NULL_TREE);
7921 if (nested)
7922 push_function_context ();
7923
7924 /* Finish the function call operator
7925 - class_specifier
7926 + late_parsing_for_member
7927 + function_definition_after_declarator
7928 + ctor_initializer_opt_and_function_body */
7929 {
7930 tree fco = lambda_function (lambda_expr);
7931 tree body;
7932 bool done = false;
7933
7934 /* Let the front end know that we are going to be defining this
7935 function. */
7936 start_preparsed_function (fco,
7937 NULL_TREE,
7938 SF_PRE_PARSED | SF_INCLASS_INLINE);
7939
7940 start_lambda_scope (fco);
7941 body = begin_function_body ();
7942
7943 /* 5.1.1.4 of the standard says:
7944 If a lambda-expression does not include a trailing-return-type, it
7945 is as if the trailing-return-type denotes the following type:
7946 * if the compound-statement is of the form
7947 { return attribute-specifier [opt] expression ; }
7948 the type of the returned expression after lvalue-to-rvalue
7949 conversion (_conv.lval_ 4.1), array-to-pointer conversion
7950 (_conv.array_ 4.2), and function-to-pointer conversion
7951 (_conv.func_ 4.3);
7952 * otherwise, void. */
7953
7954 /* In a lambda that has neither a lambda-return-type-clause
7955 nor a deducible form, errors should be reported for return statements
7956 in the body. Since we used void as the placeholder return type, parsing
7957 the body as usual will give such desired behavior. */
7958 if (!LAMBDA_EXPR_RETURN_TYPE (lambda_expr)
7959 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE)
7960 && cp_lexer_peek_nth_token (parser->lexer, 2)->keyword == RID_RETURN
7961 && cp_lexer_peek_nth_token (parser->lexer, 3)->type != CPP_SEMICOLON)
7962 {
7963 tree compound_stmt;
7964 tree expr = NULL_TREE;
7965 cp_id_kind idk = CP_ID_KIND_NONE;
7966
7967 /* Parse tentatively in case there's more after the initial return
7968 statement. */
7969 cp_parser_parse_tentatively (parser);
7970
7971 cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE);
7972 cp_parser_require_keyword (parser, RID_RETURN, RT_RETURN);
7973
7974 expr = cp_parser_expression (parser, /*cast_p=*/false, &idk);
7975
7976 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
7977 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
7978
7979 if (cp_parser_parse_definitely (parser))
7980 {
7981 apply_lambda_return_type (lambda_expr, lambda_return_type (expr));
7982
7983 compound_stmt = begin_compound_stmt (0);
7984 /* Will get error here if type not deduced yet. */
7985 finish_return_stmt (expr);
7986 finish_compound_stmt (compound_stmt);
7987
7988 done = true;
7989 }
7990 }
7991
7992 if (!done)
7993 {
7994 if (!LAMBDA_EXPR_RETURN_TYPE (lambda_expr))
7995 LAMBDA_EXPR_DEDUCE_RETURN_TYPE_P (lambda_expr) = true;
7996 /* TODO: does begin_compound_stmt want BCS_FN_BODY?
7997 cp_parser_compound_stmt does not pass it. */
7998 cp_parser_function_body (parser);
7999 LAMBDA_EXPR_DEDUCE_RETURN_TYPE_P (lambda_expr) = false;
8000 }
8001
8002 finish_function_body (body);
8003 finish_lambda_scope ();
8004
8005 /* Finish the function and generate code for it if necessary. */
8006 expand_or_defer_fn (finish_function (/*inline*/2));
8007 }
8008
8009 if (nested)
8010 pop_function_context();
8011 }
8012
8013 /* Statements [gram.stmt.stmt] */
8014
8015 /* Parse a statement.
8016
8017 statement:
8018 labeled-statement
8019 expression-statement
8020 compound-statement
8021 selection-statement
8022 iteration-statement
8023 jump-statement
8024 declaration-statement
8025 try-block
8026
8027 IN_COMPOUND is true when the statement is nested inside a
8028 cp_parser_compound_statement; this matters for certain pragmas.
8029
8030 If IF_P is not NULL, *IF_P is set to indicate whether the statement
8031 is a (possibly labeled) if statement which is not enclosed in braces
8032 and has an else clause. This is used to implement -Wparentheses. */
8033
8034 static void
8035 cp_parser_statement (cp_parser* parser, tree in_statement_expr,
8036 bool in_compound, bool *if_p)
8037 {
8038 tree statement;
8039 cp_token *token;
8040 location_t statement_location;
8041
8042 restart:
8043 if (if_p != NULL)
8044 *if_p = false;
8045 /* There is no statement yet. */
8046 statement = NULL_TREE;
8047 /* Peek at the next token. */
8048 token = cp_lexer_peek_token (parser->lexer);
8049 /* Remember the location of the first token in the statement. */
8050 statement_location = token->location;
8051 /* If this is a keyword, then that will often determine what kind of
8052 statement we have. */
8053 if (token->type == CPP_KEYWORD)
8054 {
8055 enum rid keyword = token->keyword;
8056
8057 switch (keyword)
8058 {
8059 case RID_CASE:
8060 case RID_DEFAULT:
8061 /* Looks like a labeled-statement with a case label.
8062 Parse the label, and then use tail recursion to parse
8063 the statement. */
8064 cp_parser_label_for_labeled_statement (parser);
8065 goto restart;
8066
8067 case RID_IF:
8068 case RID_SWITCH:
8069 statement = cp_parser_selection_statement (parser, if_p);
8070 break;
8071
8072 case RID_WHILE:
8073 case RID_DO:
8074 case RID_FOR:
8075 statement = cp_parser_iteration_statement (parser);
8076 break;
8077
8078 case RID_BREAK:
8079 case RID_CONTINUE:
8080 case RID_RETURN:
8081 case RID_GOTO:
8082 statement = cp_parser_jump_statement (parser);
8083 break;
8084
8085 /* Objective-C++ exception-handling constructs. */
8086 case RID_AT_TRY:
8087 case RID_AT_CATCH:
8088 case RID_AT_FINALLY:
8089 case RID_AT_SYNCHRONIZED:
8090 case RID_AT_THROW:
8091 statement = cp_parser_objc_statement (parser);
8092 break;
8093
8094 case RID_TRY:
8095 statement = cp_parser_try_block (parser);
8096 break;
8097
8098 case RID_NAMESPACE:
8099 /* This must be a namespace alias definition. */
8100 cp_parser_declaration_statement (parser);
8101 return;
8102
8103 default:
8104 /* It might be a keyword like `int' that can start a
8105 declaration-statement. */
8106 break;
8107 }
8108 }
8109 else if (token->type == CPP_NAME)
8110 {
8111 /* If the next token is a `:', then we are looking at a
8112 labeled-statement. */
8113 token = cp_lexer_peek_nth_token (parser->lexer, 2);
8114 if (token->type == CPP_COLON)
8115 {
8116 /* Looks like a labeled-statement with an ordinary label.
8117 Parse the label, and then use tail recursion to parse
8118 the statement. */
8119 cp_parser_label_for_labeled_statement (parser);
8120 goto restart;
8121 }
8122 }
8123 /* Anything that starts with a `{' must be a compound-statement. */
8124 else if (token->type == CPP_OPEN_BRACE)
8125 statement = cp_parser_compound_statement (parser, NULL, false);
8126 /* CPP_PRAGMA is a #pragma inside a function body, which constitutes
8127 a statement all its own. */
8128 else if (token->type == CPP_PRAGMA)
8129 {
8130 /* Only certain OpenMP pragmas are attached to statements, and thus
8131 are considered statements themselves. All others are not. In
8132 the context of a compound, accept the pragma as a "statement" and
8133 return so that we can check for a close brace. Otherwise we
8134 require a real statement and must go back and read one. */
8135 if (in_compound)
8136 cp_parser_pragma (parser, pragma_compound);
8137 else if (!cp_parser_pragma (parser, pragma_stmt))
8138 goto restart;
8139 return;
8140 }
8141 else if (token->type == CPP_EOF)
8142 {
8143 cp_parser_error (parser, "expected statement");
8144 return;
8145 }
8146
8147 /* Everything else must be a declaration-statement or an
8148 expression-statement. Try for the declaration-statement
8149 first, unless we are looking at a `;', in which case we know that
8150 we have an expression-statement. */
8151 if (!statement)
8152 {
8153 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
8154 {
8155 cp_parser_parse_tentatively (parser);
8156 /* Try to parse the declaration-statement. */
8157 cp_parser_declaration_statement (parser);
8158 /* If that worked, we're done. */
8159 if (cp_parser_parse_definitely (parser))
8160 return;
8161 }
8162 /* Look for an expression-statement instead. */
8163 statement = cp_parser_expression_statement (parser, in_statement_expr);
8164 }
8165
8166 /* Set the line number for the statement. */
8167 if (statement && STATEMENT_CODE_P (TREE_CODE (statement)))
8168 SET_EXPR_LOCATION (statement, statement_location);
8169 }
8170
8171 /* Parse the label for a labeled-statement, i.e.
8172
8173 identifier :
8174 case constant-expression :
8175 default :
8176
8177 GNU Extension:
8178 case constant-expression ... constant-expression : statement
8179
8180 When a label is parsed without errors, the label is added to the
8181 parse tree by the finish_* functions, so this function doesn't
8182 have to return the label. */
8183
8184 static void
8185 cp_parser_label_for_labeled_statement (cp_parser* parser)
8186 {
8187 cp_token *token;
8188 tree label = NULL_TREE;
8189 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
8190
8191 /* The next token should be an identifier. */
8192 token = cp_lexer_peek_token (parser->lexer);
8193 if (token->type != CPP_NAME
8194 && token->type != CPP_KEYWORD)
8195 {
8196 cp_parser_error (parser, "expected labeled-statement");
8197 return;
8198 }
8199
8200 parser->colon_corrects_to_scope_p = false;
8201 switch (token->keyword)
8202 {
8203 case RID_CASE:
8204 {
8205 tree expr, expr_hi;
8206 cp_token *ellipsis;
8207
8208 /* Consume the `case' token. */
8209 cp_lexer_consume_token (parser->lexer);
8210 /* Parse the constant-expression. */
8211 expr = cp_parser_constant_expression (parser,
8212 /*allow_non_constant_p=*/false,
8213 NULL);
8214
8215 ellipsis = cp_lexer_peek_token (parser->lexer);
8216 if (ellipsis->type == CPP_ELLIPSIS)
8217 {
8218 /* Consume the `...' token. */
8219 cp_lexer_consume_token (parser->lexer);
8220 expr_hi =
8221 cp_parser_constant_expression (parser,
8222 /*allow_non_constant_p=*/false,
8223 NULL);
8224 /* We don't need to emit warnings here, as the common code
8225 will do this for us. */
8226 }
8227 else
8228 expr_hi = NULL_TREE;
8229
8230 if (parser->in_switch_statement_p)
8231 finish_case_label (token->location, expr, expr_hi);
8232 else
8233 error_at (token->location,
8234 "case label %qE not within a switch statement",
8235 expr);
8236 }
8237 break;
8238
8239 case RID_DEFAULT:
8240 /* Consume the `default' token. */
8241 cp_lexer_consume_token (parser->lexer);
8242
8243 if (parser->in_switch_statement_p)
8244 finish_case_label (token->location, NULL_TREE, NULL_TREE);
8245 else
8246 error_at (token->location, "case label not within a switch statement");
8247 break;
8248
8249 default:
8250 /* Anything else must be an ordinary label. */
8251 label = finish_label_stmt (cp_parser_identifier (parser));
8252 break;
8253 }
8254
8255 /* Require the `:' token. */
8256 cp_parser_require (parser, CPP_COLON, RT_COLON);
8257
8258 /* An ordinary label may optionally be followed by attributes.
8259 However, this is only permitted if the attributes are then
8260 followed by a semicolon. This is because, for backward
8261 compatibility, when parsing
8262 lab: __attribute__ ((unused)) int i;
8263 we want the attribute to attach to "i", not "lab". */
8264 if (label != NULL_TREE
8265 && cp_lexer_next_token_is_keyword (parser->lexer, RID_ATTRIBUTE))
8266 {
8267 tree attrs;
8268
8269 cp_parser_parse_tentatively (parser);
8270 attrs = cp_parser_attributes_opt (parser);
8271 if (attrs == NULL_TREE
8272 || cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
8273 cp_parser_abort_tentative_parse (parser);
8274 else if (!cp_parser_parse_definitely (parser))
8275 ;
8276 else
8277 cplus_decl_attributes (&label, attrs, 0);
8278 }
8279
8280 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
8281 }
8282
8283 /* Parse an expression-statement.
8284
8285 expression-statement:
8286 expression [opt] ;
8287
8288 Returns the new EXPR_STMT -- or NULL_TREE if the expression
8289 statement consists of nothing more than an `;'. IN_STATEMENT_EXPR_P
8290 indicates whether this expression-statement is part of an
8291 expression statement. */
8292
8293 static tree
8294 cp_parser_expression_statement (cp_parser* parser, tree in_statement_expr)
8295 {
8296 tree statement = NULL_TREE;
8297 cp_token *token = cp_lexer_peek_token (parser->lexer);
8298
8299 /* If the next token is a ';', then there is no expression
8300 statement. */
8301 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
8302 statement = cp_parser_expression (parser, /*cast_p=*/false, NULL);
8303
8304 /* Give a helpful message for "A<T>::type t;" and the like. */
8305 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON)
8306 && !cp_parser_uncommitted_to_tentative_parse_p (parser))
8307 {
8308 if (TREE_CODE (statement) == SCOPE_REF)
8309 error_at (token->location, "need %<typename%> before %qE because "
8310 "%qT is a dependent scope",
8311 statement, TREE_OPERAND (statement, 0));
8312 else if (is_overloaded_fn (statement)
8313 && DECL_CONSTRUCTOR_P (get_first_fn (statement)))
8314 {
8315 /* A::A a; */
8316 tree fn = get_first_fn (statement);
8317 error_at (token->location,
8318 "%<%T::%D%> names the constructor, not the type",
8319 DECL_CONTEXT (fn), DECL_NAME (fn));
8320 }
8321 }
8322
8323 /* Consume the final `;'. */
8324 cp_parser_consume_semicolon_at_end_of_statement (parser);
8325
8326 if (in_statement_expr
8327 && cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
8328 /* This is the final expression statement of a statement
8329 expression. */
8330 statement = finish_stmt_expr_expr (statement, in_statement_expr);
8331 else if (statement)
8332 statement = finish_expr_stmt (statement);
8333 else
8334 finish_stmt ();
8335
8336 return statement;
8337 }
8338
8339 /* Parse a compound-statement.
8340
8341 compound-statement:
8342 { statement-seq [opt] }
8343
8344 GNU extension:
8345
8346 compound-statement:
8347 { label-declaration-seq [opt] statement-seq [opt] }
8348
8349 label-declaration-seq:
8350 label-declaration
8351 label-declaration-seq label-declaration
8352
8353 Returns a tree representing the statement. */
8354
8355 static tree
8356 cp_parser_compound_statement (cp_parser *parser, tree in_statement_expr,
8357 bool in_try)
8358 {
8359 tree compound_stmt;
8360
8361 /* Consume the `{'. */
8362 if (!cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
8363 return error_mark_node;
8364 /* Begin the compound-statement. */
8365 compound_stmt = begin_compound_stmt (in_try ? BCS_TRY_BLOCK : 0);
8366 /* If the next keyword is `__label__' we have a label declaration. */
8367 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_LABEL))
8368 cp_parser_label_declaration (parser);
8369 /* Parse an (optional) statement-seq. */
8370 cp_parser_statement_seq_opt (parser, in_statement_expr);
8371 /* Finish the compound-statement. */
8372 finish_compound_stmt (compound_stmt);
8373 /* Consume the `}'. */
8374 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
8375
8376 return compound_stmt;
8377 }
8378
8379 /* Parse an (optional) statement-seq.
8380
8381 statement-seq:
8382 statement
8383 statement-seq [opt] statement */
8384
8385 static void
8386 cp_parser_statement_seq_opt (cp_parser* parser, tree in_statement_expr)
8387 {
8388 /* Scan statements until there aren't any more. */
8389 while (true)
8390 {
8391 cp_token *token = cp_lexer_peek_token (parser->lexer);
8392
8393 /* If we are looking at a `}', then we have run out of
8394 statements; the same is true if we have reached the end
8395 of file, or have stumbled upon a stray '@end'. */
8396 if (token->type == CPP_CLOSE_BRACE
8397 || token->type == CPP_EOF
8398 || token->type == CPP_PRAGMA_EOL
8399 || (token->type == CPP_KEYWORD && token->keyword == RID_AT_END))
8400 break;
8401
8402 /* If we are in a compound statement and find 'else' then
8403 something went wrong. */
8404 else if (token->type == CPP_KEYWORD && token->keyword == RID_ELSE)
8405 {
8406 if (parser->in_statement & IN_IF_STMT)
8407 break;
8408 else
8409 {
8410 token = cp_lexer_consume_token (parser->lexer);
8411 error_at (token->location, "%<else%> without a previous %<if%>");
8412 }
8413 }
8414
8415 /* Parse the statement. */
8416 cp_parser_statement (parser, in_statement_expr, true, NULL);
8417 }
8418 }
8419
8420 /* Parse a selection-statement.
8421
8422 selection-statement:
8423 if ( condition ) statement
8424 if ( condition ) statement else statement
8425 switch ( condition ) statement
8426
8427 Returns the new IF_STMT or SWITCH_STMT.
8428
8429 If IF_P is not NULL, *IF_P is set to indicate whether the statement
8430 is a (possibly labeled) if statement which is not enclosed in
8431 braces and has an else clause. This is used to implement
8432 -Wparentheses. */
8433
8434 static tree
8435 cp_parser_selection_statement (cp_parser* parser, bool *if_p)
8436 {
8437 cp_token *token;
8438 enum rid keyword;
8439
8440 if (if_p != NULL)
8441 *if_p = false;
8442
8443 /* Peek at the next token. */
8444 token = cp_parser_require (parser, CPP_KEYWORD, RT_SELECT);
8445
8446 /* See what kind of keyword it is. */
8447 keyword = token->keyword;
8448 switch (keyword)
8449 {
8450 case RID_IF:
8451 case RID_SWITCH:
8452 {
8453 tree statement;
8454 tree condition;
8455
8456 /* Look for the `('. */
8457 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
8458 {
8459 cp_parser_skip_to_end_of_statement (parser);
8460 return error_mark_node;
8461 }
8462
8463 /* Begin the selection-statement. */
8464 if (keyword == RID_IF)
8465 statement = begin_if_stmt ();
8466 else
8467 statement = begin_switch_stmt ();
8468
8469 /* Parse the condition. */
8470 condition = cp_parser_condition (parser);
8471 /* Look for the `)'. */
8472 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
8473 cp_parser_skip_to_closing_parenthesis (parser, true, false,
8474 /*consume_paren=*/true);
8475
8476 if (keyword == RID_IF)
8477 {
8478 bool nested_if;
8479 unsigned char in_statement;
8480
8481 /* Add the condition. */
8482 finish_if_stmt_cond (condition, statement);
8483
8484 /* Parse the then-clause. */
8485 in_statement = parser->in_statement;
8486 parser->in_statement |= IN_IF_STMT;
8487 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
8488 {
8489 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
8490 add_stmt (build_empty_stmt (loc));
8491 cp_lexer_consume_token (parser->lexer);
8492 if (!cp_lexer_next_token_is_keyword (parser->lexer, RID_ELSE))
8493 warning_at (loc, OPT_Wempty_body, "suggest braces around "
8494 "empty body in an %<if%> statement");
8495 nested_if = false;
8496 }
8497 else
8498 cp_parser_implicitly_scoped_statement (parser, &nested_if);
8499 parser->in_statement = in_statement;
8500
8501 finish_then_clause (statement);
8502
8503 /* If the next token is `else', parse the else-clause. */
8504 if (cp_lexer_next_token_is_keyword (parser->lexer,
8505 RID_ELSE))
8506 {
8507 /* Consume the `else' keyword. */
8508 cp_lexer_consume_token (parser->lexer);
8509 begin_else_clause (statement);
8510 /* Parse the else-clause. */
8511 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
8512 {
8513 location_t loc;
8514 loc = cp_lexer_peek_token (parser->lexer)->location;
8515 warning_at (loc,
8516 OPT_Wempty_body, "suggest braces around "
8517 "empty body in an %<else%> statement");
8518 add_stmt (build_empty_stmt (loc));
8519 cp_lexer_consume_token (parser->lexer);
8520 }
8521 else
8522 cp_parser_implicitly_scoped_statement (parser, NULL);
8523
8524 finish_else_clause (statement);
8525
8526 /* If we are currently parsing a then-clause, then
8527 IF_P will not be NULL. We set it to true to
8528 indicate that this if statement has an else clause.
8529 This may trigger the Wparentheses warning below
8530 when we get back up to the parent if statement. */
8531 if (if_p != NULL)
8532 *if_p = true;
8533 }
8534 else
8535 {
8536 /* This if statement does not have an else clause. If
8537 NESTED_IF is true, then the then-clause is an if
8538 statement which does have an else clause. We warn
8539 about the potential ambiguity. */
8540 if (nested_if)
8541 warning_at (EXPR_LOCATION (statement), OPT_Wparentheses,
8542 "suggest explicit braces to avoid ambiguous"
8543 " %<else%>");
8544 }
8545
8546 /* Now we're all done with the if-statement. */
8547 finish_if_stmt (statement);
8548 }
8549 else
8550 {
8551 bool in_switch_statement_p;
8552 unsigned char in_statement;
8553
8554 /* Add the condition. */
8555 finish_switch_cond (condition, statement);
8556
8557 /* Parse the body of the switch-statement. */
8558 in_switch_statement_p = parser->in_switch_statement_p;
8559 in_statement = parser->in_statement;
8560 parser->in_switch_statement_p = true;
8561 parser->in_statement |= IN_SWITCH_STMT;
8562 cp_parser_implicitly_scoped_statement (parser, NULL);
8563 parser->in_switch_statement_p = in_switch_statement_p;
8564 parser->in_statement = in_statement;
8565
8566 /* Now we're all done with the switch-statement. */
8567 finish_switch_stmt (statement);
8568 }
8569
8570 return statement;
8571 }
8572 break;
8573
8574 default:
8575 cp_parser_error (parser, "expected selection-statement");
8576 return error_mark_node;
8577 }
8578 }
8579
8580 /* Parse a condition.
8581
8582 condition:
8583 expression
8584 type-specifier-seq declarator = initializer-clause
8585 type-specifier-seq declarator braced-init-list
8586
8587 GNU Extension:
8588
8589 condition:
8590 type-specifier-seq declarator asm-specification [opt]
8591 attributes [opt] = assignment-expression
8592
8593 Returns the expression that should be tested. */
8594
8595 static tree
8596 cp_parser_condition (cp_parser* parser)
8597 {
8598 cp_decl_specifier_seq type_specifiers;
8599 const char *saved_message;
8600 int declares_class_or_enum;
8601
8602 /* Try the declaration first. */
8603 cp_parser_parse_tentatively (parser);
8604 /* New types are not allowed in the type-specifier-seq for a
8605 condition. */
8606 saved_message = parser->type_definition_forbidden_message;
8607 parser->type_definition_forbidden_message
8608 = G_("types may not be defined in conditions");
8609 /* Parse the type-specifier-seq. */
8610 cp_parser_decl_specifier_seq (parser,
8611 CP_PARSER_FLAGS_ONLY_TYPE_OR_CONSTEXPR,
8612 &type_specifiers,
8613 &declares_class_or_enum);
8614 /* Restore the saved message. */
8615 parser->type_definition_forbidden_message = saved_message;
8616 /* If all is well, we might be looking at a declaration. */
8617 if (!cp_parser_error_occurred (parser))
8618 {
8619 tree decl;
8620 tree asm_specification;
8621 tree attributes;
8622 cp_declarator *declarator;
8623 tree initializer = NULL_TREE;
8624
8625 /* Parse the declarator. */
8626 declarator = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
8627 /*ctor_dtor_or_conv_p=*/NULL,
8628 /*parenthesized_p=*/NULL,
8629 /*member_p=*/false);
8630 /* Parse the attributes. */
8631 attributes = cp_parser_attributes_opt (parser);
8632 /* Parse the asm-specification. */
8633 asm_specification = cp_parser_asm_specification_opt (parser);
8634 /* If the next token is not an `=' or '{', then we might still be
8635 looking at an expression. For example:
8636
8637 if (A(a).x)
8638
8639 looks like a decl-specifier-seq and a declarator -- but then
8640 there is no `=', so this is an expression. */
8641 if (cp_lexer_next_token_is_not (parser->lexer, CPP_EQ)
8642 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE))
8643 cp_parser_simulate_error (parser);
8644
8645 /* If we did see an `=' or '{', then we are looking at a declaration
8646 for sure. */
8647 if (cp_parser_parse_definitely (parser))
8648 {
8649 tree pushed_scope;
8650 bool non_constant_p;
8651 bool flags = LOOKUP_ONLYCONVERTING;
8652
8653 /* Create the declaration. */
8654 decl = start_decl (declarator, &type_specifiers,
8655 /*initialized_p=*/true,
8656 attributes, /*prefix_attributes=*/NULL_TREE,
8657 &pushed_scope);
8658
8659 /* Parse the initializer. */
8660 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
8661 {
8662 initializer = cp_parser_braced_list (parser, &non_constant_p);
8663 CONSTRUCTOR_IS_DIRECT_INIT (initializer) = 1;
8664 flags = 0;
8665 }
8666 else
8667 {
8668 /* Consume the `='. */
8669 cp_parser_require (parser, CPP_EQ, RT_EQ);
8670 initializer = cp_parser_initializer_clause (parser, &non_constant_p);
8671 }
8672 if (BRACE_ENCLOSED_INITIALIZER_P (initializer))
8673 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
8674
8675 if (!non_constant_p)
8676 initializer = fold_non_dependent_expr (initializer);
8677
8678 /* Process the initializer. */
8679 cp_finish_decl (decl,
8680 initializer, !non_constant_p,
8681 asm_specification,
8682 flags);
8683
8684 if (pushed_scope)
8685 pop_scope (pushed_scope);
8686
8687 return convert_from_reference (decl);
8688 }
8689 }
8690 /* If we didn't even get past the declarator successfully, we are
8691 definitely not looking at a declaration. */
8692 else
8693 cp_parser_abort_tentative_parse (parser);
8694
8695 /* Otherwise, we are looking at an expression. */
8696 return cp_parser_expression (parser, /*cast_p=*/false, NULL);
8697 }
8698
8699 /* Parses a for-statement or range-for-statement until the closing ')',
8700 not included. */
8701
8702 static tree
8703 cp_parser_for (cp_parser *parser)
8704 {
8705 tree init, scope, decl;
8706 bool is_range_for;
8707
8708 /* Begin the for-statement. */
8709 scope = begin_for_scope (&init);
8710
8711 /* Parse the initialization. */
8712 is_range_for = cp_parser_for_init_statement (parser, &decl);
8713
8714 if (is_range_for)
8715 return cp_parser_range_for (parser, scope, init, decl);
8716 else
8717 return cp_parser_c_for (parser, scope, init);
8718 }
8719
8720 static tree
8721 cp_parser_c_for (cp_parser *parser, tree scope, tree init)
8722 {
8723 /* Normal for loop */
8724 tree condition = NULL_TREE;
8725 tree expression = NULL_TREE;
8726 tree stmt;
8727
8728 stmt = begin_for_stmt (scope, init);
8729 /* The for-init-statement has already been parsed in
8730 cp_parser_for_init_statement, so no work is needed here. */
8731 finish_for_init_stmt (stmt);
8732
8733 /* If there's a condition, process it. */
8734 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
8735 condition = cp_parser_condition (parser);
8736 finish_for_cond (condition, stmt);
8737 /* Look for the `;'. */
8738 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
8739
8740 /* If there's an expression, process it. */
8741 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN))
8742 expression = cp_parser_expression (parser, /*cast_p=*/false, NULL);
8743 finish_for_expr (expression, stmt);
8744
8745 return stmt;
8746 }
8747
8748 /* Tries to parse a range-based for-statement:
8749
8750 range-based-for:
8751 decl-specifier-seq declarator : expression
8752
8753 The decl-specifier-seq declarator and the `:' are already parsed by
8754 cp_parser_for_init_statement. If processing_template_decl it returns a
8755 newly created RANGE_FOR_STMT; if not, it is converted to a
8756 regular FOR_STMT. */
8757
8758 static tree
8759 cp_parser_range_for (cp_parser *parser, tree scope, tree init, tree range_decl)
8760 {
8761 tree stmt, range_expr;
8762
8763 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
8764 {
8765 bool expr_non_constant_p;
8766 range_expr = cp_parser_braced_list (parser, &expr_non_constant_p);
8767 }
8768 else
8769 range_expr = cp_parser_expression (parser, /*cast_p=*/false, NULL);
8770
8771 /* If in template, STMT is converted to a normal for-statement
8772 at instantiation. If not, it is done just ahead. */
8773 if (processing_template_decl)
8774 {
8775 stmt = begin_range_for_stmt (scope, init);
8776 finish_range_for_decl (stmt, range_decl, range_expr);
8777 }
8778 else
8779 {
8780 stmt = begin_for_stmt (scope, init);
8781 stmt = cp_convert_range_for (stmt, range_decl, range_expr);
8782 }
8783 return stmt;
8784 }
8785
8786 /* Converts a range-based for-statement into a normal
8787 for-statement, as per the definition.
8788
8789 for (RANGE_DECL : RANGE_EXPR)
8790 BLOCK
8791
8792 should be equivalent to:
8793
8794 {
8795 auto &&__range = RANGE_EXPR;
8796 for (auto __begin = BEGIN_EXPR, end = END_EXPR;
8797 __begin != __end;
8798 ++__begin)
8799 {
8800 RANGE_DECL = *__begin;
8801 BLOCK
8802 }
8803 }
8804
8805 If RANGE_EXPR is an array:
8806 BEGIN_EXPR = __range
8807 END_EXPR = __range + ARRAY_SIZE(__range)
8808 Else:
8809 BEGIN_EXPR = begin(__range)
8810 END_EXPR = end(__range);
8811
8812 When calling begin()/end() we must use argument dependent
8813 lookup, but always considering 'std' as an associated namespace. */
8814
8815 tree
8816 cp_convert_range_for (tree statement, tree range_decl, tree range_expr)
8817 {
8818 tree range_type, range_temp;
8819 tree begin, end;
8820 tree iter_type, begin_expr, end_expr;
8821 tree condition, expression;
8822
8823 if (range_decl == error_mark_node || range_expr == error_mark_node)
8824 /* If an error happened previously do nothing or else a lot of
8825 unhelpful errors would be issued. */
8826 begin_expr = end_expr = iter_type = error_mark_node;
8827 else
8828 {
8829 /* Find out the type deduced by the declaration
8830 * `auto &&__range = range_expr' */
8831 range_type = cp_build_reference_type (make_auto (), true);
8832 range_type = do_auto_deduction (range_type, range_expr,
8833 type_uses_auto (range_type));
8834
8835 /* Create the __range variable */
8836 range_temp = build_decl (input_location, VAR_DECL,
8837 get_identifier ("__for_range"), range_type);
8838 TREE_USED (range_temp) = 1;
8839 DECL_ARTIFICIAL (range_temp) = 1;
8840 pushdecl (range_temp);
8841 cp_finish_decl (range_temp, range_expr,
8842 /*is_constant_init*/false, NULL_TREE,
8843 LOOKUP_ONLYCONVERTING);
8844
8845 range_temp = convert_from_reference (range_temp);
8846
8847 if (TREE_CODE (TREE_TYPE (range_temp)) == ARRAY_TYPE)
8848 {
8849 /* If RANGE_TEMP is an array we will use pointer arithmetic */
8850 iter_type = build_pointer_type (TREE_TYPE (TREE_TYPE (range_temp)));
8851 begin_expr = range_temp;
8852 end_expr
8853 = build_binary_op (input_location, PLUS_EXPR,
8854 range_temp,
8855 array_type_nelts_top (TREE_TYPE (range_temp)),
8856 0);
8857 }
8858 else
8859 {
8860 /* If it is not an array, we must call begin(__range)/end__range() */
8861 VEC(tree,gc) *vec;
8862
8863 begin_expr = get_identifier ("begin");
8864 vec = make_tree_vector ();
8865 VEC_safe_push (tree, gc, vec, range_temp);
8866 begin_expr = perform_koenig_lookup (begin_expr, vec,
8867 /*include_std=*/true);
8868 begin_expr = finish_call_expr (begin_expr, &vec, false, true,
8869 tf_warning_or_error);
8870 release_tree_vector (vec);
8871
8872 end_expr = get_identifier ("end");
8873 vec = make_tree_vector ();
8874 VEC_safe_push (tree, gc, vec, range_temp);
8875 end_expr = perform_koenig_lookup (end_expr, vec,
8876 /*include_std=*/true);
8877 end_expr = finish_call_expr (end_expr, &vec, false, true,
8878 tf_warning_or_error);
8879 release_tree_vector (vec);
8880
8881 /* The unqualified type of the __begin and __end temporaries should
8882 * be the same as required by the multiple auto declaration */
8883 iter_type = cv_unqualified (TREE_TYPE (begin_expr));
8884 if (!same_type_p (iter_type, cv_unqualified (TREE_TYPE (end_expr))))
8885 error ("inconsistent begin/end types in range-based for: %qT and %qT",
8886 TREE_TYPE (begin_expr), TREE_TYPE (end_expr));
8887 }
8888 }
8889
8890 /* The new for initialization statement */
8891 begin = build_decl (input_location, VAR_DECL,
8892 get_identifier ("__for_begin"), iter_type);
8893 TREE_USED (begin) = 1;
8894 DECL_ARTIFICIAL (begin) = 1;
8895 pushdecl (begin);
8896 cp_finish_decl (begin, begin_expr,
8897 /*is_constant_init*/false, NULL_TREE,
8898 LOOKUP_ONLYCONVERTING);
8899
8900 end = build_decl (input_location, VAR_DECL,
8901 get_identifier ("__for_end"), iter_type);
8902 TREE_USED (end) = 1;
8903 DECL_ARTIFICIAL (end) = 1;
8904 pushdecl (end);
8905 cp_finish_decl (end, end_expr,
8906 /*is_constant_init*/false, NULL_TREE,
8907 LOOKUP_ONLYCONVERTING);
8908
8909 finish_for_init_stmt (statement);
8910
8911 /* The new for condition */
8912 condition = build_x_binary_op (NE_EXPR,
8913 begin, ERROR_MARK,
8914 end, ERROR_MARK,
8915 NULL, tf_warning_or_error);
8916 finish_for_cond (condition, statement);
8917
8918 /* The new increment expression */
8919 expression = finish_unary_op_expr (PREINCREMENT_EXPR, begin);
8920 finish_for_expr (expression, statement);
8921
8922 /* The declaration is initialized with *__begin inside the loop body */
8923 cp_finish_decl (range_decl,
8924 build_x_indirect_ref (begin, RO_NULL, tf_warning_or_error),
8925 /*is_constant_init*/false, NULL_TREE,
8926 LOOKUP_ONLYCONVERTING);
8927
8928 return statement;
8929 }
8930
8931
8932 /* Parse an iteration-statement.
8933
8934 iteration-statement:
8935 while ( condition ) statement
8936 do statement while ( expression ) ;
8937 for ( for-init-statement condition [opt] ; expression [opt] )
8938 statement
8939
8940 Returns the new WHILE_STMT, DO_STMT, FOR_STMT or RANGE_FOR_STMT. */
8941
8942 static tree
8943 cp_parser_iteration_statement (cp_parser* parser)
8944 {
8945 cp_token *token;
8946 enum rid keyword;
8947 tree statement;
8948 unsigned char in_statement;
8949
8950 /* Peek at the next token. */
8951 token = cp_parser_require (parser, CPP_KEYWORD, RT_INTERATION);
8952 if (!token)
8953 return error_mark_node;
8954
8955 /* Remember whether or not we are already within an iteration
8956 statement. */
8957 in_statement = parser->in_statement;
8958
8959 /* See what kind of keyword it is. */
8960 keyword = token->keyword;
8961 switch (keyword)
8962 {
8963 case RID_WHILE:
8964 {
8965 tree condition;
8966
8967 /* Begin the while-statement. */
8968 statement = begin_while_stmt ();
8969 /* Look for the `('. */
8970 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
8971 /* Parse the condition. */
8972 condition = cp_parser_condition (parser);
8973 finish_while_stmt_cond (condition, statement);
8974 /* Look for the `)'. */
8975 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
8976 /* Parse the dependent statement. */
8977 parser->in_statement = IN_ITERATION_STMT;
8978 cp_parser_already_scoped_statement (parser);
8979 parser->in_statement = in_statement;
8980 /* We're done with the while-statement. */
8981 finish_while_stmt (statement);
8982 }
8983 break;
8984
8985 case RID_DO:
8986 {
8987 tree expression;
8988
8989 /* Begin the do-statement. */
8990 statement = begin_do_stmt ();
8991 /* Parse the body of the do-statement. */
8992 parser->in_statement = IN_ITERATION_STMT;
8993 cp_parser_implicitly_scoped_statement (parser, NULL);
8994 parser->in_statement = in_statement;
8995 finish_do_body (statement);
8996 /* Look for the `while' keyword. */
8997 cp_parser_require_keyword (parser, RID_WHILE, RT_WHILE);
8998 /* Look for the `('. */
8999 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
9000 /* Parse the expression. */
9001 expression = cp_parser_expression (parser, /*cast_p=*/false, NULL);
9002 /* We're done with the do-statement. */
9003 finish_do_stmt (expression, statement);
9004 /* Look for the `)'. */
9005 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
9006 /* Look for the `;'. */
9007 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
9008 }
9009 break;
9010
9011 case RID_FOR:
9012 {
9013 /* Look for the `('. */
9014 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
9015
9016 statement = cp_parser_for (parser);
9017
9018 /* Look for the `)'. */
9019 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
9020
9021 /* Parse the body of the for-statement. */
9022 parser->in_statement = IN_ITERATION_STMT;
9023 cp_parser_already_scoped_statement (parser);
9024 parser->in_statement = in_statement;
9025
9026 /* We're done with the for-statement. */
9027 finish_for_stmt (statement);
9028 }
9029 break;
9030
9031 default:
9032 cp_parser_error (parser, "expected iteration-statement");
9033 statement = error_mark_node;
9034 break;
9035 }
9036
9037 return statement;
9038 }
9039
9040 /* Parse a for-init-statement or the declarator of a range-based-for.
9041 Returns true if a range-based-for declaration is seen.
9042
9043 for-init-statement:
9044 expression-statement
9045 simple-declaration */
9046
9047 static bool
9048 cp_parser_for_init_statement (cp_parser* parser, tree *decl)
9049 {
9050 /* If the next token is a `;', then we have an empty
9051 expression-statement. Grammatically, this is also a
9052 simple-declaration, but an invalid one, because it does not
9053 declare anything. Therefore, if we did not handle this case
9054 specially, we would issue an error message about an invalid
9055 declaration. */
9056 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
9057 {
9058 bool is_range_for = false;
9059 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
9060
9061 parser->colon_corrects_to_scope_p = false;
9062
9063 /* We're going to speculatively look for a declaration, falling back
9064 to an expression, if necessary. */
9065 cp_parser_parse_tentatively (parser);
9066 /* Parse the declaration. */
9067 cp_parser_simple_declaration (parser,
9068 /*function_definition_allowed_p=*/false,
9069 decl);
9070 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
9071 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
9072 {
9073 /* It is a range-for, consume the ':' */
9074 cp_lexer_consume_token (parser->lexer);
9075 is_range_for = true;
9076 if (cxx_dialect < cxx0x)
9077 {
9078 error_at (cp_lexer_peek_token (parser->lexer)->location,
9079 "range-based-for loops are not allowed "
9080 "in C++98 mode");
9081 *decl = error_mark_node;
9082 }
9083 }
9084 else
9085 /* The ';' is not consumed yet because we told
9086 cp_parser_simple_declaration not to. */
9087 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
9088
9089 if (cp_parser_parse_definitely (parser))
9090 return is_range_for;
9091 /* If the tentative parse failed, then we shall need to look for an
9092 expression-statement. */
9093 }
9094 /* If we are here, it is an expression-statement. */
9095 cp_parser_expression_statement (parser, NULL_TREE);
9096 return false;
9097 }
9098
9099 /* Parse a jump-statement.
9100
9101 jump-statement:
9102 break ;
9103 continue ;
9104 return expression [opt] ;
9105 return braced-init-list ;
9106 goto identifier ;
9107
9108 GNU extension:
9109
9110 jump-statement:
9111 goto * expression ;
9112
9113 Returns the new BREAK_STMT, CONTINUE_STMT, RETURN_EXPR, or GOTO_EXPR. */
9114
9115 static tree
9116 cp_parser_jump_statement (cp_parser* parser)
9117 {
9118 tree statement = error_mark_node;
9119 cp_token *token;
9120 enum rid keyword;
9121 unsigned char in_statement;
9122
9123 /* Peek at the next token. */
9124 token = cp_parser_require (parser, CPP_KEYWORD, RT_JUMP);
9125 if (!token)
9126 return error_mark_node;
9127
9128 /* See what kind of keyword it is. */
9129 keyword = token->keyword;
9130 switch (keyword)
9131 {
9132 case RID_BREAK:
9133 in_statement = parser->in_statement & ~IN_IF_STMT;
9134 switch (in_statement)
9135 {
9136 case 0:
9137 error_at (token->location, "break statement not within loop or switch");
9138 break;
9139 default:
9140 gcc_assert ((in_statement & IN_SWITCH_STMT)
9141 || in_statement == IN_ITERATION_STMT);
9142 statement = finish_break_stmt ();
9143 break;
9144 case IN_OMP_BLOCK:
9145 error_at (token->location, "invalid exit from OpenMP structured block");
9146 break;
9147 case IN_OMP_FOR:
9148 error_at (token->location, "break statement used with OpenMP for loop");
9149 break;
9150 }
9151 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
9152 break;
9153
9154 case RID_CONTINUE:
9155 switch (parser->in_statement & ~(IN_SWITCH_STMT | IN_IF_STMT))
9156 {
9157 case 0:
9158 error_at (token->location, "continue statement not within a loop");
9159 break;
9160 case IN_ITERATION_STMT:
9161 case IN_OMP_FOR:
9162 statement = finish_continue_stmt ();
9163 break;
9164 case IN_OMP_BLOCK:
9165 error_at (token->location, "invalid exit from OpenMP structured block");
9166 break;
9167 default:
9168 gcc_unreachable ();
9169 }
9170 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
9171 break;
9172
9173 case RID_RETURN:
9174 {
9175 tree expr;
9176 bool expr_non_constant_p;
9177
9178 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
9179 {
9180 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
9181 expr = cp_parser_braced_list (parser, &expr_non_constant_p);
9182 }
9183 else if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
9184 expr = cp_parser_expression (parser, /*cast_p=*/false, NULL);
9185 else
9186 /* If the next token is a `;', then there is no
9187 expression. */
9188 expr = NULL_TREE;
9189 /* Build the return-statement. */
9190 statement = finish_return_stmt (expr);
9191 /* Look for the final `;'. */
9192 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
9193 }
9194 break;
9195
9196 case RID_GOTO:
9197 /* Create the goto-statement. */
9198 if (cp_lexer_next_token_is (parser->lexer, CPP_MULT))
9199 {
9200 /* Issue a warning about this use of a GNU extension. */
9201 pedwarn (token->location, OPT_pedantic, "ISO C++ forbids computed gotos");
9202 /* Consume the '*' token. */
9203 cp_lexer_consume_token (parser->lexer);
9204 /* Parse the dependent expression. */
9205 finish_goto_stmt (cp_parser_expression (parser, /*cast_p=*/false, NULL));
9206 }
9207 else
9208 finish_goto_stmt (cp_parser_identifier (parser));
9209 /* Look for the final `;'. */
9210 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
9211 break;
9212
9213 default:
9214 cp_parser_error (parser, "expected jump-statement");
9215 break;
9216 }
9217
9218 return statement;
9219 }
9220
9221 /* Parse a declaration-statement.
9222
9223 declaration-statement:
9224 block-declaration */
9225
9226 static void
9227 cp_parser_declaration_statement (cp_parser* parser)
9228 {
9229 void *p;
9230
9231 /* Get the high-water mark for the DECLARATOR_OBSTACK. */
9232 p = obstack_alloc (&declarator_obstack, 0);
9233
9234 /* Parse the block-declaration. */
9235 cp_parser_block_declaration (parser, /*statement_p=*/true);
9236
9237 /* Free any declarators allocated. */
9238 obstack_free (&declarator_obstack, p);
9239
9240 /* Finish off the statement. */
9241 finish_stmt ();
9242 }
9243
9244 /* Some dependent statements (like `if (cond) statement'), are
9245 implicitly in their own scope. In other words, if the statement is
9246 a single statement (as opposed to a compound-statement), it is
9247 none-the-less treated as if it were enclosed in braces. Any
9248 declarations appearing in the dependent statement are out of scope
9249 after control passes that point. This function parses a statement,
9250 but ensures that is in its own scope, even if it is not a
9251 compound-statement.
9252
9253 If IF_P is not NULL, *IF_P is set to indicate whether the statement
9254 is a (possibly labeled) if statement which is not enclosed in
9255 braces and has an else clause. This is used to implement
9256 -Wparentheses.
9257
9258 Returns the new statement. */
9259
9260 static tree
9261 cp_parser_implicitly_scoped_statement (cp_parser* parser, bool *if_p)
9262 {
9263 tree statement;
9264
9265 if (if_p != NULL)
9266 *if_p = false;
9267
9268 /* Mark if () ; with a special NOP_EXPR. */
9269 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
9270 {
9271 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
9272 cp_lexer_consume_token (parser->lexer);
9273 statement = add_stmt (build_empty_stmt (loc));
9274 }
9275 /* if a compound is opened, we simply parse the statement directly. */
9276 else if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
9277 statement = cp_parser_compound_statement (parser, NULL, false);
9278 /* If the token is not a `{', then we must take special action. */
9279 else
9280 {
9281 /* Create a compound-statement. */
9282 statement = begin_compound_stmt (0);
9283 /* Parse the dependent-statement. */
9284 cp_parser_statement (parser, NULL_TREE, false, if_p);
9285 /* Finish the dummy compound-statement. */
9286 finish_compound_stmt (statement);
9287 }
9288
9289 /* Return the statement. */
9290 return statement;
9291 }
9292
9293 /* For some dependent statements (like `while (cond) statement'), we
9294 have already created a scope. Therefore, even if the dependent
9295 statement is a compound-statement, we do not want to create another
9296 scope. */
9297
9298 static void
9299 cp_parser_already_scoped_statement (cp_parser* parser)
9300 {
9301 /* If the token is a `{', then we must take special action. */
9302 if (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE))
9303 cp_parser_statement (parser, NULL_TREE, false, NULL);
9304 else
9305 {
9306 /* Avoid calling cp_parser_compound_statement, so that we
9307 don't create a new scope. Do everything else by hand. */
9308 cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE);
9309 /* If the next keyword is `__label__' we have a label declaration. */
9310 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_LABEL))
9311 cp_parser_label_declaration (parser);
9312 /* Parse an (optional) statement-seq. */
9313 cp_parser_statement_seq_opt (parser, NULL_TREE);
9314 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
9315 }
9316 }
9317
9318 /* Declarations [gram.dcl.dcl] */
9319
9320 /* Parse an optional declaration-sequence.
9321
9322 declaration-seq:
9323 declaration
9324 declaration-seq declaration */
9325
9326 static void
9327 cp_parser_declaration_seq_opt (cp_parser* parser)
9328 {
9329 while (true)
9330 {
9331 cp_token *token;
9332
9333 token = cp_lexer_peek_token (parser->lexer);
9334
9335 if (token->type == CPP_CLOSE_BRACE
9336 || token->type == CPP_EOF
9337 || token->type == CPP_PRAGMA_EOL)
9338 break;
9339
9340 if (token->type == CPP_SEMICOLON)
9341 {
9342 /* A declaration consisting of a single semicolon is
9343 invalid. Allow it unless we're being pedantic. */
9344 cp_lexer_consume_token (parser->lexer);
9345 if (!in_system_header)
9346 pedwarn (input_location, OPT_pedantic, "extra %<;%>");
9347 continue;
9348 }
9349
9350 /* If we're entering or exiting a region that's implicitly
9351 extern "C", modify the lang context appropriately. */
9352 if (!parser->implicit_extern_c && token->implicit_extern_c)
9353 {
9354 push_lang_context (lang_name_c);
9355 parser->implicit_extern_c = true;
9356 }
9357 else if (parser->implicit_extern_c && !token->implicit_extern_c)
9358 {
9359 pop_lang_context ();
9360 parser->implicit_extern_c = false;
9361 }
9362
9363 if (token->type == CPP_PRAGMA)
9364 {
9365 /* A top-level declaration can consist solely of a #pragma.
9366 A nested declaration cannot, so this is done here and not
9367 in cp_parser_declaration. (A #pragma at block scope is
9368 handled in cp_parser_statement.) */
9369 cp_parser_pragma (parser, pragma_external);
9370 continue;
9371 }
9372
9373 /* Parse the declaration itself. */
9374 cp_parser_declaration (parser);
9375 }
9376 }
9377
9378 /* Parse a declaration.
9379
9380 declaration:
9381 block-declaration
9382 function-definition
9383 template-declaration
9384 explicit-instantiation
9385 explicit-specialization
9386 linkage-specification
9387 namespace-definition
9388
9389 GNU extension:
9390
9391 declaration:
9392 __extension__ declaration */
9393
9394 static void
9395 cp_parser_declaration (cp_parser* parser)
9396 {
9397 cp_token token1;
9398 cp_token token2;
9399 int saved_pedantic;
9400 void *p;
9401 tree attributes = NULL_TREE;
9402
9403 /* Check for the `__extension__' keyword. */
9404 if (cp_parser_extension_opt (parser, &saved_pedantic))
9405 {
9406 /* Parse the qualified declaration. */
9407 cp_parser_declaration (parser);
9408 /* Restore the PEDANTIC flag. */
9409 pedantic = saved_pedantic;
9410
9411 return;
9412 }
9413
9414 /* Try to figure out what kind of declaration is present. */
9415 token1 = *cp_lexer_peek_token (parser->lexer);
9416
9417 if (token1.type != CPP_EOF)
9418 token2 = *cp_lexer_peek_nth_token (parser->lexer, 2);
9419 else
9420 {
9421 token2.type = CPP_EOF;
9422 token2.keyword = RID_MAX;
9423 }
9424
9425 /* Get the high-water mark for the DECLARATOR_OBSTACK. */
9426 p = obstack_alloc (&declarator_obstack, 0);
9427
9428 /* If the next token is `extern' and the following token is a string
9429 literal, then we have a linkage specification. */
9430 if (token1.keyword == RID_EXTERN
9431 && cp_parser_is_string_literal (&token2))
9432 cp_parser_linkage_specification (parser);
9433 /* If the next token is `template', then we have either a template
9434 declaration, an explicit instantiation, or an explicit
9435 specialization. */
9436 else if (token1.keyword == RID_TEMPLATE)
9437 {
9438 /* `template <>' indicates a template specialization. */
9439 if (token2.type == CPP_LESS
9440 && cp_lexer_peek_nth_token (parser->lexer, 3)->type == CPP_GREATER)
9441 cp_parser_explicit_specialization (parser);
9442 /* `template <' indicates a template declaration. */
9443 else if (token2.type == CPP_LESS)
9444 cp_parser_template_declaration (parser, /*member_p=*/false);
9445 /* Anything else must be an explicit instantiation. */
9446 else
9447 cp_parser_explicit_instantiation (parser);
9448 }
9449 /* If the next token is `export', then we have a template
9450 declaration. */
9451 else if (token1.keyword == RID_EXPORT)
9452 cp_parser_template_declaration (parser, /*member_p=*/false);
9453 /* If the next token is `extern', 'static' or 'inline' and the one
9454 after that is `template', we have a GNU extended explicit
9455 instantiation directive. */
9456 else if (cp_parser_allow_gnu_extensions_p (parser)
9457 && (token1.keyword == RID_EXTERN
9458 || token1.keyword == RID_STATIC
9459 || token1.keyword == RID_INLINE)
9460 && token2.keyword == RID_TEMPLATE)
9461 cp_parser_explicit_instantiation (parser);
9462 /* If the next token is `namespace', check for a named or unnamed
9463 namespace definition. */
9464 else if (token1.keyword == RID_NAMESPACE
9465 && (/* A named namespace definition. */
9466 (token2.type == CPP_NAME
9467 && (cp_lexer_peek_nth_token (parser->lexer, 3)->type
9468 != CPP_EQ))
9469 /* An unnamed namespace definition. */
9470 || token2.type == CPP_OPEN_BRACE
9471 || token2.keyword == RID_ATTRIBUTE))
9472 cp_parser_namespace_definition (parser);
9473 /* An inline (associated) namespace definition. */
9474 else if (token1.keyword == RID_INLINE
9475 && token2.keyword == RID_NAMESPACE)
9476 cp_parser_namespace_definition (parser);
9477 /* Objective-C++ declaration/definition. */
9478 else if (c_dialect_objc () && OBJC_IS_AT_KEYWORD (token1.keyword))
9479 cp_parser_objc_declaration (parser, NULL_TREE);
9480 else if (c_dialect_objc ()
9481 && token1.keyword == RID_ATTRIBUTE
9482 && cp_parser_objc_valid_prefix_attributes (parser, &attributes))
9483 cp_parser_objc_declaration (parser, attributes);
9484 /* We must have either a block declaration or a function
9485 definition. */
9486 else
9487 /* Try to parse a block-declaration, or a function-definition. */
9488 cp_parser_block_declaration (parser, /*statement_p=*/false);
9489
9490 /* Free any declarators allocated. */
9491 obstack_free (&declarator_obstack, p);
9492 }
9493
9494 /* Parse a block-declaration.
9495
9496 block-declaration:
9497 simple-declaration
9498 asm-definition
9499 namespace-alias-definition
9500 using-declaration
9501 using-directive
9502
9503 GNU Extension:
9504
9505 block-declaration:
9506 __extension__ block-declaration
9507
9508 C++0x Extension:
9509
9510 block-declaration:
9511 static_assert-declaration
9512
9513 If STATEMENT_P is TRUE, then this block-declaration is occurring as
9514 part of a declaration-statement. */
9515
9516 static void
9517 cp_parser_block_declaration (cp_parser *parser,
9518 bool statement_p)
9519 {
9520 cp_token *token1;
9521 int saved_pedantic;
9522
9523 /* Check for the `__extension__' keyword. */
9524 if (cp_parser_extension_opt (parser, &saved_pedantic))
9525 {
9526 /* Parse the qualified declaration. */
9527 cp_parser_block_declaration (parser, statement_p);
9528 /* Restore the PEDANTIC flag. */
9529 pedantic = saved_pedantic;
9530
9531 return;
9532 }
9533
9534 /* Peek at the next token to figure out which kind of declaration is
9535 present. */
9536 token1 = cp_lexer_peek_token (parser->lexer);
9537
9538 /* If the next keyword is `asm', we have an asm-definition. */
9539 if (token1->keyword == RID_ASM)
9540 {
9541 if (statement_p)
9542 cp_parser_commit_to_tentative_parse (parser);
9543 cp_parser_asm_definition (parser);
9544 }
9545 /* If the next keyword is `namespace', we have a
9546 namespace-alias-definition. */
9547 else if (token1->keyword == RID_NAMESPACE)
9548 cp_parser_namespace_alias_definition (parser);
9549 /* If the next keyword is `using', we have either a
9550 using-declaration or a using-directive. */
9551 else if (token1->keyword == RID_USING)
9552 {
9553 cp_token *token2;
9554
9555 if (statement_p)
9556 cp_parser_commit_to_tentative_parse (parser);
9557 /* If the token after `using' is `namespace', then we have a
9558 using-directive. */
9559 token2 = cp_lexer_peek_nth_token (parser->lexer, 2);
9560 if (token2->keyword == RID_NAMESPACE)
9561 cp_parser_using_directive (parser);
9562 /* Otherwise, it's a using-declaration. */
9563 else
9564 cp_parser_using_declaration (parser,
9565 /*access_declaration_p=*/false);
9566 }
9567 /* If the next keyword is `__label__' we have a misplaced label
9568 declaration. */
9569 else if (token1->keyword == RID_LABEL)
9570 {
9571 cp_lexer_consume_token (parser->lexer);
9572 error_at (token1->location, "%<__label__%> not at the beginning of a block");
9573 cp_parser_skip_to_end_of_statement (parser);
9574 /* If the next token is now a `;', consume it. */
9575 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
9576 cp_lexer_consume_token (parser->lexer);
9577 }
9578 /* If the next token is `static_assert' we have a static assertion. */
9579 else if (token1->keyword == RID_STATIC_ASSERT)
9580 cp_parser_static_assert (parser, /*member_p=*/false);
9581 /* Anything else must be a simple-declaration. */
9582 else
9583 cp_parser_simple_declaration (parser, !statement_p,
9584 /*maybe_range_for_decl*/NULL);
9585 }
9586
9587 /* Parse a simple-declaration.
9588
9589 simple-declaration:
9590 decl-specifier-seq [opt] init-declarator-list [opt] ;
9591
9592 init-declarator-list:
9593 init-declarator
9594 init-declarator-list , init-declarator
9595
9596 If FUNCTION_DEFINITION_ALLOWED_P is TRUE, then we also recognize a
9597 function-definition as a simple-declaration.
9598
9599 If MAYBE_RANGE_FOR_DECL is not NULL, the pointed tree will be set to the
9600 parsed declaration if it is an uninitialized single declarator not followed
9601 by a `;', or to error_mark_node otherwise. Either way, the trailing `;',
9602 if present, will not be consumed. */
9603
9604 static void
9605 cp_parser_simple_declaration (cp_parser* parser,
9606 bool function_definition_allowed_p,
9607 tree *maybe_range_for_decl)
9608 {
9609 cp_decl_specifier_seq decl_specifiers;
9610 int declares_class_or_enum;
9611 bool saw_declarator;
9612
9613 if (maybe_range_for_decl)
9614 *maybe_range_for_decl = NULL_TREE;
9615
9616 /* Defer access checks until we know what is being declared; the
9617 checks for names appearing in the decl-specifier-seq should be
9618 done as if we were in the scope of the thing being declared. */
9619 push_deferring_access_checks (dk_deferred);
9620
9621 /* Parse the decl-specifier-seq. We have to keep track of whether
9622 or not the decl-specifier-seq declares a named class or
9623 enumeration type, since that is the only case in which the
9624 init-declarator-list is allowed to be empty.
9625
9626 [dcl.dcl]
9627
9628 In a simple-declaration, the optional init-declarator-list can be
9629 omitted only when declaring a class or enumeration, that is when
9630 the decl-specifier-seq contains either a class-specifier, an
9631 elaborated-type-specifier, or an enum-specifier. */
9632 cp_parser_decl_specifier_seq (parser,
9633 CP_PARSER_FLAGS_OPTIONAL,
9634 &decl_specifiers,
9635 &declares_class_or_enum);
9636 /* We no longer need to defer access checks. */
9637 stop_deferring_access_checks ();
9638
9639 /* In a block scope, a valid declaration must always have a
9640 decl-specifier-seq. By not trying to parse declarators, we can
9641 resolve the declaration/expression ambiguity more quickly. */
9642 if (!function_definition_allowed_p
9643 && !decl_specifiers.any_specifiers_p)
9644 {
9645 cp_parser_error (parser, "expected declaration");
9646 goto done;
9647 }
9648
9649 /* If the next two tokens are both identifiers, the code is
9650 erroneous. The usual cause of this situation is code like:
9651
9652 T t;
9653
9654 where "T" should name a type -- but does not. */
9655 if (!decl_specifiers.any_type_specifiers_p
9656 && cp_parser_parse_and_diagnose_invalid_type_name (parser))
9657 {
9658 /* If parsing tentatively, we should commit; we really are
9659 looking at a declaration. */
9660 cp_parser_commit_to_tentative_parse (parser);
9661 /* Give up. */
9662 goto done;
9663 }
9664
9665 /* If we have seen at least one decl-specifier, and the next token
9666 is not a parenthesis, then we must be looking at a declaration.
9667 (After "int (" we might be looking at a functional cast.) */
9668 if (decl_specifiers.any_specifiers_p
9669 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_PAREN)
9670 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE)
9671 && !cp_parser_error_occurred (parser))
9672 cp_parser_commit_to_tentative_parse (parser);
9673
9674 /* Keep going until we hit the `;' at the end of the simple
9675 declaration. */
9676 saw_declarator = false;
9677 while (cp_lexer_next_token_is_not (parser->lexer,
9678 CPP_SEMICOLON))
9679 {
9680 cp_token *token;
9681 bool function_definition_p;
9682 tree decl;
9683
9684 if (saw_declarator)
9685 {
9686 /* If we are processing next declarator, coma is expected */
9687 token = cp_lexer_peek_token (parser->lexer);
9688 gcc_assert (token->type == CPP_COMMA);
9689 cp_lexer_consume_token (parser->lexer);
9690 if (maybe_range_for_decl)
9691 *maybe_range_for_decl = error_mark_node;
9692 }
9693 else
9694 saw_declarator = true;
9695
9696 /* Parse the init-declarator. */
9697 decl = cp_parser_init_declarator (parser, &decl_specifiers,
9698 /*checks=*/NULL,
9699 function_definition_allowed_p,
9700 /*member_p=*/false,
9701 declares_class_or_enum,
9702 &function_definition_p,
9703 maybe_range_for_decl);
9704 /* If an error occurred while parsing tentatively, exit quickly.
9705 (That usually happens when in the body of a function; each
9706 statement is treated as a declaration-statement until proven
9707 otherwise.) */
9708 if (cp_parser_error_occurred (parser))
9709 goto done;
9710 /* Handle function definitions specially. */
9711 if (function_definition_p)
9712 {
9713 /* If the next token is a `,', then we are probably
9714 processing something like:
9715
9716 void f() {}, *p;
9717
9718 which is erroneous. */
9719 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
9720 {
9721 cp_token *token = cp_lexer_peek_token (parser->lexer);
9722 error_at (token->location,
9723 "mixing"
9724 " declarations and function-definitions is forbidden");
9725 }
9726 /* Otherwise, we're done with the list of declarators. */
9727 else
9728 {
9729 pop_deferring_access_checks ();
9730 return;
9731 }
9732 }
9733 if (maybe_range_for_decl && *maybe_range_for_decl == NULL_TREE)
9734 *maybe_range_for_decl = decl;
9735 /* The next token should be either a `,' or a `;'. */
9736 token = cp_lexer_peek_token (parser->lexer);
9737 /* If it's a `,', there are more declarators to come. */
9738 if (token->type == CPP_COMMA)
9739 /* will be consumed next time around */;
9740 /* If it's a `;', we are done. */
9741 else if (token->type == CPP_SEMICOLON || maybe_range_for_decl)
9742 break;
9743 /* Anything else is an error. */
9744 else
9745 {
9746 /* If we have already issued an error message we don't need
9747 to issue another one. */
9748 if (decl != error_mark_node
9749 || cp_parser_uncommitted_to_tentative_parse_p (parser))
9750 cp_parser_error (parser, "expected %<,%> or %<;%>");
9751 /* Skip tokens until we reach the end of the statement. */
9752 cp_parser_skip_to_end_of_statement (parser);
9753 /* If the next token is now a `;', consume it. */
9754 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
9755 cp_lexer_consume_token (parser->lexer);
9756 goto done;
9757 }
9758 /* After the first time around, a function-definition is not
9759 allowed -- even if it was OK at first. For example:
9760
9761 int i, f() {}
9762
9763 is not valid. */
9764 function_definition_allowed_p = false;
9765 }
9766
9767 /* Issue an error message if no declarators are present, and the
9768 decl-specifier-seq does not itself declare a class or
9769 enumeration. */
9770 if (!saw_declarator)
9771 {
9772 if (cp_parser_declares_only_class_p (parser))
9773 shadow_tag (&decl_specifiers);
9774 /* Perform any deferred access checks. */
9775 perform_deferred_access_checks ();
9776 }
9777
9778 /* Consume the `;'. */
9779 if (!maybe_range_for_decl)
9780 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
9781
9782 done:
9783 pop_deferring_access_checks ();
9784 }
9785
9786 /* Parse a decl-specifier-seq.
9787
9788 decl-specifier-seq:
9789 decl-specifier-seq [opt] decl-specifier
9790
9791 decl-specifier:
9792 storage-class-specifier
9793 type-specifier
9794 function-specifier
9795 friend
9796 typedef
9797
9798 GNU Extension:
9799
9800 decl-specifier:
9801 attributes
9802
9803 Set *DECL_SPECS to a representation of the decl-specifier-seq.
9804
9805 The parser flags FLAGS is used to control type-specifier parsing.
9806
9807 *DECLARES_CLASS_OR_ENUM is set to the bitwise or of the following
9808 flags:
9809
9810 1: one of the decl-specifiers is an elaborated-type-specifier
9811 (i.e., a type declaration)
9812 2: one of the decl-specifiers is an enum-specifier or a
9813 class-specifier (i.e., a type definition)
9814
9815 */
9816
9817 static void
9818 cp_parser_decl_specifier_seq (cp_parser* parser,
9819 cp_parser_flags flags,
9820 cp_decl_specifier_seq *decl_specs,
9821 int* declares_class_or_enum)
9822 {
9823 bool constructor_possible_p = !parser->in_declarator_p;
9824 cp_token *start_token = NULL;
9825
9826 /* Clear DECL_SPECS. */
9827 clear_decl_specs (decl_specs);
9828
9829 /* Assume no class or enumeration type is declared. */
9830 *declares_class_or_enum = 0;
9831
9832 /* Keep reading specifiers until there are no more to read. */
9833 while (true)
9834 {
9835 bool constructor_p;
9836 bool found_decl_spec;
9837 cp_token *token;
9838
9839 /* Peek at the next token. */
9840 token = cp_lexer_peek_token (parser->lexer);
9841
9842 /* Save the first token of the decl spec list for error
9843 reporting. */
9844 if (!start_token)
9845 start_token = token;
9846 /* Handle attributes. */
9847 if (token->keyword == RID_ATTRIBUTE)
9848 {
9849 /* Parse the attributes. */
9850 decl_specs->attributes
9851 = chainon (decl_specs->attributes,
9852 cp_parser_attributes_opt (parser));
9853 continue;
9854 }
9855 /* Assume we will find a decl-specifier keyword. */
9856 found_decl_spec = true;
9857 /* If the next token is an appropriate keyword, we can simply
9858 add it to the list. */
9859 switch (token->keyword)
9860 {
9861 /* decl-specifier:
9862 friend
9863 constexpr */
9864 case RID_FRIEND:
9865 if (!at_class_scope_p ())
9866 {
9867 error_at (token->location, "%<friend%> used outside of class");
9868 cp_lexer_purge_token (parser->lexer);
9869 }
9870 else
9871 {
9872 ++decl_specs->specs[(int) ds_friend];
9873 /* Consume the token. */
9874 cp_lexer_consume_token (parser->lexer);
9875 }
9876 break;
9877
9878 case RID_CONSTEXPR:
9879 ++decl_specs->specs[(int) ds_constexpr];
9880 cp_lexer_consume_token (parser->lexer);
9881 break;
9882
9883 /* function-specifier:
9884 inline
9885 virtual
9886 explicit */
9887 case RID_INLINE:
9888 case RID_VIRTUAL:
9889 case RID_EXPLICIT:
9890 cp_parser_function_specifier_opt (parser, decl_specs);
9891 break;
9892
9893 /* decl-specifier:
9894 typedef */
9895 case RID_TYPEDEF:
9896 ++decl_specs->specs[(int) ds_typedef];
9897 /* Consume the token. */
9898 cp_lexer_consume_token (parser->lexer);
9899 /* A constructor declarator cannot appear in a typedef. */
9900 constructor_possible_p = false;
9901 /* The "typedef" keyword can only occur in a declaration; we
9902 may as well commit at this point. */
9903 cp_parser_commit_to_tentative_parse (parser);
9904
9905 if (decl_specs->storage_class != sc_none)
9906 decl_specs->conflicting_specifiers_p = true;
9907 break;
9908
9909 /* storage-class-specifier:
9910 auto
9911 register
9912 static
9913 extern
9914 mutable
9915
9916 GNU Extension:
9917 thread */
9918 case RID_AUTO:
9919 if (cxx_dialect == cxx98)
9920 {
9921 /* Consume the token. */
9922 cp_lexer_consume_token (parser->lexer);
9923
9924 /* Complain about `auto' as a storage specifier, if
9925 we're complaining about C++0x compatibility. */
9926 warning_at (token->location, OPT_Wc__0x_compat, "%<auto%>"
9927 " will change meaning in C++0x; please remove it");
9928
9929 /* Set the storage class anyway. */
9930 cp_parser_set_storage_class (parser, decl_specs, RID_AUTO,
9931 token->location);
9932 }
9933 else
9934 /* C++0x auto type-specifier. */
9935 found_decl_spec = false;
9936 break;
9937
9938 case RID_REGISTER:
9939 case RID_STATIC:
9940 case RID_EXTERN:
9941 case RID_MUTABLE:
9942 /* Consume the token. */
9943 cp_lexer_consume_token (parser->lexer);
9944 cp_parser_set_storage_class (parser, decl_specs, token->keyword,
9945 token->location);
9946 break;
9947 case RID_THREAD:
9948 /* Consume the token. */
9949 cp_lexer_consume_token (parser->lexer);
9950 ++decl_specs->specs[(int) ds_thread];
9951 break;
9952
9953 default:
9954 /* We did not yet find a decl-specifier yet. */
9955 found_decl_spec = false;
9956 break;
9957 }
9958
9959 if (found_decl_spec
9960 && (flags & CP_PARSER_FLAGS_ONLY_TYPE_OR_CONSTEXPR)
9961 && token->keyword != RID_CONSTEXPR)
9962 error ("decl-specifier invalid in condition");
9963
9964 /* Constructors are a special case. The `S' in `S()' is not a
9965 decl-specifier; it is the beginning of the declarator. */
9966 constructor_p
9967 = (!found_decl_spec
9968 && constructor_possible_p
9969 && (cp_parser_constructor_declarator_p
9970 (parser, decl_specs->specs[(int) ds_friend] != 0)));
9971
9972 /* If we don't have a DECL_SPEC yet, then we must be looking at
9973 a type-specifier. */
9974 if (!found_decl_spec && !constructor_p)
9975 {
9976 int decl_spec_declares_class_or_enum;
9977 bool is_cv_qualifier;
9978 tree type_spec;
9979
9980 type_spec
9981 = cp_parser_type_specifier (parser, flags,
9982 decl_specs,
9983 /*is_declaration=*/true,
9984 &decl_spec_declares_class_or_enum,
9985 &is_cv_qualifier);
9986 *declares_class_or_enum |= decl_spec_declares_class_or_enum;
9987
9988 /* If this type-specifier referenced a user-defined type
9989 (a typedef, class-name, etc.), then we can't allow any
9990 more such type-specifiers henceforth.
9991
9992 [dcl.spec]
9993
9994 The longest sequence of decl-specifiers that could
9995 possibly be a type name is taken as the
9996 decl-specifier-seq of a declaration. The sequence shall
9997 be self-consistent as described below.
9998
9999 [dcl.type]
10000
10001 As a general rule, at most one type-specifier is allowed
10002 in the complete decl-specifier-seq of a declaration. The
10003 only exceptions are the following:
10004
10005 -- const or volatile can be combined with any other
10006 type-specifier.
10007
10008 -- signed or unsigned can be combined with char, long,
10009 short, or int.
10010
10011 -- ..
10012
10013 Example:
10014
10015 typedef char* Pc;
10016 void g (const int Pc);
10017
10018 Here, Pc is *not* part of the decl-specifier seq; it's
10019 the declarator. Therefore, once we see a type-specifier
10020 (other than a cv-qualifier), we forbid any additional
10021 user-defined types. We *do* still allow things like `int
10022 int' to be considered a decl-specifier-seq, and issue the
10023 error message later. */
10024 if (type_spec && !is_cv_qualifier)
10025 flags |= CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES;
10026 /* A constructor declarator cannot follow a type-specifier. */
10027 if (type_spec)
10028 {
10029 constructor_possible_p = false;
10030 found_decl_spec = true;
10031 if (!is_cv_qualifier)
10032 decl_specs->any_type_specifiers_p = true;
10033 }
10034 }
10035
10036 /* If we still do not have a DECL_SPEC, then there are no more
10037 decl-specifiers. */
10038 if (!found_decl_spec)
10039 break;
10040
10041 decl_specs->any_specifiers_p = true;
10042 /* After we see one decl-specifier, further decl-specifiers are
10043 always optional. */
10044 flags |= CP_PARSER_FLAGS_OPTIONAL;
10045 }
10046
10047 cp_parser_check_decl_spec (decl_specs, start_token->location);
10048
10049 /* Don't allow a friend specifier with a class definition. */
10050 if (decl_specs->specs[(int) ds_friend] != 0
10051 && (*declares_class_or_enum & 2))
10052 error_at (start_token->location,
10053 "class definition may not be declared a friend");
10054 }
10055
10056 /* Parse an (optional) storage-class-specifier.
10057
10058 storage-class-specifier:
10059 auto
10060 register
10061 static
10062 extern
10063 mutable
10064
10065 GNU Extension:
10066
10067 storage-class-specifier:
10068 thread
10069
10070 Returns an IDENTIFIER_NODE corresponding to the keyword used. */
10071
10072 static tree
10073 cp_parser_storage_class_specifier_opt (cp_parser* parser)
10074 {
10075 switch (cp_lexer_peek_token (parser->lexer)->keyword)
10076 {
10077 case RID_AUTO:
10078 if (cxx_dialect != cxx98)
10079 return NULL_TREE;
10080 /* Fall through for C++98. */
10081
10082 case RID_REGISTER:
10083 case RID_STATIC:
10084 case RID_EXTERN:
10085 case RID_MUTABLE:
10086 case RID_THREAD:
10087 /* Consume the token. */
10088 return cp_lexer_consume_token (parser->lexer)->u.value;
10089
10090 default:
10091 return NULL_TREE;
10092 }
10093 }
10094
10095 /* Parse an (optional) function-specifier.
10096
10097 function-specifier:
10098 inline
10099 virtual
10100 explicit
10101
10102 Returns an IDENTIFIER_NODE corresponding to the keyword used.
10103 Updates DECL_SPECS, if it is non-NULL. */
10104
10105 static tree
10106 cp_parser_function_specifier_opt (cp_parser* parser,
10107 cp_decl_specifier_seq *decl_specs)
10108 {
10109 cp_token *token = cp_lexer_peek_token (parser->lexer);
10110 switch (token->keyword)
10111 {
10112 case RID_INLINE:
10113 if (decl_specs)
10114 ++decl_specs->specs[(int) ds_inline];
10115 break;
10116
10117 case RID_VIRTUAL:
10118 /* 14.5.2.3 [temp.mem]
10119
10120 A member function template shall not be virtual. */
10121 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
10122 error_at (token->location, "templates may not be %<virtual%>");
10123 else if (decl_specs)
10124 ++decl_specs->specs[(int) ds_virtual];
10125 break;
10126
10127 case RID_EXPLICIT:
10128 if (decl_specs)
10129 ++decl_specs->specs[(int) ds_explicit];
10130 break;
10131
10132 default:
10133 return NULL_TREE;
10134 }
10135
10136 /* Consume the token. */
10137 return cp_lexer_consume_token (parser->lexer)->u.value;
10138 }
10139
10140 /* Parse a linkage-specification.
10141
10142 linkage-specification:
10143 extern string-literal { declaration-seq [opt] }
10144 extern string-literal declaration */
10145
10146 static void
10147 cp_parser_linkage_specification (cp_parser* parser)
10148 {
10149 tree linkage;
10150
10151 /* Look for the `extern' keyword. */
10152 cp_parser_require_keyword (parser, RID_EXTERN, RT_EXTERN);
10153
10154 /* Look for the string-literal. */
10155 linkage = cp_parser_string_literal (parser, false, false);
10156
10157 /* Transform the literal into an identifier. If the literal is a
10158 wide-character string, or contains embedded NULs, then we can't
10159 handle it as the user wants. */
10160 if (strlen (TREE_STRING_POINTER (linkage))
10161 != (size_t) (TREE_STRING_LENGTH (linkage) - 1))
10162 {
10163 cp_parser_error (parser, "invalid linkage-specification");
10164 /* Assume C++ linkage. */
10165 linkage = lang_name_cplusplus;
10166 }
10167 else
10168 linkage = get_identifier (TREE_STRING_POINTER (linkage));
10169
10170 /* We're now using the new linkage. */
10171 push_lang_context (linkage);
10172
10173 /* If the next token is a `{', then we're using the first
10174 production. */
10175 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
10176 {
10177 /* Consume the `{' token. */
10178 cp_lexer_consume_token (parser->lexer);
10179 /* Parse the declarations. */
10180 cp_parser_declaration_seq_opt (parser);
10181 /* Look for the closing `}'. */
10182 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
10183 }
10184 /* Otherwise, there's just one declaration. */
10185 else
10186 {
10187 bool saved_in_unbraced_linkage_specification_p;
10188
10189 saved_in_unbraced_linkage_specification_p
10190 = parser->in_unbraced_linkage_specification_p;
10191 parser->in_unbraced_linkage_specification_p = true;
10192 cp_parser_declaration (parser);
10193 parser->in_unbraced_linkage_specification_p
10194 = saved_in_unbraced_linkage_specification_p;
10195 }
10196
10197 /* We're done with the linkage-specification. */
10198 pop_lang_context ();
10199 }
10200
10201 /* Parse a static_assert-declaration.
10202
10203 static_assert-declaration:
10204 static_assert ( constant-expression , string-literal ) ;
10205
10206 If MEMBER_P, this static_assert is a class member. */
10207
10208 static void
10209 cp_parser_static_assert(cp_parser *parser, bool member_p)
10210 {
10211 tree condition;
10212 tree message;
10213 cp_token *token;
10214 location_t saved_loc;
10215
10216 /* Peek at the `static_assert' token so we can keep track of exactly
10217 where the static assertion started. */
10218 token = cp_lexer_peek_token (parser->lexer);
10219 saved_loc = token->location;
10220
10221 /* Look for the `static_assert' keyword. */
10222 if (!cp_parser_require_keyword (parser, RID_STATIC_ASSERT,
10223 RT_STATIC_ASSERT))
10224 return;
10225
10226 /* We know we are in a static assertion; commit to any tentative
10227 parse. */
10228 if (cp_parser_parsing_tentatively (parser))
10229 cp_parser_commit_to_tentative_parse (parser);
10230
10231 /* Parse the `(' starting the static assertion condition. */
10232 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
10233
10234 /* Parse the constant-expression. */
10235 condition =
10236 cp_parser_constant_expression (parser,
10237 /*allow_non_constant_p=*/false,
10238 /*non_constant_p=*/NULL);
10239
10240 /* Parse the separating `,'. */
10241 cp_parser_require (parser, CPP_COMMA, RT_COMMA);
10242
10243 /* Parse the string-literal message. */
10244 message = cp_parser_string_literal (parser,
10245 /*translate=*/false,
10246 /*wide_ok=*/true);
10247
10248 /* A `)' completes the static assertion. */
10249 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
10250 cp_parser_skip_to_closing_parenthesis (parser,
10251 /*recovering=*/true,
10252 /*or_comma=*/false,
10253 /*consume_paren=*/true);
10254
10255 /* A semicolon terminates the declaration. */
10256 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
10257
10258 /* Complete the static assertion, which may mean either processing
10259 the static assert now or saving it for template instantiation. */
10260 finish_static_assert (condition, message, saved_loc, member_p);
10261 }
10262
10263 /* Parse a `decltype' type. Returns the type.
10264
10265 simple-type-specifier:
10266 decltype ( expression ) */
10267
10268 static tree
10269 cp_parser_decltype (cp_parser *parser)
10270 {
10271 tree expr;
10272 bool id_expression_or_member_access_p = false;
10273 const char *saved_message;
10274 bool saved_integral_constant_expression_p;
10275 bool saved_non_integral_constant_expression_p;
10276 cp_token *id_expr_start_token;
10277
10278 /* Look for the `decltype' token. */
10279 if (!cp_parser_require_keyword (parser, RID_DECLTYPE, RT_DECLTYPE))
10280 return error_mark_node;
10281
10282 /* Types cannot be defined in a `decltype' expression. Save away the
10283 old message. */
10284 saved_message = parser->type_definition_forbidden_message;
10285
10286 /* And create the new one. */
10287 parser->type_definition_forbidden_message
10288 = G_("types may not be defined in %<decltype%> expressions");
10289
10290 /* The restrictions on constant-expressions do not apply inside
10291 decltype expressions. */
10292 saved_integral_constant_expression_p
10293 = parser->integral_constant_expression_p;
10294 saved_non_integral_constant_expression_p
10295 = parser->non_integral_constant_expression_p;
10296 parser->integral_constant_expression_p = false;
10297
10298 /* Do not actually evaluate the expression. */
10299 ++cp_unevaluated_operand;
10300
10301 /* Do not warn about problems with the expression. */
10302 ++c_inhibit_evaluation_warnings;
10303
10304 /* Parse the opening `('. */
10305 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
10306 return error_mark_node;
10307
10308 /* First, try parsing an id-expression. */
10309 id_expr_start_token = cp_lexer_peek_token (parser->lexer);
10310 cp_parser_parse_tentatively (parser);
10311 expr = cp_parser_id_expression (parser,
10312 /*template_keyword_p=*/false,
10313 /*check_dependency_p=*/true,
10314 /*template_p=*/NULL,
10315 /*declarator_p=*/false,
10316 /*optional_p=*/false);
10317
10318 if (!cp_parser_error_occurred (parser) && expr != error_mark_node)
10319 {
10320 bool non_integral_constant_expression_p = false;
10321 tree id_expression = expr;
10322 cp_id_kind idk;
10323 const char *error_msg;
10324
10325 if (TREE_CODE (expr) == IDENTIFIER_NODE)
10326 /* Lookup the name we got back from the id-expression. */
10327 expr = cp_parser_lookup_name (parser, expr,
10328 none_type,
10329 /*is_template=*/false,
10330 /*is_namespace=*/false,
10331 /*check_dependency=*/true,
10332 /*ambiguous_decls=*/NULL,
10333 id_expr_start_token->location);
10334
10335 if (expr
10336 && expr != error_mark_node
10337 && TREE_CODE (expr) != TEMPLATE_ID_EXPR
10338 && TREE_CODE (expr) != TYPE_DECL
10339 && (TREE_CODE (expr) != BIT_NOT_EXPR
10340 || !TYPE_P (TREE_OPERAND (expr, 0)))
10341 && cp_lexer_peek_token (parser->lexer)->type == CPP_CLOSE_PAREN)
10342 {
10343 /* Complete lookup of the id-expression. */
10344 expr = (finish_id_expression
10345 (id_expression, expr, parser->scope, &idk,
10346 /*integral_constant_expression_p=*/false,
10347 /*allow_non_integral_constant_expression_p=*/true,
10348 &non_integral_constant_expression_p,
10349 /*template_p=*/false,
10350 /*done=*/true,
10351 /*address_p=*/false,
10352 /*template_arg_p=*/false,
10353 &error_msg,
10354 id_expr_start_token->location));
10355
10356 if (expr == error_mark_node)
10357 /* We found an id-expression, but it was something that we
10358 should not have found. This is an error, not something
10359 we can recover from, so note that we found an
10360 id-expression and we'll recover as gracefully as
10361 possible. */
10362 id_expression_or_member_access_p = true;
10363 }
10364
10365 if (expr
10366 && expr != error_mark_node
10367 && cp_lexer_peek_token (parser->lexer)->type == CPP_CLOSE_PAREN)
10368 /* We have an id-expression. */
10369 id_expression_or_member_access_p = true;
10370 }
10371
10372 if (!id_expression_or_member_access_p)
10373 {
10374 /* Abort the id-expression parse. */
10375 cp_parser_abort_tentative_parse (parser);
10376
10377 /* Parsing tentatively, again. */
10378 cp_parser_parse_tentatively (parser);
10379
10380 /* Parse a class member access. */
10381 expr = cp_parser_postfix_expression (parser, /*address_p=*/false,
10382 /*cast_p=*/false,
10383 /*member_access_only_p=*/true, NULL);
10384
10385 if (expr
10386 && expr != error_mark_node
10387 && cp_lexer_peek_token (parser->lexer)->type == CPP_CLOSE_PAREN)
10388 /* We have an id-expression. */
10389 id_expression_or_member_access_p = true;
10390 }
10391
10392 if (id_expression_or_member_access_p)
10393 /* We have parsed the complete id-expression or member access. */
10394 cp_parser_parse_definitely (parser);
10395 else
10396 {
10397 bool saved_greater_than_is_operator_p;
10398
10399 /* Abort our attempt to parse an id-expression or member access
10400 expression. */
10401 cp_parser_abort_tentative_parse (parser);
10402
10403 /* Within a parenthesized expression, a `>' token is always
10404 the greater-than operator. */
10405 saved_greater_than_is_operator_p
10406 = parser->greater_than_is_operator_p;
10407 parser->greater_than_is_operator_p = true;
10408
10409 /* Parse a full expression. */
10410 expr = cp_parser_expression (parser, /*cast_p=*/false, NULL);
10411
10412 /* The `>' token might be the end of a template-id or
10413 template-parameter-list now. */
10414 parser->greater_than_is_operator_p
10415 = saved_greater_than_is_operator_p;
10416 }
10417
10418 /* Go back to evaluating expressions. */
10419 --cp_unevaluated_operand;
10420 --c_inhibit_evaluation_warnings;
10421
10422 /* Restore the old message and the integral constant expression
10423 flags. */
10424 parser->type_definition_forbidden_message = saved_message;
10425 parser->integral_constant_expression_p
10426 = saved_integral_constant_expression_p;
10427 parser->non_integral_constant_expression_p
10428 = saved_non_integral_constant_expression_p;
10429
10430 if (expr == error_mark_node)
10431 {
10432 /* Skip everything up to the closing `)'. */
10433 cp_parser_skip_to_closing_parenthesis (parser, true, false,
10434 /*consume_paren=*/true);
10435 return error_mark_node;
10436 }
10437
10438 /* Parse to the closing `)'. */
10439 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
10440 {
10441 cp_parser_skip_to_closing_parenthesis (parser, true, false,
10442 /*consume_paren=*/true);
10443 return error_mark_node;
10444 }
10445
10446 return finish_decltype_type (expr, id_expression_or_member_access_p);
10447 }
10448
10449 /* Special member functions [gram.special] */
10450
10451 /* Parse a conversion-function-id.
10452
10453 conversion-function-id:
10454 operator conversion-type-id
10455
10456 Returns an IDENTIFIER_NODE representing the operator. */
10457
10458 static tree
10459 cp_parser_conversion_function_id (cp_parser* parser)
10460 {
10461 tree type;
10462 tree saved_scope;
10463 tree saved_qualifying_scope;
10464 tree saved_object_scope;
10465 tree pushed_scope = NULL_TREE;
10466
10467 /* Look for the `operator' token. */
10468 if (!cp_parser_require_keyword (parser, RID_OPERATOR, RT_OPERATOR))
10469 return error_mark_node;
10470 /* When we parse the conversion-type-id, the current scope will be
10471 reset. However, we need that information in able to look up the
10472 conversion function later, so we save it here. */
10473 saved_scope = parser->scope;
10474 saved_qualifying_scope = parser->qualifying_scope;
10475 saved_object_scope = parser->object_scope;
10476 /* We must enter the scope of the class so that the names of
10477 entities declared within the class are available in the
10478 conversion-type-id. For example, consider:
10479
10480 struct S {
10481 typedef int I;
10482 operator I();
10483 };
10484
10485 S::operator I() { ... }
10486
10487 In order to see that `I' is a type-name in the definition, we
10488 must be in the scope of `S'. */
10489 if (saved_scope)
10490 pushed_scope = push_scope (saved_scope);
10491 /* Parse the conversion-type-id. */
10492 type = cp_parser_conversion_type_id (parser);
10493 /* Leave the scope of the class, if any. */
10494 if (pushed_scope)
10495 pop_scope (pushed_scope);
10496 /* Restore the saved scope. */
10497 parser->scope = saved_scope;
10498 parser->qualifying_scope = saved_qualifying_scope;
10499 parser->object_scope = saved_object_scope;
10500 /* If the TYPE is invalid, indicate failure. */
10501 if (type == error_mark_node)
10502 return error_mark_node;
10503 return mangle_conv_op_name_for_type (type);
10504 }
10505
10506 /* Parse a conversion-type-id:
10507
10508 conversion-type-id:
10509 type-specifier-seq conversion-declarator [opt]
10510
10511 Returns the TYPE specified. */
10512
10513 static tree
10514 cp_parser_conversion_type_id (cp_parser* parser)
10515 {
10516 tree attributes;
10517 cp_decl_specifier_seq type_specifiers;
10518 cp_declarator *declarator;
10519 tree type_specified;
10520
10521 /* Parse the attributes. */
10522 attributes = cp_parser_attributes_opt (parser);
10523 /* Parse the type-specifiers. */
10524 cp_parser_type_specifier_seq (parser, /*is_declaration=*/false,
10525 /*is_trailing_return=*/false,
10526 &type_specifiers);
10527 /* If that didn't work, stop. */
10528 if (type_specifiers.type == error_mark_node)
10529 return error_mark_node;
10530 /* Parse the conversion-declarator. */
10531 declarator = cp_parser_conversion_declarator_opt (parser);
10532
10533 type_specified = grokdeclarator (declarator, &type_specifiers, TYPENAME,
10534 /*initialized=*/0, &attributes);
10535 if (attributes)
10536 cplus_decl_attributes (&type_specified, attributes, /*flags=*/0);
10537
10538 /* Don't give this error when parsing tentatively. This happens to
10539 work because we always parse this definitively once. */
10540 if (! cp_parser_uncommitted_to_tentative_parse_p (parser)
10541 && type_uses_auto (type_specified))
10542 {
10543 error ("invalid use of %<auto%> in conversion operator");
10544 return error_mark_node;
10545 }
10546
10547 return type_specified;
10548 }
10549
10550 /* Parse an (optional) conversion-declarator.
10551
10552 conversion-declarator:
10553 ptr-operator conversion-declarator [opt]
10554
10555 */
10556
10557 static cp_declarator *
10558 cp_parser_conversion_declarator_opt (cp_parser* parser)
10559 {
10560 enum tree_code code;
10561 tree class_type;
10562 cp_cv_quals cv_quals;
10563
10564 /* We don't know if there's a ptr-operator next, or not. */
10565 cp_parser_parse_tentatively (parser);
10566 /* Try the ptr-operator. */
10567 code = cp_parser_ptr_operator (parser, &class_type, &cv_quals);
10568 /* If it worked, look for more conversion-declarators. */
10569 if (cp_parser_parse_definitely (parser))
10570 {
10571 cp_declarator *declarator;
10572
10573 /* Parse another optional declarator. */
10574 declarator = cp_parser_conversion_declarator_opt (parser);
10575
10576 return cp_parser_make_indirect_declarator
10577 (code, class_type, cv_quals, declarator);
10578 }
10579
10580 return NULL;
10581 }
10582
10583 /* Parse an (optional) ctor-initializer.
10584
10585 ctor-initializer:
10586 : mem-initializer-list
10587
10588 Returns TRUE iff the ctor-initializer was actually present. */
10589
10590 static bool
10591 cp_parser_ctor_initializer_opt (cp_parser* parser)
10592 {
10593 /* If the next token is not a `:', then there is no
10594 ctor-initializer. */
10595 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COLON))
10596 {
10597 /* Do default initialization of any bases and members. */
10598 if (DECL_CONSTRUCTOR_P (current_function_decl))
10599 finish_mem_initializers (NULL_TREE);
10600
10601 return false;
10602 }
10603
10604 /* Consume the `:' token. */
10605 cp_lexer_consume_token (parser->lexer);
10606 /* And the mem-initializer-list. */
10607 cp_parser_mem_initializer_list (parser);
10608
10609 return true;
10610 }
10611
10612 /* Parse a mem-initializer-list.
10613
10614 mem-initializer-list:
10615 mem-initializer ... [opt]
10616 mem-initializer ... [opt] , mem-initializer-list */
10617
10618 static void
10619 cp_parser_mem_initializer_list (cp_parser* parser)
10620 {
10621 tree mem_initializer_list = NULL_TREE;
10622 cp_token *token = cp_lexer_peek_token (parser->lexer);
10623
10624 /* Let the semantic analysis code know that we are starting the
10625 mem-initializer-list. */
10626 if (!DECL_CONSTRUCTOR_P (current_function_decl))
10627 error_at (token->location,
10628 "only constructors take member initializers");
10629
10630 /* Loop through the list. */
10631 while (true)
10632 {
10633 tree mem_initializer;
10634
10635 token = cp_lexer_peek_token (parser->lexer);
10636 /* Parse the mem-initializer. */
10637 mem_initializer = cp_parser_mem_initializer (parser);
10638 /* If the next token is a `...', we're expanding member initializers. */
10639 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
10640 {
10641 /* Consume the `...'. */
10642 cp_lexer_consume_token (parser->lexer);
10643
10644 /* The TREE_PURPOSE must be a _TYPE, because base-specifiers
10645 can be expanded but members cannot. */
10646 if (mem_initializer != error_mark_node
10647 && !TYPE_P (TREE_PURPOSE (mem_initializer)))
10648 {
10649 error_at (token->location,
10650 "cannot expand initializer for member %<%D%>",
10651 TREE_PURPOSE (mem_initializer));
10652 mem_initializer = error_mark_node;
10653 }
10654
10655 /* Construct the pack expansion type. */
10656 if (mem_initializer != error_mark_node)
10657 mem_initializer = make_pack_expansion (mem_initializer);
10658 }
10659 /* Add it to the list, unless it was erroneous. */
10660 if (mem_initializer != error_mark_node)
10661 {
10662 TREE_CHAIN (mem_initializer) = mem_initializer_list;
10663 mem_initializer_list = mem_initializer;
10664 }
10665 /* If the next token is not a `,', we're done. */
10666 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
10667 break;
10668 /* Consume the `,' token. */
10669 cp_lexer_consume_token (parser->lexer);
10670 }
10671
10672 /* Perform semantic analysis. */
10673 if (DECL_CONSTRUCTOR_P (current_function_decl))
10674 finish_mem_initializers (mem_initializer_list);
10675 }
10676
10677 /* Parse a mem-initializer.
10678
10679 mem-initializer:
10680 mem-initializer-id ( expression-list [opt] )
10681 mem-initializer-id braced-init-list
10682
10683 GNU extension:
10684
10685 mem-initializer:
10686 ( expression-list [opt] )
10687
10688 Returns a TREE_LIST. The TREE_PURPOSE is the TYPE (for a base
10689 class) or FIELD_DECL (for a non-static data member) to initialize;
10690 the TREE_VALUE is the expression-list. An empty initialization
10691 list is represented by void_list_node. */
10692
10693 static tree
10694 cp_parser_mem_initializer (cp_parser* parser)
10695 {
10696 tree mem_initializer_id;
10697 tree expression_list;
10698 tree member;
10699 cp_token *token = cp_lexer_peek_token (parser->lexer);
10700
10701 /* Find out what is being initialized. */
10702 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
10703 {
10704 permerror (token->location,
10705 "anachronistic old-style base class initializer");
10706 mem_initializer_id = NULL_TREE;
10707 }
10708 else
10709 {
10710 mem_initializer_id = cp_parser_mem_initializer_id (parser);
10711 if (mem_initializer_id == error_mark_node)
10712 return mem_initializer_id;
10713 }
10714 member = expand_member_init (mem_initializer_id);
10715 if (member && !DECL_P (member))
10716 in_base_initializer = 1;
10717
10718 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
10719 {
10720 bool expr_non_constant_p;
10721 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
10722 expression_list = cp_parser_braced_list (parser, &expr_non_constant_p);
10723 CONSTRUCTOR_IS_DIRECT_INIT (expression_list) = 1;
10724 expression_list = build_tree_list (NULL_TREE, expression_list);
10725 }
10726 else
10727 {
10728 VEC(tree,gc)* vec;
10729 vec = cp_parser_parenthesized_expression_list (parser, non_attr,
10730 /*cast_p=*/false,
10731 /*allow_expansion_p=*/true,
10732 /*non_constant_p=*/NULL);
10733 if (vec == NULL)
10734 return error_mark_node;
10735 expression_list = build_tree_list_vec (vec);
10736 release_tree_vector (vec);
10737 }
10738
10739 if (expression_list == error_mark_node)
10740 return error_mark_node;
10741 if (!expression_list)
10742 expression_list = void_type_node;
10743
10744 in_base_initializer = 0;
10745
10746 return member ? build_tree_list (member, expression_list) : error_mark_node;
10747 }
10748
10749 /* Parse a mem-initializer-id.
10750
10751 mem-initializer-id:
10752 :: [opt] nested-name-specifier [opt] class-name
10753 identifier
10754
10755 Returns a TYPE indicating the class to be initializer for the first
10756 production. Returns an IDENTIFIER_NODE indicating the data member
10757 to be initialized for the second production. */
10758
10759 static tree
10760 cp_parser_mem_initializer_id (cp_parser* parser)
10761 {
10762 bool global_scope_p;
10763 bool nested_name_specifier_p;
10764 bool template_p = false;
10765 tree id;
10766
10767 cp_token *token = cp_lexer_peek_token (parser->lexer);
10768
10769 /* `typename' is not allowed in this context ([temp.res]). */
10770 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TYPENAME))
10771 {
10772 error_at (token->location,
10773 "keyword %<typename%> not allowed in this context (a qualified "
10774 "member initializer is implicitly a type)");
10775 cp_lexer_consume_token (parser->lexer);
10776 }
10777 /* Look for the optional `::' operator. */
10778 global_scope_p
10779 = (cp_parser_global_scope_opt (parser,
10780 /*current_scope_valid_p=*/false)
10781 != NULL_TREE);
10782 /* Look for the optional nested-name-specifier. The simplest way to
10783 implement:
10784
10785 [temp.res]
10786
10787 The keyword `typename' is not permitted in a base-specifier or
10788 mem-initializer; in these contexts a qualified name that
10789 depends on a template-parameter is implicitly assumed to be a
10790 type name.
10791
10792 is to assume that we have seen the `typename' keyword at this
10793 point. */
10794 nested_name_specifier_p
10795 = (cp_parser_nested_name_specifier_opt (parser,
10796 /*typename_keyword_p=*/true,
10797 /*check_dependency_p=*/true,
10798 /*type_p=*/true,
10799 /*is_declaration=*/true)
10800 != NULL_TREE);
10801 if (nested_name_specifier_p)
10802 template_p = cp_parser_optional_template_keyword (parser);
10803 /* If there is a `::' operator or a nested-name-specifier, then we
10804 are definitely looking for a class-name. */
10805 if (global_scope_p || nested_name_specifier_p)
10806 return cp_parser_class_name (parser,
10807 /*typename_keyword_p=*/true,
10808 /*template_keyword_p=*/template_p,
10809 typename_type,
10810 /*check_dependency_p=*/true,
10811 /*class_head_p=*/false,
10812 /*is_declaration=*/true);
10813 /* Otherwise, we could also be looking for an ordinary identifier. */
10814 cp_parser_parse_tentatively (parser);
10815 /* Try a class-name. */
10816 id = cp_parser_class_name (parser,
10817 /*typename_keyword_p=*/true,
10818 /*template_keyword_p=*/false,
10819 none_type,
10820 /*check_dependency_p=*/true,
10821 /*class_head_p=*/false,
10822 /*is_declaration=*/true);
10823 /* If we found one, we're done. */
10824 if (cp_parser_parse_definitely (parser))
10825 return id;
10826 /* Otherwise, look for an ordinary identifier. */
10827 return cp_parser_identifier (parser);
10828 }
10829
10830 /* Overloading [gram.over] */
10831
10832 /* Parse an operator-function-id.
10833
10834 operator-function-id:
10835 operator operator
10836
10837 Returns an IDENTIFIER_NODE for the operator which is a
10838 human-readable spelling of the identifier, e.g., `operator +'. */
10839
10840 static tree
10841 cp_parser_operator_function_id (cp_parser* parser)
10842 {
10843 /* Look for the `operator' keyword. */
10844 if (!cp_parser_require_keyword (parser, RID_OPERATOR, RT_OPERATOR))
10845 return error_mark_node;
10846 /* And then the name of the operator itself. */
10847 return cp_parser_operator (parser);
10848 }
10849
10850 /* Parse an operator.
10851
10852 operator:
10853 new delete new[] delete[] + - * / % ^ & | ~ ! = < >
10854 += -= *= /= %= ^= &= |= << >> >>= <<= == != <= >= &&
10855 || ++ -- , ->* -> () []
10856
10857 GNU Extensions:
10858
10859 operator:
10860 <? >? <?= >?=
10861
10862 Returns an IDENTIFIER_NODE for the operator which is a
10863 human-readable spelling of the identifier, e.g., `operator +'. */
10864
10865 static tree
10866 cp_parser_operator (cp_parser* parser)
10867 {
10868 tree id = NULL_TREE;
10869 cp_token *token;
10870
10871 /* Peek at the next token. */
10872 token = cp_lexer_peek_token (parser->lexer);
10873 /* Figure out which operator we have. */
10874 switch (token->type)
10875 {
10876 case CPP_KEYWORD:
10877 {
10878 enum tree_code op;
10879
10880 /* The keyword should be either `new' or `delete'. */
10881 if (token->keyword == RID_NEW)
10882 op = NEW_EXPR;
10883 else if (token->keyword == RID_DELETE)
10884 op = DELETE_EXPR;
10885 else
10886 break;
10887
10888 /* Consume the `new' or `delete' token. */
10889 cp_lexer_consume_token (parser->lexer);
10890
10891 /* Peek at the next token. */
10892 token = cp_lexer_peek_token (parser->lexer);
10893 /* If it's a `[' token then this is the array variant of the
10894 operator. */
10895 if (token->type == CPP_OPEN_SQUARE)
10896 {
10897 /* Consume the `[' token. */
10898 cp_lexer_consume_token (parser->lexer);
10899 /* Look for the `]' token. */
10900 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
10901 id = ansi_opname (op == NEW_EXPR
10902 ? VEC_NEW_EXPR : VEC_DELETE_EXPR);
10903 }
10904 /* Otherwise, we have the non-array variant. */
10905 else
10906 id = ansi_opname (op);
10907
10908 return id;
10909 }
10910
10911 case CPP_PLUS:
10912 id = ansi_opname (PLUS_EXPR);
10913 break;
10914
10915 case CPP_MINUS:
10916 id = ansi_opname (MINUS_EXPR);
10917 break;
10918
10919 case CPP_MULT:
10920 id = ansi_opname (MULT_EXPR);
10921 break;
10922
10923 case CPP_DIV:
10924 id = ansi_opname (TRUNC_DIV_EXPR);
10925 break;
10926
10927 case CPP_MOD:
10928 id = ansi_opname (TRUNC_MOD_EXPR);
10929 break;
10930
10931 case CPP_XOR:
10932 id = ansi_opname (BIT_XOR_EXPR);
10933 break;
10934
10935 case CPP_AND:
10936 id = ansi_opname (BIT_AND_EXPR);
10937 break;
10938
10939 case CPP_OR:
10940 id = ansi_opname (BIT_IOR_EXPR);
10941 break;
10942
10943 case CPP_COMPL:
10944 id = ansi_opname (BIT_NOT_EXPR);
10945 break;
10946
10947 case CPP_NOT:
10948 id = ansi_opname (TRUTH_NOT_EXPR);
10949 break;
10950
10951 case CPP_EQ:
10952 id = ansi_assopname (NOP_EXPR);
10953 break;
10954
10955 case CPP_LESS:
10956 id = ansi_opname (LT_EXPR);
10957 break;
10958
10959 case CPP_GREATER:
10960 id = ansi_opname (GT_EXPR);
10961 break;
10962
10963 case CPP_PLUS_EQ:
10964 id = ansi_assopname (PLUS_EXPR);
10965 break;
10966
10967 case CPP_MINUS_EQ:
10968 id = ansi_assopname (MINUS_EXPR);
10969 break;
10970
10971 case CPP_MULT_EQ:
10972 id = ansi_assopname (MULT_EXPR);
10973 break;
10974
10975 case CPP_DIV_EQ:
10976 id = ansi_assopname (TRUNC_DIV_EXPR);
10977 break;
10978
10979 case CPP_MOD_EQ:
10980 id = ansi_assopname (TRUNC_MOD_EXPR);
10981 break;
10982
10983 case CPP_XOR_EQ:
10984 id = ansi_assopname (BIT_XOR_EXPR);
10985 break;
10986
10987 case CPP_AND_EQ:
10988 id = ansi_assopname (BIT_AND_EXPR);
10989 break;
10990
10991 case CPP_OR_EQ:
10992 id = ansi_assopname (BIT_IOR_EXPR);
10993 break;
10994
10995 case CPP_LSHIFT:
10996 id = ansi_opname (LSHIFT_EXPR);
10997 break;
10998
10999 case CPP_RSHIFT:
11000 id = ansi_opname (RSHIFT_EXPR);
11001 break;
11002
11003 case CPP_LSHIFT_EQ:
11004 id = ansi_assopname (LSHIFT_EXPR);
11005 break;
11006
11007 case CPP_RSHIFT_EQ:
11008 id = ansi_assopname (RSHIFT_EXPR);
11009 break;
11010
11011 case CPP_EQ_EQ:
11012 id = ansi_opname (EQ_EXPR);
11013 break;
11014
11015 case CPP_NOT_EQ:
11016 id = ansi_opname (NE_EXPR);
11017 break;
11018
11019 case CPP_LESS_EQ:
11020 id = ansi_opname (LE_EXPR);
11021 break;
11022
11023 case CPP_GREATER_EQ:
11024 id = ansi_opname (GE_EXPR);
11025 break;
11026
11027 case CPP_AND_AND:
11028 id = ansi_opname (TRUTH_ANDIF_EXPR);
11029 break;
11030
11031 case CPP_OR_OR:
11032 id = ansi_opname (TRUTH_ORIF_EXPR);
11033 break;
11034
11035 case CPP_PLUS_PLUS:
11036 id = ansi_opname (POSTINCREMENT_EXPR);
11037 break;
11038
11039 case CPP_MINUS_MINUS:
11040 id = ansi_opname (PREDECREMENT_EXPR);
11041 break;
11042
11043 case CPP_COMMA:
11044 id = ansi_opname (COMPOUND_EXPR);
11045 break;
11046
11047 case CPP_DEREF_STAR:
11048 id = ansi_opname (MEMBER_REF);
11049 break;
11050
11051 case CPP_DEREF:
11052 id = ansi_opname (COMPONENT_REF);
11053 break;
11054
11055 case CPP_OPEN_PAREN:
11056 /* Consume the `('. */
11057 cp_lexer_consume_token (parser->lexer);
11058 /* Look for the matching `)'. */
11059 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
11060 return ansi_opname (CALL_EXPR);
11061
11062 case CPP_OPEN_SQUARE:
11063 /* Consume the `['. */
11064 cp_lexer_consume_token (parser->lexer);
11065 /* Look for the matching `]'. */
11066 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
11067 return ansi_opname (ARRAY_REF);
11068
11069 default:
11070 /* Anything else is an error. */
11071 break;
11072 }
11073
11074 /* If we have selected an identifier, we need to consume the
11075 operator token. */
11076 if (id)
11077 cp_lexer_consume_token (parser->lexer);
11078 /* Otherwise, no valid operator name was present. */
11079 else
11080 {
11081 cp_parser_error (parser, "expected operator");
11082 id = error_mark_node;
11083 }
11084
11085 return id;
11086 }
11087
11088 /* Parse a template-declaration.
11089
11090 template-declaration:
11091 export [opt] template < template-parameter-list > declaration
11092
11093 If MEMBER_P is TRUE, this template-declaration occurs within a
11094 class-specifier.
11095
11096 The grammar rule given by the standard isn't correct. What
11097 is really meant is:
11098
11099 template-declaration:
11100 export [opt] template-parameter-list-seq
11101 decl-specifier-seq [opt] init-declarator [opt] ;
11102 export [opt] template-parameter-list-seq
11103 function-definition
11104
11105 template-parameter-list-seq:
11106 template-parameter-list-seq [opt]
11107 template < template-parameter-list > */
11108
11109 static void
11110 cp_parser_template_declaration (cp_parser* parser, bool member_p)
11111 {
11112 /* Check for `export'. */
11113 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_EXPORT))
11114 {
11115 /* Consume the `export' token. */
11116 cp_lexer_consume_token (parser->lexer);
11117 /* Warn that we do not support `export'. */
11118 warning (0, "keyword %<export%> not implemented, and will be ignored");
11119 }
11120
11121 cp_parser_template_declaration_after_export (parser, member_p);
11122 }
11123
11124 /* Parse a template-parameter-list.
11125
11126 template-parameter-list:
11127 template-parameter
11128 template-parameter-list , template-parameter
11129
11130 Returns a TREE_LIST. Each node represents a template parameter.
11131 The nodes are connected via their TREE_CHAINs. */
11132
11133 static tree
11134 cp_parser_template_parameter_list (cp_parser* parser)
11135 {
11136 tree parameter_list = NULL_TREE;
11137
11138 begin_template_parm_list ();
11139
11140 /* The loop below parses the template parms. We first need to know
11141 the total number of template parms to be able to compute proper
11142 canonical types of each dependent type. So after the loop, when
11143 we know the total number of template parms,
11144 end_template_parm_list computes the proper canonical types and
11145 fixes up the dependent types accordingly. */
11146 while (true)
11147 {
11148 tree parameter;
11149 bool is_non_type;
11150 bool is_parameter_pack;
11151 location_t parm_loc;
11152
11153 /* Parse the template-parameter. */
11154 parm_loc = cp_lexer_peek_token (parser->lexer)->location;
11155 parameter = cp_parser_template_parameter (parser,
11156 &is_non_type,
11157 &is_parameter_pack);
11158 /* Add it to the list. */
11159 if (parameter != error_mark_node)
11160 parameter_list = process_template_parm (parameter_list,
11161 parm_loc,
11162 parameter,
11163 is_non_type,
11164 is_parameter_pack,
11165 0);
11166 else
11167 {
11168 tree err_parm = build_tree_list (parameter, parameter);
11169 parameter_list = chainon (parameter_list, err_parm);
11170 }
11171
11172 /* If the next token is not a `,', we're done. */
11173 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
11174 break;
11175 /* Otherwise, consume the `,' token. */
11176 cp_lexer_consume_token (parser->lexer);
11177 }
11178
11179 return end_template_parm_list (parameter_list);
11180 }
11181
11182 /* Parse a template-parameter.
11183
11184 template-parameter:
11185 type-parameter
11186 parameter-declaration
11187
11188 If all goes well, returns a TREE_LIST. The TREE_VALUE represents
11189 the parameter. The TREE_PURPOSE is the default value, if any.
11190 Returns ERROR_MARK_NODE on failure. *IS_NON_TYPE is set to true
11191 iff this parameter is a non-type parameter. *IS_PARAMETER_PACK is
11192 set to true iff this parameter is a parameter pack. */
11193
11194 static tree
11195 cp_parser_template_parameter (cp_parser* parser, bool *is_non_type,
11196 bool *is_parameter_pack)
11197 {
11198 cp_token *token;
11199 cp_parameter_declarator *parameter_declarator;
11200 cp_declarator *id_declarator;
11201 tree parm;
11202
11203 /* Assume it is a type parameter or a template parameter. */
11204 *is_non_type = false;
11205 /* Assume it not a parameter pack. */
11206 *is_parameter_pack = false;
11207 /* Peek at the next token. */
11208 token = cp_lexer_peek_token (parser->lexer);
11209 /* If it is `class' or `template', we have a type-parameter. */
11210 if (token->keyword == RID_TEMPLATE)
11211 return cp_parser_type_parameter (parser, is_parameter_pack);
11212 /* If it is `class' or `typename' we do not know yet whether it is a
11213 type parameter or a non-type parameter. Consider:
11214
11215 template <typename T, typename T::X X> ...
11216
11217 or:
11218
11219 template <class C, class D*> ...
11220
11221 Here, the first parameter is a type parameter, and the second is
11222 a non-type parameter. We can tell by looking at the token after
11223 the identifier -- if it is a `,', `=', or `>' then we have a type
11224 parameter. */
11225 if (token->keyword == RID_TYPENAME || token->keyword == RID_CLASS)
11226 {
11227 /* Peek at the token after `class' or `typename'. */
11228 token = cp_lexer_peek_nth_token (parser->lexer, 2);
11229 /* If it's an ellipsis, we have a template type parameter
11230 pack. */
11231 if (token->type == CPP_ELLIPSIS)
11232 return cp_parser_type_parameter (parser, is_parameter_pack);
11233 /* If it's an identifier, skip it. */
11234 if (token->type == CPP_NAME)
11235 token = cp_lexer_peek_nth_token (parser->lexer, 3);
11236 /* Now, see if the token looks like the end of a template
11237 parameter. */
11238 if (token->type == CPP_COMMA
11239 || token->type == CPP_EQ
11240 || token->type == CPP_GREATER)
11241 return cp_parser_type_parameter (parser, is_parameter_pack);
11242 }
11243
11244 /* Otherwise, it is a non-type parameter.
11245
11246 [temp.param]
11247
11248 When parsing a default template-argument for a non-type
11249 template-parameter, the first non-nested `>' is taken as the end
11250 of the template parameter-list rather than a greater-than
11251 operator. */
11252 *is_non_type = true;
11253 parameter_declarator
11254 = cp_parser_parameter_declaration (parser, /*template_parm_p=*/true,
11255 /*parenthesized_p=*/NULL);
11256
11257 /* If the parameter declaration is marked as a parameter pack, set
11258 *IS_PARAMETER_PACK to notify the caller. Also, unmark the
11259 declarator's PACK_EXPANSION_P, otherwise we'll get errors from
11260 grokdeclarator. */
11261 if (parameter_declarator
11262 && parameter_declarator->declarator
11263 && parameter_declarator->declarator->parameter_pack_p)
11264 {
11265 *is_parameter_pack = true;
11266 parameter_declarator->declarator->parameter_pack_p = false;
11267 }
11268
11269 /* If the next token is an ellipsis, and we don't already have it
11270 marked as a parameter pack, then we have a parameter pack (that
11271 has no declarator). */
11272 if (!*is_parameter_pack
11273 && cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS)
11274 && declarator_can_be_parameter_pack (parameter_declarator->declarator))
11275 {
11276 /* Consume the `...'. */
11277 cp_lexer_consume_token (parser->lexer);
11278 maybe_warn_variadic_templates ();
11279
11280 *is_parameter_pack = true;
11281 }
11282 /* We might end up with a pack expansion as the type of the non-type
11283 template parameter, in which case this is a non-type template
11284 parameter pack. */
11285 else if (parameter_declarator
11286 && parameter_declarator->decl_specifiers.type
11287 && PACK_EXPANSION_P (parameter_declarator->decl_specifiers.type))
11288 {
11289 *is_parameter_pack = true;
11290 parameter_declarator->decl_specifiers.type =
11291 PACK_EXPANSION_PATTERN (parameter_declarator->decl_specifiers.type);
11292 }
11293
11294 if (*is_parameter_pack && cp_lexer_next_token_is (parser->lexer, CPP_EQ))
11295 {
11296 /* Parameter packs cannot have default arguments. However, a
11297 user may try to do so, so we'll parse them and give an
11298 appropriate diagnostic here. */
11299
11300 /* Consume the `='. */
11301 cp_token *start_token = cp_lexer_peek_token (parser->lexer);
11302 cp_lexer_consume_token (parser->lexer);
11303
11304 /* Find the name of the parameter pack. */
11305 id_declarator = parameter_declarator->declarator;
11306 while (id_declarator && id_declarator->kind != cdk_id)
11307 id_declarator = id_declarator->declarator;
11308
11309 if (id_declarator && id_declarator->kind == cdk_id)
11310 error_at (start_token->location,
11311 "template parameter pack %qD cannot have a default argument",
11312 id_declarator->u.id.unqualified_name);
11313 else
11314 error_at (start_token->location,
11315 "template parameter pack cannot have a default argument");
11316
11317 /* Parse the default argument, but throw away the result. */
11318 cp_parser_default_argument (parser, /*template_parm_p=*/true);
11319 }
11320
11321 parm = grokdeclarator (parameter_declarator->declarator,
11322 &parameter_declarator->decl_specifiers,
11323 TPARM, /*initialized=*/0,
11324 /*attrlist=*/NULL);
11325 if (parm == error_mark_node)
11326 return error_mark_node;
11327
11328 return build_tree_list (parameter_declarator->default_argument, parm);
11329 }
11330
11331 /* Parse a type-parameter.
11332
11333 type-parameter:
11334 class identifier [opt]
11335 class identifier [opt] = type-id
11336 typename identifier [opt]
11337 typename identifier [opt] = type-id
11338 template < template-parameter-list > class identifier [opt]
11339 template < template-parameter-list > class identifier [opt]
11340 = id-expression
11341
11342 GNU Extension (variadic templates):
11343
11344 type-parameter:
11345 class ... identifier [opt]
11346 typename ... identifier [opt]
11347
11348 Returns a TREE_LIST. The TREE_VALUE is itself a TREE_LIST. The
11349 TREE_PURPOSE is the default-argument, if any. The TREE_VALUE is
11350 the declaration of the parameter.
11351
11352 Sets *IS_PARAMETER_PACK if this is a template parameter pack. */
11353
11354 static tree
11355 cp_parser_type_parameter (cp_parser* parser, bool *is_parameter_pack)
11356 {
11357 cp_token *token;
11358 tree parameter;
11359
11360 /* Look for a keyword to tell us what kind of parameter this is. */
11361 token = cp_parser_require (parser, CPP_KEYWORD, RT_CLASS_TYPENAME_TEMPLATE);
11362 if (!token)
11363 return error_mark_node;
11364
11365 switch (token->keyword)
11366 {
11367 case RID_CLASS:
11368 case RID_TYPENAME:
11369 {
11370 tree identifier;
11371 tree default_argument;
11372
11373 /* If the next token is an ellipsis, we have a template
11374 argument pack. */
11375 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
11376 {
11377 /* Consume the `...' token. */
11378 cp_lexer_consume_token (parser->lexer);
11379 maybe_warn_variadic_templates ();
11380
11381 *is_parameter_pack = true;
11382 }
11383
11384 /* If the next token is an identifier, then it names the
11385 parameter. */
11386 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
11387 identifier = cp_parser_identifier (parser);
11388 else
11389 identifier = NULL_TREE;
11390
11391 /* Create the parameter. */
11392 parameter = finish_template_type_parm (class_type_node, identifier);
11393
11394 /* If the next token is an `=', we have a default argument. */
11395 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
11396 {
11397 /* Consume the `=' token. */
11398 cp_lexer_consume_token (parser->lexer);
11399 /* Parse the default-argument. */
11400 push_deferring_access_checks (dk_no_deferred);
11401 default_argument = cp_parser_type_id (parser);
11402
11403 /* Template parameter packs cannot have default
11404 arguments. */
11405 if (*is_parameter_pack)
11406 {
11407 if (identifier)
11408 error_at (token->location,
11409 "template parameter pack %qD cannot have a "
11410 "default argument", identifier);
11411 else
11412 error_at (token->location,
11413 "template parameter packs cannot have "
11414 "default arguments");
11415 default_argument = NULL_TREE;
11416 }
11417 pop_deferring_access_checks ();
11418 }
11419 else
11420 default_argument = NULL_TREE;
11421
11422 /* Create the combined representation of the parameter and the
11423 default argument. */
11424 parameter = build_tree_list (default_argument, parameter);
11425 }
11426 break;
11427
11428 case RID_TEMPLATE:
11429 {
11430 tree identifier;
11431 tree default_argument;
11432
11433 /* Look for the `<'. */
11434 cp_parser_require (parser, CPP_LESS, RT_LESS);
11435 /* Parse the template-parameter-list. */
11436 cp_parser_template_parameter_list (parser);
11437 /* Look for the `>'. */
11438 cp_parser_require (parser, CPP_GREATER, RT_GREATER);
11439 /* Look for the `class' keyword. */
11440 cp_parser_require_keyword (parser, RID_CLASS, RT_CLASS);
11441 /* If the next token is an ellipsis, we have a template
11442 argument pack. */
11443 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
11444 {
11445 /* Consume the `...' token. */
11446 cp_lexer_consume_token (parser->lexer);
11447 maybe_warn_variadic_templates ();
11448
11449 *is_parameter_pack = true;
11450 }
11451 /* If the next token is an `=', then there is a
11452 default-argument. If the next token is a `>', we are at
11453 the end of the parameter-list. If the next token is a `,',
11454 then we are at the end of this parameter. */
11455 if (cp_lexer_next_token_is_not (parser->lexer, CPP_EQ)
11456 && cp_lexer_next_token_is_not (parser->lexer, CPP_GREATER)
11457 && cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
11458 {
11459 identifier = cp_parser_identifier (parser);
11460 /* Treat invalid names as if the parameter were nameless. */
11461 if (identifier == error_mark_node)
11462 identifier = NULL_TREE;
11463 }
11464 else
11465 identifier = NULL_TREE;
11466
11467 /* Create the template parameter. */
11468 parameter = finish_template_template_parm (class_type_node,
11469 identifier);
11470
11471 /* If the next token is an `=', then there is a
11472 default-argument. */
11473 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
11474 {
11475 bool is_template;
11476
11477 /* Consume the `='. */
11478 cp_lexer_consume_token (parser->lexer);
11479 /* Parse the id-expression. */
11480 push_deferring_access_checks (dk_no_deferred);
11481 /* save token before parsing the id-expression, for error
11482 reporting */
11483 token = cp_lexer_peek_token (parser->lexer);
11484 default_argument
11485 = cp_parser_id_expression (parser,
11486 /*template_keyword_p=*/false,
11487 /*check_dependency_p=*/true,
11488 /*template_p=*/&is_template,
11489 /*declarator_p=*/false,
11490 /*optional_p=*/false);
11491 if (TREE_CODE (default_argument) == TYPE_DECL)
11492 /* If the id-expression was a template-id that refers to
11493 a template-class, we already have the declaration here,
11494 so no further lookup is needed. */
11495 ;
11496 else
11497 /* Look up the name. */
11498 default_argument
11499 = cp_parser_lookup_name (parser, default_argument,
11500 none_type,
11501 /*is_template=*/is_template,
11502 /*is_namespace=*/false,
11503 /*check_dependency=*/true,
11504 /*ambiguous_decls=*/NULL,
11505 token->location);
11506 /* See if the default argument is valid. */
11507 default_argument
11508 = check_template_template_default_arg (default_argument);
11509
11510 /* Template parameter packs cannot have default
11511 arguments. */
11512 if (*is_parameter_pack)
11513 {
11514 if (identifier)
11515 error_at (token->location,
11516 "template parameter pack %qD cannot "
11517 "have a default argument",
11518 identifier);
11519 else
11520 error_at (token->location, "template parameter packs cannot "
11521 "have default arguments");
11522 default_argument = NULL_TREE;
11523 }
11524 pop_deferring_access_checks ();
11525 }
11526 else
11527 default_argument = NULL_TREE;
11528
11529 /* Create the combined representation of the parameter and the
11530 default argument. */
11531 parameter = build_tree_list (default_argument, parameter);
11532 }
11533 break;
11534
11535 default:
11536 gcc_unreachable ();
11537 break;
11538 }
11539
11540 return parameter;
11541 }
11542
11543 /* Parse a template-id.
11544
11545 template-id:
11546 template-name < template-argument-list [opt] >
11547
11548 If TEMPLATE_KEYWORD_P is TRUE, then we have just seen the
11549 `template' keyword. In this case, a TEMPLATE_ID_EXPR will be
11550 returned. Otherwise, if the template-name names a function, or set
11551 of functions, returns a TEMPLATE_ID_EXPR. If the template-name
11552 names a class, returns a TYPE_DECL for the specialization.
11553
11554 If CHECK_DEPENDENCY_P is FALSE, names are looked up in
11555 uninstantiated templates. */
11556
11557 static tree
11558 cp_parser_template_id (cp_parser *parser,
11559 bool template_keyword_p,
11560 bool check_dependency_p,
11561 bool is_declaration)
11562 {
11563 int i;
11564 tree templ;
11565 tree arguments;
11566 tree template_id;
11567 cp_token_position start_of_id = 0;
11568 deferred_access_check *chk;
11569 VEC (deferred_access_check,gc) *access_check;
11570 cp_token *next_token = NULL, *next_token_2 = NULL;
11571 bool is_identifier;
11572
11573 /* If the next token corresponds to a template-id, there is no need
11574 to reparse it. */
11575 next_token = cp_lexer_peek_token (parser->lexer);
11576 if (next_token->type == CPP_TEMPLATE_ID)
11577 {
11578 struct tree_check *check_value;
11579
11580 /* Get the stored value. */
11581 check_value = cp_lexer_consume_token (parser->lexer)->u.tree_check_value;
11582 /* Perform any access checks that were deferred. */
11583 access_check = check_value->checks;
11584 if (access_check)
11585 {
11586 FOR_EACH_VEC_ELT (deferred_access_check, access_check, i, chk)
11587 perform_or_defer_access_check (chk->binfo,
11588 chk->decl,
11589 chk->diag_decl);
11590 }
11591 /* Return the stored value. */
11592 return check_value->value;
11593 }
11594
11595 /* Avoid performing name lookup if there is no possibility of
11596 finding a template-id. */
11597 if ((next_token->type != CPP_NAME && next_token->keyword != RID_OPERATOR)
11598 || (next_token->type == CPP_NAME
11599 && !cp_parser_nth_token_starts_template_argument_list_p
11600 (parser, 2)))
11601 {
11602 cp_parser_error (parser, "expected template-id");
11603 return error_mark_node;
11604 }
11605
11606 /* Remember where the template-id starts. */
11607 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
11608 start_of_id = cp_lexer_token_position (parser->lexer, false);
11609
11610 push_deferring_access_checks (dk_deferred);
11611
11612 /* Parse the template-name. */
11613 is_identifier = false;
11614 templ = cp_parser_template_name (parser, template_keyword_p,
11615 check_dependency_p,
11616 is_declaration,
11617 &is_identifier);
11618 if (templ == error_mark_node || is_identifier)
11619 {
11620 pop_deferring_access_checks ();
11621 return templ;
11622 }
11623
11624 /* If we find the sequence `[:' after a template-name, it's probably
11625 a digraph-typo for `< ::'. Substitute the tokens and check if we can
11626 parse correctly the argument list. */
11627 next_token = cp_lexer_peek_token (parser->lexer);
11628 next_token_2 = cp_lexer_peek_nth_token (parser->lexer, 2);
11629 if (next_token->type == CPP_OPEN_SQUARE
11630 && next_token->flags & DIGRAPH
11631 && next_token_2->type == CPP_COLON
11632 && !(next_token_2->flags & PREV_WHITE))
11633 {
11634 cp_parser_parse_tentatively (parser);
11635 /* Change `:' into `::'. */
11636 next_token_2->type = CPP_SCOPE;
11637 /* Consume the first token (CPP_OPEN_SQUARE - which we pretend it is
11638 CPP_LESS. */
11639 cp_lexer_consume_token (parser->lexer);
11640
11641 /* Parse the arguments. */
11642 arguments = cp_parser_enclosed_template_argument_list (parser);
11643 if (!cp_parser_parse_definitely (parser))
11644 {
11645 /* If we couldn't parse an argument list, then we revert our changes
11646 and return simply an error. Maybe this is not a template-id
11647 after all. */
11648 next_token_2->type = CPP_COLON;
11649 cp_parser_error (parser, "expected %<<%>");
11650 pop_deferring_access_checks ();
11651 return error_mark_node;
11652 }
11653 /* Otherwise, emit an error about the invalid digraph, but continue
11654 parsing because we got our argument list. */
11655 if (permerror (next_token->location,
11656 "%<<::%> cannot begin a template-argument list"))
11657 {
11658 static bool hint = false;
11659 inform (next_token->location,
11660 "%<<:%> is an alternate spelling for %<[%>."
11661 " Insert whitespace between %<<%> and %<::%>");
11662 if (!hint && !flag_permissive)
11663 {
11664 inform (next_token->location, "(if you use %<-fpermissive%>"
11665 " G++ will accept your code)");
11666 hint = true;
11667 }
11668 }
11669 }
11670 else
11671 {
11672 /* Look for the `<' that starts the template-argument-list. */
11673 if (!cp_parser_require (parser, CPP_LESS, RT_LESS))
11674 {
11675 pop_deferring_access_checks ();
11676 return error_mark_node;
11677 }
11678 /* Parse the arguments. */
11679 arguments = cp_parser_enclosed_template_argument_list (parser);
11680 }
11681
11682 /* Build a representation of the specialization. */
11683 if (TREE_CODE (templ) == IDENTIFIER_NODE)
11684 template_id = build_min_nt (TEMPLATE_ID_EXPR, templ, arguments);
11685 else if (DECL_CLASS_TEMPLATE_P (templ)
11686 || DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
11687 {
11688 bool entering_scope;
11689 /* In "template <typename T> ... A<T>::", A<T> is the abstract A
11690 template (rather than some instantiation thereof) only if
11691 is not nested within some other construct. For example, in
11692 "template <typename T> void f(T) { A<T>::", A<T> is just an
11693 instantiation of A. */
11694 entering_scope = (template_parm_scope_p ()
11695 && cp_lexer_next_token_is (parser->lexer,
11696 CPP_SCOPE));
11697 template_id
11698 = finish_template_type (templ, arguments, entering_scope);
11699 }
11700 else
11701 {
11702 /* If it's not a class-template or a template-template, it should be
11703 a function-template. */
11704 gcc_assert ((DECL_FUNCTION_TEMPLATE_P (templ)
11705 || TREE_CODE (templ) == OVERLOAD
11706 || BASELINK_P (templ)));
11707
11708 template_id = lookup_template_function (templ, arguments);
11709 }
11710
11711 /* If parsing tentatively, replace the sequence of tokens that makes
11712 up the template-id with a CPP_TEMPLATE_ID token. That way,
11713 should we re-parse the token stream, we will not have to repeat
11714 the effort required to do the parse, nor will we issue duplicate
11715 error messages about problems during instantiation of the
11716 template. */
11717 if (start_of_id)
11718 {
11719 cp_token *token = cp_lexer_token_at (parser->lexer, start_of_id);
11720
11721 /* Reset the contents of the START_OF_ID token. */
11722 token->type = CPP_TEMPLATE_ID;
11723 /* Retrieve any deferred checks. Do not pop this access checks yet
11724 so the memory will not be reclaimed during token replacing below. */
11725 token->u.tree_check_value = ggc_alloc_cleared_tree_check ();
11726 token->u.tree_check_value->value = template_id;
11727 token->u.tree_check_value->checks = get_deferred_access_checks ();
11728 token->keyword = RID_MAX;
11729
11730 /* Purge all subsequent tokens. */
11731 cp_lexer_purge_tokens_after (parser->lexer, start_of_id);
11732
11733 /* ??? Can we actually assume that, if template_id ==
11734 error_mark_node, we will have issued a diagnostic to the
11735 user, as opposed to simply marking the tentative parse as
11736 failed? */
11737 if (cp_parser_error_occurred (parser) && template_id != error_mark_node)
11738 error_at (token->location, "parse error in template argument list");
11739 }
11740
11741 pop_deferring_access_checks ();
11742 return template_id;
11743 }
11744
11745 /* Parse a template-name.
11746
11747 template-name:
11748 identifier
11749
11750 The standard should actually say:
11751
11752 template-name:
11753 identifier
11754 operator-function-id
11755
11756 A defect report has been filed about this issue.
11757
11758 A conversion-function-id cannot be a template name because they cannot
11759 be part of a template-id. In fact, looking at this code:
11760
11761 a.operator K<int>()
11762
11763 the conversion-function-id is "operator K<int>", and K<int> is a type-id.
11764 It is impossible to call a templated conversion-function-id with an
11765 explicit argument list, since the only allowed template parameter is
11766 the type to which it is converting.
11767
11768 If TEMPLATE_KEYWORD_P is true, then we have just seen the
11769 `template' keyword, in a construction like:
11770
11771 T::template f<3>()
11772
11773 In that case `f' is taken to be a template-name, even though there
11774 is no way of knowing for sure.
11775
11776 Returns the TEMPLATE_DECL for the template, or an OVERLOAD if the
11777 name refers to a set of overloaded functions, at least one of which
11778 is a template, or an IDENTIFIER_NODE with the name of the template,
11779 if TEMPLATE_KEYWORD_P is true. If CHECK_DEPENDENCY_P is FALSE,
11780 names are looked up inside uninstantiated templates. */
11781
11782 static tree
11783 cp_parser_template_name (cp_parser* parser,
11784 bool template_keyword_p,
11785 bool check_dependency_p,
11786 bool is_declaration,
11787 bool *is_identifier)
11788 {
11789 tree identifier;
11790 tree decl;
11791 tree fns;
11792 cp_token *token = cp_lexer_peek_token (parser->lexer);
11793
11794 /* If the next token is `operator', then we have either an
11795 operator-function-id or a conversion-function-id. */
11796 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_OPERATOR))
11797 {
11798 /* We don't know whether we're looking at an
11799 operator-function-id or a conversion-function-id. */
11800 cp_parser_parse_tentatively (parser);
11801 /* Try an operator-function-id. */
11802 identifier = cp_parser_operator_function_id (parser);
11803 /* If that didn't work, try a conversion-function-id. */
11804 if (!cp_parser_parse_definitely (parser))
11805 {
11806 cp_parser_error (parser, "expected template-name");
11807 return error_mark_node;
11808 }
11809 }
11810 /* Look for the identifier. */
11811 else
11812 identifier = cp_parser_identifier (parser);
11813
11814 /* If we didn't find an identifier, we don't have a template-id. */
11815 if (identifier == error_mark_node)
11816 return error_mark_node;
11817
11818 /* If the name immediately followed the `template' keyword, then it
11819 is a template-name. However, if the next token is not `<', then
11820 we do not treat it as a template-name, since it is not being used
11821 as part of a template-id. This enables us to handle constructs
11822 like:
11823
11824 template <typename T> struct S { S(); };
11825 template <typename T> S<T>::S();
11826
11827 correctly. We would treat `S' as a template -- if it were `S<T>'
11828 -- but we do not if there is no `<'. */
11829
11830 if (processing_template_decl
11831 && cp_parser_nth_token_starts_template_argument_list_p (parser, 1))
11832 {
11833 /* In a declaration, in a dependent context, we pretend that the
11834 "template" keyword was present in order to improve error
11835 recovery. For example, given:
11836
11837 template <typename T> void f(T::X<int>);
11838
11839 we want to treat "X<int>" as a template-id. */
11840 if (is_declaration
11841 && !template_keyword_p
11842 && parser->scope && TYPE_P (parser->scope)
11843 && check_dependency_p
11844 && dependent_scope_p (parser->scope)
11845 /* Do not do this for dtors (or ctors), since they never
11846 need the template keyword before their name. */
11847 && !constructor_name_p (identifier, parser->scope))
11848 {
11849 cp_token_position start = 0;
11850
11851 /* Explain what went wrong. */
11852 error_at (token->location, "non-template %qD used as template",
11853 identifier);
11854 inform (token->location, "use %<%T::template %D%> to indicate that it is a template",
11855 parser->scope, identifier);
11856 /* If parsing tentatively, find the location of the "<" token. */
11857 if (cp_parser_simulate_error (parser))
11858 start = cp_lexer_token_position (parser->lexer, true);
11859 /* Parse the template arguments so that we can issue error
11860 messages about them. */
11861 cp_lexer_consume_token (parser->lexer);
11862 cp_parser_enclosed_template_argument_list (parser);
11863 /* Skip tokens until we find a good place from which to
11864 continue parsing. */
11865 cp_parser_skip_to_closing_parenthesis (parser,
11866 /*recovering=*/true,
11867 /*or_comma=*/true,
11868 /*consume_paren=*/false);
11869 /* If parsing tentatively, permanently remove the
11870 template argument list. That will prevent duplicate
11871 error messages from being issued about the missing
11872 "template" keyword. */
11873 if (start)
11874 cp_lexer_purge_tokens_after (parser->lexer, start);
11875 if (is_identifier)
11876 *is_identifier = true;
11877 return identifier;
11878 }
11879
11880 /* If the "template" keyword is present, then there is generally
11881 no point in doing name-lookup, so we just return IDENTIFIER.
11882 But, if the qualifying scope is non-dependent then we can
11883 (and must) do name-lookup normally. */
11884 if (template_keyword_p
11885 && (!parser->scope
11886 || (TYPE_P (parser->scope)
11887 && dependent_type_p (parser->scope))))
11888 return identifier;
11889 }
11890
11891 /* Look up the name. */
11892 decl = cp_parser_lookup_name (parser, identifier,
11893 none_type,
11894 /*is_template=*/true,
11895 /*is_namespace=*/false,
11896 check_dependency_p,
11897 /*ambiguous_decls=*/NULL,
11898 token->location);
11899
11900 /* If DECL is a template, then the name was a template-name. */
11901 if (TREE_CODE (decl) == TEMPLATE_DECL)
11902 ;
11903 else
11904 {
11905 tree fn = NULL_TREE;
11906
11907 /* The standard does not explicitly indicate whether a name that
11908 names a set of overloaded declarations, some of which are
11909 templates, is a template-name. However, such a name should
11910 be a template-name; otherwise, there is no way to form a
11911 template-id for the overloaded templates. */
11912 fns = BASELINK_P (decl) ? BASELINK_FUNCTIONS (decl) : decl;
11913 if (TREE_CODE (fns) == OVERLOAD)
11914 for (fn = fns; fn; fn = OVL_NEXT (fn))
11915 if (TREE_CODE (OVL_CURRENT (fn)) == TEMPLATE_DECL)
11916 break;
11917
11918 if (!fn)
11919 {
11920 /* The name does not name a template. */
11921 cp_parser_error (parser, "expected template-name");
11922 return error_mark_node;
11923 }
11924 }
11925
11926 /* If DECL is dependent, and refers to a function, then just return
11927 its name; we will look it up again during template instantiation. */
11928 if (DECL_FUNCTION_TEMPLATE_P (decl) || !DECL_P (decl))
11929 {
11930 tree scope = CP_DECL_CONTEXT (get_first_fn (decl));
11931 if (TYPE_P (scope) && dependent_type_p (scope))
11932 return identifier;
11933 }
11934
11935 return decl;
11936 }
11937
11938 /* Parse a template-argument-list.
11939
11940 template-argument-list:
11941 template-argument ... [opt]
11942 template-argument-list , template-argument ... [opt]
11943
11944 Returns a TREE_VEC containing the arguments. */
11945
11946 static tree
11947 cp_parser_template_argument_list (cp_parser* parser)
11948 {
11949 tree fixed_args[10];
11950 unsigned n_args = 0;
11951 unsigned alloced = 10;
11952 tree *arg_ary = fixed_args;
11953 tree vec;
11954 bool saved_in_template_argument_list_p;
11955 bool saved_ice_p;
11956 bool saved_non_ice_p;
11957
11958 saved_in_template_argument_list_p = parser->in_template_argument_list_p;
11959 parser->in_template_argument_list_p = true;
11960 /* Even if the template-id appears in an integral
11961 constant-expression, the contents of the argument list do
11962 not. */
11963 saved_ice_p = parser->integral_constant_expression_p;
11964 parser->integral_constant_expression_p = false;
11965 saved_non_ice_p = parser->non_integral_constant_expression_p;
11966 parser->non_integral_constant_expression_p = false;
11967 /* Parse the arguments. */
11968 do
11969 {
11970 tree argument;
11971
11972 if (n_args)
11973 /* Consume the comma. */
11974 cp_lexer_consume_token (parser->lexer);
11975
11976 /* Parse the template-argument. */
11977 argument = cp_parser_template_argument (parser);
11978
11979 /* If the next token is an ellipsis, we're expanding a template
11980 argument pack. */
11981 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
11982 {
11983 if (argument == error_mark_node)
11984 {
11985 cp_token *token = cp_lexer_peek_token (parser->lexer);
11986 error_at (token->location,
11987 "expected parameter pack before %<...%>");
11988 }
11989 /* Consume the `...' token. */
11990 cp_lexer_consume_token (parser->lexer);
11991
11992 /* Make the argument into a TYPE_PACK_EXPANSION or
11993 EXPR_PACK_EXPANSION. */
11994 argument = make_pack_expansion (argument);
11995 }
11996
11997 if (n_args == alloced)
11998 {
11999 alloced *= 2;
12000
12001 if (arg_ary == fixed_args)
12002 {
12003 arg_ary = XNEWVEC (tree, alloced);
12004 memcpy (arg_ary, fixed_args, sizeof (tree) * n_args);
12005 }
12006 else
12007 arg_ary = XRESIZEVEC (tree, arg_ary, alloced);
12008 }
12009 arg_ary[n_args++] = argument;
12010 }
12011 while (cp_lexer_next_token_is (parser->lexer, CPP_COMMA));
12012
12013 vec = make_tree_vec (n_args);
12014
12015 while (n_args--)
12016 TREE_VEC_ELT (vec, n_args) = arg_ary[n_args];
12017
12018 if (arg_ary != fixed_args)
12019 free (arg_ary);
12020 parser->non_integral_constant_expression_p = saved_non_ice_p;
12021 parser->integral_constant_expression_p = saved_ice_p;
12022 parser->in_template_argument_list_p = saved_in_template_argument_list_p;
12023 #ifdef ENABLE_CHECKING
12024 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
12025 #endif
12026 return vec;
12027 }
12028
12029 /* Parse a template-argument.
12030
12031 template-argument:
12032 assignment-expression
12033 type-id
12034 id-expression
12035
12036 The representation is that of an assignment-expression, type-id, or
12037 id-expression -- except that the qualified id-expression is
12038 evaluated, so that the value returned is either a DECL or an
12039 OVERLOAD.
12040
12041 Although the standard says "assignment-expression", it forbids
12042 throw-expressions or assignments in the template argument.
12043 Therefore, we use "conditional-expression" instead. */
12044
12045 static tree
12046 cp_parser_template_argument (cp_parser* parser)
12047 {
12048 tree argument;
12049 bool template_p;
12050 bool address_p;
12051 bool maybe_type_id = false;
12052 cp_token *token = NULL, *argument_start_token = NULL;
12053 cp_id_kind idk;
12054
12055 /* There's really no way to know what we're looking at, so we just
12056 try each alternative in order.
12057
12058 [temp.arg]
12059
12060 In a template-argument, an ambiguity between a type-id and an
12061 expression is resolved to a type-id, regardless of the form of
12062 the corresponding template-parameter.
12063
12064 Therefore, we try a type-id first. */
12065 cp_parser_parse_tentatively (parser);
12066 argument = cp_parser_template_type_arg (parser);
12067 /* If there was no error parsing the type-id but the next token is a
12068 '>>', our behavior depends on which dialect of C++ we're
12069 parsing. In C++98, we probably found a typo for '> >'. But there
12070 are type-id which are also valid expressions. For instance:
12071
12072 struct X { int operator >> (int); };
12073 template <int V> struct Foo {};
12074 Foo<X () >> 5> r;
12075
12076 Here 'X()' is a valid type-id of a function type, but the user just
12077 wanted to write the expression "X() >> 5". Thus, we remember that we
12078 found a valid type-id, but we still try to parse the argument as an
12079 expression to see what happens.
12080
12081 In C++0x, the '>>' will be considered two separate '>'
12082 tokens. */
12083 if (!cp_parser_error_occurred (parser)
12084 && cxx_dialect == cxx98
12085 && cp_lexer_next_token_is (parser->lexer, CPP_RSHIFT))
12086 {
12087 maybe_type_id = true;
12088 cp_parser_abort_tentative_parse (parser);
12089 }
12090 else
12091 {
12092 /* If the next token isn't a `,' or a `>', then this argument wasn't
12093 really finished. This means that the argument is not a valid
12094 type-id. */
12095 if (!cp_parser_next_token_ends_template_argument_p (parser))
12096 cp_parser_error (parser, "expected template-argument");
12097 /* If that worked, we're done. */
12098 if (cp_parser_parse_definitely (parser))
12099 return argument;
12100 }
12101 /* We're still not sure what the argument will be. */
12102 cp_parser_parse_tentatively (parser);
12103 /* Try a template. */
12104 argument_start_token = cp_lexer_peek_token (parser->lexer);
12105 argument = cp_parser_id_expression (parser,
12106 /*template_keyword_p=*/false,
12107 /*check_dependency_p=*/true,
12108 &template_p,
12109 /*declarator_p=*/false,
12110 /*optional_p=*/false);
12111 /* If the next token isn't a `,' or a `>', then this argument wasn't
12112 really finished. */
12113 if (!cp_parser_next_token_ends_template_argument_p (parser))
12114 cp_parser_error (parser, "expected template-argument");
12115 if (!cp_parser_error_occurred (parser))
12116 {
12117 /* Figure out what is being referred to. If the id-expression
12118 was for a class template specialization, then we will have a
12119 TYPE_DECL at this point. There is no need to do name lookup
12120 at this point in that case. */
12121 if (TREE_CODE (argument) != TYPE_DECL)
12122 argument = cp_parser_lookup_name (parser, argument,
12123 none_type,
12124 /*is_template=*/template_p,
12125 /*is_namespace=*/false,
12126 /*check_dependency=*/true,
12127 /*ambiguous_decls=*/NULL,
12128 argument_start_token->location);
12129 if (TREE_CODE (argument) != TEMPLATE_DECL
12130 && TREE_CODE (argument) != UNBOUND_CLASS_TEMPLATE)
12131 cp_parser_error (parser, "expected template-name");
12132 }
12133 if (cp_parser_parse_definitely (parser))
12134 return argument;
12135 /* It must be a non-type argument. There permitted cases are given
12136 in [temp.arg.nontype]:
12137
12138 -- an integral constant-expression of integral or enumeration
12139 type; or
12140
12141 -- the name of a non-type template-parameter; or
12142
12143 -- the name of an object or function with external linkage...
12144
12145 -- the address of an object or function with external linkage...
12146
12147 -- a pointer to member... */
12148 /* Look for a non-type template parameter. */
12149 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
12150 {
12151 cp_parser_parse_tentatively (parser);
12152 argument = cp_parser_primary_expression (parser,
12153 /*address_p=*/false,
12154 /*cast_p=*/false,
12155 /*template_arg_p=*/true,
12156 &idk);
12157 if (TREE_CODE (argument) != TEMPLATE_PARM_INDEX
12158 || !cp_parser_next_token_ends_template_argument_p (parser))
12159 cp_parser_simulate_error (parser);
12160 if (cp_parser_parse_definitely (parser))
12161 return argument;
12162 }
12163
12164 /* If the next token is "&", the argument must be the address of an
12165 object or function with external linkage. */
12166 address_p = cp_lexer_next_token_is (parser->lexer, CPP_AND);
12167 if (address_p)
12168 cp_lexer_consume_token (parser->lexer);
12169 /* See if we might have an id-expression. */
12170 token = cp_lexer_peek_token (parser->lexer);
12171 if (token->type == CPP_NAME
12172 || token->keyword == RID_OPERATOR
12173 || token->type == CPP_SCOPE
12174 || token->type == CPP_TEMPLATE_ID
12175 || token->type == CPP_NESTED_NAME_SPECIFIER)
12176 {
12177 cp_parser_parse_tentatively (parser);
12178 argument = cp_parser_primary_expression (parser,
12179 address_p,
12180 /*cast_p=*/false,
12181 /*template_arg_p=*/true,
12182 &idk);
12183 if (cp_parser_error_occurred (parser)
12184 || !cp_parser_next_token_ends_template_argument_p (parser))
12185 cp_parser_abort_tentative_parse (parser);
12186 else
12187 {
12188 tree probe;
12189
12190 if (TREE_CODE (argument) == INDIRECT_REF)
12191 {
12192 gcc_assert (REFERENCE_REF_P (argument));
12193 argument = TREE_OPERAND (argument, 0);
12194 }
12195
12196 /* If we're in a template, we represent a qualified-id referring
12197 to a static data member as a SCOPE_REF even if the scope isn't
12198 dependent so that we can check access control later. */
12199 probe = argument;
12200 if (TREE_CODE (probe) == SCOPE_REF)
12201 probe = TREE_OPERAND (probe, 1);
12202 if (TREE_CODE (probe) == VAR_DECL)
12203 {
12204 /* A variable without external linkage might still be a
12205 valid constant-expression, so no error is issued here
12206 if the external-linkage check fails. */
12207 if (!address_p && !DECL_EXTERNAL_LINKAGE_P (probe))
12208 cp_parser_simulate_error (parser);
12209 }
12210 else if (is_overloaded_fn (argument))
12211 /* All overloaded functions are allowed; if the external
12212 linkage test does not pass, an error will be issued
12213 later. */
12214 ;
12215 else if (address_p
12216 && (TREE_CODE (argument) == OFFSET_REF
12217 || TREE_CODE (argument) == SCOPE_REF))
12218 /* A pointer-to-member. */
12219 ;
12220 else if (TREE_CODE (argument) == TEMPLATE_PARM_INDEX)
12221 ;
12222 else
12223 cp_parser_simulate_error (parser);
12224
12225 if (cp_parser_parse_definitely (parser))
12226 {
12227 if (address_p)
12228 argument = build_x_unary_op (ADDR_EXPR, argument,
12229 tf_warning_or_error);
12230 return argument;
12231 }
12232 }
12233 }
12234 /* If the argument started with "&", there are no other valid
12235 alternatives at this point. */
12236 if (address_p)
12237 {
12238 cp_parser_error (parser, "invalid non-type template argument");
12239 return error_mark_node;
12240 }
12241
12242 /* If the argument wasn't successfully parsed as a type-id followed
12243 by '>>', the argument can only be a constant expression now.
12244 Otherwise, we try parsing the constant-expression tentatively,
12245 because the argument could really be a type-id. */
12246 if (maybe_type_id)
12247 cp_parser_parse_tentatively (parser);
12248 argument = cp_parser_constant_expression (parser,
12249 /*allow_non_constant_p=*/false,
12250 /*non_constant_p=*/NULL);
12251 argument = fold_non_dependent_expr (argument);
12252 if (!maybe_type_id)
12253 return argument;
12254 if (!cp_parser_next_token_ends_template_argument_p (parser))
12255 cp_parser_error (parser, "expected template-argument");
12256 if (cp_parser_parse_definitely (parser))
12257 return argument;
12258 /* We did our best to parse the argument as a non type-id, but that
12259 was the only alternative that matched (albeit with a '>' after
12260 it). We can assume it's just a typo from the user, and a
12261 diagnostic will then be issued. */
12262 return cp_parser_template_type_arg (parser);
12263 }
12264
12265 /* Parse an explicit-instantiation.
12266
12267 explicit-instantiation:
12268 template declaration
12269
12270 Although the standard says `declaration', what it really means is:
12271
12272 explicit-instantiation:
12273 template decl-specifier-seq [opt] declarator [opt] ;
12274
12275 Things like `template int S<int>::i = 5, int S<double>::j;' are not
12276 supposed to be allowed. A defect report has been filed about this
12277 issue.
12278
12279 GNU Extension:
12280
12281 explicit-instantiation:
12282 storage-class-specifier template
12283 decl-specifier-seq [opt] declarator [opt] ;
12284 function-specifier template
12285 decl-specifier-seq [opt] declarator [opt] ; */
12286
12287 static void
12288 cp_parser_explicit_instantiation (cp_parser* parser)
12289 {
12290 int declares_class_or_enum;
12291 cp_decl_specifier_seq decl_specifiers;
12292 tree extension_specifier = NULL_TREE;
12293
12294 /* Look for an (optional) storage-class-specifier or
12295 function-specifier. */
12296 if (cp_parser_allow_gnu_extensions_p (parser))
12297 {
12298 extension_specifier
12299 = cp_parser_storage_class_specifier_opt (parser);
12300 if (!extension_specifier)
12301 extension_specifier
12302 = cp_parser_function_specifier_opt (parser,
12303 /*decl_specs=*/NULL);
12304 }
12305
12306 /* Look for the `template' keyword. */
12307 cp_parser_require_keyword (parser, RID_TEMPLATE, RT_TEMPLATE);
12308 /* Let the front end know that we are processing an explicit
12309 instantiation. */
12310 begin_explicit_instantiation ();
12311 /* [temp.explicit] says that we are supposed to ignore access
12312 control while processing explicit instantiation directives. */
12313 push_deferring_access_checks (dk_no_check);
12314 /* Parse a decl-specifier-seq. */
12315 cp_parser_decl_specifier_seq (parser,
12316 CP_PARSER_FLAGS_OPTIONAL,
12317 &decl_specifiers,
12318 &declares_class_or_enum);
12319 /* If there was exactly one decl-specifier, and it declared a class,
12320 and there's no declarator, then we have an explicit type
12321 instantiation. */
12322 if (declares_class_or_enum && cp_parser_declares_only_class_p (parser))
12323 {
12324 tree type;
12325
12326 type = check_tag_decl (&decl_specifiers);
12327 /* Turn access control back on for names used during
12328 template instantiation. */
12329 pop_deferring_access_checks ();
12330 if (type)
12331 do_type_instantiation (type, extension_specifier,
12332 /*complain=*/tf_error);
12333 }
12334 else
12335 {
12336 cp_declarator *declarator;
12337 tree decl;
12338
12339 /* Parse the declarator. */
12340 declarator
12341 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
12342 /*ctor_dtor_or_conv_p=*/NULL,
12343 /*parenthesized_p=*/NULL,
12344 /*member_p=*/false);
12345 if (declares_class_or_enum & 2)
12346 cp_parser_check_for_definition_in_return_type (declarator,
12347 decl_specifiers.type,
12348 decl_specifiers.type_location);
12349 if (declarator != cp_error_declarator)
12350 {
12351 if (decl_specifiers.specs[(int)ds_inline])
12352 permerror (input_location, "explicit instantiation shall not use"
12353 " %<inline%> specifier");
12354 if (decl_specifiers.specs[(int)ds_constexpr])
12355 permerror (input_location, "explicit instantiation shall not use"
12356 " %<constexpr%> specifier");
12357
12358 decl = grokdeclarator (declarator, &decl_specifiers,
12359 NORMAL, 0, &decl_specifiers.attributes);
12360 /* Turn access control back on for names used during
12361 template instantiation. */
12362 pop_deferring_access_checks ();
12363 /* Do the explicit instantiation. */
12364 do_decl_instantiation (decl, extension_specifier);
12365 }
12366 else
12367 {
12368 pop_deferring_access_checks ();
12369 /* Skip the body of the explicit instantiation. */
12370 cp_parser_skip_to_end_of_statement (parser);
12371 }
12372 }
12373 /* We're done with the instantiation. */
12374 end_explicit_instantiation ();
12375
12376 cp_parser_consume_semicolon_at_end_of_statement (parser);
12377 }
12378
12379 /* Parse an explicit-specialization.
12380
12381 explicit-specialization:
12382 template < > declaration
12383
12384 Although the standard says `declaration', what it really means is:
12385
12386 explicit-specialization:
12387 template <> decl-specifier [opt] init-declarator [opt] ;
12388 template <> function-definition
12389 template <> explicit-specialization
12390 template <> template-declaration */
12391
12392 static void
12393 cp_parser_explicit_specialization (cp_parser* parser)
12394 {
12395 bool need_lang_pop;
12396 cp_token *token = cp_lexer_peek_token (parser->lexer);
12397
12398 /* Look for the `template' keyword. */
12399 cp_parser_require_keyword (parser, RID_TEMPLATE, RT_TEMPLATE);
12400 /* Look for the `<'. */
12401 cp_parser_require (parser, CPP_LESS, RT_LESS);
12402 /* Look for the `>'. */
12403 cp_parser_require (parser, CPP_GREATER, RT_GREATER);
12404 /* We have processed another parameter list. */
12405 ++parser->num_template_parameter_lists;
12406 /* [temp]
12407
12408 A template ... explicit specialization ... shall not have C
12409 linkage. */
12410 if (current_lang_name == lang_name_c)
12411 {
12412 error_at (token->location, "template specialization with C linkage");
12413 /* Give it C++ linkage to avoid confusing other parts of the
12414 front end. */
12415 push_lang_context (lang_name_cplusplus);
12416 need_lang_pop = true;
12417 }
12418 else
12419 need_lang_pop = false;
12420 /* Let the front end know that we are beginning a specialization. */
12421 if (!begin_specialization ())
12422 {
12423 end_specialization ();
12424 return;
12425 }
12426
12427 /* If the next keyword is `template', we need to figure out whether
12428 or not we're looking a template-declaration. */
12429 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
12430 {
12431 if (cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_LESS
12432 && cp_lexer_peek_nth_token (parser->lexer, 3)->type != CPP_GREATER)
12433 cp_parser_template_declaration_after_export (parser,
12434 /*member_p=*/false);
12435 else
12436 cp_parser_explicit_specialization (parser);
12437 }
12438 else
12439 /* Parse the dependent declaration. */
12440 cp_parser_single_declaration (parser,
12441 /*checks=*/NULL,
12442 /*member_p=*/false,
12443 /*explicit_specialization_p=*/true,
12444 /*friend_p=*/NULL);
12445 /* We're done with the specialization. */
12446 end_specialization ();
12447 /* For the erroneous case of a template with C linkage, we pushed an
12448 implicit C++ linkage scope; exit that scope now. */
12449 if (need_lang_pop)
12450 pop_lang_context ();
12451 /* We're done with this parameter list. */
12452 --parser->num_template_parameter_lists;
12453 }
12454
12455 /* Parse a type-specifier.
12456
12457 type-specifier:
12458 simple-type-specifier
12459 class-specifier
12460 enum-specifier
12461 elaborated-type-specifier
12462 cv-qualifier
12463
12464 GNU Extension:
12465
12466 type-specifier:
12467 __complex__
12468
12469 Returns a representation of the type-specifier. For a
12470 class-specifier, enum-specifier, or elaborated-type-specifier, a
12471 TREE_TYPE is returned; otherwise, a TYPE_DECL is returned.
12472
12473 The parser flags FLAGS is used to control type-specifier parsing.
12474
12475 If IS_DECLARATION is TRUE, then this type-specifier is appearing
12476 in a decl-specifier-seq.
12477
12478 If DECLARES_CLASS_OR_ENUM is non-NULL, and the type-specifier is a
12479 class-specifier, enum-specifier, or elaborated-type-specifier, then
12480 *DECLARES_CLASS_OR_ENUM is set to a nonzero value. The value is 1
12481 if a type is declared; 2 if it is defined. Otherwise, it is set to
12482 zero.
12483
12484 If IS_CV_QUALIFIER is non-NULL, and the type-specifier is a
12485 cv-qualifier, then IS_CV_QUALIFIER is set to TRUE. Otherwise, it
12486 is set to FALSE. */
12487
12488 static tree
12489 cp_parser_type_specifier (cp_parser* parser,
12490 cp_parser_flags flags,
12491 cp_decl_specifier_seq *decl_specs,
12492 bool is_declaration,
12493 int* declares_class_or_enum,
12494 bool* is_cv_qualifier)
12495 {
12496 tree type_spec = NULL_TREE;
12497 cp_token *token;
12498 enum rid keyword;
12499 cp_decl_spec ds = ds_last;
12500
12501 /* Assume this type-specifier does not declare a new type. */
12502 if (declares_class_or_enum)
12503 *declares_class_or_enum = 0;
12504 /* And that it does not specify a cv-qualifier. */
12505 if (is_cv_qualifier)
12506 *is_cv_qualifier = false;
12507 /* Peek at the next token. */
12508 token = cp_lexer_peek_token (parser->lexer);
12509
12510 /* If we're looking at a keyword, we can use that to guide the
12511 production we choose. */
12512 keyword = token->keyword;
12513 switch (keyword)
12514 {
12515 case RID_ENUM:
12516 if ((flags & CP_PARSER_FLAGS_NO_TYPE_DEFINITIONS))
12517 goto elaborated_type_specifier;
12518
12519 /* Look for the enum-specifier. */
12520 type_spec = cp_parser_enum_specifier (parser);
12521 /* If that worked, we're done. */
12522 if (type_spec)
12523 {
12524 if (declares_class_or_enum)
12525 *declares_class_or_enum = 2;
12526 if (decl_specs)
12527 cp_parser_set_decl_spec_type (decl_specs,
12528 type_spec,
12529 token->location,
12530 /*user_defined_p=*/true);
12531 return type_spec;
12532 }
12533 else
12534 goto elaborated_type_specifier;
12535
12536 /* Any of these indicate either a class-specifier, or an
12537 elaborated-type-specifier. */
12538 case RID_CLASS:
12539 case RID_STRUCT:
12540 case RID_UNION:
12541 if ((flags & CP_PARSER_FLAGS_NO_TYPE_DEFINITIONS))
12542 goto elaborated_type_specifier;
12543
12544 /* Parse tentatively so that we can back up if we don't find a
12545 class-specifier. */
12546 cp_parser_parse_tentatively (parser);
12547 /* Look for the class-specifier. */
12548 type_spec = cp_parser_class_specifier (parser);
12549 invoke_plugin_callbacks (PLUGIN_FINISH_TYPE, type_spec);
12550 /* If that worked, we're done. */
12551 if (cp_parser_parse_definitely (parser))
12552 {
12553 if (declares_class_or_enum)
12554 *declares_class_or_enum = 2;
12555 if (decl_specs)
12556 cp_parser_set_decl_spec_type (decl_specs,
12557 type_spec,
12558 token->location,
12559 /*user_defined_p=*/true);
12560 return type_spec;
12561 }
12562
12563 /* Fall through. */
12564 elaborated_type_specifier:
12565 /* We're declaring (not defining) a class or enum. */
12566 if (declares_class_or_enum)
12567 *declares_class_or_enum = 1;
12568
12569 /* Fall through. */
12570 case RID_TYPENAME:
12571 /* Look for an elaborated-type-specifier. */
12572 type_spec
12573 = (cp_parser_elaborated_type_specifier
12574 (parser,
12575 decl_specs && decl_specs->specs[(int) ds_friend],
12576 is_declaration));
12577 if (decl_specs)
12578 cp_parser_set_decl_spec_type (decl_specs,
12579 type_spec,
12580 token->location,
12581 /*user_defined_p=*/true);
12582 return type_spec;
12583
12584 case RID_CONST:
12585 ds = ds_const;
12586 if (is_cv_qualifier)
12587 *is_cv_qualifier = true;
12588 break;
12589
12590 case RID_VOLATILE:
12591 ds = ds_volatile;
12592 if (is_cv_qualifier)
12593 *is_cv_qualifier = true;
12594 break;
12595
12596 case RID_RESTRICT:
12597 ds = ds_restrict;
12598 if (is_cv_qualifier)
12599 *is_cv_qualifier = true;
12600 break;
12601
12602 case RID_COMPLEX:
12603 /* The `__complex__' keyword is a GNU extension. */
12604 ds = ds_complex;
12605 break;
12606
12607 default:
12608 break;
12609 }
12610
12611 /* Handle simple keywords. */
12612 if (ds != ds_last)
12613 {
12614 if (decl_specs)
12615 {
12616 ++decl_specs->specs[(int)ds];
12617 decl_specs->any_specifiers_p = true;
12618 }
12619 return cp_lexer_consume_token (parser->lexer)->u.value;
12620 }
12621
12622 /* If we do not already have a type-specifier, assume we are looking
12623 at a simple-type-specifier. */
12624 type_spec = cp_parser_simple_type_specifier (parser,
12625 decl_specs,
12626 flags);
12627
12628 /* If we didn't find a type-specifier, and a type-specifier was not
12629 optional in this context, issue an error message. */
12630 if (!type_spec && !(flags & CP_PARSER_FLAGS_OPTIONAL))
12631 {
12632 cp_parser_error (parser, "expected type specifier");
12633 return error_mark_node;
12634 }
12635
12636 return type_spec;
12637 }
12638
12639 /* Parse a simple-type-specifier.
12640
12641 simple-type-specifier:
12642 :: [opt] nested-name-specifier [opt] type-name
12643 :: [opt] nested-name-specifier template template-id
12644 char
12645 wchar_t
12646 bool
12647 short
12648 int
12649 long
12650 signed
12651 unsigned
12652 float
12653 double
12654 void
12655
12656 C++0x Extension:
12657
12658 simple-type-specifier:
12659 auto
12660 decltype ( expression )
12661 char16_t
12662 char32_t
12663
12664 GNU Extension:
12665
12666 simple-type-specifier:
12667 __int128
12668 __typeof__ unary-expression
12669 __typeof__ ( type-id )
12670
12671 Returns the indicated TYPE_DECL. If DECL_SPECS is not NULL, it is
12672 appropriately updated. */
12673
12674 static tree
12675 cp_parser_simple_type_specifier (cp_parser* parser,
12676 cp_decl_specifier_seq *decl_specs,
12677 cp_parser_flags flags)
12678 {
12679 tree type = NULL_TREE;
12680 cp_token *token;
12681
12682 /* Peek at the next token. */
12683 token = cp_lexer_peek_token (parser->lexer);
12684
12685 /* If we're looking at a keyword, things are easy. */
12686 switch (token->keyword)
12687 {
12688 case RID_CHAR:
12689 if (decl_specs)
12690 decl_specs->explicit_char_p = true;
12691 type = char_type_node;
12692 break;
12693 case RID_CHAR16:
12694 type = char16_type_node;
12695 break;
12696 case RID_CHAR32:
12697 type = char32_type_node;
12698 break;
12699 case RID_WCHAR:
12700 type = wchar_type_node;
12701 break;
12702 case RID_BOOL:
12703 type = boolean_type_node;
12704 break;
12705 case RID_SHORT:
12706 if (decl_specs)
12707 ++decl_specs->specs[(int) ds_short];
12708 type = short_integer_type_node;
12709 break;
12710 case RID_INT:
12711 if (decl_specs)
12712 decl_specs->explicit_int_p = true;
12713 type = integer_type_node;
12714 break;
12715 case RID_INT128:
12716 if (!int128_integer_type_node)
12717 break;
12718 if (decl_specs)
12719 decl_specs->explicit_int128_p = true;
12720 type = int128_integer_type_node;
12721 break;
12722 case RID_LONG:
12723 if (decl_specs)
12724 ++decl_specs->specs[(int) ds_long];
12725 type = long_integer_type_node;
12726 break;
12727 case RID_SIGNED:
12728 if (decl_specs)
12729 ++decl_specs->specs[(int) ds_signed];
12730 type = integer_type_node;
12731 break;
12732 case RID_UNSIGNED:
12733 if (decl_specs)
12734 ++decl_specs->specs[(int) ds_unsigned];
12735 type = unsigned_type_node;
12736 break;
12737 case RID_FLOAT:
12738 type = float_type_node;
12739 break;
12740 case RID_DOUBLE:
12741 type = double_type_node;
12742 break;
12743 case RID_VOID:
12744 type = void_type_node;
12745 break;
12746
12747 case RID_AUTO:
12748 maybe_warn_cpp0x (CPP0X_AUTO);
12749 type = make_auto ();
12750 break;
12751
12752 case RID_DECLTYPE:
12753 /* Parse the `decltype' type. */
12754 type = cp_parser_decltype (parser);
12755
12756 if (decl_specs)
12757 cp_parser_set_decl_spec_type (decl_specs, type,
12758 token->location,
12759 /*user_defined_p=*/true);
12760
12761 return type;
12762
12763 case RID_TYPEOF:
12764 /* Consume the `typeof' token. */
12765 cp_lexer_consume_token (parser->lexer);
12766 /* Parse the operand to `typeof'. */
12767 type = cp_parser_sizeof_operand (parser, RID_TYPEOF);
12768 /* If it is not already a TYPE, take its type. */
12769 if (!TYPE_P (type))
12770 type = finish_typeof (type);
12771
12772 if (decl_specs)
12773 cp_parser_set_decl_spec_type (decl_specs, type,
12774 token->location,
12775 /*user_defined_p=*/true);
12776
12777 return type;
12778
12779 default:
12780 break;
12781 }
12782
12783 /* If the type-specifier was for a built-in type, we're done. */
12784 if (type)
12785 {
12786 /* Record the type. */
12787 if (decl_specs
12788 && (token->keyword != RID_SIGNED
12789 && token->keyword != RID_UNSIGNED
12790 && token->keyword != RID_SHORT
12791 && token->keyword != RID_LONG))
12792 cp_parser_set_decl_spec_type (decl_specs,
12793 type,
12794 token->location,
12795 /*user_defined=*/false);
12796 if (decl_specs)
12797 decl_specs->any_specifiers_p = true;
12798
12799 /* Consume the token. */
12800 cp_lexer_consume_token (parser->lexer);
12801
12802 /* There is no valid C++ program where a non-template type is
12803 followed by a "<". That usually indicates that the user thought
12804 that the type was a template. */
12805 cp_parser_check_for_invalid_template_id (parser, type, token->location);
12806
12807 return TYPE_NAME (type);
12808 }
12809
12810 /* The type-specifier must be a user-defined type. */
12811 if (!(flags & CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES))
12812 {
12813 bool qualified_p;
12814 bool global_p;
12815
12816 /* Don't gobble tokens or issue error messages if this is an
12817 optional type-specifier. */
12818 if (flags & CP_PARSER_FLAGS_OPTIONAL)
12819 cp_parser_parse_tentatively (parser);
12820
12821 /* Look for the optional `::' operator. */
12822 global_p
12823 = (cp_parser_global_scope_opt (parser,
12824 /*current_scope_valid_p=*/false)
12825 != NULL_TREE);
12826 /* Look for the nested-name specifier. */
12827 qualified_p
12828 = (cp_parser_nested_name_specifier_opt (parser,
12829 /*typename_keyword_p=*/false,
12830 /*check_dependency_p=*/true,
12831 /*type_p=*/false,
12832 /*is_declaration=*/false)
12833 != NULL_TREE);
12834 token = cp_lexer_peek_token (parser->lexer);
12835 /* If we have seen a nested-name-specifier, and the next token
12836 is `template', then we are using the template-id production. */
12837 if (parser->scope
12838 && cp_parser_optional_template_keyword (parser))
12839 {
12840 /* Look for the template-id. */
12841 type = cp_parser_template_id (parser,
12842 /*template_keyword_p=*/true,
12843 /*check_dependency_p=*/true,
12844 /*is_declaration=*/false);
12845 /* If the template-id did not name a type, we are out of
12846 luck. */
12847 if (TREE_CODE (type) != TYPE_DECL)
12848 {
12849 cp_parser_error (parser, "expected template-id for type");
12850 type = NULL_TREE;
12851 }
12852 }
12853 /* Otherwise, look for a type-name. */
12854 else
12855 type = cp_parser_type_name (parser);
12856 /* Keep track of all name-lookups performed in class scopes. */
12857 if (type
12858 && !global_p
12859 && !qualified_p
12860 && TREE_CODE (type) == TYPE_DECL
12861 && TREE_CODE (DECL_NAME (type)) == IDENTIFIER_NODE)
12862 maybe_note_name_used_in_class (DECL_NAME (type), type);
12863 /* If it didn't work out, we don't have a TYPE. */
12864 if ((flags & CP_PARSER_FLAGS_OPTIONAL)
12865 && !cp_parser_parse_definitely (parser))
12866 type = NULL_TREE;
12867 if (type && decl_specs)
12868 cp_parser_set_decl_spec_type (decl_specs, type,
12869 token->location,
12870 /*user_defined=*/true);
12871 }
12872
12873 /* If we didn't get a type-name, issue an error message. */
12874 if (!type && !(flags & CP_PARSER_FLAGS_OPTIONAL))
12875 {
12876 cp_parser_error (parser, "expected type-name");
12877 return error_mark_node;
12878 }
12879
12880 if (type && type != error_mark_node)
12881 {
12882 /* See if TYPE is an Objective-C type, and if so, parse and
12883 accept any protocol references following it. Do this before
12884 the cp_parser_check_for_invalid_template_id() call, because
12885 Objective-C types can be followed by '<...>' which would
12886 enclose protocol names rather than template arguments, and so
12887 everything is fine. */
12888 if (c_dialect_objc () && !parser->scope
12889 && (objc_is_id (type) || objc_is_class_name (type)))
12890 {
12891 tree protos = cp_parser_objc_protocol_refs_opt (parser);
12892 tree qual_type = objc_get_protocol_qualified_type (type, protos);
12893
12894 /* Clobber the "unqualified" type previously entered into
12895 DECL_SPECS with the new, improved protocol-qualified version. */
12896 if (decl_specs)
12897 decl_specs->type = qual_type;
12898
12899 return qual_type;
12900 }
12901
12902 /* There is no valid C++ program where a non-template type is
12903 followed by a "<". That usually indicates that the user
12904 thought that the type was a template. */
12905 cp_parser_check_for_invalid_template_id (parser, TREE_TYPE (type),
12906 token->location);
12907 }
12908
12909 return type;
12910 }
12911
12912 /* Parse a type-name.
12913
12914 type-name:
12915 class-name
12916 enum-name
12917 typedef-name
12918
12919 enum-name:
12920 identifier
12921
12922 typedef-name:
12923 identifier
12924
12925 Returns a TYPE_DECL for the type. */
12926
12927 static tree
12928 cp_parser_type_name (cp_parser* parser)
12929 {
12930 tree type_decl;
12931
12932 /* We can't know yet whether it is a class-name or not. */
12933 cp_parser_parse_tentatively (parser);
12934 /* Try a class-name. */
12935 type_decl = cp_parser_class_name (parser,
12936 /*typename_keyword_p=*/false,
12937 /*template_keyword_p=*/false,
12938 none_type,
12939 /*check_dependency_p=*/true,
12940 /*class_head_p=*/false,
12941 /*is_declaration=*/false);
12942 /* If it's not a class-name, keep looking. */
12943 if (!cp_parser_parse_definitely (parser))
12944 {
12945 /* It must be a typedef-name or an enum-name. */
12946 return cp_parser_nonclass_name (parser);
12947 }
12948
12949 return type_decl;
12950 }
12951
12952 /* Parse a non-class type-name, that is, either an enum-name or a typedef-name.
12953
12954 enum-name:
12955 identifier
12956
12957 typedef-name:
12958 identifier
12959
12960 Returns a TYPE_DECL for the type. */
12961
12962 static tree
12963 cp_parser_nonclass_name (cp_parser* parser)
12964 {
12965 tree type_decl;
12966 tree identifier;
12967
12968 cp_token *token = cp_lexer_peek_token (parser->lexer);
12969 identifier = cp_parser_identifier (parser);
12970 if (identifier == error_mark_node)
12971 return error_mark_node;
12972
12973 /* Look up the type-name. */
12974 type_decl = cp_parser_lookup_name_simple (parser, identifier, token->location);
12975
12976 if (TREE_CODE (type_decl) != TYPE_DECL
12977 && (objc_is_id (identifier) || objc_is_class_name (identifier)))
12978 {
12979 /* See if this is an Objective-C type. */
12980 tree protos = cp_parser_objc_protocol_refs_opt (parser);
12981 tree type = objc_get_protocol_qualified_type (identifier, protos);
12982 if (type)
12983 type_decl = TYPE_NAME (type);
12984 }
12985
12986 /* Issue an error if we did not find a type-name. */
12987 if (TREE_CODE (type_decl) != TYPE_DECL
12988 /* In Objective-C, we have the complication that class names are
12989 normally type names and start declarations (eg, the
12990 "NSObject" in "NSObject *object;"), but can be used in an
12991 Objective-C 2.0 dot-syntax (as in "NSObject.version") which
12992 is an expression. So, a classname followed by a dot is not a
12993 valid type-name. */
12994 || (objc_is_class_name (TREE_TYPE (type_decl))
12995 && cp_lexer_peek_token (parser->lexer)->type == CPP_DOT))
12996 {
12997 if (!cp_parser_simulate_error (parser))
12998 cp_parser_name_lookup_error (parser, identifier, type_decl,
12999 NLE_TYPE, token->location);
13000 return error_mark_node;
13001 }
13002 /* Remember that the name was used in the definition of the
13003 current class so that we can check later to see if the
13004 meaning would have been different after the class was
13005 entirely defined. */
13006 else if (type_decl != error_mark_node
13007 && !parser->scope)
13008 maybe_note_name_used_in_class (identifier, type_decl);
13009
13010 return type_decl;
13011 }
13012
13013 /* Parse an elaborated-type-specifier. Note that the grammar given
13014 here incorporates the resolution to DR68.
13015
13016 elaborated-type-specifier:
13017 class-key :: [opt] nested-name-specifier [opt] identifier
13018 class-key :: [opt] nested-name-specifier [opt] template [opt] template-id
13019 enum-key :: [opt] nested-name-specifier [opt] identifier
13020 typename :: [opt] nested-name-specifier identifier
13021 typename :: [opt] nested-name-specifier template [opt]
13022 template-id
13023
13024 GNU extension:
13025
13026 elaborated-type-specifier:
13027 class-key attributes :: [opt] nested-name-specifier [opt] identifier
13028 class-key attributes :: [opt] nested-name-specifier [opt]
13029 template [opt] template-id
13030 enum attributes :: [opt] nested-name-specifier [opt] identifier
13031
13032 If IS_FRIEND is TRUE, then this elaborated-type-specifier is being
13033 declared `friend'. If IS_DECLARATION is TRUE, then this
13034 elaborated-type-specifier appears in a decl-specifiers-seq, i.e.,
13035 something is being declared.
13036
13037 Returns the TYPE specified. */
13038
13039 static tree
13040 cp_parser_elaborated_type_specifier (cp_parser* parser,
13041 bool is_friend,
13042 bool is_declaration)
13043 {
13044 enum tag_types tag_type;
13045 tree identifier;
13046 tree type = NULL_TREE;
13047 tree attributes = NULL_TREE;
13048 tree globalscope;
13049 cp_token *token = NULL;
13050
13051 /* See if we're looking at the `enum' keyword. */
13052 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_ENUM))
13053 {
13054 /* Consume the `enum' token. */
13055 cp_lexer_consume_token (parser->lexer);
13056 /* Remember that it's an enumeration type. */
13057 tag_type = enum_type;
13058 /* Issue a warning if the `struct' or `class' key (for C++0x scoped
13059 enums) is used here. */
13060 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_CLASS)
13061 || cp_lexer_next_token_is_keyword (parser->lexer, RID_STRUCT))
13062 {
13063 pedwarn (input_location, 0, "elaborated-type-specifier "
13064 "for a scoped enum must not use the %<%D%> keyword",
13065 cp_lexer_peek_token (parser->lexer)->u.value);
13066 /* Consume the `struct' or `class' and parse it anyway. */
13067 cp_lexer_consume_token (parser->lexer);
13068 }
13069 /* Parse the attributes. */
13070 attributes = cp_parser_attributes_opt (parser);
13071 }
13072 /* Or, it might be `typename'. */
13073 else if (cp_lexer_next_token_is_keyword (parser->lexer,
13074 RID_TYPENAME))
13075 {
13076 /* Consume the `typename' token. */
13077 cp_lexer_consume_token (parser->lexer);
13078 /* Remember that it's a `typename' type. */
13079 tag_type = typename_type;
13080 }
13081 /* Otherwise it must be a class-key. */
13082 else
13083 {
13084 tag_type = cp_parser_class_key (parser);
13085 if (tag_type == none_type)
13086 return error_mark_node;
13087 /* Parse the attributes. */
13088 attributes = cp_parser_attributes_opt (parser);
13089 }
13090
13091 /* Look for the `::' operator. */
13092 globalscope = cp_parser_global_scope_opt (parser,
13093 /*current_scope_valid_p=*/false);
13094 /* Look for the nested-name-specifier. */
13095 if (tag_type == typename_type && !globalscope)
13096 {
13097 if (!cp_parser_nested_name_specifier (parser,
13098 /*typename_keyword_p=*/true,
13099 /*check_dependency_p=*/true,
13100 /*type_p=*/true,
13101 is_declaration))
13102 return error_mark_node;
13103 }
13104 else
13105 /* Even though `typename' is not present, the proposed resolution
13106 to Core Issue 180 says that in `class A<T>::B', `B' should be
13107 considered a type-name, even if `A<T>' is dependent. */
13108 cp_parser_nested_name_specifier_opt (parser,
13109 /*typename_keyword_p=*/true,
13110 /*check_dependency_p=*/true,
13111 /*type_p=*/true,
13112 is_declaration);
13113 /* For everything but enumeration types, consider a template-id.
13114 For an enumeration type, consider only a plain identifier. */
13115 if (tag_type != enum_type)
13116 {
13117 bool template_p = false;
13118 tree decl;
13119
13120 /* Allow the `template' keyword. */
13121 template_p = cp_parser_optional_template_keyword (parser);
13122 /* If we didn't see `template', we don't know if there's a
13123 template-id or not. */
13124 if (!template_p)
13125 cp_parser_parse_tentatively (parser);
13126 /* Parse the template-id. */
13127 token = cp_lexer_peek_token (parser->lexer);
13128 decl = cp_parser_template_id (parser, template_p,
13129 /*check_dependency_p=*/true,
13130 is_declaration);
13131 /* If we didn't find a template-id, look for an ordinary
13132 identifier. */
13133 if (!template_p && !cp_parser_parse_definitely (parser))
13134 ;
13135 /* If DECL is a TEMPLATE_ID_EXPR, and the `typename' keyword is
13136 in effect, then we must assume that, upon instantiation, the
13137 template will correspond to a class. */
13138 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
13139 && tag_type == typename_type)
13140 type = make_typename_type (parser->scope, decl,
13141 typename_type,
13142 /*complain=*/tf_error);
13143 /* If the `typename' keyword is in effect and DECL is not a type
13144 decl. Then type is non existant. */
13145 else if (tag_type == typename_type && TREE_CODE (decl) != TYPE_DECL)
13146 type = NULL_TREE;
13147 else
13148 type = TREE_TYPE (decl);
13149 }
13150
13151 if (!type)
13152 {
13153 token = cp_lexer_peek_token (parser->lexer);
13154 identifier = cp_parser_identifier (parser);
13155
13156 if (identifier == error_mark_node)
13157 {
13158 parser->scope = NULL_TREE;
13159 return error_mark_node;
13160 }
13161
13162 /* For a `typename', we needn't call xref_tag. */
13163 if (tag_type == typename_type
13164 && TREE_CODE (parser->scope) != NAMESPACE_DECL)
13165 return cp_parser_make_typename_type (parser, parser->scope,
13166 identifier,
13167 token->location);
13168 /* Look up a qualified name in the usual way. */
13169 if (parser->scope)
13170 {
13171 tree decl;
13172 tree ambiguous_decls;
13173
13174 decl = cp_parser_lookup_name (parser, identifier,
13175 tag_type,
13176 /*is_template=*/false,
13177 /*is_namespace=*/false,
13178 /*check_dependency=*/true,
13179 &ambiguous_decls,
13180 token->location);
13181
13182 /* If the lookup was ambiguous, an error will already have been
13183 issued. */
13184 if (ambiguous_decls)
13185 return error_mark_node;
13186
13187 /* If we are parsing friend declaration, DECL may be a
13188 TEMPLATE_DECL tree node here. However, we need to check
13189 whether this TEMPLATE_DECL results in valid code. Consider
13190 the following example:
13191
13192 namespace N {
13193 template <class T> class C {};
13194 }
13195 class X {
13196 template <class T> friend class N::C; // #1, valid code
13197 };
13198 template <class T> class Y {
13199 friend class N::C; // #2, invalid code
13200 };
13201
13202 For both case #1 and #2, we arrive at a TEMPLATE_DECL after
13203 name lookup of `N::C'. We see that friend declaration must
13204 be template for the code to be valid. Note that
13205 processing_template_decl does not work here since it is
13206 always 1 for the above two cases. */
13207
13208 decl = (cp_parser_maybe_treat_template_as_class
13209 (decl, /*tag_name_p=*/is_friend
13210 && parser->num_template_parameter_lists));
13211
13212 if (TREE_CODE (decl) != TYPE_DECL)
13213 {
13214 cp_parser_diagnose_invalid_type_name (parser,
13215 parser->scope,
13216 identifier,
13217 token->location);
13218 return error_mark_node;
13219 }
13220
13221 if (TREE_CODE (TREE_TYPE (decl)) != TYPENAME_TYPE)
13222 {
13223 bool allow_template = (parser->num_template_parameter_lists
13224 || DECL_SELF_REFERENCE_P (decl));
13225 type = check_elaborated_type_specifier (tag_type, decl,
13226 allow_template);
13227
13228 if (type == error_mark_node)
13229 return error_mark_node;
13230 }
13231
13232 /* Forward declarations of nested types, such as
13233
13234 class C1::C2;
13235 class C1::C2::C3;
13236
13237 are invalid unless all components preceding the final '::'
13238 are complete. If all enclosing types are complete, these
13239 declarations become merely pointless.
13240
13241 Invalid forward declarations of nested types are errors
13242 caught elsewhere in parsing. Those that are pointless arrive
13243 here. */
13244
13245 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
13246 && !is_friend && !processing_explicit_instantiation)
13247 warning (0, "declaration %qD does not declare anything", decl);
13248
13249 type = TREE_TYPE (decl);
13250 }
13251 else
13252 {
13253 /* An elaborated-type-specifier sometimes introduces a new type and
13254 sometimes names an existing type. Normally, the rule is that it
13255 introduces a new type only if there is not an existing type of
13256 the same name already in scope. For example, given:
13257
13258 struct S {};
13259 void f() { struct S s; }
13260
13261 the `struct S' in the body of `f' is the same `struct S' as in
13262 the global scope; the existing definition is used. However, if
13263 there were no global declaration, this would introduce a new
13264 local class named `S'.
13265
13266 An exception to this rule applies to the following code:
13267
13268 namespace N { struct S; }
13269
13270 Here, the elaborated-type-specifier names a new type
13271 unconditionally; even if there is already an `S' in the
13272 containing scope this declaration names a new type.
13273 This exception only applies if the elaborated-type-specifier
13274 forms the complete declaration:
13275
13276 [class.name]
13277
13278 A declaration consisting solely of `class-key identifier ;' is
13279 either a redeclaration of the name in the current scope or a
13280 forward declaration of the identifier as a class name. It
13281 introduces the name into the current scope.
13282
13283 We are in this situation precisely when the next token is a `;'.
13284
13285 An exception to the exception is that a `friend' declaration does
13286 *not* name a new type; i.e., given:
13287
13288 struct S { friend struct T; };
13289
13290 `T' is not a new type in the scope of `S'.
13291
13292 Also, `new struct S' or `sizeof (struct S)' never results in the
13293 definition of a new type; a new type can only be declared in a
13294 declaration context. */
13295
13296 tag_scope ts;
13297 bool template_p;
13298
13299 if (is_friend)
13300 /* Friends have special name lookup rules. */
13301 ts = ts_within_enclosing_non_class;
13302 else if (is_declaration
13303 && cp_lexer_next_token_is (parser->lexer,
13304 CPP_SEMICOLON))
13305 /* This is a `class-key identifier ;' */
13306 ts = ts_current;
13307 else
13308 ts = ts_global;
13309
13310 template_p =
13311 (parser->num_template_parameter_lists
13312 && (cp_parser_next_token_starts_class_definition_p (parser)
13313 || cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)));
13314 /* An unqualified name was used to reference this type, so
13315 there were no qualifying templates. */
13316 if (!cp_parser_check_template_parameters (parser,
13317 /*num_templates=*/0,
13318 token->location,
13319 /*declarator=*/NULL))
13320 return error_mark_node;
13321 type = xref_tag (tag_type, identifier, ts, template_p);
13322 }
13323 }
13324
13325 if (type == error_mark_node)
13326 return error_mark_node;
13327
13328 /* Allow attributes on forward declarations of classes. */
13329 if (attributes)
13330 {
13331 if (TREE_CODE (type) == TYPENAME_TYPE)
13332 warning (OPT_Wattributes,
13333 "attributes ignored on uninstantiated type");
13334 else if (tag_type != enum_type && CLASSTYPE_TEMPLATE_INSTANTIATION (type)
13335 && ! processing_explicit_instantiation)
13336 warning (OPT_Wattributes,
13337 "attributes ignored on template instantiation");
13338 else if (is_declaration && cp_parser_declares_only_class_p (parser))
13339 cplus_decl_attributes (&type, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
13340 else
13341 warning (OPT_Wattributes,
13342 "attributes ignored on elaborated-type-specifier that is not a forward declaration");
13343 }
13344
13345 if (tag_type != enum_type)
13346 cp_parser_check_class_key (tag_type, type);
13347
13348 /* A "<" cannot follow an elaborated type specifier. If that
13349 happens, the user was probably trying to form a template-id. */
13350 cp_parser_check_for_invalid_template_id (parser, type, token->location);
13351
13352 return type;
13353 }
13354
13355 /* Parse an enum-specifier.
13356
13357 enum-specifier:
13358 enum-head { enumerator-list [opt] }
13359
13360 enum-head:
13361 enum-key identifier [opt] enum-base [opt]
13362 enum-key nested-name-specifier identifier enum-base [opt]
13363
13364 enum-key:
13365 enum
13366 enum class [C++0x]
13367 enum struct [C++0x]
13368
13369 enum-base: [C++0x]
13370 : type-specifier-seq
13371
13372 opaque-enum-specifier:
13373 enum-key identifier enum-base [opt] ;
13374
13375 GNU Extensions:
13376 enum-key attributes[opt] identifier [opt] enum-base [opt]
13377 { enumerator-list [opt] }attributes[opt]
13378
13379 Returns an ENUM_TYPE representing the enumeration, or NULL_TREE
13380 if the token stream isn't an enum-specifier after all. */
13381
13382 static tree
13383 cp_parser_enum_specifier (cp_parser* parser)
13384 {
13385 tree identifier;
13386 tree type = NULL_TREE;
13387 tree prev_scope;
13388 tree nested_name_specifier = NULL_TREE;
13389 tree attributes;
13390 bool scoped_enum_p = false;
13391 bool has_underlying_type = false;
13392 bool nested_being_defined = false;
13393 bool new_value_list = false;
13394 bool is_new_type = false;
13395 bool is_anonymous = false;
13396 tree underlying_type = NULL_TREE;
13397 cp_token *type_start_token = NULL;
13398 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
13399
13400 parser->colon_corrects_to_scope_p = false;
13401
13402 /* Parse tentatively so that we can back up if we don't find a
13403 enum-specifier. */
13404 cp_parser_parse_tentatively (parser);
13405
13406 /* Caller guarantees that the current token is 'enum', an identifier
13407 possibly follows, and the token after that is an opening brace.
13408 If we don't have an identifier, fabricate an anonymous name for
13409 the enumeration being defined. */
13410 cp_lexer_consume_token (parser->lexer);
13411
13412 /* Parse the "class" or "struct", which indicates a scoped
13413 enumeration type in C++0x. */
13414 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_CLASS)
13415 || cp_lexer_next_token_is_keyword (parser->lexer, RID_STRUCT))
13416 {
13417 if (cxx_dialect < cxx0x)
13418 maybe_warn_cpp0x (CPP0X_SCOPED_ENUMS);
13419
13420 /* Consume the `struct' or `class' token. */
13421 cp_lexer_consume_token (parser->lexer);
13422
13423 scoped_enum_p = true;
13424 }
13425
13426 attributes = cp_parser_attributes_opt (parser);
13427
13428 /* Clear the qualification. */
13429 parser->scope = NULL_TREE;
13430 parser->qualifying_scope = NULL_TREE;
13431 parser->object_scope = NULL_TREE;
13432
13433 /* Figure out in what scope the declaration is being placed. */
13434 prev_scope = current_scope ();
13435
13436 type_start_token = cp_lexer_peek_token (parser->lexer);
13437
13438 push_deferring_access_checks (dk_no_check);
13439 nested_name_specifier
13440 = cp_parser_nested_name_specifier_opt (parser,
13441 /*typename_keyword_p=*/true,
13442 /*check_dependency_p=*/false,
13443 /*type_p=*/false,
13444 /*is_declaration=*/false);
13445
13446 if (nested_name_specifier)
13447 {
13448 tree name;
13449
13450 identifier = cp_parser_identifier (parser);
13451 name = cp_parser_lookup_name (parser, identifier,
13452 enum_type,
13453 /*is_template=*/false,
13454 /*is_namespace=*/false,
13455 /*check_dependency=*/true,
13456 /*ambiguous_decls=*/NULL,
13457 input_location);
13458 if (name)
13459 {
13460 type = TREE_TYPE (name);
13461 if (TREE_CODE (type) == TYPENAME_TYPE)
13462 {
13463 /* Are template enums allowed in ISO? */
13464 if (template_parm_scope_p ())
13465 pedwarn (type_start_token->location, OPT_pedantic,
13466 "%qD is an enumeration template", name);
13467 /* ignore a typename reference, for it will be solved by name
13468 in start_enum. */
13469 type = NULL_TREE;
13470 }
13471 }
13472 else
13473 error_at (type_start_token->location,
13474 "%qD is not an enumerator-name", identifier);
13475 }
13476 else
13477 {
13478 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
13479 identifier = cp_parser_identifier (parser);
13480 else
13481 {
13482 identifier = make_anon_name ();
13483 is_anonymous = true;
13484 }
13485 }
13486 pop_deferring_access_checks ();
13487
13488 /* Check for the `:' that denotes a specified underlying type in C++0x.
13489 Note that a ':' could also indicate a bitfield width, however. */
13490 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
13491 {
13492 cp_decl_specifier_seq type_specifiers;
13493
13494 /* Consume the `:'. */
13495 cp_lexer_consume_token (parser->lexer);
13496
13497 /* Parse the type-specifier-seq. */
13498 cp_parser_type_specifier_seq (parser, /*is_declaration=*/false,
13499 /*is_trailing_return=*/false,
13500 &type_specifiers);
13501
13502 /* At this point this is surely not elaborated type specifier. */
13503 if (!cp_parser_parse_definitely (parser))
13504 return NULL_TREE;
13505
13506 if (cxx_dialect < cxx0x)
13507 maybe_warn_cpp0x (CPP0X_SCOPED_ENUMS);
13508
13509 has_underlying_type = true;
13510
13511 /* If that didn't work, stop. */
13512 if (type_specifiers.type != error_mark_node)
13513 {
13514 underlying_type = grokdeclarator (NULL, &type_specifiers, TYPENAME,
13515 /*initialized=*/0, NULL);
13516 if (underlying_type == error_mark_node)
13517 underlying_type = NULL_TREE;
13518 }
13519 }
13520
13521 /* Look for the `{' but don't consume it yet. */
13522 if (!cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
13523 {
13524 if (cxx_dialect < cxx0x || (!scoped_enum_p && !underlying_type))
13525 {
13526 cp_parser_error (parser, "expected %<{%>");
13527 if (has_underlying_type)
13528 {
13529 type = NULL_TREE;
13530 goto out;
13531 }
13532 }
13533 /* An opaque-enum-specifier must have a ';' here. */
13534 if ((scoped_enum_p || underlying_type)
13535 && cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
13536 {
13537 cp_parser_error (parser, "expected %<;%> or %<{%>");
13538 if (has_underlying_type)
13539 {
13540 type = NULL_TREE;
13541 goto out;
13542 }
13543 }
13544 }
13545
13546 if (!has_underlying_type && !cp_parser_parse_definitely (parser))
13547 return NULL_TREE;
13548
13549 if (nested_name_specifier)
13550 {
13551 if (CLASS_TYPE_P (nested_name_specifier))
13552 {
13553 nested_being_defined = TYPE_BEING_DEFINED (nested_name_specifier);
13554 TYPE_BEING_DEFINED (nested_name_specifier) = 1;
13555 push_scope (nested_name_specifier);
13556 }
13557 else if (TREE_CODE (nested_name_specifier) == NAMESPACE_DECL)
13558 {
13559 push_nested_namespace (nested_name_specifier);
13560 }
13561 }
13562
13563 /* Issue an error message if type-definitions are forbidden here. */
13564 if (!cp_parser_check_type_definition (parser))
13565 type = error_mark_node;
13566 else
13567 /* Create the new type. We do this before consuming the opening
13568 brace so the enum will be recorded as being on the line of its
13569 tag (or the 'enum' keyword, if there is no tag). */
13570 type = start_enum (identifier, type, underlying_type,
13571 scoped_enum_p, &is_new_type);
13572
13573 /* If the next token is not '{' it is an opaque-enum-specifier or an
13574 elaborated-type-specifier. */
13575 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
13576 {
13577 if (nested_name_specifier)
13578 {
13579 /* The following catches invalid code such as:
13580 enum class S<int>::E { A, B, C }; */
13581 if (!processing_specialization
13582 && CLASS_TYPE_P (nested_name_specifier)
13583 && CLASSTYPE_USE_TEMPLATE (nested_name_specifier))
13584 error_at (type_start_token->location, "cannot add an enumerator "
13585 "list to a template instantiation");
13586
13587 /* If that scope does not contain the scope in which the
13588 class was originally declared, the program is invalid. */
13589 if (prev_scope && !is_ancestor (prev_scope, nested_name_specifier))
13590 {
13591 if (at_namespace_scope_p ())
13592 error_at (type_start_token->location,
13593 "declaration of %qD in namespace %qD which does not "
13594 "enclose %qD",
13595 type, prev_scope, nested_name_specifier);
13596 else
13597 error_at (type_start_token->location,
13598 "declaration of %qD in %qD which does not enclose %qD",
13599 type, prev_scope, nested_name_specifier);
13600 type = error_mark_node;
13601 }
13602 }
13603
13604 if (scoped_enum_p)
13605 begin_scope (sk_scoped_enum, type);
13606
13607 /* Consume the opening brace. */
13608 cp_lexer_consume_token (parser->lexer);
13609
13610 if (type == error_mark_node)
13611 ; /* Nothing to add */
13612 else if (OPAQUE_ENUM_P (type)
13613 || (cxx_dialect > cxx98 && processing_specialization))
13614 {
13615 new_value_list = true;
13616 SET_OPAQUE_ENUM_P (type, false);
13617 DECL_SOURCE_LOCATION (TYPE_NAME (type)) = type_start_token->location;
13618 }
13619 else
13620 {
13621 error_at (type_start_token->location, "multiple definition of %q#T", type);
13622 error_at (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)),
13623 "previous definition here");
13624 type = error_mark_node;
13625 }
13626
13627 if (type == error_mark_node)
13628 cp_parser_skip_to_end_of_block_or_statement (parser);
13629 /* If the next token is not '}', then there are some enumerators. */
13630 else if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_BRACE))
13631 cp_parser_enumerator_list (parser, type);
13632
13633 /* Consume the final '}'. */
13634 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
13635
13636 if (scoped_enum_p)
13637 finish_scope ();
13638 }
13639 else
13640 {
13641 /* If a ';' follows, then it is an opaque-enum-specifier
13642 and additional restrictions apply. */
13643 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
13644 {
13645 if (is_anonymous)
13646 error_at (type_start_token->location,
13647 "opaque-enum-specifier without name");
13648 else if (nested_name_specifier)
13649 error_at (type_start_token->location,
13650 "opaque-enum-specifier must use a simple identifier");
13651 }
13652 }
13653
13654 /* Look for trailing attributes to apply to this enumeration, and
13655 apply them if appropriate. */
13656 if (cp_parser_allow_gnu_extensions_p (parser))
13657 {
13658 tree trailing_attr = cp_parser_attributes_opt (parser);
13659 trailing_attr = chainon (trailing_attr, attributes);
13660 cplus_decl_attributes (&type,
13661 trailing_attr,
13662 (int) ATTR_FLAG_TYPE_IN_PLACE);
13663 }
13664
13665 /* Finish up the enumeration. */
13666 if (type != error_mark_node)
13667 {
13668 if (new_value_list)
13669 finish_enum_value_list (type);
13670 if (is_new_type)
13671 finish_enum (type);
13672 }
13673
13674 if (nested_name_specifier)
13675 {
13676 if (CLASS_TYPE_P (nested_name_specifier))
13677 {
13678 TYPE_BEING_DEFINED (nested_name_specifier) = nested_being_defined;
13679 pop_scope (nested_name_specifier);
13680 }
13681 else if (TREE_CODE (nested_name_specifier) == NAMESPACE_DECL)
13682 {
13683 pop_nested_namespace (nested_name_specifier);
13684 }
13685 }
13686 out:
13687 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
13688 return type;
13689 }
13690
13691 /* Parse an enumerator-list. The enumerators all have the indicated
13692 TYPE.
13693
13694 enumerator-list:
13695 enumerator-definition
13696 enumerator-list , enumerator-definition */
13697
13698 static void
13699 cp_parser_enumerator_list (cp_parser* parser, tree type)
13700 {
13701 while (true)
13702 {
13703 /* Parse an enumerator-definition. */
13704 cp_parser_enumerator_definition (parser, type);
13705
13706 /* If the next token is not a ',', we've reached the end of
13707 the list. */
13708 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
13709 break;
13710 /* Otherwise, consume the `,' and keep going. */
13711 cp_lexer_consume_token (parser->lexer);
13712 /* If the next token is a `}', there is a trailing comma. */
13713 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
13714 {
13715 if (!in_system_header)
13716 pedwarn (input_location, OPT_pedantic, "comma at end of enumerator list");
13717 break;
13718 }
13719 }
13720 }
13721
13722 /* Parse an enumerator-definition. The enumerator has the indicated
13723 TYPE.
13724
13725 enumerator-definition:
13726 enumerator
13727 enumerator = constant-expression
13728
13729 enumerator:
13730 identifier */
13731
13732 static void
13733 cp_parser_enumerator_definition (cp_parser* parser, tree type)
13734 {
13735 tree identifier;
13736 tree value;
13737 location_t loc;
13738
13739 /* Save the input location because we are interested in the location
13740 of the identifier and not the location of the explicit value. */
13741 loc = cp_lexer_peek_token (parser->lexer)->location;
13742
13743 /* Look for the identifier. */
13744 identifier = cp_parser_identifier (parser);
13745 if (identifier == error_mark_node)
13746 return;
13747
13748 /* If the next token is an '=', then there is an explicit value. */
13749 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
13750 {
13751 /* Consume the `=' token. */
13752 cp_lexer_consume_token (parser->lexer);
13753 /* Parse the value. */
13754 value = cp_parser_constant_expression (parser,
13755 /*allow_non_constant_p=*/false,
13756 NULL);
13757 }
13758 else
13759 value = NULL_TREE;
13760
13761 /* If we are processing a template, make sure the initializer of the
13762 enumerator doesn't contain any bare template parameter pack. */
13763 if (check_for_bare_parameter_packs (value))
13764 value = error_mark_node;
13765
13766 /* integral_constant_value will pull out this expression, so make sure
13767 it's folded as appropriate. */
13768 value = fold_non_dependent_expr (value);
13769
13770 /* Create the enumerator. */
13771 build_enumerator (identifier, value, type, loc);
13772 }
13773
13774 /* Parse a namespace-name.
13775
13776 namespace-name:
13777 original-namespace-name
13778 namespace-alias
13779
13780 Returns the NAMESPACE_DECL for the namespace. */
13781
13782 static tree
13783 cp_parser_namespace_name (cp_parser* parser)
13784 {
13785 tree identifier;
13786 tree namespace_decl;
13787
13788 cp_token *token = cp_lexer_peek_token (parser->lexer);
13789
13790 /* Get the name of the namespace. */
13791 identifier = cp_parser_identifier (parser);
13792 if (identifier == error_mark_node)
13793 return error_mark_node;
13794
13795 /* Look up the identifier in the currently active scope. Look only
13796 for namespaces, due to:
13797
13798 [basic.lookup.udir]
13799
13800 When looking up a namespace-name in a using-directive or alias
13801 definition, only namespace names are considered.
13802
13803 And:
13804
13805 [basic.lookup.qual]
13806
13807 During the lookup of a name preceding the :: scope resolution
13808 operator, object, function, and enumerator names are ignored.
13809
13810 (Note that cp_parser_qualifying_entity only calls this
13811 function if the token after the name is the scope resolution
13812 operator.) */
13813 namespace_decl = cp_parser_lookup_name (parser, identifier,
13814 none_type,
13815 /*is_template=*/false,
13816 /*is_namespace=*/true,
13817 /*check_dependency=*/true,
13818 /*ambiguous_decls=*/NULL,
13819 token->location);
13820 /* If it's not a namespace, issue an error. */
13821 if (namespace_decl == error_mark_node
13822 || TREE_CODE (namespace_decl) != NAMESPACE_DECL)
13823 {
13824 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
13825 error_at (token->location, "%qD is not a namespace-name", identifier);
13826 cp_parser_error (parser, "expected namespace-name");
13827 namespace_decl = error_mark_node;
13828 }
13829
13830 return namespace_decl;
13831 }
13832
13833 /* Parse a namespace-definition.
13834
13835 namespace-definition:
13836 named-namespace-definition
13837 unnamed-namespace-definition
13838
13839 named-namespace-definition:
13840 original-namespace-definition
13841 extension-namespace-definition
13842
13843 original-namespace-definition:
13844 namespace identifier { namespace-body }
13845
13846 extension-namespace-definition:
13847 namespace original-namespace-name { namespace-body }
13848
13849 unnamed-namespace-definition:
13850 namespace { namespace-body } */
13851
13852 static void
13853 cp_parser_namespace_definition (cp_parser* parser)
13854 {
13855 tree identifier, attribs;
13856 bool has_visibility;
13857 bool is_inline;
13858
13859 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_INLINE))
13860 {
13861 maybe_warn_cpp0x (CPP0X_INLINE_NAMESPACES);
13862 is_inline = true;
13863 cp_lexer_consume_token (parser->lexer);
13864 }
13865 else
13866 is_inline = false;
13867
13868 /* Look for the `namespace' keyword. */
13869 cp_parser_require_keyword (parser, RID_NAMESPACE, RT_NAMESPACE);
13870
13871 /* Get the name of the namespace. We do not attempt to distinguish
13872 between an original-namespace-definition and an
13873 extension-namespace-definition at this point. The semantic
13874 analysis routines are responsible for that. */
13875 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
13876 identifier = cp_parser_identifier (parser);
13877 else
13878 identifier = NULL_TREE;
13879
13880 /* Parse any specified attributes. */
13881 attribs = cp_parser_attributes_opt (parser);
13882
13883 /* Look for the `{' to start the namespace. */
13884 cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE);
13885 /* Start the namespace. */
13886 push_namespace (identifier);
13887
13888 /* "inline namespace" is equivalent to a stub namespace definition
13889 followed by a strong using directive. */
13890 if (is_inline)
13891 {
13892 tree name_space = current_namespace;
13893 /* Set up namespace association. */
13894 DECL_NAMESPACE_ASSOCIATIONS (name_space)
13895 = tree_cons (CP_DECL_CONTEXT (name_space), NULL_TREE,
13896 DECL_NAMESPACE_ASSOCIATIONS (name_space));
13897 /* Import the contents of the inline namespace. */
13898 pop_namespace ();
13899 do_using_directive (name_space);
13900 push_namespace (identifier);
13901 }
13902
13903 has_visibility = handle_namespace_attrs (current_namespace, attribs);
13904
13905 /* Parse the body of the namespace. */
13906 cp_parser_namespace_body (parser);
13907
13908 if (has_visibility)
13909 pop_visibility (1);
13910
13911 /* Finish the namespace. */
13912 pop_namespace ();
13913 /* Look for the final `}'. */
13914 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
13915 }
13916
13917 /* Parse a namespace-body.
13918
13919 namespace-body:
13920 declaration-seq [opt] */
13921
13922 static void
13923 cp_parser_namespace_body (cp_parser* parser)
13924 {
13925 cp_parser_declaration_seq_opt (parser);
13926 }
13927
13928 /* Parse a namespace-alias-definition.
13929
13930 namespace-alias-definition:
13931 namespace identifier = qualified-namespace-specifier ; */
13932
13933 static void
13934 cp_parser_namespace_alias_definition (cp_parser* parser)
13935 {
13936 tree identifier;
13937 tree namespace_specifier;
13938
13939 cp_token *token = cp_lexer_peek_token (parser->lexer);
13940
13941 /* Look for the `namespace' keyword. */
13942 cp_parser_require_keyword (parser, RID_NAMESPACE, RT_NAMESPACE);
13943 /* Look for the identifier. */
13944 identifier = cp_parser_identifier (parser);
13945 if (identifier == error_mark_node)
13946 return;
13947 /* Look for the `=' token. */
13948 if (!cp_parser_uncommitted_to_tentative_parse_p (parser)
13949 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
13950 {
13951 error_at (token->location, "%<namespace%> definition is not allowed here");
13952 /* Skip the definition. */
13953 cp_lexer_consume_token (parser->lexer);
13954 if (cp_parser_skip_to_closing_brace (parser))
13955 cp_lexer_consume_token (parser->lexer);
13956 return;
13957 }
13958 cp_parser_require (parser, CPP_EQ, RT_EQ);
13959 /* Look for the qualified-namespace-specifier. */
13960 namespace_specifier
13961 = cp_parser_qualified_namespace_specifier (parser);
13962 /* Look for the `;' token. */
13963 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
13964
13965 /* Register the alias in the symbol table. */
13966 do_namespace_alias (identifier, namespace_specifier);
13967 }
13968
13969 /* Parse a qualified-namespace-specifier.
13970
13971 qualified-namespace-specifier:
13972 :: [opt] nested-name-specifier [opt] namespace-name
13973
13974 Returns a NAMESPACE_DECL corresponding to the specified
13975 namespace. */
13976
13977 static tree
13978 cp_parser_qualified_namespace_specifier (cp_parser* parser)
13979 {
13980 /* Look for the optional `::'. */
13981 cp_parser_global_scope_opt (parser,
13982 /*current_scope_valid_p=*/false);
13983
13984 /* Look for the optional nested-name-specifier. */
13985 cp_parser_nested_name_specifier_opt (parser,
13986 /*typename_keyword_p=*/false,
13987 /*check_dependency_p=*/true,
13988 /*type_p=*/false,
13989 /*is_declaration=*/true);
13990
13991 return cp_parser_namespace_name (parser);
13992 }
13993
13994 /* Parse a using-declaration, or, if ACCESS_DECLARATION_P is true, an
13995 access declaration.
13996
13997 using-declaration:
13998 using typename [opt] :: [opt] nested-name-specifier unqualified-id ;
13999 using :: unqualified-id ;
14000
14001 access-declaration:
14002 qualified-id ;
14003
14004 */
14005
14006 static bool
14007 cp_parser_using_declaration (cp_parser* parser,
14008 bool access_declaration_p)
14009 {
14010 cp_token *token;
14011 bool typename_p = false;
14012 bool global_scope_p;
14013 tree decl;
14014 tree identifier;
14015 tree qscope;
14016
14017 if (access_declaration_p)
14018 cp_parser_parse_tentatively (parser);
14019 else
14020 {
14021 /* Look for the `using' keyword. */
14022 cp_parser_require_keyword (parser, RID_USING, RT_USING);
14023
14024 /* Peek at the next token. */
14025 token = cp_lexer_peek_token (parser->lexer);
14026 /* See if it's `typename'. */
14027 if (token->keyword == RID_TYPENAME)
14028 {
14029 /* Remember that we've seen it. */
14030 typename_p = true;
14031 /* Consume the `typename' token. */
14032 cp_lexer_consume_token (parser->lexer);
14033 }
14034 }
14035
14036 /* Look for the optional global scope qualification. */
14037 global_scope_p
14038 = (cp_parser_global_scope_opt (parser,
14039 /*current_scope_valid_p=*/false)
14040 != NULL_TREE);
14041
14042 /* If we saw `typename', or didn't see `::', then there must be a
14043 nested-name-specifier present. */
14044 if (typename_p || !global_scope_p)
14045 qscope = cp_parser_nested_name_specifier (parser, typename_p,
14046 /*check_dependency_p=*/true,
14047 /*type_p=*/false,
14048 /*is_declaration=*/true);
14049 /* Otherwise, we could be in either of the two productions. In that
14050 case, treat the nested-name-specifier as optional. */
14051 else
14052 qscope = cp_parser_nested_name_specifier_opt (parser,
14053 /*typename_keyword_p=*/false,
14054 /*check_dependency_p=*/true,
14055 /*type_p=*/false,
14056 /*is_declaration=*/true);
14057 if (!qscope)
14058 qscope = global_namespace;
14059
14060 if (access_declaration_p && cp_parser_error_occurred (parser))
14061 /* Something has already gone wrong; there's no need to parse
14062 further. Since an error has occurred, the return value of
14063 cp_parser_parse_definitely will be false, as required. */
14064 return cp_parser_parse_definitely (parser);
14065
14066 token = cp_lexer_peek_token (parser->lexer);
14067 /* Parse the unqualified-id. */
14068 identifier = cp_parser_unqualified_id (parser,
14069 /*template_keyword_p=*/false,
14070 /*check_dependency_p=*/true,
14071 /*declarator_p=*/true,
14072 /*optional_p=*/false);
14073
14074 if (access_declaration_p)
14075 {
14076 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
14077 cp_parser_simulate_error (parser);
14078 if (!cp_parser_parse_definitely (parser))
14079 return false;
14080 }
14081
14082 /* The function we call to handle a using-declaration is different
14083 depending on what scope we are in. */
14084 if (qscope == error_mark_node || identifier == error_mark_node)
14085 ;
14086 else if (TREE_CODE (identifier) != IDENTIFIER_NODE
14087 && TREE_CODE (identifier) != BIT_NOT_EXPR)
14088 /* [namespace.udecl]
14089
14090 A using declaration shall not name a template-id. */
14091 error_at (token->location,
14092 "a template-id may not appear in a using-declaration");
14093 else
14094 {
14095 if (at_class_scope_p ())
14096 {
14097 /* Create the USING_DECL. */
14098 decl = do_class_using_decl (parser->scope, identifier);
14099
14100 if (check_for_bare_parameter_packs (decl))
14101 return false;
14102 else
14103 /* Add it to the list of members in this class. */
14104 finish_member_declaration (decl);
14105 }
14106 else
14107 {
14108 decl = cp_parser_lookup_name_simple (parser,
14109 identifier,
14110 token->location);
14111 if (decl == error_mark_node)
14112 cp_parser_name_lookup_error (parser, identifier,
14113 decl, NLE_NULL,
14114 token->location);
14115 else if (check_for_bare_parameter_packs (decl))
14116 return false;
14117 else if (!at_namespace_scope_p ())
14118 do_local_using_decl (decl, qscope, identifier);
14119 else
14120 do_toplevel_using_decl (decl, qscope, identifier);
14121 }
14122 }
14123
14124 /* Look for the final `;'. */
14125 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
14126
14127 return true;
14128 }
14129
14130 /* Parse a using-directive.
14131
14132 using-directive:
14133 using namespace :: [opt] nested-name-specifier [opt]
14134 namespace-name ; */
14135
14136 static void
14137 cp_parser_using_directive (cp_parser* parser)
14138 {
14139 tree namespace_decl;
14140 tree attribs;
14141
14142 /* Look for the `using' keyword. */
14143 cp_parser_require_keyword (parser, RID_USING, RT_USING);
14144 /* And the `namespace' keyword. */
14145 cp_parser_require_keyword (parser, RID_NAMESPACE, RT_NAMESPACE);
14146 /* Look for the optional `::' operator. */
14147 cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/false);
14148 /* And the optional nested-name-specifier. */
14149 cp_parser_nested_name_specifier_opt (parser,
14150 /*typename_keyword_p=*/false,
14151 /*check_dependency_p=*/true,
14152 /*type_p=*/false,
14153 /*is_declaration=*/true);
14154 /* Get the namespace being used. */
14155 namespace_decl = cp_parser_namespace_name (parser);
14156 /* And any specified attributes. */
14157 attribs = cp_parser_attributes_opt (parser);
14158 /* Update the symbol table. */
14159 parse_using_directive (namespace_decl, attribs);
14160 /* Look for the final `;'. */
14161 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
14162 }
14163
14164 /* Parse an asm-definition.
14165
14166 asm-definition:
14167 asm ( string-literal ) ;
14168
14169 GNU Extension:
14170
14171 asm-definition:
14172 asm volatile [opt] ( string-literal ) ;
14173 asm volatile [opt] ( string-literal : asm-operand-list [opt] ) ;
14174 asm volatile [opt] ( string-literal : asm-operand-list [opt]
14175 : asm-operand-list [opt] ) ;
14176 asm volatile [opt] ( string-literal : asm-operand-list [opt]
14177 : asm-operand-list [opt]
14178 : asm-clobber-list [opt] ) ;
14179 asm volatile [opt] goto ( string-literal : : asm-operand-list [opt]
14180 : asm-clobber-list [opt]
14181 : asm-goto-list ) ; */
14182
14183 static void
14184 cp_parser_asm_definition (cp_parser* parser)
14185 {
14186 tree string;
14187 tree outputs = NULL_TREE;
14188 tree inputs = NULL_TREE;
14189 tree clobbers = NULL_TREE;
14190 tree labels = NULL_TREE;
14191 tree asm_stmt;
14192 bool volatile_p = false;
14193 bool extended_p = false;
14194 bool invalid_inputs_p = false;
14195 bool invalid_outputs_p = false;
14196 bool goto_p = false;
14197 required_token missing = RT_NONE;
14198
14199 /* Look for the `asm' keyword. */
14200 cp_parser_require_keyword (parser, RID_ASM, RT_ASM);
14201 /* See if the next token is `volatile'. */
14202 if (cp_parser_allow_gnu_extensions_p (parser)
14203 && cp_lexer_next_token_is_keyword (parser->lexer, RID_VOLATILE))
14204 {
14205 /* Remember that we saw the `volatile' keyword. */
14206 volatile_p = true;
14207 /* Consume the token. */
14208 cp_lexer_consume_token (parser->lexer);
14209 }
14210 if (cp_parser_allow_gnu_extensions_p (parser)
14211 && parser->in_function_body
14212 && cp_lexer_next_token_is_keyword (parser->lexer, RID_GOTO))
14213 {
14214 /* Remember that we saw the `goto' keyword. */
14215 goto_p = true;
14216 /* Consume the token. */
14217 cp_lexer_consume_token (parser->lexer);
14218 }
14219 /* Look for the opening `('. */
14220 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
14221 return;
14222 /* Look for the string. */
14223 string = cp_parser_string_literal (parser, false, false);
14224 if (string == error_mark_node)
14225 {
14226 cp_parser_skip_to_closing_parenthesis (parser, true, false,
14227 /*consume_paren=*/true);
14228 return;
14229 }
14230
14231 /* If we're allowing GNU extensions, check for the extended assembly
14232 syntax. Unfortunately, the `:' tokens need not be separated by
14233 a space in C, and so, for compatibility, we tolerate that here
14234 too. Doing that means that we have to treat the `::' operator as
14235 two `:' tokens. */
14236 if (cp_parser_allow_gnu_extensions_p (parser)
14237 && parser->in_function_body
14238 && (cp_lexer_next_token_is (parser->lexer, CPP_COLON)
14239 || cp_lexer_next_token_is (parser->lexer, CPP_SCOPE)))
14240 {
14241 bool inputs_p = false;
14242 bool clobbers_p = false;
14243 bool labels_p = false;
14244
14245 /* The extended syntax was used. */
14246 extended_p = true;
14247
14248 /* Look for outputs. */
14249 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
14250 {
14251 /* Consume the `:'. */
14252 cp_lexer_consume_token (parser->lexer);
14253 /* Parse the output-operands. */
14254 if (cp_lexer_next_token_is_not (parser->lexer,
14255 CPP_COLON)
14256 && cp_lexer_next_token_is_not (parser->lexer,
14257 CPP_SCOPE)
14258 && cp_lexer_next_token_is_not (parser->lexer,
14259 CPP_CLOSE_PAREN)
14260 && !goto_p)
14261 outputs = cp_parser_asm_operand_list (parser);
14262
14263 if (outputs == error_mark_node)
14264 invalid_outputs_p = true;
14265 }
14266 /* If the next token is `::', there are no outputs, and the
14267 next token is the beginning of the inputs. */
14268 else if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
14269 /* The inputs are coming next. */
14270 inputs_p = true;
14271
14272 /* Look for inputs. */
14273 if (inputs_p
14274 || cp_lexer_next_token_is (parser->lexer, CPP_COLON))
14275 {
14276 /* Consume the `:' or `::'. */
14277 cp_lexer_consume_token (parser->lexer);
14278 /* Parse the output-operands. */
14279 if (cp_lexer_next_token_is_not (parser->lexer,
14280 CPP_COLON)
14281 && cp_lexer_next_token_is_not (parser->lexer,
14282 CPP_SCOPE)
14283 && cp_lexer_next_token_is_not (parser->lexer,
14284 CPP_CLOSE_PAREN))
14285 inputs = cp_parser_asm_operand_list (parser);
14286
14287 if (inputs == error_mark_node)
14288 invalid_inputs_p = true;
14289 }
14290 else if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
14291 /* The clobbers are coming next. */
14292 clobbers_p = true;
14293
14294 /* Look for clobbers. */
14295 if (clobbers_p
14296 || cp_lexer_next_token_is (parser->lexer, CPP_COLON))
14297 {
14298 clobbers_p = true;
14299 /* Consume the `:' or `::'. */
14300 cp_lexer_consume_token (parser->lexer);
14301 /* Parse the clobbers. */
14302 if (cp_lexer_next_token_is_not (parser->lexer,
14303 CPP_COLON)
14304 && cp_lexer_next_token_is_not (parser->lexer,
14305 CPP_CLOSE_PAREN))
14306 clobbers = cp_parser_asm_clobber_list (parser);
14307 }
14308 else if (goto_p
14309 && cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
14310 /* The labels are coming next. */
14311 labels_p = true;
14312
14313 /* Look for labels. */
14314 if (labels_p
14315 || (goto_p && cp_lexer_next_token_is (parser->lexer, CPP_COLON)))
14316 {
14317 labels_p = true;
14318 /* Consume the `:' or `::'. */
14319 cp_lexer_consume_token (parser->lexer);
14320 /* Parse the labels. */
14321 labels = cp_parser_asm_label_list (parser);
14322 }
14323
14324 if (goto_p && !labels_p)
14325 missing = clobbers_p ? RT_COLON : RT_COLON_SCOPE;
14326 }
14327 else if (goto_p)
14328 missing = RT_COLON_SCOPE;
14329
14330 /* Look for the closing `)'. */
14331 if (!cp_parser_require (parser, missing ? CPP_COLON : CPP_CLOSE_PAREN,
14332 missing ? missing : RT_CLOSE_PAREN))
14333 cp_parser_skip_to_closing_parenthesis (parser, true, false,
14334 /*consume_paren=*/true);
14335 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
14336
14337 if (!invalid_inputs_p && !invalid_outputs_p)
14338 {
14339 /* Create the ASM_EXPR. */
14340 if (parser->in_function_body)
14341 {
14342 asm_stmt = finish_asm_stmt (volatile_p, string, outputs,
14343 inputs, clobbers, labels);
14344 /* If the extended syntax was not used, mark the ASM_EXPR. */
14345 if (!extended_p)
14346 {
14347 tree temp = asm_stmt;
14348 if (TREE_CODE (temp) == CLEANUP_POINT_EXPR)
14349 temp = TREE_OPERAND (temp, 0);
14350
14351 ASM_INPUT_P (temp) = 1;
14352 }
14353 }
14354 else
14355 cgraph_add_asm_node (string);
14356 }
14357 }
14358
14359 /* Declarators [gram.dcl.decl] */
14360
14361 /* Parse an init-declarator.
14362
14363 init-declarator:
14364 declarator initializer [opt]
14365
14366 GNU Extension:
14367
14368 init-declarator:
14369 declarator asm-specification [opt] attributes [opt] initializer [opt]
14370
14371 function-definition:
14372 decl-specifier-seq [opt] declarator ctor-initializer [opt]
14373 function-body
14374 decl-specifier-seq [opt] declarator function-try-block
14375
14376 GNU Extension:
14377
14378 function-definition:
14379 __extension__ function-definition
14380
14381 The DECL_SPECIFIERS apply to this declarator. Returns a
14382 representation of the entity declared. If MEMBER_P is TRUE, then
14383 this declarator appears in a class scope. The new DECL created by
14384 this declarator is returned.
14385
14386 The CHECKS are access checks that should be performed once we know
14387 what entity is being declared (and, therefore, what classes have
14388 befriended it).
14389
14390 If FUNCTION_DEFINITION_ALLOWED_P then we handle the declarator and
14391 for a function-definition here as well. If the declarator is a
14392 declarator for a function-definition, *FUNCTION_DEFINITION_P will
14393 be TRUE upon return. By that point, the function-definition will
14394 have been completely parsed.
14395
14396 FUNCTION_DEFINITION_P may be NULL if FUNCTION_DEFINITION_ALLOWED_P
14397 is FALSE.
14398
14399 If MAYBE_RANGE_FOR_DECL is not NULL, the pointed tree will be set to the
14400 parsed declaration if it is an uninitialized single declarator not followed
14401 by a `;', or to error_mark_node otherwise. Either way, the trailing `;',
14402 if present, will not be consumed. If returned, this declarator will be
14403 created with SD_INITIALIZED but will not call cp_finish_decl. */
14404
14405 static tree
14406 cp_parser_init_declarator (cp_parser* parser,
14407 cp_decl_specifier_seq *decl_specifiers,
14408 VEC (deferred_access_check,gc)* checks,
14409 bool function_definition_allowed_p,
14410 bool member_p,
14411 int declares_class_or_enum,
14412 bool* function_definition_p,
14413 tree* maybe_range_for_decl)
14414 {
14415 cp_token *token = NULL, *asm_spec_start_token = NULL,
14416 *attributes_start_token = NULL;
14417 cp_declarator *declarator;
14418 tree prefix_attributes;
14419 tree attributes;
14420 tree asm_specification;
14421 tree initializer;
14422 tree decl = NULL_TREE;
14423 tree scope;
14424 int is_initialized;
14425 /* Only valid if IS_INITIALIZED is true. In that case, CPP_EQ if
14426 initialized with "= ..", CPP_OPEN_PAREN if initialized with
14427 "(...)". */
14428 enum cpp_ttype initialization_kind;
14429 bool is_direct_init = false;
14430 bool is_non_constant_init;
14431 int ctor_dtor_or_conv_p;
14432 bool friend_p;
14433 tree pushed_scope = NULL;
14434 bool range_for_decl_p = false;
14435
14436 /* Gather the attributes that were provided with the
14437 decl-specifiers. */
14438 prefix_attributes = decl_specifiers->attributes;
14439
14440 /* Assume that this is not the declarator for a function
14441 definition. */
14442 if (function_definition_p)
14443 *function_definition_p = false;
14444
14445 /* Defer access checks while parsing the declarator; we cannot know
14446 what names are accessible until we know what is being
14447 declared. */
14448 resume_deferring_access_checks ();
14449
14450 /* Parse the declarator. */
14451 token = cp_lexer_peek_token (parser->lexer);
14452 declarator
14453 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
14454 &ctor_dtor_or_conv_p,
14455 /*parenthesized_p=*/NULL,
14456 /*member_p=*/false);
14457 /* Gather up the deferred checks. */
14458 stop_deferring_access_checks ();
14459
14460 /* If the DECLARATOR was erroneous, there's no need to go
14461 further. */
14462 if (declarator == cp_error_declarator)
14463 return error_mark_node;
14464
14465 /* Check that the number of template-parameter-lists is OK. */
14466 if (!cp_parser_check_declarator_template_parameters (parser, declarator,
14467 token->location))
14468 return error_mark_node;
14469
14470 if (declares_class_or_enum & 2)
14471 cp_parser_check_for_definition_in_return_type (declarator,
14472 decl_specifiers->type,
14473 decl_specifiers->type_location);
14474
14475 /* Figure out what scope the entity declared by the DECLARATOR is
14476 located in. `grokdeclarator' sometimes changes the scope, so
14477 we compute it now. */
14478 scope = get_scope_of_declarator (declarator);
14479
14480 /* Perform any lookups in the declared type which were thought to be
14481 dependent, but are not in the scope of the declarator. */
14482 decl_specifiers->type
14483 = maybe_update_decl_type (decl_specifiers->type, scope);
14484
14485 /* If we're allowing GNU extensions, look for an asm-specification
14486 and attributes. */
14487 if (cp_parser_allow_gnu_extensions_p (parser))
14488 {
14489 /* Look for an asm-specification. */
14490 asm_spec_start_token = cp_lexer_peek_token (parser->lexer);
14491 asm_specification = cp_parser_asm_specification_opt (parser);
14492 /* And attributes. */
14493 attributes_start_token = cp_lexer_peek_token (parser->lexer);
14494 attributes = cp_parser_attributes_opt (parser);
14495 }
14496 else
14497 {
14498 asm_specification = NULL_TREE;
14499 attributes = NULL_TREE;
14500 }
14501
14502 /* Peek at the next token. */
14503 token = cp_lexer_peek_token (parser->lexer);
14504 /* Check to see if the token indicates the start of a
14505 function-definition. */
14506 if (function_declarator_p (declarator)
14507 && cp_parser_token_starts_function_definition_p (token))
14508 {
14509 if (!function_definition_allowed_p)
14510 {
14511 /* If a function-definition should not appear here, issue an
14512 error message. */
14513 cp_parser_error (parser,
14514 "a function-definition is not allowed here");
14515 return error_mark_node;
14516 }
14517 else
14518 {
14519 location_t func_brace_location
14520 = cp_lexer_peek_token (parser->lexer)->location;
14521
14522 /* Neither attributes nor an asm-specification are allowed
14523 on a function-definition. */
14524 if (asm_specification)
14525 error_at (asm_spec_start_token->location,
14526 "an asm-specification is not allowed "
14527 "on a function-definition");
14528 if (attributes)
14529 error_at (attributes_start_token->location,
14530 "attributes are not allowed on a function-definition");
14531 /* This is a function-definition. */
14532 *function_definition_p = true;
14533
14534 /* Parse the function definition. */
14535 if (member_p)
14536 decl = cp_parser_save_member_function_body (parser,
14537 decl_specifiers,
14538 declarator,
14539 prefix_attributes);
14540 else
14541 decl
14542 = (cp_parser_function_definition_from_specifiers_and_declarator
14543 (parser, decl_specifiers, prefix_attributes, declarator));
14544
14545 if (decl != error_mark_node && DECL_STRUCT_FUNCTION (decl))
14546 {
14547 /* This is where the prologue starts... */
14548 DECL_STRUCT_FUNCTION (decl)->function_start_locus
14549 = func_brace_location;
14550 }
14551
14552 return decl;
14553 }
14554 }
14555
14556 /* [dcl.dcl]
14557
14558 Only in function declarations for constructors, destructors, and
14559 type conversions can the decl-specifier-seq be omitted.
14560
14561 We explicitly postpone this check past the point where we handle
14562 function-definitions because we tolerate function-definitions
14563 that are missing their return types in some modes. */
14564 if (!decl_specifiers->any_specifiers_p && ctor_dtor_or_conv_p <= 0)
14565 {
14566 cp_parser_error (parser,
14567 "expected constructor, destructor, or type conversion");
14568 return error_mark_node;
14569 }
14570
14571 /* An `=' or an `(', or an '{' in C++0x, indicates an initializer. */
14572 if (token->type == CPP_EQ
14573 || token->type == CPP_OPEN_PAREN
14574 || token->type == CPP_OPEN_BRACE)
14575 {
14576 is_initialized = SD_INITIALIZED;
14577 initialization_kind = token->type;
14578 if (maybe_range_for_decl)
14579 *maybe_range_for_decl = error_mark_node;
14580
14581 if (token->type == CPP_EQ
14582 && function_declarator_p (declarator))
14583 {
14584 cp_token *t2 = cp_lexer_peek_nth_token (parser->lexer, 2);
14585 if (t2->keyword == RID_DEFAULT)
14586 is_initialized = SD_DEFAULTED;
14587 else if (t2->keyword == RID_DELETE)
14588 is_initialized = SD_DELETED;
14589 }
14590 }
14591 else
14592 {
14593 /* If the init-declarator isn't initialized and isn't followed by a
14594 `,' or `;', it's not a valid init-declarator. */
14595 if (token->type != CPP_COMMA
14596 && token->type != CPP_SEMICOLON)
14597 {
14598 if (maybe_range_for_decl && *maybe_range_for_decl != error_mark_node)
14599 range_for_decl_p = true;
14600 else
14601 {
14602 cp_parser_error (parser, "expected initializer");
14603 return error_mark_node;
14604 }
14605 }
14606 is_initialized = SD_UNINITIALIZED;
14607 initialization_kind = CPP_EOF;
14608 }
14609
14610 /* Because start_decl has side-effects, we should only call it if we
14611 know we're going ahead. By this point, we know that we cannot
14612 possibly be looking at any other construct. */
14613 cp_parser_commit_to_tentative_parse (parser);
14614
14615 /* If the decl specifiers were bad, issue an error now that we're
14616 sure this was intended to be a declarator. Then continue
14617 declaring the variable(s), as int, to try to cut down on further
14618 errors. */
14619 if (decl_specifiers->any_specifiers_p
14620 && decl_specifiers->type == error_mark_node)
14621 {
14622 cp_parser_error (parser, "invalid type in declaration");
14623 decl_specifiers->type = integer_type_node;
14624 }
14625
14626 /* Check to see whether or not this declaration is a friend. */
14627 friend_p = cp_parser_friend_p (decl_specifiers);
14628
14629 /* Enter the newly declared entry in the symbol table. If we're
14630 processing a declaration in a class-specifier, we wait until
14631 after processing the initializer. */
14632 if (!member_p)
14633 {
14634 if (parser->in_unbraced_linkage_specification_p)
14635 decl_specifiers->storage_class = sc_extern;
14636 decl = start_decl (declarator, decl_specifiers,
14637 range_for_decl_p? SD_INITIALIZED : is_initialized,
14638 attributes, prefix_attributes,
14639 &pushed_scope);
14640 /* Adjust location of decl if declarator->id_loc is more appropriate:
14641 set, and decl wasn't merged with another decl, in which case its
14642 location would be different from input_location, and more accurate. */
14643 if (DECL_P (decl)
14644 && declarator->id_loc != UNKNOWN_LOCATION
14645 && DECL_SOURCE_LOCATION (decl) == input_location)
14646 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
14647 }
14648 else if (scope)
14649 /* Enter the SCOPE. That way unqualified names appearing in the
14650 initializer will be looked up in SCOPE. */
14651 pushed_scope = push_scope (scope);
14652
14653 /* Perform deferred access control checks, now that we know in which
14654 SCOPE the declared entity resides. */
14655 if (!member_p && decl)
14656 {
14657 tree saved_current_function_decl = NULL_TREE;
14658
14659 /* If the entity being declared is a function, pretend that we
14660 are in its scope. If it is a `friend', it may have access to
14661 things that would not otherwise be accessible. */
14662 if (TREE_CODE (decl) == FUNCTION_DECL)
14663 {
14664 saved_current_function_decl = current_function_decl;
14665 current_function_decl = decl;
14666 }
14667
14668 /* Perform access checks for template parameters. */
14669 cp_parser_perform_template_parameter_access_checks (checks);
14670
14671 /* Perform the access control checks for the declarator and the
14672 decl-specifiers. */
14673 perform_deferred_access_checks ();
14674
14675 /* Restore the saved value. */
14676 if (TREE_CODE (decl) == FUNCTION_DECL)
14677 current_function_decl = saved_current_function_decl;
14678 }
14679
14680 /* Parse the initializer. */
14681 initializer = NULL_TREE;
14682 is_direct_init = false;
14683 is_non_constant_init = true;
14684 if (is_initialized)
14685 {
14686 if (function_declarator_p (declarator))
14687 {
14688 cp_token *initializer_start_token = cp_lexer_peek_token (parser->lexer);
14689 if (initialization_kind == CPP_EQ)
14690 initializer = cp_parser_pure_specifier (parser);
14691 else
14692 {
14693 /* If the declaration was erroneous, we don't really
14694 know what the user intended, so just silently
14695 consume the initializer. */
14696 if (decl != error_mark_node)
14697 error_at (initializer_start_token->location,
14698 "initializer provided for function");
14699 cp_parser_skip_to_closing_parenthesis (parser,
14700 /*recovering=*/true,
14701 /*or_comma=*/false,
14702 /*consume_paren=*/true);
14703 }
14704 }
14705 else
14706 {
14707 /* We want to record the extra mangling scope for in-class
14708 initializers of class members and initializers of static data
14709 member templates. The former is a C++0x feature which isn't
14710 implemented yet, and I expect it will involve deferring
14711 parsing of the initializer until end of class as with default
14712 arguments. So right here we only handle the latter. */
14713 if (!member_p && processing_template_decl)
14714 start_lambda_scope (decl);
14715 initializer = cp_parser_initializer (parser,
14716 &is_direct_init,
14717 &is_non_constant_init);
14718 if (!member_p && processing_template_decl)
14719 finish_lambda_scope ();
14720 }
14721 }
14722
14723 /* The old parser allows attributes to appear after a parenthesized
14724 initializer. Mark Mitchell proposed removing this functionality
14725 on the GCC mailing lists on 2002-08-13. This parser accepts the
14726 attributes -- but ignores them. */
14727 if (cp_parser_allow_gnu_extensions_p (parser)
14728 && initialization_kind == CPP_OPEN_PAREN)
14729 if (cp_parser_attributes_opt (parser))
14730 warning (OPT_Wattributes,
14731 "attributes after parenthesized initializer ignored");
14732
14733 /* For an in-class declaration, use `grokfield' to create the
14734 declaration. */
14735 if (member_p)
14736 {
14737 if (pushed_scope)
14738 {
14739 pop_scope (pushed_scope);
14740 pushed_scope = false;
14741 }
14742 decl = grokfield (declarator, decl_specifiers,
14743 initializer, !is_non_constant_init,
14744 /*asmspec=*/NULL_TREE,
14745 prefix_attributes);
14746 if (decl && TREE_CODE (decl) == FUNCTION_DECL)
14747 cp_parser_save_default_args (parser, decl);
14748 }
14749
14750 /* Finish processing the declaration. But, skip friend
14751 declarations. */
14752 if (!friend_p && decl && decl != error_mark_node && !range_for_decl_p)
14753 {
14754 cp_finish_decl (decl,
14755 initializer, !is_non_constant_init,
14756 asm_specification,
14757 /* If the initializer is in parentheses, then this is
14758 a direct-initialization, which means that an
14759 `explicit' constructor is OK. Otherwise, an
14760 `explicit' constructor cannot be used. */
14761 ((is_direct_init || !is_initialized)
14762 ? LOOKUP_NORMAL : LOOKUP_IMPLICIT));
14763 }
14764 else if ((cxx_dialect != cxx98) && friend_p
14765 && decl && TREE_CODE (decl) == FUNCTION_DECL)
14766 /* Core issue #226 (C++0x only): A default template-argument
14767 shall not be specified in a friend class template
14768 declaration. */
14769 check_default_tmpl_args (decl, current_template_parms, /*is_primary=*/1,
14770 /*is_partial=*/0, /*is_friend_decl=*/1);
14771
14772 if (!friend_p && pushed_scope)
14773 pop_scope (pushed_scope);
14774
14775 return decl;
14776 }
14777
14778 /* Parse a declarator.
14779
14780 declarator:
14781 direct-declarator
14782 ptr-operator declarator
14783
14784 abstract-declarator:
14785 ptr-operator abstract-declarator [opt]
14786 direct-abstract-declarator
14787
14788 GNU Extensions:
14789
14790 declarator:
14791 attributes [opt] direct-declarator
14792 attributes [opt] ptr-operator declarator
14793
14794 abstract-declarator:
14795 attributes [opt] ptr-operator abstract-declarator [opt]
14796 attributes [opt] direct-abstract-declarator
14797
14798 If CTOR_DTOR_OR_CONV_P is not NULL, *CTOR_DTOR_OR_CONV_P is used to
14799 detect constructor, destructor or conversion operators. It is set
14800 to -1 if the declarator is a name, and +1 if it is a
14801 function. Otherwise it is set to zero. Usually you just want to
14802 test for >0, but internally the negative value is used.
14803
14804 (The reason for CTOR_DTOR_OR_CONV_P is that a declaration must have
14805 a decl-specifier-seq unless it declares a constructor, destructor,
14806 or conversion. It might seem that we could check this condition in
14807 semantic analysis, rather than parsing, but that makes it difficult
14808 to handle something like `f()'. We want to notice that there are
14809 no decl-specifiers, and therefore realize that this is an
14810 expression, not a declaration.)
14811
14812 If PARENTHESIZED_P is non-NULL, *PARENTHESIZED_P is set to true iff
14813 the declarator is a direct-declarator of the form "(...)".
14814
14815 MEMBER_P is true iff this declarator is a member-declarator. */
14816
14817 static cp_declarator *
14818 cp_parser_declarator (cp_parser* parser,
14819 cp_parser_declarator_kind dcl_kind,
14820 int* ctor_dtor_or_conv_p,
14821 bool* parenthesized_p,
14822 bool member_p)
14823 {
14824 cp_declarator *declarator;
14825 enum tree_code code;
14826 cp_cv_quals cv_quals;
14827 tree class_type;
14828 tree attributes = NULL_TREE;
14829
14830 /* Assume this is not a constructor, destructor, or type-conversion
14831 operator. */
14832 if (ctor_dtor_or_conv_p)
14833 *ctor_dtor_or_conv_p = 0;
14834
14835 if (cp_parser_allow_gnu_extensions_p (parser))
14836 attributes = cp_parser_attributes_opt (parser);
14837
14838 /* Check for the ptr-operator production. */
14839 cp_parser_parse_tentatively (parser);
14840 /* Parse the ptr-operator. */
14841 code = cp_parser_ptr_operator (parser,
14842 &class_type,
14843 &cv_quals);
14844 /* If that worked, then we have a ptr-operator. */
14845 if (cp_parser_parse_definitely (parser))
14846 {
14847 /* If a ptr-operator was found, then this declarator was not
14848 parenthesized. */
14849 if (parenthesized_p)
14850 *parenthesized_p = true;
14851 /* The dependent declarator is optional if we are parsing an
14852 abstract-declarator. */
14853 if (dcl_kind != CP_PARSER_DECLARATOR_NAMED)
14854 cp_parser_parse_tentatively (parser);
14855
14856 /* Parse the dependent declarator. */
14857 declarator = cp_parser_declarator (parser, dcl_kind,
14858 /*ctor_dtor_or_conv_p=*/NULL,
14859 /*parenthesized_p=*/NULL,
14860 /*member_p=*/false);
14861
14862 /* If we are parsing an abstract-declarator, we must handle the
14863 case where the dependent declarator is absent. */
14864 if (dcl_kind != CP_PARSER_DECLARATOR_NAMED
14865 && !cp_parser_parse_definitely (parser))
14866 declarator = NULL;
14867
14868 declarator = cp_parser_make_indirect_declarator
14869 (code, class_type, cv_quals, declarator);
14870 }
14871 /* Everything else is a direct-declarator. */
14872 else
14873 {
14874 if (parenthesized_p)
14875 *parenthesized_p = cp_lexer_next_token_is (parser->lexer,
14876 CPP_OPEN_PAREN);
14877 declarator = cp_parser_direct_declarator (parser, dcl_kind,
14878 ctor_dtor_or_conv_p,
14879 member_p);
14880 }
14881
14882 if (attributes && declarator && declarator != cp_error_declarator)
14883 declarator->attributes = attributes;
14884
14885 return declarator;
14886 }
14887
14888 /* Parse a direct-declarator or direct-abstract-declarator.
14889
14890 direct-declarator:
14891 declarator-id
14892 direct-declarator ( parameter-declaration-clause )
14893 cv-qualifier-seq [opt]
14894 exception-specification [opt]
14895 direct-declarator [ constant-expression [opt] ]
14896 ( declarator )
14897
14898 direct-abstract-declarator:
14899 direct-abstract-declarator [opt]
14900 ( parameter-declaration-clause )
14901 cv-qualifier-seq [opt]
14902 exception-specification [opt]
14903 direct-abstract-declarator [opt] [ constant-expression [opt] ]
14904 ( abstract-declarator )
14905
14906 Returns a representation of the declarator. DCL_KIND is
14907 CP_PARSER_DECLARATOR_ABSTRACT, if we are parsing a
14908 direct-abstract-declarator. It is CP_PARSER_DECLARATOR_NAMED, if
14909 we are parsing a direct-declarator. It is
14910 CP_PARSER_DECLARATOR_EITHER, if we can accept either - in the case
14911 of ambiguity we prefer an abstract declarator, as per
14912 [dcl.ambig.res]. CTOR_DTOR_OR_CONV_P and MEMBER_P are as for
14913 cp_parser_declarator. */
14914
14915 static cp_declarator *
14916 cp_parser_direct_declarator (cp_parser* parser,
14917 cp_parser_declarator_kind dcl_kind,
14918 int* ctor_dtor_or_conv_p,
14919 bool member_p)
14920 {
14921 cp_token *token;
14922 cp_declarator *declarator = NULL;
14923 tree scope = NULL_TREE;
14924 bool saved_default_arg_ok_p = parser->default_arg_ok_p;
14925 bool saved_in_declarator_p = parser->in_declarator_p;
14926 bool first = true;
14927 tree pushed_scope = NULL_TREE;
14928
14929 while (true)
14930 {
14931 /* Peek at the next token. */
14932 token = cp_lexer_peek_token (parser->lexer);
14933 if (token->type == CPP_OPEN_PAREN)
14934 {
14935 /* This is either a parameter-declaration-clause, or a
14936 parenthesized declarator. When we know we are parsing a
14937 named declarator, it must be a parenthesized declarator
14938 if FIRST is true. For instance, `(int)' is a
14939 parameter-declaration-clause, with an omitted
14940 direct-abstract-declarator. But `((*))', is a
14941 parenthesized abstract declarator. Finally, when T is a
14942 template parameter `(T)' is a
14943 parameter-declaration-clause, and not a parenthesized
14944 named declarator.
14945
14946 We first try and parse a parameter-declaration-clause,
14947 and then try a nested declarator (if FIRST is true).
14948
14949 It is not an error for it not to be a
14950 parameter-declaration-clause, even when FIRST is
14951 false. Consider,
14952
14953 int i (int);
14954 int i (3);
14955
14956 The first is the declaration of a function while the
14957 second is the definition of a variable, including its
14958 initializer.
14959
14960 Having seen only the parenthesis, we cannot know which of
14961 these two alternatives should be selected. Even more
14962 complex are examples like:
14963
14964 int i (int (a));
14965 int i (int (3));
14966
14967 The former is a function-declaration; the latter is a
14968 variable initialization.
14969
14970 Thus again, we try a parameter-declaration-clause, and if
14971 that fails, we back out and return. */
14972
14973 if (!first || dcl_kind != CP_PARSER_DECLARATOR_NAMED)
14974 {
14975 tree params;
14976 unsigned saved_num_template_parameter_lists;
14977 bool is_declarator = false;
14978 tree t;
14979
14980 /* In a member-declarator, the only valid interpretation
14981 of a parenthesis is the start of a
14982 parameter-declaration-clause. (It is invalid to
14983 initialize a static data member with a parenthesized
14984 initializer; only the "=" form of initialization is
14985 permitted.) */
14986 if (!member_p)
14987 cp_parser_parse_tentatively (parser);
14988
14989 /* Consume the `('. */
14990 cp_lexer_consume_token (parser->lexer);
14991 if (first)
14992 {
14993 /* If this is going to be an abstract declarator, we're
14994 in a declarator and we can't have default args. */
14995 parser->default_arg_ok_p = false;
14996 parser->in_declarator_p = true;
14997 }
14998
14999 /* Inside the function parameter list, surrounding
15000 template-parameter-lists do not apply. */
15001 saved_num_template_parameter_lists
15002 = parser->num_template_parameter_lists;
15003 parser->num_template_parameter_lists = 0;
15004
15005 begin_scope (sk_function_parms, NULL_TREE);
15006
15007 /* Parse the parameter-declaration-clause. */
15008 params = cp_parser_parameter_declaration_clause (parser);
15009
15010 parser->num_template_parameter_lists
15011 = saved_num_template_parameter_lists;
15012
15013 /* If all went well, parse the cv-qualifier-seq and the
15014 exception-specification. */
15015 if (member_p || cp_parser_parse_definitely (parser))
15016 {
15017 cp_cv_quals cv_quals;
15018 tree exception_specification;
15019 tree late_return;
15020
15021 is_declarator = true;
15022
15023 if (ctor_dtor_or_conv_p)
15024 *ctor_dtor_or_conv_p = *ctor_dtor_or_conv_p < 0;
15025 first = false;
15026 /* Consume the `)'. */
15027 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
15028
15029 /* Parse the cv-qualifier-seq. */
15030 cv_quals = cp_parser_cv_qualifier_seq_opt (parser);
15031 /* And the exception-specification. */
15032 exception_specification
15033 = cp_parser_exception_specification_opt (parser);
15034
15035 late_return
15036 = cp_parser_late_return_type_opt (parser);
15037
15038 /* Create the function-declarator. */
15039 declarator = make_call_declarator (declarator,
15040 params,
15041 cv_quals,
15042 exception_specification,
15043 late_return);
15044 /* Any subsequent parameter lists are to do with
15045 return type, so are not those of the declared
15046 function. */
15047 parser->default_arg_ok_p = false;
15048 }
15049
15050 /* Remove the function parms from scope. */
15051 for (t = current_binding_level->names; t; t = DECL_CHAIN (t))
15052 pop_binding (DECL_NAME (t), t);
15053 leave_scope();
15054
15055 if (is_declarator)
15056 /* Repeat the main loop. */
15057 continue;
15058 }
15059
15060 /* If this is the first, we can try a parenthesized
15061 declarator. */
15062 if (first)
15063 {
15064 bool saved_in_type_id_in_expr_p;
15065
15066 parser->default_arg_ok_p = saved_default_arg_ok_p;
15067 parser->in_declarator_p = saved_in_declarator_p;
15068
15069 /* Consume the `('. */
15070 cp_lexer_consume_token (parser->lexer);
15071 /* Parse the nested declarator. */
15072 saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
15073 parser->in_type_id_in_expr_p = true;
15074 declarator
15075 = cp_parser_declarator (parser, dcl_kind, ctor_dtor_or_conv_p,
15076 /*parenthesized_p=*/NULL,
15077 member_p);
15078 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
15079 first = false;
15080 /* Expect a `)'. */
15081 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
15082 declarator = cp_error_declarator;
15083 if (declarator == cp_error_declarator)
15084 break;
15085
15086 goto handle_declarator;
15087 }
15088 /* Otherwise, we must be done. */
15089 else
15090 break;
15091 }
15092 else if ((!first || dcl_kind != CP_PARSER_DECLARATOR_NAMED)
15093 && token->type == CPP_OPEN_SQUARE)
15094 {
15095 /* Parse an array-declarator. */
15096 tree bounds;
15097
15098 if (ctor_dtor_or_conv_p)
15099 *ctor_dtor_or_conv_p = 0;
15100
15101 first = false;
15102 parser->default_arg_ok_p = false;
15103 parser->in_declarator_p = true;
15104 /* Consume the `['. */
15105 cp_lexer_consume_token (parser->lexer);
15106 /* Peek at the next token. */
15107 token = cp_lexer_peek_token (parser->lexer);
15108 /* If the next token is `]', then there is no
15109 constant-expression. */
15110 if (token->type != CPP_CLOSE_SQUARE)
15111 {
15112 bool non_constant_p;
15113
15114 bounds
15115 = cp_parser_constant_expression (parser,
15116 /*allow_non_constant=*/true,
15117 &non_constant_p);
15118 if (!non_constant_p || cxx_dialect >= cxx0x)
15119 /* OK */;
15120 /* Normally, the array bound must be an integral constant
15121 expression. However, as an extension, we allow VLAs
15122 in function scopes as long as they aren't part of a
15123 parameter declaration. */
15124 else if (!parser->in_function_body
15125 || current_binding_level->kind == sk_function_parms)
15126 {
15127 cp_parser_error (parser,
15128 "array bound is not an integer constant");
15129 bounds = error_mark_node;
15130 }
15131 else if (processing_template_decl && !error_operand_p (bounds))
15132 {
15133 /* Remember this wasn't a constant-expression. */
15134 bounds = build_nop (TREE_TYPE (bounds), bounds);
15135 TREE_SIDE_EFFECTS (bounds) = 1;
15136 }
15137 }
15138 else
15139 bounds = NULL_TREE;
15140 /* Look for the closing `]'. */
15141 if (!cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE))
15142 {
15143 declarator = cp_error_declarator;
15144 break;
15145 }
15146
15147 declarator = make_array_declarator (declarator, bounds);
15148 }
15149 else if (first && dcl_kind != CP_PARSER_DECLARATOR_ABSTRACT)
15150 {
15151 {
15152 tree qualifying_scope;
15153 tree unqualified_name;
15154 special_function_kind sfk;
15155 bool abstract_ok;
15156 bool pack_expansion_p = false;
15157 cp_token *declarator_id_start_token;
15158
15159 /* Parse a declarator-id */
15160 abstract_ok = (dcl_kind == CP_PARSER_DECLARATOR_EITHER);
15161 if (abstract_ok)
15162 {
15163 cp_parser_parse_tentatively (parser);
15164
15165 /* If we see an ellipsis, we should be looking at a
15166 parameter pack. */
15167 if (token->type == CPP_ELLIPSIS)
15168 {
15169 /* Consume the `...' */
15170 cp_lexer_consume_token (parser->lexer);
15171
15172 pack_expansion_p = true;
15173 }
15174 }
15175
15176 declarator_id_start_token = cp_lexer_peek_token (parser->lexer);
15177 unqualified_name
15178 = cp_parser_declarator_id (parser, /*optional_p=*/abstract_ok);
15179 qualifying_scope = parser->scope;
15180 if (abstract_ok)
15181 {
15182 bool okay = false;
15183
15184 if (!unqualified_name && pack_expansion_p)
15185 {
15186 /* Check whether an error occurred. */
15187 okay = !cp_parser_error_occurred (parser);
15188
15189 /* We already consumed the ellipsis to mark a
15190 parameter pack, but we have no way to report it,
15191 so abort the tentative parse. We will be exiting
15192 immediately anyway. */
15193 cp_parser_abort_tentative_parse (parser);
15194 }
15195 else
15196 okay = cp_parser_parse_definitely (parser);
15197
15198 if (!okay)
15199 unqualified_name = error_mark_node;
15200 else if (unqualified_name
15201 && (qualifying_scope
15202 || (TREE_CODE (unqualified_name)
15203 != IDENTIFIER_NODE)))
15204 {
15205 cp_parser_error (parser, "expected unqualified-id");
15206 unqualified_name = error_mark_node;
15207 }
15208 }
15209
15210 if (!unqualified_name)
15211 return NULL;
15212 if (unqualified_name == error_mark_node)
15213 {
15214 declarator = cp_error_declarator;
15215 pack_expansion_p = false;
15216 declarator->parameter_pack_p = false;
15217 break;
15218 }
15219
15220 if (qualifying_scope && at_namespace_scope_p ()
15221 && TREE_CODE (qualifying_scope) == TYPENAME_TYPE)
15222 {
15223 /* In the declaration of a member of a template class
15224 outside of the class itself, the SCOPE will sometimes
15225 be a TYPENAME_TYPE. For example, given:
15226
15227 template <typename T>
15228 int S<T>::R::i = 3;
15229
15230 the SCOPE will be a TYPENAME_TYPE for `S<T>::R'. In
15231 this context, we must resolve S<T>::R to an ordinary
15232 type, rather than a typename type.
15233
15234 The reason we normally avoid resolving TYPENAME_TYPEs
15235 is that a specialization of `S' might render
15236 `S<T>::R' not a type. However, if `S' is
15237 specialized, then this `i' will not be used, so there
15238 is no harm in resolving the types here. */
15239 tree type;
15240
15241 /* Resolve the TYPENAME_TYPE. */
15242 type = resolve_typename_type (qualifying_scope,
15243 /*only_current_p=*/false);
15244 /* If that failed, the declarator is invalid. */
15245 if (TREE_CODE (type) == TYPENAME_TYPE)
15246 {
15247 if (typedef_variant_p (type))
15248 error_at (declarator_id_start_token->location,
15249 "cannot define member of dependent typedef "
15250 "%qT", type);
15251 else
15252 error_at (declarator_id_start_token->location,
15253 "%<%T::%E%> is not a type",
15254 TYPE_CONTEXT (qualifying_scope),
15255 TYPE_IDENTIFIER (qualifying_scope));
15256 }
15257 qualifying_scope = type;
15258 }
15259
15260 sfk = sfk_none;
15261
15262 if (unqualified_name)
15263 {
15264 tree class_type;
15265
15266 if (qualifying_scope
15267 && CLASS_TYPE_P (qualifying_scope))
15268 class_type = qualifying_scope;
15269 else
15270 class_type = current_class_type;
15271
15272 if (TREE_CODE (unqualified_name) == TYPE_DECL)
15273 {
15274 tree name_type = TREE_TYPE (unqualified_name);
15275 if (class_type && same_type_p (name_type, class_type))
15276 {
15277 if (qualifying_scope
15278 && CLASSTYPE_USE_TEMPLATE (name_type))
15279 {
15280 error_at (declarator_id_start_token->location,
15281 "invalid use of constructor as a template");
15282 inform (declarator_id_start_token->location,
15283 "use %<%T::%D%> instead of %<%T::%D%> to "
15284 "name the constructor in a qualified name",
15285 class_type,
15286 DECL_NAME (TYPE_TI_TEMPLATE (class_type)),
15287 class_type, name_type);
15288 declarator = cp_error_declarator;
15289 break;
15290 }
15291 else
15292 unqualified_name = constructor_name (class_type);
15293 }
15294 else
15295 {
15296 /* We do not attempt to print the declarator
15297 here because we do not have enough
15298 information about its original syntactic
15299 form. */
15300 cp_parser_error (parser, "invalid declarator");
15301 declarator = cp_error_declarator;
15302 break;
15303 }
15304 }
15305
15306 if (class_type)
15307 {
15308 if (TREE_CODE (unqualified_name) == BIT_NOT_EXPR)
15309 sfk = sfk_destructor;
15310 else if (IDENTIFIER_TYPENAME_P (unqualified_name))
15311 sfk = sfk_conversion;
15312 else if (/* There's no way to declare a constructor
15313 for an anonymous type, even if the type
15314 got a name for linkage purposes. */
15315 !TYPE_WAS_ANONYMOUS (class_type)
15316 && constructor_name_p (unqualified_name,
15317 class_type))
15318 {
15319 unqualified_name = constructor_name (class_type);
15320 sfk = sfk_constructor;
15321 }
15322 else if (is_overloaded_fn (unqualified_name)
15323 && DECL_CONSTRUCTOR_P (get_first_fn
15324 (unqualified_name)))
15325 sfk = sfk_constructor;
15326
15327 if (ctor_dtor_or_conv_p && sfk != sfk_none)
15328 *ctor_dtor_or_conv_p = -1;
15329 }
15330 }
15331 declarator = make_id_declarator (qualifying_scope,
15332 unqualified_name,
15333 sfk);
15334 declarator->id_loc = token->location;
15335 declarator->parameter_pack_p = pack_expansion_p;
15336
15337 if (pack_expansion_p)
15338 maybe_warn_variadic_templates ();
15339 }
15340
15341 handle_declarator:;
15342 scope = get_scope_of_declarator (declarator);
15343 if (scope)
15344 /* Any names that appear after the declarator-id for a
15345 member are looked up in the containing scope. */
15346 pushed_scope = push_scope (scope);
15347 parser->in_declarator_p = true;
15348 if ((ctor_dtor_or_conv_p && *ctor_dtor_or_conv_p)
15349 || (declarator && declarator->kind == cdk_id))
15350 /* Default args are only allowed on function
15351 declarations. */
15352 parser->default_arg_ok_p = saved_default_arg_ok_p;
15353 else
15354 parser->default_arg_ok_p = false;
15355
15356 first = false;
15357 }
15358 /* We're done. */
15359 else
15360 break;
15361 }
15362
15363 /* For an abstract declarator, we might wind up with nothing at this
15364 point. That's an error; the declarator is not optional. */
15365 if (!declarator)
15366 cp_parser_error (parser, "expected declarator");
15367
15368 /* If we entered a scope, we must exit it now. */
15369 if (pushed_scope)
15370 pop_scope (pushed_scope);
15371
15372 parser->default_arg_ok_p = saved_default_arg_ok_p;
15373 parser->in_declarator_p = saved_in_declarator_p;
15374
15375 return declarator;
15376 }
15377
15378 /* Parse a ptr-operator.
15379
15380 ptr-operator:
15381 * cv-qualifier-seq [opt]
15382 &
15383 :: [opt] nested-name-specifier * cv-qualifier-seq [opt]
15384
15385 GNU Extension:
15386
15387 ptr-operator:
15388 & cv-qualifier-seq [opt]
15389
15390 Returns INDIRECT_REF if a pointer, or pointer-to-member, was used.
15391 Returns ADDR_EXPR if a reference was used, or NON_LVALUE_EXPR for
15392 an rvalue reference. In the case of a pointer-to-member, *TYPE is
15393 filled in with the TYPE containing the member. *CV_QUALS is
15394 filled in with the cv-qualifier-seq, or TYPE_UNQUALIFIED, if there
15395 are no cv-qualifiers. Returns ERROR_MARK if an error occurred.
15396 Note that the tree codes returned by this function have nothing
15397 to do with the types of trees that will be eventually be created
15398 to represent the pointer or reference type being parsed. They are
15399 just constants with suggestive names. */
15400 static enum tree_code
15401 cp_parser_ptr_operator (cp_parser* parser,
15402 tree* type,
15403 cp_cv_quals *cv_quals)
15404 {
15405 enum tree_code code = ERROR_MARK;
15406 cp_token *token;
15407
15408 /* Assume that it's not a pointer-to-member. */
15409 *type = NULL_TREE;
15410 /* And that there are no cv-qualifiers. */
15411 *cv_quals = TYPE_UNQUALIFIED;
15412
15413 /* Peek at the next token. */
15414 token = cp_lexer_peek_token (parser->lexer);
15415
15416 /* If it's a `*', `&' or `&&' we have a pointer or reference. */
15417 if (token->type == CPP_MULT)
15418 code = INDIRECT_REF;
15419 else if (token->type == CPP_AND)
15420 code = ADDR_EXPR;
15421 else if ((cxx_dialect != cxx98) &&
15422 token->type == CPP_AND_AND) /* C++0x only */
15423 code = NON_LVALUE_EXPR;
15424
15425 if (code != ERROR_MARK)
15426 {
15427 /* Consume the `*', `&' or `&&'. */
15428 cp_lexer_consume_token (parser->lexer);
15429
15430 /* A `*' can be followed by a cv-qualifier-seq, and so can a
15431 `&', if we are allowing GNU extensions. (The only qualifier
15432 that can legally appear after `&' is `restrict', but that is
15433 enforced during semantic analysis. */
15434 if (code == INDIRECT_REF
15435 || cp_parser_allow_gnu_extensions_p (parser))
15436 *cv_quals = cp_parser_cv_qualifier_seq_opt (parser);
15437 }
15438 else
15439 {
15440 /* Try the pointer-to-member case. */
15441 cp_parser_parse_tentatively (parser);
15442 /* Look for the optional `::' operator. */
15443 cp_parser_global_scope_opt (parser,
15444 /*current_scope_valid_p=*/false);
15445 /* Look for the nested-name specifier. */
15446 token = cp_lexer_peek_token (parser->lexer);
15447 cp_parser_nested_name_specifier (parser,
15448 /*typename_keyword_p=*/false,
15449 /*check_dependency_p=*/true,
15450 /*type_p=*/false,
15451 /*is_declaration=*/false);
15452 /* If we found it, and the next token is a `*', then we are
15453 indeed looking at a pointer-to-member operator. */
15454 if (!cp_parser_error_occurred (parser)
15455 && cp_parser_require (parser, CPP_MULT, RT_MULT))
15456 {
15457 /* Indicate that the `*' operator was used. */
15458 code = INDIRECT_REF;
15459
15460 if (TREE_CODE (parser->scope) == NAMESPACE_DECL)
15461 error_at (token->location, "%qD is a namespace", parser->scope);
15462 else
15463 {
15464 /* The type of which the member is a member is given by the
15465 current SCOPE. */
15466 *type = parser->scope;
15467 /* The next name will not be qualified. */
15468 parser->scope = NULL_TREE;
15469 parser->qualifying_scope = NULL_TREE;
15470 parser->object_scope = NULL_TREE;
15471 /* Look for the optional cv-qualifier-seq. */
15472 *cv_quals = cp_parser_cv_qualifier_seq_opt (parser);
15473 }
15474 }
15475 /* If that didn't work we don't have a ptr-operator. */
15476 if (!cp_parser_parse_definitely (parser))
15477 cp_parser_error (parser, "expected ptr-operator");
15478 }
15479
15480 return code;
15481 }
15482
15483 /* Parse an (optional) cv-qualifier-seq.
15484
15485 cv-qualifier-seq:
15486 cv-qualifier cv-qualifier-seq [opt]
15487
15488 cv-qualifier:
15489 const
15490 volatile
15491
15492 GNU Extension:
15493
15494 cv-qualifier:
15495 __restrict__
15496
15497 Returns a bitmask representing the cv-qualifiers. */
15498
15499 static cp_cv_quals
15500 cp_parser_cv_qualifier_seq_opt (cp_parser* parser)
15501 {
15502 cp_cv_quals cv_quals = TYPE_UNQUALIFIED;
15503
15504 while (true)
15505 {
15506 cp_token *token;
15507 cp_cv_quals cv_qualifier;
15508
15509 /* Peek at the next token. */
15510 token = cp_lexer_peek_token (parser->lexer);
15511 /* See if it's a cv-qualifier. */
15512 switch (token->keyword)
15513 {
15514 case RID_CONST:
15515 cv_qualifier = TYPE_QUAL_CONST;
15516 break;
15517
15518 case RID_VOLATILE:
15519 cv_qualifier = TYPE_QUAL_VOLATILE;
15520 break;
15521
15522 case RID_RESTRICT:
15523 cv_qualifier = TYPE_QUAL_RESTRICT;
15524 break;
15525
15526 default:
15527 cv_qualifier = TYPE_UNQUALIFIED;
15528 break;
15529 }
15530
15531 if (!cv_qualifier)
15532 break;
15533
15534 if (cv_quals & cv_qualifier)
15535 {
15536 error_at (token->location, "duplicate cv-qualifier");
15537 cp_lexer_purge_token (parser->lexer);
15538 }
15539 else
15540 {
15541 cp_lexer_consume_token (parser->lexer);
15542 cv_quals |= cv_qualifier;
15543 }
15544 }
15545
15546 return cv_quals;
15547 }
15548
15549 /* Parse a late-specified return type, if any. This is not a separate
15550 non-terminal, but part of a function declarator, which looks like
15551
15552 -> trailing-type-specifier-seq abstract-declarator(opt)
15553
15554 Returns the type indicated by the type-id. */
15555
15556 static tree
15557 cp_parser_late_return_type_opt (cp_parser* parser)
15558 {
15559 cp_token *token;
15560
15561 /* Peek at the next token. */
15562 token = cp_lexer_peek_token (parser->lexer);
15563 /* A late-specified return type is indicated by an initial '->'. */
15564 if (token->type != CPP_DEREF)
15565 return NULL_TREE;
15566
15567 /* Consume the ->. */
15568 cp_lexer_consume_token (parser->lexer);
15569
15570 return cp_parser_trailing_type_id (parser);
15571 }
15572
15573 /* Parse a declarator-id.
15574
15575 declarator-id:
15576 id-expression
15577 :: [opt] nested-name-specifier [opt] type-name
15578
15579 In the `id-expression' case, the value returned is as for
15580 cp_parser_id_expression if the id-expression was an unqualified-id.
15581 If the id-expression was a qualified-id, then a SCOPE_REF is
15582 returned. The first operand is the scope (either a NAMESPACE_DECL
15583 or TREE_TYPE), but the second is still just a representation of an
15584 unqualified-id. */
15585
15586 static tree
15587 cp_parser_declarator_id (cp_parser* parser, bool optional_p)
15588 {
15589 tree id;
15590 /* The expression must be an id-expression. Assume that qualified
15591 names are the names of types so that:
15592
15593 template <class T>
15594 int S<T>::R::i = 3;
15595
15596 will work; we must treat `S<T>::R' as the name of a type.
15597 Similarly, assume that qualified names are templates, where
15598 required, so that:
15599
15600 template <class T>
15601 int S<T>::R<T>::i = 3;
15602
15603 will work, too. */
15604 id = cp_parser_id_expression (parser,
15605 /*template_keyword_p=*/false,
15606 /*check_dependency_p=*/false,
15607 /*template_p=*/NULL,
15608 /*declarator_p=*/true,
15609 optional_p);
15610 if (id && BASELINK_P (id))
15611 id = BASELINK_FUNCTIONS (id);
15612 return id;
15613 }
15614
15615 /* Parse a type-id.
15616
15617 type-id:
15618 type-specifier-seq abstract-declarator [opt]
15619
15620 Returns the TYPE specified. */
15621
15622 static tree
15623 cp_parser_type_id_1 (cp_parser* parser, bool is_template_arg,
15624 bool is_trailing_return)
15625 {
15626 cp_decl_specifier_seq type_specifier_seq;
15627 cp_declarator *abstract_declarator;
15628
15629 /* Parse the type-specifier-seq. */
15630 cp_parser_type_specifier_seq (parser, /*is_declaration=*/false,
15631 is_trailing_return,
15632 &type_specifier_seq);
15633 if (type_specifier_seq.type == error_mark_node)
15634 return error_mark_node;
15635
15636 /* There might or might not be an abstract declarator. */
15637 cp_parser_parse_tentatively (parser);
15638 /* Look for the declarator. */
15639 abstract_declarator
15640 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_ABSTRACT, NULL,
15641 /*parenthesized_p=*/NULL,
15642 /*member_p=*/false);
15643 /* Check to see if there really was a declarator. */
15644 if (!cp_parser_parse_definitely (parser))
15645 abstract_declarator = NULL;
15646
15647 if (type_specifier_seq.type
15648 && type_uses_auto (type_specifier_seq.type))
15649 {
15650 /* A type-id with type 'auto' is only ok if the abstract declarator
15651 is a function declarator with a late-specified return type. */
15652 if (abstract_declarator
15653 && abstract_declarator->kind == cdk_function
15654 && abstract_declarator->u.function.late_return_type)
15655 /* OK */;
15656 else
15657 {
15658 error ("invalid use of %<auto%>");
15659 return error_mark_node;
15660 }
15661 }
15662
15663 return groktypename (&type_specifier_seq, abstract_declarator,
15664 is_template_arg);
15665 }
15666
15667 static tree cp_parser_type_id (cp_parser *parser)
15668 {
15669 return cp_parser_type_id_1 (parser, false, false);
15670 }
15671
15672 static tree cp_parser_template_type_arg (cp_parser *parser)
15673 {
15674 return cp_parser_type_id_1 (parser, true, false);
15675 }
15676
15677 static tree cp_parser_trailing_type_id (cp_parser *parser)
15678 {
15679 return cp_parser_type_id_1 (parser, false, true);
15680 }
15681
15682 /* Parse a type-specifier-seq.
15683
15684 type-specifier-seq:
15685 type-specifier type-specifier-seq [opt]
15686
15687 GNU extension:
15688
15689 type-specifier-seq:
15690 attributes type-specifier-seq [opt]
15691
15692 If IS_DECLARATION is true, we are at the start of a "condition" or
15693 exception-declaration, so we might be followed by a declarator-id.
15694
15695 If IS_TRAILING_RETURN is true, we are in a trailing-return-type,
15696 i.e. we've just seen "->".
15697
15698 Sets *TYPE_SPECIFIER_SEQ to represent the sequence. */
15699
15700 static void
15701 cp_parser_type_specifier_seq (cp_parser* parser,
15702 bool is_declaration,
15703 bool is_trailing_return,
15704 cp_decl_specifier_seq *type_specifier_seq)
15705 {
15706 bool seen_type_specifier = false;
15707 cp_parser_flags flags = CP_PARSER_FLAGS_OPTIONAL;
15708 cp_token *start_token = NULL;
15709
15710 /* Clear the TYPE_SPECIFIER_SEQ. */
15711 clear_decl_specs (type_specifier_seq);
15712
15713 /* In the context of a trailing return type, enum E { } is an
15714 elaborated-type-specifier followed by a function-body, not an
15715 enum-specifier. */
15716 if (is_trailing_return)
15717 flags |= CP_PARSER_FLAGS_NO_TYPE_DEFINITIONS;
15718
15719 /* Parse the type-specifiers and attributes. */
15720 while (true)
15721 {
15722 tree type_specifier;
15723 bool is_cv_qualifier;
15724
15725 /* Check for attributes first. */
15726 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_ATTRIBUTE))
15727 {
15728 type_specifier_seq->attributes =
15729 chainon (type_specifier_seq->attributes,
15730 cp_parser_attributes_opt (parser));
15731 continue;
15732 }
15733
15734 /* record the token of the beginning of the type specifier seq,
15735 for error reporting purposes*/
15736 if (!start_token)
15737 start_token = cp_lexer_peek_token (parser->lexer);
15738
15739 /* Look for the type-specifier. */
15740 type_specifier = cp_parser_type_specifier (parser,
15741 flags,
15742 type_specifier_seq,
15743 /*is_declaration=*/false,
15744 NULL,
15745 &is_cv_qualifier);
15746 if (!type_specifier)
15747 {
15748 /* If the first type-specifier could not be found, this is not a
15749 type-specifier-seq at all. */
15750 if (!seen_type_specifier)
15751 {
15752 cp_parser_error (parser, "expected type-specifier");
15753 type_specifier_seq->type = error_mark_node;
15754 return;
15755 }
15756 /* If subsequent type-specifiers could not be found, the
15757 type-specifier-seq is complete. */
15758 break;
15759 }
15760
15761 seen_type_specifier = true;
15762 /* The standard says that a condition can be:
15763
15764 type-specifier-seq declarator = assignment-expression
15765
15766 However, given:
15767
15768 struct S {};
15769 if (int S = ...)
15770
15771 we should treat the "S" as a declarator, not as a
15772 type-specifier. The standard doesn't say that explicitly for
15773 type-specifier-seq, but it does say that for
15774 decl-specifier-seq in an ordinary declaration. Perhaps it
15775 would be clearer just to allow a decl-specifier-seq here, and
15776 then add a semantic restriction that if any decl-specifiers
15777 that are not type-specifiers appear, the program is invalid. */
15778 if (is_declaration && !is_cv_qualifier)
15779 flags |= CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES;
15780 }
15781
15782 cp_parser_check_decl_spec (type_specifier_seq, start_token->location);
15783 }
15784
15785 /* Parse a parameter-declaration-clause.
15786
15787 parameter-declaration-clause:
15788 parameter-declaration-list [opt] ... [opt]
15789 parameter-declaration-list , ...
15790
15791 Returns a representation for the parameter declarations. A return
15792 value of NULL indicates a parameter-declaration-clause consisting
15793 only of an ellipsis. */
15794
15795 static tree
15796 cp_parser_parameter_declaration_clause (cp_parser* parser)
15797 {
15798 tree parameters;
15799 cp_token *token;
15800 bool ellipsis_p;
15801 bool is_error;
15802
15803 /* Peek at the next token. */
15804 token = cp_lexer_peek_token (parser->lexer);
15805 /* Check for trivial parameter-declaration-clauses. */
15806 if (token->type == CPP_ELLIPSIS)
15807 {
15808 /* Consume the `...' token. */
15809 cp_lexer_consume_token (parser->lexer);
15810 return NULL_TREE;
15811 }
15812 else if (token->type == CPP_CLOSE_PAREN)
15813 /* There are no parameters. */
15814 {
15815 #ifndef NO_IMPLICIT_EXTERN_C
15816 if (in_system_header && current_class_type == NULL
15817 && current_lang_name == lang_name_c)
15818 return NULL_TREE;
15819 else
15820 #endif
15821 return void_list_node;
15822 }
15823 /* Check for `(void)', too, which is a special case. */
15824 else if (token->keyword == RID_VOID
15825 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
15826 == CPP_CLOSE_PAREN))
15827 {
15828 /* Consume the `void' token. */
15829 cp_lexer_consume_token (parser->lexer);
15830 /* There are no parameters. */
15831 return void_list_node;
15832 }
15833
15834 /* Parse the parameter-declaration-list. */
15835 parameters = cp_parser_parameter_declaration_list (parser, &is_error);
15836 /* If a parse error occurred while parsing the
15837 parameter-declaration-list, then the entire
15838 parameter-declaration-clause is erroneous. */
15839 if (is_error)
15840 return NULL;
15841
15842 /* Peek at the next token. */
15843 token = cp_lexer_peek_token (parser->lexer);
15844 /* If it's a `,', the clause should terminate with an ellipsis. */
15845 if (token->type == CPP_COMMA)
15846 {
15847 /* Consume the `,'. */
15848 cp_lexer_consume_token (parser->lexer);
15849 /* Expect an ellipsis. */
15850 ellipsis_p
15851 = (cp_parser_require (parser, CPP_ELLIPSIS, RT_ELLIPSIS) != NULL);
15852 }
15853 /* It might also be `...' if the optional trailing `,' was
15854 omitted. */
15855 else if (token->type == CPP_ELLIPSIS)
15856 {
15857 /* Consume the `...' token. */
15858 cp_lexer_consume_token (parser->lexer);
15859 /* And remember that we saw it. */
15860 ellipsis_p = true;
15861 }
15862 else
15863 ellipsis_p = false;
15864
15865 /* Finish the parameter list. */
15866 if (!ellipsis_p)
15867 parameters = chainon (parameters, void_list_node);
15868
15869 return parameters;
15870 }
15871
15872 /* Parse a parameter-declaration-list.
15873
15874 parameter-declaration-list:
15875 parameter-declaration
15876 parameter-declaration-list , parameter-declaration
15877
15878 Returns a representation of the parameter-declaration-list, as for
15879 cp_parser_parameter_declaration_clause. However, the
15880 `void_list_node' is never appended to the list. Upon return,
15881 *IS_ERROR will be true iff an error occurred. */
15882
15883 static tree
15884 cp_parser_parameter_declaration_list (cp_parser* parser, bool *is_error)
15885 {
15886 tree parameters = NULL_TREE;
15887 tree *tail = &parameters;
15888 bool saved_in_unbraced_linkage_specification_p;
15889 int index = 0;
15890
15891 /* Assume all will go well. */
15892 *is_error = false;
15893 /* The special considerations that apply to a function within an
15894 unbraced linkage specifications do not apply to the parameters
15895 to the function. */
15896 saved_in_unbraced_linkage_specification_p
15897 = parser->in_unbraced_linkage_specification_p;
15898 parser->in_unbraced_linkage_specification_p = false;
15899
15900 /* Look for more parameters. */
15901 while (true)
15902 {
15903 cp_parameter_declarator *parameter;
15904 tree decl = error_mark_node;
15905 bool parenthesized_p;
15906 /* Parse the parameter. */
15907 parameter
15908 = cp_parser_parameter_declaration (parser,
15909 /*template_parm_p=*/false,
15910 &parenthesized_p);
15911
15912 /* We don't know yet if the enclosing context is deprecated, so wait
15913 and warn in grokparms if appropriate. */
15914 deprecated_state = DEPRECATED_SUPPRESS;
15915
15916 if (parameter)
15917 decl = grokdeclarator (parameter->declarator,
15918 &parameter->decl_specifiers,
15919 PARM,
15920 parameter->default_argument != NULL_TREE,
15921 &parameter->decl_specifiers.attributes);
15922
15923 deprecated_state = DEPRECATED_NORMAL;
15924
15925 /* If a parse error occurred parsing the parameter declaration,
15926 then the entire parameter-declaration-list is erroneous. */
15927 if (decl == error_mark_node)
15928 {
15929 *is_error = true;
15930 parameters = error_mark_node;
15931 break;
15932 }
15933
15934 if (parameter->decl_specifiers.attributes)
15935 cplus_decl_attributes (&decl,
15936 parameter->decl_specifiers.attributes,
15937 0);
15938 if (DECL_NAME (decl))
15939 decl = pushdecl (decl);
15940
15941 if (decl != error_mark_node)
15942 {
15943 retrofit_lang_decl (decl);
15944 DECL_PARM_INDEX (decl) = ++index;
15945 DECL_PARM_LEVEL (decl) = function_parm_depth ();
15946 }
15947
15948 /* Add the new parameter to the list. */
15949 *tail = build_tree_list (parameter->default_argument, decl);
15950 tail = &TREE_CHAIN (*tail);
15951
15952 /* Peek at the next token. */
15953 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN)
15954 || cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS)
15955 /* These are for Objective-C++ */
15956 || cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
15957 || cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
15958 /* The parameter-declaration-list is complete. */
15959 break;
15960 else if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
15961 {
15962 cp_token *token;
15963
15964 /* Peek at the next token. */
15965 token = cp_lexer_peek_nth_token (parser->lexer, 2);
15966 /* If it's an ellipsis, then the list is complete. */
15967 if (token->type == CPP_ELLIPSIS)
15968 break;
15969 /* Otherwise, there must be more parameters. Consume the
15970 `,'. */
15971 cp_lexer_consume_token (parser->lexer);
15972 /* When parsing something like:
15973
15974 int i(float f, double d)
15975
15976 we can tell after seeing the declaration for "f" that we
15977 are not looking at an initialization of a variable "i",
15978 but rather at the declaration of a function "i".
15979
15980 Due to the fact that the parsing of template arguments
15981 (as specified to a template-id) requires backtracking we
15982 cannot use this technique when inside a template argument
15983 list. */
15984 if (!parser->in_template_argument_list_p
15985 && !parser->in_type_id_in_expr_p
15986 && cp_parser_uncommitted_to_tentative_parse_p (parser)
15987 /* However, a parameter-declaration of the form
15988 "foat(f)" (which is a valid declaration of a
15989 parameter "f") can also be interpreted as an
15990 expression (the conversion of "f" to "float"). */
15991 && !parenthesized_p)
15992 cp_parser_commit_to_tentative_parse (parser);
15993 }
15994 else
15995 {
15996 cp_parser_error (parser, "expected %<,%> or %<...%>");
15997 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
15998 cp_parser_skip_to_closing_parenthesis (parser,
15999 /*recovering=*/true,
16000 /*or_comma=*/false,
16001 /*consume_paren=*/false);
16002 break;
16003 }
16004 }
16005
16006 parser->in_unbraced_linkage_specification_p
16007 = saved_in_unbraced_linkage_specification_p;
16008
16009 return parameters;
16010 }
16011
16012 /* Parse a parameter declaration.
16013
16014 parameter-declaration:
16015 decl-specifier-seq ... [opt] declarator
16016 decl-specifier-seq declarator = assignment-expression
16017 decl-specifier-seq ... [opt] abstract-declarator [opt]
16018 decl-specifier-seq abstract-declarator [opt] = assignment-expression
16019
16020 If TEMPLATE_PARM_P is TRUE, then this parameter-declaration
16021 declares a template parameter. (In that case, a non-nested `>'
16022 token encountered during the parsing of the assignment-expression
16023 is not interpreted as a greater-than operator.)
16024
16025 Returns a representation of the parameter, or NULL if an error
16026 occurs. If PARENTHESIZED_P is non-NULL, *PARENTHESIZED_P is set to
16027 true iff the declarator is of the form "(p)". */
16028
16029 static cp_parameter_declarator *
16030 cp_parser_parameter_declaration (cp_parser *parser,
16031 bool template_parm_p,
16032 bool *parenthesized_p)
16033 {
16034 int declares_class_or_enum;
16035 cp_decl_specifier_seq decl_specifiers;
16036 cp_declarator *declarator;
16037 tree default_argument;
16038 cp_token *token = NULL, *declarator_token_start = NULL;
16039 const char *saved_message;
16040
16041 /* In a template parameter, `>' is not an operator.
16042
16043 [temp.param]
16044
16045 When parsing a default template-argument for a non-type
16046 template-parameter, the first non-nested `>' is taken as the end
16047 of the template parameter-list rather than a greater-than
16048 operator. */
16049
16050 /* Type definitions may not appear in parameter types. */
16051 saved_message = parser->type_definition_forbidden_message;
16052 parser->type_definition_forbidden_message
16053 = G_("types may not be defined in parameter types");
16054
16055 /* Parse the declaration-specifiers. */
16056 cp_parser_decl_specifier_seq (parser,
16057 CP_PARSER_FLAGS_NONE,
16058 &decl_specifiers,
16059 &declares_class_or_enum);
16060
16061 /* Complain about missing 'typename' or other invalid type names. */
16062 if (!decl_specifiers.any_type_specifiers_p)
16063 cp_parser_parse_and_diagnose_invalid_type_name (parser);
16064
16065 /* If an error occurred, there's no reason to attempt to parse the
16066 rest of the declaration. */
16067 if (cp_parser_error_occurred (parser))
16068 {
16069 parser->type_definition_forbidden_message = saved_message;
16070 return NULL;
16071 }
16072
16073 /* Peek at the next token. */
16074 token = cp_lexer_peek_token (parser->lexer);
16075
16076 /* If the next token is a `)', `,', `=', `>', or `...', then there
16077 is no declarator. However, when variadic templates are enabled,
16078 there may be a declarator following `...'. */
16079 if (token->type == CPP_CLOSE_PAREN
16080 || token->type == CPP_COMMA
16081 || token->type == CPP_EQ
16082 || token->type == CPP_GREATER)
16083 {
16084 declarator = NULL;
16085 if (parenthesized_p)
16086 *parenthesized_p = false;
16087 }
16088 /* Otherwise, there should be a declarator. */
16089 else
16090 {
16091 bool saved_default_arg_ok_p = parser->default_arg_ok_p;
16092 parser->default_arg_ok_p = false;
16093
16094 /* After seeing a decl-specifier-seq, if the next token is not a
16095 "(", there is no possibility that the code is a valid
16096 expression. Therefore, if parsing tentatively, we commit at
16097 this point. */
16098 if (!parser->in_template_argument_list_p
16099 /* In an expression context, having seen:
16100
16101 (int((char ...
16102
16103 we cannot be sure whether we are looking at a
16104 function-type (taking a "char" as a parameter) or a cast
16105 of some object of type "char" to "int". */
16106 && !parser->in_type_id_in_expr_p
16107 && cp_parser_uncommitted_to_tentative_parse_p (parser)
16108 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_PAREN))
16109 cp_parser_commit_to_tentative_parse (parser);
16110 /* Parse the declarator. */
16111 declarator_token_start = token;
16112 declarator = cp_parser_declarator (parser,
16113 CP_PARSER_DECLARATOR_EITHER,
16114 /*ctor_dtor_or_conv_p=*/NULL,
16115 parenthesized_p,
16116 /*member_p=*/false);
16117 parser->default_arg_ok_p = saved_default_arg_ok_p;
16118 /* After the declarator, allow more attributes. */
16119 decl_specifiers.attributes
16120 = chainon (decl_specifiers.attributes,
16121 cp_parser_attributes_opt (parser));
16122 }
16123
16124 /* If the next token is an ellipsis, and we have not seen a
16125 declarator name, and the type of the declarator contains parameter
16126 packs but it is not a TYPE_PACK_EXPANSION, then we actually have
16127 a parameter pack expansion expression. Otherwise, leave the
16128 ellipsis for a C-style variadic function. */
16129 token = cp_lexer_peek_token (parser->lexer);
16130 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
16131 {
16132 tree type = decl_specifiers.type;
16133
16134 if (type && DECL_P (type))
16135 type = TREE_TYPE (type);
16136
16137 if (type
16138 && TREE_CODE (type) != TYPE_PACK_EXPANSION
16139 && declarator_can_be_parameter_pack (declarator)
16140 && (!declarator || !declarator->parameter_pack_p)
16141 && uses_parameter_packs (type))
16142 {
16143 /* Consume the `...'. */
16144 cp_lexer_consume_token (parser->lexer);
16145 maybe_warn_variadic_templates ();
16146
16147 /* Build a pack expansion type */
16148 if (declarator)
16149 declarator->parameter_pack_p = true;
16150 else
16151 decl_specifiers.type = make_pack_expansion (type);
16152 }
16153 }
16154
16155 /* The restriction on defining new types applies only to the type
16156 of the parameter, not to the default argument. */
16157 parser->type_definition_forbidden_message = saved_message;
16158
16159 /* If the next token is `=', then process a default argument. */
16160 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
16161 {
16162 /* Consume the `='. */
16163 cp_lexer_consume_token (parser->lexer);
16164
16165 /* If we are defining a class, then the tokens that make up the
16166 default argument must be saved and processed later. */
16167 if (!template_parm_p && at_class_scope_p ()
16168 && TYPE_BEING_DEFINED (current_class_type)
16169 && !LAMBDA_TYPE_P (current_class_type))
16170 {
16171 unsigned depth = 0;
16172 int maybe_template_id = 0;
16173 cp_token *first_token;
16174 cp_token *token;
16175
16176 /* Add tokens until we have processed the entire default
16177 argument. We add the range [first_token, token). */
16178 first_token = cp_lexer_peek_token (parser->lexer);
16179 while (true)
16180 {
16181 bool done = false;
16182
16183 /* Peek at the next token. */
16184 token = cp_lexer_peek_token (parser->lexer);
16185 /* What we do depends on what token we have. */
16186 switch (token->type)
16187 {
16188 /* In valid code, a default argument must be
16189 immediately followed by a `,' `)', or `...'. */
16190 case CPP_COMMA:
16191 if (depth == 0 && maybe_template_id)
16192 {
16193 /* If we've seen a '<', we might be in a
16194 template-argument-list. Until Core issue 325 is
16195 resolved, we don't know how this situation ought
16196 to be handled, so try to DTRT. We check whether
16197 what comes after the comma is a valid parameter
16198 declaration list. If it is, then the comma ends
16199 the default argument; otherwise the default
16200 argument continues. */
16201 bool error = false;
16202 tree t;
16203
16204 /* Set ITALP so cp_parser_parameter_declaration_list
16205 doesn't decide to commit to this parse. */
16206 bool saved_italp = parser->in_template_argument_list_p;
16207 parser->in_template_argument_list_p = true;
16208
16209 cp_parser_parse_tentatively (parser);
16210 cp_lexer_consume_token (parser->lexer);
16211 begin_scope (sk_function_parms, NULL_TREE);
16212 cp_parser_parameter_declaration_list (parser, &error);
16213 for (t = current_binding_level->names; t; t = DECL_CHAIN (t))
16214 pop_binding (DECL_NAME (t), t);
16215 leave_scope ();
16216 if (!cp_parser_error_occurred (parser) && !error)
16217 done = true;
16218 cp_parser_abort_tentative_parse (parser);
16219
16220 parser->in_template_argument_list_p = saved_italp;
16221 break;
16222 }
16223 case CPP_CLOSE_PAREN:
16224 case CPP_ELLIPSIS:
16225 /* If we run into a non-nested `;', `}', or `]',
16226 then the code is invalid -- but the default
16227 argument is certainly over. */
16228 case CPP_SEMICOLON:
16229 case CPP_CLOSE_BRACE:
16230 case CPP_CLOSE_SQUARE:
16231 if (depth == 0)
16232 done = true;
16233 /* Update DEPTH, if necessary. */
16234 else if (token->type == CPP_CLOSE_PAREN
16235 || token->type == CPP_CLOSE_BRACE
16236 || token->type == CPP_CLOSE_SQUARE)
16237 --depth;
16238 break;
16239
16240 case CPP_OPEN_PAREN:
16241 case CPP_OPEN_SQUARE:
16242 case CPP_OPEN_BRACE:
16243 ++depth;
16244 break;
16245
16246 case CPP_LESS:
16247 if (depth == 0)
16248 /* This might be the comparison operator, or it might
16249 start a template argument list. */
16250 ++maybe_template_id;
16251 break;
16252
16253 case CPP_RSHIFT:
16254 if (cxx_dialect == cxx98)
16255 break;
16256 /* Fall through for C++0x, which treats the `>>'
16257 operator like two `>' tokens in certain
16258 cases. */
16259
16260 case CPP_GREATER:
16261 if (depth == 0)
16262 {
16263 /* This might be an operator, or it might close a
16264 template argument list. But if a previous '<'
16265 started a template argument list, this will have
16266 closed it, so we can't be in one anymore. */
16267 maybe_template_id -= 1 + (token->type == CPP_RSHIFT);
16268 if (maybe_template_id < 0)
16269 maybe_template_id = 0;
16270 }
16271 break;
16272
16273 /* If we run out of tokens, issue an error message. */
16274 case CPP_EOF:
16275 case CPP_PRAGMA_EOL:
16276 error_at (token->location, "file ends in default argument");
16277 done = true;
16278 break;
16279
16280 case CPP_NAME:
16281 case CPP_SCOPE:
16282 /* In these cases, we should look for template-ids.
16283 For example, if the default argument is
16284 `X<int, double>()', we need to do name lookup to
16285 figure out whether or not `X' is a template; if
16286 so, the `,' does not end the default argument.
16287
16288 That is not yet done. */
16289 break;
16290
16291 default:
16292 break;
16293 }
16294
16295 /* If we've reached the end, stop. */
16296 if (done)
16297 break;
16298
16299 /* Add the token to the token block. */
16300 token = cp_lexer_consume_token (parser->lexer);
16301 }
16302
16303 /* Create a DEFAULT_ARG to represent the unparsed default
16304 argument. */
16305 default_argument = make_node (DEFAULT_ARG);
16306 DEFARG_TOKENS (default_argument)
16307 = cp_token_cache_new (first_token, token);
16308 DEFARG_INSTANTIATIONS (default_argument) = NULL;
16309 }
16310 /* Outside of a class definition, we can just parse the
16311 assignment-expression. */
16312 else
16313 {
16314 token = cp_lexer_peek_token (parser->lexer);
16315 default_argument
16316 = cp_parser_default_argument (parser, template_parm_p);
16317 }
16318
16319 if (!parser->default_arg_ok_p)
16320 {
16321 if (flag_permissive)
16322 warning (0, "deprecated use of default argument for parameter of non-function");
16323 else
16324 {
16325 error_at (token->location,
16326 "default arguments are only "
16327 "permitted for function parameters");
16328 default_argument = NULL_TREE;
16329 }
16330 }
16331 else if ((declarator && declarator->parameter_pack_p)
16332 || (decl_specifiers.type
16333 && PACK_EXPANSION_P (decl_specifiers.type)))
16334 {
16335 /* Find the name of the parameter pack. */
16336 cp_declarator *id_declarator = declarator;
16337 while (id_declarator && id_declarator->kind != cdk_id)
16338 id_declarator = id_declarator->declarator;
16339
16340 if (id_declarator && id_declarator->kind == cdk_id)
16341 error_at (declarator_token_start->location,
16342 template_parm_p
16343 ? "template parameter pack %qD"
16344 " cannot have a default argument"
16345 : "parameter pack %qD cannot have a default argument",
16346 id_declarator->u.id.unqualified_name);
16347 else
16348 error_at (declarator_token_start->location,
16349 template_parm_p
16350 ? "template parameter pack cannot have a default argument"
16351 : "parameter pack cannot have a default argument");
16352
16353 default_argument = NULL_TREE;
16354 }
16355 }
16356 else
16357 default_argument = NULL_TREE;
16358
16359 return make_parameter_declarator (&decl_specifiers,
16360 declarator,
16361 default_argument);
16362 }
16363
16364 /* Parse a default argument and return it.
16365
16366 TEMPLATE_PARM_P is true if this is a default argument for a
16367 non-type template parameter. */
16368 static tree
16369 cp_parser_default_argument (cp_parser *parser, bool template_parm_p)
16370 {
16371 tree default_argument = NULL_TREE;
16372 bool saved_greater_than_is_operator_p;
16373 bool saved_local_variables_forbidden_p;
16374
16375 /* Make sure that PARSER->GREATER_THAN_IS_OPERATOR_P is
16376 set correctly. */
16377 saved_greater_than_is_operator_p = parser->greater_than_is_operator_p;
16378 parser->greater_than_is_operator_p = !template_parm_p;
16379 /* Local variable names (and the `this' keyword) may not
16380 appear in a default argument. */
16381 saved_local_variables_forbidden_p = parser->local_variables_forbidden_p;
16382 parser->local_variables_forbidden_p = true;
16383 /* Parse the assignment-expression. */
16384 if (template_parm_p)
16385 push_deferring_access_checks (dk_no_deferred);
16386 default_argument
16387 = cp_parser_assignment_expression (parser, /*cast_p=*/false, NULL);
16388 if (template_parm_p)
16389 pop_deferring_access_checks ();
16390 parser->greater_than_is_operator_p = saved_greater_than_is_operator_p;
16391 parser->local_variables_forbidden_p = saved_local_variables_forbidden_p;
16392
16393 return default_argument;
16394 }
16395
16396 /* Parse a function-body.
16397
16398 function-body:
16399 compound_statement */
16400
16401 static void
16402 cp_parser_function_body (cp_parser *parser)
16403 {
16404 cp_parser_compound_statement (parser, NULL, false);
16405 }
16406
16407 /* Parse a ctor-initializer-opt followed by a function-body. Return
16408 true if a ctor-initializer was present. */
16409
16410 static bool
16411 cp_parser_ctor_initializer_opt_and_function_body (cp_parser *parser)
16412 {
16413 tree body, list;
16414 bool ctor_initializer_p;
16415 const bool check_body_p =
16416 DECL_CONSTRUCTOR_P (current_function_decl)
16417 && DECL_DECLARED_CONSTEXPR_P (current_function_decl);
16418 tree last = NULL;
16419
16420 /* Begin the function body. */
16421 body = begin_function_body ();
16422 /* Parse the optional ctor-initializer. */
16423 ctor_initializer_p = cp_parser_ctor_initializer_opt (parser);
16424
16425 /* If we're parsing a constexpr constructor definition, we need
16426 to check that the constructor body is indeed empty. However,
16427 before we get to cp_parser_function_body lot of junk has been
16428 generated, so we can't just check that we have an empty block.
16429 Rather we take a snapshot of the outermost block, and check whether
16430 cp_parser_function_body changed its state. */
16431 if (check_body_p)
16432 {
16433 list = body;
16434 if (TREE_CODE (list) == BIND_EXPR)
16435 list = BIND_EXPR_BODY (list);
16436 if (TREE_CODE (list) == STATEMENT_LIST
16437 && STATEMENT_LIST_TAIL (list) != NULL)
16438 last = STATEMENT_LIST_TAIL (list)->stmt;
16439 }
16440 /* Parse the function-body. */
16441 cp_parser_function_body (parser);
16442 if (check_body_p)
16443 check_constexpr_ctor_body (last, list);
16444 /* Finish the function body. */
16445 finish_function_body (body);
16446
16447 return ctor_initializer_p;
16448 }
16449
16450 /* Parse an initializer.
16451
16452 initializer:
16453 = initializer-clause
16454 ( expression-list )
16455
16456 Returns an expression representing the initializer. If no
16457 initializer is present, NULL_TREE is returned.
16458
16459 *IS_DIRECT_INIT is set to FALSE if the `= initializer-clause'
16460 production is used, and TRUE otherwise. *IS_DIRECT_INIT is
16461 set to TRUE if there is no initializer present. If there is an
16462 initializer, and it is not a constant-expression, *NON_CONSTANT_P
16463 is set to true; otherwise it is set to false. */
16464
16465 static tree
16466 cp_parser_initializer (cp_parser* parser, bool* is_direct_init,
16467 bool* non_constant_p)
16468 {
16469 cp_token *token;
16470 tree init;
16471
16472 /* Peek at the next token. */
16473 token = cp_lexer_peek_token (parser->lexer);
16474
16475 /* Let our caller know whether or not this initializer was
16476 parenthesized. */
16477 *is_direct_init = (token->type != CPP_EQ);
16478 /* Assume that the initializer is constant. */
16479 *non_constant_p = false;
16480
16481 if (token->type == CPP_EQ)
16482 {
16483 /* Consume the `='. */
16484 cp_lexer_consume_token (parser->lexer);
16485 /* Parse the initializer-clause. */
16486 init = cp_parser_initializer_clause (parser, non_constant_p);
16487 }
16488 else if (token->type == CPP_OPEN_PAREN)
16489 {
16490 VEC(tree,gc) *vec;
16491 vec = cp_parser_parenthesized_expression_list (parser, non_attr,
16492 /*cast_p=*/false,
16493 /*allow_expansion_p=*/true,
16494 non_constant_p);
16495 if (vec == NULL)
16496 return error_mark_node;
16497 init = build_tree_list_vec (vec);
16498 release_tree_vector (vec);
16499 }
16500 else if (token->type == CPP_OPEN_BRACE)
16501 {
16502 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
16503 init = cp_parser_braced_list (parser, non_constant_p);
16504 CONSTRUCTOR_IS_DIRECT_INIT (init) = 1;
16505 }
16506 else
16507 {
16508 /* Anything else is an error. */
16509 cp_parser_error (parser, "expected initializer");
16510 init = error_mark_node;
16511 }
16512
16513 return init;
16514 }
16515
16516 /* Parse an initializer-clause.
16517
16518 initializer-clause:
16519 assignment-expression
16520 braced-init-list
16521
16522 Returns an expression representing the initializer.
16523
16524 If the `assignment-expression' production is used the value
16525 returned is simply a representation for the expression.
16526
16527 Otherwise, calls cp_parser_braced_list. */
16528
16529 static tree
16530 cp_parser_initializer_clause (cp_parser* parser, bool* non_constant_p)
16531 {
16532 tree initializer;
16533
16534 /* Assume the expression is constant. */
16535 *non_constant_p = false;
16536
16537 /* If it is not a `{', then we are looking at an
16538 assignment-expression. */
16539 if (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE))
16540 {
16541 initializer
16542 = cp_parser_constant_expression (parser,
16543 /*allow_non_constant_p=*/true,
16544 non_constant_p);
16545 if (!*non_constant_p)
16546 {
16547 /* We only want to fold if this is really a constant
16548 expression. FIXME Actually, we don't want to fold here, but in
16549 cp_finish_decl. */
16550 tree folded = fold_non_dependent_expr (initializer);
16551 folded = maybe_constant_value (folded);
16552 if (TREE_CONSTANT (folded))
16553 initializer = folded;
16554 }
16555 }
16556 else
16557 initializer = cp_parser_braced_list (parser, non_constant_p);
16558
16559 return initializer;
16560 }
16561
16562 /* Parse a brace-enclosed initializer list.
16563
16564 braced-init-list:
16565 { initializer-list , [opt] }
16566 { }
16567
16568 Returns a CONSTRUCTOR. The CONSTRUCTOR_ELTS will be
16569 the elements of the initializer-list (or NULL, if the last
16570 production is used). The TREE_TYPE for the CONSTRUCTOR will be
16571 NULL_TREE. There is no way to detect whether or not the optional
16572 trailing `,' was provided. NON_CONSTANT_P is as for
16573 cp_parser_initializer. */
16574
16575 static tree
16576 cp_parser_braced_list (cp_parser* parser, bool* non_constant_p)
16577 {
16578 tree initializer;
16579
16580 /* Consume the `{' token. */
16581 cp_lexer_consume_token (parser->lexer);
16582 /* Create a CONSTRUCTOR to represent the braced-initializer. */
16583 initializer = make_node (CONSTRUCTOR);
16584 /* If it's not a `}', then there is a non-trivial initializer. */
16585 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_BRACE))
16586 {
16587 /* Parse the initializer list. */
16588 CONSTRUCTOR_ELTS (initializer)
16589 = cp_parser_initializer_list (parser, non_constant_p);
16590 /* A trailing `,' token is allowed. */
16591 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
16592 cp_lexer_consume_token (parser->lexer);
16593 }
16594 /* Now, there should be a trailing `}'. */
16595 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
16596 TREE_TYPE (initializer) = init_list_type_node;
16597 return initializer;
16598 }
16599
16600 /* Parse an initializer-list.
16601
16602 initializer-list:
16603 initializer-clause ... [opt]
16604 initializer-list , initializer-clause ... [opt]
16605
16606 GNU Extension:
16607
16608 initializer-list:
16609 identifier : initializer-clause
16610 initializer-list, identifier : initializer-clause
16611
16612 Returns a VEC of constructor_elt. The VALUE of each elt is an expression
16613 for the initializer. If the INDEX of the elt is non-NULL, it is the
16614 IDENTIFIER_NODE naming the field to initialize. NON_CONSTANT_P is
16615 as for cp_parser_initializer. */
16616
16617 static VEC(constructor_elt,gc) *
16618 cp_parser_initializer_list (cp_parser* parser, bool* non_constant_p)
16619 {
16620 VEC(constructor_elt,gc) *v = NULL;
16621
16622 /* Assume all of the expressions are constant. */
16623 *non_constant_p = false;
16624
16625 /* Parse the rest of the list. */
16626 while (true)
16627 {
16628 cp_token *token;
16629 tree identifier;
16630 tree initializer;
16631 bool clause_non_constant_p;
16632
16633 /* If the next token is an identifier and the following one is a
16634 colon, we are looking at the GNU designated-initializer
16635 syntax. */
16636 if (cp_parser_allow_gnu_extensions_p (parser)
16637 && cp_lexer_next_token_is (parser->lexer, CPP_NAME)
16638 && cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_COLON)
16639 {
16640 /* Warn the user that they are using an extension. */
16641 pedwarn (input_location, OPT_pedantic,
16642 "ISO C++ does not allow designated initializers");
16643 /* Consume the identifier. */
16644 identifier = cp_lexer_consume_token (parser->lexer)->u.value;
16645 /* Consume the `:'. */
16646 cp_lexer_consume_token (parser->lexer);
16647 }
16648 else
16649 identifier = NULL_TREE;
16650
16651 /* Parse the initializer. */
16652 initializer = cp_parser_initializer_clause (parser,
16653 &clause_non_constant_p);
16654 /* If any clause is non-constant, so is the entire initializer. */
16655 if (clause_non_constant_p)
16656 *non_constant_p = true;
16657
16658 /* If we have an ellipsis, this is an initializer pack
16659 expansion. */
16660 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
16661 {
16662 /* Consume the `...'. */
16663 cp_lexer_consume_token (parser->lexer);
16664
16665 /* Turn the initializer into an initializer expansion. */
16666 initializer = make_pack_expansion (initializer);
16667 }
16668
16669 /* Add it to the vector. */
16670 CONSTRUCTOR_APPEND_ELT(v, identifier, initializer);
16671
16672 /* If the next token is not a comma, we have reached the end of
16673 the list. */
16674 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
16675 break;
16676
16677 /* Peek at the next token. */
16678 token = cp_lexer_peek_nth_token (parser->lexer, 2);
16679 /* If the next token is a `}', then we're still done. An
16680 initializer-clause can have a trailing `,' after the
16681 initializer-list and before the closing `}'. */
16682 if (token->type == CPP_CLOSE_BRACE)
16683 break;
16684
16685 /* Consume the `,' token. */
16686 cp_lexer_consume_token (parser->lexer);
16687 }
16688
16689 return v;
16690 }
16691
16692 /* Classes [gram.class] */
16693
16694 /* Parse a class-name.
16695
16696 class-name:
16697 identifier
16698 template-id
16699
16700 TYPENAME_KEYWORD_P is true iff the `typename' keyword has been used
16701 to indicate that names looked up in dependent types should be
16702 assumed to be types. TEMPLATE_KEYWORD_P is true iff the `template'
16703 keyword has been used to indicate that the name that appears next
16704 is a template. TAG_TYPE indicates the explicit tag given before
16705 the type name, if any. If CHECK_DEPENDENCY_P is FALSE, names are
16706 looked up in dependent scopes. If CLASS_HEAD_P is TRUE, this class
16707 is the class being defined in a class-head.
16708
16709 Returns the TYPE_DECL representing the class. */
16710
16711 static tree
16712 cp_parser_class_name (cp_parser *parser,
16713 bool typename_keyword_p,
16714 bool template_keyword_p,
16715 enum tag_types tag_type,
16716 bool check_dependency_p,
16717 bool class_head_p,
16718 bool is_declaration)
16719 {
16720 tree decl;
16721 tree scope;
16722 bool typename_p;
16723 cp_token *token;
16724 tree identifier = NULL_TREE;
16725
16726 /* All class-names start with an identifier. */
16727 token = cp_lexer_peek_token (parser->lexer);
16728 if (token->type != CPP_NAME && token->type != CPP_TEMPLATE_ID)
16729 {
16730 cp_parser_error (parser, "expected class-name");
16731 return error_mark_node;
16732 }
16733
16734 /* PARSER->SCOPE can be cleared when parsing the template-arguments
16735 to a template-id, so we save it here. */
16736 scope = parser->scope;
16737 if (scope == error_mark_node)
16738 return error_mark_node;
16739
16740 /* Any name names a type if we're following the `typename' keyword
16741 in a qualified name where the enclosing scope is type-dependent. */
16742 typename_p = (typename_keyword_p && scope && TYPE_P (scope)
16743 && dependent_type_p (scope));
16744 /* Handle the common case (an identifier, but not a template-id)
16745 efficiently. */
16746 if (token->type == CPP_NAME
16747 && !cp_parser_nth_token_starts_template_argument_list_p (parser, 2))
16748 {
16749 cp_token *identifier_token;
16750 bool ambiguous_p;
16751
16752 /* Look for the identifier. */
16753 identifier_token = cp_lexer_peek_token (parser->lexer);
16754 ambiguous_p = identifier_token->ambiguous_p;
16755 identifier = cp_parser_identifier (parser);
16756 /* If the next token isn't an identifier, we are certainly not
16757 looking at a class-name. */
16758 if (identifier == error_mark_node)
16759 decl = error_mark_node;
16760 /* If we know this is a type-name, there's no need to look it
16761 up. */
16762 else if (typename_p)
16763 decl = identifier;
16764 else
16765 {
16766 tree ambiguous_decls;
16767 /* If we already know that this lookup is ambiguous, then
16768 we've already issued an error message; there's no reason
16769 to check again. */
16770 if (ambiguous_p)
16771 {
16772 cp_parser_simulate_error (parser);
16773 return error_mark_node;
16774 }
16775 /* If the next token is a `::', then the name must be a type
16776 name.
16777
16778 [basic.lookup.qual]
16779
16780 During the lookup for a name preceding the :: scope
16781 resolution operator, object, function, and enumerator
16782 names are ignored. */
16783 if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
16784 tag_type = typename_type;
16785 /* Look up the name. */
16786 decl = cp_parser_lookup_name (parser, identifier,
16787 tag_type,
16788 /*is_template=*/false,
16789 /*is_namespace=*/false,
16790 check_dependency_p,
16791 &ambiguous_decls,
16792 identifier_token->location);
16793 if (ambiguous_decls)
16794 {
16795 if (cp_parser_parsing_tentatively (parser))
16796 cp_parser_simulate_error (parser);
16797 return error_mark_node;
16798 }
16799 }
16800 }
16801 else
16802 {
16803 /* Try a template-id. */
16804 decl = cp_parser_template_id (parser, template_keyword_p,
16805 check_dependency_p,
16806 is_declaration);
16807 if (decl == error_mark_node)
16808 return error_mark_node;
16809 }
16810
16811 decl = cp_parser_maybe_treat_template_as_class (decl, class_head_p);
16812
16813 /* If this is a typename, create a TYPENAME_TYPE. */
16814 if (typename_p && decl != error_mark_node)
16815 {
16816 decl = make_typename_type (scope, decl, typename_type,
16817 /*complain=*/tf_error);
16818 if (decl != error_mark_node)
16819 decl = TYPE_NAME (decl);
16820 }
16821
16822 /* Check to see that it is really the name of a class. */
16823 if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
16824 && TREE_CODE (TREE_OPERAND (decl, 0)) == IDENTIFIER_NODE
16825 && cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
16826 /* Situations like this:
16827
16828 template <typename T> struct A {
16829 typename T::template X<int>::I i;
16830 };
16831
16832 are problematic. Is `T::template X<int>' a class-name? The
16833 standard does not seem to be definitive, but there is no other
16834 valid interpretation of the following `::'. Therefore, those
16835 names are considered class-names. */
16836 {
16837 decl = make_typename_type (scope, decl, tag_type, tf_error);
16838 if (decl != error_mark_node)
16839 decl = TYPE_NAME (decl);
16840 }
16841 else if (TREE_CODE (decl) != TYPE_DECL
16842 || TREE_TYPE (decl) == error_mark_node
16843 || !MAYBE_CLASS_TYPE_P (TREE_TYPE (decl))
16844 /* In Objective-C 2.0, a classname followed by '.' starts a
16845 dot-syntax expression, and it's not a type-name. */
16846 || (c_dialect_objc ()
16847 && cp_lexer_peek_token (parser->lexer)->type == CPP_DOT
16848 && objc_is_class_name (decl)))
16849 decl = error_mark_node;
16850
16851 if (decl == error_mark_node)
16852 cp_parser_error (parser, "expected class-name");
16853 else if (identifier && !parser->scope)
16854 maybe_note_name_used_in_class (identifier, decl);
16855
16856 return decl;
16857 }
16858
16859 /* Parse a class-specifier.
16860
16861 class-specifier:
16862 class-head { member-specification [opt] }
16863
16864 Returns the TREE_TYPE representing the class. */
16865
16866 static tree
16867 cp_parser_class_specifier (cp_parser* parser)
16868 {
16869 tree type;
16870 tree attributes = NULL_TREE;
16871 bool nested_name_specifier_p;
16872 unsigned saved_num_template_parameter_lists;
16873 bool saved_in_function_body;
16874 bool saved_in_unbraced_linkage_specification_p;
16875 tree old_scope = NULL_TREE;
16876 tree scope = NULL_TREE;
16877 tree bases;
16878 cp_token *closing_brace;
16879
16880 push_deferring_access_checks (dk_no_deferred);
16881
16882 /* Parse the class-head. */
16883 type = cp_parser_class_head (parser,
16884 &nested_name_specifier_p,
16885 &attributes,
16886 &bases);
16887 /* If the class-head was a semantic disaster, skip the entire body
16888 of the class. */
16889 if (!type)
16890 {
16891 cp_parser_skip_to_end_of_block_or_statement (parser);
16892 pop_deferring_access_checks ();
16893 return error_mark_node;
16894 }
16895
16896 /* Look for the `{'. */
16897 if (!cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
16898 {
16899 pop_deferring_access_checks ();
16900 return error_mark_node;
16901 }
16902
16903 /* Process the base classes. If they're invalid, skip the
16904 entire class body. */
16905 if (!xref_basetypes (type, bases))
16906 {
16907 /* Consuming the closing brace yields better error messages
16908 later on. */
16909 if (cp_parser_skip_to_closing_brace (parser))
16910 cp_lexer_consume_token (parser->lexer);
16911 pop_deferring_access_checks ();
16912 return error_mark_node;
16913 }
16914
16915 /* Issue an error message if type-definitions are forbidden here. */
16916 cp_parser_check_type_definition (parser);
16917 /* Remember that we are defining one more class. */
16918 ++parser->num_classes_being_defined;
16919 /* Inside the class, surrounding template-parameter-lists do not
16920 apply. */
16921 saved_num_template_parameter_lists
16922 = parser->num_template_parameter_lists;
16923 parser->num_template_parameter_lists = 0;
16924 /* We are not in a function body. */
16925 saved_in_function_body = parser->in_function_body;
16926 parser->in_function_body = false;
16927 /* We are not immediately inside an extern "lang" block. */
16928 saved_in_unbraced_linkage_specification_p
16929 = parser->in_unbraced_linkage_specification_p;
16930 parser->in_unbraced_linkage_specification_p = false;
16931
16932 /* Start the class. */
16933 if (nested_name_specifier_p)
16934 {
16935 scope = CP_DECL_CONTEXT (TYPE_MAIN_DECL (type));
16936 old_scope = push_inner_scope (scope);
16937 }
16938 type = begin_class_definition (type, attributes);
16939
16940 if (type == error_mark_node)
16941 /* If the type is erroneous, skip the entire body of the class. */
16942 cp_parser_skip_to_closing_brace (parser);
16943 else
16944 /* Parse the member-specification. */
16945 cp_parser_member_specification_opt (parser);
16946
16947 /* Look for the trailing `}'. */
16948 closing_brace = cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
16949 /* Look for trailing attributes to apply to this class. */
16950 if (cp_parser_allow_gnu_extensions_p (parser))
16951 attributes = cp_parser_attributes_opt (parser);
16952 if (type != error_mark_node)
16953 type = finish_struct (type, attributes);
16954 if (nested_name_specifier_p)
16955 pop_inner_scope (old_scope, scope);
16956
16957 /* We've finished a type definition. Check for the common syntax
16958 error of forgetting a semicolon after the definition. We need to
16959 be careful, as we can't just check for not-a-semicolon and be done
16960 with it; the user might have typed:
16961
16962 class X { } c = ...;
16963 class X { } *p = ...;
16964
16965 and so forth. Instead, enumerate all the possible tokens that
16966 might follow this production; if we don't see one of them, then
16967 complain and silently insert the semicolon. */
16968 {
16969 cp_token *token = cp_lexer_peek_token (parser->lexer);
16970 bool want_semicolon = true;
16971
16972 switch (token->type)
16973 {
16974 case CPP_NAME:
16975 case CPP_SEMICOLON:
16976 case CPP_MULT:
16977 case CPP_AND:
16978 case CPP_OPEN_PAREN:
16979 case CPP_CLOSE_PAREN:
16980 case CPP_COMMA:
16981 want_semicolon = false;
16982 break;
16983
16984 /* While it's legal for type qualifiers and storage class
16985 specifiers to follow type definitions in the grammar, only
16986 compiler testsuites contain code like that. Assume that if
16987 we see such code, then what we're really seeing is a case
16988 like:
16989
16990 class X { }
16991 const <type> var = ...;
16992
16993 or
16994
16995 class Y { }
16996 static <type> func (...) ...
16997
16998 i.e. the qualifier or specifier applies to the next
16999 declaration. To do so, however, we need to look ahead one
17000 more token to see if *that* token is a type specifier.
17001
17002 This code could be improved to handle:
17003
17004 class Z { }
17005 static const <type> var = ...; */
17006 case CPP_KEYWORD:
17007 if (keyword_is_decl_specifier (token->keyword))
17008 {
17009 cp_token *lookahead = cp_lexer_peek_nth_token (parser->lexer, 2);
17010
17011 /* Handling user-defined types here would be nice, but very
17012 tricky. */
17013 want_semicolon
17014 = (lookahead->type == CPP_KEYWORD
17015 && keyword_begins_type_specifier (lookahead->keyword));
17016 }
17017 break;
17018 default:
17019 break;
17020 }
17021
17022 /* If we don't have a type, then something is very wrong and we
17023 shouldn't try to do anything clever. Likewise for not seeing the
17024 closing brace. */
17025 if (closing_brace && TYPE_P (type) && want_semicolon)
17026 {
17027 cp_token_position prev
17028 = cp_lexer_previous_token_position (parser->lexer);
17029 cp_token *prev_token = cp_lexer_token_at (parser->lexer, prev);
17030 location_t loc = prev_token->location;
17031
17032 if (CLASSTYPE_DECLARED_CLASS (type))
17033 error_at (loc, "expected %<;%> after class definition");
17034 else if (TREE_CODE (type) == RECORD_TYPE)
17035 error_at (loc, "expected %<;%> after struct definition");
17036 else if (TREE_CODE (type) == UNION_TYPE)
17037 error_at (loc, "expected %<;%> after union definition");
17038 else
17039 gcc_unreachable ();
17040
17041 /* Unget one token and smash it to look as though we encountered
17042 a semicolon in the input stream. */
17043 cp_lexer_set_token_position (parser->lexer, prev);
17044 token = cp_lexer_peek_token (parser->lexer);
17045 token->type = CPP_SEMICOLON;
17046 token->keyword = RID_MAX;
17047 }
17048 }
17049
17050 /* If this class is not itself within the scope of another class,
17051 then we need to parse the bodies of all of the queued function
17052 definitions. Note that the queued functions defined in a class
17053 are not always processed immediately following the
17054 class-specifier for that class. Consider:
17055
17056 struct A {
17057 struct B { void f() { sizeof (A); } };
17058 };
17059
17060 If `f' were processed before the processing of `A' were
17061 completed, there would be no way to compute the size of `A'.
17062 Note that the nesting we are interested in here is lexical --
17063 not the semantic nesting given by TYPE_CONTEXT. In particular,
17064 for:
17065
17066 struct A { struct B; };
17067 struct A::B { void f() { } };
17068
17069 there is no need to delay the parsing of `A::B::f'. */
17070 if (--parser->num_classes_being_defined == 0)
17071 {
17072 tree fn;
17073 tree class_type = NULL_TREE;
17074 tree pushed_scope = NULL_TREE;
17075 unsigned ix;
17076 cp_default_arg_entry *e;
17077
17078 /* In a first pass, parse default arguments to the functions.
17079 Then, in a second pass, parse the bodies of the functions.
17080 This two-phased approach handles cases like:
17081
17082 struct S {
17083 void f() { g(); }
17084 void g(int i = 3);
17085 };
17086
17087 */
17088 FOR_EACH_VEC_ELT (cp_default_arg_entry, unparsed_funs_with_default_args,
17089 ix, e)
17090 {
17091 fn = e->decl;
17092 /* If there are default arguments that have not yet been processed,
17093 take care of them now. */
17094 if (class_type != e->class_type)
17095 {
17096 if (pushed_scope)
17097 pop_scope (pushed_scope);
17098 class_type = e->class_type;
17099 pushed_scope = push_scope (class_type);
17100 }
17101 /* Make sure that any template parameters are in scope. */
17102 maybe_begin_member_template_processing (fn);
17103 /* Parse the default argument expressions. */
17104 cp_parser_late_parsing_default_args (parser, fn);
17105 /* Remove any template parameters from the symbol table. */
17106 maybe_end_member_template_processing ();
17107 }
17108 if (pushed_scope)
17109 pop_scope (pushed_scope);
17110 VEC_truncate (cp_default_arg_entry, unparsed_funs_with_default_args, 0);
17111 /* Now parse the body of the functions. */
17112 FOR_EACH_VEC_ELT (tree, unparsed_funs_with_definitions, ix, fn)
17113 cp_parser_late_parsing_for_member (parser, fn);
17114 VEC_truncate (tree, unparsed_funs_with_definitions, 0);
17115 }
17116
17117 /* Put back any saved access checks. */
17118 pop_deferring_access_checks ();
17119
17120 /* Restore saved state. */
17121 parser->in_function_body = saved_in_function_body;
17122 parser->num_template_parameter_lists
17123 = saved_num_template_parameter_lists;
17124 parser->in_unbraced_linkage_specification_p
17125 = saved_in_unbraced_linkage_specification_p;
17126
17127 return type;
17128 }
17129
17130 /* Parse a class-head.
17131
17132 class-head:
17133 class-key identifier [opt] base-clause [opt]
17134 class-key nested-name-specifier identifier base-clause [opt]
17135 class-key nested-name-specifier [opt] template-id
17136 base-clause [opt]
17137
17138 GNU Extensions:
17139 class-key attributes identifier [opt] base-clause [opt]
17140 class-key attributes nested-name-specifier identifier base-clause [opt]
17141 class-key attributes nested-name-specifier [opt] template-id
17142 base-clause [opt]
17143
17144 Upon return BASES is initialized to the list of base classes (or
17145 NULL, if there are none) in the same form returned by
17146 cp_parser_base_clause.
17147
17148 Returns the TYPE of the indicated class. Sets
17149 *NESTED_NAME_SPECIFIER_P to TRUE iff one of the productions
17150 involving a nested-name-specifier was used, and FALSE otherwise.
17151
17152 Returns error_mark_node if this is not a class-head.
17153
17154 Returns NULL_TREE if the class-head is syntactically valid, but
17155 semantically invalid in a way that means we should skip the entire
17156 body of the class. */
17157
17158 static tree
17159 cp_parser_class_head (cp_parser* parser,
17160 bool* nested_name_specifier_p,
17161 tree *attributes_p,
17162 tree *bases)
17163 {
17164 tree nested_name_specifier;
17165 enum tag_types class_key;
17166 tree id = NULL_TREE;
17167 tree type = NULL_TREE;
17168 tree attributes;
17169 bool template_id_p = false;
17170 bool qualified_p = false;
17171 bool invalid_nested_name_p = false;
17172 bool invalid_explicit_specialization_p = false;
17173 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
17174 tree pushed_scope = NULL_TREE;
17175 unsigned num_templates;
17176 cp_token *type_start_token = NULL, *nested_name_specifier_token_start = NULL;
17177 /* Assume no nested-name-specifier will be present. */
17178 *nested_name_specifier_p = false;
17179 /* Assume no template parameter lists will be used in defining the
17180 type. */
17181 num_templates = 0;
17182 parser->colon_corrects_to_scope_p = false;
17183
17184 *bases = NULL_TREE;
17185
17186 /* Look for the class-key. */
17187 class_key = cp_parser_class_key (parser);
17188 if (class_key == none_type)
17189 return error_mark_node;
17190
17191 /* Parse the attributes. */
17192 attributes = cp_parser_attributes_opt (parser);
17193
17194 /* If the next token is `::', that is invalid -- but sometimes
17195 people do try to write:
17196
17197 struct ::S {};
17198
17199 Handle this gracefully by accepting the extra qualifier, and then
17200 issuing an error about it later if this really is a
17201 class-head. If it turns out just to be an elaborated type
17202 specifier, remain silent. */
17203 if (cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/false))
17204 qualified_p = true;
17205
17206 push_deferring_access_checks (dk_no_check);
17207
17208 /* Determine the name of the class. Begin by looking for an
17209 optional nested-name-specifier. */
17210 nested_name_specifier_token_start = cp_lexer_peek_token (parser->lexer);
17211 nested_name_specifier
17212 = cp_parser_nested_name_specifier_opt (parser,
17213 /*typename_keyword_p=*/false,
17214 /*check_dependency_p=*/false,
17215 /*type_p=*/false,
17216 /*is_declaration=*/false);
17217 /* If there was a nested-name-specifier, then there *must* be an
17218 identifier. */
17219 if (nested_name_specifier)
17220 {
17221 type_start_token = cp_lexer_peek_token (parser->lexer);
17222 /* Although the grammar says `identifier', it really means
17223 `class-name' or `template-name'. You are only allowed to
17224 define a class that has already been declared with this
17225 syntax.
17226
17227 The proposed resolution for Core Issue 180 says that wherever
17228 you see `class T::X' you should treat `X' as a type-name.
17229
17230 It is OK to define an inaccessible class; for example:
17231
17232 class A { class B; };
17233 class A::B {};
17234
17235 We do not know if we will see a class-name, or a
17236 template-name. We look for a class-name first, in case the
17237 class-name is a template-id; if we looked for the
17238 template-name first we would stop after the template-name. */
17239 cp_parser_parse_tentatively (parser);
17240 type = cp_parser_class_name (parser,
17241 /*typename_keyword_p=*/false,
17242 /*template_keyword_p=*/false,
17243 class_type,
17244 /*check_dependency_p=*/false,
17245 /*class_head_p=*/true,
17246 /*is_declaration=*/false);
17247 /* If that didn't work, ignore the nested-name-specifier. */
17248 if (!cp_parser_parse_definitely (parser))
17249 {
17250 invalid_nested_name_p = true;
17251 type_start_token = cp_lexer_peek_token (parser->lexer);
17252 id = cp_parser_identifier (parser);
17253 if (id == error_mark_node)
17254 id = NULL_TREE;
17255 }
17256 /* If we could not find a corresponding TYPE, treat this
17257 declaration like an unqualified declaration. */
17258 if (type == error_mark_node)
17259 nested_name_specifier = NULL_TREE;
17260 /* Otherwise, count the number of templates used in TYPE and its
17261 containing scopes. */
17262 else
17263 {
17264 tree scope;
17265
17266 for (scope = TREE_TYPE (type);
17267 scope && TREE_CODE (scope) != NAMESPACE_DECL;
17268 scope = (TYPE_P (scope)
17269 ? TYPE_CONTEXT (scope)
17270 : DECL_CONTEXT (scope)))
17271 if (TYPE_P (scope)
17272 && CLASS_TYPE_P (scope)
17273 && CLASSTYPE_TEMPLATE_INFO (scope)
17274 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (scope))
17275 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (scope))
17276 ++num_templates;
17277 }
17278 }
17279 /* Otherwise, the identifier is optional. */
17280 else
17281 {
17282 /* We don't know whether what comes next is a template-id,
17283 an identifier, or nothing at all. */
17284 cp_parser_parse_tentatively (parser);
17285 /* Check for a template-id. */
17286 type_start_token = cp_lexer_peek_token (parser->lexer);
17287 id = cp_parser_template_id (parser,
17288 /*template_keyword_p=*/false,
17289 /*check_dependency_p=*/true,
17290 /*is_declaration=*/true);
17291 /* If that didn't work, it could still be an identifier. */
17292 if (!cp_parser_parse_definitely (parser))
17293 {
17294 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
17295 {
17296 type_start_token = cp_lexer_peek_token (parser->lexer);
17297 id = cp_parser_identifier (parser);
17298 }
17299 else
17300 id = NULL_TREE;
17301 }
17302 else
17303 {
17304 template_id_p = true;
17305 ++num_templates;
17306 }
17307 }
17308
17309 pop_deferring_access_checks ();
17310
17311 if (id)
17312 cp_parser_check_for_invalid_template_id (parser, id,
17313 type_start_token->location);
17314
17315 /* If it's not a `:' or a `{' then we can't really be looking at a
17316 class-head, since a class-head only appears as part of a
17317 class-specifier. We have to detect this situation before calling
17318 xref_tag, since that has irreversible side-effects. */
17319 if (!cp_parser_next_token_starts_class_definition_p (parser))
17320 {
17321 cp_parser_error (parser, "expected %<{%> or %<:%>");
17322 type = error_mark_node;
17323 goto out;
17324 }
17325
17326 /* At this point, we're going ahead with the class-specifier, even
17327 if some other problem occurs. */
17328 cp_parser_commit_to_tentative_parse (parser);
17329 /* Issue the error about the overly-qualified name now. */
17330 if (qualified_p)
17331 {
17332 cp_parser_error (parser,
17333 "global qualification of class name is invalid");
17334 type = error_mark_node;
17335 goto out;
17336 }
17337 else if (invalid_nested_name_p)
17338 {
17339 cp_parser_error (parser,
17340 "qualified name does not name a class");
17341 type = error_mark_node;
17342 goto out;
17343 }
17344 else if (nested_name_specifier)
17345 {
17346 tree scope;
17347
17348 /* Reject typedef-names in class heads. */
17349 if (!DECL_IMPLICIT_TYPEDEF_P (type))
17350 {
17351 error_at (type_start_token->location,
17352 "invalid class name in declaration of %qD",
17353 type);
17354 type = NULL_TREE;
17355 goto done;
17356 }
17357
17358 /* Figure out in what scope the declaration is being placed. */
17359 scope = current_scope ();
17360 /* If that scope does not contain the scope in which the
17361 class was originally declared, the program is invalid. */
17362 if (scope && !is_ancestor (scope, nested_name_specifier))
17363 {
17364 if (at_namespace_scope_p ())
17365 error_at (type_start_token->location,
17366 "declaration of %qD in namespace %qD which does not "
17367 "enclose %qD",
17368 type, scope, nested_name_specifier);
17369 else
17370 error_at (type_start_token->location,
17371 "declaration of %qD in %qD which does not enclose %qD",
17372 type, scope, nested_name_specifier);
17373 type = NULL_TREE;
17374 goto done;
17375 }
17376 /* [dcl.meaning]
17377
17378 A declarator-id shall not be qualified except for the
17379 definition of a ... nested class outside of its class
17380 ... [or] the definition or explicit instantiation of a
17381 class member of a namespace outside of its namespace. */
17382 if (scope == nested_name_specifier)
17383 {
17384 permerror (nested_name_specifier_token_start->location,
17385 "extra qualification not allowed");
17386 nested_name_specifier = NULL_TREE;
17387 num_templates = 0;
17388 }
17389 }
17390 /* An explicit-specialization must be preceded by "template <>". If
17391 it is not, try to recover gracefully. */
17392 if (at_namespace_scope_p ()
17393 && parser->num_template_parameter_lists == 0
17394 && template_id_p)
17395 {
17396 error_at (type_start_token->location,
17397 "an explicit specialization must be preceded by %<template <>%>");
17398 invalid_explicit_specialization_p = true;
17399 /* Take the same action that would have been taken by
17400 cp_parser_explicit_specialization. */
17401 ++parser->num_template_parameter_lists;
17402 begin_specialization ();
17403 }
17404 /* There must be no "return" statements between this point and the
17405 end of this function; set "type "to the correct return value and
17406 use "goto done;" to return. */
17407 /* Make sure that the right number of template parameters were
17408 present. */
17409 if (!cp_parser_check_template_parameters (parser, num_templates,
17410 type_start_token->location,
17411 /*declarator=*/NULL))
17412 {
17413 /* If something went wrong, there is no point in even trying to
17414 process the class-definition. */
17415 type = NULL_TREE;
17416 goto done;
17417 }
17418
17419 /* Look up the type. */
17420 if (template_id_p)
17421 {
17422 if (TREE_CODE (id) == TEMPLATE_ID_EXPR
17423 && (DECL_FUNCTION_TEMPLATE_P (TREE_OPERAND (id, 0))
17424 || TREE_CODE (TREE_OPERAND (id, 0)) == OVERLOAD))
17425 {
17426 error_at (type_start_token->location,
17427 "function template %qD redeclared as a class template", id);
17428 type = error_mark_node;
17429 }
17430 else
17431 {
17432 type = TREE_TYPE (id);
17433 type = maybe_process_partial_specialization (type);
17434 }
17435 if (nested_name_specifier)
17436 pushed_scope = push_scope (nested_name_specifier);
17437 }
17438 else if (nested_name_specifier)
17439 {
17440 tree class_type;
17441
17442 /* Given:
17443
17444 template <typename T> struct S { struct T };
17445 template <typename T> struct S<T>::T { };
17446
17447 we will get a TYPENAME_TYPE when processing the definition of
17448 `S::T'. We need to resolve it to the actual type before we
17449 try to define it. */
17450 if (TREE_CODE (TREE_TYPE (type)) == TYPENAME_TYPE)
17451 {
17452 class_type = resolve_typename_type (TREE_TYPE (type),
17453 /*only_current_p=*/false);
17454 if (TREE_CODE (class_type) != TYPENAME_TYPE)
17455 type = TYPE_NAME (class_type);
17456 else
17457 {
17458 cp_parser_error (parser, "could not resolve typename type");
17459 type = error_mark_node;
17460 }
17461 }
17462
17463 if (maybe_process_partial_specialization (TREE_TYPE (type))
17464 == error_mark_node)
17465 {
17466 type = NULL_TREE;
17467 goto done;
17468 }
17469
17470 class_type = current_class_type;
17471 /* Enter the scope indicated by the nested-name-specifier. */
17472 pushed_scope = push_scope (nested_name_specifier);
17473 /* Get the canonical version of this type. */
17474 type = TYPE_MAIN_DECL (TREE_TYPE (type));
17475 if (PROCESSING_REAL_TEMPLATE_DECL_P ()
17476 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (type)))
17477 {
17478 type = push_template_decl (type);
17479 if (type == error_mark_node)
17480 {
17481 type = NULL_TREE;
17482 goto done;
17483 }
17484 }
17485
17486 type = TREE_TYPE (type);
17487 *nested_name_specifier_p = true;
17488 }
17489 else /* The name is not a nested name. */
17490 {
17491 /* If the class was unnamed, create a dummy name. */
17492 if (!id)
17493 id = make_anon_name ();
17494 type = xref_tag (class_key, id, /*tag_scope=*/ts_current,
17495 parser->num_template_parameter_lists);
17496 }
17497
17498 /* Indicate whether this class was declared as a `class' or as a
17499 `struct'. */
17500 if (TREE_CODE (type) == RECORD_TYPE)
17501 CLASSTYPE_DECLARED_CLASS (type) = (class_key == class_type);
17502 cp_parser_check_class_key (class_key, type);
17503
17504 /* If this type was already complete, and we see another definition,
17505 that's an error. */
17506 if (type != error_mark_node && COMPLETE_TYPE_P (type))
17507 {
17508 error_at (type_start_token->location, "redefinition of %q#T",
17509 type);
17510 error_at (type_start_token->location, "previous definition of %q+#T",
17511 type);
17512 type = NULL_TREE;
17513 goto done;
17514 }
17515 else if (type == error_mark_node)
17516 type = NULL_TREE;
17517
17518 /* We will have entered the scope containing the class; the names of
17519 base classes should be looked up in that context. For example:
17520
17521 struct A { struct B {}; struct C; };
17522 struct A::C : B {};
17523
17524 is valid. */
17525
17526 /* Get the list of base-classes, if there is one. */
17527 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
17528 *bases = cp_parser_base_clause (parser);
17529
17530 done:
17531 /* Leave the scope given by the nested-name-specifier. We will
17532 enter the class scope itself while processing the members. */
17533 if (pushed_scope)
17534 pop_scope (pushed_scope);
17535
17536 if (invalid_explicit_specialization_p)
17537 {
17538 end_specialization ();
17539 --parser->num_template_parameter_lists;
17540 }
17541
17542 if (type)
17543 DECL_SOURCE_LOCATION (TYPE_NAME (type)) = type_start_token->location;
17544 *attributes_p = attributes;
17545 out:
17546 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
17547 return type;
17548 }
17549
17550 /* Parse a class-key.
17551
17552 class-key:
17553 class
17554 struct
17555 union
17556
17557 Returns the kind of class-key specified, or none_type to indicate
17558 error. */
17559
17560 static enum tag_types
17561 cp_parser_class_key (cp_parser* parser)
17562 {
17563 cp_token *token;
17564 enum tag_types tag_type;
17565
17566 /* Look for the class-key. */
17567 token = cp_parser_require (parser, CPP_KEYWORD, RT_CLASS_KEY);
17568 if (!token)
17569 return none_type;
17570
17571 /* Check to see if the TOKEN is a class-key. */
17572 tag_type = cp_parser_token_is_class_key (token);
17573 if (!tag_type)
17574 cp_parser_error (parser, "expected class-key");
17575 return tag_type;
17576 }
17577
17578 /* Parse an (optional) member-specification.
17579
17580 member-specification:
17581 member-declaration member-specification [opt]
17582 access-specifier : member-specification [opt] */
17583
17584 static void
17585 cp_parser_member_specification_opt (cp_parser* parser)
17586 {
17587 while (true)
17588 {
17589 cp_token *token;
17590 enum rid keyword;
17591
17592 /* Peek at the next token. */
17593 token = cp_lexer_peek_token (parser->lexer);
17594 /* If it's a `}', or EOF then we've seen all the members. */
17595 if (token->type == CPP_CLOSE_BRACE
17596 || token->type == CPP_EOF
17597 || token->type == CPP_PRAGMA_EOL)
17598 break;
17599
17600 /* See if this token is a keyword. */
17601 keyword = token->keyword;
17602 switch (keyword)
17603 {
17604 case RID_PUBLIC:
17605 case RID_PROTECTED:
17606 case RID_PRIVATE:
17607 /* Consume the access-specifier. */
17608 cp_lexer_consume_token (parser->lexer);
17609 /* Remember which access-specifier is active. */
17610 current_access_specifier = token->u.value;
17611 /* Look for the `:'. */
17612 cp_parser_require (parser, CPP_COLON, RT_COLON);
17613 break;
17614
17615 default:
17616 /* Accept #pragmas at class scope. */
17617 if (token->type == CPP_PRAGMA)
17618 {
17619 cp_parser_pragma (parser, pragma_external);
17620 break;
17621 }
17622
17623 /* Otherwise, the next construction must be a
17624 member-declaration. */
17625 cp_parser_member_declaration (parser);
17626 }
17627 }
17628 }
17629
17630 /* Parse a member-declaration.
17631
17632 member-declaration:
17633 decl-specifier-seq [opt] member-declarator-list [opt] ;
17634 function-definition ; [opt]
17635 :: [opt] nested-name-specifier template [opt] unqualified-id ;
17636 using-declaration
17637 template-declaration
17638
17639 member-declarator-list:
17640 member-declarator
17641 member-declarator-list , member-declarator
17642
17643 member-declarator:
17644 declarator pure-specifier [opt]
17645 declarator constant-initializer [opt]
17646 identifier [opt] : constant-expression
17647
17648 GNU Extensions:
17649
17650 member-declaration:
17651 __extension__ member-declaration
17652
17653 member-declarator:
17654 declarator attributes [opt] pure-specifier [opt]
17655 declarator attributes [opt] constant-initializer [opt]
17656 identifier [opt] attributes [opt] : constant-expression
17657
17658 C++0x Extensions:
17659
17660 member-declaration:
17661 static_assert-declaration */
17662
17663 static void
17664 cp_parser_member_declaration (cp_parser* parser)
17665 {
17666 cp_decl_specifier_seq decl_specifiers;
17667 tree prefix_attributes;
17668 tree decl;
17669 int declares_class_or_enum;
17670 bool friend_p;
17671 cp_token *token = NULL;
17672 cp_token *decl_spec_token_start = NULL;
17673 cp_token *initializer_token_start = NULL;
17674 int saved_pedantic;
17675 bool saved_colon_corrects_to_scope_p = parser->colon_corrects_to_scope_p;
17676
17677 /* Check for the `__extension__' keyword. */
17678 if (cp_parser_extension_opt (parser, &saved_pedantic))
17679 {
17680 /* Recurse. */
17681 cp_parser_member_declaration (parser);
17682 /* Restore the old value of the PEDANTIC flag. */
17683 pedantic = saved_pedantic;
17684
17685 return;
17686 }
17687
17688 /* Check for a template-declaration. */
17689 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
17690 {
17691 /* An explicit specialization here is an error condition, and we
17692 expect the specialization handler to detect and report this. */
17693 if (cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_LESS
17694 && cp_lexer_peek_nth_token (parser->lexer, 3)->type == CPP_GREATER)
17695 cp_parser_explicit_specialization (parser);
17696 else
17697 cp_parser_template_declaration (parser, /*member_p=*/true);
17698
17699 return;
17700 }
17701
17702 /* Check for a using-declaration. */
17703 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_USING))
17704 {
17705 /* Parse the using-declaration. */
17706 cp_parser_using_declaration (parser,
17707 /*access_declaration_p=*/false);
17708 return;
17709 }
17710
17711 /* Check for @defs. */
17712 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_AT_DEFS))
17713 {
17714 tree ivar, member;
17715 tree ivar_chains = cp_parser_objc_defs_expression (parser);
17716 ivar = ivar_chains;
17717 while (ivar)
17718 {
17719 member = ivar;
17720 ivar = TREE_CHAIN (member);
17721 TREE_CHAIN (member) = NULL_TREE;
17722 finish_member_declaration (member);
17723 }
17724 return;
17725 }
17726
17727 /* If the next token is `static_assert' we have a static assertion. */
17728 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_STATIC_ASSERT))
17729 {
17730 cp_parser_static_assert (parser, /*member_p=*/true);
17731 return;
17732 }
17733
17734 parser->colon_corrects_to_scope_p = false;
17735
17736 if (cp_parser_using_declaration (parser, /*access_declaration=*/true))
17737 goto out;
17738
17739 /* Parse the decl-specifier-seq. */
17740 decl_spec_token_start = cp_lexer_peek_token (parser->lexer);
17741 cp_parser_decl_specifier_seq (parser,
17742 CP_PARSER_FLAGS_OPTIONAL,
17743 &decl_specifiers,
17744 &declares_class_or_enum);
17745 prefix_attributes = decl_specifiers.attributes;
17746 decl_specifiers.attributes = NULL_TREE;
17747 /* Check for an invalid type-name. */
17748 if (!decl_specifiers.any_type_specifiers_p
17749 && cp_parser_parse_and_diagnose_invalid_type_name (parser))
17750 goto out;
17751 /* If there is no declarator, then the decl-specifier-seq should
17752 specify a type. */
17753 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
17754 {
17755 /* If there was no decl-specifier-seq, and the next token is a
17756 `;', then we have something like:
17757
17758 struct S { ; };
17759
17760 [class.mem]
17761
17762 Each member-declaration shall declare at least one member
17763 name of the class. */
17764 if (!decl_specifiers.any_specifiers_p)
17765 {
17766 cp_token *token = cp_lexer_peek_token (parser->lexer);
17767 if (!in_system_header_at (token->location))
17768 pedwarn (token->location, OPT_pedantic, "extra %<;%>");
17769 }
17770 else
17771 {
17772 tree type;
17773
17774 /* See if this declaration is a friend. */
17775 friend_p = cp_parser_friend_p (&decl_specifiers);
17776 /* If there were decl-specifiers, check to see if there was
17777 a class-declaration. */
17778 type = check_tag_decl (&decl_specifiers);
17779 /* Nested classes have already been added to the class, but
17780 a `friend' needs to be explicitly registered. */
17781 if (friend_p)
17782 {
17783 /* If the `friend' keyword was present, the friend must
17784 be introduced with a class-key. */
17785 if (!declares_class_or_enum)
17786 error_at (decl_spec_token_start->location,
17787 "a class-key must be used when declaring a friend");
17788 /* In this case:
17789
17790 template <typename T> struct A {
17791 friend struct A<T>::B;
17792 };
17793
17794 A<T>::B will be represented by a TYPENAME_TYPE, and
17795 therefore not recognized by check_tag_decl. */
17796 if (!type
17797 && decl_specifiers.type
17798 && TYPE_P (decl_specifiers.type))
17799 type = decl_specifiers.type;
17800 if (!type || !TYPE_P (type))
17801 error_at (decl_spec_token_start->location,
17802 "friend declaration does not name a class or "
17803 "function");
17804 else
17805 make_friend_class (current_class_type, type,
17806 /*complain=*/true);
17807 }
17808 /* If there is no TYPE, an error message will already have
17809 been issued. */
17810 else if (!type || type == error_mark_node)
17811 ;
17812 /* An anonymous aggregate has to be handled specially; such
17813 a declaration really declares a data member (with a
17814 particular type), as opposed to a nested class. */
17815 else if (ANON_AGGR_TYPE_P (type))
17816 {
17817 /* Remove constructors and such from TYPE, now that we
17818 know it is an anonymous aggregate. */
17819 fixup_anonymous_aggr (type);
17820 /* And make the corresponding data member. */
17821 decl = build_decl (decl_spec_token_start->location,
17822 FIELD_DECL, NULL_TREE, type);
17823 /* Add it to the class. */
17824 finish_member_declaration (decl);
17825 }
17826 else
17827 cp_parser_check_access_in_redeclaration
17828 (TYPE_NAME (type),
17829 decl_spec_token_start->location);
17830 }
17831 }
17832 else
17833 {
17834 bool assume_semicolon = false;
17835
17836 /* See if these declarations will be friends. */
17837 friend_p = cp_parser_friend_p (&decl_specifiers);
17838
17839 /* Keep going until we hit the `;' at the end of the
17840 declaration. */
17841 while (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
17842 {
17843 tree attributes = NULL_TREE;
17844 tree first_attribute;
17845
17846 /* Peek at the next token. */
17847 token = cp_lexer_peek_token (parser->lexer);
17848
17849 /* Check for a bitfield declaration. */
17850 if (token->type == CPP_COLON
17851 || (token->type == CPP_NAME
17852 && cp_lexer_peek_nth_token (parser->lexer, 2)->type
17853 == CPP_COLON))
17854 {
17855 tree identifier;
17856 tree width;
17857
17858 /* Get the name of the bitfield. Note that we cannot just
17859 check TOKEN here because it may have been invalidated by
17860 the call to cp_lexer_peek_nth_token above. */
17861 if (cp_lexer_peek_token (parser->lexer)->type != CPP_COLON)
17862 identifier = cp_parser_identifier (parser);
17863 else
17864 identifier = NULL_TREE;
17865
17866 /* Consume the `:' token. */
17867 cp_lexer_consume_token (parser->lexer);
17868 /* Get the width of the bitfield. */
17869 width
17870 = cp_parser_constant_expression (parser,
17871 /*allow_non_constant=*/false,
17872 NULL);
17873
17874 /* Look for attributes that apply to the bitfield. */
17875 attributes = cp_parser_attributes_opt (parser);
17876 /* Remember which attributes are prefix attributes and
17877 which are not. */
17878 first_attribute = attributes;
17879 /* Combine the attributes. */
17880 attributes = chainon (prefix_attributes, attributes);
17881
17882 /* Create the bitfield declaration. */
17883 decl = grokbitfield (identifier
17884 ? make_id_declarator (NULL_TREE,
17885 identifier,
17886 sfk_none)
17887 : NULL,
17888 &decl_specifiers,
17889 width,
17890 attributes);
17891 }
17892 else
17893 {
17894 cp_declarator *declarator;
17895 tree initializer;
17896 tree asm_specification;
17897 int ctor_dtor_or_conv_p;
17898
17899 /* Parse the declarator. */
17900 declarator
17901 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
17902 &ctor_dtor_or_conv_p,
17903 /*parenthesized_p=*/NULL,
17904 /*member_p=*/true);
17905
17906 /* If something went wrong parsing the declarator, make sure
17907 that we at least consume some tokens. */
17908 if (declarator == cp_error_declarator)
17909 {
17910 /* Skip to the end of the statement. */
17911 cp_parser_skip_to_end_of_statement (parser);
17912 /* If the next token is not a semicolon, that is
17913 probably because we just skipped over the body of
17914 a function. So, we consume a semicolon if
17915 present, but do not issue an error message if it
17916 is not present. */
17917 if (cp_lexer_next_token_is (parser->lexer,
17918 CPP_SEMICOLON))
17919 cp_lexer_consume_token (parser->lexer);
17920 goto out;
17921 }
17922
17923 if (declares_class_or_enum & 2)
17924 cp_parser_check_for_definition_in_return_type
17925 (declarator, decl_specifiers.type,
17926 decl_specifiers.type_location);
17927
17928 /* Look for an asm-specification. */
17929 asm_specification = cp_parser_asm_specification_opt (parser);
17930 /* Look for attributes that apply to the declaration. */
17931 attributes = cp_parser_attributes_opt (parser);
17932 /* Remember which attributes are prefix attributes and
17933 which are not. */
17934 first_attribute = attributes;
17935 /* Combine the attributes. */
17936 attributes = chainon (prefix_attributes, attributes);
17937
17938 /* If it's an `=', then we have a constant-initializer or a
17939 pure-specifier. It is not correct to parse the
17940 initializer before registering the member declaration
17941 since the member declaration should be in scope while
17942 its initializer is processed. However, the rest of the
17943 front end does not yet provide an interface that allows
17944 us to handle this correctly. */
17945 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
17946 {
17947 /* In [class.mem]:
17948
17949 A pure-specifier shall be used only in the declaration of
17950 a virtual function.
17951
17952 A member-declarator can contain a constant-initializer
17953 only if it declares a static member of integral or
17954 enumeration type.
17955
17956 Therefore, if the DECLARATOR is for a function, we look
17957 for a pure-specifier; otherwise, we look for a
17958 constant-initializer. When we call `grokfield', it will
17959 perform more stringent semantics checks. */
17960 initializer_token_start = cp_lexer_peek_token (parser->lexer);
17961 if (function_declarator_p (declarator))
17962 initializer = cp_parser_pure_specifier (parser);
17963 else
17964 /* Parse the initializer. */
17965 initializer = cp_parser_constant_initializer (parser);
17966 }
17967 /* Otherwise, there is no initializer. */
17968 else
17969 initializer = NULL_TREE;
17970
17971 /* See if we are probably looking at a function
17972 definition. We are certainly not looking at a
17973 member-declarator. Calling `grokfield' has
17974 side-effects, so we must not do it unless we are sure
17975 that we are looking at a member-declarator. */
17976 if (cp_parser_token_starts_function_definition_p
17977 (cp_lexer_peek_token (parser->lexer)))
17978 {
17979 /* The grammar does not allow a pure-specifier to be
17980 used when a member function is defined. (It is
17981 possible that this fact is an oversight in the
17982 standard, since a pure function may be defined
17983 outside of the class-specifier. */
17984 if (initializer)
17985 error_at (initializer_token_start->location,
17986 "pure-specifier on function-definition");
17987 decl = cp_parser_save_member_function_body (parser,
17988 &decl_specifiers,
17989 declarator,
17990 attributes);
17991 /* If the member was not a friend, declare it here. */
17992 if (!friend_p)
17993 finish_member_declaration (decl);
17994 /* Peek at the next token. */
17995 token = cp_lexer_peek_token (parser->lexer);
17996 /* If the next token is a semicolon, consume it. */
17997 if (token->type == CPP_SEMICOLON)
17998 cp_lexer_consume_token (parser->lexer);
17999 goto out;
18000 }
18001 else
18002 if (declarator->kind == cdk_function)
18003 declarator->id_loc = token->location;
18004 /* Create the declaration. */
18005 decl = grokfield (declarator, &decl_specifiers,
18006 initializer, /*init_const_expr_p=*/true,
18007 asm_specification,
18008 attributes);
18009 }
18010
18011 /* Reset PREFIX_ATTRIBUTES. */
18012 while (attributes && TREE_CHAIN (attributes) != first_attribute)
18013 attributes = TREE_CHAIN (attributes);
18014 if (attributes)
18015 TREE_CHAIN (attributes) = NULL_TREE;
18016
18017 /* If there is any qualification still in effect, clear it
18018 now; we will be starting fresh with the next declarator. */
18019 parser->scope = NULL_TREE;
18020 parser->qualifying_scope = NULL_TREE;
18021 parser->object_scope = NULL_TREE;
18022 /* If it's a `,', then there are more declarators. */
18023 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
18024 cp_lexer_consume_token (parser->lexer);
18025 /* If the next token isn't a `;', then we have a parse error. */
18026 else if (cp_lexer_next_token_is_not (parser->lexer,
18027 CPP_SEMICOLON))
18028 {
18029 /* The next token might be a ways away from where the
18030 actual semicolon is missing. Find the previous token
18031 and use that for our error position. */
18032 cp_token *token = cp_lexer_previous_token (parser->lexer);
18033 error_at (token->location,
18034 "expected %<;%> at end of member declaration");
18035
18036 /* Assume that the user meant to provide a semicolon. If
18037 we were to cp_parser_skip_to_end_of_statement, we might
18038 skip to a semicolon inside a member function definition
18039 and issue nonsensical error messages. */
18040 assume_semicolon = true;
18041 }
18042
18043 if (decl)
18044 {
18045 /* Add DECL to the list of members. */
18046 if (!friend_p)
18047 finish_member_declaration (decl);
18048
18049 if (TREE_CODE (decl) == FUNCTION_DECL)
18050 cp_parser_save_default_args (parser, decl);
18051 }
18052
18053 if (assume_semicolon)
18054 goto out;
18055 }
18056 }
18057
18058 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
18059 out:
18060 parser->colon_corrects_to_scope_p = saved_colon_corrects_to_scope_p;
18061 }
18062
18063 /* Parse a pure-specifier.
18064
18065 pure-specifier:
18066 = 0
18067
18068 Returns INTEGER_ZERO_NODE if a pure specifier is found.
18069 Otherwise, ERROR_MARK_NODE is returned. */
18070
18071 static tree
18072 cp_parser_pure_specifier (cp_parser* parser)
18073 {
18074 cp_token *token;
18075
18076 /* Look for the `=' token. */
18077 if (!cp_parser_require (parser, CPP_EQ, RT_EQ))
18078 return error_mark_node;
18079 /* Look for the `0' token. */
18080 token = cp_lexer_peek_token (parser->lexer);
18081
18082 if (token->type == CPP_EOF
18083 || token->type == CPP_PRAGMA_EOL)
18084 return error_mark_node;
18085
18086 cp_lexer_consume_token (parser->lexer);
18087
18088 /* Accept = default or = delete in c++0x mode. */
18089 if (token->keyword == RID_DEFAULT
18090 || token->keyword == RID_DELETE)
18091 {
18092 maybe_warn_cpp0x (CPP0X_DEFAULTED_DELETED);
18093 return token->u.value;
18094 }
18095
18096 /* c_lex_with_flags marks a single digit '0' with PURE_ZERO. */
18097 if (token->type != CPP_NUMBER || !(token->flags & PURE_ZERO))
18098 {
18099 cp_parser_error (parser,
18100 "invalid pure specifier (only %<= 0%> is allowed)");
18101 cp_parser_skip_to_end_of_statement (parser);
18102 return error_mark_node;
18103 }
18104 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
18105 {
18106 error_at (token->location, "templates may not be %<virtual%>");
18107 return error_mark_node;
18108 }
18109
18110 return integer_zero_node;
18111 }
18112
18113 /* Parse a constant-initializer.
18114
18115 constant-initializer:
18116 = constant-expression
18117
18118 Returns a representation of the constant-expression. */
18119
18120 static tree
18121 cp_parser_constant_initializer (cp_parser* parser)
18122 {
18123 /* Look for the `=' token. */
18124 if (!cp_parser_require (parser, CPP_EQ, RT_EQ))
18125 return error_mark_node;
18126
18127 /* It is invalid to write:
18128
18129 struct S { static const int i = { 7 }; };
18130
18131 */
18132 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
18133 {
18134 cp_parser_error (parser,
18135 "a brace-enclosed initializer is not allowed here");
18136 /* Consume the opening brace. */
18137 cp_lexer_consume_token (parser->lexer);
18138 /* Skip the initializer. */
18139 cp_parser_skip_to_closing_brace (parser);
18140 /* Look for the trailing `}'. */
18141 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
18142
18143 return error_mark_node;
18144 }
18145
18146 return cp_parser_constant_expression (parser,
18147 /*allow_non_constant=*/false,
18148 NULL);
18149 }
18150
18151 /* Derived classes [gram.class.derived] */
18152
18153 /* Parse a base-clause.
18154
18155 base-clause:
18156 : base-specifier-list
18157
18158 base-specifier-list:
18159 base-specifier ... [opt]
18160 base-specifier-list , base-specifier ... [opt]
18161
18162 Returns a TREE_LIST representing the base-classes, in the order in
18163 which they were declared. The representation of each node is as
18164 described by cp_parser_base_specifier.
18165
18166 In the case that no bases are specified, this function will return
18167 NULL_TREE, not ERROR_MARK_NODE. */
18168
18169 static tree
18170 cp_parser_base_clause (cp_parser* parser)
18171 {
18172 tree bases = NULL_TREE;
18173
18174 /* Look for the `:' that begins the list. */
18175 cp_parser_require (parser, CPP_COLON, RT_COLON);
18176
18177 /* Scan the base-specifier-list. */
18178 while (true)
18179 {
18180 cp_token *token;
18181 tree base;
18182 bool pack_expansion_p = false;
18183
18184 /* Look for the base-specifier. */
18185 base = cp_parser_base_specifier (parser);
18186 /* Look for the (optional) ellipsis. */
18187 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
18188 {
18189 /* Consume the `...'. */
18190 cp_lexer_consume_token (parser->lexer);
18191
18192 pack_expansion_p = true;
18193 }
18194
18195 /* Add BASE to the front of the list. */
18196 if (base != error_mark_node)
18197 {
18198 if (pack_expansion_p)
18199 /* Make this a pack expansion type. */
18200 TREE_VALUE (base) = make_pack_expansion (TREE_VALUE (base));
18201
18202
18203 if (!check_for_bare_parameter_packs (TREE_VALUE (base)))
18204 {
18205 TREE_CHAIN (base) = bases;
18206 bases = base;
18207 }
18208 }
18209 /* Peek at the next token. */
18210 token = cp_lexer_peek_token (parser->lexer);
18211 /* If it's not a comma, then the list is complete. */
18212 if (token->type != CPP_COMMA)
18213 break;
18214 /* Consume the `,'. */
18215 cp_lexer_consume_token (parser->lexer);
18216 }
18217
18218 /* PARSER->SCOPE may still be non-NULL at this point, if the last
18219 base class had a qualified name. However, the next name that
18220 appears is certainly not qualified. */
18221 parser->scope = NULL_TREE;
18222 parser->qualifying_scope = NULL_TREE;
18223 parser->object_scope = NULL_TREE;
18224
18225 return nreverse (bases);
18226 }
18227
18228 /* Parse a base-specifier.
18229
18230 base-specifier:
18231 :: [opt] nested-name-specifier [opt] class-name
18232 virtual access-specifier [opt] :: [opt] nested-name-specifier
18233 [opt] class-name
18234 access-specifier virtual [opt] :: [opt] nested-name-specifier
18235 [opt] class-name
18236
18237 Returns a TREE_LIST. The TREE_PURPOSE will be one of
18238 ACCESS_{DEFAULT,PUBLIC,PROTECTED,PRIVATE}_[VIRTUAL]_NODE to
18239 indicate the specifiers provided. The TREE_VALUE will be a TYPE
18240 (or the ERROR_MARK_NODE) indicating the type that was specified. */
18241
18242 static tree
18243 cp_parser_base_specifier (cp_parser* parser)
18244 {
18245 cp_token *token;
18246 bool done = false;
18247 bool virtual_p = false;
18248 bool duplicate_virtual_error_issued_p = false;
18249 bool duplicate_access_error_issued_p = false;
18250 bool class_scope_p, template_p;
18251 tree access = access_default_node;
18252 tree type;
18253
18254 /* Process the optional `virtual' and `access-specifier'. */
18255 while (!done)
18256 {
18257 /* Peek at the next token. */
18258 token = cp_lexer_peek_token (parser->lexer);
18259 /* Process `virtual'. */
18260 switch (token->keyword)
18261 {
18262 case RID_VIRTUAL:
18263 /* If `virtual' appears more than once, issue an error. */
18264 if (virtual_p && !duplicate_virtual_error_issued_p)
18265 {
18266 cp_parser_error (parser,
18267 "%<virtual%> specified more than once in base-specified");
18268 duplicate_virtual_error_issued_p = true;
18269 }
18270
18271 virtual_p = true;
18272
18273 /* Consume the `virtual' token. */
18274 cp_lexer_consume_token (parser->lexer);
18275
18276 break;
18277
18278 case RID_PUBLIC:
18279 case RID_PROTECTED:
18280 case RID_PRIVATE:
18281 /* If more than one access specifier appears, issue an
18282 error. */
18283 if (access != access_default_node
18284 && !duplicate_access_error_issued_p)
18285 {
18286 cp_parser_error (parser,
18287 "more than one access specifier in base-specified");
18288 duplicate_access_error_issued_p = true;
18289 }
18290
18291 access = ridpointers[(int) token->keyword];
18292
18293 /* Consume the access-specifier. */
18294 cp_lexer_consume_token (parser->lexer);
18295
18296 break;
18297
18298 default:
18299 done = true;
18300 break;
18301 }
18302 }
18303 /* It is not uncommon to see programs mechanically, erroneously, use
18304 the 'typename' keyword to denote (dependent) qualified types
18305 as base classes. */
18306 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TYPENAME))
18307 {
18308 token = cp_lexer_peek_token (parser->lexer);
18309 if (!processing_template_decl)
18310 error_at (token->location,
18311 "keyword %<typename%> not allowed outside of templates");
18312 else
18313 error_at (token->location,
18314 "keyword %<typename%> not allowed in this context "
18315 "(the base class is implicitly a type)");
18316 cp_lexer_consume_token (parser->lexer);
18317 }
18318
18319 /* Look for the optional `::' operator. */
18320 cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/false);
18321 /* Look for the nested-name-specifier. The simplest way to
18322 implement:
18323
18324 [temp.res]
18325
18326 The keyword `typename' is not permitted in a base-specifier or
18327 mem-initializer; in these contexts a qualified name that
18328 depends on a template-parameter is implicitly assumed to be a
18329 type name.
18330
18331 is to pretend that we have seen the `typename' keyword at this
18332 point. */
18333 cp_parser_nested_name_specifier_opt (parser,
18334 /*typename_keyword_p=*/true,
18335 /*check_dependency_p=*/true,
18336 typename_type,
18337 /*is_declaration=*/true);
18338 /* If the base class is given by a qualified name, assume that names
18339 we see are type names or templates, as appropriate. */
18340 class_scope_p = (parser->scope && TYPE_P (parser->scope));
18341 template_p = class_scope_p && cp_parser_optional_template_keyword (parser);
18342
18343 /* Finally, look for the class-name. */
18344 type = cp_parser_class_name (parser,
18345 class_scope_p,
18346 template_p,
18347 typename_type,
18348 /*check_dependency_p=*/true,
18349 /*class_head_p=*/false,
18350 /*is_declaration=*/true);
18351
18352 if (type == error_mark_node)
18353 return error_mark_node;
18354
18355 return finish_base_specifier (TREE_TYPE (type), access, virtual_p);
18356 }
18357
18358 /* Exception handling [gram.exception] */
18359
18360 /* Parse an (optional) exception-specification.
18361
18362 exception-specification:
18363 throw ( type-id-list [opt] )
18364
18365 Returns a TREE_LIST representing the exception-specification. The
18366 TREE_VALUE of each node is a type. */
18367
18368 static tree
18369 cp_parser_exception_specification_opt (cp_parser* parser)
18370 {
18371 cp_token *token;
18372 tree type_id_list;
18373 const char *saved_message;
18374
18375 /* Peek at the next token. */
18376 token = cp_lexer_peek_token (parser->lexer);
18377
18378 /* Is it a noexcept-specification? */
18379 if (cp_parser_is_keyword (token, RID_NOEXCEPT))
18380 {
18381 tree expr;
18382 cp_lexer_consume_token (parser->lexer);
18383
18384 if (cp_lexer_peek_token (parser->lexer)->type == CPP_OPEN_PAREN)
18385 {
18386 cp_lexer_consume_token (parser->lexer);
18387
18388 /* Types may not be defined in an exception-specification. */
18389 saved_message = parser->type_definition_forbidden_message;
18390 parser->type_definition_forbidden_message
18391 = G_("types may not be defined in an exception-specification");
18392
18393 expr = cp_parser_constant_expression (parser, false, NULL);
18394
18395 /* Restore the saved message. */
18396 parser->type_definition_forbidden_message = saved_message;
18397
18398 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
18399 }
18400 else
18401 expr = boolean_true_node;
18402
18403 return build_noexcept_spec (expr, tf_warning_or_error);
18404 }
18405
18406 /* If it's not `throw', then there's no exception-specification. */
18407 if (!cp_parser_is_keyword (token, RID_THROW))
18408 return NULL_TREE;
18409
18410 #if 0
18411 /* Enable this once a lot of code has transitioned to noexcept? */
18412 if (cxx_dialect == cxx0x && !in_system_header)
18413 warning (OPT_Wdeprecated, "dynamic exception specifications are "
18414 "deprecated in C++0x; use %<noexcept%> instead");
18415 #endif
18416
18417 /* Consume the `throw'. */
18418 cp_lexer_consume_token (parser->lexer);
18419
18420 /* Look for the `('. */
18421 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
18422
18423 /* Peek at the next token. */
18424 token = cp_lexer_peek_token (parser->lexer);
18425 /* If it's not a `)', then there is a type-id-list. */
18426 if (token->type != CPP_CLOSE_PAREN)
18427 {
18428 /* Types may not be defined in an exception-specification. */
18429 saved_message = parser->type_definition_forbidden_message;
18430 parser->type_definition_forbidden_message
18431 = G_("types may not be defined in an exception-specification");
18432 /* Parse the type-id-list. */
18433 type_id_list = cp_parser_type_id_list (parser);
18434 /* Restore the saved message. */
18435 parser->type_definition_forbidden_message = saved_message;
18436 }
18437 else
18438 type_id_list = empty_except_spec;
18439
18440 /* Look for the `)'. */
18441 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
18442
18443 return type_id_list;
18444 }
18445
18446 /* Parse an (optional) type-id-list.
18447
18448 type-id-list:
18449 type-id ... [opt]
18450 type-id-list , type-id ... [opt]
18451
18452 Returns a TREE_LIST. The TREE_VALUE of each node is a TYPE,
18453 in the order that the types were presented. */
18454
18455 static tree
18456 cp_parser_type_id_list (cp_parser* parser)
18457 {
18458 tree types = NULL_TREE;
18459
18460 while (true)
18461 {
18462 cp_token *token;
18463 tree type;
18464
18465 /* Get the next type-id. */
18466 type = cp_parser_type_id (parser);
18467 /* Parse the optional ellipsis. */
18468 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
18469 {
18470 /* Consume the `...'. */
18471 cp_lexer_consume_token (parser->lexer);
18472
18473 /* Turn the type into a pack expansion expression. */
18474 type = make_pack_expansion (type);
18475 }
18476 /* Add it to the list. */
18477 types = add_exception_specifier (types, type, /*complain=*/1);
18478 /* Peek at the next token. */
18479 token = cp_lexer_peek_token (parser->lexer);
18480 /* If it is not a `,', we are done. */
18481 if (token->type != CPP_COMMA)
18482 break;
18483 /* Consume the `,'. */
18484 cp_lexer_consume_token (parser->lexer);
18485 }
18486
18487 return nreverse (types);
18488 }
18489
18490 /* Parse a try-block.
18491
18492 try-block:
18493 try compound-statement handler-seq */
18494
18495 static tree
18496 cp_parser_try_block (cp_parser* parser)
18497 {
18498 tree try_block;
18499
18500 cp_parser_require_keyword (parser, RID_TRY, RT_TRY);
18501 try_block = begin_try_block ();
18502 cp_parser_compound_statement (parser, NULL, true);
18503 finish_try_block (try_block);
18504 cp_parser_handler_seq (parser);
18505 finish_handler_sequence (try_block);
18506
18507 return try_block;
18508 }
18509
18510 /* Parse a function-try-block.
18511
18512 function-try-block:
18513 try ctor-initializer [opt] function-body handler-seq */
18514
18515 static bool
18516 cp_parser_function_try_block (cp_parser* parser)
18517 {
18518 tree compound_stmt;
18519 tree try_block;
18520 bool ctor_initializer_p;
18521
18522 /* Look for the `try' keyword. */
18523 if (!cp_parser_require_keyword (parser, RID_TRY, RT_TRY))
18524 return false;
18525 /* Let the rest of the front end know where we are. */
18526 try_block = begin_function_try_block (&compound_stmt);
18527 /* Parse the function-body. */
18528 ctor_initializer_p
18529 = cp_parser_ctor_initializer_opt_and_function_body (parser);
18530 /* We're done with the `try' part. */
18531 finish_function_try_block (try_block);
18532 /* Parse the handlers. */
18533 cp_parser_handler_seq (parser);
18534 /* We're done with the handlers. */
18535 finish_function_handler_sequence (try_block, compound_stmt);
18536
18537 return ctor_initializer_p;
18538 }
18539
18540 /* Parse a handler-seq.
18541
18542 handler-seq:
18543 handler handler-seq [opt] */
18544
18545 static void
18546 cp_parser_handler_seq (cp_parser* parser)
18547 {
18548 while (true)
18549 {
18550 cp_token *token;
18551
18552 /* Parse the handler. */
18553 cp_parser_handler (parser);
18554 /* Peek at the next token. */
18555 token = cp_lexer_peek_token (parser->lexer);
18556 /* If it's not `catch' then there are no more handlers. */
18557 if (!cp_parser_is_keyword (token, RID_CATCH))
18558 break;
18559 }
18560 }
18561
18562 /* Parse a handler.
18563
18564 handler:
18565 catch ( exception-declaration ) compound-statement */
18566
18567 static void
18568 cp_parser_handler (cp_parser* parser)
18569 {
18570 tree handler;
18571 tree declaration;
18572
18573 cp_parser_require_keyword (parser, RID_CATCH, RT_CATCH);
18574 handler = begin_handler ();
18575 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
18576 declaration = cp_parser_exception_declaration (parser);
18577 finish_handler_parms (declaration, handler);
18578 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
18579 cp_parser_compound_statement (parser, NULL, false);
18580 finish_handler (handler);
18581 }
18582
18583 /* Parse an exception-declaration.
18584
18585 exception-declaration:
18586 type-specifier-seq declarator
18587 type-specifier-seq abstract-declarator
18588 type-specifier-seq
18589 ...
18590
18591 Returns a VAR_DECL for the declaration, or NULL_TREE if the
18592 ellipsis variant is used. */
18593
18594 static tree
18595 cp_parser_exception_declaration (cp_parser* parser)
18596 {
18597 cp_decl_specifier_seq type_specifiers;
18598 cp_declarator *declarator;
18599 const char *saved_message;
18600
18601 /* If it's an ellipsis, it's easy to handle. */
18602 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
18603 {
18604 /* Consume the `...' token. */
18605 cp_lexer_consume_token (parser->lexer);
18606 return NULL_TREE;
18607 }
18608
18609 /* Types may not be defined in exception-declarations. */
18610 saved_message = parser->type_definition_forbidden_message;
18611 parser->type_definition_forbidden_message
18612 = G_("types may not be defined in exception-declarations");
18613
18614 /* Parse the type-specifier-seq. */
18615 cp_parser_type_specifier_seq (parser, /*is_declaration=*/true,
18616 /*is_trailing_return=*/false,
18617 &type_specifiers);
18618 /* If it's a `)', then there is no declarator. */
18619 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN))
18620 declarator = NULL;
18621 else
18622 declarator = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_EITHER,
18623 /*ctor_dtor_or_conv_p=*/NULL,
18624 /*parenthesized_p=*/NULL,
18625 /*member_p=*/false);
18626
18627 /* Restore the saved message. */
18628 parser->type_definition_forbidden_message = saved_message;
18629
18630 if (!type_specifiers.any_specifiers_p)
18631 return error_mark_node;
18632
18633 return grokdeclarator (declarator, &type_specifiers, CATCHPARM, 1, NULL);
18634 }
18635
18636 /* Parse a throw-expression.
18637
18638 throw-expression:
18639 throw assignment-expression [opt]
18640
18641 Returns a THROW_EXPR representing the throw-expression. */
18642
18643 static tree
18644 cp_parser_throw_expression (cp_parser* parser)
18645 {
18646 tree expression;
18647 cp_token* token;
18648
18649 cp_parser_require_keyword (parser, RID_THROW, RT_THROW);
18650 token = cp_lexer_peek_token (parser->lexer);
18651 /* Figure out whether or not there is an assignment-expression
18652 following the "throw" keyword. */
18653 if (token->type == CPP_COMMA
18654 || token->type == CPP_SEMICOLON
18655 || token->type == CPP_CLOSE_PAREN
18656 || token->type == CPP_CLOSE_SQUARE
18657 || token->type == CPP_CLOSE_BRACE
18658 || token->type == CPP_COLON)
18659 expression = NULL_TREE;
18660 else
18661 expression = cp_parser_assignment_expression (parser,
18662 /*cast_p=*/false, NULL);
18663
18664 return build_throw (expression);
18665 }
18666
18667 /* GNU Extensions */
18668
18669 /* Parse an (optional) asm-specification.
18670
18671 asm-specification:
18672 asm ( string-literal )
18673
18674 If the asm-specification is present, returns a STRING_CST
18675 corresponding to the string-literal. Otherwise, returns
18676 NULL_TREE. */
18677
18678 static tree
18679 cp_parser_asm_specification_opt (cp_parser* parser)
18680 {
18681 cp_token *token;
18682 tree asm_specification;
18683
18684 /* Peek at the next token. */
18685 token = cp_lexer_peek_token (parser->lexer);
18686 /* If the next token isn't the `asm' keyword, then there's no
18687 asm-specification. */
18688 if (!cp_parser_is_keyword (token, RID_ASM))
18689 return NULL_TREE;
18690
18691 /* Consume the `asm' token. */
18692 cp_lexer_consume_token (parser->lexer);
18693 /* Look for the `('. */
18694 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
18695
18696 /* Look for the string-literal. */
18697 asm_specification = cp_parser_string_literal (parser, false, false);
18698
18699 /* Look for the `)'. */
18700 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
18701
18702 return asm_specification;
18703 }
18704
18705 /* Parse an asm-operand-list.
18706
18707 asm-operand-list:
18708 asm-operand
18709 asm-operand-list , asm-operand
18710
18711 asm-operand:
18712 string-literal ( expression )
18713 [ string-literal ] string-literal ( expression )
18714
18715 Returns a TREE_LIST representing the operands. The TREE_VALUE of
18716 each node is the expression. The TREE_PURPOSE is itself a
18717 TREE_LIST whose TREE_PURPOSE is a STRING_CST for the bracketed
18718 string-literal (or NULL_TREE if not present) and whose TREE_VALUE
18719 is a STRING_CST for the string literal before the parenthesis. Returns
18720 ERROR_MARK_NODE if any of the operands are invalid. */
18721
18722 static tree
18723 cp_parser_asm_operand_list (cp_parser* parser)
18724 {
18725 tree asm_operands = NULL_TREE;
18726 bool invalid_operands = false;
18727
18728 while (true)
18729 {
18730 tree string_literal;
18731 tree expression;
18732 tree name;
18733
18734 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
18735 {
18736 /* Consume the `[' token. */
18737 cp_lexer_consume_token (parser->lexer);
18738 /* Read the operand name. */
18739 name = cp_parser_identifier (parser);
18740 if (name != error_mark_node)
18741 name = build_string (IDENTIFIER_LENGTH (name),
18742 IDENTIFIER_POINTER (name));
18743 /* Look for the closing `]'. */
18744 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
18745 }
18746 else
18747 name = NULL_TREE;
18748 /* Look for the string-literal. */
18749 string_literal = cp_parser_string_literal (parser, false, false);
18750
18751 /* Look for the `('. */
18752 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
18753 /* Parse the expression. */
18754 expression = cp_parser_expression (parser, /*cast_p=*/false, NULL);
18755 /* Look for the `)'. */
18756 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
18757
18758 if (name == error_mark_node
18759 || string_literal == error_mark_node
18760 || expression == error_mark_node)
18761 invalid_operands = true;
18762
18763 /* Add this operand to the list. */
18764 asm_operands = tree_cons (build_tree_list (name, string_literal),
18765 expression,
18766 asm_operands);
18767 /* If the next token is not a `,', there are no more
18768 operands. */
18769 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
18770 break;
18771 /* Consume the `,'. */
18772 cp_lexer_consume_token (parser->lexer);
18773 }
18774
18775 return invalid_operands ? error_mark_node : nreverse (asm_operands);
18776 }
18777
18778 /* Parse an asm-clobber-list.
18779
18780 asm-clobber-list:
18781 string-literal
18782 asm-clobber-list , string-literal
18783
18784 Returns a TREE_LIST, indicating the clobbers in the order that they
18785 appeared. The TREE_VALUE of each node is a STRING_CST. */
18786
18787 static tree
18788 cp_parser_asm_clobber_list (cp_parser* parser)
18789 {
18790 tree clobbers = NULL_TREE;
18791
18792 while (true)
18793 {
18794 tree string_literal;
18795
18796 /* Look for the string literal. */
18797 string_literal = cp_parser_string_literal (parser, false, false);
18798 /* Add it to the list. */
18799 clobbers = tree_cons (NULL_TREE, string_literal, clobbers);
18800 /* If the next token is not a `,', then the list is
18801 complete. */
18802 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
18803 break;
18804 /* Consume the `,' token. */
18805 cp_lexer_consume_token (parser->lexer);
18806 }
18807
18808 return clobbers;
18809 }
18810
18811 /* Parse an asm-label-list.
18812
18813 asm-label-list:
18814 identifier
18815 asm-label-list , identifier
18816
18817 Returns a TREE_LIST, indicating the labels in the order that they
18818 appeared. The TREE_VALUE of each node is a label. */
18819
18820 static tree
18821 cp_parser_asm_label_list (cp_parser* parser)
18822 {
18823 tree labels = NULL_TREE;
18824
18825 while (true)
18826 {
18827 tree identifier, label, name;
18828
18829 /* Look for the identifier. */
18830 identifier = cp_parser_identifier (parser);
18831 if (!error_operand_p (identifier))
18832 {
18833 label = lookup_label (identifier);
18834 if (TREE_CODE (label) == LABEL_DECL)
18835 {
18836 TREE_USED (label) = 1;
18837 check_goto (label);
18838 name = build_string (IDENTIFIER_LENGTH (identifier),
18839 IDENTIFIER_POINTER (identifier));
18840 labels = tree_cons (name, label, labels);
18841 }
18842 }
18843 /* If the next token is not a `,', then the list is
18844 complete. */
18845 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
18846 break;
18847 /* Consume the `,' token. */
18848 cp_lexer_consume_token (parser->lexer);
18849 }
18850
18851 return nreverse (labels);
18852 }
18853
18854 /* Parse an (optional) series of attributes.
18855
18856 attributes:
18857 attributes attribute
18858
18859 attribute:
18860 __attribute__ (( attribute-list [opt] ))
18861
18862 The return value is as for cp_parser_attribute_list. */
18863
18864 static tree
18865 cp_parser_attributes_opt (cp_parser* parser)
18866 {
18867 tree attributes = NULL_TREE;
18868
18869 while (true)
18870 {
18871 cp_token *token;
18872 tree attribute_list;
18873
18874 /* Peek at the next token. */
18875 token = cp_lexer_peek_token (parser->lexer);
18876 /* If it's not `__attribute__', then we're done. */
18877 if (token->keyword != RID_ATTRIBUTE)
18878 break;
18879
18880 /* Consume the `__attribute__' keyword. */
18881 cp_lexer_consume_token (parser->lexer);
18882 /* Look for the two `(' tokens. */
18883 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
18884 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
18885
18886 /* Peek at the next token. */
18887 token = cp_lexer_peek_token (parser->lexer);
18888 if (token->type != CPP_CLOSE_PAREN)
18889 /* Parse the attribute-list. */
18890 attribute_list = cp_parser_attribute_list (parser);
18891 else
18892 /* If the next token is a `)', then there is no attribute
18893 list. */
18894 attribute_list = NULL;
18895
18896 /* Look for the two `)' tokens. */
18897 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
18898 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
18899
18900 /* Add these new attributes to the list. */
18901 attributes = chainon (attributes, attribute_list);
18902 }
18903
18904 return attributes;
18905 }
18906
18907 /* Parse an attribute-list.
18908
18909 attribute-list:
18910 attribute
18911 attribute-list , attribute
18912
18913 attribute:
18914 identifier
18915 identifier ( identifier )
18916 identifier ( identifier , expression-list )
18917 identifier ( expression-list )
18918
18919 Returns a TREE_LIST, or NULL_TREE on error. Each node corresponds
18920 to an attribute. The TREE_PURPOSE of each node is the identifier
18921 indicating which attribute is in use. The TREE_VALUE represents
18922 the arguments, if any. */
18923
18924 static tree
18925 cp_parser_attribute_list (cp_parser* parser)
18926 {
18927 tree attribute_list = NULL_TREE;
18928 bool save_translate_strings_p = parser->translate_strings_p;
18929
18930 parser->translate_strings_p = false;
18931 while (true)
18932 {
18933 cp_token *token;
18934 tree identifier;
18935 tree attribute;
18936
18937 /* Look for the identifier. We also allow keywords here; for
18938 example `__attribute__ ((const))' is legal. */
18939 token = cp_lexer_peek_token (parser->lexer);
18940 if (token->type == CPP_NAME
18941 || token->type == CPP_KEYWORD)
18942 {
18943 tree arguments = NULL_TREE;
18944
18945 /* Consume the token. */
18946 token = cp_lexer_consume_token (parser->lexer);
18947
18948 /* Save away the identifier that indicates which attribute
18949 this is. */
18950 identifier = (token->type == CPP_KEYWORD)
18951 /* For keywords, use the canonical spelling, not the
18952 parsed identifier. */
18953 ? ridpointers[(int) token->keyword]
18954 : token->u.value;
18955
18956 attribute = build_tree_list (identifier, NULL_TREE);
18957
18958 /* Peek at the next token. */
18959 token = cp_lexer_peek_token (parser->lexer);
18960 /* If it's an `(', then parse the attribute arguments. */
18961 if (token->type == CPP_OPEN_PAREN)
18962 {
18963 VEC(tree,gc) *vec;
18964 int attr_flag = (attribute_takes_identifier_p (identifier)
18965 ? id_attr : normal_attr);
18966 vec = cp_parser_parenthesized_expression_list
18967 (parser, attr_flag, /*cast_p=*/false,
18968 /*allow_expansion_p=*/false,
18969 /*non_constant_p=*/NULL);
18970 if (vec == NULL)
18971 arguments = error_mark_node;
18972 else
18973 {
18974 arguments = build_tree_list_vec (vec);
18975 release_tree_vector (vec);
18976 }
18977 /* Save the arguments away. */
18978 TREE_VALUE (attribute) = arguments;
18979 }
18980
18981 if (arguments != error_mark_node)
18982 {
18983 /* Add this attribute to the list. */
18984 TREE_CHAIN (attribute) = attribute_list;
18985 attribute_list = attribute;
18986 }
18987
18988 token = cp_lexer_peek_token (parser->lexer);
18989 }
18990 /* Now, look for more attributes. If the next token isn't a
18991 `,', we're done. */
18992 if (token->type != CPP_COMMA)
18993 break;
18994
18995 /* Consume the comma and keep going. */
18996 cp_lexer_consume_token (parser->lexer);
18997 }
18998 parser->translate_strings_p = save_translate_strings_p;
18999
19000 /* We built up the list in reverse order. */
19001 return nreverse (attribute_list);
19002 }
19003
19004 /* Parse an optional `__extension__' keyword. Returns TRUE if it is
19005 present, and FALSE otherwise. *SAVED_PEDANTIC is set to the
19006 current value of the PEDANTIC flag, regardless of whether or not
19007 the `__extension__' keyword is present. The caller is responsible
19008 for restoring the value of the PEDANTIC flag. */
19009
19010 static bool
19011 cp_parser_extension_opt (cp_parser* parser, int* saved_pedantic)
19012 {
19013 /* Save the old value of the PEDANTIC flag. */
19014 *saved_pedantic = pedantic;
19015
19016 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_EXTENSION))
19017 {
19018 /* Consume the `__extension__' token. */
19019 cp_lexer_consume_token (parser->lexer);
19020 /* We're not being pedantic while the `__extension__' keyword is
19021 in effect. */
19022 pedantic = 0;
19023
19024 return true;
19025 }
19026
19027 return false;
19028 }
19029
19030 /* Parse a label declaration.
19031
19032 label-declaration:
19033 __label__ label-declarator-seq ;
19034
19035 label-declarator-seq:
19036 identifier , label-declarator-seq
19037 identifier */
19038
19039 static void
19040 cp_parser_label_declaration (cp_parser* parser)
19041 {
19042 /* Look for the `__label__' keyword. */
19043 cp_parser_require_keyword (parser, RID_LABEL, RT_LABEL);
19044
19045 while (true)
19046 {
19047 tree identifier;
19048
19049 /* Look for an identifier. */
19050 identifier = cp_parser_identifier (parser);
19051 /* If we failed, stop. */
19052 if (identifier == error_mark_node)
19053 break;
19054 /* Declare it as a label. */
19055 finish_label_decl (identifier);
19056 /* If the next token is a `;', stop. */
19057 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
19058 break;
19059 /* Look for the `,' separating the label declarations. */
19060 cp_parser_require (parser, CPP_COMMA, RT_COMMA);
19061 }
19062
19063 /* Look for the final `;'. */
19064 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
19065 }
19066
19067 /* Support Functions */
19068
19069 /* Looks up NAME in the current scope, as given by PARSER->SCOPE.
19070 NAME should have one of the representations used for an
19071 id-expression. If NAME is the ERROR_MARK_NODE, the ERROR_MARK_NODE
19072 is returned. If PARSER->SCOPE is a dependent type, then a
19073 SCOPE_REF is returned.
19074
19075 If NAME is a TEMPLATE_ID_EXPR, then it will be immediately
19076 returned; the name was already resolved when the TEMPLATE_ID_EXPR
19077 was formed. Abstractly, such entities should not be passed to this
19078 function, because they do not need to be looked up, but it is
19079 simpler to check for this special case here, rather than at the
19080 call-sites.
19081
19082 In cases not explicitly covered above, this function returns a
19083 DECL, OVERLOAD, or baselink representing the result of the lookup.
19084 If there was no entity with the indicated NAME, the ERROR_MARK_NODE
19085 is returned.
19086
19087 If TAG_TYPE is not NONE_TYPE, it indicates an explicit type keyword
19088 (e.g., "struct") that was used. In that case bindings that do not
19089 refer to types are ignored.
19090
19091 If IS_TEMPLATE is TRUE, bindings that do not refer to templates are
19092 ignored.
19093
19094 If IS_NAMESPACE is TRUE, bindings that do not refer to namespaces
19095 are ignored.
19096
19097 If CHECK_DEPENDENCY is TRUE, names are not looked up in dependent
19098 types.
19099
19100 If AMBIGUOUS_DECLS is non-NULL, *AMBIGUOUS_DECLS is set to a
19101 TREE_LIST of candidates if name-lookup results in an ambiguity, and
19102 NULL_TREE otherwise. */
19103
19104 static tree
19105 cp_parser_lookup_name (cp_parser *parser, tree name,
19106 enum tag_types tag_type,
19107 bool is_template,
19108 bool is_namespace,
19109 bool check_dependency,
19110 tree *ambiguous_decls,
19111 location_t name_location)
19112 {
19113 int flags = 0;
19114 tree decl;
19115 tree object_type = parser->context->object_type;
19116
19117 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
19118 flags |= LOOKUP_COMPLAIN;
19119
19120 /* Assume that the lookup will be unambiguous. */
19121 if (ambiguous_decls)
19122 *ambiguous_decls = NULL_TREE;
19123
19124 /* Now that we have looked up the name, the OBJECT_TYPE (if any) is
19125 no longer valid. Note that if we are parsing tentatively, and
19126 the parse fails, OBJECT_TYPE will be automatically restored. */
19127 parser->context->object_type = NULL_TREE;
19128
19129 if (name == error_mark_node)
19130 return error_mark_node;
19131
19132 /* A template-id has already been resolved; there is no lookup to
19133 do. */
19134 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
19135 return name;
19136 if (BASELINK_P (name))
19137 {
19138 gcc_assert (TREE_CODE (BASELINK_FUNCTIONS (name))
19139 == TEMPLATE_ID_EXPR);
19140 return name;
19141 }
19142
19143 /* A BIT_NOT_EXPR is used to represent a destructor. By this point,
19144 it should already have been checked to make sure that the name
19145 used matches the type being destroyed. */
19146 if (TREE_CODE (name) == BIT_NOT_EXPR)
19147 {
19148 tree type;
19149
19150 /* Figure out to which type this destructor applies. */
19151 if (parser->scope)
19152 type = parser->scope;
19153 else if (object_type)
19154 type = object_type;
19155 else
19156 type = current_class_type;
19157 /* If that's not a class type, there is no destructor. */
19158 if (!type || !CLASS_TYPE_P (type))
19159 return error_mark_node;
19160 if (CLASSTYPE_LAZY_DESTRUCTOR (type))
19161 lazily_declare_fn (sfk_destructor, type);
19162 if (!CLASSTYPE_DESTRUCTORS (type))
19163 return error_mark_node;
19164 /* If it was a class type, return the destructor. */
19165 return CLASSTYPE_DESTRUCTORS (type);
19166 }
19167
19168 /* By this point, the NAME should be an ordinary identifier. If
19169 the id-expression was a qualified name, the qualifying scope is
19170 stored in PARSER->SCOPE at this point. */
19171 gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE);
19172
19173 /* Perform the lookup. */
19174 if (parser->scope)
19175 {
19176 bool dependent_p;
19177
19178 if (parser->scope == error_mark_node)
19179 return error_mark_node;
19180
19181 /* If the SCOPE is dependent, the lookup must be deferred until
19182 the template is instantiated -- unless we are explicitly
19183 looking up names in uninstantiated templates. Even then, we
19184 cannot look up the name if the scope is not a class type; it
19185 might, for example, be a template type parameter. */
19186 dependent_p = (TYPE_P (parser->scope)
19187 && dependent_scope_p (parser->scope));
19188 if ((check_dependency || !CLASS_TYPE_P (parser->scope))
19189 && dependent_p)
19190 /* Defer lookup. */
19191 decl = error_mark_node;
19192 else
19193 {
19194 tree pushed_scope = NULL_TREE;
19195
19196 /* If PARSER->SCOPE is a dependent type, then it must be a
19197 class type, and we must not be checking dependencies;
19198 otherwise, we would have processed this lookup above. So
19199 that PARSER->SCOPE is not considered a dependent base by
19200 lookup_member, we must enter the scope here. */
19201 if (dependent_p)
19202 pushed_scope = push_scope (parser->scope);
19203
19204 /* If the PARSER->SCOPE is a template specialization, it
19205 may be instantiated during name lookup. In that case,
19206 errors may be issued. Even if we rollback the current
19207 tentative parse, those errors are valid. */
19208 decl = lookup_qualified_name (parser->scope, name,
19209 tag_type != none_type,
19210 /*complain=*/true);
19211
19212 /* 3.4.3.1: In a lookup in which the constructor is an acceptable
19213 lookup result and the nested-name-specifier nominates a class C:
19214 * if the name specified after the nested-name-specifier, when
19215 looked up in C, is the injected-class-name of C (Clause 9), or
19216 * if the name specified after the nested-name-specifier is the
19217 same as the identifier or the simple-template-id's template-
19218 name in the last component of the nested-name-specifier,
19219 the name is instead considered to name the constructor of
19220 class C. [ Note: for example, the constructor is not an
19221 acceptable lookup result in an elaborated-type-specifier so
19222 the constructor would not be used in place of the
19223 injected-class-name. --end note ] Such a constructor name
19224 shall be used only in the declarator-id of a declaration that
19225 names a constructor or in a using-declaration. */
19226 if (tag_type == none_type
19227 && DECL_SELF_REFERENCE_P (decl)
19228 && same_type_p (DECL_CONTEXT (decl), parser->scope))
19229 decl = lookup_qualified_name (parser->scope, ctor_identifier,
19230 tag_type != none_type,
19231 /*complain=*/true);
19232
19233 /* If we have a single function from a using decl, pull it out. */
19234 if (TREE_CODE (decl) == OVERLOAD
19235 && !really_overloaded_fn (decl))
19236 decl = OVL_FUNCTION (decl);
19237
19238 if (pushed_scope)
19239 pop_scope (pushed_scope);
19240 }
19241
19242 /* If the scope is a dependent type and either we deferred lookup or
19243 we did lookup but didn't find the name, rememeber the name. */
19244 if (decl == error_mark_node && TYPE_P (parser->scope)
19245 && dependent_type_p (parser->scope))
19246 {
19247 if (tag_type)
19248 {
19249 tree type;
19250
19251 /* The resolution to Core Issue 180 says that `struct
19252 A::B' should be considered a type-name, even if `A'
19253 is dependent. */
19254 type = make_typename_type (parser->scope, name, tag_type,
19255 /*complain=*/tf_error);
19256 decl = TYPE_NAME (type);
19257 }
19258 else if (is_template
19259 && (cp_parser_next_token_ends_template_argument_p (parser)
19260 || cp_lexer_next_token_is (parser->lexer,
19261 CPP_CLOSE_PAREN)))
19262 decl = make_unbound_class_template (parser->scope,
19263 name, NULL_TREE,
19264 /*complain=*/tf_error);
19265 else
19266 decl = build_qualified_name (/*type=*/NULL_TREE,
19267 parser->scope, name,
19268 is_template);
19269 }
19270 parser->qualifying_scope = parser->scope;
19271 parser->object_scope = NULL_TREE;
19272 }
19273 else if (object_type)
19274 {
19275 tree object_decl = NULL_TREE;
19276 /* Look up the name in the scope of the OBJECT_TYPE, unless the
19277 OBJECT_TYPE is not a class. */
19278 if (CLASS_TYPE_P (object_type))
19279 /* If the OBJECT_TYPE is a template specialization, it may
19280 be instantiated during name lookup. In that case, errors
19281 may be issued. Even if we rollback the current tentative
19282 parse, those errors are valid. */
19283 object_decl = lookup_member (object_type,
19284 name,
19285 /*protect=*/0,
19286 tag_type != none_type);
19287 /* Look it up in the enclosing context, too. */
19288 decl = lookup_name_real (name, tag_type != none_type,
19289 /*nonclass=*/0,
19290 /*block_p=*/true, is_namespace, flags);
19291 parser->object_scope = object_type;
19292 parser->qualifying_scope = NULL_TREE;
19293 if (object_decl)
19294 decl = object_decl;
19295 }
19296 else
19297 {
19298 decl = lookup_name_real (name, tag_type != none_type,
19299 /*nonclass=*/0,
19300 /*block_p=*/true, is_namespace, flags);
19301 parser->qualifying_scope = NULL_TREE;
19302 parser->object_scope = NULL_TREE;
19303 }
19304
19305 /* If the lookup failed, let our caller know. */
19306 if (!decl || decl == error_mark_node)
19307 return error_mark_node;
19308
19309 /* Pull out the template from an injected-class-name (or multiple). */
19310 if (is_template)
19311 decl = maybe_get_template_decl_from_type_decl (decl);
19312
19313 /* If it's a TREE_LIST, the result of the lookup was ambiguous. */
19314 if (TREE_CODE (decl) == TREE_LIST)
19315 {
19316 if (ambiguous_decls)
19317 *ambiguous_decls = decl;
19318 /* The error message we have to print is too complicated for
19319 cp_parser_error, so we incorporate its actions directly. */
19320 if (!cp_parser_simulate_error (parser))
19321 {
19322 error_at (name_location, "reference to %qD is ambiguous",
19323 name);
19324 print_candidates (decl);
19325 }
19326 return error_mark_node;
19327 }
19328
19329 gcc_assert (DECL_P (decl)
19330 || TREE_CODE (decl) == OVERLOAD
19331 || TREE_CODE (decl) == SCOPE_REF
19332 || TREE_CODE (decl) == UNBOUND_CLASS_TEMPLATE
19333 || BASELINK_P (decl));
19334
19335 /* If we have resolved the name of a member declaration, check to
19336 see if the declaration is accessible. When the name resolves to
19337 set of overloaded functions, accessibility is checked when
19338 overload resolution is done.
19339
19340 During an explicit instantiation, access is not checked at all,
19341 as per [temp.explicit]. */
19342 if (DECL_P (decl))
19343 check_accessibility_of_qualified_id (decl, object_type, parser->scope);
19344
19345 return decl;
19346 }
19347
19348 /* Like cp_parser_lookup_name, but for use in the typical case where
19349 CHECK_ACCESS is TRUE, IS_TYPE is FALSE, IS_TEMPLATE is FALSE,
19350 IS_NAMESPACE is FALSE, and CHECK_DEPENDENCY is TRUE. */
19351
19352 static tree
19353 cp_parser_lookup_name_simple (cp_parser* parser, tree name, location_t location)
19354 {
19355 return cp_parser_lookup_name (parser, name,
19356 none_type,
19357 /*is_template=*/false,
19358 /*is_namespace=*/false,
19359 /*check_dependency=*/true,
19360 /*ambiguous_decls=*/NULL,
19361 location);
19362 }
19363
19364 /* If DECL is a TEMPLATE_DECL that can be treated like a TYPE_DECL in
19365 the current context, return the TYPE_DECL. If TAG_NAME_P is
19366 true, the DECL indicates the class being defined in a class-head,
19367 or declared in an elaborated-type-specifier.
19368
19369 Otherwise, return DECL. */
19370
19371 static tree
19372 cp_parser_maybe_treat_template_as_class (tree decl, bool tag_name_p)
19373 {
19374 /* If the TEMPLATE_DECL is being declared as part of a class-head,
19375 the translation from TEMPLATE_DECL to TYPE_DECL occurs:
19376
19377 struct A {
19378 template <typename T> struct B;
19379 };
19380
19381 template <typename T> struct A::B {};
19382
19383 Similarly, in an elaborated-type-specifier:
19384
19385 namespace N { struct X{}; }
19386
19387 struct A {
19388 template <typename T> friend struct N::X;
19389 };
19390
19391 However, if the DECL refers to a class type, and we are in
19392 the scope of the class, then the name lookup automatically
19393 finds the TYPE_DECL created by build_self_reference rather
19394 than a TEMPLATE_DECL. For example, in:
19395
19396 template <class T> struct S {
19397 S s;
19398 };
19399
19400 there is no need to handle such case. */
19401
19402 if (DECL_CLASS_TEMPLATE_P (decl) && tag_name_p)
19403 return DECL_TEMPLATE_RESULT (decl);
19404
19405 return decl;
19406 }
19407
19408 /* If too many, or too few, template-parameter lists apply to the
19409 declarator, issue an error message. Returns TRUE if all went well,
19410 and FALSE otherwise. */
19411
19412 static bool
19413 cp_parser_check_declarator_template_parameters (cp_parser* parser,
19414 cp_declarator *declarator,
19415 location_t declarator_location)
19416 {
19417 unsigned num_templates;
19418
19419 /* We haven't seen any classes that involve template parameters yet. */
19420 num_templates = 0;
19421
19422 switch (declarator->kind)
19423 {
19424 case cdk_id:
19425 if (declarator->u.id.qualifying_scope)
19426 {
19427 tree scope;
19428
19429 scope = declarator->u.id.qualifying_scope;
19430
19431 while (scope && CLASS_TYPE_P (scope))
19432 {
19433 /* You're supposed to have one `template <...>'
19434 for every template class, but you don't need one
19435 for a full specialization. For example:
19436
19437 template <class T> struct S{};
19438 template <> struct S<int> { void f(); };
19439 void S<int>::f () {}
19440
19441 is correct; there shouldn't be a `template <>' for
19442 the definition of `S<int>::f'. */
19443 if (!CLASSTYPE_TEMPLATE_INFO (scope))
19444 /* If SCOPE does not have template information of any
19445 kind, then it is not a template, nor is it nested
19446 within a template. */
19447 break;
19448 if (explicit_class_specialization_p (scope))
19449 break;
19450 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (scope)))
19451 ++num_templates;
19452
19453 scope = TYPE_CONTEXT (scope);
19454 }
19455 }
19456 else if (TREE_CODE (declarator->u.id.unqualified_name)
19457 == TEMPLATE_ID_EXPR)
19458 /* If the DECLARATOR has the form `X<y>' then it uses one
19459 additional level of template parameters. */
19460 ++num_templates;
19461
19462 return cp_parser_check_template_parameters
19463 (parser, num_templates, declarator_location, declarator);
19464
19465
19466 case cdk_function:
19467 case cdk_array:
19468 case cdk_pointer:
19469 case cdk_reference:
19470 case cdk_ptrmem:
19471 return (cp_parser_check_declarator_template_parameters
19472 (parser, declarator->declarator, declarator_location));
19473
19474 case cdk_error:
19475 return true;
19476
19477 default:
19478 gcc_unreachable ();
19479 }
19480 return false;
19481 }
19482
19483 /* NUM_TEMPLATES were used in the current declaration. If that is
19484 invalid, return FALSE and issue an error messages. Otherwise,
19485 return TRUE. If DECLARATOR is non-NULL, then we are checking a
19486 declarator and we can print more accurate diagnostics. */
19487
19488 static bool
19489 cp_parser_check_template_parameters (cp_parser* parser,
19490 unsigned num_templates,
19491 location_t location,
19492 cp_declarator *declarator)
19493 {
19494 /* If there are the same number of template classes and parameter
19495 lists, that's OK. */
19496 if (parser->num_template_parameter_lists == num_templates)
19497 return true;
19498 /* If there are more, but only one more, then we are referring to a
19499 member template. That's OK too. */
19500 if (parser->num_template_parameter_lists == num_templates + 1)
19501 return true;
19502 /* If there are more template classes than parameter lists, we have
19503 something like:
19504
19505 template <class T> void S<T>::R<T>::f (); */
19506 if (parser->num_template_parameter_lists < num_templates)
19507 {
19508 if (declarator && !current_function_decl)
19509 error_at (location, "specializing member %<%T::%E%> "
19510 "requires %<template<>%> syntax",
19511 declarator->u.id.qualifying_scope,
19512 declarator->u.id.unqualified_name);
19513 else if (declarator)
19514 error_at (location, "invalid declaration of %<%T::%E%>",
19515 declarator->u.id.qualifying_scope,
19516 declarator->u.id.unqualified_name);
19517 else
19518 error_at (location, "too few template-parameter-lists");
19519 return false;
19520 }
19521 /* Otherwise, there are too many template parameter lists. We have
19522 something like:
19523
19524 template <class T> template <class U> void S::f(); */
19525 error_at (location, "too many template-parameter-lists");
19526 return false;
19527 }
19528
19529 /* Parse an optional `::' token indicating that the following name is
19530 from the global namespace. If so, PARSER->SCOPE is set to the
19531 GLOBAL_NAMESPACE. Otherwise, PARSER->SCOPE is set to NULL_TREE,
19532 unless CURRENT_SCOPE_VALID_P is TRUE, in which case it is left alone.
19533 Returns the new value of PARSER->SCOPE, if the `::' token is
19534 present, and NULL_TREE otherwise. */
19535
19536 static tree
19537 cp_parser_global_scope_opt (cp_parser* parser, bool current_scope_valid_p)
19538 {
19539 cp_token *token;
19540
19541 /* Peek at the next token. */
19542 token = cp_lexer_peek_token (parser->lexer);
19543 /* If we're looking at a `::' token then we're starting from the
19544 global namespace, not our current location. */
19545 if (token->type == CPP_SCOPE)
19546 {
19547 /* Consume the `::' token. */
19548 cp_lexer_consume_token (parser->lexer);
19549 /* Set the SCOPE so that we know where to start the lookup. */
19550 parser->scope = global_namespace;
19551 parser->qualifying_scope = global_namespace;
19552 parser->object_scope = NULL_TREE;
19553
19554 return parser->scope;
19555 }
19556 else if (!current_scope_valid_p)
19557 {
19558 parser->scope = NULL_TREE;
19559 parser->qualifying_scope = NULL_TREE;
19560 parser->object_scope = NULL_TREE;
19561 }
19562
19563 return NULL_TREE;
19564 }
19565
19566 /* Returns TRUE if the upcoming token sequence is the start of a
19567 constructor declarator. If FRIEND_P is true, the declarator is
19568 preceded by the `friend' specifier. */
19569
19570 static bool
19571 cp_parser_constructor_declarator_p (cp_parser *parser, bool friend_p)
19572 {
19573 bool constructor_p;
19574 tree nested_name_specifier;
19575 cp_token *next_token;
19576
19577 /* The common case is that this is not a constructor declarator, so
19578 try to avoid doing lots of work if at all possible. It's not
19579 valid declare a constructor at function scope. */
19580 if (parser->in_function_body)
19581 return false;
19582 /* And only certain tokens can begin a constructor declarator. */
19583 next_token = cp_lexer_peek_token (parser->lexer);
19584 if (next_token->type != CPP_NAME
19585 && next_token->type != CPP_SCOPE
19586 && next_token->type != CPP_NESTED_NAME_SPECIFIER
19587 && next_token->type != CPP_TEMPLATE_ID)
19588 return false;
19589
19590 /* Parse tentatively; we are going to roll back all of the tokens
19591 consumed here. */
19592 cp_parser_parse_tentatively (parser);
19593 /* Assume that we are looking at a constructor declarator. */
19594 constructor_p = true;
19595
19596 /* Look for the optional `::' operator. */
19597 cp_parser_global_scope_opt (parser,
19598 /*current_scope_valid_p=*/false);
19599 /* Look for the nested-name-specifier. */
19600 nested_name_specifier
19601 = (cp_parser_nested_name_specifier_opt (parser,
19602 /*typename_keyword_p=*/false,
19603 /*check_dependency_p=*/false,
19604 /*type_p=*/false,
19605 /*is_declaration=*/false));
19606 /* Outside of a class-specifier, there must be a
19607 nested-name-specifier. */
19608 if (!nested_name_specifier &&
19609 (!at_class_scope_p () || !TYPE_BEING_DEFINED (current_class_type)
19610 || friend_p))
19611 constructor_p = false;
19612 else if (nested_name_specifier == error_mark_node)
19613 constructor_p = false;
19614
19615 /* If we have a class scope, this is easy; DR 147 says that S::S always
19616 names the constructor, and no other qualified name could. */
19617 if (constructor_p && nested_name_specifier
19618 && TYPE_P (nested_name_specifier))
19619 {
19620 tree id = cp_parser_unqualified_id (parser,
19621 /*template_keyword_p=*/false,
19622 /*check_dependency_p=*/false,
19623 /*declarator_p=*/true,
19624 /*optional_p=*/false);
19625 if (is_overloaded_fn (id))
19626 id = DECL_NAME (get_first_fn (id));
19627 if (!constructor_name_p (id, nested_name_specifier))
19628 constructor_p = false;
19629 }
19630 /* If we still think that this might be a constructor-declarator,
19631 look for a class-name. */
19632 else if (constructor_p)
19633 {
19634 /* If we have:
19635
19636 template <typename T> struct S {
19637 S();
19638 };
19639
19640 we must recognize that the nested `S' names a class. */
19641 tree type_decl;
19642 type_decl = cp_parser_class_name (parser,
19643 /*typename_keyword_p=*/false,
19644 /*template_keyword_p=*/false,
19645 none_type,
19646 /*check_dependency_p=*/false,
19647 /*class_head_p=*/false,
19648 /*is_declaration=*/false);
19649 /* If there was no class-name, then this is not a constructor. */
19650 constructor_p = !cp_parser_error_occurred (parser);
19651
19652 /* If we're still considering a constructor, we have to see a `(',
19653 to begin the parameter-declaration-clause, followed by either a
19654 `)', an `...', or a decl-specifier. We need to check for a
19655 type-specifier to avoid being fooled into thinking that:
19656
19657 S (f) (int);
19658
19659 is a constructor. (It is actually a function named `f' that
19660 takes one parameter (of type `int') and returns a value of type
19661 `S'. */
19662 if (constructor_p
19663 && !cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
19664 constructor_p = false;
19665
19666 if (constructor_p
19667 && cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN)
19668 && cp_lexer_next_token_is_not (parser->lexer, CPP_ELLIPSIS)
19669 /* A parameter declaration begins with a decl-specifier,
19670 which is either the "attribute" keyword, a storage class
19671 specifier, or (usually) a type-specifier. */
19672 && !cp_lexer_next_token_is_decl_specifier_keyword (parser->lexer))
19673 {
19674 tree type;
19675 tree pushed_scope = NULL_TREE;
19676 unsigned saved_num_template_parameter_lists;
19677
19678 /* Names appearing in the type-specifier should be looked up
19679 in the scope of the class. */
19680 if (current_class_type)
19681 type = NULL_TREE;
19682 else
19683 {
19684 type = TREE_TYPE (type_decl);
19685 if (TREE_CODE (type) == TYPENAME_TYPE)
19686 {
19687 type = resolve_typename_type (type,
19688 /*only_current_p=*/false);
19689 if (TREE_CODE (type) == TYPENAME_TYPE)
19690 {
19691 cp_parser_abort_tentative_parse (parser);
19692 return false;
19693 }
19694 }
19695 pushed_scope = push_scope (type);
19696 }
19697
19698 /* Inside the constructor parameter list, surrounding
19699 template-parameter-lists do not apply. */
19700 saved_num_template_parameter_lists
19701 = parser->num_template_parameter_lists;
19702 parser->num_template_parameter_lists = 0;
19703
19704 /* Look for the type-specifier. */
19705 cp_parser_type_specifier (parser,
19706 CP_PARSER_FLAGS_NONE,
19707 /*decl_specs=*/NULL,
19708 /*is_declarator=*/true,
19709 /*declares_class_or_enum=*/NULL,
19710 /*is_cv_qualifier=*/NULL);
19711
19712 parser->num_template_parameter_lists
19713 = saved_num_template_parameter_lists;
19714
19715 /* Leave the scope of the class. */
19716 if (pushed_scope)
19717 pop_scope (pushed_scope);
19718
19719 constructor_p = !cp_parser_error_occurred (parser);
19720 }
19721 }
19722
19723 /* We did not really want to consume any tokens. */
19724 cp_parser_abort_tentative_parse (parser);
19725
19726 return constructor_p;
19727 }
19728
19729 /* Parse the definition of the function given by the DECL_SPECIFIERS,
19730 ATTRIBUTES, and DECLARATOR. The access checks have been deferred;
19731 they must be performed once we are in the scope of the function.
19732
19733 Returns the function defined. */
19734
19735 static tree
19736 cp_parser_function_definition_from_specifiers_and_declarator
19737 (cp_parser* parser,
19738 cp_decl_specifier_seq *decl_specifiers,
19739 tree attributes,
19740 const cp_declarator *declarator)
19741 {
19742 tree fn;
19743 bool success_p;
19744
19745 /* Begin the function-definition. */
19746 success_p = start_function (decl_specifiers, declarator, attributes);
19747
19748 /* The things we're about to see are not directly qualified by any
19749 template headers we've seen thus far. */
19750 reset_specialization ();
19751
19752 /* If there were names looked up in the decl-specifier-seq that we
19753 did not check, check them now. We must wait until we are in the
19754 scope of the function to perform the checks, since the function
19755 might be a friend. */
19756 perform_deferred_access_checks ();
19757
19758 if (!success_p)
19759 {
19760 /* Skip the entire function. */
19761 cp_parser_skip_to_end_of_block_or_statement (parser);
19762 fn = error_mark_node;
19763 }
19764 else if (DECL_INITIAL (current_function_decl) != error_mark_node)
19765 {
19766 /* Seen already, skip it. An error message has already been output. */
19767 cp_parser_skip_to_end_of_block_or_statement (parser);
19768 fn = current_function_decl;
19769 current_function_decl = NULL_TREE;
19770 /* If this is a function from a class, pop the nested class. */
19771 if (current_class_name)
19772 pop_nested_class ();
19773 }
19774 else
19775 fn = cp_parser_function_definition_after_declarator (parser,
19776 /*inline_p=*/false);
19777
19778 return fn;
19779 }
19780
19781 /* Parse the part of a function-definition that follows the
19782 declarator. INLINE_P is TRUE iff this function is an inline
19783 function defined within a class-specifier.
19784
19785 Returns the function defined. */
19786
19787 static tree
19788 cp_parser_function_definition_after_declarator (cp_parser* parser,
19789 bool inline_p)
19790 {
19791 tree fn;
19792 bool ctor_initializer_p = false;
19793 bool saved_in_unbraced_linkage_specification_p;
19794 bool saved_in_function_body;
19795 unsigned saved_num_template_parameter_lists;
19796 cp_token *token;
19797
19798 saved_in_function_body = parser->in_function_body;
19799 parser->in_function_body = true;
19800 /* If the next token is `return', then the code may be trying to
19801 make use of the "named return value" extension that G++ used to
19802 support. */
19803 token = cp_lexer_peek_token (parser->lexer);
19804 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_RETURN))
19805 {
19806 /* Consume the `return' keyword. */
19807 cp_lexer_consume_token (parser->lexer);
19808 /* Look for the identifier that indicates what value is to be
19809 returned. */
19810 cp_parser_identifier (parser);
19811 /* Issue an error message. */
19812 error_at (token->location,
19813 "named return values are no longer supported");
19814 /* Skip tokens until we reach the start of the function body. */
19815 while (true)
19816 {
19817 cp_token *token = cp_lexer_peek_token (parser->lexer);
19818 if (token->type == CPP_OPEN_BRACE
19819 || token->type == CPP_EOF
19820 || token->type == CPP_PRAGMA_EOL)
19821 break;
19822 cp_lexer_consume_token (parser->lexer);
19823 }
19824 }
19825 /* The `extern' in `extern "C" void f () { ... }' does not apply to
19826 anything declared inside `f'. */
19827 saved_in_unbraced_linkage_specification_p
19828 = parser->in_unbraced_linkage_specification_p;
19829 parser->in_unbraced_linkage_specification_p = false;
19830 /* Inside the function, surrounding template-parameter-lists do not
19831 apply. */
19832 saved_num_template_parameter_lists
19833 = parser->num_template_parameter_lists;
19834 parser->num_template_parameter_lists = 0;
19835
19836 start_lambda_scope (current_function_decl);
19837
19838 /* If the next token is `try', then we are looking at a
19839 function-try-block. */
19840 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TRY))
19841 ctor_initializer_p = cp_parser_function_try_block (parser);
19842 /* A function-try-block includes the function-body, so we only do
19843 this next part if we're not processing a function-try-block. */
19844 else
19845 ctor_initializer_p
19846 = cp_parser_ctor_initializer_opt_and_function_body (parser);
19847
19848 finish_lambda_scope ();
19849
19850 /* Finish the function. */
19851 fn = finish_function ((ctor_initializer_p ? 1 : 0) |
19852 (inline_p ? 2 : 0));
19853 /* Generate code for it, if necessary. */
19854 expand_or_defer_fn (fn);
19855 /* Restore the saved values. */
19856 parser->in_unbraced_linkage_specification_p
19857 = saved_in_unbraced_linkage_specification_p;
19858 parser->num_template_parameter_lists
19859 = saved_num_template_parameter_lists;
19860 parser->in_function_body = saved_in_function_body;
19861
19862 return fn;
19863 }
19864
19865 /* Parse a template-declaration, assuming that the `export' (and
19866 `extern') keywords, if present, has already been scanned. MEMBER_P
19867 is as for cp_parser_template_declaration. */
19868
19869 static void
19870 cp_parser_template_declaration_after_export (cp_parser* parser, bool member_p)
19871 {
19872 tree decl = NULL_TREE;
19873 VEC (deferred_access_check,gc) *checks;
19874 tree parameter_list;
19875 bool friend_p = false;
19876 bool need_lang_pop;
19877 cp_token *token;
19878
19879 /* Look for the `template' keyword. */
19880 token = cp_lexer_peek_token (parser->lexer);
19881 if (!cp_parser_require_keyword (parser, RID_TEMPLATE, RT_TEMPLATE))
19882 return;
19883
19884 /* And the `<'. */
19885 if (!cp_parser_require (parser, CPP_LESS, RT_LESS))
19886 return;
19887 if (at_class_scope_p () && current_function_decl)
19888 {
19889 /* 14.5.2.2 [temp.mem]
19890
19891 A local class shall not have member templates. */
19892 error_at (token->location,
19893 "invalid declaration of member template in local class");
19894 cp_parser_skip_to_end_of_block_or_statement (parser);
19895 return;
19896 }
19897 /* [temp]
19898
19899 A template ... shall not have C linkage. */
19900 if (current_lang_name == lang_name_c)
19901 {
19902 error_at (token->location, "template with C linkage");
19903 /* Give it C++ linkage to avoid confusing other parts of the
19904 front end. */
19905 push_lang_context (lang_name_cplusplus);
19906 need_lang_pop = true;
19907 }
19908 else
19909 need_lang_pop = false;
19910
19911 /* We cannot perform access checks on the template parameter
19912 declarations until we know what is being declared, just as we
19913 cannot check the decl-specifier list. */
19914 push_deferring_access_checks (dk_deferred);
19915
19916 /* If the next token is `>', then we have an invalid
19917 specialization. Rather than complain about an invalid template
19918 parameter, issue an error message here. */
19919 if (cp_lexer_next_token_is (parser->lexer, CPP_GREATER))
19920 {
19921 cp_parser_error (parser, "invalid explicit specialization");
19922 begin_specialization ();
19923 parameter_list = NULL_TREE;
19924 }
19925 else
19926 {
19927 /* Parse the template parameters. */
19928 parameter_list = cp_parser_template_parameter_list (parser);
19929 fixup_template_parms ();
19930 }
19931
19932 /* Get the deferred access checks from the parameter list. These
19933 will be checked once we know what is being declared, as for a
19934 member template the checks must be performed in the scope of the
19935 class containing the member. */
19936 checks = get_deferred_access_checks ();
19937
19938 /* Look for the `>'. */
19939 cp_parser_skip_to_end_of_template_parameter_list (parser);
19940 /* We just processed one more parameter list. */
19941 ++parser->num_template_parameter_lists;
19942 /* If the next token is `template', there are more template
19943 parameters. */
19944 if (cp_lexer_next_token_is_keyword (parser->lexer,
19945 RID_TEMPLATE))
19946 cp_parser_template_declaration_after_export (parser, member_p);
19947 else
19948 {
19949 /* There are no access checks when parsing a template, as we do not
19950 know if a specialization will be a friend. */
19951 push_deferring_access_checks (dk_no_check);
19952 token = cp_lexer_peek_token (parser->lexer);
19953 decl = cp_parser_single_declaration (parser,
19954 checks,
19955 member_p,
19956 /*explicit_specialization_p=*/false,
19957 &friend_p);
19958 pop_deferring_access_checks ();
19959
19960 /* If this is a member template declaration, let the front
19961 end know. */
19962 if (member_p && !friend_p && decl)
19963 {
19964 if (TREE_CODE (decl) == TYPE_DECL)
19965 cp_parser_check_access_in_redeclaration (decl, token->location);
19966
19967 decl = finish_member_template_decl (decl);
19968 }
19969 else if (friend_p && decl && TREE_CODE (decl) == TYPE_DECL)
19970 make_friend_class (current_class_type, TREE_TYPE (decl),
19971 /*complain=*/true);
19972 }
19973 /* We are done with the current parameter list. */
19974 --parser->num_template_parameter_lists;
19975
19976 pop_deferring_access_checks ();
19977
19978 /* Finish up. */
19979 finish_template_decl (parameter_list);
19980
19981 /* Register member declarations. */
19982 if (member_p && !friend_p && decl && !DECL_CLASS_TEMPLATE_P (decl))
19983 finish_member_declaration (decl);
19984 /* For the erroneous case of a template with C linkage, we pushed an
19985 implicit C++ linkage scope; exit that scope now. */
19986 if (need_lang_pop)
19987 pop_lang_context ();
19988 /* If DECL is a function template, we must return to parse it later.
19989 (Even though there is no definition, there might be default
19990 arguments that need handling.) */
19991 if (member_p && decl
19992 && (TREE_CODE (decl) == FUNCTION_DECL
19993 || DECL_FUNCTION_TEMPLATE_P (decl)))
19994 VEC_safe_push (tree, gc, unparsed_funs_with_definitions, decl);
19995 }
19996
19997 /* Perform the deferred access checks from a template-parameter-list.
19998 CHECKS is a TREE_LIST of access checks, as returned by
19999 get_deferred_access_checks. */
20000
20001 static void
20002 cp_parser_perform_template_parameter_access_checks (VEC (deferred_access_check,gc)* checks)
20003 {
20004 ++processing_template_parmlist;
20005 perform_access_checks (checks);
20006 --processing_template_parmlist;
20007 }
20008
20009 /* Parse a `decl-specifier-seq [opt] init-declarator [opt] ;' or
20010 `function-definition' sequence. MEMBER_P is true, this declaration
20011 appears in a class scope.
20012
20013 Returns the DECL for the declared entity. If FRIEND_P is non-NULL,
20014 *FRIEND_P is set to TRUE iff the declaration is a friend. */
20015
20016 static tree
20017 cp_parser_single_declaration (cp_parser* parser,
20018 VEC (deferred_access_check,gc)* checks,
20019 bool member_p,
20020 bool explicit_specialization_p,
20021 bool* friend_p)
20022 {
20023 int declares_class_or_enum;
20024 tree decl = NULL_TREE;
20025 cp_decl_specifier_seq decl_specifiers;
20026 bool function_definition_p = false;
20027 cp_token *decl_spec_token_start;
20028
20029 /* This function is only used when processing a template
20030 declaration. */
20031 gcc_assert (innermost_scope_kind () == sk_template_parms
20032 || innermost_scope_kind () == sk_template_spec);
20033
20034 /* Defer access checks until we know what is being declared. */
20035 push_deferring_access_checks (dk_deferred);
20036
20037 /* Try the `decl-specifier-seq [opt] init-declarator [opt]'
20038 alternative. */
20039 decl_spec_token_start = cp_lexer_peek_token (parser->lexer);
20040 cp_parser_decl_specifier_seq (parser,
20041 CP_PARSER_FLAGS_OPTIONAL,
20042 &decl_specifiers,
20043 &declares_class_or_enum);
20044 if (friend_p)
20045 *friend_p = cp_parser_friend_p (&decl_specifiers);
20046
20047 /* There are no template typedefs. */
20048 if (decl_specifiers.specs[(int) ds_typedef])
20049 {
20050 error_at (decl_spec_token_start->location,
20051 "template declaration of %<typedef%>");
20052 decl = error_mark_node;
20053 }
20054
20055 /* Gather up the access checks that occurred the
20056 decl-specifier-seq. */
20057 stop_deferring_access_checks ();
20058
20059 /* Check for the declaration of a template class. */
20060 if (declares_class_or_enum)
20061 {
20062 if (cp_parser_declares_only_class_p (parser))
20063 {
20064 decl = shadow_tag (&decl_specifiers);
20065
20066 /* In this case:
20067
20068 struct C {
20069 friend template <typename T> struct A<T>::B;
20070 };
20071
20072 A<T>::B will be represented by a TYPENAME_TYPE, and
20073 therefore not recognized by shadow_tag. */
20074 if (friend_p && *friend_p
20075 && !decl
20076 && decl_specifiers.type
20077 && TYPE_P (decl_specifiers.type))
20078 decl = decl_specifiers.type;
20079
20080 if (decl && decl != error_mark_node)
20081 decl = TYPE_NAME (decl);
20082 else
20083 decl = error_mark_node;
20084
20085 /* Perform access checks for template parameters. */
20086 cp_parser_perform_template_parameter_access_checks (checks);
20087 }
20088 }
20089
20090 /* Complain about missing 'typename' or other invalid type names. */
20091 if (!decl_specifiers.any_type_specifiers_p)
20092 cp_parser_parse_and_diagnose_invalid_type_name (parser);
20093
20094 /* If it's not a template class, try for a template function. If
20095 the next token is a `;', then this declaration does not declare
20096 anything. But, if there were errors in the decl-specifiers, then
20097 the error might well have come from an attempted class-specifier.
20098 In that case, there's no need to warn about a missing declarator. */
20099 if (!decl
20100 && (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON)
20101 || decl_specifiers.type != error_mark_node))
20102 {
20103 decl = cp_parser_init_declarator (parser,
20104 &decl_specifiers,
20105 checks,
20106 /*function_definition_allowed_p=*/true,
20107 member_p,
20108 declares_class_or_enum,
20109 &function_definition_p,
20110 NULL);
20111
20112 /* 7.1.1-1 [dcl.stc]
20113
20114 A storage-class-specifier shall not be specified in an explicit
20115 specialization... */
20116 if (decl
20117 && explicit_specialization_p
20118 && decl_specifiers.storage_class != sc_none)
20119 {
20120 error_at (decl_spec_token_start->location,
20121 "explicit template specialization cannot have a storage class");
20122 decl = error_mark_node;
20123 }
20124 }
20125
20126 pop_deferring_access_checks ();
20127
20128 /* Clear any current qualification; whatever comes next is the start
20129 of something new. */
20130 parser->scope = NULL_TREE;
20131 parser->qualifying_scope = NULL_TREE;
20132 parser->object_scope = NULL_TREE;
20133 /* Look for a trailing `;' after the declaration. */
20134 if (!function_definition_p
20135 && (decl == error_mark_node
20136 || !cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON)))
20137 cp_parser_skip_to_end_of_block_or_statement (parser);
20138
20139 return decl;
20140 }
20141
20142 /* Parse a cast-expression that is not the operand of a unary "&". */
20143
20144 static tree
20145 cp_parser_simple_cast_expression (cp_parser *parser)
20146 {
20147 return cp_parser_cast_expression (parser, /*address_p=*/false,
20148 /*cast_p=*/false, NULL);
20149 }
20150
20151 /* Parse a functional cast to TYPE. Returns an expression
20152 representing the cast. */
20153
20154 static tree
20155 cp_parser_functional_cast (cp_parser* parser, tree type)
20156 {
20157 VEC(tree,gc) *vec;
20158 tree expression_list;
20159 tree cast;
20160 bool nonconst_p;
20161
20162 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
20163 {
20164 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
20165 expression_list = cp_parser_braced_list (parser, &nonconst_p);
20166 CONSTRUCTOR_IS_DIRECT_INIT (expression_list) = 1;
20167 if (TREE_CODE (type) == TYPE_DECL)
20168 type = TREE_TYPE (type);
20169 return finish_compound_literal (type, expression_list);
20170 }
20171
20172
20173 vec = cp_parser_parenthesized_expression_list (parser, non_attr,
20174 /*cast_p=*/true,
20175 /*allow_expansion_p=*/true,
20176 /*non_constant_p=*/NULL);
20177 if (vec == NULL)
20178 expression_list = error_mark_node;
20179 else
20180 {
20181 expression_list = build_tree_list_vec (vec);
20182 release_tree_vector (vec);
20183 }
20184
20185 cast = build_functional_cast (type, expression_list,
20186 tf_warning_or_error);
20187 /* [expr.const]/1: In an integral constant expression "only type
20188 conversions to integral or enumeration type can be used". */
20189 if (TREE_CODE (type) == TYPE_DECL)
20190 type = TREE_TYPE (type);
20191 if (cast != error_mark_node
20192 && !cast_valid_in_integral_constant_expression_p (type)
20193 && cp_parser_non_integral_constant_expression (parser,
20194 NIC_CONSTRUCTOR))
20195 return error_mark_node;
20196 return cast;
20197 }
20198
20199 /* Save the tokens that make up the body of a member function defined
20200 in a class-specifier. The DECL_SPECIFIERS and DECLARATOR have
20201 already been parsed. The ATTRIBUTES are any GNU "__attribute__"
20202 specifiers applied to the declaration. Returns the FUNCTION_DECL
20203 for the member function. */
20204
20205 static tree
20206 cp_parser_save_member_function_body (cp_parser* parser,
20207 cp_decl_specifier_seq *decl_specifiers,
20208 cp_declarator *declarator,
20209 tree attributes)
20210 {
20211 cp_token *first;
20212 cp_token *last;
20213 tree fn;
20214
20215 /* Create the FUNCTION_DECL. */
20216 fn = grokmethod (decl_specifiers, declarator, attributes);
20217 /* If something went badly wrong, bail out now. */
20218 if (fn == error_mark_node)
20219 {
20220 /* If there's a function-body, skip it. */
20221 if (cp_parser_token_starts_function_definition_p
20222 (cp_lexer_peek_token (parser->lexer)))
20223 cp_parser_skip_to_end_of_block_or_statement (parser);
20224 return error_mark_node;
20225 }
20226
20227 /* Remember it, if there default args to post process. */
20228 cp_parser_save_default_args (parser, fn);
20229
20230 /* Save away the tokens that make up the body of the
20231 function. */
20232 first = parser->lexer->next_token;
20233 /* We can have braced-init-list mem-initializers before the fn body. */
20234 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
20235 {
20236 cp_lexer_consume_token (parser->lexer);
20237 while (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE)
20238 && cp_lexer_next_token_is_not_keyword (parser->lexer, RID_TRY))
20239 {
20240 /* cache_group will stop after an un-nested { } pair, too. */
20241 if (cp_parser_cache_group (parser, CPP_CLOSE_PAREN, /*depth=*/0))
20242 break;
20243
20244 /* variadic mem-inits have ... after the ')'. */
20245 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
20246 cp_lexer_consume_token (parser->lexer);
20247 }
20248 }
20249 cp_parser_cache_group (parser, CPP_CLOSE_BRACE, /*depth=*/0);
20250 /* Handle function try blocks. */
20251 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_CATCH))
20252 cp_parser_cache_group (parser, CPP_CLOSE_BRACE, /*depth=*/0);
20253 last = parser->lexer->next_token;
20254
20255 /* Save away the inline definition; we will process it when the
20256 class is complete. */
20257 DECL_PENDING_INLINE_INFO (fn) = cp_token_cache_new (first, last);
20258 DECL_PENDING_INLINE_P (fn) = 1;
20259
20260 /* We need to know that this was defined in the class, so that
20261 friend templates are handled correctly. */
20262 DECL_INITIALIZED_IN_CLASS_P (fn) = 1;
20263
20264 /* Add FN to the queue of functions to be parsed later. */
20265 VEC_safe_push (tree, gc, unparsed_funs_with_definitions, fn);
20266
20267 return fn;
20268 }
20269
20270 /* Parse a template-argument-list, as well as the trailing ">" (but
20271 not the opening ">"). See cp_parser_template_argument_list for the
20272 return value. */
20273
20274 static tree
20275 cp_parser_enclosed_template_argument_list (cp_parser* parser)
20276 {
20277 tree arguments;
20278 tree saved_scope;
20279 tree saved_qualifying_scope;
20280 tree saved_object_scope;
20281 bool saved_greater_than_is_operator_p;
20282 int saved_unevaluated_operand;
20283 int saved_inhibit_evaluation_warnings;
20284
20285 /* [temp.names]
20286
20287 When parsing a template-id, the first non-nested `>' is taken as
20288 the end of the template-argument-list rather than a greater-than
20289 operator. */
20290 saved_greater_than_is_operator_p
20291 = parser->greater_than_is_operator_p;
20292 parser->greater_than_is_operator_p = false;
20293 /* Parsing the argument list may modify SCOPE, so we save it
20294 here. */
20295 saved_scope = parser->scope;
20296 saved_qualifying_scope = parser->qualifying_scope;
20297 saved_object_scope = parser->object_scope;
20298 /* We need to evaluate the template arguments, even though this
20299 template-id may be nested within a "sizeof". */
20300 saved_unevaluated_operand = cp_unevaluated_operand;
20301 cp_unevaluated_operand = 0;
20302 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
20303 c_inhibit_evaluation_warnings = 0;
20304 /* Parse the template-argument-list itself. */
20305 if (cp_lexer_next_token_is (parser->lexer, CPP_GREATER)
20306 || cp_lexer_next_token_is (parser->lexer, CPP_RSHIFT))
20307 arguments = NULL_TREE;
20308 else
20309 arguments = cp_parser_template_argument_list (parser);
20310 /* Look for the `>' that ends the template-argument-list. If we find
20311 a '>>' instead, it's probably just a typo. */
20312 if (cp_lexer_next_token_is (parser->lexer, CPP_RSHIFT))
20313 {
20314 if (cxx_dialect != cxx98)
20315 {
20316 /* In C++0x, a `>>' in a template argument list or cast
20317 expression is considered to be two separate `>'
20318 tokens. So, change the current token to a `>', but don't
20319 consume it: it will be consumed later when the outer
20320 template argument list (or cast expression) is parsed.
20321 Note that this replacement of `>' for `>>' is necessary
20322 even if we are parsing tentatively: in the tentative
20323 case, after calling
20324 cp_parser_enclosed_template_argument_list we will always
20325 throw away all of the template arguments and the first
20326 closing `>', either because the template argument list
20327 was erroneous or because we are replacing those tokens
20328 with a CPP_TEMPLATE_ID token. The second `>' (which will
20329 not have been thrown away) is needed either to close an
20330 outer template argument list or to complete a new-style
20331 cast. */
20332 cp_token *token = cp_lexer_peek_token (parser->lexer);
20333 token->type = CPP_GREATER;
20334 }
20335 else if (!saved_greater_than_is_operator_p)
20336 {
20337 /* If we're in a nested template argument list, the '>>' has
20338 to be a typo for '> >'. We emit the error message, but we
20339 continue parsing and we push a '>' as next token, so that
20340 the argument list will be parsed correctly. Note that the
20341 global source location is still on the token before the
20342 '>>', so we need to say explicitly where we want it. */
20343 cp_token *token = cp_lexer_peek_token (parser->lexer);
20344 error_at (token->location, "%<>>%> should be %<> >%> "
20345 "within a nested template argument list");
20346
20347 token->type = CPP_GREATER;
20348 }
20349 else
20350 {
20351 /* If this is not a nested template argument list, the '>>'
20352 is a typo for '>'. Emit an error message and continue.
20353 Same deal about the token location, but here we can get it
20354 right by consuming the '>>' before issuing the diagnostic. */
20355 cp_token *token = cp_lexer_consume_token (parser->lexer);
20356 error_at (token->location,
20357 "spurious %<>>%>, use %<>%> to terminate "
20358 "a template argument list");
20359 }
20360 }
20361 else
20362 cp_parser_skip_to_end_of_template_parameter_list (parser);
20363 /* The `>' token might be a greater-than operator again now. */
20364 parser->greater_than_is_operator_p
20365 = saved_greater_than_is_operator_p;
20366 /* Restore the SAVED_SCOPE. */
20367 parser->scope = saved_scope;
20368 parser->qualifying_scope = saved_qualifying_scope;
20369 parser->object_scope = saved_object_scope;
20370 cp_unevaluated_operand = saved_unevaluated_operand;
20371 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
20372
20373 return arguments;
20374 }
20375
20376 /* MEMBER_FUNCTION is a member function, or a friend. If default
20377 arguments, or the body of the function have not yet been parsed,
20378 parse them now. */
20379
20380 static void
20381 cp_parser_late_parsing_for_member (cp_parser* parser, tree member_function)
20382 {
20383 /* If this member is a template, get the underlying
20384 FUNCTION_DECL. */
20385 if (DECL_FUNCTION_TEMPLATE_P (member_function))
20386 member_function = DECL_TEMPLATE_RESULT (member_function);
20387
20388 /* There should not be any class definitions in progress at this
20389 point; the bodies of members are only parsed outside of all class
20390 definitions. */
20391 gcc_assert (parser->num_classes_being_defined == 0);
20392 /* While we're parsing the member functions we might encounter more
20393 classes. We want to handle them right away, but we don't want
20394 them getting mixed up with functions that are currently in the
20395 queue. */
20396 push_unparsed_function_queues (parser);
20397
20398 /* Make sure that any template parameters are in scope. */
20399 maybe_begin_member_template_processing (member_function);
20400
20401 /* If the body of the function has not yet been parsed, parse it
20402 now. */
20403 if (DECL_PENDING_INLINE_P (member_function))
20404 {
20405 tree function_scope;
20406 cp_token_cache *tokens;
20407
20408 /* The function is no longer pending; we are processing it. */
20409 tokens = DECL_PENDING_INLINE_INFO (member_function);
20410 DECL_PENDING_INLINE_INFO (member_function) = NULL;
20411 DECL_PENDING_INLINE_P (member_function) = 0;
20412
20413 /* If this is a local class, enter the scope of the containing
20414 function. */
20415 function_scope = current_function_decl;
20416 if (function_scope)
20417 push_function_context ();
20418
20419 /* Push the body of the function onto the lexer stack. */
20420 cp_parser_push_lexer_for_tokens (parser, tokens);
20421
20422 /* Let the front end know that we going to be defining this
20423 function. */
20424 start_preparsed_function (member_function, NULL_TREE,
20425 SF_PRE_PARSED | SF_INCLASS_INLINE);
20426
20427 /* Don't do access checking if it is a templated function. */
20428 if (processing_template_decl)
20429 push_deferring_access_checks (dk_no_check);
20430
20431 /* Now, parse the body of the function. */
20432 cp_parser_function_definition_after_declarator (parser,
20433 /*inline_p=*/true);
20434
20435 if (processing_template_decl)
20436 pop_deferring_access_checks ();
20437
20438 /* Leave the scope of the containing function. */
20439 if (function_scope)
20440 pop_function_context ();
20441 cp_parser_pop_lexer (parser);
20442 }
20443
20444 /* Remove any template parameters from the symbol table. */
20445 maybe_end_member_template_processing ();
20446
20447 /* Restore the queue. */
20448 pop_unparsed_function_queues (parser);
20449 }
20450
20451 /* If DECL contains any default args, remember it on the unparsed
20452 functions queue. */
20453
20454 static void
20455 cp_parser_save_default_args (cp_parser* parser, tree decl)
20456 {
20457 tree probe;
20458
20459 for (probe = TYPE_ARG_TYPES (TREE_TYPE (decl));
20460 probe;
20461 probe = TREE_CHAIN (probe))
20462 if (TREE_PURPOSE (probe))
20463 {
20464 cp_default_arg_entry *entry
20465 = VEC_safe_push (cp_default_arg_entry, gc,
20466 unparsed_funs_with_default_args, NULL);
20467 entry->class_type = current_class_type;
20468 entry->decl = decl;
20469 break;
20470 }
20471 }
20472
20473 /* FN is a FUNCTION_DECL which may contains a parameter with an
20474 unparsed DEFAULT_ARG. Parse the default args now. This function
20475 assumes that the current scope is the scope in which the default
20476 argument should be processed. */
20477
20478 static void
20479 cp_parser_late_parsing_default_args (cp_parser *parser, tree fn)
20480 {
20481 bool saved_local_variables_forbidden_p;
20482 tree parm, parmdecl;
20483
20484 /* While we're parsing the default args, we might (due to the
20485 statement expression extension) encounter more classes. We want
20486 to handle them right away, but we don't want them getting mixed
20487 up with default args that are currently in the queue. */
20488 push_unparsed_function_queues (parser);
20489
20490 /* Local variable names (and the `this' keyword) may not appear
20491 in a default argument. */
20492 saved_local_variables_forbidden_p = parser->local_variables_forbidden_p;
20493 parser->local_variables_forbidden_p = true;
20494
20495 for (parm = TYPE_ARG_TYPES (TREE_TYPE (fn)),
20496 parmdecl = DECL_ARGUMENTS (fn);
20497 parm && parm != void_list_node;
20498 parm = TREE_CHAIN (parm),
20499 parmdecl = DECL_CHAIN (parmdecl))
20500 {
20501 cp_token_cache *tokens;
20502 tree default_arg = TREE_PURPOSE (parm);
20503 tree parsed_arg;
20504 VEC(tree,gc) *insts;
20505 tree copy;
20506 unsigned ix;
20507
20508 if (!default_arg)
20509 continue;
20510
20511 if (TREE_CODE (default_arg) != DEFAULT_ARG)
20512 /* This can happen for a friend declaration for a function
20513 already declared with default arguments. */
20514 continue;
20515
20516 /* Push the saved tokens for the default argument onto the parser's
20517 lexer stack. */
20518 tokens = DEFARG_TOKENS (default_arg);
20519 cp_parser_push_lexer_for_tokens (parser, tokens);
20520
20521 start_lambda_scope (parmdecl);
20522
20523 /* Parse the assignment-expression. */
20524 parsed_arg = cp_parser_assignment_expression (parser, /*cast_p=*/false, NULL);
20525 if (parsed_arg == error_mark_node)
20526 {
20527 cp_parser_pop_lexer (parser);
20528 continue;
20529 }
20530
20531 if (!processing_template_decl)
20532 parsed_arg = check_default_argument (TREE_VALUE (parm), parsed_arg);
20533
20534 TREE_PURPOSE (parm) = parsed_arg;
20535
20536 /* Update any instantiations we've already created. */
20537 for (insts = DEFARG_INSTANTIATIONS (default_arg), ix = 0;
20538 VEC_iterate (tree, insts, ix, copy); ix++)
20539 TREE_PURPOSE (copy) = parsed_arg;
20540
20541 finish_lambda_scope ();
20542
20543 /* If the token stream has not been completely used up, then
20544 there was extra junk after the end of the default
20545 argument. */
20546 if (!cp_lexer_next_token_is (parser->lexer, CPP_EOF))
20547 cp_parser_error (parser, "expected %<,%>");
20548
20549 /* Revert to the main lexer. */
20550 cp_parser_pop_lexer (parser);
20551 }
20552
20553 /* Make sure no default arg is missing. */
20554 check_default_args (fn);
20555
20556 /* Restore the state of local_variables_forbidden_p. */
20557 parser->local_variables_forbidden_p = saved_local_variables_forbidden_p;
20558
20559 /* Restore the queue. */
20560 pop_unparsed_function_queues (parser);
20561 }
20562
20563 /* Parse the operand of `sizeof' (or a similar operator). Returns
20564 either a TYPE or an expression, depending on the form of the
20565 input. The KEYWORD indicates which kind of expression we have
20566 encountered. */
20567
20568 static tree
20569 cp_parser_sizeof_operand (cp_parser* parser, enum rid keyword)
20570 {
20571 tree expr = NULL_TREE;
20572 const char *saved_message;
20573 char *tmp;
20574 bool saved_integral_constant_expression_p;
20575 bool saved_non_integral_constant_expression_p;
20576 bool pack_expansion_p = false;
20577
20578 /* Types cannot be defined in a `sizeof' expression. Save away the
20579 old message. */
20580 saved_message = parser->type_definition_forbidden_message;
20581 /* And create the new one. */
20582 tmp = concat ("types may not be defined in %<",
20583 IDENTIFIER_POINTER (ridpointers[keyword]),
20584 "%> expressions", NULL);
20585 parser->type_definition_forbidden_message = tmp;
20586
20587 /* The restrictions on constant-expressions do not apply inside
20588 sizeof expressions. */
20589 saved_integral_constant_expression_p
20590 = parser->integral_constant_expression_p;
20591 saved_non_integral_constant_expression_p
20592 = parser->non_integral_constant_expression_p;
20593 parser->integral_constant_expression_p = false;
20594
20595 /* If it's a `...', then we are computing the length of a parameter
20596 pack. */
20597 if (keyword == RID_SIZEOF
20598 && cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
20599 {
20600 /* Consume the `...'. */
20601 cp_lexer_consume_token (parser->lexer);
20602 maybe_warn_variadic_templates ();
20603
20604 /* Note that this is an expansion. */
20605 pack_expansion_p = true;
20606 }
20607
20608 /* Do not actually evaluate the expression. */
20609 ++cp_unevaluated_operand;
20610 ++c_inhibit_evaluation_warnings;
20611 /* If it's a `(', then we might be looking at the type-id
20612 construction. */
20613 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
20614 {
20615 tree type;
20616 bool saved_in_type_id_in_expr_p;
20617
20618 /* We can't be sure yet whether we're looking at a type-id or an
20619 expression. */
20620 cp_parser_parse_tentatively (parser);
20621 /* Consume the `('. */
20622 cp_lexer_consume_token (parser->lexer);
20623 /* Parse the type-id. */
20624 saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
20625 parser->in_type_id_in_expr_p = true;
20626 type = cp_parser_type_id (parser);
20627 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
20628 /* Now, look for the trailing `)'. */
20629 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
20630 /* If all went well, then we're done. */
20631 if (cp_parser_parse_definitely (parser))
20632 {
20633 cp_decl_specifier_seq decl_specs;
20634
20635 /* Build a trivial decl-specifier-seq. */
20636 clear_decl_specs (&decl_specs);
20637 decl_specs.type = type;
20638
20639 /* Call grokdeclarator to figure out what type this is. */
20640 expr = grokdeclarator (NULL,
20641 &decl_specs,
20642 TYPENAME,
20643 /*initialized=*/0,
20644 /*attrlist=*/NULL);
20645 }
20646 }
20647
20648 /* If the type-id production did not work out, then we must be
20649 looking at the unary-expression production. */
20650 if (!expr)
20651 expr = cp_parser_unary_expression (parser, /*address_p=*/false,
20652 /*cast_p=*/false, NULL);
20653
20654 if (pack_expansion_p)
20655 /* Build a pack expansion. */
20656 expr = make_pack_expansion (expr);
20657
20658 /* Go back to evaluating expressions. */
20659 --cp_unevaluated_operand;
20660 --c_inhibit_evaluation_warnings;
20661
20662 /* Free the message we created. */
20663 free (tmp);
20664 /* And restore the old one. */
20665 parser->type_definition_forbidden_message = saved_message;
20666 parser->integral_constant_expression_p
20667 = saved_integral_constant_expression_p;
20668 parser->non_integral_constant_expression_p
20669 = saved_non_integral_constant_expression_p;
20670
20671 return expr;
20672 }
20673
20674 /* If the current declaration has no declarator, return true. */
20675
20676 static bool
20677 cp_parser_declares_only_class_p (cp_parser *parser)
20678 {
20679 /* If the next token is a `;' or a `,' then there is no
20680 declarator. */
20681 return (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
20682 || cp_lexer_next_token_is (parser->lexer, CPP_COMMA));
20683 }
20684
20685 /* Update the DECL_SPECS to reflect the storage class indicated by
20686 KEYWORD. */
20687
20688 static void
20689 cp_parser_set_storage_class (cp_parser *parser,
20690 cp_decl_specifier_seq *decl_specs,
20691 enum rid keyword,
20692 location_t location)
20693 {
20694 cp_storage_class storage_class;
20695
20696 if (parser->in_unbraced_linkage_specification_p)
20697 {
20698 error_at (location, "invalid use of %qD in linkage specification",
20699 ridpointers[keyword]);
20700 return;
20701 }
20702 else if (decl_specs->storage_class != sc_none)
20703 {
20704 decl_specs->conflicting_specifiers_p = true;
20705 return;
20706 }
20707
20708 if ((keyword == RID_EXTERN || keyword == RID_STATIC)
20709 && decl_specs->specs[(int) ds_thread])
20710 {
20711 error_at (location, "%<__thread%> before %qD", ridpointers[keyword]);
20712 decl_specs->specs[(int) ds_thread] = 0;
20713 }
20714
20715 switch (keyword)
20716 {
20717 case RID_AUTO:
20718 storage_class = sc_auto;
20719 break;
20720 case RID_REGISTER:
20721 storage_class = sc_register;
20722 break;
20723 case RID_STATIC:
20724 storage_class = sc_static;
20725 break;
20726 case RID_EXTERN:
20727 storage_class = sc_extern;
20728 break;
20729 case RID_MUTABLE:
20730 storage_class = sc_mutable;
20731 break;
20732 default:
20733 gcc_unreachable ();
20734 }
20735 decl_specs->storage_class = storage_class;
20736
20737 /* A storage class specifier cannot be applied alongside a typedef
20738 specifier. If there is a typedef specifier present then set
20739 conflicting_specifiers_p which will trigger an error later
20740 on in grokdeclarator. */
20741 if (decl_specs->specs[(int)ds_typedef])
20742 decl_specs->conflicting_specifiers_p = true;
20743 }
20744
20745 /* Update the DECL_SPECS to reflect the TYPE_SPEC. If USER_DEFINED_P
20746 is true, the type is a user-defined type; otherwise it is a
20747 built-in type specified by a keyword. */
20748
20749 static void
20750 cp_parser_set_decl_spec_type (cp_decl_specifier_seq *decl_specs,
20751 tree type_spec,
20752 location_t location,
20753 bool user_defined_p)
20754 {
20755 decl_specs->any_specifiers_p = true;
20756
20757 /* If the user tries to redeclare bool, char16_t, char32_t, or wchar_t
20758 (with, for example, in "typedef int wchar_t;") we remember that
20759 this is what happened. In system headers, we ignore these
20760 declarations so that G++ can work with system headers that are not
20761 C++-safe. */
20762 if (decl_specs->specs[(int) ds_typedef]
20763 && !user_defined_p
20764 && (type_spec == boolean_type_node
20765 || type_spec == char16_type_node
20766 || type_spec == char32_type_node
20767 || type_spec == wchar_type_node)
20768 && (decl_specs->type
20769 || decl_specs->specs[(int) ds_long]
20770 || decl_specs->specs[(int) ds_short]
20771 || decl_specs->specs[(int) ds_unsigned]
20772 || decl_specs->specs[(int) ds_signed]))
20773 {
20774 decl_specs->redefined_builtin_type = type_spec;
20775 if (!decl_specs->type)
20776 {
20777 decl_specs->type = type_spec;
20778 decl_specs->user_defined_type_p = false;
20779 decl_specs->type_location = location;
20780 }
20781 }
20782 else if (decl_specs->type)
20783 decl_specs->multiple_types_p = true;
20784 else
20785 {
20786 decl_specs->type = type_spec;
20787 decl_specs->user_defined_type_p = user_defined_p;
20788 decl_specs->redefined_builtin_type = NULL_TREE;
20789 decl_specs->type_location = location;
20790 }
20791 }
20792
20793 /* DECL_SPECIFIERS is the representation of a decl-specifier-seq.
20794 Returns TRUE iff `friend' appears among the DECL_SPECIFIERS. */
20795
20796 static bool
20797 cp_parser_friend_p (const cp_decl_specifier_seq *decl_specifiers)
20798 {
20799 return decl_specifiers->specs[(int) ds_friend] != 0;
20800 }
20801
20802 /* Issue an error message indicating that TOKEN_DESC was expected.
20803 If KEYWORD is true, it indicated this function is called by
20804 cp_parser_require_keword and the required token can only be
20805 a indicated keyword. */
20806
20807 static void
20808 cp_parser_required_error (cp_parser *parser,
20809 required_token token_desc,
20810 bool keyword)
20811 {
20812 switch (token_desc)
20813 {
20814 case RT_NEW:
20815 cp_parser_error (parser, "expected %<new%>");
20816 return;
20817 case RT_DELETE:
20818 cp_parser_error (parser, "expected %<delete%>");
20819 return;
20820 case RT_RETURN:
20821 cp_parser_error (parser, "expected %<return%>");
20822 return;
20823 case RT_WHILE:
20824 cp_parser_error (parser, "expected %<while%>");
20825 return;
20826 case RT_EXTERN:
20827 cp_parser_error (parser, "expected %<extern%>");
20828 return;
20829 case RT_STATIC_ASSERT:
20830 cp_parser_error (parser, "expected %<static_assert%>");
20831 return;
20832 case RT_DECLTYPE:
20833 cp_parser_error (parser, "expected %<decltype%>");
20834 return;
20835 case RT_OPERATOR:
20836 cp_parser_error (parser, "expected %<operator%>");
20837 return;
20838 case RT_CLASS:
20839 cp_parser_error (parser, "expected %<class%>");
20840 return;
20841 case RT_TEMPLATE:
20842 cp_parser_error (parser, "expected %<template%>");
20843 return;
20844 case RT_NAMESPACE:
20845 cp_parser_error (parser, "expected %<namespace%>");
20846 return;
20847 case RT_USING:
20848 cp_parser_error (parser, "expected %<using%>");
20849 return;
20850 case RT_ASM:
20851 cp_parser_error (parser, "expected %<asm%>");
20852 return;
20853 case RT_TRY:
20854 cp_parser_error (parser, "expected %<try%>");
20855 return;
20856 case RT_CATCH:
20857 cp_parser_error (parser, "expected %<catch%>");
20858 return;
20859 case RT_THROW:
20860 cp_parser_error (parser, "expected %<throw%>");
20861 return;
20862 case RT_LABEL:
20863 cp_parser_error (parser, "expected %<__label__%>");
20864 return;
20865 case RT_AT_TRY:
20866 cp_parser_error (parser, "expected %<@try%>");
20867 return;
20868 case RT_AT_SYNCHRONIZED:
20869 cp_parser_error (parser, "expected %<@synchronized%>");
20870 return;
20871 case RT_AT_THROW:
20872 cp_parser_error (parser, "expected %<@throw%>");
20873 return;
20874 default:
20875 break;
20876 }
20877 if (!keyword)
20878 {
20879 switch (token_desc)
20880 {
20881 case RT_SEMICOLON:
20882 cp_parser_error (parser, "expected %<;%>");
20883 return;
20884 case RT_OPEN_PAREN:
20885 cp_parser_error (parser, "expected %<(%>");
20886 return;
20887 case RT_CLOSE_BRACE:
20888 cp_parser_error (parser, "expected %<}%>");
20889 return;
20890 case RT_OPEN_BRACE:
20891 cp_parser_error (parser, "expected %<{%>");
20892 return;
20893 case RT_CLOSE_SQUARE:
20894 cp_parser_error (parser, "expected %<]%>");
20895 return;
20896 case RT_OPEN_SQUARE:
20897 cp_parser_error (parser, "expected %<[%>");
20898 return;
20899 case RT_COMMA:
20900 cp_parser_error (parser, "expected %<,%>");
20901 return;
20902 case RT_SCOPE:
20903 cp_parser_error (parser, "expected %<::%>");
20904 return;
20905 case RT_LESS:
20906 cp_parser_error (parser, "expected %<<%>");
20907 return;
20908 case RT_GREATER:
20909 cp_parser_error (parser, "expected %<>%>");
20910 return;
20911 case RT_EQ:
20912 cp_parser_error (parser, "expected %<=%>");
20913 return;
20914 case RT_ELLIPSIS:
20915 cp_parser_error (parser, "expected %<...%>");
20916 return;
20917 case RT_MULT:
20918 cp_parser_error (parser, "expected %<*%>");
20919 return;
20920 case RT_COMPL:
20921 cp_parser_error (parser, "expected %<~%>");
20922 return;
20923 case RT_COLON:
20924 cp_parser_error (parser, "expected %<:%>");
20925 return;
20926 case RT_COLON_SCOPE:
20927 cp_parser_error (parser, "expected %<:%> or %<::%>");
20928 return;
20929 case RT_CLOSE_PAREN:
20930 cp_parser_error (parser, "expected %<)%>");
20931 return;
20932 case RT_COMMA_CLOSE_PAREN:
20933 cp_parser_error (parser, "expected %<,%> or %<)%>");
20934 return;
20935 case RT_PRAGMA_EOL:
20936 cp_parser_error (parser, "expected end of line");
20937 return;
20938 case RT_NAME:
20939 cp_parser_error (parser, "expected identifier");
20940 return;
20941 case RT_SELECT:
20942 cp_parser_error (parser, "expected selection-statement");
20943 return;
20944 case RT_INTERATION:
20945 cp_parser_error (parser, "expected iteration-statement");
20946 return;
20947 case RT_JUMP:
20948 cp_parser_error (parser, "expected jump-statement");
20949 return;
20950 case RT_CLASS_KEY:
20951 cp_parser_error (parser, "expected class-key");
20952 return;
20953 case RT_CLASS_TYPENAME_TEMPLATE:
20954 cp_parser_error (parser,
20955 "expected %<class%>, %<typename%>, or %<template%>");
20956 return;
20957 default:
20958 gcc_unreachable ();
20959 }
20960 }
20961 else
20962 gcc_unreachable ();
20963 }
20964
20965
20966
20967 /* If the next token is of the indicated TYPE, consume it. Otherwise,
20968 issue an error message indicating that TOKEN_DESC was expected.
20969
20970 Returns the token consumed, if the token had the appropriate type.
20971 Otherwise, returns NULL. */
20972
20973 static cp_token *
20974 cp_parser_require (cp_parser* parser,
20975 enum cpp_ttype type,
20976 required_token token_desc)
20977 {
20978 if (cp_lexer_next_token_is (parser->lexer, type))
20979 return cp_lexer_consume_token (parser->lexer);
20980 else
20981 {
20982 /* Output the MESSAGE -- unless we're parsing tentatively. */
20983 if (!cp_parser_simulate_error (parser))
20984 cp_parser_required_error (parser, token_desc, /*keyword=*/false);
20985 return NULL;
20986 }
20987 }
20988
20989 /* An error message is produced if the next token is not '>'.
20990 All further tokens are skipped until the desired token is
20991 found or '{', '}', ';' or an unbalanced ')' or ']'. */
20992
20993 static void
20994 cp_parser_skip_to_end_of_template_parameter_list (cp_parser* parser)
20995 {
20996 /* Current level of '< ... >'. */
20997 unsigned level = 0;
20998 /* Ignore '<' and '>' nested inside '( ... )' or '[ ... ]'. */
20999 unsigned nesting_depth = 0;
21000
21001 /* Are we ready, yet? If not, issue error message. */
21002 if (cp_parser_require (parser, CPP_GREATER, RT_GREATER))
21003 return;
21004
21005 /* Skip tokens until the desired token is found. */
21006 while (true)
21007 {
21008 /* Peek at the next token. */
21009 switch (cp_lexer_peek_token (parser->lexer)->type)
21010 {
21011 case CPP_LESS:
21012 if (!nesting_depth)
21013 ++level;
21014 break;
21015
21016 case CPP_RSHIFT:
21017 if (cxx_dialect == cxx98)
21018 /* C++0x views the `>>' operator as two `>' tokens, but
21019 C++98 does not. */
21020 break;
21021 else if (!nesting_depth && level-- == 0)
21022 {
21023 /* We've hit a `>>' where the first `>' closes the
21024 template argument list, and the second `>' is
21025 spurious. Just consume the `>>' and stop; we've
21026 already produced at least one error. */
21027 cp_lexer_consume_token (parser->lexer);
21028 return;
21029 }
21030 /* Fall through for C++0x, so we handle the second `>' in
21031 the `>>'. */
21032
21033 case CPP_GREATER:
21034 if (!nesting_depth && level-- == 0)
21035 {
21036 /* We've reached the token we want, consume it and stop. */
21037 cp_lexer_consume_token (parser->lexer);
21038 return;
21039 }
21040 break;
21041
21042 case CPP_OPEN_PAREN:
21043 case CPP_OPEN_SQUARE:
21044 ++nesting_depth;
21045 break;
21046
21047 case CPP_CLOSE_PAREN:
21048 case CPP_CLOSE_SQUARE:
21049 if (nesting_depth-- == 0)
21050 return;
21051 break;
21052
21053 case CPP_EOF:
21054 case CPP_PRAGMA_EOL:
21055 case CPP_SEMICOLON:
21056 case CPP_OPEN_BRACE:
21057 case CPP_CLOSE_BRACE:
21058 /* The '>' was probably forgotten, don't look further. */
21059 return;
21060
21061 default:
21062 break;
21063 }
21064
21065 /* Consume this token. */
21066 cp_lexer_consume_token (parser->lexer);
21067 }
21068 }
21069
21070 /* If the next token is the indicated keyword, consume it. Otherwise,
21071 issue an error message indicating that TOKEN_DESC was expected.
21072
21073 Returns the token consumed, if the token had the appropriate type.
21074 Otherwise, returns NULL. */
21075
21076 static cp_token *
21077 cp_parser_require_keyword (cp_parser* parser,
21078 enum rid keyword,
21079 required_token token_desc)
21080 {
21081 cp_token *token = cp_parser_require (parser, CPP_KEYWORD, token_desc);
21082
21083 if (token && token->keyword != keyword)
21084 {
21085 cp_parser_required_error (parser, token_desc, /*keyword=*/true);
21086 return NULL;
21087 }
21088
21089 return token;
21090 }
21091
21092 /* Returns TRUE iff TOKEN is a token that can begin the body of a
21093 function-definition. */
21094
21095 static bool
21096 cp_parser_token_starts_function_definition_p (cp_token* token)
21097 {
21098 return (/* An ordinary function-body begins with an `{'. */
21099 token->type == CPP_OPEN_BRACE
21100 /* A ctor-initializer begins with a `:'. */
21101 || token->type == CPP_COLON
21102 /* A function-try-block begins with `try'. */
21103 || token->keyword == RID_TRY
21104 /* The named return value extension begins with `return'. */
21105 || token->keyword == RID_RETURN);
21106 }
21107
21108 /* Returns TRUE iff the next token is the ":" or "{" beginning a class
21109 definition. */
21110
21111 static bool
21112 cp_parser_next_token_starts_class_definition_p (cp_parser *parser)
21113 {
21114 cp_token *token;
21115
21116 token = cp_lexer_peek_token (parser->lexer);
21117 return (token->type == CPP_OPEN_BRACE || token->type == CPP_COLON);
21118 }
21119
21120 /* Returns TRUE iff the next token is the "," or ">" (or `>>', in
21121 C++0x) ending a template-argument. */
21122
21123 static bool
21124 cp_parser_next_token_ends_template_argument_p (cp_parser *parser)
21125 {
21126 cp_token *token;
21127
21128 token = cp_lexer_peek_token (parser->lexer);
21129 return (token->type == CPP_COMMA
21130 || token->type == CPP_GREATER
21131 || token->type == CPP_ELLIPSIS
21132 || ((cxx_dialect != cxx98) && token->type == CPP_RSHIFT));
21133 }
21134
21135 /* Returns TRUE iff the n-th token is a "<", or the n-th is a "[" and the
21136 (n+1)-th is a ":" (which is a possible digraph typo for "< ::"). */
21137
21138 static bool
21139 cp_parser_nth_token_starts_template_argument_list_p (cp_parser * parser,
21140 size_t n)
21141 {
21142 cp_token *token;
21143
21144 token = cp_lexer_peek_nth_token (parser->lexer, n);
21145 if (token->type == CPP_LESS)
21146 return true;
21147 /* Check for the sequence `<::' in the original code. It would be lexed as
21148 `[:', where `[' is a digraph, and there is no whitespace before
21149 `:'. */
21150 if (token->type == CPP_OPEN_SQUARE && token->flags & DIGRAPH)
21151 {
21152 cp_token *token2;
21153 token2 = cp_lexer_peek_nth_token (parser->lexer, n+1);
21154 if (token2->type == CPP_COLON && !(token2->flags & PREV_WHITE))
21155 return true;
21156 }
21157 return false;
21158 }
21159
21160 /* Returns the kind of tag indicated by TOKEN, if it is a class-key,
21161 or none_type otherwise. */
21162
21163 static enum tag_types
21164 cp_parser_token_is_class_key (cp_token* token)
21165 {
21166 switch (token->keyword)
21167 {
21168 case RID_CLASS:
21169 return class_type;
21170 case RID_STRUCT:
21171 return record_type;
21172 case RID_UNION:
21173 return union_type;
21174
21175 default:
21176 return none_type;
21177 }
21178 }
21179
21180 /* Issue an error message if the CLASS_KEY does not match the TYPE. */
21181
21182 static void
21183 cp_parser_check_class_key (enum tag_types class_key, tree type)
21184 {
21185 if ((TREE_CODE (type) == UNION_TYPE) != (class_key == union_type))
21186 permerror (input_location, "%qs tag used in naming %q#T",
21187 class_key == union_type ? "union"
21188 : class_key == record_type ? "struct" : "class",
21189 type);
21190 }
21191
21192 /* Issue an error message if DECL is redeclared with different
21193 access than its original declaration [class.access.spec/3].
21194 This applies to nested classes and nested class templates.
21195 [class.mem/1]. */
21196
21197 static void
21198 cp_parser_check_access_in_redeclaration (tree decl, location_t location)
21199 {
21200 if (!decl || !CLASS_TYPE_P (TREE_TYPE (decl)))
21201 return;
21202
21203 if ((TREE_PRIVATE (decl)
21204 != (current_access_specifier == access_private_node))
21205 || (TREE_PROTECTED (decl)
21206 != (current_access_specifier == access_protected_node)))
21207 error_at (location, "%qD redeclared with different access", decl);
21208 }
21209
21210 /* Look for the `template' keyword, as a syntactic disambiguator.
21211 Return TRUE iff it is present, in which case it will be
21212 consumed. */
21213
21214 static bool
21215 cp_parser_optional_template_keyword (cp_parser *parser)
21216 {
21217 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
21218 {
21219 /* The `template' keyword can only be used within templates;
21220 outside templates the parser can always figure out what is a
21221 template and what is not. */
21222 if (!processing_template_decl)
21223 {
21224 cp_token *token = cp_lexer_peek_token (parser->lexer);
21225 error_at (token->location,
21226 "%<template%> (as a disambiguator) is only allowed "
21227 "within templates");
21228 /* If this part of the token stream is rescanned, the same
21229 error message would be generated. So, we purge the token
21230 from the stream. */
21231 cp_lexer_purge_token (parser->lexer);
21232 return false;
21233 }
21234 else
21235 {
21236 /* Consume the `template' keyword. */
21237 cp_lexer_consume_token (parser->lexer);
21238 return true;
21239 }
21240 }
21241
21242 return false;
21243 }
21244
21245 /* The next token is a CPP_NESTED_NAME_SPECIFIER. Consume the token,
21246 set PARSER->SCOPE, and perform other related actions. */
21247
21248 static void
21249 cp_parser_pre_parsed_nested_name_specifier (cp_parser *parser)
21250 {
21251 int i;
21252 struct tree_check *check_value;
21253 deferred_access_check *chk;
21254 VEC (deferred_access_check,gc) *checks;
21255
21256 /* Get the stored value. */
21257 check_value = cp_lexer_consume_token (parser->lexer)->u.tree_check_value;
21258 /* Perform any access checks that were deferred. */
21259 checks = check_value->checks;
21260 if (checks)
21261 {
21262 FOR_EACH_VEC_ELT (deferred_access_check, checks, i, chk)
21263 perform_or_defer_access_check (chk->binfo,
21264 chk->decl,
21265 chk->diag_decl);
21266 }
21267 /* Set the scope from the stored value. */
21268 parser->scope = check_value->value;
21269 parser->qualifying_scope = check_value->qualifying_scope;
21270 parser->object_scope = NULL_TREE;
21271 }
21272
21273 /* Consume tokens up through a non-nested END token. Returns TRUE if we
21274 encounter the end of a block before what we were looking for. */
21275
21276 static bool
21277 cp_parser_cache_group (cp_parser *parser,
21278 enum cpp_ttype end,
21279 unsigned depth)
21280 {
21281 while (true)
21282 {
21283 cp_token *token = cp_lexer_peek_token (parser->lexer);
21284
21285 /* Abort a parenthesized expression if we encounter a semicolon. */
21286 if ((end == CPP_CLOSE_PAREN || depth == 0)
21287 && token->type == CPP_SEMICOLON)
21288 return true;
21289 /* If we've reached the end of the file, stop. */
21290 if (token->type == CPP_EOF
21291 || (end != CPP_PRAGMA_EOL
21292 && token->type == CPP_PRAGMA_EOL))
21293 return true;
21294 if (token->type == CPP_CLOSE_BRACE && depth == 0)
21295 /* We've hit the end of an enclosing block, so there's been some
21296 kind of syntax error. */
21297 return true;
21298
21299 /* Consume the token. */
21300 cp_lexer_consume_token (parser->lexer);
21301 /* See if it starts a new group. */
21302 if (token->type == CPP_OPEN_BRACE)
21303 {
21304 cp_parser_cache_group (parser, CPP_CLOSE_BRACE, depth + 1);
21305 /* In theory this should probably check end == '}', but
21306 cp_parser_save_member_function_body needs it to exit
21307 after either '}' or ')' when called with ')'. */
21308 if (depth == 0)
21309 return false;
21310 }
21311 else if (token->type == CPP_OPEN_PAREN)
21312 {
21313 cp_parser_cache_group (parser, CPP_CLOSE_PAREN, depth + 1);
21314 if (depth == 0 && end == CPP_CLOSE_PAREN)
21315 return false;
21316 }
21317 else if (token->type == CPP_PRAGMA)
21318 cp_parser_cache_group (parser, CPP_PRAGMA_EOL, depth + 1);
21319 else if (token->type == end)
21320 return false;
21321 }
21322 }
21323
21324 /* Begin parsing tentatively. We always save tokens while parsing
21325 tentatively so that if the tentative parsing fails we can restore the
21326 tokens. */
21327
21328 static void
21329 cp_parser_parse_tentatively (cp_parser* parser)
21330 {
21331 /* Enter a new parsing context. */
21332 parser->context = cp_parser_context_new (parser->context);
21333 /* Begin saving tokens. */
21334 cp_lexer_save_tokens (parser->lexer);
21335 /* In order to avoid repetitive access control error messages,
21336 access checks are queued up until we are no longer parsing
21337 tentatively. */
21338 push_deferring_access_checks (dk_deferred);
21339 }
21340
21341 /* Commit to the currently active tentative parse. */
21342
21343 static void
21344 cp_parser_commit_to_tentative_parse (cp_parser* parser)
21345 {
21346 cp_parser_context *context;
21347 cp_lexer *lexer;
21348
21349 /* Mark all of the levels as committed. */
21350 lexer = parser->lexer;
21351 for (context = parser->context; context->next; context = context->next)
21352 {
21353 if (context->status == CP_PARSER_STATUS_KIND_COMMITTED)
21354 break;
21355 context->status = CP_PARSER_STATUS_KIND_COMMITTED;
21356 while (!cp_lexer_saving_tokens (lexer))
21357 lexer = lexer->next;
21358 cp_lexer_commit_tokens (lexer);
21359 }
21360 }
21361
21362 /* Abort the currently active tentative parse. All consumed tokens
21363 will be rolled back, and no diagnostics will be issued. */
21364
21365 static void
21366 cp_parser_abort_tentative_parse (cp_parser* parser)
21367 {
21368 cp_parser_simulate_error (parser);
21369 /* Now, pretend that we want to see if the construct was
21370 successfully parsed. */
21371 cp_parser_parse_definitely (parser);
21372 }
21373
21374 /* Stop parsing tentatively. If a parse error has occurred, restore the
21375 token stream. Otherwise, commit to the tokens we have consumed.
21376 Returns true if no error occurred; false otherwise. */
21377
21378 static bool
21379 cp_parser_parse_definitely (cp_parser* parser)
21380 {
21381 bool error_occurred;
21382 cp_parser_context *context;
21383
21384 /* Remember whether or not an error occurred, since we are about to
21385 destroy that information. */
21386 error_occurred = cp_parser_error_occurred (parser);
21387 /* Remove the topmost context from the stack. */
21388 context = parser->context;
21389 parser->context = context->next;
21390 /* If no parse errors occurred, commit to the tentative parse. */
21391 if (!error_occurred)
21392 {
21393 /* Commit to the tokens read tentatively, unless that was
21394 already done. */
21395 if (context->status != CP_PARSER_STATUS_KIND_COMMITTED)
21396 cp_lexer_commit_tokens (parser->lexer);
21397
21398 pop_to_parent_deferring_access_checks ();
21399 }
21400 /* Otherwise, if errors occurred, roll back our state so that things
21401 are just as they were before we began the tentative parse. */
21402 else
21403 {
21404 cp_lexer_rollback_tokens (parser->lexer);
21405 pop_deferring_access_checks ();
21406 }
21407 /* Add the context to the front of the free list. */
21408 context->next = cp_parser_context_free_list;
21409 cp_parser_context_free_list = context;
21410
21411 return !error_occurred;
21412 }
21413
21414 /* Returns true if we are parsing tentatively and are not committed to
21415 this tentative parse. */
21416
21417 static bool
21418 cp_parser_uncommitted_to_tentative_parse_p (cp_parser* parser)
21419 {
21420 return (cp_parser_parsing_tentatively (parser)
21421 && parser->context->status != CP_PARSER_STATUS_KIND_COMMITTED);
21422 }
21423
21424 /* Returns nonzero iff an error has occurred during the most recent
21425 tentative parse. */
21426
21427 static bool
21428 cp_parser_error_occurred (cp_parser* parser)
21429 {
21430 return (cp_parser_parsing_tentatively (parser)
21431 && parser->context->status == CP_PARSER_STATUS_KIND_ERROR);
21432 }
21433
21434 /* Returns nonzero if GNU extensions are allowed. */
21435
21436 static bool
21437 cp_parser_allow_gnu_extensions_p (cp_parser* parser)
21438 {
21439 return parser->allow_gnu_extensions_p;
21440 }
21441 \f
21442 /* Objective-C++ Productions */
21443
21444
21445 /* Parse an Objective-C expression, which feeds into a primary-expression
21446 above.
21447
21448 objc-expression:
21449 objc-message-expression
21450 objc-string-literal
21451 objc-encode-expression
21452 objc-protocol-expression
21453 objc-selector-expression
21454
21455 Returns a tree representation of the expression. */
21456
21457 static tree
21458 cp_parser_objc_expression (cp_parser* parser)
21459 {
21460 /* Try to figure out what kind of declaration is present. */
21461 cp_token *kwd = cp_lexer_peek_token (parser->lexer);
21462
21463 switch (kwd->type)
21464 {
21465 case CPP_OPEN_SQUARE:
21466 return cp_parser_objc_message_expression (parser);
21467
21468 case CPP_OBJC_STRING:
21469 kwd = cp_lexer_consume_token (parser->lexer);
21470 return objc_build_string_object (kwd->u.value);
21471
21472 case CPP_KEYWORD:
21473 switch (kwd->keyword)
21474 {
21475 case RID_AT_ENCODE:
21476 return cp_parser_objc_encode_expression (parser);
21477
21478 case RID_AT_PROTOCOL:
21479 return cp_parser_objc_protocol_expression (parser);
21480
21481 case RID_AT_SELECTOR:
21482 return cp_parser_objc_selector_expression (parser);
21483
21484 default:
21485 break;
21486 }
21487 default:
21488 error_at (kwd->location,
21489 "misplaced %<@%D%> Objective-C++ construct",
21490 kwd->u.value);
21491 cp_parser_skip_to_end_of_block_or_statement (parser);
21492 }
21493
21494 return error_mark_node;
21495 }
21496
21497 /* Parse an Objective-C message expression.
21498
21499 objc-message-expression:
21500 [ objc-message-receiver objc-message-args ]
21501
21502 Returns a representation of an Objective-C message. */
21503
21504 static tree
21505 cp_parser_objc_message_expression (cp_parser* parser)
21506 {
21507 tree receiver, messageargs;
21508
21509 cp_lexer_consume_token (parser->lexer); /* Eat '['. */
21510 receiver = cp_parser_objc_message_receiver (parser);
21511 messageargs = cp_parser_objc_message_args (parser);
21512 cp_parser_require (parser, CPP_CLOSE_SQUARE, RT_CLOSE_SQUARE);
21513
21514 return objc_build_message_expr (build_tree_list (receiver, messageargs));
21515 }
21516
21517 /* Parse an objc-message-receiver.
21518
21519 objc-message-receiver:
21520 expression
21521 simple-type-specifier
21522
21523 Returns a representation of the type or expression. */
21524
21525 static tree
21526 cp_parser_objc_message_receiver (cp_parser* parser)
21527 {
21528 tree rcv;
21529
21530 /* An Objective-C message receiver may be either (1) a type
21531 or (2) an expression. */
21532 cp_parser_parse_tentatively (parser);
21533 rcv = cp_parser_expression (parser, false, NULL);
21534
21535 if (cp_parser_parse_definitely (parser))
21536 return rcv;
21537
21538 rcv = cp_parser_simple_type_specifier (parser,
21539 /*decl_specs=*/NULL,
21540 CP_PARSER_FLAGS_NONE);
21541
21542 return objc_get_class_reference (rcv);
21543 }
21544
21545 /* Parse the arguments and selectors comprising an Objective-C message.
21546
21547 objc-message-args:
21548 objc-selector
21549 objc-selector-args
21550 objc-selector-args , objc-comma-args
21551
21552 objc-selector-args:
21553 objc-selector [opt] : assignment-expression
21554 objc-selector-args objc-selector [opt] : assignment-expression
21555
21556 objc-comma-args:
21557 assignment-expression
21558 objc-comma-args , assignment-expression
21559
21560 Returns a TREE_LIST, with TREE_PURPOSE containing a list of
21561 selector arguments and TREE_VALUE containing a list of comma
21562 arguments. */
21563
21564 static tree
21565 cp_parser_objc_message_args (cp_parser* parser)
21566 {
21567 tree sel_args = NULL_TREE, addl_args = NULL_TREE;
21568 bool maybe_unary_selector_p = true;
21569 cp_token *token = cp_lexer_peek_token (parser->lexer);
21570
21571 while (cp_parser_objc_selector_p (token->type) || token->type == CPP_COLON)
21572 {
21573 tree selector = NULL_TREE, arg;
21574
21575 if (token->type != CPP_COLON)
21576 selector = cp_parser_objc_selector (parser);
21577
21578 /* Detect if we have a unary selector. */
21579 if (maybe_unary_selector_p
21580 && cp_lexer_next_token_is_not (parser->lexer, CPP_COLON))
21581 return build_tree_list (selector, NULL_TREE);
21582
21583 maybe_unary_selector_p = false;
21584 cp_parser_require (parser, CPP_COLON, RT_COLON);
21585 arg = cp_parser_assignment_expression (parser, false, NULL);
21586
21587 sel_args
21588 = chainon (sel_args,
21589 build_tree_list (selector, arg));
21590
21591 token = cp_lexer_peek_token (parser->lexer);
21592 }
21593
21594 /* Handle non-selector arguments, if any. */
21595 while (token->type == CPP_COMMA)
21596 {
21597 tree arg;
21598
21599 cp_lexer_consume_token (parser->lexer);
21600 arg = cp_parser_assignment_expression (parser, false, NULL);
21601
21602 addl_args
21603 = chainon (addl_args,
21604 build_tree_list (NULL_TREE, arg));
21605
21606 token = cp_lexer_peek_token (parser->lexer);
21607 }
21608
21609 if (sel_args == NULL_TREE && addl_args == NULL_TREE)
21610 {
21611 cp_parser_error (parser, "objective-c++ message argument(s) are expected");
21612 return build_tree_list (error_mark_node, error_mark_node);
21613 }
21614
21615 return build_tree_list (sel_args, addl_args);
21616 }
21617
21618 /* Parse an Objective-C encode expression.
21619
21620 objc-encode-expression:
21621 @encode objc-typename
21622
21623 Returns an encoded representation of the type argument. */
21624
21625 static tree
21626 cp_parser_objc_encode_expression (cp_parser* parser)
21627 {
21628 tree type;
21629 cp_token *token;
21630
21631 cp_lexer_consume_token (parser->lexer); /* Eat '@encode'. */
21632 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
21633 token = cp_lexer_peek_token (parser->lexer);
21634 type = complete_type (cp_parser_type_id (parser));
21635 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
21636
21637 if (!type)
21638 {
21639 error_at (token->location,
21640 "%<@encode%> must specify a type as an argument");
21641 return error_mark_node;
21642 }
21643
21644 /* This happens if we find @encode(T) (where T is a template
21645 typename or something dependent on a template typename) when
21646 parsing a template. In that case, we can't compile it
21647 immediately, but we rather create an AT_ENCODE_EXPR which will
21648 need to be instantiated when the template is used.
21649 */
21650 if (dependent_type_p (type))
21651 {
21652 tree value = build_min (AT_ENCODE_EXPR, size_type_node, type);
21653 TREE_READONLY (value) = 1;
21654 return value;
21655 }
21656
21657 return objc_build_encode_expr (type);
21658 }
21659
21660 /* Parse an Objective-C @defs expression. */
21661
21662 static tree
21663 cp_parser_objc_defs_expression (cp_parser *parser)
21664 {
21665 tree name;
21666
21667 cp_lexer_consume_token (parser->lexer); /* Eat '@defs'. */
21668 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
21669 name = cp_parser_identifier (parser);
21670 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
21671
21672 return objc_get_class_ivars (name);
21673 }
21674
21675 /* Parse an Objective-C protocol expression.
21676
21677 objc-protocol-expression:
21678 @protocol ( identifier )
21679
21680 Returns a representation of the protocol expression. */
21681
21682 static tree
21683 cp_parser_objc_protocol_expression (cp_parser* parser)
21684 {
21685 tree proto;
21686
21687 cp_lexer_consume_token (parser->lexer); /* Eat '@protocol'. */
21688 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
21689 proto = cp_parser_identifier (parser);
21690 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
21691
21692 return objc_build_protocol_expr (proto);
21693 }
21694
21695 /* Parse an Objective-C selector expression.
21696
21697 objc-selector-expression:
21698 @selector ( objc-method-signature )
21699
21700 objc-method-signature:
21701 objc-selector
21702 objc-selector-seq
21703
21704 objc-selector-seq:
21705 objc-selector :
21706 objc-selector-seq objc-selector :
21707
21708 Returns a representation of the method selector. */
21709
21710 static tree
21711 cp_parser_objc_selector_expression (cp_parser* parser)
21712 {
21713 tree sel_seq = NULL_TREE;
21714 bool maybe_unary_selector_p = true;
21715 cp_token *token;
21716 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
21717
21718 cp_lexer_consume_token (parser->lexer); /* Eat '@selector'. */
21719 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
21720 token = cp_lexer_peek_token (parser->lexer);
21721
21722 while (cp_parser_objc_selector_p (token->type) || token->type == CPP_COLON
21723 || token->type == CPP_SCOPE)
21724 {
21725 tree selector = NULL_TREE;
21726
21727 if (token->type != CPP_COLON
21728 || token->type == CPP_SCOPE)
21729 selector = cp_parser_objc_selector (parser);
21730
21731 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COLON)
21732 && cp_lexer_next_token_is_not (parser->lexer, CPP_SCOPE))
21733 {
21734 /* Detect if we have a unary selector. */
21735 if (maybe_unary_selector_p)
21736 {
21737 sel_seq = selector;
21738 goto finish_selector;
21739 }
21740 else
21741 {
21742 cp_parser_error (parser, "expected %<:%>");
21743 }
21744 }
21745 maybe_unary_selector_p = false;
21746 token = cp_lexer_consume_token (parser->lexer);
21747
21748 if (token->type == CPP_SCOPE)
21749 {
21750 sel_seq
21751 = chainon (sel_seq,
21752 build_tree_list (selector, NULL_TREE));
21753 sel_seq
21754 = chainon (sel_seq,
21755 build_tree_list (NULL_TREE, NULL_TREE));
21756 }
21757 else
21758 sel_seq
21759 = chainon (sel_seq,
21760 build_tree_list (selector, NULL_TREE));
21761
21762 token = cp_lexer_peek_token (parser->lexer);
21763 }
21764
21765 finish_selector:
21766 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
21767
21768 return objc_build_selector_expr (loc, sel_seq);
21769 }
21770
21771 /* Parse a list of identifiers.
21772
21773 objc-identifier-list:
21774 identifier
21775 objc-identifier-list , identifier
21776
21777 Returns a TREE_LIST of identifier nodes. */
21778
21779 static tree
21780 cp_parser_objc_identifier_list (cp_parser* parser)
21781 {
21782 tree identifier;
21783 tree list;
21784 cp_token *sep;
21785
21786 identifier = cp_parser_identifier (parser);
21787 if (identifier == error_mark_node)
21788 return error_mark_node;
21789
21790 list = build_tree_list (NULL_TREE, identifier);
21791 sep = cp_lexer_peek_token (parser->lexer);
21792
21793 while (sep->type == CPP_COMMA)
21794 {
21795 cp_lexer_consume_token (parser->lexer); /* Eat ','. */
21796 identifier = cp_parser_identifier (parser);
21797 if (identifier == error_mark_node)
21798 return list;
21799
21800 list = chainon (list, build_tree_list (NULL_TREE,
21801 identifier));
21802 sep = cp_lexer_peek_token (parser->lexer);
21803 }
21804
21805 return list;
21806 }
21807
21808 /* Parse an Objective-C alias declaration.
21809
21810 objc-alias-declaration:
21811 @compatibility_alias identifier identifier ;
21812
21813 This function registers the alias mapping with the Objective-C front end.
21814 It returns nothing. */
21815
21816 static void
21817 cp_parser_objc_alias_declaration (cp_parser* parser)
21818 {
21819 tree alias, orig;
21820
21821 cp_lexer_consume_token (parser->lexer); /* Eat '@compatibility_alias'. */
21822 alias = cp_parser_identifier (parser);
21823 orig = cp_parser_identifier (parser);
21824 objc_declare_alias (alias, orig);
21825 cp_parser_consume_semicolon_at_end_of_statement (parser);
21826 }
21827
21828 /* Parse an Objective-C class forward-declaration.
21829
21830 objc-class-declaration:
21831 @class objc-identifier-list ;
21832
21833 The function registers the forward declarations with the Objective-C
21834 front end. It returns nothing. */
21835
21836 static void
21837 cp_parser_objc_class_declaration (cp_parser* parser)
21838 {
21839 cp_lexer_consume_token (parser->lexer); /* Eat '@class'. */
21840 objc_declare_class (cp_parser_objc_identifier_list (parser));
21841 cp_parser_consume_semicolon_at_end_of_statement (parser);
21842 }
21843
21844 /* Parse a list of Objective-C protocol references.
21845
21846 objc-protocol-refs-opt:
21847 objc-protocol-refs [opt]
21848
21849 objc-protocol-refs:
21850 < objc-identifier-list >
21851
21852 Returns a TREE_LIST of identifiers, if any. */
21853
21854 static tree
21855 cp_parser_objc_protocol_refs_opt (cp_parser* parser)
21856 {
21857 tree protorefs = NULL_TREE;
21858
21859 if(cp_lexer_next_token_is (parser->lexer, CPP_LESS))
21860 {
21861 cp_lexer_consume_token (parser->lexer); /* Eat '<'. */
21862 protorefs = cp_parser_objc_identifier_list (parser);
21863 cp_parser_require (parser, CPP_GREATER, RT_GREATER);
21864 }
21865
21866 return protorefs;
21867 }
21868
21869 /* Parse a Objective-C visibility specification. */
21870
21871 static void
21872 cp_parser_objc_visibility_spec (cp_parser* parser)
21873 {
21874 cp_token *vis = cp_lexer_peek_token (parser->lexer);
21875
21876 switch (vis->keyword)
21877 {
21878 case RID_AT_PRIVATE:
21879 objc_set_visibility (OBJC_IVAR_VIS_PRIVATE);
21880 break;
21881 case RID_AT_PROTECTED:
21882 objc_set_visibility (OBJC_IVAR_VIS_PROTECTED);
21883 break;
21884 case RID_AT_PUBLIC:
21885 objc_set_visibility (OBJC_IVAR_VIS_PUBLIC);
21886 break;
21887 case RID_AT_PACKAGE:
21888 objc_set_visibility (OBJC_IVAR_VIS_PACKAGE);
21889 break;
21890 default:
21891 return;
21892 }
21893
21894 /* Eat '@private'/'@protected'/'@public'. */
21895 cp_lexer_consume_token (parser->lexer);
21896 }
21897
21898 /* Parse an Objective-C method type. Return 'true' if it is a class
21899 (+) method, and 'false' if it is an instance (-) method. */
21900
21901 static inline bool
21902 cp_parser_objc_method_type (cp_parser* parser)
21903 {
21904 if (cp_lexer_consume_token (parser->lexer)->type == CPP_PLUS)
21905 return true;
21906 else
21907 return false;
21908 }
21909
21910 /* Parse an Objective-C protocol qualifier. */
21911
21912 static tree
21913 cp_parser_objc_protocol_qualifiers (cp_parser* parser)
21914 {
21915 tree quals = NULL_TREE, node;
21916 cp_token *token = cp_lexer_peek_token (parser->lexer);
21917
21918 node = token->u.value;
21919
21920 while (node && TREE_CODE (node) == IDENTIFIER_NODE
21921 && (node == ridpointers [(int) RID_IN]
21922 || node == ridpointers [(int) RID_OUT]
21923 || node == ridpointers [(int) RID_INOUT]
21924 || node == ridpointers [(int) RID_BYCOPY]
21925 || node == ridpointers [(int) RID_BYREF]
21926 || node == ridpointers [(int) RID_ONEWAY]))
21927 {
21928 quals = tree_cons (NULL_TREE, node, quals);
21929 cp_lexer_consume_token (parser->lexer);
21930 token = cp_lexer_peek_token (parser->lexer);
21931 node = token->u.value;
21932 }
21933
21934 return quals;
21935 }
21936
21937 /* Parse an Objective-C typename. */
21938
21939 static tree
21940 cp_parser_objc_typename (cp_parser* parser)
21941 {
21942 tree type_name = NULL_TREE;
21943
21944 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
21945 {
21946 tree proto_quals, cp_type = NULL_TREE;
21947
21948 cp_lexer_consume_token (parser->lexer); /* Eat '('. */
21949 proto_quals = cp_parser_objc_protocol_qualifiers (parser);
21950
21951 /* An ObjC type name may consist of just protocol qualifiers, in which
21952 case the type shall default to 'id'. */
21953 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN))
21954 {
21955 cp_type = cp_parser_type_id (parser);
21956
21957 /* If the type could not be parsed, an error has already
21958 been produced. For error recovery, behave as if it had
21959 not been specified, which will use the default type
21960 'id'. */
21961 if (cp_type == error_mark_node)
21962 {
21963 cp_type = NULL_TREE;
21964 /* We need to skip to the closing parenthesis as
21965 cp_parser_type_id() does not seem to do it for
21966 us. */
21967 cp_parser_skip_to_closing_parenthesis (parser,
21968 /*recovering=*/true,
21969 /*or_comma=*/false,
21970 /*consume_paren=*/false);
21971 }
21972 }
21973
21974 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
21975 type_name = build_tree_list (proto_quals, cp_type);
21976 }
21977
21978 return type_name;
21979 }
21980
21981 /* Check to see if TYPE refers to an Objective-C selector name. */
21982
21983 static bool
21984 cp_parser_objc_selector_p (enum cpp_ttype type)
21985 {
21986 return (type == CPP_NAME || type == CPP_KEYWORD
21987 || type == CPP_AND_AND || type == CPP_AND_EQ || type == CPP_AND
21988 || type == CPP_OR || type == CPP_COMPL || type == CPP_NOT
21989 || type == CPP_NOT_EQ || type == CPP_OR_OR || type == CPP_OR_EQ
21990 || type == CPP_XOR || type == CPP_XOR_EQ);
21991 }
21992
21993 /* Parse an Objective-C selector. */
21994
21995 static tree
21996 cp_parser_objc_selector (cp_parser* parser)
21997 {
21998 cp_token *token = cp_lexer_consume_token (parser->lexer);
21999
22000 if (!cp_parser_objc_selector_p (token->type))
22001 {
22002 error_at (token->location, "invalid Objective-C++ selector name");
22003 return error_mark_node;
22004 }
22005
22006 /* C++ operator names are allowed to appear in ObjC selectors. */
22007 switch (token->type)
22008 {
22009 case CPP_AND_AND: return get_identifier ("and");
22010 case CPP_AND_EQ: return get_identifier ("and_eq");
22011 case CPP_AND: return get_identifier ("bitand");
22012 case CPP_OR: return get_identifier ("bitor");
22013 case CPP_COMPL: return get_identifier ("compl");
22014 case CPP_NOT: return get_identifier ("not");
22015 case CPP_NOT_EQ: return get_identifier ("not_eq");
22016 case CPP_OR_OR: return get_identifier ("or");
22017 case CPP_OR_EQ: return get_identifier ("or_eq");
22018 case CPP_XOR: return get_identifier ("xor");
22019 case CPP_XOR_EQ: return get_identifier ("xor_eq");
22020 default: return token->u.value;
22021 }
22022 }
22023
22024 /* Parse an Objective-C params list. */
22025
22026 static tree
22027 cp_parser_objc_method_keyword_params (cp_parser* parser, tree* attributes)
22028 {
22029 tree params = NULL_TREE;
22030 bool maybe_unary_selector_p = true;
22031 cp_token *token = cp_lexer_peek_token (parser->lexer);
22032
22033 while (cp_parser_objc_selector_p (token->type) || token->type == CPP_COLON)
22034 {
22035 tree selector = NULL_TREE, type_name, identifier;
22036 tree parm_attr = NULL_TREE;
22037
22038 if (token->keyword == RID_ATTRIBUTE)
22039 break;
22040
22041 if (token->type != CPP_COLON)
22042 selector = cp_parser_objc_selector (parser);
22043
22044 /* Detect if we have a unary selector. */
22045 if (maybe_unary_selector_p
22046 && cp_lexer_next_token_is_not (parser->lexer, CPP_COLON))
22047 {
22048 params = selector; /* Might be followed by attributes. */
22049 break;
22050 }
22051
22052 maybe_unary_selector_p = false;
22053 if (!cp_parser_require (parser, CPP_COLON, RT_COLON))
22054 {
22055 /* Something went quite wrong. There should be a colon
22056 here, but there is not. Stop parsing parameters. */
22057 break;
22058 }
22059 type_name = cp_parser_objc_typename (parser);
22060 /* New ObjC allows attributes on parameters too. */
22061 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_ATTRIBUTE))
22062 parm_attr = cp_parser_attributes_opt (parser);
22063 identifier = cp_parser_identifier (parser);
22064
22065 params
22066 = chainon (params,
22067 objc_build_keyword_decl (selector,
22068 type_name,
22069 identifier,
22070 parm_attr));
22071
22072 token = cp_lexer_peek_token (parser->lexer);
22073 }
22074
22075 if (params == NULL_TREE)
22076 {
22077 cp_parser_error (parser, "objective-c++ method declaration is expected");
22078 return error_mark_node;
22079 }
22080
22081 /* We allow tail attributes for the method. */
22082 if (token->keyword == RID_ATTRIBUTE)
22083 {
22084 *attributes = cp_parser_attributes_opt (parser);
22085 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
22086 || cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
22087 return params;
22088 cp_parser_error (parser,
22089 "method attributes must be specified at the end");
22090 return error_mark_node;
22091 }
22092
22093 if (params == NULL_TREE)
22094 {
22095 cp_parser_error (parser, "objective-c++ method declaration is expected");
22096 return error_mark_node;
22097 }
22098 return params;
22099 }
22100
22101 /* Parse the non-keyword Objective-C params. */
22102
22103 static tree
22104 cp_parser_objc_method_tail_params_opt (cp_parser* parser, bool *ellipsisp,
22105 tree* attributes)
22106 {
22107 tree params = make_node (TREE_LIST);
22108 cp_token *token = cp_lexer_peek_token (parser->lexer);
22109 *ellipsisp = false; /* Initially, assume no ellipsis. */
22110
22111 while (token->type == CPP_COMMA)
22112 {
22113 cp_parameter_declarator *parmdecl;
22114 tree parm;
22115
22116 cp_lexer_consume_token (parser->lexer); /* Eat ','. */
22117 token = cp_lexer_peek_token (parser->lexer);
22118
22119 if (token->type == CPP_ELLIPSIS)
22120 {
22121 cp_lexer_consume_token (parser->lexer); /* Eat '...'. */
22122 *ellipsisp = true;
22123 token = cp_lexer_peek_token (parser->lexer);
22124 break;
22125 }
22126
22127 /* TODO: parse attributes for tail parameters. */
22128 parmdecl = cp_parser_parameter_declaration (parser, false, NULL);
22129 parm = grokdeclarator (parmdecl->declarator,
22130 &parmdecl->decl_specifiers,
22131 PARM, /*initialized=*/0,
22132 /*attrlist=*/NULL);
22133
22134 chainon (params, build_tree_list (NULL_TREE, parm));
22135 token = cp_lexer_peek_token (parser->lexer);
22136 }
22137
22138 /* We allow tail attributes for the method. */
22139 if (token->keyword == RID_ATTRIBUTE)
22140 {
22141 if (*attributes == NULL_TREE)
22142 {
22143 *attributes = cp_parser_attributes_opt (parser);
22144 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
22145 || cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
22146 return params;
22147 }
22148 else
22149 /* We have an error, but parse the attributes, so that we can
22150 carry on. */
22151 *attributes = cp_parser_attributes_opt (parser);
22152
22153 cp_parser_error (parser,
22154 "method attributes must be specified at the end");
22155 return error_mark_node;
22156 }
22157
22158 return params;
22159 }
22160
22161 /* Parse a linkage specification, a pragma, an extra semicolon or a block. */
22162
22163 static void
22164 cp_parser_objc_interstitial_code (cp_parser* parser)
22165 {
22166 cp_token *token = cp_lexer_peek_token (parser->lexer);
22167
22168 /* If the next token is `extern' and the following token is a string
22169 literal, then we have a linkage specification. */
22170 if (token->keyword == RID_EXTERN
22171 && cp_parser_is_string_literal (cp_lexer_peek_nth_token (parser->lexer, 2)))
22172 cp_parser_linkage_specification (parser);
22173 /* Handle #pragma, if any. */
22174 else if (token->type == CPP_PRAGMA)
22175 cp_parser_pragma (parser, pragma_external);
22176 /* Allow stray semicolons. */
22177 else if (token->type == CPP_SEMICOLON)
22178 cp_lexer_consume_token (parser->lexer);
22179 /* Mark methods as optional or required, when building protocols. */
22180 else if (token->keyword == RID_AT_OPTIONAL)
22181 {
22182 cp_lexer_consume_token (parser->lexer);
22183 objc_set_method_opt (true);
22184 }
22185 else if (token->keyword == RID_AT_REQUIRED)
22186 {
22187 cp_lexer_consume_token (parser->lexer);
22188 objc_set_method_opt (false);
22189 }
22190 else if (token->keyword == RID_NAMESPACE)
22191 cp_parser_namespace_definition (parser);
22192 /* Other stray characters must generate errors. */
22193 else if (token->type == CPP_OPEN_BRACE || token->type == CPP_CLOSE_BRACE)
22194 {
22195 cp_lexer_consume_token (parser->lexer);
22196 error ("stray %qs between Objective-C++ methods",
22197 token->type == CPP_OPEN_BRACE ? "{" : "}");
22198 }
22199 /* Finally, try to parse a block-declaration, or a function-definition. */
22200 else
22201 cp_parser_block_declaration (parser, /*statement_p=*/false);
22202 }
22203
22204 /* Parse a method signature. */
22205
22206 static tree
22207 cp_parser_objc_method_signature (cp_parser* parser, tree* attributes)
22208 {
22209 tree rettype, kwdparms, optparms;
22210 bool ellipsis = false;
22211 bool is_class_method;
22212
22213 is_class_method = cp_parser_objc_method_type (parser);
22214 rettype = cp_parser_objc_typename (parser);
22215 *attributes = NULL_TREE;
22216 kwdparms = cp_parser_objc_method_keyword_params (parser, attributes);
22217 if (kwdparms == error_mark_node)
22218 return error_mark_node;
22219 optparms = cp_parser_objc_method_tail_params_opt (parser, &ellipsis, attributes);
22220 if (optparms == error_mark_node)
22221 return error_mark_node;
22222
22223 return objc_build_method_signature (is_class_method, rettype, kwdparms, optparms, ellipsis);
22224 }
22225
22226 static bool
22227 cp_parser_objc_method_maybe_bad_prefix_attributes (cp_parser* parser)
22228 {
22229 tree tattr;
22230 cp_lexer_save_tokens (parser->lexer);
22231 tattr = cp_parser_attributes_opt (parser);
22232 gcc_assert (tattr) ;
22233
22234 /* If the attributes are followed by a method introducer, this is not allowed.
22235 Dump the attributes and flag the situation. */
22236 if (cp_lexer_next_token_is (parser->lexer, CPP_PLUS)
22237 || cp_lexer_next_token_is (parser->lexer, CPP_MINUS))
22238 return true;
22239
22240 /* Otherwise, the attributes introduce some interstitial code, possibly so
22241 rewind to allow that check. */
22242 cp_lexer_rollback_tokens (parser->lexer);
22243 return false;
22244 }
22245
22246 /* Parse an Objective-C method prototype list. */
22247
22248 static void
22249 cp_parser_objc_method_prototype_list (cp_parser* parser)
22250 {
22251 cp_token *token = cp_lexer_peek_token (parser->lexer);
22252
22253 while (token->keyword != RID_AT_END && token->type != CPP_EOF)
22254 {
22255 if (token->type == CPP_PLUS || token->type == CPP_MINUS)
22256 {
22257 tree attributes, sig;
22258 bool is_class_method;
22259 if (token->type == CPP_PLUS)
22260 is_class_method = true;
22261 else
22262 is_class_method = false;
22263 sig = cp_parser_objc_method_signature (parser, &attributes);
22264 if (sig == error_mark_node)
22265 {
22266 cp_parser_skip_to_end_of_block_or_statement (parser);
22267 token = cp_lexer_peek_token (parser->lexer);
22268 continue;
22269 }
22270 objc_add_method_declaration (is_class_method, sig, attributes);
22271 cp_parser_consume_semicolon_at_end_of_statement (parser);
22272 }
22273 else if (token->keyword == RID_AT_PROPERTY)
22274 cp_parser_objc_at_property_declaration (parser);
22275 else if (token->keyword == RID_ATTRIBUTE
22276 && cp_parser_objc_method_maybe_bad_prefix_attributes(parser))
22277 warning_at (cp_lexer_peek_token (parser->lexer)->location,
22278 OPT_Wattributes,
22279 "prefix attributes are ignored for methods");
22280 else
22281 /* Allow for interspersed non-ObjC++ code. */
22282 cp_parser_objc_interstitial_code (parser);
22283
22284 token = cp_lexer_peek_token (parser->lexer);
22285 }
22286
22287 if (token->type != CPP_EOF)
22288 cp_lexer_consume_token (parser->lexer); /* Eat '@end'. */
22289 else
22290 cp_parser_error (parser, "expected %<@end%>");
22291
22292 objc_finish_interface ();
22293 }
22294
22295 /* Parse an Objective-C method definition list. */
22296
22297 static void
22298 cp_parser_objc_method_definition_list (cp_parser* parser)
22299 {
22300 cp_token *token = cp_lexer_peek_token (parser->lexer);
22301
22302 while (token->keyword != RID_AT_END && token->type != CPP_EOF)
22303 {
22304 tree meth;
22305
22306 if (token->type == CPP_PLUS || token->type == CPP_MINUS)
22307 {
22308 cp_token *ptk;
22309 tree sig, attribute;
22310 bool is_class_method;
22311 if (token->type == CPP_PLUS)
22312 is_class_method = true;
22313 else
22314 is_class_method = false;
22315 push_deferring_access_checks (dk_deferred);
22316 sig = cp_parser_objc_method_signature (parser, &attribute);
22317 if (sig == error_mark_node)
22318 {
22319 cp_parser_skip_to_end_of_block_or_statement (parser);
22320 token = cp_lexer_peek_token (parser->lexer);
22321 continue;
22322 }
22323 objc_start_method_definition (is_class_method, sig, attribute);
22324
22325 /* For historical reasons, we accept an optional semicolon. */
22326 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
22327 cp_lexer_consume_token (parser->lexer);
22328
22329 ptk = cp_lexer_peek_token (parser->lexer);
22330 if (!(ptk->type == CPP_PLUS || ptk->type == CPP_MINUS
22331 || ptk->type == CPP_EOF || ptk->keyword == RID_AT_END))
22332 {
22333 perform_deferred_access_checks ();
22334 stop_deferring_access_checks ();
22335 meth = cp_parser_function_definition_after_declarator (parser,
22336 false);
22337 pop_deferring_access_checks ();
22338 objc_finish_method_definition (meth);
22339 }
22340 }
22341 /* The following case will be removed once @synthesize is
22342 completely implemented. */
22343 else if (token->keyword == RID_AT_PROPERTY)
22344 cp_parser_objc_at_property_declaration (parser);
22345 else if (token->keyword == RID_AT_SYNTHESIZE)
22346 cp_parser_objc_at_synthesize_declaration (parser);
22347 else if (token->keyword == RID_AT_DYNAMIC)
22348 cp_parser_objc_at_dynamic_declaration (parser);
22349 else if (token->keyword == RID_ATTRIBUTE
22350 && cp_parser_objc_method_maybe_bad_prefix_attributes(parser))
22351 warning_at (token->location, OPT_Wattributes,
22352 "prefix attributes are ignored for methods");
22353 else
22354 /* Allow for interspersed non-ObjC++ code. */
22355 cp_parser_objc_interstitial_code (parser);
22356
22357 token = cp_lexer_peek_token (parser->lexer);
22358 }
22359
22360 if (token->type != CPP_EOF)
22361 cp_lexer_consume_token (parser->lexer); /* Eat '@end'. */
22362 else
22363 cp_parser_error (parser, "expected %<@end%>");
22364
22365 objc_finish_implementation ();
22366 }
22367
22368 /* Parse Objective-C ivars. */
22369
22370 static void
22371 cp_parser_objc_class_ivars (cp_parser* parser)
22372 {
22373 cp_token *token = cp_lexer_peek_token (parser->lexer);
22374
22375 if (token->type != CPP_OPEN_BRACE)
22376 return; /* No ivars specified. */
22377
22378 cp_lexer_consume_token (parser->lexer); /* Eat '{'. */
22379 token = cp_lexer_peek_token (parser->lexer);
22380
22381 while (token->type != CPP_CLOSE_BRACE
22382 && token->keyword != RID_AT_END && token->type != CPP_EOF)
22383 {
22384 cp_decl_specifier_seq declspecs;
22385 int decl_class_or_enum_p;
22386 tree prefix_attributes;
22387
22388 cp_parser_objc_visibility_spec (parser);
22389
22390 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
22391 break;
22392
22393 cp_parser_decl_specifier_seq (parser,
22394 CP_PARSER_FLAGS_OPTIONAL,
22395 &declspecs,
22396 &decl_class_or_enum_p);
22397
22398 /* auto, register, static, extern, mutable. */
22399 if (declspecs.storage_class != sc_none)
22400 {
22401 cp_parser_error (parser, "invalid type for instance variable");
22402 declspecs.storage_class = sc_none;
22403 }
22404
22405 /* __thread. */
22406 if (declspecs.specs[(int) ds_thread])
22407 {
22408 cp_parser_error (parser, "invalid type for instance variable");
22409 declspecs.specs[(int) ds_thread] = 0;
22410 }
22411
22412 /* typedef. */
22413 if (declspecs.specs[(int) ds_typedef])
22414 {
22415 cp_parser_error (parser, "invalid type for instance variable");
22416 declspecs.specs[(int) ds_typedef] = 0;
22417 }
22418
22419 prefix_attributes = declspecs.attributes;
22420 declspecs.attributes = NULL_TREE;
22421
22422 /* Keep going until we hit the `;' at the end of the
22423 declaration. */
22424 while (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
22425 {
22426 tree width = NULL_TREE, attributes, first_attribute, decl;
22427 cp_declarator *declarator = NULL;
22428 int ctor_dtor_or_conv_p;
22429
22430 /* Check for a (possibly unnamed) bitfield declaration. */
22431 token = cp_lexer_peek_token (parser->lexer);
22432 if (token->type == CPP_COLON)
22433 goto eat_colon;
22434
22435 if (token->type == CPP_NAME
22436 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
22437 == CPP_COLON))
22438 {
22439 /* Get the name of the bitfield. */
22440 declarator = make_id_declarator (NULL_TREE,
22441 cp_parser_identifier (parser),
22442 sfk_none);
22443
22444 eat_colon:
22445 cp_lexer_consume_token (parser->lexer); /* Eat ':'. */
22446 /* Get the width of the bitfield. */
22447 width
22448 = cp_parser_constant_expression (parser,
22449 /*allow_non_constant=*/false,
22450 NULL);
22451 }
22452 else
22453 {
22454 /* Parse the declarator. */
22455 declarator
22456 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
22457 &ctor_dtor_or_conv_p,
22458 /*parenthesized_p=*/NULL,
22459 /*member_p=*/false);
22460 }
22461
22462 /* Look for attributes that apply to the ivar. */
22463 attributes = cp_parser_attributes_opt (parser);
22464 /* Remember which attributes are prefix attributes and
22465 which are not. */
22466 first_attribute = attributes;
22467 /* Combine the attributes. */
22468 attributes = chainon (prefix_attributes, attributes);
22469
22470 if (width)
22471 /* Create the bitfield declaration. */
22472 decl = grokbitfield (declarator, &declspecs,
22473 width,
22474 attributes);
22475 else
22476 decl = grokfield (declarator, &declspecs,
22477 NULL_TREE, /*init_const_expr_p=*/false,
22478 NULL_TREE, attributes);
22479
22480 /* Add the instance variable. */
22481 objc_add_instance_variable (decl);
22482
22483 /* Reset PREFIX_ATTRIBUTES. */
22484 while (attributes && TREE_CHAIN (attributes) != first_attribute)
22485 attributes = TREE_CHAIN (attributes);
22486 if (attributes)
22487 TREE_CHAIN (attributes) = NULL_TREE;
22488
22489 token = cp_lexer_peek_token (parser->lexer);
22490
22491 if (token->type == CPP_COMMA)
22492 {
22493 cp_lexer_consume_token (parser->lexer); /* Eat ','. */
22494 continue;
22495 }
22496 break;
22497 }
22498
22499 cp_parser_consume_semicolon_at_end_of_statement (parser);
22500 token = cp_lexer_peek_token (parser->lexer);
22501 }
22502
22503 if (token->keyword == RID_AT_END)
22504 cp_parser_error (parser, "expected %<}%>");
22505
22506 /* Do not consume the RID_AT_END, so it will be read again as terminating
22507 the @interface of @implementation. */
22508 if (token->keyword != RID_AT_END && token->type != CPP_EOF)
22509 cp_lexer_consume_token (parser->lexer); /* Eat '}'. */
22510
22511 /* For historical reasons, we accept an optional semicolon. */
22512 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
22513 cp_lexer_consume_token (parser->lexer);
22514 }
22515
22516 /* Parse an Objective-C protocol declaration. */
22517
22518 static void
22519 cp_parser_objc_protocol_declaration (cp_parser* parser, tree attributes)
22520 {
22521 tree proto, protorefs;
22522 cp_token *tok;
22523
22524 cp_lexer_consume_token (parser->lexer); /* Eat '@protocol'. */
22525 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NAME))
22526 {
22527 tok = cp_lexer_peek_token (parser->lexer);
22528 error_at (tok->location, "identifier expected after %<@protocol%>");
22529 goto finish;
22530 }
22531
22532 /* See if we have a forward declaration or a definition. */
22533 tok = cp_lexer_peek_nth_token (parser->lexer, 2);
22534
22535 /* Try a forward declaration first. */
22536 if (tok->type == CPP_COMMA || tok->type == CPP_SEMICOLON)
22537 {
22538 objc_declare_protocols (cp_parser_objc_identifier_list (parser),
22539 attributes);
22540 finish:
22541 cp_parser_consume_semicolon_at_end_of_statement (parser);
22542 }
22543
22544 /* Ok, we got a full-fledged definition (or at least should). */
22545 else
22546 {
22547 proto = cp_parser_identifier (parser);
22548 protorefs = cp_parser_objc_protocol_refs_opt (parser);
22549 objc_start_protocol (proto, protorefs, attributes);
22550 cp_parser_objc_method_prototype_list (parser);
22551 }
22552 }
22553
22554 /* Parse an Objective-C superclass or category. */
22555
22556 static void
22557 cp_parser_objc_superclass_or_category (cp_parser *parser,
22558 bool iface_p,
22559 tree *super,
22560 tree *categ, bool *is_class_extension)
22561 {
22562 cp_token *next = cp_lexer_peek_token (parser->lexer);
22563
22564 *super = *categ = NULL_TREE;
22565 *is_class_extension = false;
22566 if (next->type == CPP_COLON)
22567 {
22568 cp_lexer_consume_token (parser->lexer); /* Eat ':'. */
22569 *super = cp_parser_identifier (parser);
22570 }
22571 else if (next->type == CPP_OPEN_PAREN)
22572 {
22573 cp_lexer_consume_token (parser->lexer); /* Eat '('. */
22574
22575 /* If there is no category name, and this is an @interface, we
22576 have a class extension. */
22577 if (iface_p && cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN))
22578 {
22579 *categ = NULL_TREE;
22580 *is_class_extension = true;
22581 }
22582 else
22583 *categ = cp_parser_identifier (parser);
22584
22585 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
22586 }
22587 }
22588
22589 /* Parse an Objective-C class interface. */
22590
22591 static void
22592 cp_parser_objc_class_interface (cp_parser* parser, tree attributes)
22593 {
22594 tree name, super, categ, protos;
22595 bool is_class_extension;
22596
22597 cp_lexer_consume_token (parser->lexer); /* Eat '@interface'. */
22598 name = cp_parser_identifier (parser);
22599 if (name == error_mark_node)
22600 {
22601 /* It's hard to recover because even if valid @interface stuff
22602 is to follow, we can't compile it (or validate it) if we
22603 don't even know which class it refers to. Let's assume this
22604 was a stray '@interface' token in the stream and skip it.
22605 */
22606 return;
22607 }
22608 cp_parser_objc_superclass_or_category (parser, true, &super, &categ,
22609 &is_class_extension);
22610 protos = cp_parser_objc_protocol_refs_opt (parser);
22611
22612 /* We have either a class or a category on our hands. */
22613 if (categ || is_class_extension)
22614 objc_start_category_interface (name, categ, protos, attributes);
22615 else
22616 {
22617 objc_start_class_interface (name, super, protos, attributes);
22618 /* Handle instance variable declarations, if any. */
22619 cp_parser_objc_class_ivars (parser);
22620 objc_continue_interface ();
22621 }
22622
22623 cp_parser_objc_method_prototype_list (parser);
22624 }
22625
22626 /* Parse an Objective-C class implementation. */
22627
22628 static void
22629 cp_parser_objc_class_implementation (cp_parser* parser)
22630 {
22631 tree name, super, categ;
22632 bool is_class_extension;
22633
22634 cp_lexer_consume_token (parser->lexer); /* Eat '@implementation'. */
22635 name = cp_parser_identifier (parser);
22636 if (name == error_mark_node)
22637 {
22638 /* It's hard to recover because even if valid @implementation
22639 stuff is to follow, we can't compile it (or validate it) if
22640 we don't even know which class it refers to. Let's assume
22641 this was a stray '@implementation' token in the stream and
22642 skip it.
22643 */
22644 return;
22645 }
22646 cp_parser_objc_superclass_or_category (parser, false, &super, &categ,
22647 &is_class_extension);
22648
22649 /* We have either a class or a category on our hands. */
22650 if (categ)
22651 objc_start_category_implementation (name, categ);
22652 else
22653 {
22654 objc_start_class_implementation (name, super);
22655 /* Handle instance variable declarations, if any. */
22656 cp_parser_objc_class_ivars (parser);
22657 objc_continue_implementation ();
22658 }
22659
22660 cp_parser_objc_method_definition_list (parser);
22661 }
22662
22663 /* Consume the @end token and finish off the implementation. */
22664
22665 static void
22666 cp_parser_objc_end_implementation (cp_parser* parser)
22667 {
22668 cp_lexer_consume_token (parser->lexer); /* Eat '@end'. */
22669 objc_finish_implementation ();
22670 }
22671
22672 /* Parse an Objective-C declaration. */
22673
22674 static void
22675 cp_parser_objc_declaration (cp_parser* parser, tree attributes)
22676 {
22677 /* Try to figure out what kind of declaration is present. */
22678 cp_token *kwd = cp_lexer_peek_token (parser->lexer);
22679
22680 if (attributes)
22681 switch (kwd->keyword)
22682 {
22683 case RID_AT_ALIAS:
22684 case RID_AT_CLASS:
22685 case RID_AT_END:
22686 error_at (kwd->location, "attributes may not be specified before"
22687 " the %<@%D%> Objective-C++ keyword",
22688 kwd->u.value);
22689 attributes = NULL;
22690 break;
22691 case RID_AT_IMPLEMENTATION:
22692 warning_at (kwd->location, OPT_Wattributes,
22693 "prefix attributes are ignored before %<@%D%>",
22694 kwd->u.value);
22695 attributes = NULL;
22696 default:
22697 break;
22698 }
22699
22700 switch (kwd->keyword)
22701 {
22702 case RID_AT_ALIAS:
22703 cp_parser_objc_alias_declaration (parser);
22704 break;
22705 case RID_AT_CLASS:
22706 cp_parser_objc_class_declaration (parser);
22707 break;
22708 case RID_AT_PROTOCOL:
22709 cp_parser_objc_protocol_declaration (parser, attributes);
22710 break;
22711 case RID_AT_INTERFACE:
22712 cp_parser_objc_class_interface (parser, attributes);
22713 break;
22714 case RID_AT_IMPLEMENTATION:
22715 cp_parser_objc_class_implementation (parser);
22716 break;
22717 case RID_AT_END:
22718 cp_parser_objc_end_implementation (parser);
22719 break;
22720 default:
22721 error_at (kwd->location, "misplaced %<@%D%> Objective-C++ construct",
22722 kwd->u.value);
22723 cp_parser_skip_to_end_of_block_or_statement (parser);
22724 }
22725 }
22726
22727 /* Parse an Objective-C try-catch-finally statement.
22728
22729 objc-try-catch-finally-stmt:
22730 @try compound-statement objc-catch-clause-seq [opt]
22731 objc-finally-clause [opt]
22732
22733 objc-catch-clause-seq:
22734 objc-catch-clause objc-catch-clause-seq [opt]
22735
22736 objc-catch-clause:
22737 @catch ( objc-exception-declaration ) compound-statement
22738
22739 objc-finally-clause:
22740 @finally compound-statement
22741
22742 objc-exception-declaration:
22743 parameter-declaration
22744 '...'
22745
22746 where '...' is to be interpreted literally, that is, it means CPP_ELLIPSIS.
22747
22748 Returns NULL_TREE.
22749
22750 PS: This function is identical to c_parser_objc_try_catch_finally_statement
22751 for C. Keep them in sync. */
22752
22753 static tree
22754 cp_parser_objc_try_catch_finally_statement (cp_parser *parser)
22755 {
22756 location_t location;
22757 tree stmt;
22758
22759 cp_parser_require_keyword (parser, RID_AT_TRY, RT_AT_TRY);
22760 location = cp_lexer_peek_token (parser->lexer)->location;
22761 objc_maybe_warn_exceptions (location);
22762 /* NB: The @try block needs to be wrapped in its own STATEMENT_LIST
22763 node, lest it get absorbed into the surrounding block. */
22764 stmt = push_stmt_list ();
22765 cp_parser_compound_statement (parser, NULL, false);
22766 objc_begin_try_stmt (location, pop_stmt_list (stmt));
22767
22768 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_AT_CATCH))
22769 {
22770 cp_parameter_declarator *parm;
22771 tree parameter_declaration = error_mark_node;
22772 bool seen_open_paren = false;
22773
22774 cp_lexer_consume_token (parser->lexer);
22775 if (cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
22776 seen_open_paren = true;
22777 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
22778 {
22779 /* We have "@catch (...)" (where the '...' are literally
22780 what is in the code). Skip the '...'.
22781 parameter_declaration is set to NULL_TREE, and
22782 objc_being_catch_clauses() knows that that means
22783 '...'. */
22784 cp_lexer_consume_token (parser->lexer);
22785 parameter_declaration = NULL_TREE;
22786 }
22787 else
22788 {
22789 /* We have "@catch (NSException *exception)" or something
22790 like that. Parse the parameter declaration. */
22791 parm = cp_parser_parameter_declaration (parser, false, NULL);
22792 if (parm == NULL)
22793 parameter_declaration = error_mark_node;
22794 else
22795 parameter_declaration = grokdeclarator (parm->declarator,
22796 &parm->decl_specifiers,
22797 PARM, /*initialized=*/0,
22798 /*attrlist=*/NULL);
22799 }
22800 if (seen_open_paren)
22801 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
22802 else
22803 {
22804 /* If there was no open parenthesis, we are recovering from
22805 an error, and we are trying to figure out what mistake
22806 the user has made. */
22807
22808 /* If there is an immediate closing parenthesis, the user
22809 probably forgot the opening one (ie, they typed "@catch
22810 NSException *e)". Parse the closing parenthesis and keep
22811 going. */
22812 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN))
22813 cp_lexer_consume_token (parser->lexer);
22814
22815 /* If these is no immediate closing parenthesis, the user
22816 probably doesn't know that parenthesis are required at
22817 all (ie, they typed "@catch NSException *e"). So, just
22818 forget about the closing parenthesis and keep going. */
22819 }
22820 objc_begin_catch_clause (parameter_declaration);
22821 cp_parser_compound_statement (parser, NULL, false);
22822 objc_finish_catch_clause ();
22823 }
22824 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_AT_FINALLY))
22825 {
22826 cp_lexer_consume_token (parser->lexer);
22827 location = cp_lexer_peek_token (parser->lexer)->location;
22828 /* NB: The @finally block needs to be wrapped in its own STATEMENT_LIST
22829 node, lest it get absorbed into the surrounding block. */
22830 stmt = push_stmt_list ();
22831 cp_parser_compound_statement (parser, NULL, false);
22832 objc_build_finally_clause (location, pop_stmt_list (stmt));
22833 }
22834
22835 return objc_finish_try_stmt ();
22836 }
22837
22838 /* Parse an Objective-C synchronized statement.
22839
22840 objc-synchronized-stmt:
22841 @synchronized ( expression ) compound-statement
22842
22843 Returns NULL_TREE. */
22844
22845 static tree
22846 cp_parser_objc_synchronized_statement (cp_parser *parser)
22847 {
22848 location_t location;
22849 tree lock, stmt;
22850
22851 cp_parser_require_keyword (parser, RID_AT_SYNCHRONIZED, RT_AT_SYNCHRONIZED);
22852
22853 location = cp_lexer_peek_token (parser->lexer)->location;
22854 objc_maybe_warn_exceptions (location);
22855 cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN);
22856 lock = cp_parser_expression (parser, false, NULL);
22857 cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN);
22858
22859 /* NB: The @synchronized block needs to be wrapped in its own STATEMENT_LIST
22860 node, lest it get absorbed into the surrounding block. */
22861 stmt = push_stmt_list ();
22862 cp_parser_compound_statement (parser, NULL, false);
22863
22864 return objc_build_synchronized (location, lock, pop_stmt_list (stmt));
22865 }
22866
22867 /* Parse an Objective-C throw statement.
22868
22869 objc-throw-stmt:
22870 @throw assignment-expression [opt] ;
22871
22872 Returns a constructed '@throw' statement. */
22873
22874 static tree
22875 cp_parser_objc_throw_statement (cp_parser *parser)
22876 {
22877 tree expr = NULL_TREE;
22878 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
22879
22880 cp_parser_require_keyword (parser, RID_AT_THROW, RT_AT_THROW);
22881
22882 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
22883 expr = cp_parser_expression (parser, /*cast_p=*/false, NULL);
22884
22885 cp_parser_consume_semicolon_at_end_of_statement (parser);
22886
22887 return objc_build_throw_stmt (loc, expr);
22888 }
22889
22890 /* Parse an Objective-C statement. */
22891
22892 static tree
22893 cp_parser_objc_statement (cp_parser * parser)
22894 {
22895 /* Try to figure out what kind of declaration is present. */
22896 cp_token *kwd = cp_lexer_peek_token (parser->lexer);
22897
22898 switch (kwd->keyword)
22899 {
22900 case RID_AT_TRY:
22901 return cp_parser_objc_try_catch_finally_statement (parser);
22902 case RID_AT_SYNCHRONIZED:
22903 return cp_parser_objc_synchronized_statement (parser);
22904 case RID_AT_THROW:
22905 return cp_parser_objc_throw_statement (parser);
22906 default:
22907 error_at (kwd->location, "misplaced %<@%D%> Objective-C++ construct",
22908 kwd->u.value);
22909 cp_parser_skip_to_end_of_block_or_statement (parser);
22910 }
22911
22912 return error_mark_node;
22913 }
22914
22915 /* If we are compiling ObjC++ and we see an __attribute__ we neeed to
22916 look ahead to see if an objc keyword follows the attributes. This
22917 is to detect the use of prefix attributes on ObjC @interface and
22918 @protocol. */
22919
22920 static bool
22921 cp_parser_objc_valid_prefix_attributes (cp_parser* parser, tree *attrib)
22922 {
22923 cp_lexer_save_tokens (parser->lexer);
22924 *attrib = cp_parser_attributes_opt (parser);
22925 gcc_assert (*attrib);
22926 if (OBJC_IS_AT_KEYWORD (cp_lexer_peek_token (parser->lexer)->keyword))
22927 {
22928 cp_lexer_commit_tokens (parser->lexer);
22929 return true;
22930 }
22931 cp_lexer_rollback_tokens (parser->lexer);
22932 return false;
22933 }
22934
22935 /* This routine is a minimal replacement for
22936 c_parser_struct_declaration () used when parsing the list of
22937 types/names or ObjC++ properties. For example, when parsing the
22938 code
22939
22940 @property (readonly) int a, b, c;
22941
22942 this function is responsible for parsing "int a, int b, int c" and
22943 returning the declarations as CHAIN of DECLs.
22944
22945 TODO: Share this code with cp_parser_objc_class_ivars. It's very
22946 similar parsing. */
22947 static tree
22948 cp_parser_objc_struct_declaration (cp_parser *parser)
22949 {
22950 tree decls = NULL_TREE;
22951 cp_decl_specifier_seq declspecs;
22952 int decl_class_or_enum_p;
22953 tree prefix_attributes;
22954
22955 cp_parser_decl_specifier_seq (parser,
22956 CP_PARSER_FLAGS_NONE,
22957 &declspecs,
22958 &decl_class_or_enum_p);
22959
22960 if (declspecs.type == error_mark_node)
22961 return error_mark_node;
22962
22963 /* auto, register, static, extern, mutable. */
22964 if (declspecs.storage_class != sc_none)
22965 {
22966 cp_parser_error (parser, "invalid type for property");
22967 declspecs.storage_class = sc_none;
22968 }
22969
22970 /* __thread. */
22971 if (declspecs.specs[(int) ds_thread])
22972 {
22973 cp_parser_error (parser, "invalid type for property");
22974 declspecs.specs[(int) ds_thread] = 0;
22975 }
22976
22977 /* typedef. */
22978 if (declspecs.specs[(int) ds_typedef])
22979 {
22980 cp_parser_error (parser, "invalid type for property");
22981 declspecs.specs[(int) ds_typedef] = 0;
22982 }
22983
22984 prefix_attributes = declspecs.attributes;
22985 declspecs.attributes = NULL_TREE;
22986
22987 /* Keep going until we hit the `;' at the end of the declaration. */
22988 while (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
22989 {
22990 tree attributes, first_attribute, decl;
22991 cp_declarator *declarator;
22992 cp_token *token;
22993
22994 /* Parse the declarator. */
22995 declarator = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
22996 NULL, NULL, false);
22997
22998 /* Look for attributes that apply to the ivar. */
22999 attributes = cp_parser_attributes_opt (parser);
23000 /* Remember which attributes are prefix attributes and
23001 which are not. */
23002 first_attribute = attributes;
23003 /* Combine the attributes. */
23004 attributes = chainon (prefix_attributes, attributes);
23005
23006 decl = grokfield (declarator, &declspecs,
23007 NULL_TREE, /*init_const_expr_p=*/false,
23008 NULL_TREE, attributes);
23009
23010 if (decl == error_mark_node || decl == NULL_TREE)
23011 return error_mark_node;
23012
23013 /* Reset PREFIX_ATTRIBUTES. */
23014 while (attributes && TREE_CHAIN (attributes) != first_attribute)
23015 attributes = TREE_CHAIN (attributes);
23016 if (attributes)
23017 TREE_CHAIN (attributes) = NULL_TREE;
23018
23019 DECL_CHAIN (decl) = decls;
23020 decls = decl;
23021
23022 token = cp_lexer_peek_token (parser->lexer);
23023 if (token->type == CPP_COMMA)
23024 {
23025 cp_lexer_consume_token (parser->lexer); /* Eat ','. */
23026 continue;
23027 }
23028 else
23029 break;
23030 }
23031 return decls;
23032 }
23033
23034 /* Parse an Objective-C @property declaration. The syntax is:
23035
23036 objc-property-declaration:
23037 '@property' objc-property-attributes[opt] struct-declaration ;
23038
23039 objc-property-attributes:
23040 '(' objc-property-attribute-list ')'
23041
23042 objc-property-attribute-list:
23043 objc-property-attribute
23044 objc-property-attribute-list, objc-property-attribute
23045
23046 objc-property-attribute
23047 'getter' = identifier
23048 'setter' = identifier
23049 'readonly'
23050 'readwrite'
23051 'assign'
23052 'retain'
23053 'copy'
23054 'nonatomic'
23055
23056 For example:
23057 @property NSString *name;
23058 @property (readonly) id object;
23059 @property (retain, nonatomic, getter=getTheName) id name;
23060 @property int a, b, c;
23061
23062 PS: This function is identical to
23063 c_parser_objc_at_property_declaration for C. Keep them in sync. */
23064 static void
23065 cp_parser_objc_at_property_declaration (cp_parser *parser)
23066 {
23067 /* The following variables hold the attributes of the properties as
23068 parsed. They are 'false' or 'NULL_TREE' if the attribute was not
23069 seen. When we see an attribute, we set them to 'true' (if they
23070 are boolean properties) or to the identifier (if they have an
23071 argument, ie, for getter and setter). Note that here we only
23072 parse the list of attributes, check the syntax and accumulate the
23073 attributes that we find. objc_add_property_declaration() will
23074 then process the information. */
23075 bool property_assign = false;
23076 bool property_copy = false;
23077 tree property_getter_ident = NULL_TREE;
23078 bool property_nonatomic = false;
23079 bool property_readonly = false;
23080 bool property_readwrite = false;
23081 bool property_retain = false;
23082 tree property_setter_ident = NULL_TREE;
23083
23084 /* 'properties' is the list of properties that we read. Usually a
23085 single one, but maybe more (eg, in "@property int a, b, c;" there
23086 are three). */
23087 tree properties;
23088 location_t loc;
23089
23090 loc = cp_lexer_peek_token (parser->lexer)->location;
23091
23092 cp_lexer_consume_token (parser->lexer); /* Eat '@property'. */
23093
23094 /* Parse the optional attribute list... */
23095 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
23096 {
23097 /* Eat the '('. */
23098 cp_lexer_consume_token (parser->lexer);
23099
23100 while (true)
23101 {
23102 bool syntax_error = false;
23103 cp_token *token = cp_lexer_peek_token (parser->lexer);
23104 enum rid keyword;
23105
23106 if (token->type != CPP_NAME)
23107 {
23108 cp_parser_error (parser, "expected identifier");
23109 break;
23110 }
23111 keyword = C_RID_CODE (token->u.value);
23112 cp_lexer_consume_token (parser->lexer);
23113 switch (keyword)
23114 {
23115 case RID_ASSIGN: property_assign = true; break;
23116 case RID_COPY: property_copy = true; break;
23117 case RID_NONATOMIC: property_nonatomic = true; break;
23118 case RID_READONLY: property_readonly = true; break;
23119 case RID_READWRITE: property_readwrite = true; break;
23120 case RID_RETAIN: property_retain = true; break;
23121
23122 case RID_GETTER:
23123 case RID_SETTER:
23124 if (cp_lexer_next_token_is_not (parser->lexer, CPP_EQ))
23125 {
23126 if (keyword == RID_GETTER)
23127 cp_parser_error (parser,
23128 "missing %<=%> (after %<getter%> attribute)");
23129 else
23130 cp_parser_error (parser,
23131 "missing %<=%> (after %<setter%> attribute)");
23132 syntax_error = true;
23133 break;
23134 }
23135 cp_lexer_consume_token (parser->lexer); /* eat the = */
23136 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NAME))
23137 {
23138 cp_parser_error (parser, "expected identifier");
23139 syntax_error = true;
23140 break;
23141 }
23142 if (keyword == RID_SETTER)
23143 {
23144 if (property_setter_ident != NULL_TREE)
23145 cp_parser_error (parser, "the %<setter%> attribute may only be specified once");
23146 else
23147 property_setter_ident = cp_lexer_peek_token (parser->lexer)->u.value;
23148 cp_lexer_consume_token (parser->lexer);
23149 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COLON))
23150 cp_parser_error (parser, "setter name must terminate with %<:%>");
23151 else
23152 cp_lexer_consume_token (parser->lexer);
23153 }
23154 else
23155 {
23156 if (property_getter_ident != NULL_TREE)
23157 cp_parser_error (parser, "the %<getter%> attribute may only be specified once");
23158 else
23159 property_getter_ident = cp_lexer_peek_token (parser->lexer)->u.value;
23160 cp_lexer_consume_token (parser->lexer);
23161 }
23162 break;
23163 default:
23164 cp_parser_error (parser, "unknown property attribute");
23165 syntax_error = true;
23166 break;
23167 }
23168
23169 if (syntax_error)
23170 break;
23171
23172 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
23173 cp_lexer_consume_token (parser->lexer);
23174 else
23175 break;
23176 }
23177
23178 /* FIXME: "@property (setter, assign);" will generate a spurious
23179 "error: expected ‘)’ before ‘,’ token". This is because
23180 cp_parser_require, unlike the C counterpart, will produce an
23181 error even if we are in error recovery. */
23182 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
23183 {
23184 cp_parser_skip_to_closing_parenthesis (parser,
23185 /*recovering=*/true,
23186 /*or_comma=*/false,
23187 /*consume_paren=*/true);
23188 }
23189 }
23190
23191 /* ... and the property declaration(s). */
23192 properties = cp_parser_objc_struct_declaration (parser);
23193
23194 if (properties == error_mark_node)
23195 {
23196 cp_parser_skip_to_end_of_statement (parser);
23197 /* If the next token is now a `;', consume it. */
23198 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
23199 cp_lexer_consume_token (parser->lexer);
23200 return;
23201 }
23202
23203 if (properties == NULL_TREE)
23204 cp_parser_error (parser, "expected identifier");
23205 else
23206 {
23207 /* Comma-separated properties are chained together in
23208 reverse order; add them one by one. */
23209 properties = nreverse (properties);
23210
23211 for (; properties; properties = TREE_CHAIN (properties))
23212 objc_add_property_declaration (loc, copy_node (properties),
23213 property_readonly, property_readwrite,
23214 property_assign, property_retain,
23215 property_copy, property_nonatomic,
23216 property_getter_ident, property_setter_ident);
23217 }
23218
23219 cp_parser_consume_semicolon_at_end_of_statement (parser);
23220 }
23221
23222 /* Parse an Objective-C++ @synthesize declaration. The syntax is:
23223
23224 objc-synthesize-declaration:
23225 @synthesize objc-synthesize-identifier-list ;
23226
23227 objc-synthesize-identifier-list:
23228 objc-synthesize-identifier
23229 objc-synthesize-identifier-list, objc-synthesize-identifier
23230
23231 objc-synthesize-identifier
23232 identifier
23233 identifier = identifier
23234
23235 For example:
23236 @synthesize MyProperty;
23237 @synthesize OneProperty, AnotherProperty=MyIvar, YetAnotherProperty;
23238
23239 PS: This function is identical to c_parser_objc_at_synthesize_declaration
23240 for C. Keep them in sync.
23241 */
23242 static void
23243 cp_parser_objc_at_synthesize_declaration (cp_parser *parser)
23244 {
23245 tree list = NULL_TREE;
23246 location_t loc;
23247 loc = cp_lexer_peek_token (parser->lexer)->location;
23248
23249 cp_lexer_consume_token (parser->lexer); /* Eat '@synthesize'. */
23250 while (true)
23251 {
23252 tree property, ivar;
23253 property = cp_parser_identifier (parser);
23254 if (property == error_mark_node)
23255 {
23256 cp_parser_consume_semicolon_at_end_of_statement (parser);
23257 return;
23258 }
23259 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
23260 {
23261 cp_lexer_consume_token (parser->lexer);
23262 ivar = cp_parser_identifier (parser);
23263 if (ivar == error_mark_node)
23264 {
23265 cp_parser_consume_semicolon_at_end_of_statement (parser);
23266 return;
23267 }
23268 }
23269 else
23270 ivar = NULL_TREE;
23271 list = chainon (list, build_tree_list (ivar, property));
23272 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
23273 cp_lexer_consume_token (parser->lexer);
23274 else
23275 break;
23276 }
23277 cp_parser_consume_semicolon_at_end_of_statement (parser);
23278 objc_add_synthesize_declaration (loc, list);
23279 }
23280
23281 /* Parse an Objective-C++ @dynamic declaration. The syntax is:
23282
23283 objc-dynamic-declaration:
23284 @dynamic identifier-list ;
23285
23286 For example:
23287 @dynamic MyProperty;
23288 @dynamic MyProperty, AnotherProperty;
23289
23290 PS: This function is identical to c_parser_objc_at_dynamic_declaration
23291 for C. Keep them in sync.
23292 */
23293 static void
23294 cp_parser_objc_at_dynamic_declaration (cp_parser *parser)
23295 {
23296 tree list = NULL_TREE;
23297 location_t loc;
23298 loc = cp_lexer_peek_token (parser->lexer)->location;
23299
23300 cp_lexer_consume_token (parser->lexer); /* Eat '@dynamic'. */
23301 while (true)
23302 {
23303 tree property;
23304 property = cp_parser_identifier (parser);
23305 if (property == error_mark_node)
23306 {
23307 cp_parser_consume_semicolon_at_end_of_statement (parser);
23308 return;
23309 }
23310 list = chainon (list, build_tree_list (NULL, property));
23311 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
23312 cp_lexer_consume_token (parser->lexer);
23313 else
23314 break;
23315 }
23316 cp_parser_consume_semicolon_at_end_of_statement (parser);
23317 objc_add_dynamic_declaration (loc, list);
23318 }
23319
23320 \f
23321 /* OpenMP 2.5 parsing routines. */
23322
23323 /* Returns name of the next clause.
23324 If the clause is not recognized PRAGMA_OMP_CLAUSE_NONE is returned and
23325 the token is not consumed. Otherwise appropriate pragma_omp_clause is
23326 returned and the token is consumed. */
23327
23328 static pragma_omp_clause
23329 cp_parser_omp_clause_name (cp_parser *parser)
23330 {
23331 pragma_omp_clause result = PRAGMA_OMP_CLAUSE_NONE;
23332
23333 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_IF))
23334 result = PRAGMA_OMP_CLAUSE_IF;
23335 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_DEFAULT))
23336 result = PRAGMA_OMP_CLAUSE_DEFAULT;
23337 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_PRIVATE))
23338 result = PRAGMA_OMP_CLAUSE_PRIVATE;
23339 else if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
23340 {
23341 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
23342 const char *p = IDENTIFIER_POINTER (id);
23343
23344 switch (p[0])
23345 {
23346 case 'c':
23347 if (!strcmp ("collapse", p))
23348 result = PRAGMA_OMP_CLAUSE_COLLAPSE;
23349 else if (!strcmp ("copyin", p))
23350 result = PRAGMA_OMP_CLAUSE_COPYIN;
23351 else if (!strcmp ("copyprivate", p))
23352 result = PRAGMA_OMP_CLAUSE_COPYPRIVATE;
23353 break;
23354 case 'f':
23355 if (!strcmp ("firstprivate", p))
23356 result = PRAGMA_OMP_CLAUSE_FIRSTPRIVATE;
23357 break;
23358 case 'l':
23359 if (!strcmp ("lastprivate", p))
23360 result = PRAGMA_OMP_CLAUSE_LASTPRIVATE;
23361 break;
23362 case 'n':
23363 if (!strcmp ("nowait", p))
23364 result = PRAGMA_OMP_CLAUSE_NOWAIT;
23365 else if (!strcmp ("num_threads", p))
23366 result = PRAGMA_OMP_CLAUSE_NUM_THREADS;
23367 break;
23368 case 'o':
23369 if (!strcmp ("ordered", p))
23370 result = PRAGMA_OMP_CLAUSE_ORDERED;
23371 break;
23372 case 'r':
23373 if (!strcmp ("reduction", p))
23374 result = PRAGMA_OMP_CLAUSE_REDUCTION;
23375 break;
23376 case 's':
23377 if (!strcmp ("schedule", p))
23378 result = PRAGMA_OMP_CLAUSE_SCHEDULE;
23379 else if (!strcmp ("shared", p))
23380 result = PRAGMA_OMP_CLAUSE_SHARED;
23381 break;
23382 case 'u':
23383 if (!strcmp ("untied", p))
23384 result = PRAGMA_OMP_CLAUSE_UNTIED;
23385 break;
23386 }
23387 }
23388
23389 if (result != PRAGMA_OMP_CLAUSE_NONE)
23390 cp_lexer_consume_token (parser->lexer);
23391
23392 return result;
23393 }
23394
23395 /* Validate that a clause of the given type does not already exist. */
23396
23397 static void
23398 check_no_duplicate_clause (tree clauses, enum omp_clause_code code,
23399 const char *name, location_t location)
23400 {
23401 tree c;
23402
23403 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
23404 if (OMP_CLAUSE_CODE (c) == code)
23405 {
23406 error_at (location, "too many %qs clauses", name);
23407 break;
23408 }
23409 }
23410
23411 /* OpenMP 2.5:
23412 variable-list:
23413 identifier
23414 variable-list , identifier
23415
23416 In addition, we match a closing parenthesis. An opening parenthesis
23417 will have been consumed by the caller.
23418
23419 If KIND is nonzero, create the appropriate node and install the decl
23420 in OMP_CLAUSE_DECL and add the node to the head of the list.
23421
23422 If KIND is zero, create a TREE_LIST with the decl in TREE_PURPOSE;
23423 return the list created. */
23424
23425 static tree
23426 cp_parser_omp_var_list_no_open (cp_parser *parser, enum omp_clause_code kind,
23427 tree list)
23428 {
23429 cp_token *token;
23430 while (1)
23431 {
23432 tree name, decl;
23433
23434 token = cp_lexer_peek_token (parser->lexer);
23435 name = cp_parser_id_expression (parser, /*template_p=*/false,
23436 /*check_dependency_p=*/true,
23437 /*template_p=*/NULL,
23438 /*declarator_p=*/false,
23439 /*optional_p=*/false);
23440 if (name == error_mark_node)
23441 goto skip_comma;
23442
23443 decl = cp_parser_lookup_name_simple (parser, name, token->location);
23444 if (decl == error_mark_node)
23445 cp_parser_name_lookup_error (parser, name, decl, NLE_NULL,
23446 token->location);
23447 else if (kind != 0)
23448 {
23449 tree u = build_omp_clause (token->location, kind);
23450 OMP_CLAUSE_DECL (u) = decl;
23451 OMP_CLAUSE_CHAIN (u) = list;
23452 list = u;
23453 }
23454 else
23455 list = tree_cons (decl, NULL_TREE, list);
23456
23457 get_comma:
23458 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
23459 break;
23460 cp_lexer_consume_token (parser->lexer);
23461 }
23462
23463 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
23464 {
23465 int ending;
23466
23467 /* Try to resync to an unnested comma. Copied from
23468 cp_parser_parenthesized_expression_list. */
23469 skip_comma:
23470 ending = cp_parser_skip_to_closing_parenthesis (parser,
23471 /*recovering=*/true,
23472 /*or_comma=*/true,
23473 /*consume_paren=*/true);
23474 if (ending < 0)
23475 goto get_comma;
23476 }
23477
23478 return list;
23479 }
23480
23481 /* Similarly, but expect leading and trailing parenthesis. This is a very
23482 common case for omp clauses. */
23483
23484 static tree
23485 cp_parser_omp_var_list (cp_parser *parser, enum omp_clause_code kind, tree list)
23486 {
23487 if (cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
23488 return cp_parser_omp_var_list_no_open (parser, kind, list);
23489 return list;
23490 }
23491
23492 /* OpenMP 3.0:
23493 collapse ( constant-expression ) */
23494
23495 static tree
23496 cp_parser_omp_clause_collapse (cp_parser *parser, tree list, location_t location)
23497 {
23498 tree c, num;
23499 location_t loc;
23500 HOST_WIDE_INT n;
23501
23502 loc = cp_lexer_peek_token (parser->lexer)->location;
23503 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
23504 return list;
23505
23506 num = cp_parser_constant_expression (parser, false, NULL);
23507
23508 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
23509 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
23510 /*or_comma=*/false,
23511 /*consume_paren=*/true);
23512
23513 if (num == error_mark_node)
23514 return list;
23515 num = fold_non_dependent_expr (num);
23516 if (!INTEGRAL_TYPE_P (TREE_TYPE (num))
23517 || !host_integerp (num, 0)
23518 || (n = tree_low_cst (num, 0)) <= 0
23519 || (int) n != n)
23520 {
23521 error_at (loc, "collapse argument needs positive constant integer expression");
23522 return list;
23523 }
23524
23525 check_no_duplicate_clause (list, OMP_CLAUSE_COLLAPSE, "collapse", location);
23526 c = build_omp_clause (loc, OMP_CLAUSE_COLLAPSE);
23527 OMP_CLAUSE_CHAIN (c) = list;
23528 OMP_CLAUSE_COLLAPSE_EXPR (c) = num;
23529
23530 return c;
23531 }
23532
23533 /* OpenMP 2.5:
23534 default ( shared | none ) */
23535
23536 static tree
23537 cp_parser_omp_clause_default (cp_parser *parser, tree list, location_t location)
23538 {
23539 enum omp_clause_default_kind kind = OMP_CLAUSE_DEFAULT_UNSPECIFIED;
23540 tree c;
23541
23542 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
23543 return list;
23544 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
23545 {
23546 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
23547 const char *p = IDENTIFIER_POINTER (id);
23548
23549 switch (p[0])
23550 {
23551 case 'n':
23552 if (strcmp ("none", p) != 0)
23553 goto invalid_kind;
23554 kind = OMP_CLAUSE_DEFAULT_NONE;
23555 break;
23556
23557 case 's':
23558 if (strcmp ("shared", p) != 0)
23559 goto invalid_kind;
23560 kind = OMP_CLAUSE_DEFAULT_SHARED;
23561 break;
23562
23563 default:
23564 goto invalid_kind;
23565 }
23566
23567 cp_lexer_consume_token (parser->lexer);
23568 }
23569 else
23570 {
23571 invalid_kind:
23572 cp_parser_error (parser, "expected %<none%> or %<shared%>");
23573 }
23574
23575 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
23576 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
23577 /*or_comma=*/false,
23578 /*consume_paren=*/true);
23579
23580 if (kind == OMP_CLAUSE_DEFAULT_UNSPECIFIED)
23581 return list;
23582
23583 check_no_duplicate_clause (list, OMP_CLAUSE_DEFAULT, "default", location);
23584 c = build_omp_clause (location, OMP_CLAUSE_DEFAULT);
23585 OMP_CLAUSE_CHAIN (c) = list;
23586 OMP_CLAUSE_DEFAULT_KIND (c) = kind;
23587
23588 return c;
23589 }
23590
23591 /* OpenMP 2.5:
23592 if ( expression ) */
23593
23594 static tree
23595 cp_parser_omp_clause_if (cp_parser *parser, tree list, location_t location)
23596 {
23597 tree t, c;
23598
23599 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
23600 return list;
23601
23602 t = cp_parser_condition (parser);
23603
23604 if (t == error_mark_node
23605 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
23606 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
23607 /*or_comma=*/false,
23608 /*consume_paren=*/true);
23609
23610 check_no_duplicate_clause (list, OMP_CLAUSE_IF, "if", location);
23611
23612 c = build_omp_clause (location, OMP_CLAUSE_IF);
23613 OMP_CLAUSE_IF_EXPR (c) = t;
23614 OMP_CLAUSE_CHAIN (c) = list;
23615
23616 return c;
23617 }
23618
23619 /* OpenMP 2.5:
23620 nowait */
23621
23622 static tree
23623 cp_parser_omp_clause_nowait (cp_parser *parser ATTRIBUTE_UNUSED,
23624 tree list, location_t location)
23625 {
23626 tree c;
23627
23628 check_no_duplicate_clause (list, OMP_CLAUSE_NOWAIT, "nowait", location);
23629
23630 c = build_omp_clause (location, OMP_CLAUSE_NOWAIT);
23631 OMP_CLAUSE_CHAIN (c) = list;
23632 return c;
23633 }
23634
23635 /* OpenMP 2.5:
23636 num_threads ( expression ) */
23637
23638 static tree
23639 cp_parser_omp_clause_num_threads (cp_parser *parser, tree list,
23640 location_t location)
23641 {
23642 tree t, c;
23643
23644 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
23645 return list;
23646
23647 t = cp_parser_expression (parser, false, NULL);
23648
23649 if (t == error_mark_node
23650 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
23651 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
23652 /*or_comma=*/false,
23653 /*consume_paren=*/true);
23654
23655 check_no_duplicate_clause (list, OMP_CLAUSE_NUM_THREADS,
23656 "num_threads", location);
23657
23658 c = build_omp_clause (location, OMP_CLAUSE_NUM_THREADS);
23659 OMP_CLAUSE_NUM_THREADS_EXPR (c) = t;
23660 OMP_CLAUSE_CHAIN (c) = list;
23661
23662 return c;
23663 }
23664
23665 /* OpenMP 2.5:
23666 ordered */
23667
23668 static tree
23669 cp_parser_omp_clause_ordered (cp_parser *parser ATTRIBUTE_UNUSED,
23670 tree list, location_t location)
23671 {
23672 tree c;
23673
23674 check_no_duplicate_clause (list, OMP_CLAUSE_ORDERED,
23675 "ordered", location);
23676
23677 c = build_omp_clause (location, OMP_CLAUSE_ORDERED);
23678 OMP_CLAUSE_CHAIN (c) = list;
23679 return c;
23680 }
23681
23682 /* OpenMP 2.5:
23683 reduction ( reduction-operator : variable-list )
23684
23685 reduction-operator:
23686 One of: + * - & ^ | && || */
23687
23688 static tree
23689 cp_parser_omp_clause_reduction (cp_parser *parser, tree list)
23690 {
23691 enum tree_code code;
23692 tree nlist, c;
23693
23694 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
23695 return list;
23696
23697 switch (cp_lexer_peek_token (parser->lexer)->type)
23698 {
23699 case CPP_PLUS:
23700 code = PLUS_EXPR;
23701 break;
23702 case CPP_MULT:
23703 code = MULT_EXPR;
23704 break;
23705 case CPP_MINUS:
23706 code = MINUS_EXPR;
23707 break;
23708 case CPP_AND:
23709 code = BIT_AND_EXPR;
23710 break;
23711 case CPP_XOR:
23712 code = BIT_XOR_EXPR;
23713 break;
23714 case CPP_OR:
23715 code = BIT_IOR_EXPR;
23716 break;
23717 case CPP_AND_AND:
23718 code = TRUTH_ANDIF_EXPR;
23719 break;
23720 case CPP_OR_OR:
23721 code = TRUTH_ORIF_EXPR;
23722 break;
23723 default:
23724 cp_parser_error (parser, "expected %<+%>, %<*%>, %<-%>, %<&%>, %<^%>, "
23725 "%<|%>, %<&&%>, or %<||%>");
23726 resync_fail:
23727 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
23728 /*or_comma=*/false,
23729 /*consume_paren=*/true);
23730 return list;
23731 }
23732 cp_lexer_consume_token (parser->lexer);
23733
23734 if (!cp_parser_require (parser, CPP_COLON, RT_COLON))
23735 goto resync_fail;
23736
23737 nlist = cp_parser_omp_var_list_no_open (parser, OMP_CLAUSE_REDUCTION, list);
23738 for (c = nlist; c != list; c = OMP_CLAUSE_CHAIN (c))
23739 OMP_CLAUSE_REDUCTION_CODE (c) = code;
23740
23741 return nlist;
23742 }
23743
23744 /* OpenMP 2.5:
23745 schedule ( schedule-kind )
23746 schedule ( schedule-kind , expression )
23747
23748 schedule-kind:
23749 static | dynamic | guided | runtime | auto */
23750
23751 static tree
23752 cp_parser_omp_clause_schedule (cp_parser *parser, tree list, location_t location)
23753 {
23754 tree c, t;
23755
23756 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
23757 return list;
23758
23759 c = build_omp_clause (location, OMP_CLAUSE_SCHEDULE);
23760
23761 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
23762 {
23763 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
23764 const char *p = IDENTIFIER_POINTER (id);
23765
23766 switch (p[0])
23767 {
23768 case 'd':
23769 if (strcmp ("dynamic", p) != 0)
23770 goto invalid_kind;
23771 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_DYNAMIC;
23772 break;
23773
23774 case 'g':
23775 if (strcmp ("guided", p) != 0)
23776 goto invalid_kind;
23777 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_GUIDED;
23778 break;
23779
23780 case 'r':
23781 if (strcmp ("runtime", p) != 0)
23782 goto invalid_kind;
23783 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_RUNTIME;
23784 break;
23785
23786 default:
23787 goto invalid_kind;
23788 }
23789 }
23790 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_STATIC))
23791 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_STATIC;
23792 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_AUTO))
23793 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_AUTO;
23794 else
23795 goto invalid_kind;
23796 cp_lexer_consume_token (parser->lexer);
23797
23798 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
23799 {
23800 cp_token *token;
23801 cp_lexer_consume_token (parser->lexer);
23802
23803 token = cp_lexer_peek_token (parser->lexer);
23804 t = cp_parser_assignment_expression (parser, false, NULL);
23805
23806 if (t == error_mark_node)
23807 goto resync_fail;
23808 else if (OMP_CLAUSE_SCHEDULE_KIND (c) == OMP_CLAUSE_SCHEDULE_RUNTIME)
23809 error_at (token->location, "schedule %<runtime%> does not take "
23810 "a %<chunk_size%> parameter");
23811 else if (OMP_CLAUSE_SCHEDULE_KIND (c) == OMP_CLAUSE_SCHEDULE_AUTO)
23812 error_at (token->location, "schedule %<auto%> does not take "
23813 "a %<chunk_size%> parameter");
23814 else
23815 OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c) = t;
23816
23817 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
23818 goto resync_fail;
23819 }
23820 else if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_COMMA_CLOSE_PAREN))
23821 goto resync_fail;
23822
23823 check_no_duplicate_clause (list, OMP_CLAUSE_SCHEDULE, "schedule", location);
23824 OMP_CLAUSE_CHAIN (c) = list;
23825 return c;
23826
23827 invalid_kind:
23828 cp_parser_error (parser, "invalid schedule kind");
23829 resync_fail:
23830 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
23831 /*or_comma=*/false,
23832 /*consume_paren=*/true);
23833 return list;
23834 }
23835
23836 /* OpenMP 3.0:
23837 untied */
23838
23839 static tree
23840 cp_parser_omp_clause_untied (cp_parser *parser ATTRIBUTE_UNUSED,
23841 tree list, location_t location)
23842 {
23843 tree c;
23844
23845 check_no_duplicate_clause (list, OMP_CLAUSE_UNTIED, "untied", location);
23846
23847 c = build_omp_clause (location, OMP_CLAUSE_UNTIED);
23848 OMP_CLAUSE_CHAIN (c) = list;
23849 return c;
23850 }
23851
23852 /* Parse all OpenMP clauses. The set clauses allowed by the directive
23853 is a bitmask in MASK. Return the list of clauses found; the result
23854 of clause default goes in *pdefault. */
23855
23856 static tree
23857 cp_parser_omp_all_clauses (cp_parser *parser, unsigned int mask,
23858 const char *where, cp_token *pragma_tok)
23859 {
23860 tree clauses = NULL;
23861 bool first = true;
23862 cp_token *token = NULL;
23863
23864 while (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL))
23865 {
23866 pragma_omp_clause c_kind;
23867 const char *c_name;
23868 tree prev = clauses;
23869
23870 if (!first && cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
23871 cp_lexer_consume_token (parser->lexer);
23872
23873 token = cp_lexer_peek_token (parser->lexer);
23874 c_kind = cp_parser_omp_clause_name (parser);
23875 first = false;
23876
23877 switch (c_kind)
23878 {
23879 case PRAGMA_OMP_CLAUSE_COLLAPSE:
23880 clauses = cp_parser_omp_clause_collapse (parser, clauses,
23881 token->location);
23882 c_name = "collapse";
23883 break;
23884 case PRAGMA_OMP_CLAUSE_COPYIN:
23885 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_COPYIN, clauses);
23886 c_name = "copyin";
23887 break;
23888 case PRAGMA_OMP_CLAUSE_COPYPRIVATE:
23889 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_COPYPRIVATE,
23890 clauses);
23891 c_name = "copyprivate";
23892 break;
23893 case PRAGMA_OMP_CLAUSE_DEFAULT:
23894 clauses = cp_parser_omp_clause_default (parser, clauses,
23895 token->location);
23896 c_name = "default";
23897 break;
23898 case PRAGMA_OMP_CLAUSE_FIRSTPRIVATE:
23899 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_FIRSTPRIVATE,
23900 clauses);
23901 c_name = "firstprivate";
23902 break;
23903 case PRAGMA_OMP_CLAUSE_IF:
23904 clauses = cp_parser_omp_clause_if (parser, clauses, token->location);
23905 c_name = "if";
23906 break;
23907 case PRAGMA_OMP_CLAUSE_LASTPRIVATE:
23908 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_LASTPRIVATE,
23909 clauses);
23910 c_name = "lastprivate";
23911 break;
23912 case PRAGMA_OMP_CLAUSE_NOWAIT:
23913 clauses = cp_parser_omp_clause_nowait (parser, clauses, token->location);
23914 c_name = "nowait";
23915 break;
23916 case PRAGMA_OMP_CLAUSE_NUM_THREADS:
23917 clauses = cp_parser_omp_clause_num_threads (parser, clauses,
23918 token->location);
23919 c_name = "num_threads";
23920 break;
23921 case PRAGMA_OMP_CLAUSE_ORDERED:
23922 clauses = cp_parser_omp_clause_ordered (parser, clauses,
23923 token->location);
23924 c_name = "ordered";
23925 break;
23926 case PRAGMA_OMP_CLAUSE_PRIVATE:
23927 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_PRIVATE,
23928 clauses);
23929 c_name = "private";
23930 break;
23931 case PRAGMA_OMP_CLAUSE_REDUCTION:
23932 clauses = cp_parser_omp_clause_reduction (parser, clauses);
23933 c_name = "reduction";
23934 break;
23935 case PRAGMA_OMP_CLAUSE_SCHEDULE:
23936 clauses = cp_parser_omp_clause_schedule (parser, clauses,
23937 token->location);
23938 c_name = "schedule";
23939 break;
23940 case PRAGMA_OMP_CLAUSE_SHARED:
23941 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_SHARED,
23942 clauses);
23943 c_name = "shared";
23944 break;
23945 case PRAGMA_OMP_CLAUSE_UNTIED:
23946 clauses = cp_parser_omp_clause_untied (parser, clauses,
23947 token->location);
23948 c_name = "nowait";
23949 break;
23950 default:
23951 cp_parser_error (parser, "expected %<#pragma omp%> clause");
23952 goto saw_error;
23953 }
23954
23955 if (((mask >> c_kind) & 1) == 0)
23956 {
23957 /* Remove the invalid clause(s) from the list to avoid
23958 confusing the rest of the compiler. */
23959 clauses = prev;
23960 error_at (token->location, "%qs is not valid for %qs", c_name, where);
23961 }
23962 }
23963 saw_error:
23964 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
23965 return finish_omp_clauses (clauses);
23966 }
23967
23968 /* OpenMP 2.5:
23969 structured-block:
23970 statement
23971
23972 In practice, we're also interested in adding the statement to an
23973 outer node. So it is convenient if we work around the fact that
23974 cp_parser_statement calls add_stmt. */
23975
23976 static unsigned
23977 cp_parser_begin_omp_structured_block (cp_parser *parser)
23978 {
23979 unsigned save = parser->in_statement;
23980
23981 /* Only move the values to IN_OMP_BLOCK if they weren't false.
23982 This preserves the "not within loop or switch" style error messages
23983 for nonsense cases like
23984 void foo() {
23985 #pragma omp single
23986 break;
23987 }
23988 */
23989 if (parser->in_statement)
23990 parser->in_statement = IN_OMP_BLOCK;
23991
23992 return save;
23993 }
23994
23995 static void
23996 cp_parser_end_omp_structured_block (cp_parser *parser, unsigned save)
23997 {
23998 parser->in_statement = save;
23999 }
24000
24001 static tree
24002 cp_parser_omp_structured_block (cp_parser *parser)
24003 {
24004 tree stmt = begin_omp_structured_block ();
24005 unsigned int save = cp_parser_begin_omp_structured_block (parser);
24006
24007 cp_parser_statement (parser, NULL_TREE, false, NULL);
24008
24009 cp_parser_end_omp_structured_block (parser, save);
24010 return finish_omp_structured_block (stmt);
24011 }
24012
24013 /* OpenMP 2.5:
24014 # pragma omp atomic new-line
24015 expression-stmt
24016
24017 expression-stmt:
24018 x binop= expr | x++ | ++x | x-- | --x
24019 binop:
24020 +, *, -, /, &, ^, |, <<, >>
24021
24022 where x is an lvalue expression with scalar type. */
24023
24024 static void
24025 cp_parser_omp_atomic (cp_parser *parser, cp_token *pragma_tok)
24026 {
24027 tree lhs, rhs;
24028 enum tree_code code;
24029
24030 cp_parser_require_pragma_eol (parser, pragma_tok);
24031
24032 lhs = cp_parser_unary_expression (parser, /*address_p=*/false,
24033 /*cast_p=*/false, NULL);
24034 switch (TREE_CODE (lhs))
24035 {
24036 case ERROR_MARK:
24037 goto saw_error;
24038
24039 case PREINCREMENT_EXPR:
24040 case POSTINCREMENT_EXPR:
24041 lhs = TREE_OPERAND (lhs, 0);
24042 code = PLUS_EXPR;
24043 rhs = integer_one_node;
24044 break;
24045
24046 case PREDECREMENT_EXPR:
24047 case POSTDECREMENT_EXPR:
24048 lhs = TREE_OPERAND (lhs, 0);
24049 code = MINUS_EXPR;
24050 rhs = integer_one_node;
24051 break;
24052
24053 case COMPOUND_EXPR:
24054 if (TREE_CODE (TREE_OPERAND (lhs, 0)) == SAVE_EXPR
24055 && TREE_CODE (TREE_OPERAND (lhs, 1)) == COMPOUND_EXPR
24056 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (lhs, 1), 0)) == MODIFY_EXPR
24057 && TREE_OPERAND (TREE_OPERAND (lhs, 1), 1) == TREE_OPERAND (lhs, 0)
24058 && TREE_CODE (TREE_TYPE (TREE_OPERAND (TREE_OPERAND
24059 (TREE_OPERAND (lhs, 1), 0), 0)))
24060 == BOOLEAN_TYPE)
24061 /* Undo effects of boolean_increment for post {in,de}crement. */
24062 lhs = TREE_OPERAND (TREE_OPERAND (lhs, 1), 0);
24063 /* FALLTHRU */
24064 case MODIFY_EXPR:
24065 if (TREE_CODE (lhs) == MODIFY_EXPR
24066 && TREE_CODE (TREE_TYPE (TREE_OPERAND (lhs, 0))) == BOOLEAN_TYPE)
24067 {
24068 /* Undo effects of boolean_increment. */
24069 if (integer_onep (TREE_OPERAND (lhs, 1)))
24070 {
24071 /* This is pre or post increment. */
24072 rhs = TREE_OPERAND (lhs, 1);
24073 lhs = TREE_OPERAND (lhs, 0);
24074 code = NOP_EXPR;
24075 break;
24076 }
24077 }
24078 /* FALLTHRU */
24079 default:
24080 switch (cp_lexer_peek_token (parser->lexer)->type)
24081 {
24082 case CPP_MULT_EQ:
24083 code = MULT_EXPR;
24084 break;
24085 case CPP_DIV_EQ:
24086 code = TRUNC_DIV_EXPR;
24087 break;
24088 case CPP_PLUS_EQ:
24089 code = PLUS_EXPR;
24090 break;
24091 case CPP_MINUS_EQ:
24092 code = MINUS_EXPR;
24093 break;
24094 case CPP_LSHIFT_EQ:
24095 code = LSHIFT_EXPR;
24096 break;
24097 case CPP_RSHIFT_EQ:
24098 code = RSHIFT_EXPR;
24099 break;
24100 case CPP_AND_EQ:
24101 code = BIT_AND_EXPR;
24102 break;
24103 case CPP_OR_EQ:
24104 code = BIT_IOR_EXPR;
24105 break;
24106 case CPP_XOR_EQ:
24107 code = BIT_XOR_EXPR;
24108 break;
24109 default:
24110 cp_parser_error (parser,
24111 "invalid operator for %<#pragma omp atomic%>");
24112 goto saw_error;
24113 }
24114 cp_lexer_consume_token (parser->lexer);
24115
24116 rhs = cp_parser_expression (parser, false, NULL);
24117 if (rhs == error_mark_node)
24118 goto saw_error;
24119 break;
24120 }
24121 finish_omp_atomic (code, lhs, rhs);
24122 cp_parser_consume_semicolon_at_end_of_statement (parser);
24123 return;
24124
24125 saw_error:
24126 cp_parser_skip_to_end_of_block_or_statement (parser);
24127 }
24128
24129
24130 /* OpenMP 2.5:
24131 # pragma omp barrier new-line */
24132
24133 static void
24134 cp_parser_omp_barrier (cp_parser *parser, cp_token *pragma_tok)
24135 {
24136 cp_parser_require_pragma_eol (parser, pragma_tok);
24137 finish_omp_barrier ();
24138 }
24139
24140 /* OpenMP 2.5:
24141 # pragma omp critical [(name)] new-line
24142 structured-block */
24143
24144 static tree
24145 cp_parser_omp_critical (cp_parser *parser, cp_token *pragma_tok)
24146 {
24147 tree stmt, name = NULL;
24148
24149 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
24150 {
24151 cp_lexer_consume_token (parser->lexer);
24152
24153 name = cp_parser_identifier (parser);
24154
24155 if (name == error_mark_node
24156 || !cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
24157 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
24158 /*or_comma=*/false,
24159 /*consume_paren=*/true);
24160 if (name == error_mark_node)
24161 name = NULL;
24162 }
24163 cp_parser_require_pragma_eol (parser, pragma_tok);
24164
24165 stmt = cp_parser_omp_structured_block (parser);
24166 return c_finish_omp_critical (input_location, stmt, name);
24167 }
24168
24169 /* OpenMP 2.5:
24170 # pragma omp flush flush-vars[opt] new-line
24171
24172 flush-vars:
24173 ( variable-list ) */
24174
24175 static void
24176 cp_parser_omp_flush (cp_parser *parser, cp_token *pragma_tok)
24177 {
24178 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
24179 (void) cp_parser_omp_var_list (parser, OMP_CLAUSE_ERROR, NULL);
24180 cp_parser_require_pragma_eol (parser, pragma_tok);
24181
24182 finish_omp_flush ();
24183 }
24184
24185 /* Helper function, to parse omp for increment expression. */
24186
24187 static tree
24188 cp_parser_omp_for_cond (cp_parser *parser, tree decl)
24189 {
24190 tree cond = cp_parser_binary_expression (parser, false, true,
24191 PREC_NOT_OPERATOR, NULL);
24192 bool overloaded_p;
24193
24194 if (cond == error_mark_node
24195 || cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
24196 {
24197 cp_parser_skip_to_end_of_statement (parser);
24198 return error_mark_node;
24199 }
24200
24201 switch (TREE_CODE (cond))
24202 {
24203 case GT_EXPR:
24204 case GE_EXPR:
24205 case LT_EXPR:
24206 case LE_EXPR:
24207 break;
24208 default:
24209 return error_mark_node;
24210 }
24211
24212 /* If decl is an iterator, preserve LHS and RHS of the relational
24213 expr until finish_omp_for. */
24214 if (decl
24215 && (type_dependent_expression_p (decl)
24216 || CLASS_TYPE_P (TREE_TYPE (decl))))
24217 return cond;
24218
24219 return build_x_binary_op (TREE_CODE (cond),
24220 TREE_OPERAND (cond, 0), ERROR_MARK,
24221 TREE_OPERAND (cond, 1), ERROR_MARK,
24222 &overloaded_p, tf_warning_or_error);
24223 }
24224
24225 /* Helper function, to parse omp for increment expression. */
24226
24227 static tree
24228 cp_parser_omp_for_incr (cp_parser *parser, tree decl)
24229 {
24230 cp_token *token = cp_lexer_peek_token (parser->lexer);
24231 enum tree_code op;
24232 tree lhs, rhs;
24233 cp_id_kind idk;
24234 bool decl_first;
24235
24236 if (token->type == CPP_PLUS_PLUS || token->type == CPP_MINUS_MINUS)
24237 {
24238 op = (token->type == CPP_PLUS_PLUS
24239 ? PREINCREMENT_EXPR : PREDECREMENT_EXPR);
24240 cp_lexer_consume_token (parser->lexer);
24241 lhs = cp_parser_cast_expression (parser, false, false, NULL);
24242 if (lhs != decl)
24243 return error_mark_node;
24244 return build2 (op, TREE_TYPE (decl), decl, NULL_TREE);
24245 }
24246
24247 lhs = cp_parser_primary_expression (parser, false, false, false, &idk);
24248 if (lhs != decl)
24249 return error_mark_node;
24250
24251 token = cp_lexer_peek_token (parser->lexer);
24252 if (token->type == CPP_PLUS_PLUS || token->type == CPP_MINUS_MINUS)
24253 {
24254 op = (token->type == CPP_PLUS_PLUS
24255 ? POSTINCREMENT_EXPR : POSTDECREMENT_EXPR);
24256 cp_lexer_consume_token (parser->lexer);
24257 return build2 (op, TREE_TYPE (decl), decl, NULL_TREE);
24258 }
24259
24260 op = cp_parser_assignment_operator_opt (parser);
24261 if (op == ERROR_MARK)
24262 return error_mark_node;
24263
24264 if (op != NOP_EXPR)
24265 {
24266 rhs = cp_parser_assignment_expression (parser, false, NULL);
24267 rhs = build2 (op, TREE_TYPE (decl), decl, rhs);
24268 return build2 (MODIFY_EXPR, TREE_TYPE (decl), decl, rhs);
24269 }
24270
24271 lhs = cp_parser_binary_expression (parser, false, false,
24272 PREC_ADDITIVE_EXPRESSION, NULL);
24273 token = cp_lexer_peek_token (parser->lexer);
24274 decl_first = lhs == decl;
24275 if (decl_first)
24276 lhs = NULL_TREE;
24277 if (token->type != CPP_PLUS
24278 && token->type != CPP_MINUS)
24279 return error_mark_node;
24280
24281 do
24282 {
24283 op = token->type == CPP_PLUS ? PLUS_EXPR : MINUS_EXPR;
24284 cp_lexer_consume_token (parser->lexer);
24285 rhs = cp_parser_binary_expression (parser, false, false,
24286 PREC_ADDITIVE_EXPRESSION, NULL);
24287 token = cp_lexer_peek_token (parser->lexer);
24288 if (token->type == CPP_PLUS || token->type == CPP_MINUS || decl_first)
24289 {
24290 if (lhs == NULL_TREE)
24291 {
24292 if (op == PLUS_EXPR)
24293 lhs = rhs;
24294 else
24295 lhs = build_x_unary_op (NEGATE_EXPR, rhs, tf_warning_or_error);
24296 }
24297 else
24298 lhs = build_x_binary_op (op, lhs, ERROR_MARK, rhs, ERROR_MARK,
24299 NULL, tf_warning_or_error);
24300 }
24301 }
24302 while (token->type == CPP_PLUS || token->type == CPP_MINUS);
24303
24304 if (!decl_first)
24305 {
24306 if (rhs != decl || op == MINUS_EXPR)
24307 return error_mark_node;
24308 rhs = build2 (op, TREE_TYPE (decl), lhs, decl);
24309 }
24310 else
24311 rhs = build2 (PLUS_EXPR, TREE_TYPE (decl), decl, lhs);
24312
24313 return build2 (MODIFY_EXPR, TREE_TYPE (decl), decl, rhs);
24314 }
24315
24316 /* Parse the restricted form of the for statement allowed by OpenMP. */
24317
24318 static tree
24319 cp_parser_omp_for_loop (cp_parser *parser, tree clauses, tree *par_clauses)
24320 {
24321 tree init, cond, incr, body, decl, pre_body = NULL_TREE, ret;
24322 tree real_decl, initv, condv, incrv, declv;
24323 tree this_pre_body, cl;
24324 location_t loc_first;
24325 bool collapse_err = false;
24326 int i, collapse = 1, nbraces = 0;
24327 VEC(tree,gc) *for_block = make_tree_vector ();
24328
24329 for (cl = clauses; cl; cl = OMP_CLAUSE_CHAIN (cl))
24330 if (OMP_CLAUSE_CODE (cl) == OMP_CLAUSE_COLLAPSE)
24331 collapse = tree_low_cst (OMP_CLAUSE_COLLAPSE_EXPR (cl), 0);
24332
24333 gcc_assert (collapse >= 1);
24334
24335 declv = make_tree_vec (collapse);
24336 initv = make_tree_vec (collapse);
24337 condv = make_tree_vec (collapse);
24338 incrv = make_tree_vec (collapse);
24339
24340 loc_first = cp_lexer_peek_token (parser->lexer)->location;
24341
24342 for (i = 0; i < collapse; i++)
24343 {
24344 int bracecount = 0;
24345 bool add_private_clause = false;
24346 location_t loc;
24347
24348 if (!cp_lexer_next_token_is_keyword (parser->lexer, RID_FOR))
24349 {
24350 cp_parser_error (parser, "for statement expected");
24351 return NULL;
24352 }
24353 loc = cp_lexer_consume_token (parser->lexer)->location;
24354
24355 if (!cp_parser_require (parser, CPP_OPEN_PAREN, RT_OPEN_PAREN))
24356 return NULL;
24357
24358 init = decl = real_decl = NULL;
24359 this_pre_body = push_stmt_list ();
24360 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
24361 {
24362 /* See 2.5.1 (in OpenMP 3.0, similar wording is in 2.5 standard too):
24363
24364 init-expr:
24365 var = lb
24366 integer-type var = lb
24367 random-access-iterator-type var = lb
24368 pointer-type var = lb
24369 */
24370 cp_decl_specifier_seq type_specifiers;
24371
24372 /* First, try to parse as an initialized declaration. See
24373 cp_parser_condition, from whence the bulk of this is copied. */
24374
24375 cp_parser_parse_tentatively (parser);
24376 cp_parser_type_specifier_seq (parser, /*is_declaration=*/true,
24377 /*is_trailing_return=*/false,
24378 &type_specifiers);
24379 if (cp_parser_parse_definitely (parser))
24380 {
24381 /* If parsing a type specifier seq succeeded, then this
24382 MUST be a initialized declaration. */
24383 tree asm_specification, attributes;
24384 cp_declarator *declarator;
24385
24386 declarator = cp_parser_declarator (parser,
24387 CP_PARSER_DECLARATOR_NAMED,
24388 /*ctor_dtor_or_conv_p=*/NULL,
24389 /*parenthesized_p=*/NULL,
24390 /*member_p=*/false);
24391 attributes = cp_parser_attributes_opt (parser);
24392 asm_specification = cp_parser_asm_specification_opt (parser);
24393
24394 if (declarator == cp_error_declarator)
24395 cp_parser_skip_to_end_of_statement (parser);
24396
24397 else
24398 {
24399 tree pushed_scope, auto_node;
24400
24401 decl = start_decl (declarator, &type_specifiers,
24402 SD_INITIALIZED, attributes,
24403 /*prefix_attributes=*/NULL_TREE,
24404 &pushed_scope);
24405
24406 auto_node = type_uses_auto (TREE_TYPE (decl));
24407 if (cp_lexer_next_token_is_not (parser->lexer, CPP_EQ))
24408 {
24409 if (cp_lexer_next_token_is (parser->lexer,
24410 CPP_OPEN_PAREN))
24411 error ("parenthesized initialization is not allowed in "
24412 "OpenMP %<for%> loop");
24413 else
24414 /* Trigger an error. */
24415 cp_parser_require (parser, CPP_EQ, RT_EQ);
24416
24417 init = error_mark_node;
24418 cp_parser_skip_to_end_of_statement (parser);
24419 }
24420 else if (CLASS_TYPE_P (TREE_TYPE (decl))
24421 || type_dependent_expression_p (decl)
24422 || auto_node)
24423 {
24424 bool is_direct_init, is_non_constant_init;
24425
24426 init = cp_parser_initializer (parser,
24427 &is_direct_init,
24428 &is_non_constant_init);
24429
24430 if (auto_node && describable_type (init))
24431 {
24432 TREE_TYPE (decl)
24433 = do_auto_deduction (TREE_TYPE (decl), init,
24434 auto_node);
24435
24436 if (!CLASS_TYPE_P (TREE_TYPE (decl))
24437 && !type_dependent_expression_p (decl))
24438 goto non_class;
24439 }
24440
24441 cp_finish_decl (decl, init, !is_non_constant_init,
24442 asm_specification,
24443 LOOKUP_ONLYCONVERTING);
24444 if (CLASS_TYPE_P (TREE_TYPE (decl)))
24445 {
24446 VEC_safe_push (tree, gc, for_block, this_pre_body);
24447 init = NULL_TREE;
24448 }
24449 else
24450 init = pop_stmt_list (this_pre_body);
24451 this_pre_body = NULL_TREE;
24452 }
24453 else
24454 {
24455 /* Consume '='. */
24456 cp_lexer_consume_token (parser->lexer);
24457 init = cp_parser_assignment_expression (parser, false, NULL);
24458
24459 non_class:
24460 if (TREE_CODE (TREE_TYPE (decl)) == REFERENCE_TYPE)
24461 init = error_mark_node;
24462 else
24463 cp_finish_decl (decl, NULL_TREE,
24464 /*init_const_expr_p=*/false,
24465 asm_specification,
24466 LOOKUP_ONLYCONVERTING);
24467 }
24468
24469 if (pushed_scope)
24470 pop_scope (pushed_scope);
24471 }
24472 }
24473 else
24474 {
24475 cp_id_kind idk;
24476 /* If parsing a type specifier sequence failed, then
24477 this MUST be a simple expression. */
24478 cp_parser_parse_tentatively (parser);
24479 decl = cp_parser_primary_expression (parser, false, false,
24480 false, &idk);
24481 if (!cp_parser_error_occurred (parser)
24482 && decl
24483 && DECL_P (decl)
24484 && CLASS_TYPE_P (TREE_TYPE (decl)))
24485 {
24486 tree rhs;
24487
24488 cp_parser_parse_definitely (parser);
24489 cp_parser_require (parser, CPP_EQ, RT_EQ);
24490 rhs = cp_parser_assignment_expression (parser, false, NULL);
24491 finish_expr_stmt (build_x_modify_expr (decl, NOP_EXPR,
24492 rhs,
24493 tf_warning_or_error));
24494 add_private_clause = true;
24495 }
24496 else
24497 {
24498 decl = NULL;
24499 cp_parser_abort_tentative_parse (parser);
24500 init = cp_parser_expression (parser, false, NULL);
24501 if (init)
24502 {
24503 if (TREE_CODE (init) == MODIFY_EXPR
24504 || TREE_CODE (init) == MODOP_EXPR)
24505 real_decl = TREE_OPERAND (init, 0);
24506 }
24507 }
24508 }
24509 }
24510 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
24511 if (this_pre_body)
24512 {
24513 this_pre_body = pop_stmt_list (this_pre_body);
24514 if (pre_body)
24515 {
24516 tree t = pre_body;
24517 pre_body = push_stmt_list ();
24518 add_stmt (t);
24519 add_stmt (this_pre_body);
24520 pre_body = pop_stmt_list (pre_body);
24521 }
24522 else
24523 pre_body = this_pre_body;
24524 }
24525
24526 if (decl)
24527 real_decl = decl;
24528 if (par_clauses != NULL && real_decl != NULL_TREE)
24529 {
24530 tree *c;
24531 for (c = par_clauses; *c ; )
24532 if (OMP_CLAUSE_CODE (*c) == OMP_CLAUSE_FIRSTPRIVATE
24533 && OMP_CLAUSE_DECL (*c) == real_decl)
24534 {
24535 error_at (loc, "iteration variable %qD"
24536 " should not be firstprivate", real_decl);
24537 *c = OMP_CLAUSE_CHAIN (*c);
24538 }
24539 else if (OMP_CLAUSE_CODE (*c) == OMP_CLAUSE_LASTPRIVATE
24540 && OMP_CLAUSE_DECL (*c) == real_decl)
24541 {
24542 /* Add lastprivate (decl) clause to OMP_FOR_CLAUSES,
24543 change it to shared (decl) in OMP_PARALLEL_CLAUSES. */
24544 tree l = build_omp_clause (loc, OMP_CLAUSE_LASTPRIVATE);
24545 OMP_CLAUSE_DECL (l) = real_decl;
24546 OMP_CLAUSE_CHAIN (l) = clauses;
24547 CP_OMP_CLAUSE_INFO (l) = CP_OMP_CLAUSE_INFO (*c);
24548 clauses = l;
24549 OMP_CLAUSE_SET_CODE (*c, OMP_CLAUSE_SHARED);
24550 CP_OMP_CLAUSE_INFO (*c) = NULL;
24551 add_private_clause = false;
24552 }
24553 else
24554 {
24555 if (OMP_CLAUSE_CODE (*c) == OMP_CLAUSE_PRIVATE
24556 && OMP_CLAUSE_DECL (*c) == real_decl)
24557 add_private_clause = false;
24558 c = &OMP_CLAUSE_CHAIN (*c);
24559 }
24560 }
24561
24562 if (add_private_clause)
24563 {
24564 tree c;
24565 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
24566 {
24567 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_PRIVATE
24568 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE)
24569 && OMP_CLAUSE_DECL (c) == decl)
24570 break;
24571 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
24572 && OMP_CLAUSE_DECL (c) == decl)
24573 error_at (loc, "iteration variable %qD "
24574 "should not be firstprivate",
24575 decl);
24576 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
24577 && OMP_CLAUSE_DECL (c) == decl)
24578 error_at (loc, "iteration variable %qD should not be reduction",
24579 decl);
24580 }
24581 if (c == NULL)
24582 {
24583 c = build_omp_clause (loc, OMP_CLAUSE_PRIVATE);
24584 OMP_CLAUSE_DECL (c) = decl;
24585 c = finish_omp_clauses (c);
24586 if (c)
24587 {
24588 OMP_CLAUSE_CHAIN (c) = clauses;
24589 clauses = c;
24590 }
24591 }
24592 }
24593
24594 cond = NULL;
24595 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
24596 cond = cp_parser_omp_for_cond (parser, decl);
24597 cp_parser_require (parser, CPP_SEMICOLON, RT_SEMICOLON);
24598
24599 incr = NULL;
24600 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN))
24601 {
24602 /* If decl is an iterator, preserve the operator on decl
24603 until finish_omp_for. */
24604 if (decl
24605 && (type_dependent_expression_p (decl)
24606 || CLASS_TYPE_P (TREE_TYPE (decl))))
24607 incr = cp_parser_omp_for_incr (parser, decl);
24608 else
24609 incr = cp_parser_expression (parser, false, NULL);
24610 }
24611
24612 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, RT_CLOSE_PAREN))
24613 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
24614 /*or_comma=*/false,
24615 /*consume_paren=*/true);
24616
24617 TREE_VEC_ELT (declv, i) = decl;
24618 TREE_VEC_ELT (initv, i) = init;
24619 TREE_VEC_ELT (condv, i) = cond;
24620 TREE_VEC_ELT (incrv, i) = incr;
24621
24622 if (i == collapse - 1)
24623 break;
24624
24625 /* FIXME: OpenMP 3.0 draft isn't very clear on what exactly is allowed
24626 in between the collapsed for loops to be still considered perfectly
24627 nested. Hopefully the final version clarifies this.
24628 For now handle (multiple) {'s and empty statements. */
24629 cp_parser_parse_tentatively (parser);
24630 do
24631 {
24632 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_FOR))
24633 break;
24634 else if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
24635 {
24636 cp_lexer_consume_token (parser->lexer);
24637 bracecount++;
24638 }
24639 else if (bracecount
24640 && cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
24641 cp_lexer_consume_token (parser->lexer);
24642 else
24643 {
24644 loc = cp_lexer_peek_token (parser->lexer)->location;
24645 error_at (loc, "not enough collapsed for loops");
24646 collapse_err = true;
24647 cp_parser_abort_tentative_parse (parser);
24648 declv = NULL_TREE;
24649 break;
24650 }
24651 }
24652 while (1);
24653
24654 if (declv)
24655 {
24656 cp_parser_parse_definitely (parser);
24657 nbraces += bracecount;
24658 }
24659 }
24660
24661 /* Note that we saved the original contents of this flag when we entered
24662 the structured block, and so we don't need to re-save it here. */
24663 parser->in_statement = IN_OMP_FOR;
24664
24665 /* Note that the grammar doesn't call for a structured block here,
24666 though the loop as a whole is a structured block. */
24667 body = push_stmt_list ();
24668 cp_parser_statement (parser, NULL_TREE, false, NULL);
24669 body = pop_stmt_list (body);
24670
24671 if (declv == NULL_TREE)
24672 ret = NULL_TREE;
24673 else
24674 ret = finish_omp_for (loc_first, declv, initv, condv, incrv, body,
24675 pre_body, clauses);
24676
24677 while (nbraces)
24678 {
24679 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
24680 {
24681 cp_lexer_consume_token (parser->lexer);
24682 nbraces--;
24683 }
24684 else if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
24685 cp_lexer_consume_token (parser->lexer);
24686 else
24687 {
24688 if (!collapse_err)
24689 {
24690 error_at (cp_lexer_peek_token (parser->lexer)->location,
24691 "collapsed loops not perfectly nested");
24692 }
24693 collapse_err = true;
24694 cp_parser_statement_seq_opt (parser, NULL);
24695 if (cp_lexer_next_token_is (parser->lexer, CPP_EOF))
24696 break;
24697 }
24698 }
24699
24700 while (!VEC_empty (tree, for_block))
24701 add_stmt (pop_stmt_list (VEC_pop (tree, for_block)));
24702 release_tree_vector (for_block);
24703
24704 return ret;
24705 }
24706
24707 /* OpenMP 2.5:
24708 #pragma omp for for-clause[optseq] new-line
24709 for-loop */
24710
24711 #define OMP_FOR_CLAUSE_MASK \
24712 ( (1u << PRAGMA_OMP_CLAUSE_PRIVATE) \
24713 | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
24714 | (1u << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
24715 | (1u << PRAGMA_OMP_CLAUSE_REDUCTION) \
24716 | (1u << PRAGMA_OMP_CLAUSE_ORDERED) \
24717 | (1u << PRAGMA_OMP_CLAUSE_SCHEDULE) \
24718 | (1u << PRAGMA_OMP_CLAUSE_NOWAIT) \
24719 | (1u << PRAGMA_OMP_CLAUSE_COLLAPSE))
24720
24721 static tree
24722 cp_parser_omp_for (cp_parser *parser, cp_token *pragma_tok)
24723 {
24724 tree clauses, sb, ret;
24725 unsigned int save;
24726
24727 clauses = cp_parser_omp_all_clauses (parser, OMP_FOR_CLAUSE_MASK,
24728 "#pragma omp for", pragma_tok);
24729
24730 sb = begin_omp_structured_block ();
24731 save = cp_parser_begin_omp_structured_block (parser);
24732
24733 ret = cp_parser_omp_for_loop (parser, clauses, NULL);
24734
24735 cp_parser_end_omp_structured_block (parser, save);
24736 add_stmt (finish_omp_structured_block (sb));
24737
24738 return ret;
24739 }
24740
24741 /* OpenMP 2.5:
24742 # pragma omp master new-line
24743 structured-block */
24744
24745 static tree
24746 cp_parser_omp_master (cp_parser *parser, cp_token *pragma_tok)
24747 {
24748 cp_parser_require_pragma_eol (parser, pragma_tok);
24749 return c_finish_omp_master (input_location,
24750 cp_parser_omp_structured_block (parser));
24751 }
24752
24753 /* OpenMP 2.5:
24754 # pragma omp ordered new-line
24755 structured-block */
24756
24757 static tree
24758 cp_parser_omp_ordered (cp_parser *parser, cp_token *pragma_tok)
24759 {
24760 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
24761 cp_parser_require_pragma_eol (parser, pragma_tok);
24762 return c_finish_omp_ordered (loc, cp_parser_omp_structured_block (parser));
24763 }
24764
24765 /* OpenMP 2.5:
24766
24767 section-scope:
24768 { section-sequence }
24769
24770 section-sequence:
24771 section-directive[opt] structured-block
24772 section-sequence section-directive structured-block */
24773
24774 static tree
24775 cp_parser_omp_sections_scope (cp_parser *parser)
24776 {
24777 tree stmt, substmt;
24778 bool error_suppress = false;
24779 cp_token *tok;
24780
24781 if (!cp_parser_require (parser, CPP_OPEN_BRACE, RT_OPEN_BRACE))
24782 return NULL_TREE;
24783
24784 stmt = push_stmt_list ();
24785
24786 if (cp_lexer_peek_token (parser->lexer)->pragma_kind != PRAGMA_OMP_SECTION)
24787 {
24788 unsigned save;
24789
24790 substmt = begin_omp_structured_block ();
24791 save = cp_parser_begin_omp_structured_block (parser);
24792
24793 while (1)
24794 {
24795 cp_parser_statement (parser, NULL_TREE, false, NULL);
24796
24797 tok = cp_lexer_peek_token (parser->lexer);
24798 if (tok->pragma_kind == PRAGMA_OMP_SECTION)
24799 break;
24800 if (tok->type == CPP_CLOSE_BRACE)
24801 break;
24802 if (tok->type == CPP_EOF)
24803 break;
24804 }
24805
24806 cp_parser_end_omp_structured_block (parser, save);
24807 substmt = finish_omp_structured_block (substmt);
24808 substmt = build1 (OMP_SECTION, void_type_node, substmt);
24809 add_stmt (substmt);
24810 }
24811
24812 while (1)
24813 {
24814 tok = cp_lexer_peek_token (parser->lexer);
24815 if (tok->type == CPP_CLOSE_BRACE)
24816 break;
24817 if (tok->type == CPP_EOF)
24818 break;
24819
24820 if (tok->pragma_kind == PRAGMA_OMP_SECTION)
24821 {
24822 cp_lexer_consume_token (parser->lexer);
24823 cp_parser_require_pragma_eol (parser, tok);
24824 error_suppress = false;
24825 }
24826 else if (!error_suppress)
24827 {
24828 cp_parser_error (parser, "expected %<#pragma omp section%> or %<}%>");
24829 error_suppress = true;
24830 }
24831
24832 substmt = cp_parser_omp_structured_block (parser);
24833 substmt = build1 (OMP_SECTION, void_type_node, substmt);
24834 add_stmt (substmt);
24835 }
24836 cp_parser_require (parser, CPP_CLOSE_BRACE, RT_CLOSE_BRACE);
24837
24838 substmt = pop_stmt_list (stmt);
24839
24840 stmt = make_node (OMP_SECTIONS);
24841 TREE_TYPE (stmt) = void_type_node;
24842 OMP_SECTIONS_BODY (stmt) = substmt;
24843
24844 add_stmt (stmt);
24845 return stmt;
24846 }
24847
24848 /* OpenMP 2.5:
24849 # pragma omp sections sections-clause[optseq] newline
24850 sections-scope */
24851
24852 #define OMP_SECTIONS_CLAUSE_MASK \
24853 ( (1u << PRAGMA_OMP_CLAUSE_PRIVATE) \
24854 | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
24855 | (1u << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
24856 | (1u << PRAGMA_OMP_CLAUSE_REDUCTION) \
24857 | (1u << PRAGMA_OMP_CLAUSE_NOWAIT))
24858
24859 static tree
24860 cp_parser_omp_sections (cp_parser *parser, cp_token *pragma_tok)
24861 {
24862 tree clauses, ret;
24863
24864 clauses = cp_parser_omp_all_clauses (parser, OMP_SECTIONS_CLAUSE_MASK,
24865 "#pragma omp sections", pragma_tok);
24866
24867 ret = cp_parser_omp_sections_scope (parser);
24868 if (ret)
24869 OMP_SECTIONS_CLAUSES (ret) = clauses;
24870
24871 return ret;
24872 }
24873
24874 /* OpenMP 2.5:
24875 # pragma parallel parallel-clause new-line
24876 # pragma parallel for parallel-for-clause new-line
24877 # pragma parallel sections parallel-sections-clause new-line */
24878
24879 #define OMP_PARALLEL_CLAUSE_MASK \
24880 ( (1u << PRAGMA_OMP_CLAUSE_IF) \
24881 | (1u << PRAGMA_OMP_CLAUSE_PRIVATE) \
24882 | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
24883 | (1u << PRAGMA_OMP_CLAUSE_DEFAULT) \
24884 | (1u << PRAGMA_OMP_CLAUSE_SHARED) \
24885 | (1u << PRAGMA_OMP_CLAUSE_COPYIN) \
24886 | (1u << PRAGMA_OMP_CLAUSE_REDUCTION) \
24887 | (1u << PRAGMA_OMP_CLAUSE_NUM_THREADS))
24888
24889 static tree
24890 cp_parser_omp_parallel (cp_parser *parser, cp_token *pragma_tok)
24891 {
24892 enum pragma_kind p_kind = PRAGMA_OMP_PARALLEL;
24893 const char *p_name = "#pragma omp parallel";
24894 tree stmt, clauses, par_clause, ws_clause, block;
24895 unsigned int mask = OMP_PARALLEL_CLAUSE_MASK;
24896 unsigned int save;
24897 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
24898
24899 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_FOR))
24900 {
24901 cp_lexer_consume_token (parser->lexer);
24902 p_kind = PRAGMA_OMP_PARALLEL_FOR;
24903 p_name = "#pragma omp parallel for";
24904 mask |= OMP_FOR_CLAUSE_MASK;
24905 mask &= ~(1u << PRAGMA_OMP_CLAUSE_NOWAIT);
24906 }
24907 else if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
24908 {
24909 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
24910 const char *p = IDENTIFIER_POINTER (id);
24911 if (strcmp (p, "sections") == 0)
24912 {
24913 cp_lexer_consume_token (parser->lexer);
24914 p_kind = PRAGMA_OMP_PARALLEL_SECTIONS;
24915 p_name = "#pragma omp parallel sections";
24916 mask |= OMP_SECTIONS_CLAUSE_MASK;
24917 mask &= ~(1u << PRAGMA_OMP_CLAUSE_NOWAIT);
24918 }
24919 }
24920
24921 clauses = cp_parser_omp_all_clauses (parser, mask, p_name, pragma_tok);
24922 block = begin_omp_parallel ();
24923 save = cp_parser_begin_omp_structured_block (parser);
24924
24925 switch (p_kind)
24926 {
24927 case PRAGMA_OMP_PARALLEL:
24928 cp_parser_statement (parser, NULL_TREE, false, NULL);
24929 par_clause = clauses;
24930 break;
24931
24932 case PRAGMA_OMP_PARALLEL_FOR:
24933 c_split_parallel_clauses (loc, clauses, &par_clause, &ws_clause);
24934 cp_parser_omp_for_loop (parser, ws_clause, &par_clause);
24935 break;
24936
24937 case PRAGMA_OMP_PARALLEL_SECTIONS:
24938 c_split_parallel_clauses (loc, clauses, &par_clause, &ws_clause);
24939 stmt = cp_parser_omp_sections_scope (parser);
24940 if (stmt)
24941 OMP_SECTIONS_CLAUSES (stmt) = ws_clause;
24942 break;
24943
24944 default:
24945 gcc_unreachable ();
24946 }
24947
24948 cp_parser_end_omp_structured_block (parser, save);
24949 stmt = finish_omp_parallel (par_clause, block);
24950 if (p_kind != PRAGMA_OMP_PARALLEL)
24951 OMP_PARALLEL_COMBINED (stmt) = 1;
24952 return stmt;
24953 }
24954
24955 /* OpenMP 2.5:
24956 # pragma omp single single-clause[optseq] new-line
24957 structured-block */
24958
24959 #define OMP_SINGLE_CLAUSE_MASK \
24960 ( (1u << PRAGMA_OMP_CLAUSE_PRIVATE) \
24961 | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
24962 | (1u << PRAGMA_OMP_CLAUSE_COPYPRIVATE) \
24963 | (1u << PRAGMA_OMP_CLAUSE_NOWAIT))
24964
24965 static tree
24966 cp_parser_omp_single (cp_parser *parser, cp_token *pragma_tok)
24967 {
24968 tree stmt = make_node (OMP_SINGLE);
24969 TREE_TYPE (stmt) = void_type_node;
24970
24971 OMP_SINGLE_CLAUSES (stmt)
24972 = cp_parser_omp_all_clauses (parser, OMP_SINGLE_CLAUSE_MASK,
24973 "#pragma omp single", pragma_tok);
24974 OMP_SINGLE_BODY (stmt) = cp_parser_omp_structured_block (parser);
24975
24976 return add_stmt (stmt);
24977 }
24978
24979 /* OpenMP 3.0:
24980 # pragma omp task task-clause[optseq] new-line
24981 structured-block */
24982
24983 #define OMP_TASK_CLAUSE_MASK \
24984 ( (1u << PRAGMA_OMP_CLAUSE_IF) \
24985 | (1u << PRAGMA_OMP_CLAUSE_UNTIED) \
24986 | (1u << PRAGMA_OMP_CLAUSE_DEFAULT) \
24987 | (1u << PRAGMA_OMP_CLAUSE_PRIVATE) \
24988 | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
24989 | (1u << PRAGMA_OMP_CLAUSE_SHARED))
24990
24991 static tree
24992 cp_parser_omp_task (cp_parser *parser, cp_token *pragma_tok)
24993 {
24994 tree clauses, block;
24995 unsigned int save;
24996
24997 clauses = cp_parser_omp_all_clauses (parser, OMP_TASK_CLAUSE_MASK,
24998 "#pragma omp task", pragma_tok);
24999 block = begin_omp_task ();
25000 save = cp_parser_begin_omp_structured_block (parser);
25001 cp_parser_statement (parser, NULL_TREE, false, NULL);
25002 cp_parser_end_omp_structured_block (parser, save);
25003 return finish_omp_task (clauses, block);
25004 }
25005
25006 /* OpenMP 3.0:
25007 # pragma omp taskwait new-line */
25008
25009 static void
25010 cp_parser_omp_taskwait (cp_parser *parser, cp_token *pragma_tok)
25011 {
25012 cp_parser_require_pragma_eol (parser, pragma_tok);
25013 finish_omp_taskwait ();
25014 }
25015
25016 /* OpenMP 2.5:
25017 # pragma omp threadprivate (variable-list) */
25018
25019 static void
25020 cp_parser_omp_threadprivate (cp_parser *parser, cp_token *pragma_tok)
25021 {
25022 tree vars;
25023
25024 vars = cp_parser_omp_var_list (parser, OMP_CLAUSE_ERROR, NULL);
25025 cp_parser_require_pragma_eol (parser, pragma_tok);
25026
25027 finish_omp_threadprivate (vars);
25028 }
25029
25030 /* Main entry point to OpenMP statement pragmas. */
25031
25032 static void
25033 cp_parser_omp_construct (cp_parser *parser, cp_token *pragma_tok)
25034 {
25035 tree stmt;
25036
25037 switch (pragma_tok->pragma_kind)
25038 {
25039 case PRAGMA_OMP_ATOMIC:
25040 cp_parser_omp_atomic (parser, pragma_tok);
25041 return;
25042 case PRAGMA_OMP_CRITICAL:
25043 stmt = cp_parser_omp_critical (parser, pragma_tok);
25044 break;
25045 case PRAGMA_OMP_FOR:
25046 stmt = cp_parser_omp_for (parser, pragma_tok);
25047 break;
25048 case PRAGMA_OMP_MASTER:
25049 stmt = cp_parser_omp_master (parser, pragma_tok);
25050 break;
25051 case PRAGMA_OMP_ORDERED:
25052 stmt = cp_parser_omp_ordered (parser, pragma_tok);
25053 break;
25054 case PRAGMA_OMP_PARALLEL:
25055 stmt = cp_parser_omp_parallel (parser, pragma_tok);
25056 break;
25057 case PRAGMA_OMP_SECTIONS:
25058 stmt = cp_parser_omp_sections (parser, pragma_tok);
25059 break;
25060 case PRAGMA_OMP_SINGLE:
25061 stmt = cp_parser_omp_single (parser, pragma_tok);
25062 break;
25063 case PRAGMA_OMP_TASK:
25064 stmt = cp_parser_omp_task (parser, pragma_tok);
25065 break;
25066 default:
25067 gcc_unreachable ();
25068 }
25069
25070 if (stmt)
25071 SET_EXPR_LOCATION (stmt, pragma_tok->location);
25072 }
25073 \f
25074 /* The parser. */
25075
25076 static GTY (()) cp_parser *the_parser;
25077
25078 \f
25079 /* Special handling for the first token or line in the file. The first
25080 thing in the file might be #pragma GCC pch_preprocess, which loads a
25081 PCH file, which is a GC collection point. So we need to handle this
25082 first pragma without benefit of an existing lexer structure.
25083
25084 Always returns one token to the caller in *FIRST_TOKEN. This is
25085 either the true first token of the file, or the first token after
25086 the initial pragma. */
25087
25088 static void
25089 cp_parser_initial_pragma (cp_token *first_token)
25090 {
25091 tree name = NULL;
25092
25093 cp_lexer_get_preprocessor_token (NULL, first_token);
25094 if (first_token->pragma_kind != PRAGMA_GCC_PCH_PREPROCESS)
25095 return;
25096
25097 cp_lexer_get_preprocessor_token (NULL, first_token);
25098 if (first_token->type == CPP_STRING)
25099 {
25100 name = first_token->u.value;
25101
25102 cp_lexer_get_preprocessor_token (NULL, first_token);
25103 if (first_token->type != CPP_PRAGMA_EOL)
25104 error_at (first_token->location,
25105 "junk at end of %<#pragma GCC pch_preprocess%>");
25106 }
25107 else
25108 error_at (first_token->location, "expected string literal");
25109
25110 /* Skip to the end of the pragma. */
25111 while (first_token->type != CPP_PRAGMA_EOL && first_token->type != CPP_EOF)
25112 cp_lexer_get_preprocessor_token (NULL, first_token);
25113
25114 /* Now actually load the PCH file. */
25115 if (name)
25116 c_common_pch_pragma (parse_in, TREE_STRING_POINTER (name));
25117
25118 /* Read one more token to return to our caller. We have to do this
25119 after reading the PCH file in, since its pointers have to be
25120 live. */
25121 cp_lexer_get_preprocessor_token (NULL, first_token);
25122 }
25123
25124 /* Normal parsing of a pragma token. Here we can (and must) use the
25125 regular lexer. */
25126
25127 static bool
25128 cp_parser_pragma (cp_parser *parser, enum pragma_context context)
25129 {
25130 cp_token *pragma_tok;
25131 unsigned int id;
25132
25133 pragma_tok = cp_lexer_consume_token (parser->lexer);
25134 gcc_assert (pragma_tok->type == CPP_PRAGMA);
25135 parser->lexer->in_pragma = true;
25136
25137 id = pragma_tok->pragma_kind;
25138 switch (id)
25139 {
25140 case PRAGMA_GCC_PCH_PREPROCESS:
25141 error_at (pragma_tok->location,
25142 "%<#pragma GCC pch_preprocess%> must be first");
25143 break;
25144
25145 case PRAGMA_OMP_BARRIER:
25146 switch (context)
25147 {
25148 case pragma_compound:
25149 cp_parser_omp_barrier (parser, pragma_tok);
25150 return false;
25151 case pragma_stmt:
25152 error_at (pragma_tok->location, "%<#pragma omp barrier%> may only be "
25153 "used in compound statements");
25154 break;
25155 default:
25156 goto bad_stmt;
25157 }
25158 break;
25159
25160 case PRAGMA_OMP_FLUSH:
25161 switch (context)
25162 {
25163 case pragma_compound:
25164 cp_parser_omp_flush (parser, pragma_tok);
25165 return false;
25166 case pragma_stmt:
25167 error_at (pragma_tok->location, "%<#pragma omp flush%> may only be "
25168 "used in compound statements");
25169 break;
25170 default:
25171 goto bad_stmt;
25172 }
25173 break;
25174
25175 case PRAGMA_OMP_TASKWAIT:
25176 switch (context)
25177 {
25178 case pragma_compound:
25179 cp_parser_omp_taskwait (parser, pragma_tok);
25180 return false;
25181 case pragma_stmt:
25182 error_at (pragma_tok->location,
25183 "%<#pragma omp taskwait%> may only be "
25184 "used in compound statements");
25185 break;
25186 default:
25187 goto bad_stmt;
25188 }
25189 break;
25190
25191 case PRAGMA_OMP_THREADPRIVATE:
25192 cp_parser_omp_threadprivate (parser, pragma_tok);
25193 return false;
25194
25195 case PRAGMA_OMP_ATOMIC:
25196 case PRAGMA_OMP_CRITICAL:
25197 case PRAGMA_OMP_FOR:
25198 case PRAGMA_OMP_MASTER:
25199 case PRAGMA_OMP_ORDERED:
25200 case PRAGMA_OMP_PARALLEL:
25201 case PRAGMA_OMP_SECTIONS:
25202 case PRAGMA_OMP_SINGLE:
25203 case PRAGMA_OMP_TASK:
25204 if (context == pragma_external)
25205 goto bad_stmt;
25206 cp_parser_omp_construct (parser, pragma_tok);
25207 return true;
25208
25209 case PRAGMA_OMP_SECTION:
25210 error_at (pragma_tok->location,
25211 "%<#pragma omp section%> may only be used in "
25212 "%<#pragma omp sections%> construct");
25213 break;
25214
25215 default:
25216 gcc_assert (id >= PRAGMA_FIRST_EXTERNAL);
25217 c_invoke_pragma_handler (id);
25218 break;
25219
25220 bad_stmt:
25221 cp_parser_error (parser, "expected declaration specifiers");
25222 break;
25223 }
25224
25225 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
25226 return false;
25227 }
25228
25229 /* The interface the pragma parsers have to the lexer. */
25230
25231 enum cpp_ttype
25232 pragma_lex (tree *value)
25233 {
25234 cp_token *tok;
25235 enum cpp_ttype ret;
25236
25237 tok = cp_lexer_peek_token (the_parser->lexer);
25238
25239 ret = tok->type;
25240 *value = tok->u.value;
25241
25242 if (ret == CPP_PRAGMA_EOL || ret == CPP_EOF)
25243 ret = CPP_EOF;
25244 else if (ret == CPP_STRING)
25245 *value = cp_parser_string_literal (the_parser, false, false);
25246 else
25247 {
25248 cp_lexer_consume_token (the_parser->lexer);
25249 if (ret == CPP_KEYWORD)
25250 ret = CPP_NAME;
25251 }
25252
25253 return ret;
25254 }
25255
25256 \f
25257 /* External interface. */
25258
25259 /* Parse one entire translation unit. */
25260
25261 void
25262 c_parse_file (void)
25263 {
25264 static bool already_called = false;
25265
25266 if (already_called)
25267 {
25268 sorry ("inter-module optimizations not implemented for C++");
25269 return;
25270 }
25271 already_called = true;
25272
25273 the_parser = cp_parser_new ();
25274 push_deferring_access_checks (flag_access_control
25275 ? dk_no_deferred : dk_no_check);
25276 cp_parser_translation_unit (the_parser);
25277 the_parser = NULL;
25278 }
25279
25280 #include "gt-cp-parser.h"