Merged with gcc-4_4-branch@151281.
[official-gcc.git] / gcc / cp / parser.c
blob3d578d410c5fe21ed2d7e91b24a84873a602f0ac
1 /* C++ Parser.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004,
3 2005, 2007, 2008, 2009 Free Software Foundation, Inc.
4 Written by Mark Mitchell <mark@codesourcery.com>.
6 This file is part of GCC.
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.
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.
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/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "dyn-string.h"
27 #include "varray.h"
28 #include "cpplib.h"
29 #include "tree.h"
30 #include "cp-tree.h"
31 #include "c-pragma.h"
32 #include "decl.h"
33 #include "flags.h"
34 #include "diagnostic.h"
35 #include "toplev.h"
36 #include "output.h"
37 #include "target.h"
38 #include "cgraph.h"
39 #include "c-common.h"
42 /* The lexer. */
44 /* The cp_lexer_* routines mediate between the lexer proper (in libcpp
45 and c-lex.c) and the C++ parser. */
47 /* A token's value and its associated deferred access checks and
48 qualifying scope. */
50 struct tree_check GTY(())
52 /* The value associated with the token. */
53 tree value;
54 /* The checks that have been associated with value. */
55 VEC (deferred_access_check, gc)* checks;
56 /* The token's qualifying scope (used when it is a
57 CPP_NESTED_NAME_SPECIFIER). */
58 tree qualifying_scope;
61 /* A C++ token. */
63 typedef struct cp_token GTY (())
65 /* The kind of token. */
66 ENUM_BITFIELD (cpp_ttype) type : 8;
67 /* If this token is a keyword, this value indicates which keyword.
68 Otherwise, this value is RID_MAX. */
69 ENUM_BITFIELD (rid) keyword : 8;
70 /* Token flags. */
71 unsigned char flags;
72 /* Identifier for the pragma. */
73 ENUM_BITFIELD (pragma_kind) pragma_kind : 6;
74 /* True if this token is from a context where it is implicitly extern "C" */
75 BOOL_BITFIELD implicit_extern_c : 1;
76 /* True for a CPP_NAME token that is not a keyword (i.e., for which
77 KEYWORD is RID_MAX) iff this name was looked up and found to be
78 ambiguous. An error has already been reported. */
79 BOOL_BITFIELD ambiguous_p : 1;
80 /* The location at which this token was found. */
81 location_t location;
82 /* The value associated with this token, if any. */
83 union cp_token_value {
84 /* Used for CPP_NESTED_NAME_SPECIFIER and CPP_TEMPLATE_ID. */
85 struct tree_check* GTY((tag ("1"))) tree_check_value;
86 /* Use for all other tokens. */
87 tree GTY((tag ("0"))) value;
88 } GTY((desc ("(%1.type == CPP_TEMPLATE_ID) || (%1.type == CPP_NESTED_NAME_SPECIFIER)"))) u;
89 } cp_token;
91 /* We use a stack of token pointer for saving token sets. */
92 typedef struct cp_token *cp_token_position;
93 DEF_VEC_P (cp_token_position);
94 DEF_VEC_ALLOC_P (cp_token_position,heap);
96 static cp_token eof_token =
98 CPP_EOF, RID_MAX, 0, PRAGMA_NONE, false, 0, 0, { NULL }
101 /* The cp_lexer structure represents the C++ lexer. It is responsible
102 for managing the token stream from the preprocessor and supplying
103 it to the parser. Tokens are never added to the cp_lexer after
104 it is created. */
106 typedef struct cp_lexer GTY (())
108 /* The memory allocated for the buffer. NULL if this lexer does not
109 own the token buffer. */
110 cp_token * GTY ((length ("%h.buffer_length"))) buffer;
111 /* If the lexer owns the buffer, this is the number of tokens in the
112 buffer. */
113 size_t buffer_length;
115 /* A pointer just past the last available token. The tokens
116 in this lexer are [buffer, last_token). */
117 cp_token_position GTY ((skip)) last_token;
119 /* The next available token. If NEXT_TOKEN is &eof_token, then there are
120 no more available tokens. */
121 cp_token_position GTY ((skip)) next_token;
123 /* A stack indicating positions at which cp_lexer_save_tokens was
124 called. The top entry is the most recent position at which we
125 began saving tokens. If the stack is non-empty, we are saving
126 tokens. */
127 VEC(cp_token_position,heap) *GTY ((skip)) saved_tokens;
129 /* The next lexer in a linked list of lexers. */
130 struct cp_lexer *next;
132 /* True if we should output debugging information. */
133 bool debugging_p;
135 /* True if we're in the context of parsing a pragma, and should not
136 increment past the end-of-line marker. */
137 bool in_pragma;
138 } cp_lexer;
140 /* cp_token_cache is a range of tokens. There is no need to represent
141 allocate heap memory for it, since tokens are never removed from the
142 lexer's array. There is also no need for the GC to walk through
143 a cp_token_cache, since everything in here is referenced through
144 a lexer. */
146 typedef struct cp_token_cache GTY(())
148 /* The beginning of the token range. */
149 cp_token * GTY((skip)) first;
151 /* Points immediately after the last token in the range. */
152 cp_token * GTY ((skip)) last;
153 } cp_token_cache;
155 /* Prototypes. */
157 static cp_lexer *cp_lexer_new_main
158 (void);
159 static cp_lexer *cp_lexer_new_from_tokens
160 (cp_token_cache *tokens);
161 static void cp_lexer_destroy
162 (cp_lexer *);
163 static int cp_lexer_saving_tokens
164 (const cp_lexer *);
165 static cp_token_position cp_lexer_token_position
166 (cp_lexer *, bool);
167 static cp_token *cp_lexer_token_at
168 (cp_lexer *, cp_token_position);
169 static void cp_lexer_get_preprocessor_token
170 (cp_lexer *, cp_token *);
171 static inline cp_token *cp_lexer_peek_token
172 (cp_lexer *);
173 static cp_token *cp_lexer_peek_nth_token
174 (cp_lexer *, size_t);
175 static inline bool cp_lexer_next_token_is
176 (cp_lexer *, enum cpp_ttype);
177 static bool cp_lexer_next_token_is_not
178 (cp_lexer *, enum cpp_ttype);
179 static bool cp_lexer_next_token_is_keyword
180 (cp_lexer *, enum rid);
181 static cp_token *cp_lexer_consume_token
182 (cp_lexer *);
183 static void cp_lexer_purge_token
184 (cp_lexer *);
185 static void cp_lexer_purge_tokens_after
186 (cp_lexer *, cp_token_position);
187 static void cp_lexer_save_tokens
188 (cp_lexer *);
189 static void cp_lexer_commit_tokens
190 (cp_lexer *);
191 static void cp_lexer_rollback_tokens
192 (cp_lexer *);
193 #ifdef ENABLE_CHECKING
194 static void cp_lexer_print_token
195 (FILE *, cp_token *);
196 static inline bool cp_lexer_debugging_p
197 (cp_lexer *);
198 static void cp_lexer_start_debugging
199 (cp_lexer *) ATTRIBUTE_UNUSED;
200 static void cp_lexer_stop_debugging
201 (cp_lexer *) ATTRIBUTE_UNUSED;
202 #else
203 /* If we define cp_lexer_debug_stream to NULL it will provoke warnings
204 about passing NULL to functions that require non-NULL arguments
205 (fputs, fprintf). It will never be used, so all we need is a value
206 of the right type that's guaranteed not to be NULL. */
207 #define cp_lexer_debug_stream stdout
208 #define cp_lexer_print_token(str, tok) (void) 0
209 #define cp_lexer_debugging_p(lexer) 0
210 #endif /* ENABLE_CHECKING */
212 static cp_token_cache *cp_token_cache_new
213 (cp_token *, cp_token *);
215 static void cp_parser_initial_pragma
216 (cp_token *);
218 /* Manifest constants. */
219 #define CP_LEXER_BUFFER_SIZE ((256 * 1024) / sizeof (cp_token))
220 #define CP_SAVED_TOKEN_STACK 5
222 /* A token type for keywords, as opposed to ordinary identifiers. */
223 #define CPP_KEYWORD ((enum cpp_ttype) (N_TTYPES + 1))
225 /* A token type for template-ids. If a template-id is processed while
226 parsing tentatively, it is replaced with a CPP_TEMPLATE_ID token;
227 the value of the CPP_TEMPLATE_ID is whatever was returned by
228 cp_parser_template_id. */
229 #define CPP_TEMPLATE_ID ((enum cpp_ttype) (CPP_KEYWORD + 1))
231 /* A token type for nested-name-specifiers. If a
232 nested-name-specifier is processed while parsing tentatively, it is
233 replaced with a CPP_NESTED_NAME_SPECIFIER token; the value of the
234 CPP_NESTED_NAME_SPECIFIER is whatever was returned by
235 cp_parser_nested_name_specifier_opt. */
236 #define CPP_NESTED_NAME_SPECIFIER ((enum cpp_ttype) (CPP_TEMPLATE_ID + 1))
238 /* A token type for tokens that are not tokens at all; these are used
239 to represent slots in the array where there used to be a token
240 that has now been deleted. */
241 #define CPP_PURGED ((enum cpp_ttype) (CPP_NESTED_NAME_SPECIFIER + 1))
243 /* The number of token types, including C++-specific ones. */
244 #define N_CP_TTYPES ((int) (CPP_PURGED + 1))
246 /* Variables. */
248 #ifdef ENABLE_CHECKING
249 /* The stream to which debugging output should be written. */
250 static FILE *cp_lexer_debug_stream;
251 #endif /* ENABLE_CHECKING */
253 /* Create a new main C++ lexer, the lexer that gets tokens from the
254 preprocessor. */
256 static cp_lexer *
257 cp_lexer_new_main (void)
259 cp_token first_token;
260 cp_lexer *lexer;
261 cp_token *pos;
262 size_t alloc;
263 size_t space;
264 cp_token *buffer;
266 /* It's possible that parsing the first pragma will load a PCH file,
267 which is a GC collection point. So we have to do that before
268 allocating any memory. */
269 cp_parser_initial_pragma (&first_token);
271 c_common_no_more_pch ();
273 /* Allocate the memory. */
274 lexer = GGC_CNEW (cp_lexer);
276 #ifdef ENABLE_CHECKING
277 /* Initially we are not debugging. */
278 lexer->debugging_p = false;
279 #endif /* ENABLE_CHECKING */
280 lexer->saved_tokens = VEC_alloc (cp_token_position, heap,
281 CP_SAVED_TOKEN_STACK);
283 /* Create the buffer. */
284 alloc = CP_LEXER_BUFFER_SIZE;
285 buffer = GGC_NEWVEC (cp_token, alloc);
287 /* Put the first token in the buffer. */
288 space = alloc;
289 pos = buffer;
290 *pos = first_token;
292 /* Get the remaining tokens from the preprocessor. */
293 while (pos->type != CPP_EOF)
295 pos++;
296 if (!--space)
298 space = alloc;
299 alloc *= 2;
300 buffer = GGC_RESIZEVEC (cp_token, buffer, alloc);
301 pos = buffer + space;
303 cp_lexer_get_preprocessor_token (lexer, pos);
305 lexer->buffer = buffer;
306 lexer->buffer_length = alloc - space;
307 lexer->last_token = pos;
308 lexer->next_token = lexer->buffer_length ? buffer : &eof_token;
310 /* Subsequent preprocessor diagnostics should use compiler
311 diagnostic functions to get the compiler source location. */
312 cpp_get_options (parse_in)->client_diagnostic = true;
313 cpp_get_callbacks (parse_in)->error = cp_cpp_error;
315 gcc_assert (lexer->next_token->type != CPP_PURGED);
316 return lexer;
319 /* Create a new lexer whose token stream is primed with the tokens in
320 CACHE. When these tokens are exhausted, no new tokens will be read. */
322 static cp_lexer *
323 cp_lexer_new_from_tokens (cp_token_cache *cache)
325 cp_token *first = cache->first;
326 cp_token *last = cache->last;
327 cp_lexer *lexer = GGC_CNEW (cp_lexer);
329 /* We do not own the buffer. */
330 lexer->buffer = NULL;
331 lexer->buffer_length = 0;
332 lexer->next_token = first == last ? &eof_token : first;
333 lexer->last_token = last;
335 lexer->saved_tokens = VEC_alloc (cp_token_position, heap,
336 CP_SAVED_TOKEN_STACK);
338 #ifdef ENABLE_CHECKING
339 /* Initially we are not debugging. */
340 lexer->debugging_p = false;
341 #endif
343 gcc_assert (lexer->next_token->type != CPP_PURGED);
344 return lexer;
347 /* Frees all resources associated with LEXER. */
349 static void
350 cp_lexer_destroy (cp_lexer *lexer)
352 if (lexer->buffer)
353 ggc_free (lexer->buffer);
354 VEC_free (cp_token_position, heap, lexer->saved_tokens);
355 ggc_free (lexer);
358 /* Returns nonzero if debugging information should be output. */
360 #ifdef ENABLE_CHECKING
362 static inline bool
363 cp_lexer_debugging_p (cp_lexer *lexer)
365 return lexer->debugging_p;
368 #endif /* ENABLE_CHECKING */
370 static inline cp_token_position
371 cp_lexer_token_position (cp_lexer *lexer, bool previous_p)
373 gcc_assert (!previous_p || lexer->next_token != &eof_token);
375 return lexer->next_token - previous_p;
378 static inline cp_token *
379 cp_lexer_token_at (cp_lexer *lexer ATTRIBUTE_UNUSED, cp_token_position pos)
381 return pos;
384 /* nonzero if we are presently saving tokens. */
386 static inline int
387 cp_lexer_saving_tokens (const cp_lexer* lexer)
389 return VEC_length (cp_token_position, lexer->saved_tokens) != 0;
392 /* Store the next token from the preprocessor in *TOKEN. Return true
393 if we reach EOF. If LEXER is NULL, assume we are handling an
394 initial #pragma pch_preprocess, and thus want the lexer to return
395 processed strings. */
397 static void
398 cp_lexer_get_preprocessor_token (cp_lexer *lexer, cp_token *token)
400 static int is_extern_c = 0;
402 /* Get a new token from the preprocessor. */
403 token->type
404 = c_lex_with_flags (&token->u.value, &token->location, &token->flags,
405 lexer == NULL ? 0 : C_LEX_RAW_STRINGS);
406 token->keyword = RID_MAX;
407 token->pragma_kind = PRAGMA_NONE;
409 /* On some systems, some header files are surrounded by an
410 implicit extern "C" block. Set a flag in the token if it
411 comes from such a header. */
412 is_extern_c += pending_lang_change;
413 pending_lang_change = 0;
414 token->implicit_extern_c = is_extern_c > 0;
416 /* Check to see if this token is a keyword. */
417 if (token->type == CPP_NAME)
419 if (C_IS_RESERVED_WORD (token->u.value))
421 /* Mark this token as a keyword. */
422 token->type = CPP_KEYWORD;
423 /* Record which keyword. */
424 token->keyword = C_RID_CODE (token->u.value);
425 /* Update the value. Some keywords are mapped to particular
426 entities, rather than simply having the value of the
427 corresponding IDENTIFIER_NODE. For example, `__const' is
428 mapped to `const'. */
429 token->u.value = ridpointers[token->keyword];
431 else
433 if (warn_cxx0x_compat
434 && C_RID_CODE (token->u.value) >= RID_FIRST_CXX0X
435 && C_RID_CODE (token->u.value) <= RID_LAST_CXX0X)
437 /* Warn about the C++0x keyword (but still treat it as
438 an identifier). */
439 warning (OPT_Wc__0x_compat,
440 "identifier %<%s%> will become a keyword in C++0x",
441 IDENTIFIER_POINTER (token->u.value));
443 /* Clear out the C_RID_CODE so we don't warn about this
444 particular identifier-turned-keyword again. */
445 C_SET_RID_CODE (token->u.value, RID_MAX);
448 token->ambiguous_p = false;
449 token->keyword = RID_MAX;
452 /* Handle Objective-C++ keywords. */
453 else if (token->type == CPP_AT_NAME)
455 token->type = CPP_KEYWORD;
456 switch (C_RID_CODE (token->u.value))
458 /* Map 'class' to '@class', 'private' to '@private', etc. */
459 case RID_CLASS: token->keyword = RID_AT_CLASS; break;
460 case RID_PRIVATE: token->keyword = RID_AT_PRIVATE; break;
461 case RID_PROTECTED: token->keyword = RID_AT_PROTECTED; break;
462 case RID_PUBLIC: token->keyword = RID_AT_PUBLIC; break;
463 case RID_THROW: token->keyword = RID_AT_THROW; break;
464 case RID_TRY: token->keyword = RID_AT_TRY; break;
465 case RID_CATCH: token->keyword = RID_AT_CATCH; break;
466 default: token->keyword = C_RID_CODE (token->u.value);
469 else if (token->type == CPP_PRAGMA)
471 /* We smuggled the cpp_token->u.pragma value in an INTEGER_CST. */
472 token->pragma_kind = TREE_INT_CST_LOW (token->u.value);
473 token->u.value = NULL_TREE;
477 /* Update the globals input_location and the input file stack from TOKEN. */
478 static inline void
479 cp_lexer_set_source_position_from_token (cp_token *token)
481 if (token->type != CPP_EOF)
483 input_location = token->location;
487 /* Return a pointer to the next token in the token stream, but do not
488 consume it. */
490 static inline cp_token *
491 cp_lexer_peek_token (cp_lexer *lexer)
493 if (cp_lexer_debugging_p (lexer))
495 fputs ("cp_lexer: peeking at token: ", cp_lexer_debug_stream);
496 cp_lexer_print_token (cp_lexer_debug_stream, lexer->next_token);
497 putc ('\n', cp_lexer_debug_stream);
499 return lexer->next_token;
502 /* Return true if the next token has the indicated TYPE. */
504 static inline bool
505 cp_lexer_next_token_is (cp_lexer* lexer, enum cpp_ttype type)
507 return cp_lexer_peek_token (lexer)->type == type;
510 /* Return true if the next token does not have the indicated TYPE. */
512 static inline bool
513 cp_lexer_next_token_is_not (cp_lexer* lexer, enum cpp_ttype type)
515 return !cp_lexer_next_token_is (lexer, type);
518 /* Return true if the next token is the indicated KEYWORD. */
520 static inline bool
521 cp_lexer_next_token_is_keyword (cp_lexer* lexer, enum rid keyword)
523 return cp_lexer_peek_token (lexer)->keyword == keyword;
526 /* Return true if the next token is not the indicated KEYWORD. */
528 static inline bool
529 cp_lexer_next_token_is_not_keyword (cp_lexer* lexer, enum rid keyword)
531 return cp_lexer_peek_token (lexer)->keyword != keyword;
534 /* Return true if the next token is a keyword for a decl-specifier. */
536 static bool
537 cp_lexer_next_token_is_decl_specifier_keyword (cp_lexer *lexer)
539 cp_token *token;
541 token = cp_lexer_peek_token (lexer);
542 switch (token->keyword)
544 /* auto specifier: storage-class-specifier in C++,
545 simple-type-specifier in C++0x. */
546 case RID_AUTO:
547 /* Storage classes. */
548 case RID_REGISTER:
549 case RID_STATIC:
550 case RID_EXTERN:
551 case RID_MUTABLE:
552 case RID_THREAD:
553 /* Elaborated type specifiers. */
554 case RID_ENUM:
555 case RID_CLASS:
556 case RID_STRUCT:
557 case RID_UNION:
558 case RID_TYPENAME:
559 /* Simple type specifiers. */
560 case RID_CHAR:
561 case RID_CHAR16:
562 case RID_CHAR32:
563 case RID_WCHAR:
564 case RID_BOOL:
565 case RID_SHORT:
566 case RID_INT:
567 case RID_LONG:
568 case RID_SIGNED:
569 case RID_UNSIGNED:
570 case RID_FLOAT:
571 case RID_DOUBLE:
572 case RID_VOID:
573 /* GNU extensions. */
574 case RID_ATTRIBUTE:
575 case RID_TYPEOF:
576 /* C++0x extensions. */
577 case RID_DECLTYPE:
578 return true;
580 default:
581 return false;
585 /* Return a pointer to the Nth token in the token stream. If N is 1,
586 then this is precisely equivalent to cp_lexer_peek_token (except
587 that it is not inline). One would like to disallow that case, but
588 there is one case (cp_parser_nth_token_starts_template_id) where
589 the caller passes a variable for N and it might be 1. */
591 static cp_token *
592 cp_lexer_peek_nth_token (cp_lexer* lexer, size_t n)
594 cp_token *token;
596 /* N is 1-based, not zero-based. */
597 gcc_assert (n > 0);
599 if (cp_lexer_debugging_p (lexer))
600 fprintf (cp_lexer_debug_stream,
601 "cp_lexer: peeking ahead %ld at token: ", (long)n);
603 --n;
604 token = lexer->next_token;
605 gcc_assert (!n || token != &eof_token);
606 while (n != 0)
608 ++token;
609 if (token == lexer->last_token)
611 token = &eof_token;
612 break;
615 if (token->type != CPP_PURGED)
616 --n;
619 if (cp_lexer_debugging_p (lexer))
621 cp_lexer_print_token (cp_lexer_debug_stream, token);
622 putc ('\n', cp_lexer_debug_stream);
625 return token;
628 /* Return the next token, and advance the lexer's next_token pointer
629 to point to the next non-purged token. */
631 static cp_token *
632 cp_lexer_consume_token (cp_lexer* lexer)
634 cp_token *token = lexer->next_token;
636 gcc_assert (token != &eof_token);
637 gcc_assert (!lexer->in_pragma || token->type != CPP_PRAGMA_EOL);
641 lexer->next_token++;
642 if (lexer->next_token == lexer->last_token)
644 lexer->next_token = &eof_token;
645 break;
649 while (lexer->next_token->type == CPP_PURGED);
651 cp_lexer_set_source_position_from_token (token);
653 /* Provide debugging output. */
654 if (cp_lexer_debugging_p (lexer))
656 fputs ("cp_lexer: consuming token: ", cp_lexer_debug_stream);
657 cp_lexer_print_token (cp_lexer_debug_stream, token);
658 putc ('\n', cp_lexer_debug_stream);
661 return token;
664 /* Permanently remove the next token from the token stream, and
665 advance the next_token pointer to refer to the next non-purged
666 token. */
668 static void
669 cp_lexer_purge_token (cp_lexer *lexer)
671 cp_token *tok = lexer->next_token;
673 gcc_assert (tok != &eof_token);
674 tok->type = CPP_PURGED;
675 tok->location = UNKNOWN_LOCATION;
676 tok->u.value = NULL_TREE;
677 tok->keyword = RID_MAX;
681 tok++;
682 if (tok == lexer->last_token)
684 tok = &eof_token;
685 break;
688 while (tok->type == CPP_PURGED);
689 lexer->next_token = tok;
692 /* Permanently remove all tokens after TOK, up to, but not
693 including, the token that will be returned next by
694 cp_lexer_peek_token. */
696 static void
697 cp_lexer_purge_tokens_after (cp_lexer *lexer, cp_token *tok)
699 cp_token *peek = lexer->next_token;
701 if (peek == &eof_token)
702 peek = lexer->last_token;
704 gcc_assert (tok < peek);
706 for ( tok += 1; tok != peek; tok += 1)
708 tok->type = CPP_PURGED;
709 tok->location = UNKNOWN_LOCATION;
710 tok->u.value = NULL_TREE;
711 tok->keyword = RID_MAX;
715 /* Begin saving tokens. All tokens consumed after this point will be
716 preserved. */
718 static void
719 cp_lexer_save_tokens (cp_lexer* lexer)
721 /* Provide debugging output. */
722 if (cp_lexer_debugging_p (lexer))
723 fprintf (cp_lexer_debug_stream, "cp_lexer: saving tokens\n");
725 VEC_safe_push (cp_token_position, heap,
726 lexer->saved_tokens, lexer->next_token);
729 /* Commit to the portion of the token stream most recently saved. */
731 static void
732 cp_lexer_commit_tokens (cp_lexer* lexer)
734 /* Provide debugging output. */
735 if (cp_lexer_debugging_p (lexer))
736 fprintf (cp_lexer_debug_stream, "cp_lexer: committing tokens\n");
738 VEC_pop (cp_token_position, lexer->saved_tokens);
741 /* Return all tokens saved since the last call to cp_lexer_save_tokens
742 to the token stream. Stop saving tokens. */
744 static void
745 cp_lexer_rollback_tokens (cp_lexer* lexer)
747 /* Provide debugging output. */
748 if (cp_lexer_debugging_p (lexer))
749 fprintf (cp_lexer_debug_stream, "cp_lexer: restoring tokens\n");
751 lexer->next_token = VEC_pop (cp_token_position, lexer->saved_tokens);
754 /* Print a representation of the TOKEN on the STREAM. */
756 #ifdef ENABLE_CHECKING
758 static void
759 cp_lexer_print_token (FILE * stream, cp_token *token)
761 /* We don't use cpp_type2name here because the parser defines
762 a few tokens of its own. */
763 static const char *const token_names[] = {
764 /* cpplib-defined token types */
765 #define OP(e, s) #e,
766 #define TK(e, s) #e,
767 TTYPE_TABLE
768 #undef OP
769 #undef TK
770 /* C++ parser token types - see "Manifest constants", above. */
771 "KEYWORD",
772 "TEMPLATE_ID",
773 "NESTED_NAME_SPECIFIER",
774 "PURGED"
777 /* If we have a name for the token, print it out. Otherwise, we
778 simply give the numeric code. */
779 gcc_assert (token->type < ARRAY_SIZE(token_names));
780 fputs (token_names[token->type], stream);
782 /* For some tokens, print the associated data. */
783 switch (token->type)
785 case CPP_KEYWORD:
786 /* Some keywords have a value that is not an IDENTIFIER_NODE.
787 For example, `struct' is mapped to an INTEGER_CST. */
788 if (TREE_CODE (token->u.value) != IDENTIFIER_NODE)
789 break;
790 /* else fall through */
791 case CPP_NAME:
792 fputs (IDENTIFIER_POINTER (token->u.value), stream);
793 break;
795 case CPP_STRING:
796 case CPP_STRING16:
797 case CPP_STRING32:
798 case CPP_WSTRING:
799 fprintf (stream, " \"%s\"", TREE_STRING_POINTER (token->u.value));
800 break;
802 default:
803 break;
807 /* Start emitting debugging information. */
809 static void
810 cp_lexer_start_debugging (cp_lexer* lexer)
812 lexer->debugging_p = true;
815 /* Stop emitting debugging information. */
817 static void
818 cp_lexer_stop_debugging (cp_lexer* lexer)
820 lexer->debugging_p = false;
823 #endif /* ENABLE_CHECKING */
825 /* Create a new cp_token_cache, representing a range of tokens. */
827 static cp_token_cache *
828 cp_token_cache_new (cp_token *first, cp_token *last)
830 cp_token_cache *cache = GGC_NEW (cp_token_cache);
831 cache->first = first;
832 cache->last = last;
833 return cache;
837 /* Decl-specifiers. */
839 /* Set *DECL_SPECS to represent an empty decl-specifier-seq. */
841 static void
842 clear_decl_specs (cp_decl_specifier_seq *decl_specs)
844 memset (decl_specs, 0, sizeof (cp_decl_specifier_seq));
847 /* Declarators. */
849 /* Nothing other than the parser should be creating declarators;
850 declarators are a semi-syntactic representation of C++ entities.
851 Other parts of the front end that need to create entities (like
852 VAR_DECLs or FUNCTION_DECLs) should do that directly. */
854 static cp_declarator *make_call_declarator
855 (cp_declarator *, tree, cp_cv_quals, tree, tree);
856 static cp_declarator *make_array_declarator
857 (cp_declarator *, tree);
858 static cp_declarator *make_pointer_declarator
859 (cp_cv_quals, cp_declarator *);
860 static cp_declarator *make_reference_declarator
861 (cp_cv_quals, cp_declarator *, bool);
862 static cp_parameter_declarator *make_parameter_declarator
863 (cp_decl_specifier_seq *, cp_declarator *, tree);
864 static cp_declarator *make_ptrmem_declarator
865 (cp_cv_quals, tree, cp_declarator *);
867 /* An erroneous declarator. */
868 static cp_declarator *cp_error_declarator;
870 /* The obstack on which declarators and related data structures are
871 allocated. */
872 static struct obstack declarator_obstack;
874 /* Alloc BYTES from the declarator memory pool. */
876 static inline void *
877 alloc_declarator (size_t bytes)
879 return obstack_alloc (&declarator_obstack, bytes);
882 /* Allocate a declarator of the indicated KIND. Clear fields that are
883 common to all declarators. */
885 static cp_declarator *
886 make_declarator (cp_declarator_kind kind)
888 cp_declarator *declarator;
890 declarator = (cp_declarator *) alloc_declarator (sizeof (cp_declarator));
891 declarator->kind = kind;
892 declarator->attributes = NULL_TREE;
893 declarator->declarator = NULL;
894 declarator->parameter_pack_p = false;
896 return declarator;
899 /* Make a declarator for a generalized identifier. If
900 QUALIFYING_SCOPE is non-NULL, the identifier is
901 QUALIFYING_SCOPE::UNQUALIFIED_NAME; otherwise, it is just
902 UNQUALIFIED_NAME. SFK indicates the kind of special function this
903 is, if any. */
905 static cp_declarator *
906 make_id_declarator (tree qualifying_scope, tree unqualified_name,
907 special_function_kind sfk)
909 cp_declarator *declarator;
911 /* It is valid to write:
913 class C { void f(); };
914 typedef C D;
915 void D::f();
917 The standard is not clear about whether `typedef const C D' is
918 legal; as of 2002-09-15 the committee is considering that
919 question. EDG 3.0 allows that syntax. Therefore, we do as
920 well. */
921 if (qualifying_scope && TYPE_P (qualifying_scope))
922 qualifying_scope = TYPE_MAIN_VARIANT (qualifying_scope);
924 gcc_assert (TREE_CODE (unqualified_name) == IDENTIFIER_NODE
925 || TREE_CODE (unqualified_name) == BIT_NOT_EXPR
926 || TREE_CODE (unqualified_name) == TEMPLATE_ID_EXPR);
928 declarator = make_declarator (cdk_id);
929 declarator->u.id.qualifying_scope = qualifying_scope;
930 declarator->u.id.unqualified_name = unqualified_name;
931 declarator->u.id.sfk = sfk;
933 return declarator;
936 /* Make a declarator for a pointer to TARGET. CV_QUALIFIERS is a list
937 of modifiers such as const or volatile to apply to the pointer
938 type, represented as identifiers. */
940 cp_declarator *
941 make_pointer_declarator (cp_cv_quals cv_qualifiers, cp_declarator *target)
943 cp_declarator *declarator;
945 declarator = make_declarator (cdk_pointer);
946 declarator->declarator = target;
947 declarator->u.pointer.qualifiers = cv_qualifiers;
948 declarator->u.pointer.class_type = NULL_TREE;
949 if (target)
951 declarator->parameter_pack_p = target->parameter_pack_p;
952 target->parameter_pack_p = false;
954 else
955 declarator->parameter_pack_p = false;
957 return declarator;
960 /* Like make_pointer_declarator -- but for references. */
962 cp_declarator *
963 make_reference_declarator (cp_cv_quals cv_qualifiers, cp_declarator *target,
964 bool rvalue_ref)
966 cp_declarator *declarator;
968 declarator = make_declarator (cdk_reference);
969 declarator->declarator = target;
970 declarator->u.reference.qualifiers = cv_qualifiers;
971 declarator->u.reference.rvalue_ref = rvalue_ref;
972 if (target)
974 declarator->parameter_pack_p = target->parameter_pack_p;
975 target->parameter_pack_p = false;
977 else
978 declarator->parameter_pack_p = false;
980 return declarator;
983 /* Like make_pointer_declarator -- but for a pointer to a non-static
984 member of CLASS_TYPE. */
986 cp_declarator *
987 make_ptrmem_declarator (cp_cv_quals cv_qualifiers, tree class_type,
988 cp_declarator *pointee)
990 cp_declarator *declarator;
992 declarator = make_declarator (cdk_ptrmem);
993 declarator->declarator = pointee;
994 declarator->u.pointer.qualifiers = cv_qualifiers;
995 declarator->u.pointer.class_type = class_type;
997 if (pointee)
999 declarator->parameter_pack_p = pointee->parameter_pack_p;
1000 pointee->parameter_pack_p = false;
1002 else
1003 declarator->parameter_pack_p = false;
1005 return declarator;
1008 /* Make a declarator for the function given by TARGET, with the
1009 indicated PARMS. The CV_QUALIFIERS aply to the function, as in
1010 "const"-qualified member function. The EXCEPTION_SPECIFICATION
1011 indicates what exceptions can be thrown. */
1013 cp_declarator *
1014 make_call_declarator (cp_declarator *target,
1015 tree parms,
1016 cp_cv_quals cv_qualifiers,
1017 tree exception_specification,
1018 tree late_return_type)
1020 cp_declarator *declarator;
1022 declarator = make_declarator (cdk_function);
1023 declarator->declarator = target;
1024 declarator->u.function.parameters = parms;
1025 declarator->u.function.qualifiers = cv_qualifiers;
1026 declarator->u.function.exception_specification = exception_specification;
1027 declarator->u.function.late_return_type = late_return_type;
1028 if (target)
1030 declarator->parameter_pack_p = target->parameter_pack_p;
1031 target->parameter_pack_p = false;
1033 else
1034 declarator->parameter_pack_p = false;
1036 return declarator;
1039 /* Make a declarator for an array of BOUNDS elements, each of which is
1040 defined by ELEMENT. */
1042 cp_declarator *
1043 make_array_declarator (cp_declarator *element, tree bounds)
1045 cp_declarator *declarator;
1047 declarator = make_declarator (cdk_array);
1048 declarator->declarator = element;
1049 declarator->u.array.bounds = bounds;
1050 if (element)
1052 declarator->parameter_pack_p = element->parameter_pack_p;
1053 element->parameter_pack_p = false;
1055 else
1056 declarator->parameter_pack_p = false;
1058 return declarator;
1061 /* Determine whether the declarator we've seen so far can be a
1062 parameter pack, when followed by an ellipsis. */
1063 static bool
1064 declarator_can_be_parameter_pack (cp_declarator *declarator)
1066 /* Search for a declarator name, or any other declarator that goes
1067 after the point where the ellipsis could appear in a parameter
1068 pack. If we find any of these, then this declarator can not be
1069 made into a parameter pack. */
1070 bool found = false;
1071 while (declarator && !found)
1073 switch ((int)declarator->kind)
1075 case cdk_id:
1076 case cdk_array:
1077 found = true;
1078 break;
1080 case cdk_error:
1081 return true;
1083 default:
1084 declarator = declarator->declarator;
1085 break;
1089 return !found;
1092 cp_parameter_declarator *no_parameters;
1094 /* Create a parameter declarator with the indicated DECL_SPECIFIERS,
1095 DECLARATOR and DEFAULT_ARGUMENT. */
1097 cp_parameter_declarator *
1098 make_parameter_declarator (cp_decl_specifier_seq *decl_specifiers,
1099 cp_declarator *declarator,
1100 tree default_argument)
1102 cp_parameter_declarator *parameter;
1104 parameter = ((cp_parameter_declarator *)
1105 alloc_declarator (sizeof (cp_parameter_declarator)));
1106 parameter->next = NULL;
1107 if (decl_specifiers)
1108 parameter->decl_specifiers = *decl_specifiers;
1109 else
1110 clear_decl_specs (&parameter->decl_specifiers);
1111 parameter->declarator = declarator;
1112 parameter->default_argument = default_argument;
1113 parameter->ellipsis_p = false;
1115 return parameter;
1118 /* Returns true iff DECLARATOR is a declaration for a function. */
1120 static bool
1121 function_declarator_p (const cp_declarator *declarator)
1123 while (declarator)
1125 if (declarator->kind == cdk_function
1126 && declarator->declarator->kind == cdk_id)
1127 return true;
1128 if (declarator->kind == cdk_id
1129 || declarator->kind == cdk_error)
1130 return false;
1131 declarator = declarator->declarator;
1133 return false;
1136 /* The parser. */
1138 /* Overview
1139 --------
1141 A cp_parser parses the token stream as specified by the C++
1142 grammar. Its job is purely parsing, not semantic analysis. For
1143 example, the parser breaks the token stream into declarators,
1144 expressions, statements, and other similar syntactic constructs.
1145 It does not check that the types of the expressions on either side
1146 of an assignment-statement are compatible, or that a function is
1147 not declared with a parameter of type `void'.
1149 The parser invokes routines elsewhere in the compiler to perform
1150 semantic analysis and to build up the abstract syntax tree for the
1151 code processed.
1153 The parser (and the template instantiation code, which is, in a
1154 way, a close relative of parsing) are the only parts of the
1155 compiler that should be calling push_scope and pop_scope, or
1156 related functions. The parser (and template instantiation code)
1157 keeps track of what scope is presently active; everything else
1158 should simply honor that. (The code that generates static
1159 initializers may also need to set the scope, in order to check
1160 access control correctly when emitting the initializers.)
1162 Methodology
1163 -----------
1165 The parser is of the standard recursive-descent variety. Upcoming
1166 tokens in the token stream are examined in order to determine which
1167 production to use when parsing a non-terminal. Some C++ constructs
1168 require arbitrary look ahead to disambiguate. For example, it is
1169 impossible, in the general case, to tell whether a statement is an
1170 expression or declaration without scanning the entire statement.
1171 Therefore, the parser is capable of "parsing tentatively." When the
1172 parser is not sure what construct comes next, it enters this mode.
1173 Then, while we attempt to parse the construct, the parser queues up
1174 error messages, rather than issuing them immediately, and saves the
1175 tokens it consumes. If the construct is parsed successfully, the
1176 parser "commits", i.e., it issues any queued error messages and
1177 the tokens that were being preserved are permanently discarded.
1178 If, however, the construct is not parsed successfully, the parser
1179 rolls back its state completely so that it can resume parsing using
1180 a different alternative.
1182 Future Improvements
1183 -------------------
1185 The performance of the parser could probably be improved substantially.
1186 We could often eliminate the need to parse tentatively by looking ahead
1187 a little bit. In some places, this approach might not entirely eliminate
1188 the need to parse tentatively, but it might still speed up the average
1189 case. */
1191 /* Flags that are passed to some parsing functions. These values can
1192 be bitwise-ored together. */
1194 typedef enum cp_parser_flags
1196 /* No flags. */
1197 CP_PARSER_FLAGS_NONE = 0x0,
1198 /* The construct is optional. If it is not present, then no error
1199 should be issued. */
1200 CP_PARSER_FLAGS_OPTIONAL = 0x1,
1201 /* When parsing a type-specifier, do not allow user-defined types. */
1202 CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES = 0x2
1203 } cp_parser_flags;
1205 /* The different kinds of declarators we want to parse. */
1207 typedef enum cp_parser_declarator_kind
1209 /* We want an abstract declarator. */
1210 CP_PARSER_DECLARATOR_ABSTRACT,
1211 /* We want a named declarator. */
1212 CP_PARSER_DECLARATOR_NAMED,
1213 /* We don't mind, but the name must be an unqualified-id. */
1214 CP_PARSER_DECLARATOR_EITHER
1215 } cp_parser_declarator_kind;
1217 /* The precedence values used to parse binary expressions. The minimum value
1218 of PREC must be 1, because zero is reserved to quickly discriminate
1219 binary operators from other tokens. */
1221 enum cp_parser_prec
1223 PREC_NOT_OPERATOR,
1224 PREC_LOGICAL_OR_EXPRESSION,
1225 PREC_LOGICAL_AND_EXPRESSION,
1226 PREC_INCLUSIVE_OR_EXPRESSION,
1227 PREC_EXCLUSIVE_OR_EXPRESSION,
1228 PREC_AND_EXPRESSION,
1229 PREC_EQUALITY_EXPRESSION,
1230 PREC_RELATIONAL_EXPRESSION,
1231 PREC_SHIFT_EXPRESSION,
1232 PREC_ADDITIVE_EXPRESSION,
1233 PREC_MULTIPLICATIVE_EXPRESSION,
1234 PREC_PM_EXPRESSION,
1235 NUM_PREC_VALUES = PREC_PM_EXPRESSION
1238 /* A mapping from a token type to a corresponding tree node type, with a
1239 precedence value. */
1241 typedef struct cp_parser_binary_operations_map_node
1243 /* The token type. */
1244 enum cpp_ttype token_type;
1245 /* The corresponding tree code. */
1246 enum tree_code tree_type;
1247 /* The precedence of this operator. */
1248 enum cp_parser_prec prec;
1249 } cp_parser_binary_operations_map_node;
1251 /* The status of a tentative parse. */
1253 typedef enum cp_parser_status_kind
1255 /* No errors have occurred. */
1256 CP_PARSER_STATUS_KIND_NO_ERROR,
1257 /* An error has occurred. */
1258 CP_PARSER_STATUS_KIND_ERROR,
1259 /* We are committed to this tentative parse, whether or not an error
1260 has occurred. */
1261 CP_PARSER_STATUS_KIND_COMMITTED
1262 } cp_parser_status_kind;
1264 typedef struct cp_parser_expression_stack_entry
1266 /* Left hand side of the binary operation we are currently
1267 parsing. */
1268 tree lhs;
1269 /* Original tree code for left hand side, if it was a binary
1270 expression itself (used for -Wparentheses). */
1271 enum tree_code lhs_type;
1272 /* Tree code for the binary operation we are parsing. */
1273 enum tree_code tree_type;
1274 /* Precedence of the binary operation we are parsing. */
1275 int prec;
1276 } cp_parser_expression_stack_entry;
1278 /* The stack for storing partial expressions. We only need NUM_PREC_VALUES
1279 entries because precedence levels on the stack are monotonically
1280 increasing. */
1281 typedef struct cp_parser_expression_stack_entry
1282 cp_parser_expression_stack[NUM_PREC_VALUES];
1284 /* Context that is saved and restored when parsing tentatively. */
1285 typedef struct cp_parser_context GTY (())
1287 /* If this is a tentative parsing context, the status of the
1288 tentative parse. */
1289 enum cp_parser_status_kind status;
1290 /* If non-NULL, we have just seen a `x->' or `x.' expression. Names
1291 that are looked up in this context must be looked up both in the
1292 scope given by OBJECT_TYPE (the type of `x' or `*x') and also in
1293 the context of the containing expression. */
1294 tree object_type;
1296 /* The next parsing context in the stack. */
1297 struct cp_parser_context *next;
1298 } cp_parser_context;
1300 /* Prototypes. */
1302 /* Constructors and destructors. */
1304 static cp_parser_context *cp_parser_context_new
1305 (cp_parser_context *);
1307 /* Class variables. */
1309 static GTY((deletable)) cp_parser_context* cp_parser_context_free_list;
1311 /* The operator-precedence table used by cp_parser_binary_expression.
1312 Transformed into an associative array (binops_by_token) by
1313 cp_parser_new. */
1315 static const cp_parser_binary_operations_map_node binops[] = {
1316 { CPP_DEREF_STAR, MEMBER_REF, PREC_PM_EXPRESSION },
1317 { CPP_DOT_STAR, DOTSTAR_EXPR, PREC_PM_EXPRESSION },
1319 { CPP_MULT, MULT_EXPR, PREC_MULTIPLICATIVE_EXPRESSION },
1320 { CPP_DIV, TRUNC_DIV_EXPR, PREC_MULTIPLICATIVE_EXPRESSION },
1321 { CPP_MOD, TRUNC_MOD_EXPR, PREC_MULTIPLICATIVE_EXPRESSION },
1323 { CPP_PLUS, PLUS_EXPR, PREC_ADDITIVE_EXPRESSION },
1324 { CPP_MINUS, MINUS_EXPR, PREC_ADDITIVE_EXPRESSION },
1326 { CPP_LSHIFT, LSHIFT_EXPR, PREC_SHIFT_EXPRESSION },
1327 { CPP_RSHIFT, RSHIFT_EXPR, PREC_SHIFT_EXPRESSION },
1329 { CPP_LESS, LT_EXPR, PREC_RELATIONAL_EXPRESSION },
1330 { CPP_GREATER, GT_EXPR, PREC_RELATIONAL_EXPRESSION },
1331 { CPP_LESS_EQ, LE_EXPR, PREC_RELATIONAL_EXPRESSION },
1332 { CPP_GREATER_EQ, GE_EXPR, PREC_RELATIONAL_EXPRESSION },
1334 { CPP_EQ_EQ, EQ_EXPR, PREC_EQUALITY_EXPRESSION },
1335 { CPP_NOT_EQ, NE_EXPR, PREC_EQUALITY_EXPRESSION },
1337 { CPP_AND, BIT_AND_EXPR, PREC_AND_EXPRESSION },
1339 { CPP_XOR, BIT_XOR_EXPR, PREC_EXCLUSIVE_OR_EXPRESSION },
1341 { CPP_OR, BIT_IOR_EXPR, PREC_INCLUSIVE_OR_EXPRESSION },
1343 { CPP_AND_AND, TRUTH_ANDIF_EXPR, PREC_LOGICAL_AND_EXPRESSION },
1345 { CPP_OR_OR, TRUTH_ORIF_EXPR, PREC_LOGICAL_OR_EXPRESSION }
1348 /* The same as binops, but initialized by cp_parser_new so that
1349 binops_by_token[N].token_type == N. Used in cp_parser_binary_expression
1350 for speed. */
1351 static cp_parser_binary_operations_map_node binops_by_token[N_CP_TTYPES];
1353 /* Constructors and destructors. */
1355 /* Construct a new context. The context below this one on the stack
1356 is given by NEXT. */
1358 static cp_parser_context *
1359 cp_parser_context_new (cp_parser_context* next)
1361 cp_parser_context *context;
1363 /* Allocate the storage. */
1364 if (cp_parser_context_free_list != NULL)
1366 /* Pull the first entry from the free list. */
1367 context = cp_parser_context_free_list;
1368 cp_parser_context_free_list = context->next;
1369 memset (context, 0, sizeof (*context));
1371 else
1372 context = GGC_CNEW (cp_parser_context);
1374 /* No errors have occurred yet in this context. */
1375 context->status = CP_PARSER_STATUS_KIND_NO_ERROR;
1376 /* If this is not the bottommost context, copy information that we
1377 need from the previous context. */
1378 if (next)
1380 /* If, in the NEXT context, we are parsing an `x->' or `x.'
1381 expression, then we are parsing one in this context, too. */
1382 context->object_type = next->object_type;
1383 /* Thread the stack. */
1384 context->next = next;
1387 return context;
1390 /* The cp_parser structure represents the C++ parser. */
1392 typedef struct cp_parser GTY(())
1394 /* The lexer from which we are obtaining tokens. */
1395 cp_lexer *lexer;
1397 /* The scope in which names should be looked up. If NULL_TREE, then
1398 we look up names in the scope that is currently open in the
1399 source program. If non-NULL, this is either a TYPE or
1400 NAMESPACE_DECL for the scope in which we should look. It can
1401 also be ERROR_MARK, when we've parsed a bogus scope.
1403 This value is not cleared automatically after a name is looked
1404 up, so we must be careful to clear it before starting a new look
1405 up sequence. (If it is not cleared, then `X::Y' followed by `Z'
1406 will look up `Z' in the scope of `X', rather than the current
1407 scope.) Unfortunately, it is difficult to tell when name lookup
1408 is complete, because we sometimes peek at a token, look it up,
1409 and then decide not to consume it. */
1410 tree scope;
1412 /* OBJECT_SCOPE and QUALIFYING_SCOPE give the scopes in which the
1413 last lookup took place. OBJECT_SCOPE is used if an expression
1414 like "x->y" or "x.y" was used; it gives the type of "*x" or "x",
1415 respectively. QUALIFYING_SCOPE is used for an expression of the
1416 form "X::Y"; it refers to X. */
1417 tree object_scope;
1418 tree qualifying_scope;
1420 /* A stack of parsing contexts. All but the bottom entry on the
1421 stack will be tentative contexts.
1423 We parse tentatively in order to determine which construct is in
1424 use in some situations. For example, in order to determine
1425 whether a statement is an expression-statement or a
1426 declaration-statement we parse it tentatively as a
1427 declaration-statement. If that fails, we then reparse the same
1428 token stream as an expression-statement. */
1429 cp_parser_context *context;
1431 /* True if we are parsing GNU C++. If this flag is not set, then
1432 GNU extensions are not recognized. */
1433 bool allow_gnu_extensions_p;
1435 /* TRUE if the `>' token should be interpreted as the greater-than
1436 operator. FALSE if it is the end of a template-id or
1437 template-parameter-list. In C++0x mode, this flag also applies to
1438 `>>' tokens, which are viewed as two consecutive `>' tokens when
1439 this flag is FALSE. */
1440 bool greater_than_is_operator_p;
1442 /* TRUE if default arguments are allowed within a parameter list
1443 that starts at this point. FALSE if only a gnu extension makes
1444 them permissible. */
1445 bool default_arg_ok_p;
1447 /* TRUE if we are parsing an integral constant-expression. See
1448 [expr.const] for a precise definition. */
1449 bool integral_constant_expression_p;
1451 /* TRUE if we are parsing an integral constant-expression -- but a
1452 non-constant expression should be permitted as well. This flag
1453 is used when parsing an array bound so that GNU variable-length
1454 arrays are tolerated. */
1455 bool allow_non_integral_constant_expression_p;
1457 /* TRUE if ALLOW_NON_CONSTANT_EXPRESSION_P is TRUE and something has
1458 been seen that makes the expression non-constant. */
1459 bool non_integral_constant_expression_p;
1461 /* TRUE if local variable names and `this' are forbidden in the
1462 current context. */
1463 bool local_variables_forbidden_p;
1465 /* TRUE if the declaration we are parsing is part of a
1466 linkage-specification of the form `extern string-literal
1467 declaration'. */
1468 bool in_unbraced_linkage_specification_p;
1470 /* TRUE if we are presently parsing a declarator, after the
1471 direct-declarator. */
1472 bool in_declarator_p;
1474 /* TRUE if we are presently parsing a template-argument-list. */
1475 bool in_template_argument_list_p;
1477 /* Set to IN_ITERATION_STMT if parsing an iteration-statement,
1478 to IN_OMP_BLOCK if parsing OpenMP structured block and
1479 IN_OMP_FOR if parsing OpenMP loop. If parsing a switch statement,
1480 this is bitwise ORed with IN_SWITCH_STMT, unless parsing an
1481 iteration-statement, OpenMP block or loop within that switch. */
1482 #define IN_SWITCH_STMT 1
1483 #define IN_ITERATION_STMT 2
1484 #define IN_OMP_BLOCK 4
1485 #define IN_OMP_FOR 8
1486 #define IN_IF_STMT 16
1487 unsigned char in_statement;
1489 /* TRUE if we are presently parsing the body of a switch statement.
1490 Note that this doesn't quite overlap with in_statement above.
1491 The difference relates to giving the right sets of error messages:
1492 "case not in switch" vs "break statement used with OpenMP...". */
1493 bool in_switch_statement_p;
1495 /* TRUE if we are parsing a type-id in an expression context. In
1496 such a situation, both "type (expr)" and "type (type)" are valid
1497 alternatives. */
1498 bool in_type_id_in_expr_p;
1500 /* TRUE if we are currently in a header file where declarations are
1501 implicitly extern "C". */
1502 bool implicit_extern_c;
1504 /* TRUE if strings in expressions should be translated to the execution
1505 character set. */
1506 bool translate_strings_p;
1508 /* TRUE if we are presently parsing the body of a function, but not
1509 a local class. */
1510 bool in_function_body;
1512 /* If non-NULL, then we are parsing a construct where new type
1513 definitions are not permitted. The string stored here will be
1514 issued as an error message if a type is defined. */
1515 const char *type_definition_forbidden_message;
1517 /* A list of lists. The outer list is a stack, used for member
1518 functions of local classes. At each level there are two sub-list,
1519 one on TREE_VALUE and one on TREE_PURPOSE. Each of those
1520 sub-lists has a FUNCTION_DECL or TEMPLATE_DECL on their
1521 TREE_VALUE's. The functions are chained in reverse declaration
1522 order.
1524 The TREE_PURPOSE sublist contains those functions with default
1525 arguments that need post processing, and the TREE_VALUE sublist
1526 contains those functions with definitions that need post
1527 processing.
1529 These lists can only be processed once the outermost class being
1530 defined is complete. */
1531 tree unparsed_functions_queues;
1533 /* The number of classes whose definitions are currently in
1534 progress. */
1535 unsigned num_classes_being_defined;
1537 /* The number of template parameter lists that apply directly to the
1538 current declaration. */
1539 unsigned num_template_parameter_lists;
1540 } cp_parser;
1542 /* Prototypes. */
1544 /* Constructors and destructors. */
1546 static cp_parser *cp_parser_new
1547 (void);
1549 /* Routines to parse various constructs.
1551 Those that return `tree' will return the error_mark_node (rather
1552 than NULL_TREE) if a parse error occurs, unless otherwise noted.
1553 Sometimes, they will return an ordinary node if error-recovery was
1554 attempted, even though a parse error occurred. So, to check
1555 whether or not a parse error occurred, you should always use
1556 cp_parser_error_occurred. If the construct is optional (indicated
1557 either by an `_opt' in the name of the function that does the
1558 parsing or via a FLAGS parameter), then NULL_TREE is returned if
1559 the construct is not present. */
1561 /* Lexical conventions [gram.lex] */
1563 static tree cp_parser_identifier
1564 (cp_parser *);
1565 static tree cp_parser_string_literal
1566 (cp_parser *, bool, bool);
1568 /* Basic concepts [gram.basic] */
1570 static bool cp_parser_translation_unit
1571 (cp_parser *);
1573 /* Expressions [gram.expr] */
1575 static tree cp_parser_primary_expression
1576 (cp_parser *, bool, bool, bool, cp_id_kind *);
1577 static tree cp_parser_id_expression
1578 (cp_parser *, bool, bool, bool *, bool, bool);
1579 static tree cp_parser_unqualified_id
1580 (cp_parser *, bool, bool, bool, bool);
1581 static tree cp_parser_nested_name_specifier_opt
1582 (cp_parser *, bool, bool, bool, bool);
1583 static tree cp_parser_nested_name_specifier
1584 (cp_parser *, bool, bool, bool, bool);
1585 static tree cp_parser_qualifying_entity
1586 (cp_parser *, bool, bool, bool, bool, bool);
1587 static tree cp_parser_postfix_expression
1588 (cp_parser *, bool, bool, bool, cp_id_kind *);
1589 static tree cp_parser_postfix_open_square_expression
1590 (cp_parser *, tree, bool);
1591 static tree cp_parser_postfix_dot_deref_expression
1592 (cp_parser *, enum cpp_ttype, tree, bool, cp_id_kind *, location_t);
1593 static tree cp_parser_parenthesized_expression_list
1594 (cp_parser *, bool, bool, bool, bool *);
1595 static void cp_parser_pseudo_destructor_name
1596 (cp_parser *, tree *, tree *);
1597 static tree cp_parser_unary_expression
1598 (cp_parser *, bool, bool, cp_id_kind *);
1599 static enum tree_code cp_parser_unary_operator
1600 (cp_token *);
1601 static tree cp_parser_new_expression
1602 (cp_parser *);
1603 static tree cp_parser_new_placement
1604 (cp_parser *);
1605 static tree cp_parser_new_type_id
1606 (cp_parser *, tree *);
1607 static cp_declarator *cp_parser_new_declarator_opt
1608 (cp_parser *);
1609 static cp_declarator *cp_parser_direct_new_declarator
1610 (cp_parser *);
1611 static tree cp_parser_new_initializer
1612 (cp_parser *);
1613 static tree cp_parser_delete_expression
1614 (cp_parser *);
1615 static tree cp_parser_cast_expression
1616 (cp_parser *, bool, bool, cp_id_kind *);
1617 static tree cp_parser_binary_expression
1618 (cp_parser *, bool, bool, enum cp_parser_prec, cp_id_kind *);
1619 static tree cp_parser_question_colon_clause
1620 (cp_parser *, tree);
1621 static tree cp_parser_assignment_expression
1622 (cp_parser *, bool, cp_id_kind *);
1623 static enum tree_code cp_parser_assignment_operator_opt
1624 (cp_parser *);
1625 static tree cp_parser_expression
1626 (cp_parser *, bool, cp_id_kind *);
1627 static tree cp_parser_constant_expression
1628 (cp_parser *, bool, bool *);
1629 static tree cp_parser_builtin_offsetof
1630 (cp_parser *);
1632 /* Statements [gram.stmt.stmt] */
1634 static void cp_parser_statement
1635 (cp_parser *, tree, bool, bool *);
1636 static void cp_parser_label_for_labeled_statement
1637 (cp_parser *);
1638 static tree cp_parser_expression_statement
1639 (cp_parser *, tree);
1640 static tree cp_parser_compound_statement
1641 (cp_parser *, tree, bool);
1642 static void cp_parser_statement_seq_opt
1643 (cp_parser *, tree);
1644 static tree cp_parser_selection_statement
1645 (cp_parser *, bool *);
1646 static tree cp_parser_condition
1647 (cp_parser *);
1648 static tree cp_parser_iteration_statement
1649 (cp_parser *);
1650 static void cp_parser_for_init_statement
1651 (cp_parser *);
1652 static tree cp_parser_jump_statement
1653 (cp_parser *);
1654 static void cp_parser_declaration_statement
1655 (cp_parser *);
1657 static tree cp_parser_implicitly_scoped_statement
1658 (cp_parser *, bool *);
1659 static void cp_parser_already_scoped_statement
1660 (cp_parser *);
1662 /* Declarations [gram.dcl.dcl] */
1664 static void cp_parser_declaration_seq_opt
1665 (cp_parser *);
1666 static void cp_parser_declaration
1667 (cp_parser *);
1668 static void cp_parser_block_declaration
1669 (cp_parser *, bool);
1670 static void cp_parser_simple_declaration
1671 (cp_parser *, bool);
1672 static void cp_parser_decl_specifier_seq
1673 (cp_parser *, cp_parser_flags, cp_decl_specifier_seq *, int *);
1674 static tree cp_parser_storage_class_specifier_opt
1675 (cp_parser *);
1676 static tree cp_parser_function_specifier_opt
1677 (cp_parser *, cp_decl_specifier_seq *);
1678 static tree cp_parser_type_specifier
1679 (cp_parser *, cp_parser_flags, cp_decl_specifier_seq *, bool,
1680 int *, bool *);
1681 static tree cp_parser_simple_type_specifier
1682 (cp_parser *, cp_decl_specifier_seq *, cp_parser_flags);
1683 static tree cp_parser_type_name
1684 (cp_parser *);
1685 static tree cp_parser_nonclass_name
1686 (cp_parser* parser);
1687 static tree cp_parser_elaborated_type_specifier
1688 (cp_parser *, bool, bool);
1689 static tree cp_parser_enum_specifier
1690 (cp_parser *);
1691 static void cp_parser_enumerator_list
1692 (cp_parser *, tree);
1693 static void cp_parser_enumerator_definition
1694 (cp_parser *, tree);
1695 static tree cp_parser_namespace_name
1696 (cp_parser *);
1697 static void cp_parser_namespace_definition
1698 (cp_parser *);
1699 static void cp_parser_namespace_body
1700 (cp_parser *);
1701 static tree cp_parser_qualified_namespace_specifier
1702 (cp_parser *);
1703 static void cp_parser_namespace_alias_definition
1704 (cp_parser *);
1705 static bool cp_parser_using_declaration
1706 (cp_parser *, bool);
1707 static void cp_parser_using_directive
1708 (cp_parser *);
1709 static void cp_parser_asm_definition
1710 (cp_parser *);
1711 static void cp_parser_linkage_specification
1712 (cp_parser *);
1713 static void cp_parser_static_assert
1714 (cp_parser *, bool);
1715 static tree cp_parser_decltype
1716 (cp_parser *);
1718 /* Declarators [gram.dcl.decl] */
1720 static tree cp_parser_init_declarator
1721 (cp_parser *, cp_decl_specifier_seq *, VEC (deferred_access_check,gc)*, bool, bool, int, bool *);
1722 static cp_declarator *cp_parser_declarator
1723 (cp_parser *, cp_parser_declarator_kind, int *, bool *, bool);
1724 static cp_declarator *cp_parser_direct_declarator
1725 (cp_parser *, cp_parser_declarator_kind, int *, bool);
1726 static enum tree_code cp_parser_ptr_operator
1727 (cp_parser *, tree *, cp_cv_quals *);
1728 static cp_cv_quals cp_parser_cv_qualifier_seq_opt
1729 (cp_parser *);
1730 static tree cp_parser_late_return_type_opt
1731 (cp_parser *);
1732 static tree cp_parser_declarator_id
1733 (cp_parser *, bool);
1734 static tree cp_parser_type_id
1735 (cp_parser *);
1736 static tree cp_parser_template_type_arg
1737 (cp_parser *);
1738 static tree cp_parser_type_id_1
1739 (cp_parser *, bool);
1740 static void cp_parser_type_specifier_seq
1741 (cp_parser *, bool, cp_decl_specifier_seq *);
1742 static tree cp_parser_parameter_declaration_clause
1743 (cp_parser *);
1744 static tree cp_parser_parameter_declaration_list
1745 (cp_parser *, bool *);
1746 static cp_parameter_declarator *cp_parser_parameter_declaration
1747 (cp_parser *, bool, bool *);
1748 static tree cp_parser_default_argument
1749 (cp_parser *, bool);
1750 static void cp_parser_function_body
1751 (cp_parser *);
1752 static tree cp_parser_initializer
1753 (cp_parser *, bool *, bool *);
1754 static tree cp_parser_initializer_clause
1755 (cp_parser *, bool *);
1756 static tree cp_parser_braced_list
1757 (cp_parser*, bool*);
1758 static VEC(constructor_elt,gc) *cp_parser_initializer_list
1759 (cp_parser *, bool *);
1761 static bool cp_parser_ctor_initializer_opt_and_function_body
1762 (cp_parser *);
1764 /* Classes [gram.class] */
1766 static tree cp_parser_class_name
1767 (cp_parser *, bool, bool, enum tag_types, bool, bool, bool);
1768 static tree cp_parser_class_specifier
1769 (cp_parser *);
1770 static tree cp_parser_class_head
1771 (cp_parser *, bool *, tree *, tree *);
1772 static enum tag_types cp_parser_class_key
1773 (cp_parser *);
1774 static void cp_parser_member_specification_opt
1775 (cp_parser *);
1776 static void cp_parser_member_declaration
1777 (cp_parser *);
1778 static tree cp_parser_pure_specifier
1779 (cp_parser *);
1780 static tree cp_parser_constant_initializer
1781 (cp_parser *);
1783 /* Derived classes [gram.class.derived] */
1785 static tree cp_parser_base_clause
1786 (cp_parser *);
1787 static tree cp_parser_base_specifier
1788 (cp_parser *);
1790 /* Special member functions [gram.special] */
1792 static tree cp_parser_conversion_function_id
1793 (cp_parser *);
1794 static tree cp_parser_conversion_type_id
1795 (cp_parser *);
1796 static cp_declarator *cp_parser_conversion_declarator_opt
1797 (cp_parser *);
1798 static bool cp_parser_ctor_initializer_opt
1799 (cp_parser *);
1800 static void cp_parser_mem_initializer_list
1801 (cp_parser *);
1802 static tree cp_parser_mem_initializer
1803 (cp_parser *);
1804 static tree cp_parser_mem_initializer_id
1805 (cp_parser *);
1807 /* Overloading [gram.over] */
1809 static tree cp_parser_operator_function_id
1810 (cp_parser *);
1811 static tree cp_parser_operator
1812 (cp_parser *);
1814 /* Templates [gram.temp] */
1816 static void cp_parser_template_declaration
1817 (cp_parser *, bool);
1818 static tree cp_parser_template_parameter_list
1819 (cp_parser *);
1820 static tree cp_parser_template_parameter
1821 (cp_parser *, bool *, bool *);
1822 static tree cp_parser_type_parameter
1823 (cp_parser *, bool *);
1824 static tree cp_parser_template_id
1825 (cp_parser *, bool, bool, bool);
1826 static tree cp_parser_template_name
1827 (cp_parser *, bool, bool, bool, bool *);
1828 static tree cp_parser_template_argument_list
1829 (cp_parser *);
1830 static tree cp_parser_template_argument
1831 (cp_parser *);
1832 static void cp_parser_explicit_instantiation
1833 (cp_parser *);
1834 static void cp_parser_explicit_specialization
1835 (cp_parser *);
1837 /* Exception handling [gram.exception] */
1839 static tree cp_parser_try_block
1840 (cp_parser *);
1841 static bool cp_parser_function_try_block
1842 (cp_parser *);
1843 static void cp_parser_handler_seq
1844 (cp_parser *);
1845 static void cp_parser_handler
1846 (cp_parser *);
1847 static tree cp_parser_exception_declaration
1848 (cp_parser *);
1849 static tree cp_parser_throw_expression
1850 (cp_parser *);
1851 static tree cp_parser_exception_specification_opt
1852 (cp_parser *);
1853 static tree cp_parser_type_id_list
1854 (cp_parser *);
1856 /* GNU Extensions */
1858 static tree cp_parser_asm_specification_opt
1859 (cp_parser *);
1860 static tree cp_parser_asm_operand_list
1861 (cp_parser *);
1862 static tree cp_parser_asm_clobber_list
1863 (cp_parser *);
1864 static tree cp_parser_attributes_opt
1865 (cp_parser *);
1866 static tree cp_parser_attribute_list
1867 (cp_parser *);
1868 static bool cp_parser_extension_opt
1869 (cp_parser *, int *);
1870 static void cp_parser_label_declaration
1871 (cp_parser *);
1873 enum pragma_context { pragma_external, pragma_stmt, pragma_compound };
1874 static bool cp_parser_pragma
1875 (cp_parser *, enum pragma_context);
1877 /* Objective-C++ Productions */
1879 static tree cp_parser_objc_message_receiver
1880 (cp_parser *);
1881 static tree cp_parser_objc_message_args
1882 (cp_parser *);
1883 static tree cp_parser_objc_message_expression
1884 (cp_parser *);
1885 static tree cp_parser_objc_encode_expression
1886 (cp_parser *);
1887 static tree cp_parser_objc_defs_expression
1888 (cp_parser *);
1889 static tree cp_parser_objc_protocol_expression
1890 (cp_parser *);
1891 static tree cp_parser_objc_selector_expression
1892 (cp_parser *);
1893 static tree cp_parser_objc_expression
1894 (cp_parser *);
1895 static bool cp_parser_objc_selector_p
1896 (enum cpp_ttype);
1897 static tree cp_parser_objc_selector
1898 (cp_parser *);
1899 static tree cp_parser_objc_protocol_refs_opt
1900 (cp_parser *);
1901 static void cp_parser_objc_declaration
1902 (cp_parser *);
1903 static tree cp_parser_objc_statement
1904 (cp_parser *);
1906 /* Utility Routines */
1908 static tree cp_parser_lookup_name
1909 (cp_parser *, tree, enum tag_types, bool, bool, bool, tree *, location_t);
1910 static tree cp_parser_lookup_name_simple
1911 (cp_parser *, tree, location_t);
1912 static tree cp_parser_maybe_treat_template_as_class
1913 (tree, bool);
1914 static bool cp_parser_check_declarator_template_parameters
1915 (cp_parser *, cp_declarator *, location_t);
1916 static bool cp_parser_check_template_parameters
1917 (cp_parser *, unsigned, location_t);
1918 static tree cp_parser_simple_cast_expression
1919 (cp_parser *);
1920 static tree cp_parser_global_scope_opt
1921 (cp_parser *, bool);
1922 static bool cp_parser_constructor_declarator_p
1923 (cp_parser *, bool);
1924 static tree cp_parser_function_definition_from_specifiers_and_declarator
1925 (cp_parser *, cp_decl_specifier_seq *, tree, const cp_declarator *);
1926 static tree cp_parser_function_definition_after_declarator
1927 (cp_parser *, bool);
1928 static void cp_parser_template_declaration_after_export
1929 (cp_parser *, bool);
1930 static void cp_parser_perform_template_parameter_access_checks
1931 (VEC (deferred_access_check,gc)*);
1932 static tree cp_parser_single_declaration
1933 (cp_parser *, VEC (deferred_access_check,gc)*, bool, bool, bool *);
1934 static tree cp_parser_functional_cast
1935 (cp_parser *, tree);
1936 static tree cp_parser_save_member_function_body
1937 (cp_parser *, cp_decl_specifier_seq *, cp_declarator *, tree);
1938 static tree cp_parser_enclosed_template_argument_list
1939 (cp_parser *);
1940 static void cp_parser_save_default_args
1941 (cp_parser *, tree);
1942 static void cp_parser_late_parsing_for_member
1943 (cp_parser *, tree);
1944 static void cp_parser_late_parsing_default_args
1945 (cp_parser *, tree);
1946 static tree cp_parser_sizeof_operand
1947 (cp_parser *, enum rid);
1948 static tree cp_parser_trait_expr
1949 (cp_parser *, enum rid);
1950 static bool cp_parser_declares_only_class_p
1951 (cp_parser *);
1952 static void cp_parser_set_storage_class
1953 (cp_parser *, cp_decl_specifier_seq *, enum rid, location_t);
1954 static void cp_parser_set_decl_spec_type
1955 (cp_decl_specifier_seq *, tree, location_t, bool);
1956 static bool cp_parser_friend_p
1957 (const cp_decl_specifier_seq *);
1958 static cp_token *cp_parser_require
1959 (cp_parser *, enum cpp_ttype, const char *);
1960 static cp_token *cp_parser_require_keyword
1961 (cp_parser *, enum rid, const char *);
1962 static bool cp_parser_token_starts_function_definition_p
1963 (cp_token *);
1964 static bool cp_parser_next_token_starts_class_definition_p
1965 (cp_parser *);
1966 static bool cp_parser_next_token_ends_template_argument_p
1967 (cp_parser *);
1968 static bool cp_parser_nth_token_starts_template_argument_list_p
1969 (cp_parser *, size_t);
1970 static enum tag_types cp_parser_token_is_class_key
1971 (cp_token *);
1972 static void cp_parser_check_class_key
1973 (enum tag_types, tree type);
1974 static void cp_parser_check_access_in_redeclaration
1975 (tree type, location_t location);
1976 static bool cp_parser_optional_template_keyword
1977 (cp_parser *);
1978 static void cp_parser_pre_parsed_nested_name_specifier
1979 (cp_parser *);
1980 static bool cp_parser_cache_group
1981 (cp_parser *, enum cpp_ttype, unsigned);
1982 static void cp_parser_parse_tentatively
1983 (cp_parser *);
1984 static void cp_parser_commit_to_tentative_parse
1985 (cp_parser *);
1986 static void cp_parser_abort_tentative_parse
1987 (cp_parser *);
1988 static bool cp_parser_parse_definitely
1989 (cp_parser *);
1990 static inline bool cp_parser_parsing_tentatively
1991 (cp_parser *);
1992 static bool cp_parser_uncommitted_to_tentative_parse_p
1993 (cp_parser *);
1994 static void cp_parser_error
1995 (cp_parser *, const char *);
1996 static void cp_parser_name_lookup_error
1997 (cp_parser *, tree, tree, const char *, location_t);
1998 static bool cp_parser_simulate_error
1999 (cp_parser *);
2000 static bool cp_parser_check_type_definition
2001 (cp_parser *);
2002 static void cp_parser_check_for_definition_in_return_type
2003 (cp_declarator *, tree, location_t type_location);
2004 static void cp_parser_check_for_invalid_template_id
2005 (cp_parser *, tree, location_t location);
2006 static bool cp_parser_non_integral_constant_expression
2007 (cp_parser *, const char *);
2008 static void cp_parser_diagnose_invalid_type_name
2009 (cp_parser *, tree, tree, location_t);
2010 static bool cp_parser_parse_and_diagnose_invalid_type_name
2011 (cp_parser *);
2012 static int cp_parser_skip_to_closing_parenthesis
2013 (cp_parser *, bool, bool, bool);
2014 static void cp_parser_skip_to_end_of_statement
2015 (cp_parser *);
2016 static void cp_parser_consume_semicolon_at_end_of_statement
2017 (cp_parser *);
2018 static void cp_parser_skip_to_end_of_block_or_statement
2019 (cp_parser *);
2020 static bool cp_parser_skip_to_closing_brace
2021 (cp_parser *);
2022 static void cp_parser_skip_to_end_of_template_parameter_list
2023 (cp_parser *);
2024 static void cp_parser_skip_to_pragma_eol
2025 (cp_parser*, cp_token *);
2026 static bool cp_parser_error_occurred
2027 (cp_parser *);
2028 static bool cp_parser_allow_gnu_extensions_p
2029 (cp_parser *);
2030 static bool cp_parser_is_string_literal
2031 (cp_token *);
2032 static bool cp_parser_is_keyword
2033 (cp_token *, enum rid);
2034 static tree cp_parser_make_typename_type
2035 (cp_parser *, tree, tree, location_t location);
2036 static cp_declarator * cp_parser_make_indirect_declarator
2037 (enum tree_code, tree, cp_cv_quals, cp_declarator *);
2039 /* Returns nonzero if we are parsing tentatively. */
2041 static inline bool
2042 cp_parser_parsing_tentatively (cp_parser* parser)
2044 return parser->context->next != NULL;
2047 /* Returns nonzero if TOKEN is a string literal. */
2049 static bool
2050 cp_parser_is_string_literal (cp_token* token)
2052 return (token->type == CPP_STRING ||
2053 token->type == CPP_STRING16 ||
2054 token->type == CPP_STRING32 ||
2055 token->type == CPP_WSTRING);
2058 /* Returns nonzero if TOKEN is the indicated KEYWORD. */
2060 static bool
2061 cp_parser_is_keyword (cp_token* token, enum rid keyword)
2063 return token->keyword == keyword;
2066 /* If not parsing tentatively, issue a diagnostic of the form
2067 FILE:LINE: MESSAGE before TOKEN
2068 where TOKEN is the next token in the input stream. MESSAGE
2069 (specified by the caller) is usually of the form "expected
2070 OTHER-TOKEN". */
2072 static void
2073 cp_parser_error (cp_parser* parser, const char* message)
2075 if (!cp_parser_simulate_error (parser))
2077 cp_token *token = cp_lexer_peek_token (parser->lexer);
2078 /* This diagnostic makes more sense if it is tagged to the line
2079 of the token we just peeked at. */
2080 cp_lexer_set_source_position_from_token (token);
2082 if (token->type == CPP_PRAGMA)
2084 error ("%H%<#pragma%> is not allowed here", &token->location);
2085 cp_parser_skip_to_pragma_eol (parser, token);
2086 return;
2089 c_parse_error (message,
2090 /* Because c_parser_error does not understand
2091 CPP_KEYWORD, keywords are treated like
2092 identifiers. */
2093 (token->type == CPP_KEYWORD ? CPP_NAME : token->type),
2094 token->u.value);
2098 /* Issue an error about name-lookup failing. NAME is the
2099 IDENTIFIER_NODE DECL is the result of
2100 the lookup (as returned from cp_parser_lookup_name). DESIRED is
2101 the thing that we hoped to find. */
2103 static void
2104 cp_parser_name_lookup_error (cp_parser* parser,
2105 tree name,
2106 tree decl,
2107 const char* desired,
2108 location_t location)
2110 /* If name lookup completely failed, tell the user that NAME was not
2111 declared. */
2112 if (decl == error_mark_node)
2114 if (parser->scope && parser->scope != global_namespace)
2115 error ("%H%<%E::%E%> has not been declared",
2116 &location, parser->scope, name);
2117 else if (parser->scope == global_namespace)
2118 error ("%H%<::%E%> has not been declared", &location, name);
2119 else if (parser->object_scope
2120 && !CLASS_TYPE_P (parser->object_scope))
2121 error ("%Hrequest for member %qE in non-class type %qT",
2122 &location, name, parser->object_scope);
2123 else if (parser->object_scope)
2124 error ("%H%<%T::%E%> has not been declared",
2125 &location, parser->object_scope, name);
2126 else
2127 error ("%H%qE has not been declared", &location, name);
2129 else if (parser->scope && parser->scope != global_namespace)
2130 error ("%H%<%E::%E%> %s", &location, parser->scope, name, desired);
2131 else if (parser->scope == global_namespace)
2132 error ("%H%<::%E%> %s", &location, name, desired);
2133 else
2134 error ("%H%qE %s", &location, name, desired);
2137 /* If we are parsing tentatively, remember that an error has occurred
2138 during this tentative parse. Returns true if the error was
2139 simulated; false if a message should be issued by the caller. */
2141 static bool
2142 cp_parser_simulate_error (cp_parser* parser)
2144 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
2146 parser->context->status = CP_PARSER_STATUS_KIND_ERROR;
2147 return true;
2149 return false;
2152 /* Check for repeated decl-specifiers. */
2154 static void
2155 cp_parser_check_decl_spec (cp_decl_specifier_seq *decl_specs,
2156 location_t location)
2158 cp_decl_spec ds;
2160 for (ds = ds_first; ds != ds_last; ++ds)
2162 unsigned count = decl_specs->specs[(int)ds];
2163 if (count < 2)
2164 continue;
2165 /* The "long" specifier is a special case because of "long long". */
2166 if (ds == ds_long)
2168 if (count > 2)
2169 error ("%H%<long long long%> is too long for GCC", &location);
2170 else if (pedantic && !in_system_header && warn_long_long
2171 && cxx_dialect == cxx98)
2172 pedwarn (location, OPT_Wlong_long,
2173 "ISO C++ 1998 does not support %<long long%>");
2175 else if (count > 1)
2177 static const char *const decl_spec_names[] = {
2178 "signed",
2179 "unsigned",
2180 "short",
2181 "long",
2182 "const",
2183 "volatile",
2184 "restrict",
2185 "inline",
2186 "virtual",
2187 "explicit",
2188 "friend",
2189 "typedef",
2190 "__complex",
2191 "__thread"
2193 error ("%Hduplicate %qs", &location, decl_spec_names[(int)ds]);
2198 /* This function is called when a type is defined. If type
2199 definitions are forbidden at this point, an error message is
2200 issued. */
2202 static bool
2203 cp_parser_check_type_definition (cp_parser* parser)
2205 /* If types are forbidden here, issue a message. */
2206 if (parser->type_definition_forbidden_message)
2208 /* Don't use `%s' to print the string, because quotations (`%<', `%>')
2209 in the message need to be interpreted. */
2210 error (parser->type_definition_forbidden_message);
2211 return false;
2213 return true;
2216 /* This function is called when the DECLARATOR is processed. The TYPE
2217 was a type defined in the decl-specifiers. If it is invalid to
2218 define a type in the decl-specifiers for DECLARATOR, an error is
2219 issued. TYPE_LOCATION is the location of TYPE and is used
2220 for error reporting. */
2222 static void
2223 cp_parser_check_for_definition_in_return_type (cp_declarator *declarator,
2224 tree type, location_t type_location)
2226 /* [dcl.fct] forbids type definitions in return types.
2227 Unfortunately, it's not easy to know whether or not we are
2228 processing a return type until after the fact. */
2229 while (declarator
2230 && (declarator->kind == cdk_pointer
2231 || declarator->kind == cdk_reference
2232 || declarator->kind == cdk_ptrmem))
2233 declarator = declarator->declarator;
2234 if (declarator
2235 && declarator->kind == cdk_function)
2237 error ("%Hnew types may not be defined in a return type", &type_location);
2238 inform (type_location,
2239 "(perhaps a semicolon is missing after the definition of %qT)",
2240 type);
2244 /* A type-specifier (TYPE) has been parsed which cannot be followed by
2245 "<" in any valid C++ program. If the next token is indeed "<",
2246 issue a message warning the user about what appears to be an
2247 invalid attempt to form a template-id. LOCATION is the location
2248 of the type-specifier (TYPE) */
2250 static void
2251 cp_parser_check_for_invalid_template_id (cp_parser* parser,
2252 tree type, location_t location)
2254 cp_token_position start = 0;
2256 if (cp_lexer_next_token_is (parser->lexer, CPP_LESS))
2258 if (TYPE_P (type))
2259 error ("%H%qT is not a template", &location, type);
2260 else if (TREE_CODE (type) == IDENTIFIER_NODE)
2261 error ("%H%qE is not a template", &location, type);
2262 else
2263 error ("%Hinvalid template-id", &location);
2264 /* Remember the location of the invalid "<". */
2265 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
2266 start = cp_lexer_token_position (parser->lexer, true);
2267 /* Consume the "<". */
2268 cp_lexer_consume_token (parser->lexer);
2269 /* Parse the template arguments. */
2270 cp_parser_enclosed_template_argument_list (parser);
2271 /* Permanently remove the invalid template arguments so that
2272 this error message is not issued again. */
2273 if (start)
2274 cp_lexer_purge_tokens_after (parser->lexer, start);
2278 /* If parsing an integral constant-expression, issue an error message
2279 about the fact that THING appeared and return true. Otherwise,
2280 return false. In either case, set
2281 PARSER->NON_INTEGRAL_CONSTANT_EXPRESSION_P. */
2283 static bool
2284 cp_parser_non_integral_constant_expression (cp_parser *parser,
2285 const char *thing)
2287 parser->non_integral_constant_expression_p = true;
2288 if (parser->integral_constant_expression_p)
2290 if (!parser->allow_non_integral_constant_expression_p)
2292 /* Don't use `%s' to print THING, because quotations (`%<', `%>')
2293 in the message need to be interpreted. */
2294 char *message = concat (thing,
2295 " cannot appear in a constant-expression",
2296 NULL);
2297 error (message);
2298 free (message);
2299 return true;
2302 return false;
2305 /* Emit a diagnostic for an invalid type name. SCOPE is the
2306 qualifying scope (or NULL, if none) for ID. This function commits
2307 to the current active tentative parse, if any. (Otherwise, the
2308 problematic construct might be encountered again later, resulting
2309 in duplicate error messages.) LOCATION is the location of ID. */
2311 static void
2312 cp_parser_diagnose_invalid_type_name (cp_parser *parser,
2313 tree scope, tree id,
2314 location_t location)
2316 tree decl, old_scope;
2317 /* Try to lookup the identifier. */
2318 old_scope = parser->scope;
2319 parser->scope = scope;
2320 decl = cp_parser_lookup_name_simple (parser, id, location);
2321 parser->scope = old_scope;
2322 /* If the lookup found a template-name, it means that the user forgot
2323 to specify an argument list. Emit a useful error message. */
2324 if (TREE_CODE (decl) == TEMPLATE_DECL)
2325 error ("%Hinvalid use of template-name %qE without an argument list",
2326 &location, decl);
2327 else if (TREE_CODE (id) == BIT_NOT_EXPR)
2328 error ("%Hinvalid use of destructor %qD as a type", &location, id);
2329 else if (TREE_CODE (decl) == TYPE_DECL)
2330 /* Something like 'unsigned A a;' */
2331 error ("%Hinvalid combination of multiple type-specifiers",
2332 &location);
2333 else if (!parser->scope)
2335 /* Issue an error message. */
2336 error ("%H%qE does not name a type", &location, id);
2337 /* If we're in a template class, it's possible that the user was
2338 referring to a type from a base class. For example:
2340 template <typename T> struct A { typedef T X; };
2341 template <typename T> struct B : public A<T> { X x; };
2343 The user should have said "typename A<T>::X". */
2344 if (processing_template_decl && current_class_type
2345 && TYPE_BINFO (current_class_type))
2347 tree b;
2349 for (b = TREE_CHAIN (TYPE_BINFO (current_class_type));
2351 b = TREE_CHAIN (b))
2353 tree base_type = BINFO_TYPE (b);
2354 if (CLASS_TYPE_P (base_type)
2355 && dependent_type_p (base_type))
2357 tree field;
2358 /* Go from a particular instantiation of the
2359 template (which will have an empty TYPE_FIELDs),
2360 to the main version. */
2361 base_type = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (base_type);
2362 for (field = TYPE_FIELDS (base_type);
2363 field;
2364 field = TREE_CHAIN (field))
2365 if (TREE_CODE (field) == TYPE_DECL
2366 && DECL_NAME (field) == id)
2368 inform (location,
2369 "(perhaps %<typename %T::%E%> was intended)",
2370 BINFO_TYPE (b), id);
2371 break;
2373 if (field)
2374 break;
2379 /* Here we diagnose qualified-ids where the scope is actually correct,
2380 but the identifier does not resolve to a valid type name. */
2381 else if (parser->scope != error_mark_node)
2383 if (TREE_CODE (parser->scope) == NAMESPACE_DECL)
2384 error ("%H%qE in namespace %qE does not name a type",
2385 &location, id, parser->scope);
2386 else if (TYPE_P (parser->scope))
2387 error ("%H%qE in class %qT does not name a type",
2388 &location, id, parser->scope);
2389 else
2390 gcc_unreachable ();
2392 cp_parser_commit_to_tentative_parse (parser);
2395 /* Check for a common situation where a type-name should be present,
2396 but is not, and issue a sensible error message. Returns true if an
2397 invalid type-name was detected.
2399 The situation handled by this function are variable declarations of the
2400 form `ID a', where `ID' is an id-expression and `a' is a plain identifier.
2401 Usually, `ID' should name a type, but if we got here it means that it
2402 does not. We try to emit the best possible error message depending on
2403 how exactly the id-expression looks like. */
2405 static bool
2406 cp_parser_parse_and_diagnose_invalid_type_name (cp_parser *parser)
2408 tree id;
2409 cp_token *token = cp_lexer_peek_token (parser->lexer);
2411 cp_parser_parse_tentatively (parser);
2412 id = cp_parser_id_expression (parser,
2413 /*template_keyword_p=*/false,
2414 /*check_dependency_p=*/true,
2415 /*template_p=*/NULL,
2416 /*declarator_p=*/true,
2417 /*optional_p=*/false);
2418 /* After the id-expression, there should be a plain identifier,
2419 otherwise this is not a simple variable declaration. Also, if
2420 the scope is dependent, we cannot do much. */
2421 if (!cp_lexer_next_token_is (parser->lexer, CPP_NAME)
2422 || (parser->scope && TYPE_P (parser->scope)
2423 && dependent_type_p (parser->scope))
2424 || TREE_CODE (id) == TYPE_DECL)
2426 cp_parser_abort_tentative_parse (parser);
2427 return false;
2429 if (!cp_parser_parse_definitely (parser))
2430 return false;
2432 /* Emit a diagnostic for the invalid type. */
2433 cp_parser_diagnose_invalid_type_name (parser, parser->scope,
2434 id, token->location);
2435 /* Skip to the end of the declaration; there's no point in
2436 trying to process it. */
2437 cp_parser_skip_to_end_of_block_or_statement (parser);
2438 return true;
2441 /* Consume tokens up to, and including, the next non-nested closing `)'.
2442 Returns 1 iff we found a closing `)'. RECOVERING is true, if we
2443 are doing error recovery. Returns -1 if OR_COMMA is true and we
2444 found an unnested comma. */
2446 static int
2447 cp_parser_skip_to_closing_parenthesis (cp_parser *parser,
2448 bool recovering,
2449 bool or_comma,
2450 bool consume_paren)
2452 unsigned paren_depth = 0;
2453 unsigned brace_depth = 0;
2455 if (recovering && !or_comma
2456 && cp_parser_uncommitted_to_tentative_parse_p (parser))
2457 return 0;
2459 while (true)
2461 cp_token * token = cp_lexer_peek_token (parser->lexer);
2463 switch (token->type)
2465 case CPP_EOF:
2466 case CPP_PRAGMA_EOL:
2467 /* If we've run out of tokens, then there is no closing `)'. */
2468 return 0;
2470 case CPP_SEMICOLON:
2471 /* This matches the processing in skip_to_end_of_statement. */
2472 if (!brace_depth)
2473 return 0;
2474 break;
2476 case CPP_OPEN_BRACE:
2477 ++brace_depth;
2478 break;
2479 case CPP_CLOSE_BRACE:
2480 if (!brace_depth--)
2481 return 0;
2482 break;
2484 case CPP_COMMA:
2485 if (recovering && or_comma && !brace_depth && !paren_depth)
2486 return -1;
2487 break;
2489 case CPP_OPEN_PAREN:
2490 if (!brace_depth)
2491 ++paren_depth;
2492 break;
2494 case CPP_CLOSE_PAREN:
2495 if (!brace_depth && !paren_depth--)
2497 if (consume_paren)
2498 cp_lexer_consume_token (parser->lexer);
2499 return 1;
2501 break;
2503 default:
2504 break;
2507 /* Consume the token. */
2508 cp_lexer_consume_token (parser->lexer);
2512 /* Consume tokens until we reach the end of the current statement.
2513 Normally, that will be just before consuming a `;'. However, if a
2514 non-nested `}' comes first, then we stop before consuming that. */
2516 static void
2517 cp_parser_skip_to_end_of_statement (cp_parser* parser)
2519 unsigned nesting_depth = 0;
2521 while (true)
2523 cp_token *token = cp_lexer_peek_token (parser->lexer);
2525 switch (token->type)
2527 case CPP_EOF:
2528 case CPP_PRAGMA_EOL:
2529 /* If we've run out of tokens, stop. */
2530 return;
2532 case CPP_SEMICOLON:
2533 /* If the next token is a `;', we have reached the end of the
2534 statement. */
2535 if (!nesting_depth)
2536 return;
2537 break;
2539 case CPP_CLOSE_BRACE:
2540 /* If this is a non-nested '}', stop before consuming it.
2541 That way, when confronted with something like:
2543 { 3 + }
2545 we stop before consuming the closing '}', even though we
2546 have not yet reached a `;'. */
2547 if (nesting_depth == 0)
2548 return;
2550 /* If it is the closing '}' for a block that we have
2551 scanned, stop -- but only after consuming the token.
2552 That way given:
2554 void f g () { ... }
2555 typedef int I;
2557 we will stop after the body of the erroneously declared
2558 function, but before consuming the following `typedef'
2559 declaration. */
2560 if (--nesting_depth == 0)
2562 cp_lexer_consume_token (parser->lexer);
2563 return;
2566 case CPP_OPEN_BRACE:
2567 ++nesting_depth;
2568 break;
2570 default:
2571 break;
2574 /* Consume the token. */
2575 cp_lexer_consume_token (parser->lexer);
2579 /* This function is called at the end of a statement or declaration.
2580 If the next token is a semicolon, it is consumed; otherwise, error
2581 recovery is attempted. */
2583 static void
2584 cp_parser_consume_semicolon_at_end_of_statement (cp_parser *parser)
2586 /* Look for the trailing `;'. */
2587 if (!cp_parser_require (parser, CPP_SEMICOLON, "%<;%>"))
2589 /* If there is additional (erroneous) input, skip to the end of
2590 the statement. */
2591 cp_parser_skip_to_end_of_statement (parser);
2592 /* If the next token is now a `;', consume it. */
2593 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
2594 cp_lexer_consume_token (parser->lexer);
2598 /* Skip tokens until we have consumed an entire block, or until we
2599 have consumed a non-nested `;'. */
2601 static void
2602 cp_parser_skip_to_end_of_block_or_statement (cp_parser* parser)
2604 int nesting_depth = 0;
2606 while (nesting_depth >= 0)
2608 cp_token *token = cp_lexer_peek_token (parser->lexer);
2610 switch (token->type)
2612 case CPP_EOF:
2613 case CPP_PRAGMA_EOL:
2614 /* If we've run out of tokens, stop. */
2615 return;
2617 case CPP_SEMICOLON:
2618 /* Stop if this is an unnested ';'. */
2619 if (!nesting_depth)
2620 nesting_depth = -1;
2621 break;
2623 case CPP_CLOSE_BRACE:
2624 /* Stop if this is an unnested '}', or closes the outermost
2625 nesting level. */
2626 nesting_depth--;
2627 if (nesting_depth < 0)
2628 return;
2629 if (!nesting_depth)
2630 nesting_depth = -1;
2631 break;
2633 case CPP_OPEN_BRACE:
2634 /* Nest. */
2635 nesting_depth++;
2636 break;
2638 default:
2639 break;
2642 /* Consume the token. */
2643 cp_lexer_consume_token (parser->lexer);
2647 /* Skip tokens until a non-nested closing curly brace is the next
2648 token, or there are no more tokens. Return true in the first case,
2649 false otherwise. */
2651 static bool
2652 cp_parser_skip_to_closing_brace (cp_parser *parser)
2654 unsigned nesting_depth = 0;
2656 while (true)
2658 cp_token *token = cp_lexer_peek_token (parser->lexer);
2660 switch (token->type)
2662 case CPP_EOF:
2663 case CPP_PRAGMA_EOL:
2664 /* If we've run out of tokens, stop. */
2665 return false;
2667 case CPP_CLOSE_BRACE:
2668 /* If the next token is a non-nested `}', then we have reached
2669 the end of the current block. */
2670 if (nesting_depth-- == 0)
2671 return true;
2672 break;
2674 case CPP_OPEN_BRACE:
2675 /* If it the next token is a `{', then we are entering a new
2676 block. Consume the entire block. */
2677 ++nesting_depth;
2678 break;
2680 default:
2681 break;
2684 /* Consume the token. */
2685 cp_lexer_consume_token (parser->lexer);
2689 /* Consume tokens until we reach the end of the pragma. The PRAGMA_TOK
2690 parameter is the PRAGMA token, allowing us to purge the entire pragma
2691 sequence. */
2693 static void
2694 cp_parser_skip_to_pragma_eol (cp_parser* parser, cp_token *pragma_tok)
2696 cp_token *token;
2698 parser->lexer->in_pragma = false;
2701 token = cp_lexer_consume_token (parser->lexer);
2702 while (token->type != CPP_PRAGMA_EOL && token->type != CPP_EOF);
2704 /* Ensure that the pragma is not parsed again. */
2705 cp_lexer_purge_tokens_after (parser->lexer, pragma_tok);
2708 /* Require pragma end of line, resyncing with it as necessary. The
2709 arguments are as for cp_parser_skip_to_pragma_eol. */
2711 static void
2712 cp_parser_require_pragma_eol (cp_parser *parser, cp_token *pragma_tok)
2714 parser->lexer->in_pragma = false;
2715 if (!cp_parser_require (parser, CPP_PRAGMA_EOL, "end of line"))
2716 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
2719 /* This is a simple wrapper around make_typename_type. When the id is
2720 an unresolved identifier node, we can provide a superior diagnostic
2721 using cp_parser_diagnose_invalid_type_name. */
2723 static tree
2724 cp_parser_make_typename_type (cp_parser *parser, tree scope,
2725 tree id, location_t id_location)
2727 tree result;
2728 if (TREE_CODE (id) == IDENTIFIER_NODE)
2730 result = make_typename_type (scope, id, typename_type,
2731 /*complain=*/tf_none);
2732 if (result == error_mark_node)
2733 cp_parser_diagnose_invalid_type_name (parser, scope, id, id_location);
2734 return result;
2736 return make_typename_type (scope, id, typename_type, tf_error);
2739 /* This is a wrapper around the
2740 make_{pointer,ptrmem,reference}_declarator functions that decides
2741 which one to call based on the CODE and CLASS_TYPE arguments. The
2742 CODE argument should be one of the values returned by
2743 cp_parser_ptr_operator. */
2744 static cp_declarator *
2745 cp_parser_make_indirect_declarator (enum tree_code code, tree class_type,
2746 cp_cv_quals cv_qualifiers,
2747 cp_declarator *target)
2749 if (code == ERROR_MARK)
2750 return cp_error_declarator;
2752 if (code == INDIRECT_REF)
2753 if (class_type == NULL_TREE)
2754 return make_pointer_declarator (cv_qualifiers, target);
2755 else
2756 return make_ptrmem_declarator (cv_qualifiers, class_type, target);
2757 else if (code == ADDR_EXPR && class_type == NULL_TREE)
2758 return make_reference_declarator (cv_qualifiers, target, false);
2759 else if (code == NON_LVALUE_EXPR && class_type == NULL_TREE)
2760 return make_reference_declarator (cv_qualifiers, target, true);
2761 gcc_unreachable ();
2764 /* Create a new C++ parser. */
2766 static cp_parser *
2767 cp_parser_new (void)
2769 cp_parser *parser;
2770 cp_lexer *lexer;
2771 unsigned i;
2773 /* cp_lexer_new_main is called before calling ggc_alloc because
2774 cp_lexer_new_main might load a PCH file. */
2775 lexer = cp_lexer_new_main ();
2777 /* Initialize the binops_by_token so that we can get the tree
2778 directly from the token. */
2779 for (i = 0; i < sizeof (binops) / sizeof (binops[0]); i++)
2780 binops_by_token[binops[i].token_type] = binops[i];
2782 parser = GGC_CNEW (cp_parser);
2783 parser->lexer = lexer;
2784 parser->context = cp_parser_context_new (NULL);
2786 /* For now, we always accept GNU extensions. */
2787 parser->allow_gnu_extensions_p = 1;
2789 /* The `>' token is a greater-than operator, not the end of a
2790 template-id. */
2791 parser->greater_than_is_operator_p = true;
2793 parser->default_arg_ok_p = true;
2795 /* We are not parsing a constant-expression. */
2796 parser->integral_constant_expression_p = false;
2797 parser->allow_non_integral_constant_expression_p = false;
2798 parser->non_integral_constant_expression_p = false;
2800 /* Local variable names are not forbidden. */
2801 parser->local_variables_forbidden_p = false;
2803 /* We are not processing an `extern "C"' declaration. */
2804 parser->in_unbraced_linkage_specification_p = false;
2806 /* We are not processing a declarator. */
2807 parser->in_declarator_p = false;
2809 /* We are not processing a template-argument-list. */
2810 parser->in_template_argument_list_p = false;
2812 /* We are not in an iteration statement. */
2813 parser->in_statement = 0;
2815 /* We are not in a switch statement. */
2816 parser->in_switch_statement_p = false;
2818 /* We are not parsing a type-id inside an expression. */
2819 parser->in_type_id_in_expr_p = false;
2821 /* Declarations aren't implicitly extern "C". */
2822 parser->implicit_extern_c = false;
2824 /* String literals should be translated to the execution character set. */
2825 parser->translate_strings_p = true;
2827 /* We are not parsing a function body. */
2828 parser->in_function_body = false;
2830 /* The unparsed function queue is empty. */
2831 parser->unparsed_functions_queues = build_tree_list (NULL_TREE, NULL_TREE);
2833 /* There are no classes being defined. */
2834 parser->num_classes_being_defined = 0;
2836 /* No template parameters apply. */
2837 parser->num_template_parameter_lists = 0;
2839 return parser;
2842 /* Create a cp_lexer structure which will emit the tokens in CACHE
2843 and push it onto the parser's lexer stack. This is used for delayed
2844 parsing of in-class method bodies and default arguments, and should
2845 not be confused with tentative parsing. */
2846 static void
2847 cp_parser_push_lexer_for_tokens (cp_parser *parser, cp_token_cache *cache)
2849 cp_lexer *lexer = cp_lexer_new_from_tokens (cache);
2850 lexer->next = parser->lexer;
2851 parser->lexer = lexer;
2853 /* Move the current source position to that of the first token in the
2854 new lexer. */
2855 cp_lexer_set_source_position_from_token (lexer->next_token);
2858 /* Pop the top lexer off the parser stack. This is never used for the
2859 "main" lexer, only for those pushed by cp_parser_push_lexer_for_tokens. */
2860 static void
2861 cp_parser_pop_lexer (cp_parser *parser)
2863 cp_lexer *lexer = parser->lexer;
2864 parser->lexer = lexer->next;
2865 cp_lexer_destroy (lexer);
2867 /* Put the current source position back where it was before this
2868 lexer was pushed. */
2869 cp_lexer_set_source_position_from_token (parser->lexer->next_token);
2872 /* Lexical conventions [gram.lex] */
2874 /* Parse an identifier. Returns an IDENTIFIER_NODE representing the
2875 identifier. */
2877 static tree
2878 cp_parser_identifier (cp_parser* parser)
2880 cp_token *token;
2882 /* Look for the identifier. */
2883 token = cp_parser_require (parser, CPP_NAME, "identifier");
2884 /* Return the value. */
2885 return token ? token->u.value : error_mark_node;
2888 /* Parse a sequence of adjacent string constants. Returns a
2889 TREE_STRING representing the combined, nul-terminated string
2890 constant. If TRANSLATE is true, translate the string to the
2891 execution character set. If WIDE_OK is true, a wide string is
2892 invalid here.
2894 C++98 [lex.string] says that if a narrow string literal token is
2895 adjacent to a wide string literal token, the behavior is undefined.
2896 However, C99 6.4.5p4 says that this results in a wide string literal.
2897 We follow C99 here, for consistency with the C front end.
2899 This code is largely lifted from lex_string() in c-lex.c.
2901 FUTURE: ObjC++ will need to handle @-strings here. */
2902 static tree
2903 cp_parser_string_literal (cp_parser *parser, bool translate, bool wide_ok)
2905 tree value;
2906 size_t count;
2907 struct obstack str_ob;
2908 cpp_string str, istr, *strs;
2909 cp_token *tok;
2910 enum cpp_ttype type;
2912 tok = cp_lexer_peek_token (parser->lexer);
2913 if (!cp_parser_is_string_literal (tok))
2915 cp_parser_error (parser, "expected string-literal");
2916 return error_mark_node;
2919 type = tok->type;
2921 /* Try to avoid the overhead of creating and destroying an obstack
2922 for the common case of just one string. */
2923 if (!cp_parser_is_string_literal
2924 (cp_lexer_peek_nth_token (parser->lexer, 2)))
2926 cp_lexer_consume_token (parser->lexer);
2928 str.text = (const unsigned char *)TREE_STRING_POINTER (tok->u.value);
2929 str.len = TREE_STRING_LENGTH (tok->u.value);
2930 count = 1;
2932 strs = &str;
2934 else
2936 gcc_obstack_init (&str_ob);
2937 count = 0;
2941 cp_lexer_consume_token (parser->lexer);
2942 count++;
2943 str.text = (const unsigned char *)TREE_STRING_POINTER (tok->u.value);
2944 str.len = TREE_STRING_LENGTH (tok->u.value);
2946 if (type != tok->type)
2948 if (type == CPP_STRING)
2949 type = tok->type;
2950 else if (tok->type != CPP_STRING)
2951 error ("%Hunsupported non-standard concatenation "
2952 "of string literals", &tok->location);
2955 obstack_grow (&str_ob, &str, sizeof (cpp_string));
2957 tok = cp_lexer_peek_token (parser->lexer);
2959 while (cp_parser_is_string_literal (tok));
2961 strs = (cpp_string *) obstack_finish (&str_ob);
2964 if (type != CPP_STRING && !wide_ok)
2966 cp_parser_error (parser, "a wide string is invalid in this context");
2967 type = CPP_STRING;
2970 if ((translate ? cpp_interpret_string : cpp_interpret_string_notranslate)
2971 (parse_in, strs, count, &istr, type))
2973 value = build_string (istr.len, (const char *)istr.text);
2974 free (CONST_CAST (unsigned char *, istr.text));
2976 switch (type)
2978 default:
2979 case CPP_STRING:
2980 TREE_TYPE (value) = char_array_type_node;
2981 break;
2982 case CPP_STRING16:
2983 TREE_TYPE (value) = char16_array_type_node;
2984 break;
2985 case CPP_STRING32:
2986 TREE_TYPE (value) = char32_array_type_node;
2987 break;
2988 case CPP_WSTRING:
2989 TREE_TYPE (value) = wchar_array_type_node;
2990 break;
2993 value = fix_string_type (value);
2995 else
2996 /* cpp_interpret_string has issued an error. */
2997 value = error_mark_node;
2999 if (count > 1)
3000 obstack_free (&str_ob, 0);
3002 return value;
3006 /* Basic concepts [gram.basic] */
3008 /* Parse a translation-unit.
3010 translation-unit:
3011 declaration-seq [opt]
3013 Returns TRUE if all went well. */
3015 static bool
3016 cp_parser_translation_unit (cp_parser* parser)
3018 /* The address of the first non-permanent object on the declarator
3019 obstack. */
3020 static void *declarator_obstack_base;
3022 bool success;
3024 /* Create the declarator obstack, if necessary. */
3025 if (!cp_error_declarator)
3027 gcc_obstack_init (&declarator_obstack);
3028 /* Create the error declarator. */
3029 cp_error_declarator = make_declarator (cdk_error);
3030 /* Create the empty parameter list. */
3031 no_parameters = make_parameter_declarator (NULL, NULL, NULL_TREE);
3032 /* Remember where the base of the declarator obstack lies. */
3033 declarator_obstack_base = obstack_next_free (&declarator_obstack);
3036 cp_parser_declaration_seq_opt (parser);
3038 /* If there are no tokens left then all went well. */
3039 if (cp_lexer_next_token_is (parser->lexer, CPP_EOF))
3041 /* Get rid of the token array; we don't need it any more. */
3042 cp_lexer_destroy (parser->lexer);
3043 parser->lexer = NULL;
3045 /* This file might have been a context that's implicitly extern
3046 "C". If so, pop the lang context. (Only relevant for PCH.) */
3047 if (parser->implicit_extern_c)
3049 pop_lang_context ();
3050 parser->implicit_extern_c = false;
3053 /* Finish up. */
3054 finish_translation_unit ();
3056 success = true;
3058 else
3060 cp_parser_error (parser, "expected declaration");
3061 success = false;
3064 /* Make sure the declarator obstack was fully cleaned up. */
3065 gcc_assert (obstack_next_free (&declarator_obstack)
3066 == declarator_obstack_base);
3068 /* All went well. */
3069 return success;
3072 /* Expressions [gram.expr] */
3074 /* Parse a primary-expression.
3076 primary-expression:
3077 literal
3078 this
3079 ( expression )
3080 id-expression
3082 GNU Extensions:
3084 primary-expression:
3085 ( compound-statement )
3086 __builtin_va_arg ( assignment-expression , type-id )
3087 __builtin_offsetof ( type-id , offsetof-expression )
3089 C++ Extensions:
3090 __has_nothrow_assign ( type-id )
3091 __has_nothrow_constructor ( type-id )
3092 __has_nothrow_copy ( type-id )
3093 __has_trivial_assign ( type-id )
3094 __has_trivial_constructor ( type-id )
3095 __has_trivial_copy ( type-id )
3096 __has_trivial_destructor ( type-id )
3097 __has_virtual_destructor ( type-id )
3098 __is_abstract ( type-id )
3099 __is_base_of ( type-id , type-id )
3100 __is_class ( type-id )
3101 __is_convertible_to ( type-id , type-id )
3102 __is_empty ( type-id )
3103 __is_enum ( type-id )
3104 __is_pod ( type-id )
3105 __is_polymorphic ( type-id )
3106 __is_union ( type-id )
3108 Objective-C++ Extension:
3110 primary-expression:
3111 objc-expression
3113 literal:
3114 __null
3116 ADDRESS_P is true iff this expression was immediately preceded by
3117 "&" and therefore might denote a pointer-to-member. CAST_P is true
3118 iff this expression is the target of a cast. TEMPLATE_ARG_P is
3119 true iff this expression is a template argument.
3121 Returns a representation of the expression. Upon return, *IDK
3122 indicates what kind of id-expression (if any) was present. */
3124 static tree
3125 cp_parser_primary_expression (cp_parser *parser,
3126 bool address_p,
3127 bool cast_p,
3128 bool template_arg_p,
3129 cp_id_kind *idk)
3131 cp_token *token = NULL;
3133 /* Assume the primary expression is not an id-expression. */
3134 *idk = CP_ID_KIND_NONE;
3136 /* Peek at the next token. */
3137 token = cp_lexer_peek_token (parser->lexer);
3138 switch (token->type)
3140 /* literal:
3141 integer-literal
3142 character-literal
3143 floating-literal
3144 string-literal
3145 boolean-literal */
3146 case CPP_CHAR:
3147 case CPP_CHAR16:
3148 case CPP_CHAR32:
3149 case CPP_WCHAR:
3150 case CPP_NUMBER:
3151 token = cp_lexer_consume_token (parser->lexer);
3152 if (TREE_CODE (token->u.value) == FIXED_CST)
3154 error ("%Hfixed-point types not supported in C++",
3155 &token->location);
3156 return error_mark_node;
3158 /* Floating-point literals are only allowed in an integral
3159 constant expression if they are cast to an integral or
3160 enumeration type. */
3161 if (TREE_CODE (token->u.value) == REAL_CST
3162 && parser->integral_constant_expression_p
3163 && pedantic)
3165 /* CAST_P will be set even in invalid code like "int(2.7 +
3166 ...)". Therefore, we have to check that the next token
3167 is sure to end the cast. */
3168 if (cast_p)
3170 cp_token *next_token;
3172 next_token = cp_lexer_peek_token (parser->lexer);
3173 if (/* The comma at the end of an
3174 enumerator-definition. */
3175 next_token->type != CPP_COMMA
3176 /* The curly brace at the end of an enum-specifier. */
3177 && next_token->type != CPP_CLOSE_BRACE
3178 /* The end of a statement. */
3179 && next_token->type != CPP_SEMICOLON
3180 /* The end of the cast-expression. */
3181 && next_token->type != CPP_CLOSE_PAREN
3182 /* The end of an array bound. */
3183 && next_token->type != CPP_CLOSE_SQUARE
3184 /* The closing ">" in a template-argument-list. */
3185 && (next_token->type != CPP_GREATER
3186 || parser->greater_than_is_operator_p)
3187 /* C++0x only: A ">>" treated like two ">" tokens,
3188 in a template-argument-list. */
3189 && (next_token->type != CPP_RSHIFT
3190 || (cxx_dialect == cxx98)
3191 || parser->greater_than_is_operator_p))
3192 cast_p = false;
3195 /* If we are within a cast, then the constraint that the
3196 cast is to an integral or enumeration type will be
3197 checked at that point. If we are not within a cast, then
3198 this code is invalid. */
3199 if (!cast_p)
3200 cp_parser_non_integral_constant_expression
3201 (parser, "floating-point literal");
3203 return token->u.value;
3205 case CPP_STRING:
3206 case CPP_STRING16:
3207 case CPP_STRING32:
3208 case CPP_WSTRING:
3209 /* ??? Should wide strings be allowed when parser->translate_strings_p
3210 is false (i.e. in attributes)? If not, we can kill the third
3211 argument to cp_parser_string_literal. */
3212 return cp_parser_string_literal (parser,
3213 parser->translate_strings_p,
3214 true);
3216 case CPP_OPEN_PAREN:
3218 tree expr;
3219 bool saved_greater_than_is_operator_p;
3221 /* Consume the `('. */
3222 cp_lexer_consume_token (parser->lexer);
3223 /* Within a parenthesized expression, a `>' token is always
3224 the greater-than operator. */
3225 saved_greater_than_is_operator_p
3226 = parser->greater_than_is_operator_p;
3227 parser->greater_than_is_operator_p = true;
3228 /* If we see `( { ' then we are looking at the beginning of
3229 a GNU statement-expression. */
3230 if (cp_parser_allow_gnu_extensions_p (parser)
3231 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
3233 /* Statement-expressions are not allowed by the standard. */
3234 pedwarn (token->location, OPT_pedantic,
3235 "ISO C++ forbids braced-groups within expressions");
3237 /* And they're not allowed outside of a function-body; you
3238 cannot, for example, write:
3240 int i = ({ int j = 3; j + 1; });
3242 at class or namespace scope. */
3243 if (!parser->in_function_body
3244 || parser->in_template_argument_list_p)
3246 error ("%Hstatement-expressions are not allowed outside "
3247 "functions nor in template-argument lists",
3248 &token->location);
3249 cp_parser_skip_to_end_of_block_or_statement (parser);
3250 expr = error_mark_node;
3252 else
3254 /* Start the statement-expression. */
3255 expr = begin_stmt_expr ();
3256 /* Parse the compound-statement. */
3257 cp_parser_compound_statement (parser, expr, false);
3258 /* Finish up. */
3259 expr = finish_stmt_expr (expr, false);
3262 else
3264 /* Parse the parenthesized expression. */
3265 expr = cp_parser_expression (parser, cast_p, idk);
3266 /* Let the front end know that this expression was
3267 enclosed in parentheses. This matters in case, for
3268 example, the expression is of the form `A::B', since
3269 `&A::B' might be a pointer-to-member, but `&(A::B)' is
3270 not. */
3271 finish_parenthesized_expr (expr);
3273 /* The `>' token might be the end of a template-id or
3274 template-parameter-list now. */
3275 parser->greater_than_is_operator_p
3276 = saved_greater_than_is_operator_p;
3277 /* Consume the `)'. */
3278 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>"))
3279 cp_parser_skip_to_end_of_statement (parser);
3281 return expr;
3284 case CPP_KEYWORD:
3285 switch (token->keyword)
3287 /* These two are the boolean literals. */
3288 case RID_TRUE:
3289 cp_lexer_consume_token (parser->lexer);
3290 return boolean_true_node;
3291 case RID_FALSE:
3292 cp_lexer_consume_token (parser->lexer);
3293 return boolean_false_node;
3295 /* The `__null' literal. */
3296 case RID_NULL:
3297 cp_lexer_consume_token (parser->lexer);
3298 return null_node;
3300 /* Recognize the `this' keyword. */
3301 case RID_THIS:
3302 cp_lexer_consume_token (parser->lexer);
3303 if (parser->local_variables_forbidden_p)
3305 error ("%H%<this%> may not be used in this context",
3306 &token->location);
3307 return error_mark_node;
3309 /* Pointers cannot appear in constant-expressions. */
3310 if (cp_parser_non_integral_constant_expression (parser, "%<this%>"))
3311 return error_mark_node;
3312 return finish_this_expr ();
3314 /* The `operator' keyword can be the beginning of an
3315 id-expression. */
3316 case RID_OPERATOR:
3317 goto id_expression;
3319 case RID_FUNCTION_NAME:
3320 case RID_PRETTY_FUNCTION_NAME:
3321 case RID_C99_FUNCTION_NAME:
3323 const char *name;
3325 /* The symbols __FUNCTION__, __PRETTY_FUNCTION__, and
3326 __func__ are the names of variables -- but they are
3327 treated specially. Therefore, they are handled here,
3328 rather than relying on the generic id-expression logic
3329 below. Grammatically, these names are id-expressions.
3331 Consume the token. */
3332 token = cp_lexer_consume_token (parser->lexer);
3334 switch (token->keyword)
3336 case RID_FUNCTION_NAME:
3337 name = "%<__FUNCTION__%>";
3338 break;
3339 case RID_PRETTY_FUNCTION_NAME:
3340 name = "%<__PRETTY_FUNCTION__%>";
3341 break;
3342 case RID_C99_FUNCTION_NAME:
3343 name = "%<__func__%>";
3344 break;
3345 default:
3346 gcc_unreachable ();
3349 if (cp_parser_non_integral_constant_expression (parser, name))
3350 return error_mark_node;
3352 /* Look up the name. */
3353 return finish_fname (token->u.value);
3356 case RID_VA_ARG:
3358 tree expression;
3359 tree type;
3361 /* The `__builtin_va_arg' construct is used to handle
3362 `va_arg'. Consume the `__builtin_va_arg' token. */
3363 cp_lexer_consume_token (parser->lexer);
3364 /* Look for the opening `('. */
3365 cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>");
3366 /* Now, parse the assignment-expression. */
3367 expression = cp_parser_assignment_expression (parser,
3368 /*cast_p=*/false, NULL);
3369 /* Look for the `,'. */
3370 cp_parser_require (parser, CPP_COMMA, "%<,%>");
3371 /* Parse the type-id. */
3372 type = cp_parser_type_id (parser);
3373 /* Look for the closing `)'. */
3374 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
3375 /* Using `va_arg' in a constant-expression is not
3376 allowed. */
3377 if (cp_parser_non_integral_constant_expression (parser,
3378 "%<va_arg%>"))
3379 return error_mark_node;
3380 return build_x_va_arg (expression, type);
3383 case RID_OFFSETOF:
3384 return cp_parser_builtin_offsetof (parser);
3386 case RID_HAS_NOTHROW_ASSIGN:
3387 case RID_HAS_NOTHROW_CONSTRUCTOR:
3388 case RID_HAS_NOTHROW_COPY:
3389 case RID_HAS_TRIVIAL_ASSIGN:
3390 case RID_HAS_TRIVIAL_CONSTRUCTOR:
3391 case RID_HAS_TRIVIAL_COPY:
3392 case RID_HAS_TRIVIAL_DESTRUCTOR:
3393 case RID_HAS_VIRTUAL_DESTRUCTOR:
3394 case RID_IS_ABSTRACT:
3395 case RID_IS_BASE_OF:
3396 case RID_IS_CLASS:
3397 case RID_IS_CONVERTIBLE_TO:
3398 case RID_IS_EMPTY:
3399 case RID_IS_ENUM:
3400 case RID_IS_POD:
3401 case RID_IS_POLYMORPHIC:
3402 case RID_IS_UNION:
3403 return cp_parser_trait_expr (parser, token->keyword);
3405 /* Objective-C++ expressions. */
3406 case RID_AT_ENCODE:
3407 case RID_AT_PROTOCOL:
3408 case RID_AT_SELECTOR:
3409 return cp_parser_objc_expression (parser);
3411 default:
3412 cp_parser_error (parser, "expected primary-expression");
3413 return error_mark_node;
3416 /* An id-expression can start with either an identifier, a
3417 `::' as the beginning of a qualified-id, or the "operator"
3418 keyword. */
3419 case CPP_NAME:
3420 case CPP_SCOPE:
3421 case CPP_TEMPLATE_ID:
3422 case CPP_NESTED_NAME_SPECIFIER:
3424 tree id_expression;
3425 tree decl;
3426 const char *error_msg;
3427 bool template_p;
3428 bool done;
3429 cp_token *id_expr_token;
3431 id_expression:
3432 /* Parse the id-expression. */
3433 id_expression
3434 = cp_parser_id_expression (parser,
3435 /*template_keyword_p=*/false,
3436 /*check_dependency_p=*/true,
3437 &template_p,
3438 /*declarator_p=*/false,
3439 /*optional_p=*/false);
3440 if (id_expression == error_mark_node)
3441 return error_mark_node;
3442 id_expr_token = token;
3443 token = cp_lexer_peek_token (parser->lexer);
3444 done = (token->type != CPP_OPEN_SQUARE
3445 && token->type != CPP_OPEN_PAREN
3446 && token->type != CPP_DOT
3447 && token->type != CPP_DEREF
3448 && token->type != CPP_PLUS_PLUS
3449 && token->type != CPP_MINUS_MINUS);
3450 /* If we have a template-id, then no further lookup is
3451 required. If the template-id was for a template-class, we
3452 will sometimes have a TYPE_DECL at this point. */
3453 if (TREE_CODE (id_expression) == TEMPLATE_ID_EXPR
3454 || TREE_CODE (id_expression) == TYPE_DECL)
3455 decl = id_expression;
3456 /* Look up the name. */
3457 else
3459 tree ambiguous_decls;
3461 decl = cp_parser_lookup_name (parser, id_expression,
3462 none_type,
3463 template_p,
3464 /*is_namespace=*/false,
3465 /*check_dependency=*/true,
3466 &ambiguous_decls,
3467 id_expr_token->location);
3468 /* If the lookup was ambiguous, an error will already have
3469 been issued. */
3470 if (ambiguous_decls)
3471 return error_mark_node;
3473 /* In Objective-C++, an instance variable (ivar) may be preferred
3474 to whatever cp_parser_lookup_name() found. */
3475 decl = objc_lookup_ivar (decl, id_expression);
3477 /* If name lookup gives us a SCOPE_REF, then the
3478 qualifying scope was dependent. */
3479 if (TREE_CODE (decl) == SCOPE_REF)
3481 /* At this point, we do not know if DECL is a valid
3482 integral constant expression. We assume that it is
3483 in fact such an expression, so that code like:
3485 template <int N> struct A {
3486 int a[B<N>::i];
3489 is accepted. At template-instantiation time, we
3490 will check that B<N>::i is actually a constant. */
3491 return decl;
3493 /* Check to see if DECL is a local variable in a context
3494 where that is forbidden. */
3495 if (parser->local_variables_forbidden_p
3496 && local_variable_p (decl))
3498 /* It might be that we only found DECL because we are
3499 trying to be generous with pre-ISO scoping rules.
3500 For example, consider:
3502 int i;
3503 void g() {
3504 for (int i = 0; i < 10; ++i) {}
3505 extern void f(int j = i);
3508 Here, name look up will originally find the out
3509 of scope `i'. We need to issue a warning message,
3510 but then use the global `i'. */
3511 decl = check_for_out_of_scope_variable (decl);
3512 if (local_variable_p (decl))
3514 error ("%Hlocal variable %qD may not appear in this context",
3515 &id_expr_token->location, decl);
3516 return error_mark_node;
3521 decl = (finish_id_expression
3522 (id_expression, decl, parser->scope,
3523 idk,
3524 parser->integral_constant_expression_p,
3525 parser->allow_non_integral_constant_expression_p,
3526 &parser->non_integral_constant_expression_p,
3527 template_p, done, address_p,
3528 template_arg_p,
3529 &error_msg,
3530 id_expr_token->location));
3531 if (error_msg)
3532 cp_parser_error (parser, error_msg);
3533 return decl;
3536 /* Anything else is an error. */
3537 default:
3538 /* ...unless we have an Objective-C++ message or string literal,
3539 that is. */
3540 if (c_dialect_objc ()
3541 && (token->type == CPP_OPEN_SQUARE
3542 || token->type == CPP_OBJC_STRING))
3543 return cp_parser_objc_expression (parser);
3545 cp_parser_error (parser, "expected primary-expression");
3546 return error_mark_node;
3550 /* Parse an id-expression.
3552 id-expression:
3553 unqualified-id
3554 qualified-id
3556 qualified-id:
3557 :: [opt] nested-name-specifier template [opt] unqualified-id
3558 :: identifier
3559 :: operator-function-id
3560 :: template-id
3562 Return a representation of the unqualified portion of the
3563 identifier. Sets PARSER->SCOPE to the qualifying scope if there is
3564 a `::' or nested-name-specifier.
3566 Often, if the id-expression was a qualified-id, the caller will
3567 want to make a SCOPE_REF to represent the qualified-id. This
3568 function does not do this in order to avoid wastefully creating
3569 SCOPE_REFs when they are not required.
3571 If TEMPLATE_KEYWORD_P is true, then we have just seen the
3572 `template' keyword.
3574 If CHECK_DEPENDENCY_P is false, then names are looked up inside
3575 uninstantiated templates.
3577 If *TEMPLATE_P is non-NULL, it is set to true iff the
3578 `template' keyword is used to explicitly indicate that the entity
3579 named is a template.
3581 If DECLARATOR_P is true, the id-expression is appearing as part of
3582 a declarator, rather than as part of an expression. */
3584 static tree
3585 cp_parser_id_expression (cp_parser *parser,
3586 bool template_keyword_p,
3587 bool check_dependency_p,
3588 bool *template_p,
3589 bool declarator_p,
3590 bool optional_p)
3592 bool global_scope_p;
3593 bool nested_name_specifier_p;
3595 /* Assume the `template' keyword was not used. */
3596 if (template_p)
3597 *template_p = template_keyword_p;
3599 /* Look for the optional `::' operator. */
3600 global_scope_p
3601 = (cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/false)
3602 != NULL_TREE);
3603 /* Look for the optional nested-name-specifier. */
3604 nested_name_specifier_p
3605 = (cp_parser_nested_name_specifier_opt (parser,
3606 /*typename_keyword_p=*/false,
3607 check_dependency_p,
3608 /*type_p=*/false,
3609 declarator_p)
3610 != NULL_TREE);
3611 /* If there is a nested-name-specifier, then we are looking at
3612 the first qualified-id production. */
3613 if (nested_name_specifier_p)
3615 tree saved_scope;
3616 tree saved_object_scope;
3617 tree saved_qualifying_scope;
3618 tree unqualified_id;
3619 bool is_template;
3621 /* See if the next token is the `template' keyword. */
3622 if (!template_p)
3623 template_p = &is_template;
3624 *template_p = cp_parser_optional_template_keyword (parser);
3625 /* Name lookup we do during the processing of the
3626 unqualified-id might obliterate SCOPE. */
3627 saved_scope = parser->scope;
3628 saved_object_scope = parser->object_scope;
3629 saved_qualifying_scope = parser->qualifying_scope;
3630 /* Process the final unqualified-id. */
3631 unqualified_id = cp_parser_unqualified_id (parser, *template_p,
3632 check_dependency_p,
3633 declarator_p,
3634 /*optional_p=*/false);
3635 /* Restore the SAVED_SCOPE for our caller. */
3636 parser->scope = saved_scope;
3637 parser->object_scope = saved_object_scope;
3638 parser->qualifying_scope = saved_qualifying_scope;
3640 return unqualified_id;
3642 /* Otherwise, if we are in global scope, then we are looking at one
3643 of the other qualified-id productions. */
3644 else if (global_scope_p)
3646 cp_token *token;
3647 tree id;
3649 /* Peek at the next token. */
3650 token = cp_lexer_peek_token (parser->lexer);
3652 /* If it's an identifier, and the next token is not a "<", then
3653 we can avoid the template-id case. This is an optimization
3654 for this common case. */
3655 if (token->type == CPP_NAME
3656 && !cp_parser_nth_token_starts_template_argument_list_p
3657 (parser, 2))
3658 return cp_parser_identifier (parser);
3660 cp_parser_parse_tentatively (parser);
3661 /* Try a template-id. */
3662 id = cp_parser_template_id (parser,
3663 /*template_keyword_p=*/false,
3664 /*check_dependency_p=*/true,
3665 declarator_p);
3666 /* If that worked, we're done. */
3667 if (cp_parser_parse_definitely (parser))
3668 return id;
3670 /* Peek at the next token. (Changes in the token buffer may
3671 have invalidated the pointer obtained above.) */
3672 token = cp_lexer_peek_token (parser->lexer);
3674 switch (token->type)
3676 case CPP_NAME:
3677 return cp_parser_identifier (parser);
3679 case CPP_KEYWORD:
3680 if (token->keyword == RID_OPERATOR)
3681 return cp_parser_operator_function_id (parser);
3682 /* Fall through. */
3684 default:
3685 cp_parser_error (parser, "expected id-expression");
3686 return error_mark_node;
3689 else
3690 return cp_parser_unqualified_id (parser, template_keyword_p,
3691 /*check_dependency_p=*/true,
3692 declarator_p,
3693 optional_p);
3696 /* Parse an unqualified-id.
3698 unqualified-id:
3699 identifier
3700 operator-function-id
3701 conversion-function-id
3702 ~ class-name
3703 template-id
3705 If TEMPLATE_KEYWORD_P is TRUE, we have just seen the `template'
3706 keyword, in a construct like `A::template ...'.
3708 Returns a representation of unqualified-id. For the `identifier'
3709 production, an IDENTIFIER_NODE is returned. For the `~ class-name'
3710 production a BIT_NOT_EXPR is returned; the operand of the
3711 BIT_NOT_EXPR is an IDENTIFIER_NODE for the class-name. For the
3712 other productions, see the documentation accompanying the
3713 corresponding parsing functions. If CHECK_DEPENDENCY_P is false,
3714 names are looked up in uninstantiated templates. If DECLARATOR_P
3715 is true, the unqualified-id is appearing as part of a declarator,
3716 rather than as part of an expression. */
3718 static tree
3719 cp_parser_unqualified_id (cp_parser* parser,
3720 bool template_keyword_p,
3721 bool check_dependency_p,
3722 bool declarator_p,
3723 bool optional_p)
3725 cp_token *token;
3727 /* Peek at the next token. */
3728 token = cp_lexer_peek_token (parser->lexer);
3730 switch (token->type)
3732 case CPP_NAME:
3734 tree id;
3736 /* We don't know yet whether or not this will be a
3737 template-id. */
3738 cp_parser_parse_tentatively (parser);
3739 /* Try a template-id. */
3740 id = cp_parser_template_id (parser, template_keyword_p,
3741 check_dependency_p,
3742 declarator_p);
3743 /* If it worked, we're done. */
3744 if (cp_parser_parse_definitely (parser))
3745 return id;
3746 /* Otherwise, it's an ordinary identifier. */
3747 return cp_parser_identifier (parser);
3750 case CPP_TEMPLATE_ID:
3751 return cp_parser_template_id (parser, template_keyword_p,
3752 check_dependency_p,
3753 declarator_p);
3755 case CPP_COMPL:
3757 tree type_decl;
3758 tree qualifying_scope;
3759 tree object_scope;
3760 tree scope;
3761 bool done;
3763 /* Consume the `~' token. */
3764 cp_lexer_consume_token (parser->lexer);
3765 /* Parse the class-name. The standard, as written, seems to
3766 say that:
3768 template <typename T> struct S { ~S (); };
3769 template <typename T> S<T>::~S() {}
3771 is invalid, since `~' must be followed by a class-name, but
3772 `S<T>' is dependent, and so not known to be a class.
3773 That's not right; we need to look in uninstantiated
3774 templates. A further complication arises from:
3776 template <typename T> void f(T t) {
3777 t.T::~T();
3780 Here, it is not possible to look up `T' in the scope of `T'
3781 itself. We must look in both the current scope, and the
3782 scope of the containing complete expression.
3784 Yet another issue is:
3786 struct S {
3787 int S;
3788 ~S();
3791 S::~S() {}
3793 The standard does not seem to say that the `S' in `~S'
3794 should refer to the type `S' and not the data member
3795 `S::S'. */
3797 /* DR 244 says that we look up the name after the "~" in the
3798 same scope as we looked up the qualifying name. That idea
3799 isn't fully worked out; it's more complicated than that. */
3800 scope = parser->scope;
3801 object_scope = parser->object_scope;
3802 qualifying_scope = parser->qualifying_scope;
3804 /* Check for invalid scopes. */
3805 if (scope == error_mark_node)
3807 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
3808 cp_lexer_consume_token (parser->lexer);
3809 return error_mark_node;
3811 if (scope && TREE_CODE (scope) == NAMESPACE_DECL)
3813 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
3814 error ("%Hscope %qT before %<~%> is not a class-name",
3815 &token->location, scope);
3816 cp_parser_simulate_error (parser);
3817 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
3818 cp_lexer_consume_token (parser->lexer);
3819 return error_mark_node;
3821 gcc_assert (!scope || TYPE_P (scope));
3823 /* If the name is of the form "X::~X" it's OK. */
3824 token = cp_lexer_peek_token (parser->lexer);
3825 if (scope
3826 && token->type == CPP_NAME
3827 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
3828 == CPP_OPEN_PAREN)
3829 && constructor_name_p (token->u.value, scope))
3831 cp_lexer_consume_token (parser->lexer);
3832 return build_nt (BIT_NOT_EXPR, scope);
3835 /* If there was an explicit qualification (S::~T), first look
3836 in the scope given by the qualification (i.e., S). */
3837 done = false;
3838 type_decl = NULL_TREE;
3839 if (scope)
3841 cp_parser_parse_tentatively (parser);
3842 type_decl = cp_parser_class_name (parser,
3843 /*typename_keyword_p=*/false,
3844 /*template_keyword_p=*/false,
3845 none_type,
3846 /*check_dependency=*/false,
3847 /*class_head_p=*/false,
3848 declarator_p);
3849 if (cp_parser_parse_definitely (parser))
3850 done = true;
3852 /* In "N::S::~S", look in "N" as well. */
3853 if (!done && scope && qualifying_scope)
3855 cp_parser_parse_tentatively (parser);
3856 parser->scope = qualifying_scope;
3857 parser->object_scope = NULL_TREE;
3858 parser->qualifying_scope = NULL_TREE;
3859 type_decl
3860 = cp_parser_class_name (parser,
3861 /*typename_keyword_p=*/false,
3862 /*template_keyword_p=*/false,
3863 none_type,
3864 /*check_dependency=*/false,
3865 /*class_head_p=*/false,
3866 declarator_p);
3867 if (cp_parser_parse_definitely (parser))
3868 done = true;
3870 /* In "p->S::~T", look in the scope given by "*p" as well. */
3871 else if (!done && object_scope)
3873 cp_parser_parse_tentatively (parser);
3874 parser->scope = object_scope;
3875 parser->object_scope = NULL_TREE;
3876 parser->qualifying_scope = NULL_TREE;
3877 type_decl
3878 = cp_parser_class_name (parser,
3879 /*typename_keyword_p=*/false,
3880 /*template_keyword_p=*/false,
3881 none_type,
3882 /*check_dependency=*/false,
3883 /*class_head_p=*/false,
3884 declarator_p);
3885 if (cp_parser_parse_definitely (parser))
3886 done = true;
3888 /* Look in the surrounding context. */
3889 if (!done)
3891 parser->scope = NULL_TREE;
3892 parser->object_scope = NULL_TREE;
3893 parser->qualifying_scope = NULL_TREE;
3894 if (processing_template_decl)
3895 cp_parser_parse_tentatively (parser);
3896 type_decl
3897 = cp_parser_class_name (parser,
3898 /*typename_keyword_p=*/false,
3899 /*template_keyword_p=*/false,
3900 none_type,
3901 /*check_dependency=*/false,
3902 /*class_head_p=*/false,
3903 declarator_p);
3904 if (processing_template_decl
3905 && ! cp_parser_parse_definitely (parser))
3907 /* We couldn't find a type with this name, so just accept
3908 it and check for a match at instantiation time. */
3909 type_decl = cp_parser_identifier (parser);
3910 if (type_decl != error_mark_node)
3911 type_decl = build_nt (BIT_NOT_EXPR, type_decl);
3912 return type_decl;
3915 /* If an error occurred, assume that the name of the
3916 destructor is the same as the name of the qualifying
3917 class. That allows us to keep parsing after running
3918 into ill-formed destructor names. */
3919 if (type_decl == error_mark_node && scope)
3920 return build_nt (BIT_NOT_EXPR, scope);
3921 else if (type_decl == error_mark_node)
3922 return error_mark_node;
3924 /* Check that destructor name and scope match. */
3925 if (declarator_p && scope && !check_dtor_name (scope, type_decl))
3927 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
3928 error ("%Hdeclaration of %<~%T%> as member of %qT",
3929 &token->location, type_decl, scope);
3930 cp_parser_simulate_error (parser);
3931 return error_mark_node;
3934 /* [class.dtor]
3936 A typedef-name that names a class shall not be used as the
3937 identifier in the declarator for a destructor declaration. */
3938 if (declarator_p
3939 && !DECL_IMPLICIT_TYPEDEF_P (type_decl)
3940 && !DECL_SELF_REFERENCE_P (type_decl)
3941 && !cp_parser_uncommitted_to_tentative_parse_p (parser))
3942 error ("%Htypedef-name %qD used as destructor declarator",
3943 &token->location, type_decl);
3945 return build_nt (BIT_NOT_EXPR, TREE_TYPE (type_decl));
3948 case CPP_KEYWORD:
3949 if (token->keyword == RID_OPERATOR)
3951 tree id;
3953 /* This could be a template-id, so we try that first. */
3954 cp_parser_parse_tentatively (parser);
3955 /* Try a template-id. */
3956 id = cp_parser_template_id (parser, template_keyword_p,
3957 /*check_dependency_p=*/true,
3958 declarator_p);
3959 /* If that worked, we're done. */
3960 if (cp_parser_parse_definitely (parser))
3961 return id;
3962 /* We still don't know whether we're looking at an
3963 operator-function-id or a conversion-function-id. */
3964 cp_parser_parse_tentatively (parser);
3965 /* Try an operator-function-id. */
3966 id = cp_parser_operator_function_id (parser);
3967 /* If that didn't work, try a conversion-function-id. */
3968 if (!cp_parser_parse_definitely (parser))
3969 id = cp_parser_conversion_function_id (parser);
3971 return id;
3973 /* Fall through. */
3975 default:
3976 if (optional_p)
3977 return NULL_TREE;
3978 cp_parser_error (parser, "expected unqualified-id");
3979 return error_mark_node;
3983 /* Parse an (optional) nested-name-specifier.
3985 nested-name-specifier: [C++98]
3986 class-or-namespace-name :: nested-name-specifier [opt]
3987 class-or-namespace-name :: template nested-name-specifier [opt]
3989 nested-name-specifier: [C++0x]
3990 type-name ::
3991 namespace-name ::
3992 nested-name-specifier identifier ::
3993 nested-name-specifier template [opt] simple-template-id ::
3995 PARSER->SCOPE should be set appropriately before this function is
3996 called. TYPENAME_KEYWORD_P is TRUE if the `typename' keyword is in
3997 effect. TYPE_P is TRUE if we non-type bindings should be ignored
3998 in name lookups.
4000 Sets PARSER->SCOPE to the class (TYPE) or namespace
4001 (NAMESPACE_DECL) specified by the nested-name-specifier, or leaves
4002 it unchanged if there is no nested-name-specifier. Returns the new
4003 scope iff there is a nested-name-specifier, or NULL_TREE otherwise.
4005 If IS_DECLARATION is TRUE, the nested-name-specifier is known to be
4006 part of a declaration and/or decl-specifier. */
4008 static tree
4009 cp_parser_nested_name_specifier_opt (cp_parser *parser,
4010 bool typename_keyword_p,
4011 bool check_dependency_p,
4012 bool type_p,
4013 bool is_declaration)
4015 bool success = false;
4016 cp_token_position start = 0;
4017 cp_token *token;
4019 /* Remember where the nested-name-specifier starts. */
4020 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
4022 start = cp_lexer_token_position (parser->lexer, false);
4023 push_deferring_access_checks (dk_deferred);
4026 while (true)
4028 tree new_scope;
4029 tree old_scope;
4030 tree saved_qualifying_scope;
4031 bool template_keyword_p;
4033 /* Spot cases that cannot be the beginning of a
4034 nested-name-specifier. */
4035 token = cp_lexer_peek_token (parser->lexer);
4037 /* If the next token is CPP_NESTED_NAME_SPECIFIER, just process
4038 the already parsed nested-name-specifier. */
4039 if (token->type == CPP_NESTED_NAME_SPECIFIER)
4041 /* Grab the nested-name-specifier and continue the loop. */
4042 cp_parser_pre_parsed_nested_name_specifier (parser);
4043 /* If we originally encountered this nested-name-specifier
4044 with IS_DECLARATION set to false, we will not have
4045 resolved TYPENAME_TYPEs, so we must do so here. */
4046 if (is_declaration
4047 && TREE_CODE (parser->scope) == TYPENAME_TYPE)
4049 new_scope = resolve_typename_type (parser->scope,
4050 /*only_current_p=*/false);
4051 if (TREE_CODE (new_scope) != TYPENAME_TYPE)
4052 parser->scope = new_scope;
4054 success = true;
4055 continue;
4058 /* Spot cases that cannot be the beginning of a
4059 nested-name-specifier. On the second and subsequent times
4060 through the loop, we look for the `template' keyword. */
4061 if (success && token->keyword == RID_TEMPLATE)
4063 /* A template-id can start a nested-name-specifier. */
4064 else if (token->type == CPP_TEMPLATE_ID)
4066 else
4068 /* If the next token is not an identifier, then it is
4069 definitely not a type-name or namespace-name. */
4070 if (token->type != CPP_NAME)
4071 break;
4072 /* If the following token is neither a `<' (to begin a
4073 template-id), nor a `::', then we are not looking at a
4074 nested-name-specifier. */
4075 token = cp_lexer_peek_nth_token (parser->lexer, 2);
4076 if (token->type != CPP_SCOPE
4077 && !cp_parser_nth_token_starts_template_argument_list_p
4078 (parser, 2))
4079 break;
4082 /* The nested-name-specifier is optional, so we parse
4083 tentatively. */
4084 cp_parser_parse_tentatively (parser);
4086 /* Look for the optional `template' keyword, if this isn't the
4087 first time through the loop. */
4088 if (success)
4089 template_keyword_p = cp_parser_optional_template_keyword (parser);
4090 else
4091 template_keyword_p = false;
4093 /* Save the old scope since the name lookup we are about to do
4094 might destroy it. */
4095 old_scope = parser->scope;
4096 saved_qualifying_scope = parser->qualifying_scope;
4097 /* In a declarator-id like "X<T>::I::Y<T>" we must be able to
4098 look up names in "X<T>::I" in order to determine that "Y" is
4099 a template. So, if we have a typename at this point, we make
4100 an effort to look through it. */
4101 if (is_declaration
4102 && !typename_keyword_p
4103 && parser->scope
4104 && TREE_CODE (parser->scope) == TYPENAME_TYPE)
4105 parser->scope = resolve_typename_type (parser->scope,
4106 /*only_current_p=*/false);
4107 /* Parse the qualifying entity. */
4108 new_scope
4109 = cp_parser_qualifying_entity (parser,
4110 typename_keyword_p,
4111 template_keyword_p,
4112 check_dependency_p,
4113 type_p,
4114 is_declaration);
4115 /* Look for the `::' token. */
4116 cp_parser_require (parser, CPP_SCOPE, "%<::%>");
4118 /* If we found what we wanted, we keep going; otherwise, we're
4119 done. */
4120 if (!cp_parser_parse_definitely (parser))
4122 bool error_p = false;
4124 /* Restore the OLD_SCOPE since it was valid before the
4125 failed attempt at finding the last
4126 class-or-namespace-name. */
4127 parser->scope = old_scope;
4128 parser->qualifying_scope = saved_qualifying_scope;
4129 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
4130 break;
4131 /* If the next token is an identifier, and the one after
4132 that is a `::', then any valid interpretation would have
4133 found a class-or-namespace-name. */
4134 while (cp_lexer_next_token_is (parser->lexer, CPP_NAME)
4135 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
4136 == CPP_SCOPE)
4137 && (cp_lexer_peek_nth_token (parser->lexer, 3)->type
4138 != CPP_COMPL))
4140 token = cp_lexer_consume_token (parser->lexer);
4141 if (!error_p)
4143 if (!token->ambiguous_p)
4145 tree decl;
4146 tree ambiguous_decls;
4148 decl = cp_parser_lookup_name (parser, token->u.value,
4149 none_type,
4150 /*is_template=*/false,
4151 /*is_namespace=*/false,
4152 /*check_dependency=*/true,
4153 &ambiguous_decls,
4154 token->location);
4155 if (TREE_CODE (decl) == TEMPLATE_DECL)
4156 error ("%H%qD used without template parameters",
4157 &token->location, decl);
4158 else if (ambiguous_decls)
4160 error ("%Hreference to %qD is ambiguous",
4161 &token->location, token->u.value);
4162 print_candidates (ambiguous_decls);
4163 decl = error_mark_node;
4165 else
4167 const char* msg = "is not a class or namespace";
4168 if (cxx_dialect != cxx98)
4169 msg = "is not a class, namespace, or enumeration";
4170 cp_parser_name_lookup_error
4171 (parser, token->u.value, decl, msg,
4172 token->location);
4175 parser->scope = error_mark_node;
4176 error_p = true;
4177 /* Treat this as a successful nested-name-specifier
4178 due to:
4180 [basic.lookup.qual]
4182 If the name found is not a class-name (clause
4183 _class_) or namespace-name (_namespace.def_), the
4184 program is ill-formed. */
4185 success = true;
4187 cp_lexer_consume_token (parser->lexer);
4189 break;
4191 /* We've found one valid nested-name-specifier. */
4192 success = true;
4193 /* Name lookup always gives us a DECL. */
4194 if (TREE_CODE (new_scope) == TYPE_DECL)
4195 new_scope = TREE_TYPE (new_scope);
4196 /* Uses of "template" must be followed by actual templates. */
4197 if (template_keyword_p
4198 && !(CLASS_TYPE_P (new_scope)
4199 && ((CLASSTYPE_USE_TEMPLATE (new_scope)
4200 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (new_scope)))
4201 || CLASSTYPE_IS_TEMPLATE (new_scope)))
4202 && !(TREE_CODE (new_scope) == TYPENAME_TYPE
4203 && (TREE_CODE (TYPENAME_TYPE_FULLNAME (new_scope))
4204 == TEMPLATE_ID_EXPR)))
4205 permerror (input_location, TYPE_P (new_scope)
4206 ? "%qT is not a template"
4207 : "%qD is not a template",
4208 new_scope);
4209 /* If it is a class scope, try to complete it; we are about to
4210 be looking up names inside the class. */
4211 if (TYPE_P (new_scope)
4212 /* Since checking types for dependency can be expensive,
4213 avoid doing it if the type is already complete. */
4214 && !COMPLETE_TYPE_P (new_scope)
4215 /* Do not try to complete dependent types. */
4216 && !dependent_type_p (new_scope))
4218 new_scope = complete_type (new_scope);
4219 /* If it is a typedef to current class, use the current
4220 class instead, as the typedef won't have any names inside
4221 it yet. */
4222 if (!COMPLETE_TYPE_P (new_scope)
4223 && currently_open_class (new_scope))
4224 new_scope = TYPE_MAIN_VARIANT (new_scope);
4226 /* Make sure we look in the right scope the next time through
4227 the loop. */
4228 parser->scope = new_scope;
4231 /* If parsing tentatively, replace the sequence of tokens that makes
4232 up the nested-name-specifier with a CPP_NESTED_NAME_SPECIFIER
4233 token. That way, should we re-parse the token stream, we will
4234 not have to repeat the effort required to do the parse, nor will
4235 we issue duplicate error messages. */
4236 if (success && start)
4238 cp_token *token;
4240 token = cp_lexer_token_at (parser->lexer, start);
4241 /* Reset the contents of the START token. */
4242 token->type = CPP_NESTED_NAME_SPECIFIER;
4243 /* Retrieve any deferred checks. Do not pop this access checks yet
4244 so the memory will not be reclaimed during token replacing below. */
4245 token->u.tree_check_value = GGC_CNEW (struct tree_check);
4246 token->u.tree_check_value->value = parser->scope;
4247 token->u.tree_check_value->checks = get_deferred_access_checks ();
4248 token->u.tree_check_value->qualifying_scope =
4249 parser->qualifying_scope;
4250 token->keyword = RID_MAX;
4252 /* Purge all subsequent tokens. */
4253 cp_lexer_purge_tokens_after (parser->lexer, start);
4256 if (start)
4257 pop_to_parent_deferring_access_checks ();
4259 return success ? parser->scope : NULL_TREE;
4262 /* Parse a nested-name-specifier. See
4263 cp_parser_nested_name_specifier_opt for details. This function
4264 behaves identically, except that it will an issue an error if no
4265 nested-name-specifier is present. */
4267 static tree
4268 cp_parser_nested_name_specifier (cp_parser *parser,
4269 bool typename_keyword_p,
4270 bool check_dependency_p,
4271 bool type_p,
4272 bool is_declaration)
4274 tree scope;
4276 /* Look for the nested-name-specifier. */
4277 scope = cp_parser_nested_name_specifier_opt (parser,
4278 typename_keyword_p,
4279 check_dependency_p,
4280 type_p,
4281 is_declaration);
4282 /* If it was not present, issue an error message. */
4283 if (!scope)
4285 cp_parser_error (parser, "expected nested-name-specifier");
4286 parser->scope = NULL_TREE;
4289 return scope;
4292 /* Parse the qualifying entity in a nested-name-specifier. For C++98,
4293 this is either a class-name or a namespace-name (which corresponds
4294 to the class-or-namespace-name production in the grammar). For
4295 C++0x, it can also be a type-name that refers to an enumeration
4296 type.
4298 TYPENAME_KEYWORD_P is TRUE iff the `typename' keyword is in effect.
4299 TEMPLATE_KEYWORD_P is TRUE iff the `template' keyword is in effect.
4300 CHECK_DEPENDENCY_P is FALSE iff dependent names should be looked up.
4301 TYPE_P is TRUE iff the next name should be taken as a class-name,
4302 even the same name is declared to be another entity in the same
4303 scope.
4305 Returns the class (TYPE_DECL) or namespace (NAMESPACE_DECL)
4306 specified by the class-or-namespace-name. If neither is found the
4307 ERROR_MARK_NODE is returned. */
4309 static tree
4310 cp_parser_qualifying_entity (cp_parser *parser,
4311 bool typename_keyword_p,
4312 bool template_keyword_p,
4313 bool check_dependency_p,
4314 bool type_p,
4315 bool is_declaration)
4317 tree saved_scope;
4318 tree saved_qualifying_scope;
4319 tree saved_object_scope;
4320 tree scope;
4321 bool only_class_p;
4322 bool successful_parse_p;
4324 /* Before we try to parse the class-name, we must save away the
4325 current PARSER->SCOPE since cp_parser_class_name will destroy
4326 it. */
4327 saved_scope = parser->scope;
4328 saved_qualifying_scope = parser->qualifying_scope;
4329 saved_object_scope = parser->object_scope;
4330 /* Try for a class-name first. If the SAVED_SCOPE is a type, then
4331 there is no need to look for a namespace-name. */
4332 only_class_p = template_keyword_p
4333 || (saved_scope && TYPE_P (saved_scope) && cxx_dialect == cxx98);
4334 if (!only_class_p)
4335 cp_parser_parse_tentatively (parser);
4336 scope = cp_parser_class_name (parser,
4337 typename_keyword_p,
4338 template_keyword_p,
4339 type_p ? class_type : none_type,
4340 check_dependency_p,
4341 /*class_head_p=*/false,
4342 is_declaration);
4343 successful_parse_p = only_class_p || cp_parser_parse_definitely (parser);
4344 /* If that didn't work and we're in C++0x mode, try for a type-name. */
4345 if (!only_class_p
4346 && cxx_dialect != cxx98
4347 && !successful_parse_p)
4349 /* Restore the saved scope. */
4350 parser->scope = saved_scope;
4351 parser->qualifying_scope = saved_qualifying_scope;
4352 parser->object_scope = saved_object_scope;
4354 /* Parse tentatively. */
4355 cp_parser_parse_tentatively (parser);
4357 /* Parse a typedef-name or enum-name. */
4358 scope = cp_parser_nonclass_name (parser);
4359 successful_parse_p = cp_parser_parse_definitely (parser);
4361 /* If that didn't work, try for a namespace-name. */
4362 if (!only_class_p && !successful_parse_p)
4364 /* Restore the saved scope. */
4365 parser->scope = saved_scope;
4366 parser->qualifying_scope = saved_qualifying_scope;
4367 parser->object_scope = saved_object_scope;
4368 /* If we are not looking at an identifier followed by the scope
4369 resolution operator, then this is not part of a
4370 nested-name-specifier. (Note that this function is only used
4371 to parse the components of a nested-name-specifier.) */
4372 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NAME)
4373 || cp_lexer_peek_nth_token (parser->lexer, 2)->type != CPP_SCOPE)
4374 return error_mark_node;
4375 scope = cp_parser_namespace_name (parser);
4378 return scope;
4381 /* Parse a postfix-expression.
4383 postfix-expression:
4384 primary-expression
4385 postfix-expression [ expression ]
4386 postfix-expression ( expression-list [opt] )
4387 simple-type-specifier ( expression-list [opt] )
4388 typename :: [opt] nested-name-specifier identifier
4389 ( expression-list [opt] )
4390 typename :: [opt] nested-name-specifier template [opt] template-id
4391 ( expression-list [opt] )
4392 postfix-expression . template [opt] id-expression
4393 postfix-expression -> template [opt] id-expression
4394 postfix-expression . pseudo-destructor-name
4395 postfix-expression -> pseudo-destructor-name
4396 postfix-expression ++
4397 postfix-expression --
4398 dynamic_cast < type-id > ( expression )
4399 static_cast < type-id > ( expression )
4400 reinterpret_cast < type-id > ( expression )
4401 const_cast < type-id > ( expression )
4402 typeid ( expression )
4403 typeid ( type-id )
4405 GNU Extension:
4407 postfix-expression:
4408 ( type-id ) { initializer-list , [opt] }
4410 This extension is a GNU version of the C99 compound-literal
4411 construct. (The C99 grammar uses `type-name' instead of `type-id',
4412 but they are essentially the same concept.)
4414 If ADDRESS_P is true, the postfix expression is the operand of the
4415 `&' operator. CAST_P is true if this expression is the target of a
4416 cast.
4418 If MEMBER_ACCESS_ONLY_P, we only allow postfix expressions that are
4419 class member access expressions [expr.ref].
4421 Returns a representation of the expression. */
4423 static tree
4424 cp_parser_postfix_expression (cp_parser *parser, bool address_p, bool cast_p,
4425 bool member_access_only_p,
4426 cp_id_kind * pidk_return)
4428 cp_token *token;
4429 enum rid keyword;
4430 cp_id_kind idk = CP_ID_KIND_NONE;
4431 tree postfix_expression = NULL_TREE;
4432 bool is_member_access = false;
4434 /* Peek at the next token. */
4435 token = cp_lexer_peek_token (parser->lexer);
4436 /* Some of the productions are determined by keywords. */
4437 keyword = token->keyword;
4438 switch (keyword)
4440 case RID_DYNCAST:
4441 case RID_STATCAST:
4442 case RID_REINTCAST:
4443 case RID_CONSTCAST:
4445 tree type;
4446 tree expression;
4447 const char *saved_message;
4449 /* All of these can be handled in the same way from the point
4450 of view of parsing. Begin by consuming the token
4451 identifying the cast. */
4452 cp_lexer_consume_token (parser->lexer);
4454 /* New types cannot be defined in the cast. */
4455 saved_message = parser->type_definition_forbidden_message;
4456 parser->type_definition_forbidden_message
4457 = "types may not be defined in casts";
4459 /* Look for the opening `<'. */
4460 cp_parser_require (parser, CPP_LESS, "%<<%>");
4461 /* Parse the type to which we are casting. */
4462 type = cp_parser_type_id (parser);
4463 /* Look for the closing `>'. */
4464 cp_parser_require (parser, CPP_GREATER, "%<>%>");
4465 /* Restore the old message. */
4466 parser->type_definition_forbidden_message = saved_message;
4468 /* And the expression which is being cast. */
4469 cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>");
4470 expression = cp_parser_expression (parser, /*cast_p=*/true, & idk);
4471 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
4473 /* Only type conversions to integral or enumeration types
4474 can be used in constant-expressions. */
4475 if (!cast_valid_in_integral_constant_expression_p (type)
4476 && (cp_parser_non_integral_constant_expression
4477 (parser,
4478 "a cast to a type other than an integral or "
4479 "enumeration type")))
4480 return error_mark_node;
4482 switch (keyword)
4484 case RID_DYNCAST:
4485 postfix_expression
4486 = build_dynamic_cast (type, expression, tf_warning_or_error);
4487 break;
4488 case RID_STATCAST:
4489 postfix_expression
4490 = build_static_cast (type, expression, tf_warning_or_error);
4491 break;
4492 case RID_REINTCAST:
4493 postfix_expression
4494 = build_reinterpret_cast (type, expression,
4495 tf_warning_or_error);
4496 break;
4497 case RID_CONSTCAST:
4498 postfix_expression
4499 = build_const_cast (type, expression, tf_warning_or_error);
4500 break;
4501 default:
4502 gcc_unreachable ();
4505 break;
4507 case RID_TYPEID:
4509 tree type;
4510 const char *saved_message;
4511 bool saved_in_type_id_in_expr_p;
4513 /* Consume the `typeid' token. */
4514 cp_lexer_consume_token (parser->lexer);
4515 /* Look for the `(' token. */
4516 cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>");
4517 /* Types cannot be defined in a `typeid' expression. */
4518 saved_message = parser->type_definition_forbidden_message;
4519 parser->type_definition_forbidden_message
4520 = "types may not be defined in a %<typeid%> expression";
4521 /* We can't be sure yet whether we're looking at a type-id or an
4522 expression. */
4523 cp_parser_parse_tentatively (parser);
4524 /* Try a type-id first. */
4525 saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
4526 parser->in_type_id_in_expr_p = true;
4527 type = cp_parser_type_id (parser);
4528 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
4529 /* Look for the `)' token. Otherwise, we can't be sure that
4530 we're not looking at an expression: consider `typeid (int
4531 (3))', for example. */
4532 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
4533 /* If all went well, simply lookup the type-id. */
4534 if (cp_parser_parse_definitely (parser))
4535 postfix_expression = get_typeid (type);
4536 /* Otherwise, fall back to the expression variant. */
4537 else
4539 tree expression;
4541 /* Look for an expression. */
4542 expression = cp_parser_expression (parser, /*cast_p=*/false, & idk);
4543 /* Compute its typeid. */
4544 postfix_expression = build_typeid (expression);
4545 /* Look for the `)' token. */
4546 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
4548 /* Restore the saved message. */
4549 parser->type_definition_forbidden_message = saved_message;
4550 /* `typeid' may not appear in an integral constant expression. */
4551 if (cp_parser_non_integral_constant_expression(parser,
4552 "%<typeid%> operator"))
4553 return error_mark_node;
4555 break;
4557 case RID_TYPENAME:
4559 tree type;
4560 /* The syntax permitted here is the same permitted for an
4561 elaborated-type-specifier. */
4562 type = cp_parser_elaborated_type_specifier (parser,
4563 /*is_friend=*/false,
4564 /*is_declaration=*/false);
4565 postfix_expression = cp_parser_functional_cast (parser, type);
4567 break;
4569 default:
4571 tree type;
4573 /* If the next thing is a simple-type-specifier, we may be
4574 looking at a functional cast. We could also be looking at
4575 an id-expression. So, we try the functional cast, and if
4576 that doesn't work we fall back to the primary-expression. */
4577 cp_parser_parse_tentatively (parser);
4578 /* Look for the simple-type-specifier. */
4579 type = cp_parser_simple_type_specifier (parser,
4580 /*decl_specs=*/NULL,
4581 CP_PARSER_FLAGS_NONE);
4582 /* Parse the cast itself. */
4583 if (!cp_parser_error_occurred (parser))
4584 postfix_expression
4585 = cp_parser_functional_cast (parser, type);
4586 /* If that worked, we're done. */
4587 if (cp_parser_parse_definitely (parser))
4588 break;
4590 /* If the functional-cast didn't work out, try a
4591 compound-literal. */
4592 if (cp_parser_allow_gnu_extensions_p (parser)
4593 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
4595 VEC(constructor_elt,gc) *initializer_list = NULL;
4596 bool saved_in_type_id_in_expr_p;
4598 cp_parser_parse_tentatively (parser);
4599 /* Consume the `('. */
4600 cp_lexer_consume_token (parser->lexer);
4601 /* Parse the type. */
4602 saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
4603 parser->in_type_id_in_expr_p = true;
4604 type = cp_parser_type_id (parser);
4605 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
4606 /* Look for the `)'. */
4607 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
4608 /* Look for the `{'. */
4609 cp_parser_require (parser, CPP_OPEN_BRACE, "%<{%>");
4610 /* If things aren't going well, there's no need to
4611 keep going. */
4612 if (!cp_parser_error_occurred (parser))
4614 bool non_constant_p;
4615 /* Parse the initializer-list. */
4616 initializer_list
4617 = cp_parser_initializer_list (parser, &non_constant_p);
4618 /* Allow a trailing `,'. */
4619 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
4620 cp_lexer_consume_token (parser->lexer);
4621 /* Look for the final `}'. */
4622 cp_parser_require (parser, CPP_CLOSE_BRACE, "%<}%>");
4624 /* If that worked, we're definitely looking at a
4625 compound-literal expression. */
4626 if (cp_parser_parse_definitely (parser))
4628 /* Warn the user that a compound literal is not
4629 allowed in standard C++. */
4630 pedwarn (input_location, OPT_pedantic, "ISO C++ forbids compound-literals");
4631 /* For simplicity, we disallow compound literals in
4632 constant-expressions. We could
4633 allow compound literals of integer type, whose
4634 initializer was a constant, in constant
4635 expressions. Permitting that usage, as a further
4636 extension, would not change the meaning of any
4637 currently accepted programs. (Of course, as
4638 compound literals are not part of ISO C++, the
4639 standard has nothing to say.) */
4640 if (cp_parser_non_integral_constant_expression
4641 (parser, "non-constant compound literals"))
4643 postfix_expression = error_mark_node;
4644 break;
4646 /* Form the representation of the compound-literal. */
4647 postfix_expression
4648 = (finish_compound_literal
4649 (type, build_constructor (init_list_type_node,
4650 initializer_list)));
4651 break;
4655 /* It must be a primary-expression. */
4656 postfix_expression
4657 = cp_parser_primary_expression (parser, address_p, cast_p,
4658 /*template_arg_p=*/false,
4659 &idk);
4661 break;
4664 /* Keep looping until the postfix-expression is complete. */
4665 while (true)
4667 if (idk == CP_ID_KIND_UNQUALIFIED
4668 && TREE_CODE (postfix_expression) == IDENTIFIER_NODE
4669 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_PAREN))
4670 /* It is not a Koenig lookup function call. */
4671 postfix_expression
4672 = unqualified_name_lookup_error (postfix_expression);
4674 /* Peek at the next token. */
4675 token = cp_lexer_peek_token (parser->lexer);
4677 switch (token->type)
4679 case CPP_OPEN_SQUARE:
4680 postfix_expression
4681 = cp_parser_postfix_open_square_expression (parser,
4682 postfix_expression,
4683 false);
4684 idk = CP_ID_KIND_NONE;
4685 is_member_access = false;
4686 break;
4688 case CPP_OPEN_PAREN:
4689 /* postfix-expression ( expression-list [opt] ) */
4691 bool koenig_p;
4692 bool is_builtin_constant_p;
4693 bool saved_integral_constant_expression_p = false;
4694 bool saved_non_integral_constant_expression_p = false;
4695 tree args;
4697 is_member_access = false;
4699 is_builtin_constant_p
4700 = DECL_IS_BUILTIN_CONSTANT_P (postfix_expression);
4701 if (is_builtin_constant_p)
4703 /* The whole point of __builtin_constant_p is to allow
4704 non-constant expressions to appear as arguments. */
4705 saved_integral_constant_expression_p
4706 = parser->integral_constant_expression_p;
4707 saved_non_integral_constant_expression_p
4708 = parser->non_integral_constant_expression_p;
4709 parser->integral_constant_expression_p = false;
4711 args = (cp_parser_parenthesized_expression_list
4712 (parser, /*is_attribute_list=*/false,
4713 /*cast_p=*/false, /*allow_expansion_p=*/true,
4714 /*non_constant_p=*/NULL));
4715 if (is_builtin_constant_p)
4717 parser->integral_constant_expression_p
4718 = saved_integral_constant_expression_p;
4719 parser->non_integral_constant_expression_p
4720 = saved_non_integral_constant_expression_p;
4723 if (args == error_mark_node)
4725 postfix_expression = error_mark_node;
4726 break;
4729 /* Function calls are not permitted in
4730 constant-expressions. */
4731 if (! builtin_valid_in_constant_expr_p (postfix_expression)
4732 && cp_parser_non_integral_constant_expression (parser,
4733 "a function call"))
4735 postfix_expression = error_mark_node;
4736 break;
4739 koenig_p = false;
4740 if (idk == CP_ID_KIND_UNQUALIFIED
4741 || idk == CP_ID_KIND_TEMPLATE_ID)
4743 if (TREE_CODE (postfix_expression) == IDENTIFIER_NODE)
4745 if (args)
4747 koenig_p = true;
4748 if (!any_type_dependent_arguments_p (args))
4749 postfix_expression
4750 = perform_koenig_lookup (postfix_expression, args);
4752 else
4753 postfix_expression
4754 = unqualified_fn_lookup_error (postfix_expression);
4756 /* We do not perform argument-dependent lookup if
4757 normal lookup finds a non-function, in accordance
4758 with the expected resolution of DR 218. */
4759 else if (args && is_overloaded_fn (postfix_expression))
4761 tree fn = get_first_fn (postfix_expression);
4763 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
4764 fn = OVL_CURRENT (TREE_OPERAND (fn, 0));
4766 /* Only do argument dependent lookup if regular
4767 lookup does not find a set of member functions.
4768 [basic.lookup.koenig]/2a */
4769 if (!DECL_FUNCTION_MEMBER_P (fn))
4771 koenig_p = true;
4772 if (!any_type_dependent_arguments_p (args))
4773 postfix_expression
4774 = perform_koenig_lookup (postfix_expression, args);
4779 if (TREE_CODE (postfix_expression) == COMPONENT_REF)
4781 tree instance = TREE_OPERAND (postfix_expression, 0);
4782 tree fn = TREE_OPERAND (postfix_expression, 1);
4784 if (processing_template_decl
4785 && (type_dependent_expression_p (instance)
4786 || (!BASELINK_P (fn)
4787 && TREE_CODE (fn) != FIELD_DECL)
4788 || type_dependent_expression_p (fn)
4789 || any_type_dependent_arguments_p (args)))
4791 postfix_expression
4792 = build_nt_call_list (postfix_expression, args);
4793 break;
4796 if (BASELINK_P (fn))
4798 postfix_expression
4799 = (build_new_method_call
4800 (instance, fn, args, NULL_TREE,
4801 (idk == CP_ID_KIND_QUALIFIED
4802 ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL),
4803 /*fn_p=*/NULL,
4804 tf_warning_or_error));
4806 else
4807 postfix_expression
4808 = finish_call_expr (postfix_expression, args,
4809 /*disallow_virtual=*/false,
4810 /*koenig_p=*/false,
4811 tf_warning_or_error);
4813 else if (TREE_CODE (postfix_expression) == OFFSET_REF
4814 || TREE_CODE (postfix_expression) == MEMBER_REF
4815 || TREE_CODE (postfix_expression) == DOTSTAR_EXPR)
4816 postfix_expression = (build_offset_ref_call_from_tree
4817 (postfix_expression, args));
4818 else if (idk == CP_ID_KIND_QUALIFIED)
4819 /* A call to a static class member, or a namespace-scope
4820 function. */
4821 postfix_expression
4822 = finish_call_expr (postfix_expression, args,
4823 /*disallow_virtual=*/true,
4824 koenig_p,
4825 tf_warning_or_error);
4826 else
4827 /* All other function calls. */
4828 postfix_expression
4829 = finish_call_expr (postfix_expression, args,
4830 /*disallow_virtual=*/false,
4831 koenig_p,
4832 tf_warning_or_error);
4834 /* The POSTFIX_EXPRESSION is certainly no longer an id. */
4835 idk = CP_ID_KIND_NONE;
4837 break;
4839 case CPP_DOT:
4840 case CPP_DEREF:
4841 /* postfix-expression . template [opt] id-expression
4842 postfix-expression . pseudo-destructor-name
4843 postfix-expression -> template [opt] id-expression
4844 postfix-expression -> pseudo-destructor-name */
4846 /* Consume the `.' or `->' operator. */
4847 cp_lexer_consume_token (parser->lexer);
4849 postfix_expression
4850 = cp_parser_postfix_dot_deref_expression (parser, token->type,
4851 postfix_expression,
4852 false, &idk,
4853 token->location);
4855 is_member_access = true;
4856 break;
4858 case CPP_PLUS_PLUS:
4859 /* postfix-expression ++ */
4860 /* Consume the `++' token. */
4861 cp_lexer_consume_token (parser->lexer);
4862 /* Generate a representation for the complete expression. */
4863 postfix_expression
4864 = finish_increment_expr (postfix_expression,
4865 POSTINCREMENT_EXPR);
4866 /* Increments may not appear in constant-expressions. */
4867 if (cp_parser_non_integral_constant_expression (parser,
4868 "an increment"))
4869 postfix_expression = error_mark_node;
4870 idk = CP_ID_KIND_NONE;
4871 is_member_access = false;
4872 break;
4874 case CPP_MINUS_MINUS:
4875 /* postfix-expression -- */
4876 /* Consume the `--' token. */
4877 cp_lexer_consume_token (parser->lexer);
4878 /* Generate a representation for the complete expression. */
4879 postfix_expression
4880 = finish_increment_expr (postfix_expression,
4881 POSTDECREMENT_EXPR);
4882 /* Decrements may not appear in constant-expressions. */
4883 if (cp_parser_non_integral_constant_expression (parser,
4884 "a decrement"))
4885 postfix_expression = error_mark_node;
4886 idk = CP_ID_KIND_NONE;
4887 is_member_access = false;
4888 break;
4890 default:
4891 if (pidk_return != NULL)
4892 * pidk_return = idk;
4893 if (member_access_only_p)
4894 return is_member_access? postfix_expression : error_mark_node;
4895 else
4896 return postfix_expression;
4900 /* We should never get here. */
4901 gcc_unreachable ();
4902 return error_mark_node;
4905 /* A subroutine of cp_parser_postfix_expression that also gets hijacked
4906 by cp_parser_builtin_offsetof. We're looking for
4908 postfix-expression [ expression ]
4910 FOR_OFFSETOF is set if we're being called in that context, which
4911 changes how we deal with integer constant expressions. */
4913 static tree
4914 cp_parser_postfix_open_square_expression (cp_parser *parser,
4915 tree postfix_expression,
4916 bool for_offsetof)
4918 tree index;
4920 /* Consume the `[' token. */
4921 cp_lexer_consume_token (parser->lexer);
4923 /* Parse the index expression. */
4924 /* ??? For offsetof, there is a question of what to allow here. If
4925 offsetof is not being used in an integral constant expression context,
4926 then we *could* get the right answer by computing the value at runtime.
4927 If we are in an integral constant expression context, then we might
4928 could accept any constant expression; hard to say without analysis.
4929 Rather than open the barn door too wide right away, allow only integer
4930 constant expressions here. */
4931 if (for_offsetof)
4932 index = cp_parser_constant_expression (parser, false, NULL);
4933 else
4934 index = cp_parser_expression (parser, /*cast_p=*/false, NULL);
4936 /* Look for the closing `]'. */
4937 cp_parser_require (parser, CPP_CLOSE_SQUARE, "%<]%>");
4939 /* Build the ARRAY_REF. */
4940 postfix_expression = grok_array_decl (postfix_expression, index);
4942 /* When not doing offsetof, array references are not permitted in
4943 constant-expressions. */
4944 if (!for_offsetof
4945 && (cp_parser_non_integral_constant_expression
4946 (parser, "an array reference")))
4947 postfix_expression = error_mark_node;
4949 return postfix_expression;
4952 /* A subroutine of cp_parser_postfix_expression that also gets hijacked
4953 by cp_parser_builtin_offsetof. We're looking for
4955 postfix-expression . template [opt] id-expression
4956 postfix-expression . pseudo-destructor-name
4957 postfix-expression -> template [opt] id-expression
4958 postfix-expression -> pseudo-destructor-name
4960 FOR_OFFSETOF is set if we're being called in that context. That sorta
4961 limits what of the above we'll actually accept, but nevermind.
4962 TOKEN_TYPE is the "." or "->" token, which will already have been
4963 removed from the stream. */
4965 static tree
4966 cp_parser_postfix_dot_deref_expression (cp_parser *parser,
4967 enum cpp_ttype token_type,
4968 tree postfix_expression,
4969 bool for_offsetof, cp_id_kind *idk,
4970 location_t location)
4972 tree name;
4973 bool dependent_p;
4974 bool pseudo_destructor_p;
4975 tree scope = NULL_TREE;
4977 /* If this is a `->' operator, dereference the pointer. */
4978 if (token_type == CPP_DEREF)
4979 postfix_expression = build_x_arrow (postfix_expression);
4980 /* Check to see whether or not the expression is type-dependent. */
4981 dependent_p = type_dependent_expression_p (postfix_expression);
4982 /* The identifier following the `->' or `.' is not qualified. */
4983 parser->scope = NULL_TREE;
4984 parser->qualifying_scope = NULL_TREE;
4985 parser->object_scope = NULL_TREE;
4986 *idk = CP_ID_KIND_NONE;
4988 /* Enter the scope corresponding to the type of the object
4989 given by the POSTFIX_EXPRESSION. */
4990 if (!dependent_p && TREE_TYPE (postfix_expression) != NULL_TREE)
4992 scope = TREE_TYPE (postfix_expression);
4993 /* According to the standard, no expression should ever have
4994 reference type. Unfortunately, we do not currently match
4995 the standard in this respect in that our internal representation
4996 of an expression may have reference type even when the standard
4997 says it does not. Therefore, we have to manually obtain the
4998 underlying type here. */
4999 scope = non_reference (scope);
5000 /* The type of the POSTFIX_EXPRESSION must be complete. */
5001 if (scope == unknown_type_node)
5003 error ("%H%qE does not have class type", &location, postfix_expression);
5004 scope = NULL_TREE;
5006 else
5007 scope = complete_type_or_else (scope, NULL_TREE);
5008 /* Let the name lookup machinery know that we are processing a
5009 class member access expression. */
5010 parser->context->object_type = scope;
5011 /* If something went wrong, we want to be able to discern that case,
5012 as opposed to the case where there was no SCOPE due to the type
5013 of expression being dependent. */
5014 if (!scope)
5015 scope = error_mark_node;
5016 /* If the SCOPE was erroneous, make the various semantic analysis
5017 functions exit quickly -- and without issuing additional error
5018 messages. */
5019 if (scope == error_mark_node)
5020 postfix_expression = error_mark_node;
5023 /* Assume this expression is not a pseudo-destructor access. */
5024 pseudo_destructor_p = false;
5026 /* If the SCOPE is a scalar type, then, if this is a valid program,
5027 we must be looking at a pseudo-destructor-name. If POSTFIX_EXPRESSION
5028 is type dependent, it can be pseudo-destructor-name or something else.
5029 Try to parse it as pseudo-destructor-name first. */
5030 if ((scope && SCALAR_TYPE_P (scope)) || dependent_p)
5032 tree s;
5033 tree type;
5035 cp_parser_parse_tentatively (parser);
5036 /* Parse the pseudo-destructor-name. */
5037 s = NULL_TREE;
5038 cp_parser_pseudo_destructor_name (parser, &s, &type);
5039 if (dependent_p
5040 && (cp_parser_error_occurred (parser)
5041 || TREE_CODE (type) != TYPE_DECL
5042 || !SCALAR_TYPE_P (TREE_TYPE (type))))
5043 cp_parser_abort_tentative_parse (parser);
5044 else if (cp_parser_parse_definitely (parser))
5046 pseudo_destructor_p = true;
5047 postfix_expression
5048 = finish_pseudo_destructor_expr (postfix_expression,
5049 s, TREE_TYPE (type));
5053 if (!pseudo_destructor_p)
5055 /* If the SCOPE is not a scalar type, we are looking at an
5056 ordinary class member access expression, rather than a
5057 pseudo-destructor-name. */
5058 bool template_p;
5059 cp_token *token = cp_lexer_peek_token (parser->lexer);
5060 /* Parse the id-expression. */
5061 name = (cp_parser_id_expression
5062 (parser,
5063 cp_parser_optional_template_keyword (parser),
5064 /*check_dependency_p=*/true,
5065 &template_p,
5066 /*declarator_p=*/false,
5067 /*optional_p=*/false));
5068 /* In general, build a SCOPE_REF if the member name is qualified.
5069 However, if the name was not dependent and has already been
5070 resolved; there is no need to build the SCOPE_REF. For example;
5072 struct X { void f(); };
5073 template <typename T> void f(T* t) { t->X::f(); }
5075 Even though "t" is dependent, "X::f" is not and has been resolved
5076 to a BASELINK; there is no need to include scope information. */
5078 /* But we do need to remember that there was an explicit scope for
5079 virtual function calls. */
5080 if (parser->scope)
5081 *idk = CP_ID_KIND_QUALIFIED;
5083 /* If the name is a template-id that names a type, we will get a
5084 TYPE_DECL here. That is invalid code. */
5085 if (TREE_CODE (name) == TYPE_DECL)
5087 error ("%Hinvalid use of %qD", &token->location, name);
5088 postfix_expression = error_mark_node;
5090 else
5092 if (name != error_mark_node && !BASELINK_P (name) && parser->scope)
5094 name = build_qualified_name (/*type=*/NULL_TREE,
5095 parser->scope,
5096 name,
5097 template_p);
5098 parser->scope = NULL_TREE;
5099 parser->qualifying_scope = NULL_TREE;
5100 parser->object_scope = NULL_TREE;
5102 if (scope && name && BASELINK_P (name))
5103 adjust_result_of_qualified_name_lookup
5104 (name, BINFO_TYPE (BASELINK_ACCESS_BINFO (name)), scope);
5105 postfix_expression
5106 = finish_class_member_access_expr (postfix_expression, name,
5107 template_p,
5108 tf_warning_or_error);
5112 /* We no longer need to look up names in the scope of the object on
5113 the left-hand side of the `.' or `->' operator. */
5114 parser->context->object_type = NULL_TREE;
5116 /* Outside of offsetof, these operators may not appear in
5117 constant-expressions. */
5118 if (!for_offsetof
5119 && (cp_parser_non_integral_constant_expression
5120 (parser, token_type == CPP_DEREF ? "%<->%>" : "%<.%>")))
5121 postfix_expression = error_mark_node;
5123 return postfix_expression;
5126 /* Parse a parenthesized expression-list.
5128 expression-list:
5129 assignment-expression
5130 expression-list, assignment-expression
5132 attribute-list:
5133 expression-list
5134 identifier
5135 identifier, expression-list
5137 CAST_P is true if this expression is the target of a cast.
5139 ALLOW_EXPANSION_P is true if this expression allows expansion of an
5140 argument pack.
5142 Returns a TREE_LIST. The TREE_VALUE of each node is a
5143 representation of an assignment-expression. Note that a TREE_LIST
5144 is returned even if there is only a single expression in the list.
5145 error_mark_node is returned if the ( and or ) are
5146 missing. NULL_TREE is returned on no expressions. The parentheses
5147 are eaten. IS_ATTRIBUTE_LIST is true if this is really an attribute
5148 list being parsed. If NON_CONSTANT_P is non-NULL, *NON_CONSTANT_P
5149 indicates whether or not all of the expressions in the list were
5150 constant. */
5152 static tree
5153 cp_parser_parenthesized_expression_list (cp_parser* parser,
5154 bool is_attribute_list,
5155 bool cast_p,
5156 bool allow_expansion_p,
5157 bool *non_constant_p)
5159 tree expression_list = NULL_TREE;
5160 bool fold_expr_p = is_attribute_list;
5161 tree identifier = NULL_TREE;
5162 bool saved_greater_than_is_operator_p;
5164 /* Assume all the expressions will be constant. */
5165 if (non_constant_p)
5166 *non_constant_p = false;
5168 if (!cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>"))
5169 return error_mark_node;
5171 /* Within a parenthesized expression, a `>' token is always
5172 the greater-than operator. */
5173 saved_greater_than_is_operator_p
5174 = parser->greater_than_is_operator_p;
5175 parser->greater_than_is_operator_p = true;
5177 /* Consume expressions until there are no more. */
5178 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN))
5179 while (true)
5181 tree expr;
5183 /* At the beginning of attribute lists, check to see if the
5184 next token is an identifier. */
5185 if (is_attribute_list
5186 && cp_lexer_peek_token (parser->lexer)->type == CPP_NAME)
5188 cp_token *token;
5190 /* Consume the identifier. */
5191 token = cp_lexer_consume_token (parser->lexer);
5192 /* Save the identifier. */
5193 identifier = token->u.value;
5195 else
5197 bool expr_non_constant_p;
5199 /* Parse the next assignment-expression. */
5200 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
5202 /* A braced-init-list. */
5203 maybe_warn_cpp0x ("extended initializer lists");
5204 expr = cp_parser_braced_list (parser, &expr_non_constant_p);
5205 if (non_constant_p && expr_non_constant_p)
5206 *non_constant_p = true;
5208 else if (non_constant_p)
5210 expr = (cp_parser_constant_expression
5211 (parser, /*allow_non_constant_p=*/true,
5212 &expr_non_constant_p));
5213 if (expr_non_constant_p)
5214 *non_constant_p = true;
5216 else
5217 expr = cp_parser_assignment_expression (parser, cast_p, NULL);
5219 if (fold_expr_p)
5220 expr = fold_non_dependent_expr (expr);
5222 /* If we have an ellipsis, then this is an expression
5223 expansion. */
5224 if (allow_expansion_p
5225 && cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
5227 /* Consume the `...'. */
5228 cp_lexer_consume_token (parser->lexer);
5230 /* Build the argument pack. */
5231 expr = make_pack_expansion (expr);
5234 /* Add it to the list. We add error_mark_node
5235 expressions to the list, so that we can still tell if
5236 the correct form for a parenthesized expression-list
5237 is found. That gives better errors. */
5238 expression_list = tree_cons (NULL_TREE, expr, expression_list);
5240 if (expr == error_mark_node)
5241 goto skip_comma;
5244 /* After the first item, attribute lists look the same as
5245 expression lists. */
5246 is_attribute_list = false;
5248 get_comma:;
5249 /* If the next token isn't a `,', then we are done. */
5250 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
5251 break;
5253 /* Otherwise, consume the `,' and keep going. */
5254 cp_lexer_consume_token (parser->lexer);
5257 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>"))
5259 int ending;
5261 skip_comma:;
5262 /* We try and resync to an unnested comma, as that will give the
5263 user better diagnostics. */
5264 ending = cp_parser_skip_to_closing_parenthesis (parser,
5265 /*recovering=*/true,
5266 /*or_comma=*/true,
5267 /*consume_paren=*/true);
5268 if (ending < 0)
5269 goto get_comma;
5270 if (!ending)
5272 parser->greater_than_is_operator_p
5273 = saved_greater_than_is_operator_p;
5274 return error_mark_node;
5278 parser->greater_than_is_operator_p
5279 = saved_greater_than_is_operator_p;
5281 /* We built up the list in reverse order so we must reverse it now. */
5282 expression_list = nreverse (expression_list);
5283 if (identifier)
5284 expression_list = tree_cons (NULL_TREE, identifier, expression_list);
5286 return expression_list;
5289 /* Parse a pseudo-destructor-name.
5291 pseudo-destructor-name:
5292 :: [opt] nested-name-specifier [opt] type-name :: ~ type-name
5293 :: [opt] nested-name-specifier template template-id :: ~ type-name
5294 :: [opt] nested-name-specifier [opt] ~ type-name
5296 If either of the first two productions is used, sets *SCOPE to the
5297 TYPE specified before the final `::'. Otherwise, *SCOPE is set to
5298 NULL_TREE. *TYPE is set to the TYPE_DECL for the final type-name,
5299 or ERROR_MARK_NODE if the parse fails. */
5301 static void
5302 cp_parser_pseudo_destructor_name (cp_parser* parser,
5303 tree* scope,
5304 tree* type)
5306 bool nested_name_specifier_p;
5308 /* Assume that things will not work out. */
5309 *type = error_mark_node;
5311 /* Look for the optional `::' operator. */
5312 cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/true);
5313 /* Look for the optional nested-name-specifier. */
5314 nested_name_specifier_p
5315 = (cp_parser_nested_name_specifier_opt (parser,
5316 /*typename_keyword_p=*/false,
5317 /*check_dependency_p=*/true,
5318 /*type_p=*/false,
5319 /*is_declaration=*/false)
5320 != NULL_TREE);
5321 /* Now, if we saw a nested-name-specifier, we might be doing the
5322 second production. */
5323 if (nested_name_specifier_p
5324 && cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
5326 /* Consume the `template' keyword. */
5327 cp_lexer_consume_token (parser->lexer);
5328 /* Parse the template-id. */
5329 cp_parser_template_id (parser,
5330 /*template_keyword_p=*/true,
5331 /*check_dependency_p=*/false,
5332 /*is_declaration=*/true);
5333 /* Look for the `::' token. */
5334 cp_parser_require (parser, CPP_SCOPE, "%<::%>");
5336 /* If the next token is not a `~', then there might be some
5337 additional qualification. */
5338 else if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMPL))
5340 /* At this point, we're looking for "type-name :: ~". The type-name
5341 must not be a class-name, since this is a pseudo-destructor. So,
5342 it must be either an enum-name, or a typedef-name -- both of which
5343 are just identifiers. So, we peek ahead to check that the "::"
5344 and "~" tokens are present; if they are not, then we can avoid
5345 calling type_name. */
5346 if (cp_lexer_peek_token (parser->lexer)->type != CPP_NAME
5347 || cp_lexer_peek_nth_token (parser->lexer, 2)->type != CPP_SCOPE
5348 || cp_lexer_peek_nth_token (parser->lexer, 3)->type != CPP_COMPL)
5350 cp_parser_error (parser, "non-scalar type");
5351 return;
5354 /* Look for the type-name. */
5355 *scope = TREE_TYPE (cp_parser_nonclass_name (parser));
5356 if (*scope == error_mark_node)
5357 return;
5359 /* Look for the `::' token. */
5360 cp_parser_require (parser, CPP_SCOPE, "%<::%>");
5362 else
5363 *scope = NULL_TREE;
5365 /* Look for the `~'. */
5366 cp_parser_require (parser, CPP_COMPL, "%<~%>");
5367 /* Look for the type-name again. We are not responsible for
5368 checking that it matches the first type-name. */
5369 *type = cp_parser_nonclass_name (parser);
5372 /* Parse a unary-expression.
5374 unary-expression:
5375 postfix-expression
5376 ++ cast-expression
5377 -- cast-expression
5378 unary-operator cast-expression
5379 sizeof unary-expression
5380 sizeof ( type-id )
5381 new-expression
5382 delete-expression
5384 GNU Extensions:
5386 unary-expression:
5387 __extension__ cast-expression
5388 __alignof__ unary-expression
5389 __alignof__ ( type-id )
5390 __real__ cast-expression
5391 __imag__ cast-expression
5392 && identifier
5394 ADDRESS_P is true iff the unary-expression is appearing as the
5395 operand of the `&' operator. CAST_P is true if this expression is
5396 the target of a cast.
5398 Returns a representation of the expression. */
5400 static tree
5401 cp_parser_unary_expression (cp_parser *parser, bool address_p, bool cast_p,
5402 cp_id_kind * pidk)
5404 cp_token *token;
5405 enum tree_code unary_operator;
5407 /* Peek at the next token. */
5408 token = cp_lexer_peek_token (parser->lexer);
5409 /* Some keywords give away the kind of expression. */
5410 if (token->type == CPP_KEYWORD)
5412 enum rid keyword = token->keyword;
5414 switch (keyword)
5416 case RID_ALIGNOF:
5417 case RID_SIZEOF:
5419 tree operand;
5420 enum tree_code op;
5422 op = keyword == RID_ALIGNOF ? ALIGNOF_EXPR : SIZEOF_EXPR;
5423 /* Consume the token. */
5424 cp_lexer_consume_token (parser->lexer);
5425 /* Parse the operand. */
5426 operand = cp_parser_sizeof_operand (parser, keyword);
5428 if (TYPE_P (operand))
5429 return cxx_sizeof_or_alignof_type (operand, op, true);
5430 else
5431 return cxx_sizeof_or_alignof_expr (operand, op, true);
5434 case RID_NEW:
5435 return cp_parser_new_expression (parser);
5437 case RID_DELETE:
5438 return cp_parser_delete_expression (parser);
5440 case RID_EXTENSION:
5442 /* The saved value of the PEDANTIC flag. */
5443 int saved_pedantic;
5444 tree expr;
5446 /* Save away the PEDANTIC flag. */
5447 cp_parser_extension_opt (parser, &saved_pedantic);
5448 /* Parse the cast-expression. */
5449 expr = cp_parser_simple_cast_expression (parser);
5450 /* Restore the PEDANTIC flag. */
5451 pedantic = saved_pedantic;
5453 return expr;
5456 case RID_REALPART:
5457 case RID_IMAGPART:
5459 tree expression;
5461 /* Consume the `__real__' or `__imag__' token. */
5462 cp_lexer_consume_token (parser->lexer);
5463 /* Parse the cast-expression. */
5464 expression = cp_parser_simple_cast_expression (parser);
5465 /* Create the complete representation. */
5466 return build_x_unary_op ((keyword == RID_REALPART
5467 ? REALPART_EXPR : IMAGPART_EXPR),
5468 expression,
5469 tf_warning_or_error);
5471 break;
5473 default:
5474 break;
5478 /* Look for the `:: new' and `:: delete', which also signal the
5479 beginning of a new-expression, or delete-expression,
5480 respectively. If the next token is `::', then it might be one of
5481 these. */
5482 if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
5484 enum rid keyword;
5486 /* See if the token after the `::' is one of the keywords in
5487 which we're interested. */
5488 keyword = cp_lexer_peek_nth_token (parser->lexer, 2)->keyword;
5489 /* If it's `new', we have a new-expression. */
5490 if (keyword == RID_NEW)
5491 return cp_parser_new_expression (parser);
5492 /* Similarly, for `delete'. */
5493 else if (keyword == RID_DELETE)
5494 return cp_parser_delete_expression (parser);
5497 /* Look for a unary operator. */
5498 unary_operator = cp_parser_unary_operator (token);
5499 /* The `++' and `--' operators can be handled similarly, even though
5500 they are not technically unary-operators in the grammar. */
5501 if (unary_operator == ERROR_MARK)
5503 if (token->type == CPP_PLUS_PLUS)
5504 unary_operator = PREINCREMENT_EXPR;
5505 else if (token->type == CPP_MINUS_MINUS)
5506 unary_operator = PREDECREMENT_EXPR;
5507 /* Handle the GNU address-of-label extension. */
5508 else if (cp_parser_allow_gnu_extensions_p (parser)
5509 && token->type == CPP_AND_AND)
5511 tree identifier;
5512 tree expression;
5513 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
5515 /* Consume the '&&' token. */
5516 cp_lexer_consume_token (parser->lexer);
5517 /* Look for the identifier. */
5518 identifier = cp_parser_identifier (parser);
5519 /* Create an expression representing the address. */
5520 expression = finish_label_address_expr (identifier, loc);
5521 if (cp_parser_non_integral_constant_expression (parser,
5522 "the address of a label"))
5523 expression = error_mark_node;
5524 return expression;
5527 if (unary_operator != ERROR_MARK)
5529 tree cast_expression;
5530 tree expression = error_mark_node;
5531 const char *non_constant_p = NULL;
5533 /* Consume the operator token. */
5534 token = cp_lexer_consume_token (parser->lexer);
5535 /* Parse the cast-expression. */
5536 cast_expression
5537 = cp_parser_cast_expression (parser,
5538 unary_operator == ADDR_EXPR,
5539 /*cast_p=*/false, pidk);
5540 /* Now, build an appropriate representation. */
5541 switch (unary_operator)
5543 case INDIRECT_REF:
5544 non_constant_p = "%<*%>";
5545 expression = build_x_indirect_ref (cast_expression, "unary *",
5546 tf_warning_or_error);
5547 break;
5549 case ADDR_EXPR:
5550 non_constant_p = "%<&%>";
5551 /* Fall through. */
5552 case BIT_NOT_EXPR:
5553 expression = build_x_unary_op (unary_operator, cast_expression,
5554 tf_warning_or_error);
5555 break;
5557 case PREINCREMENT_EXPR:
5558 case PREDECREMENT_EXPR:
5559 non_constant_p = (unary_operator == PREINCREMENT_EXPR
5560 ? "%<++%>" : "%<--%>");
5561 /* Fall through. */
5562 case UNARY_PLUS_EXPR:
5563 case NEGATE_EXPR:
5564 case TRUTH_NOT_EXPR:
5565 expression = finish_unary_op_expr (unary_operator, cast_expression);
5566 break;
5568 default:
5569 gcc_unreachable ();
5572 if (non_constant_p
5573 && cp_parser_non_integral_constant_expression (parser,
5574 non_constant_p))
5575 expression = error_mark_node;
5577 return expression;
5580 return cp_parser_postfix_expression (parser, address_p, cast_p,
5581 /*member_access_only_p=*/false,
5582 pidk);
5585 /* Returns ERROR_MARK if TOKEN is not a unary-operator. If TOKEN is a
5586 unary-operator, the corresponding tree code is returned. */
5588 static enum tree_code
5589 cp_parser_unary_operator (cp_token* token)
5591 switch (token->type)
5593 case CPP_MULT:
5594 return INDIRECT_REF;
5596 case CPP_AND:
5597 return ADDR_EXPR;
5599 case CPP_PLUS:
5600 return UNARY_PLUS_EXPR;
5602 case CPP_MINUS:
5603 return NEGATE_EXPR;
5605 case CPP_NOT:
5606 return TRUTH_NOT_EXPR;
5608 case CPP_COMPL:
5609 return BIT_NOT_EXPR;
5611 default:
5612 return ERROR_MARK;
5616 /* Parse a new-expression.
5618 new-expression:
5619 :: [opt] new new-placement [opt] new-type-id new-initializer [opt]
5620 :: [opt] new new-placement [opt] ( type-id ) new-initializer [opt]
5622 Returns a representation of the expression. */
5624 static tree
5625 cp_parser_new_expression (cp_parser* parser)
5627 bool global_scope_p;
5628 tree placement;
5629 tree type;
5630 tree initializer;
5631 tree nelts;
5633 /* Look for the optional `::' operator. */
5634 global_scope_p
5635 = (cp_parser_global_scope_opt (parser,
5636 /*current_scope_valid_p=*/false)
5637 != NULL_TREE);
5638 /* Look for the `new' operator. */
5639 cp_parser_require_keyword (parser, RID_NEW, "%<new%>");
5640 /* There's no easy way to tell a new-placement from the
5641 `( type-id )' construct. */
5642 cp_parser_parse_tentatively (parser);
5643 /* Look for a new-placement. */
5644 placement = cp_parser_new_placement (parser);
5645 /* If that didn't work out, there's no new-placement. */
5646 if (!cp_parser_parse_definitely (parser))
5647 placement = NULL_TREE;
5649 /* If the next token is a `(', then we have a parenthesized
5650 type-id. */
5651 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
5653 cp_token *token;
5654 /* Consume the `('. */
5655 cp_lexer_consume_token (parser->lexer);
5656 /* Parse the type-id. */
5657 type = cp_parser_type_id (parser);
5658 /* Look for the closing `)'. */
5659 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
5660 token = cp_lexer_peek_token (parser->lexer);
5661 /* There should not be a direct-new-declarator in this production,
5662 but GCC used to allowed this, so we check and emit a sensible error
5663 message for this case. */
5664 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
5666 error ("%Harray bound forbidden after parenthesized type-id",
5667 &token->location);
5668 inform (token->location,
5669 "try removing the parentheses around the type-id");
5670 cp_parser_direct_new_declarator (parser);
5672 nelts = NULL_TREE;
5674 /* Otherwise, there must be a new-type-id. */
5675 else
5676 type = cp_parser_new_type_id (parser, &nelts);
5678 /* If the next token is a `(' or '{', then we have a new-initializer. */
5679 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN)
5680 || cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
5681 initializer = cp_parser_new_initializer (parser);
5682 else
5683 initializer = NULL_TREE;
5685 /* A new-expression may not appear in an integral constant
5686 expression. */
5687 if (cp_parser_non_integral_constant_expression (parser, "%<new%>"))
5688 return error_mark_node;
5690 /* Create a representation of the new-expression. */
5691 return build_new (placement, type, nelts, initializer, global_scope_p,
5692 tf_warning_or_error);
5695 /* Parse a new-placement.
5697 new-placement:
5698 ( expression-list )
5700 Returns the same representation as for an expression-list. */
5702 static tree
5703 cp_parser_new_placement (cp_parser* parser)
5705 tree expression_list;
5707 /* Parse the expression-list. */
5708 expression_list = (cp_parser_parenthesized_expression_list
5709 (parser, false, /*cast_p=*/false, /*allow_expansion_p=*/true,
5710 /*non_constant_p=*/NULL));
5712 return expression_list;
5715 /* Parse a new-type-id.
5717 new-type-id:
5718 type-specifier-seq new-declarator [opt]
5720 Returns the TYPE allocated. If the new-type-id indicates an array
5721 type, *NELTS is set to the number of elements in the last array
5722 bound; the TYPE will not include the last array bound. */
5724 static tree
5725 cp_parser_new_type_id (cp_parser* parser, tree *nelts)
5727 cp_decl_specifier_seq type_specifier_seq;
5728 cp_declarator *new_declarator;
5729 cp_declarator *declarator;
5730 cp_declarator *outer_declarator;
5731 const char *saved_message;
5732 tree type;
5734 /* The type-specifier sequence must not contain type definitions.
5735 (It cannot contain declarations of new types either, but if they
5736 are not definitions we will catch that because they are not
5737 complete.) */
5738 saved_message = parser->type_definition_forbidden_message;
5739 parser->type_definition_forbidden_message
5740 = "types may not be defined in a new-type-id";
5741 /* Parse the type-specifier-seq. */
5742 cp_parser_type_specifier_seq (parser, /*is_condition=*/false,
5743 &type_specifier_seq);
5744 /* Restore the old message. */
5745 parser->type_definition_forbidden_message = saved_message;
5746 /* Parse the new-declarator. */
5747 new_declarator = cp_parser_new_declarator_opt (parser);
5749 /* Determine the number of elements in the last array dimension, if
5750 any. */
5751 *nelts = NULL_TREE;
5752 /* Skip down to the last array dimension. */
5753 declarator = new_declarator;
5754 outer_declarator = NULL;
5755 while (declarator && (declarator->kind == cdk_pointer
5756 || declarator->kind == cdk_ptrmem))
5758 outer_declarator = declarator;
5759 declarator = declarator->declarator;
5761 while (declarator
5762 && declarator->kind == cdk_array
5763 && declarator->declarator
5764 && declarator->declarator->kind == cdk_array)
5766 outer_declarator = declarator;
5767 declarator = declarator->declarator;
5770 if (declarator && declarator->kind == cdk_array)
5772 *nelts = declarator->u.array.bounds;
5773 if (*nelts == error_mark_node)
5774 *nelts = integer_one_node;
5776 if (outer_declarator)
5777 outer_declarator->declarator = declarator->declarator;
5778 else
5779 new_declarator = NULL;
5782 type = groktypename (&type_specifier_seq, new_declarator, false);
5783 return type;
5786 /* Parse an (optional) new-declarator.
5788 new-declarator:
5789 ptr-operator new-declarator [opt]
5790 direct-new-declarator
5792 Returns the declarator. */
5794 static cp_declarator *
5795 cp_parser_new_declarator_opt (cp_parser* parser)
5797 enum tree_code code;
5798 tree type;
5799 cp_cv_quals cv_quals;
5801 /* We don't know if there's a ptr-operator next, or not. */
5802 cp_parser_parse_tentatively (parser);
5803 /* Look for a ptr-operator. */
5804 code = cp_parser_ptr_operator (parser, &type, &cv_quals);
5805 /* If that worked, look for more new-declarators. */
5806 if (cp_parser_parse_definitely (parser))
5808 cp_declarator *declarator;
5810 /* Parse another optional declarator. */
5811 declarator = cp_parser_new_declarator_opt (parser);
5813 return cp_parser_make_indirect_declarator
5814 (code, type, cv_quals, declarator);
5817 /* If the next token is a `[', there is a direct-new-declarator. */
5818 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
5819 return cp_parser_direct_new_declarator (parser);
5821 return NULL;
5824 /* Parse a direct-new-declarator.
5826 direct-new-declarator:
5827 [ expression ]
5828 direct-new-declarator [constant-expression]
5832 static cp_declarator *
5833 cp_parser_direct_new_declarator (cp_parser* parser)
5835 cp_declarator *declarator = NULL;
5837 while (true)
5839 tree expression;
5841 /* Look for the opening `['. */
5842 cp_parser_require (parser, CPP_OPEN_SQUARE, "%<[%>");
5843 /* The first expression is not required to be constant. */
5844 if (!declarator)
5846 cp_token *token = cp_lexer_peek_token (parser->lexer);
5847 expression = cp_parser_expression (parser, /*cast_p=*/false, NULL);
5848 /* The standard requires that the expression have integral
5849 type. DR 74 adds enumeration types. We believe that the
5850 real intent is that these expressions be handled like the
5851 expression in a `switch' condition, which also allows
5852 classes with a single conversion to integral or
5853 enumeration type. */
5854 if (!processing_template_decl)
5856 expression
5857 = build_expr_type_conversion (WANT_INT | WANT_ENUM,
5858 expression,
5859 /*complain=*/true);
5860 if (!expression)
5862 error ("%Hexpression in new-declarator must have integral "
5863 "or enumeration type", &token->location);
5864 expression = error_mark_node;
5868 /* But all the other expressions must be. */
5869 else
5870 expression
5871 = cp_parser_constant_expression (parser,
5872 /*allow_non_constant=*/false,
5873 NULL);
5874 /* Look for the closing `]'. */
5875 cp_parser_require (parser, CPP_CLOSE_SQUARE, "%<]%>");
5877 /* Add this bound to the declarator. */
5878 declarator = make_array_declarator (declarator, expression);
5880 /* If the next token is not a `[', then there are no more
5881 bounds. */
5882 if (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_SQUARE))
5883 break;
5886 return declarator;
5889 /* Parse a new-initializer.
5891 new-initializer:
5892 ( expression-list [opt] )
5893 braced-init-list
5895 Returns a representation of the expression-list. If there is no
5896 expression-list, VOID_ZERO_NODE is returned. */
5898 static tree
5899 cp_parser_new_initializer (cp_parser* parser)
5901 tree expression_list;
5903 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
5905 bool expr_non_constant_p;
5906 maybe_warn_cpp0x ("extended initializer lists");
5907 expression_list = cp_parser_braced_list (parser, &expr_non_constant_p);
5908 CONSTRUCTOR_IS_DIRECT_INIT (expression_list) = 1;
5909 expression_list = build_tree_list (NULL_TREE, expression_list);
5911 else
5912 expression_list = (cp_parser_parenthesized_expression_list
5913 (parser, false, /*cast_p=*/false, /*allow_expansion_p=*/true,
5914 /*non_constant_p=*/NULL));
5915 if (!expression_list)
5916 expression_list = void_zero_node;
5918 return expression_list;
5921 /* Parse a delete-expression.
5923 delete-expression:
5924 :: [opt] delete cast-expression
5925 :: [opt] delete [ ] cast-expression
5927 Returns a representation of the expression. */
5929 static tree
5930 cp_parser_delete_expression (cp_parser* parser)
5932 bool global_scope_p;
5933 bool array_p;
5934 tree expression;
5936 /* Look for the optional `::' operator. */
5937 global_scope_p
5938 = (cp_parser_global_scope_opt (parser,
5939 /*current_scope_valid_p=*/false)
5940 != NULL_TREE);
5941 /* Look for the `delete' keyword. */
5942 cp_parser_require_keyword (parser, RID_DELETE, "%<delete%>");
5943 /* See if the array syntax is in use. */
5944 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
5946 /* Consume the `[' token. */
5947 cp_lexer_consume_token (parser->lexer);
5948 /* Look for the `]' token. */
5949 cp_parser_require (parser, CPP_CLOSE_SQUARE, "%<]%>");
5950 /* Remember that this is the `[]' construct. */
5951 array_p = true;
5953 else
5954 array_p = false;
5956 /* Parse the cast-expression. */
5957 expression = cp_parser_simple_cast_expression (parser);
5959 /* A delete-expression may not appear in an integral constant
5960 expression. */
5961 if (cp_parser_non_integral_constant_expression (parser, "%<delete%>"))
5962 return error_mark_node;
5964 return delete_sanity (expression, NULL_TREE, array_p, global_scope_p);
5967 /* Returns true if TOKEN may start a cast-expression and false
5968 otherwise. */
5970 static bool
5971 cp_parser_token_starts_cast_expression (cp_token *token)
5973 switch (token->type)
5975 case CPP_COMMA:
5976 case CPP_SEMICOLON:
5977 case CPP_QUERY:
5978 case CPP_COLON:
5979 case CPP_CLOSE_SQUARE:
5980 case CPP_CLOSE_PAREN:
5981 case CPP_CLOSE_BRACE:
5982 case CPP_DOT:
5983 case CPP_DOT_STAR:
5984 case CPP_DEREF:
5985 case CPP_DEREF_STAR:
5986 case CPP_DIV:
5987 case CPP_MOD:
5988 case CPP_LSHIFT:
5989 case CPP_RSHIFT:
5990 case CPP_LESS:
5991 case CPP_GREATER:
5992 case CPP_LESS_EQ:
5993 case CPP_GREATER_EQ:
5994 case CPP_EQ_EQ:
5995 case CPP_NOT_EQ:
5996 case CPP_EQ:
5997 case CPP_MULT_EQ:
5998 case CPP_DIV_EQ:
5999 case CPP_MOD_EQ:
6000 case CPP_PLUS_EQ:
6001 case CPP_MINUS_EQ:
6002 case CPP_RSHIFT_EQ:
6003 case CPP_LSHIFT_EQ:
6004 case CPP_AND_EQ:
6005 case CPP_XOR_EQ:
6006 case CPP_OR_EQ:
6007 case CPP_XOR:
6008 case CPP_OR:
6009 case CPP_OR_OR:
6010 case CPP_EOF:
6011 return false;
6013 /* '[' may start a primary-expression in obj-c++. */
6014 case CPP_OPEN_SQUARE:
6015 return c_dialect_objc ();
6017 default:
6018 return true;
6022 /* Parse a cast-expression.
6024 cast-expression:
6025 unary-expression
6026 ( type-id ) cast-expression
6028 ADDRESS_P is true iff the unary-expression is appearing as the
6029 operand of the `&' operator. CAST_P is true if this expression is
6030 the target of a cast.
6032 Returns a representation of the expression. */
6034 static tree
6035 cp_parser_cast_expression (cp_parser *parser, bool address_p, bool cast_p,
6036 cp_id_kind * pidk)
6038 /* If it's a `(', then we might be looking at a cast. */
6039 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
6041 tree type = NULL_TREE;
6042 tree expr = NULL_TREE;
6043 bool compound_literal_p;
6044 const char *saved_message;
6046 /* There's no way to know yet whether or not this is a cast.
6047 For example, `(int (3))' is a unary-expression, while `(int)
6048 3' is a cast. So, we resort to parsing tentatively. */
6049 cp_parser_parse_tentatively (parser);
6050 /* Types may not be defined in a cast. */
6051 saved_message = parser->type_definition_forbidden_message;
6052 parser->type_definition_forbidden_message
6053 = "types may not be defined in casts";
6054 /* Consume the `('. */
6055 cp_lexer_consume_token (parser->lexer);
6056 /* A very tricky bit is that `(struct S) { 3 }' is a
6057 compound-literal (which we permit in C++ as an extension).
6058 But, that construct is not a cast-expression -- it is a
6059 postfix-expression. (The reason is that `(struct S) { 3 }.i'
6060 is legal; if the compound-literal were a cast-expression,
6061 you'd need an extra set of parentheses.) But, if we parse
6062 the type-id, and it happens to be a class-specifier, then we
6063 will commit to the parse at that point, because we cannot
6064 undo the action that is done when creating a new class. So,
6065 then we cannot back up and do a postfix-expression.
6067 Therefore, we scan ahead to the closing `)', and check to see
6068 if the token after the `)' is a `{'. If so, we are not
6069 looking at a cast-expression.
6071 Save tokens so that we can put them back. */
6072 cp_lexer_save_tokens (parser->lexer);
6073 /* Skip tokens until the next token is a closing parenthesis.
6074 If we find the closing `)', and the next token is a `{', then
6075 we are looking at a compound-literal. */
6076 compound_literal_p
6077 = (cp_parser_skip_to_closing_parenthesis (parser, false, false,
6078 /*consume_paren=*/true)
6079 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE));
6080 /* Roll back the tokens we skipped. */
6081 cp_lexer_rollback_tokens (parser->lexer);
6082 /* If we were looking at a compound-literal, simulate an error
6083 so that the call to cp_parser_parse_definitely below will
6084 fail. */
6085 if (compound_literal_p)
6086 cp_parser_simulate_error (parser);
6087 else
6089 bool saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
6090 parser->in_type_id_in_expr_p = true;
6091 /* Look for the type-id. */
6092 type = cp_parser_type_id (parser);
6093 /* Look for the closing `)'. */
6094 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
6095 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
6098 /* Restore the saved message. */
6099 parser->type_definition_forbidden_message = saved_message;
6101 /* At this point this can only be either a cast or a
6102 parenthesized ctor such as `(T ())' that looks like a cast to
6103 function returning T. */
6104 if (!cp_parser_error_occurred (parser)
6105 && cp_parser_token_starts_cast_expression (cp_lexer_peek_token
6106 (parser->lexer)))
6108 cp_parser_parse_definitely (parser);
6109 expr = cp_parser_cast_expression (parser,
6110 /*address_p=*/false,
6111 /*cast_p=*/true, pidk);
6113 /* Warn about old-style casts, if so requested. */
6114 if (warn_old_style_cast
6115 && !in_system_header
6116 && !VOID_TYPE_P (type)
6117 && current_lang_name != lang_name_c)
6118 warning (OPT_Wold_style_cast, "use of old-style cast");
6120 /* Only type conversions to integral or enumeration types
6121 can be used in constant-expressions. */
6122 if (!cast_valid_in_integral_constant_expression_p (type)
6123 && (cp_parser_non_integral_constant_expression
6124 (parser,
6125 "a cast to a type other than an integral or "
6126 "enumeration type")))
6127 return error_mark_node;
6129 /* Perform the cast. */
6130 expr = build_c_cast (type, expr);
6131 return expr;
6133 else
6134 cp_parser_abort_tentative_parse (parser);
6137 /* If we get here, then it's not a cast, so it must be a
6138 unary-expression. */
6139 return cp_parser_unary_expression (parser, address_p, cast_p, pidk);
6142 /* Parse a binary expression of the general form:
6144 pm-expression:
6145 cast-expression
6146 pm-expression .* cast-expression
6147 pm-expression ->* cast-expression
6149 multiplicative-expression:
6150 pm-expression
6151 multiplicative-expression * pm-expression
6152 multiplicative-expression / pm-expression
6153 multiplicative-expression % pm-expression
6155 additive-expression:
6156 multiplicative-expression
6157 additive-expression + multiplicative-expression
6158 additive-expression - multiplicative-expression
6160 shift-expression:
6161 additive-expression
6162 shift-expression << additive-expression
6163 shift-expression >> additive-expression
6165 relational-expression:
6166 shift-expression
6167 relational-expression < shift-expression
6168 relational-expression > shift-expression
6169 relational-expression <= shift-expression
6170 relational-expression >= shift-expression
6172 GNU Extension:
6174 relational-expression:
6175 relational-expression <? shift-expression
6176 relational-expression >? shift-expression
6178 equality-expression:
6179 relational-expression
6180 equality-expression == relational-expression
6181 equality-expression != relational-expression
6183 and-expression:
6184 equality-expression
6185 and-expression & equality-expression
6187 exclusive-or-expression:
6188 and-expression
6189 exclusive-or-expression ^ and-expression
6191 inclusive-or-expression:
6192 exclusive-or-expression
6193 inclusive-or-expression | exclusive-or-expression
6195 logical-and-expression:
6196 inclusive-or-expression
6197 logical-and-expression && inclusive-or-expression
6199 logical-or-expression:
6200 logical-and-expression
6201 logical-or-expression || logical-and-expression
6203 All these are implemented with a single function like:
6205 binary-expression:
6206 simple-cast-expression
6207 binary-expression <token> binary-expression
6209 CAST_P is true if this expression is the target of a cast.
6211 The binops_by_token map is used to get the tree codes for each <token> type.
6212 binary-expressions are associated according to a precedence table. */
6214 #define TOKEN_PRECEDENCE(token) \
6215 (((token->type == CPP_GREATER \
6216 || ((cxx_dialect != cxx98) && token->type == CPP_RSHIFT)) \
6217 && !parser->greater_than_is_operator_p) \
6218 ? PREC_NOT_OPERATOR \
6219 : binops_by_token[token->type].prec)
6221 static tree
6222 cp_parser_binary_expression (cp_parser* parser, bool cast_p,
6223 bool no_toplevel_fold_p,
6224 enum cp_parser_prec prec,
6225 cp_id_kind * pidk)
6227 cp_parser_expression_stack stack;
6228 cp_parser_expression_stack_entry *sp = &stack[0];
6229 tree lhs, rhs;
6230 cp_token *token;
6231 enum tree_code tree_type, lhs_type, rhs_type;
6232 enum cp_parser_prec new_prec, lookahead_prec;
6233 bool overloaded_p;
6235 /* Parse the first expression. */
6236 lhs = cp_parser_cast_expression (parser, /*address_p=*/false, cast_p, pidk);
6237 lhs_type = ERROR_MARK;
6239 for (;;)
6241 /* Get an operator token. */
6242 token = cp_lexer_peek_token (parser->lexer);
6244 if (warn_cxx0x_compat
6245 && token->type == CPP_RSHIFT
6246 && !parser->greater_than_is_operator_p)
6248 warning (OPT_Wc__0x_compat,
6249 "%H%<>>%> operator will be treated as two right angle brackets in C++0x",
6250 &token->location);
6251 warning (OPT_Wc__0x_compat,
6252 "suggest parentheses around %<>>%> expression");
6255 new_prec = TOKEN_PRECEDENCE (token);
6257 /* Popping an entry off the stack means we completed a subexpression:
6258 - either we found a token which is not an operator (`>' where it is not
6259 an operator, or prec == PREC_NOT_OPERATOR), in which case popping
6260 will happen repeatedly;
6261 - or, we found an operator which has lower priority. This is the case
6262 where the recursive descent *ascends*, as in `3 * 4 + 5' after
6263 parsing `3 * 4'. */
6264 if (new_prec <= prec)
6266 if (sp == stack)
6267 break;
6268 else
6269 goto pop;
6272 get_rhs:
6273 tree_type = binops_by_token[token->type].tree_type;
6275 /* We used the operator token. */
6276 cp_lexer_consume_token (parser->lexer);
6278 /* Extract another operand. It may be the RHS of this expression
6279 or the LHS of a new, higher priority expression. */
6280 rhs = cp_parser_simple_cast_expression (parser);
6281 rhs_type = ERROR_MARK;
6283 /* Get another operator token. Look up its precedence to avoid
6284 building a useless (immediately popped) stack entry for common
6285 cases such as 3 + 4 + 5 or 3 * 4 + 5. */
6286 token = cp_lexer_peek_token (parser->lexer);
6287 lookahead_prec = TOKEN_PRECEDENCE (token);
6288 if (lookahead_prec > new_prec)
6290 /* ... and prepare to parse the RHS of the new, higher priority
6291 expression. Since precedence levels on the stack are
6292 monotonically increasing, we do not have to care about
6293 stack overflows. */
6294 sp->prec = prec;
6295 sp->tree_type = tree_type;
6296 sp->lhs = lhs;
6297 sp->lhs_type = lhs_type;
6298 sp++;
6299 lhs = rhs;
6300 lhs_type = rhs_type;
6301 prec = new_prec;
6302 new_prec = lookahead_prec;
6303 goto get_rhs;
6305 pop:
6306 lookahead_prec = new_prec;
6307 /* If the stack is not empty, we have parsed into LHS the right side
6308 (`4' in the example above) of an expression we had suspended.
6309 We can use the information on the stack to recover the LHS (`3')
6310 from the stack together with the tree code (`MULT_EXPR'), and
6311 the precedence of the higher level subexpression
6312 (`PREC_ADDITIVE_EXPRESSION'). TOKEN is the CPP_PLUS token,
6313 which will be used to actually build the additive expression. */
6314 --sp;
6315 prec = sp->prec;
6316 tree_type = sp->tree_type;
6317 rhs = lhs;
6318 rhs_type = lhs_type;
6319 lhs = sp->lhs;
6320 lhs_type = sp->lhs_type;
6323 overloaded_p = false;
6324 /* ??? Currently we pass lhs_type == ERROR_MARK and rhs_type ==
6325 ERROR_MARK for everything that is not a binary expression.
6326 This makes warn_about_parentheses miss some warnings that
6327 involve unary operators. For unary expressions we should
6328 pass the correct tree_code unless the unary expression was
6329 surrounded by parentheses.
6331 if (no_toplevel_fold_p
6332 && lookahead_prec <= prec
6333 && sp == stack
6334 && TREE_CODE_CLASS (tree_type) == tcc_comparison)
6335 lhs = build2 (tree_type, boolean_type_node, lhs, rhs);
6336 else
6337 lhs = build_x_binary_op (tree_type, lhs, lhs_type, rhs, rhs_type,
6338 &overloaded_p, tf_warning_or_error);
6339 lhs_type = tree_type;
6341 /* If the binary operator required the use of an overloaded operator,
6342 then this expression cannot be an integral constant-expression.
6343 An overloaded operator can be used even if both operands are
6344 otherwise permissible in an integral constant-expression if at
6345 least one of the operands is of enumeration type. */
6347 if (overloaded_p
6348 && (cp_parser_non_integral_constant_expression
6349 (parser, "calls to overloaded operators")))
6350 return error_mark_node;
6353 return lhs;
6357 /* Parse the `? expression : assignment-expression' part of a
6358 conditional-expression. The LOGICAL_OR_EXPR is the
6359 logical-or-expression that started the conditional-expression.
6360 Returns a representation of the entire conditional-expression.
6362 This routine is used by cp_parser_assignment_expression.
6364 ? expression : assignment-expression
6366 GNU Extensions:
6368 ? : assignment-expression */
6370 static tree
6371 cp_parser_question_colon_clause (cp_parser* parser, tree logical_or_expr)
6373 tree expr;
6374 tree assignment_expr;
6376 /* Consume the `?' token. */
6377 cp_lexer_consume_token (parser->lexer);
6378 if (cp_parser_allow_gnu_extensions_p (parser)
6379 && cp_lexer_next_token_is (parser->lexer, CPP_COLON))
6380 /* Implicit true clause. */
6381 expr = NULL_TREE;
6382 else
6383 /* Parse the expression. */
6384 expr = cp_parser_expression (parser, /*cast_p=*/false, NULL);
6386 /* The next token should be a `:'. */
6387 cp_parser_require (parser, CPP_COLON, "%<:%>");
6388 /* Parse the assignment-expression. */
6389 assignment_expr = cp_parser_assignment_expression (parser, /*cast_p=*/false, NULL);
6391 /* Build the conditional-expression. */
6392 return build_x_conditional_expr (logical_or_expr,
6393 expr,
6394 assignment_expr,
6395 tf_warning_or_error);
6398 /* Parse an assignment-expression.
6400 assignment-expression:
6401 conditional-expression
6402 logical-or-expression assignment-operator assignment_expression
6403 throw-expression
6405 CAST_P is true if this expression is the target of a cast.
6407 Returns a representation for the expression. */
6409 static tree
6410 cp_parser_assignment_expression (cp_parser* parser, bool cast_p,
6411 cp_id_kind * pidk)
6413 tree expr;
6415 /* If the next token is the `throw' keyword, then we're looking at
6416 a throw-expression. */
6417 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_THROW))
6418 expr = cp_parser_throw_expression (parser);
6419 /* Otherwise, it must be that we are looking at a
6420 logical-or-expression. */
6421 else
6423 /* Parse the binary expressions (logical-or-expression). */
6424 expr = cp_parser_binary_expression (parser, cast_p, false,
6425 PREC_NOT_OPERATOR, pidk);
6426 /* If the next token is a `?' then we're actually looking at a
6427 conditional-expression. */
6428 if (cp_lexer_next_token_is (parser->lexer, CPP_QUERY))
6429 return cp_parser_question_colon_clause (parser, expr);
6430 else
6432 enum tree_code assignment_operator;
6434 /* If it's an assignment-operator, we're using the second
6435 production. */
6436 assignment_operator
6437 = cp_parser_assignment_operator_opt (parser);
6438 if (assignment_operator != ERROR_MARK)
6440 bool non_constant_p;
6442 /* Parse the right-hand side of the assignment. */
6443 tree rhs = cp_parser_initializer_clause (parser, &non_constant_p);
6445 if (BRACE_ENCLOSED_INITIALIZER_P (rhs))
6446 maybe_warn_cpp0x ("extended initializer lists");
6448 /* An assignment may not appear in a
6449 constant-expression. */
6450 if (cp_parser_non_integral_constant_expression (parser,
6451 "an assignment"))
6452 return error_mark_node;
6453 /* Build the assignment expression. */
6454 expr = build_x_modify_expr (expr,
6455 assignment_operator,
6456 rhs,
6457 tf_warning_or_error);
6462 return expr;
6465 /* Parse an (optional) assignment-operator.
6467 assignment-operator: one of
6468 = *= /= %= += -= >>= <<= &= ^= |=
6470 GNU Extension:
6472 assignment-operator: one of
6473 <?= >?=
6475 If the next token is an assignment operator, the corresponding tree
6476 code is returned, and the token is consumed. For example, for
6477 `+=', PLUS_EXPR is returned. For `=' itself, the code returned is
6478 NOP_EXPR. For `/', TRUNC_DIV_EXPR is returned; for `%',
6479 TRUNC_MOD_EXPR is returned. If TOKEN is not an assignment
6480 operator, ERROR_MARK is returned. */
6482 static enum tree_code
6483 cp_parser_assignment_operator_opt (cp_parser* parser)
6485 enum tree_code op;
6486 cp_token *token;
6488 /* Peek at the next token. */
6489 token = cp_lexer_peek_token (parser->lexer);
6491 switch (token->type)
6493 case CPP_EQ:
6494 op = NOP_EXPR;
6495 break;
6497 case CPP_MULT_EQ:
6498 op = MULT_EXPR;
6499 break;
6501 case CPP_DIV_EQ:
6502 op = TRUNC_DIV_EXPR;
6503 break;
6505 case CPP_MOD_EQ:
6506 op = TRUNC_MOD_EXPR;
6507 break;
6509 case CPP_PLUS_EQ:
6510 op = PLUS_EXPR;
6511 break;
6513 case CPP_MINUS_EQ:
6514 op = MINUS_EXPR;
6515 break;
6517 case CPP_RSHIFT_EQ:
6518 op = RSHIFT_EXPR;
6519 break;
6521 case CPP_LSHIFT_EQ:
6522 op = LSHIFT_EXPR;
6523 break;
6525 case CPP_AND_EQ:
6526 op = BIT_AND_EXPR;
6527 break;
6529 case CPP_XOR_EQ:
6530 op = BIT_XOR_EXPR;
6531 break;
6533 case CPP_OR_EQ:
6534 op = BIT_IOR_EXPR;
6535 break;
6537 default:
6538 /* Nothing else is an assignment operator. */
6539 op = ERROR_MARK;
6542 /* If it was an assignment operator, consume it. */
6543 if (op != ERROR_MARK)
6544 cp_lexer_consume_token (parser->lexer);
6546 return op;
6549 /* Parse an expression.
6551 expression:
6552 assignment-expression
6553 expression , assignment-expression
6555 CAST_P is true if this expression is the target of a cast.
6557 Returns a representation of the expression. */
6559 static tree
6560 cp_parser_expression (cp_parser* parser, bool cast_p, cp_id_kind * pidk)
6562 tree expression = NULL_TREE;
6564 while (true)
6566 tree assignment_expression;
6568 /* Parse the next assignment-expression. */
6569 assignment_expression
6570 = cp_parser_assignment_expression (parser, cast_p, pidk);
6571 /* If this is the first assignment-expression, we can just
6572 save it away. */
6573 if (!expression)
6574 expression = assignment_expression;
6575 else
6576 expression = build_x_compound_expr (expression,
6577 assignment_expression,
6578 tf_warning_or_error);
6579 /* If the next token is not a comma, then we are done with the
6580 expression. */
6581 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
6582 break;
6583 /* Consume the `,'. */
6584 cp_lexer_consume_token (parser->lexer);
6585 /* A comma operator cannot appear in a constant-expression. */
6586 if (cp_parser_non_integral_constant_expression (parser,
6587 "a comma operator"))
6588 expression = error_mark_node;
6591 return expression;
6594 /* Parse a constant-expression.
6596 constant-expression:
6597 conditional-expression
6599 If ALLOW_NON_CONSTANT_P a non-constant expression is silently
6600 accepted. If ALLOW_NON_CONSTANT_P is true and the expression is not
6601 constant, *NON_CONSTANT_P is set to TRUE. If ALLOW_NON_CONSTANT_P
6602 is false, NON_CONSTANT_P should be NULL. */
6604 static tree
6605 cp_parser_constant_expression (cp_parser* parser,
6606 bool allow_non_constant_p,
6607 bool *non_constant_p)
6609 bool saved_integral_constant_expression_p;
6610 bool saved_allow_non_integral_constant_expression_p;
6611 bool saved_non_integral_constant_expression_p;
6612 tree expression;
6614 /* It might seem that we could simply parse the
6615 conditional-expression, and then check to see if it were
6616 TREE_CONSTANT. However, an expression that is TREE_CONSTANT is
6617 one that the compiler can figure out is constant, possibly after
6618 doing some simplifications or optimizations. The standard has a
6619 precise definition of constant-expression, and we must honor
6620 that, even though it is somewhat more restrictive.
6622 For example:
6624 int i[(2, 3)];
6626 is not a legal declaration, because `(2, 3)' is not a
6627 constant-expression. The `,' operator is forbidden in a
6628 constant-expression. However, GCC's constant-folding machinery
6629 will fold this operation to an INTEGER_CST for `3'. */
6631 /* Save the old settings. */
6632 saved_integral_constant_expression_p = parser->integral_constant_expression_p;
6633 saved_allow_non_integral_constant_expression_p
6634 = parser->allow_non_integral_constant_expression_p;
6635 saved_non_integral_constant_expression_p = parser->non_integral_constant_expression_p;
6636 /* We are now parsing a constant-expression. */
6637 parser->integral_constant_expression_p = true;
6638 parser->allow_non_integral_constant_expression_p = allow_non_constant_p;
6639 parser->non_integral_constant_expression_p = false;
6640 /* Although the grammar says "conditional-expression", we parse an
6641 "assignment-expression", which also permits "throw-expression"
6642 and the use of assignment operators. In the case that
6643 ALLOW_NON_CONSTANT_P is false, we get better errors than we would
6644 otherwise. In the case that ALLOW_NON_CONSTANT_P is true, it is
6645 actually essential that we look for an assignment-expression.
6646 For example, cp_parser_initializer_clauses uses this function to
6647 determine whether a particular assignment-expression is in fact
6648 constant. */
6649 expression = cp_parser_assignment_expression (parser, /*cast_p=*/false, NULL);
6650 /* Restore the old settings. */
6651 parser->integral_constant_expression_p
6652 = saved_integral_constant_expression_p;
6653 parser->allow_non_integral_constant_expression_p
6654 = saved_allow_non_integral_constant_expression_p;
6655 if (allow_non_constant_p)
6656 *non_constant_p = parser->non_integral_constant_expression_p;
6657 else if (parser->non_integral_constant_expression_p)
6658 expression = error_mark_node;
6659 parser->non_integral_constant_expression_p
6660 = saved_non_integral_constant_expression_p;
6662 return expression;
6665 /* Parse __builtin_offsetof.
6667 offsetof-expression:
6668 "__builtin_offsetof" "(" type-id "," offsetof-member-designator ")"
6670 offsetof-member-designator:
6671 id-expression
6672 | offsetof-member-designator "." id-expression
6673 | offsetof-member-designator "[" expression "]"
6674 | offsetof-member-designator "->" id-expression */
6676 static tree
6677 cp_parser_builtin_offsetof (cp_parser *parser)
6679 int save_ice_p, save_non_ice_p;
6680 tree type, expr;
6681 cp_id_kind dummy;
6682 cp_token *token;
6684 /* We're about to accept non-integral-constant things, but will
6685 definitely yield an integral constant expression. Save and
6686 restore these values around our local parsing. */
6687 save_ice_p = parser->integral_constant_expression_p;
6688 save_non_ice_p = parser->non_integral_constant_expression_p;
6690 /* Consume the "__builtin_offsetof" token. */
6691 cp_lexer_consume_token (parser->lexer);
6692 /* Consume the opening `('. */
6693 cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>");
6694 /* Parse the type-id. */
6695 type = cp_parser_type_id (parser);
6696 /* Look for the `,'. */
6697 cp_parser_require (parser, CPP_COMMA, "%<,%>");
6698 token = cp_lexer_peek_token (parser->lexer);
6700 /* Build the (type *)null that begins the traditional offsetof macro. */
6701 expr = build_static_cast (build_pointer_type (type), null_pointer_node,
6702 tf_warning_or_error);
6704 /* Parse the offsetof-member-designator. We begin as if we saw "expr->". */
6705 expr = cp_parser_postfix_dot_deref_expression (parser, CPP_DEREF, expr,
6706 true, &dummy, token->location);
6707 while (true)
6709 token = cp_lexer_peek_token (parser->lexer);
6710 switch (token->type)
6712 case CPP_OPEN_SQUARE:
6713 /* offsetof-member-designator "[" expression "]" */
6714 expr = cp_parser_postfix_open_square_expression (parser, expr, true);
6715 break;
6717 case CPP_DEREF:
6718 /* offsetof-member-designator "->" identifier */
6719 expr = grok_array_decl (expr, integer_zero_node);
6720 /* FALLTHRU */
6722 case CPP_DOT:
6723 /* offsetof-member-designator "." identifier */
6724 cp_lexer_consume_token (parser->lexer);
6725 expr = cp_parser_postfix_dot_deref_expression (parser, CPP_DOT,
6726 expr, true, &dummy,
6727 token->location);
6728 break;
6730 case CPP_CLOSE_PAREN:
6731 /* Consume the ")" token. */
6732 cp_lexer_consume_token (parser->lexer);
6733 goto success;
6735 default:
6736 /* Error. We know the following require will fail, but
6737 that gives the proper error message. */
6738 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
6739 cp_parser_skip_to_closing_parenthesis (parser, true, false, true);
6740 expr = error_mark_node;
6741 goto failure;
6745 success:
6746 /* If we're processing a template, we can't finish the semantics yet.
6747 Otherwise we can fold the entire expression now. */
6748 if (processing_template_decl)
6749 expr = build1 (OFFSETOF_EXPR, size_type_node, expr);
6750 else
6751 expr = finish_offsetof (expr);
6753 failure:
6754 parser->integral_constant_expression_p = save_ice_p;
6755 parser->non_integral_constant_expression_p = save_non_ice_p;
6757 return expr;
6760 /* Parse a trait expression. */
6762 static tree
6763 cp_parser_trait_expr (cp_parser* parser, enum rid keyword)
6765 cp_trait_kind kind;
6766 tree type1, type2 = NULL_TREE;
6767 bool binary = false;
6768 cp_decl_specifier_seq decl_specs;
6770 switch (keyword)
6772 case RID_HAS_NOTHROW_ASSIGN:
6773 kind = CPTK_HAS_NOTHROW_ASSIGN;
6774 break;
6775 case RID_HAS_NOTHROW_CONSTRUCTOR:
6776 kind = CPTK_HAS_NOTHROW_CONSTRUCTOR;
6777 break;
6778 case RID_HAS_NOTHROW_COPY:
6779 kind = CPTK_HAS_NOTHROW_COPY;
6780 break;
6781 case RID_HAS_TRIVIAL_ASSIGN:
6782 kind = CPTK_HAS_TRIVIAL_ASSIGN;
6783 break;
6784 case RID_HAS_TRIVIAL_CONSTRUCTOR:
6785 kind = CPTK_HAS_TRIVIAL_CONSTRUCTOR;
6786 break;
6787 case RID_HAS_TRIVIAL_COPY:
6788 kind = CPTK_HAS_TRIVIAL_COPY;
6789 break;
6790 case RID_HAS_TRIVIAL_DESTRUCTOR:
6791 kind = CPTK_HAS_TRIVIAL_DESTRUCTOR;
6792 break;
6793 case RID_HAS_VIRTUAL_DESTRUCTOR:
6794 kind = CPTK_HAS_VIRTUAL_DESTRUCTOR;
6795 break;
6796 case RID_IS_ABSTRACT:
6797 kind = CPTK_IS_ABSTRACT;
6798 break;
6799 case RID_IS_BASE_OF:
6800 kind = CPTK_IS_BASE_OF;
6801 binary = true;
6802 break;
6803 case RID_IS_CLASS:
6804 kind = CPTK_IS_CLASS;
6805 break;
6806 case RID_IS_CONVERTIBLE_TO:
6807 kind = CPTK_IS_CONVERTIBLE_TO;
6808 binary = true;
6809 break;
6810 case RID_IS_EMPTY:
6811 kind = CPTK_IS_EMPTY;
6812 break;
6813 case RID_IS_ENUM:
6814 kind = CPTK_IS_ENUM;
6815 break;
6816 case RID_IS_POD:
6817 kind = CPTK_IS_POD;
6818 break;
6819 case RID_IS_POLYMORPHIC:
6820 kind = CPTK_IS_POLYMORPHIC;
6821 break;
6822 case RID_IS_UNION:
6823 kind = CPTK_IS_UNION;
6824 break;
6825 default:
6826 gcc_unreachable ();
6829 /* Consume the token. */
6830 cp_lexer_consume_token (parser->lexer);
6832 cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>");
6834 type1 = cp_parser_type_id (parser);
6836 if (type1 == error_mark_node)
6837 return error_mark_node;
6839 /* Build a trivial decl-specifier-seq. */
6840 clear_decl_specs (&decl_specs);
6841 decl_specs.type = type1;
6843 /* Call grokdeclarator to figure out what type this is. */
6844 type1 = grokdeclarator (NULL, &decl_specs, TYPENAME,
6845 /*initialized=*/0, /*attrlist=*/NULL);
6847 if (binary)
6849 cp_parser_require (parser, CPP_COMMA, "%<,%>");
6851 type2 = cp_parser_type_id (parser);
6853 if (type2 == error_mark_node)
6854 return error_mark_node;
6856 /* Build a trivial decl-specifier-seq. */
6857 clear_decl_specs (&decl_specs);
6858 decl_specs.type = type2;
6860 /* Call grokdeclarator to figure out what type this is. */
6861 type2 = grokdeclarator (NULL, &decl_specs, TYPENAME,
6862 /*initialized=*/0, /*attrlist=*/NULL);
6865 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
6867 /* Complete the trait expression, which may mean either processing
6868 the trait expr now or saving it for template instantiation. */
6869 return finish_trait_expr (kind, type1, type2);
6872 /* Statements [gram.stmt.stmt] */
6874 /* Parse a statement.
6876 statement:
6877 labeled-statement
6878 expression-statement
6879 compound-statement
6880 selection-statement
6881 iteration-statement
6882 jump-statement
6883 declaration-statement
6884 try-block
6886 IN_COMPOUND is true when the statement is nested inside a
6887 cp_parser_compound_statement; this matters for certain pragmas.
6889 If IF_P is not NULL, *IF_P is set to indicate whether the statement
6890 is a (possibly labeled) if statement which is not enclosed in braces
6891 and has an else clause. This is used to implement -Wparentheses. */
6893 static void
6894 cp_parser_statement (cp_parser* parser, tree in_statement_expr,
6895 bool in_compound, bool *if_p)
6897 tree statement;
6898 cp_token *token;
6899 location_t statement_location;
6901 restart:
6902 if (if_p != NULL)
6903 *if_p = false;
6904 /* There is no statement yet. */
6905 statement = NULL_TREE;
6906 /* Peek at the next token. */
6907 token = cp_lexer_peek_token (parser->lexer);
6908 /* Remember the location of the first token in the statement. */
6909 statement_location = token->location;
6910 /* If this is a keyword, then that will often determine what kind of
6911 statement we have. */
6912 if (token->type == CPP_KEYWORD)
6914 enum rid keyword = token->keyword;
6916 switch (keyword)
6918 case RID_CASE:
6919 case RID_DEFAULT:
6920 /* Looks like a labeled-statement with a case label.
6921 Parse the label, and then use tail recursion to parse
6922 the statement. */
6923 cp_parser_label_for_labeled_statement (parser);
6924 goto restart;
6926 case RID_IF:
6927 case RID_SWITCH:
6928 statement = cp_parser_selection_statement (parser, if_p);
6929 break;
6931 case RID_WHILE:
6932 case RID_DO:
6933 case RID_FOR:
6934 statement = cp_parser_iteration_statement (parser);
6935 break;
6937 case RID_BREAK:
6938 case RID_CONTINUE:
6939 case RID_RETURN:
6940 case RID_GOTO:
6941 statement = cp_parser_jump_statement (parser);
6942 break;
6944 /* Objective-C++ exception-handling constructs. */
6945 case RID_AT_TRY:
6946 case RID_AT_CATCH:
6947 case RID_AT_FINALLY:
6948 case RID_AT_SYNCHRONIZED:
6949 case RID_AT_THROW:
6950 statement = cp_parser_objc_statement (parser);
6951 break;
6953 case RID_TRY:
6954 statement = cp_parser_try_block (parser);
6955 break;
6957 case RID_NAMESPACE:
6958 /* This must be a namespace alias definition. */
6959 cp_parser_declaration_statement (parser);
6960 return;
6962 default:
6963 /* It might be a keyword like `int' that can start a
6964 declaration-statement. */
6965 break;
6968 else if (token->type == CPP_NAME)
6970 /* If the next token is a `:', then we are looking at a
6971 labeled-statement. */
6972 token = cp_lexer_peek_nth_token (parser->lexer, 2);
6973 if (token->type == CPP_COLON)
6975 /* Looks like a labeled-statement with an ordinary label.
6976 Parse the label, and then use tail recursion to parse
6977 the statement. */
6978 cp_parser_label_for_labeled_statement (parser);
6979 goto restart;
6982 /* Anything that starts with a `{' must be a compound-statement. */
6983 else if (token->type == CPP_OPEN_BRACE)
6984 statement = cp_parser_compound_statement (parser, NULL, false);
6985 /* CPP_PRAGMA is a #pragma inside a function body, which constitutes
6986 a statement all its own. */
6987 else if (token->type == CPP_PRAGMA)
6989 /* Only certain OpenMP pragmas are attached to statements, and thus
6990 are considered statements themselves. All others are not. In
6991 the context of a compound, accept the pragma as a "statement" and
6992 return so that we can check for a close brace. Otherwise we
6993 require a real statement and must go back and read one. */
6994 if (in_compound)
6995 cp_parser_pragma (parser, pragma_compound);
6996 else if (!cp_parser_pragma (parser, pragma_stmt))
6997 goto restart;
6998 return;
7000 else if (token->type == CPP_EOF)
7002 cp_parser_error (parser, "expected statement");
7003 return;
7006 /* Everything else must be a declaration-statement or an
7007 expression-statement. Try for the declaration-statement
7008 first, unless we are looking at a `;', in which case we know that
7009 we have an expression-statement. */
7010 if (!statement)
7012 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
7014 cp_parser_parse_tentatively (parser);
7015 /* Try to parse the declaration-statement. */
7016 cp_parser_declaration_statement (parser);
7017 /* If that worked, we're done. */
7018 if (cp_parser_parse_definitely (parser))
7019 return;
7021 /* Look for an expression-statement instead. */
7022 statement = cp_parser_expression_statement (parser, in_statement_expr);
7025 /* Set the line number for the statement. */
7026 if (statement && STATEMENT_CODE_P (TREE_CODE (statement)))
7027 SET_EXPR_LOCATION (statement, statement_location);
7030 /* Parse the label for a labeled-statement, i.e.
7032 identifier :
7033 case constant-expression :
7034 default :
7036 GNU Extension:
7037 case constant-expression ... constant-expression : statement
7039 When a label is parsed without errors, the label is added to the
7040 parse tree by the finish_* functions, so this function doesn't
7041 have to return the label. */
7043 static void
7044 cp_parser_label_for_labeled_statement (cp_parser* parser)
7046 cp_token *token;
7048 /* The next token should be an identifier. */
7049 token = cp_lexer_peek_token (parser->lexer);
7050 if (token->type != CPP_NAME
7051 && token->type != CPP_KEYWORD)
7053 cp_parser_error (parser, "expected labeled-statement");
7054 return;
7057 switch (token->keyword)
7059 case RID_CASE:
7061 tree expr, expr_hi;
7062 cp_token *ellipsis;
7064 /* Consume the `case' token. */
7065 cp_lexer_consume_token (parser->lexer);
7066 /* Parse the constant-expression. */
7067 expr = cp_parser_constant_expression (parser,
7068 /*allow_non_constant_p=*/false,
7069 NULL);
7071 ellipsis = cp_lexer_peek_token (parser->lexer);
7072 if (ellipsis->type == CPP_ELLIPSIS)
7074 /* Consume the `...' token. */
7075 cp_lexer_consume_token (parser->lexer);
7076 expr_hi =
7077 cp_parser_constant_expression (parser,
7078 /*allow_non_constant_p=*/false,
7079 NULL);
7080 /* We don't need to emit warnings here, as the common code
7081 will do this for us. */
7083 else
7084 expr_hi = NULL_TREE;
7086 if (parser->in_switch_statement_p)
7087 finish_case_label (expr, expr_hi);
7088 else
7089 error ("%Hcase label %qE not within a switch statement",
7090 &token->location, expr);
7092 break;
7094 case RID_DEFAULT:
7095 /* Consume the `default' token. */
7096 cp_lexer_consume_token (parser->lexer);
7098 if (parser->in_switch_statement_p)
7099 finish_case_label (NULL_TREE, NULL_TREE);
7100 else
7101 error ("%Hcase label not within a switch statement", &token->location);
7102 break;
7104 default:
7105 /* Anything else must be an ordinary label. */
7106 finish_label_stmt (cp_parser_identifier (parser));
7107 break;
7110 /* Require the `:' token. */
7111 cp_parser_require (parser, CPP_COLON, "%<:%>");
7114 /* Parse an expression-statement.
7116 expression-statement:
7117 expression [opt] ;
7119 Returns the new EXPR_STMT -- or NULL_TREE if the expression
7120 statement consists of nothing more than an `;'. IN_STATEMENT_EXPR_P
7121 indicates whether this expression-statement is part of an
7122 expression statement. */
7124 static tree
7125 cp_parser_expression_statement (cp_parser* parser, tree in_statement_expr)
7127 tree statement = NULL_TREE;
7129 /* If the next token is a ';', then there is no expression
7130 statement. */
7131 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
7132 statement = cp_parser_expression (parser, /*cast_p=*/false, NULL);
7134 /* Consume the final `;'. */
7135 cp_parser_consume_semicolon_at_end_of_statement (parser);
7137 if (in_statement_expr
7138 && cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
7139 /* This is the final expression statement of a statement
7140 expression. */
7141 statement = finish_stmt_expr_expr (statement, in_statement_expr);
7142 else if (statement)
7143 statement = finish_expr_stmt (statement);
7144 else
7145 finish_stmt ();
7147 return statement;
7150 /* Parse a compound-statement.
7152 compound-statement:
7153 { statement-seq [opt] }
7155 GNU extension:
7157 compound-statement:
7158 { label-declaration-seq [opt] statement-seq [opt] }
7160 label-declaration-seq:
7161 label-declaration
7162 label-declaration-seq label-declaration
7164 Returns a tree representing the statement. */
7166 static tree
7167 cp_parser_compound_statement (cp_parser *parser, tree in_statement_expr,
7168 bool in_try)
7170 tree compound_stmt;
7172 /* Consume the `{'. */
7173 if (!cp_parser_require (parser, CPP_OPEN_BRACE, "%<{%>"))
7174 return error_mark_node;
7175 /* Begin the compound-statement. */
7176 compound_stmt = begin_compound_stmt (in_try ? BCS_TRY_BLOCK : 0);
7177 /* If the next keyword is `__label__' we have a label declaration. */
7178 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_LABEL))
7179 cp_parser_label_declaration (parser);
7180 /* Parse an (optional) statement-seq. */
7181 cp_parser_statement_seq_opt (parser, in_statement_expr);
7182 /* Finish the compound-statement. */
7183 finish_compound_stmt (compound_stmt);
7184 /* Consume the `}'. */
7185 cp_parser_require (parser, CPP_CLOSE_BRACE, "%<}%>");
7187 return compound_stmt;
7190 /* Parse an (optional) statement-seq.
7192 statement-seq:
7193 statement
7194 statement-seq [opt] statement */
7196 static void
7197 cp_parser_statement_seq_opt (cp_parser* parser, tree in_statement_expr)
7199 /* Scan statements until there aren't any more. */
7200 while (true)
7202 cp_token *token = cp_lexer_peek_token (parser->lexer);
7204 /* If we're looking at a `}', then we've run out of statements. */
7205 if (token->type == CPP_CLOSE_BRACE
7206 || token->type == CPP_EOF
7207 || token->type == CPP_PRAGMA_EOL)
7208 break;
7210 /* If we are in a compound statement and find 'else' then
7211 something went wrong. */
7212 else if (token->type == CPP_KEYWORD && token->keyword == RID_ELSE)
7214 if (parser->in_statement & IN_IF_STMT)
7215 break;
7216 else
7218 token = cp_lexer_consume_token (parser->lexer);
7219 error ("%H%<else%> without a previous %<if%>", &token->location);
7223 /* Parse the statement. */
7224 cp_parser_statement (parser, in_statement_expr, true, NULL);
7228 /* Parse a selection-statement.
7230 selection-statement:
7231 if ( condition ) statement
7232 if ( condition ) statement else statement
7233 switch ( condition ) statement
7235 Returns the new IF_STMT or SWITCH_STMT.
7237 If IF_P is not NULL, *IF_P is set to indicate whether the statement
7238 is a (possibly labeled) if statement which is not enclosed in
7239 braces and has an else clause. This is used to implement
7240 -Wparentheses. */
7242 static tree
7243 cp_parser_selection_statement (cp_parser* parser, bool *if_p)
7245 cp_token *token;
7246 enum rid keyword;
7248 if (if_p != NULL)
7249 *if_p = false;
7251 /* Peek at the next token. */
7252 token = cp_parser_require (parser, CPP_KEYWORD, "selection-statement");
7254 /* See what kind of keyword it is. */
7255 keyword = token->keyword;
7256 switch (keyword)
7258 case RID_IF:
7259 case RID_SWITCH:
7261 tree statement;
7262 tree condition;
7264 /* Look for the `('. */
7265 if (!cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>"))
7267 cp_parser_skip_to_end_of_statement (parser);
7268 return error_mark_node;
7271 /* Begin the selection-statement. */
7272 if (keyword == RID_IF)
7273 statement = begin_if_stmt ();
7274 else
7275 statement = begin_switch_stmt ();
7277 /* Parse the condition. */
7278 condition = cp_parser_condition (parser);
7279 /* Look for the `)'. */
7280 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>"))
7281 cp_parser_skip_to_closing_parenthesis (parser, true, false,
7282 /*consume_paren=*/true);
7284 if (keyword == RID_IF)
7286 bool nested_if;
7287 unsigned char in_statement;
7289 /* Add the condition. */
7290 finish_if_stmt_cond (condition, statement);
7292 /* Parse the then-clause. */
7293 in_statement = parser->in_statement;
7294 parser->in_statement |= IN_IF_STMT;
7295 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
7297 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
7298 add_stmt (build_empty_stmt ());
7299 cp_lexer_consume_token (parser->lexer);
7300 if (!cp_lexer_next_token_is_keyword (parser->lexer, RID_ELSE))
7301 warning_at (loc, OPT_Wempty_body, "suggest braces around "
7302 "empty body in an %<if%> statement");
7303 nested_if = false;
7305 else
7306 cp_parser_implicitly_scoped_statement (parser, &nested_if);
7307 parser->in_statement = in_statement;
7309 finish_then_clause (statement);
7311 /* If the next token is `else', parse the else-clause. */
7312 if (cp_lexer_next_token_is_keyword (parser->lexer,
7313 RID_ELSE))
7315 /* Consume the `else' keyword. */
7316 cp_lexer_consume_token (parser->lexer);
7317 begin_else_clause (statement);
7318 /* Parse the else-clause. */
7319 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
7321 warning_at (cp_lexer_peek_token (parser->lexer)->location,
7322 OPT_Wempty_body, "suggest braces around "
7323 "empty body in an %<else%> statement");
7324 add_stmt (build_empty_stmt ());
7325 cp_lexer_consume_token (parser->lexer);
7327 else
7328 cp_parser_implicitly_scoped_statement (parser, NULL);
7330 finish_else_clause (statement);
7332 /* If we are currently parsing a then-clause, then
7333 IF_P will not be NULL. We set it to true to
7334 indicate that this if statement has an else clause.
7335 This may trigger the Wparentheses warning below
7336 when we get back up to the parent if statement. */
7337 if (if_p != NULL)
7338 *if_p = true;
7340 else
7342 /* This if statement does not have an else clause. If
7343 NESTED_IF is true, then the then-clause is an if
7344 statement which does have an else clause. We warn
7345 about the potential ambiguity. */
7346 if (nested_if)
7347 warning (OPT_Wparentheses,
7348 ("%Hsuggest explicit braces "
7349 "to avoid ambiguous %<else%>"),
7350 EXPR_LOCUS (statement));
7353 /* Now we're all done with the if-statement. */
7354 finish_if_stmt (statement);
7356 else
7358 bool in_switch_statement_p;
7359 unsigned char in_statement;
7361 /* Add the condition. */
7362 finish_switch_cond (condition, statement);
7364 /* Parse the body of the switch-statement. */
7365 in_switch_statement_p = parser->in_switch_statement_p;
7366 in_statement = parser->in_statement;
7367 parser->in_switch_statement_p = true;
7368 parser->in_statement |= IN_SWITCH_STMT;
7369 cp_parser_implicitly_scoped_statement (parser, NULL);
7370 parser->in_switch_statement_p = in_switch_statement_p;
7371 parser->in_statement = in_statement;
7373 /* Now we're all done with the switch-statement. */
7374 finish_switch_stmt (statement);
7377 return statement;
7379 break;
7381 default:
7382 cp_parser_error (parser, "expected selection-statement");
7383 return error_mark_node;
7387 /* Parse a condition.
7389 condition:
7390 expression
7391 type-specifier-seq declarator = initializer-clause
7392 type-specifier-seq declarator braced-init-list
7394 GNU Extension:
7396 condition:
7397 type-specifier-seq declarator asm-specification [opt]
7398 attributes [opt] = assignment-expression
7400 Returns the expression that should be tested. */
7402 static tree
7403 cp_parser_condition (cp_parser* parser)
7405 cp_decl_specifier_seq type_specifiers;
7406 const char *saved_message;
7408 /* Try the declaration first. */
7409 cp_parser_parse_tentatively (parser);
7410 /* New types are not allowed in the type-specifier-seq for a
7411 condition. */
7412 saved_message = parser->type_definition_forbidden_message;
7413 parser->type_definition_forbidden_message
7414 = "types may not be defined in conditions";
7415 /* Parse the type-specifier-seq. */
7416 cp_parser_type_specifier_seq (parser, /*is_condition==*/true,
7417 &type_specifiers);
7418 /* Restore the saved message. */
7419 parser->type_definition_forbidden_message = saved_message;
7420 /* If all is well, we might be looking at a declaration. */
7421 if (!cp_parser_error_occurred (parser))
7423 tree decl;
7424 tree asm_specification;
7425 tree attributes;
7426 cp_declarator *declarator;
7427 tree initializer = NULL_TREE;
7429 /* Parse the declarator. */
7430 declarator = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
7431 /*ctor_dtor_or_conv_p=*/NULL,
7432 /*parenthesized_p=*/NULL,
7433 /*member_p=*/false);
7434 /* Parse the attributes. */
7435 attributes = cp_parser_attributes_opt (parser);
7436 /* Parse the asm-specification. */
7437 asm_specification = cp_parser_asm_specification_opt (parser);
7438 /* If the next token is not an `=' or '{', then we might still be
7439 looking at an expression. For example:
7441 if (A(a).x)
7443 looks like a decl-specifier-seq and a declarator -- but then
7444 there is no `=', so this is an expression. */
7445 if (cp_lexer_next_token_is_not (parser->lexer, CPP_EQ)
7446 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE))
7447 cp_parser_simulate_error (parser);
7449 /* If we did see an `=' or '{', then we are looking at a declaration
7450 for sure. */
7451 if (cp_parser_parse_definitely (parser))
7453 tree pushed_scope;
7454 bool non_constant_p;
7455 bool flags = LOOKUP_ONLYCONVERTING;
7457 /* Create the declaration. */
7458 decl = start_decl (declarator, &type_specifiers,
7459 /*initialized_p=*/true,
7460 attributes, /*prefix_attributes=*/NULL_TREE,
7461 &pushed_scope);
7463 /* Parse the initializer. */
7464 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
7466 initializer = cp_parser_braced_list (parser, &non_constant_p);
7467 CONSTRUCTOR_IS_DIRECT_INIT (initializer) = 1;
7468 flags = 0;
7470 else
7472 /* Consume the `='. */
7473 cp_parser_require (parser, CPP_EQ, "%<=%>");
7474 initializer = cp_parser_initializer_clause (parser, &non_constant_p);
7476 if (BRACE_ENCLOSED_INITIALIZER_P (initializer))
7477 maybe_warn_cpp0x ("extended initializer lists");
7479 if (!non_constant_p)
7480 initializer = fold_non_dependent_expr (initializer);
7482 /* Process the initializer. */
7483 cp_finish_decl (decl,
7484 initializer, !non_constant_p,
7485 asm_specification,
7486 flags);
7488 if (pushed_scope)
7489 pop_scope (pushed_scope);
7491 return convert_from_reference (decl);
7494 /* If we didn't even get past the declarator successfully, we are
7495 definitely not looking at a declaration. */
7496 else
7497 cp_parser_abort_tentative_parse (parser);
7499 /* Otherwise, we are looking at an expression. */
7500 return cp_parser_expression (parser, /*cast_p=*/false, NULL);
7503 /* Parse an iteration-statement.
7505 iteration-statement:
7506 while ( condition ) statement
7507 do statement while ( expression ) ;
7508 for ( for-init-statement condition [opt] ; expression [opt] )
7509 statement
7511 Returns the new WHILE_STMT, DO_STMT, or FOR_STMT. */
7513 static tree
7514 cp_parser_iteration_statement (cp_parser* parser)
7516 cp_token *token;
7517 enum rid keyword;
7518 tree statement;
7519 unsigned char in_statement;
7521 /* Peek at the next token. */
7522 token = cp_parser_require (parser, CPP_KEYWORD, "iteration-statement");
7523 if (!token)
7524 return error_mark_node;
7526 /* Remember whether or not we are already within an iteration
7527 statement. */
7528 in_statement = parser->in_statement;
7530 /* See what kind of keyword it is. */
7531 keyword = token->keyword;
7532 switch (keyword)
7534 case RID_WHILE:
7536 tree condition;
7538 /* Begin the while-statement. */
7539 statement = begin_while_stmt ();
7540 /* Look for the `('. */
7541 cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>");
7542 /* Parse the condition. */
7543 condition = cp_parser_condition (parser);
7544 finish_while_stmt_cond (condition, statement);
7545 /* Look for the `)'. */
7546 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
7547 /* Parse the dependent statement. */
7548 parser->in_statement = IN_ITERATION_STMT;
7549 cp_parser_already_scoped_statement (parser);
7550 parser->in_statement = in_statement;
7551 /* We're done with the while-statement. */
7552 finish_while_stmt (statement);
7554 break;
7556 case RID_DO:
7558 tree expression;
7560 /* Begin the do-statement. */
7561 statement = begin_do_stmt ();
7562 /* Parse the body of the do-statement. */
7563 parser->in_statement = IN_ITERATION_STMT;
7564 cp_parser_implicitly_scoped_statement (parser, NULL);
7565 parser->in_statement = in_statement;
7566 finish_do_body (statement);
7567 /* Look for the `while' keyword. */
7568 cp_parser_require_keyword (parser, RID_WHILE, "%<while%>");
7569 /* Look for the `('. */
7570 cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>");
7571 /* Parse the expression. */
7572 expression = cp_parser_expression (parser, /*cast_p=*/false, NULL);
7573 /* We're done with the do-statement. */
7574 finish_do_stmt (expression, statement);
7575 /* Look for the `)'. */
7576 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
7577 /* Look for the `;'. */
7578 cp_parser_require (parser, CPP_SEMICOLON, "%<;%>");
7580 break;
7582 case RID_FOR:
7584 tree condition = NULL_TREE;
7585 tree expression = NULL_TREE;
7587 /* Begin the for-statement. */
7588 statement = begin_for_stmt ();
7589 /* Look for the `('. */
7590 cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>");
7591 /* Parse the initialization. */
7592 cp_parser_for_init_statement (parser);
7593 finish_for_init_stmt (statement);
7595 /* If there's a condition, process it. */
7596 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
7597 condition = cp_parser_condition (parser);
7598 finish_for_cond (condition, statement);
7599 /* Look for the `;'. */
7600 cp_parser_require (parser, CPP_SEMICOLON, "%<;%>");
7602 /* If there's an expression, process it. */
7603 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN))
7604 expression = cp_parser_expression (parser, /*cast_p=*/false, NULL);
7605 finish_for_expr (expression, statement);
7606 /* Look for the `)'. */
7607 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
7609 /* Parse the body of the for-statement. */
7610 parser->in_statement = IN_ITERATION_STMT;
7611 cp_parser_already_scoped_statement (parser);
7612 parser->in_statement = in_statement;
7614 /* We're done with the for-statement. */
7615 finish_for_stmt (statement);
7617 break;
7619 default:
7620 cp_parser_error (parser, "expected iteration-statement");
7621 statement = error_mark_node;
7622 break;
7625 return statement;
7628 /* Parse a for-init-statement.
7630 for-init-statement:
7631 expression-statement
7632 simple-declaration */
7634 static void
7635 cp_parser_for_init_statement (cp_parser* parser)
7637 /* If the next token is a `;', then we have an empty
7638 expression-statement. Grammatically, this is also a
7639 simple-declaration, but an invalid one, because it does not
7640 declare anything. Therefore, if we did not handle this case
7641 specially, we would issue an error message about an invalid
7642 declaration. */
7643 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
7645 /* We're going to speculatively look for a declaration, falling back
7646 to an expression, if necessary. */
7647 cp_parser_parse_tentatively (parser);
7648 /* Parse the declaration. */
7649 cp_parser_simple_declaration (parser,
7650 /*function_definition_allowed_p=*/false);
7651 /* If the tentative parse failed, then we shall need to look for an
7652 expression-statement. */
7653 if (cp_parser_parse_definitely (parser))
7654 return;
7657 cp_parser_expression_statement (parser, false);
7660 /* Parse a jump-statement.
7662 jump-statement:
7663 break ;
7664 continue ;
7665 return expression [opt] ;
7666 return braced-init-list ;
7667 goto identifier ;
7669 GNU extension:
7671 jump-statement:
7672 goto * expression ;
7674 Returns the new BREAK_STMT, CONTINUE_STMT, RETURN_EXPR, or GOTO_EXPR. */
7676 static tree
7677 cp_parser_jump_statement (cp_parser* parser)
7679 tree statement = error_mark_node;
7680 cp_token *token;
7681 enum rid keyword;
7682 unsigned char in_statement;
7684 /* Peek at the next token. */
7685 token = cp_parser_require (parser, CPP_KEYWORD, "jump-statement");
7686 if (!token)
7687 return error_mark_node;
7689 /* See what kind of keyword it is. */
7690 keyword = token->keyword;
7691 switch (keyword)
7693 case RID_BREAK:
7694 in_statement = parser->in_statement & ~IN_IF_STMT;
7695 switch (in_statement)
7697 case 0:
7698 error ("%Hbreak statement not within loop or switch", &token->location);
7699 break;
7700 default:
7701 gcc_assert ((in_statement & IN_SWITCH_STMT)
7702 || in_statement == IN_ITERATION_STMT);
7703 statement = finish_break_stmt ();
7704 break;
7705 case IN_OMP_BLOCK:
7706 error ("%Hinvalid exit from OpenMP structured block", &token->location);
7707 break;
7708 case IN_OMP_FOR:
7709 error ("%Hbreak statement used with OpenMP for loop", &token->location);
7710 break;
7712 cp_parser_require (parser, CPP_SEMICOLON, "%<;%>");
7713 break;
7715 case RID_CONTINUE:
7716 switch (parser->in_statement & ~(IN_SWITCH_STMT | IN_IF_STMT))
7718 case 0:
7719 error ("%Hcontinue statement not within a loop", &token->location);
7720 break;
7721 case IN_ITERATION_STMT:
7722 case IN_OMP_FOR:
7723 statement = finish_continue_stmt ();
7724 break;
7725 case IN_OMP_BLOCK:
7726 error ("%Hinvalid exit from OpenMP structured block", &token->location);
7727 break;
7728 default:
7729 gcc_unreachable ();
7731 cp_parser_require (parser, CPP_SEMICOLON, "%<;%>");
7732 break;
7734 case RID_RETURN:
7736 tree expr;
7737 bool expr_non_constant_p;
7739 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
7741 maybe_warn_cpp0x ("extended initializer lists");
7742 expr = cp_parser_braced_list (parser, &expr_non_constant_p);
7744 else if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
7745 expr = cp_parser_expression (parser, /*cast_p=*/false, NULL);
7746 else
7747 /* If the next token is a `;', then there is no
7748 expression. */
7749 expr = NULL_TREE;
7750 /* Build the return-statement. */
7751 statement = finish_return_stmt (expr);
7752 /* Look for the final `;'. */
7753 cp_parser_require (parser, CPP_SEMICOLON, "%<;%>");
7755 break;
7757 case RID_GOTO:
7758 /* Create the goto-statement. */
7759 if (cp_lexer_next_token_is (parser->lexer, CPP_MULT))
7761 /* Issue a warning about this use of a GNU extension. */
7762 pedwarn (token->location, OPT_pedantic, "ISO C++ forbids computed gotos");
7763 /* Consume the '*' token. */
7764 cp_lexer_consume_token (parser->lexer);
7765 /* Parse the dependent expression. */
7766 finish_goto_stmt (cp_parser_expression (parser, /*cast_p=*/false, NULL));
7768 else
7769 finish_goto_stmt (cp_parser_identifier (parser));
7770 /* Look for the final `;'. */
7771 cp_parser_require (parser, CPP_SEMICOLON, "%<;%>");
7772 break;
7774 default:
7775 cp_parser_error (parser, "expected jump-statement");
7776 break;
7779 return statement;
7782 /* Parse a declaration-statement.
7784 declaration-statement:
7785 block-declaration */
7787 static void
7788 cp_parser_declaration_statement (cp_parser* parser)
7790 void *p;
7792 /* Get the high-water mark for the DECLARATOR_OBSTACK. */
7793 p = obstack_alloc (&declarator_obstack, 0);
7795 /* Parse the block-declaration. */
7796 cp_parser_block_declaration (parser, /*statement_p=*/true);
7798 /* Free any declarators allocated. */
7799 obstack_free (&declarator_obstack, p);
7801 /* Finish off the statement. */
7802 finish_stmt ();
7805 /* Some dependent statements (like `if (cond) statement'), are
7806 implicitly in their own scope. In other words, if the statement is
7807 a single statement (as opposed to a compound-statement), it is
7808 none-the-less treated as if it were enclosed in braces. Any
7809 declarations appearing in the dependent statement are out of scope
7810 after control passes that point. This function parses a statement,
7811 but ensures that is in its own scope, even if it is not a
7812 compound-statement.
7814 If IF_P is not NULL, *IF_P is set to indicate whether the statement
7815 is a (possibly labeled) if statement which is not enclosed in
7816 braces and has an else clause. This is used to implement
7817 -Wparentheses.
7819 Returns the new statement. */
7821 static tree
7822 cp_parser_implicitly_scoped_statement (cp_parser* parser, bool *if_p)
7824 tree statement;
7826 if (if_p != NULL)
7827 *if_p = false;
7829 /* Mark if () ; with a special NOP_EXPR. */
7830 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
7832 cp_lexer_consume_token (parser->lexer);
7833 statement = add_stmt (build_empty_stmt ());
7835 /* if a compound is opened, we simply parse the statement directly. */
7836 else if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
7837 statement = cp_parser_compound_statement (parser, NULL, false);
7838 /* If the token is not a `{', then we must take special action. */
7839 else
7841 /* Create a compound-statement. */
7842 statement = begin_compound_stmt (0);
7843 /* Parse the dependent-statement. */
7844 cp_parser_statement (parser, NULL_TREE, false, if_p);
7845 /* Finish the dummy compound-statement. */
7846 finish_compound_stmt (statement);
7849 /* Return the statement. */
7850 return statement;
7853 /* For some dependent statements (like `while (cond) statement'), we
7854 have already created a scope. Therefore, even if the dependent
7855 statement is a compound-statement, we do not want to create another
7856 scope. */
7858 static void
7859 cp_parser_already_scoped_statement (cp_parser* parser)
7861 /* If the token is a `{', then we must take special action. */
7862 if (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE))
7863 cp_parser_statement (parser, NULL_TREE, false, NULL);
7864 else
7866 /* Avoid calling cp_parser_compound_statement, so that we
7867 don't create a new scope. Do everything else by hand. */
7868 cp_parser_require (parser, CPP_OPEN_BRACE, "%<{%>");
7869 /* If the next keyword is `__label__' we have a label declaration. */
7870 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_LABEL))
7871 cp_parser_label_declaration (parser);
7872 /* Parse an (optional) statement-seq. */
7873 cp_parser_statement_seq_opt (parser, NULL_TREE);
7874 cp_parser_require (parser, CPP_CLOSE_BRACE, "%<}%>");
7878 /* Declarations [gram.dcl.dcl] */
7880 /* Parse an optional declaration-sequence.
7882 declaration-seq:
7883 declaration
7884 declaration-seq declaration */
7886 static void
7887 cp_parser_declaration_seq_opt (cp_parser* parser)
7889 while (true)
7891 cp_token *token;
7893 token = cp_lexer_peek_token (parser->lexer);
7895 if (token->type == CPP_CLOSE_BRACE
7896 || token->type == CPP_EOF
7897 || token->type == CPP_PRAGMA_EOL)
7898 break;
7900 if (token->type == CPP_SEMICOLON)
7902 /* A declaration consisting of a single semicolon is
7903 invalid. Allow it unless we're being pedantic. */
7904 cp_lexer_consume_token (parser->lexer);
7905 if (!in_system_header)
7906 pedwarn (input_location, OPT_pedantic, "extra %<;%>");
7907 continue;
7910 /* If we're entering or exiting a region that's implicitly
7911 extern "C", modify the lang context appropriately. */
7912 if (!parser->implicit_extern_c && token->implicit_extern_c)
7914 push_lang_context (lang_name_c);
7915 parser->implicit_extern_c = true;
7917 else if (parser->implicit_extern_c && !token->implicit_extern_c)
7919 pop_lang_context ();
7920 parser->implicit_extern_c = false;
7923 if (token->type == CPP_PRAGMA)
7925 /* A top-level declaration can consist solely of a #pragma.
7926 A nested declaration cannot, so this is done here and not
7927 in cp_parser_declaration. (A #pragma at block scope is
7928 handled in cp_parser_statement.) */
7929 cp_parser_pragma (parser, pragma_external);
7930 continue;
7933 /* Parse the declaration itself. */
7934 cp_parser_declaration (parser);
7938 /* Parse a declaration.
7940 declaration:
7941 block-declaration
7942 function-definition
7943 template-declaration
7944 explicit-instantiation
7945 explicit-specialization
7946 linkage-specification
7947 namespace-definition
7949 GNU extension:
7951 declaration:
7952 __extension__ declaration */
7954 static void
7955 cp_parser_declaration (cp_parser* parser)
7957 cp_token token1;
7958 cp_token token2;
7959 int saved_pedantic;
7960 void *p;
7962 /* Check for the `__extension__' keyword. */
7963 if (cp_parser_extension_opt (parser, &saved_pedantic))
7965 /* Parse the qualified declaration. */
7966 cp_parser_declaration (parser);
7967 /* Restore the PEDANTIC flag. */
7968 pedantic = saved_pedantic;
7970 return;
7973 /* Try to figure out what kind of declaration is present. */
7974 token1 = *cp_lexer_peek_token (parser->lexer);
7976 if (token1.type != CPP_EOF)
7977 token2 = *cp_lexer_peek_nth_token (parser->lexer, 2);
7978 else
7980 token2.type = CPP_EOF;
7981 token2.keyword = RID_MAX;
7984 /* Get the high-water mark for the DECLARATOR_OBSTACK. */
7985 p = obstack_alloc (&declarator_obstack, 0);
7987 /* If the next token is `extern' and the following token is a string
7988 literal, then we have a linkage specification. */
7989 if (token1.keyword == RID_EXTERN
7990 && cp_parser_is_string_literal (&token2))
7991 cp_parser_linkage_specification (parser);
7992 /* If the next token is `template', then we have either a template
7993 declaration, an explicit instantiation, or an explicit
7994 specialization. */
7995 else if (token1.keyword == RID_TEMPLATE)
7997 /* `template <>' indicates a template specialization. */
7998 if (token2.type == CPP_LESS
7999 && cp_lexer_peek_nth_token (parser->lexer, 3)->type == CPP_GREATER)
8000 cp_parser_explicit_specialization (parser);
8001 /* `template <' indicates a template declaration. */
8002 else if (token2.type == CPP_LESS)
8003 cp_parser_template_declaration (parser, /*member_p=*/false);
8004 /* Anything else must be an explicit instantiation. */
8005 else
8006 cp_parser_explicit_instantiation (parser);
8008 /* If the next token is `export', then we have a template
8009 declaration. */
8010 else if (token1.keyword == RID_EXPORT)
8011 cp_parser_template_declaration (parser, /*member_p=*/false);
8012 /* If the next token is `extern', 'static' or 'inline' and the one
8013 after that is `template', we have a GNU extended explicit
8014 instantiation directive. */
8015 else if (cp_parser_allow_gnu_extensions_p (parser)
8016 && (token1.keyword == RID_EXTERN
8017 || token1.keyword == RID_STATIC
8018 || token1.keyword == RID_INLINE)
8019 && token2.keyword == RID_TEMPLATE)
8020 cp_parser_explicit_instantiation (parser);
8021 /* If the next token is `namespace', check for a named or unnamed
8022 namespace definition. */
8023 else if (token1.keyword == RID_NAMESPACE
8024 && (/* A named namespace definition. */
8025 (token2.type == CPP_NAME
8026 && (cp_lexer_peek_nth_token (parser->lexer, 3)->type
8027 != CPP_EQ))
8028 /* An unnamed namespace definition. */
8029 || token2.type == CPP_OPEN_BRACE
8030 || token2.keyword == RID_ATTRIBUTE))
8031 cp_parser_namespace_definition (parser);
8032 /* An inline (associated) namespace definition. */
8033 else if (token1.keyword == RID_INLINE
8034 && token2.keyword == RID_NAMESPACE)
8035 cp_parser_namespace_definition (parser);
8036 /* Objective-C++ declaration/definition. */
8037 else if (c_dialect_objc () && OBJC_IS_AT_KEYWORD (token1.keyword))
8038 cp_parser_objc_declaration (parser);
8039 /* We must have either a block declaration or a function
8040 definition. */
8041 else
8042 /* Try to parse a block-declaration, or a function-definition. */
8043 cp_parser_block_declaration (parser, /*statement_p=*/false);
8045 /* Free any declarators allocated. */
8046 obstack_free (&declarator_obstack, p);
8049 /* Parse a block-declaration.
8051 block-declaration:
8052 simple-declaration
8053 asm-definition
8054 namespace-alias-definition
8055 using-declaration
8056 using-directive
8058 GNU Extension:
8060 block-declaration:
8061 __extension__ block-declaration
8063 C++0x Extension:
8065 block-declaration:
8066 static_assert-declaration
8068 If STATEMENT_P is TRUE, then this block-declaration is occurring as
8069 part of a declaration-statement. */
8071 static void
8072 cp_parser_block_declaration (cp_parser *parser,
8073 bool statement_p)
8075 cp_token *token1;
8076 int saved_pedantic;
8078 /* Check for the `__extension__' keyword. */
8079 if (cp_parser_extension_opt (parser, &saved_pedantic))
8081 /* Parse the qualified declaration. */
8082 cp_parser_block_declaration (parser, statement_p);
8083 /* Restore the PEDANTIC flag. */
8084 pedantic = saved_pedantic;
8086 return;
8089 /* Peek at the next token to figure out which kind of declaration is
8090 present. */
8091 token1 = cp_lexer_peek_token (parser->lexer);
8093 /* If the next keyword is `asm', we have an asm-definition. */
8094 if (token1->keyword == RID_ASM)
8096 if (statement_p)
8097 cp_parser_commit_to_tentative_parse (parser);
8098 cp_parser_asm_definition (parser);
8100 /* If the next keyword is `namespace', we have a
8101 namespace-alias-definition. */
8102 else if (token1->keyword == RID_NAMESPACE)
8103 cp_parser_namespace_alias_definition (parser);
8104 /* If the next keyword is `using', we have either a
8105 using-declaration or a using-directive. */
8106 else if (token1->keyword == RID_USING)
8108 cp_token *token2;
8110 if (statement_p)
8111 cp_parser_commit_to_tentative_parse (parser);
8112 /* If the token after `using' is `namespace', then we have a
8113 using-directive. */
8114 token2 = cp_lexer_peek_nth_token (parser->lexer, 2);
8115 if (token2->keyword == RID_NAMESPACE)
8116 cp_parser_using_directive (parser);
8117 /* Otherwise, it's a using-declaration. */
8118 else
8119 cp_parser_using_declaration (parser,
8120 /*access_declaration_p=*/false);
8122 /* If the next keyword is `__label__' we have a misplaced label
8123 declaration. */
8124 else if (token1->keyword == RID_LABEL)
8126 cp_lexer_consume_token (parser->lexer);
8127 error ("%H%<__label__%> not at the beginning of a block", &token1->location);
8128 cp_parser_skip_to_end_of_statement (parser);
8129 /* If the next token is now a `;', consume it. */
8130 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
8131 cp_lexer_consume_token (parser->lexer);
8133 /* If the next token is `static_assert' we have a static assertion. */
8134 else if (token1->keyword == RID_STATIC_ASSERT)
8135 cp_parser_static_assert (parser, /*member_p=*/false);
8136 /* Anything else must be a simple-declaration. */
8137 else
8138 cp_parser_simple_declaration (parser, !statement_p);
8141 /* Parse a simple-declaration.
8143 simple-declaration:
8144 decl-specifier-seq [opt] init-declarator-list [opt] ;
8146 init-declarator-list:
8147 init-declarator
8148 init-declarator-list , init-declarator
8150 If FUNCTION_DEFINITION_ALLOWED_P is TRUE, then we also recognize a
8151 function-definition as a simple-declaration. */
8153 static void
8154 cp_parser_simple_declaration (cp_parser* parser,
8155 bool function_definition_allowed_p)
8157 cp_decl_specifier_seq decl_specifiers;
8158 int declares_class_or_enum;
8159 bool saw_declarator;
8161 /* Defer access checks until we know what is being declared; the
8162 checks for names appearing in the decl-specifier-seq should be
8163 done as if we were in the scope of the thing being declared. */
8164 push_deferring_access_checks (dk_deferred);
8166 /* Parse the decl-specifier-seq. We have to keep track of whether
8167 or not the decl-specifier-seq declares a named class or
8168 enumeration type, since that is the only case in which the
8169 init-declarator-list is allowed to be empty.
8171 [dcl.dcl]
8173 In a simple-declaration, the optional init-declarator-list can be
8174 omitted only when declaring a class or enumeration, that is when
8175 the decl-specifier-seq contains either a class-specifier, an
8176 elaborated-type-specifier, or an enum-specifier. */
8177 cp_parser_decl_specifier_seq (parser,
8178 CP_PARSER_FLAGS_OPTIONAL,
8179 &decl_specifiers,
8180 &declares_class_or_enum);
8181 /* We no longer need to defer access checks. */
8182 stop_deferring_access_checks ();
8184 /* In a block scope, a valid declaration must always have a
8185 decl-specifier-seq. By not trying to parse declarators, we can
8186 resolve the declaration/expression ambiguity more quickly. */
8187 if (!function_definition_allowed_p
8188 && !decl_specifiers.any_specifiers_p)
8190 cp_parser_error (parser, "expected declaration");
8191 goto done;
8194 /* If the next two tokens are both identifiers, the code is
8195 erroneous. The usual cause of this situation is code like:
8197 T t;
8199 where "T" should name a type -- but does not. */
8200 if (!decl_specifiers.type
8201 && cp_parser_parse_and_diagnose_invalid_type_name (parser))
8203 /* If parsing tentatively, we should commit; we really are
8204 looking at a declaration. */
8205 cp_parser_commit_to_tentative_parse (parser);
8206 /* Give up. */
8207 goto done;
8210 /* If we have seen at least one decl-specifier, and the next token
8211 is not a parenthesis, then we must be looking at a declaration.
8212 (After "int (" we might be looking at a functional cast.) */
8213 if (decl_specifiers.any_specifiers_p
8214 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_PAREN)
8215 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE)
8216 && !cp_parser_error_occurred (parser))
8217 cp_parser_commit_to_tentative_parse (parser);
8219 /* Keep going until we hit the `;' at the end of the simple
8220 declaration. */
8221 saw_declarator = false;
8222 while (cp_lexer_next_token_is_not (parser->lexer,
8223 CPP_SEMICOLON))
8225 cp_token *token;
8226 bool function_definition_p;
8227 tree decl;
8229 if (saw_declarator)
8231 /* If we are processing next declarator, coma is expected */
8232 token = cp_lexer_peek_token (parser->lexer);
8233 gcc_assert (token->type == CPP_COMMA);
8234 cp_lexer_consume_token (parser->lexer);
8236 else
8237 saw_declarator = true;
8239 /* Parse the init-declarator. */
8240 decl = cp_parser_init_declarator (parser, &decl_specifiers,
8241 /*checks=*/NULL,
8242 function_definition_allowed_p,
8243 /*member_p=*/false,
8244 declares_class_or_enum,
8245 &function_definition_p);
8246 /* If an error occurred while parsing tentatively, exit quickly.
8247 (That usually happens when in the body of a function; each
8248 statement is treated as a declaration-statement until proven
8249 otherwise.) */
8250 if (cp_parser_error_occurred (parser))
8251 goto done;
8252 /* Handle function definitions specially. */
8253 if (function_definition_p)
8255 /* If the next token is a `,', then we are probably
8256 processing something like:
8258 void f() {}, *p;
8260 which is erroneous. */
8261 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
8263 cp_token *token = cp_lexer_peek_token (parser->lexer);
8264 error ("%Hmixing declarations and function-definitions is forbidden",
8265 &token->location);
8267 /* Otherwise, we're done with the list of declarators. */
8268 else
8270 pop_deferring_access_checks ();
8271 return;
8274 /* The next token should be either a `,' or a `;'. */
8275 token = cp_lexer_peek_token (parser->lexer);
8276 /* If it's a `,', there are more declarators to come. */
8277 if (token->type == CPP_COMMA)
8278 /* will be consumed next time around */;
8279 /* If it's a `;', we are done. */
8280 else if (token->type == CPP_SEMICOLON)
8281 break;
8282 /* Anything else is an error. */
8283 else
8285 /* If we have already issued an error message we don't need
8286 to issue another one. */
8287 if (decl != error_mark_node
8288 || cp_parser_uncommitted_to_tentative_parse_p (parser))
8289 cp_parser_error (parser, "expected %<,%> or %<;%>");
8290 /* Skip tokens until we reach the end of the statement. */
8291 cp_parser_skip_to_end_of_statement (parser);
8292 /* If the next token is now a `;', consume it. */
8293 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
8294 cp_lexer_consume_token (parser->lexer);
8295 goto done;
8297 /* After the first time around, a function-definition is not
8298 allowed -- even if it was OK at first. For example:
8300 int i, f() {}
8302 is not valid. */
8303 function_definition_allowed_p = false;
8306 /* Issue an error message if no declarators are present, and the
8307 decl-specifier-seq does not itself declare a class or
8308 enumeration. */
8309 if (!saw_declarator)
8311 if (cp_parser_declares_only_class_p (parser))
8312 shadow_tag (&decl_specifiers);
8313 /* Perform any deferred access checks. */
8314 perform_deferred_access_checks ();
8317 /* Consume the `;'. */
8318 cp_parser_require (parser, CPP_SEMICOLON, "%<;%>");
8320 done:
8321 pop_deferring_access_checks ();
8324 /* Parse a decl-specifier-seq.
8326 decl-specifier-seq:
8327 decl-specifier-seq [opt] decl-specifier
8329 decl-specifier:
8330 storage-class-specifier
8331 type-specifier
8332 function-specifier
8333 friend
8334 typedef
8336 GNU Extension:
8338 decl-specifier:
8339 attributes
8341 Set *DECL_SPECS to a representation of the decl-specifier-seq.
8343 The parser flags FLAGS is used to control type-specifier parsing.
8345 *DECLARES_CLASS_OR_ENUM is set to the bitwise or of the following
8346 flags:
8348 1: one of the decl-specifiers is an elaborated-type-specifier
8349 (i.e., a type declaration)
8350 2: one of the decl-specifiers is an enum-specifier or a
8351 class-specifier (i.e., a type definition)
8355 static void
8356 cp_parser_decl_specifier_seq (cp_parser* parser,
8357 cp_parser_flags flags,
8358 cp_decl_specifier_seq *decl_specs,
8359 int* declares_class_or_enum)
8361 bool constructor_possible_p = !parser->in_declarator_p;
8362 cp_token *start_token = NULL;
8364 /* Clear DECL_SPECS. */
8365 clear_decl_specs (decl_specs);
8367 /* Assume no class or enumeration type is declared. */
8368 *declares_class_or_enum = 0;
8370 /* Keep reading specifiers until there are no more to read. */
8371 while (true)
8373 bool constructor_p;
8374 bool found_decl_spec;
8375 cp_token *token;
8377 /* Peek at the next token. */
8378 token = cp_lexer_peek_token (parser->lexer);
8380 /* Save the first token of the decl spec list for error
8381 reporting. */
8382 if (!start_token)
8383 start_token = token;
8384 /* Handle attributes. */
8385 if (token->keyword == RID_ATTRIBUTE)
8387 /* Parse the attributes. */
8388 decl_specs->attributes
8389 = chainon (decl_specs->attributes,
8390 cp_parser_attributes_opt (parser));
8391 continue;
8393 /* Assume we will find a decl-specifier keyword. */
8394 found_decl_spec = true;
8395 /* If the next token is an appropriate keyword, we can simply
8396 add it to the list. */
8397 switch (token->keyword)
8399 /* decl-specifier:
8400 friend */
8401 case RID_FRIEND:
8402 if (!at_class_scope_p ())
8404 error ("%H%<friend%> used outside of class", &token->location);
8405 cp_lexer_purge_token (parser->lexer);
8407 else
8409 ++decl_specs->specs[(int) ds_friend];
8410 /* Consume the token. */
8411 cp_lexer_consume_token (parser->lexer);
8413 break;
8415 /* function-specifier:
8416 inline
8417 virtual
8418 explicit */
8419 case RID_INLINE:
8420 case RID_VIRTUAL:
8421 case RID_EXPLICIT:
8422 cp_parser_function_specifier_opt (parser, decl_specs);
8423 break;
8425 /* decl-specifier:
8426 typedef */
8427 case RID_TYPEDEF:
8428 ++decl_specs->specs[(int) ds_typedef];
8429 /* Consume the token. */
8430 cp_lexer_consume_token (parser->lexer);
8431 /* A constructor declarator cannot appear in a typedef. */
8432 constructor_possible_p = false;
8433 /* The "typedef" keyword can only occur in a declaration; we
8434 may as well commit at this point. */
8435 cp_parser_commit_to_tentative_parse (parser);
8437 if (decl_specs->storage_class != sc_none)
8438 decl_specs->conflicting_specifiers_p = true;
8439 break;
8441 /* storage-class-specifier:
8442 auto
8443 register
8444 static
8445 extern
8446 mutable
8448 GNU Extension:
8449 thread */
8450 case RID_AUTO:
8451 if (cxx_dialect == cxx98)
8453 /* Consume the token. */
8454 cp_lexer_consume_token (parser->lexer);
8456 /* Complain about `auto' as a storage specifier, if
8457 we're complaining about C++0x compatibility. */
8458 warning
8459 (OPT_Wc__0x_compat,
8460 "%H%<auto%> will change meaning in C++0x; please remove it",
8461 &token->location);
8463 /* Set the storage class anyway. */
8464 cp_parser_set_storage_class (parser, decl_specs, RID_AUTO,
8465 token->location);
8467 else
8468 /* C++0x auto type-specifier. */
8469 found_decl_spec = false;
8470 break;
8472 case RID_REGISTER:
8473 case RID_STATIC:
8474 case RID_EXTERN:
8475 case RID_MUTABLE:
8476 /* Consume the token. */
8477 cp_lexer_consume_token (parser->lexer);
8478 cp_parser_set_storage_class (parser, decl_specs, token->keyword,
8479 token->location);
8480 break;
8481 case RID_THREAD:
8482 /* Consume the token. */
8483 cp_lexer_consume_token (parser->lexer);
8484 ++decl_specs->specs[(int) ds_thread];
8485 break;
8487 default:
8488 /* We did not yet find a decl-specifier yet. */
8489 found_decl_spec = false;
8490 break;
8493 /* Constructors are a special case. The `S' in `S()' is not a
8494 decl-specifier; it is the beginning of the declarator. */
8495 constructor_p
8496 = (!found_decl_spec
8497 && constructor_possible_p
8498 && (cp_parser_constructor_declarator_p
8499 (parser, decl_specs->specs[(int) ds_friend] != 0)));
8501 /* If we don't have a DECL_SPEC yet, then we must be looking at
8502 a type-specifier. */
8503 if (!found_decl_spec && !constructor_p)
8505 int decl_spec_declares_class_or_enum;
8506 bool is_cv_qualifier;
8507 tree type_spec;
8509 type_spec
8510 = cp_parser_type_specifier (parser, flags,
8511 decl_specs,
8512 /*is_declaration=*/true,
8513 &decl_spec_declares_class_or_enum,
8514 &is_cv_qualifier);
8515 *declares_class_or_enum |= decl_spec_declares_class_or_enum;
8517 /* If this type-specifier referenced a user-defined type
8518 (a typedef, class-name, etc.), then we can't allow any
8519 more such type-specifiers henceforth.
8521 [dcl.spec]
8523 The longest sequence of decl-specifiers that could
8524 possibly be a type name is taken as the
8525 decl-specifier-seq of a declaration. The sequence shall
8526 be self-consistent as described below.
8528 [dcl.type]
8530 As a general rule, at most one type-specifier is allowed
8531 in the complete decl-specifier-seq of a declaration. The
8532 only exceptions are the following:
8534 -- const or volatile can be combined with any other
8535 type-specifier.
8537 -- signed or unsigned can be combined with char, long,
8538 short, or int.
8540 -- ..
8542 Example:
8544 typedef char* Pc;
8545 void g (const int Pc);
8547 Here, Pc is *not* part of the decl-specifier seq; it's
8548 the declarator. Therefore, once we see a type-specifier
8549 (other than a cv-qualifier), we forbid any additional
8550 user-defined types. We *do* still allow things like `int
8551 int' to be considered a decl-specifier-seq, and issue the
8552 error message later. */
8553 if (type_spec && !is_cv_qualifier)
8554 flags |= CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES;
8555 /* A constructor declarator cannot follow a type-specifier. */
8556 if (type_spec)
8558 constructor_possible_p = false;
8559 found_decl_spec = true;
8563 /* If we still do not have a DECL_SPEC, then there are no more
8564 decl-specifiers. */
8565 if (!found_decl_spec)
8566 break;
8568 decl_specs->any_specifiers_p = true;
8569 /* After we see one decl-specifier, further decl-specifiers are
8570 always optional. */
8571 flags |= CP_PARSER_FLAGS_OPTIONAL;
8574 cp_parser_check_decl_spec (decl_specs, start_token->location);
8576 /* Don't allow a friend specifier with a class definition. */
8577 if (decl_specs->specs[(int) ds_friend] != 0
8578 && (*declares_class_or_enum & 2))
8579 error ("%Hclass definition may not be declared a friend",
8580 &start_token->location);
8583 /* Parse an (optional) storage-class-specifier.
8585 storage-class-specifier:
8586 auto
8587 register
8588 static
8589 extern
8590 mutable
8592 GNU Extension:
8594 storage-class-specifier:
8595 thread
8597 Returns an IDENTIFIER_NODE corresponding to the keyword used. */
8599 static tree
8600 cp_parser_storage_class_specifier_opt (cp_parser* parser)
8602 switch (cp_lexer_peek_token (parser->lexer)->keyword)
8604 case RID_AUTO:
8605 if (cxx_dialect != cxx98)
8606 return NULL_TREE;
8607 /* Fall through for C++98. */
8609 case RID_REGISTER:
8610 case RID_STATIC:
8611 case RID_EXTERN:
8612 case RID_MUTABLE:
8613 case RID_THREAD:
8614 /* Consume the token. */
8615 return cp_lexer_consume_token (parser->lexer)->u.value;
8617 default:
8618 return NULL_TREE;
8622 /* Parse an (optional) function-specifier.
8624 function-specifier:
8625 inline
8626 virtual
8627 explicit
8629 Returns an IDENTIFIER_NODE corresponding to the keyword used.
8630 Updates DECL_SPECS, if it is non-NULL. */
8632 static tree
8633 cp_parser_function_specifier_opt (cp_parser* parser,
8634 cp_decl_specifier_seq *decl_specs)
8636 cp_token *token = cp_lexer_peek_token (parser->lexer);
8637 switch (token->keyword)
8639 case RID_INLINE:
8640 if (decl_specs)
8641 ++decl_specs->specs[(int) ds_inline];
8642 break;
8644 case RID_VIRTUAL:
8645 /* 14.5.2.3 [temp.mem]
8647 A member function template shall not be virtual. */
8648 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
8649 error ("%Htemplates may not be %<virtual%>", &token->location);
8650 else if (decl_specs)
8651 ++decl_specs->specs[(int) ds_virtual];
8652 break;
8654 case RID_EXPLICIT:
8655 if (decl_specs)
8656 ++decl_specs->specs[(int) ds_explicit];
8657 break;
8659 default:
8660 return NULL_TREE;
8663 /* Consume the token. */
8664 return cp_lexer_consume_token (parser->lexer)->u.value;
8667 /* Parse a linkage-specification.
8669 linkage-specification:
8670 extern string-literal { declaration-seq [opt] }
8671 extern string-literal declaration */
8673 static void
8674 cp_parser_linkage_specification (cp_parser* parser)
8676 tree linkage;
8678 /* Look for the `extern' keyword. */
8679 cp_parser_require_keyword (parser, RID_EXTERN, "%<extern%>");
8681 /* Look for the string-literal. */
8682 linkage = cp_parser_string_literal (parser, false, false);
8684 /* Transform the literal into an identifier. If the literal is a
8685 wide-character string, or contains embedded NULs, then we can't
8686 handle it as the user wants. */
8687 if (strlen (TREE_STRING_POINTER (linkage))
8688 != (size_t) (TREE_STRING_LENGTH (linkage) - 1))
8690 cp_parser_error (parser, "invalid linkage-specification");
8691 /* Assume C++ linkage. */
8692 linkage = lang_name_cplusplus;
8694 else
8695 linkage = get_identifier (TREE_STRING_POINTER (linkage));
8697 /* We're now using the new linkage. */
8698 push_lang_context (linkage);
8700 /* If the next token is a `{', then we're using the first
8701 production. */
8702 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
8704 /* Consume the `{' token. */
8705 cp_lexer_consume_token (parser->lexer);
8706 /* Parse the declarations. */
8707 cp_parser_declaration_seq_opt (parser);
8708 /* Look for the closing `}'. */
8709 cp_parser_require (parser, CPP_CLOSE_BRACE, "%<}%>");
8711 /* Otherwise, there's just one declaration. */
8712 else
8714 bool saved_in_unbraced_linkage_specification_p;
8716 saved_in_unbraced_linkage_specification_p
8717 = parser->in_unbraced_linkage_specification_p;
8718 parser->in_unbraced_linkage_specification_p = true;
8719 cp_parser_declaration (parser);
8720 parser->in_unbraced_linkage_specification_p
8721 = saved_in_unbraced_linkage_specification_p;
8724 /* We're done with the linkage-specification. */
8725 pop_lang_context ();
8728 /* Parse a static_assert-declaration.
8730 static_assert-declaration:
8731 static_assert ( constant-expression , string-literal ) ;
8733 If MEMBER_P, this static_assert is a class member. */
8735 static void
8736 cp_parser_static_assert(cp_parser *parser, bool member_p)
8738 tree condition;
8739 tree message;
8740 cp_token *token;
8741 location_t saved_loc;
8743 /* Peek at the `static_assert' token so we can keep track of exactly
8744 where the static assertion started. */
8745 token = cp_lexer_peek_token (parser->lexer);
8746 saved_loc = token->location;
8748 /* Look for the `static_assert' keyword. */
8749 if (!cp_parser_require_keyword (parser, RID_STATIC_ASSERT,
8750 "%<static_assert%>"))
8751 return;
8753 /* We know we are in a static assertion; commit to any tentative
8754 parse. */
8755 if (cp_parser_parsing_tentatively (parser))
8756 cp_parser_commit_to_tentative_parse (parser);
8758 /* Parse the `(' starting the static assertion condition. */
8759 cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>");
8761 /* Parse the constant-expression. */
8762 condition =
8763 cp_parser_constant_expression (parser,
8764 /*allow_non_constant_p=*/false,
8765 /*non_constant_p=*/NULL);
8767 /* Parse the separating `,'. */
8768 cp_parser_require (parser, CPP_COMMA, "%<,%>");
8770 /* Parse the string-literal message. */
8771 message = cp_parser_string_literal (parser,
8772 /*translate=*/false,
8773 /*wide_ok=*/true);
8775 /* A `)' completes the static assertion. */
8776 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>"))
8777 cp_parser_skip_to_closing_parenthesis (parser,
8778 /*recovering=*/true,
8779 /*or_comma=*/false,
8780 /*consume_paren=*/true);
8782 /* A semicolon terminates the declaration. */
8783 cp_parser_require (parser, CPP_SEMICOLON, "%<;%>");
8785 /* Complete the static assertion, which may mean either processing
8786 the static assert now or saving it for template instantiation. */
8787 finish_static_assert (condition, message, saved_loc, member_p);
8790 /* Parse a `decltype' type. Returns the type.
8792 simple-type-specifier:
8793 decltype ( expression ) */
8795 static tree
8796 cp_parser_decltype (cp_parser *parser)
8798 tree expr;
8799 bool id_expression_or_member_access_p = false;
8800 const char *saved_message;
8801 bool saved_integral_constant_expression_p;
8802 bool saved_non_integral_constant_expression_p;
8803 cp_token *id_expr_start_token;
8805 /* Look for the `decltype' token. */
8806 if (!cp_parser_require_keyword (parser, RID_DECLTYPE, "%<decltype%>"))
8807 return error_mark_node;
8809 /* Types cannot be defined in a `decltype' expression. Save away the
8810 old message. */
8811 saved_message = parser->type_definition_forbidden_message;
8813 /* And create the new one. */
8814 parser->type_definition_forbidden_message
8815 = "types may not be defined in %<decltype%> expressions";
8817 /* The restrictions on constant-expressions do not apply inside
8818 decltype expressions. */
8819 saved_integral_constant_expression_p
8820 = parser->integral_constant_expression_p;
8821 saved_non_integral_constant_expression_p
8822 = parser->non_integral_constant_expression_p;
8823 parser->integral_constant_expression_p = false;
8825 /* Do not actually evaluate the expression. */
8826 ++skip_evaluation;
8828 /* Parse the opening `('. */
8829 if (!cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>"))
8830 return error_mark_node;
8832 /* First, try parsing an id-expression. */
8833 id_expr_start_token = cp_lexer_peek_token (parser->lexer);
8834 cp_parser_parse_tentatively (parser);
8835 expr = cp_parser_id_expression (parser,
8836 /*template_keyword_p=*/false,
8837 /*check_dependency_p=*/true,
8838 /*template_p=*/NULL,
8839 /*declarator_p=*/false,
8840 /*optional_p=*/false);
8842 if (!cp_parser_error_occurred (parser) && expr != error_mark_node)
8844 bool non_integral_constant_expression_p = false;
8845 tree id_expression = expr;
8846 cp_id_kind idk;
8847 const char *error_msg;
8849 if (TREE_CODE (expr) == IDENTIFIER_NODE)
8850 /* Lookup the name we got back from the id-expression. */
8851 expr = cp_parser_lookup_name (parser, expr,
8852 none_type,
8853 /*is_template=*/false,
8854 /*is_namespace=*/false,
8855 /*check_dependency=*/true,
8856 /*ambiguous_decls=*/NULL,
8857 id_expr_start_token->location);
8859 if (expr
8860 && expr != error_mark_node
8861 && TREE_CODE (expr) != TEMPLATE_ID_EXPR
8862 && TREE_CODE (expr) != TYPE_DECL
8863 && (TREE_CODE (expr) != BIT_NOT_EXPR
8864 || !TYPE_P (TREE_OPERAND (expr, 0)))
8865 && cp_lexer_peek_token (parser->lexer)->type == CPP_CLOSE_PAREN)
8867 /* Complete lookup of the id-expression. */
8868 expr = (finish_id_expression
8869 (id_expression, expr, parser->scope, &idk,
8870 /*integral_constant_expression_p=*/false,
8871 /*allow_non_integral_constant_expression_p=*/true,
8872 &non_integral_constant_expression_p,
8873 /*template_p=*/false,
8874 /*done=*/true,
8875 /*address_p=*/false,
8876 /*template_arg_p=*/false,
8877 &error_msg,
8878 id_expr_start_token->location));
8880 if (expr == error_mark_node)
8881 /* We found an id-expression, but it was something that we
8882 should not have found. This is an error, not something
8883 we can recover from, so note that we found an
8884 id-expression and we'll recover as gracefully as
8885 possible. */
8886 id_expression_or_member_access_p = true;
8889 if (expr
8890 && expr != error_mark_node
8891 && cp_lexer_peek_token (parser->lexer)->type == CPP_CLOSE_PAREN)
8892 /* We have an id-expression. */
8893 id_expression_or_member_access_p = true;
8896 if (!id_expression_or_member_access_p)
8898 /* Abort the id-expression parse. */
8899 cp_parser_abort_tentative_parse (parser);
8901 /* Parsing tentatively, again. */
8902 cp_parser_parse_tentatively (parser);
8904 /* Parse a class member access. */
8905 expr = cp_parser_postfix_expression (parser, /*address_p=*/false,
8906 /*cast_p=*/false,
8907 /*member_access_only_p=*/true, NULL);
8909 if (expr
8910 && expr != error_mark_node
8911 && cp_lexer_peek_token (parser->lexer)->type == CPP_CLOSE_PAREN)
8912 /* We have an id-expression. */
8913 id_expression_or_member_access_p = true;
8916 if (id_expression_or_member_access_p)
8917 /* We have parsed the complete id-expression or member access. */
8918 cp_parser_parse_definitely (parser);
8919 else
8921 /* Abort our attempt to parse an id-expression or member access
8922 expression. */
8923 cp_parser_abort_tentative_parse (parser);
8925 /* Parse a full expression. */
8926 expr = cp_parser_expression (parser, /*cast_p=*/false, NULL);
8929 /* Go back to evaluating expressions. */
8930 --skip_evaluation;
8932 /* Restore the old message and the integral constant expression
8933 flags. */
8934 parser->type_definition_forbidden_message = saved_message;
8935 parser->integral_constant_expression_p
8936 = saved_integral_constant_expression_p;
8937 parser->non_integral_constant_expression_p
8938 = saved_non_integral_constant_expression_p;
8940 if (expr == error_mark_node)
8942 /* Skip everything up to the closing `)'. */
8943 cp_parser_skip_to_closing_parenthesis (parser, true, false,
8944 /*consume_paren=*/true);
8945 return error_mark_node;
8948 /* Parse to the closing `)'. */
8949 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>"))
8951 cp_parser_skip_to_closing_parenthesis (parser, true, false,
8952 /*consume_paren=*/true);
8953 return error_mark_node;
8956 return finish_decltype_type (expr, id_expression_or_member_access_p);
8959 /* Special member functions [gram.special] */
8961 /* Parse a conversion-function-id.
8963 conversion-function-id:
8964 operator conversion-type-id
8966 Returns an IDENTIFIER_NODE representing the operator. */
8968 static tree
8969 cp_parser_conversion_function_id (cp_parser* parser)
8971 tree type;
8972 tree saved_scope;
8973 tree saved_qualifying_scope;
8974 tree saved_object_scope;
8975 tree pushed_scope = NULL_TREE;
8977 /* Look for the `operator' token. */
8978 if (!cp_parser_require_keyword (parser, RID_OPERATOR, "%<operator%>"))
8979 return error_mark_node;
8980 /* When we parse the conversion-type-id, the current scope will be
8981 reset. However, we need that information in able to look up the
8982 conversion function later, so we save it here. */
8983 saved_scope = parser->scope;
8984 saved_qualifying_scope = parser->qualifying_scope;
8985 saved_object_scope = parser->object_scope;
8986 /* We must enter the scope of the class so that the names of
8987 entities declared within the class are available in the
8988 conversion-type-id. For example, consider:
8990 struct S {
8991 typedef int I;
8992 operator I();
8995 S::operator I() { ... }
8997 In order to see that `I' is a type-name in the definition, we
8998 must be in the scope of `S'. */
8999 if (saved_scope)
9000 pushed_scope = push_scope (saved_scope);
9001 /* Parse the conversion-type-id. */
9002 type = cp_parser_conversion_type_id (parser);
9003 /* Leave the scope of the class, if any. */
9004 if (pushed_scope)
9005 pop_scope (pushed_scope);
9006 /* Restore the saved scope. */
9007 parser->scope = saved_scope;
9008 parser->qualifying_scope = saved_qualifying_scope;
9009 parser->object_scope = saved_object_scope;
9010 /* If the TYPE is invalid, indicate failure. */
9011 if (type == error_mark_node)
9012 return error_mark_node;
9013 return mangle_conv_op_name_for_type (type);
9016 /* Parse a conversion-type-id:
9018 conversion-type-id:
9019 type-specifier-seq conversion-declarator [opt]
9021 Returns the TYPE specified. */
9023 static tree
9024 cp_parser_conversion_type_id (cp_parser* parser)
9026 tree attributes;
9027 cp_decl_specifier_seq type_specifiers;
9028 cp_declarator *declarator;
9029 tree type_specified;
9031 /* Parse the attributes. */
9032 attributes = cp_parser_attributes_opt (parser);
9033 /* Parse the type-specifiers. */
9034 cp_parser_type_specifier_seq (parser, /*is_condition=*/false,
9035 &type_specifiers);
9036 /* If that didn't work, stop. */
9037 if (type_specifiers.type == error_mark_node)
9038 return error_mark_node;
9039 /* Parse the conversion-declarator. */
9040 declarator = cp_parser_conversion_declarator_opt (parser);
9042 type_specified = grokdeclarator (declarator, &type_specifiers, TYPENAME,
9043 /*initialized=*/0, &attributes);
9044 if (attributes)
9045 cplus_decl_attributes (&type_specified, attributes, /*flags=*/0);
9047 /* Don't give this error when parsing tentatively. This happens to
9048 work because we always parse this definitively once. */
9049 if (! cp_parser_uncommitted_to_tentative_parse_p (parser)
9050 && type_uses_auto (type_specified))
9052 error ("invalid use of %<auto%> in conversion operator");
9053 return error_mark_node;
9056 return type_specified;
9059 /* Parse an (optional) conversion-declarator.
9061 conversion-declarator:
9062 ptr-operator conversion-declarator [opt]
9066 static cp_declarator *
9067 cp_parser_conversion_declarator_opt (cp_parser* parser)
9069 enum tree_code code;
9070 tree class_type;
9071 cp_cv_quals cv_quals;
9073 /* We don't know if there's a ptr-operator next, or not. */
9074 cp_parser_parse_tentatively (parser);
9075 /* Try the ptr-operator. */
9076 code = cp_parser_ptr_operator (parser, &class_type, &cv_quals);
9077 /* If it worked, look for more conversion-declarators. */
9078 if (cp_parser_parse_definitely (parser))
9080 cp_declarator *declarator;
9082 /* Parse another optional declarator. */
9083 declarator = cp_parser_conversion_declarator_opt (parser);
9085 return cp_parser_make_indirect_declarator
9086 (code, class_type, cv_quals, declarator);
9089 return NULL;
9092 /* Parse an (optional) ctor-initializer.
9094 ctor-initializer:
9095 : mem-initializer-list
9097 Returns TRUE iff the ctor-initializer was actually present. */
9099 static bool
9100 cp_parser_ctor_initializer_opt (cp_parser* parser)
9102 /* If the next token is not a `:', then there is no
9103 ctor-initializer. */
9104 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COLON))
9106 /* Do default initialization of any bases and members. */
9107 if (DECL_CONSTRUCTOR_P (current_function_decl))
9108 finish_mem_initializers (NULL_TREE);
9110 return false;
9113 /* Consume the `:' token. */
9114 cp_lexer_consume_token (parser->lexer);
9115 /* And the mem-initializer-list. */
9116 cp_parser_mem_initializer_list (parser);
9118 return true;
9121 /* Parse a mem-initializer-list.
9123 mem-initializer-list:
9124 mem-initializer ... [opt]
9125 mem-initializer ... [opt] , mem-initializer-list */
9127 static void
9128 cp_parser_mem_initializer_list (cp_parser* parser)
9130 tree mem_initializer_list = NULL_TREE;
9131 cp_token *token = cp_lexer_peek_token (parser->lexer);
9133 /* Let the semantic analysis code know that we are starting the
9134 mem-initializer-list. */
9135 if (!DECL_CONSTRUCTOR_P (current_function_decl))
9136 error ("%Honly constructors take base initializers",
9137 &token->location);
9139 /* Loop through the list. */
9140 while (true)
9142 tree mem_initializer;
9144 token = cp_lexer_peek_token (parser->lexer);
9145 /* Parse the mem-initializer. */
9146 mem_initializer = cp_parser_mem_initializer (parser);
9147 /* If the next token is a `...', we're expanding member initializers. */
9148 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
9150 /* Consume the `...'. */
9151 cp_lexer_consume_token (parser->lexer);
9153 /* The TREE_PURPOSE must be a _TYPE, because base-specifiers
9154 can be expanded but members cannot. */
9155 if (mem_initializer != error_mark_node
9156 && !TYPE_P (TREE_PURPOSE (mem_initializer)))
9158 error ("%Hcannot expand initializer for member %<%D%>",
9159 &token->location, TREE_PURPOSE (mem_initializer));
9160 mem_initializer = error_mark_node;
9163 /* Construct the pack expansion type. */
9164 if (mem_initializer != error_mark_node)
9165 mem_initializer = make_pack_expansion (mem_initializer);
9167 /* Add it to the list, unless it was erroneous. */
9168 if (mem_initializer != error_mark_node)
9170 TREE_CHAIN (mem_initializer) = mem_initializer_list;
9171 mem_initializer_list = mem_initializer;
9173 /* If the next token is not a `,', we're done. */
9174 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
9175 break;
9176 /* Consume the `,' token. */
9177 cp_lexer_consume_token (parser->lexer);
9180 /* Perform semantic analysis. */
9181 if (DECL_CONSTRUCTOR_P (current_function_decl))
9182 finish_mem_initializers (mem_initializer_list);
9185 /* Parse a mem-initializer.
9187 mem-initializer:
9188 mem-initializer-id ( expression-list [opt] )
9189 mem-initializer-id braced-init-list
9191 GNU extension:
9193 mem-initializer:
9194 ( expression-list [opt] )
9196 Returns a TREE_LIST. The TREE_PURPOSE is the TYPE (for a base
9197 class) or FIELD_DECL (for a non-static data member) to initialize;
9198 the TREE_VALUE is the expression-list. An empty initialization
9199 list is represented by void_list_node. */
9201 static tree
9202 cp_parser_mem_initializer (cp_parser* parser)
9204 tree mem_initializer_id;
9205 tree expression_list;
9206 tree member;
9207 cp_token *token = cp_lexer_peek_token (parser->lexer);
9209 /* Find out what is being initialized. */
9210 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
9212 permerror (token->location,
9213 "anachronistic old-style base class initializer");
9214 mem_initializer_id = NULL_TREE;
9216 else
9218 mem_initializer_id = cp_parser_mem_initializer_id (parser);
9219 if (mem_initializer_id == error_mark_node)
9220 return mem_initializer_id;
9222 member = expand_member_init (mem_initializer_id);
9223 if (member && !DECL_P (member))
9224 in_base_initializer = 1;
9226 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
9228 bool expr_non_constant_p;
9229 maybe_warn_cpp0x ("extended initializer lists");
9230 expression_list = cp_parser_braced_list (parser, &expr_non_constant_p);
9231 CONSTRUCTOR_IS_DIRECT_INIT (expression_list) = 1;
9232 expression_list = build_tree_list (NULL_TREE, expression_list);
9234 else
9235 expression_list
9236 = cp_parser_parenthesized_expression_list (parser, false,
9237 /*cast_p=*/false,
9238 /*allow_expansion_p=*/true,
9239 /*non_constant_p=*/NULL);
9240 if (expression_list == error_mark_node)
9241 return error_mark_node;
9242 if (!expression_list)
9243 expression_list = void_type_node;
9245 in_base_initializer = 0;
9247 return member ? build_tree_list (member, expression_list) : error_mark_node;
9250 /* Parse a mem-initializer-id.
9252 mem-initializer-id:
9253 :: [opt] nested-name-specifier [opt] class-name
9254 identifier
9256 Returns a TYPE indicating the class to be initializer for the first
9257 production. Returns an IDENTIFIER_NODE indicating the data member
9258 to be initialized for the second production. */
9260 static tree
9261 cp_parser_mem_initializer_id (cp_parser* parser)
9263 bool global_scope_p;
9264 bool nested_name_specifier_p;
9265 bool template_p = false;
9266 tree id;
9268 cp_token *token = cp_lexer_peek_token (parser->lexer);
9270 /* `typename' is not allowed in this context ([temp.res]). */
9271 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TYPENAME))
9273 error ("%Hkeyword %<typename%> not allowed in this context (a qualified "
9274 "member initializer is implicitly a type)",
9275 &token->location);
9276 cp_lexer_consume_token (parser->lexer);
9278 /* Look for the optional `::' operator. */
9279 global_scope_p
9280 = (cp_parser_global_scope_opt (parser,
9281 /*current_scope_valid_p=*/false)
9282 != NULL_TREE);
9283 /* Look for the optional nested-name-specifier. The simplest way to
9284 implement:
9286 [temp.res]
9288 The keyword `typename' is not permitted in a base-specifier or
9289 mem-initializer; in these contexts a qualified name that
9290 depends on a template-parameter is implicitly assumed to be a
9291 type name.
9293 is to assume that we have seen the `typename' keyword at this
9294 point. */
9295 nested_name_specifier_p
9296 = (cp_parser_nested_name_specifier_opt (parser,
9297 /*typename_keyword_p=*/true,
9298 /*check_dependency_p=*/true,
9299 /*type_p=*/true,
9300 /*is_declaration=*/true)
9301 != NULL_TREE);
9302 if (nested_name_specifier_p)
9303 template_p = cp_parser_optional_template_keyword (parser);
9304 /* If there is a `::' operator or a nested-name-specifier, then we
9305 are definitely looking for a class-name. */
9306 if (global_scope_p || nested_name_specifier_p)
9307 return cp_parser_class_name (parser,
9308 /*typename_keyword_p=*/true,
9309 /*template_keyword_p=*/template_p,
9310 none_type,
9311 /*check_dependency_p=*/true,
9312 /*class_head_p=*/false,
9313 /*is_declaration=*/true);
9314 /* Otherwise, we could also be looking for an ordinary identifier. */
9315 cp_parser_parse_tentatively (parser);
9316 /* Try a class-name. */
9317 id = cp_parser_class_name (parser,
9318 /*typename_keyword_p=*/true,
9319 /*template_keyword_p=*/false,
9320 none_type,
9321 /*check_dependency_p=*/true,
9322 /*class_head_p=*/false,
9323 /*is_declaration=*/true);
9324 /* If we found one, we're done. */
9325 if (cp_parser_parse_definitely (parser))
9326 return id;
9327 /* Otherwise, look for an ordinary identifier. */
9328 return cp_parser_identifier (parser);
9331 /* Overloading [gram.over] */
9333 /* Parse an operator-function-id.
9335 operator-function-id:
9336 operator operator
9338 Returns an IDENTIFIER_NODE for the operator which is a
9339 human-readable spelling of the identifier, e.g., `operator +'. */
9341 static tree
9342 cp_parser_operator_function_id (cp_parser* parser)
9344 /* Look for the `operator' keyword. */
9345 if (!cp_parser_require_keyword (parser, RID_OPERATOR, "%<operator%>"))
9346 return error_mark_node;
9347 /* And then the name of the operator itself. */
9348 return cp_parser_operator (parser);
9351 /* Parse an operator.
9353 operator:
9354 new delete new[] delete[] + - * / % ^ & | ~ ! = < >
9355 += -= *= /= %= ^= &= |= << >> >>= <<= == != <= >= &&
9356 || ++ -- , ->* -> () []
9358 GNU Extensions:
9360 operator:
9361 <? >? <?= >?=
9363 Returns an IDENTIFIER_NODE for the operator which is a
9364 human-readable spelling of the identifier, e.g., `operator +'. */
9366 static tree
9367 cp_parser_operator (cp_parser* parser)
9369 tree id = NULL_TREE;
9370 cp_token *token;
9372 /* Peek at the next token. */
9373 token = cp_lexer_peek_token (parser->lexer);
9374 /* Figure out which operator we have. */
9375 switch (token->type)
9377 case CPP_KEYWORD:
9379 enum tree_code op;
9381 /* The keyword should be either `new' or `delete'. */
9382 if (token->keyword == RID_NEW)
9383 op = NEW_EXPR;
9384 else if (token->keyword == RID_DELETE)
9385 op = DELETE_EXPR;
9386 else
9387 break;
9389 /* Consume the `new' or `delete' token. */
9390 cp_lexer_consume_token (parser->lexer);
9392 /* Peek at the next token. */
9393 token = cp_lexer_peek_token (parser->lexer);
9394 /* If it's a `[' token then this is the array variant of the
9395 operator. */
9396 if (token->type == CPP_OPEN_SQUARE)
9398 /* Consume the `[' token. */
9399 cp_lexer_consume_token (parser->lexer);
9400 /* Look for the `]' token. */
9401 cp_parser_require (parser, CPP_CLOSE_SQUARE, "%<]%>");
9402 id = ansi_opname (op == NEW_EXPR
9403 ? VEC_NEW_EXPR : VEC_DELETE_EXPR);
9405 /* Otherwise, we have the non-array variant. */
9406 else
9407 id = ansi_opname (op);
9409 return id;
9412 case CPP_PLUS:
9413 id = ansi_opname (PLUS_EXPR);
9414 break;
9416 case CPP_MINUS:
9417 id = ansi_opname (MINUS_EXPR);
9418 break;
9420 case CPP_MULT:
9421 id = ansi_opname (MULT_EXPR);
9422 break;
9424 case CPP_DIV:
9425 id = ansi_opname (TRUNC_DIV_EXPR);
9426 break;
9428 case CPP_MOD:
9429 id = ansi_opname (TRUNC_MOD_EXPR);
9430 break;
9432 case CPP_XOR:
9433 id = ansi_opname (BIT_XOR_EXPR);
9434 break;
9436 case CPP_AND:
9437 id = ansi_opname (BIT_AND_EXPR);
9438 break;
9440 case CPP_OR:
9441 id = ansi_opname (BIT_IOR_EXPR);
9442 break;
9444 case CPP_COMPL:
9445 id = ansi_opname (BIT_NOT_EXPR);
9446 break;
9448 case CPP_NOT:
9449 id = ansi_opname (TRUTH_NOT_EXPR);
9450 break;
9452 case CPP_EQ:
9453 id = ansi_assopname (NOP_EXPR);
9454 break;
9456 case CPP_LESS:
9457 id = ansi_opname (LT_EXPR);
9458 break;
9460 case CPP_GREATER:
9461 id = ansi_opname (GT_EXPR);
9462 break;
9464 case CPP_PLUS_EQ:
9465 id = ansi_assopname (PLUS_EXPR);
9466 break;
9468 case CPP_MINUS_EQ:
9469 id = ansi_assopname (MINUS_EXPR);
9470 break;
9472 case CPP_MULT_EQ:
9473 id = ansi_assopname (MULT_EXPR);
9474 break;
9476 case CPP_DIV_EQ:
9477 id = ansi_assopname (TRUNC_DIV_EXPR);
9478 break;
9480 case CPP_MOD_EQ:
9481 id = ansi_assopname (TRUNC_MOD_EXPR);
9482 break;
9484 case CPP_XOR_EQ:
9485 id = ansi_assopname (BIT_XOR_EXPR);
9486 break;
9488 case CPP_AND_EQ:
9489 id = ansi_assopname (BIT_AND_EXPR);
9490 break;
9492 case CPP_OR_EQ:
9493 id = ansi_assopname (BIT_IOR_EXPR);
9494 break;
9496 case CPP_LSHIFT:
9497 id = ansi_opname (LSHIFT_EXPR);
9498 break;
9500 case CPP_RSHIFT:
9501 id = ansi_opname (RSHIFT_EXPR);
9502 break;
9504 case CPP_LSHIFT_EQ:
9505 id = ansi_assopname (LSHIFT_EXPR);
9506 break;
9508 case CPP_RSHIFT_EQ:
9509 id = ansi_assopname (RSHIFT_EXPR);
9510 break;
9512 case CPP_EQ_EQ:
9513 id = ansi_opname (EQ_EXPR);
9514 break;
9516 case CPP_NOT_EQ:
9517 id = ansi_opname (NE_EXPR);
9518 break;
9520 case CPP_LESS_EQ:
9521 id = ansi_opname (LE_EXPR);
9522 break;
9524 case CPP_GREATER_EQ:
9525 id = ansi_opname (GE_EXPR);
9526 break;
9528 case CPP_AND_AND:
9529 id = ansi_opname (TRUTH_ANDIF_EXPR);
9530 break;
9532 case CPP_OR_OR:
9533 id = ansi_opname (TRUTH_ORIF_EXPR);
9534 break;
9536 case CPP_PLUS_PLUS:
9537 id = ansi_opname (POSTINCREMENT_EXPR);
9538 break;
9540 case CPP_MINUS_MINUS:
9541 id = ansi_opname (PREDECREMENT_EXPR);
9542 break;
9544 case CPP_COMMA:
9545 id = ansi_opname (COMPOUND_EXPR);
9546 break;
9548 case CPP_DEREF_STAR:
9549 id = ansi_opname (MEMBER_REF);
9550 break;
9552 case CPP_DEREF:
9553 id = ansi_opname (COMPONENT_REF);
9554 break;
9556 case CPP_OPEN_PAREN:
9557 /* Consume the `('. */
9558 cp_lexer_consume_token (parser->lexer);
9559 /* Look for the matching `)'. */
9560 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
9561 return ansi_opname (CALL_EXPR);
9563 case CPP_OPEN_SQUARE:
9564 /* Consume the `['. */
9565 cp_lexer_consume_token (parser->lexer);
9566 /* Look for the matching `]'. */
9567 cp_parser_require (parser, CPP_CLOSE_SQUARE, "%<]%>");
9568 return ansi_opname (ARRAY_REF);
9570 default:
9571 /* Anything else is an error. */
9572 break;
9575 /* If we have selected an identifier, we need to consume the
9576 operator token. */
9577 if (id)
9578 cp_lexer_consume_token (parser->lexer);
9579 /* Otherwise, no valid operator name was present. */
9580 else
9582 cp_parser_error (parser, "expected operator");
9583 id = error_mark_node;
9586 return id;
9589 /* Parse a template-declaration.
9591 template-declaration:
9592 export [opt] template < template-parameter-list > declaration
9594 If MEMBER_P is TRUE, this template-declaration occurs within a
9595 class-specifier.
9597 The grammar rule given by the standard isn't correct. What
9598 is really meant is:
9600 template-declaration:
9601 export [opt] template-parameter-list-seq
9602 decl-specifier-seq [opt] init-declarator [opt] ;
9603 export [opt] template-parameter-list-seq
9604 function-definition
9606 template-parameter-list-seq:
9607 template-parameter-list-seq [opt]
9608 template < template-parameter-list > */
9610 static void
9611 cp_parser_template_declaration (cp_parser* parser, bool member_p)
9613 /* Check for `export'. */
9614 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_EXPORT))
9616 /* Consume the `export' token. */
9617 cp_lexer_consume_token (parser->lexer);
9618 /* Warn that we do not support `export'. */
9619 warning (0, "keyword %<export%> not implemented, and will be ignored");
9622 cp_parser_template_declaration_after_export (parser, member_p);
9625 /* Parse a template-parameter-list.
9627 template-parameter-list:
9628 template-parameter
9629 template-parameter-list , template-parameter
9631 Returns a TREE_LIST. Each node represents a template parameter.
9632 The nodes are connected via their TREE_CHAINs. */
9634 static tree
9635 cp_parser_template_parameter_list (cp_parser* parser)
9637 tree parameter_list = NULL_TREE;
9639 begin_template_parm_list ();
9640 while (true)
9642 tree parameter;
9643 bool is_non_type;
9644 bool is_parameter_pack;
9646 /* Parse the template-parameter. */
9647 parameter = cp_parser_template_parameter (parser,
9648 &is_non_type,
9649 &is_parameter_pack);
9650 /* Add it to the list. */
9651 if (parameter != error_mark_node)
9652 parameter_list = process_template_parm (parameter_list,
9653 parameter,
9654 is_non_type,
9655 is_parameter_pack);
9656 else
9658 tree err_parm = build_tree_list (parameter, parameter);
9659 TREE_VALUE (err_parm) = error_mark_node;
9660 parameter_list = chainon (parameter_list, err_parm);
9663 /* If the next token is not a `,', we're done. */
9664 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
9665 break;
9666 /* Otherwise, consume the `,' token. */
9667 cp_lexer_consume_token (parser->lexer);
9670 return end_template_parm_list (parameter_list);
9673 /* Parse a template-parameter.
9675 template-parameter:
9676 type-parameter
9677 parameter-declaration
9679 If all goes well, returns a TREE_LIST. The TREE_VALUE represents
9680 the parameter. The TREE_PURPOSE is the default value, if any.
9681 Returns ERROR_MARK_NODE on failure. *IS_NON_TYPE is set to true
9682 iff this parameter is a non-type parameter. *IS_PARAMETER_PACK is
9683 set to true iff this parameter is a parameter pack. */
9685 static tree
9686 cp_parser_template_parameter (cp_parser* parser, bool *is_non_type,
9687 bool *is_parameter_pack)
9689 cp_token *token;
9690 cp_parameter_declarator *parameter_declarator;
9691 cp_declarator *id_declarator;
9692 tree parm;
9694 /* Assume it is a type parameter or a template parameter. */
9695 *is_non_type = false;
9696 /* Assume it not a parameter pack. */
9697 *is_parameter_pack = false;
9698 /* Peek at the next token. */
9699 token = cp_lexer_peek_token (parser->lexer);
9700 /* If it is `class' or `template', we have a type-parameter. */
9701 if (token->keyword == RID_TEMPLATE)
9702 return cp_parser_type_parameter (parser, is_parameter_pack);
9703 /* If it is `class' or `typename' we do not know yet whether it is a
9704 type parameter or a non-type parameter. Consider:
9706 template <typename T, typename T::X X> ...
9710 template <class C, class D*> ...
9712 Here, the first parameter is a type parameter, and the second is
9713 a non-type parameter. We can tell by looking at the token after
9714 the identifier -- if it is a `,', `=', or `>' then we have a type
9715 parameter. */
9716 if (token->keyword == RID_TYPENAME || token->keyword == RID_CLASS)
9718 /* Peek at the token after `class' or `typename'. */
9719 token = cp_lexer_peek_nth_token (parser->lexer, 2);
9720 /* If it's an ellipsis, we have a template type parameter
9721 pack. */
9722 if (token->type == CPP_ELLIPSIS)
9723 return cp_parser_type_parameter (parser, is_parameter_pack);
9724 /* If it's an identifier, skip it. */
9725 if (token->type == CPP_NAME)
9726 token = cp_lexer_peek_nth_token (parser->lexer, 3);
9727 /* Now, see if the token looks like the end of a template
9728 parameter. */
9729 if (token->type == CPP_COMMA
9730 || token->type == CPP_EQ
9731 || token->type == CPP_GREATER)
9732 return cp_parser_type_parameter (parser, is_parameter_pack);
9735 /* Otherwise, it is a non-type parameter.
9737 [temp.param]
9739 When parsing a default template-argument for a non-type
9740 template-parameter, the first non-nested `>' is taken as the end
9741 of the template parameter-list rather than a greater-than
9742 operator. */
9743 *is_non_type = true;
9744 parameter_declarator
9745 = cp_parser_parameter_declaration (parser, /*template_parm_p=*/true,
9746 /*parenthesized_p=*/NULL);
9748 /* If the parameter declaration is marked as a parameter pack, set
9749 *IS_PARAMETER_PACK to notify the caller. Also, unmark the
9750 declarator's PACK_EXPANSION_P, otherwise we'll get errors from
9751 grokdeclarator. */
9752 if (parameter_declarator
9753 && parameter_declarator->declarator
9754 && parameter_declarator->declarator->parameter_pack_p)
9756 *is_parameter_pack = true;
9757 parameter_declarator->declarator->parameter_pack_p = false;
9760 /* If the next token is an ellipsis, and we don't already have it
9761 marked as a parameter pack, then we have a parameter pack (that
9762 has no declarator). */
9763 if (!*is_parameter_pack
9764 && cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS)
9765 && declarator_can_be_parameter_pack (parameter_declarator->declarator))
9767 /* Consume the `...'. */
9768 cp_lexer_consume_token (parser->lexer);
9769 maybe_warn_variadic_templates ();
9771 *is_parameter_pack = true;
9773 /* We might end up with a pack expansion as the type of the non-type
9774 template parameter, in which case this is a non-type template
9775 parameter pack. */
9776 else if (parameter_declarator
9777 && parameter_declarator->decl_specifiers.type
9778 && PACK_EXPANSION_P (parameter_declarator->decl_specifiers.type))
9780 *is_parameter_pack = true;
9781 parameter_declarator->decl_specifiers.type =
9782 PACK_EXPANSION_PATTERN (parameter_declarator->decl_specifiers.type);
9785 if (*is_parameter_pack && cp_lexer_next_token_is (parser->lexer, CPP_EQ))
9787 /* Parameter packs cannot have default arguments. However, a
9788 user may try to do so, so we'll parse them and give an
9789 appropriate diagnostic here. */
9791 /* Consume the `='. */
9792 cp_token *start_token = cp_lexer_peek_token (parser->lexer);
9793 cp_lexer_consume_token (parser->lexer);
9795 /* Find the name of the parameter pack. */
9796 id_declarator = parameter_declarator->declarator;
9797 while (id_declarator && id_declarator->kind != cdk_id)
9798 id_declarator = id_declarator->declarator;
9800 if (id_declarator && id_declarator->kind == cdk_id)
9801 error ("%Htemplate parameter pack %qD cannot have a default argument",
9802 &start_token->location, id_declarator->u.id.unqualified_name);
9803 else
9804 error ("%Htemplate parameter pack cannot have a default argument",
9805 &start_token->location);
9807 /* Parse the default argument, but throw away the result. */
9808 cp_parser_default_argument (parser, /*template_parm_p=*/true);
9811 parm = grokdeclarator (parameter_declarator->declarator,
9812 &parameter_declarator->decl_specifiers,
9813 PARM, /*initialized=*/0,
9814 /*attrlist=*/NULL);
9815 if (parm == error_mark_node)
9816 return error_mark_node;
9818 return build_tree_list (parameter_declarator->default_argument, parm);
9821 /* Parse a type-parameter.
9823 type-parameter:
9824 class identifier [opt]
9825 class identifier [opt] = type-id
9826 typename identifier [opt]
9827 typename identifier [opt] = type-id
9828 template < template-parameter-list > class identifier [opt]
9829 template < template-parameter-list > class identifier [opt]
9830 = id-expression
9832 GNU Extension (variadic templates):
9834 type-parameter:
9835 class ... identifier [opt]
9836 typename ... identifier [opt]
9838 Returns a TREE_LIST. The TREE_VALUE is itself a TREE_LIST. The
9839 TREE_PURPOSE is the default-argument, if any. The TREE_VALUE is
9840 the declaration of the parameter.
9842 Sets *IS_PARAMETER_PACK if this is a template parameter pack. */
9844 static tree
9845 cp_parser_type_parameter (cp_parser* parser, bool *is_parameter_pack)
9847 cp_token *token;
9848 tree parameter;
9850 /* Look for a keyword to tell us what kind of parameter this is. */
9851 token = cp_parser_require (parser, CPP_KEYWORD,
9852 "%<class%>, %<typename%>, or %<template%>");
9853 if (!token)
9854 return error_mark_node;
9856 switch (token->keyword)
9858 case RID_CLASS:
9859 case RID_TYPENAME:
9861 tree identifier;
9862 tree default_argument;
9864 /* If the next token is an ellipsis, we have a template
9865 argument pack. */
9866 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
9868 /* Consume the `...' token. */
9869 cp_lexer_consume_token (parser->lexer);
9870 maybe_warn_variadic_templates ();
9872 *is_parameter_pack = true;
9875 /* If the next token is an identifier, then it names the
9876 parameter. */
9877 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
9878 identifier = cp_parser_identifier (parser);
9879 else
9880 identifier = NULL_TREE;
9882 /* Create the parameter. */
9883 parameter = finish_template_type_parm (class_type_node, identifier);
9885 /* If the next token is an `=', we have a default argument. */
9886 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
9888 /* Consume the `=' token. */
9889 cp_lexer_consume_token (parser->lexer);
9890 /* Parse the default-argument. */
9891 push_deferring_access_checks (dk_no_deferred);
9892 default_argument = cp_parser_type_id (parser);
9894 /* Template parameter packs cannot have default
9895 arguments. */
9896 if (*is_parameter_pack)
9898 if (identifier)
9899 error ("%Htemplate parameter pack %qD cannot have a "
9900 "default argument", &token->location, identifier);
9901 else
9902 error ("%Htemplate parameter packs cannot have "
9903 "default arguments", &token->location);
9904 default_argument = NULL_TREE;
9906 pop_deferring_access_checks ();
9908 else
9909 default_argument = NULL_TREE;
9911 /* Create the combined representation of the parameter and the
9912 default argument. */
9913 parameter = build_tree_list (default_argument, parameter);
9915 break;
9917 case RID_TEMPLATE:
9919 tree parameter_list;
9920 tree identifier;
9921 tree default_argument;
9923 /* Look for the `<'. */
9924 cp_parser_require (parser, CPP_LESS, "%<<%>");
9925 /* Parse the template-parameter-list. */
9926 parameter_list = cp_parser_template_parameter_list (parser);
9927 /* Look for the `>'. */
9928 cp_parser_require (parser, CPP_GREATER, "%<>%>");
9929 /* Look for the `class' keyword. */
9930 cp_parser_require_keyword (parser, RID_CLASS, "%<class%>");
9931 /* If the next token is an ellipsis, we have a template
9932 argument pack. */
9933 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
9935 /* Consume the `...' token. */
9936 cp_lexer_consume_token (parser->lexer);
9937 maybe_warn_variadic_templates ();
9939 *is_parameter_pack = true;
9941 /* If the next token is an `=', then there is a
9942 default-argument. If the next token is a `>', we are at
9943 the end of the parameter-list. If the next token is a `,',
9944 then we are at the end of this parameter. */
9945 if (cp_lexer_next_token_is_not (parser->lexer, CPP_EQ)
9946 && cp_lexer_next_token_is_not (parser->lexer, CPP_GREATER)
9947 && cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
9949 identifier = cp_parser_identifier (parser);
9950 /* Treat invalid names as if the parameter were nameless. */
9951 if (identifier == error_mark_node)
9952 identifier = NULL_TREE;
9954 else
9955 identifier = NULL_TREE;
9957 /* Create the template parameter. */
9958 parameter = finish_template_template_parm (class_type_node,
9959 identifier);
9961 /* If the next token is an `=', then there is a
9962 default-argument. */
9963 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
9965 bool is_template;
9967 /* Consume the `='. */
9968 cp_lexer_consume_token (parser->lexer);
9969 /* Parse the id-expression. */
9970 push_deferring_access_checks (dk_no_deferred);
9971 /* save token before parsing the id-expression, for error
9972 reporting */
9973 token = cp_lexer_peek_token (parser->lexer);
9974 default_argument
9975 = cp_parser_id_expression (parser,
9976 /*template_keyword_p=*/false,
9977 /*check_dependency_p=*/true,
9978 /*template_p=*/&is_template,
9979 /*declarator_p=*/false,
9980 /*optional_p=*/false);
9981 if (TREE_CODE (default_argument) == TYPE_DECL)
9982 /* If the id-expression was a template-id that refers to
9983 a template-class, we already have the declaration here,
9984 so no further lookup is needed. */
9986 else
9987 /* Look up the name. */
9988 default_argument
9989 = cp_parser_lookup_name (parser, default_argument,
9990 none_type,
9991 /*is_template=*/is_template,
9992 /*is_namespace=*/false,
9993 /*check_dependency=*/true,
9994 /*ambiguous_decls=*/NULL,
9995 token->location);
9996 /* See if the default argument is valid. */
9997 default_argument
9998 = check_template_template_default_arg (default_argument);
10000 /* Template parameter packs cannot have default
10001 arguments. */
10002 if (*is_parameter_pack)
10004 if (identifier)
10005 error ("%Htemplate parameter pack %qD cannot "
10006 "have a default argument",
10007 &token->location, identifier);
10008 else
10009 error ("%Htemplate parameter packs cannot "
10010 "have default arguments",
10011 &token->location);
10012 default_argument = NULL_TREE;
10014 pop_deferring_access_checks ();
10016 else
10017 default_argument = NULL_TREE;
10019 /* Create the combined representation of the parameter and the
10020 default argument. */
10021 parameter = build_tree_list (default_argument, parameter);
10023 break;
10025 default:
10026 gcc_unreachable ();
10027 break;
10030 return parameter;
10033 /* Parse a template-id.
10035 template-id:
10036 template-name < template-argument-list [opt] >
10038 If TEMPLATE_KEYWORD_P is TRUE, then we have just seen the
10039 `template' keyword. In this case, a TEMPLATE_ID_EXPR will be
10040 returned. Otherwise, if the template-name names a function, or set
10041 of functions, returns a TEMPLATE_ID_EXPR. If the template-name
10042 names a class, returns a TYPE_DECL for the specialization.
10044 If CHECK_DEPENDENCY_P is FALSE, names are looked up in
10045 uninstantiated templates. */
10047 static tree
10048 cp_parser_template_id (cp_parser *parser,
10049 bool template_keyword_p,
10050 bool check_dependency_p,
10051 bool is_declaration)
10053 int i;
10054 tree templ;
10055 tree arguments;
10056 tree template_id;
10057 cp_token_position start_of_id = 0;
10058 deferred_access_check *chk;
10059 VEC (deferred_access_check,gc) *access_check;
10060 cp_token *next_token = NULL, *next_token_2 = NULL, *token = NULL;
10061 bool is_identifier;
10063 /* If the next token corresponds to a template-id, there is no need
10064 to reparse it. */
10065 next_token = cp_lexer_peek_token (parser->lexer);
10066 if (next_token->type == CPP_TEMPLATE_ID)
10068 struct tree_check *check_value;
10070 /* Get the stored value. */
10071 check_value = cp_lexer_consume_token (parser->lexer)->u.tree_check_value;
10072 /* Perform any access checks that were deferred. */
10073 access_check = check_value->checks;
10074 if (access_check)
10076 for (i = 0 ;
10077 VEC_iterate (deferred_access_check, access_check, i, chk) ;
10078 ++i)
10080 perform_or_defer_access_check (chk->binfo,
10081 chk->decl,
10082 chk->diag_decl);
10085 /* Return the stored value. */
10086 return check_value->value;
10089 /* Avoid performing name lookup if there is no possibility of
10090 finding a template-id. */
10091 if ((next_token->type != CPP_NAME && next_token->keyword != RID_OPERATOR)
10092 || (next_token->type == CPP_NAME
10093 && !cp_parser_nth_token_starts_template_argument_list_p
10094 (parser, 2)))
10096 cp_parser_error (parser, "expected template-id");
10097 return error_mark_node;
10100 /* Remember where the template-id starts. */
10101 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
10102 start_of_id = cp_lexer_token_position (parser->lexer, false);
10104 push_deferring_access_checks (dk_deferred);
10106 /* Parse the template-name. */
10107 is_identifier = false;
10108 token = cp_lexer_peek_token (parser->lexer);
10109 templ = cp_parser_template_name (parser, template_keyword_p,
10110 check_dependency_p,
10111 is_declaration,
10112 &is_identifier);
10113 if (templ == error_mark_node || is_identifier)
10115 pop_deferring_access_checks ();
10116 return templ;
10119 /* If we find the sequence `[:' after a template-name, it's probably
10120 a digraph-typo for `< ::'. Substitute the tokens and check if we can
10121 parse correctly the argument list. */
10122 next_token = cp_lexer_peek_token (parser->lexer);
10123 next_token_2 = cp_lexer_peek_nth_token (parser->lexer, 2);
10124 if (next_token->type == CPP_OPEN_SQUARE
10125 && next_token->flags & DIGRAPH
10126 && next_token_2->type == CPP_COLON
10127 && !(next_token_2->flags & PREV_WHITE))
10129 cp_parser_parse_tentatively (parser);
10130 /* Change `:' into `::'. */
10131 next_token_2->type = CPP_SCOPE;
10132 /* Consume the first token (CPP_OPEN_SQUARE - which we pretend it is
10133 CPP_LESS. */
10134 cp_lexer_consume_token (parser->lexer);
10136 /* Parse the arguments. */
10137 arguments = cp_parser_enclosed_template_argument_list (parser);
10138 if (!cp_parser_parse_definitely (parser))
10140 /* If we couldn't parse an argument list, then we revert our changes
10141 and return simply an error. Maybe this is not a template-id
10142 after all. */
10143 next_token_2->type = CPP_COLON;
10144 cp_parser_error (parser, "expected %<<%>");
10145 pop_deferring_access_checks ();
10146 return error_mark_node;
10148 /* Otherwise, emit an error about the invalid digraph, but continue
10149 parsing because we got our argument list. */
10150 if (permerror (next_token->location,
10151 "%<<::%> cannot begin a template-argument list"))
10153 static bool hint = false;
10154 inform (next_token->location,
10155 "%<<:%> is an alternate spelling for %<[%>."
10156 " Insert whitespace between %<<%> and %<::%>");
10157 if (!hint && !flag_permissive)
10159 inform (next_token->location, "(if you use %<-fpermissive%>"
10160 " G++ will accept your code)");
10161 hint = true;
10165 else
10167 /* Look for the `<' that starts the template-argument-list. */
10168 if (!cp_parser_require (parser, CPP_LESS, "%<<%>"))
10170 pop_deferring_access_checks ();
10171 return error_mark_node;
10173 /* Parse the arguments. */
10174 arguments = cp_parser_enclosed_template_argument_list (parser);
10177 /* Build a representation of the specialization. */
10178 if (TREE_CODE (templ) == IDENTIFIER_NODE)
10179 template_id = build_min_nt (TEMPLATE_ID_EXPR, templ, arguments);
10180 else if (DECL_CLASS_TEMPLATE_P (templ)
10181 || DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
10183 bool entering_scope;
10184 /* In "template <typename T> ... A<T>::", A<T> is the abstract A
10185 template (rather than some instantiation thereof) only if
10186 is not nested within some other construct. For example, in
10187 "template <typename T> void f(T) { A<T>::", A<T> is just an
10188 instantiation of A. */
10189 entering_scope = (template_parm_scope_p ()
10190 && cp_lexer_next_token_is (parser->lexer,
10191 CPP_SCOPE));
10192 template_id
10193 = finish_template_type (templ, arguments, entering_scope);
10195 else
10197 /* If it's not a class-template or a template-template, it should be
10198 a function-template. */
10199 gcc_assert ((DECL_FUNCTION_TEMPLATE_P (templ)
10200 || TREE_CODE (templ) == OVERLOAD
10201 || BASELINK_P (templ)));
10203 template_id = lookup_template_function (templ, arguments);
10206 /* If parsing tentatively, replace the sequence of tokens that makes
10207 up the template-id with a CPP_TEMPLATE_ID token. That way,
10208 should we re-parse the token stream, we will not have to repeat
10209 the effort required to do the parse, nor will we issue duplicate
10210 error messages about problems during instantiation of the
10211 template. */
10212 if (start_of_id)
10214 cp_token *token = cp_lexer_token_at (parser->lexer, start_of_id);
10216 /* Reset the contents of the START_OF_ID token. */
10217 token->type = CPP_TEMPLATE_ID;
10218 /* Retrieve any deferred checks. Do not pop this access checks yet
10219 so the memory will not be reclaimed during token replacing below. */
10220 token->u.tree_check_value = GGC_CNEW (struct tree_check);
10221 token->u.tree_check_value->value = template_id;
10222 token->u.tree_check_value->checks = get_deferred_access_checks ();
10223 token->keyword = RID_MAX;
10225 /* Purge all subsequent tokens. */
10226 cp_lexer_purge_tokens_after (parser->lexer, start_of_id);
10228 /* ??? Can we actually assume that, if template_id ==
10229 error_mark_node, we will have issued a diagnostic to the
10230 user, as opposed to simply marking the tentative parse as
10231 failed? */
10232 if (cp_parser_error_occurred (parser) && template_id != error_mark_node)
10233 error ("%Hparse error in template argument list",
10234 &token->location);
10237 pop_deferring_access_checks ();
10238 return template_id;
10241 /* Parse a template-name.
10243 template-name:
10244 identifier
10246 The standard should actually say:
10248 template-name:
10249 identifier
10250 operator-function-id
10252 A defect report has been filed about this issue.
10254 A conversion-function-id cannot be a template name because they cannot
10255 be part of a template-id. In fact, looking at this code:
10257 a.operator K<int>()
10259 the conversion-function-id is "operator K<int>", and K<int> is a type-id.
10260 It is impossible to call a templated conversion-function-id with an
10261 explicit argument list, since the only allowed template parameter is
10262 the type to which it is converting.
10264 If TEMPLATE_KEYWORD_P is true, then we have just seen the
10265 `template' keyword, in a construction like:
10267 T::template f<3>()
10269 In that case `f' is taken to be a template-name, even though there
10270 is no way of knowing for sure.
10272 Returns the TEMPLATE_DECL for the template, or an OVERLOAD if the
10273 name refers to a set of overloaded functions, at least one of which
10274 is a template, or an IDENTIFIER_NODE with the name of the template,
10275 if TEMPLATE_KEYWORD_P is true. If CHECK_DEPENDENCY_P is FALSE,
10276 names are looked up inside uninstantiated templates. */
10278 static tree
10279 cp_parser_template_name (cp_parser* parser,
10280 bool template_keyword_p,
10281 bool check_dependency_p,
10282 bool is_declaration,
10283 bool *is_identifier)
10285 tree identifier;
10286 tree decl;
10287 tree fns;
10288 cp_token *token = cp_lexer_peek_token (parser->lexer);
10290 /* If the next token is `operator', then we have either an
10291 operator-function-id or a conversion-function-id. */
10292 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_OPERATOR))
10294 /* We don't know whether we're looking at an
10295 operator-function-id or a conversion-function-id. */
10296 cp_parser_parse_tentatively (parser);
10297 /* Try an operator-function-id. */
10298 identifier = cp_parser_operator_function_id (parser);
10299 /* If that didn't work, try a conversion-function-id. */
10300 if (!cp_parser_parse_definitely (parser))
10302 cp_parser_error (parser, "expected template-name");
10303 return error_mark_node;
10306 /* Look for the identifier. */
10307 else
10308 identifier = cp_parser_identifier (parser);
10310 /* If we didn't find an identifier, we don't have a template-id. */
10311 if (identifier == error_mark_node)
10312 return error_mark_node;
10314 /* If the name immediately followed the `template' keyword, then it
10315 is a template-name. However, if the next token is not `<', then
10316 we do not treat it as a template-name, since it is not being used
10317 as part of a template-id. This enables us to handle constructs
10318 like:
10320 template <typename T> struct S { S(); };
10321 template <typename T> S<T>::S();
10323 correctly. We would treat `S' as a template -- if it were `S<T>'
10324 -- but we do not if there is no `<'. */
10326 if (processing_template_decl
10327 && cp_parser_nth_token_starts_template_argument_list_p (parser, 1))
10329 /* In a declaration, in a dependent context, we pretend that the
10330 "template" keyword was present in order to improve error
10331 recovery. For example, given:
10333 template <typename T> void f(T::X<int>);
10335 we want to treat "X<int>" as a template-id. */
10336 if (is_declaration
10337 && !template_keyword_p
10338 && parser->scope && TYPE_P (parser->scope)
10339 && check_dependency_p
10340 && dependent_scope_p (parser->scope)
10341 /* Do not do this for dtors (or ctors), since they never
10342 need the template keyword before their name. */
10343 && !constructor_name_p (identifier, parser->scope))
10345 cp_token_position start = 0;
10347 /* Explain what went wrong. */
10348 error ("%Hnon-template %qD used as template",
10349 &token->location, identifier);
10350 inform (input_location, "use %<%T::template %D%> to indicate that it is a template",
10351 parser->scope, identifier);
10352 /* If parsing tentatively, find the location of the "<" token. */
10353 if (cp_parser_simulate_error (parser))
10354 start = cp_lexer_token_position (parser->lexer, true);
10355 /* Parse the template arguments so that we can issue error
10356 messages about them. */
10357 cp_lexer_consume_token (parser->lexer);
10358 cp_parser_enclosed_template_argument_list (parser);
10359 /* Skip tokens until we find a good place from which to
10360 continue parsing. */
10361 cp_parser_skip_to_closing_parenthesis (parser,
10362 /*recovering=*/true,
10363 /*or_comma=*/true,
10364 /*consume_paren=*/false);
10365 /* If parsing tentatively, permanently remove the
10366 template argument list. That will prevent duplicate
10367 error messages from being issued about the missing
10368 "template" keyword. */
10369 if (start)
10370 cp_lexer_purge_tokens_after (parser->lexer, start);
10371 if (is_identifier)
10372 *is_identifier = true;
10373 return identifier;
10376 /* If the "template" keyword is present, then there is generally
10377 no point in doing name-lookup, so we just return IDENTIFIER.
10378 But, if the qualifying scope is non-dependent then we can
10379 (and must) do name-lookup normally. */
10380 if (template_keyword_p
10381 && (!parser->scope
10382 || (TYPE_P (parser->scope)
10383 && dependent_type_p (parser->scope))))
10384 return identifier;
10387 /* Look up the name. */
10388 decl = cp_parser_lookup_name (parser, identifier,
10389 none_type,
10390 /*is_template=*/false,
10391 /*is_namespace=*/false,
10392 check_dependency_p,
10393 /*ambiguous_decls=*/NULL,
10394 token->location);
10395 decl = maybe_get_template_decl_from_type_decl (decl);
10397 /* If DECL is a template, then the name was a template-name. */
10398 if (TREE_CODE (decl) == TEMPLATE_DECL)
10400 else
10402 tree fn = NULL_TREE;
10404 /* The standard does not explicitly indicate whether a name that
10405 names a set of overloaded declarations, some of which are
10406 templates, is a template-name. However, such a name should
10407 be a template-name; otherwise, there is no way to form a
10408 template-id for the overloaded templates. */
10409 fns = BASELINK_P (decl) ? BASELINK_FUNCTIONS (decl) : decl;
10410 if (TREE_CODE (fns) == OVERLOAD)
10411 for (fn = fns; fn; fn = OVL_NEXT (fn))
10412 if (TREE_CODE (OVL_CURRENT (fn)) == TEMPLATE_DECL)
10413 break;
10415 if (!fn)
10417 /* The name does not name a template. */
10418 cp_parser_error (parser, "expected template-name");
10419 return error_mark_node;
10423 /* If DECL is dependent, and refers to a function, then just return
10424 its name; we will look it up again during template instantiation. */
10425 if (DECL_FUNCTION_TEMPLATE_P (decl) || !DECL_P (decl))
10427 tree scope = CP_DECL_CONTEXT (get_first_fn (decl));
10428 if (TYPE_P (scope) && dependent_type_p (scope))
10429 return identifier;
10432 return decl;
10435 /* Parse a template-argument-list.
10437 template-argument-list:
10438 template-argument ... [opt]
10439 template-argument-list , template-argument ... [opt]
10441 Returns a TREE_VEC containing the arguments. */
10443 static tree
10444 cp_parser_template_argument_list (cp_parser* parser)
10446 tree fixed_args[10];
10447 unsigned n_args = 0;
10448 unsigned alloced = 10;
10449 tree *arg_ary = fixed_args;
10450 tree vec;
10451 bool saved_in_template_argument_list_p;
10452 bool saved_ice_p;
10453 bool saved_non_ice_p;
10455 saved_in_template_argument_list_p = parser->in_template_argument_list_p;
10456 parser->in_template_argument_list_p = true;
10457 /* Even if the template-id appears in an integral
10458 constant-expression, the contents of the argument list do
10459 not. */
10460 saved_ice_p = parser->integral_constant_expression_p;
10461 parser->integral_constant_expression_p = false;
10462 saved_non_ice_p = parser->non_integral_constant_expression_p;
10463 parser->non_integral_constant_expression_p = false;
10464 /* Parse the arguments. */
10467 tree argument;
10469 if (n_args)
10470 /* Consume the comma. */
10471 cp_lexer_consume_token (parser->lexer);
10473 /* Parse the template-argument. */
10474 argument = cp_parser_template_argument (parser);
10476 /* If the next token is an ellipsis, we're expanding a template
10477 argument pack. */
10478 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
10480 if (argument == error_mark_node)
10482 cp_token *token = cp_lexer_peek_token (parser->lexer);
10483 error ("%Hexpected parameter pack before %<...%>",
10484 &token->location);
10486 /* Consume the `...' token. */
10487 cp_lexer_consume_token (parser->lexer);
10489 /* Make the argument into a TYPE_PACK_EXPANSION or
10490 EXPR_PACK_EXPANSION. */
10491 argument = make_pack_expansion (argument);
10494 if (n_args == alloced)
10496 alloced *= 2;
10498 if (arg_ary == fixed_args)
10500 arg_ary = XNEWVEC (tree, alloced);
10501 memcpy (arg_ary, fixed_args, sizeof (tree) * n_args);
10503 else
10504 arg_ary = XRESIZEVEC (tree, arg_ary, alloced);
10506 arg_ary[n_args++] = argument;
10508 while (cp_lexer_next_token_is (parser->lexer, CPP_COMMA));
10510 vec = make_tree_vec (n_args);
10512 while (n_args--)
10513 TREE_VEC_ELT (vec, n_args) = arg_ary[n_args];
10515 if (arg_ary != fixed_args)
10516 free (arg_ary);
10517 parser->non_integral_constant_expression_p = saved_non_ice_p;
10518 parser->integral_constant_expression_p = saved_ice_p;
10519 parser->in_template_argument_list_p = saved_in_template_argument_list_p;
10520 return vec;
10523 /* Parse a template-argument.
10525 template-argument:
10526 assignment-expression
10527 type-id
10528 id-expression
10530 The representation is that of an assignment-expression, type-id, or
10531 id-expression -- except that the qualified id-expression is
10532 evaluated, so that the value returned is either a DECL or an
10533 OVERLOAD.
10535 Although the standard says "assignment-expression", it forbids
10536 throw-expressions or assignments in the template argument.
10537 Therefore, we use "conditional-expression" instead. */
10539 static tree
10540 cp_parser_template_argument (cp_parser* parser)
10542 tree argument;
10543 bool template_p;
10544 bool address_p;
10545 bool maybe_type_id = false;
10546 cp_token *token = NULL, *argument_start_token = NULL;
10547 cp_id_kind idk;
10549 /* There's really no way to know what we're looking at, so we just
10550 try each alternative in order.
10552 [temp.arg]
10554 In a template-argument, an ambiguity between a type-id and an
10555 expression is resolved to a type-id, regardless of the form of
10556 the corresponding template-parameter.
10558 Therefore, we try a type-id first. */
10559 cp_parser_parse_tentatively (parser);
10560 argument = cp_parser_template_type_arg (parser);
10561 /* If there was no error parsing the type-id but the next token is a
10562 '>>', our behavior depends on which dialect of C++ we're
10563 parsing. In C++98, we probably found a typo for '> >'. But there
10564 are type-id which are also valid expressions. For instance:
10566 struct X { int operator >> (int); };
10567 template <int V> struct Foo {};
10568 Foo<X () >> 5> r;
10570 Here 'X()' is a valid type-id of a function type, but the user just
10571 wanted to write the expression "X() >> 5". Thus, we remember that we
10572 found a valid type-id, but we still try to parse the argument as an
10573 expression to see what happens.
10575 In C++0x, the '>>' will be considered two separate '>'
10576 tokens. */
10577 if (!cp_parser_error_occurred (parser)
10578 && cxx_dialect == cxx98
10579 && cp_lexer_next_token_is (parser->lexer, CPP_RSHIFT))
10581 maybe_type_id = true;
10582 cp_parser_abort_tentative_parse (parser);
10584 else
10586 /* If the next token isn't a `,' or a `>', then this argument wasn't
10587 really finished. This means that the argument is not a valid
10588 type-id. */
10589 if (!cp_parser_next_token_ends_template_argument_p (parser))
10590 cp_parser_error (parser, "expected template-argument");
10591 /* If that worked, we're done. */
10592 if (cp_parser_parse_definitely (parser))
10593 return argument;
10595 /* We're still not sure what the argument will be. */
10596 cp_parser_parse_tentatively (parser);
10597 /* Try a template. */
10598 argument_start_token = cp_lexer_peek_token (parser->lexer);
10599 argument = cp_parser_id_expression (parser,
10600 /*template_keyword_p=*/false,
10601 /*check_dependency_p=*/true,
10602 &template_p,
10603 /*declarator_p=*/false,
10604 /*optional_p=*/false);
10605 /* If the next token isn't a `,' or a `>', then this argument wasn't
10606 really finished. */
10607 if (!cp_parser_next_token_ends_template_argument_p (parser))
10608 cp_parser_error (parser, "expected template-argument");
10609 if (!cp_parser_error_occurred (parser))
10611 /* Figure out what is being referred to. If the id-expression
10612 was for a class template specialization, then we will have a
10613 TYPE_DECL at this point. There is no need to do name lookup
10614 at this point in that case. */
10615 if (TREE_CODE (argument) != TYPE_DECL)
10616 argument = cp_parser_lookup_name (parser, argument,
10617 none_type,
10618 /*is_template=*/template_p,
10619 /*is_namespace=*/false,
10620 /*check_dependency=*/true,
10621 /*ambiguous_decls=*/NULL,
10622 argument_start_token->location);
10623 if (TREE_CODE (argument) != TEMPLATE_DECL
10624 && TREE_CODE (argument) != UNBOUND_CLASS_TEMPLATE)
10625 cp_parser_error (parser, "expected template-name");
10627 if (cp_parser_parse_definitely (parser))
10628 return argument;
10629 /* It must be a non-type argument. There permitted cases are given
10630 in [temp.arg.nontype]:
10632 -- an integral constant-expression of integral or enumeration
10633 type; or
10635 -- the name of a non-type template-parameter; or
10637 -- the name of an object or function with external linkage...
10639 -- the address of an object or function with external linkage...
10641 -- a pointer to member... */
10642 /* Look for a non-type template parameter. */
10643 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
10645 cp_parser_parse_tentatively (parser);
10646 argument = cp_parser_primary_expression (parser,
10647 /*address_p=*/false,
10648 /*cast_p=*/false,
10649 /*template_arg_p=*/true,
10650 &idk);
10651 if (TREE_CODE (argument) != TEMPLATE_PARM_INDEX
10652 || !cp_parser_next_token_ends_template_argument_p (parser))
10653 cp_parser_simulate_error (parser);
10654 if (cp_parser_parse_definitely (parser))
10655 return argument;
10658 /* If the next token is "&", the argument must be the address of an
10659 object or function with external linkage. */
10660 address_p = cp_lexer_next_token_is (parser->lexer, CPP_AND);
10661 if (address_p)
10662 cp_lexer_consume_token (parser->lexer);
10663 /* See if we might have an id-expression. */
10664 token = cp_lexer_peek_token (parser->lexer);
10665 if (token->type == CPP_NAME
10666 || token->keyword == RID_OPERATOR
10667 || token->type == CPP_SCOPE
10668 || token->type == CPP_TEMPLATE_ID
10669 || token->type == CPP_NESTED_NAME_SPECIFIER)
10671 cp_parser_parse_tentatively (parser);
10672 argument = cp_parser_primary_expression (parser,
10673 address_p,
10674 /*cast_p=*/false,
10675 /*template_arg_p=*/true,
10676 &idk);
10677 if (cp_parser_error_occurred (parser)
10678 || !cp_parser_next_token_ends_template_argument_p (parser))
10679 cp_parser_abort_tentative_parse (parser);
10680 else
10682 if (TREE_CODE (argument) == INDIRECT_REF)
10684 gcc_assert (REFERENCE_REF_P (argument));
10685 argument = TREE_OPERAND (argument, 0);
10688 if (TREE_CODE (argument) == VAR_DECL)
10690 /* A variable without external linkage might still be a
10691 valid constant-expression, so no error is issued here
10692 if the external-linkage check fails. */
10693 if (!address_p && !DECL_EXTERNAL_LINKAGE_P (argument))
10694 cp_parser_simulate_error (parser);
10696 else if (is_overloaded_fn (argument))
10697 /* All overloaded functions are allowed; if the external
10698 linkage test does not pass, an error will be issued
10699 later. */
10701 else if (address_p
10702 && (TREE_CODE (argument) == OFFSET_REF
10703 || TREE_CODE (argument) == SCOPE_REF))
10704 /* A pointer-to-member. */
10706 else if (TREE_CODE (argument) == TEMPLATE_PARM_INDEX)
10708 else
10709 cp_parser_simulate_error (parser);
10711 if (cp_parser_parse_definitely (parser))
10713 if (address_p)
10714 argument = build_x_unary_op (ADDR_EXPR, argument,
10715 tf_warning_or_error);
10716 return argument;
10720 /* If the argument started with "&", there are no other valid
10721 alternatives at this point. */
10722 if (address_p)
10724 cp_parser_error (parser, "invalid non-type template argument");
10725 return error_mark_node;
10728 /* If the argument wasn't successfully parsed as a type-id followed
10729 by '>>', the argument can only be a constant expression now.
10730 Otherwise, we try parsing the constant-expression tentatively,
10731 because the argument could really be a type-id. */
10732 if (maybe_type_id)
10733 cp_parser_parse_tentatively (parser);
10734 argument = cp_parser_constant_expression (parser,
10735 /*allow_non_constant_p=*/false,
10736 /*non_constant_p=*/NULL);
10737 argument = fold_non_dependent_expr (argument);
10738 if (!maybe_type_id)
10739 return argument;
10740 if (!cp_parser_next_token_ends_template_argument_p (parser))
10741 cp_parser_error (parser, "expected template-argument");
10742 if (cp_parser_parse_definitely (parser))
10743 return argument;
10744 /* We did our best to parse the argument as a non type-id, but that
10745 was the only alternative that matched (albeit with a '>' after
10746 it). We can assume it's just a typo from the user, and a
10747 diagnostic will then be issued. */
10748 return cp_parser_template_type_arg (parser);
10751 /* Parse an explicit-instantiation.
10753 explicit-instantiation:
10754 template declaration
10756 Although the standard says `declaration', what it really means is:
10758 explicit-instantiation:
10759 template decl-specifier-seq [opt] declarator [opt] ;
10761 Things like `template int S<int>::i = 5, int S<double>::j;' are not
10762 supposed to be allowed. A defect report has been filed about this
10763 issue.
10765 GNU Extension:
10767 explicit-instantiation:
10768 storage-class-specifier template
10769 decl-specifier-seq [opt] declarator [opt] ;
10770 function-specifier template
10771 decl-specifier-seq [opt] declarator [opt] ; */
10773 static void
10774 cp_parser_explicit_instantiation (cp_parser* parser)
10776 int declares_class_or_enum;
10777 cp_decl_specifier_seq decl_specifiers;
10778 tree extension_specifier = NULL_TREE;
10779 cp_token *token;
10781 /* Look for an (optional) storage-class-specifier or
10782 function-specifier. */
10783 if (cp_parser_allow_gnu_extensions_p (parser))
10785 extension_specifier
10786 = cp_parser_storage_class_specifier_opt (parser);
10787 if (!extension_specifier)
10788 extension_specifier
10789 = cp_parser_function_specifier_opt (parser,
10790 /*decl_specs=*/NULL);
10793 /* Look for the `template' keyword. */
10794 cp_parser_require_keyword (parser, RID_TEMPLATE, "%<template%>");
10795 /* Let the front end know that we are processing an explicit
10796 instantiation. */
10797 begin_explicit_instantiation ();
10798 /* [temp.explicit] says that we are supposed to ignore access
10799 control while processing explicit instantiation directives. */
10800 push_deferring_access_checks (dk_no_check);
10801 /* Parse a decl-specifier-seq. */
10802 token = cp_lexer_peek_token (parser->lexer);
10803 cp_parser_decl_specifier_seq (parser,
10804 CP_PARSER_FLAGS_OPTIONAL,
10805 &decl_specifiers,
10806 &declares_class_or_enum);
10807 /* If there was exactly one decl-specifier, and it declared a class,
10808 and there's no declarator, then we have an explicit type
10809 instantiation. */
10810 if (declares_class_or_enum && cp_parser_declares_only_class_p (parser))
10812 tree type;
10814 type = check_tag_decl (&decl_specifiers);
10815 /* Turn access control back on for names used during
10816 template instantiation. */
10817 pop_deferring_access_checks ();
10818 if (type)
10819 do_type_instantiation (type, extension_specifier,
10820 /*complain=*/tf_error);
10822 else
10824 cp_declarator *declarator;
10825 tree decl;
10827 /* Parse the declarator. */
10828 declarator
10829 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
10830 /*ctor_dtor_or_conv_p=*/NULL,
10831 /*parenthesized_p=*/NULL,
10832 /*member_p=*/false);
10833 if (declares_class_or_enum & 2)
10834 cp_parser_check_for_definition_in_return_type (declarator,
10835 decl_specifiers.type,
10836 decl_specifiers.type_location);
10837 if (declarator != cp_error_declarator)
10839 decl = grokdeclarator (declarator, &decl_specifiers,
10840 NORMAL, 0, &decl_specifiers.attributes);
10841 /* Turn access control back on for names used during
10842 template instantiation. */
10843 pop_deferring_access_checks ();
10844 /* Do the explicit instantiation. */
10845 do_decl_instantiation (decl, extension_specifier);
10847 else
10849 pop_deferring_access_checks ();
10850 /* Skip the body of the explicit instantiation. */
10851 cp_parser_skip_to_end_of_statement (parser);
10854 /* We're done with the instantiation. */
10855 end_explicit_instantiation ();
10857 cp_parser_consume_semicolon_at_end_of_statement (parser);
10860 /* Parse an explicit-specialization.
10862 explicit-specialization:
10863 template < > declaration
10865 Although the standard says `declaration', what it really means is:
10867 explicit-specialization:
10868 template <> decl-specifier [opt] init-declarator [opt] ;
10869 template <> function-definition
10870 template <> explicit-specialization
10871 template <> template-declaration */
10873 static void
10874 cp_parser_explicit_specialization (cp_parser* parser)
10876 bool need_lang_pop;
10877 cp_token *token = cp_lexer_peek_token (parser->lexer);
10879 /* Look for the `template' keyword. */
10880 cp_parser_require_keyword (parser, RID_TEMPLATE, "%<template%>");
10881 /* Look for the `<'. */
10882 cp_parser_require (parser, CPP_LESS, "%<<%>");
10883 /* Look for the `>'. */
10884 cp_parser_require (parser, CPP_GREATER, "%<>%>");
10885 /* We have processed another parameter list. */
10886 ++parser->num_template_parameter_lists;
10887 /* [temp]
10889 A template ... explicit specialization ... shall not have C
10890 linkage. */
10891 if (current_lang_name == lang_name_c)
10893 error ("%Htemplate specialization with C linkage", &token->location);
10894 /* Give it C++ linkage to avoid confusing other parts of the
10895 front end. */
10896 push_lang_context (lang_name_cplusplus);
10897 need_lang_pop = true;
10899 else
10900 need_lang_pop = false;
10901 /* Let the front end know that we are beginning a specialization. */
10902 if (!begin_specialization ())
10904 end_specialization ();
10905 return;
10908 /* If the next keyword is `template', we need to figure out whether
10909 or not we're looking a template-declaration. */
10910 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
10912 if (cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_LESS
10913 && cp_lexer_peek_nth_token (parser->lexer, 3)->type != CPP_GREATER)
10914 cp_parser_template_declaration_after_export (parser,
10915 /*member_p=*/false);
10916 else
10917 cp_parser_explicit_specialization (parser);
10919 else
10920 /* Parse the dependent declaration. */
10921 cp_parser_single_declaration (parser,
10922 /*checks=*/NULL,
10923 /*member_p=*/false,
10924 /*explicit_specialization_p=*/true,
10925 /*friend_p=*/NULL);
10926 /* We're done with the specialization. */
10927 end_specialization ();
10928 /* For the erroneous case of a template with C linkage, we pushed an
10929 implicit C++ linkage scope; exit that scope now. */
10930 if (need_lang_pop)
10931 pop_lang_context ();
10932 /* We're done with this parameter list. */
10933 --parser->num_template_parameter_lists;
10936 /* Parse a type-specifier.
10938 type-specifier:
10939 simple-type-specifier
10940 class-specifier
10941 enum-specifier
10942 elaborated-type-specifier
10943 cv-qualifier
10945 GNU Extension:
10947 type-specifier:
10948 __complex__
10950 Returns a representation of the type-specifier. For a
10951 class-specifier, enum-specifier, or elaborated-type-specifier, a
10952 TREE_TYPE is returned; otherwise, a TYPE_DECL is returned.
10954 The parser flags FLAGS is used to control type-specifier parsing.
10956 If IS_DECLARATION is TRUE, then this type-specifier is appearing
10957 in a decl-specifier-seq.
10959 If DECLARES_CLASS_OR_ENUM is non-NULL, and the type-specifier is a
10960 class-specifier, enum-specifier, or elaborated-type-specifier, then
10961 *DECLARES_CLASS_OR_ENUM is set to a nonzero value. The value is 1
10962 if a type is declared; 2 if it is defined. Otherwise, it is set to
10963 zero.
10965 If IS_CV_QUALIFIER is non-NULL, and the type-specifier is a
10966 cv-qualifier, then IS_CV_QUALIFIER is set to TRUE. Otherwise, it
10967 is set to FALSE. */
10969 static tree
10970 cp_parser_type_specifier (cp_parser* parser,
10971 cp_parser_flags flags,
10972 cp_decl_specifier_seq *decl_specs,
10973 bool is_declaration,
10974 int* declares_class_or_enum,
10975 bool* is_cv_qualifier)
10977 tree type_spec = NULL_TREE;
10978 cp_token *token;
10979 enum rid keyword;
10980 cp_decl_spec ds = ds_last;
10982 /* Assume this type-specifier does not declare a new type. */
10983 if (declares_class_or_enum)
10984 *declares_class_or_enum = 0;
10985 /* And that it does not specify a cv-qualifier. */
10986 if (is_cv_qualifier)
10987 *is_cv_qualifier = false;
10988 /* Peek at the next token. */
10989 token = cp_lexer_peek_token (parser->lexer);
10991 /* If we're looking at a keyword, we can use that to guide the
10992 production we choose. */
10993 keyword = token->keyword;
10994 switch (keyword)
10996 case RID_ENUM:
10997 /* Look for the enum-specifier. */
10998 type_spec = cp_parser_enum_specifier (parser);
10999 /* If that worked, we're done. */
11000 if (type_spec)
11002 if (declares_class_or_enum)
11003 *declares_class_or_enum = 2;
11004 if (decl_specs)
11005 cp_parser_set_decl_spec_type (decl_specs,
11006 type_spec,
11007 token->location,
11008 /*user_defined_p=*/true);
11009 return type_spec;
11011 else
11012 goto elaborated_type_specifier;
11014 /* Any of these indicate either a class-specifier, or an
11015 elaborated-type-specifier. */
11016 case RID_CLASS:
11017 case RID_STRUCT:
11018 case RID_UNION:
11019 /* Parse tentatively so that we can back up if we don't find a
11020 class-specifier. */
11021 cp_parser_parse_tentatively (parser);
11022 /* Look for the class-specifier. */
11023 type_spec = cp_parser_class_specifier (parser);
11024 /* If that worked, we're done. */
11025 if (cp_parser_parse_definitely (parser))
11027 if (declares_class_or_enum)
11028 *declares_class_or_enum = 2;
11029 if (decl_specs)
11030 cp_parser_set_decl_spec_type (decl_specs,
11031 type_spec,
11032 token->location,
11033 /*user_defined_p=*/true);
11034 return type_spec;
11037 /* Fall through. */
11038 elaborated_type_specifier:
11039 /* We're declaring (not defining) a class or enum. */
11040 if (declares_class_or_enum)
11041 *declares_class_or_enum = 1;
11043 /* Fall through. */
11044 case RID_TYPENAME:
11045 /* Look for an elaborated-type-specifier. */
11046 type_spec
11047 = (cp_parser_elaborated_type_specifier
11048 (parser,
11049 decl_specs && decl_specs->specs[(int) ds_friend],
11050 is_declaration));
11051 if (decl_specs)
11052 cp_parser_set_decl_spec_type (decl_specs,
11053 type_spec,
11054 token->location,
11055 /*user_defined_p=*/true);
11056 return type_spec;
11058 case RID_CONST:
11059 ds = ds_const;
11060 if (is_cv_qualifier)
11061 *is_cv_qualifier = true;
11062 break;
11064 case RID_VOLATILE:
11065 ds = ds_volatile;
11066 if (is_cv_qualifier)
11067 *is_cv_qualifier = true;
11068 break;
11070 case RID_RESTRICT:
11071 ds = ds_restrict;
11072 if (is_cv_qualifier)
11073 *is_cv_qualifier = true;
11074 break;
11076 case RID_COMPLEX:
11077 /* The `__complex__' keyword is a GNU extension. */
11078 ds = ds_complex;
11079 break;
11081 default:
11082 break;
11085 /* Handle simple keywords. */
11086 if (ds != ds_last)
11088 if (decl_specs)
11090 ++decl_specs->specs[(int)ds];
11091 decl_specs->any_specifiers_p = true;
11093 return cp_lexer_consume_token (parser->lexer)->u.value;
11096 /* If we do not already have a type-specifier, assume we are looking
11097 at a simple-type-specifier. */
11098 type_spec = cp_parser_simple_type_specifier (parser,
11099 decl_specs,
11100 flags);
11102 /* If we didn't find a type-specifier, and a type-specifier was not
11103 optional in this context, issue an error message. */
11104 if (!type_spec && !(flags & CP_PARSER_FLAGS_OPTIONAL))
11106 cp_parser_error (parser, "expected type specifier");
11107 return error_mark_node;
11110 return type_spec;
11113 /* Parse a simple-type-specifier.
11115 simple-type-specifier:
11116 :: [opt] nested-name-specifier [opt] type-name
11117 :: [opt] nested-name-specifier template template-id
11118 char
11119 wchar_t
11120 bool
11121 short
11123 long
11124 signed
11125 unsigned
11126 float
11127 double
11128 void
11130 C++0x Extension:
11132 simple-type-specifier:
11133 auto
11134 decltype ( expression )
11135 char16_t
11136 char32_t
11138 GNU Extension:
11140 simple-type-specifier:
11141 __typeof__ unary-expression
11142 __typeof__ ( type-id )
11144 Returns the indicated TYPE_DECL. If DECL_SPECS is not NULL, it is
11145 appropriately updated. */
11147 static tree
11148 cp_parser_simple_type_specifier (cp_parser* parser,
11149 cp_decl_specifier_seq *decl_specs,
11150 cp_parser_flags flags)
11152 tree type = NULL_TREE;
11153 cp_token *token;
11155 /* Peek at the next token. */
11156 token = cp_lexer_peek_token (parser->lexer);
11158 /* If we're looking at a keyword, things are easy. */
11159 switch (token->keyword)
11161 case RID_CHAR:
11162 if (decl_specs)
11163 decl_specs->explicit_char_p = true;
11164 type = char_type_node;
11165 break;
11166 case RID_CHAR16:
11167 type = char16_type_node;
11168 break;
11169 case RID_CHAR32:
11170 type = char32_type_node;
11171 break;
11172 case RID_WCHAR:
11173 type = wchar_type_node;
11174 break;
11175 case RID_BOOL:
11176 type = boolean_type_node;
11177 break;
11178 case RID_SHORT:
11179 if (decl_specs)
11180 ++decl_specs->specs[(int) ds_short];
11181 type = short_integer_type_node;
11182 break;
11183 case RID_INT:
11184 if (decl_specs)
11185 decl_specs->explicit_int_p = true;
11186 type = integer_type_node;
11187 break;
11188 case RID_LONG:
11189 if (decl_specs)
11190 ++decl_specs->specs[(int) ds_long];
11191 type = long_integer_type_node;
11192 break;
11193 case RID_SIGNED:
11194 if (decl_specs)
11195 ++decl_specs->specs[(int) ds_signed];
11196 type = integer_type_node;
11197 break;
11198 case RID_UNSIGNED:
11199 if (decl_specs)
11200 ++decl_specs->specs[(int) ds_unsigned];
11201 type = unsigned_type_node;
11202 break;
11203 case RID_FLOAT:
11204 type = float_type_node;
11205 break;
11206 case RID_DOUBLE:
11207 type = double_type_node;
11208 break;
11209 case RID_VOID:
11210 type = void_type_node;
11211 break;
11213 case RID_AUTO:
11214 maybe_warn_cpp0x ("C++0x auto");
11215 type = make_auto ();
11216 break;
11218 case RID_DECLTYPE:
11219 /* Parse the `decltype' type. */
11220 type = cp_parser_decltype (parser);
11222 if (decl_specs)
11223 cp_parser_set_decl_spec_type (decl_specs, type,
11224 token->location,
11225 /*user_defined_p=*/true);
11227 return type;
11229 case RID_TYPEOF:
11230 /* Consume the `typeof' token. */
11231 cp_lexer_consume_token (parser->lexer);
11232 /* Parse the operand to `typeof'. */
11233 type = cp_parser_sizeof_operand (parser, RID_TYPEOF);
11234 /* If it is not already a TYPE, take its type. */
11235 if (!TYPE_P (type))
11236 type = finish_typeof (type);
11238 if (decl_specs)
11239 cp_parser_set_decl_spec_type (decl_specs, type,
11240 token->location,
11241 /*user_defined_p=*/true);
11243 return type;
11245 default:
11246 break;
11249 /* If the type-specifier was for a built-in type, we're done. */
11250 if (type)
11252 tree id;
11254 /* Record the type. */
11255 if (decl_specs
11256 && (token->keyword != RID_SIGNED
11257 && token->keyword != RID_UNSIGNED
11258 && token->keyword != RID_SHORT
11259 && token->keyword != RID_LONG))
11260 cp_parser_set_decl_spec_type (decl_specs,
11261 type,
11262 token->location,
11263 /*user_defined=*/false);
11264 if (decl_specs)
11265 decl_specs->any_specifiers_p = true;
11267 /* Consume the token. */
11268 id = cp_lexer_consume_token (parser->lexer)->u.value;
11270 /* There is no valid C++ program where a non-template type is
11271 followed by a "<". That usually indicates that the user thought
11272 that the type was a template. */
11273 cp_parser_check_for_invalid_template_id (parser, type, token->location);
11275 return TYPE_NAME (type);
11278 /* The type-specifier must be a user-defined type. */
11279 if (!(flags & CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES))
11281 bool qualified_p;
11282 bool global_p;
11284 /* Don't gobble tokens or issue error messages if this is an
11285 optional type-specifier. */
11286 if (flags & CP_PARSER_FLAGS_OPTIONAL)
11287 cp_parser_parse_tentatively (parser);
11289 /* Look for the optional `::' operator. */
11290 global_p
11291 = (cp_parser_global_scope_opt (parser,
11292 /*current_scope_valid_p=*/false)
11293 != NULL_TREE);
11294 /* Look for the nested-name specifier. */
11295 qualified_p
11296 = (cp_parser_nested_name_specifier_opt (parser,
11297 /*typename_keyword_p=*/false,
11298 /*check_dependency_p=*/true,
11299 /*type_p=*/false,
11300 /*is_declaration=*/false)
11301 != NULL_TREE);
11302 token = cp_lexer_peek_token (parser->lexer);
11303 /* If we have seen a nested-name-specifier, and the next token
11304 is `template', then we are using the template-id production. */
11305 if (parser->scope
11306 && cp_parser_optional_template_keyword (parser))
11308 /* Look for the template-id. */
11309 type = cp_parser_template_id (parser,
11310 /*template_keyword_p=*/true,
11311 /*check_dependency_p=*/true,
11312 /*is_declaration=*/false);
11313 /* If the template-id did not name a type, we are out of
11314 luck. */
11315 if (TREE_CODE (type) != TYPE_DECL)
11317 cp_parser_error (parser, "expected template-id for type");
11318 type = NULL_TREE;
11321 /* Otherwise, look for a type-name. */
11322 else
11323 type = cp_parser_type_name (parser);
11324 /* Keep track of all name-lookups performed in class scopes. */
11325 if (type
11326 && !global_p
11327 && !qualified_p
11328 && TREE_CODE (type) == TYPE_DECL
11329 && TREE_CODE (DECL_NAME (type)) == IDENTIFIER_NODE)
11330 maybe_note_name_used_in_class (DECL_NAME (type), type);
11331 /* If it didn't work out, we don't have a TYPE. */
11332 if ((flags & CP_PARSER_FLAGS_OPTIONAL)
11333 && !cp_parser_parse_definitely (parser))
11334 type = NULL_TREE;
11335 if (type && decl_specs)
11336 cp_parser_set_decl_spec_type (decl_specs, type,
11337 token->location,
11338 /*user_defined=*/true);
11341 /* If we didn't get a type-name, issue an error message. */
11342 if (!type && !(flags & CP_PARSER_FLAGS_OPTIONAL))
11344 cp_parser_error (parser, "expected type-name");
11345 return error_mark_node;
11348 /* There is no valid C++ program where a non-template type is
11349 followed by a "<". That usually indicates that the user thought
11350 that the type was a template. */
11351 if (type && type != error_mark_node)
11353 /* As a last-ditch effort, see if TYPE is an Objective-C type.
11354 If it is, then the '<'...'>' enclose protocol names rather than
11355 template arguments, and so everything is fine. */
11356 if (c_dialect_objc ()
11357 && (objc_is_id (type) || objc_is_class_name (type)))
11359 tree protos = cp_parser_objc_protocol_refs_opt (parser);
11360 tree qual_type = objc_get_protocol_qualified_type (type, protos);
11362 /* Clobber the "unqualified" type previously entered into
11363 DECL_SPECS with the new, improved protocol-qualified version. */
11364 if (decl_specs)
11365 decl_specs->type = qual_type;
11367 return qual_type;
11370 cp_parser_check_for_invalid_template_id (parser, TREE_TYPE (type),
11371 token->location);
11374 return type;
11377 /* Parse a type-name.
11379 type-name:
11380 class-name
11381 enum-name
11382 typedef-name
11384 enum-name:
11385 identifier
11387 typedef-name:
11388 identifier
11390 Returns a TYPE_DECL for the type. */
11392 static tree
11393 cp_parser_type_name (cp_parser* parser)
11395 tree type_decl;
11397 /* We can't know yet whether it is a class-name or not. */
11398 cp_parser_parse_tentatively (parser);
11399 /* Try a class-name. */
11400 type_decl = cp_parser_class_name (parser,
11401 /*typename_keyword_p=*/false,
11402 /*template_keyword_p=*/false,
11403 none_type,
11404 /*check_dependency_p=*/true,
11405 /*class_head_p=*/false,
11406 /*is_declaration=*/false);
11407 /* If it's not a class-name, keep looking. */
11408 if (!cp_parser_parse_definitely (parser))
11410 /* It must be a typedef-name or an enum-name. */
11411 return cp_parser_nonclass_name (parser);
11414 return type_decl;
11417 /* Parse a non-class type-name, that is, either an enum-name or a typedef-name.
11419 enum-name:
11420 identifier
11422 typedef-name:
11423 identifier
11425 Returns a TYPE_DECL for the type. */
11427 static tree
11428 cp_parser_nonclass_name (cp_parser* parser)
11430 tree type_decl;
11431 tree identifier;
11433 cp_token *token = cp_lexer_peek_token (parser->lexer);
11434 identifier = cp_parser_identifier (parser);
11435 if (identifier == error_mark_node)
11436 return error_mark_node;
11438 /* Look up the type-name. */
11439 type_decl = cp_parser_lookup_name_simple (parser, identifier, token->location);
11441 if (TREE_CODE (type_decl) != TYPE_DECL
11442 && (objc_is_id (identifier) || objc_is_class_name (identifier)))
11444 /* See if this is an Objective-C type. */
11445 tree protos = cp_parser_objc_protocol_refs_opt (parser);
11446 tree type = objc_get_protocol_qualified_type (identifier, protos);
11447 if (type)
11448 type_decl = TYPE_NAME (type);
11451 /* Issue an error if we did not find a type-name. */
11452 if (TREE_CODE (type_decl) != TYPE_DECL)
11454 if (!cp_parser_simulate_error (parser))
11455 cp_parser_name_lookup_error (parser, identifier, type_decl,
11456 "is not a type", token->location);
11457 return error_mark_node;
11459 /* Remember that the name was used in the definition of the
11460 current class so that we can check later to see if the
11461 meaning would have been different after the class was
11462 entirely defined. */
11463 else if (type_decl != error_mark_node
11464 && !parser->scope)
11465 maybe_note_name_used_in_class (identifier, type_decl);
11467 return type_decl;
11470 /* Parse an elaborated-type-specifier. Note that the grammar given
11471 here incorporates the resolution to DR68.
11473 elaborated-type-specifier:
11474 class-key :: [opt] nested-name-specifier [opt] identifier
11475 class-key :: [opt] nested-name-specifier [opt] template [opt] template-id
11476 enum-key :: [opt] nested-name-specifier [opt] identifier
11477 typename :: [opt] nested-name-specifier identifier
11478 typename :: [opt] nested-name-specifier template [opt]
11479 template-id
11481 GNU extension:
11483 elaborated-type-specifier:
11484 class-key attributes :: [opt] nested-name-specifier [opt] identifier
11485 class-key attributes :: [opt] nested-name-specifier [opt]
11486 template [opt] template-id
11487 enum attributes :: [opt] nested-name-specifier [opt] identifier
11489 If IS_FRIEND is TRUE, then this elaborated-type-specifier is being
11490 declared `friend'. If IS_DECLARATION is TRUE, then this
11491 elaborated-type-specifier appears in a decl-specifiers-seq, i.e.,
11492 something is being declared.
11494 Returns the TYPE specified. */
11496 static tree
11497 cp_parser_elaborated_type_specifier (cp_parser* parser,
11498 bool is_friend,
11499 bool is_declaration)
11501 enum tag_types tag_type;
11502 tree identifier;
11503 tree type = NULL_TREE;
11504 tree attributes = NULL_TREE;
11505 cp_token *token = NULL;
11507 /* See if we're looking at the `enum' keyword. */
11508 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_ENUM))
11510 /* Consume the `enum' token. */
11511 cp_lexer_consume_token (parser->lexer);
11512 /* Remember that it's an enumeration type. */
11513 tag_type = enum_type;
11514 /* Parse the optional `struct' or `class' key (for C++0x scoped
11515 enums). */
11516 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_CLASS)
11517 || cp_lexer_next_token_is_keyword (parser->lexer, RID_STRUCT))
11519 if (cxx_dialect == cxx98)
11520 maybe_warn_cpp0x ("scoped enums");
11522 /* Consume the `struct' or `class'. */
11523 cp_lexer_consume_token (parser->lexer);
11525 /* Parse the attributes. */
11526 attributes = cp_parser_attributes_opt (parser);
11528 /* Or, it might be `typename'. */
11529 else if (cp_lexer_next_token_is_keyword (parser->lexer,
11530 RID_TYPENAME))
11532 /* Consume the `typename' token. */
11533 cp_lexer_consume_token (parser->lexer);
11534 /* Remember that it's a `typename' type. */
11535 tag_type = typename_type;
11536 /* The `typename' keyword is only allowed in templates. */
11537 if (!processing_template_decl)
11538 permerror (input_location, "using %<typename%> outside of template");
11540 /* Otherwise it must be a class-key. */
11541 else
11543 tag_type = cp_parser_class_key (parser);
11544 if (tag_type == none_type)
11545 return error_mark_node;
11546 /* Parse the attributes. */
11547 attributes = cp_parser_attributes_opt (parser);
11550 /* Look for the `::' operator. */
11551 cp_parser_global_scope_opt (parser,
11552 /*current_scope_valid_p=*/false);
11553 /* Look for the nested-name-specifier. */
11554 if (tag_type == typename_type)
11556 if (!cp_parser_nested_name_specifier (parser,
11557 /*typename_keyword_p=*/true,
11558 /*check_dependency_p=*/true,
11559 /*type_p=*/true,
11560 is_declaration))
11561 return error_mark_node;
11563 else
11564 /* Even though `typename' is not present, the proposed resolution
11565 to Core Issue 180 says that in `class A<T>::B', `B' should be
11566 considered a type-name, even if `A<T>' is dependent. */
11567 cp_parser_nested_name_specifier_opt (parser,
11568 /*typename_keyword_p=*/true,
11569 /*check_dependency_p=*/true,
11570 /*type_p=*/true,
11571 is_declaration);
11572 /* For everything but enumeration types, consider a template-id.
11573 For an enumeration type, consider only a plain identifier. */
11574 if (tag_type != enum_type)
11576 bool template_p = false;
11577 tree decl;
11579 /* Allow the `template' keyword. */
11580 template_p = cp_parser_optional_template_keyword (parser);
11581 /* If we didn't see `template', we don't know if there's a
11582 template-id or not. */
11583 if (!template_p)
11584 cp_parser_parse_tentatively (parser);
11585 /* Parse the template-id. */
11586 token = cp_lexer_peek_token (parser->lexer);
11587 decl = cp_parser_template_id (parser, template_p,
11588 /*check_dependency_p=*/true,
11589 is_declaration);
11590 /* If we didn't find a template-id, look for an ordinary
11591 identifier. */
11592 if (!template_p && !cp_parser_parse_definitely (parser))
11594 /* If DECL is a TEMPLATE_ID_EXPR, and the `typename' keyword is
11595 in effect, then we must assume that, upon instantiation, the
11596 template will correspond to a class. */
11597 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
11598 && tag_type == typename_type)
11599 type = make_typename_type (parser->scope, decl,
11600 typename_type,
11601 /*complain=*/tf_error);
11602 /* If the `typename' keyword is in effect and DECL is not a type
11603 decl. Then type is non existant. */
11604 else if (tag_type == typename_type && TREE_CODE (decl) != TYPE_DECL)
11605 type = NULL_TREE;
11606 else
11607 type = TREE_TYPE (decl);
11610 if (!type)
11612 token = cp_lexer_peek_token (parser->lexer);
11613 identifier = cp_parser_identifier (parser);
11615 if (identifier == error_mark_node)
11617 parser->scope = NULL_TREE;
11618 return error_mark_node;
11621 /* For a `typename', we needn't call xref_tag. */
11622 if (tag_type == typename_type
11623 && TREE_CODE (parser->scope) != NAMESPACE_DECL)
11624 return cp_parser_make_typename_type (parser, parser->scope,
11625 identifier,
11626 token->location);
11627 /* Look up a qualified name in the usual way. */
11628 if (parser->scope)
11630 tree decl;
11631 tree ambiguous_decls;
11633 decl = cp_parser_lookup_name (parser, identifier,
11634 tag_type,
11635 /*is_template=*/false,
11636 /*is_namespace=*/false,
11637 /*check_dependency=*/true,
11638 &ambiguous_decls,
11639 token->location);
11641 /* If the lookup was ambiguous, an error will already have been
11642 issued. */
11643 if (ambiguous_decls)
11644 return error_mark_node;
11646 /* If we are parsing friend declaration, DECL may be a
11647 TEMPLATE_DECL tree node here. However, we need to check
11648 whether this TEMPLATE_DECL results in valid code. Consider
11649 the following example:
11651 namespace N {
11652 template <class T> class C {};
11654 class X {
11655 template <class T> friend class N::C; // #1, valid code
11657 template <class T> class Y {
11658 friend class N::C; // #2, invalid code
11661 For both case #1 and #2, we arrive at a TEMPLATE_DECL after
11662 name lookup of `N::C'. We see that friend declaration must
11663 be template for the code to be valid. Note that
11664 processing_template_decl does not work here since it is
11665 always 1 for the above two cases. */
11667 decl = (cp_parser_maybe_treat_template_as_class
11668 (decl, /*tag_name_p=*/is_friend
11669 && parser->num_template_parameter_lists));
11671 if (TREE_CODE (decl) != TYPE_DECL)
11673 cp_parser_diagnose_invalid_type_name (parser,
11674 parser->scope,
11675 identifier,
11676 token->location);
11677 return error_mark_node;
11680 if (TREE_CODE (TREE_TYPE (decl)) != TYPENAME_TYPE)
11682 bool allow_template = (parser->num_template_parameter_lists
11683 || DECL_SELF_REFERENCE_P (decl));
11684 type = check_elaborated_type_specifier (tag_type, decl,
11685 allow_template);
11687 if (type == error_mark_node)
11688 return error_mark_node;
11691 /* Forward declarations of nested types, such as
11693 class C1::C2;
11694 class C1::C2::C3;
11696 are invalid unless all components preceding the final '::'
11697 are complete. If all enclosing types are complete, these
11698 declarations become merely pointless.
11700 Invalid forward declarations of nested types are errors
11701 caught elsewhere in parsing. Those that are pointless arrive
11702 here. */
11704 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
11705 && !is_friend && !processing_explicit_instantiation)
11706 warning (0, "declaration %qD does not declare anything", decl);
11708 type = TREE_TYPE (decl);
11710 else
11712 /* An elaborated-type-specifier sometimes introduces a new type and
11713 sometimes names an existing type. Normally, the rule is that it
11714 introduces a new type only if there is not an existing type of
11715 the same name already in scope. For example, given:
11717 struct S {};
11718 void f() { struct S s; }
11720 the `struct S' in the body of `f' is the same `struct S' as in
11721 the global scope; the existing definition is used. However, if
11722 there were no global declaration, this would introduce a new
11723 local class named `S'.
11725 An exception to this rule applies to the following code:
11727 namespace N { struct S; }
11729 Here, the elaborated-type-specifier names a new type
11730 unconditionally; even if there is already an `S' in the
11731 containing scope this declaration names a new type.
11732 This exception only applies if the elaborated-type-specifier
11733 forms the complete declaration:
11735 [class.name]
11737 A declaration consisting solely of `class-key identifier ;' is
11738 either a redeclaration of the name in the current scope or a
11739 forward declaration of the identifier as a class name. It
11740 introduces the name into the current scope.
11742 We are in this situation precisely when the next token is a `;'.
11744 An exception to the exception is that a `friend' declaration does
11745 *not* name a new type; i.e., given:
11747 struct S { friend struct T; };
11749 `T' is not a new type in the scope of `S'.
11751 Also, `new struct S' or `sizeof (struct S)' never results in the
11752 definition of a new type; a new type can only be declared in a
11753 declaration context. */
11755 tag_scope ts;
11756 bool template_p;
11758 if (is_friend)
11759 /* Friends have special name lookup rules. */
11760 ts = ts_within_enclosing_non_class;
11761 else if (is_declaration
11762 && cp_lexer_next_token_is (parser->lexer,
11763 CPP_SEMICOLON))
11764 /* This is a `class-key identifier ;' */
11765 ts = ts_current;
11766 else
11767 ts = ts_global;
11769 template_p =
11770 (parser->num_template_parameter_lists
11771 && (cp_parser_next_token_starts_class_definition_p (parser)
11772 || cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)));
11773 /* An unqualified name was used to reference this type, so
11774 there were no qualifying templates. */
11775 if (!cp_parser_check_template_parameters (parser,
11776 /*num_templates=*/0,
11777 token->location))
11778 return error_mark_node;
11779 type = xref_tag (tag_type, identifier, ts, template_p);
11783 if (type == error_mark_node)
11784 return error_mark_node;
11786 /* Allow attributes on forward declarations of classes. */
11787 if (attributes)
11789 if (TREE_CODE (type) == TYPENAME_TYPE)
11790 warning (OPT_Wattributes,
11791 "attributes ignored on uninstantiated type");
11792 else if (tag_type != enum_type && CLASSTYPE_TEMPLATE_INSTANTIATION (type)
11793 && ! processing_explicit_instantiation)
11794 warning (OPT_Wattributes,
11795 "attributes ignored on template instantiation");
11796 else if (is_declaration && cp_parser_declares_only_class_p (parser))
11797 cplus_decl_attributes (&type, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
11798 else
11799 warning (OPT_Wattributes,
11800 "attributes ignored on elaborated-type-specifier that is not a forward declaration");
11803 if (tag_type != enum_type)
11804 cp_parser_check_class_key (tag_type, type);
11806 /* A "<" cannot follow an elaborated type specifier. If that
11807 happens, the user was probably trying to form a template-id. */
11808 cp_parser_check_for_invalid_template_id (parser, type, token->location);
11810 return type;
11813 /* Parse an enum-specifier.
11815 enum-specifier:
11816 enum-key identifier [opt] enum-base [opt] { enumerator-list [opt] }
11818 enum-key:
11819 enum
11820 enum class [C++0x]
11821 enum struct [C++0x]
11823 enum-base: [C++0x]
11824 : type-specifier-seq
11826 GNU Extensions:
11827 enum-key attributes[opt] identifier [opt] enum-base [opt]
11828 { enumerator-list [opt] }attributes[opt]
11830 Returns an ENUM_TYPE representing the enumeration, or NULL_TREE
11831 if the token stream isn't an enum-specifier after all. */
11833 static tree
11834 cp_parser_enum_specifier (cp_parser* parser)
11836 tree identifier;
11837 tree type;
11838 tree attributes;
11839 bool scoped_enum_p = false;
11840 bool has_underlying_type = false;
11841 tree underlying_type = NULL_TREE;
11843 /* Parse tentatively so that we can back up if we don't find a
11844 enum-specifier. */
11845 cp_parser_parse_tentatively (parser);
11847 /* Caller guarantees that the current token is 'enum', an identifier
11848 possibly follows, and the token after that is an opening brace.
11849 If we don't have an identifier, fabricate an anonymous name for
11850 the enumeration being defined. */
11851 cp_lexer_consume_token (parser->lexer);
11853 /* Parse the "class" or "struct", which indicates a scoped
11854 enumeration type in C++0x. */
11855 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_CLASS)
11856 || cp_lexer_next_token_is_keyword (parser->lexer, RID_STRUCT))
11858 if (cxx_dialect == cxx98)
11859 maybe_warn_cpp0x ("scoped enums");
11861 /* Consume the `struct' or `class' token. */
11862 cp_lexer_consume_token (parser->lexer);
11864 scoped_enum_p = true;
11867 attributes = cp_parser_attributes_opt (parser);
11869 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
11870 identifier = cp_parser_identifier (parser);
11871 else
11872 identifier = make_anon_name ();
11874 /* Check for the `:' that denotes a specified underlying type in C++0x.
11875 Note that a ':' could also indicate a bitfield width, however. */
11876 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
11878 cp_decl_specifier_seq type_specifiers;
11880 /* Consume the `:'. */
11881 cp_lexer_consume_token (parser->lexer);
11883 /* Parse the type-specifier-seq. */
11884 cp_parser_type_specifier_seq (parser, /*is_condition=*/false,
11885 &type_specifiers);
11887 /* At this point this is surely not elaborated type specifier. */
11888 if (!cp_parser_parse_definitely (parser))
11889 return NULL_TREE;
11891 if (cxx_dialect == cxx98)
11892 maybe_warn_cpp0x ("scoped enums");
11894 has_underlying_type = true;
11896 /* If that didn't work, stop. */
11897 if (type_specifiers.type != error_mark_node)
11899 underlying_type = grokdeclarator (NULL, &type_specifiers, TYPENAME,
11900 /*initialized=*/0, NULL);
11901 if (underlying_type == error_mark_node)
11902 underlying_type = NULL_TREE;
11906 /* Look for the `{' but don't consume it yet. */
11907 if (!cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
11909 cp_parser_error (parser, "expected %<{%>");
11910 if (has_underlying_type)
11911 return NULL_TREE;
11914 if (!has_underlying_type && !cp_parser_parse_definitely (parser))
11915 return NULL_TREE;
11917 /* Issue an error message if type-definitions are forbidden here. */
11918 if (!cp_parser_check_type_definition (parser))
11919 type = error_mark_node;
11920 else
11921 /* Create the new type. We do this before consuming the opening
11922 brace so the enum will be recorded as being on the line of its
11923 tag (or the 'enum' keyword, if there is no tag). */
11924 type = start_enum (identifier, underlying_type, scoped_enum_p);
11926 /* Consume the opening brace. */
11927 cp_lexer_consume_token (parser->lexer);
11929 if (type == error_mark_node)
11931 cp_parser_skip_to_end_of_block_or_statement (parser);
11932 return error_mark_node;
11935 /* If the next token is not '}', then there are some enumerators. */
11936 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_BRACE))
11937 cp_parser_enumerator_list (parser, type);
11939 /* Consume the final '}'. */
11940 cp_parser_require (parser, CPP_CLOSE_BRACE, "%<}%>");
11942 /* Look for trailing attributes to apply to this enumeration, and
11943 apply them if appropriate. */
11944 if (cp_parser_allow_gnu_extensions_p (parser))
11946 tree trailing_attr = cp_parser_attributes_opt (parser);
11947 trailing_attr = chainon (trailing_attr, attributes);
11948 cplus_decl_attributes (&type,
11949 trailing_attr,
11950 (int) ATTR_FLAG_TYPE_IN_PLACE);
11953 /* Finish up the enumeration. */
11954 finish_enum (type);
11956 return type;
11959 /* Parse an enumerator-list. The enumerators all have the indicated
11960 TYPE.
11962 enumerator-list:
11963 enumerator-definition
11964 enumerator-list , enumerator-definition */
11966 static void
11967 cp_parser_enumerator_list (cp_parser* parser, tree type)
11969 while (true)
11971 /* Parse an enumerator-definition. */
11972 cp_parser_enumerator_definition (parser, type);
11974 /* If the next token is not a ',', we've reached the end of
11975 the list. */
11976 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
11977 break;
11978 /* Otherwise, consume the `,' and keep going. */
11979 cp_lexer_consume_token (parser->lexer);
11980 /* If the next token is a `}', there is a trailing comma. */
11981 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
11983 if (!in_system_header)
11984 pedwarn (input_location, OPT_pedantic, "comma at end of enumerator list");
11985 break;
11990 /* Parse an enumerator-definition. The enumerator has the indicated
11991 TYPE.
11993 enumerator-definition:
11994 enumerator
11995 enumerator = constant-expression
11997 enumerator:
11998 identifier */
12000 static void
12001 cp_parser_enumerator_definition (cp_parser* parser, tree type)
12003 tree identifier;
12004 tree value;
12006 /* Look for the identifier. */
12007 identifier = cp_parser_identifier (parser);
12008 if (identifier == error_mark_node)
12009 return;
12011 /* If the next token is an '=', then there is an explicit value. */
12012 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
12014 /* Consume the `=' token. */
12015 cp_lexer_consume_token (parser->lexer);
12016 /* Parse the value. */
12017 value = cp_parser_constant_expression (parser,
12018 /*allow_non_constant_p=*/false,
12019 NULL);
12021 else
12022 value = NULL_TREE;
12024 /* If we are processing a template, make sure the initializer of the
12025 enumerator doesn't contain any bare template parameter pack. */
12026 if (check_for_bare_parameter_packs (value))
12027 value = error_mark_node;
12029 /* Create the enumerator. */
12030 build_enumerator (identifier, value, type);
12033 /* Parse a namespace-name.
12035 namespace-name:
12036 original-namespace-name
12037 namespace-alias
12039 Returns the NAMESPACE_DECL for the namespace. */
12041 static tree
12042 cp_parser_namespace_name (cp_parser* parser)
12044 tree identifier;
12045 tree namespace_decl;
12047 cp_token *token = cp_lexer_peek_token (parser->lexer);
12049 /* Get the name of the namespace. */
12050 identifier = cp_parser_identifier (parser);
12051 if (identifier == error_mark_node)
12052 return error_mark_node;
12054 /* Look up the identifier in the currently active scope. Look only
12055 for namespaces, due to:
12057 [basic.lookup.udir]
12059 When looking up a namespace-name in a using-directive or alias
12060 definition, only namespace names are considered.
12062 And:
12064 [basic.lookup.qual]
12066 During the lookup of a name preceding the :: scope resolution
12067 operator, object, function, and enumerator names are ignored.
12069 (Note that cp_parser_qualifying_entity only calls this
12070 function if the token after the name is the scope resolution
12071 operator.) */
12072 namespace_decl = cp_parser_lookup_name (parser, identifier,
12073 none_type,
12074 /*is_template=*/false,
12075 /*is_namespace=*/true,
12076 /*check_dependency=*/true,
12077 /*ambiguous_decls=*/NULL,
12078 token->location);
12079 /* If it's not a namespace, issue an error. */
12080 if (namespace_decl == error_mark_node
12081 || TREE_CODE (namespace_decl) != NAMESPACE_DECL)
12083 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
12084 error ("%H%qD is not a namespace-name", &token->location, identifier);
12085 cp_parser_error (parser, "expected namespace-name");
12086 namespace_decl = error_mark_node;
12089 return namespace_decl;
12092 /* Parse a namespace-definition.
12094 namespace-definition:
12095 named-namespace-definition
12096 unnamed-namespace-definition
12098 named-namespace-definition:
12099 original-namespace-definition
12100 extension-namespace-definition
12102 original-namespace-definition:
12103 namespace identifier { namespace-body }
12105 extension-namespace-definition:
12106 namespace original-namespace-name { namespace-body }
12108 unnamed-namespace-definition:
12109 namespace { namespace-body } */
12111 static void
12112 cp_parser_namespace_definition (cp_parser* parser)
12114 tree identifier, attribs;
12115 bool has_visibility;
12116 bool is_inline;
12118 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_INLINE))
12120 is_inline = true;
12121 cp_lexer_consume_token (parser->lexer);
12123 else
12124 is_inline = false;
12126 /* Look for the `namespace' keyword. */
12127 cp_parser_require_keyword (parser, RID_NAMESPACE, "%<namespace%>");
12129 /* Get the name of the namespace. We do not attempt to distinguish
12130 between an original-namespace-definition and an
12131 extension-namespace-definition at this point. The semantic
12132 analysis routines are responsible for that. */
12133 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
12134 identifier = cp_parser_identifier (parser);
12135 else
12136 identifier = NULL_TREE;
12138 /* Parse any specified attributes. */
12139 attribs = cp_parser_attributes_opt (parser);
12141 /* Look for the `{' to start the namespace. */
12142 cp_parser_require (parser, CPP_OPEN_BRACE, "%<{%>");
12143 /* Start the namespace. */
12144 push_namespace (identifier);
12146 /* "inline namespace" is equivalent to a stub namespace definition
12147 followed by a strong using directive. */
12148 if (is_inline)
12150 tree name_space = current_namespace;
12151 /* Set up namespace association. */
12152 DECL_NAMESPACE_ASSOCIATIONS (name_space)
12153 = tree_cons (CP_DECL_CONTEXT (name_space), NULL_TREE,
12154 DECL_NAMESPACE_ASSOCIATIONS (name_space));
12155 /* Import the contents of the inline namespace. */
12156 pop_namespace ();
12157 do_using_directive (name_space);
12158 push_namespace (identifier);
12161 has_visibility = handle_namespace_attrs (current_namespace, attribs);
12163 /* Parse the body of the namespace. */
12164 cp_parser_namespace_body (parser);
12166 #ifdef HANDLE_PRAGMA_VISIBILITY
12167 if (has_visibility)
12168 pop_visibility ();
12169 #endif
12171 /* Finish the namespace. */
12172 pop_namespace ();
12173 /* Look for the final `}'. */
12174 cp_parser_require (parser, CPP_CLOSE_BRACE, "%<}%>");
12177 /* Parse a namespace-body.
12179 namespace-body:
12180 declaration-seq [opt] */
12182 static void
12183 cp_parser_namespace_body (cp_parser* parser)
12185 cp_parser_declaration_seq_opt (parser);
12188 /* Parse a namespace-alias-definition.
12190 namespace-alias-definition:
12191 namespace identifier = qualified-namespace-specifier ; */
12193 static void
12194 cp_parser_namespace_alias_definition (cp_parser* parser)
12196 tree identifier;
12197 tree namespace_specifier;
12199 cp_token *token = cp_lexer_peek_token (parser->lexer);
12201 /* Look for the `namespace' keyword. */
12202 cp_parser_require_keyword (parser, RID_NAMESPACE, "%<namespace%>");
12203 /* Look for the identifier. */
12204 identifier = cp_parser_identifier (parser);
12205 if (identifier == error_mark_node)
12206 return;
12207 /* Look for the `=' token. */
12208 if (!cp_parser_uncommitted_to_tentative_parse_p (parser)
12209 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
12211 error ("%H%<namespace%> definition is not allowed here", &token->location);
12212 /* Skip the definition. */
12213 cp_lexer_consume_token (parser->lexer);
12214 if (cp_parser_skip_to_closing_brace (parser))
12215 cp_lexer_consume_token (parser->lexer);
12216 return;
12218 cp_parser_require (parser, CPP_EQ, "%<=%>");
12219 /* Look for the qualified-namespace-specifier. */
12220 namespace_specifier
12221 = cp_parser_qualified_namespace_specifier (parser);
12222 /* Look for the `;' token. */
12223 cp_parser_require (parser, CPP_SEMICOLON, "%<;%>");
12225 /* Register the alias in the symbol table. */
12226 do_namespace_alias (identifier, namespace_specifier);
12229 /* Parse a qualified-namespace-specifier.
12231 qualified-namespace-specifier:
12232 :: [opt] nested-name-specifier [opt] namespace-name
12234 Returns a NAMESPACE_DECL corresponding to the specified
12235 namespace. */
12237 static tree
12238 cp_parser_qualified_namespace_specifier (cp_parser* parser)
12240 /* Look for the optional `::'. */
12241 cp_parser_global_scope_opt (parser,
12242 /*current_scope_valid_p=*/false);
12244 /* Look for the optional nested-name-specifier. */
12245 cp_parser_nested_name_specifier_opt (parser,
12246 /*typename_keyword_p=*/false,
12247 /*check_dependency_p=*/true,
12248 /*type_p=*/false,
12249 /*is_declaration=*/true);
12251 return cp_parser_namespace_name (parser);
12254 /* Parse a using-declaration, or, if ACCESS_DECLARATION_P is true, an
12255 access declaration.
12257 using-declaration:
12258 using typename [opt] :: [opt] nested-name-specifier unqualified-id ;
12259 using :: unqualified-id ;
12261 access-declaration:
12262 qualified-id ;
12266 static bool
12267 cp_parser_using_declaration (cp_parser* parser,
12268 bool access_declaration_p)
12270 cp_token *token;
12271 bool typename_p = false;
12272 bool global_scope_p;
12273 tree decl;
12274 tree identifier;
12275 tree qscope;
12277 if (access_declaration_p)
12278 cp_parser_parse_tentatively (parser);
12279 else
12281 /* Look for the `using' keyword. */
12282 cp_parser_require_keyword (parser, RID_USING, "%<using%>");
12284 /* Peek at the next token. */
12285 token = cp_lexer_peek_token (parser->lexer);
12286 /* See if it's `typename'. */
12287 if (token->keyword == RID_TYPENAME)
12289 /* Remember that we've seen it. */
12290 typename_p = true;
12291 /* Consume the `typename' token. */
12292 cp_lexer_consume_token (parser->lexer);
12296 /* Look for the optional global scope qualification. */
12297 global_scope_p
12298 = (cp_parser_global_scope_opt (parser,
12299 /*current_scope_valid_p=*/false)
12300 != NULL_TREE);
12302 /* If we saw `typename', or didn't see `::', then there must be a
12303 nested-name-specifier present. */
12304 if (typename_p || !global_scope_p)
12305 qscope = cp_parser_nested_name_specifier (parser, typename_p,
12306 /*check_dependency_p=*/true,
12307 /*type_p=*/false,
12308 /*is_declaration=*/true);
12309 /* Otherwise, we could be in either of the two productions. In that
12310 case, treat the nested-name-specifier as optional. */
12311 else
12312 qscope = cp_parser_nested_name_specifier_opt (parser,
12313 /*typename_keyword_p=*/false,
12314 /*check_dependency_p=*/true,
12315 /*type_p=*/false,
12316 /*is_declaration=*/true);
12317 if (!qscope)
12318 qscope = global_namespace;
12320 if (access_declaration_p && cp_parser_error_occurred (parser))
12321 /* Something has already gone wrong; there's no need to parse
12322 further. Since an error has occurred, the return value of
12323 cp_parser_parse_definitely will be false, as required. */
12324 return cp_parser_parse_definitely (parser);
12326 token = cp_lexer_peek_token (parser->lexer);
12327 /* Parse the unqualified-id. */
12328 identifier = cp_parser_unqualified_id (parser,
12329 /*template_keyword_p=*/false,
12330 /*check_dependency_p=*/true,
12331 /*declarator_p=*/true,
12332 /*optional_p=*/false);
12334 if (access_declaration_p)
12336 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
12337 cp_parser_simulate_error (parser);
12338 if (!cp_parser_parse_definitely (parser))
12339 return false;
12342 /* The function we call to handle a using-declaration is different
12343 depending on what scope we are in. */
12344 if (qscope == error_mark_node || identifier == error_mark_node)
12346 else if (TREE_CODE (identifier) != IDENTIFIER_NODE
12347 && TREE_CODE (identifier) != BIT_NOT_EXPR)
12348 /* [namespace.udecl]
12350 A using declaration shall not name a template-id. */
12351 error ("%Ha template-id may not appear in a using-declaration",
12352 &token->location);
12353 else
12355 if (at_class_scope_p ())
12357 /* Create the USING_DECL. */
12358 decl = do_class_using_decl (parser->scope, identifier);
12360 if (check_for_bare_parameter_packs (decl))
12361 return false;
12362 else
12363 /* Add it to the list of members in this class. */
12364 finish_member_declaration (decl);
12366 else
12368 decl = cp_parser_lookup_name_simple (parser,
12369 identifier,
12370 token->location);
12371 if (decl == error_mark_node)
12372 cp_parser_name_lookup_error (parser, identifier,
12373 decl, NULL,
12374 token->location);
12375 else if (check_for_bare_parameter_packs (decl))
12376 return false;
12377 else if (!at_namespace_scope_p ())
12378 do_local_using_decl (decl, qscope, identifier);
12379 else
12380 do_toplevel_using_decl (decl, qscope, identifier);
12384 /* Look for the final `;'. */
12385 cp_parser_require (parser, CPP_SEMICOLON, "%<;%>");
12387 return true;
12390 /* Parse a using-directive.
12392 using-directive:
12393 using namespace :: [opt] nested-name-specifier [opt]
12394 namespace-name ; */
12396 static void
12397 cp_parser_using_directive (cp_parser* parser)
12399 tree namespace_decl;
12400 tree attribs;
12402 /* Look for the `using' keyword. */
12403 cp_parser_require_keyword (parser, RID_USING, "%<using%>");
12404 /* And the `namespace' keyword. */
12405 cp_parser_require_keyword (parser, RID_NAMESPACE, "%<namespace%>");
12406 /* Look for the optional `::' operator. */
12407 cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/false);
12408 /* And the optional nested-name-specifier. */
12409 cp_parser_nested_name_specifier_opt (parser,
12410 /*typename_keyword_p=*/false,
12411 /*check_dependency_p=*/true,
12412 /*type_p=*/false,
12413 /*is_declaration=*/true);
12414 /* Get the namespace being used. */
12415 namespace_decl = cp_parser_namespace_name (parser);
12416 /* And any specified attributes. */
12417 attribs = cp_parser_attributes_opt (parser);
12418 /* Update the symbol table. */
12419 parse_using_directive (namespace_decl, attribs);
12420 /* Look for the final `;'. */
12421 cp_parser_require (parser, CPP_SEMICOLON, "%<;%>");
12424 /* Parse an asm-definition.
12426 asm-definition:
12427 asm ( string-literal ) ;
12429 GNU Extension:
12431 asm-definition:
12432 asm volatile [opt] ( string-literal ) ;
12433 asm volatile [opt] ( string-literal : asm-operand-list [opt] ) ;
12434 asm volatile [opt] ( string-literal : asm-operand-list [opt]
12435 : asm-operand-list [opt] ) ;
12436 asm volatile [opt] ( string-literal : asm-operand-list [opt]
12437 : asm-operand-list [opt]
12438 : asm-operand-list [opt] ) ; */
12440 static void
12441 cp_parser_asm_definition (cp_parser* parser)
12443 tree string;
12444 tree outputs = NULL_TREE;
12445 tree inputs = NULL_TREE;
12446 tree clobbers = NULL_TREE;
12447 tree asm_stmt;
12448 bool volatile_p = false;
12449 bool extended_p = false;
12450 bool invalid_inputs_p = false;
12451 bool invalid_outputs_p = false;
12453 /* Look for the `asm' keyword. */
12454 cp_parser_require_keyword (parser, RID_ASM, "%<asm%>");
12455 /* See if the next token is `volatile'. */
12456 if (cp_parser_allow_gnu_extensions_p (parser)
12457 && cp_lexer_next_token_is_keyword (parser->lexer, RID_VOLATILE))
12459 /* Remember that we saw the `volatile' keyword. */
12460 volatile_p = true;
12461 /* Consume the token. */
12462 cp_lexer_consume_token (parser->lexer);
12464 /* Look for the opening `('. */
12465 if (!cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>"))
12466 return;
12467 /* Look for the string. */
12468 string = cp_parser_string_literal (parser, false, false);
12469 if (string == error_mark_node)
12471 cp_parser_skip_to_closing_parenthesis (parser, true, false,
12472 /*consume_paren=*/true);
12473 return;
12476 /* If we're allowing GNU extensions, check for the extended assembly
12477 syntax. Unfortunately, the `:' tokens need not be separated by
12478 a space in C, and so, for compatibility, we tolerate that here
12479 too. Doing that means that we have to treat the `::' operator as
12480 two `:' tokens. */
12481 if (cp_parser_allow_gnu_extensions_p (parser)
12482 && parser->in_function_body
12483 && (cp_lexer_next_token_is (parser->lexer, CPP_COLON)
12484 || cp_lexer_next_token_is (parser->lexer, CPP_SCOPE)))
12486 bool inputs_p = false;
12487 bool clobbers_p = false;
12489 /* The extended syntax was used. */
12490 extended_p = true;
12492 /* Look for outputs. */
12493 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
12495 /* Consume the `:'. */
12496 cp_lexer_consume_token (parser->lexer);
12497 /* Parse the output-operands. */
12498 if (cp_lexer_next_token_is_not (parser->lexer,
12499 CPP_COLON)
12500 && cp_lexer_next_token_is_not (parser->lexer,
12501 CPP_SCOPE)
12502 && cp_lexer_next_token_is_not (parser->lexer,
12503 CPP_CLOSE_PAREN))
12504 outputs = cp_parser_asm_operand_list (parser);
12506 if (outputs == error_mark_node)
12507 invalid_outputs_p = true;
12509 /* If the next token is `::', there are no outputs, and the
12510 next token is the beginning of the inputs. */
12511 else if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
12512 /* The inputs are coming next. */
12513 inputs_p = true;
12515 /* Look for inputs. */
12516 if (inputs_p
12517 || cp_lexer_next_token_is (parser->lexer, CPP_COLON))
12519 /* Consume the `:' or `::'. */
12520 cp_lexer_consume_token (parser->lexer);
12521 /* Parse the output-operands. */
12522 if (cp_lexer_next_token_is_not (parser->lexer,
12523 CPP_COLON)
12524 && cp_lexer_next_token_is_not (parser->lexer,
12525 CPP_CLOSE_PAREN))
12526 inputs = cp_parser_asm_operand_list (parser);
12528 if (inputs == error_mark_node)
12529 invalid_inputs_p = true;
12531 else if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
12532 /* The clobbers are coming next. */
12533 clobbers_p = true;
12535 /* Look for clobbers. */
12536 if (clobbers_p
12537 || cp_lexer_next_token_is (parser->lexer, CPP_COLON))
12539 /* Consume the `:' or `::'. */
12540 cp_lexer_consume_token (parser->lexer);
12541 /* Parse the clobbers. */
12542 if (cp_lexer_next_token_is_not (parser->lexer,
12543 CPP_CLOSE_PAREN))
12544 clobbers = cp_parser_asm_clobber_list (parser);
12547 /* Look for the closing `)'. */
12548 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>"))
12549 cp_parser_skip_to_closing_parenthesis (parser, true, false,
12550 /*consume_paren=*/true);
12551 cp_parser_require (parser, CPP_SEMICOLON, "%<;%>");
12553 if (!invalid_inputs_p && !invalid_outputs_p)
12555 /* Create the ASM_EXPR. */
12556 if (parser->in_function_body)
12558 asm_stmt = finish_asm_stmt (volatile_p, string, outputs,
12559 inputs, clobbers);
12560 /* If the extended syntax was not used, mark the ASM_EXPR. */
12561 if (!extended_p)
12563 tree temp = asm_stmt;
12564 if (TREE_CODE (temp) == CLEANUP_POINT_EXPR)
12565 temp = TREE_OPERAND (temp, 0);
12567 ASM_INPUT_P (temp) = 1;
12570 else
12571 cgraph_add_asm_node (string);
12575 /* Declarators [gram.dcl.decl] */
12577 /* Parse an init-declarator.
12579 init-declarator:
12580 declarator initializer [opt]
12582 GNU Extension:
12584 init-declarator:
12585 declarator asm-specification [opt] attributes [opt] initializer [opt]
12587 function-definition:
12588 decl-specifier-seq [opt] declarator ctor-initializer [opt]
12589 function-body
12590 decl-specifier-seq [opt] declarator function-try-block
12592 GNU Extension:
12594 function-definition:
12595 __extension__ function-definition
12597 The DECL_SPECIFIERS apply to this declarator. Returns a
12598 representation of the entity declared. If MEMBER_P is TRUE, then
12599 this declarator appears in a class scope. The new DECL created by
12600 this declarator is returned.
12602 The CHECKS are access checks that should be performed once we know
12603 what entity is being declared (and, therefore, what classes have
12604 befriended it).
12606 If FUNCTION_DEFINITION_ALLOWED_P then we handle the declarator and
12607 for a function-definition here as well. If the declarator is a
12608 declarator for a function-definition, *FUNCTION_DEFINITION_P will
12609 be TRUE upon return. By that point, the function-definition will
12610 have been completely parsed.
12612 FUNCTION_DEFINITION_P may be NULL if FUNCTION_DEFINITION_ALLOWED_P
12613 is FALSE. */
12615 static tree
12616 cp_parser_init_declarator (cp_parser* parser,
12617 cp_decl_specifier_seq *decl_specifiers,
12618 VEC (deferred_access_check,gc)* checks,
12619 bool function_definition_allowed_p,
12620 bool member_p,
12621 int declares_class_or_enum,
12622 bool* function_definition_p)
12624 cp_token *token = NULL, *asm_spec_start_token = NULL,
12625 *attributes_start_token = NULL;
12626 cp_declarator *declarator;
12627 tree prefix_attributes;
12628 tree attributes;
12629 tree asm_specification;
12630 tree initializer;
12631 tree decl = NULL_TREE;
12632 tree scope;
12633 int is_initialized;
12634 /* Only valid if IS_INITIALIZED is true. In that case, CPP_EQ if
12635 initialized with "= ..", CPP_OPEN_PAREN if initialized with
12636 "(...)". */
12637 enum cpp_ttype initialization_kind;
12638 bool is_direct_init = false;
12639 bool is_non_constant_init;
12640 int ctor_dtor_or_conv_p;
12641 bool friend_p;
12642 tree pushed_scope = NULL;
12644 /* Gather the attributes that were provided with the
12645 decl-specifiers. */
12646 prefix_attributes = decl_specifiers->attributes;
12648 /* Assume that this is not the declarator for a function
12649 definition. */
12650 if (function_definition_p)
12651 *function_definition_p = false;
12653 /* Defer access checks while parsing the declarator; we cannot know
12654 what names are accessible until we know what is being
12655 declared. */
12656 resume_deferring_access_checks ();
12658 /* Parse the declarator. */
12659 token = cp_lexer_peek_token (parser->lexer);
12660 declarator
12661 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
12662 &ctor_dtor_or_conv_p,
12663 /*parenthesized_p=*/NULL,
12664 /*member_p=*/false);
12665 /* Gather up the deferred checks. */
12666 stop_deferring_access_checks ();
12668 /* If the DECLARATOR was erroneous, there's no need to go
12669 further. */
12670 if (declarator == cp_error_declarator)
12671 return error_mark_node;
12673 /* Check that the number of template-parameter-lists is OK. */
12674 if (!cp_parser_check_declarator_template_parameters (parser, declarator,
12675 token->location))
12676 return error_mark_node;
12678 if (declares_class_or_enum & 2)
12679 cp_parser_check_for_definition_in_return_type (declarator,
12680 decl_specifiers->type,
12681 decl_specifiers->type_location);
12683 /* Figure out what scope the entity declared by the DECLARATOR is
12684 located in. `grokdeclarator' sometimes changes the scope, so
12685 we compute it now. */
12686 scope = get_scope_of_declarator (declarator);
12688 /* If we're allowing GNU extensions, look for an asm-specification
12689 and attributes. */
12690 if (cp_parser_allow_gnu_extensions_p (parser))
12692 /* Look for an asm-specification. */
12693 asm_spec_start_token = cp_lexer_peek_token (parser->lexer);
12694 asm_specification = cp_parser_asm_specification_opt (parser);
12695 /* And attributes. */
12696 attributes_start_token = cp_lexer_peek_token (parser->lexer);
12697 attributes = cp_parser_attributes_opt (parser);
12699 else
12701 asm_specification = NULL_TREE;
12702 attributes = NULL_TREE;
12705 /* Peek at the next token. */
12706 token = cp_lexer_peek_token (parser->lexer);
12707 /* Check to see if the token indicates the start of a
12708 function-definition. */
12709 if (function_declarator_p (declarator)
12710 && cp_parser_token_starts_function_definition_p (token))
12712 if (!function_definition_allowed_p)
12714 /* If a function-definition should not appear here, issue an
12715 error message. */
12716 cp_parser_error (parser,
12717 "a function-definition is not allowed here");
12718 return error_mark_node;
12720 else
12722 location_t func_brace_location
12723 = cp_lexer_peek_token (parser->lexer)->location;
12725 /* Neither attributes nor an asm-specification are allowed
12726 on a function-definition. */
12727 if (asm_specification)
12728 error ("%Han asm-specification is not allowed "
12729 "on a function-definition",
12730 &asm_spec_start_token->location);
12731 if (attributes)
12732 error ("%Hattributes are not allowed on a function-definition",
12733 &attributes_start_token->location);
12734 /* This is a function-definition. */
12735 *function_definition_p = true;
12737 /* Parse the function definition. */
12738 if (member_p)
12739 decl = cp_parser_save_member_function_body (parser,
12740 decl_specifiers,
12741 declarator,
12742 prefix_attributes);
12743 else
12744 decl
12745 = (cp_parser_function_definition_from_specifiers_and_declarator
12746 (parser, decl_specifiers, prefix_attributes, declarator));
12748 if (decl != error_mark_node && DECL_STRUCT_FUNCTION (decl))
12750 /* This is where the prologue starts... */
12751 DECL_STRUCT_FUNCTION (decl)->function_start_locus
12752 = func_brace_location;
12755 return decl;
12759 /* [dcl.dcl]
12761 Only in function declarations for constructors, destructors, and
12762 type conversions can the decl-specifier-seq be omitted.
12764 We explicitly postpone this check past the point where we handle
12765 function-definitions because we tolerate function-definitions
12766 that are missing their return types in some modes. */
12767 if (!decl_specifiers->any_specifiers_p && ctor_dtor_or_conv_p <= 0)
12769 cp_parser_error (parser,
12770 "expected constructor, destructor, or type conversion");
12771 return error_mark_node;
12774 /* An `=' or an `(', or an '{' in C++0x, indicates an initializer. */
12775 if (token->type == CPP_EQ
12776 || token->type == CPP_OPEN_PAREN
12777 || token->type == CPP_OPEN_BRACE)
12779 is_initialized = SD_INITIALIZED;
12780 initialization_kind = token->type;
12782 if (token->type == CPP_EQ
12783 && function_declarator_p (declarator))
12785 cp_token *t2 = cp_lexer_peek_nth_token (parser->lexer, 2);
12786 if (t2->keyword == RID_DEFAULT)
12787 is_initialized = SD_DEFAULTED;
12788 else if (t2->keyword == RID_DELETE)
12789 is_initialized = SD_DELETED;
12792 else
12794 /* If the init-declarator isn't initialized and isn't followed by a
12795 `,' or `;', it's not a valid init-declarator. */
12796 if (token->type != CPP_COMMA
12797 && token->type != CPP_SEMICOLON)
12799 cp_parser_error (parser, "expected initializer");
12800 return error_mark_node;
12802 is_initialized = SD_UNINITIALIZED;
12803 initialization_kind = CPP_EOF;
12806 /* Because start_decl has side-effects, we should only call it if we
12807 know we're going ahead. By this point, we know that we cannot
12808 possibly be looking at any other construct. */
12809 cp_parser_commit_to_tentative_parse (parser);
12811 /* If the decl specifiers were bad, issue an error now that we're
12812 sure this was intended to be a declarator. Then continue
12813 declaring the variable(s), as int, to try to cut down on further
12814 errors. */
12815 if (decl_specifiers->any_specifiers_p
12816 && decl_specifiers->type == error_mark_node)
12818 cp_parser_error (parser, "invalid type in declaration");
12819 decl_specifiers->type = integer_type_node;
12822 /* Check to see whether or not this declaration is a friend. */
12823 friend_p = cp_parser_friend_p (decl_specifiers);
12825 /* Enter the newly declared entry in the symbol table. If we're
12826 processing a declaration in a class-specifier, we wait until
12827 after processing the initializer. */
12828 if (!member_p)
12830 if (parser->in_unbraced_linkage_specification_p)
12831 decl_specifiers->storage_class = sc_extern;
12832 decl = start_decl (declarator, decl_specifiers,
12833 is_initialized, attributes, prefix_attributes,
12834 &pushed_scope);
12836 else if (scope)
12837 /* Enter the SCOPE. That way unqualified names appearing in the
12838 initializer will be looked up in SCOPE. */
12839 pushed_scope = push_scope (scope);
12841 /* Perform deferred access control checks, now that we know in which
12842 SCOPE the declared entity resides. */
12843 if (!member_p && decl)
12845 tree saved_current_function_decl = NULL_TREE;
12847 /* If the entity being declared is a function, pretend that we
12848 are in its scope. If it is a `friend', it may have access to
12849 things that would not otherwise be accessible. */
12850 if (TREE_CODE (decl) == FUNCTION_DECL)
12852 saved_current_function_decl = current_function_decl;
12853 current_function_decl = decl;
12856 /* Perform access checks for template parameters. */
12857 cp_parser_perform_template_parameter_access_checks (checks);
12859 /* Perform the access control checks for the declarator and the
12860 decl-specifiers. */
12861 perform_deferred_access_checks ();
12863 /* Restore the saved value. */
12864 if (TREE_CODE (decl) == FUNCTION_DECL)
12865 current_function_decl = saved_current_function_decl;
12868 /* Parse the initializer. */
12869 initializer = NULL_TREE;
12870 is_direct_init = false;
12871 is_non_constant_init = true;
12872 if (is_initialized)
12874 if (function_declarator_p (declarator))
12876 cp_token *initializer_start_token = cp_lexer_peek_token (parser->lexer);
12877 if (initialization_kind == CPP_EQ)
12878 initializer = cp_parser_pure_specifier (parser);
12879 else
12881 /* If the declaration was erroneous, we don't really
12882 know what the user intended, so just silently
12883 consume the initializer. */
12884 if (decl != error_mark_node)
12885 error ("%Hinitializer provided for function",
12886 &initializer_start_token->location);
12887 cp_parser_skip_to_closing_parenthesis (parser,
12888 /*recovering=*/true,
12889 /*or_comma=*/false,
12890 /*consume_paren=*/true);
12893 else
12894 initializer = cp_parser_initializer (parser,
12895 &is_direct_init,
12896 &is_non_constant_init);
12899 /* The old parser allows attributes to appear after a parenthesized
12900 initializer. Mark Mitchell proposed removing this functionality
12901 on the GCC mailing lists on 2002-08-13. This parser accepts the
12902 attributes -- but ignores them. */
12903 if (cp_parser_allow_gnu_extensions_p (parser)
12904 && initialization_kind == CPP_OPEN_PAREN)
12905 if (cp_parser_attributes_opt (parser))
12906 warning (OPT_Wattributes,
12907 "attributes after parenthesized initializer ignored");
12909 /* For an in-class declaration, use `grokfield' to create the
12910 declaration. */
12911 if (member_p)
12913 if (pushed_scope)
12915 pop_scope (pushed_scope);
12916 pushed_scope = false;
12918 decl = grokfield (declarator, decl_specifiers,
12919 initializer, !is_non_constant_init,
12920 /*asmspec=*/NULL_TREE,
12921 prefix_attributes);
12922 if (decl && TREE_CODE (decl) == FUNCTION_DECL)
12923 cp_parser_save_default_args (parser, decl);
12926 /* Finish processing the declaration. But, skip friend
12927 declarations. */
12928 if (!friend_p && decl && decl != error_mark_node)
12930 cp_finish_decl (decl,
12931 initializer, !is_non_constant_init,
12932 asm_specification,
12933 /* If the initializer is in parentheses, then this is
12934 a direct-initialization, which means that an
12935 `explicit' constructor is OK. Otherwise, an
12936 `explicit' constructor cannot be used. */
12937 ((is_direct_init || !is_initialized)
12938 ? 0 : LOOKUP_ONLYCONVERTING));
12940 else if ((cxx_dialect != cxx98) && friend_p
12941 && decl && TREE_CODE (decl) == FUNCTION_DECL)
12942 /* Core issue #226 (C++0x only): A default template-argument
12943 shall not be specified in a friend class template
12944 declaration. */
12945 check_default_tmpl_args (decl, current_template_parms, /*is_primary=*/1,
12946 /*is_partial=*/0, /*is_friend_decl=*/1);
12948 if (!friend_p && pushed_scope)
12949 pop_scope (pushed_scope);
12951 return decl;
12954 /* Parse a declarator.
12956 declarator:
12957 direct-declarator
12958 ptr-operator declarator
12960 abstract-declarator:
12961 ptr-operator abstract-declarator [opt]
12962 direct-abstract-declarator
12964 GNU Extensions:
12966 declarator:
12967 attributes [opt] direct-declarator
12968 attributes [opt] ptr-operator declarator
12970 abstract-declarator:
12971 attributes [opt] ptr-operator abstract-declarator [opt]
12972 attributes [opt] direct-abstract-declarator
12974 If CTOR_DTOR_OR_CONV_P is not NULL, *CTOR_DTOR_OR_CONV_P is used to
12975 detect constructor, destructor or conversion operators. It is set
12976 to -1 if the declarator is a name, and +1 if it is a
12977 function. Otherwise it is set to zero. Usually you just want to
12978 test for >0, but internally the negative value is used.
12980 (The reason for CTOR_DTOR_OR_CONV_P is that a declaration must have
12981 a decl-specifier-seq unless it declares a constructor, destructor,
12982 or conversion. It might seem that we could check this condition in
12983 semantic analysis, rather than parsing, but that makes it difficult
12984 to handle something like `f()'. We want to notice that there are
12985 no decl-specifiers, and therefore realize that this is an
12986 expression, not a declaration.)
12988 If PARENTHESIZED_P is non-NULL, *PARENTHESIZED_P is set to true iff
12989 the declarator is a direct-declarator of the form "(...)".
12991 MEMBER_P is true iff this declarator is a member-declarator. */
12993 static cp_declarator *
12994 cp_parser_declarator (cp_parser* parser,
12995 cp_parser_declarator_kind dcl_kind,
12996 int* ctor_dtor_or_conv_p,
12997 bool* parenthesized_p,
12998 bool member_p)
13000 cp_token *token;
13001 cp_declarator *declarator;
13002 enum tree_code code;
13003 cp_cv_quals cv_quals;
13004 tree class_type;
13005 tree attributes = NULL_TREE;
13007 /* Assume this is not a constructor, destructor, or type-conversion
13008 operator. */
13009 if (ctor_dtor_or_conv_p)
13010 *ctor_dtor_or_conv_p = 0;
13012 if (cp_parser_allow_gnu_extensions_p (parser))
13013 attributes = cp_parser_attributes_opt (parser);
13015 /* Peek at the next token. */
13016 token = cp_lexer_peek_token (parser->lexer);
13018 /* Check for the ptr-operator production. */
13019 cp_parser_parse_tentatively (parser);
13020 /* Parse the ptr-operator. */
13021 code = cp_parser_ptr_operator (parser,
13022 &class_type,
13023 &cv_quals);
13024 /* If that worked, then we have a ptr-operator. */
13025 if (cp_parser_parse_definitely (parser))
13027 /* If a ptr-operator was found, then this declarator was not
13028 parenthesized. */
13029 if (parenthesized_p)
13030 *parenthesized_p = true;
13031 /* The dependent declarator is optional if we are parsing an
13032 abstract-declarator. */
13033 if (dcl_kind != CP_PARSER_DECLARATOR_NAMED)
13034 cp_parser_parse_tentatively (parser);
13036 /* Parse the dependent declarator. */
13037 declarator = cp_parser_declarator (parser, dcl_kind,
13038 /*ctor_dtor_or_conv_p=*/NULL,
13039 /*parenthesized_p=*/NULL,
13040 /*member_p=*/false);
13042 /* If we are parsing an abstract-declarator, we must handle the
13043 case where the dependent declarator is absent. */
13044 if (dcl_kind != CP_PARSER_DECLARATOR_NAMED
13045 && !cp_parser_parse_definitely (parser))
13046 declarator = NULL;
13048 declarator = cp_parser_make_indirect_declarator
13049 (code, class_type, cv_quals, declarator);
13051 /* Everything else is a direct-declarator. */
13052 else
13054 if (parenthesized_p)
13055 *parenthesized_p = cp_lexer_next_token_is (parser->lexer,
13056 CPP_OPEN_PAREN);
13057 declarator = cp_parser_direct_declarator (parser, dcl_kind,
13058 ctor_dtor_or_conv_p,
13059 member_p);
13062 if (attributes && declarator && declarator != cp_error_declarator)
13063 declarator->attributes = attributes;
13065 return declarator;
13068 /* Parse a direct-declarator or direct-abstract-declarator.
13070 direct-declarator:
13071 declarator-id
13072 direct-declarator ( parameter-declaration-clause )
13073 cv-qualifier-seq [opt]
13074 exception-specification [opt]
13075 direct-declarator [ constant-expression [opt] ]
13076 ( declarator )
13078 direct-abstract-declarator:
13079 direct-abstract-declarator [opt]
13080 ( parameter-declaration-clause )
13081 cv-qualifier-seq [opt]
13082 exception-specification [opt]
13083 direct-abstract-declarator [opt] [ constant-expression [opt] ]
13084 ( abstract-declarator )
13086 Returns a representation of the declarator. DCL_KIND is
13087 CP_PARSER_DECLARATOR_ABSTRACT, if we are parsing a
13088 direct-abstract-declarator. It is CP_PARSER_DECLARATOR_NAMED, if
13089 we are parsing a direct-declarator. It is
13090 CP_PARSER_DECLARATOR_EITHER, if we can accept either - in the case
13091 of ambiguity we prefer an abstract declarator, as per
13092 [dcl.ambig.res]. CTOR_DTOR_OR_CONV_P and MEMBER_P are as for
13093 cp_parser_declarator. */
13095 static cp_declarator *
13096 cp_parser_direct_declarator (cp_parser* parser,
13097 cp_parser_declarator_kind dcl_kind,
13098 int* ctor_dtor_or_conv_p,
13099 bool member_p)
13101 cp_token *token;
13102 cp_declarator *declarator = NULL;
13103 tree scope = NULL_TREE;
13104 bool saved_default_arg_ok_p = parser->default_arg_ok_p;
13105 bool saved_in_declarator_p = parser->in_declarator_p;
13106 bool first = true;
13107 tree pushed_scope = NULL_TREE;
13109 while (true)
13111 /* Peek at the next token. */
13112 token = cp_lexer_peek_token (parser->lexer);
13113 if (token->type == CPP_OPEN_PAREN)
13115 /* This is either a parameter-declaration-clause, or a
13116 parenthesized declarator. When we know we are parsing a
13117 named declarator, it must be a parenthesized declarator
13118 if FIRST is true. For instance, `(int)' is a
13119 parameter-declaration-clause, with an omitted
13120 direct-abstract-declarator. But `((*))', is a
13121 parenthesized abstract declarator. Finally, when T is a
13122 template parameter `(T)' is a
13123 parameter-declaration-clause, and not a parenthesized
13124 named declarator.
13126 We first try and parse a parameter-declaration-clause,
13127 and then try a nested declarator (if FIRST is true).
13129 It is not an error for it not to be a
13130 parameter-declaration-clause, even when FIRST is
13131 false. Consider,
13133 int i (int);
13134 int i (3);
13136 The first is the declaration of a function while the
13137 second is the definition of a variable, including its
13138 initializer.
13140 Having seen only the parenthesis, we cannot know which of
13141 these two alternatives should be selected. Even more
13142 complex are examples like:
13144 int i (int (a));
13145 int i (int (3));
13147 The former is a function-declaration; the latter is a
13148 variable initialization.
13150 Thus again, we try a parameter-declaration-clause, and if
13151 that fails, we back out and return. */
13153 if (!first || dcl_kind != CP_PARSER_DECLARATOR_NAMED)
13155 tree params;
13156 unsigned saved_num_template_parameter_lists;
13157 bool is_declarator = false;
13158 tree t;
13160 /* In a member-declarator, the only valid interpretation
13161 of a parenthesis is the start of a
13162 parameter-declaration-clause. (It is invalid to
13163 initialize a static data member with a parenthesized
13164 initializer; only the "=" form of initialization is
13165 permitted.) */
13166 if (!member_p)
13167 cp_parser_parse_tentatively (parser);
13169 /* Consume the `('. */
13170 cp_lexer_consume_token (parser->lexer);
13171 if (first)
13173 /* If this is going to be an abstract declarator, we're
13174 in a declarator and we can't have default args. */
13175 parser->default_arg_ok_p = false;
13176 parser->in_declarator_p = true;
13179 /* Inside the function parameter list, surrounding
13180 template-parameter-lists do not apply. */
13181 saved_num_template_parameter_lists
13182 = parser->num_template_parameter_lists;
13183 parser->num_template_parameter_lists = 0;
13185 begin_scope (sk_function_parms, NULL_TREE);
13187 /* Parse the parameter-declaration-clause. */
13188 params = cp_parser_parameter_declaration_clause (parser);
13190 parser->num_template_parameter_lists
13191 = saved_num_template_parameter_lists;
13193 /* If all went well, parse the cv-qualifier-seq and the
13194 exception-specification. */
13195 if (member_p || cp_parser_parse_definitely (parser))
13197 cp_cv_quals cv_quals;
13198 tree exception_specification;
13199 tree late_return;
13201 is_declarator = true;
13203 if (ctor_dtor_or_conv_p)
13204 *ctor_dtor_or_conv_p = *ctor_dtor_or_conv_p < 0;
13205 first = false;
13206 /* Consume the `)'. */
13207 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
13209 /* Parse the cv-qualifier-seq. */
13210 cv_quals = cp_parser_cv_qualifier_seq_opt (parser);
13211 /* And the exception-specification. */
13212 exception_specification
13213 = cp_parser_exception_specification_opt (parser);
13215 late_return
13216 = cp_parser_late_return_type_opt (parser);
13218 /* Create the function-declarator. */
13219 declarator = make_call_declarator (declarator,
13220 params,
13221 cv_quals,
13222 exception_specification,
13223 late_return);
13224 /* Any subsequent parameter lists are to do with
13225 return type, so are not those of the declared
13226 function. */
13227 parser->default_arg_ok_p = false;
13230 /* Remove the function parms from scope. */
13231 for (t = current_binding_level->names; t; t = TREE_CHAIN (t))
13232 pop_binding (DECL_NAME (t), t);
13233 leave_scope();
13235 if (is_declarator)
13236 /* Repeat the main loop. */
13237 continue;
13240 /* If this is the first, we can try a parenthesized
13241 declarator. */
13242 if (first)
13244 bool saved_in_type_id_in_expr_p;
13246 parser->default_arg_ok_p = saved_default_arg_ok_p;
13247 parser->in_declarator_p = saved_in_declarator_p;
13249 /* Consume the `('. */
13250 cp_lexer_consume_token (parser->lexer);
13251 /* Parse the nested declarator. */
13252 saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
13253 parser->in_type_id_in_expr_p = true;
13254 declarator
13255 = cp_parser_declarator (parser, dcl_kind, ctor_dtor_or_conv_p,
13256 /*parenthesized_p=*/NULL,
13257 member_p);
13258 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
13259 first = false;
13260 /* Expect a `)'. */
13261 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>"))
13262 declarator = cp_error_declarator;
13263 if (declarator == cp_error_declarator)
13264 break;
13266 goto handle_declarator;
13268 /* Otherwise, we must be done. */
13269 else
13270 break;
13272 else if ((!first || dcl_kind != CP_PARSER_DECLARATOR_NAMED)
13273 && token->type == CPP_OPEN_SQUARE)
13275 /* Parse an array-declarator. */
13276 tree bounds;
13278 if (ctor_dtor_or_conv_p)
13279 *ctor_dtor_or_conv_p = 0;
13281 first = false;
13282 parser->default_arg_ok_p = false;
13283 parser->in_declarator_p = true;
13284 /* Consume the `['. */
13285 cp_lexer_consume_token (parser->lexer);
13286 /* Peek at the next token. */
13287 token = cp_lexer_peek_token (parser->lexer);
13288 /* If the next token is `]', then there is no
13289 constant-expression. */
13290 if (token->type != CPP_CLOSE_SQUARE)
13292 bool non_constant_p;
13294 bounds
13295 = cp_parser_constant_expression (parser,
13296 /*allow_non_constant=*/true,
13297 &non_constant_p);
13298 if (!non_constant_p)
13299 bounds = fold_non_dependent_expr (bounds);
13300 /* Normally, the array bound must be an integral constant
13301 expression. However, as an extension, we allow VLAs
13302 in function scopes. */
13303 else if (!parser->in_function_body)
13305 error ("%Harray bound is not an integer constant",
13306 &token->location);
13307 bounds = error_mark_node;
13309 else if (processing_template_decl && !error_operand_p (bounds))
13311 /* Remember this wasn't a constant-expression. */
13312 bounds = build_nop (TREE_TYPE (bounds), bounds);
13313 TREE_SIDE_EFFECTS (bounds) = 1;
13316 else
13317 bounds = NULL_TREE;
13318 /* Look for the closing `]'. */
13319 if (!cp_parser_require (parser, CPP_CLOSE_SQUARE, "%<]%>"))
13321 declarator = cp_error_declarator;
13322 break;
13325 declarator = make_array_declarator (declarator, bounds);
13327 else if (first && dcl_kind != CP_PARSER_DECLARATOR_ABSTRACT)
13329 tree qualifying_scope;
13330 tree unqualified_name;
13331 special_function_kind sfk;
13332 bool abstract_ok;
13333 bool pack_expansion_p = false;
13334 cp_token *declarator_id_start_token;
13336 /* Parse a declarator-id */
13337 abstract_ok = (dcl_kind == CP_PARSER_DECLARATOR_EITHER);
13338 if (abstract_ok)
13340 cp_parser_parse_tentatively (parser);
13342 /* If we see an ellipsis, we should be looking at a
13343 parameter pack. */
13344 if (token->type == CPP_ELLIPSIS)
13346 /* Consume the `...' */
13347 cp_lexer_consume_token (parser->lexer);
13349 pack_expansion_p = true;
13353 declarator_id_start_token = cp_lexer_peek_token (parser->lexer);
13354 unqualified_name
13355 = cp_parser_declarator_id (parser, /*optional_p=*/abstract_ok);
13356 qualifying_scope = parser->scope;
13357 if (abstract_ok)
13359 bool okay = false;
13361 if (!unqualified_name && pack_expansion_p)
13363 /* Check whether an error occurred. */
13364 okay = !cp_parser_error_occurred (parser);
13366 /* We already consumed the ellipsis to mark a
13367 parameter pack, but we have no way to report it,
13368 so abort the tentative parse. We will be exiting
13369 immediately anyway. */
13370 cp_parser_abort_tentative_parse (parser);
13372 else
13373 okay = cp_parser_parse_definitely (parser);
13375 if (!okay)
13376 unqualified_name = error_mark_node;
13377 else if (unqualified_name
13378 && (qualifying_scope
13379 || (TREE_CODE (unqualified_name)
13380 != IDENTIFIER_NODE)))
13382 cp_parser_error (parser, "expected unqualified-id");
13383 unqualified_name = error_mark_node;
13387 if (!unqualified_name)
13388 return NULL;
13389 if (unqualified_name == error_mark_node)
13391 declarator = cp_error_declarator;
13392 pack_expansion_p = false;
13393 declarator->parameter_pack_p = false;
13394 break;
13397 if (qualifying_scope && at_namespace_scope_p ()
13398 && TREE_CODE (qualifying_scope) == TYPENAME_TYPE)
13400 /* In the declaration of a member of a template class
13401 outside of the class itself, the SCOPE will sometimes
13402 be a TYPENAME_TYPE. For example, given:
13404 template <typename T>
13405 int S<T>::R::i = 3;
13407 the SCOPE will be a TYPENAME_TYPE for `S<T>::R'. In
13408 this context, we must resolve S<T>::R to an ordinary
13409 type, rather than a typename type.
13411 The reason we normally avoid resolving TYPENAME_TYPEs
13412 is that a specialization of `S' might render
13413 `S<T>::R' not a type. However, if `S' is
13414 specialized, then this `i' will not be used, so there
13415 is no harm in resolving the types here. */
13416 tree type;
13418 /* Resolve the TYPENAME_TYPE. */
13419 type = resolve_typename_type (qualifying_scope,
13420 /*only_current_p=*/false);
13421 /* If that failed, the declarator is invalid. */
13422 if (TREE_CODE (type) == TYPENAME_TYPE)
13423 error ("%H%<%T::%E%> is not a type",
13424 &declarator_id_start_token->location,
13425 TYPE_CONTEXT (qualifying_scope),
13426 TYPE_IDENTIFIER (qualifying_scope));
13427 qualifying_scope = type;
13430 sfk = sfk_none;
13432 if (unqualified_name)
13434 tree class_type;
13436 if (qualifying_scope
13437 && CLASS_TYPE_P (qualifying_scope))
13438 class_type = qualifying_scope;
13439 else
13440 class_type = current_class_type;
13442 if (TREE_CODE (unqualified_name) == TYPE_DECL)
13444 tree name_type = TREE_TYPE (unqualified_name);
13445 if (class_type && same_type_p (name_type, class_type))
13447 if (qualifying_scope
13448 && CLASSTYPE_USE_TEMPLATE (name_type))
13450 error ("%Hinvalid use of constructor as a template",
13451 &declarator_id_start_token->location);
13452 inform (input_location, "use %<%T::%D%> instead of %<%T::%D%> to "
13453 "name the constructor in a qualified name",
13454 class_type,
13455 DECL_NAME (TYPE_TI_TEMPLATE (class_type)),
13456 class_type, name_type);
13457 declarator = cp_error_declarator;
13458 break;
13460 else
13461 unqualified_name = constructor_name (class_type);
13463 else
13465 /* We do not attempt to print the declarator
13466 here because we do not have enough
13467 information about its original syntactic
13468 form. */
13469 cp_parser_error (parser, "invalid declarator");
13470 declarator = cp_error_declarator;
13471 break;
13475 if (class_type)
13477 if (TREE_CODE (unqualified_name) == BIT_NOT_EXPR)
13478 sfk = sfk_destructor;
13479 else if (IDENTIFIER_TYPENAME_P (unqualified_name))
13480 sfk = sfk_conversion;
13481 else if (/* There's no way to declare a constructor
13482 for an anonymous type, even if the type
13483 got a name for linkage purposes. */
13484 !TYPE_WAS_ANONYMOUS (class_type)
13485 && constructor_name_p (unqualified_name,
13486 class_type))
13488 unqualified_name = constructor_name (class_type);
13489 sfk = sfk_constructor;
13492 if (ctor_dtor_or_conv_p && sfk != sfk_none)
13493 *ctor_dtor_or_conv_p = -1;
13496 declarator = make_id_declarator (qualifying_scope,
13497 unqualified_name,
13498 sfk);
13499 declarator->id_loc = token->location;
13500 declarator->parameter_pack_p = pack_expansion_p;
13502 if (pack_expansion_p)
13503 maybe_warn_variadic_templates ();
13505 handle_declarator:;
13506 scope = get_scope_of_declarator (declarator);
13507 if (scope)
13508 /* Any names that appear after the declarator-id for a
13509 member are looked up in the containing scope. */
13510 pushed_scope = push_scope (scope);
13511 parser->in_declarator_p = true;
13512 if ((ctor_dtor_or_conv_p && *ctor_dtor_or_conv_p)
13513 || (declarator && declarator->kind == cdk_id))
13514 /* Default args are only allowed on function
13515 declarations. */
13516 parser->default_arg_ok_p = saved_default_arg_ok_p;
13517 else
13518 parser->default_arg_ok_p = false;
13520 first = false;
13522 /* We're done. */
13523 else
13524 break;
13527 /* For an abstract declarator, we might wind up with nothing at this
13528 point. That's an error; the declarator is not optional. */
13529 if (!declarator)
13530 cp_parser_error (parser, "expected declarator");
13532 /* If we entered a scope, we must exit it now. */
13533 if (pushed_scope)
13534 pop_scope (pushed_scope);
13536 parser->default_arg_ok_p = saved_default_arg_ok_p;
13537 parser->in_declarator_p = saved_in_declarator_p;
13539 return declarator;
13542 /* Parse a ptr-operator.
13544 ptr-operator:
13545 * cv-qualifier-seq [opt]
13547 :: [opt] nested-name-specifier * cv-qualifier-seq [opt]
13549 GNU Extension:
13551 ptr-operator:
13552 & cv-qualifier-seq [opt]
13554 Returns INDIRECT_REF if a pointer, or pointer-to-member, was used.
13555 Returns ADDR_EXPR if a reference was used, or NON_LVALUE_EXPR for
13556 an rvalue reference. In the case of a pointer-to-member, *TYPE is
13557 filled in with the TYPE containing the member. *CV_QUALS is
13558 filled in with the cv-qualifier-seq, or TYPE_UNQUALIFIED, if there
13559 are no cv-qualifiers. Returns ERROR_MARK if an error occurred.
13560 Note that the tree codes returned by this function have nothing
13561 to do with the types of trees that will be eventually be created
13562 to represent the pointer or reference type being parsed. They are
13563 just constants with suggestive names. */
13564 static enum tree_code
13565 cp_parser_ptr_operator (cp_parser* parser,
13566 tree* type,
13567 cp_cv_quals *cv_quals)
13569 enum tree_code code = ERROR_MARK;
13570 cp_token *token;
13572 /* Assume that it's not a pointer-to-member. */
13573 *type = NULL_TREE;
13574 /* And that there are no cv-qualifiers. */
13575 *cv_quals = TYPE_UNQUALIFIED;
13577 /* Peek at the next token. */
13578 token = cp_lexer_peek_token (parser->lexer);
13580 /* If it's a `*', `&' or `&&' we have a pointer or reference. */
13581 if (token->type == CPP_MULT)
13582 code = INDIRECT_REF;
13583 else if (token->type == CPP_AND)
13584 code = ADDR_EXPR;
13585 else if ((cxx_dialect != cxx98) &&
13586 token->type == CPP_AND_AND) /* C++0x only */
13587 code = NON_LVALUE_EXPR;
13589 if (code != ERROR_MARK)
13591 /* Consume the `*', `&' or `&&'. */
13592 cp_lexer_consume_token (parser->lexer);
13594 /* A `*' can be followed by a cv-qualifier-seq, and so can a
13595 `&', if we are allowing GNU extensions. (The only qualifier
13596 that can legally appear after `&' is `restrict', but that is
13597 enforced during semantic analysis. */
13598 if (code == INDIRECT_REF
13599 || cp_parser_allow_gnu_extensions_p (parser))
13600 *cv_quals = cp_parser_cv_qualifier_seq_opt (parser);
13602 else
13604 /* Try the pointer-to-member case. */
13605 cp_parser_parse_tentatively (parser);
13606 /* Look for the optional `::' operator. */
13607 cp_parser_global_scope_opt (parser,
13608 /*current_scope_valid_p=*/false);
13609 /* Look for the nested-name specifier. */
13610 token = cp_lexer_peek_token (parser->lexer);
13611 cp_parser_nested_name_specifier (parser,
13612 /*typename_keyword_p=*/false,
13613 /*check_dependency_p=*/true,
13614 /*type_p=*/false,
13615 /*is_declaration=*/false);
13616 /* If we found it, and the next token is a `*', then we are
13617 indeed looking at a pointer-to-member operator. */
13618 if (!cp_parser_error_occurred (parser)
13619 && cp_parser_require (parser, CPP_MULT, "%<*%>"))
13621 /* Indicate that the `*' operator was used. */
13622 code = INDIRECT_REF;
13624 if (TREE_CODE (parser->scope) == NAMESPACE_DECL)
13625 error ("%H%qD is a namespace", &token->location, parser->scope);
13626 else
13628 /* The type of which the member is a member is given by the
13629 current SCOPE. */
13630 *type = parser->scope;
13631 /* The next name will not be qualified. */
13632 parser->scope = NULL_TREE;
13633 parser->qualifying_scope = NULL_TREE;
13634 parser->object_scope = NULL_TREE;
13635 /* Look for the optional cv-qualifier-seq. */
13636 *cv_quals = cp_parser_cv_qualifier_seq_opt (parser);
13639 /* If that didn't work we don't have a ptr-operator. */
13640 if (!cp_parser_parse_definitely (parser))
13641 cp_parser_error (parser, "expected ptr-operator");
13644 return code;
13647 /* Parse an (optional) cv-qualifier-seq.
13649 cv-qualifier-seq:
13650 cv-qualifier cv-qualifier-seq [opt]
13652 cv-qualifier:
13653 const
13654 volatile
13656 GNU Extension:
13658 cv-qualifier:
13659 __restrict__
13661 Returns a bitmask representing the cv-qualifiers. */
13663 static cp_cv_quals
13664 cp_parser_cv_qualifier_seq_opt (cp_parser* parser)
13666 cp_cv_quals cv_quals = TYPE_UNQUALIFIED;
13668 while (true)
13670 cp_token *token;
13671 cp_cv_quals cv_qualifier;
13673 /* Peek at the next token. */
13674 token = cp_lexer_peek_token (parser->lexer);
13675 /* See if it's a cv-qualifier. */
13676 switch (token->keyword)
13678 case RID_CONST:
13679 cv_qualifier = TYPE_QUAL_CONST;
13680 break;
13682 case RID_VOLATILE:
13683 cv_qualifier = TYPE_QUAL_VOLATILE;
13684 break;
13686 case RID_RESTRICT:
13687 cv_qualifier = TYPE_QUAL_RESTRICT;
13688 break;
13690 default:
13691 cv_qualifier = TYPE_UNQUALIFIED;
13692 break;
13695 if (!cv_qualifier)
13696 break;
13698 if (cv_quals & cv_qualifier)
13700 error ("%Hduplicate cv-qualifier", &token->location);
13701 cp_lexer_purge_token (parser->lexer);
13703 else
13705 cp_lexer_consume_token (parser->lexer);
13706 cv_quals |= cv_qualifier;
13710 return cv_quals;
13713 /* Parse a late-specified return type, if any. This is not a separate
13714 non-terminal, but part of a function declarator, which looks like
13716 -> type-id
13718 Returns the type indicated by the type-id. */
13720 static tree
13721 cp_parser_late_return_type_opt (cp_parser* parser)
13723 cp_token *token;
13725 /* Peek at the next token. */
13726 token = cp_lexer_peek_token (parser->lexer);
13727 /* A late-specified return type is indicated by an initial '->'. */
13728 if (token->type != CPP_DEREF)
13729 return NULL_TREE;
13731 /* Consume the ->. */
13732 cp_lexer_consume_token (parser->lexer);
13734 return cp_parser_type_id (parser);
13737 /* Parse a declarator-id.
13739 declarator-id:
13740 id-expression
13741 :: [opt] nested-name-specifier [opt] type-name
13743 In the `id-expression' case, the value returned is as for
13744 cp_parser_id_expression if the id-expression was an unqualified-id.
13745 If the id-expression was a qualified-id, then a SCOPE_REF is
13746 returned. The first operand is the scope (either a NAMESPACE_DECL
13747 or TREE_TYPE), but the second is still just a representation of an
13748 unqualified-id. */
13750 static tree
13751 cp_parser_declarator_id (cp_parser* parser, bool optional_p)
13753 tree id;
13754 /* The expression must be an id-expression. Assume that qualified
13755 names are the names of types so that:
13757 template <class T>
13758 int S<T>::R::i = 3;
13760 will work; we must treat `S<T>::R' as the name of a type.
13761 Similarly, assume that qualified names are templates, where
13762 required, so that:
13764 template <class T>
13765 int S<T>::R<T>::i = 3;
13767 will work, too. */
13768 id = cp_parser_id_expression (parser,
13769 /*template_keyword_p=*/false,
13770 /*check_dependency_p=*/false,
13771 /*template_p=*/NULL,
13772 /*declarator_p=*/true,
13773 optional_p);
13774 if (id && BASELINK_P (id))
13775 id = BASELINK_FUNCTIONS (id);
13776 return id;
13779 /* Parse a type-id.
13781 type-id:
13782 type-specifier-seq abstract-declarator [opt]
13784 Returns the TYPE specified. */
13786 static tree
13787 cp_parser_type_id_1 (cp_parser* parser, bool is_template_arg)
13789 cp_decl_specifier_seq type_specifier_seq;
13790 cp_declarator *abstract_declarator;
13792 /* Parse the type-specifier-seq. */
13793 cp_parser_type_specifier_seq (parser, /*is_condition=*/false,
13794 &type_specifier_seq);
13795 if (type_specifier_seq.type == error_mark_node)
13796 return error_mark_node;
13798 /* There might or might not be an abstract declarator. */
13799 cp_parser_parse_tentatively (parser);
13800 /* Look for the declarator. */
13801 abstract_declarator
13802 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_ABSTRACT, NULL,
13803 /*parenthesized_p=*/NULL,
13804 /*member_p=*/false);
13805 /* Check to see if there really was a declarator. */
13806 if (!cp_parser_parse_definitely (parser))
13807 abstract_declarator = NULL;
13809 if (type_specifier_seq.type
13810 && type_uses_auto (type_specifier_seq.type))
13812 /* A type-id with type 'auto' is only ok if the abstract declarator
13813 is a function declarator with a late-specified return type. */
13814 if (abstract_declarator
13815 && abstract_declarator->kind == cdk_function
13816 && abstract_declarator->u.function.late_return_type)
13817 /* OK */;
13818 else
13820 error ("invalid use of %<auto%>");
13821 return error_mark_node;
13825 return groktypename (&type_specifier_seq, abstract_declarator,
13826 is_template_arg);
13829 static tree cp_parser_type_id (cp_parser *parser)
13831 return cp_parser_type_id_1 (parser, false);
13834 static tree cp_parser_template_type_arg (cp_parser *parser)
13836 return cp_parser_type_id_1 (parser, true);
13839 /* Parse a type-specifier-seq.
13841 type-specifier-seq:
13842 type-specifier type-specifier-seq [opt]
13844 GNU extension:
13846 type-specifier-seq:
13847 attributes type-specifier-seq [opt]
13849 If IS_CONDITION is true, we are at the start of a "condition",
13850 e.g., we've just seen "if (".
13852 Sets *TYPE_SPECIFIER_SEQ to represent the sequence. */
13854 static void
13855 cp_parser_type_specifier_seq (cp_parser* parser,
13856 bool is_condition,
13857 cp_decl_specifier_seq *type_specifier_seq)
13859 bool seen_type_specifier = false;
13860 cp_parser_flags flags = CP_PARSER_FLAGS_OPTIONAL;
13861 cp_token *start_token = NULL;
13863 /* Clear the TYPE_SPECIFIER_SEQ. */
13864 clear_decl_specs (type_specifier_seq);
13866 /* Parse the type-specifiers and attributes. */
13867 while (true)
13869 tree type_specifier;
13870 bool is_cv_qualifier;
13872 /* Check for attributes first. */
13873 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_ATTRIBUTE))
13875 type_specifier_seq->attributes =
13876 chainon (type_specifier_seq->attributes,
13877 cp_parser_attributes_opt (parser));
13878 continue;
13881 /* record the token of the beginning of the type specifier seq,
13882 for error reporting purposes*/
13883 if (!start_token)
13884 start_token = cp_lexer_peek_token (parser->lexer);
13886 /* Look for the type-specifier. */
13887 type_specifier = cp_parser_type_specifier (parser,
13888 flags,
13889 type_specifier_seq,
13890 /*is_declaration=*/false,
13891 NULL,
13892 &is_cv_qualifier);
13893 if (!type_specifier)
13895 /* If the first type-specifier could not be found, this is not a
13896 type-specifier-seq at all. */
13897 if (!seen_type_specifier)
13899 cp_parser_error (parser, "expected type-specifier");
13900 type_specifier_seq->type = error_mark_node;
13901 return;
13903 /* If subsequent type-specifiers could not be found, the
13904 type-specifier-seq is complete. */
13905 break;
13908 seen_type_specifier = true;
13909 /* The standard says that a condition can be:
13911 type-specifier-seq declarator = assignment-expression
13913 However, given:
13915 struct S {};
13916 if (int S = ...)
13918 we should treat the "S" as a declarator, not as a
13919 type-specifier. The standard doesn't say that explicitly for
13920 type-specifier-seq, but it does say that for
13921 decl-specifier-seq in an ordinary declaration. Perhaps it
13922 would be clearer just to allow a decl-specifier-seq here, and
13923 then add a semantic restriction that if any decl-specifiers
13924 that are not type-specifiers appear, the program is invalid. */
13925 if (is_condition && !is_cv_qualifier)
13926 flags |= CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES;
13929 cp_parser_check_decl_spec (type_specifier_seq, start_token->location);
13932 /* Parse a parameter-declaration-clause.
13934 parameter-declaration-clause:
13935 parameter-declaration-list [opt] ... [opt]
13936 parameter-declaration-list , ...
13938 Returns a representation for the parameter declarations. A return
13939 value of NULL indicates a parameter-declaration-clause consisting
13940 only of an ellipsis. */
13942 static tree
13943 cp_parser_parameter_declaration_clause (cp_parser* parser)
13945 tree parameters;
13946 cp_token *token;
13947 bool ellipsis_p;
13948 bool is_error;
13950 /* Peek at the next token. */
13951 token = cp_lexer_peek_token (parser->lexer);
13952 /* Check for trivial parameter-declaration-clauses. */
13953 if (token->type == CPP_ELLIPSIS)
13955 /* Consume the `...' token. */
13956 cp_lexer_consume_token (parser->lexer);
13957 return NULL_TREE;
13959 else if (token->type == CPP_CLOSE_PAREN)
13960 /* There are no parameters. */
13962 #ifndef NO_IMPLICIT_EXTERN_C
13963 if (in_system_header && current_class_type == NULL
13964 && current_lang_name == lang_name_c)
13965 return NULL_TREE;
13966 else
13967 #endif
13968 return void_list_node;
13970 /* Check for `(void)', too, which is a special case. */
13971 else if (token->keyword == RID_VOID
13972 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
13973 == CPP_CLOSE_PAREN))
13975 /* Consume the `void' token. */
13976 cp_lexer_consume_token (parser->lexer);
13977 /* There are no parameters. */
13978 return void_list_node;
13981 /* Parse the parameter-declaration-list. */
13982 parameters = cp_parser_parameter_declaration_list (parser, &is_error);
13983 /* If a parse error occurred while parsing the
13984 parameter-declaration-list, then the entire
13985 parameter-declaration-clause is erroneous. */
13986 if (is_error)
13987 return NULL;
13989 /* Peek at the next token. */
13990 token = cp_lexer_peek_token (parser->lexer);
13991 /* If it's a `,', the clause should terminate with an ellipsis. */
13992 if (token->type == CPP_COMMA)
13994 /* Consume the `,'. */
13995 cp_lexer_consume_token (parser->lexer);
13996 /* Expect an ellipsis. */
13997 ellipsis_p
13998 = (cp_parser_require (parser, CPP_ELLIPSIS, "%<...%>") != NULL);
14000 /* It might also be `...' if the optional trailing `,' was
14001 omitted. */
14002 else if (token->type == CPP_ELLIPSIS)
14004 /* Consume the `...' token. */
14005 cp_lexer_consume_token (parser->lexer);
14006 /* And remember that we saw it. */
14007 ellipsis_p = true;
14009 else
14010 ellipsis_p = false;
14012 /* Finish the parameter list. */
14013 if (!ellipsis_p)
14014 parameters = chainon (parameters, void_list_node);
14016 return parameters;
14019 /* Parse a parameter-declaration-list.
14021 parameter-declaration-list:
14022 parameter-declaration
14023 parameter-declaration-list , parameter-declaration
14025 Returns a representation of the parameter-declaration-list, as for
14026 cp_parser_parameter_declaration_clause. However, the
14027 `void_list_node' is never appended to the list. Upon return,
14028 *IS_ERROR will be true iff an error occurred. */
14030 static tree
14031 cp_parser_parameter_declaration_list (cp_parser* parser, bool *is_error)
14033 tree parameters = NULL_TREE;
14034 tree *tail = &parameters;
14035 bool saved_in_unbraced_linkage_specification_p;
14037 /* Assume all will go well. */
14038 *is_error = false;
14039 /* The special considerations that apply to a function within an
14040 unbraced linkage specifications do not apply to the parameters
14041 to the function. */
14042 saved_in_unbraced_linkage_specification_p
14043 = parser->in_unbraced_linkage_specification_p;
14044 parser->in_unbraced_linkage_specification_p = false;
14046 /* Look for more parameters. */
14047 while (true)
14049 cp_parameter_declarator *parameter;
14050 tree decl = error_mark_node;
14051 bool parenthesized_p;
14052 /* Parse the parameter. */
14053 parameter
14054 = cp_parser_parameter_declaration (parser,
14055 /*template_parm_p=*/false,
14056 &parenthesized_p);
14058 /* We don't know yet if the enclosing context is deprecated, so wait
14059 and warn in grokparms if appropriate. */
14060 deprecated_state = DEPRECATED_SUPPRESS;
14062 if (parameter)
14063 decl = grokdeclarator (parameter->declarator,
14064 &parameter->decl_specifiers,
14065 PARM,
14066 parameter->default_argument != NULL_TREE,
14067 &parameter->decl_specifiers.attributes);
14069 deprecated_state = DEPRECATED_NORMAL;
14071 /* If a parse error occurred parsing the parameter declaration,
14072 then the entire parameter-declaration-list is erroneous. */
14073 if (decl == error_mark_node)
14075 *is_error = true;
14076 parameters = error_mark_node;
14077 break;
14080 if (parameter->decl_specifiers.attributes)
14081 cplus_decl_attributes (&decl,
14082 parameter->decl_specifiers.attributes,
14084 if (DECL_NAME (decl))
14085 decl = pushdecl (decl);
14087 /* Add the new parameter to the list. */
14088 *tail = build_tree_list (parameter->default_argument, decl);
14089 tail = &TREE_CHAIN (*tail);
14091 /* Peek at the next token. */
14092 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN)
14093 || cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS)
14094 /* These are for Objective-C++ */
14095 || cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
14096 || cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
14097 /* The parameter-declaration-list is complete. */
14098 break;
14099 else if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
14101 cp_token *token;
14103 /* Peek at the next token. */
14104 token = cp_lexer_peek_nth_token (parser->lexer, 2);
14105 /* If it's an ellipsis, then the list is complete. */
14106 if (token->type == CPP_ELLIPSIS)
14107 break;
14108 /* Otherwise, there must be more parameters. Consume the
14109 `,'. */
14110 cp_lexer_consume_token (parser->lexer);
14111 /* When parsing something like:
14113 int i(float f, double d)
14115 we can tell after seeing the declaration for "f" that we
14116 are not looking at an initialization of a variable "i",
14117 but rather at the declaration of a function "i".
14119 Due to the fact that the parsing of template arguments
14120 (as specified to a template-id) requires backtracking we
14121 cannot use this technique when inside a template argument
14122 list. */
14123 if (!parser->in_template_argument_list_p
14124 && !parser->in_type_id_in_expr_p
14125 && cp_parser_uncommitted_to_tentative_parse_p (parser)
14126 /* However, a parameter-declaration of the form
14127 "foat(f)" (which is a valid declaration of a
14128 parameter "f") can also be interpreted as an
14129 expression (the conversion of "f" to "float"). */
14130 && !parenthesized_p)
14131 cp_parser_commit_to_tentative_parse (parser);
14133 else
14135 cp_parser_error (parser, "expected %<,%> or %<...%>");
14136 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
14137 cp_parser_skip_to_closing_parenthesis (parser,
14138 /*recovering=*/true,
14139 /*or_comma=*/false,
14140 /*consume_paren=*/false);
14141 break;
14145 parser->in_unbraced_linkage_specification_p
14146 = saved_in_unbraced_linkage_specification_p;
14148 return parameters;
14151 /* Parse a parameter declaration.
14153 parameter-declaration:
14154 decl-specifier-seq ... [opt] declarator
14155 decl-specifier-seq declarator = assignment-expression
14156 decl-specifier-seq ... [opt] abstract-declarator [opt]
14157 decl-specifier-seq abstract-declarator [opt] = assignment-expression
14159 If TEMPLATE_PARM_P is TRUE, then this parameter-declaration
14160 declares a template parameter. (In that case, a non-nested `>'
14161 token encountered during the parsing of the assignment-expression
14162 is not interpreted as a greater-than operator.)
14164 Returns a representation of the parameter, or NULL if an error
14165 occurs. If PARENTHESIZED_P is non-NULL, *PARENTHESIZED_P is set to
14166 true iff the declarator is of the form "(p)". */
14168 static cp_parameter_declarator *
14169 cp_parser_parameter_declaration (cp_parser *parser,
14170 bool template_parm_p,
14171 bool *parenthesized_p)
14173 int declares_class_or_enum;
14174 bool greater_than_is_operator_p;
14175 cp_decl_specifier_seq decl_specifiers;
14176 cp_declarator *declarator;
14177 tree default_argument;
14178 cp_token *token = NULL, *declarator_token_start = NULL;
14179 const char *saved_message;
14181 /* In a template parameter, `>' is not an operator.
14183 [temp.param]
14185 When parsing a default template-argument for a non-type
14186 template-parameter, the first non-nested `>' is taken as the end
14187 of the template parameter-list rather than a greater-than
14188 operator. */
14189 greater_than_is_operator_p = !template_parm_p;
14191 /* Type definitions may not appear in parameter types. */
14192 saved_message = parser->type_definition_forbidden_message;
14193 parser->type_definition_forbidden_message
14194 = "types may not be defined in parameter types";
14196 /* Parse the declaration-specifiers. */
14197 cp_parser_decl_specifier_seq (parser,
14198 CP_PARSER_FLAGS_NONE,
14199 &decl_specifiers,
14200 &declares_class_or_enum);
14201 /* If an error occurred, there's no reason to attempt to parse the
14202 rest of the declaration. */
14203 if (cp_parser_error_occurred (parser))
14205 parser->type_definition_forbidden_message = saved_message;
14206 return NULL;
14209 /* Peek at the next token. */
14210 token = cp_lexer_peek_token (parser->lexer);
14212 /* If the next token is a `)', `,', `=', `>', or `...', then there
14213 is no declarator. However, when variadic templates are enabled,
14214 there may be a declarator following `...'. */
14215 if (token->type == CPP_CLOSE_PAREN
14216 || token->type == CPP_COMMA
14217 || token->type == CPP_EQ
14218 || token->type == CPP_GREATER)
14220 declarator = NULL;
14221 if (parenthesized_p)
14222 *parenthesized_p = false;
14224 /* Otherwise, there should be a declarator. */
14225 else
14227 bool saved_default_arg_ok_p = parser->default_arg_ok_p;
14228 parser->default_arg_ok_p = false;
14230 /* After seeing a decl-specifier-seq, if the next token is not a
14231 "(", there is no possibility that the code is a valid
14232 expression. Therefore, if parsing tentatively, we commit at
14233 this point. */
14234 if (!parser->in_template_argument_list_p
14235 /* In an expression context, having seen:
14237 (int((char ...
14239 we cannot be sure whether we are looking at a
14240 function-type (taking a "char" as a parameter) or a cast
14241 of some object of type "char" to "int". */
14242 && !parser->in_type_id_in_expr_p
14243 && cp_parser_uncommitted_to_tentative_parse_p (parser)
14244 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_PAREN))
14245 cp_parser_commit_to_tentative_parse (parser);
14246 /* Parse the declarator. */
14247 declarator_token_start = token;
14248 declarator = cp_parser_declarator (parser,
14249 CP_PARSER_DECLARATOR_EITHER,
14250 /*ctor_dtor_or_conv_p=*/NULL,
14251 parenthesized_p,
14252 /*member_p=*/false);
14253 parser->default_arg_ok_p = saved_default_arg_ok_p;
14254 /* After the declarator, allow more attributes. */
14255 decl_specifiers.attributes
14256 = chainon (decl_specifiers.attributes,
14257 cp_parser_attributes_opt (parser));
14260 /* If the next token is an ellipsis, and we have not seen a
14261 declarator name, and the type of the declarator contains parameter
14262 packs but it is not a TYPE_PACK_EXPANSION, then we actually have
14263 a parameter pack expansion expression. Otherwise, leave the
14264 ellipsis for a C-style variadic function. */
14265 token = cp_lexer_peek_token (parser->lexer);
14266 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
14268 tree type = decl_specifiers.type;
14270 if (type && DECL_P (type))
14271 type = TREE_TYPE (type);
14273 if (type
14274 && TREE_CODE (type) != TYPE_PACK_EXPANSION
14275 && declarator_can_be_parameter_pack (declarator)
14276 && (!declarator || !declarator->parameter_pack_p)
14277 && uses_parameter_packs (type))
14279 /* Consume the `...'. */
14280 cp_lexer_consume_token (parser->lexer);
14281 maybe_warn_variadic_templates ();
14283 /* Build a pack expansion type */
14284 if (declarator)
14285 declarator->parameter_pack_p = true;
14286 else
14287 decl_specifiers.type = make_pack_expansion (type);
14291 /* The restriction on defining new types applies only to the type
14292 of the parameter, not to the default argument. */
14293 parser->type_definition_forbidden_message = saved_message;
14295 /* If the next token is `=', then process a default argument. */
14296 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
14298 /* Consume the `='. */
14299 cp_lexer_consume_token (parser->lexer);
14301 /* If we are defining a class, then the tokens that make up the
14302 default argument must be saved and processed later. */
14303 if (!template_parm_p && at_class_scope_p ()
14304 && TYPE_BEING_DEFINED (current_class_type))
14306 unsigned depth = 0;
14307 int maybe_template_id = 0;
14308 cp_token *first_token;
14309 cp_token *token;
14311 /* Add tokens until we have processed the entire default
14312 argument. We add the range [first_token, token). */
14313 first_token = cp_lexer_peek_token (parser->lexer);
14314 while (true)
14316 bool done = false;
14318 /* Peek at the next token. */
14319 token = cp_lexer_peek_token (parser->lexer);
14320 /* What we do depends on what token we have. */
14321 switch (token->type)
14323 /* In valid code, a default argument must be
14324 immediately followed by a `,' `)', or `...'. */
14325 case CPP_COMMA:
14326 if (depth == 0 && maybe_template_id)
14328 /* If we've seen a '<', we might be in a
14329 template-argument-list. Until Core issue 325 is
14330 resolved, we don't know how this situation ought
14331 to be handled, so try to DTRT. We check whether
14332 what comes after the comma is a valid parameter
14333 declaration list. If it is, then the comma ends
14334 the default argument; otherwise the default
14335 argument continues. */
14336 bool error = false;
14338 /* Set ITALP so cp_parser_parameter_declaration_list
14339 doesn't decide to commit to this parse. */
14340 bool saved_italp = parser->in_template_argument_list_p;
14341 parser->in_template_argument_list_p = true;
14343 cp_parser_parse_tentatively (parser);
14344 cp_lexer_consume_token (parser->lexer);
14345 cp_parser_parameter_declaration_list (parser, &error);
14346 if (!cp_parser_error_occurred (parser) && !error)
14347 done = true;
14348 cp_parser_abort_tentative_parse (parser);
14350 parser->in_template_argument_list_p = saved_italp;
14351 break;
14353 case CPP_CLOSE_PAREN:
14354 case CPP_ELLIPSIS:
14355 /* If we run into a non-nested `;', `}', or `]',
14356 then the code is invalid -- but the default
14357 argument is certainly over. */
14358 case CPP_SEMICOLON:
14359 case CPP_CLOSE_BRACE:
14360 case CPP_CLOSE_SQUARE:
14361 if (depth == 0)
14362 done = true;
14363 /* Update DEPTH, if necessary. */
14364 else if (token->type == CPP_CLOSE_PAREN
14365 || token->type == CPP_CLOSE_BRACE
14366 || token->type == CPP_CLOSE_SQUARE)
14367 --depth;
14368 break;
14370 case CPP_OPEN_PAREN:
14371 case CPP_OPEN_SQUARE:
14372 case CPP_OPEN_BRACE:
14373 ++depth;
14374 break;
14376 case CPP_LESS:
14377 if (depth == 0)
14378 /* This might be the comparison operator, or it might
14379 start a template argument list. */
14380 ++maybe_template_id;
14381 break;
14383 case CPP_RSHIFT:
14384 if (cxx_dialect == cxx98)
14385 break;
14386 /* Fall through for C++0x, which treats the `>>'
14387 operator like two `>' tokens in certain
14388 cases. */
14390 case CPP_GREATER:
14391 if (depth == 0)
14393 /* This might be an operator, or it might close a
14394 template argument list. But if a previous '<'
14395 started a template argument list, this will have
14396 closed it, so we can't be in one anymore. */
14397 maybe_template_id -= 1 + (token->type == CPP_RSHIFT);
14398 if (maybe_template_id < 0)
14399 maybe_template_id = 0;
14401 break;
14403 /* If we run out of tokens, issue an error message. */
14404 case CPP_EOF:
14405 case CPP_PRAGMA_EOL:
14406 error ("%Hfile ends in default argument", &token->location);
14407 done = true;
14408 break;
14410 case CPP_NAME:
14411 case CPP_SCOPE:
14412 /* In these cases, we should look for template-ids.
14413 For example, if the default argument is
14414 `X<int, double>()', we need to do name lookup to
14415 figure out whether or not `X' is a template; if
14416 so, the `,' does not end the default argument.
14418 That is not yet done. */
14419 break;
14421 default:
14422 break;
14425 /* If we've reached the end, stop. */
14426 if (done)
14427 break;
14429 /* Add the token to the token block. */
14430 token = cp_lexer_consume_token (parser->lexer);
14433 /* Create a DEFAULT_ARG to represent the unparsed default
14434 argument. */
14435 default_argument = make_node (DEFAULT_ARG);
14436 DEFARG_TOKENS (default_argument)
14437 = cp_token_cache_new (first_token, token);
14438 DEFARG_INSTANTIATIONS (default_argument) = NULL;
14440 /* Outside of a class definition, we can just parse the
14441 assignment-expression. */
14442 else
14444 token = cp_lexer_peek_token (parser->lexer);
14445 default_argument
14446 = cp_parser_default_argument (parser, template_parm_p);
14449 if (!parser->default_arg_ok_p)
14451 if (flag_permissive)
14452 warning (0, "deprecated use of default argument for parameter of non-function");
14453 else
14455 error ("%Hdefault arguments are only "
14456 "permitted for function parameters",
14457 &token->location);
14458 default_argument = NULL_TREE;
14461 else if ((declarator && declarator->parameter_pack_p)
14462 || (decl_specifiers.type
14463 && PACK_EXPANSION_P (decl_specifiers.type)))
14465 const char* kind = template_parm_p? "template " : "";
14467 /* Find the name of the parameter pack. */
14468 cp_declarator *id_declarator = declarator;
14469 while (id_declarator && id_declarator->kind != cdk_id)
14470 id_declarator = id_declarator->declarator;
14472 if (id_declarator && id_declarator->kind == cdk_id)
14473 error ("%H%sparameter pack %qD cannot have a default argument",
14474 &declarator_token_start->location,
14475 kind, id_declarator->u.id.unqualified_name);
14476 else
14477 error ("%H%sparameter pack cannot have a default argument",
14478 &declarator_token_start->location, kind);
14480 default_argument = NULL_TREE;
14483 else
14484 default_argument = NULL_TREE;
14486 return make_parameter_declarator (&decl_specifiers,
14487 declarator,
14488 default_argument);
14491 /* Parse a default argument and return it.
14493 TEMPLATE_PARM_P is true if this is a default argument for a
14494 non-type template parameter. */
14495 static tree
14496 cp_parser_default_argument (cp_parser *parser, bool template_parm_p)
14498 tree default_argument = NULL_TREE;
14499 bool saved_greater_than_is_operator_p;
14500 bool saved_local_variables_forbidden_p;
14502 /* Make sure that PARSER->GREATER_THAN_IS_OPERATOR_P is
14503 set correctly. */
14504 saved_greater_than_is_operator_p = parser->greater_than_is_operator_p;
14505 parser->greater_than_is_operator_p = !template_parm_p;
14506 /* Local variable names (and the `this' keyword) may not
14507 appear in a default argument. */
14508 saved_local_variables_forbidden_p = parser->local_variables_forbidden_p;
14509 parser->local_variables_forbidden_p = true;
14510 /* The default argument expression may cause implicitly
14511 defined member functions to be synthesized, which will
14512 result in garbage collection. We must treat this
14513 situation as if we were within the body of function so as
14514 to avoid collecting live data on the stack. */
14515 ++function_depth;
14516 /* Parse the assignment-expression. */
14517 if (template_parm_p)
14518 push_deferring_access_checks (dk_no_deferred);
14519 default_argument
14520 = cp_parser_assignment_expression (parser, /*cast_p=*/false, NULL);
14521 if (template_parm_p)
14522 pop_deferring_access_checks ();
14523 /* Restore saved state. */
14524 --function_depth;
14525 parser->greater_than_is_operator_p = saved_greater_than_is_operator_p;
14526 parser->local_variables_forbidden_p = saved_local_variables_forbidden_p;
14528 return default_argument;
14531 /* Parse a function-body.
14533 function-body:
14534 compound_statement */
14536 static void
14537 cp_parser_function_body (cp_parser *parser)
14539 cp_parser_compound_statement (parser, NULL, false);
14542 /* Parse a ctor-initializer-opt followed by a function-body. Return
14543 true if a ctor-initializer was present. */
14545 static bool
14546 cp_parser_ctor_initializer_opt_and_function_body (cp_parser *parser)
14548 tree body;
14549 bool ctor_initializer_p;
14551 /* Begin the function body. */
14552 body = begin_function_body ();
14553 /* Parse the optional ctor-initializer. */
14554 ctor_initializer_p = cp_parser_ctor_initializer_opt (parser);
14555 /* Parse the function-body. */
14556 cp_parser_function_body (parser);
14557 /* Finish the function body. */
14558 finish_function_body (body);
14560 return ctor_initializer_p;
14563 /* Parse an initializer.
14565 initializer:
14566 = initializer-clause
14567 ( expression-list )
14569 Returns an expression representing the initializer. If no
14570 initializer is present, NULL_TREE is returned.
14572 *IS_DIRECT_INIT is set to FALSE if the `= initializer-clause'
14573 production is used, and TRUE otherwise. *IS_DIRECT_INIT is
14574 set to TRUE if there is no initializer present. If there is an
14575 initializer, and it is not a constant-expression, *NON_CONSTANT_P
14576 is set to true; otherwise it is set to false. */
14578 static tree
14579 cp_parser_initializer (cp_parser* parser, bool* is_direct_init,
14580 bool* non_constant_p)
14582 cp_token *token;
14583 tree init;
14585 /* Peek at the next token. */
14586 token = cp_lexer_peek_token (parser->lexer);
14588 /* Let our caller know whether or not this initializer was
14589 parenthesized. */
14590 *is_direct_init = (token->type != CPP_EQ);
14591 /* Assume that the initializer is constant. */
14592 *non_constant_p = false;
14594 if (token->type == CPP_EQ)
14596 /* Consume the `='. */
14597 cp_lexer_consume_token (parser->lexer);
14598 /* Parse the initializer-clause. */
14599 init = cp_parser_initializer_clause (parser, non_constant_p);
14601 else if (token->type == CPP_OPEN_PAREN)
14602 init = cp_parser_parenthesized_expression_list (parser, false,
14603 /*cast_p=*/false,
14604 /*allow_expansion_p=*/true,
14605 non_constant_p);
14606 else if (token->type == CPP_OPEN_BRACE)
14608 maybe_warn_cpp0x ("extended initializer lists");
14609 init = cp_parser_braced_list (parser, non_constant_p);
14610 CONSTRUCTOR_IS_DIRECT_INIT (init) = 1;
14612 else
14614 /* Anything else is an error. */
14615 cp_parser_error (parser, "expected initializer");
14616 init = error_mark_node;
14619 return init;
14622 /* Parse an initializer-clause.
14624 initializer-clause:
14625 assignment-expression
14626 braced-init-list
14628 Returns an expression representing the initializer.
14630 If the `assignment-expression' production is used the value
14631 returned is simply a representation for the expression.
14633 Otherwise, calls cp_parser_braced_list. */
14635 static tree
14636 cp_parser_initializer_clause (cp_parser* parser, bool* non_constant_p)
14638 tree initializer;
14640 /* Assume the expression is constant. */
14641 *non_constant_p = false;
14643 /* If it is not a `{', then we are looking at an
14644 assignment-expression. */
14645 if (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE))
14647 initializer
14648 = cp_parser_constant_expression (parser,
14649 /*allow_non_constant_p=*/true,
14650 non_constant_p);
14651 if (!*non_constant_p)
14652 initializer = fold_non_dependent_expr (initializer);
14654 else
14655 initializer = cp_parser_braced_list (parser, non_constant_p);
14657 return initializer;
14660 /* Parse a brace-enclosed initializer list.
14662 braced-init-list:
14663 { initializer-list , [opt] }
14666 Returns a CONSTRUCTOR. The CONSTRUCTOR_ELTS will be
14667 the elements of the initializer-list (or NULL, if the last
14668 production is used). The TREE_TYPE for the CONSTRUCTOR will be
14669 NULL_TREE. There is no way to detect whether or not the optional
14670 trailing `,' was provided. NON_CONSTANT_P is as for
14671 cp_parser_initializer. */
14673 static tree
14674 cp_parser_braced_list (cp_parser* parser, bool* non_constant_p)
14676 tree initializer;
14678 /* Consume the `{' token. */
14679 cp_lexer_consume_token (parser->lexer);
14680 /* Create a CONSTRUCTOR to represent the braced-initializer. */
14681 initializer = make_node (CONSTRUCTOR);
14682 /* If it's not a `}', then there is a non-trivial initializer. */
14683 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_BRACE))
14685 /* Parse the initializer list. */
14686 CONSTRUCTOR_ELTS (initializer)
14687 = cp_parser_initializer_list (parser, non_constant_p);
14688 /* A trailing `,' token is allowed. */
14689 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
14690 cp_lexer_consume_token (parser->lexer);
14692 /* Now, there should be a trailing `}'. */
14693 cp_parser_require (parser, CPP_CLOSE_BRACE, "%<}%>");
14694 TREE_TYPE (initializer) = init_list_type_node;
14695 return initializer;
14698 /* Parse an initializer-list.
14700 initializer-list:
14701 initializer-clause ... [opt]
14702 initializer-list , initializer-clause ... [opt]
14704 GNU Extension:
14706 initializer-list:
14707 identifier : initializer-clause
14708 initializer-list, identifier : initializer-clause
14710 Returns a VEC of constructor_elt. The VALUE of each elt is an expression
14711 for the initializer. If the INDEX of the elt is non-NULL, it is the
14712 IDENTIFIER_NODE naming the field to initialize. NON_CONSTANT_P is
14713 as for cp_parser_initializer. */
14715 static VEC(constructor_elt,gc) *
14716 cp_parser_initializer_list (cp_parser* parser, bool* non_constant_p)
14718 VEC(constructor_elt,gc) *v = NULL;
14720 /* Assume all of the expressions are constant. */
14721 *non_constant_p = false;
14723 /* Parse the rest of the list. */
14724 while (true)
14726 cp_token *token;
14727 tree identifier;
14728 tree initializer;
14729 bool clause_non_constant_p;
14731 /* If the next token is an identifier and the following one is a
14732 colon, we are looking at the GNU designated-initializer
14733 syntax. */
14734 if (cp_parser_allow_gnu_extensions_p (parser)
14735 && cp_lexer_next_token_is (parser->lexer, CPP_NAME)
14736 && cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_COLON)
14738 /* Warn the user that they are using an extension. */
14739 pedwarn (input_location, OPT_pedantic,
14740 "ISO C++ does not allow designated initializers");
14741 /* Consume the identifier. */
14742 identifier = cp_lexer_consume_token (parser->lexer)->u.value;
14743 /* Consume the `:'. */
14744 cp_lexer_consume_token (parser->lexer);
14746 else
14747 identifier = NULL_TREE;
14749 /* Parse the initializer. */
14750 initializer = cp_parser_initializer_clause (parser,
14751 &clause_non_constant_p);
14752 /* If any clause is non-constant, so is the entire initializer. */
14753 if (clause_non_constant_p)
14754 *non_constant_p = true;
14756 /* If we have an ellipsis, this is an initializer pack
14757 expansion. */
14758 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
14760 /* Consume the `...'. */
14761 cp_lexer_consume_token (parser->lexer);
14763 /* Turn the initializer into an initializer expansion. */
14764 initializer = make_pack_expansion (initializer);
14767 /* Add it to the vector. */
14768 CONSTRUCTOR_APPEND_ELT(v, identifier, initializer);
14770 /* If the next token is not a comma, we have reached the end of
14771 the list. */
14772 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
14773 break;
14775 /* Peek at the next token. */
14776 token = cp_lexer_peek_nth_token (parser->lexer, 2);
14777 /* If the next token is a `}', then we're still done. An
14778 initializer-clause can have a trailing `,' after the
14779 initializer-list and before the closing `}'. */
14780 if (token->type == CPP_CLOSE_BRACE)
14781 break;
14783 /* Consume the `,' token. */
14784 cp_lexer_consume_token (parser->lexer);
14787 return v;
14790 /* Classes [gram.class] */
14792 /* Parse a class-name.
14794 class-name:
14795 identifier
14796 template-id
14798 TYPENAME_KEYWORD_P is true iff the `typename' keyword has been used
14799 to indicate that names looked up in dependent types should be
14800 assumed to be types. TEMPLATE_KEYWORD_P is true iff the `template'
14801 keyword has been used to indicate that the name that appears next
14802 is a template. TAG_TYPE indicates the explicit tag given before
14803 the type name, if any. If CHECK_DEPENDENCY_P is FALSE, names are
14804 looked up in dependent scopes. If CLASS_HEAD_P is TRUE, this class
14805 is the class being defined in a class-head.
14807 Returns the TYPE_DECL representing the class. */
14809 static tree
14810 cp_parser_class_name (cp_parser *parser,
14811 bool typename_keyword_p,
14812 bool template_keyword_p,
14813 enum tag_types tag_type,
14814 bool check_dependency_p,
14815 bool class_head_p,
14816 bool is_declaration)
14818 tree decl;
14819 tree scope;
14820 bool typename_p;
14821 cp_token *token;
14822 tree identifier = NULL_TREE;
14824 /* All class-names start with an identifier. */
14825 token = cp_lexer_peek_token (parser->lexer);
14826 if (token->type != CPP_NAME && token->type != CPP_TEMPLATE_ID)
14828 cp_parser_error (parser, "expected class-name");
14829 return error_mark_node;
14832 /* PARSER->SCOPE can be cleared when parsing the template-arguments
14833 to a template-id, so we save it here. */
14834 scope = parser->scope;
14835 if (scope == error_mark_node)
14836 return error_mark_node;
14838 /* Any name names a type if we're following the `typename' keyword
14839 in a qualified name where the enclosing scope is type-dependent. */
14840 typename_p = (typename_keyword_p && scope && TYPE_P (scope)
14841 && dependent_type_p (scope));
14842 /* Handle the common case (an identifier, but not a template-id)
14843 efficiently. */
14844 if (token->type == CPP_NAME
14845 && !cp_parser_nth_token_starts_template_argument_list_p (parser, 2))
14847 cp_token *identifier_token;
14848 bool ambiguous_p;
14850 /* Look for the identifier. */
14851 identifier_token = cp_lexer_peek_token (parser->lexer);
14852 ambiguous_p = identifier_token->ambiguous_p;
14853 identifier = cp_parser_identifier (parser);
14854 /* If the next token isn't an identifier, we are certainly not
14855 looking at a class-name. */
14856 if (identifier == error_mark_node)
14857 decl = error_mark_node;
14858 /* If we know this is a type-name, there's no need to look it
14859 up. */
14860 else if (typename_p)
14861 decl = identifier;
14862 else
14864 tree ambiguous_decls;
14865 /* If we already know that this lookup is ambiguous, then
14866 we've already issued an error message; there's no reason
14867 to check again. */
14868 if (ambiguous_p)
14870 cp_parser_simulate_error (parser);
14871 return error_mark_node;
14873 /* If the next token is a `::', then the name must be a type
14874 name.
14876 [basic.lookup.qual]
14878 During the lookup for a name preceding the :: scope
14879 resolution operator, object, function, and enumerator
14880 names are ignored. */
14881 if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
14882 tag_type = typename_type;
14883 /* Look up the name. */
14884 decl = cp_parser_lookup_name (parser, identifier,
14885 tag_type,
14886 /*is_template=*/false,
14887 /*is_namespace=*/false,
14888 check_dependency_p,
14889 &ambiguous_decls,
14890 identifier_token->location);
14891 if (ambiguous_decls)
14893 error ("%Hreference to %qD is ambiguous",
14894 &identifier_token->location, identifier);
14895 print_candidates (ambiguous_decls);
14896 if (cp_parser_parsing_tentatively (parser))
14898 identifier_token->ambiguous_p = true;
14899 cp_parser_simulate_error (parser);
14901 return error_mark_node;
14905 else
14907 /* Try a template-id. */
14908 decl = cp_parser_template_id (parser, template_keyword_p,
14909 check_dependency_p,
14910 is_declaration);
14911 if (decl == error_mark_node)
14912 return error_mark_node;
14915 decl = cp_parser_maybe_treat_template_as_class (decl, class_head_p);
14917 /* If this is a typename, create a TYPENAME_TYPE. */
14918 if (typename_p && decl != error_mark_node)
14920 decl = make_typename_type (scope, decl, typename_type,
14921 /*complain=*/tf_error);
14922 if (decl != error_mark_node)
14923 decl = TYPE_NAME (decl);
14926 /* Check to see that it is really the name of a class. */
14927 if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
14928 && TREE_CODE (TREE_OPERAND (decl, 0)) == IDENTIFIER_NODE
14929 && cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
14930 /* Situations like this:
14932 template <typename T> struct A {
14933 typename T::template X<int>::I i;
14936 are problematic. Is `T::template X<int>' a class-name? The
14937 standard does not seem to be definitive, but there is no other
14938 valid interpretation of the following `::'. Therefore, those
14939 names are considered class-names. */
14941 decl = make_typename_type (scope, decl, tag_type, tf_error);
14942 if (decl != error_mark_node)
14943 decl = TYPE_NAME (decl);
14945 else if (TREE_CODE (decl) != TYPE_DECL
14946 || TREE_TYPE (decl) == error_mark_node
14947 || !MAYBE_CLASS_TYPE_P (TREE_TYPE (decl)))
14948 decl = error_mark_node;
14950 if (decl == error_mark_node)
14951 cp_parser_error (parser, "expected class-name");
14952 else if (identifier && !parser->scope)
14953 maybe_note_name_used_in_class (identifier, decl);
14955 return decl;
14958 /* Parse a class-specifier.
14960 class-specifier:
14961 class-head { member-specification [opt] }
14963 Returns the TREE_TYPE representing the class. */
14965 static tree
14966 cp_parser_class_specifier (cp_parser* parser)
14968 cp_token *token;
14969 tree type;
14970 tree attributes = NULL_TREE;
14971 int has_trailing_semicolon;
14972 bool nested_name_specifier_p;
14973 unsigned saved_num_template_parameter_lists;
14974 bool saved_in_function_body;
14975 bool saved_in_unbraced_linkage_specification_p;
14976 tree old_scope = NULL_TREE;
14977 tree scope = NULL_TREE;
14978 tree bases;
14980 push_deferring_access_checks (dk_no_deferred);
14982 /* Parse the class-head. */
14983 type = cp_parser_class_head (parser,
14984 &nested_name_specifier_p,
14985 &attributes,
14986 &bases);
14987 /* If the class-head was a semantic disaster, skip the entire body
14988 of the class. */
14989 if (!type)
14991 cp_parser_skip_to_end_of_block_or_statement (parser);
14992 pop_deferring_access_checks ();
14993 return error_mark_node;
14996 /* Look for the `{'. */
14997 if (!cp_parser_require (parser, CPP_OPEN_BRACE, "%<{%>"))
14999 pop_deferring_access_checks ();
15000 return error_mark_node;
15003 /* Process the base classes. If they're invalid, skip the
15004 entire class body. */
15005 if (!xref_basetypes (type, bases))
15007 /* Consuming the closing brace yields better error messages
15008 later on. */
15009 if (cp_parser_skip_to_closing_brace (parser))
15010 cp_lexer_consume_token (parser->lexer);
15011 pop_deferring_access_checks ();
15012 return error_mark_node;
15015 /* Issue an error message if type-definitions are forbidden here. */
15016 cp_parser_check_type_definition (parser);
15017 /* Remember that we are defining one more class. */
15018 ++parser->num_classes_being_defined;
15019 /* Inside the class, surrounding template-parameter-lists do not
15020 apply. */
15021 saved_num_template_parameter_lists
15022 = parser->num_template_parameter_lists;
15023 parser->num_template_parameter_lists = 0;
15024 /* We are not in a function body. */
15025 saved_in_function_body = parser->in_function_body;
15026 parser->in_function_body = false;
15027 /* We are not immediately inside an extern "lang" block. */
15028 saved_in_unbraced_linkage_specification_p
15029 = parser->in_unbraced_linkage_specification_p;
15030 parser->in_unbraced_linkage_specification_p = false;
15032 /* Start the class. */
15033 if (nested_name_specifier_p)
15035 scope = CP_DECL_CONTEXT (TYPE_MAIN_DECL (type));
15036 old_scope = push_inner_scope (scope);
15038 type = begin_class_definition (type, attributes);
15040 if (type == error_mark_node)
15041 /* If the type is erroneous, skip the entire body of the class. */
15042 cp_parser_skip_to_closing_brace (parser);
15043 else
15044 /* Parse the member-specification. */
15045 cp_parser_member_specification_opt (parser);
15047 /* Look for the trailing `}'. */
15048 cp_parser_require (parser, CPP_CLOSE_BRACE, "%<}%>");
15049 /* We get better error messages by noticing a common problem: a
15050 missing trailing `;'. */
15051 token = cp_lexer_peek_token (parser->lexer);
15052 has_trailing_semicolon = (token->type == CPP_SEMICOLON);
15053 /* Look for trailing attributes to apply to this class. */
15054 if (cp_parser_allow_gnu_extensions_p (parser))
15055 attributes = cp_parser_attributes_opt (parser);
15056 if (type != error_mark_node)
15057 type = finish_struct (type, attributes);
15058 if (nested_name_specifier_p)
15059 pop_inner_scope (old_scope, scope);
15060 /* If this class is not itself within the scope of another class,
15061 then we need to parse the bodies of all of the queued function
15062 definitions. Note that the queued functions defined in a class
15063 are not always processed immediately following the
15064 class-specifier for that class. Consider:
15066 struct A {
15067 struct B { void f() { sizeof (A); } };
15070 If `f' were processed before the processing of `A' were
15071 completed, there would be no way to compute the size of `A'.
15072 Note that the nesting we are interested in here is lexical --
15073 not the semantic nesting given by TYPE_CONTEXT. In particular,
15074 for:
15076 struct A { struct B; };
15077 struct A::B { void f() { } };
15079 there is no need to delay the parsing of `A::B::f'. */
15080 if (--parser->num_classes_being_defined == 0)
15082 tree queue_entry;
15083 tree fn;
15084 tree class_type = NULL_TREE;
15085 tree pushed_scope = NULL_TREE;
15087 /* In a first pass, parse default arguments to the functions.
15088 Then, in a second pass, parse the bodies of the functions.
15089 This two-phased approach handles cases like:
15091 struct S {
15092 void f() { g(); }
15093 void g(int i = 3);
15097 for (TREE_PURPOSE (parser->unparsed_functions_queues)
15098 = nreverse (TREE_PURPOSE (parser->unparsed_functions_queues));
15099 (queue_entry = TREE_PURPOSE (parser->unparsed_functions_queues));
15100 TREE_PURPOSE (parser->unparsed_functions_queues)
15101 = TREE_CHAIN (TREE_PURPOSE (parser->unparsed_functions_queues)))
15103 fn = TREE_VALUE (queue_entry);
15104 /* If there are default arguments that have not yet been processed,
15105 take care of them now. */
15106 if (class_type != TREE_PURPOSE (queue_entry))
15108 if (pushed_scope)
15109 pop_scope (pushed_scope);
15110 class_type = TREE_PURPOSE (queue_entry);
15111 pushed_scope = push_scope (class_type);
15113 /* Make sure that any template parameters are in scope. */
15114 maybe_begin_member_template_processing (fn);
15115 /* Parse the default argument expressions. */
15116 cp_parser_late_parsing_default_args (parser, fn);
15117 /* Remove any template parameters from the symbol table. */
15118 maybe_end_member_template_processing ();
15120 if (pushed_scope)
15121 pop_scope (pushed_scope);
15122 /* Now parse the body of the functions. */
15123 for (TREE_VALUE (parser->unparsed_functions_queues)
15124 = nreverse (TREE_VALUE (parser->unparsed_functions_queues));
15125 (queue_entry = TREE_VALUE (parser->unparsed_functions_queues));
15126 TREE_VALUE (parser->unparsed_functions_queues)
15127 = TREE_CHAIN (TREE_VALUE (parser->unparsed_functions_queues)))
15129 /* Figure out which function we need to process. */
15130 fn = TREE_VALUE (queue_entry);
15131 /* Parse the function. */
15132 cp_parser_late_parsing_for_member (parser, fn);
15136 /* Put back any saved access checks. */
15137 pop_deferring_access_checks ();
15139 /* Restore saved state. */
15140 parser->in_function_body = saved_in_function_body;
15141 parser->num_template_parameter_lists
15142 = saved_num_template_parameter_lists;
15143 parser->in_unbraced_linkage_specification_p
15144 = saved_in_unbraced_linkage_specification_p;
15146 return type;
15149 /* Parse a class-head.
15151 class-head:
15152 class-key identifier [opt] base-clause [opt]
15153 class-key nested-name-specifier identifier base-clause [opt]
15154 class-key nested-name-specifier [opt] template-id
15155 base-clause [opt]
15157 GNU Extensions:
15158 class-key attributes identifier [opt] base-clause [opt]
15159 class-key attributes nested-name-specifier identifier base-clause [opt]
15160 class-key attributes nested-name-specifier [opt] template-id
15161 base-clause [opt]
15163 Upon return BASES is initialized to the list of base classes (or
15164 NULL, if there are none) in the same form returned by
15165 cp_parser_base_clause.
15167 Returns the TYPE of the indicated class. Sets
15168 *NESTED_NAME_SPECIFIER_P to TRUE iff one of the productions
15169 involving a nested-name-specifier was used, and FALSE otherwise.
15171 Returns error_mark_node if this is not a class-head.
15173 Returns NULL_TREE if the class-head is syntactically valid, but
15174 semantically invalid in a way that means we should skip the entire
15175 body of the class. */
15177 static tree
15178 cp_parser_class_head (cp_parser* parser,
15179 bool* nested_name_specifier_p,
15180 tree *attributes_p,
15181 tree *bases)
15183 tree nested_name_specifier;
15184 enum tag_types class_key;
15185 tree id = NULL_TREE;
15186 tree type = NULL_TREE;
15187 tree attributes;
15188 bool template_id_p = false;
15189 bool qualified_p = false;
15190 bool invalid_nested_name_p = false;
15191 bool invalid_explicit_specialization_p = false;
15192 tree pushed_scope = NULL_TREE;
15193 unsigned num_templates;
15194 cp_token *type_start_token = NULL, *nested_name_specifier_token_start = NULL;
15195 /* Assume no nested-name-specifier will be present. */
15196 *nested_name_specifier_p = false;
15197 /* Assume no template parameter lists will be used in defining the
15198 type. */
15199 num_templates = 0;
15201 *bases = NULL_TREE;
15203 /* Look for the class-key. */
15204 class_key = cp_parser_class_key (parser);
15205 if (class_key == none_type)
15206 return error_mark_node;
15208 /* Parse the attributes. */
15209 attributes = cp_parser_attributes_opt (parser);
15211 /* If the next token is `::', that is invalid -- but sometimes
15212 people do try to write:
15214 struct ::S {};
15216 Handle this gracefully by accepting the extra qualifier, and then
15217 issuing an error about it later if this really is a
15218 class-head. If it turns out just to be an elaborated type
15219 specifier, remain silent. */
15220 if (cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/false))
15221 qualified_p = true;
15223 push_deferring_access_checks (dk_no_check);
15225 /* Determine the name of the class. Begin by looking for an
15226 optional nested-name-specifier. */
15227 nested_name_specifier_token_start = cp_lexer_peek_token (parser->lexer);
15228 nested_name_specifier
15229 = cp_parser_nested_name_specifier_opt (parser,
15230 /*typename_keyword_p=*/false,
15231 /*check_dependency_p=*/false,
15232 /*type_p=*/false,
15233 /*is_declaration=*/false);
15234 /* If there was a nested-name-specifier, then there *must* be an
15235 identifier. */
15236 if (nested_name_specifier)
15238 type_start_token = cp_lexer_peek_token (parser->lexer);
15239 /* Although the grammar says `identifier', it really means
15240 `class-name' or `template-name'. You are only allowed to
15241 define a class that has already been declared with this
15242 syntax.
15244 The proposed resolution for Core Issue 180 says that wherever
15245 you see `class T::X' you should treat `X' as a type-name.
15247 It is OK to define an inaccessible class; for example:
15249 class A { class B; };
15250 class A::B {};
15252 We do not know if we will see a class-name, or a
15253 template-name. We look for a class-name first, in case the
15254 class-name is a template-id; if we looked for the
15255 template-name first we would stop after the template-name. */
15256 cp_parser_parse_tentatively (parser);
15257 type = cp_parser_class_name (parser,
15258 /*typename_keyword_p=*/false,
15259 /*template_keyword_p=*/false,
15260 class_type,
15261 /*check_dependency_p=*/false,
15262 /*class_head_p=*/true,
15263 /*is_declaration=*/false);
15264 /* If that didn't work, ignore the nested-name-specifier. */
15265 if (!cp_parser_parse_definitely (parser))
15267 invalid_nested_name_p = true;
15268 type_start_token = cp_lexer_peek_token (parser->lexer);
15269 id = cp_parser_identifier (parser);
15270 if (id == error_mark_node)
15271 id = NULL_TREE;
15273 /* If we could not find a corresponding TYPE, treat this
15274 declaration like an unqualified declaration. */
15275 if (type == error_mark_node)
15276 nested_name_specifier = NULL_TREE;
15277 /* Otherwise, count the number of templates used in TYPE and its
15278 containing scopes. */
15279 else
15281 tree scope;
15283 for (scope = TREE_TYPE (type);
15284 scope && TREE_CODE (scope) != NAMESPACE_DECL;
15285 scope = (TYPE_P (scope)
15286 ? TYPE_CONTEXT (scope)
15287 : DECL_CONTEXT (scope)))
15288 if (TYPE_P (scope)
15289 && CLASS_TYPE_P (scope)
15290 && CLASSTYPE_TEMPLATE_INFO (scope)
15291 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (scope))
15292 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (scope))
15293 ++num_templates;
15296 /* Otherwise, the identifier is optional. */
15297 else
15299 /* We don't know whether what comes next is a template-id,
15300 an identifier, or nothing at all. */
15301 cp_parser_parse_tentatively (parser);
15302 /* Check for a template-id. */
15303 type_start_token = cp_lexer_peek_token (parser->lexer);
15304 id = cp_parser_template_id (parser,
15305 /*template_keyword_p=*/false,
15306 /*check_dependency_p=*/true,
15307 /*is_declaration=*/true);
15308 /* If that didn't work, it could still be an identifier. */
15309 if (!cp_parser_parse_definitely (parser))
15311 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
15313 type_start_token = cp_lexer_peek_token (parser->lexer);
15314 id = cp_parser_identifier (parser);
15316 else
15317 id = NULL_TREE;
15319 else
15321 template_id_p = true;
15322 ++num_templates;
15326 pop_deferring_access_checks ();
15328 if (id)
15329 cp_parser_check_for_invalid_template_id (parser, id,
15330 type_start_token->location);
15332 /* If it's not a `:' or a `{' then we can't really be looking at a
15333 class-head, since a class-head only appears as part of a
15334 class-specifier. We have to detect this situation before calling
15335 xref_tag, since that has irreversible side-effects. */
15336 if (!cp_parser_next_token_starts_class_definition_p (parser))
15338 cp_parser_error (parser, "expected %<{%> or %<:%>");
15339 return error_mark_node;
15342 /* At this point, we're going ahead with the class-specifier, even
15343 if some other problem occurs. */
15344 cp_parser_commit_to_tentative_parse (parser);
15345 /* Issue the error about the overly-qualified name now. */
15346 if (qualified_p)
15348 cp_parser_error (parser,
15349 "global qualification of class name is invalid");
15350 return error_mark_node;
15352 else if (invalid_nested_name_p)
15354 cp_parser_error (parser,
15355 "qualified name does not name a class");
15356 return error_mark_node;
15358 else if (nested_name_specifier)
15360 tree scope;
15362 /* Reject typedef-names in class heads. */
15363 if (!DECL_IMPLICIT_TYPEDEF_P (type))
15365 error ("%Hinvalid class name in declaration of %qD",
15366 &type_start_token->location, type);
15367 type = NULL_TREE;
15368 goto done;
15371 /* Figure out in what scope the declaration is being placed. */
15372 scope = current_scope ();
15373 /* If that scope does not contain the scope in which the
15374 class was originally declared, the program is invalid. */
15375 if (scope && !is_ancestor (scope, nested_name_specifier))
15377 if (at_namespace_scope_p ())
15378 error ("%Hdeclaration of %qD in namespace %qD which does not "
15379 "enclose %qD",
15380 &type_start_token->location,
15381 type, scope, nested_name_specifier);
15382 else
15383 error ("%Hdeclaration of %qD in %qD which does not enclose %qD",
15384 &type_start_token->location,
15385 type, scope, nested_name_specifier);
15386 type = NULL_TREE;
15387 goto done;
15389 /* [dcl.meaning]
15391 A declarator-id shall not be qualified except for the
15392 definition of a ... nested class outside of its class
15393 ... [or] the definition or explicit instantiation of a
15394 class member of a namespace outside of its namespace. */
15395 if (scope == nested_name_specifier)
15397 permerror (input_location, "%Hextra qualification not allowed",
15398 &nested_name_specifier_token_start->location);
15399 nested_name_specifier = NULL_TREE;
15400 num_templates = 0;
15403 /* An explicit-specialization must be preceded by "template <>". If
15404 it is not, try to recover gracefully. */
15405 if (at_namespace_scope_p ()
15406 && parser->num_template_parameter_lists == 0
15407 && template_id_p)
15409 error ("%Han explicit specialization must be preceded by %<template <>%>",
15410 &type_start_token->location);
15411 invalid_explicit_specialization_p = true;
15412 /* Take the same action that would have been taken by
15413 cp_parser_explicit_specialization. */
15414 ++parser->num_template_parameter_lists;
15415 begin_specialization ();
15417 /* There must be no "return" statements between this point and the
15418 end of this function; set "type "to the correct return value and
15419 use "goto done;" to return. */
15420 /* Make sure that the right number of template parameters were
15421 present. */
15422 if (!cp_parser_check_template_parameters (parser, num_templates,
15423 type_start_token->location))
15425 /* If something went wrong, there is no point in even trying to
15426 process the class-definition. */
15427 type = NULL_TREE;
15428 goto done;
15431 /* Look up the type. */
15432 if (template_id_p)
15434 if (TREE_CODE (id) == TEMPLATE_ID_EXPR
15435 && (DECL_FUNCTION_TEMPLATE_P (TREE_OPERAND (id, 0))
15436 || TREE_CODE (TREE_OPERAND (id, 0)) == OVERLOAD))
15438 error ("%Hfunction template %qD redeclared as a class template",
15439 &type_start_token->location, id);
15440 type = error_mark_node;
15442 else
15444 type = TREE_TYPE (id);
15445 type = maybe_process_partial_specialization (type);
15447 if (nested_name_specifier)
15448 pushed_scope = push_scope (nested_name_specifier);
15450 else if (nested_name_specifier)
15452 tree class_type;
15454 /* Given:
15456 template <typename T> struct S { struct T };
15457 template <typename T> struct S<T>::T { };
15459 we will get a TYPENAME_TYPE when processing the definition of
15460 `S::T'. We need to resolve it to the actual type before we
15461 try to define it. */
15462 if (TREE_CODE (TREE_TYPE (type)) == TYPENAME_TYPE)
15464 class_type = resolve_typename_type (TREE_TYPE (type),
15465 /*only_current_p=*/false);
15466 if (TREE_CODE (class_type) != TYPENAME_TYPE)
15467 type = TYPE_NAME (class_type);
15468 else
15470 cp_parser_error (parser, "could not resolve typename type");
15471 type = error_mark_node;
15475 if (maybe_process_partial_specialization (TREE_TYPE (type))
15476 == error_mark_node)
15478 type = NULL_TREE;
15479 goto done;
15482 class_type = current_class_type;
15483 /* Enter the scope indicated by the nested-name-specifier. */
15484 pushed_scope = push_scope (nested_name_specifier);
15485 /* Get the canonical version of this type. */
15486 type = TYPE_MAIN_DECL (TREE_TYPE (type));
15487 if (PROCESSING_REAL_TEMPLATE_DECL_P ()
15488 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (type)))
15490 type = push_template_decl (type);
15491 if (type == error_mark_node)
15493 type = NULL_TREE;
15494 goto done;
15498 type = TREE_TYPE (type);
15499 *nested_name_specifier_p = true;
15501 else /* The name is not a nested name. */
15503 /* If the class was unnamed, create a dummy name. */
15504 if (!id)
15505 id = make_anon_name ();
15506 type = xref_tag (class_key, id, /*tag_scope=*/ts_current,
15507 parser->num_template_parameter_lists);
15510 /* Indicate whether this class was declared as a `class' or as a
15511 `struct'. */
15512 if (TREE_CODE (type) == RECORD_TYPE)
15513 CLASSTYPE_DECLARED_CLASS (type) = (class_key == class_type);
15514 cp_parser_check_class_key (class_key, type);
15516 /* If this type was already complete, and we see another definition,
15517 that's an error. */
15518 if (type != error_mark_node && COMPLETE_TYPE_P (type))
15520 error ("%Hredefinition of %q#T",
15521 &type_start_token->location, type);
15522 error ("%Hprevious definition of %q+#T",
15523 &type_start_token->location, type);
15524 type = NULL_TREE;
15525 goto done;
15527 else if (type == error_mark_node)
15528 type = NULL_TREE;
15530 /* We will have entered the scope containing the class; the names of
15531 base classes should be looked up in that context. For example:
15533 struct A { struct B {}; struct C; };
15534 struct A::C : B {};
15536 is valid. */
15538 /* Get the list of base-classes, if there is one. */
15539 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
15540 *bases = cp_parser_base_clause (parser);
15542 done:
15543 /* Leave the scope given by the nested-name-specifier. We will
15544 enter the class scope itself while processing the members. */
15545 if (pushed_scope)
15546 pop_scope (pushed_scope);
15548 if (invalid_explicit_specialization_p)
15550 end_specialization ();
15551 --parser->num_template_parameter_lists;
15553 *attributes_p = attributes;
15554 return type;
15557 /* Parse a class-key.
15559 class-key:
15560 class
15561 struct
15562 union
15564 Returns the kind of class-key specified, or none_type to indicate
15565 error. */
15567 static enum tag_types
15568 cp_parser_class_key (cp_parser* parser)
15570 cp_token *token;
15571 enum tag_types tag_type;
15573 /* Look for the class-key. */
15574 token = cp_parser_require (parser, CPP_KEYWORD, "class-key");
15575 if (!token)
15576 return none_type;
15578 /* Check to see if the TOKEN is a class-key. */
15579 tag_type = cp_parser_token_is_class_key (token);
15580 if (!tag_type)
15581 cp_parser_error (parser, "expected class-key");
15582 return tag_type;
15585 /* Parse an (optional) member-specification.
15587 member-specification:
15588 member-declaration member-specification [opt]
15589 access-specifier : member-specification [opt] */
15591 static void
15592 cp_parser_member_specification_opt (cp_parser* parser)
15594 while (true)
15596 cp_token *token;
15597 enum rid keyword;
15599 /* Peek at the next token. */
15600 token = cp_lexer_peek_token (parser->lexer);
15601 /* If it's a `}', or EOF then we've seen all the members. */
15602 if (token->type == CPP_CLOSE_BRACE
15603 || token->type == CPP_EOF
15604 || token->type == CPP_PRAGMA_EOL)
15605 break;
15607 /* See if this token is a keyword. */
15608 keyword = token->keyword;
15609 switch (keyword)
15611 case RID_PUBLIC:
15612 case RID_PROTECTED:
15613 case RID_PRIVATE:
15614 /* Consume the access-specifier. */
15615 cp_lexer_consume_token (parser->lexer);
15616 /* Remember which access-specifier is active. */
15617 current_access_specifier = token->u.value;
15618 /* Look for the `:'. */
15619 cp_parser_require (parser, CPP_COLON, "%<:%>");
15620 break;
15622 default:
15623 /* Accept #pragmas at class scope. */
15624 if (token->type == CPP_PRAGMA)
15626 cp_parser_pragma (parser, pragma_external);
15627 break;
15630 /* Otherwise, the next construction must be a
15631 member-declaration. */
15632 cp_parser_member_declaration (parser);
15637 /* Parse a member-declaration.
15639 member-declaration:
15640 decl-specifier-seq [opt] member-declarator-list [opt] ;
15641 function-definition ; [opt]
15642 :: [opt] nested-name-specifier template [opt] unqualified-id ;
15643 using-declaration
15644 template-declaration
15646 member-declarator-list:
15647 member-declarator
15648 member-declarator-list , member-declarator
15650 member-declarator:
15651 declarator pure-specifier [opt]
15652 declarator constant-initializer [opt]
15653 identifier [opt] : constant-expression
15655 GNU Extensions:
15657 member-declaration:
15658 __extension__ member-declaration
15660 member-declarator:
15661 declarator attributes [opt] pure-specifier [opt]
15662 declarator attributes [opt] constant-initializer [opt]
15663 identifier [opt] attributes [opt] : constant-expression
15665 C++0x Extensions:
15667 member-declaration:
15668 static_assert-declaration */
15670 static void
15671 cp_parser_member_declaration (cp_parser* parser)
15673 cp_decl_specifier_seq decl_specifiers;
15674 tree prefix_attributes;
15675 tree decl;
15676 int declares_class_or_enum;
15677 bool friend_p;
15678 cp_token *token = NULL;
15679 cp_token *decl_spec_token_start = NULL;
15680 cp_token *initializer_token_start = NULL;
15681 int saved_pedantic;
15683 /* Check for the `__extension__' keyword. */
15684 if (cp_parser_extension_opt (parser, &saved_pedantic))
15686 /* Recurse. */
15687 cp_parser_member_declaration (parser);
15688 /* Restore the old value of the PEDANTIC flag. */
15689 pedantic = saved_pedantic;
15691 return;
15694 /* Check for a template-declaration. */
15695 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
15697 /* An explicit specialization here is an error condition, and we
15698 expect the specialization handler to detect and report this. */
15699 if (cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_LESS
15700 && cp_lexer_peek_nth_token (parser->lexer, 3)->type == CPP_GREATER)
15701 cp_parser_explicit_specialization (parser);
15702 else
15703 cp_parser_template_declaration (parser, /*member_p=*/true);
15705 return;
15708 /* Check for a using-declaration. */
15709 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_USING))
15711 /* Parse the using-declaration. */
15712 cp_parser_using_declaration (parser,
15713 /*access_declaration_p=*/false);
15714 return;
15717 /* Check for @defs. */
15718 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_AT_DEFS))
15720 tree ivar, member;
15721 tree ivar_chains = cp_parser_objc_defs_expression (parser);
15722 ivar = ivar_chains;
15723 while (ivar)
15725 member = ivar;
15726 ivar = TREE_CHAIN (member);
15727 TREE_CHAIN (member) = NULL_TREE;
15728 finish_member_declaration (member);
15730 return;
15733 /* If the next token is `static_assert' we have a static assertion. */
15734 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_STATIC_ASSERT))
15736 cp_parser_static_assert (parser, /*member_p=*/true);
15737 return;
15740 if (cp_parser_using_declaration (parser, /*access_declaration=*/true))
15741 return;
15743 /* Parse the decl-specifier-seq. */
15744 decl_spec_token_start = cp_lexer_peek_token (parser->lexer);
15745 cp_parser_decl_specifier_seq (parser,
15746 CP_PARSER_FLAGS_OPTIONAL,
15747 &decl_specifiers,
15748 &declares_class_or_enum);
15749 prefix_attributes = decl_specifiers.attributes;
15750 decl_specifiers.attributes = NULL_TREE;
15751 /* Check for an invalid type-name. */
15752 if (!decl_specifiers.type
15753 && cp_parser_parse_and_diagnose_invalid_type_name (parser))
15754 return;
15755 /* If there is no declarator, then the decl-specifier-seq should
15756 specify a type. */
15757 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
15759 /* If there was no decl-specifier-seq, and the next token is a
15760 `;', then we have something like:
15762 struct S { ; };
15764 [class.mem]
15766 Each member-declaration shall declare at least one member
15767 name of the class. */
15768 if (!decl_specifiers.any_specifiers_p)
15770 cp_token *token = cp_lexer_peek_token (parser->lexer);
15771 if (!in_system_header_at (token->location))
15772 pedwarn (token->location, OPT_pedantic, "extra %<;%>");
15774 else
15776 tree type;
15778 /* See if this declaration is a friend. */
15779 friend_p = cp_parser_friend_p (&decl_specifiers);
15780 /* If there were decl-specifiers, check to see if there was
15781 a class-declaration. */
15782 type = check_tag_decl (&decl_specifiers);
15783 /* Nested classes have already been added to the class, but
15784 a `friend' needs to be explicitly registered. */
15785 if (friend_p)
15787 /* If the `friend' keyword was present, the friend must
15788 be introduced with a class-key. */
15789 if (!declares_class_or_enum)
15790 error ("%Ha class-key must be used when declaring a friend",
15791 &decl_spec_token_start->location);
15792 /* In this case:
15794 template <typename T> struct A {
15795 friend struct A<T>::B;
15798 A<T>::B will be represented by a TYPENAME_TYPE, and
15799 therefore not recognized by check_tag_decl. */
15800 if (!type
15801 && decl_specifiers.type
15802 && TYPE_P (decl_specifiers.type))
15803 type = decl_specifiers.type;
15804 if (!type || !TYPE_P (type))
15805 error ("%Hfriend declaration does not name a class or "
15806 "function", &decl_spec_token_start->location);
15807 else
15808 make_friend_class (current_class_type, type,
15809 /*complain=*/true);
15811 /* If there is no TYPE, an error message will already have
15812 been issued. */
15813 else if (!type || type == error_mark_node)
15815 /* An anonymous aggregate has to be handled specially; such
15816 a declaration really declares a data member (with a
15817 particular type), as opposed to a nested class. */
15818 else if (ANON_AGGR_TYPE_P (type))
15820 /* Remove constructors and such from TYPE, now that we
15821 know it is an anonymous aggregate. */
15822 fixup_anonymous_aggr (type);
15823 /* And make the corresponding data member. */
15824 decl = build_decl (FIELD_DECL, NULL_TREE, type);
15825 /* Add it to the class. */
15826 finish_member_declaration (decl);
15828 else
15829 cp_parser_check_access_in_redeclaration
15830 (TYPE_NAME (type),
15831 decl_spec_token_start->location);
15834 else
15836 /* See if these declarations will be friends. */
15837 friend_p = cp_parser_friend_p (&decl_specifiers);
15839 /* Keep going until we hit the `;' at the end of the
15840 declaration. */
15841 while (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
15843 tree attributes = NULL_TREE;
15844 tree first_attribute;
15846 /* Peek at the next token. */
15847 token = cp_lexer_peek_token (parser->lexer);
15849 /* Check for a bitfield declaration. */
15850 if (token->type == CPP_COLON
15851 || (token->type == CPP_NAME
15852 && cp_lexer_peek_nth_token (parser->lexer, 2)->type
15853 == CPP_COLON))
15855 tree identifier;
15856 tree width;
15858 /* Get the name of the bitfield. Note that we cannot just
15859 check TOKEN here because it may have been invalidated by
15860 the call to cp_lexer_peek_nth_token above. */
15861 if (cp_lexer_peek_token (parser->lexer)->type != CPP_COLON)
15862 identifier = cp_parser_identifier (parser);
15863 else
15864 identifier = NULL_TREE;
15866 /* Consume the `:' token. */
15867 cp_lexer_consume_token (parser->lexer);
15868 /* Get the width of the bitfield. */
15869 width
15870 = cp_parser_constant_expression (parser,
15871 /*allow_non_constant=*/false,
15872 NULL);
15874 /* Look for attributes that apply to the bitfield. */
15875 attributes = cp_parser_attributes_opt (parser);
15876 /* Remember which attributes are prefix attributes and
15877 which are not. */
15878 first_attribute = attributes;
15879 /* Combine the attributes. */
15880 attributes = chainon (prefix_attributes, attributes);
15882 /* Create the bitfield declaration. */
15883 decl = grokbitfield (identifier
15884 ? make_id_declarator (NULL_TREE,
15885 identifier,
15886 sfk_none)
15887 : NULL,
15888 &decl_specifiers,
15889 width,
15890 attributes);
15892 else
15894 cp_declarator *declarator;
15895 tree initializer;
15896 tree asm_specification;
15897 int ctor_dtor_or_conv_p;
15899 /* Parse the declarator. */
15900 declarator
15901 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
15902 &ctor_dtor_or_conv_p,
15903 /*parenthesized_p=*/NULL,
15904 /*member_p=*/true);
15906 /* If something went wrong parsing the declarator, make sure
15907 that we at least consume some tokens. */
15908 if (declarator == cp_error_declarator)
15910 /* Skip to the end of the statement. */
15911 cp_parser_skip_to_end_of_statement (parser);
15912 /* If the next token is not a semicolon, that is
15913 probably because we just skipped over the body of
15914 a function. So, we consume a semicolon if
15915 present, but do not issue an error message if it
15916 is not present. */
15917 if (cp_lexer_next_token_is (parser->lexer,
15918 CPP_SEMICOLON))
15919 cp_lexer_consume_token (parser->lexer);
15920 return;
15923 if (declares_class_or_enum & 2)
15924 cp_parser_check_for_definition_in_return_type
15925 (declarator, decl_specifiers.type,
15926 decl_specifiers.type_location);
15928 /* Look for an asm-specification. */
15929 asm_specification = cp_parser_asm_specification_opt (parser);
15930 /* Look for attributes that apply to the declaration. */
15931 attributes = cp_parser_attributes_opt (parser);
15932 /* Remember which attributes are prefix attributes and
15933 which are not. */
15934 first_attribute = attributes;
15935 /* Combine the attributes. */
15936 attributes = chainon (prefix_attributes, attributes);
15938 /* If it's an `=', then we have a constant-initializer or a
15939 pure-specifier. It is not correct to parse the
15940 initializer before registering the member declaration
15941 since the member declaration should be in scope while
15942 its initializer is processed. However, the rest of the
15943 front end does not yet provide an interface that allows
15944 us to handle this correctly. */
15945 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
15947 /* In [class.mem]:
15949 A pure-specifier shall be used only in the declaration of
15950 a virtual function.
15952 A member-declarator can contain a constant-initializer
15953 only if it declares a static member of integral or
15954 enumeration type.
15956 Therefore, if the DECLARATOR is for a function, we look
15957 for a pure-specifier; otherwise, we look for a
15958 constant-initializer. When we call `grokfield', it will
15959 perform more stringent semantics checks. */
15960 initializer_token_start = cp_lexer_peek_token (parser->lexer);
15961 if (function_declarator_p (declarator))
15962 initializer = cp_parser_pure_specifier (parser);
15963 else
15964 /* Parse the initializer. */
15965 initializer = cp_parser_constant_initializer (parser);
15967 /* Otherwise, there is no initializer. */
15968 else
15969 initializer = NULL_TREE;
15971 /* See if we are probably looking at a function
15972 definition. We are certainly not looking at a
15973 member-declarator. Calling `grokfield' has
15974 side-effects, so we must not do it unless we are sure
15975 that we are looking at a member-declarator. */
15976 if (cp_parser_token_starts_function_definition_p
15977 (cp_lexer_peek_token (parser->lexer)))
15979 /* The grammar does not allow a pure-specifier to be
15980 used when a member function is defined. (It is
15981 possible that this fact is an oversight in the
15982 standard, since a pure function may be defined
15983 outside of the class-specifier. */
15984 if (initializer)
15985 error ("%Hpure-specifier on function-definition",
15986 &initializer_token_start->location);
15987 decl = cp_parser_save_member_function_body (parser,
15988 &decl_specifiers,
15989 declarator,
15990 attributes);
15991 /* If the member was not a friend, declare it here. */
15992 if (!friend_p)
15993 finish_member_declaration (decl);
15994 /* Peek at the next token. */
15995 token = cp_lexer_peek_token (parser->lexer);
15996 /* If the next token is a semicolon, consume it. */
15997 if (token->type == CPP_SEMICOLON)
15998 cp_lexer_consume_token (parser->lexer);
15999 return;
16001 else
16002 if (declarator->kind == cdk_function)
16003 declarator->id_loc = token->location;
16004 /* Create the declaration. */
16005 decl = grokfield (declarator, &decl_specifiers,
16006 initializer, /*init_const_expr_p=*/true,
16007 asm_specification,
16008 attributes);
16011 /* Reset PREFIX_ATTRIBUTES. */
16012 while (attributes && TREE_CHAIN (attributes) != first_attribute)
16013 attributes = TREE_CHAIN (attributes);
16014 if (attributes)
16015 TREE_CHAIN (attributes) = NULL_TREE;
16017 /* If there is any qualification still in effect, clear it
16018 now; we will be starting fresh with the next declarator. */
16019 parser->scope = NULL_TREE;
16020 parser->qualifying_scope = NULL_TREE;
16021 parser->object_scope = NULL_TREE;
16022 /* If it's a `,', then there are more declarators. */
16023 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
16024 cp_lexer_consume_token (parser->lexer);
16025 /* If the next token isn't a `;', then we have a parse error. */
16026 else if (cp_lexer_next_token_is_not (parser->lexer,
16027 CPP_SEMICOLON))
16029 cp_parser_error (parser, "expected %<;%>");
16030 /* Skip tokens until we find a `;'. */
16031 cp_parser_skip_to_end_of_statement (parser);
16033 break;
16036 if (decl)
16038 /* Add DECL to the list of members. */
16039 if (!friend_p)
16040 finish_member_declaration (decl);
16042 if (TREE_CODE (decl) == FUNCTION_DECL)
16043 cp_parser_save_default_args (parser, decl);
16048 cp_parser_require (parser, CPP_SEMICOLON, "%<;%>");
16051 /* Parse a pure-specifier.
16053 pure-specifier:
16056 Returns INTEGER_ZERO_NODE if a pure specifier is found.
16057 Otherwise, ERROR_MARK_NODE is returned. */
16059 static tree
16060 cp_parser_pure_specifier (cp_parser* parser)
16062 cp_token *token;
16064 /* Look for the `=' token. */
16065 if (!cp_parser_require (parser, CPP_EQ, "%<=%>"))
16066 return error_mark_node;
16067 /* Look for the `0' token. */
16068 token = cp_lexer_peek_token (parser->lexer);
16070 if (token->type == CPP_EOF
16071 || token->type == CPP_PRAGMA_EOL)
16072 return error_mark_node;
16074 cp_lexer_consume_token (parser->lexer);
16076 /* Accept = default or = delete in c++0x mode. */
16077 if (token->keyword == RID_DEFAULT
16078 || token->keyword == RID_DELETE)
16080 maybe_warn_cpp0x ("defaulted and deleted functions");
16081 return token->u.value;
16084 /* c_lex_with_flags marks a single digit '0' with PURE_ZERO. */
16085 if (token->type != CPP_NUMBER || !(token->flags & PURE_ZERO))
16087 cp_parser_error (parser,
16088 "invalid pure specifier (only %<= 0%> is allowed)");
16089 cp_parser_skip_to_end_of_statement (parser);
16090 return error_mark_node;
16092 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
16094 error ("%Htemplates may not be %<virtual%>", &token->location);
16095 return error_mark_node;
16098 return integer_zero_node;
16101 /* Parse a constant-initializer.
16103 constant-initializer:
16104 = constant-expression
16106 Returns a representation of the constant-expression. */
16108 static tree
16109 cp_parser_constant_initializer (cp_parser* parser)
16111 /* Look for the `=' token. */
16112 if (!cp_parser_require (parser, CPP_EQ, "%<=%>"))
16113 return error_mark_node;
16115 /* It is invalid to write:
16117 struct S { static const int i = { 7 }; };
16120 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
16122 cp_parser_error (parser,
16123 "a brace-enclosed initializer is not allowed here");
16124 /* Consume the opening brace. */
16125 cp_lexer_consume_token (parser->lexer);
16126 /* Skip the initializer. */
16127 cp_parser_skip_to_closing_brace (parser);
16128 /* Look for the trailing `}'. */
16129 cp_parser_require (parser, CPP_CLOSE_BRACE, "%<}%>");
16131 return error_mark_node;
16134 return cp_parser_constant_expression (parser,
16135 /*allow_non_constant=*/false,
16136 NULL);
16139 /* Derived classes [gram.class.derived] */
16141 /* Parse a base-clause.
16143 base-clause:
16144 : base-specifier-list
16146 base-specifier-list:
16147 base-specifier ... [opt]
16148 base-specifier-list , base-specifier ... [opt]
16150 Returns a TREE_LIST representing the base-classes, in the order in
16151 which they were declared. The representation of each node is as
16152 described by cp_parser_base_specifier.
16154 In the case that no bases are specified, this function will return
16155 NULL_TREE, not ERROR_MARK_NODE. */
16157 static tree
16158 cp_parser_base_clause (cp_parser* parser)
16160 tree bases = NULL_TREE;
16162 /* Look for the `:' that begins the list. */
16163 cp_parser_require (parser, CPP_COLON, "%<:%>");
16165 /* Scan the base-specifier-list. */
16166 while (true)
16168 cp_token *token;
16169 tree base;
16170 bool pack_expansion_p = false;
16172 /* Look for the base-specifier. */
16173 base = cp_parser_base_specifier (parser);
16174 /* Look for the (optional) ellipsis. */
16175 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
16177 /* Consume the `...'. */
16178 cp_lexer_consume_token (parser->lexer);
16180 pack_expansion_p = true;
16183 /* Add BASE to the front of the list. */
16184 if (base != error_mark_node)
16186 if (pack_expansion_p)
16187 /* Make this a pack expansion type. */
16188 TREE_VALUE (base) = make_pack_expansion (TREE_VALUE (base));
16191 if (!check_for_bare_parameter_packs (TREE_VALUE (base)))
16193 TREE_CHAIN (base) = bases;
16194 bases = base;
16197 /* Peek at the next token. */
16198 token = cp_lexer_peek_token (parser->lexer);
16199 /* If it's not a comma, then the list is complete. */
16200 if (token->type != CPP_COMMA)
16201 break;
16202 /* Consume the `,'. */
16203 cp_lexer_consume_token (parser->lexer);
16206 /* PARSER->SCOPE may still be non-NULL at this point, if the last
16207 base class had a qualified name. However, the next name that
16208 appears is certainly not qualified. */
16209 parser->scope = NULL_TREE;
16210 parser->qualifying_scope = NULL_TREE;
16211 parser->object_scope = NULL_TREE;
16213 return nreverse (bases);
16216 /* Parse a base-specifier.
16218 base-specifier:
16219 :: [opt] nested-name-specifier [opt] class-name
16220 virtual access-specifier [opt] :: [opt] nested-name-specifier
16221 [opt] class-name
16222 access-specifier virtual [opt] :: [opt] nested-name-specifier
16223 [opt] class-name
16225 Returns a TREE_LIST. The TREE_PURPOSE will be one of
16226 ACCESS_{DEFAULT,PUBLIC,PROTECTED,PRIVATE}_[VIRTUAL]_NODE to
16227 indicate the specifiers provided. The TREE_VALUE will be a TYPE
16228 (or the ERROR_MARK_NODE) indicating the type that was specified. */
16230 static tree
16231 cp_parser_base_specifier (cp_parser* parser)
16233 cp_token *token;
16234 bool done = false;
16235 bool virtual_p = false;
16236 bool duplicate_virtual_error_issued_p = false;
16237 bool duplicate_access_error_issued_p = false;
16238 bool class_scope_p, template_p;
16239 tree access = access_default_node;
16240 tree type;
16242 /* Process the optional `virtual' and `access-specifier'. */
16243 while (!done)
16245 /* Peek at the next token. */
16246 token = cp_lexer_peek_token (parser->lexer);
16247 /* Process `virtual'. */
16248 switch (token->keyword)
16250 case RID_VIRTUAL:
16251 /* If `virtual' appears more than once, issue an error. */
16252 if (virtual_p && !duplicate_virtual_error_issued_p)
16254 cp_parser_error (parser,
16255 "%<virtual%> specified more than once in base-specified");
16256 duplicate_virtual_error_issued_p = true;
16259 virtual_p = true;
16261 /* Consume the `virtual' token. */
16262 cp_lexer_consume_token (parser->lexer);
16264 break;
16266 case RID_PUBLIC:
16267 case RID_PROTECTED:
16268 case RID_PRIVATE:
16269 /* If more than one access specifier appears, issue an
16270 error. */
16271 if (access != access_default_node
16272 && !duplicate_access_error_issued_p)
16274 cp_parser_error (parser,
16275 "more than one access specifier in base-specified");
16276 duplicate_access_error_issued_p = true;
16279 access = ridpointers[(int) token->keyword];
16281 /* Consume the access-specifier. */
16282 cp_lexer_consume_token (parser->lexer);
16284 break;
16286 default:
16287 done = true;
16288 break;
16291 /* It is not uncommon to see programs mechanically, erroneously, use
16292 the 'typename' keyword to denote (dependent) qualified types
16293 as base classes. */
16294 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TYPENAME))
16296 token = cp_lexer_peek_token (parser->lexer);
16297 if (!processing_template_decl)
16298 error ("%Hkeyword %<typename%> not allowed outside of templates",
16299 &token->location);
16300 else
16301 error ("%Hkeyword %<typename%> not allowed in this context "
16302 "(the base class is implicitly a type)",
16303 &token->location);
16304 cp_lexer_consume_token (parser->lexer);
16307 /* Look for the optional `::' operator. */
16308 cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/false);
16309 /* Look for the nested-name-specifier. The simplest way to
16310 implement:
16312 [temp.res]
16314 The keyword `typename' is not permitted in a base-specifier or
16315 mem-initializer; in these contexts a qualified name that
16316 depends on a template-parameter is implicitly assumed to be a
16317 type name.
16319 is to pretend that we have seen the `typename' keyword at this
16320 point. */
16321 cp_parser_nested_name_specifier_opt (parser,
16322 /*typename_keyword_p=*/true,
16323 /*check_dependency_p=*/true,
16324 typename_type,
16325 /*is_declaration=*/true);
16326 /* If the base class is given by a qualified name, assume that names
16327 we see are type names or templates, as appropriate. */
16328 class_scope_p = (parser->scope && TYPE_P (parser->scope));
16329 template_p = class_scope_p && cp_parser_optional_template_keyword (parser);
16331 /* Finally, look for the class-name. */
16332 type = cp_parser_class_name (parser,
16333 class_scope_p,
16334 template_p,
16335 typename_type,
16336 /*check_dependency_p=*/true,
16337 /*class_head_p=*/false,
16338 /*is_declaration=*/true);
16340 if (type == error_mark_node)
16341 return error_mark_node;
16343 return finish_base_specifier (TREE_TYPE (type), access, virtual_p);
16346 /* Exception handling [gram.exception] */
16348 /* Parse an (optional) exception-specification.
16350 exception-specification:
16351 throw ( type-id-list [opt] )
16353 Returns a TREE_LIST representing the exception-specification. The
16354 TREE_VALUE of each node is a type. */
16356 static tree
16357 cp_parser_exception_specification_opt (cp_parser* parser)
16359 cp_token *token;
16360 tree type_id_list;
16362 /* Peek at the next token. */
16363 token = cp_lexer_peek_token (parser->lexer);
16364 /* If it's not `throw', then there's no exception-specification. */
16365 if (!cp_parser_is_keyword (token, RID_THROW))
16366 return NULL_TREE;
16368 /* Consume the `throw'. */
16369 cp_lexer_consume_token (parser->lexer);
16371 /* Look for the `('. */
16372 cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>");
16374 /* Peek at the next token. */
16375 token = cp_lexer_peek_token (parser->lexer);
16376 /* If it's not a `)', then there is a type-id-list. */
16377 if (token->type != CPP_CLOSE_PAREN)
16379 const char *saved_message;
16381 /* Types may not be defined in an exception-specification. */
16382 saved_message = parser->type_definition_forbidden_message;
16383 parser->type_definition_forbidden_message
16384 = "types may not be defined in an exception-specification";
16385 /* Parse the type-id-list. */
16386 type_id_list = cp_parser_type_id_list (parser);
16387 /* Restore the saved message. */
16388 parser->type_definition_forbidden_message = saved_message;
16390 else
16391 type_id_list = empty_except_spec;
16393 /* Look for the `)'. */
16394 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
16396 return type_id_list;
16399 /* Parse an (optional) type-id-list.
16401 type-id-list:
16402 type-id ... [opt]
16403 type-id-list , type-id ... [opt]
16405 Returns a TREE_LIST. The TREE_VALUE of each node is a TYPE,
16406 in the order that the types were presented. */
16408 static tree
16409 cp_parser_type_id_list (cp_parser* parser)
16411 tree types = NULL_TREE;
16413 while (true)
16415 cp_token *token;
16416 tree type;
16418 /* Get the next type-id. */
16419 type = cp_parser_type_id (parser);
16420 /* Parse the optional ellipsis. */
16421 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
16423 /* Consume the `...'. */
16424 cp_lexer_consume_token (parser->lexer);
16426 /* Turn the type into a pack expansion expression. */
16427 type = make_pack_expansion (type);
16429 /* Add it to the list. */
16430 types = add_exception_specifier (types, type, /*complain=*/1);
16431 /* Peek at the next token. */
16432 token = cp_lexer_peek_token (parser->lexer);
16433 /* If it is not a `,', we are done. */
16434 if (token->type != CPP_COMMA)
16435 break;
16436 /* Consume the `,'. */
16437 cp_lexer_consume_token (parser->lexer);
16440 return nreverse (types);
16443 /* Parse a try-block.
16445 try-block:
16446 try compound-statement handler-seq */
16448 static tree
16449 cp_parser_try_block (cp_parser* parser)
16451 tree try_block;
16453 cp_parser_require_keyword (parser, RID_TRY, "%<try%>");
16454 try_block = begin_try_block ();
16455 cp_parser_compound_statement (parser, NULL, true);
16456 finish_try_block (try_block);
16457 cp_parser_handler_seq (parser);
16458 finish_handler_sequence (try_block);
16460 return try_block;
16463 /* Parse a function-try-block.
16465 function-try-block:
16466 try ctor-initializer [opt] function-body handler-seq */
16468 static bool
16469 cp_parser_function_try_block (cp_parser* parser)
16471 tree compound_stmt;
16472 tree try_block;
16473 bool ctor_initializer_p;
16475 /* Look for the `try' keyword. */
16476 if (!cp_parser_require_keyword (parser, RID_TRY, "%<try%>"))
16477 return false;
16478 /* Let the rest of the front end know where we are. */
16479 try_block = begin_function_try_block (&compound_stmt);
16480 /* Parse the function-body. */
16481 ctor_initializer_p
16482 = cp_parser_ctor_initializer_opt_and_function_body (parser);
16483 /* We're done with the `try' part. */
16484 finish_function_try_block (try_block);
16485 /* Parse the handlers. */
16486 cp_parser_handler_seq (parser);
16487 /* We're done with the handlers. */
16488 finish_function_handler_sequence (try_block, compound_stmt);
16490 return ctor_initializer_p;
16493 /* Parse a handler-seq.
16495 handler-seq:
16496 handler handler-seq [opt] */
16498 static void
16499 cp_parser_handler_seq (cp_parser* parser)
16501 while (true)
16503 cp_token *token;
16505 /* Parse the handler. */
16506 cp_parser_handler (parser);
16507 /* Peek at the next token. */
16508 token = cp_lexer_peek_token (parser->lexer);
16509 /* If it's not `catch' then there are no more handlers. */
16510 if (!cp_parser_is_keyword (token, RID_CATCH))
16511 break;
16515 /* Parse a handler.
16517 handler:
16518 catch ( exception-declaration ) compound-statement */
16520 static void
16521 cp_parser_handler (cp_parser* parser)
16523 tree handler;
16524 tree declaration;
16526 cp_parser_require_keyword (parser, RID_CATCH, "%<catch%>");
16527 handler = begin_handler ();
16528 cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>");
16529 declaration = cp_parser_exception_declaration (parser);
16530 finish_handler_parms (declaration, handler);
16531 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
16532 cp_parser_compound_statement (parser, NULL, false);
16533 finish_handler (handler);
16536 /* Parse an exception-declaration.
16538 exception-declaration:
16539 type-specifier-seq declarator
16540 type-specifier-seq abstract-declarator
16541 type-specifier-seq
16544 Returns a VAR_DECL for the declaration, or NULL_TREE if the
16545 ellipsis variant is used. */
16547 static tree
16548 cp_parser_exception_declaration (cp_parser* parser)
16550 cp_decl_specifier_seq type_specifiers;
16551 cp_declarator *declarator;
16552 const char *saved_message;
16554 /* If it's an ellipsis, it's easy to handle. */
16555 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
16557 /* Consume the `...' token. */
16558 cp_lexer_consume_token (parser->lexer);
16559 return NULL_TREE;
16562 /* Types may not be defined in exception-declarations. */
16563 saved_message = parser->type_definition_forbidden_message;
16564 parser->type_definition_forbidden_message
16565 = "types may not be defined in exception-declarations";
16567 /* Parse the type-specifier-seq. */
16568 cp_parser_type_specifier_seq (parser, /*is_condition=*/false,
16569 &type_specifiers);
16570 /* If it's a `)', then there is no declarator. */
16571 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN))
16572 declarator = NULL;
16573 else
16574 declarator = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_EITHER,
16575 /*ctor_dtor_or_conv_p=*/NULL,
16576 /*parenthesized_p=*/NULL,
16577 /*member_p=*/false);
16579 /* Restore the saved message. */
16580 parser->type_definition_forbidden_message = saved_message;
16582 if (!type_specifiers.any_specifiers_p)
16583 return error_mark_node;
16585 return grokdeclarator (declarator, &type_specifiers, CATCHPARM, 1, NULL);
16588 /* Parse a throw-expression.
16590 throw-expression:
16591 throw assignment-expression [opt]
16593 Returns a THROW_EXPR representing the throw-expression. */
16595 static tree
16596 cp_parser_throw_expression (cp_parser* parser)
16598 tree expression;
16599 cp_token* token;
16601 cp_parser_require_keyword (parser, RID_THROW, "%<throw%>");
16602 token = cp_lexer_peek_token (parser->lexer);
16603 /* Figure out whether or not there is an assignment-expression
16604 following the "throw" keyword. */
16605 if (token->type == CPP_COMMA
16606 || token->type == CPP_SEMICOLON
16607 || token->type == CPP_CLOSE_PAREN
16608 || token->type == CPP_CLOSE_SQUARE
16609 || token->type == CPP_CLOSE_BRACE
16610 || token->type == CPP_COLON)
16611 expression = NULL_TREE;
16612 else
16613 expression = cp_parser_assignment_expression (parser,
16614 /*cast_p=*/false, NULL);
16616 return build_throw (expression);
16619 /* GNU Extensions */
16621 /* Parse an (optional) asm-specification.
16623 asm-specification:
16624 asm ( string-literal )
16626 If the asm-specification is present, returns a STRING_CST
16627 corresponding to the string-literal. Otherwise, returns
16628 NULL_TREE. */
16630 static tree
16631 cp_parser_asm_specification_opt (cp_parser* parser)
16633 cp_token *token;
16634 tree asm_specification;
16636 /* Peek at the next token. */
16637 token = cp_lexer_peek_token (parser->lexer);
16638 /* If the next token isn't the `asm' keyword, then there's no
16639 asm-specification. */
16640 if (!cp_parser_is_keyword (token, RID_ASM))
16641 return NULL_TREE;
16643 /* Consume the `asm' token. */
16644 cp_lexer_consume_token (parser->lexer);
16645 /* Look for the `('. */
16646 cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>");
16648 /* Look for the string-literal. */
16649 asm_specification = cp_parser_string_literal (parser, false, false);
16651 /* Look for the `)'. */
16652 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
16654 return asm_specification;
16657 /* Parse an asm-operand-list.
16659 asm-operand-list:
16660 asm-operand
16661 asm-operand-list , asm-operand
16663 asm-operand:
16664 string-literal ( expression )
16665 [ string-literal ] string-literal ( expression )
16667 Returns a TREE_LIST representing the operands. The TREE_VALUE of
16668 each node is the expression. The TREE_PURPOSE is itself a
16669 TREE_LIST whose TREE_PURPOSE is a STRING_CST for the bracketed
16670 string-literal (or NULL_TREE if not present) and whose TREE_VALUE
16671 is a STRING_CST for the string literal before the parenthesis. Returns
16672 ERROR_MARK_NODE if any of the operands are invalid. */
16674 static tree
16675 cp_parser_asm_operand_list (cp_parser* parser)
16677 tree asm_operands = NULL_TREE;
16678 bool invalid_operands = false;
16680 while (true)
16682 tree string_literal;
16683 tree expression;
16684 tree name;
16686 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
16688 /* Consume the `[' token. */
16689 cp_lexer_consume_token (parser->lexer);
16690 /* Read the operand name. */
16691 name = cp_parser_identifier (parser);
16692 if (name != error_mark_node)
16693 name = build_string (IDENTIFIER_LENGTH (name),
16694 IDENTIFIER_POINTER (name));
16695 /* Look for the closing `]'. */
16696 cp_parser_require (parser, CPP_CLOSE_SQUARE, "%<]%>");
16698 else
16699 name = NULL_TREE;
16700 /* Look for the string-literal. */
16701 string_literal = cp_parser_string_literal (parser, false, false);
16703 /* Look for the `('. */
16704 cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>");
16705 /* Parse the expression. */
16706 expression = cp_parser_expression (parser, /*cast_p=*/false, NULL);
16707 /* Look for the `)'. */
16708 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
16710 if (name == error_mark_node
16711 || string_literal == error_mark_node
16712 || expression == error_mark_node)
16713 invalid_operands = true;
16715 /* Add this operand to the list. */
16716 asm_operands = tree_cons (build_tree_list (name, string_literal),
16717 expression,
16718 asm_operands);
16719 /* If the next token is not a `,', there are no more
16720 operands. */
16721 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
16722 break;
16723 /* Consume the `,'. */
16724 cp_lexer_consume_token (parser->lexer);
16727 return invalid_operands ? error_mark_node : nreverse (asm_operands);
16730 /* Parse an asm-clobber-list.
16732 asm-clobber-list:
16733 string-literal
16734 asm-clobber-list , string-literal
16736 Returns a TREE_LIST, indicating the clobbers in the order that they
16737 appeared. The TREE_VALUE of each node is a STRING_CST. */
16739 static tree
16740 cp_parser_asm_clobber_list (cp_parser* parser)
16742 tree clobbers = NULL_TREE;
16744 while (true)
16746 tree string_literal;
16748 /* Look for the string literal. */
16749 string_literal = cp_parser_string_literal (parser, false, false);
16750 /* Add it to the list. */
16751 clobbers = tree_cons (NULL_TREE, string_literal, clobbers);
16752 /* If the next token is not a `,', then the list is
16753 complete. */
16754 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
16755 break;
16756 /* Consume the `,' token. */
16757 cp_lexer_consume_token (parser->lexer);
16760 return clobbers;
16763 /* Parse an (optional) series of attributes.
16765 attributes:
16766 attributes attribute
16768 attribute:
16769 __attribute__ (( attribute-list [opt] ))
16771 The return value is as for cp_parser_attribute_list. */
16773 static tree
16774 cp_parser_attributes_opt (cp_parser* parser)
16776 tree attributes = NULL_TREE;
16778 while (true)
16780 cp_token *token;
16781 tree attribute_list;
16783 /* Peek at the next token. */
16784 token = cp_lexer_peek_token (parser->lexer);
16785 /* If it's not `__attribute__', then we're done. */
16786 if (token->keyword != RID_ATTRIBUTE)
16787 break;
16789 /* Consume the `__attribute__' keyword. */
16790 cp_lexer_consume_token (parser->lexer);
16791 /* Look for the two `(' tokens. */
16792 cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>");
16793 cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>");
16795 /* Peek at the next token. */
16796 token = cp_lexer_peek_token (parser->lexer);
16797 if (token->type != CPP_CLOSE_PAREN)
16798 /* Parse the attribute-list. */
16799 attribute_list = cp_parser_attribute_list (parser);
16800 else
16801 /* If the next token is a `)', then there is no attribute
16802 list. */
16803 attribute_list = NULL;
16805 /* Look for the two `)' tokens. */
16806 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
16807 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
16809 /* Add these new attributes to the list. */
16810 attributes = chainon (attributes, attribute_list);
16813 return attributes;
16816 /* Parse an attribute-list.
16818 attribute-list:
16819 attribute
16820 attribute-list , attribute
16822 attribute:
16823 identifier
16824 identifier ( identifier )
16825 identifier ( identifier , expression-list )
16826 identifier ( expression-list )
16828 Returns a TREE_LIST, or NULL_TREE on error. Each node corresponds
16829 to an attribute. The TREE_PURPOSE of each node is the identifier
16830 indicating which attribute is in use. The TREE_VALUE represents
16831 the arguments, if any. */
16833 static tree
16834 cp_parser_attribute_list (cp_parser* parser)
16836 tree attribute_list = NULL_TREE;
16837 bool save_translate_strings_p = parser->translate_strings_p;
16839 parser->translate_strings_p = false;
16840 while (true)
16842 cp_token *token;
16843 tree identifier;
16844 tree attribute;
16846 /* Look for the identifier. We also allow keywords here; for
16847 example `__attribute__ ((const))' is legal. */
16848 token = cp_lexer_peek_token (parser->lexer);
16849 if (token->type == CPP_NAME
16850 || token->type == CPP_KEYWORD)
16852 tree arguments = NULL_TREE;
16854 /* Consume the token. */
16855 token = cp_lexer_consume_token (parser->lexer);
16857 /* Save away the identifier that indicates which attribute
16858 this is. */
16859 identifier = token->u.value;
16860 attribute = build_tree_list (identifier, NULL_TREE);
16862 /* Peek at the next token. */
16863 token = cp_lexer_peek_token (parser->lexer);
16864 /* If it's an `(', then parse the attribute arguments. */
16865 if (token->type == CPP_OPEN_PAREN)
16867 arguments = cp_parser_parenthesized_expression_list
16868 (parser, true, /*cast_p=*/false,
16869 /*allow_expansion_p=*/false,
16870 /*non_constant_p=*/NULL);
16871 /* Save the arguments away. */
16872 TREE_VALUE (attribute) = arguments;
16875 if (arguments != error_mark_node)
16877 /* Add this attribute to the list. */
16878 TREE_CHAIN (attribute) = attribute_list;
16879 attribute_list = attribute;
16882 token = cp_lexer_peek_token (parser->lexer);
16884 /* Now, look for more attributes. If the next token isn't a
16885 `,', we're done. */
16886 if (token->type != CPP_COMMA)
16887 break;
16889 /* Consume the comma and keep going. */
16890 cp_lexer_consume_token (parser->lexer);
16892 parser->translate_strings_p = save_translate_strings_p;
16894 /* We built up the list in reverse order. */
16895 return nreverse (attribute_list);
16898 /* Parse an optional `__extension__' keyword. Returns TRUE if it is
16899 present, and FALSE otherwise. *SAVED_PEDANTIC is set to the
16900 current value of the PEDANTIC flag, regardless of whether or not
16901 the `__extension__' keyword is present. The caller is responsible
16902 for restoring the value of the PEDANTIC flag. */
16904 static bool
16905 cp_parser_extension_opt (cp_parser* parser, int* saved_pedantic)
16907 /* Save the old value of the PEDANTIC flag. */
16908 *saved_pedantic = pedantic;
16910 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_EXTENSION))
16912 /* Consume the `__extension__' token. */
16913 cp_lexer_consume_token (parser->lexer);
16914 /* We're not being pedantic while the `__extension__' keyword is
16915 in effect. */
16916 pedantic = 0;
16918 return true;
16921 return false;
16924 /* Parse a label declaration.
16926 label-declaration:
16927 __label__ label-declarator-seq ;
16929 label-declarator-seq:
16930 identifier , label-declarator-seq
16931 identifier */
16933 static void
16934 cp_parser_label_declaration (cp_parser* parser)
16936 /* Look for the `__label__' keyword. */
16937 cp_parser_require_keyword (parser, RID_LABEL, "%<__label__%>");
16939 while (true)
16941 tree identifier;
16943 /* Look for an identifier. */
16944 identifier = cp_parser_identifier (parser);
16945 /* If we failed, stop. */
16946 if (identifier == error_mark_node)
16947 break;
16948 /* Declare it as a label. */
16949 finish_label_decl (identifier);
16950 /* If the next token is a `;', stop. */
16951 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
16952 break;
16953 /* Look for the `,' separating the label declarations. */
16954 cp_parser_require (parser, CPP_COMMA, "%<,%>");
16957 /* Look for the final `;'. */
16958 cp_parser_require (parser, CPP_SEMICOLON, "%<;%>");
16961 /* Support Functions */
16963 /* Looks up NAME in the current scope, as given by PARSER->SCOPE.
16964 NAME should have one of the representations used for an
16965 id-expression. If NAME is the ERROR_MARK_NODE, the ERROR_MARK_NODE
16966 is returned. If PARSER->SCOPE is a dependent type, then a
16967 SCOPE_REF is returned.
16969 If NAME is a TEMPLATE_ID_EXPR, then it will be immediately
16970 returned; the name was already resolved when the TEMPLATE_ID_EXPR
16971 was formed. Abstractly, such entities should not be passed to this
16972 function, because they do not need to be looked up, but it is
16973 simpler to check for this special case here, rather than at the
16974 call-sites.
16976 In cases not explicitly covered above, this function returns a
16977 DECL, OVERLOAD, or baselink representing the result of the lookup.
16978 If there was no entity with the indicated NAME, the ERROR_MARK_NODE
16979 is returned.
16981 If TAG_TYPE is not NONE_TYPE, it indicates an explicit type keyword
16982 (e.g., "struct") that was used. In that case bindings that do not
16983 refer to types are ignored.
16985 If IS_TEMPLATE is TRUE, bindings that do not refer to templates are
16986 ignored.
16988 If IS_NAMESPACE is TRUE, bindings that do not refer to namespaces
16989 are ignored.
16991 If CHECK_DEPENDENCY is TRUE, names are not looked up in dependent
16992 types.
16994 If AMBIGUOUS_DECLS is non-NULL, *AMBIGUOUS_DECLS is set to a
16995 TREE_LIST of candidates if name-lookup results in an ambiguity, and
16996 NULL_TREE otherwise. */
16998 static tree
16999 cp_parser_lookup_name (cp_parser *parser, tree name,
17000 enum tag_types tag_type,
17001 bool is_template,
17002 bool is_namespace,
17003 bool check_dependency,
17004 tree *ambiguous_decls,
17005 location_t name_location)
17007 int flags = 0;
17008 tree decl;
17009 tree object_type = parser->context->object_type;
17011 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
17012 flags |= LOOKUP_COMPLAIN;
17014 /* Assume that the lookup will be unambiguous. */
17015 if (ambiguous_decls)
17016 *ambiguous_decls = NULL_TREE;
17018 /* Now that we have looked up the name, the OBJECT_TYPE (if any) is
17019 no longer valid. Note that if we are parsing tentatively, and
17020 the parse fails, OBJECT_TYPE will be automatically restored. */
17021 parser->context->object_type = NULL_TREE;
17023 if (name == error_mark_node)
17024 return error_mark_node;
17026 /* A template-id has already been resolved; there is no lookup to
17027 do. */
17028 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
17029 return name;
17030 if (BASELINK_P (name))
17032 gcc_assert (TREE_CODE (BASELINK_FUNCTIONS (name))
17033 == TEMPLATE_ID_EXPR);
17034 return name;
17037 /* A BIT_NOT_EXPR is used to represent a destructor. By this point,
17038 it should already have been checked to make sure that the name
17039 used matches the type being destroyed. */
17040 if (TREE_CODE (name) == BIT_NOT_EXPR)
17042 tree type;
17044 /* Figure out to which type this destructor applies. */
17045 if (parser->scope)
17046 type = parser->scope;
17047 else if (object_type)
17048 type = object_type;
17049 else
17050 type = current_class_type;
17051 /* If that's not a class type, there is no destructor. */
17052 if (!type || !CLASS_TYPE_P (type))
17053 return error_mark_node;
17054 if (CLASSTYPE_LAZY_DESTRUCTOR (type))
17055 lazily_declare_fn (sfk_destructor, type);
17056 if (!CLASSTYPE_DESTRUCTORS (type))
17057 return error_mark_node;
17058 /* If it was a class type, return the destructor. */
17059 return CLASSTYPE_DESTRUCTORS (type);
17062 /* By this point, the NAME should be an ordinary identifier. If
17063 the id-expression was a qualified name, the qualifying scope is
17064 stored in PARSER->SCOPE at this point. */
17065 gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE);
17067 /* Perform the lookup. */
17068 if (parser->scope)
17070 bool dependent_p;
17072 if (parser->scope == error_mark_node)
17073 return error_mark_node;
17075 /* If the SCOPE is dependent, the lookup must be deferred until
17076 the template is instantiated -- unless we are explicitly
17077 looking up names in uninstantiated templates. Even then, we
17078 cannot look up the name if the scope is not a class type; it
17079 might, for example, be a template type parameter. */
17080 dependent_p = (TYPE_P (parser->scope)
17081 && dependent_scope_p (parser->scope));
17082 if ((check_dependency || !CLASS_TYPE_P (parser->scope))
17083 && dependent_p)
17084 /* Defer lookup. */
17085 decl = error_mark_node;
17086 else
17088 tree pushed_scope = NULL_TREE;
17090 /* If PARSER->SCOPE is a dependent type, then it must be a
17091 class type, and we must not be checking dependencies;
17092 otherwise, we would have processed this lookup above. So
17093 that PARSER->SCOPE is not considered a dependent base by
17094 lookup_member, we must enter the scope here. */
17095 if (dependent_p)
17096 pushed_scope = push_scope (parser->scope);
17097 /* If the PARSER->SCOPE is a template specialization, it
17098 may be instantiated during name lookup. In that case,
17099 errors may be issued. Even if we rollback the current
17100 tentative parse, those errors are valid. */
17101 decl = lookup_qualified_name (parser->scope, name,
17102 tag_type != none_type,
17103 /*complain=*/true);
17105 /* If we have a single function from a using decl, pull it out. */
17106 if (TREE_CODE (decl) == OVERLOAD
17107 && !really_overloaded_fn (decl))
17108 decl = OVL_FUNCTION (decl);
17110 if (pushed_scope)
17111 pop_scope (pushed_scope);
17114 /* If the scope is a dependent type and either we deferred lookup or
17115 we did lookup but didn't find the name, rememeber the name. */
17116 if (decl == error_mark_node && TYPE_P (parser->scope)
17117 && dependent_type_p (parser->scope))
17119 if (tag_type)
17121 tree type;
17123 /* The resolution to Core Issue 180 says that `struct
17124 A::B' should be considered a type-name, even if `A'
17125 is dependent. */
17126 type = make_typename_type (parser->scope, name, tag_type,
17127 /*complain=*/tf_error);
17128 decl = TYPE_NAME (type);
17130 else if (is_template
17131 && (cp_parser_next_token_ends_template_argument_p (parser)
17132 || cp_lexer_next_token_is (parser->lexer,
17133 CPP_CLOSE_PAREN)))
17134 decl = make_unbound_class_template (parser->scope,
17135 name, NULL_TREE,
17136 /*complain=*/tf_error);
17137 else
17138 decl = build_qualified_name (/*type=*/NULL_TREE,
17139 parser->scope, name,
17140 is_template);
17142 parser->qualifying_scope = parser->scope;
17143 parser->object_scope = NULL_TREE;
17145 else if (object_type)
17147 tree object_decl = NULL_TREE;
17148 /* Look up the name in the scope of the OBJECT_TYPE, unless the
17149 OBJECT_TYPE is not a class. */
17150 if (CLASS_TYPE_P (object_type))
17151 /* If the OBJECT_TYPE is a template specialization, it may
17152 be instantiated during name lookup. In that case, errors
17153 may be issued. Even if we rollback the current tentative
17154 parse, those errors are valid. */
17155 object_decl = lookup_member (object_type,
17156 name,
17157 /*protect=*/0,
17158 tag_type != none_type);
17159 /* Look it up in the enclosing context, too. */
17160 decl = lookup_name_real (name, tag_type != none_type,
17161 /*nonclass=*/0,
17162 /*block_p=*/true, is_namespace, flags);
17163 parser->object_scope = object_type;
17164 parser->qualifying_scope = NULL_TREE;
17165 if (object_decl)
17166 decl = object_decl;
17168 else
17170 decl = lookup_name_real (name, tag_type != none_type,
17171 /*nonclass=*/0,
17172 /*block_p=*/true, is_namespace, flags);
17173 parser->qualifying_scope = NULL_TREE;
17174 parser->object_scope = NULL_TREE;
17177 /* If the lookup failed, let our caller know. */
17178 if (!decl || decl == error_mark_node)
17179 return error_mark_node;
17181 /* If it's a TREE_LIST, the result of the lookup was ambiguous. */
17182 if (TREE_CODE (decl) == TREE_LIST)
17184 if (ambiguous_decls)
17185 *ambiguous_decls = decl;
17186 /* The error message we have to print is too complicated for
17187 cp_parser_error, so we incorporate its actions directly. */
17188 if (!cp_parser_simulate_error (parser))
17190 error ("%Hreference to %qD is ambiguous",
17191 &name_location, name);
17192 print_candidates (decl);
17194 return error_mark_node;
17197 gcc_assert (DECL_P (decl)
17198 || TREE_CODE (decl) == OVERLOAD
17199 || TREE_CODE (decl) == SCOPE_REF
17200 || TREE_CODE (decl) == UNBOUND_CLASS_TEMPLATE
17201 || BASELINK_P (decl));
17203 /* If we have resolved the name of a member declaration, check to
17204 see if the declaration is accessible. When the name resolves to
17205 set of overloaded functions, accessibility is checked when
17206 overload resolution is done.
17208 During an explicit instantiation, access is not checked at all,
17209 as per [temp.explicit]. */
17210 if (DECL_P (decl))
17211 check_accessibility_of_qualified_id (decl, object_type, parser->scope);
17213 return decl;
17216 /* Like cp_parser_lookup_name, but for use in the typical case where
17217 CHECK_ACCESS is TRUE, IS_TYPE is FALSE, IS_TEMPLATE is FALSE,
17218 IS_NAMESPACE is FALSE, and CHECK_DEPENDENCY is TRUE. */
17220 static tree
17221 cp_parser_lookup_name_simple (cp_parser* parser, tree name, location_t location)
17223 return cp_parser_lookup_name (parser, name,
17224 none_type,
17225 /*is_template=*/false,
17226 /*is_namespace=*/false,
17227 /*check_dependency=*/true,
17228 /*ambiguous_decls=*/NULL,
17229 location);
17232 /* If DECL is a TEMPLATE_DECL that can be treated like a TYPE_DECL in
17233 the current context, return the TYPE_DECL. If TAG_NAME_P is
17234 true, the DECL indicates the class being defined in a class-head,
17235 or declared in an elaborated-type-specifier.
17237 Otherwise, return DECL. */
17239 static tree
17240 cp_parser_maybe_treat_template_as_class (tree decl, bool tag_name_p)
17242 /* If the TEMPLATE_DECL is being declared as part of a class-head,
17243 the translation from TEMPLATE_DECL to TYPE_DECL occurs:
17245 struct A {
17246 template <typename T> struct B;
17249 template <typename T> struct A::B {};
17251 Similarly, in an elaborated-type-specifier:
17253 namespace N { struct X{}; }
17255 struct A {
17256 template <typename T> friend struct N::X;
17259 However, if the DECL refers to a class type, and we are in
17260 the scope of the class, then the name lookup automatically
17261 finds the TYPE_DECL created by build_self_reference rather
17262 than a TEMPLATE_DECL. For example, in:
17264 template <class T> struct S {
17265 S s;
17268 there is no need to handle such case. */
17270 if (DECL_CLASS_TEMPLATE_P (decl) && tag_name_p)
17271 return DECL_TEMPLATE_RESULT (decl);
17273 return decl;
17276 /* If too many, or too few, template-parameter lists apply to the
17277 declarator, issue an error message. Returns TRUE if all went well,
17278 and FALSE otherwise. */
17280 static bool
17281 cp_parser_check_declarator_template_parameters (cp_parser* parser,
17282 cp_declarator *declarator,
17283 location_t declarator_location)
17285 unsigned num_templates;
17287 /* We haven't seen any classes that involve template parameters yet. */
17288 num_templates = 0;
17290 switch (declarator->kind)
17292 case cdk_id:
17293 if (declarator->u.id.qualifying_scope)
17295 tree scope;
17296 tree member;
17298 scope = declarator->u.id.qualifying_scope;
17299 member = declarator->u.id.unqualified_name;
17301 while (scope && CLASS_TYPE_P (scope))
17303 /* You're supposed to have one `template <...>'
17304 for every template class, but you don't need one
17305 for a full specialization. For example:
17307 template <class T> struct S{};
17308 template <> struct S<int> { void f(); };
17309 void S<int>::f () {}
17311 is correct; there shouldn't be a `template <>' for
17312 the definition of `S<int>::f'. */
17313 if (!CLASSTYPE_TEMPLATE_INFO (scope))
17314 /* If SCOPE does not have template information of any
17315 kind, then it is not a template, nor is it nested
17316 within a template. */
17317 break;
17318 if (explicit_class_specialization_p (scope))
17319 break;
17320 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (scope)))
17321 ++num_templates;
17323 scope = TYPE_CONTEXT (scope);
17326 else if (TREE_CODE (declarator->u.id.unqualified_name)
17327 == TEMPLATE_ID_EXPR)
17328 /* If the DECLARATOR has the form `X<y>' then it uses one
17329 additional level of template parameters. */
17330 ++num_templates;
17332 return cp_parser_check_template_parameters (parser,
17333 num_templates,
17334 declarator_location);
17336 case cdk_function:
17337 case cdk_array:
17338 case cdk_pointer:
17339 case cdk_reference:
17340 case cdk_ptrmem:
17341 return (cp_parser_check_declarator_template_parameters
17342 (parser, declarator->declarator, declarator_location));
17344 case cdk_error:
17345 return true;
17347 default:
17348 gcc_unreachable ();
17350 return false;
17353 /* NUM_TEMPLATES were used in the current declaration. If that is
17354 invalid, return FALSE and issue an error messages. Otherwise,
17355 return TRUE. */
17357 static bool
17358 cp_parser_check_template_parameters (cp_parser* parser,
17359 unsigned num_templates,
17360 location_t location)
17362 /* If there are more template classes than parameter lists, we have
17363 something like:
17365 template <class T> void S<T>::R<T>::f (); */
17366 if (parser->num_template_parameter_lists < num_templates)
17368 error ("%Htoo few template-parameter-lists", &location);
17369 return false;
17371 /* If there are the same number of template classes and parameter
17372 lists, that's OK. */
17373 if (parser->num_template_parameter_lists == num_templates)
17374 return true;
17375 /* If there are more, but only one more, then we are referring to a
17376 member template. That's OK too. */
17377 if (parser->num_template_parameter_lists == num_templates + 1)
17378 return true;
17379 /* Otherwise, there are too many template parameter lists. We have
17380 something like:
17382 template <class T> template <class U> void S::f(); */
17383 error ("%Htoo many template-parameter-lists", &location);
17384 return false;
17387 /* Parse an optional `::' token indicating that the following name is
17388 from the global namespace. If so, PARSER->SCOPE is set to the
17389 GLOBAL_NAMESPACE. Otherwise, PARSER->SCOPE is set to NULL_TREE,
17390 unless CURRENT_SCOPE_VALID_P is TRUE, in which case it is left alone.
17391 Returns the new value of PARSER->SCOPE, if the `::' token is
17392 present, and NULL_TREE otherwise. */
17394 static tree
17395 cp_parser_global_scope_opt (cp_parser* parser, bool current_scope_valid_p)
17397 cp_token *token;
17399 /* Peek at the next token. */
17400 token = cp_lexer_peek_token (parser->lexer);
17401 /* If we're looking at a `::' token then we're starting from the
17402 global namespace, not our current location. */
17403 if (token->type == CPP_SCOPE)
17405 /* Consume the `::' token. */
17406 cp_lexer_consume_token (parser->lexer);
17407 /* Set the SCOPE so that we know where to start the lookup. */
17408 parser->scope = global_namespace;
17409 parser->qualifying_scope = global_namespace;
17410 parser->object_scope = NULL_TREE;
17412 return parser->scope;
17414 else if (!current_scope_valid_p)
17416 parser->scope = NULL_TREE;
17417 parser->qualifying_scope = NULL_TREE;
17418 parser->object_scope = NULL_TREE;
17421 return NULL_TREE;
17424 /* Returns TRUE if the upcoming token sequence is the start of a
17425 constructor declarator. If FRIEND_P is true, the declarator is
17426 preceded by the `friend' specifier. */
17428 static bool
17429 cp_parser_constructor_declarator_p (cp_parser *parser, bool friend_p)
17431 bool constructor_p;
17432 tree type_decl = NULL_TREE;
17433 bool nested_name_p;
17434 cp_token *next_token;
17436 /* The common case is that this is not a constructor declarator, so
17437 try to avoid doing lots of work if at all possible. It's not
17438 valid declare a constructor at function scope. */
17439 if (parser->in_function_body)
17440 return false;
17441 /* And only certain tokens can begin a constructor declarator. */
17442 next_token = cp_lexer_peek_token (parser->lexer);
17443 if (next_token->type != CPP_NAME
17444 && next_token->type != CPP_SCOPE
17445 && next_token->type != CPP_NESTED_NAME_SPECIFIER
17446 && next_token->type != CPP_TEMPLATE_ID)
17447 return false;
17449 /* Parse tentatively; we are going to roll back all of the tokens
17450 consumed here. */
17451 cp_parser_parse_tentatively (parser);
17452 /* Assume that we are looking at a constructor declarator. */
17453 constructor_p = true;
17455 /* Look for the optional `::' operator. */
17456 cp_parser_global_scope_opt (parser,
17457 /*current_scope_valid_p=*/false);
17458 /* Look for the nested-name-specifier. */
17459 nested_name_p
17460 = (cp_parser_nested_name_specifier_opt (parser,
17461 /*typename_keyword_p=*/false,
17462 /*check_dependency_p=*/false,
17463 /*type_p=*/false,
17464 /*is_declaration=*/false)
17465 != NULL_TREE);
17466 /* Outside of a class-specifier, there must be a
17467 nested-name-specifier. */
17468 if (!nested_name_p &&
17469 (!at_class_scope_p () || !TYPE_BEING_DEFINED (current_class_type)
17470 || friend_p))
17471 constructor_p = false;
17472 /* If we still think that this might be a constructor-declarator,
17473 look for a class-name. */
17474 if (constructor_p)
17476 /* If we have:
17478 template <typename T> struct S { S(); };
17479 template <typename T> S<T>::S ();
17481 we must recognize that the nested `S' names a class.
17482 Similarly, for:
17484 template <typename T> S<T>::S<T> ();
17486 we must recognize that the nested `S' names a template. */
17487 type_decl = cp_parser_class_name (parser,
17488 /*typename_keyword_p=*/false,
17489 /*template_keyword_p=*/false,
17490 none_type,
17491 /*check_dependency_p=*/false,
17492 /*class_head_p=*/false,
17493 /*is_declaration=*/false);
17494 /* If there was no class-name, then this is not a constructor. */
17495 constructor_p = !cp_parser_error_occurred (parser);
17498 /* If we're still considering a constructor, we have to see a `(',
17499 to begin the parameter-declaration-clause, followed by either a
17500 `)', an `...', or a decl-specifier. We need to check for a
17501 type-specifier to avoid being fooled into thinking that:
17503 S::S (f) (int);
17505 is a constructor. (It is actually a function named `f' that
17506 takes one parameter (of type `int') and returns a value of type
17507 `S::S'. */
17508 if (constructor_p
17509 && cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>"))
17511 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN)
17512 && cp_lexer_next_token_is_not (parser->lexer, CPP_ELLIPSIS)
17513 /* A parameter declaration begins with a decl-specifier,
17514 which is either the "attribute" keyword, a storage class
17515 specifier, or (usually) a type-specifier. */
17516 && !cp_lexer_next_token_is_decl_specifier_keyword (parser->lexer))
17518 tree type;
17519 tree pushed_scope = NULL_TREE;
17520 unsigned saved_num_template_parameter_lists;
17522 /* Names appearing in the type-specifier should be looked up
17523 in the scope of the class. */
17524 if (current_class_type)
17525 type = NULL_TREE;
17526 else
17528 type = TREE_TYPE (type_decl);
17529 if (TREE_CODE (type) == TYPENAME_TYPE)
17531 type = resolve_typename_type (type,
17532 /*only_current_p=*/false);
17533 if (TREE_CODE (type) == TYPENAME_TYPE)
17535 cp_parser_abort_tentative_parse (parser);
17536 return false;
17539 pushed_scope = push_scope (type);
17542 /* Inside the constructor parameter list, surrounding
17543 template-parameter-lists do not apply. */
17544 saved_num_template_parameter_lists
17545 = parser->num_template_parameter_lists;
17546 parser->num_template_parameter_lists = 0;
17548 /* Look for the type-specifier. */
17549 cp_parser_type_specifier (parser,
17550 CP_PARSER_FLAGS_NONE,
17551 /*decl_specs=*/NULL,
17552 /*is_declarator=*/true,
17553 /*declares_class_or_enum=*/NULL,
17554 /*is_cv_qualifier=*/NULL);
17556 parser->num_template_parameter_lists
17557 = saved_num_template_parameter_lists;
17559 /* Leave the scope of the class. */
17560 if (pushed_scope)
17561 pop_scope (pushed_scope);
17563 constructor_p = !cp_parser_error_occurred (parser);
17566 else
17567 constructor_p = false;
17568 /* We did not really want to consume any tokens. */
17569 cp_parser_abort_tentative_parse (parser);
17571 return constructor_p;
17574 /* Parse the definition of the function given by the DECL_SPECIFIERS,
17575 ATTRIBUTES, and DECLARATOR. The access checks have been deferred;
17576 they must be performed once we are in the scope of the function.
17578 Returns the function defined. */
17580 static tree
17581 cp_parser_function_definition_from_specifiers_and_declarator
17582 (cp_parser* parser,
17583 cp_decl_specifier_seq *decl_specifiers,
17584 tree attributes,
17585 const cp_declarator *declarator)
17587 tree fn;
17588 bool success_p;
17590 /* Begin the function-definition. */
17591 success_p = start_function (decl_specifiers, declarator, attributes);
17593 /* The things we're about to see are not directly qualified by any
17594 template headers we've seen thus far. */
17595 reset_specialization ();
17597 /* If there were names looked up in the decl-specifier-seq that we
17598 did not check, check them now. We must wait until we are in the
17599 scope of the function to perform the checks, since the function
17600 might be a friend. */
17601 perform_deferred_access_checks ();
17603 if (!success_p)
17605 /* Skip the entire function. */
17606 cp_parser_skip_to_end_of_block_or_statement (parser);
17607 fn = error_mark_node;
17609 else if (DECL_INITIAL (current_function_decl) != error_mark_node)
17611 /* Seen already, skip it. An error message has already been output. */
17612 cp_parser_skip_to_end_of_block_or_statement (parser);
17613 fn = current_function_decl;
17614 current_function_decl = NULL_TREE;
17615 /* If this is a function from a class, pop the nested class. */
17616 if (current_class_name)
17617 pop_nested_class ();
17619 else
17620 fn = cp_parser_function_definition_after_declarator (parser,
17621 /*inline_p=*/false);
17623 return fn;
17626 /* Parse the part of a function-definition that follows the
17627 declarator. INLINE_P is TRUE iff this function is an inline
17628 function defined with a class-specifier.
17630 Returns the function defined. */
17632 static tree
17633 cp_parser_function_definition_after_declarator (cp_parser* parser,
17634 bool inline_p)
17636 tree fn;
17637 bool ctor_initializer_p = false;
17638 bool saved_in_unbraced_linkage_specification_p;
17639 bool saved_in_function_body;
17640 unsigned saved_num_template_parameter_lists;
17641 cp_token *token;
17643 saved_in_function_body = parser->in_function_body;
17644 parser->in_function_body = true;
17645 /* If the next token is `return', then the code may be trying to
17646 make use of the "named return value" extension that G++ used to
17647 support. */
17648 token = cp_lexer_peek_token (parser->lexer);
17649 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_RETURN))
17651 /* Consume the `return' keyword. */
17652 cp_lexer_consume_token (parser->lexer);
17653 /* Look for the identifier that indicates what value is to be
17654 returned. */
17655 cp_parser_identifier (parser);
17656 /* Issue an error message. */
17657 error ("%Hnamed return values are no longer supported",
17658 &token->location);
17659 /* Skip tokens until we reach the start of the function body. */
17660 while (true)
17662 cp_token *token = cp_lexer_peek_token (parser->lexer);
17663 if (token->type == CPP_OPEN_BRACE
17664 || token->type == CPP_EOF
17665 || token->type == CPP_PRAGMA_EOL)
17666 break;
17667 cp_lexer_consume_token (parser->lexer);
17670 /* The `extern' in `extern "C" void f () { ... }' does not apply to
17671 anything declared inside `f'. */
17672 saved_in_unbraced_linkage_specification_p
17673 = parser->in_unbraced_linkage_specification_p;
17674 parser->in_unbraced_linkage_specification_p = false;
17675 /* Inside the function, surrounding template-parameter-lists do not
17676 apply. */
17677 saved_num_template_parameter_lists
17678 = parser->num_template_parameter_lists;
17679 parser->num_template_parameter_lists = 0;
17680 /* If the next token is `try', then we are looking at a
17681 function-try-block. */
17682 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TRY))
17683 ctor_initializer_p = cp_parser_function_try_block (parser);
17684 /* A function-try-block includes the function-body, so we only do
17685 this next part if we're not processing a function-try-block. */
17686 else
17687 ctor_initializer_p
17688 = cp_parser_ctor_initializer_opt_and_function_body (parser);
17690 /* Finish the function. */
17691 fn = finish_function ((ctor_initializer_p ? 1 : 0) |
17692 (inline_p ? 2 : 0));
17693 /* Generate code for it, if necessary. */
17694 expand_or_defer_fn (fn);
17695 /* Restore the saved values. */
17696 parser->in_unbraced_linkage_specification_p
17697 = saved_in_unbraced_linkage_specification_p;
17698 parser->num_template_parameter_lists
17699 = saved_num_template_parameter_lists;
17700 parser->in_function_body = saved_in_function_body;
17702 return fn;
17705 /* Parse a template-declaration, assuming that the `export' (and
17706 `extern') keywords, if present, has already been scanned. MEMBER_P
17707 is as for cp_parser_template_declaration. */
17709 static void
17710 cp_parser_template_declaration_after_export (cp_parser* parser, bool member_p)
17712 tree decl = NULL_TREE;
17713 VEC (deferred_access_check,gc) *checks;
17714 tree parameter_list;
17715 bool friend_p = false;
17716 bool need_lang_pop;
17717 cp_token *token;
17719 /* Look for the `template' keyword. */
17720 token = cp_lexer_peek_token (parser->lexer);
17721 if (!cp_parser_require_keyword (parser, RID_TEMPLATE, "%<template%>"))
17722 return;
17724 /* And the `<'. */
17725 if (!cp_parser_require (parser, CPP_LESS, "%<<%>"))
17726 return;
17727 if (at_class_scope_p () && current_function_decl)
17729 /* 14.5.2.2 [temp.mem]
17731 A local class shall not have member templates. */
17732 error ("%Hinvalid declaration of member template in local class",
17733 &token->location);
17734 cp_parser_skip_to_end_of_block_or_statement (parser);
17735 return;
17737 /* [temp]
17739 A template ... shall not have C linkage. */
17740 if (current_lang_name == lang_name_c)
17742 error ("%Htemplate with C linkage", &token->location);
17743 /* Give it C++ linkage to avoid confusing other parts of the
17744 front end. */
17745 push_lang_context (lang_name_cplusplus);
17746 need_lang_pop = true;
17748 else
17749 need_lang_pop = false;
17751 /* We cannot perform access checks on the template parameter
17752 declarations until we know what is being declared, just as we
17753 cannot check the decl-specifier list. */
17754 push_deferring_access_checks (dk_deferred);
17756 /* If the next token is `>', then we have an invalid
17757 specialization. Rather than complain about an invalid template
17758 parameter, issue an error message here. */
17759 if (cp_lexer_next_token_is (parser->lexer, CPP_GREATER))
17761 cp_parser_error (parser, "invalid explicit specialization");
17762 begin_specialization ();
17763 parameter_list = NULL_TREE;
17765 else
17766 /* Parse the template parameters. */
17767 parameter_list = cp_parser_template_parameter_list (parser);
17769 /* Get the deferred access checks from the parameter list. These
17770 will be checked once we know what is being declared, as for a
17771 member template the checks must be performed in the scope of the
17772 class containing the member. */
17773 checks = get_deferred_access_checks ();
17775 /* Look for the `>'. */
17776 cp_parser_skip_to_end_of_template_parameter_list (parser);
17777 /* We just processed one more parameter list. */
17778 ++parser->num_template_parameter_lists;
17779 /* If the next token is `template', there are more template
17780 parameters. */
17781 if (cp_lexer_next_token_is_keyword (parser->lexer,
17782 RID_TEMPLATE))
17783 cp_parser_template_declaration_after_export (parser, member_p);
17784 else
17786 /* There are no access checks when parsing a template, as we do not
17787 know if a specialization will be a friend. */
17788 push_deferring_access_checks (dk_no_check);
17789 token = cp_lexer_peek_token (parser->lexer);
17790 decl = cp_parser_single_declaration (parser,
17791 checks,
17792 member_p,
17793 /*explicit_specialization_p=*/false,
17794 &friend_p);
17795 pop_deferring_access_checks ();
17797 /* If this is a member template declaration, let the front
17798 end know. */
17799 if (member_p && !friend_p && decl)
17801 if (TREE_CODE (decl) == TYPE_DECL)
17802 cp_parser_check_access_in_redeclaration (decl, token->location);
17804 decl = finish_member_template_decl (decl);
17806 else if (friend_p && decl && TREE_CODE (decl) == TYPE_DECL)
17807 make_friend_class (current_class_type, TREE_TYPE (decl),
17808 /*complain=*/true);
17810 /* We are done with the current parameter list. */
17811 --parser->num_template_parameter_lists;
17813 pop_deferring_access_checks ();
17815 /* Finish up. */
17816 finish_template_decl (parameter_list);
17818 /* Register member declarations. */
17819 if (member_p && !friend_p && decl && !DECL_CLASS_TEMPLATE_P (decl))
17820 finish_member_declaration (decl);
17821 /* For the erroneous case of a template with C linkage, we pushed an
17822 implicit C++ linkage scope; exit that scope now. */
17823 if (need_lang_pop)
17824 pop_lang_context ();
17825 /* If DECL is a function template, we must return to parse it later.
17826 (Even though there is no definition, there might be default
17827 arguments that need handling.) */
17828 if (member_p && decl
17829 && (TREE_CODE (decl) == FUNCTION_DECL
17830 || DECL_FUNCTION_TEMPLATE_P (decl)))
17831 TREE_VALUE (parser->unparsed_functions_queues)
17832 = tree_cons (NULL_TREE, decl,
17833 TREE_VALUE (parser->unparsed_functions_queues));
17836 /* Perform the deferred access checks from a template-parameter-list.
17837 CHECKS is a TREE_LIST of access checks, as returned by
17838 get_deferred_access_checks. */
17840 static void
17841 cp_parser_perform_template_parameter_access_checks (VEC (deferred_access_check,gc)* checks)
17843 ++processing_template_parmlist;
17844 perform_access_checks (checks);
17845 --processing_template_parmlist;
17848 /* Parse a `decl-specifier-seq [opt] init-declarator [opt] ;' or
17849 `function-definition' sequence. MEMBER_P is true, this declaration
17850 appears in a class scope.
17852 Returns the DECL for the declared entity. If FRIEND_P is non-NULL,
17853 *FRIEND_P is set to TRUE iff the declaration is a friend. */
17855 static tree
17856 cp_parser_single_declaration (cp_parser* parser,
17857 VEC (deferred_access_check,gc)* checks,
17858 bool member_p,
17859 bool explicit_specialization_p,
17860 bool* friend_p)
17862 int declares_class_or_enum;
17863 tree decl = NULL_TREE;
17864 cp_decl_specifier_seq decl_specifiers;
17865 bool function_definition_p = false;
17866 cp_token *decl_spec_token_start;
17868 /* This function is only used when processing a template
17869 declaration. */
17870 gcc_assert (innermost_scope_kind () == sk_template_parms
17871 || innermost_scope_kind () == sk_template_spec);
17873 /* Defer access checks until we know what is being declared. */
17874 push_deferring_access_checks (dk_deferred);
17876 /* Try the `decl-specifier-seq [opt] init-declarator [opt]'
17877 alternative. */
17878 decl_spec_token_start = cp_lexer_peek_token (parser->lexer);
17879 cp_parser_decl_specifier_seq (parser,
17880 CP_PARSER_FLAGS_OPTIONAL,
17881 &decl_specifiers,
17882 &declares_class_or_enum);
17883 if (friend_p)
17884 *friend_p = cp_parser_friend_p (&decl_specifiers);
17886 /* There are no template typedefs. */
17887 if (decl_specifiers.specs[(int) ds_typedef])
17889 error ("%Htemplate declaration of %qs",
17890 &decl_spec_token_start->location, "typedef");
17891 decl = error_mark_node;
17894 /* Gather up the access checks that occurred the
17895 decl-specifier-seq. */
17896 stop_deferring_access_checks ();
17898 /* Check for the declaration of a template class. */
17899 if (declares_class_or_enum)
17901 if (cp_parser_declares_only_class_p (parser))
17903 decl = shadow_tag (&decl_specifiers);
17905 /* In this case:
17907 struct C {
17908 friend template <typename T> struct A<T>::B;
17911 A<T>::B will be represented by a TYPENAME_TYPE, and
17912 therefore not recognized by shadow_tag. */
17913 if (friend_p && *friend_p
17914 && !decl
17915 && decl_specifiers.type
17916 && TYPE_P (decl_specifiers.type))
17917 decl = decl_specifiers.type;
17919 if (decl && decl != error_mark_node)
17920 decl = TYPE_NAME (decl);
17921 else
17922 decl = error_mark_node;
17924 /* Perform access checks for template parameters. */
17925 cp_parser_perform_template_parameter_access_checks (checks);
17928 /* If it's not a template class, try for a template function. If
17929 the next token is a `;', then this declaration does not declare
17930 anything. But, if there were errors in the decl-specifiers, then
17931 the error might well have come from an attempted class-specifier.
17932 In that case, there's no need to warn about a missing declarator. */
17933 if (!decl
17934 && (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON)
17935 || decl_specifiers.type != error_mark_node))
17937 decl = cp_parser_init_declarator (parser,
17938 &decl_specifiers,
17939 checks,
17940 /*function_definition_allowed_p=*/true,
17941 member_p,
17942 declares_class_or_enum,
17943 &function_definition_p);
17945 /* 7.1.1-1 [dcl.stc]
17947 A storage-class-specifier shall not be specified in an explicit
17948 specialization... */
17949 if (decl
17950 && explicit_specialization_p
17951 && decl_specifiers.storage_class != sc_none)
17953 error ("%Hexplicit template specialization cannot have a storage class",
17954 &decl_spec_token_start->location);
17955 decl = error_mark_node;
17959 pop_deferring_access_checks ();
17961 /* Clear any current qualification; whatever comes next is the start
17962 of something new. */
17963 parser->scope = NULL_TREE;
17964 parser->qualifying_scope = NULL_TREE;
17965 parser->object_scope = NULL_TREE;
17966 /* Look for a trailing `;' after the declaration. */
17967 if (!function_definition_p
17968 && (decl == error_mark_node
17969 || !cp_parser_require (parser, CPP_SEMICOLON, "%<;%>")))
17970 cp_parser_skip_to_end_of_block_or_statement (parser);
17972 return decl;
17975 /* Parse a cast-expression that is not the operand of a unary "&". */
17977 static tree
17978 cp_parser_simple_cast_expression (cp_parser *parser)
17980 return cp_parser_cast_expression (parser, /*address_p=*/false,
17981 /*cast_p=*/false, NULL);
17984 /* Parse a functional cast to TYPE. Returns an expression
17985 representing the cast. */
17987 static tree
17988 cp_parser_functional_cast (cp_parser* parser, tree type)
17990 tree expression_list;
17991 tree cast;
17992 bool nonconst_p;
17994 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
17996 maybe_warn_cpp0x ("extended initializer lists");
17997 expression_list = cp_parser_braced_list (parser, &nonconst_p);
17998 CONSTRUCTOR_IS_DIRECT_INIT (expression_list) = 1;
17999 if (TREE_CODE (type) == TYPE_DECL)
18000 type = TREE_TYPE (type);
18001 return finish_compound_literal (type, expression_list);
18004 expression_list
18005 = cp_parser_parenthesized_expression_list (parser, false,
18006 /*cast_p=*/true,
18007 /*allow_expansion_p=*/true,
18008 /*non_constant_p=*/NULL);
18010 cast = build_functional_cast (type, expression_list,
18011 tf_warning_or_error);
18012 /* [expr.const]/1: In an integral constant expression "only type
18013 conversions to integral or enumeration type can be used". */
18014 if (TREE_CODE (type) == TYPE_DECL)
18015 type = TREE_TYPE (type);
18016 if (cast != error_mark_node
18017 && !cast_valid_in_integral_constant_expression_p (type)
18018 && (cp_parser_non_integral_constant_expression
18019 (parser, "a call to a constructor")))
18020 return error_mark_node;
18021 return cast;
18024 /* Save the tokens that make up the body of a member function defined
18025 in a class-specifier. The DECL_SPECIFIERS and DECLARATOR have
18026 already been parsed. The ATTRIBUTES are any GNU "__attribute__"
18027 specifiers applied to the declaration. Returns the FUNCTION_DECL
18028 for the member function. */
18030 static tree
18031 cp_parser_save_member_function_body (cp_parser* parser,
18032 cp_decl_specifier_seq *decl_specifiers,
18033 cp_declarator *declarator,
18034 tree attributes)
18036 cp_token *first;
18037 cp_token *last;
18038 tree fn;
18040 /* Create the function-declaration. */
18041 fn = start_method (decl_specifiers, declarator, attributes);
18042 /* If something went badly wrong, bail out now. */
18043 if (fn == error_mark_node)
18045 /* If there's a function-body, skip it. */
18046 if (cp_parser_token_starts_function_definition_p
18047 (cp_lexer_peek_token (parser->lexer)))
18048 cp_parser_skip_to_end_of_block_or_statement (parser);
18049 return error_mark_node;
18052 /* Remember it, if there default args to post process. */
18053 cp_parser_save_default_args (parser, fn);
18055 /* Save away the tokens that make up the body of the
18056 function. */
18057 first = parser->lexer->next_token;
18058 /* We can have braced-init-list mem-initializers before the fn body. */
18059 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
18061 cp_lexer_consume_token (parser->lexer);
18062 while (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE)
18063 && cp_lexer_next_token_is_not_keyword (parser->lexer, RID_TRY))
18065 /* cache_group will stop after an un-nested { } pair, too. */
18066 if (cp_parser_cache_group (parser, CPP_CLOSE_PAREN, /*depth=*/0))
18067 break;
18069 /* variadic mem-inits have ... after the ')'. */
18070 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
18071 cp_lexer_consume_token (parser->lexer);
18074 cp_parser_cache_group (parser, CPP_CLOSE_BRACE, /*depth=*/0);
18075 /* Handle function try blocks. */
18076 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_CATCH))
18077 cp_parser_cache_group (parser, CPP_CLOSE_BRACE, /*depth=*/0);
18078 last = parser->lexer->next_token;
18080 /* Save away the inline definition; we will process it when the
18081 class is complete. */
18082 DECL_PENDING_INLINE_INFO (fn) = cp_token_cache_new (first, last);
18083 DECL_PENDING_INLINE_P (fn) = 1;
18085 /* We need to know that this was defined in the class, so that
18086 friend templates are handled correctly. */
18087 DECL_INITIALIZED_IN_CLASS_P (fn) = 1;
18089 /* We're done with the inline definition. */
18090 finish_method (fn);
18092 /* Add FN to the queue of functions to be parsed later. */
18093 TREE_VALUE (parser->unparsed_functions_queues)
18094 = tree_cons (NULL_TREE, fn,
18095 TREE_VALUE (parser->unparsed_functions_queues));
18097 return fn;
18100 /* Parse a template-argument-list, as well as the trailing ">" (but
18101 not the opening ">"). See cp_parser_template_argument_list for the
18102 return value. */
18104 static tree
18105 cp_parser_enclosed_template_argument_list (cp_parser* parser)
18107 tree arguments;
18108 tree saved_scope;
18109 tree saved_qualifying_scope;
18110 tree saved_object_scope;
18111 bool saved_greater_than_is_operator_p;
18112 bool saved_skip_evaluation;
18114 /* [temp.names]
18116 When parsing a template-id, the first non-nested `>' is taken as
18117 the end of the template-argument-list rather than a greater-than
18118 operator. */
18119 saved_greater_than_is_operator_p
18120 = parser->greater_than_is_operator_p;
18121 parser->greater_than_is_operator_p = false;
18122 /* Parsing the argument list may modify SCOPE, so we save it
18123 here. */
18124 saved_scope = parser->scope;
18125 saved_qualifying_scope = parser->qualifying_scope;
18126 saved_object_scope = parser->object_scope;
18127 /* We need to evaluate the template arguments, even though this
18128 template-id may be nested within a "sizeof". */
18129 saved_skip_evaluation = skip_evaluation;
18130 skip_evaluation = false;
18131 /* Parse the template-argument-list itself. */
18132 if (cp_lexer_next_token_is (parser->lexer, CPP_GREATER)
18133 || cp_lexer_next_token_is (parser->lexer, CPP_RSHIFT))
18134 arguments = NULL_TREE;
18135 else
18136 arguments = cp_parser_template_argument_list (parser);
18137 /* Look for the `>' that ends the template-argument-list. If we find
18138 a '>>' instead, it's probably just a typo. */
18139 if (cp_lexer_next_token_is (parser->lexer, CPP_RSHIFT))
18141 if (cxx_dialect != cxx98)
18143 /* In C++0x, a `>>' in a template argument list or cast
18144 expression is considered to be two separate `>'
18145 tokens. So, change the current token to a `>', but don't
18146 consume it: it will be consumed later when the outer
18147 template argument list (or cast expression) is parsed.
18148 Note that this replacement of `>' for `>>' is necessary
18149 even if we are parsing tentatively: in the tentative
18150 case, after calling
18151 cp_parser_enclosed_template_argument_list we will always
18152 throw away all of the template arguments and the first
18153 closing `>', either because the template argument list
18154 was erroneous or because we are replacing those tokens
18155 with a CPP_TEMPLATE_ID token. The second `>' (which will
18156 not have been thrown away) is needed either to close an
18157 outer template argument list or to complete a new-style
18158 cast. */
18159 cp_token *token = cp_lexer_peek_token (parser->lexer);
18160 token->type = CPP_GREATER;
18162 else if (!saved_greater_than_is_operator_p)
18164 /* If we're in a nested template argument list, the '>>' has
18165 to be a typo for '> >'. We emit the error message, but we
18166 continue parsing and we push a '>' as next token, so that
18167 the argument list will be parsed correctly. Note that the
18168 global source location is still on the token before the
18169 '>>', so we need to say explicitly where we want it. */
18170 cp_token *token = cp_lexer_peek_token (parser->lexer);
18171 error ("%H%<>>%> should be %<> >%> "
18172 "within a nested template argument list",
18173 &token->location);
18175 token->type = CPP_GREATER;
18177 else
18179 /* If this is not a nested template argument list, the '>>'
18180 is a typo for '>'. Emit an error message and continue.
18181 Same deal about the token location, but here we can get it
18182 right by consuming the '>>' before issuing the diagnostic. */
18183 cp_token *token = cp_lexer_consume_token (parser->lexer);
18184 error ("%Hspurious %<>>%>, use %<>%> to terminate "
18185 "a template argument list", &token->location);
18188 else
18189 cp_parser_skip_to_end_of_template_parameter_list (parser);
18190 /* The `>' token might be a greater-than operator again now. */
18191 parser->greater_than_is_operator_p
18192 = saved_greater_than_is_operator_p;
18193 /* Restore the SAVED_SCOPE. */
18194 parser->scope = saved_scope;
18195 parser->qualifying_scope = saved_qualifying_scope;
18196 parser->object_scope = saved_object_scope;
18197 skip_evaluation = saved_skip_evaluation;
18199 return arguments;
18202 /* MEMBER_FUNCTION is a member function, or a friend. If default
18203 arguments, or the body of the function have not yet been parsed,
18204 parse them now. */
18206 static void
18207 cp_parser_late_parsing_for_member (cp_parser* parser, tree member_function)
18209 /* If this member is a template, get the underlying
18210 FUNCTION_DECL. */
18211 if (DECL_FUNCTION_TEMPLATE_P (member_function))
18212 member_function = DECL_TEMPLATE_RESULT (member_function);
18214 /* There should not be any class definitions in progress at this
18215 point; the bodies of members are only parsed outside of all class
18216 definitions. */
18217 gcc_assert (parser->num_classes_being_defined == 0);
18218 /* While we're parsing the member functions we might encounter more
18219 classes. We want to handle them right away, but we don't want
18220 them getting mixed up with functions that are currently in the
18221 queue. */
18222 parser->unparsed_functions_queues
18223 = tree_cons (NULL_TREE, NULL_TREE, parser->unparsed_functions_queues);
18225 /* Make sure that any template parameters are in scope. */
18226 maybe_begin_member_template_processing (member_function);
18228 /* If the body of the function has not yet been parsed, parse it
18229 now. */
18230 if (DECL_PENDING_INLINE_P (member_function))
18232 tree function_scope;
18233 cp_token_cache *tokens;
18235 /* The function is no longer pending; we are processing it. */
18236 tokens = DECL_PENDING_INLINE_INFO (member_function);
18237 DECL_PENDING_INLINE_INFO (member_function) = NULL;
18238 DECL_PENDING_INLINE_P (member_function) = 0;
18240 /* If this is a local class, enter the scope of the containing
18241 function. */
18242 function_scope = current_function_decl;
18243 if (function_scope)
18244 push_function_context ();
18246 /* Push the body of the function onto the lexer stack. */
18247 cp_parser_push_lexer_for_tokens (parser, tokens);
18249 /* Let the front end know that we going to be defining this
18250 function. */
18251 start_preparsed_function (member_function, NULL_TREE,
18252 SF_PRE_PARSED | SF_INCLASS_INLINE);
18254 /* Don't do access checking if it is a templated function. */
18255 if (processing_template_decl)
18256 push_deferring_access_checks (dk_no_check);
18258 /* Now, parse the body of the function. */
18259 cp_parser_function_definition_after_declarator (parser,
18260 /*inline_p=*/true);
18262 if (processing_template_decl)
18263 pop_deferring_access_checks ();
18265 /* Leave the scope of the containing function. */
18266 if (function_scope)
18267 pop_function_context ();
18268 cp_parser_pop_lexer (parser);
18271 /* Remove any template parameters from the symbol table. */
18272 maybe_end_member_template_processing ();
18274 /* Restore the queue. */
18275 parser->unparsed_functions_queues
18276 = TREE_CHAIN (parser->unparsed_functions_queues);
18279 /* If DECL contains any default args, remember it on the unparsed
18280 functions queue. */
18282 static void
18283 cp_parser_save_default_args (cp_parser* parser, tree decl)
18285 tree probe;
18287 for (probe = TYPE_ARG_TYPES (TREE_TYPE (decl));
18288 probe;
18289 probe = TREE_CHAIN (probe))
18290 if (TREE_PURPOSE (probe))
18292 TREE_PURPOSE (parser->unparsed_functions_queues)
18293 = tree_cons (current_class_type, decl,
18294 TREE_PURPOSE (parser->unparsed_functions_queues));
18295 break;
18299 /* FN is a FUNCTION_DECL which may contains a parameter with an
18300 unparsed DEFAULT_ARG. Parse the default args now. This function
18301 assumes that the current scope is the scope in which the default
18302 argument should be processed. */
18304 static void
18305 cp_parser_late_parsing_default_args (cp_parser *parser, tree fn)
18307 bool saved_local_variables_forbidden_p;
18308 tree parm;
18310 /* While we're parsing the default args, we might (due to the
18311 statement expression extension) encounter more classes. We want
18312 to handle them right away, but we don't want them getting mixed
18313 up with default args that are currently in the queue. */
18314 parser->unparsed_functions_queues
18315 = tree_cons (NULL_TREE, NULL_TREE, parser->unparsed_functions_queues);
18317 /* Local variable names (and the `this' keyword) may not appear
18318 in a default argument. */
18319 saved_local_variables_forbidden_p = parser->local_variables_forbidden_p;
18320 parser->local_variables_forbidden_p = true;
18322 for (parm = TYPE_ARG_TYPES (TREE_TYPE (fn));
18323 parm;
18324 parm = TREE_CHAIN (parm))
18326 cp_token_cache *tokens;
18327 tree default_arg = TREE_PURPOSE (parm);
18328 tree parsed_arg;
18329 VEC(tree,gc) *insts;
18330 tree copy;
18331 unsigned ix;
18333 if (!default_arg)
18334 continue;
18336 if (TREE_CODE (default_arg) != DEFAULT_ARG)
18337 /* This can happen for a friend declaration for a function
18338 already declared with default arguments. */
18339 continue;
18341 /* Push the saved tokens for the default argument onto the parser's
18342 lexer stack. */
18343 tokens = DEFARG_TOKENS (default_arg);
18344 cp_parser_push_lexer_for_tokens (parser, tokens);
18346 /* Parse the assignment-expression. */
18347 parsed_arg = cp_parser_assignment_expression (parser, /*cast_p=*/false, NULL);
18348 if (parsed_arg == error_mark_node)
18350 cp_parser_pop_lexer (parser);
18351 continue;
18354 if (!processing_template_decl)
18355 parsed_arg = check_default_argument (TREE_VALUE (parm), parsed_arg);
18357 TREE_PURPOSE (parm) = parsed_arg;
18359 /* Update any instantiations we've already created. */
18360 for (insts = DEFARG_INSTANTIATIONS (default_arg), ix = 0;
18361 VEC_iterate (tree, insts, ix, copy); ix++)
18362 TREE_PURPOSE (copy) = parsed_arg;
18364 /* If the token stream has not been completely used up, then
18365 there was extra junk after the end of the default
18366 argument. */
18367 if (!cp_lexer_next_token_is (parser->lexer, CPP_EOF))
18368 cp_parser_error (parser, "expected %<,%>");
18370 /* Revert to the main lexer. */
18371 cp_parser_pop_lexer (parser);
18374 /* Make sure no default arg is missing. */
18375 check_default_args (fn);
18377 /* Restore the state of local_variables_forbidden_p. */
18378 parser->local_variables_forbidden_p = saved_local_variables_forbidden_p;
18380 /* Restore the queue. */
18381 parser->unparsed_functions_queues
18382 = TREE_CHAIN (parser->unparsed_functions_queues);
18385 /* Parse the operand of `sizeof' (or a similar operator). Returns
18386 either a TYPE or an expression, depending on the form of the
18387 input. The KEYWORD indicates which kind of expression we have
18388 encountered. */
18390 static tree
18391 cp_parser_sizeof_operand (cp_parser* parser, enum rid keyword)
18393 tree expr = NULL_TREE;
18394 const char *saved_message;
18395 char *tmp;
18396 bool saved_integral_constant_expression_p;
18397 bool saved_non_integral_constant_expression_p;
18398 bool pack_expansion_p = false;
18400 /* Types cannot be defined in a `sizeof' expression. Save away the
18401 old message. */
18402 saved_message = parser->type_definition_forbidden_message;
18403 /* And create the new one. */
18404 tmp = concat ("types may not be defined in %<",
18405 IDENTIFIER_POINTER (ridpointers[keyword]),
18406 "%> expressions", NULL);
18407 parser->type_definition_forbidden_message = tmp;
18409 /* The restrictions on constant-expressions do not apply inside
18410 sizeof expressions. */
18411 saved_integral_constant_expression_p
18412 = parser->integral_constant_expression_p;
18413 saved_non_integral_constant_expression_p
18414 = parser->non_integral_constant_expression_p;
18415 parser->integral_constant_expression_p = false;
18417 /* If it's a `...', then we are computing the length of a parameter
18418 pack. */
18419 if (keyword == RID_SIZEOF
18420 && cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
18422 /* Consume the `...'. */
18423 cp_lexer_consume_token (parser->lexer);
18424 maybe_warn_variadic_templates ();
18426 /* Note that this is an expansion. */
18427 pack_expansion_p = true;
18430 /* Do not actually evaluate the expression. */
18431 ++skip_evaluation;
18432 /* If it's a `(', then we might be looking at the type-id
18433 construction. */
18434 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
18436 tree type;
18437 bool saved_in_type_id_in_expr_p;
18439 /* We can't be sure yet whether we're looking at a type-id or an
18440 expression. */
18441 cp_parser_parse_tentatively (parser);
18442 /* Consume the `('. */
18443 cp_lexer_consume_token (parser->lexer);
18444 /* Parse the type-id. */
18445 saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
18446 parser->in_type_id_in_expr_p = true;
18447 type = cp_parser_type_id (parser);
18448 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
18449 /* Now, look for the trailing `)'. */
18450 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
18451 /* If all went well, then we're done. */
18452 if (cp_parser_parse_definitely (parser))
18454 cp_decl_specifier_seq decl_specs;
18456 /* Build a trivial decl-specifier-seq. */
18457 clear_decl_specs (&decl_specs);
18458 decl_specs.type = type;
18460 /* Call grokdeclarator to figure out what type this is. */
18461 expr = grokdeclarator (NULL,
18462 &decl_specs,
18463 TYPENAME,
18464 /*initialized=*/0,
18465 /*attrlist=*/NULL);
18469 /* If the type-id production did not work out, then we must be
18470 looking at the unary-expression production. */
18471 if (!expr)
18472 expr = cp_parser_unary_expression (parser, /*address_p=*/false,
18473 /*cast_p=*/false, NULL);
18475 if (pack_expansion_p)
18476 /* Build a pack expansion. */
18477 expr = make_pack_expansion (expr);
18479 /* Go back to evaluating expressions. */
18480 --skip_evaluation;
18482 /* Free the message we created. */
18483 free (tmp);
18484 /* And restore the old one. */
18485 parser->type_definition_forbidden_message = saved_message;
18486 parser->integral_constant_expression_p
18487 = saved_integral_constant_expression_p;
18488 parser->non_integral_constant_expression_p
18489 = saved_non_integral_constant_expression_p;
18491 return expr;
18494 /* If the current declaration has no declarator, return true. */
18496 static bool
18497 cp_parser_declares_only_class_p (cp_parser *parser)
18499 /* If the next token is a `;' or a `,' then there is no
18500 declarator. */
18501 return (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
18502 || cp_lexer_next_token_is (parser->lexer, CPP_COMMA));
18505 /* Update the DECL_SPECS to reflect the storage class indicated by
18506 KEYWORD. */
18508 static void
18509 cp_parser_set_storage_class (cp_parser *parser,
18510 cp_decl_specifier_seq *decl_specs,
18511 enum rid keyword,
18512 location_t location)
18514 cp_storage_class storage_class;
18516 if (parser->in_unbraced_linkage_specification_p)
18518 error ("%Hinvalid use of %qD in linkage specification",
18519 &location, ridpointers[keyword]);
18520 return;
18522 else if (decl_specs->storage_class != sc_none)
18524 decl_specs->conflicting_specifiers_p = true;
18525 return;
18528 if ((keyword == RID_EXTERN || keyword == RID_STATIC)
18529 && decl_specs->specs[(int) ds_thread])
18531 error ("%H%<__thread%> before %qD", &location, ridpointers[keyword]);
18532 decl_specs->specs[(int) ds_thread] = 0;
18535 switch (keyword)
18537 case RID_AUTO:
18538 storage_class = sc_auto;
18539 break;
18540 case RID_REGISTER:
18541 storage_class = sc_register;
18542 break;
18543 case RID_STATIC:
18544 storage_class = sc_static;
18545 break;
18546 case RID_EXTERN:
18547 storage_class = sc_extern;
18548 break;
18549 case RID_MUTABLE:
18550 storage_class = sc_mutable;
18551 break;
18552 default:
18553 gcc_unreachable ();
18555 decl_specs->storage_class = storage_class;
18557 /* A storage class specifier cannot be applied alongside a typedef
18558 specifier. If there is a typedef specifier present then set
18559 conflicting_specifiers_p which will trigger an error later
18560 on in grokdeclarator. */
18561 if (decl_specs->specs[(int)ds_typedef])
18562 decl_specs->conflicting_specifiers_p = true;
18565 /* Update the DECL_SPECS to reflect the TYPE_SPEC. If USER_DEFINED_P
18566 is true, the type is a user-defined type; otherwise it is a
18567 built-in type specified by a keyword. */
18569 static void
18570 cp_parser_set_decl_spec_type (cp_decl_specifier_seq *decl_specs,
18571 tree type_spec,
18572 location_t location,
18573 bool user_defined_p)
18575 decl_specs->any_specifiers_p = true;
18577 /* If the user tries to redeclare bool, char16_t, char32_t, or wchar_t
18578 (with, for example, in "typedef int wchar_t;") we remember that
18579 this is what happened. In system headers, we ignore these
18580 declarations so that G++ can work with system headers that are not
18581 C++-safe. */
18582 if (decl_specs->specs[(int) ds_typedef]
18583 && !user_defined_p
18584 && (type_spec == boolean_type_node
18585 || type_spec == char16_type_node
18586 || type_spec == char32_type_node
18587 || type_spec == wchar_type_node)
18588 && (decl_specs->type
18589 || decl_specs->specs[(int) ds_long]
18590 || decl_specs->specs[(int) ds_short]
18591 || decl_specs->specs[(int) ds_unsigned]
18592 || decl_specs->specs[(int) ds_signed]))
18594 decl_specs->redefined_builtin_type = type_spec;
18595 if (!decl_specs->type)
18597 decl_specs->type = type_spec;
18598 decl_specs->user_defined_type_p = false;
18599 decl_specs->type_location = location;
18602 else if (decl_specs->type)
18603 decl_specs->multiple_types_p = true;
18604 else
18606 decl_specs->type = type_spec;
18607 decl_specs->user_defined_type_p = user_defined_p;
18608 decl_specs->redefined_builtin_type = NULL_TREE;
18609 decl_specs->type_location = location;
18613 /* DECL_SPECIFIERS is the representation of a decl-specifier-seq.
18614 Returns TRUE iff `friend' appears among the DECL_SPECIFIERS. */
18616 static bool
18617 cp_parser_friend_p (const cp_decl_specifier_seq *decl_specifiers)
18619 return decl_specifiers->specs[(int) ds_friend] != 0;
18622 /* If the next token is of the indicated TYPE, consume it. Otherwise,
18623 issue an error message indicating that TOKEN_DESC was expected.
18625 Returns the token consumed, if the token had the appropriate type.
18626 Otherwise, returns NULL. */
18628 static cp_token *
18629 cp_parser_require (cp_parser* parser,
18630 enum cpp_ttype type,
18631 const char* token_desc)
18633 if (cp_lexer_next_token_is (parser->lexer, type))
18634 return cp_lexer_consume_token (parser->lexer);
18635 else
18637 /* Output the MESSAGE -- unless we're parsing tentatively. */
18638 if (!cp_parser_simulate_error (parser))
18640 char *message = concat ("expected ", token_desc, NULL);
18641 cp_parser_error (parser, message);
18642 free (message);
18644 return NULL;
18648 /* An error message is produced if the next token is not '>'.
18649 All further tokens are skipped until the desired token is
18650 found or '{', '}', ';' or an unbalanced ')' or ']'. */
18652 static void
18653 cp_parser_skip_to_end_of_template_parameter_list (cp_parser* parser)
18655 /* Current level of '< ... >'. */
18656 unsigned level = 0;
18657 /* Ignore '<' and '>' nested inside '( ... )' or '[ ... ]'. */
18658 unsigned nesting_depth = 0;
18660 /* Are we ready, yet? If not, issue error message. */
18661 if (cp_parser_require (parser, CPP_GREATER, "%<>%>"))
18662 return;
18664 /* Skip tokens until the desired token is found. */
18665 while (true)
18667 /* Peek at the next token. */
18668 switch (cp_lexer_peek_token (parser->lexer)->type)
18670 case CPP_LESS:
18671 if (!nesting_depth)
18672 ++level;
18673 break;
18675 case CPP_RSHIFT:
18676 if (cxx_dialect == cxx98)
18677 /* C++0x views the `>>' operator as two `>' tokens, but
18678 C++98 does not. */
18679 break;
18680 else if (!nesting_depth && level-- == 0)
18682 /* We've hit a `>>' where the first `>' closes the
18683 template argument list, and the second `>' is
18684 spurious. Just consume the `>>' and stop; we've
18685 already produced at least one error. */
18686 cp_lexer_consume_token (parser->lexer);
18687 return;
18689 /* Fall through for C++0x, so we handle the second `>' in
18690 the `>>'. */
18692 case CPP_GREATER:
18693 if (!nesting_depth && level-- == 0)
18695 /* We've reached the token we want, consume it and stop. */
18696 cp_lexer_consume_token (parser->lexer);
18697 return;
18699 break;
18701 case CPP_OPEN_PAREN:
18702 case CPP_OPEN_SQUARE:
18703 ++nesting_depth;
18704 break;
18706 case CPP_CLOSE_PAREN:
18707 case CPP_CLOSE_SQUARE:
18708 if (nesting_depth-- == 0)
18709 return;
18710 break;
18712 case CPP_EOF:
18713 case CPP_PRAGMA_EOL:
18714 case CPP_SEMICOLON:
18715 case CPP_OPEN_BRACE:
18716 case CPP_CLOSE_BRACE:
18717 /* The '>' was probably forgotten, don't look further. */
18718 return;
18720 default:
18721 break;
18724 /* Consume this token. */
18725 cp_lexer_consume_token (parser->lexer);
18729 /* If the next token is the indicated keyword, consume it. Otherwise,
18730 issue an error message indicating that TOKEN_DESC was expected.
18732 Returns the token consumed, if the token had the appropriate type.
18733 Otherwise, returns NULL. */
18735 static cp_token *
18736 cp_parser_require_keyword (cp_parser* parser,
18737 enum rid keyword,
18738 const char* token_desc)
18740 cp_token *token = cp_parser_require (parser, CPP_KEYWORD, token_desc);
18742 if (token && token->keyword != keyword)
18744 dyn_string_t error_msg;
18746 /* Format the error message. */
18747 error_msg = dyn_string_new (0);
18748 dyn_string_append_cstr (error_msg, "expected ");
18749 dyn_string_append_cstr (error_msg, token_desc);
18750 cp_parser_error (parser, error_msg->s);
18751 dyn_string_delete (error_msg);
18752 return NULL;
18755 return token;
18758 /* Returns TRUE iff TOKEN is a token that can begin the body of a
18759 function-definition. */
18761 static bool
18762 cp_parser_token_starts_function_definition_p (cp_token* token)
18764 return (/* An ordinary function-body begins with an `{'. */
18765 token->type == CPP_OPEN_BRACE
18766 /* A ctor-initializer begins with a `:'. */
18767 || token->type == CPP_COLON
18768 /* A function-try-block begins with `try'. */
18769 || token->keyword == RID_TRY
18770 /* The named return value extension begins with `return'. */
18771 || token->keyword == RID_RETURN);
18774 /* Returns TRUE iff the next token is the ":" or "{" beginning a class
18775 definition. */
18777 static bool
18778 cp_parser_next_token_starts_class_definition_p (cp_parser *parser)
18780 cp_token *token;
18782 token = cp_lexer_peek_token (parser->lexer);
18783 return (token->type == CPP_OPEN_BRACE || token->type == CPP_COLON);
18786 /* Returns TRUE iff the next token is the "," or ">" (or `>>', in
18787 C++0x) ending a template-argument. */
18789 static bool
18790 cp_parser_next_token_ends_template_argument_p (cp_parser *parser)
18792 cp_token *token;
18794 token = cp_lexer_peek_token (parser->lexer);
18795 return (token->type == CPP_COMMA
18796 || token->type == CPP_GREATER
18797 || token->type == CPP_ELLIPSIS
18798 || ((cxx_dialect != cxx98) && token->type == CPP_RSHIFT));
18801 /* Returns TRUE iff the n-th token is a "<", or the n-th is a "[" and the
18802 (n+1)-th is a ":" (which is a possible digraph typo for "< ::"). */
18804 static bool
18805 cp_parser_nth_token_starts_template_argument_list_p (cp_parser * parser,
18806 size_t n)
18808 cp_token *token;
18810 token = cp_lexer_peek_nth_token (parser->lexer, n);
18811 if (token->type == CPP_LESS)
18812 return true;
18813 /* Check for the sequence `<::' in the original code. It would be lexed as
18814 `[:', where `[' is a digraph, and there is no whitespace before
18815 `:'. */
18816 if (token->type == CPP_OPEN_SQUARE && token->flags & DIGRAPH)
18818 cp_token *token2;
18819 token2 = cp_lexer_peek_nth_token (parser->lexer, n+1);
18820 if (token2->type == CPP_COLON && !(token2->flags & PREV_WHITE))
18821 return true;
18823 return false;
18826 /* Returns the kind of tag indicated by TOKEN, if it is a class-key,
18827 or none_type otherwise. */
18829 static enum tag_types
18830 cp_parser_token_is_class_key (cp_token* token)
18832 switch (token->keyword)
18834 case RID_CLASS:
18835 return class_type;
18836 case RID_STRUCT:
18837 return record_type;
18838 case RID_UNION:
18839 return union_type;
18841 default:
18842 return none_type;
18846 /* Issue an error message if the CLASS_KEY does not match the TYPE. */
18848 static void
18849 cp_parser_check_class_key (enum tag_types class_key, tree type)
18851 if ((TREE_CODE (type) == UNION_TYPE) != (class_key == union_type))
18852 permerror (input_location, "%qs tag used in naming %q#T",
18853 class_key == union_type ? "union"
18854 : class_key == record_type ? "struct" : "class",
18855 type);
18858 /* Issue an error message if DECL is redeclared with different
18859 access than its original declaration [class.access.spec/3].
18860 This applies to nested classes and nested class templates.
18861 [class.mem/1]. */
18863 static void
18864 cp_parser_check_access_in_redeclaration (tree decl, location_t location)
18866 if (!decl || !CLASS_TYPE_P (TREE_TYPE (decl)))
18867 return;
18869 if ((TREE_PRIVATE (decl)
18870 != (current_access_specifier == access_private_node))
18871 || (TREE_PROTECTED (decl)
18872 != (current_access_specifier == access_protected_node)))
18873 error ("%H%qD redeclared with different access", &location, decl);
18876 /* Look for the `template' keyword, as a syntactic disambiguator.
18877 Return TRUE iff it is present, in which case it will be
18878 consumed. */
18880 static bool
18881 cp_parser_optional_template_keyword (cp_parser *parser)
18883 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
18885 /* The `template' keyword can only be used within templates;
18886 outside templates the parser can always figure out what is a
18887 template and what is not. */
18888 if (!processing_template_decl)
18890 cp_token *token = cp_lexer_peek_token (parser->lexer);
18891 error ("%H%<template%> (as a disambiguator) is only allowed "
18892 "within templates", &token->location);
18893 /* If this part of the token stream is rescanned, the same
18894 error message would be generated. So, we purge the token
18895 from the stream. */
18896 cp_lexer_purge_token (parser->lexer);
18897 return false;
18899 else
18901 /* Consume the `template' keyword. */
18902 cp_lexer_consume_token (parser->lexer);
18903 return true;
18907 return false;
18910 /* The next token is a CPP_NESTED_NAME_SPECIFIER. Consume the token,
18911 set PARSER->SCOPE, and perform other related actions. */
18913 static void
18914 cp_parser_pre_parsed_nested_name_specifier (cp_parser *parser)
18916 int i;
18917 struct tree_check *check_value;
18918 deferred_access_check *chk;
18919 VEC (deferred_access_check,gc) *checks;
18921 /* Get the stored value. */
18922 check_value = cp_lexer_consume_token (parser->lexer)->u.tree_check_value;
18923 /* Perform any access checks that were deferred. */
18924 checks = check_value->checks;
18925 if (checks)
18927 for (i = 0 ;
18928 VEC_iterate (deferred_access_check, checks, i, chk) ;
18929 ++i)
18931 perform_or_defer_access_check (chk->binfo,
18932 chk->decl,
18933 chk->diag_decl);
18936 /* Set the scope from the stored value. */
18937 parser->scope = check_value->value;
18938 parser->qualifying_scope = check_value->qualifying_scope;
18939 parser->object_scope = NULL_TREE;
18942 /* Consume tokens up through a non-nested END token. Returns TRUE if we
18943 encounter the end of a block before what we were looking for. */
18945 static bool
18946 cp_parser_cache_group (cp_parser *parser,
18947 enum cpp_ttype end,
18948 unsigned depth)
18950 while (true)
18952 cp_token *token = cp_lexer_peek_token (parser->lexer);
18954 /* Abort a parenthesized expression if we encounter a semicolon. */
18955 if ((end == CPP_CLOSE_PAREN || depth == 0)
18956 && token->type == CPP_SEMICOLON)
18957 return true;
18958 /* If we've reached the end of the file, stop. */
18959 if (token->type == CPP_EOF
18960 || (end != CPP_PRAGMA_EOL
18961 && token->type == CPP_PRAGMA_EOL))
18962 return true;
18963 if (token->type == CPP_CLOSE_BRACE && depth == 0)
18964 /* We've hit the end of an enclosing block, so there's been some
18965 kind of syntax error. */
18966 return true;
18968 /* Consume the token. */
18969 cp_lexer_consume_token (parser->lexer);
18970 /* See if it starts a new group. */
18971 if (token->type == CPP_OPEN_BRACE)
18973 cp_parser_cache_group (parser, CPP_CLOSE_BRACE, depth + 1);
18974 /* In theory this should probably check end == '}', but
18975 cp_parser_save_member_function_body needs it to exit
18976 after either '}' or ')' when called with ')'. */
18977 if (depth == 0)
18978 return false;
18980 else if (token->type == CPP_OPEN_PAREN)
18982 cp_parser_cache_group (parser, CPP_CLOSE_PAREN, depth + 1);
18983 if (depth == 0 && end == CPP_CLOSE_PAREN)
18984 return false;
18986 else if (token->type == CPP_PRAGMA)
18987 cp_parser_cache_group (parser, CPP_PRAGMA_EOL, depth + 1);
18988 else if (token->type == end)
18989 return false;
18993 /* Begin parsing tentatively. We always save tokens while parsing
18994 tentatively so that if the tentative parsing fails we can restore the
18995 tokens. */
18997 static void
18998 cp_parser_parse_tentatively (cp_parser* parser)
19000 /* Enter a new parsing context. */
19001 parser->context = cp_parser_context_new (parser->context);
19002 /* Begin saving tokens. */
19003 cp_lexer_save_tokens (parser->lexer);
19004 /* In order to avoid repetitive access control error messages,
19005 access checks are queued up until we are no longer parsing
19006 tentatively. */
19007 push_deferring_access_checks (dk_deferred);
19010 /* Commit to the currently active tentative parse. */
19012 static void
19013 cp_parser_commit_to_tentative_parse (cp_parser* parser)
19015 cp_parser_context *context;
19016 cp_lexer *lexer;
19018 /* Mark all of the levels as committed. */
19019 lexer = parser->lexer;
19020 for (context = parser->context; context->next; context = context->next)
19022 if (context->status == CP_PARSER_STATUS_KIND_COMMITTED)
19023 break;
19024 context->status = CP_PARSER_STATUS_KIND_COMMITTED;
19025 while (!cp_lexer_saving_tokens (lexer))
19026 lexer = lexer->next;
19027 cp_lexer_commit_tokens (lexer);
19031 /* Abort the currently active tentative parse. All consumed tokens
19032 will be rolled back, and no diagnostics will be issued. */
19034 static void
19035 cp_parser_abort_tentative_parse (cp_parser* parser)
19037 cp_parser_simulate_error (parser);
19038 /* Now, pretend that we want to see if the construct was
19039 successfully parsed. */
19040 cp_parser_parse_definitely (parser);
19043 /* Stop parsing tentatively. If a parse error has occurred, restore the
19044 token stream. Otherwise, commit to the tokens we have consumed.
19045 Returns true if no error occurred; false otherwise. */
19047 static bool
19048 cp_parser_parse_definitely (cp_parser* parser)
19050 bool error_occurred;
19051 cp_parser_context *context;
19053 /* Remember whether or not an error occurred, since we are about to
19054 destroy that information. */
19055 error_occurred = cp_parser_error_occurred (parser);
19056 /* Remove the topmost context from the stack. */
19057 context = parser->context;
19058 parser->context = context->next;
19059 /* If no parse errors occurred, commit to the tentative parse. */
19060 if (!error_occurred)
19062 /* Commit to the tokens read tentatively, unless that was
19063 already done. */
19064 if (context->status != CP_PARSER_STATUS_KIND_COMMITTED)
19065 cp_lexer_commit_tokens (parser->lexer);
19067 pop_to_parent_deferring_access_checks ();
19069 /* Otherwise, if errors occurred, roll back our state so that things
19070 are just as they were before we began the tentative parse. */
19071 else
19073 cp_lexer_rollback_tokens (parser->lexer);
19074 pop_deferring_access_checks ();
19076 /* Add the context to the front of the free list. */
19077 context->next = cp_parser_context_free_list;
19078 cp_parser_context_free_list = context;
19080 return !error_occurred;
19083 /* Returns true if we are parsing tentatively and are not committed to
19084 this tentative parse. */
19086 static bool
19087 cp_parser_uncommitted_to_tentative_parse_p (cp_parser* parser)
19089 return (cp_parser_parsing_tentatively (parser)
19090 && parser->context->status != CP_PARSER_STATUS_KIND_COMMITTED);
19093 /* Returns nonzero iff an error has occurred during the most recent
19094 tentative parse. */
19096 static bool
19097 cp_parser_error_occurred (cp_parser* parser)
19099 return (cp_parser_parsing_tentatively (parser)
19100 && parser->context->status == CP_PARSER_STATUS_KIND_ERROR);
19103 /* Returns nonzero if GNU extensions are allowed. */
19105 static bool
19106 cp_parser_allow_gnu_extensions_p (cp_parser* parser)
19108 return parser->allow_gnu_extensions_p;
19111 /* Objective-C++ Productions */
19114 /* Parse an Objective-C expression, which feeds into a primary-expression
19115 above.
19117 objc-expression:
19118 objc-message-expression
19119 objc-string-literal
19120 objc-encode-expression
19121 objc-protocol-expression
19122 objc-selector-expression
19124 Returns a tree representation of the expression. */
19126 static tree
19127 cp_parser_objc_expression (cp_parser* parser)
19129 /* Try to figure out what kind of declaration is present. */
19130 cp_token *kwd = cp_lexer_peek_token (parser->lexer);
19132 switch (kwd->type)
19134 case CPP_OPEN_SQUARE:
19135 return cp_parser_objc_message_expression (parser);
19137 case CPP_OBJC_STRING:
19138 kwd = cp_lexer_consume_token (parser->lexer);
19139 return objc_build_string_object (kwd->u.value);
19141 case CPP_KEYWORD:
19142 switch (kwd->keyword)
19144 case RID_AT_ENCODE:
19145 return cp_parser_objc_encode_expression (parser);
19147 case RID_AT_PROTOCOL:
19148 return cp_parser_objc_protocol_expression (parser);
19150 case RID_AT_SELECTOR:
19151 return cp_parser_objc_selector_expression (parser);
19153 default:
19154 break;
19156 default:
19157 error ("%Hmisplaced %<@%D%> Objective-C++ construct",
19158 &kwd->location, kwd->u.value);
19159 cp_parser_skip_to_end_of_block_or_statement (parser);
19162 return error_mark_node;
19165 /* Parse an Objective-C message expression.
19167 objc-message-expression:
19168 [ objc-message-receiver objc-message-args ]
19170 Returns a representation of an Objective-C message. */
19172 static tree
19173 cp_parser_objc_message_expression (cp_parser* parser)
19175 tree receiver, messageargs;
19177 cp_lexer_consume_token (parser->lexer); /* Eat '['. */
19178 receiver = cp_parser_objc_message_receiver (parser);
19179 messageargs = cp_parser_objc_message_args (parser);
19180 cp_parser_require (parser, CPP_CLOSE_SQUARE, "%<]%>");
19182 return objc_build_message_expr (build_tree_list (receiver, messageargs));
19185 /* Parse an objc-message-receiver.
19187 objc-message-receiver:
19188 expression
19189 simple-type-specifier
19191 Returns a representation of the type or expression. */
19193 static tree
19194 cp_parser_objc_message_receiver (cp_parser* parser)
19196 tree rcv;
19198 /* An Objective-C message receiver may be either (1) a type
19199 or (2) an expression. */
19200 cp_parser_parse_tentatively (parser);
19201 rcv = cp_parser_expression (parser, false, NULL);
19203 if (cp_parser_parse_definitely (parser))
19204 return rcv;
19206 rcv = cp_parser_simple_type_specifier (parser,
19207 /*decl_specs=*/NULL,
19208 CP_PARSER_FLAGS_NONE);
19210 return objc_get_class_reference (rcv);
19213 /* Parse the arguments and selectors comprising an Objective-C message.
19215 objc-message-args:
19216 objc-selector
19217 objc-selector-args
19218 objc-selector-args , objc-comma-args
19220 objc-selector-args:
19221 objc-selector [opt] : assignment-expression
19222 objc-selector-args objc-selector [opt] : assignment-expression
19224 objc-comma-args:
19225 assignment-expression
19226 objc-comma-args , assignment-expression
19228 Returns a TREE_LIST, with TREE_PURPOSE containing a list of
19229 selector arguments and TREE_VALUE containing a list of comma
19230 arguments. */
19232 static tree
19233 cp_parser_objc_message_args (cp_parser* parser)
19235 tree sel_args = NULL_TREE, addl_args = NULL_TREE;
19236 bool maybe_unary_selector_p = true;
19237 cp_token *token = cp_lexer_peek_token (parser->lexer);
19239 while (cp_parser_objc_selector_p (token->type) || token->type == CPP_COLON)
19241 tree selector = NULL_TREE, arg;
19243 if (token->type != CPP_COLON)
19244 selector = cp_parser_objc_selector (parser);
19246 /* Detect if we have a unary selector. */
19247 if (maybe_unary_selector_p
19248 && cp_lexer_next_token_is_not (parser->lexer, CPP_COLON))
19249 return build_tree_list (selector, NULL_TREE);
19251 maybe_unary_selector_p = false;
19252 cp_parser_require (parser, CPP_COLON, "%<:%>");
19253 arg = cp_parser_assignment_expression (parser, false, NULL);
19255 sel_args
19256 = chainon (sel_args,
19257 build_tree_list (selector, arg));
19259 token = cp_lexer_peek_token (parser->lexer);
19262 /* Handle non-selector arguments, if any. */
19263 while (token->type == CPP_COMMA)
19265 tree arg;
19267 cp_lexer_consume_token (parser->lexer);
19268 arg = cp_parser_assignment_expression (parser, false, NULL);
19270 addl_args
19271 = chainon (addl_args,
19272 build_tree_list (NULL_TREE, arg));
19274 token = cp_lexer_peek_token (parser->lexer);
19277 return build_tree_list (sel_args, addl_args);
19280 /* Parse an Objective-C encode expression.
19282 objc-encode-expression:
19283 @encode objc-typename
19285 Returns an encoded representation of the type argument. */
19287 static tree
19288 cp_parser_objc_encode_expression (cp_parser* parser)
19290 tree type;
19291 cp_token *token;
19293 cp_lexer_consume_token (parser->lexer); /* Eat '@encode'. */
19294 cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>");
19295 token = cp_lexer_peek_token (parser->lexer);
19296 type = complete_type (cp_parser_type_id (parser));
19297 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
19299 if (!type)
19301 error ("%H%<@encode%> must specify a type as an argument",
19302 &token->location);
19303 return error_mark_node;
19306 return objc_build_encode_expr (type);
19309 /* Parse an Objective-C @defs expression. */
19311 static tree
19312 cp_parser_objc_defs_expression (cp_parser *parser)
19314 tree name;
19316 cp_lexer_consume_token (parser->lexer); /* Eat '@defs'. */
19317 cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>");
19318 name = cp_parser_identifier (parser);
19319 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
19321 return objc_get_class_ivars (name);
19324 /* Parse an Objective-C protocol expression.
19326 objc-protocol-expression:
19327 @protocol ( identifier )
19329 Returns a representation of the protocol expression. */
19331 static tree
19332 cp_parser_objc_protocol_expression (cp_parser* parser)
19334 tree proto;
19336 cp_lexer_consume_token (parser->lexer); /* Eat '@protocol'. */
19337 cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>");
19338 proto = cp_parser_identifier (parser);
19339 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
19341 return objc_build_protocol_expr (proto);
19344 /* Parse an Objective-C selector expression.
19346 objc-selector-expression:
19347 @selector ( objc-method-signature )
19349 objc-method-signature:
19350 objc-selector
19351 objc-selector-seq
19353 objc-selector-seq:
19354 objc-selector :
19355 objc-selector-seq objc-selector :
19357 Returns a representation of the method selector. */
19359 static tree
19360 cp_parser_objc_selector_expression (cp_parser* parser)
19362 tree sel_seq = NULL_TREE;
19363 bool maybe_unary_selector_p = true;
19364 cp_token *token;
19366 cp_lexer_consume_token (parser->lexer); /* Eat '@selector'. */
19367 cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>");
19368 token = cp_lexer_peek_token (parser->lexer);
19370 while (cp_parser_objc_selector_p (token->type) || token->type == CPP_COLON
19371 || token->type == CPP_SCOPE)
19373 tree selector = NULL_TREE;
19375 if (token->type != CPP_COLON
19376 || token->type == CPP_SCOPE)
19377 selector = cp_parser_objc_selector (parser);
19379 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COLON)
19380 && cp_lexer_next_token_is_not (parser->lexer, CPP_SCOPE))
19382 /* Detect if we have a unary selector. */
19383 if (maybe_unary_selector_p)
19385 sel_seq = selector;
19386 goto finish_selector;
19388 else
19390 cp_parser_error (parser, "expected %<:%>");
19393 maybe_unary_selector_p = false;
19394 token = cp_lexer_consume_token (parser->lexer);
19396 if (token->type == CPP_SCOPE)
19398 sel_seq
19399 = chainon (sel_seq,
19400 build_tree_list (selector, NULL_TREE));
19401 sel_seq
19402 = chainon (sel_seq,
19403 build_tree_list (NULL_TREE, NULL_TREE));
19405 else
19406 sel_seq
19407 = chainon (sel_seq,
19408 build_tree_list (selector, NULL_TREE));
19410 token = cp_lexer_peek_token (parser->lexer);
19413 finish_selector:
19414 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
19416 return objc_build_selector_expr (sel_seq);
19419 /* Parse a list of identifiers.
19421 objc-identifier-list:
19422 identifier
19423 objc-identifier-list , identifier
19425 Returns a TREE_LIST of identifier nodes. */
19427 static tree
19428 cp_parser_objc_identifier_list (cp_parser* parser)
19430 tree list = build_tree_list (NULL_TREE, cp_parser_identifier (parser));
19431 cp_token *sep = cp_lexer_peek_token (parser->lexer);
19433 while (sep->type == CPP_COMMA)
19435 cp_lexer_consume_token (parser->lexer); /* Eat ','. */
19436 list = chainon (list,
19437 build_tree_list (NULL_TREE,
19438 cp_parser_identifier (parser)));
19439 sep = cp_lexer_peek_token (parser->lexer);
19442 return list;
19445 /* Parse an Objective-C alias declaration.
19447 objc-alias-declaration:
19448 @compatibility_alias identifier identifier ;
19450 This function registers the alias mapping with the Objective-C front end.
19451 It returns nothing. */
19453 static void
19454 cp_parser_objc_alias_declaration (cp_parser* parser)
19456 tree alias, orig;
19458 cp_lexer_consume_token (parser->lexer); /* Eat '@compatibility_alias'. */
19459 alias = cp_parser_identifier (parser);
19460 orig = cp_parser_identifier (parser);
19461 objc_declare_alias (alias, orig);
19462 cp_parser_consume_semicolon_at_end_of_statement (parser);
19465 /* Parse an Objective-C class forward-declaration.
19467 objc-class-declaration:
19468 @class objc-identifier-list ;
19470 The function registers the forward declarations with the Objective-C
19471 front end. It returns nothing. */
19473 static void
19474 cp_parser_objc_class_declaration (cp_parser* parser)
19476 cp_lexer_consume_token (parser->lexer); /* Eat '@class'. */
19477 objc_declare_class (cp_parser_objc_identifier_list (parser));
19478 cp_parser_consume_semicolon_at_end_of_statement (parser);
19481 /* Parse a list of Objective-C protocol references.
19483 objc-protocol-refs-opt:
19484 objc-protocol-refs [opt]
19486 objc-protocol-refs:
19487 < objc-identifier-list >
19489 Returns a TREE_LIST of identifiers, if any. */
19491 static tree
19492 cp_parser_objc_protocol_refs_opt (cp_parser* parser)
19494 tree protorefs = NULL_TREE;
19496 if(cp_lexer_next_token_is (parser->lexer, CPP_LESS))
19498 cp_lexer_consume_token (parser->lexer); /* Eat '<'. */
19499 protorefs = cp_parser_objc_identifier_list (parser);
19500 cp_parser_require (parser, CPP_GREATER, "%<>%>");
19503 return protorefs;
19506 /* Parse a Objective-C visibility specification. */
19508 static void
19509 cp_parser_objc_visibility_spec (cp_parser* parser)
19511 cp_token *vis = cp_lexer_peek_token (parser->lexer);
19513 switch (vis->keyword)
19515 case RID_AT_PRIVATE:
19516 objc_set_visibility (2);
19517 break;
19518 case RID_AT_PROTECTED:
19519 objc_set_visibility (0);
19520 break;
19521 case RID_AT_PUBLIC:
19522 objc_set_visibility (1);
19523 break;
19524 default:
19525 return;
19528 /* Eat '@private'/'@protected'/'@public'. */
19529 cp_lexer_consume_token (parser->lexer);
19532 /* Parse an Objective-C method type. */
19534 static void
19535 cp_parser_objc_method_type (cp_parser* parser)
19537 objc_set_method_type
19538 (cp_lexer_consume_token (parser->lexer)->type == CPP_PLUS
19539 ? PLUS_EXPR
19540 : MINUS_EXPR);
19543 /* Parse an Objective-C protocol qualifier. */
19545 static tree
19546 cp_parser_objc_protocol_qualifiers (cp_parser* parser)
19548 tree quals = NULL_TREE, node;
19549 cp_token *token = cp_lexer_peek_token (parser->lexer);
19551 node = token->u.value;
19553 while (node && TREE_CODE (node) == IDENTIFIER_NODE
19554 && (node == ridpointers [(int) RID_IN]
19555 || node == ridpointers [(int) RID_OUT]
19556 || node == ridpointers [(int) RID_INOUT]
19557 || node == ridpointers [(int) RID_BYCOPY]
19558 || node == ridpointers [(int) RID_BYREF]
19559 || node == ridpointers [(int) RID_ONEWAY]))
19561 quals = tree_cons (NULL_TREE, node, quals);
19562 cp_lexer_consume_token (parser->lexer);
19563 token = cp_lexer_peek_token (parser->lexer);
19564 node = token->u.value;
19567 return quals;
19570 /* Parse an Objective-C typename. */
19572 static tree
19573 cp_parser_objc_typename (cp_parser* parser)
19575 tree type_name = NULL_TREE;
19577 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
19579 tree proto_quals, cp_type = NULL_TREE;
19581 cp_lexer_consume_token (parser->lexer); /* Eat '('. */
19582 proto_quals = cp_parser_objc_protocol_qualifiers (parser);
19584 /* An ObjC type name may consist of just protocol qualifiers, in which
19585 case the type shall default to 'id'. */
19586 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN))
19587 cp_type = cp_parser_type_id (parser);
19589 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
19590 type_name = build_tree_list (proto_quals, cp_type);
19593 return type_name;
19596 /* Check to see if TYPE refers to an Objective-C selector name. */
19598 static bool
19599 cp_parser_objc_selector_p (enum cpp_ttype type)
19601 return (type == CPP_NAME || type == CPP_KEYWORD
19602 || type == CPP_AND_AND || type == CPP_AND_EQ || type == CPP_AND
19603 || type == CPP_OR || type == CPP_COMPL || type == CPP_NOT
19604 || type == CPP_NOT_EQ || type == CPP_OR_OR || type == CPP_OR_EQ
19605 || type == CPP_XOR || type == CPP_XOR_EQ);
19608 /* Parse an Objective-C selector. */
19610 static tree
19611 cp_parser_objc_selector (cp_parser* parser)
19613 cp_token *token = cp_lexer_consume_token (parser->lexer);
19615 if (!cp_parser_objc_selector_p (token->type))
19617 error ("%Hinvalid Objective-C++ selector name", &token->location);
19618 return error_mark_node;
19621 /* C++ operator names are allowed to appear in ObjC selectors. */
19622 switch (token->type)
19624 case CPP_AND_AND: return get_identifier ("and");
19625 case CPP_AND_EQ: return get_identifier ("and_eq");
19626 case CPP_AND: return get_identifier ("bitand");
19627 case CPP_OR: return get_identifier ("bitor");
19628 case CPP_COMPL: return get_identifier ("compl");
19629 case CPP_NOT: return get_identifier ("not");
19630 case CPP_NOT_EQ: return get_identifier ("not_eq");
19631 case CPP_OR_OR: return get_identifier ("or");
19632 case CPP_OR_EQ: return get_identifier ("or_eq");
19633 case CPP_XOR: return get_identifier ("xor");
19634 case CPP_XOR_EQ: return get_identifier ("xor_eq");
19635 default: return token->u.value;
19639 /* Parse an Objective-C params list. */
19641 static tree
19642 cp_parser_objc_method_keyword_params (cp_parser* parser)
19644 tree params = NULL_TREE;
19645 bool maybe_unary_selector_p = true;
19646 cp_token *token = cp_lexer_peek_token (parser->lexer);
19648 while (cp_parser_objc_selector_p (token->type) || token->type == CPP_COLON)
19650 tree selector = NULL_TREE, type_name, identifier;
19652 if (token->type != CPP_COLON)
19653 selector = cp_parser_objc_selector (parser);
19655 /* Detect if we have a unary selector. */
19656 if (maybe_unary_selector_p
19657 && cp_lexer_next_token_is_not (parser->lexer, CPP_COLON))
19658 return selector;
19660 maybe_unary_selector_p = false;
19661 cp_parser_require (parser, CPP_COLON, "%<:%>");
19662 type_name = cp_parser_objc_typename (parser);
19663 identifier = cp_parser_identifier (parser);
19665 params
19666 = chainon (params,
19667 objc_build_keyword_decl (selector,
19668 type_name,
19669 identifier));
19671 token = cp_lexer_peek_token (parser->lexer);
19674 return params;
19677 /* Parse the non-keyword Objective-C params. */
19679 static tree
19680 cp_parser_objc_method_tail_params_opt (cp_parser* parser, bool *ellipsisp)
19682 tree params = make_node (TREE_LIST);
19683 cp_token *token = cp_lexer_peek_token (parser->lexer);
19684 *ellipsisp = false; /* Initially, assume no ellipsis. */
19686 while (token->type == CPP_COMMA)
19688 cp_parameter_declarator *parmdecl;
19689 tree parm;
19691 cp_lexer_consume_token (parser->lexer); /* Eat ','. */
19692 token = cp_lexer_peek_token (parser->lexer);
19694 if (token->type == CPP_ELLIPSIS)
19696 cp_lexer_consume_token (parser->lexer); /* Eat '...'. */
19697 *ellipsisp = true;
19698 break;
19701 parmdecl = cp_parser_parameter_declaration (parser, false, NULL);
19702 parm = grokdeclarator (parmdecl->declarator,
19703 &parmdecl->decl_specifiers,
19704 PARM, /*initialized=*/0,
19705 /*attrlist=*/NULL);
19707 chainon (params, build_tree_list (NULL_TREE, parm));
19708 token = cp_lexer_peek_token (parser->lexer);
19711 return params;
19714 /* Parse a linkage specification, a pragma, an extra semicolon or a block. */
19716 static void
19717 cp_parser_objc_interstitial_code (cp_parser* parser)
19719 cp_token *token = cp_lexer_peek_token (parser->lexer);
19721 /* If the next token is `extern' and the following token is a string
19722 literal, then we have a linkage specification. */
19723 if (token->keyword == RID_EXTERN
19724 && cp_parser_is_string_literal (cp_lexer_peek_nth_token (parser->lexer, 2)))
19725 cp_parser_linkage_specification (parser);
19726 /* Handle #pragma, if any. */
19727 else if (token->type == CPP_PRAGMA)
19728 cp_parser_pragma (parser, pragma_external);
19729 /* Allow stray semicolons. */
19730 else if (token->type == CPP_SEMICOLON)
19731 cp_lexer_consume_token (parser->lexer);
19732 /* Finally, try to parse a block-declaration, or a function-definition. */
19733 else
19734 cp_parser_block_declaration (parser, /*statement_p=*/false);
19737 /* Parse a method signature. */
19739 static tree
19740 cp_parser_objc_method_signature (cp_parser* parser)
19742 tree rettype, kwdparms, optparms;
19743 bool ellipsis = false;
19745 cp_parser_objc_method_type (parser);
19746 rettype = cp_parser_objc_typename (parser);
19747 kwdparms = cp_parser_objc_method_keyword_params (parser);
19748 optparms = cp_parser_objc_method_tail_params_opt (parser, &ellipsis);
19750 return objc_build_method_signature (rettype, kwdparms, optparms, ellipsis);
19753 /* Pars an Objective-C method prototype list. */
19755 static void
19756 cp_parser_objc_method_prototype_list (cp_parser* parser)
19758 cp_token *token = cp_lexer_peek_token (parser->lexer);
19760 while (token->keyword != RID_AT_END)
19762 if (token->type == CPP_PLUS || token->type == CPP_MINUS)
19764 objc_add_method_declaration
19765 (cp_parser_objc_method_signature (parser));
19766 cp_parser_consume_semicolon_at_end_of_statement (parser);
19768 else
19769 /* Allow for interspersed non-ObjC++ code. */
19770 cp_parser_objc_interstitial_code (parser);
19772 token = cp_lexer_peek_token (parser->lexer);
19775 cp_lexer_consume_token (parser->lexer); /* Eat '@end'. */
19776 objc_finish_interface ();
19779 /* Parse an Objective-C method definition list. */
19781 static void
19782 cp_parser_objc_method_definition_list (cp_parser* parser)
19784 cp_token *token = cp_lexer_peek_token (parser->lexer);
19786 while (token->keyword != RID_AT_END)
19788 tree meth;
19790 if (token->type == CPP_PLUS || token->type == CPP_MINUS)
19792 push_deferring_access_checks (dk_deferred);
19793 objc_start_method_definition
19794 (cp_parser_objc_method_signature (parser));
19796 /* For historical reasons, we accept an optional semicolon. */
19797 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
19798 cp_lexer_consume_token (parser->lexer);
19800 perform_deferred_access_checks ();
19801 stop_deferring_access_checks ();
19802 meth = cp_parser_function_definition_after_declarator (parser,
19803 false);
19804 pop_deferring_access_checks ();
19805 objc_finish_method_definition (meth);
19807 else
19808 /* Allow for interspersed non-ObjC++ code. */
19809 cp_parser_objc_interstitial_code (parser);
19811 token = cp_lexer_peek_token (parser->lexer);
19814 cp_lexer_consume_token (parser->lexer); /* Eat '@end'. */
19815 objc_finish_implementation ();
19818 /* Parse Objective-C ivars. */
19820 static void
19821 cp_parser_objc_class_ivars (cp_parser* parser)
19823 cp_token *token = cp_lexer_peek_token (parser->lexer);
19825 if (token->type != CPP_OPEN_BRACE)
19826 return; /* No ivars specified. */
19828 cp_lexer_consume_token (parser->lexer); /* Eat '{'. */
19829 token = cp_lexer_peek_token (parser->lexer);
19831 while (token->type != CPP_CLOSE_BRACE)
19833 cp_decl_specifier_seq declspecs;
19834 int decl_class_or_enum_p;
19835 tree prefix_attributes;
19837 cp_parser_objc_visibility_spec (parser);
19839 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
19840 break;
19842 cp_parser_decl_specifier_seq (parser,
19843 CP_PARSER_FLAGS_OPTIONAL,
19844 &declspecs,
19845 &decl_class_or_enum_p);
19846 prefix_attributes = declspecs.attributes;
19847 declspecs.attributes = NULL_TREE;
19849 /* Keep going until we hit the `;' at the end of the
19850 declaration. */
19851 while (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
19853 tree width = NULL_TREE, attributes, first_attribute, decl;
19854 cp_declarator *declarator = NULL;
19855 int ctor_dtor_or_conv_p;
19857 /* Check for a (possibly unnamed) bitfield declaration. */
19858 token = cp_lexer_peek_token (parser->lexer);
19859 if (token->type == CPP_COLON)
19860 goto eat_colon;
19862 if (token->type == CPP_NAME
19863 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
19864 == CPP_COLON))
19866 /* Get the name of the bitfield. */
19867 declarator = make_id_declarator (NULL_TREE,
19868 cp_parser_identifier (parser),
19869 sfk_none);
19871 eat_colon:
19872 cp_lexer_consume_token (parser->lexer); /* Eat ':'. */
19873 /* Get the width of the bitfield. */
19874 width
19875 = cp_parser_constant_expression (parser,
19876 /*allow_non_constant=*/false,
19877 NULL);
19879 else
19881 /* Parse the declarator. */
19882 declarator
19883 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
19884 &ctor_dtor_or_conv_p,
19885 /*parenthesized_p=*/NULL,
19886 /*member_p=*/false);
19889 /* Look for attributes that apply to the ivar. */
19890 attributes = cp_parser_attributes_opt (parser);
19891 /* Remember which attributes are prefix attributes and
19892 which are not. */
19893 first_attribute = attributes;
19894 /* Combine the attributes. */
19895 attributes = chainon (prefix_attributes, attributes);
19897 if (width)
19898 /* Create the bitfield declaration. */
19899 decl = grokbitfield (declarator, &declspecs,
19900 width,
19901 attributes);
19902 else
19903 decl = grokfield (declarator, &declspecs,
19904 NULL_TREE, /*init_const_expr_p=*/false,
19905 NULL_TREE, attributes);
19907 /* Add the instance variable. */
19908 objc_add_instance_variable (decl);
19910 /* Reset PREFIX_ATTRIBUTES. */
19911 while (attributes && TREE_CHAIN (attributes) != first_attribute)
19912 attributes = TREE_CHAIN (attributes);
19913 if (attributes)
19914 TREE_CHAIN (attributes) = NULL_TREE;
19916 token = cp_lexer_peek_token (parser->lexer);
19918 if (token->type == CPP_COMMA)
19920 cp_lexer_consume_token (parser->lexer); /* Eat ','. */
19921 continue;
19923 break;
19926 cp_parser_consume_semicolon_at_end_of_statement (parser);
19927 token = cp_lexer_peek_token (parser->lexer);
19930 cp_lexer_consume_token (parser->lexer); /* Eat '}'. */
19931 /* For historical reasons, we accept an optional semicolon. */
19932 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
19933 cp_lexer_consume_token (parser->lexer);
19936 /* Parse an Objective-C protocol declaration. */
19938 static void
19939 cp_parser_objc_protocol_declaration (cp_parser* parser)
19941 tree proto, protorefs;
19942 cp_token *tok;
19944 cp_lexer_consume_token (parser->lexer); /* Eat '@protocol'. */
19945 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NAME))
19947 tok = cp_lexer_peek_token (parser->lexer);
19948 error ("%Hidentifier expected after %<@protocol%>", &tok->location);
19949 goto finish;
19952 /* See if we have a forward declaration or a definition. */
19953 tok = cp_lexer_peek_nth_token (parser->lexer, 2);
19955 /* Try a forward declaration first. */
19956 if (tok->type == CPP_COMMA || tok->type == CPP_SEMICOLON)
19958 objc_declare_protocols (cp_parser_objc_identifier_list (parser));
19959 finish:
19960 cp_parser_consume_semicolon_at_end_of_statement (parser);
19963 /* Ok, we got a full-fledged definition (or at least should). */
19964 else
19966 proto = cp_parser_identifier (parser);
19967 protorefs = cp_parser_objc_protocol_refs_opt (parser);
19968 objc_start_protocol (proto, protorefs);
19969 cp_parser_objc_method_prototype_list (parser);
19973 /* Parse an Objective-C superclass or category. */
19975 static void
19976 cp_parser_objc_superclass_or_category (cp_parser *parser, tree *super,
19977 tree *categ)
19979 cp_token *next = cp_lexer_peek_token (parser->lexer);
19981 *super = *categ = NULL_TREE;
19982 if (next->type == CPP_COLON)
19984 cp_lexer_consume_token (parser->lexer); /* Eat ':'. */
19985 *super = cp_parser_identifier (parser);
19987 else if (next->type == CPP_OPEN_PAREN)
19989 cp_lexer_consume_token (parser->lexer); /* Eat '('. */
19990 *categ = cp_parser_identifier (parser);
19991 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
19995 /* Parse an Objective-C class interface. */
19997 static void
19998 cp_parser_objc_class_interface (cp_parser* parser)
20000 tree name, super, categ, protos;
20002 cp_lexer_consume_token (parser->lexer); /* Eat '@interface'. */
20003 name = cp_parser_identifier (parser);
20004 cp_parser_objc_superclass_or_category (parser, &super, &categ);
20005 protos = cp_parser_objc_protocol_refs_opt (parser);
20007 /* We have either a class or a category on our hands. */
20008 if (categ)
20009 objc_start_category_interface (name, categ, protos);
20010 else
20012 objc_start_class_interface (name, super, protos);
20013 /* Handle instance variable declarations, if any. */
20014 cp_parser_objc_class_ivars (parser);
20015 objc_continue_interface ();
20018 cp_parser_objc_method_prototype_list (parser);
20021 /* Parse an Objective-C class implementation. */
20023 static void
20024 cp_parser_objc_class_implementation (cp_parser* parser)
20026 tree name, super, categ;
20028 cp_lexer_consume_token (parser->lexer); /* Eat '@implementation'. */
20029 name = cp_parser_identifier (parser);
20030 cp_parser_objc_superclass_or_category (parser, &super, &categ);
20032 /* We have either a class or a category on our hands. */
20033 if (categ)
20034 objc_start_category_implementation (name, categ);
20035 else
20037 objc_start_class_implementation (name, super);
20038 /* Handle instance variable declarations, if any. */
20039 cp_parser_objc_class_ivars (parser);
20040 objc_continue_implementation ();
20043 cp_parser_objc_method_definition_list (parser);
20046 /* Consume the @end token and finish off the implementation. */
20048 static void
20049 cp_parser_objc_end_implementation (cp_parser* parser)
20051 cp_lexer_consume_token (parser->lexer); /* Eat '@end'. */
20052 objc_finish_implementation ();
20055 /* Parse an Objective-C declaration. */
20057 static void
20058 cp_parser_objc_declaration (cp_parser* parser)
20060 /* Try to figure out what kind of declaration is present. */
20061 cp_token *kwd = cp_lexer_peek_token (parser->lexer);
20063 switch (kwd->keyword)
20065 case RID_AT_ALIAS:
20066 cp_parser_objc_alias_declaration (parser);
20067 break;
20068 case RID_AT_CLASS:
20069 cp_parser_objc_class_declaration (parser);
20070 break;
20071 case RID_AT_PROTOCOL:
20072 cp_parser_objc_protocol_declaration (parser);
20073 break;
20074 case RID_AT_INTERFACE:
20075 cp_parser_objc_class_interface (parser);
20076 break;
20077 case RID_AT_IMPLEMENTATION:
20078 cp_parser_objc_class_implementation (parser);
20079 break;
20080 case RID_AT_END:
20081 cp_parser_objc_end_implementation (parser);
20082 break;
20083 default:
20084 error ("%Hmisplaced %<@%D%> Objective-C++ construct",
20085 &kwd->location, kwd->u.value);
20086 cp_parser_skip_to_end_of_block_or_statement (parser);
20090 /* Parse an Objective-C try-catch-finally statement.
20092 objc-try-catch-finally-stmt:
20093 @try compound-statement objc-catch-clause-seq [opt]
20094 objc-finally-clause [opt]
20096 objc-catch-clause-seq:
20097 objc-catch-clause objc-catch-clause-seq [opt]
20099 objc-catch-clause:
20100 @catch ( exception-declaration ) compound-statement
20102 objc-finally-clause
20103 @finally compound-statement
20105 Returns NULL_TREE. */
20107 static tree
20108 cp_parser_objc_try_catch_finally_statement (cp_parser *parser) {
20109 location_t location;
20110 tree stmt;
20112 cp_parser_require_keyword (parser, RID_AT_TRY, "%<@try%>");
20113 location = cp_lexer_peek_token (parser->lexer)->location;
20114 /* NB: The @try block needs to be wrapped in its own STATEMENT_LIST
20115 node, lest it get absorbed into the surrounding block. */
20116 stmt = push_stmt_list ();
20117 cp_parser_compound_statement (parser, NULL, false);
20118 objc_begin_try_stmt (location, pop_stmt_list (stmt));
20120 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_AT_CATCH))
20122 cp_parameter_declarator *parmdecl;
20123 tree parm;
20125 cp_lexer_consume_token (parser->lexer);
20126 cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>");
20127 parmdecl = cp_parser_parameter_declaration (parser, false, NULL);
20128 parm = grokdeclarator (parmdecl->declarator,
20129 &parmdecl->decl_specifiers,
20130 PARM, /*initialized=*/0,
20131 /*attrlist=*/NULL);
20132 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
20133 objc_begin_catch_clause (parm);
20134 cp_parser_compound_statement (parser, NULL, false);
20135 objc_finish_catch_clause ();
20138 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_AT_FINALLY))
20140 cp_lexer_consume_token (parser->lexer);
20141 location = cp_lexer_peek_token (parser->lexer)->location;
20142 /* NB: The @finally block needs to be wrapped in its own STATEMENT_LIST
20143 node, lest it get absorbed into the surrounding block. */
20144 stmt = push_stmt_list ();
20145 cp_parser_compound_statement (parser, NULL, false);
20146 objc_build_finally_clause (location, pop_stmt_list (stmt));
20149 return objc_finish_try_stmt ();
20152 /* Parse an Objective-C synchronized statement.
20154 objc-synchronized-stmt:
20155 @synchronized ( expression ) compound-statement
20157 Returns NULL_TREE. */
20159 static tree
20160 cp_parser_objc_synchronized_statement (cp_parser *parser) {
20161 location_t location;
20162 tree lock, stmt;
20164 cp_parser_require_keyword (parser, RID_AT_SYNCHRONIZED, "%<@synchronized%>");
20166 location = cp_lexer_peek_token (parser->lexer)->location;
20167 cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>");
20168 lock = cp_parser_expression (parser, false, NULL);
20169 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
20171 /* NB: The @synchronized block needs to be wrapped in its own STATEMENT_LIST
20172 node, lest it get absorbed into the surrounding block. */
20173 stmt = push_stmt_list ();
20174 cp_parser_compound_statement (parser, NULL, false);
20176 return objc_build_synchronized (location, lock, pop_stmt_list (stmt));
20179 /* Parse an Objective-C throw statement.
20181 objc-throw-stmt:
20182 @throw assignment-expression [opt] ;
20184 Returns a constructed '@throw' statement. */
20186 static tree
20187 cp_parser_objc_throw_statement (cp_parser *parser) {
20188 tree expr = NULL_TREE;
20190 cp_parser_require_keyword (parser, RID_AT_THROW, "%<@throw%>");
20192 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
20193 expr = cp_parser_assignment_expression (parser, false, NULL);
20195 cp_parser_consume_semicolon_at_end_of_statement (parser);
20197 return objc_build_throw_stmt (expr);
20200 /* Parse an Objective-C statement. */
20202 static tree
20203 cp_parser_objc_statement (cp_parser * parser) {
20204 /* Try to figure out what kind of declaration is present. */
20205 cp_token *kwd = cp_lexer_peek_token (parser->lexer);
20207 switch (kwd->keyword)
20209 case RID_AT_TRY:
20210 return cp_parser_objc_try_catch_finally_statement (parser);
20211 case RID_AT_SYNCHRONIZED:
20212 return cp_parser_objc_synchronized_statement (parser);
20213 case RID_AT_THROW:
20214 return cp_parser_objc_throw_statement (parser);
20215 default:
20216 error ("%Hmisplaced %<@%D%> Objective-C++ construct",
20217 &kwd->location, kwd->u.value);
20218 cp_parser_skip_to_end_of_block_or_statement (parser);
20221 return error_mark_node;
20224 /* OpenMP 2.5 parsing routines. */
20226 /* Returns name of the next clause.
20227 If the clause is not recognized PRAGMA_OMP_CLAUSE_NONE is returned and
20228 the token is not consumed. Otherwise appropriate pragma_omp_clause is
20229 returned and the token is consumed. */
20231 static pragma_omp_clause
20232 cp_parser_omp_clause_name (cp_parser *parser)
20234 pragma_omp_clause result = PRAGMA_OMP_CLAUSE_NONE;
20236 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_IF))
20237 result = PRAGMA_OMP_CLAUSE_IF;
20238 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_DEFAULT))
20239 result = PRAGMA_OMP_CLAUSE_DEFAULT;
20240 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_PRIVATE))
20241 result = PRAGMA_OMP_CLAUSE_PRIVATE;
20242 else if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
20244 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
20245 const char *p = IDENTIFIER_POINTER (id);
20247 switch (p[0])
20249 case 'c':
20250 if (!strcmp ("collapse", p))
20251 result = PRAGMA_OMP_CLAUSE_COLLAPSE;
20252 else if (!strcmp ("copyin", p))
20253 result = PRAGMA_OMP_CLAUSE_COPYIN;
20254 else if (!strcmp ("copyprivate", p))
20255 result = PRAGMA_OMP_CLAUSE_COPYPRIVATE;
20256 break;
20257 case 'f':
20258 if (!strcmp ("firstprivate", p))
20259 result = PRAGMA_OMP_CLAUSE_FIRSTPRIVATE;
20260 break;
20261 case 'l':
20262 if (!strcmp ("lastprivate", p))
20263 result = PRAGMA_OMP_CLAUSE_LASTPRIVATE;
20264 break;
20265 case 'n':
20266 if (!strcmp ("nowait", p))
20267 result = PRAGMA_OMP_CLAUSE_NOWAIT;
20268 else if (!strcmp ("num_threads", p))
20269 result = PRAGMA_OMP_CLAUSE_NUM_THREADS;
20270 break;
20271 case 'o':
20272 if (!strcmp ("ordered", p))
20273 result = PRAGMA_OMP_CLAUSE_ORDERED;
20274 break;
20275 case 'r':
20276 if (!strcmp ("reduction", p))
20277 result = PRAGMA_OMP_CLAUSE_REDUCTION;
20278 break;
20279 case 's':
20280 if (!strcmp ("schedule", p))
20281 result = PRAGMA_OMP_CLAUSE_SCHEDULE;
20282 else if (!strcmp ("shared", p))
20283 result = PRAGMA_OMP_CLAUSE_SHARED;
20284 break;
20285 case 'u':
20286 if (!strcmp ("untied", p))
20287 result = PRAGMA_OMP_CLAUSE_UNTIED;
20288 break;
20292 if (result != PRAGMA_OMP_CLAUSE_NONE)
20293 cp_lexer_consume_token (parser->lexer);
20295 return result;
20298 /* Validate that a clause of the given type does not already exist. */
20300 static void
20301 check_no_duplicate_clause (tree clauses, enum omp_clause_code code,
20302 const char *name, location_t location)
20304 tree c;
20306 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
20307 if (OMP_CLAUSE_CODE (c) == code)
20309 error ("%Htoo many %qs clauses", &location, name);
20310 break;
20314 /* OpenMP 2.5:
20315 variable-list:
20316 identifier
20317 variable-list , identifier
20319 In addition, we match a closing parenthesis. An opening parenthesis
20320 will have been consumed by the caller.
20322 If KIND is nonzero, create the appropriate node and install the decl
20323 in OMP_CLAUSE_DECL and add the node to the head of the list.
20325 If KIND is zero, create a TREE_LIST with the decl in TREE_PURPOSE;
20326 return the list created. */
20328 static tree
20329 cp_parser_omp_var_list_no_open (cp_parser *parser, enum omp_clause_code kind,
20330 tree list)
20332 cp_token *token;
20333 while (1)
20335 tree name, decl;
20337 token = cp_lexer_peek_token (parser->lexer);
20338 name = cp_parser_id_expression (parser, /*template_p=*/false,
20339 /*check_dependency_p=*/true,
20340 /*template_p=*/NULL,
20341 /*declarator_p=*/false,
20342 /*optional_p=*/false);
20343 if (name == error_mark_node)
20344 goto skip_comma;
20346 decl = cp_parser_lookup_name_simple (parser, name, token->location);
20347 if (decl == error_mark_node)
20348 cp_parser_name_lookup_error (parser, name, decl, NULL, token->location);
20349 else if (kind != 0)
20351 tree u = build_omp_clause (kind);
20352 OMP_CLAUSE_DECL (u) = decl;
20353 OMP_CLAUSE_CHAIN (u) = list;
20354 list = u;
20356 else
20357 list = tree_cons (decl, NULL_TREE, list);
20359 get_comma:
20360 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
20361 break;
20362 cp_lexer_consume_token (parser->lexer);
20365 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>"))
20367 int ending;
20369 /* Try to resync to an unnested comma. Copied from
20370 cp_parser_parenthesized_expression_list. */
20371 skip_comma:
20372 ending = cp_parser_skip_to_closing_parenthesis (parser,
20373 /*recovering=*/true,
20374 /*or_comma=*/true,
20375 /*consume_paren=*/true);
20376 if (ending < 0)
20377 goto get_comma;
20380 return list;
20383 /* Similarly, but expect leading and trailing parenthesis. This is a very
20384 common case for omp clauses. */
20386 static tree
20387 cp_parser_omp_var_list (cp_parser *parser, enum omp_clause_code kind, tree list)
20389 if (cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>"))
20390 return cp_parser_omp_var_list_no_open (parser, kind, list);
20391 return list;
20394 /* OpenMP 3.0:
20395 collapse ( constant-expression ) */
20397 static tree
20398 cp_parser_omp_clause_collapse (cp_parser *parser, tree list, location_t location)
20400 tree c, num;
20401 location_t loc;
20402 HOST_WIDE_INT n;
20404 loc = cp_lexer_peek_token (parser->lexer)->location;
20405 if (!cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>"))
20406 return list;
20408 num = cp_parser_constant_expression (parser, false, NULL);
20410 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>"))
20411 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
20412 /*or_comma=*/false,
20413 /*consume_paren=*/true);
20415 if (num == error_mark_node)
20416 return list;
20417 num = fold_non_dependent_expr (num);
20418 if (!INTEGRAL_TYPE_P (TREE_TYPE (num))
20419 || !host_integerp (num, 0)
20420 || (n = tree_low_cst (num, 0)) <= 0
20421 || (int) n != n)
20423 error ("%Hcollapse argument needs positive constant integer expression",
20424 &loc);
20425 return list;
20428 check_no_duplicate_clause (list, OMP_CLAUSE_COLLAPSE, "collapse", location);
20429 c = build_omp_clause (OMP_CLAUSE_COLLAPSE);
20430 OMP_CLAUSE_CHAIN (c) = list;
20431 OMP_CLAUSE_COLLAPSE_EXPR (c) = num;
20433 return c;
20436 /* OpenMP 2.5:
20437 default ( shared | none ) */
20439 static tree
20440 cp_parser_omp_clause_default (cp_parser *parser, tree list, location_t location)
20442 enum omp_clause_default_kind kind = OMP_CLAUSE_DEFAULT_UNSPECIFIED;
20443 tree c;
20445 if (!cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>"))
20446 return list;
20447 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
20449 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
20450 const char *p = IDENTIFIER_POINTER (id);
20452 switch (p[0])
20454 case 'n':
20455 if (strcmp ("none", p) != 0)
20456 goto invalid_kind;
20457 kind = OMP_CLAUSE_DEFAULT_NONE;
20458 break;
20460 case 's':
20461 if (strcmp ("shared", p) != 0)
20462 goto invalid_kind;
20463 kind = OMP_CLAUSE_DEFAULT_SHARED;
20464 break;
20466 default:
20467 goto invalid_kind;
20470 cp_lexer_consume_token (parser->lexer);
20472 else
20474 invalid_kind:
20475 cp_parser_error (parser, "expected %<none%> or %<shared%>");
20478 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>"))
20479 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
20480 /*or_comma=*/false,
20481 /*consume_paren=*/true);
20483 if (kind == OMP_CLAUSE_DEFAULT_UNSPECIFIED)
20484 return list;
20486 check_no_duplicate_clause (list, OMP_CLAUSE_DEFAULT, "default", location);
20487 c = build_omp_clause (OMP_CLAUSE_DEFAULT);
20488 OMP_CLAUSE_CHAIN (c) = list;
20489 OMP_CLAUSE_DEFAULT_KIND (c) = kind;
20491 return c;
20494 /* OpenMP 2.5:
20495 if ( expression ) */
20497 static tree
20498 cp_parser_omp_clause_if (cp_parser *parser, tree list, location_t location)
20500 tree t, c;
20502 if (!cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>"))
20503 return list;
20505 t = cp_parser_condition (parser);
20507 if (t == error_mark_node
20508 || !cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>"))
20509 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
20510 /*or_comma=*/false,
20511 /*consume_paren=*/true);
20513 check_no_duplicate_clause (list, OMP_CLAUSE_IF, "if", location);
20515 c = build_omp_clause (OMP_CLAUSE_IF);
20516 OMP_CLAUSE_IF_EXPR (c) = t;
20517 OMP_CLAUSE_CHAIN (c) = list;
20519 return c;
20522 /* OpenMP 2.5:
20523 nowait */
20525 static tree
20526 cp_parser_omp_clause_nowait (cp_parser *parser ATTRIBUTE_UNUSED,
20527 tree list, location_t location)
20529 tree c;
20531 check_no_duplicate_clause (list, OMP_CLAUSE_NOWAIT, "nowait", location);
20533 c = build_omp_clause (OMP_CLAUSE_NOWAIT);
20534 OMP_CLAUSE_CHAIN (c) = list;
20535 return c;
20538 /* OpenMP 2.5:
20539 num_threads ( expression ) */
20541 static tree
20542 cp_parser_omp_clause_num_threads (cp_parser *parser, tree list,
20543 location_t location)
20545 tree t, c;
20547 if (!cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>"))
20548 return list;
20550 t = cp_parser_expression (parser, false, NULL);
20552 if (t == error_mark_node
20553 || !cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>"))
20554 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
20555 /*or_comma=*/false,
20556 /*consume_paren=*/true);
20558 check_no_duplicate_clause (list, OMP_CLAUSE_NUM_THREADS,
20559 "num_threads", location);
20561 c = build_omp_clause (OMP_CLAUSE_NUM_THREADS);
20562 OMP_CLAUSE_NUM_THREADS_EXPR (c) = t;
20563 OMP_CLAUSE_CHAIN (c) = list;
20565 return c;
20568 /* OpenMP 2.5:
20569 ordered */
20571 static tree
20572 cp_parser_omp_clause_ordered (cp_parser *parser ATTRIBUTE_UNUSED,
20573 tree list, location_t location)
20575 tree c;
20577 check_no_duplicate_clause (list, OMP_CLAUSE_ORDERED,
20578 "ordered", location);
20580 c = build_omp_clause (OMP_CLAUSE_ORDERED);
20581 OMP_CLAUSE_CHAIN (c) = list;
20582 return c;
20585 /* OpenMP 2.5:
20586 reduction ( reduction-operator : variable-list )
20588 reduction-operator:
20589 One of: + * - & ^ | && || */
20591 static tree
20592 cp_parser_omp_clause_reduction (cp_parser *parser, tree list)
20594 enum tree_code code;
20595 tree nlist, c;
20597 if (!cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>"))
20598 return list;
20600 switch (cp_lexer_peek_token (parser->lexer)->type)
20602 case CPP_PLUS:
20603 code = PLUS_EXPR;
20604 break;
20605 case CPP_MULT:
20606 code = MULT_EXPR;
20607 break;
20608 case CPP_MINUS:
20609 code = MINUS_EXPR;
20610 break;
20611 case CPP_AND:
20612 code = BIT_AND_EXPR;
20613 break;
20614 case CPP_XOR:
20615 code = BIT_XOR_EXPR;
20616 break;
20617 case CPP_OR:
20618 code = BIT_IOR_EXPR;
20619 break;
20620 case CPP_AND_AND:
20621 code = TRUTH_ANDIF_EXPR;
20622 break;
20623 case CPP_OR_OR:
20624 code = TRUTH_ORIF_EXPR;
20625 break;
20626 default:
20627 cp_parser_error (parser, "expected %<+%>, %<*%>, %<-%>, %<&%>, %<^%>, "
20628 "%<|%>, %<&&%>, or %<||%>");
20629 resync_fail:
20630 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
20631 /*or_comma=*/false,
20632 /*consume_paren=*/true);
20633 return list;
20635 cp_lexer_consume_token (parser->lexer);
20637 if (!cp_parser_require (parser, CPP_COLON, "%<:%>"))
20638 goto resync_fail;
20640 nlist = cp_parser_omp_var_list_no_open (parser, OMP_CLAUSE_REDUCTION, list);
20641 for (c = nlist; c != list; c = OMP_CLAUSE_CHAIN (c))
20642 OMP_CLAUSE_REDUCTION_CODE (c) = code;
20644 return nlist;
20647 /* OpenMP 2.5:
20648 schedule ( schedule-kind )
20649 schedule ( schedule-kind , expression )
20651 schedule-kind:
20652 static | dynamic | guided | runtime | auto */
20654 static tree
20655 cp_parser_omp_clause_schedule (cp_parser *parser, tree list, location_t location)
20657 tree c, t;
20659 if (!cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>"))
20660 return list;
20662 c = build_omp_clause (OMP_CLAUSE_SCHEDULE);
20664 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
20666 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
20667 const char *p = IDENTIFIER_POINTER (id);
20669 switch (p[0])
20671 case 'd':
20672 if (strcmp ("dynamic", p) != 0)
20673 goto invalid_kind;
20674 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_DYNAMIC;
20675 break;
20677 case 'g':
20678 if (strcmp ("guided", p) != 0)
20679 goto invalid_kind;
20680 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_GUIDED;
20681 break;
20683 case 'r':
20684 if (strcmp ("runtime", p) != 0)
20685 goto invalid_kind;
20686 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_RUNTIME;
20687 break;
20689 default:
20690 goto invalid_kind;
20693 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_STATIC))
20694 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_STATIC;
20695 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_AUTO))
20696 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_AUTO;
20697 else
20698 goto invalid_kind;
20699 cp_lexer_consume_token (parser->lexer);
20701 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
20703 cp_token *token;
20704 cp_lexer_consume_token (parser->lexer);
20706 token = cp_lexer_peek_token (parser->lexer);
20707 t = cp_parser_assignment_expression (parser, false, NULL);
20709 if (t == error_mark_node)
20710 goto resync_fail;
20711 else if (OMP_CLAUSE_SCHEDULE_KIND (c) == OMP_CLAUSE_SCHEDULE_RUNTIME)
20712 error ("%Hschedule %<runtime%> does not take "
20713 "a %<chunk_size%> parameter", &token->location);
20714 else if (OMP_CLAUSE_SCHEDULE_KIND (c) == OMP_CLAUSE_SCHEDULE_AUTO)
20715 error ("%Hschedule %<auto%> does not take "
20716 "a %<chunk_size%> parameter", &token->location);
20717 else
20718 OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c) = t;
20720 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>"))
20721 goto resync_fail;
20723 else if (!cp_parser_require (parser, CPP_CLOSE_PAREN, "%<,%> or %<)%>"))
20724 goto resync_fail;
20726 check_no_duplicate_clause (list, OMP_CLAUSE_SCHEDULE, "schedule", location);
20727 OMP_CLAUSE_CHAIN (c) = list;
20728 return c;
20730 invalid_kind:
20731 cp_parser_error (parser, "invalid schedule kind");
20732 resync_fail:
20733 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
20734 /*or_comma=*/false,
20735 /*consume_paren=*/true);
20736 return list;
20739 /* OpenMP 3.0:
20740 untied */
20742 static tree
20743 cp_parser_omp_clause_untied (cp_parser *parser ATTRIBUTE_UNUSED,
20744 tree list, location_t location)
20746 tree c;
20748 check_no_duplicate_clause (list, OMP_CLAUSE_UNTIED, "untied", location);
20750 c = build_omp_clause (OMP_CLAUSE_UNTIED);
20751 OMP_CLAUSE_CHAIN (c) = list;
20752 return c;
20755 /* Parse all OpenMP clauses. The set clauses allowed by the directive
20756 is a bitmask in MASK. Return the list of clauses found; the result
20757 of clause default goes in *pdefault. */
20759 static tree
20760 cp_parser_omp_all_clauses (cp_parser *parser, unsigned int mask,
20761 const char *where, cp_token *pragma_tok)
20763 tree clauses = NULL;
20764 bool first = true;
20765 cp_token *token = NULL;
20767 while (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL))
20769 pragma_omp_clause c_kind;
20770 const char *c_name;
20771 tree prev = clauses;
20773 if (!first && cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
20774 cp_lexer_consume_token (parser->lexer);
20776 token = cp_lexer_peek_token (parser->lexer);
20777 c_kind = cp_parser_omp_clause_name (parser);
20778 first = false;
20780 switch (c_kind)
20782 case PRAGMA_OMP_CLAUSE_COLLAPSE:
20783 clauses = cp_parser_omp_clause_collapse (parser, clauses,
20784 token->location);
20785 c_name = "collapse";
20786 break;
20787 case PRAGMA_OMP_CLAUSE_COPYIN:
20788 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_COPYIN, clauses);
20789 c_name = "copyin";
20790 break;
20791 case PRAGMA_OMP_CLAUSE_COPYPRIVATE:
20792 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_COPYPRIVATE,
20793 clauses);
20794 c_name = "copyprivate";
20795 break;
20796 case PRAGMA_OMP_CLAUSE_DEFAULT:
20797 clauses = cp_parser_omp_clause_default (parser, clauses,
20798 token->location);
20799 c_name = "default";
20800 break;
20801 case PRAGMA_OMP_CLAUSE_FIRSTPRIVATE:
20802 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_FIRSTPRIVATE,
20803 clauses);
20804 c_name = "firstprivate";
20805 break;
20806 case PRAGMA_OMP_CLAUSE_IF:
20807 clauses = cp_parser_omp_clause_if (parser, clauses, token->location);
20808 c_name = "if";
20809 break;
20810 case PRAGMA_OMP_CLAUSE_LASTPRIVATE:
20811 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_LASTPRIVATE,
20812 clauses);
20813 c_name = "lastprivate";
20814 break;
20815 case PRAGMA_OMP_CLAUSE_NOWAIT:
20816 clauses = cp_parser_omp_clause_nowait (parser, clauses, token->location);
20817 c_name = "nowait";
20818 break;
20819 case PRAGMA_OMP_CLAUSE_NUM_THREADS:
20820 clauses = cp_parser_omp_clause_num_threads (parser, clauses,
20821 token->location);
20822 c_name = "num_threads";
20823 break;
20824 case PRAGMA_OMP_CLAUSE_ORDERED:
20825 clauses = cp_parser_omp_clause_ordered (parser, clauses,
20826 token->location);
20827 c_name = "ordered";
20828 break;
20829 case PRAGMA_OMP_CLAUSE_PRIVATE:
20830 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_PRIVATE,
20831 clauses);
20832 c_name = "private";
20833 break;
20834 case PRAGMA_OMP_CLAUSE_REDUCTION:
20835 clauses = cp_parser_omp_clause_reduction (parser, clauses);
20836 c_name = "reduction";
20837 break;
20838 case PRAGMA_OMP_CLAUSE_SCHEDULE:
20839 clauses = cp_parser_omp_clause_schedule (parser, clauses,
20840 token->location);
20841 c_name = "schedule";
20842 break;
20843 case PRAGMA_OMP_CLAUSE_SHARED:
20844 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_SHARED,
20845 clauses);
20846 c_name = "shared";
20847 break;
20848 case PRAGMA_OMP_CLAUSE_UNTIED:
20849 clauses = cp_parser_omp_clause_untied (parser, clauses,
20850 token->location);
20851 c_name = "nowait";
20852 break;
20853 default:
20854 cp_parser_error (parser, "expected %<#pragma omp%> clause");
20855 goto saw_error;
20858 if (((mask >> c_kind) & 1) == 0)
20860 /* Remove the invalid clause(s) from the list to avoid
20861 confusing the rest of the compiler. */
20862 clauses = prev;
20863 error ("%H%qs is not valid for %qs", &token->location, c_name, where);
20866 saw_error:
20867 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
20868 return finish_omp_clauses (clauses);
20871 /* OpenMP 2.5:
20872 structured-block:
20873 statement
20875 In practice, we're also interested in adding the statement to an
20876 outer node. So it is convenient if we work around the fact that
20877 cp_parser_statement calls add_stmt. */
20879 static unsigned
20880 cp_parser_begin_omp_structured_block (cp_parser *parser)
20882 unsigned save = parser->in_statement;
20884 /* Only move the values to IN_OMP_BLOCK if they weren't false.
20885 This preserves the "not within loop or switch" style error messages
20886 for nonsense cases like
20887 void foo() {
20888 #pragma omp single
20889 break;
20892 if (parser->in_statement)
20893 parser->in_statement = IN_OMP_BLOCK;
20895 return save;
20898 static void
20899 cp_parser_end_omp_structured_block (cp_parser *parser, unsigned save)
20901 parser->in_statement = save;
20904 static tree
20905 cp_parser_omp_structured_block (cp_parser *parser)
20907 tree stmt = begin_omp_structured_block ();
20908 unsigned int save = cp_parser_begin_omp_structured_block (parser);
20910 cp_parser_statement (parser, NULL_TREE, false, NULL);
20912 cp_parser_end_omp_structured_block (parser, save);
20913 return finish_omp_structured_block (stmt);
20916 /* OpenMP 2.5:
20917 # pragma omp atomic new-line
20918 expression-stmt
20920 expression-stmt:
20921 x binop= expr | x++ | ++x | x-- | --x
20922 binop:
20923 +, *, -, /, &, ^, |, <<, >>
20925 where x is an lvalue expression with scalar type. */
20927 static void
20928 cp_parser_omp_atomic (cp_parser *parser, cp_token *pragma_tok)
20930 tree lhs, rhs;
20931 enum tree_code code;
20933 cp_parser_require_pragma_eol (parser, pragma_tok);
20935 lhs = cp_parser_unary_expression (parser, /*address_p=*/false,
20936 /*cast_p=*/false, NULL);
20937 switch (TREE_CODE (lhs))
20939 case ERROR_MARK:
20940 goto saw_error;
20942 case PREINCREMENT_EXPR:
20943 case POSTINCREMENT_EXPR:
20944 lhs = TREE_OPERAND (lhs, 0);
20945 code = PLUS_EXPR;
20946 rhs = integer_one_node;
20947 break;
20949 case PREDECREMENT_EXPR:
20950 case POSTDECREMENT_EXPR:
20951 lhs = TREE_OPERAND (lhs, 0);
20952 code = MINUS_EXPR;
20953 rhs = integer_one_node;
20954 break;
20956 default:
20957 switch (cp_lexer_peek_token (parser->lexer)->type)
20959 case CPP_MULT_EQ:
20960 code = MULT_EXPR;
20961 break;
20962 case CPP_DIV_EQ:
20963 code = TRUNC_DIV_EXPR;
20964 break;
20965 case CPP_PLUS_EQ:
20966 code = PLUS_EXPR;
20967 break;
20968 case CPP_MINUS_EQ:
20969 code = MINUS_EXPR;
20970 break;
20971 case CPP_LSHIFT_EQ:
20972 code = LSHIFT_EXPR;
20973 break;
20974 case CPP_RSHIFT_EQ:
20975 code = RSHIFT_EXPR;
20976 break;
20977 case CPP_AND_EQ:
20978 code = BIT_AND_EXPR;
20979 break;
20980 case CPP_OR_EQ:
20981 code = BIT_IOR_EXPR;
20982 break;
20983 case CPP_XOR_EQ:
20984 code = BIT_XOR_EXPR;
20985 break;
20986 default:
20987 cp_parser_error (parser,
20988 "invalid operator for %<#pragma omp atomic%>");
20989 goto saw_error;
20991 cp_lexer_consume_token (parser->lexer);
20993 rhs = cp_parser_expression (parser, false, NULL);
20994 if (rhs == error_mark_node)
20995 goto saw_error;
20996 break;
20998 finish_omp_atomic (code, lhs, rhs);
20999 cp_parser_consume_semicolon_at_end_of_statement (parser);
21000 return;
21002 saw_error:
21003 cp_parser_skip_to_end_of_block_or_statement (parser);
21007 /* OpenMP 2.5:
21008 # pragma omp barrier new-line */
21010 static void
21011 cp_parser_omp_barrier (cp_parser *parser, cp_token *pragma_tok)
21013 cp_parser_require_pragma_eol (parser, pragma_tok);
21014 finish_omp_barrier ();
21017 /* OpenMP 2.5:
21018 # pragma omp critical [(name)] new-line
21019 structured-block */
21021 static tree
21022 cp_parser_omp_critical (cp_parser *parser, cp_token *pragma_tok)
21024 tree stmt, name = NULL;
21026 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
21028 cp_lexer_consume_token (parser->lexer);
21030 name = cp_parser_identifier (parser);
21032 if (name == error_mark_node
21033 || !cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>"))
21034 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
21035 /*or_comma=*/false,
21036 /*consume_paren=*/true);
21037 if (name == error_mark_node)
21038 name = NULL;
21040 cp_parser_require_pragma_eol (parser, pragma_tok);
21042 stmt = cp_parser_omp_structured_block (parser);
21043 return c_finish_omp_critical (stmt, name);
21046 /* OpenMP 2.5:
21047 # pragma omp flush flush-vars[opt] new-line
21049 flush-vars:
21050 ( variable-list ) */
21052 static void
21053 cp_parser_omp_flush (cp_parser *parser, cp_token *pragma_tok)
21055 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
21056 (void) cp_parser_omp_var_list (parser, 0, NULL);
21057 cp_parser_require_pragma_eol (parser, pragma_tok);
21059 finish_omp_flush ();
21062 /* Helper function, to parse omp for increment expression. */
21064 static tree
21065 cp_parser_omp_for_cond (cp_parser *parser, tree decl)
21067 tree cond = cp_parser_binary_expression (parser, false, true,
21068 PREC_NOT_OPERATOR, NULL);
21069 bool overloaded_p;
21071 if (cond == error_mark_node
21072 || cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
21074 cp_parser_skip_to_end_of_statement (parser);
21075 return error_mark_node;
21078 switch (TREE_CODE (cond))
21080 case GT_EXPR:
21081 case GE_EXPR:
21082 case LT_EXPR:
21083 case LE_EXPR:
21084 break;
21085 default:
21086 return error_mark_node;
21089 /* If decl is an iterator, preserve LHS and RHS of the relational
21090 expr until finish_omp_for. */
21091 if (decl
21092 && (type_dependent_expression_p (decl)
21093 || CLASS_TYPE_P (TREE_TYPE (decl))))
21094 return cond;
21096 return build_x_binary_op (TREE_CODE (cond),
21097 TREE_OPERAND (cond, 0), ERROR_MARK,
21098 TREE_OPERAND (cond, 1), ERROR_MARK,
21099 &overloaded_p, tf_warning_or_error);
21102 /* Helper function, to parse omp for increment expression. */
21104 static tree
21105 cp_parser_omp_for_incr (cp_parser *parser, tree decl)
21107 cp_token *token = cp_lexer_peek_token (parser->lexer);
21108 enum tree_code op;
21109 tree lhs, rhs;
21110 cp_id_kind idk;
21111 bool decl_first;
21113 if (token->type == CPP_PLUS_PLUS || token->type == CPP_MINUS_MINUS)
21115 op = (token->type == CPP_PLUS_PLUS
21116 ? PREINCREMENT_EXPR : PREDECREMENT_EXPR);
21117 cp_lexer_consume_token (parser->lexer);
21118 lhs = cp_parser_cast_expression (parser, false, false, NULL);
21119 if (lhs != decl)
21120 return error_mark_node;
21121 return build2 (op, TREE_TYPE (decl), decl, NULL_TREE);
21124 lhs = cp_parser_primary_expression (parser, false, false, false, &idk);
21125 if (lhs != decl)
21126 return error_mark_node;
21128 token = cp_lexer_peek_token (parser->lexer);
21129 if (token->type == CPP_PLUS_PLUS || token->type == CPP_MINUS_MINUS)
21131 op = (token->type == CPP_PLUS_PLUS
21132 ? POSTINCREMENT_EXPR : POSTDECREMENT_EXPR);
21133 cp_lexer_consume_token (parser->lexer);
21134 return build2 (op, TREE_TYPE (decl), decl, NULL_TREE);
21137 op = cp_parser_assignment_operator_opt (parser);
21138 if (op == ERROR_MARK)
21139 return error_mark_node;
21141 if (op != NOP_EXPR)
21143 rhs = cp_parser_assignment_expression (parser, false, NULL);
21144 rhs = build2 (op, TREE_TYPE (decl), decl, rhs);
21145 return build2 (MODIFY_EXPR, TREE_TYPE (decl), decl, rhs);
21148 lhs = cp_parser_binary_expression (parser, false, false,
21149 PREC_ADDITIVE_EXPRESSION, NULL);
21150 token = cp_lexer_peek_token (parser->lexer);
21151 decl_first = lhs == decl;
21152 if (decl_first)
21153 lhs = NULL_TREE;
21154 if (token->type != CPP_PLUS
21155 && token->type != CPP_MINUS)
21156 return error_mark_node;
21160 op = token->type == CPP_PLUS ? PLUS_EXPR : MINUS_EXPR;
21161 cp_lexer_consume_token (parser->lexer);
21162 rhs = cp_parser_binary_expression (parser, false, false,
21163 PREC_ADDITIVE_EXPRESSION, NULL);
21164 token = cp_lexer_peek_token (parser->lexer);
21165 if (token->type == CPP_PLUS || token->type == CPP_MINUS || decl_first)
21167 if (lhs == NULL_TREE)
21169 if (op == PLUS_EXPR)
21170 lhs = rhs;
21171 else
21172 lhs = build_x_unary_op (NEGATE_EXPR, rhs, tf_warning_or_error);
21174 else
21175 lhs = build_x_binary_op (op, lhs, ERROR_MARK, rhs, ERROR_MARK,
21176 NULL, tf_warning_or_error);
21179 while (token->type == CPP_PLUS || token->type == CPP_MINUS);
21181 if (!decl_first)
21183 if (rhs != decl || op == MINUS_EXPR)
21184 return error_mark_node;
21185 rhs = build2 (op, TREE_TYPE (decl), lhs, decl);
21187 else
21188 rhs = build2 (PLUS_EXPR, TREE_TYPE (decl), decl, lhs);
21190 return build2 (MODIFY_EXPR, TREE_TYPE (decl), decl, rhs);
21193 /* Parse the restricted form of the for statement allowed by OpenMP. */
21195 static tree
21196 cp_parser_omp_for_loop (cp_parser *parser, tree clauses, tree *par_clauses)
21198 tree init, cond, incr, body, decl, pre_body = NULL_TREE, ret;
21199 tree for_block = NULL_TREE, real_decl, initv, condv, incrv, declv;
21200 tree this_pre_body, cl;
21201 location_t loc_first;
21202 bool collapse_err = false;
21203 int i, collapse = 1, nbraces = 0;
21205 for (cl = clauses; cl; cl = OMP_CLAUSE_CHAIN (cl))
21206 if (OMP_CLAUSE_CODE (cl) == OMP_CLAUSE_COLLAPSE)
21207 collapse = tree_low_cst (OMP_CLAUSE_COLLAPSE_EXPR (cl), 0);
21209 gcc_assert (collapse >= 1);
21211 declv = make_tree_vec (collapse);
21212 initv = make_tree_vec (collapse);
21213 condv = make_tree_vec (collapse);
21214 incrv = make_tree_vec (collapse);
21216 loc_first = cp_lexer_peek_token (parser->lexer)->location;
21218 for (i = 0; i < collapse; i++)
21220 int bracecount = 0;
21221 bool add_private_clause = false;
21222 location_t loc;
21224 if (!cp_lexer_next_token_is_keyword (parser->lexer, RID_FOR))
21226 cp_parser_error (parser, "for statement expected");
21227 return NULL;
21229 loc = cp_lexer_consume_token (parser->lexer)->location;
21231 if (!cp_parser_require (parser, CPP_OPEN_PAREN, "%<(%>"))
21232 return NULL;
21234 init = decl = real_decl = NULL;
21235 this_pre_body = push_stmt_list ();
21236 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
21238 /* See 2.5.1 (in OpenMP 3.0, similar wording is in 2.5 standard too):
21240 init-expr:
21241 var = lb
21242 integer-type var = lb
21243 random-access-iterator-type var = lb
21244 pointer-type var = lb
21246 cp_decl_specifier_seq type_specifiers;
21248 /* First, try to parse as an initialized declaration. See
21249 cp_parser_condition, from whence the bulk of this is copied. */
21251 cp_parser_parse_tentatively (parser);
21252 cp_parser_type_specifier_seq (parser, /*is_condition=*/false,
21253 &type_specifiers);
21254 if (cp_parser_parse_definitely (parser))
21256 /* If parsing a type specifier seq succeeded, then this
21257 MUST be a initialized declaration. */
21258 tree asm_specification, attributes;
21259 cp_declarator *declarator;
21261 declarator = cp_parser_declarator (parser,
21262 CP_PARSER_DECLARATOR_NAMED,
21263 /*ctor_dtor_or_conv_p=*/NULL,
21264 /*parenthesized_p=*/NULL,
21265 /*member_p=*/false);
21266 attributes = cp_parser_attributes_opt (parser);
21267 asm_specification = cp_parser_asm_specification_opt (parser);
21269 if (declarator == cp_error_declarator)
21270 cp_parser_skip_to_end_of_statement (parser);
21272 else
21274 tree pushed_scope, auto_node;
21276 decl = start_decl (declarator, &type_specifiers,
21277 SD_INITIALIZED, attributes,
21278 /*prefix_attributes=*/NULL_TREE,
21279 &pushed_scope);
21281 auto_node = type_uses_auto (TREE_TYPE (decl));
21282 if (cp_lexer_next_token_is_not (parser->lexer, CPP_EQ))
21284 if (cp_lexer_next_token_is (parser->lexer,
21285 CPP_OPEN_PAREN))
21286 error ("parenthesized initialization is not allowed in "
21287 "OpenMP %<for%> loop");
21288 else
21289 /* Trigger an error. */
21290 cp_parser_require (parser, CPP_EQ, "%<=%>");
21292 init = error_mark_node;
21293 cp_parser_skip_to_end_of_statement (parser);
21295 else if (CLASS_TYPE_P (TREE_TYPE (decl))
21296 || type_dependent_expression_p (decl)
21297 || auto_node)
21299 bool is_direct_init, is_non_constant_init;
21301 init = cp_parser_initializer (parser,
21302 &is_direct_init,
21303 &is_non_constant_init);
21305 if (auto_node && describable_type (init))
21307 TREE_TYPE (decl)
21308 = do_auto_deduction (TREE_TYPE (decl), init,
21309 auto_node);
21311 if (!CLASS_TYPE_P (TREE_TYPE (decl))
21312 && !type_dependent_expression_p (decl))
21313 goto non_class;
21316 cp_finish_decl (decl, init, !is_non_constant_init,
21317 asm_specification,
21318 LOOKUP_ONLYCONVERTING);
21319 if (CLASS_TYPE_P (TREE_TYPE (decl)))
21321 for_block
21322 = tree_cons (NULL, this_pre_body, for_block);
21323 init = NULL_TREE;
21325 else
21326 init = pop_stmt_list (this_pre_body);
21327 this_pre_body = NULL_TREE;
21329 else
21331 /* Consume '='. */
21332 cp_lexer_consume_token (parser->lexer);
21333 init = cp_parser_assignment_expression (parser, false, NULL);
21335 non_class:
21336 if (TREE_CODE (TREE_TYPE (decl)) == REFERENCE_TYPE)
21337 init = error_mark_node;
21338 else
21339 cp_finish_decl (decl, NULL_TREE,
21340 /*init_const_expr_p=*/false,
21341 asm_specification,
21342 LOOKUP_ONLYCONVERTING);
21345 if (pushed_scope)
21346 pop_scope (pushed_scope);
21349 else
21351 cp_id_kind idk;
21352 /* If parsing a type specifier sequence failed, then
21353 this MUST be a simple expression. */
21354 cp_parser_parse_tentatively (parser);
21355 decl = cp_parser_primary_expression (parser, false, false,
21356 false, &idk);
21357 if (!cp_parser_error_occurred (parser)
21358 && decl
21359 && DECL_P (decl)
21360 && CLASS_TYPE_P (TREE_TYPE (decl)))
21362 tree rhs;
21364 cp_parser_parse_definitely (parser);
21365 cp_parser_require (parser, CPP_EQ, "%<=%>");
21366 rhs = cp_parser_assignment_expression (parser, false, NULL);
21367 finish_expr_stmt (build_x_modify_expr (decl, NOP_EXPR,
21368 rhs,
21369 tf_warning_or_error));
21370 add_private_clause = true;
21372 else
21374 decl = NULL;
21375 cp_parser_abort_tentative_parse (parser);
21376 init = cp_parser_expression (parser, false, NULL);
21377 if (init)
21379 if (TREE_CODE (init) == MODIFY_EXPR
21380 || TREE_CODE (init) == MODOP_EXPR)
21381 real_decl = TREE_OPERAND (init, 0);
21386 cp_parser_require (parser, CPP_SEMICOLON, "%<;%>");
21387 if (this_pre_body)
21389 this_pre_body = pop_stmt_list (this_pre_body);
21390 if (pre_body)
21392 tree t = pre_body;
21393 pre_body = push_stmt_list ();
21394 add_stmt (t);
21395 add_stmt (this_pre_body);
21396 pre_body = pop_stmt_list (pre_body);
21398 else
21399 pre_body = this_pre_body;
21402 if (decl)
21403 real_decl = decl;
21404 if (par_clauses != NULL && real_decl != NULL_TREE)
21406 tree *c;
21407 for (c = par_clauses; *c ; )
21408 if (OMP_CLAUSE_CODE (*c) == OMP_CLAUSE_FIRSTPRIVATE
21409 && OMP_CLAUSE_DECL (*c) == real_decl)
21411 error ("%Hiteration variable %qD should not be firstprivate",
21412 &loc, real_decl);
21413 *c = OMP_CLAUSE_CHAIN (*c);
21415 else if (OMP_CLAUSE_CODE (*c) == OMP_CLAUSE_LASTPRIVATE
21416 && OMP_CLAUSE_DECL (*c) == real_decl)
21418 /* Add lastprivate (decl) clause to OMP_FOR_CLAUSES,
21419 change it to shared (decl) in OMP_PARALLEL_CLAUSES. */
21420 tree l = build_omp_clause (OMP_CLAUSE_LASTPRIVATE);
21421 OMP_CLAUSE_DECL (l) = real_decl;
21422 OMP_CLAUSE_CHAIN (l) = clauses;
21423 CP_OMP_CLAUSE_INFO (l) = CP_OMP_CLAUSE_INFO (*c);
21424 clauses = l;
21425 OMP_CLAUSE_SET_CODE (*c, OMP_CLAUSE_SHARED);
21426 CP_OMP_CLAUSE_INFO (*c) = NULL;
21427 add_private_clause = false;
21429 else
21431 if (OMP_CLAUSE_CODE (*c) == OMP_CLAUSE_PRIVATE
21432 && OMP_CLAUSE_DECL (*c) == real_decl)
21433 add_private_clause = false;
21434 c = &OMP_CLAUSE_CHAIN (*c);
21438 if (add_private_clause)
21440 tree c;
21441 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
21443 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_PRIVATE
21444 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE)
21445 && OMP_CLAUSE_DECL (c) == decl)
21446 break;
21447 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
21448 && OMP_CLAUSE_DECL (c) == decl)
21449 error ("%Hiteration variable %qD should not be firstprivate",
21450 &loc, decl);
21451 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
21452 && OMP_CLAUSE_DECL (c) == decl)
21453 error ("%Hiteration variable %qD should not be reduction",
21454 &loc, decl);
21456 if (c == NULL)
21458 c = build_omp_clause (OMP_CLAUSE_PRIVATE);
21459 OMP_CLAUSE_DECL (c) = decl;
21460 c = finish_omp_clauses (c);
21461 if (c)
21463 OMP_CLAUSE_CHAIN (c) = clauses;
21464 clauses = c;
21469 cond = NULL;
21470 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
21471 cond = cp_parser_omp_for_cond (parser, decl);
21472 cp_parser_require (parser, CPP_SEMICOLON, "%<;%>");
21474 incr = NULL;
21475 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN))
21477 /* If decl is an iterator, preserve the operator on decl
21478 until finish_omp_for. */
21479 if (decl
21480 && (type_dependent_expression_p (decl)
21481 || CLASS_TYPE_P (TREE_TYPE (decl))))
21482 incr = cp_parser_omp_for_incr (parser, decl);
21483 else
21484 incr = cp_parser_expression (parser, false, NULL);
21487 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>"))
21488 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
21489 /*or_comma=*/false,
21490 /*consume_paren=*/true);
21492 TREE_VEC_ELT (declv, i) = decl;
21493 TREE_VEC_ELT (initv, i) = init;
21494 TREE_VEC_ELT (condv, i) = cond;
21495 TREE_VEC_ELT (incrv, i) = incr;
21497 if (i == collapse - 1)
21498 break;
21500 /* FIXME: OpenMP 3.0 draft isn't very clear on what exactly is allowed
21501 in between the collapsed for loops to be still considered perfectly
21502 nested. Hopefully the final version clarifies this.
21503 For now handle (multiple) {'s and empty statements. */
21504 cp_parser_parse_tentatively (parser);
21507 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_FOR))
21508 break;
21509 else if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
21511 cp_lexer_consume_token (parser->lexer);
21512 bracecount++;
21514 else if (bracecount
21515 && cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
21516 cp_lexer_consume_token (parser->lexer);
21517 else
21519 loc = cp_lexer_peek_token (parser->lexer)->location;
21520 error ("%Hnot enough collapsed for loops", &loc);
21521 collapse_err = true;
21522 cp_parser_abort_tentative_parse (parser);
21523 declv = NULL_TREE;
21524 break;
21527 while (1);
21529 if (declv)
21531 cp_parser_parse_definitely (parser);
21532 nbraces += bracecount;
21536 /* Note that we saved the original contents of this flag when we entered
21537 the structured block, and so we don't need to re-save it here. */
21538 parser->in_statement = IN_OMP_FOR;
21540 /* Note that the grammar doesn't call for a structured block here,
21541 though the loop as a whole is a structured block. */
21542 body = push_stmt_list ();
21543 cp_parser_statement (parser, NULL_TREE, false, NULL);
21544 body = pop_stmt_list (body);
21546 if (declv == NULL_TREE)
21547 ret = NULL_TREE;
21548 else
21549 ret = finish_omp_for (loc_first, declv, initv, condv, incrv, body,
21550 pre_body, clauses);
21552 while (nbraces)
21554 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
21556 cp_lexer_consume_token (parser->lexer);
21557 nbraces--;
21559 else if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
21560 cp_lexer_consume_token (parser->lexer);
21561 else
21563 if (!collapse_err)
21565 location_t loc = cp_lexer_peek_token (parser->lexer)->location;
21566 error ("%Hcollapsed loops not perfectly nested", &loc);
21568 collapse_err = true;
21569 cp_parser_statement_seq_opt (parser, NULL);
21570 cp_parser_require (parser, CPP_CLOSE_BRACE, "%<}%>");
21574 while (for_block)
21576 add_stmt (pop_stmt_list (TREE_VALUE (for_block)));
21577 for_block = TREE_CHAIN (for_block);
21580 return ret;
21583 /* OpenMP 2.5:
21584 #pragma omp for for-clause[optseq] new-line
21585 for-loop */
21587 #define OMP_FOR_CLAUSE_MASK \
21588 ( (1u << PRAGMA_OMP_CLAUSE_PRIVATE) \
21589 | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
21590 | (1u << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
21591 | (1u << PRAGMA_OMP_CLAUSE_REDUCTION) \
21592 | (1u << PRAGMA_OMP_CLAUSE_ORDERED) \
21593 | (1u << PRAGMA_OMP_CLAUSE_SCHEDULE) \
21594 | (1u << PRAGMA_OMP_CLAUSE_NOWAIT) \
21595 | (1u << PRAGMA_OMP_CLAUSE_COLLAPSE))
21597 static tree
21598 cp_parser_omp_for (cp_parser *parser, cp_token *pragma_tok)
21600 tree clauses, sb, ret;
21601 unsigned int save;
21603 clauses = cp_parser_omp_all_clauses (parser, OMP_FOR_CLAUSE_MASK,
21604 "#pragma omp for", pragma_tok);
21606 sb = begin_omp_structured_block ();
21607 save = cp_parser_begin_omp_structured_block (parser);
21609 ret = cp_parser_omp_for_loop (parser, clauses, NULL);
21611 cp_parser_end_omp_structured_block (parser, save);
21612 add_stmt (finish_omp_structured_block (sb));
21614 return ret;
21617 /* OpenMP 2.5:
21618 # pragma omp master new-line
21619 structured-block */
21621 static tree
21622 cp_parser_omp_master (cp_parser *parser, cp_token *pragma_tok)
21624 cp_parser_require_pragma_eol (parser, pragma_tok);
21625 return c_finish_omp_master (cp_parser_omp_structured_block (parser));
21628 /* OpenMP 2.5:
21629 # pragma omp ordered new-line
21630 structured-block */
21632 static tree
21633 cp_parser_omp_ordered (cp_parser *parser, cp_token *pragma_tok)
21635 cp_parser_require_pragma_eol (parser, pragma_tok);
21636 return c_finish_omp_ordered (cp_parser_omp_structured_block (parser));
21639 /* OpenMP 2.5:
21641 section-scope:
21642 { section-sequence }
21644 section-sequence:
21645 section-directive[opt] structured-block
21646 section-sequence section-directive structured-block */
21648 static tree
21649 cp_parser_omp_sections_scope (cp_parser *parser)
21651 tree stmt, substmt;
21652 bool error_suppress = false;
21653 cp_token *tok;
21655 if (!cp_parser_require (parser, CPP_OPEN_BRACE, "%<{%>"))
21656 return NULL_TREE;
21658 stmt = push_stmt_list ();
21660 if (cp_lexer_peek_token (parser->lexer)->pragma_kind != PRAGMA_OMP_SECTION)
21662 unsigned save;
21664 substmt = begin_omp_structured_block ();
21665 save = cp_parser_begin_omp_structured_block (parser);
21667 while (1)
21669 cp_parser_statement (parser, NULL_TREE, false, NULL);
21671 tok = cp_lexer_peek_token (parser->lexer);
21672 if (tok->pragma_kind == PRAGMA_OMP_SECTION)
21673 break;
21674 if (tok->type == CPP_CLOSE_BRACE)
21675 break;
21676 if (tok->type == CPP_EOF)
21677 break;
21680 cp_parser_end_omp_structured_block (parser, save);
21681 substmt = finish_omp_structured_block (substmt);
21682 substmt = build1 (OMP_SECTION, void_type_node, substmt);
21683 add_stmt (substmt);
21686 while (1)
21688 tok = cp_lexer_peek_token (parser->lexer);
21689 if (tok->type == CPP_CLOSE_BRACE)
21690 break;
21691 if (tok->type == CPP_EOF)
21692 break;
21694 if (tok->pragma_kind == PRAGMA_OMP_SECTION)
21696 cp_lexer_consume_token (parser->lexer);
21697 cp_parser_require_pragma_eol (parser, tok);
21698 error_suppress = false;
21700 else if (!error_suppress)
21702 cp_parser_error (parser, "expected %<#pragma omp section%> or %<}%>");
21703 error_suppress = true;
21706 substmt = cp_parser_omp_structured_block (parser);
21707 substmt = build1 (OMP_SECTION, void_type_node, substmt);
21708 add_stmt (substmt);
21710 cp_parser_require (parser, CPP_CLOSE_BRACE, "%<}%>");
21712 substmt = pop_stmt_list (stmt);
21714 stmt = make_node (OMP_SECTIONS);
21715 TREE_TYPE (stmt) = void_type_node;
21716 OMP_SECTIONS_BODY (stmt) = substmt;
21718 add_stmt (stmt);
21719 return stmt;
21722 /* OpenMP 2.5:
21723 # pragma omp sections sections-clause[optseq] newline
21724 sections-scope */
21726 #define OMP_SECTIONS_CLAUSE_MASK \
21727 ( (1u << PRAGMA_OMP_CLAUSE_PRIVATE) \
21728 | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
21729 | (1u << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
21730 | (1u << PRAGMA_OMP_CLAUSE_REDUCTION) \
21731 | (1u << PRAGMA_OMP_CLAUSE_NOWAIT))
21733 static tree
21734 cp_parser_omp_sections (cp_parser *parser, cp_token *pragma_tok)
21736 tree clauses, ret;
21738 clauses = cp_parser_omp_all_clauses (parser, OMP_SECTIONS_CLAUSE_MASK,
21739 "#pragma omp sections", pragma_tok);
21741 ret = cp_parser_omp_sections_scope (parser);
21742 if (ret)
21743 OMP_SECTIONS_CLAUSES (ret) = clauses;
21745 return ret;
21748 /* OpenMP 2.5:
21749 # pragma parallel parallel-clause new-line
21750 # pragma parallel for parallel-for-clause new-line
21751 # pragma parallel sections parallel-sections-clause new-line */
21753 #define OMP_PARALLEL_CLAUSE_MASK \
21754 ( (1u << PRAGMA_OMP_CLAUSE_IF) \
21755 | (1u << PRAGMA_OMP_CLAUSE_PRIVATE) \
21756 | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
21757 | (1u << PRAGMA_OMP_CLAUSE_DEFAULT) \
21758 | (1u << PRAGMA_OMP_CLAUSE_SHARED) \
21759 | (1u << PRAGMA_OMP_CLAUSE_COPYIN) \
21760 | (1u << PRAGMA_OMP_CLAUSE_REDUCTION) \
21761 | (1u << PRAGMA_OMP_CLAUSE_NUM_THREADS))
21763 static tree
21764 cp_parser_omp_parallel (cp_parser *parser, cp_token *pragma_tok)
21766 enum pragma_kind p_kind = PRAGMA_OMP_PARALLEL;
21767 const char *p_name = "#pragma omp parallel";
21768 tree stmt, clauses, par_clause, ws_clause, block;
21769 unsigned int mask = OMP_PARALLEL_CLAUSE_MASK;
21770 unsigned int save;
21772 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_FOR))
21774 cp_lexer_consume_token (parser->lexer);
21775 p_kind = PRAGMA_OMP_PARALLEL_FOR;
21776 p_name = "#pragma omp parallel for";
21777 mask |= OMP_FOR_CLAUSE_MASK;
21778 mask &= ~(1u << PRAGMA_OMP_CLAUSE_NOWAIT);
21780 else if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
21782 tree id = cp_lexer_peek_token (parser->lexer)->u.value;
21783 const char *p = IDENTIFIER_POINTER (id);
21784 if (strcmp (p, "sections") == 0)
21786 cp_lexer_consume_token (parser->lexer);
21787 p_kind = PRAGMA_OMP_PARALLEL_SECTIONS;
21788 p_name = "#pragma omp parallel sections";
21789 mask |= OMP_SECTIONS_CLAUSE_MASK;
21790 mask &= ~(1u << PRAGMA_OMP_CLAUSE_NOWAIT);
21794 clauses = cp_parser_omp_all_clauses (parser, mask, p_name, pragma_tok);
21795 block = begin_omp_parallel ();
21796 save = cp_parser_begin_omp_structured_block (parser);
21798 switch (p_kind)
21800 case PRAGMA_OMP_PARALLEL:
21801 cp_parser_statement (parser, NULL_TREE, false, NULL);
21802 par_clause = clauses;
21803 break;
21805 case PRAGMA_OMP_PARALLEL_FOR:
21806 c_split_parallel_clauses (clauses, &par_clause, &ws_clause);
21807 cp_parser_omp_for_loop (parser, ws_clause, &par_clause);
21808 break;
21810 case PRAGMA_OMP_PARALLEL_SECTIONS:
21811 c_split_parallel_clauses (clauses, &par_clause, &ws_clause);
21812 stmt = cp_parser_omp_sections_scope (parser);
21813 if (stmt)
21814 OMP_SECTIONS_CLAUSES (stmt) = ws_clause;
21815 break;
21817 default:
21818 gcc_unreachable ();
21821 cp_parser_end_omp_structured_block (parser, save);
21822 stmt = finish_omp_parallel (par_clause, block);
21823 if (p_kind != PRAGMA_OMP_PARALLEL)
21824 OMP_PARALLEL_COMBINED (stmt) = 1;
21825 return stmt;
21828 /* OpenMP 2.5:
21829 # pragma omp single single-clause[optseq] new-line
21830 structured-block */
21832 #define OMP_SINGLE_CLAUSE_MASK \
21833 ( (1u << PRAGMA_OMP_CLAUSE_PRIVATE) \
21834 | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
21835 | (1u << PRAGMA_OMP_CLAUSE_COPYPRIVATE) \
21836 | (1u << PRAGMA_OMP_CLAUSE_NOWAIT))
21838 static tree
21839 cp_parser_omp_single (cp_parser *parser, cp_token *pragma_tok)
21841 tree stmt = make_node (OMP_SINGLE);
21842 TREE_TYPE (stmt) = void_type_node;
21844 OMP_SINGLE_CLAUSES (stmt)
21845 = cp_parser_omp_all_clauses (parser, OMP_SINGLE_CLAUSE_MASK,
21846 "#pragma omp single", pragma_tok);
21847 OMP_SINGLE_BODY (stmt) = cp_parser_omp_structured_block (parser);
21849 return add_stmt (stmt);
21852 /* OpenMP 3.0:
21853 # pragma omp task task-clause[optseq] new-line
21854 structured-block */
21856 #define OMP_TASK_CLAUSE_MASK \
21857 ( (1u << PRAGMA_OMP_CLAUSE_IF) \
21858 | (1u << PRAGMA_OMP_CLAUSE_UNTIED) \
21859 | (1u << PRAGMA_OMP_CLAUSE_DEFAULT) \
21860 | (1u << PRAGMA_OMP_CLAUSE_PRIVATE) \
21861 | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
21862 | (1u << PRAGMA_OMP_CLAUSE_SHARED))
21864 static tree
21865 cp_parser_omp_task (cp_parser *parser, cp_token *pragma_tok)
21867 tree clauses, block;
21868 unsigned int save;
21870 clauses = cp_parser_omp_all_clauses (parser, OMP_TASK_CLAUSE_MASK,
21871 "#pragma omp task", pragma_tok);
21872 block = begin_omp_task ();
21873 save = cp_parser_begin_omp_structured_block (parser);
21874 cp_parser_statement (parser, NULL_TREE, false, NULL);
21875 cp_parser_end_omp_structured_block (parser, save);
21876 return finish_omp_task (clauses, block);
21879 /* OpenMP 3.0:
21880 # pragma omp taskwait new-line */
21882 static void
21883 cp_parser_omp_taskwait (cp_parser *parser, cp_token *pragma_tok)
21885 cp_parser_require_pragma_eol (parser, pragma_tok);
21886 finish_omp_taskwait ();
21889 /* OpenMP 2.5:
21890 # pragma omp threadprivate (variable-list) */
21892 static void
21893 cp_parser_omp_threadprivate (cp_parser *parser, cp_token *pragma_tok)
21895 tree vars;
21897 vars = cp_parser_omp_var_list (parser, 0, NULL);
21898 cp_parser_require_pragma_eol (parser, pragma_tok);
21900 finish_omp_threadprivate (vars);
21903 /* Main entry point to OpenMP statement pragmas. */
21905 static void
21906 cp_parser_omp_construct (cp_parser *parser, cp_token *pragma_tok)
21908 tree stmt;
21910 switch (pragma_tok->pragma_kind)
21912 case PRAGMA_OMP_ATOMIC:
21913 cp_parser_omp_atomic (parser, pragma_tok);
21914 return;
21915 case PRAGMA_OMP_CRITICAL:
21916 stmt = cp_parser_omp_critical (parser, pragma_tok);
21917 break;
21918 case PRAGMA_OMP_FOR:
21919 stmt = cp_parser_omp_for (parser, pragma_tok);
21920 break;
21921 case PRAGMA_OMP_MASTER:
21922 stmt = cp_parser_omp_master (parser, pragma_tok);
21923 break;
21924 case PRAGMA_OMP_ORDERED:
21925 stmt = cp_parser_omp_ordered (parser, pragma_tok);
21926 break;
21927 case PRAGMA_OMP_PARALLEL:
21928 stmt = cp_parser_omp_parallel (parser, pragma_tok);
21929 break;
21930 case PRAGMA_OMP_SECTIONS:
21931 stmt = cp_parser_omp_sections (parser, pragma_tok);
21932 break;
21933 case PRAGMA_OMP_SINGLE:
21934 stmt = cp_parser_omp_single (parser, pragma_tok);
21935 break;
21936 case PRAGMA_OMP_TASK:
21937 stmt = cp_parser_omp_task (parser, pragma_tok);
21938 break;
21939 default:
21940 gcc_unreachable ();
21943 if (stmt)
21944 SET_EXPR_LOCATION (stmt, pragma_tok->location);
21947 /* The parser. */
21949 static GTY (()) cp_parser *the_parser;
21952 /* Special handling for the first token or line in the file. The first
21953 thing in the file might be #pragma GCC pch_preprocess, which loads a
21954 PCH file, which is a GC collection point. So we need to handle this
21955 first pragma without benefit of an existing lexer structure.
21957 Always returns one token to the caller in *FIRST_TOKEN. This is
21958 either the true first token of the file, or the first token after
21959 the initial pragma. */
21961 static void
21962 cp_parser_initial_pragma (cp_token *first_token)
21964 tree name = NULL;
21966 cp_lexer_get_preprocessor_token (NULL, first_token);
21967 if (first_token->pragma_kind != PRAGMA_GCC_PCH_PREPROCESS)
21968 return;
21970 cp_lexer_get_preprocessor_token (NULL, first_token);
21971 if (first_token->type == CPP_STRING)
21973 name = first_token->u.value;
21975 cp_lexer_get_preprocessor_token (NULL, first_token);
21976 if (first_token->type != CPP_PRAGMA_EOL)
21977 error ("%Hjunk at end of %<#pragma GCC pch_preprocess%>",
21978 &first_token->location);
21980 else
21981 error ("%Hexpected string literal", &first_token->location);
21983 /* Skip to the end of the pragma. */
21984 while (first_token->type != CPP_PRAGMA_EOL && first_token->type != CPP_EOF)
21985 cp_lexer_get_preprocessor_token (NULL, first_token);
21987 /* Now actually load the PCH file. */
21988 if (name)
21989 c_common_pch_pragma (parse_in, TREE_STRING_POINTER (name));
21991 /* Read one more token to return to our caller. We have to do this
21992 after reading the PCH file in, since its pointers have to be
21993 live. */
21994 cp_lexer_get_preprocessor_token (NULL, first_token);
21997 /* Normal parsing of a pragma token. Here we can (and must) use the
21998 regular lexer. */
22000 static bool
22001 cp_parser_pragma (cp_parser *parser, enum pragma_context context)
22003 cp_token *pragma_tok;
22004 unsigned int id;
22006 pragma_tok = cp_lexer_consume_token (parser->lexer);
22007 gcc_assert (pragma_tok->type == CPP_PRAGMA);
22008 parser->lexer->in_pragma = true;
22010 id = pragma_tok->pragma_kind;
22011 switch (id)
22013 case PRAGMA_GCC_PCH_PREPROCESS:
22014 error ("%H%<#pragma GCC pch_preprocess%> must be first",
22015 &pragma_tok->location);
22016 break;
22018 case PRAGMA_OMP_BARRIER:
22019 switch (context)
22021 case pragma_compound:
22022 cp_parser_omp_barrier (parser, pragma_tok);
22023 return false;
22024 case pragma_stmt:
22025 error ("%H%<#pragma omp barrier%> may only be "
22026 "used in compound statements", &pragma_tok->location);
22027 break;
22028 default:
22029 goto bad_stmt;
22031 break;
22033 case PRAGMA_OMP_FLUSH:
22034 switch (context)
22036 case pragma_compound:
22037 cp_parser_omp_flush (parser, pragma_tok);
22038 return false;
22039 case pragma_stmt:
22040 error ("%H%<#pragma omp flush%> may only be "
22041 "used in compound statements", &pragma_tok->location);
22042 break;
22043 default:
22044 goto bad_stmt;
22046 break;
22048 case PRAGMA_OMP_TASKWAIT:
22049 switch (context)
22051 case pragma_compound:
22052 cp_parser_omp_taskwait (parser, pragma_tok);
22053 return false;
22054 case pragma_stmt:
22055 error ("%H%<#pragma omp taskwait%> may only be "
22056 "used in compound statements",
22057 &pragma_tok->location);
22058 break;
22059 default:
22060 goto bad_stmt;
22062 break;
22064 case PRAGMA_OMP_THREADPRIVATE:
22065 cp_parser_omp_threadprivate (parser, pragma_tok);
22066 return false;
22068 case PRAGMA_OMP_ATOMIC:
22069 case PRAGMA_OMP_CRITICAL:
22070 case PRAGMA_OMP_FOR:
22071 case PRAGMA_OMP_MASTER:
22072 case PRAGMA_OMP_ORDERED:
22073 case PRAGMA_OMP_PARALLEL:
22074 case PRAGMA_OMP_SECTIONS:
22075 case PRAGMA_OMP_SINGLE:
22076 case PRAGMA_OMP_TASK:
22077 if (context == pragma_external)
22078 goto bad_stmt;
22079 cp_parser_omp_construct (parser, pragma_tok);
22080 return true;
22082 case PRAGMA_OMP_SECTION:
22083 error ("%H%<#pragma omp section%> may only be used in "
22084 "%<#pragma omp sections%> construct", &pragma_tok->location);
22085 break;
22087 default:
22088 gcc_assert (id >= PRAGMA_FIRST_EXTERNAL);
22089 c_invoke_pragma_handler (id);
22090 break;
22092 bad_stmt:
22093 cp_parser_error (parser, "expected declaration specifiers");
22094 break;
22097 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
22098 return false;
22101 /* The interface the pragma parsers have to the lexer. */
22103 enum cpp_ttype
22104 pragma_lex (tree *value)
22106 cp_token *tok;
22107 enum cpp_ttype ret;
22109 tok = cp_lexer_peek_token (the_parser->lexer);
22111 ret = tok->type;
22112 *value = tok->u.value;
22114 if (ret == CPP_PRAGMA_EOL || ret == CPP_EOF)
22115 ret = CPP_EOF;
22116 else if (ret == CPP_STRING)
22117 *value = cp_parser_string_literal (the_parser, false, false);
22118 else
22120 cp_lexer_consume_token (the_parser->lexer);
22121 if (ret == CPP_KEYWORD)
22122 ret = CPP_NAME;
22125 return ret;
22129 /* External interface. */
22131 /* Parse one entire translation unit. */
22133 void
22134 c_parse_file (void)
22136 bool error_occurred;
22137 static bool already_called = false;
22139 if (already_called)
22141 sorry ("inter-module optimizations not implemented for C++");
22142 return;
22144 already_called = true;
22146 the_parser = cp_parser_new ();
22147 push_deferring_access_checks (flag_access_control
22148 ? dk_no_deferred : dk_no_check);
22149 error_occurred = cp_parser_translation_unit (the_parser);
22150 the_parser = NULL;
22153 #include "gt-cp-parser.h"