]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/cp/parser.c
2672f15afba7609839506e26d522377de22d7532
[thirdparty/gcc.git] / gcc / cp / parser.c
1 /* C++ Parser.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004,
3 2005 Free Software Foundation, Inc.
4 Written by Mark Mitchell <mark@codesourcery.com>.
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 GCC is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING. If not, write to the Free
20 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
21 02110-1301, USA. */
22
23 #include "config.h"
24 #include "system.h"
25 #include "coretypes.h"
26 #include "tm.h"
27 #include "dyn-string.h"
28 #include "varray.h"
29 #include "cpplib.h"
30 #include "tree.h"
31 #include "cp-tree.h"
32 #include "c-pragma.h"
33 #include "decl.h"
34 #include "flags.h"
35 #include "diagnostic.h"
36 #include "toplev.h"
37 #include "output.h"
38 #include "target.h"
39 #include "cgraph.h"
40 #include "c-common.h"
41
42 \f
43 /* The lexer. */
44
45 /* The cp_lexer_* routines mediate between the lexer proper (in libcpp
46 and c-lex.c) and the C++ parser. */
47
48 /* A C++ token. */
49
50 typedef struct cp_token GTY (())
51 {
52 /* The kind of token. */
53 ENUM_BITFIELD (cpp_ttype) type : 8;
54 /* If this token is a keyword, this value indicates which keyword.
55 Otherwise, this value is RID_MAX. */
56 ENUM_BITFIELD (rid) keyword : 8;
57 /* Token flags. */
58 unsigned char flags;
59 /* Identifier for the pragma. */
60 ENUM_BITFIELD (pragma_kind) pragma_kind : 6;
61 /* True if this token is from a system header. */
62 BOOL_BITFIELD in_system_header : 1;
63 /* True if this token is from a context where it is implicitly extern "C" */
64 BOOL_BITFIELD implicit_extern_c : 1;
65 /* True for a CPP_NAME token that is not a keyword (i.e., for which
66 KEYWORD is RID_MAX) iff this name was looked up and found to be
67 ambiguous. An error has already been reported. */
68 BOOL_BITFIELD ambiguous_p : 1;
69 /* The input file stack index at which this token was found. */
70 unsigned input_file_stack_index : INPUT_FILE_STACK_BITS;
71 /* The value associated with this token, if any. */
72 tree value;
73 /* The location at which this token was found. */
74 location_t location;
75 } cp_token;
76
77 /* We use a stack of token pointer for saving token sets. */
78 typedef struct cp_token *cp_token_position;
79 DEF_VEC_P (cp_token_position);
80 DEF_VEC_ALLOC_P (cp_token_position,heap);
81
82 static const cp_token eof_token =
83 {
84 CPP_EOF, RID_MAX, 0, PRAGMA_NONE, 0, 0, false, 0, NULL_TREE,
85 #if USE_MAPPED_LOCATION
86 0
87 #else
88 {0, 0}
89 #endif
90 };
91
92 /* The cp_lexer structure represents the C++ lexer. It is responsible
93 for managing the token stream from the preprocessor and supplying
94 it to the parser. Tokens are never added to the cp_lexer after
95 it is created. */
96
97 typedef struct cp_lexer GTY (())
98 {
99 /* The memory allocated for the buffer. NULL if this lexer does not
100 own the token buffer. */
101 cp_token * GTY ((length ("%h.buffer_length"))) buffer;
102 /* If the lexer owns the buffer, this is the number of tokens in the
103 buffer. */
104 size_t buffer_length;
105
106 /* A pointer just past the last available token. The tokens
107 in this lexer are [buffer, last_token). */
108 cp_token_position GTY ((skip)) last_token;
109
110 /* The next available token. If NEXT_TOKEN is &eof_token, then there are
111 no more available tokens. */
112 cp_token_position GTY ((skip)) next_token;
113
114 /* A stack indicating positions at which cp_lexer_save_tokens was
115 called. The top entry is the most recent position at which we
116 began saving tokens. If the stack is non-empty, we are saving
117 tokens. */
118 VEC(cp_token_position,heap) *GTY ((skip)) saved_tokens;
119
120 /* The next lexer in a linked list of lexers. */
121 struct cp_lexer *next;
122
123 /* True if we should output debugging information. */
124 bool debugging_p;
125
126 /* True if we're in the context of parsing a pragma, and should not
127 increment past the end-of-line marker. */
128 bool in_pragma;
129 } cp_lexer;
130
131 /* cp_token_cache is a range of tokens. There is no need to represent
132 allocate heap memory for it, since tokens are never removed from the
133 lexer's array. There is also no need for the GC to walk through
134 a cp_token_cache, since everything in here is referenced through
135 a lexer. */
136
137 typedef struct cp_token_cache GTY(())
138 {
139 /* The beginning of the token range. */
140 cp_token * GTY((skip)) first;
141
142 /* Points immediately after the last token in the range. */
143 cp_token * GTY ((skip)) last;
144 } cp_token_cache;
145
146 /* Prototypes. */
147
148 static cp_lexer *cp_lexer_new_main
149 (void);
150 static cp_lexer *cp_lexer_new_from_tokens
151 (cp_token_cache *tokens);
152 static void cp_lexer_destroy
153 (cp_lexer *);
154 static int cp_lexer_saving_tokens
155 (const cp_lexer *);
156 static cp_token_position cp_lexer_token_position
157 (cp_lexer *, bool);
158 static cp_token *cp_lexer_token_at
159 (cp_lexer *, cp_token_position);
160 static void cp_lexer_get_preprocessor_token
161 (cp_lexer *, cp_token *);
162 static inline cp_token *cp_lexer_peek_token
163 (cp_lexer *);
164 static cp_token *cp_lexer_peek_nth_token
165 (cp_lexer *, size_t);
166 static inline bool cp_lexer_next_token_is
167 (cp_lexer *, enum cpp_ttype);
168 static bool cp_lexer_next_token_is_not
169 (cp_lexer *, enum cpp_ttype);
170 static bool cp_lexer_next_token_is_keyword
171 (cp_lexer *, enum rid);
172 static cp_token *cp_lexer_consume_token
173 (cp_lexer *);
174 static void cp_lexer_purge_token
175 (cp_lexer *);
176 static void cp_lexer_purge_tokens_after
177 (cp_lexer *, cp_token_position);
178 static void cp_lexer_save_tokens
179 (cp_lexer *);
180 static void cp_lexer_commit_tokens
181 (cp_lexer *);
182 static void cp_lexer_rollback_tokens
183 (cp_lexer *);
184 #ifdef ENABLE_CHECKING
185 static void cp_lexer_print_token
186 (FILE *, cp_token *);
187 static inline bool cp_lexer_debugging_p
188 (cp_lexer *);
189 static void cp_lexer_start_debugging
190 (cp_lexer *) ATTRIBUTE_UNUSED;
191 static void cp_lexer_stop_debugging
192 (cp_lexer *) ATTRIBUTE_UNUSED;
193 #else
194 /* If we define cp_lexer_debug_stream to NULL it will provoke warnings
195 about passing NULL to functions that require non-NULL arguments
196 (fputs, fprintf). It will never be used, so all we need is a value
197 of the right type that's guaranteed not to be NULL. */
198 #define cp_lexer_debug_stream stdout
199 #define cp_lexer_print_token(str, tok) (void) 0
200 #define cp_lexer_debugging_p(lexer) 0
201 #endif /* ENABLE_CHECKING */
202
203 static cp_token_cache *cp_token_cache_new
204 (cp_token *, cp_token *);
205
206 static void cp_parser_initial_pragma
207 (cp_token *);
208
209 /* Manifest constants. */
210 #define CP_LEXER_BUFFER_SIZE ((256 * 1024) / sizeof (cp_token))
211 #define CP_SAVED_TOKEN_STACK 5
212
213 /* A token type for keywords, as opposed to ordinary identifiers. */
214 #define CPP_KEYWORD ((enum cpp_ttype) (N_TTYPES + 1))
215
216 /* A token type for template-ids. If a template-id is processed while
217 parsing tentatively, it is replaced with a CPP_TEMPLATE_ID token;
218 the value of the CPP_TEMPLATE_ID is whatever was returned by
219 cp_parser_template_id. */
220 #define CPP_TEMPLATE_ID ((enum cpp_ttype) (CPP_KEYWORD + 1))
221
222 /* A token type for nested-name-specifiers. If a
223 nested-name-specifier is processed while parsing tentatively, it is
224 replaced with a CPP_NESTED_NAME_SPECIFIER token; the value of the
225 CPP_NESTED_NAME_SPECIFIER is whatever was returned by
226 cp_parser_nested_name_specifier_opt. */
227 #define CPP_NESTED_NAME_SPECIFIER ((enum cpp_ttype) (CPP_TEMPLATE_ID + 1))
228
229 /* A token type for tokens that are not tokens at all; these are used
230 to represent slots in the array where there used to be a token
231 that has now been deleted. */
232 #define CPP_PURGED ((enum cpp_ttype) (CPP_NESTED_NAME_SPECIFIER + 1))
233
234 /* The number of token types, including C++-specific ones. */
235 #define N_CP_TTYPES ((int) (CPP_PURGED + 1))
236
237 /* Variables. */
238
239 #ifdef ENABLE_CHECKING
240 /* The stream to which debugging output should be written. */
241 static FILE *cp_lexer_debug_stream;
242 #endif /* ENABLE_CHECKING */
243
244 /* Create a new main C++ lexer, the lexer that gets tokens from the
245 preprocessor. */
246
247 static cp_lexer *
248 cp_lexer_new_main (void)
249 {
250 cp_token first_token;
251 cp_lexer *lexer;
252 cp_token *pos;
253 size_t alloc;
254 size_t space;
255 cp_token *buffer;
256
257 /* It's possible that parsing the first pragma will load a PCH file,
258 which is a GC collection point. So we have to do that before
259 allocating any memory. */
260 cp_parser_initial_pragma (&first_token);
261
262 /* Tell c_lex_with_flags not to merge string constants. */
263 c_lex_return_raw_strings = true;
264
265 c_common_no_more_pch ();
266
267 /* Allocate the memory. */
268 lexer = GGC_CNEW (cp_lexer);
269
270 #ifdef ENABLE_CHECKING
271 /* Initially we are not debugging. */
272 lexer->debugging_p = false;
273 #endif /* ENABLE_CHECKING */
274 lexer->saved_tokens = VEC_alloc (cp_token_position, heap,
275 CP_SAVED_TOKEN_STACK);
276
277 /* Create the buffer. */
278 alloc = CP_LEXER_BUFFER_SIZE;
279 buffer = GGC_NEWVEC (cp_token, alloc);
280
281 /* Put the first token in the buffer. */
282 space = alloc;
283 pos = buffer;
284 *pos = first_token;
285
286 /* Get the remaining tokens from the preprocessor. */
287 while (pos->type != CPP_EOF)
288 {
289 pos++;
290 if (!--space)
291 {
292 space = alloc;
293 alloc *= 2;
294 buffer = GGC_RESIZEVEC (cp_token, buffer, alloc);
295 pos = buffer + space;
296 }
297 cp_lexer_get_preprocessor_token (lexer, pos);
298 }
299 lexer->buffer = buffer;
300 lexer->buffer_length = alloc - space;
301 lexer->last_token = pos;
302 lexer->next_token = lexer->buffer_length ? buffer : (cp_token *)&eof_token;
303
304 /* Subsequent preprocessor diagnostics should use compiler
305 diagnostic functions to get the compiler source location. */
306 cpp_get_options (parse_in)->client_diagnostic = true;
307 cpp_get_callbacks (parse_in)->error = cp_cpp_error;
308
309 gcc_assert (lexer->next_token->type != CPP_PURGED);
310 return lexer;
311 }
312
313 /* Create a new lexer whose token stream is primed with the tokens in
314 CACHE. When these tokens are exhausted, no new tokens will be read. */
315
316 static cp_lexer *
317 cp_lexer_new_from_tokens (cp_token_cache *cache)
318 {
319 cp_token *first = cache->first;
320 cp_token *last = cache->last;
321 cp_lexer *lexer = GGC_CNEW (cp_lexer);
322
323 /* We do not own the buffer. */
324 lexer->buffer = NULL;
325 lexer->buffer_length = 0;
326 lexer->next_token = first == last ? (cp_token *)&eof_token : first;
327 lexer->last_token = last;
328
329 lexer->saved_tokens = VEC_alloc (cp_token_position, heap,
330 CP_SAVED_TOKEN_STACK);
331
332 #ifdef ENABLE_CHECKING
333 /* Initially we are not debugging. */
334 lexer->debugging_p = false;
335 #endif
336
337 gcc_assert (lexer->next_token->type != CPP_PURGED);
338 return lexer;
339 }
340
341 /* Frees all resources associated with LEXER. */
342
343 static void
344 cp_lexer_destroy (cp_lexer *lexer)
345 {
346 if (lexer->buffer)
347 ggc_free (lexer->buffer);
348 VEC_free (cp_token_position, heap, lexer->saved_tokens);
349 ggc_free (lexer);
350 }
351
352 /* Returns nonzero if debugging information should be output. */
353
354 #ifdef ENABLE_CHECKING
355
356 static inline bool
357 cp_lexer_debugging_p (cp_lexer *lexer)
358 {
359 return lexer->debugging_p;
360 }
361
362 #endif /* ENABLE_CHECKING */
363
364 static inline cp_token_position
365 cp_lexer_token_position (cp_lexer *lexer, bool previous_p)
366 {
367 gcc_assert (!previous_p || lexer->next_token != &eof_token);
368
369 return lexer->next_token - previous_p;
370 }
371
372 static inline cp_token *
373 cp_lexer_token_at (cp_lexer *lexer ATTRIBUTE_UNUSED, cp_token_position pos)
374 {
375 return pos;
376 }
377
378 /* nonzero if we are presently saving tokens. */
379
380 static inline int
381 cp_lexer_saving_tokens (const cp_lexer* lexer)
382 {
383 return VEC_length (cp_token_position, lexer->saved_tokens) != 0;
384 }
385
386 /* Store the next token from the preprocessor in *TOKEN. Return true
387 if we reach EOF. */
388
389 static void
390 cp_lexer_get_preprocessor_token (cp_lexer *lexer ATTRIBUTE_UNUSED ,
391 cp_token *token)
392 {
393 static int is_extern_c = 0;
394
395 /* Get a new token from the preprocessor. */
396 token->type
397 = c_lex_with_flags (&token->value, &token->location, &token->flags);
398 token->input_file_stack_index = input_file_stack_tick;
399 token->keyword = RID_MAX;
400 token->pragma_kind = PRAGMA_NONE;
401 token->in_system_header = in_system_header;
402
403 /* On some systems, some header files are surrounded by an
404 implicit extern "C" block. Set a flag in the token if it
405 comes from such a header. */
406 is_extern_c += pending_lang_change;
407 pending_lang_change = 0;
408 token->implicit_extern_c = is_extern_c > 0;
409
410 /* Check to see if this token is a keyword. */
411 if (token->type == CPP_NAME)
412 {
413 if (C_IS_RESERVED_WORD (token->value))
414 {
415 /* Mark this token as a keyword. */
416 token->type = CPP_KEYWORD;
417 /* Record which keyword. */
418 token->keyword = C_RID_CODE (token->value);
419 /* Update the value. Some keywords are mapped to particular
420 entities, rather than simply having the value of the
421 corresponding IDENTIFIER_NODE. For example, `__const' is
422 mapped to `const'. */
423 token->value = ridpointers[token->keyword];
424 }
425 else
426 {
427 token->ambiguous_p = false;
428 token->keyword = RID_MAX;
429 }
430 }
431 /* Handle Objective-C++ keywords. */
432 else if (token->type == CPP_AT_NAME)
433 {
434 token->type = CPP_KEYWORD;
435 switch (C_RID_CODE (token->value))
436 {
437 /* Map 'class' to '@class', 'private' to '@private', etc. */
438 case RID_CLASS: token->keyword = RID_AT_CLASS; break;
439 case RID_PRIVATE: token->keyword = RID_AT_PRIVATE; break;
440 case RID_PROTECTED: token->keyword = RID_AT_PROTECTED; break;
441 case RID_PUBLIC: token->keyword = RID_AT_PUBLIC; break;
442 case RID_THROW: token->keyword = RID_AT_THROW; break;
443 case RID_TRY: token->keyword = RID_AT_TRY; break;
444 case RID_CATCH: token->keyword = RID_AT_CATCH; break;
445 default: token->keyword = C_RID_CODE (token->value);
446 }
447 }
448 else if (token->type == CPP_PRAGMA)
449 {
450 /* We smuggled the cpp_token->u.pragma value in an INTEGER_CST. */
451 token->pragma_kind = TREE_INT_CST_LOW (token->value);
452 token->value = NULL;
453 }
454 }
455
456 /* Update the globals input_location and in_system_header and the
457 input file stack from TOKEN. */
458 static inline void
459 cp_lexer_set_source_position_from_token (cp_token *token)
460 {
461 if (token->type != CPP_EOF)
462 {
463 input_location = token->location;
464 in_system_header = token->in_system_header;
465 restore_input_file_stack (token->input_file_stack_index);
466 }
467 }
468
469 /* Return a pointer to the next token in the token stream, but do not
470 consume it. */
471
472 static inline cp_token *
473 cp_lexer_peek_token (cp_lexer *lexer)
474 {
475 if (cp_lexer_debugging_p (lexer))
476 {
477 fputs ("cp_lexer: peeking at token: ", cp_lexer_debug_stream);
478 cp_lexer_print_token (cp_lexer_debug_stream, lexer->next_token);
479 putc ('\n', cp_lexer_debug_stream);
480 }
481 return lexer->next_token;
482 }
483
484 /* Return true if the next token has the indicated TYPE. */
485
486 static inline bool
487 cp_lexer_next_token_is (cp_lexer* lexer, enum cpp_ttype type)
488 {
489 return cp_lexer_peek_token (lexer)->type == type;
490 }
491
492 /* Return true if the next token does not have the indicated TYPE. */
493
494 static inline bool
495 cp_lexer_next_token_is_not (cp_lexer* lexer, enum cpp_ttype type)
496 {
497 return !cp_lexer_next_token_is (lexer, type);
498 }
499
500 /* Return true if the next token is the indicated KEYWORD. */
501
502 static inline bool
503 cp_lexer_next_token_is_keyword (cp_lexer* lexer, enum rid keyword)
504 {
505 return cp_lexer_peek_token (lexer)->keyword == keyword;
506 }
507
508 /* Return a pointer to the Nth token in the token stream. If N is 1,
509 then this is precisely equivalent to cp_lexer_peek_token (except
510 that it is not inline). One would like to disallow that case, but
511 there is one case (cp_parser_nth_token_starts_template_id) where
512 the caller passes a variable for N and it might be 1. */
513
514 static cp_token *
515 cp_lexer_peek_nth_token (cp_lexer* lexer, size_t n)
516 {
517 cp_token *token;
518
519 /* N is 1-based, not zero-based. */
520 gcc_assert (n > 0);
521
522 if (cp_lexer_debugging_p (lexer))
523 fprintf (cp_lexer_debug_stream,
524 "cp_lexer: peeking ahead %ld at token: ", (long)n);
525
526 --n;
527 token = lexer->next_token;
528 gcc_assert (!n || token != &eof_token);
529 while (n != 0)
530 {
531 ++token;
532 if (token == lexer->last_token)
533 {
534 token = (cp_token *)&eof_token;
535 break;
536 }
537
538 if (token->type != CPP_PURGED)
539 --n;
540 }
541
542 if (cp_lexer_debugging_p (lexer))
543 {
544 cp_lexer_print_token (cp_lexer_debug_stream, token);
545 putc ('\n', cp_lexer_debug_stream);
546 }
547
548 return token;
549 }
550
551 /* Return the next token, and advance the lexer's next_token pointer
552 to point to the next non-purged token. */
553
554 static cp_token *
555 cp_lexer_consume_token (cp_lexer* lexer)
556 {
557 cp_token *token = lexer->next_token;
558
559 gcc_assert (token != &eof_token);
560 gcc_assert (!lexer->in_pragma || token->type != CPP_PRAGMA_EOL);
561
562 do
563 {
564 lexer->next_token++;
565 if (lexer->next_token == lexer->last_token)
566 {
567 lexer->next_token = (cp_token *)&eof_token;
568 break;
569 }
570
571 }
572 while (lexer->next_token->type == CPP_PURGED);
573
574 cp_lexer_set_source_position_from_token (token);
575
576 /* Provide debugging output. */
577 if (cp_lexer_debugging_p (lexer))
578 {
579 fputs ("cp_lexer: consuming token: ", cp_lexer_debug_stream);
580 cp_lexer_print_token (cp_lexer_debug_stream, token);
581 putc ('\n', cp_lexer_debug_stream);
582 }
583
584 return token;
585 }
586
587 /* Permanently remove the next token from the token stream, and
588 advance the next_token pointer to refer to the next non-purged
589 token. */
590
591 static void
592 cp_lexer_purge_token (cp_lexer *lexer)
593 {
594 cp_token *tok = lexer->next_token;
595
596 gcc_assert (tok != &eof_token);
597 tok->type = CPP_PURGED;
598 tok->location = UNKNOWN_LOCATION;
599 tok->value = NULL_TREE;
600 tok->keyword = RID_MAX;
601
602 do
603 {
604 tok++;
605 if (tok == lexer->last_token)
606 {
607 tok = (cp_token *)&eof_token;
608 break;
609 }
610 }
611 while (tok->type == CPP_PURGED);
612 lexer->next_token = tok;
613 }
614
615 /* Permanently remove all tokens after TOK, up to, but not
616 including, the token that will be returned next by
617 cp_lexer_peek_token. */
618
619 static void
620 cp_lexer_purge_tokens_after (cp_lexer *lexer, cp_token *tok)
621 {
622 cp_token *peek = lexer->next_token;
623
624 if (peek == &eof_token)
625 peek = lexer->last_token;
626
627 gcc_assert (tok < peek);
628
629 for ( tok += 1; tok != peek; tok += 1)
630 {
631 tok->type = CPP_PURGED;
632 tok->location = UNKNOWN_LOCATION;
633 tok->value = NULL_TREE;
634 tok->keyword = RID_MAX;
635 }
636 }
637
638 /* Begin saving tokens. All tokens consumed after this point will be
639 preserved. */
640
641 static void
642 cp_lexer_save_tokens (cp_lexer* lexer)
643 {
644 /* Provide debugging output. */
645 if (cp_lexer_debugging_p (lexer))
646 fprintf (cp_lexer_debug_stream, "cp_lexer: saving tokens\n");
647
648 VEC_safe_push (cp_token_position, heap,
649 lexer->saved_tokens, lexer->next_token);
650 }
651
652 /* Commit to the portion of the token stream most recently saved. */
653
654 static void
655 cp_lexer_commit_tokens (cp_lexer* lexer)
656 {
657 /* Provide debugging output. */
658 if (cp_lexer_debugging_p (lexer))
659 fprintf (cp_lexer_debug_stream, "cp_lexer: committing tokens\n");
660
661 VEC_pop (cp_token_position, lexer->saved_tokens);
662 }
663
664 /* Return all tokens saved since the last call to cp_lexer_save_tokens
665 to the token stream. Stop saving tokens. */
666
667 static void
668 cp_lexer_rollback_tokens (cp_lexer* lexer)
669 {
670 /* Provide debugging output. */
671 if (cp_lexer_debugging_p (lexer))
672 fprintf (cp_lexer_debug_stream, "cp_lexer: restoring tokens\n");
673
674 lexer->next_token = VEC_pop (cp_token_position, lexer->saved_tokens);
675 }
676
677 /* Print a representation of the TOKEN on the STREAM. */
678
679 #ifdef ENABLE_CHECKING
680
681 static void
682 cp_lexer_print_token (FILE * stream, cp_token *token)
683 {
684 /* We don't use cpp_type2name here because the parser defines
685 a few tokens of its own. */
686 static const char *const token_names[] = {
687 /* cpplib-defined token types */
688 #define OP(e, s) #e,
689 #define TK(e, s) #e,
690 TTYPE_TABLE
691 #undef OP
692 #undef TK
693 /* C++ parser token types - see "Manifest constants", above. */
694 "KEYWORD",
695 "TEMPLATE_ID",
696 "NESTED_NAME_SPECIFIER",
697 "PURGED"
698 };
699
700 /* If we have a name for the token, print it out. Otherwise, we
701 simply give the numeric code. */
702 gcc_assert (token->type < ARRAY_SIZE(token_names));
703 fputs (token_names[token->type], stream);
704
705 /* For some tokens, print the associated data. */
706 switch (token->type)
707 {
708 case CPP_KEYWORD:
709 /* Some keywords have a value that is not an IDENTIFIER_NODE.
710 For example, `struct' is mapped to an INTEGER_CST. */
711 if (TREE_CODE (token->value) != IDENTIFIER_NODE)
712 break;
713 /* else fall through */
714 case CPP_NAME:
715 fputs (IDENTIFIER_POINTER (token->value), stream);
716 break;
717
718 case CPP_STRING:
719 case CPP_WSTRING:
720 fprintf (stream, " \"%s\"", TREE_STRING_POINTER (token->value));
721 break;
722
723 default:
724 break;
725 }
726 }
727
728 /* Start emitting debugging information. */
729
730 static void
731 cp_lexer_start_debugging (cp_lexer* lexer)
732 {
733 lexer->debugging_p = true;
734 }
735
736 /* Stop emitting debugging information. */
737
738 static void
739 cp_lexer_stop_debugging (cp_lexer* lexer)
740 {
741 lexer->debugging_p = false;
742 }
743
744 #endif /* ENABLE_CHECKING */
745
746 /* Create a new cp_token_cache, representing a range of tokens. */
747
748 static cp_token_cache *
749 cp_token_cache_new (cp_token *first, cp_token *last)
750 {
751 cp_token_cache *cache = GGC_NEW (cp_token_cache);
752 cache->first = first;
753 cache->last = last;
754 return cache;
755 }
756
757 \f
758 /* Decl-specifiers. */
759
760 /* Set *DECL_SPECS to represent an empty decl-specifier-seq. */
761
762 static void
763 clear_decl_specs (cp_decl_specifier_seq *decl_specs)
764 {
765 memset (decl_specs, 0, sizeof (cp_decl_specifier_seq));
766 }
767
768 /* Declarators. */
769
770 /* Nothing other than the parser should be creating declarators;
771 declarators are a semi-syntactic representation of C++ entities.
772 Other parts of the front end that need to create entities (like
773 VAR_DECLs or FUNCTION_DECLs) should do that directly. */
774
775 static cp_declarator *make_call_declarator
776 (cp_declarator *, cp_parameter_declarator *, cp_cv_quals, tree);
777 static cp_declarator *make_array_declarator
778 (cp_declarator *, tree);
779 static cp_declarator *make_pointer_declarator
780 (cp_cv_quals, cp_declarator *);
781 static cp_declarator *make_reference_declarator
782 (cp_cv_quals, cp_declarator *);
783 static cp_parameter_declarator *make_parameter_declarator
784 (cp_decl_specifier_seq *, cp_declarator *, tree);
785 static cp_declarator *make_ptrmem_declarator
786 (cp_cv_quals, tree, cp_declarator *);
787
788 /* An erroneous declarator. */
789 static cp_declarator *cp_error_declarator;
790
791 /* The obstack on which declarators and related data structures are
792 allocated. */
793 static struct obstack declarator_obstack;
794
795 /* Alloc BYTES from the declarator memory pool. */
796
797 static inline void *
798 alloc_declarator (size_t bytes)
799 {
800 return obstack_alloc (&declarator_obstack, bytes);
801 }
802
803 /* Allocate a declarator of the indicated KIND. Clear fields that are
804 common to all declarators. */
805
806 static cp_declarator *
807 make_declarator (cp_declarator_kind kind)
808 {
809 cp_declarator *declarator;
810
811 declarator = (cp_declarator *) alloc_declarator (sizeof (cp_declarator));
812 declarator->kind = kind;
813 declarator->attributes = NULL_TREE;
814 declarator->declarator = NULL;
815
816 return declarator;
817 }
818
819 /* Make a declarator for a generalized identifier. If
820 QUALIFYING_SCOPE is non-NULL, the identifier is
821 QUALIFYING_SCOPE::UNQUALIFIED_NAME; otherwise, it is just
822 UNQUALIFIED_NAME. SFK indicates the kind of special function this
823 is, if any. */
824
825 static cp_declarator *
826 make_id_declarator (tree qualifying_scope, tree unqualified_name,
827 special_function_kind sfk)
828 {
829 cp_declarator *declarator;
830
831 /* It is valid to write:
832
833 class C { void f(); };
834 typedef C D;
835 void D::f();
836
837 The standard is not clear about whether `typedef const C D' is
838 legal; as of 2002-09-15 the committee is considering that
839 question. EDG 3.0 allows that syntax. Therefore, we do as
840 well. */
841 if (qualifying_scope && TYPE_P (qualifying_scope))
842 qualifying_scope = TYPE_MAIN_VARIANT (qualifying_scope);
843
844 gcc_assert (TREE_CODE (unqualified_name) == IDENTIFIER_NODE
845 || TREE_CODE (unqualified_name) == BIT_NOT_EXPR
846 || TREE_CODE (unqualified_name) == TEMPLATE_ID_EXPR);
847
848 declarator = make_declarator (cdk_id);
849 declarator->u.id.qualifying_scope = qualifying_scope;
850 declarator->u.id.unqualified_name = unqualified_name;
851 declarator->u.id.sfk = sfk;
852
853 return declarator;
854 }
855
856 /* Make a declarator for a pointer to TARGET. CV_QUALIFIERS is a list
857 of modifiers such as const or volatile to apply to the pointer
858 type, represented as identifiers. */
859
860 cp_declarator *
861 make_pointer_declarator (cp_cv_quals cv_qualifiers, cp_declarator *target)
862 {
863 cp_declarator *declarator;
864
865 declarator = make_declarator (cdk_pointer);
866 declarator->declarator = target;
867 declarator->u.pointer.qualifiers = cv_qualifiers;
868 declarator->u.pointer.class_type = NULL_TREE;
869
870 return declarator;
871 }
872
873 /* Like make_pointer_declarator -- but for references. */
874
875 cp_declarator *
876 make_reference_declarator (cp_cv_quals cv_qualifiers, cp_declarator *target)
877 {
878 cp_declarator *declarator;
879
880 declarator = make_declarator (cdk_reference);
881 declarator->declarator = target;
882 declarator->u.pointer.qualifiers = cv_qualifiers;
883 declarator->u.pointer.class_type = NULL_TREE;
884
885 return declarator;
886 }
887
888 /* Like make_pointer_declarator -- but for a pointer to a non-static
889 member of CLASS_TYPE. */
890
891 cp_declarator *
892 make_ptrmem_declarator (cp_cv_quals cv_qualifiers, tree class_type,
893 cp_declarator *pointee)
894 {
895 cp_declarator *declarator;
896
897 declarator = make_declarator (cdk_ptrmem);
898 declarator->declarator = pointee;
899 declarator->u.pointer.qualifiers = cv_qualifiers;
900 declarator->u.pointer.class_type = class_type;
901
902 return declarator;
903 }
904
905 /* Make a declarator for the function given by TARGET, with the
906 indicated PARMS. The CV_QUALIFIERS aply to the function, as in
907 "const"-qualified member function. The EXCEPTION_SPECIFICATION
908 indicates what exceptions can be thrown. */
909
910 cp_declarator *
911 make_call_declarator (cp_declarator *target,
912 cp_parameter_declarator *parms,
913 cp_cv_quals cv_qualifiers,
914 tree exception_specification)
915 {
916 cp_declarator *declarator;
917
918 declarator = make_declarator (cdk_function);
919 declarator->declarator = target;
920 declarator->u.function.parameters = parms;
921 declarator->u.function.qualifiers = cv_qualifiers;
922 declarator->u.function.exception_specification = exception_specification;
923
924 return declarator;
925 }
926
927 /* Make a declarator for an array of BOUNDS elements, each of which is
928 defined by ELEMENT. */
929
930 cp_declarator *
931 make_array_declarator (cp_declarator *element, tree bounds)
932 {
933 cp_declarator *declarator;
934
935 declarator = make_declarator (cdk_array);
936 declarator->declarator = element;
937 declarator->u.array.bounds = bounds;
938
939 return declarator;
940 }
941
942 cp_parameter_declarator *no_parameters;
943
944 /* Create a parameter declarator with the indicated DECL_SPECIFIERS,
945 DECLARATOR and DEFAULT_ARGUMENT. */
946
947 cp_parameter_declarator *
948 make_parameter_declarator (cp_decl_specifier_seq *decl_specifiers,
949 cp_declarator *declarator,
950 tree default_argument)
951 {
952 cp_parameter_declarator *parameter;
953
954 parameter = ((cp_parameter_declarator *)
955 alloc_declarator (sizeof (cp_parameter_declarator)));
956 parameter->next = NULL;
957 if (decl_specifiers)
958 parameter->decl_specifiers = *decl_specifiers;
959 else
960 clear_decl_specs (&parameter->decl_specifiers);
961 parameter->declarator = declarator;
962 parameter->default_argument = default_argument;
963 parameter->ellipsis_p = false;
964
965 return parameter;
966 }
967
968 /* The parser. */
969
970 /* Overview
971 --------
972
973 A cp_parser parses the token stream as specified by the C++
974 grammar. Its job is purely parsing, not semantic analysis. For
975 example, the parser breaks the token stream into declarators,
976 expressions, statements, and other similar syntactic constructs.
977 It does not check that the types of the expressions on either side
978 of an assignment-statement are compatible, or that a function is
979 not declared with a parameter of type `void'.
980
981 The parser invokes routines elsewhere in the compiler to perform
982 semantic analysis and to build up the abstract syntax tree for the
983 code processed.
984
985 The parser (and the template instantiation code, which is, in a
986 way, a close relative of parsing) are the only parts of the
987 compiler that should be calling push_scope and pop_scope, or
988 related functions. The parser (and template instantiation code)
989 keeps track of what scope is presently active; everything else
990 should simply honor that. (The code that generates static
991 initializers may also need to set the scope, in order to check
992 access control correctly when emitting the initializers.)
993
994 Methodology
995 -----------
996
997 The parser is of the standard recursive-descent variety. Upcoming
998 tokens in the token stream are examined in order to determine which
999 production to use when parsing a non-terminal. Some C++ constructs
1000 require arbitrary look ahead to disambiguate. For example, it is
1001 impossible, in the general case, to tell whether a statement is an
1002 expression or declaration without scanning the entire statement.
1003 Therefore, the parser is capable of "parsing tentatively." When the
1004 parser is not sure what construct comes next, it enters this mode.
1005 Then, while we attempt to parse the construct, the parser queues up
1006 error messages, rather than issuing them immediately, and saves the
1007 tokens it consumes. If the construct is parsed successfully, the
1008 parser "commits", i.e., it issues any queued error messages and
1009 the tokens that were being preserved are permanently discarded.
1010 If, however, the construct is not parsed successfully, the parser
1011 rolls back its state completely so that it can resume parsing using
1012 a different alternative.
1013
1014 Future Improvements
1015 -------------------
1016
1017 The performance of the parser could probably be improved substantially.
1018 We could often eliminate the need to parse tentatively by looking ahead
1019 a little bit. In some places, this approach might not entirely eliminate
1020 the need to parse tentatively, but it might still speed up the average
1021 case. */
1022
1023 /* Flags that are passed to some parsing functions. These values can
1024 be bitwise-ored together. */
1025
1026 typedef enum cp_parser_flags
1027 {
1028 /* No flags. */
1029 CP_PARSER_FLAGS_NONE = 0x0,
1030 /* The construct is optional. If it is not present, then no error
1031 should be issued. */
1032 CP_PARSER_FLAGS_OPTIONAL = 0x1,
1033 /* When parsing a type-specifier, do not allow user-defined types. */
1034 CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES = 0x2
1035 } cp_parser_flags;
1036
1037 /* The different kinds of declarators we want to parse. */
1038
1039 typedef enum cp_parser_declarator_kind
1040 {
1041 /* We want an abstract declarator. */
1042 CP_PARSER_DECLARATOR_ABSTRACT,
1043 /* We want a named declarator. */
1044 CP_PARSER_DECLARATOR_NAMED,
1045 /* We don't mind, but the name must be an unqualified-id. */
1046 CP_PARSER_DECLARATOR_EITHER
1047 } cp_parser_declarator_kind;
1048
1049 /* The precedence values used to parse binary expressions. The minimum value
1050 of PREC must be 1, because zero is reserved to quickly discriminate
1051 binary operators from other tokens. */
1052
1053 enum cp_parser_prec
1054 {
1055 PREC_NOT_OPERATOR,
1056 PREC_LOGICAL_OR_EXPRESSION,
1057 PREC_LOGICAL_AND_EXPRESSION,
1058 PREC_INCLUSIVE_OR_EXPRESSION,
1059 PREC_EXCLUSIVE_OR_EXPRESSION,
1060 PREC_AND_EXPRESSION,
1061 PREC_EQUALITY_EXPRESSION,
1062 PREC_RELATIONAL_EXPRESSION,
1063 PREC_SHIFT_EXPRESSION,
1064 PREC_ADDITIVE_EXPRESSION,
1065 PREC_MULTIPLICATIVE_EXPRESSION,
1066 PREC_PM_EXPRESSION,
1067 NUM_PREC_VALUES = PREC_PM_EXPRESSION
1068 };
1069
1070 /* A mapping from a token type to a corresponding tree node type, with a
1071 precedence value. */
1072
1073 typedef struct cp_parser_binary_operations_map_node
1074 {
1075 /* The token type. */
1076 enum cpp_ttype token_type;
1077 /* The corresponding tree code. */
1078 enum tree_code tree_type;
1079 /* The precedence of this operator. */
1080 enum cp_parser_prec prec;
1081 } cp_parser_binary_operations_map_node;
1082
1083 /* The status of a tentative parse. */
1084
1085 typedef enum cp_parser_status_kind
1086 {
1087 /* No errors have occurred. */
1088 CP_PARSER_STATUS_KIND_NO_ERROR,
1089 /* An error has occurred. */
1090 CP_PARSER_STATUS_KIND_ERROR,
1091 /* We are committed to this tentative parse, whether or not an error
1092 has occurred. */
1093 CP_PARSER_STATUS_KIND_COMMITTED
1094 } cp_parser_status_kind;
1095
1096 typedef struct cp_parser_expression_stack_entry
1097 {
1098 tree lhs;
1099 enum tree_code tree_type;
1100 int prec;
1101 } cp_parser_expression_stack_entry;
1102
1103 /* The stack for storing partial expressions. We only need NUM_PREC_VALUES
1104 entries because precedence levels on the stack are monotonically
1105 increasing. */
1106 typedef struct cp_parser_expression_stack_entry
1107 cp_parser_expression_stack[NUM_PREC_VALUES];
1108
1109 /* Context that is saved and restored when parsing tentatively. */
1110 typedef struct cp_parser_context GTY (())
1111 {
1112 /* If this is a tentative parsing context, the status of the
1113 tentative parse. */
1114 enum cp_parser_status_kind status;
1115 /* If non-NULL, we have just seen a `x->' or `x.' expression. Names
1116 that are looked up in this context must be looked up both in the
1117 scope given by OBJECT_TYPE (the type of `x' or `*x') and also in
1118 the context of the containing expression. */
1119 tree object_type;
1120
1121 /* The next parsing context in the stack. */
1122 struct cp_parser_context *next;
1123 } cp_parser_context;
1124
1125 /* Prototypes. */
1126
1127 /* Constructors and destructors. */
1128
1129 static cp_parser_context *cp_parser_context_new
1130 (cp_parser_context *);
1131
1132 /* Class variables. */
1133
1134 static GTY((deletable)) cp_parser_context* cp_parser_context_free_list;
1135
1136 /* The operator-precedence table used by cp_parser_binary_expression.
1137 Transformed into an associative array (binops_by_token) by
1138 cp_parser_new. */
1139
1140 static const cp_parser_binary_operations_map_node binops[] = {
1141 { CPP_DEREF_STAR, MEMBER_REF, PREC_PM_EXPRESSION },
1142 { CPP_DOT_STAR, DOTSTAR_EXPR, PREC_PM_EXPRESSION },
1143
1144 { CPP_MULT, MULT_EXPR, PREC_MULTIPLICATIVE_EXPRESSION },
1145 { CPP_DIV, TRUNC_DIV_EXPR, PREC_MULTIPLICATIVE_EXPRESSION },
1146 { CPP_MOD, TRUNC_MOD_EXPR, PREC_MULTIPLICATIVE_EXPRESSION },
1147
1148 { CPP_PLUS, PLUS_EXPR, PREC_ADDITIVE_EXPRESSION },
1149 { CPP_MINUS, MINUS_EXPR, PREC_ADDITIVE_EXPRESSION },
1150
1151 { CPP_LSHIFT, LSHIFT_EXPR, PREC_SHIFT_EXPRESSION },
1152 { CPP_RSHIFT, RSHIFT_EXPR, PREC_SHIFT_EXPRESSION },
1153
1154 { CPP_LESS, LT_EXPR, PREC_RELATIONAL_EXPRESSION },
1155 { CPP_GREATER, GT_EXPR, PREC_RELATIONAL_EXPRESSION },
1156 { CPP_LESS_EQ, LE_EXPR, PREC_RELATIONAL_EXPRESSION },
1157 { CPP_GREATER_EQ, GE_EXPR, PREC_RELATIONAL_EXPRESSION },
1158
1159 { CPP_EQ_EQ, EQ_EXPR, PREC_EQUALITY_EXPRESSION },
1160 { CPP_NOT_EQ, NE_EXPR, PREC_EQUALITY_EXPRESSION },
1161
1162 { CPP_AND, BIT_AND_EXPR, PREC_AND_EXPRESSION },
1163
1164 { CPP_XOR, BIT_XOR_EXPR, PREC_EXCLUSIVE_OR_EXPRESSION },
1165
1166 { CPP_OR, BIT_IOR_EXPR, PREC_INCLUSIVE_OR_EXPRESSION },
1167
1168 { CPP_AND_AND, TRUTH_ANDIF_EXPR, PREC_LOGICAL_AND_EXPRESSION },
1169
1170 { CPP_OR_OR, TRUTH_ORIF_EXPR, PREC_LOGICAL_OR_EXPRESSION }
1171 };
1172
1173 /* The same as binops, but initialized by cp_parser_new so that
1174 binops_by_token[N].token_type == N. Used in cp_parser_binary_expression
1175 for speed. */
1176 static cp_parser_binary_operations_map_node binops_by_token[N_CP_TTYPES];
1177
1178 /* Constructors and destructors. */
1179
1180 /* Construct a new context. The context below this one on the stack
1181 is given by NEXT. */
1182
1183 static cp_parser_context *
1184 cp_parser_context_new (cp_parser_context* next)
1185 {
1186 cp_parser_context *context;
1187
1188 /* Allocate the storage. */
1189 if (cp_parser_context_free_list != NULL)
1190 {
1191 /* Pull the first entry from the free list. */
1192 context = cp_parser_context_free_list;
1193 cp_parser_context_free_list = context->next;
1194 memset (context, 0, sizeof (*context));
1195 }
1196 else
1197 context = GGC_CNEW (cp_parser_context);
1198
1199 /* No errors have occurred yet in this context. */
1200 context->status = CP_PARSER_STATUS_KIND_NO_ERROR;
1201 /* If this is not the bottomost context, copy information that we
1202 need from the previous context. */
1203 if (next)
1204 {
1205 /* If, in the NEXT context, we are parsing an `x->' or `x.'
1206 expression, then we are parsing one in this context, too. */
1207 context->object_type = next->object_type;
1208 /* Thread the stack. */
1209 context->next = next;
1210 }
1211
1212 return context;
1213 }
1214
1215 /* The cp_parser structure represents the C++ parser. */
1216
1217 typedef struct cp_parser GTY(())
1218 {
1219 /* The lexer from which we are obtaining tokens. */
1220 cp_lexer *lexer;
1221
1222 /* The scope in which names should be looked up. If NULL_TREE, then
1223 we look up names in the scope that is currently open in the
1224 source program. If non-NULL, this is either a TYPE or
1225 NAMESPACE_DECL for the scope in which we should look. It can
1226 also be ERROR_MARK, when we've parsed a bogus scope.
1227
1228 This value is not cleared automatically after a name is looked
1229 up, so we must be careful to clear it before starting a new look
1230 up sequence. (If it is not cleared, then `X::Y' followed by `Z'
1231 will look up `Z' in the scope of `X', rather than the current
1232 scope.) Unfortunately, it is difficult to tell when name lookup
1233 is complete, because we sometimes peek at a token, look it up,
1234 and then decide not to consume it. */
1235 tree scope;
1236
1237 /* OBJECT_SCOPE and QUALIFYING_SCOPE give the scopes in which the
1238 last lookup took place. OBJECT_SCOPE is used if an expression
1239 like "x->y" or "x.y" was used; it gives the type of "*x" or "x",
1240 respectively. QUALIFYING_SCOPE is used for an expression of the
1241 form "X::Y"; it refers to X. */
1242 tree object_scope;
1243 tree qualifying_scope;
1244
1245 /* A stack of parsing contexts. All but the bottom entry on the
1246 stack will be tentative contexts.
1247
1248 We parse tentatively in order to determine which construct is in
1249 use in some situations. For example, in order to determine
1250 whether a statement is an expression-statement or a
1251 declaration-statement we parse it tentatively as a
1252 declaration-statement. If that fails, we then reparse the same
1253 token stream as an expression-statement. */
1254 cp_parser_context *context;
1255
1256 /* True if we are parsing GNU C++. If this flag is not set, then
1257 GNU extensions are not recognized. */
1258 bool allow_gnu_extensions_p;
1259
1260 /* TRUE if the `>' token should be interpreted as the greater-than
1261 operator. FALSE if it is the end of a template-id or
1262 template-parameter-list. */
1263 bool greater_than_is_operator_p;
1264
1265 /* TRUE if default arguments are allowed within a parameter list
1266 that starts at this point. FALSE if only a gnu extension makes
1267 them permissible. */
1268 bool default_arg_ok_p;
1269
1270 /* TRUE if we are parsing an integral constant-expression. See
1271 [expr.const] for a precise definition. */
1272 bool integral_constant_expression_p;
1273
1274 /* TRUE if we are parsing an integral constant-expression -- but a
1275 non-constant expression should be permitted as well. This flag
1276 is used when parsing an array bound so that GNU variable-length
1277 arrays are tolerated. */
1278 bool allow_non_integral_constant_expression_p;
1279
1280 /* TRUE if ALLOW_NON_CONSTANT_EXPRESSION_P is TRUE and something has
1281 been seen that makes the expression non-constant. */
1282 bool non_integral_constant_expression_p;
1283
1284 /* TRUE if local variable names and `this' are forbidden in the
1285 current context. */
1286 bool local_variables_forbidden_p;
1287
1288 /* TRUE if the declaration we are parsing is part of a
1289 linkage-specification of the form `extern string-literal
1290 declaration'. */
1291 bool in_unbraced_linkage_specification_p;
1292
1293 /* TRUE if we are presently parsing a declarator, after the
1294 direct-declarator. */
1295 bool in_declarator_p;
1296
1297 /* TRUE if we are presently parsing a template-argument-list. */
1298 bool in_template_argument_list_p;
1299
1300 /* Set to IN_ITERATION_STMT if parsing an iteration-statement,
1301 to IN_OMP_BLOCK if parsing OpenMP structured block and
1302 IN_OMP_FOR if parsing OpenMP loop. If parsing a switch statement,
1303 this is bitwise ORed with IN_SWITCH_STMT, unless parsing an
1304 iteration-statement, OpenMP block or loop within that switch. */
1305 #define IN_SWITCH_STMT 1
1306 #define IN_ITERATION_STMT 2
1307 #define IN_OMP_BLOCK 4
1308 #define IN_OMP_FOR 8
1309 unsigned char in_statement;
1310
1311 /* TRUE if we are presently parsing the body of a switch statement.
1312 Note that this doesn't quite overlap with in_statement above.
1313 The difference relates to giving the right sets of error messages:
1314 "case not in switch" vs "break statement used with OpenMP...". */
1315 bool in_switch_statement_p;
1316
1317 /* TRUE if we are parsing a type-id in an expression context. In
1318 such a situation, both "type (expr)" and "type (type)" are valid
1319 alternatives. */
1320 bool in_type_id_in_expr_p;
1321
1322 /* TRUE if we are currently in a header file where declarations are
1323 implicitly extern "C". */
1324 bool implicit_extern_c;
1325
1326 /* TRUE if strings in expressions should be translated to the execution
1327 character set. */
1328 bool translate_strings_p;
1329
1330 /* If non-NULL, then we are parsing a construct where new type
1331 definitions are not permitted. The string stored here will be
1332 issued as an error message if a type is defined. */
1333 const char *type_definition_forbidden_message;
1334
1335 /* A list of lists. The outer list is a stack, used for member
1336 functions of local classes. At each level there are two sub-list,
1337 one on TREE_VALUE and one on TREE_PURPOSE. Each of those
1338 sub-lists has a FUNCTION_DECL or TEMPLATE_DECL on their
1339 TREE_VALUE's. The functions are chained in reverse declaration
1340 order.
1341
1342 The TREE_PURPOSE sublist contains those functions with default
1343 arguments that need post processing, and the TREE_VALUE sublist
1344 contains those functions with definitions that need post
1345 processing.
1346
1347 These lists can only be processed once the outermost class being
1348 defined is complete. */
1349 tree unparsed_functions_queues;
1350
1351 /* The number of classes whose definitions are currently in
1352 progress. */
1353 unsigned num_classes_being_defined;
1354
1355 /* The number of template parameter lists that apply directly to the
1356 current declaration. */
1357 unsigned num_template_parameter_lists;
1358 } cp_parser;
1359
1360 /* Prototypes. */
1361
1362 /* Constructors and destructors. */
1363
1364 static cp_parser *cp_parser_new
1365 (void);
1366
1367 /* Routines to parse various constructs.
1368
1369 Those that return `tree' will return the error_mark_node (rather
1370 than NULL_TREE) if a parse error occurs, unless otherwise noted.
1371 Sometimes, they will return an ordinary node if error-recovery was
1372 attempted, even though a parse error occurred. So, to check
1373 whether or not a parse error occurred, you should always use
1374 cp_parser_error_occurred. If the construct is optional (indicated
1375 either by an `_opt' in the name of the function that does the
1376 parsing or via a FLAGS parameter), then NULL_TREE is returned if
1377 the construct is not present. */
1378
1379 /* Lexical conventions [gram.lex] */
1380
1381 static tree cp_parser_identifier
1382 (cp_parser *);
1383 static tree cp_parser_string_literal
1384 (cp_parser *, bool, bool);
1385
1386 /* Basic concepts [gram.basic] */
1387
1388 static bool cp_parser_translation_unit
1389 (cp_parser *);
1390
1391 /* Expressions [gram.expr] */
1392
1393 static tree cp_parser_primary_expression
1394 (cp_parser *, bool, bool, bool, cp_id_kind *);
1395 static tree cp_parser_id_expression
1396 (cp_parser *, bool, bool, bool *, bool, bool);
1397 static tree cp_parser_unqualified_id
1398 (cp_parser *, bool, bool, bool, bool);
1399 static tree cp_parser_nested_name_specifier_opt
1400 (cp_parser *, bool, bool, bool, bool);
1401 static tree cp_parser_nested_name_specifier
1402 (cp_parser *, bool, bool, bool, bool);
1403 static tree cp_parser_class_or_namespace_name
1404 (cp_parser *, bool, bool, bool, bool, bool);
1405 static tree cp_parser_postfix_expression
1406 (cp_parser *, bool, bool);
1407 static tree cp_parser_postfix_open_square_expression
1408 (cp_parser *, tree, bool);
1409 static tree cp_parser_postfix_dot_deref_expression
1410 (cp_parser *, enum cpp_ttype, tree, bool, cp_id_kind *);
1411 static tree cp_parser_parenthesized_expression_list
1412 (cp_parser *, bool, bool, bool *);
1413 static void cp_parser_pseudo_destructor_name
1414 (cp_parser *, tree *, tree *);
1415 static tree cp_parser_unary_expression
1416 (cp_parser *, bool, bool);
1417 static enum tree_code cp_parser_unary_operator
1418 (cp_token *);
1419 static tree cp_parser_new_expression
1420 (cp_parser *);
1421 static tree cp_parser_new_placement
1422 (cp_parser *);
1423 static tree cp_parser_new_type_id
1424 (cp_parser *, tree *);
1425 static cp_declarator *cp_parser_new_declarator_opt
1426 (cp_parser *);
1427 static cp_declarator *cp_parser_direct_new_declarator
1428 (cp_parser *);
1429 static tree cp_parser_new_initializer
1430 (cp_parser *);
1431 static tree cp_parser_delete_expression
1432 (cp_parser *);
1433 static tree cp_parser_cast_expression
1434 (cp_parser *, bool, bool);
1435 static tree cp_parser_binary_expression
1436 (cp_parser *, bool);
1437 static tree cp_parser_question_colon_clause
1438 (cp_parser *, tree);
1439 static tree cp_parser_assignment_expression
1440 (cp_parser *, bool);
1441 static enum tree_code cp_parser_assignment_operator_opt
1442 (cp_parser *);
1443 static tree cp_parser_expression
1444 (cp_parser *, bool);
1445 static tree cp_parser_constant_expression
1446 (cp_parser *, bool, bool *);
1447 static tree cp_parser_builtin_offsetof
1448 (cp_parser *);
1449
1450 /* Statements [gram.stmt.stmt] */
1451
1452 static void cp_parser_statement
1453 (cp_parser *, tree, bool);
1454 static void cp_parser_label_for_labeled_statement
1455 (cp_parser *);
1456 static tree cp_parser_expression_statement
1457 (cp_parser *, tree);
1458 static tree cp_parser_compound_statement
1459 (cp_parser *, tree, bool);
1460 static void cp_parser_statement_seq_opt
1461 (cp_parser *, tree);
1462 static tree cp_parser_selection_statement
1463 (cp_parser *);
1464 static tree cp_parser_condition
1465 (cp_parser *);
1466 static tree cp_parser_iteration_statement
1467 (cp_parser *);
1468 static void cp_parser_for_init_statement
1469 (cp_parser *);
1470 static tree cp_parser_jump_statement
1471 (cp_parser *);
1472 static void cp_parser_declaration_statement
1473 (cp_parser *);
1474
1475 static tree cp_parser_implicitly_scoped_statement
1476 (cp_parser *);
1477 static void cp_parser_already_scoped_statement
1478 (cp_parser *);
1479
1480 /* Declarations [gram.dcl.dcl] */
1481
1482 static void cp_parser_declaration_seq_opt
1483 (cp_parser *);
1484 static void cp_parser_declaration
1485 (cp_parser *);
1486 static void cp_parser_block_declaration
1487 (cp_parser *, bool);
1488 static void cp_parser_simple_declaration
1489 (cp_parser *, bool);
1490 static void cp_parser_decl_specifier_seq
1491 (cp_parser *, cp_parser_flags, cp_decl_specifier_seq *, int *);
1492 static tree cp_parser_storage_class_specifier_opt
1493 (cp_parser *);
1494 static tree cp_parser_function_specifier_opt
1495 (cp_parser *, cp_decl_specifier_seq *);
1496 static tree cp_parser_type_specifier
1497 (cp_parser *, cp_parser_flags, cp_decl_specifier_seq *, bool,
1498 int *, bool *);
1499 static tree cp_parser_simple_type_specifier
1500 (cp_parser *, cp_decl_specifier_seq *, cp_parser_flags);
1501 static tree cp_parser_type_name
1502 (cp_parser *);
1503 static tree cp_parser_elaborated_type_specifier
1504 (cp_parser *, bool, bool);
1505 static tree cp_parser_enum_specifier
1506 (cp_parser *);
1507 static void cp_parser_enumerator_list
1508 (cp_parser *, tree);
1509 static void cp_parser_enumerator_definition
1510 (cp_parser *, tree);
1511 static tree cp_parser_namespace_name
1512 (cp_parser *);
1513 static void cp_parser_namespace_definition
1514 (cp_parser *);
1515 static void cp_parser_namespace_body
1516 (cp_parser *);
1517 static tree cp_parser_qualified_namespace_specifier
1518 (cp_parser *);
1519 static void cp_parser_namespace_alias_definition
1520 (cp_parser *);
1521 static bool cp_parser_using_declaration
1522 (cp_parser *, bool);
1523 static void cp_parser_using_directive
1524 (cp_parser *);
1525 static void cp_parser_asm_definition
1526 (cp_parser *);
1527 static void cp_parser_linkage_specification
1528 (cp_parser *);
1529
1530 /* Declarators [gram.dcl.decl] */
1531
1532 static tree cp_parser_init_declarator
1533 (cp_parser *, cp_decl_specifier_seq *, tree, bool, bool, int, bool *);
1534 static cp_declarator *cp_parser_declarator
1535 (cp_parser *, cp_parser_declarator_kind, int *, bool *, bool);
1536 static cp_declarator *cp_parser_direct_declarator
1537 (cp_parser *, cp_parser_declarator_kind, int *, bool);
1538 static enum tree_code cp_parser_ptr_operator
1539 (cp_parser *, tree *, cp_cv_quals *);
1540 static cp_cv_quals cp_parser_cv_qualifier_seq_opt
1541 (cp_parser *);
1542 static tree cp_parser_declarator_id
1543 (cp_parser *, bool);
1544 static tree cp_parser_type_id
1545 (cp_parser *);
1546 static void cp_parser_type_specifier_seq
1547 (cp_parser *, bool, cp_decl_specifier_seq *);
1548 static cp_parameter_declarator *cp_parser_parameter_declaration_clause
1549 (cp_parser *);
1550 static cp_parameter_declarator *cp_parser_parameter_declaration_list
1551 (cp_parser *, bool *);
1552 static cp_parameter_declarator *cp_parser_parameter_declaration
1553 (cp_parser *, bool, bool *);
1554 static void cp_parser_function_body
1555 (cp_parser *);
1556 static tree cp_parser_initializer
1557 (cp_parser *, bool *, bool *);
1558 static tree cp_parser_initializer_clause
1559 (cp_parser *, bool *);
1560 static VEC(constructor_elt,gc) *cp_parser_initializer_list
1561 (cp_parser *, bool *);
1562
1563 static bool cp_parser_ctor_initializer_opt_and_function_body
1564 (cp_parser *);
1565
1566 /* Classes [gram.class] */
1567
1568 static tree cp_parser_class_name
1569 (cp_parser *, bool, bool, enum tag_types, bool, bool, bool);
1570 static tree cp_parser_class_specifier
1571 (cp_parser *);
1572 static tree cp_parser_class_head
1573 (cp_parser *, bool *, tree *);
1574 static enum tag_types cp_parser_class_key
1575 (cp_parser *);
1576 static void cp_parser_member_specification_opt
1577 (cp_parser *);
1578 static void cp_parser_member_declaration
1579 (cp_parser *);
1580 static tree cp_parser_pure_specifier
1581 (cp_parser *);
1582 static tree cp_parser_constant_initializer
1583 (cp_parser *);
1584
1585 /* Derived classes [gram.class.derived] */
1586
1587 static tree cp_parser_base_clause
1588 (cp_parser *);
1589 static tree cp_parser_base_specifier
1590 (cp_parser *);
1591
1592 /* Special member functions [gram.special] */
1593
1594 static tree cp_parser_conversion_function_id
1595 (cp_parser *);
1596 static tree cp_parser_conversion_type_id
1597 (cp_parser *);
1598 static cp_declarator *cp_parser_conversion_declarator_opt
1599 (cp_parser *);
1600 static bool cp_parser_ctor_initializer_opt
1601 (cp_parser *);
1602 static void cp_parser_mem_initializer_list
1603 (cp_parser *);
1604 static tree cp_parser_mem_initializer
1605 (cp_parser *);
1606 static tree cp_parser_mem_initializer_id
1607 (cp_parser *);
1608
1609 /* Overloading [gram.over] */
1610
1611 static tree cp_parser_operator_function_id
1612 (cp_parser *);
1613 static tree cp_parser_operator
1614 (cp_parser *);
1615
1616 /* Templates [gram.temp] */
1617
1618 static void cp_parser_template_declaration
1619 (cp_parser *, bool);
1620 static tree cp_parser_template_parameter_list
1621 (cp_parser *);
1622 static tree cp_parser_template_parameter
1623 (cp_parser *, bool *);
1624 static tree cp_parser_type_parameter
1625 (cp_parser *);
1626 static tree cp_parser_template_id
1627 (cp_parser *, bool, bool, bool);
1628 static tree cp_parser_template_name
1629 (cp_parser *, bool, bool, bool, bool *);
1630 static tree cp_parser_template_argument_list
1631 (cp_parser *);
1632 static tree cp_parser_template_argument
1633 (cp_parser *);
1634 static void cp_parser_explicit_instantiation
1635 (cp_parser *);
1636 static void cp_parser_explicit_specialization
1637 (cp_parser *);
1638
1639 /* Exception handling [gram.exception] */
1640
1641 static tree cp_parser_try_block
1642 (cp_parser *);
1643 static bool cp_parser_function_try_block
1644 (cp_parser *);
1645 static void cp_parser_handler_seq
1646 (cp_parser *);
1647 static void cp_parser_handler
1648 (cp_parser *);
1649 static tree cp_parser_exception_declaration
1650 (cp_parser *);
1651 static tree cp_parser_throw_expression
1652 (cp_parser *);
1653 static tree cp_parser_exception_specification_opt
1654 (cp_parser *);
1655 static tree cp_parser_type_id_list
1656 (cp_parser *);
1657
1658 /* GNU Extensions */
1659
1660 static tree cp_parser_asm_specification_opt
1661 (cp_parser *);
1662 static tree cp_parser_asm_operand_list
1663 (cp_parser *);
1664 static tree cp_parser_asm_clobber_list
1665 (cp_parser *);
1666 static tree cp_parser_attributes_opt
1667 (cp_parser *);
1668 static tree cp_parser_attribute_list
1669 (cp_parser *);
1670 static bool cp_parser_extension_opt
1671 (cp_parser *, int *);
1672 static void cp_parser_label_declaration
1673 (cp_parser *);
1674
1675 enum pragma_context { pragma_external, pragma_stmt, pragma_compound };
1676 static bool cp_parser_pragma
1677 (cp_parser *, enum pragma_context);
1678
1679 /* Objective-C++ Productions */
1680
1681 static tree cp_parser_objc_message_receiver
1682 (cp_parser *);
1683 static tree cp_parser_objc_message_args
1684 (cp_parser *);
1685 static tree cp_parser_objc_message_expression
1686 (cp_parser *);
1687 static tree cp_parser_objc_encode_expression
1688 (cp_parser *);
1689 static tree cp_parser_objc_defs_expression
1690 (cp_parser *);
1691 static tree cp_parser_objc_protocol_expression
1692 (cp_parser *);
1693 static tree cp_parser_objc_selector_expression
1694 (cp_parser *);
1695 static tree cp_parser_objc_expression
1696 (cp_parser *);
1697 static bool cp_parser_objc_selector_p
1698 (enum cpp_ttype);
1699 static tree cp_parser_objc_selector
1700 (cp_parser *);
1701 static tree cp_parser_objc_protocol_refs_opt
1702 (cp_parser *);
1703 static void cp_parser_objc_declaration
1704 (cp_parser *);
1705 static tree cp_parser_objc_statement
1706 (cp_parser *);
1707
1708 /* Utility Routines */
1709
1710 static tree cp_parser_lookup_name
1711 (cp_parser *, tree, enum tag_types, bool, bool, bool, tree *);
1712 static tree cp_parser_lookup_name_simple
1713 (cp_parser *, tree);
1714 static tree cp_parser_maybe_treat_template_as_class
1715 (tree, bool);
1716 static bool cp_parser_check_declarator_template_parameters
1717 (cp_parser *, cp_declarator *);
1718 static bool cp_parser_check_template_parameters
1719 (cp_parser *, unsigned);
1720 static tree cp_parser_simple_cast_expression
1721 (cp_parser *);
1722 static tree cp_parser_global_scope_opt
1723 (cp_parser *, bool);
1724 static bool cp_parser_constructor_declarator_p
1725 (cp_parser *, bool);
1726 static tree cp_parser_function_definition_from_specifiers_and_declarator
1727 (cp_parser *, cp_decl_specifier_seq *, tree, const cp_declarator *);
1728 static tree cp_parser_function_definition_after_declarator
1729 (cp_parser *, bool);
1730 static void cp_parser_template_declaration_after_export
1731 (cp_parser *, bool);
1732 static void cp_parser_perform_template_parameter_access_checks
1733 (tree);
1734 static tree cp_parser_single_declaration
1735 (cp_parser *, tree, bool, bool *);
1736 static tree cp_parser_functional_cast
1737 (cp_parser *, tree);
1738 static tree cp_parser_save_member_function_body
1739 (cp_parser *, cp_decl_specifier_seq *, cp_declarator *, tree);
1740 static tree cp_parser_enclosed_template_argument_list
1741 (cp_parser *);
1742 static void cp_parser_save_default_args
1743 (cp_parser *, tree);
1744 static void cp_parser_late_parsing_for_member
1745 (cp_parser *, tree);
1746 static void cp_parser_late_parsing_default_args
1747 (cp_parser *, tree);
1748 static tree cp_parser_sizeof_operand
1749 (cp_parser *, enum rid);
1750 static bool cp_parser_declares_only_class_p
1751 (cp_parser *);
1752 static void cp_parser_set_storage_class
1753 (cp_parser *, cp_decl_specifier_seq *, enum rid);
1754 static void cp_parser_set_decl_spec_type
1755 (cp_decl_specifier_seq *, tree, bool);
1756 static bool cp_parser_friend_p
1757 (const cp_decl_specifier_seq *);
1758 static cp_token *cp_parser_require
1759 (cp_parser *, enum cpp_ttype, const char *);
1760 static cp_token *cp_parser_require_keyword
1761 (cp_parser *, enum rid, const char *);
1762 static bool cp_parser_token_starts_function_definition_p
1763 (cp_token *);
1764 static bool cp_parser_next_token_starts_class_definition_p
1765 (cp_parser *);
1766 static bool cp_parser_next_token_ends_template_argument_p
1767 (cp_parser *);
1768 static bool cp_parser_nth_token_starts_template_argument_list_p
1769 (cp_parser *, size_t);
1770 static enum tag_types cp_parser_token_is_class_key
1771 (cp_token *);
1772 static void cp_parser_check_class_key
1773 (enum tag_types, tree type);
1774 static void cp_parser_check_access_in_redeclaration
1775 (tree type);
1776 static bool cp_parser_optional_template_keyword
1777 (cp_parser *);
1778 static void cp_parser_pre_parsed_nested_name_specifier
1779 (cp_parser *);
1780 static void cp_parser_cache_group
1781 (cp_parser *, enum cpp_ttype, unsigned);
1782 static void cp_parser_parse_tentatively
1783 (cp_parser *);
1784 static void cp_parser_commit_to_tentative_parse
1785 (cp_parser *);
1786 static void cp_parser_abort_tentative_parse
1787 (cp_parser *);
1788 static bool cp_parser_parse_definitely
1789 (cp_parser *);
1790 static inline bool cp_parser_parsing_tentatively
1791 (cp_parser *);
1792 static bool cp_parser_uncommitted_to_tentative_parse_p
1793 (cp_parser *);
1794 static void cp_parser_error
1795 (cp_parser *, const char *);
1796 static void cp_parser_name_lookup_error
1797 (cp_parser *, tree, tree, const char *);
1798 static bool cp_parser_simulate_error
1799 (cp_parser *);
1800 static void cp_parser_check_type_definition
1801 (cp_parser *);
1802 static void cp_parser_check_for_definition_in_return_type
1803 (cp_declarator *, tree);
1804 static void cp_parser_check_for_invalid_template_id
1805 (cp_parser *, tree);
1806 static bool cp_parser_non_integral_constant_expression
1807 (cp_parser *, const char *);
1808 static void cp_parser_diagnose_invalid_type_name
1809 (cp_parser *, tree, tree);
1810 static bool cp_parser_parse_and_diagnose_invalid_type_name
1811 (cp_parser *);
1812 static int cp_parser_skip_to_closing_parenthesis
1813 (cp_parser *, bool, bool, bool);
1814 static void cp_parser_skip_to_end_of_statement
1815 (cp_parser *);
1816 static void cp_parser_consume_semicolon_at_end_of_statement
1817 (cp_parser *);
1818 static void cp_parser_skip_to_end_of_block_or_statement
1819 (cp_parser *);
1820 static void cp_parser_skip_to_closing_brace
1821 (cp_parser *);
1822 static void cp_parser_skip_to_end_of_template_parameter_list
1823 (cp_parser *);
1824 static void cp_parser_skip_to_pragma_eol
1825 (cp_parser*, cp_token *);
1826 static bool cp_parser_error_occurred
1827 (cp_parser *);
1828 static bool cp_parser_allow_gnu_extensions_p
1829 (cp_parser *);
1830 static bool cp_parser_is_string_literal
1831 (cp_token *);
1832 static bool cp_parser_is_keyword
1833 (cp_token *, enum rid);
1834 static tree cp_parser_make_typename_type
1835 (cp_parser *, tree, tree);
1836
1837 /* Returns nonzero if we are parsing tentatively. */
1838
1839 static inline bool
1840 cp_parser_parsing_tentatively (cp_parser* parser)
1841 {
1842 return parser->context->next != NULL;
1843 }
1844
1845 /* Returns nonzero if TOKEN is a string literal. */
1846
1847 static bool
1848 cp_parser_is_string_literal (cp_token* token)
1849 {
1850 return (token->type == CPP_STRING || token->type == CPP_WSTRING);
1851 }
1852
1853 /* Returns nonzero if TOKEN is the indicated KEYWORD. */
1854
1855 static bool
1856 cp_parser_is_keyword (cp_token* token, enum rid keyword)
1857 {
1858 return token->keyword == keyword;
1859 }
1860
1861 /* If not parsing tentatively, issue a diagnostic of the form
1862 FILE:LINE: MESSAGE before TOKEN
1863 where TOKEN is the next token in the input stream. MESSAGE
1864 (specified by the caller) is usually of the form "expected
1865 OTHER-TOKEN". */
1866
1867 static void
1868 cp_parser_error (cp_parser* parser, const char* message)
1869 {
1870 if (!cp_parser_simulate_error (parser))
1871 {
1872 cp_token *token = cp_lexer_peek_token (parser->lexer);
1873 /* This diagnostic makes more sense if it is tagged to the line
1874 of the token we just peeked at. */
1875 cp_lexer_set_source_position_from_token (token);
1876
1877 if (token->type == CPP_PRAGMA)
1878 {
1879 error ("%<#pragma%> is not allowed here");
1880 cp_parser_skip_to_pragma_eol (parser, token);
1881 return;
1882 }
1883
1884 c_parse_error (message,
1885 /* Because c_parser_error does not understand
1886 CPP_KEYWORD, keywords are treated like
1887 identifiers. */
1888 (token->type == CPP_KEYWORD ? CPP_NAME : token->type),
1889 token->value);
1890 }
1891 }
1892
1893 /* Issue an error about name-lookup failing. NAME is the
1894 IDENTIFIER_NODE DECL is the result of
1895 the lookup (as returned from cp_parser_lookup_name). DESIRED is
1896 the thing that we hoped to find. */
1897
1898 static void
1899 cp_parser_name_lookup_error (cp_parser* parser,
1900 tree name,
1901 tree decl,
1902 const char* desired)
1903 {
1904 /* If name lookup completely failed, tell the user that NAME was not
1905 declared. */
1906 if (decl == error_mark_node)
1907 {
1908 if (parser->scope && parser->scope != global_namespace)
1909 error ("%<%D::%D%> has not been declared",
1910 parser->scope, name);
1911 else if (parser->scope == global_namespace)
1912 error ("%<::%D%> has not been declared", name);
1913 else if (parser->object_scope
1914 && !CLASS_TYPE_P (parser->object_scope))
1915 error ("request for member %qD in non-class type %qT",
1916 name, parser->object_scope);
1917 else if (parser->object_scope)
1918 error ("%<%T::%D%> has not been declared",
1919 parser->object_scope, name);
1920 else
1921 error ("%qD has not been declared", name);
1922 }
1923 else if (parser->scope && parser->scope != global_namespace)
1924 error ("%<%D::%D%> %s", parser->scope, name, desired);
1925 else if (parser->scope == global_namespace)
1926 error ("%<::%D%> %s", name, desired);
1927 else
1928 error ("%qD %s", name, desired);
1929 }
1930
1931 /* If we are parsing tentatively, remember that an error has occurred
1932 during this tentative parse. Returns true if the error was
1933 simulated; false if a message should be issued by the caller. */
1934
1935 static bool
1936 cp_parser_simulate_error (cp_parser* parser)
1937 {
1938 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
1939 {
1940 parser->context->status = CP_PARSER_STATUS_KIND_ERROR;
1941 return true;
1942 }
1943 return false;
1944 }
1945
1946 /* Check for repeated decl-specifiers. */
1947
1948 static void
1949 cp_parser_check_decl_spec (cp_decl_specifier_seq *decl_specs)
1950 {
1951 cp_decl_spec ds;
1952
1953 for (ds = ds_first; ds != ds_last; ++ds)
1954 {
1955 unsigned count = decl_specs->specs[(int)ds];
1956 if (count < 2)
1957 continue;
1958 /* The "long" specifier is a special case because of "long long". */
1959 if (ds == ds_long)
1960 {
1961 if (count > 2)
1962 error ("%<long long long%> is too long for GCC");
1963 else if (pedantic && !in_system_header && warn_long_long)
1964 pedwarn ("ISO C++ does not support %<long long%>");
1965 }
1966 else if (count > 1)
1967 {
1968 static const char *const decl_spec_names[] = {
1969 "signed",
1970 "unsigned",
1971 "short",
1972 "long",
1973 "const",
1974 "volatile",
1975 "restrict",
1976 "inline",
1977 "virtual",
1978 "explicit",
1979 "friend",
1980 "typedef",
1981 "__complex",
1982 "__thread"
1983 };
1984 error ("duplicate %qs", decl_spec_names[(int)ds]);
1985 }
1986 }
1987 }
1988
1989 /* This function is called when a type is defined. If type
1990 definitions are forbidden at this point, an error message is
1991 issued. */
1992
1993 static void
1994 cp_parser_check_type_definition (cp_parser* parser)
1995 {
1996 /* If types are forbidden here, issue a message. */
1997 if (parser->type_definition_forbidden_message)
1998 /* Use `%s' to print the string in case there are any escape
1999 characters in the message. */
2000 error ("%s", parser->type_definition_forbidden_message);
2001 }
2002
2003 /* This function is called when the DECLARATOR is processed. The TYPE
2004 was a type defined in the decl-specifiers. If it is invalid to
2005 define a type in the decl-specifiers for DECLARATOR, an error is
2006 issued. */
2007
2008 static void
2009 cp_parser_check_for_definition_in_return_type (cp_declarator *declarator,
2010 tree type)
2011 {
2012 /* [dcl.fct] forbids type definitions in return types.
2013 Unfortunately, it's not easy to know whether or not we are
2014 processing a return type until after the fact. */
2015 while (declarator
2016 && (declarator->kind == cdk_pointer
2017 || declarator->kind == cdk_reference
2018 || declarator->kind == cdk_ptrmem))
2019 declarator = declarator->declarator;
2020 if (declarator
2021 && declarator->kind == cdk_function)
2022 {
2023 error ("new types may not be defined in a return type");
2024 inform ("(perhaps a semicolon is missing after the definition of %qT)",
2025 type);
2026 }
2027 }
2028
2029 /* A type-specifier (TYPE) has been parsed which cannot be followed by
2030 "<" in any valid C++ program. If the next token is indeed "<",
2031 issue a message warning the user about what appears to be an
2032 invalid attempt to form a template-id. */
2033
2034 static void
2035 cp_parser_check_for_invalid_template_id (cp_parser* parser,
2036 tree type)
2037 {
2038 cp_token_position start = 0;
2039
2040 if (cp_lexer_next_token_is (parser->lexer, CPP_LESS))
2041 {
2042 if (TYPE_P (type))
2043 error ("%qT is not a template", type);
2044 else if (TREE_CODE (type) == IDENTIFIER_NODE)
2045 error ("%qE is not a template", type);
2046 else
2047 error ("invalid template-id");
2048 /* Remember the location of the invalid "<". */
2049 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
2050 start = cp_lexer_token_position (parser->lexer, true);
2051 /* Consume the "<". */
2052 cp_lexer_consume_token (parser->lexer);
2053 /* Parse the template arguments. */
2054 cp_parser_enclosed_template_argument_list (parser);
2055 /* Permanently remove the invalid template arguments so that
2056 this error message is not issued again. */
2057 if (start)
2058 cp_lexer_purge_tokens_after (parser->lexer, start);
2059 }
2060 }
2061
2062 /* If parsing an integral constant-expression, issue an error message
2063 about the fact that THING appeared and return true. Otherwise,
2064 return false. In either case, set
2065 PARSER->NON_INTEGRAL_CONSTANT_EXPRESSION_P. */
2066
2067 static bool
2068 cp_parser_non_integral_constant_expression (cp_parser *parser,
2069 const char *thing)
2070 {
2071 parser->non_integral_constant_expression_p = true;
2072 if (parser->integral_constant_expression_p)
2073 {
2074 if (!parser->allow_non_integral_constant_expression_p)
2075 {
2076 error ("%s cannot appear in a constant-expression", thing);
2077 return true;
2078 }
2079 }
2080 return false;
2081 }
2082
2083 /* Emit a diagnostic for an invalid type name. SCOPE is the
2084 qualifying scope (or NULL, if none) for ID. This function commits
2085 to the current active tentative parse, if any. (Otherwise, the
2086 problematic construct might be encountered again later, resulting
2087 in duplicate error messages.) */
2088
2089 static void
2090 cp_parser_diagnose_invalid_type_name (cp_parser *parser, tree scope, tree id)
2091 {
2092 tree decl, old_scope;
2093 /* Try to lookup the identifier. */
2094 old_scope = parser->scope;
2095 parser->scope = scope;
2096 decl = cp_parser_lookup_name_simple (parser, id);
2097 parser->scope = old_scope;
2098 /* If the lookup found a template-name, it means that the user forgot
2099 to specify an argument list. Emit a useful error message. */
2100 if (TREE_CODE (decl) == TEMPLATE_DECL)
2101 error ("invalid use of template-name %qE without an argument list", decl);
2102 else if (TREE_CODE (id) == BIT_NOT_EXPR)
2103 error ("invalid use of destructor %qD as a type", id);
2104 else if (TREE_CODE (decl) == TYPE_DECL)
2105 /* Something like 'unsigned A a;' */
2106 error ("invalid combination of multiple type-specifiers");
2107 else if (!parser->scope)
2108 {
2109 /* Issue an error message. */
2110 error ("%qE does not name a type", id);
2111 /* If we're in a template class, it's possible that the user was
2112 referring to a type from a base class. For example:
2113
2114 template <typename T> struct A { typedef T X; };
2115 template <typename T> struct B : public A<T> { X x; };
2116
2117 The user should have said "typename A<T>::X". */
2118 if (processing_template_decl && current_class_type
2119 && TYPE_BINFO (current_class_type))
2120 {
2121 tree b;
2122
2123 for (b = TREE_CHAIN (TYPE_BINFO (current_class_type));
2124 b;
2125 b = TREE_CHAIN (b))
2126 {
2127 tree base_type = BINFO_TYPE (b);
2128 if (CLASS_TYPE_P (base_type)
2129 && dependent_type_p (base_type))
2130 {
2131 tree field;
2132 /* Go from a particular instantiation of the
2133 template (which will have an empty TYPE_FIELDs),
2134 to the main version. */
2135 base_type = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (base_type);
2136 for (field = TYPE_FIELDS (base_type);
2137 field;
2138 field = TREE_CHAIN (field))
2139 if (TREE_CODE (field) == TYPE_DECL
2140 && DECL_NAME (field) == id)
2141 {
2142 inform ("(perhaps %<typename %T::%E%> was intended)",
2143 BINFO_TYPE (b), id);
2144 break;
2145 }
2146 if (field)
2147 break;
2148 }
2149 }
2150 }
2151 }
2152 /* Here we diagnose qualified-ids where the scope is actually correct,
2153 but the identifier does not resolve to a valid type name. */
2154 else if (parser->scope != error_mark_node)
2155 {
2156 if (TREE_CODE (parser->scope) == NAMESPACE_DECL)
2157 error ("%qE in namespace %qE does not name a type",
2158 id, parser->scope);
2159 else if (TYPE_P (parser->scope))
2160 error ("%qE in class %qT does not name a type", id, parser->scope);
2161 else
2162 gcc_unreachable ();
2163 }
2164 cp_parser_commit_to_tentative_parse (parser);
2165 }
2166
2167 /* Check for a common situation where a type-name should be present,
2168 but is not, and issue a sensible error message. Returns true if an
2169 invalid type-name was detected.
2170
2171 The situation handled by this function are variable declarations of the
2172 form `ID a', where `ID' is an id-expression and `a' is a plain identifier.
2173 Usually, `ID' should name a type, but if we got here it means that it
2174 does not. We try to emit the best possible error message depending on
2175 how exactly the id-expression looks like. */
2176
2177 static bool
2178 cp_parser_parse_and_diagnose_invalid_type_name (cp_parser *parser)
2179 {
2180 tree id;
2181
2182 cp_parser_parse_tentatively (parser);
2183 id = cp_parser_id_expression (parser,
2184 /*template_keyword_p=*/false,
2185 /*check_dependency_p=*/true,
2186 /*template_p=*/NULL,
2187 /*declarator_p=*/true,
2188 /*optional_p=*/false);
2189 /* After the id-expression, there should be a plain identifier,
2190 otherwise this is not a simple variable declaration. Also, if
2191 the scope is dependent, we cannot do much. */
2192 if (!cp_lexer_next_token_is (parser->lexer, CPP_NAME)
2193 || (parser->scope && TYPE_P (parser->scope)
2194 && dependent_type_p (parser->scope)))
2195 {
2196 cp_parser_abort_tentative_parse (parser);
2197 return false;
2198 }
2199 if (!cp_parser_parse_definitely (parser) || TREE_CODE (id) == TYPE_DECL)
2200 return false;
2201
2202 /* Emit a diagnostic for the invalid type. */
2203 cp_parser_diagnose_invalid_type_name (parser, parser->scope, id);
2204 /* Skip to the end of the declaration; there's no point in
2205 trying to process it. */
2206 cp_parser_skip_to_end_of_block_or_statement (parser);
2207 return true;
2208 }
2209
2210 /* Consume tokens up to, and including, the next non-nested closing `)'.
2211 Returns 1 iff we found a closing `)'. RECOVERING is true, if we
2212 are doing error recovery. Returns -1 if OR_COMMA is true and we
2213 found an unnested comma. */
2214
2215 static int
2216 cp_parser_skip_to_closing_parenthesis (cp_parser *parser,
2217 bool recovering,
2218 bool or_comma,
2219 bool consume_paren)
2220 {
2221 unsigned paren_depth = 0;
2222 unsigned brace_depth = 0;
2223
2224 if (recovering && !or_comma
2225 && cp_parser_uncommitted_to_tentative_parse_p (parser))
2226 return 0;
2227
2228 while (true)
2229 {
2230 cp_token * token = cp_lexer_peek_token (parser->lexer);
2231
2232 switch (token->type)
2233 {
2234 case CPP_EOF:
2235 case CPP_PRAGMA_EOL:
2236 /* If we've run out of tokens, then there is no closing `)'. */
2237 return 0;
2238
2239 case CPP_SEMICOLON:
2240 /* This matches the processing in skip_to_end_of_statement. */
2241 if (!brace_depth)
2242 return 0;
2243 break;
2244
2245 case CPP_OPEN_BRACE:
2246 ++brace_depth;
2247 break;
2248 case CPP_CLOSE_BRACE:
2249 if (!brace_depth--)
2250 return 0;
2251 break;
2252
2253 case CPP_COMMA:
2254 if (recovering && or_comma && !brace_depth && !paren_depth)
2255 return -1;
2256 break;
2257
2258 case CPP_OPEN_PAREN:
2259 if (!brace_depth)
2260 ++paren_depth;
2261 break;
2262
2263 case CPP_CLOSE_PAREN:
2264 if (!brace_depth && !paren_depth--)
2265 {
2266 if (consume_paren)
2267 cp_lexer_consume_token (parser->lexer);
2268 return 1;
2269 }
2270 break;
2271
2272 default:
2273 break;
2274 }
2275
2276 /* Consume the token. */
2277 cp_lexer_consume_token (parser->lexer);
2278 }
2279 }
2280
2281 /* Consume tokens until we reach the end of the current statement.
2282 Normally, that will be just before consuming a `;'. However, if a
2283 non-nested `}' comes first, then we stop before consuming that. */
2284
2285 static void
2286 cp_parser_skip_to_end_of_statement (cp_parser* parser)
2287 {
2288 unsigned nesting_depth = 0;
2289
2290 while (true)
2291 {
2292 cp_token *token = cp_lexer_peek_token (parser->lexer);
2293
2294 switch (token->type)
2295 {
2296 case CPP_EOF:
2297 case CPP_PRAGMA_EOL:
2298 /* If we've run out of tokens, stop. */
2299 return;
2300
2301 case CPP_SEMICOLON:
2302 /* If the next token is a `;', we have reached the end of the
2303 statement. */
2304 if (!nesting_depth)
2305 return;
2306 break;
2307
2308 case CPP_CLOSE_BRACE:
2309 /* If this is a non-nested '}', stop before consuming it.
2310 That way, when confronted with something like:
2311
2312 { 3 + }
2313
2314 we stop before consuming the closing '}', even though we
2315 have not yet reached a `;'. */
2316 if (nesting_depth == 0)
2317 return;
2318
2319 /* If it is the closing '}' for a block that we have
2320 scanned, stop -- but only after consuming the token.
2321 That way given:
2322
2323 void f g () { ... }
2324 typedef int I;
2325
2326 we will stop after the body of the erroneously declared
2327 function, but before consuming the following `typedef'
2328 declaration. */
2329 if (--nesting_depth == 0)
2330 {
2331 cp_lexer_consume_token (parser->lexer);
2332 return;
2333 }
2334
2335 case CPP_OPEN_BRACE:
2336 ++nesting_depth;
2337 break;
2338
2339 default:
2340 break;
2341 }
2342
2343 /* Consume the token. */
2344 cp_lexer_consume_token (parser->lexer);
2345 }
2346 }
2347
2348 /* This function is called at the end of a statement or declaration.
2349 If the next token is a semicolon, it is consumed; otherwise, error
2350 recovery is attempted. */
2351
2352 static void
2353 cp_parser_consume_semicolon_at_end_of_statement (cp_parser *parser)
2354 {
2355 /* Look for the trailing `;'. */
2356 if (!cp_parser_require (parser, CPP_SEMICOLON, "`;'"))
2357 {
2358 /* If there is additional (erroneous) input, skip to the end of
2359 the statement. */
2360 cp_parser_skip_to_end_of_statement (parser);
2361 /* If the next token is now a `;', consume it. */
2362 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
2363 cp_lexer_consume_token (parser->lexer);
2364 }
2365 }
2366
2367 /* Skip tokens until we have consumed an entire block, or until we
2368 have consumed a non-nested `;'. */
2369
2370 static void
2371 cp_parser_skip_to_end_of_block_or_statement (cp_parser* parser)
2372 {
2373 int nesting_depth = 0;
2374
2375 while (nesting_depth >= 0)
2376 {
2377 cp_token *token = cp_lexer_peek_token (parser->lexer);
2378
2379 switch (token->type)
2380 {
2381 case CPP_EOF:
2382 case CPP_PRAGMA_EOL:
2383 /* If we've run out of tokens, stop. */
2384 return;
2385
2386 case CPP_SEMICOLON:
2387 /* Stop if this is an unnested ';'. */
2388 if (!nesting_depth)
2389 nesting_depth = -1;
2390 break;
2391
2392 case CPP_CLOSE_BRACE:
2393 /* Stop if this is an unnested '}', or closes the outermost
2394 nesting level. */
2395 nesting_depth--;
2396 if (!nesting_depth)
2397 nesting_depth = -1;
2398 break;
2399
2400 case CPP_OPEN_BRACE:
2401 /* Nest. */
2402 nesting_depth++;
2403 break;
2404
2405 default:
2406 break;
2407 }
2408
2409 /* Consume the token. */
2410 cp_lexer_consume_token (parser->lexer);
2411 }
2412 }
2413
2414 /* Skip tokens until a non-nested closing curly brace is the next
2415 token. */
2416
2417 static void
2418 cp_parser_skip_to_closing_brace (cp_parser *parser)
2419 {
2420 unsigned nesting_depth = 0;
2421
2422 while (true)
2423 {
2424 cp_token *token = cp_lexer_peek_token (parser->lexer);
2425
2426 switch (token->type)
2427 {
2428 case CPP_EOF:
2429 case CPP_PRAGMA_EOL:
2430 /* If we've run out of tokens, stop. */
2431 return;
2432
2433 case CPP_CLOSE_BRACE:
2434 /* If the next token is a non-nested `}', then we have reached
2435 the end of the current block. */
2436 if (nesting_depth-- == 0)
2437 return;
2438 break;
2439
2440 case CPP_OPEN_BRACE:
2441 /* If it the next token is a `{', then we are entering a new
2442 block. Consume the entire block. */
2443 ++nesting_depth;
2444 break;
2445
2446 default:
2447 break;
2448 }
2449
2450 /* Consume the token. */
2451 cp_lexer_consume_token (parser->lexer);
2452 }
2453 }
2454
2455 /* Consume tokens until we reach the end of the pragma. The PRAGMA_TOK
2456 parameter is the PRAGMA token, allowing us to purge the entire pragma
2457 sequence. */
2458
2459 static void
2460 cp_parser_skip_to_pragma_eol (cp_parser* parser, cp_token *pragma_tok)
2461 {
2462 cp_token *token;
2463
2464 parser->lexer->in_pragma = false;
2465
2466 do
2467 token = cp_lexer_consume_token (parser->lexer);
2468 while (token->type != CPP_PRAGMA_EOL && token->type != CPP_EOF);
2469
2470 /* Ensure that the pragma is not parsed again. */
2471 cp_lexer_purge_tokens_after (parser->lexer, pragma_tok);
2472 }
2473
2474 /* Require pragma end of line, resyncing with it as necessary. The
2475 arguments are as for cp_parser_skip_to_pragma_eol. */
2476
2477 static void
2478 cp_parser_require_pragma_eol (cp_parser *parser, cp_token *pragma_tok)
2479 {
2480 parser->lexer->in_pragma = false;
2481 if (!cp_parser_require (parser, CPP_PRAGMA_EOL, "end of line"))
2482 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
2483 }
2484
2485 /* This is a simple wrapper around make_typename_type. When the id is
2486 an unresolved identifier node, we can provide a superior diagnostic
2487 using cp_parser_diagnose_invalid_type_name. */
2488
2489 static tree
2490 cp_parser_make_typename_type (cp_parser *parser, tree scope, tree id)
2491 {
2492 tree result;
2493 if (TREE_CODE (id) == IDENTIFIER_NODE)
2494 {
2495 result = make_typename_type (scope, id, typename_type,
2496 /*complain=*/tf_none);
2497 if (result == error_mark_node)
2498 cp_parser_diagnose_invalid_type_name (parser, scope, id);
2499 return result;
2500 }
2501 return make_typename_type (scope, id, typename_type, tf_error);
2502 }
2503
2504
2505 /* Create a new C++ parser. */
2506
2507 static cp_parser *
2508 cp_parser_new (void)
2509 {
2510 cp_parser *parser;
2511 cp_lexer *lexer;
2512 unsigned i;
2513
2514 /* cp_lexer_new_main is called before calling ggc_alloc because
2515 cp_lexer_new_main might load a PCH file. */
2516 lexer = cp_lexer_new_main ();
2517
2518 /* Initialize the binops_by_token so that we can get the tree
2519 directly from the token. */
2520 for (i = 0; i < sizeof (binops) / sizeof (binops[0]); i++)
2521 binops_by_token[binops[i].token_type] = binops[i];
2522
2523 parser = GGC_CNEW (cp_parser);
2524 parser->lexer = lexer;
2525 parser->context = cp_parser_context_new (NULL);
2526
2527 /* For now, we always accept GNU extensions. */
2528 parser->allow_gnu_extensions_p = 1;
2529
2530 /* The `>' token is a greater-than operator, not the end of a
2531 template-id. */
2532 parser->greater_than_is_operator_p = true;
2533
2534 parser->default_arg_ok_p = true;
2535
2536 /* We are not parsing a constant-expression. */
2537 parser->integral_constant_expression_p = false;
2538 parser->allow_non_integral_constant_expression_p = false;
2539 parser->non_integral_constant_expression_p = false;
2540
2541 /* Local variable names are not forbidden. */
2542 parser->local_variables_forbidden_p = false;
2543
2544 /* We are not processing an `extern "C"' declaration. */
2545 parser->in_unbraced_linkage_specification_p = false;
2546
2547 /* We are not processing a declarator. */
2548 parser->in_declarator_p = false;
2549
2550 /* We are not processing a template-argument-list. */
2551 parser->in_template_argument_list_p = false;
2552
2553 /* We are not in an iteration statement. */
2554 parser->in_statement = 0;
2555
2556 /* We are not in a switch statement. */
2557 parser->in_switch_statement_p = false;
2558
2559 /* We are not parsing a type-id inside an expression. */
2560 parser->in_type_id_in_expr_p = false;
2561
2562 /* Declarations aren't implicitly extern "C". */
2563 parser->implicit_extern_c = false;
2564
2565 /* String literals should be translated to the execution character set. */
2566 parser->translate_strings_p = true;
2567
2568 /* The unparsed function queue is empty. */
2569 parser->unparsed_functions_queues = build_tree_list (NULL_TREE, NULL_TREE);
2570
2571 /* There are no classes being defined. */
2572 parser->num_classes_being_defined = 0;
2573
2574 /* No template parameters apply. */
2575 parser->num_template_parameter_lists = 0;
2576
2577 return parser;
2578 }
2579
2580 /* Create a cp_lexer structure which will emit the tokens in CACHE
2581 and push it onto the parser's lexer stack. This is used for delayed
2582 parsing of in-class method bodies and default arguments, and should
2583 not be confused with tentative parsing. */
2584 static void
2585 cp_parser_push_lexer_for_tokens (cp_parser *parser, cp_token_cache *cache)
2586 {
2587 cp_lexer *lexer = cp_lexer_new_from_tokens (cache);
2588 lexer->next = parser->lexer;
2589 parser->lexer = lexer;
2590
2591 /* Move the current source position to that of the first token in the
2592 new lexer. */
2593 cp_lexer_set_source_position_from_token (lexer->next_token);
2594 }
2595
2596 /* Pop the top lexer off the parser stack. This is never used for the
2597 "main" lexer, only for those pushed by cp_parser_push_lexer_for_tokens. */
2598 static void
2599 cp_parser_pop_lexer (cp_parser *parser)
2600 {
2601 cp_lexer *lexer = parser->lexer;
2602 parser->lexer = lexer->next;
2603 cp_lexer_destroy (lexer);
2604
2605 /* Put the current source position back where it was before this
2606 lexer was pushed. */
2607 cp_lexer_set_source_position_from_token (parser->lexer->next_token);
2608 }
2609
2610 /* Lexical conventions [gram.lex] */
2611
2612 /* Parse an identifier. Returns an IDENTIFIER_NODE representing the
2613 identifier. */
2614
2615 static tree
2616 cp_parser_identifier (cp_parser* parser)
2617 {
2618 cp_token *token;
2619
2620 /* Look for the identifier. */
2621 token = cp_parser_require (parser, CPP_NAME, "identifier");
2622 /* Return the value. */
2623 return token ? token->value : error_mark_node;
2624 }
2625
2626 /* Parse a sequence of adjacent string constants. Returns a
2627 TREE_STRING representing the combined, nul-terminated string
2628 constant. If TRANSLATE is true, translate the string to the
2629 execution character set. If WIDE_OK is true, a wide string is
2630 invalid here.
2631
2632 C++98 [lex.string] says that if a narrow string literal token is
2633 adjacent to a wide string literal token, the behavior is undefined.
2634 However, C99 6.4.5p4 says that this results in a wide string literal.
2635 We follow C99 here, for consistency with the C front end.
2636
2637 This code is largely lifted from lex_string() in c-lex.c.
2638
2639 FUTURE: ObjC++ will need to handle @-strings here. */
2640 static tree
2641 cp_parser_string_literal (cp_parser *parser, bool translate, bool wide_ok)
2642 {
2643 tree value;
2644 bool wide = false;
2645 size_t count;
2646 struct obstack str_ob;
2647 cpp_string str, istr, *strs;
2648 cp_token *tok;
2649
2650 tok = cp_lexer_peek_token (parser->lexer);
2651 if (!cp_parser_is_string_literal (tok))
2652 {
2653 cp_parser_error (parser, "expected string-literal");
2654 return error_mark_node;
2655 }
2656
2657 /* Try to avoid the overhead of creating and destroying an obstack
2658 for the common case of just one string. */
2659 if (!cp_parser_is_string_literal
2660 (cp_lexer_peek_nth_token (parser->lexer, 2)))
2661 {
2662 cp_lexer_consume_token (parser->lexer);
2663
2664 str.text = (const unsigned char *)TREE_STRING_POINTER (tok->value);
2665 str.len = TREE_STRING_LENGTH (tok->value);
2666 count = 1;
2667 if (tok->type == CPP_WSTRING)
2668 wide = true;
2669
2670 strs = &str;
2671 }
2672 else
2673 {
2674 gcc_obstack_init (&str_ob);
2675 count = 0;
2676
2677 do
2678 {
2679 cp_lexer_consume_token (parser->lexer);
2680 count++;
2681 str.text = (unsigned char *)TREE_STRING_POINTER (tok->value);
2682 str.len = TREE_STRING_LENGTH (tok->value);
2683 if (tok->type == CPP_WSTRING)
2684 wide = true;
2685
2686 obstack_grow (&str_ob, &str, sizeof (cpp_string));
2687
2688 tok = cp_lexer_peek_token (parser->lexer);
2689 }
2690 while (cp_parser_is_string_literal (tok));
2691
2692 strs = (cpp_string *) obstack_finish (&str_ob);
2693 }
2694
2695 if (wide && !wide_ok)
2696 {
2697 cp_parser_error (parser, "a wide string is invalid in this context");
2698 wide = false;
2699 }
2700
2701 if ((translate ? cpp_interpret_string : cpp_interpret_string_notranslate)
2702 (parse_in, strs, count, &istr, wide))
2703 {
2704 value = build_string (istr.len, (char *)istr.text);
2705 free ((void *)istr.text);
2706
2707 TREE_TYPE (value) = wide ? wchar_array_type_node : char_array_type_node;
2708 value = fix_string_type (value);
2709 }
2710 else
2711 /* cpp_interpret_string has issued an error. */
2712 value = error_mark_node;
2713
2714 if (count > 1)
2715 obstack_free (&str_ob, 0);
2716
2717 return value;
2718 }
2719
2720
2721 /* Basic concepts [gram.basic] */
2722
2723 /* Parse a translation-unit.
2724
2725 translation-unit:
2726 declaration-seq [opt]
2727
2728 Returns TRUE if all went well. */
2729
2730 static bool
2731 cp_parser_translation_unit (cp_parser* parser)
2732 {
2733 /* The address of the first non-permanent object on the declarator
2734 obstack. */
2735 static void *declarator_obstack_base;
2736
2737 bool success;
2738
2739 /* Create the declarator obstack, if necessary. */
2740 if (!cp_error_declarator)
2741 {
2742 gcc_obstack_init (&declarator_obstack);
2743 /* Create the error declarator. */
2744 cp_error_declarator = make_declarator (cdk_error);
2745 /* Create the empty parameter list. */
2746 no_parameters = make_parameter_declarator (NULL, NULL, NULL_TREE);
2747 /* Remember where the base of the declarator obstack lies. */
2748 declarator_obstack_base = obstack_next_free (&declarator_obstack);
2749 }
2750
2751 cp_parser_declaration_seq_opt (parser);
2752
2753 /* If there are no tokens left then all went well. */
2754 if (cp_lexer_next_token_is (parser->lexer, CPP_EOF))
2755 {
2756 /* Get rid of the token array; we don't need it any more. */
2757 cp_lexer_destroy (parser->lexer);
2758 parser->lexer = NULL;
2759
2760 /* This file might have been a context that's implicitly extern
2761 "C". If so, pop the lang context. (Only relevant for PCH.) */
2762 if (parser->implicit_extern_c)
2763 {
2764 pop_lang_context ();
2765 parser->implicit_extern_c = false;
2766 }
2767
2768 /* Finish up. */
2769 finish_translation_unit ();
2770
2771 success = true;
2772 }
2773 else
2774 {
2775 cp_parser_error (parser, "expected declaration");
2776 success = false;
2777 }
2778
2779 /* Make sure the declarator obstack was fully cleaned up. */
2780 gcc_assert (obstack_next_free (&declarator_obstack)
2781 == declarator_obstack_base);
2782
2783 /* All went well. */
2784 return success;
2785 }
2786
2787 /* Expressions [gram.expr] */
2788
2789 /* Parse a primary-expression.
2790
2791 primary-expression:
2792 literal
2793 this
2794 ( expression )
2795 id-expression
2796
2797 GNU Extensions:
2798
2799 primary-expression:
2800 ( compound-statement )
2801 __builtin_va_arg ( assignment-expression , type-id )
2802 __builtin_offsetof ( type-id , offsetof-expression )
2803
2804 Objective-C++ Extension:
2805
2806 primary-expression:
2807 objc-expression
2808
2809 literal:
2810 __null
2811
2812 ADDRESS_P is true iff this expression was immediately preceded by
2813 "&" and therefore might denote a pointer-to-member. CAST_P is true
2814 iff this expression is the target of a cast. TEMPLATE_ARG_P is
2815 true iff this expression is a template argument.
2816
2817 Returns a representation of the expression. Upon return, *IDK
2818 indicates what kind of id-expression (if any) was present. */
2819
2820 static tree
2821 cp_parser_primary_expression (cp_parser *parser,
2822 bool address_p,
2823 bool cast_p,
2824 bool template_arg_p,
2825 cp_id_kind *idk)
2826 {
2827 cp_token *token;
2828
2829 /* Assume the primary expression is not an id-expression. */
2830 *idk = CP_ID_KIND_NONE;
2831
2832 /* Peek at the next token. */
2833 token = cp_lexer_peek_token (parser->lexer);
2834 switch (token->type)
2835 {
2836 /* literal:
2837 integer-literal
2838 character-literal
2839 floating-literal
2840 string-literal
2841 boolean-literal */
2842 case CPP_CHAR:
2843 case CPP_WCHAR:
2844 case CPP_NUMBER:
2845 token = cp_lexer_consume_token (parser->lexer);
2846 /* Floating-point literals are only allowed in an integral
2847 constant expression if they are cast to an integral or
2848 enumeration type. */
2849 if (TREE_CODE (token->value) == REAL_CST
2850 && parser->integral_constant_expression_p
2851 && pedantic)
2852 {
2853 /* CAST_P will be set even in invalid code like "int(2.7 +
2854 ...)". Therefore, we have to check that the next token
2855 is sure to end the cast. */
2856 if (cast_p)
2857 {
2858 cp_token *next_token;
2859
2860 next_token = cp_lexer_peek_token (parser->lexer);
2861 if (/* The comma at the end of an
2862 enumerator-definition. */
2863 next_token->type != CPP_COMMA
2864 /* The curly brace at the end of an enum-specifier. */
2865 && next_token->type != CPP_CLOSE_BRACE
2866 /* The end of a statement. */
2867 && next_token->type != CPP_SEMICOLON
2868 /* The end of the cast-expression. */
2869 && next_token->type != CPP_CLOSE_PAREN
2870 /* The end of an array bound. */
2871 && next_token->type != CPP_CLOSE_SQUARE
2872 /* The closing ">" in a template-argument-list. */
2873 && (next_token->type != CPP_GREATER
2874 || parser->greater_than_is_operator_p))
2875 cast_p = false;
2876 }
2877
2878 /* If we are within a cast, then the constraint that the
2879 cast is to an integral or enumeration type will be
2880 checked at that point. If we are not within a cast, then
2881 this code is invalid. */
2882 if (!cast_p)
2883 cp_parser_non_integral_constant_expression
2884 (parser, "floating-point literal");
2885 }
2886 return token->value;
2887
2888 case CPP_STRING:
2889 case CPP_WSTRING:
2890 /* ??? Should wide strings be allowed when parser->translate_strings_p
2891 is false (i.e. in attributes)? If not, we can kill the third
2892 argument to cp_parser_string_literal. */
2893 return cp_parser_string_literal (parser,
2894 parser->translate_strings_p,
2895 true);
2896
2897 case CPP_OPEN_PAREN:
2898 {
2899 tree expr;
2900 bool saved_greater_than_is_operator_p;
2901
2902 /* Consume the `('. */
2903 cp_lexer_consume_token (parser->lexer);
2904 /* Within a parenthesized expression, a `>' token is always
2905 the greater-than operator. */
2906 saved_greater_than_is_operator_p
2907 = parser->greater_than_is_operator_p;
2908 parser->greater_than_is_operator_p = true;
2909 /* If we see `( { ' then we are looking at the beginning of
2910 a GNU statement-expression. */
2911 if (cp_parser_allow_gnu_extensions_p (parser)
2912 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
2913 {
2914 /* Statement-expressions are not allowed by the standard. */
2915 if (pedantic)
2916 pedwarn ("ISO C++ forbids braced-groups within expressions");
2917
2918 /* And they're not allowed outside of a function-body; you
2919 cannot, for example, write:
2920
2921 int i = ({ int j = 3; j + 1; });
2922
2923 at class or namespace scope. */
2924 if (!at_function_scope_p ())
2925 error ("statement-expressions are allowed only inside functions");
2926 /* Start the statement-expression. */
2927 expr = begin_stmt_expr ();
2928 /* Parse the compound-statement. */
2929 cp_parser_compound_statement (parser, expr, false);
2930 /* Finish up. */
2931 expr = finish_stmt_expr (expr, false);
2932 }
2933 else
2934 {
2935 /* Parse the parenthesized expression. */
2936 expr = cp_parser_expression (parser, cast_p);
2937 /* Let the front end know that this expression was
2938 enclosed in parentheses. This matters in case, for
2939 example, the expression is of the form `A::B', since
2940 `&A::B' might be a pointer-to-member, but `&(A::B)' is
2941 not. */
2942 finish_parenthesized_expr (expr);
2943 }
2944 /* The `>' token might be the end of a template-id or
2945 template-parameter-list now. */
2946 parser->greater_than_is_operator_p
2947 = saved_greater_than_is_operator_p;
2948 /* Consume the `)'. */
2949 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'"))
2950 cp_parser_skip_to_end_of_statement (parser);
2951
2952 return expr;
2953 }
2954
2955 case CPP_KEYWORD:
2956 switch (token->keyword)
2957 {
2958 /* These two are the boolean literals. */
2959 case RID_TRUE:
2960 cp_lexer_consume_token (parser->lexer);
2961 return boolean_true_node;
2962 case RID_FALSE:
2963 cp_lexer_consume_token (parser->lexer);
2964 return boolean_false_node;
2965
2966 /* The `__null' literal. */
2967 case RID_NULL:
2968 cp_lexer_consume_token (parser->lexer);
2969 return null_node;
2970
2971 /* Recognize the `this' keyword. */
2972 case RID_THIS:
2973 cp_lexer_consume_token (parser->lexer);
2974 if (parser->local_variables_forbidden_p)
2975 {
2976 error ("%<this%> may not be used in this context");
2977 return error_mark_node;
2978 }
2979 /* Pointers cannot appear in constant-expressions. */
2980 if (cp_parser_non_integral_constant_expression (parser,
2981 "`this'"))
2982 return error_mark_node;
2983 return finish_this_expr ();
2984
2985 /* The `operator' keyword can be the beginning of an
2986 id-expression. */
2987 case RID_OPERATOR:
2988 goto id_expression;
2989
2990 case RID_FUNCTION_NAME:
2991 case RID_PRETTY_FUNCTION_NAME:
2992 case RID_C99_FUNCTION_NAME:
2993 /* The symbols __FUNCTION__, __PRETTY_FUNCTION__, and
2994 __func__ are the names of variables -- but they are
2995 treated specially. Therefore, they are handled here,
2996 rather than relying on the generic id-expression logic
2997 below. Grammatically, these names are id-expressions.
2998
2999 Consume the token. */
3000 token = cp_lexer_consume_token (parser->lexer);
3001 /* Look up the name. */
3002 return finish_fname (token->value);
3003
3004 case RID_VA_ARG:
3005 {
3006 tree expression;
3007 tree type;
3008
3009 /* The `__builtin_va_arg' construct is used to handle
3010 `va_arg'. Consume the `__builtin_va_arg' token. */
3011 cp_lexer_consume_token (parser->lexer);
3012 /* Look for the opening `('. */
3013 cp_parser_require (parser, CPP_OPEN_PAREN, "`('");
3014 /* Now, parse the assignment-expression. */
3015 expression = cp_parser_assignment_expression (parser,
3016 /*cast_p=*/false);
3017 /* Look for the `,'. */
3018 cp_parser_require (parser, CPP_COMMA, "`,'");
3019 /* Parse the type-id. */
3020 type = cp_parser_type_id (parser);
3021 /* Look for the closing `)'. */
3022 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
3023 /* Using `va_arg' in a constant-expression is not
3024 allowed. */
3025 if (cp_parser_non_integral_constant_expression (parser,
3026 "`va_arg'"))
3027 return error_mark_node;
3028 return build_x_va_arg (expression, type);
3029 }
3030
3031 case RID_OFFSETOF:
3032 return cp_parser_builtin_offsetof (parser);
3033
3034 /* Objective-C++ expressions. */
3035 case RID_AT_ENCODE:
3036 case RID_AT_PROTOCOL:
3037 case RID_AT_SELECTOR:
3038 return cp_parser_objc_expression (parser);
3039
3040 default:
3041 cp_parser_error (parser, "expected primary-expression");
3042 return error_mark_node;
3043 }
3044
3045 /* An id-expression can start with either an identifier, a
3046 `::' as the beginning of a qualified-id, or the "operator"
3047 keyword. */
3048 case CPP_NAME:
3049 case CPP_SCOPE:
3050 case CPP_TEMPLATE_ID:
3051 case CPP_NESTED_NAME_SPECIFIER:
3052 {
3053 tree id_expression;
3054 tree decl;
3055 const char *error_msg;
3056 bool template_p;
3057 bool done;
3058
3059 id_expression:
3060 /* Parse the id-expression. */
3061 id_expression
3062 = cp_parser_id_expression (parser,
3063 /*template_keyword_p=*/false,
3064 /*check_dependency_p=*/true,
3065 &template_p,
3066 /*declarator_p=*/false,
3067 /*optional_p=*/false);
3068 if (id_expression == error_mark_node)
3069 return error_mark_node;
3070 token = cp_lexer_peek_token (parser->lexer);
3071 done = (token->type != CPP_OPEN_SQUARE
3072 && token->type != CPP_OPEN_PAREN
3073 && token->type != CPP_DOT
3074 && token->type != CPP_DEREF
3075 && token->type != CPP_PLUS_PLUS
3076 && token->type != CPP_MINUS_MINUS);
3077 /* If we have a template-id, then no further lookup is
3078 required. If the template-id was for a template-class, we
3079 will sometimes have a TYPE_DECL at this point. */
3080 if (TREE_CODE (id_expression) == TEMPLATE_ID_EXPR
3081 || TREE_CODE (id_expression) == TYPE_DECL)
3082 decl = id_expression;
3083 /* Look up the name. */
3084 else
3085 {
3086 tree ambiguous_decls;
3087
3088 decl = cp_parser_lookup_name (parser, id_expression,
3089 none_type,
3090 template_p,
3091 /*is_namespace=*/false,
3092 /*check_dependency=*/true,
3093 &ambiguous_decls);
3094 /* If the lookup was ambiguous, an error will already have
3095 been issued. */
3096 if (ambiguous_decls)
3097 return error_mark_node;
3098
3099 /* In Objective-C++, an instance variable (ivar) may be preferred
3100 to whatever cp_parser_lookup_name() found. */
3101 decl = objc_lookup_ivar (decl, id_expression);
3102
3103 /* If name lookup gives us a SCOPE_REF, then the
3104 qualifying scope was dependent. */
3105 if (TREE_CODE (decl) == SCOPE_REF)
3106 return decl;
3107 /* Check to see if DECL is a local variable in a context
3108 where that is forbidden. */
3109 if (parser->local_variables_forbidden_p
3110 && local_variable_p (decl))
3111 {
3112 /* It might be that we only found DECL because we are
3113 trying to be generous with pre-ISO scoping rules.
3114 For example, consider:
3115
3116 int i;
3117 void g() {
3118 for (int i = 0; i < 10; ++i) {}
3119 extern void f(int j = i);
3120 }
3121
3122 Here, name look up will originally find the out
3123 of scope `i'. We need to issue a warning message,
3124 but then use the global `i'. */
3125 decl = check_for_out_of_scope_variable (decl);
3126 if (local_variable_p (decl))
3127 {
3128 error ("local variable %qD may not appear in this context",
3129 decl);
3130 return error_mark_node;
3131 }
3132 }
3133 }
3134
3135 decl = (finish_id_expression
3136 (id_expression, decl, parser->scope,
3137 idk,
3138 parser->integral_constant_expression_p,
3139 parser->allow_non_integral_constant_expression_p,
3140 &parser->non_integral_constant_expression_p,
3141 template_p, done, address_p,
3142 template_arg_p,
3143 &error_msg));
3144 if (error_msg)
3145 cp_parser_error (parser, error_msg);
3146 return decl;
3147 }
3148
3149 /* Anything else is an error. */
3150 default:
3151 /* ...unless we have an Objective-C++ message or string literal, that is. */
3152 if (c_dialect_objc ()
3153 && (token->type == CPP_OPEN_SQUARE || token->type == CPP_OBJC_STRING))
3154 return cp_parser_objc_expression (parser);
3155
3156 cp_parser_error (parser, "expected primary-expression");
3157 return error_mark_node;
3158 }
3159 }
3160
3161 /* Parse an id-expression.
3162
3163 id-expression:
3164 unqualified-id
3165 qualified-id
3166
3167 qualified-id:
3168 :: [opt] nested-name-specifier template [opt] unqualified-id
3169 :: identifier
3170 :: operator-function-id
3171 :: template-id
3172
3173 Return a representation of the unqualified portion of the
3174 identifier. Sets PARSER->SCOPE to the qualifying scope if there is
3175 a `::' or nested-name-specifier.
3176
3177 Often, if the id-expression was a qualified-id, the caller will
3178 want to make a SCOPE_REF to represent the qualified-id. This
3179 function does not do this in order to avoid wastefully creating
3180 SCOPE_REFs when they are not required.
3181
3182 If TEMPLATE_KEYWORD_P is true, then we have just seen the
3183 `template' keyword.
3184
3185 If CHECK_DEPENDENCY_P is false, then names are looked up inside
3186 uninstantiated templates.
3187
3188 If *TEMPLATE_P is non-NULL, it is set to true iff the
3189 `template' keyword is used to explicitly indicate that the entity
3190 named is a template.
3191
3192 If DECLARATOR_P is true, the id-expression is appearing as part of
3193 a declarator, rather than as part of an expression. */
3194
3195 static tree
3196 cp_parser_id_expression (cp_parser *parser,
3197 bool template_keyword_p,
3198 bool check_dependency_p,
3199 bool *template_p,
3200 bool declarator_p,
3201 bool optional_p)
3202 {
3203 bool global_scope_p;
3204 bool nested_name_specifier_p;
3205
3206 /* Assume the `template' keyword was not used. */
3207 if (template_p)
3208 *template_p = template_keyword_p;
3209
3210 /* Look for the optional `::' operator. */
3211 global_scope_p
3212 = (cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/false)
3213 != NULL_TREE);
3214 /* Look for the optional nested-name-specifier. */
3215 nested_name_specifier_p
3216 = (cp_parser_nested_name_specifier_opt (parser,
3217 /*typename_keyword_p=*/false,
3218 check_dependency_p,
3219 /*type_p=*/false,
3220 declarator_p)
3221 != NULL_TREE);
3222 /* If there is a nested-name-specifier, then we are looking at
3223 the first qualified-id production. */
3224 if (nested_name_specifier_p)
3225 {
3226 tree saved_scope;
3227 tree saved_object_scope;
3228 tree saved_qualifying_scope;
3229 tree unqualified_id;
3230 bool is_template;
3231
3232 /* See if the next token is the `template' keyword. */
3233 if (!template_p)
3234 template_p = &is_template;
3235 *template_p = cp_parser_optional_template_keyword (parser);
3236 /* Name lookup we do during the processing of the
3237 unqualified-id might obliterate SCOPE. */
3238 saved_scope = parser->scope;
3239 saved_object_scope = parser->object_scope;
3240 saved_qualifying_scope = parser->qualifying_scope;
3241 /* Process the final unqualified-id. */
3242 unqualified_id = cp_parser_unqualified_id (parser, *template_p,
3243 check_dependency_p,
3244 declarator_p,
3245 /*optional_p=*/false);
3246 /* Restore the SAVED_SCOPE for our caller. */
3247 parser->scope = saved_scope;
3248 parser->object_scope = saved_object_scope;
3249 parser->qualifying_scope = saved_qualifying_scope;
3250
3251 return unqualified_id;
3252 }
3253 /* Otherwise, if we are in global scope, then we are looking at one
3254 of the other qualified-id productions. */
3255 else if (global_scope_p)
3256 {
3257 cp_token *token;
3258 tree id;
3259
3260 /* Peek at the next token. */
3261 token = cp_lexer_peek_token (parser->lexer);
3262
3263 /* If it's an identifier, and the next token is not a "<", then
3264 we can avoid the template-id case. This is an optimization
3265 for this common case. */
3266 if (token->type == CPP_NAME
3267 && !cp_parser_nth_token_starts_template_argument_list_p
3268 (parser, 2))
3269 return cp_parser_identifier (parser);
3270
3271 cp_parser_parse_tentatively (parser);
3272 /* Try a template-id. */
3273 id = cp_parser_template_id (parser,
3274 /*template_keyword_p=*/false,
3275 /*check_dependency_p=*/true,
3276 declarator_p);
3277 /* If that worked, we're done. */
3278 if (cp_parser_parse_definitely (parser))
3279 return id;
3280
3281 /* Peek at the next token. (Changes in the token buffer may
3282 have invalidated the pointer obtained above.) */
3283 token = cp_lexer_peek_token (parser->lexer);
3284
3285 switch (token->type)
3286 {
3287 case CPP_NAME:
3288 return cp_parser_identifier (parser);
3289
3290 case CPP_KEYWORD:
3291 if (token->keyword == RID_OPERATOR)
3292 return cp_parser_operator_function_id (parser);
3293 /* Fall through. */
3294
3295 default:
3296 cp_parser_error (parser, "expected id-expression");
3297 return error_mark_node;
3298 }
3299 }
3300 else
3301 return cp_parser_unqualified_id (parser, template_keyword_p,
3302 /*check_dependency_p=*/true,
3303 declarator_p,
3304 optional_p);
3305 }
3306
3307 /* Parse an unqualified-id.
3308
3309 unqualified-id:
3310 identifier
3311 operator-function-id
3312 conversion-function-id
3313 ~ class-name
3314 template-id
3315
3316 If TEMPLATE_KEYWORD_P is TRUE, we have just seen the `template'
3317 keyword, in a construct like `A::template ...'.
3318
3319 Returns a representation of unqualified-id. For the `identifier'
3320 production, an IDENTIFIER_NODE is returned. For the `~ class-name'
3321 production a BIT_NOT_EXPR is returned; the operand of the
3322 BIT_NOT_EXPR is an IDENTIFIER_NODE for the class-name. For the
3323 other productions, see the documentation accompanying the
3324 corresponding parsing functions. If CHECK_DEPENDENCY_P is false,
3325 names are looked up in uninstantiated templates. If DECLARATOR_P
3326 is true, the unqualified-id is appearing as part of a declarator,
3327 rather than as part of an expression. */
3328
3329 static tree
3330 cp_parser_unqualified_id (cp_parser* parser,
3331 bool template_keyword_p,
3332 bool check_dependency_p,
3333 bool declarator_p,
3334 bool optional_p)
3335 {
3336 cp_token *token;
3337
3338 /* Peek at the next token. */
3339 token = cp_lexer_peek_token (parser->lexer);
3340
3341 switch (token->type)
3342 {
3343 case CPP_NAME:
3344 {
3345 tree id;
3346
3347 /* We don't know yet whether or not this will be a
3348 template-id. */
3349 cp_parser_parse_tentatively (parser);
3350 /* Try a template-id. */
3351 id = cp_parser_template_id (parser, template_keyword_p,
3352 check_dependency_p,
3353 declarator_p);
3354 /* If it worked, we're done. */
3355 if (cp_parser_parse_definitely (parser))
3356 return id;
3357 /* Otherwise, it's an ordinary identifier. */
3358 return cp_parser_identifier (parser);
3359 }
3360
3361 case CPP_TEMPLATE_ID:
3362 return cp_parser_template_id (parser, template_keyword_p,
3363 check_dependency_p,
3364 declarator_p);
3365
3366 case CPP_COMPL:
3367 {
3368 tree type_decl;
3369 tree qualifying_scope;
3370 tree object_scope;
3371 tree scope;
3372 bool done;
3373
3374 /* Consume the `~' token. */
3375 cp_lexer_consume_token (parser->lexer);
3376 /* Parse the class-name. The standard, as written, seems to
3377 say that:
3378
3379 template <typename T> struct S { ~S (); };
3380 template <typename T> S<T>::~S() {}
3381
3382 is invalid, since `~' must be followed by a class-name, but
3383 `S<T>' is dependent, and so not known to be a class.
3384 That's not right; we need to look in uninstantiated
3385 templates. A further complication arises from:
3386
3387 template <typename T> void f(T t) {
3388 t.T::~T();
3389 }
3390
3391 Here, it is not possible to look up `T' in the scope of `T'
3392 itself. We must look in both the current scope, and the
3393 scope of the containing complete expression.
3394
3395 Yet another issue is:
3396
3397 struct S {
3398 int S;
3399 ~S();
3400 };
3401
3402 S::~S() {}
3403
3404 The standard does not seem to say that the `S' in `~S'
3405 should refer to the type `S' and not the data member
3406 `S::S'. */
3407
3408 /* DR 244 says that we look up the name after the "~" in the
3409 same scope as we looked up the qualifying name. That idea
3410 isn't fully worked out; it's more complicated than that. */
3411 scope = parser->scope;
3412 object_scope = parser->object_scope;
3413 qualifying_scope = parser->qualifying_scope;
3414
3415 /* Check for invalid scopes. */
3416 if (scope == error_mark_node)
3417 {
3418 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
3419 cp_lexer_consume_token (parser->lexer);
3420 return error_mark_node;
3421 }
3422 if (scope && TREE_CODE (scope) == NAMESPACE_DECL)
3423 {
3424 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
3425 error ("scope %qT before %<~%> is not a class-name", scope);
3426 cp_parser_simulate_error (parser);
3427 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
3428 cp_lexer_consume_token (parser->lexer);
3429 return error_mark_node;
3430 }
3431 gcc_assert (!scope || TYPE_P (scope));
3432
3433 /* If the name is of the form "X::~X" it's OK. */
3434 token = cp_lexer_peek_token (parser->lexer);
3435 if (scope
3436 && token->type == CPP_NAME
3437 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
3438 == CPP_OPEN_PAREN)
3439 && constructor_name_p (token->value, scope))
3440 {
3441 cp_lexer_consume_token (parser->lexer);
3442 return build_nt (BIT_NOT_EXPR, scope);
3443 }
3444
3445 /* If there was an explicit qualification (S::~T), first look
3446 in the scope given by the qualification (i.e., S). */
3447 done = false;
3448 type_decl = NULL_TREE;
3449 if (scope)
3450 {
3451 cp_parser_parse_tentatively (parser);
3452 type_decl = cp_parser_class_name (parser,
3453 /*typename_keyword_p=*/false,
3454 /*template_keyword_p=*/false,
3455 none_type,
3456 /*check_dependency=*/false,
3457 /*class_head_p=*/false,
3458 declarator_p);
3459 if (cp_parser_parse_definitely (parser))
3460 done = true;
3461 }
3462 /* In "N::S::~S", look in "N" as well. */
3463 if (!done && scope && qualifying_scope)
3464 {
3465 cp_parser_parse_tentatively (parser);
3466 parser->scope = qualifying_scope;
3467 parser->object_scope = NULL_TREE;
3468 parser->qualifying_scope = NULL_TREE;
3469 type_decl
3470 = cp_parser_class_name (parser,
3471 /*typename_keyword_p=*/false,
3472 /*template_keyword_p=*/false,
3473 none_type,
3474 /*check_dependency=*/false,
3475 /*class_head_p=*/false,
3476 declarator_p);
3477 if (cp_parser_parse_definitely (parser))
3478 done = true;
3479 }
3480 /* In "p->S::~T", look in the scope given by "*p" as well. */
3481 else if (!done && object_scope)
3482 {
3483 cp_parser_parse_tentatively (parser);
3484 parser->scope = object_scope;
3485 parser->object_scope = NULL_TREE;
3486 parser->qualifying_scope = NULL_TREE;
3487 type_decl
3488 = cp_parser_class_name (parser,
3489 /*typename_keyword_p=*/false,
3490 /*template_keyword_p=*/false,
3491 none_type,
3492 /*check_dependency=*/false,
3493 /*class_head_p=*/false,
3494 declarator_p);
3495 if (cp_parser_parse_definitely (parser))
3496 done = true;
3497 }
3498 /* Look in the surrounding context. */
3499 if (!done)
3500 {
3501 parser->scope = NULL_TREE;
3502 parser->object_scope = NULL_TREE;
3503 parser->qualifying_scope = NULL_TREE;
3504 type_decl
3505 = cp_parser_class_name (parser,
3506 /*typename_keyword_p=*/false,
3507 /*template_keyword_p=*/false,
3508 none_type,
3509 /*check_dependency=*/false,
3510 /*class_head_p=*/false,
3511 declarator_p);
3512 }
3513 /* If an error occurred, assume that the name of the
3514 destructor is the same as the name of the qualifying
3515 class. That allows us to keep parsing after running
3516 into ill-formed destructor names. */
3517 if (type_decl == error_mark_node && scope)
3518 return build_nt (BIT_NOT_EXPR, scope);
3519 else if (type_decl == error_mark_node)
3520 return error_mark_node;
3521
3522 /* Check that destructor name and scope match. */
3523 if (declarator_p && scope && !check_dtor_name (scope, type_decl))
3524 {
3525 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
3526 error ("declaration of %<~%T%> as member of %qT",
3527 type_decl, scope);
3528 cp_parser_simulate_error (parser);
3529 return error_mark_node;
3530 }
3531
3532 /* [class.dtor]
3533
3534 A typedef-name that names a class shall not be used as the
3535 identifier in the declarator for a destructor declaration. */
3536 if (declarator_p
3537 && !DECL_IMPLICIT_TYPEDEF_P (type_decl)
3538 && !DECL_SELF_REFERENCE_P (type_decl)
3539 && !cp_parser_uncommitted_to_tentative_parse_p (parser))
3540 error ("typedef-name %qD used as destructor declarator",
3541 type_decl);
3542
3543 return build_nt (BIT_NOT_EXPR, TREE_TYPE (type_decl));
3544 }
3545
3546 case CPP_KEYWORD:
3547 if (token->keyword == RID_OPERATOR)
3548 {
3549 tree id;
3550
3551 /* This could be a template-id, so we try that first. */
3552 cp_parser_parse_tentatively (parser);
3553 /* Try a template-id. */
3554 id = cp_parser_template_id (parser, template_keyword_p,
3555 /*check_dependency_p=*/true,
3556 declarator_p);
3557 /* If that worked, we're done. */
3558 if (cp_parser_parse_definitely (parser))
3559 return id;
3560 /* We still don't know whether we're looking at an
3561 operator-function-id or a conversion-function-id. */
3562 cp_parser_parse_tentatively (parser);
3563 /* Try an operator-function-id. */
3564 id = cp_parser_operator_function_id (parser);
3565 /* If that didn't work, try a conversion-function-id. */
3566 if (!cp_parser_parse_definitely (parser))
3567 id = cp_parser_conversion_function_id (parser);
3568
3569 return id;
3570 }
3571 /* Fall through. */
3572
3573 default:
3574 if (optional_p)
3575 return NULL_TREE;
3576 cp_parser_error (parser, "expected unqualified-id");
3577 return error_mark_node;
3578 }
3579 }
3580
3581 /* Parse an (optional) nested-name-specifier.
3582
3583 nested-name-specifier:
3584 class-or-namespace-name :: nested-name-specifier [opt]
3585 class-or-namespace-name :: template nested-name-specifier [opt]
3586
3587 PARSER->SCOPE should be set appropriately before this function is
3588 called. TYPENAME_KEYWORD_P is TRUE if the `typename' keyword is in
3589 effect. TYPE_P is TRUE if we non-type bindings should be ignored
3590 in name lookups.
3591
3592 Sets PARSER->SCOPE to the class (TYPE) or namespace
3593 (NAMESPACE_DECL) specified by the nested-name-specifier, or leaves
3594 it unchanged if there is no nested-name-specifier. Returns the new
3595 scope iff there is a nested-name-specifier, or NULL_TREE otherwise.
3596
3597 If IS_DECLARATION is TRUE, the nested-name-specifier is known to be
3598 part of a declaration and/or decl-specifier. */
3599
3600 static tree
3601 cp_parser_nested_name_specifier_opt (cp_parser *parser,
3602 bool typename_keyword_p,
3603 bool check_dependency_p,
3604 bool type_p,
3605 bool is_declaration)
3606 {
3607 bool success = false;
3608 cp_token_position start = 0;
3609 cp_token *token;
3610
3611 /* Remember where the nested-name-specifier starts. */
3612 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
3613 {
3614 start = cp_lexer_token_position (parser->lexer, false);
3615 push_deferring_access_checks (dk_deferred);
3616 }
3617
3618 while (true)
3619 {
3620 tree new_scope;
3621 tree old_scope;
3622 tree saved_qualifying_scope;
3623 bool template_keyword_p;
3624
3625 /* Spot cases that cannot be the beginning of a
3626 nested-name-specifier. */
3627 token = cp_lexer_peek_token (parser->lexer);
3628
3629 /* If the next token is CPP_NESTED_NAME_SPECIFIER, just process
3630 the already parsed nested-name-specifier. */
3631 if (token->type == CPP_NESTED_NAME_SPECIFIER)
3632 {
3633 /* Grab the nested-name-specifier and continue the loop. */
3634 cp_parser_pre_parsed_nested_name_specifier (parser);
3635 /* If we originally encountered this nested-name-specifier
3636 with IS_DECLARATION set to false, we will not have
3637 resolved TYPENAME_TYPEs, so we must do so here. */
3638 if (is_declaration
3639 && TREE_CODE (parser->scope) == TYPENAME_TYPE)
3640 {
3641 new_scope = resolve_typename_type (parser->scope,
3642 /*only_current_p=*/false);
3643 if (new_scope != error_mark_node)
3644 parser->scope = new_scope;
3645 }
3646 success = true;
3647 continue;
3648 }
3649
3650 /* Spot cases that cannot be the beginning of a
3651 nested-name-specifier. On the second and subsequent times
3652 through the loop, we look for the `template' keyword. */
3653 if (success && token->keyword == RID_TEMPLATE)
3654 ;
3655 /* A template-id can start a nested-name-specifier. */
3656 else if (token->type == CPP_TEMPLATE_ID)
3657 ;
3658 else
3659 {
3660 /* If the next token is not an identifier, then it is
3661 definitely not a class-or-namespace-name. */
3662 if (token->type != CPP_NAME)
3663 break;
3664 /* If the following token is neither a `<' (to begin a
3665 template-id), nor a `::', then we are not looking at a
3666 nested-name-specifier. */
3667 token = cp_lexer_peek_nth_token (parser->lexer, 2);
3668 if (token->type != CPP_SCOPE
3669 && !cp_parser_nth_token_starts_template_argument_list_p
3670 (parser, 2))
3671 break;
3672 }
3673
3674 /* The nested-name-specifier is optional, so we parse
3675 tentatively. */
3676 cp_parser_parse_tentatively (parser);
3677
3678 /* Look for the optional `template' keyword, if this isn't the
3679 first time through the loop. */
3680 if (success)
3681 template_keyword_p = cp_parser_optional_template_keyword (parser);
3682 else
3683 template_keyword_p = false;
3684
3685 /* Save the old scope since the name lookup we are about to do
3686 might destroy it. */
3687 old_scope = parser->scope;
3688 saved_qualifying_scope = parser->qualifying_scope;
3689 /* In a declarator-id like "X<T>::I::Y<T>" we must be able to
3690 look up names in "X<T>::I" in order to determine that "Y" is
3691 a template. So, if we have a typename at this point, we make
3692 an effort to look through it. */
3693 if (is_declaration
3694 && !typename_keyword_p
3695 && parser->scope
3696 && TREE_CODE (parser->scope) == TYPENAME_TYPE)
3697 parser->scope = resolve_typename_type (parser->scope,
3698 /*only_current_p=*/false);
3699 /* Parse the qualifying entity. */
3700 new_scope
3701 = cp_parser_class_or_namespace_name (parser,
3702 typename_keyword_p,
3703 template_keyword_p,
3704 check_dependency_p,
3705 type_p,
3706 is_declaration);
3707 /* Look for the `::' token. */
3708 cp_parser_require (parser, CPP_SCOPE, "`::'");
3709
3710 /* If we found what we wanted, we keep going; otherwise, we're
3711 done. */
3712 if (!cp_parser_parse_definitely (parser))
3713 {
3714 bool error_p = false;
3715
3716 /* Restore the OLD_SCOPE since it was valid before the
3717 failed attempt at finding the last
3718 class-or-namespace-name. */
3719 parser->scope = old_scope;
3720 parser->qualifying_scope = saved_qualifying_scope;
3721 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
3722 break;
3723 /* If the next token is an identifier, and the one after
3724 that is a `::', then any valid interpretation would have
3725 found a class-or-namespace-name. */
3726 while (cp_lexer_next_token_is (parser->lexer, CPP_NAME)
3727 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
3728 == CPP_SCOPE)
3729 && (cp_lexer_peek_nth_token (parser->lexer, 3)->type
3730 != CPP_COMPL))
3731 {
3732 token = cp_lexer_consume_token (parser->lexer);
3733 if (!error_p)
3734 {
3735 if (!token->ambiguous_p)
3736 {
3737 tree decl;
3738 tree ambiguous_decls;
3739
3740 decl = cp_parser_lookup_name (parser, token->value,
3741 none_type,
3742 /*is_template=*/false,
3743 /*is_namespace=*/false,
3744 /*check_dependency=*/true,
3745 &ambiguous_decls);
3746 if (TREE_CODE (decl) == TEMPLATE_DECL)
3747 error ("%qD used without template parameters", decl);
3748 else if (ambiguous_decls)
3749 {
3750 error ("reference to %qD is ambiguous",
3751 token->value);
3752 print_candidates (ambiguous_decls);
3753 decl = error_mark_node;
3754 }
3755 else
3756 cp_parser_name_lookup_error
3757 (parser, token->value, decl,
3758 "is not a class or namespace");
3759 }
3760 parser->scope = error_mark_node;
3761 error_p = true;
3762 /* Treat this as a successful nested-name-specifier
3763 due to:
3764
3765 [basic.lookup.qual]
3766
3767 If the name found is not a class-name (clause
3768 _class_) or namespace-name (_namespace.def_), the
3769 program is ill-formed. */
3770 success = true;
3771 }
3772 cp_lexer_consume_token (parser->lexer);
3773 }
3774 break;
3775 }
3776 /* We've found one valid nested-name-specifier. */
3777 success = true;
3778 /* Name lookup always gives us a DECL. */
3779 if (TREE_CODE (new_scope) == TYPE_DECL)
3780 new_scope = TREE_TYPE (new_scope);
3781 /* Uses of "template" must be followed by actual templates. */
3782 if (template_keyword_p
3783 && !(CLASS_TYPE_P (new_scope)
3784 && ((CLASSTYPE_USE_TEMPLATE (new_scope)
3785 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (new_scope)))
3786 || CLASSTYPE_IS_TEMPLATE (new_scope)))
3787 && !(TREE_CODE (new_scope) == TYPENAME_TYPE
3788 && (TREE_CODE (TYPENAME_TYPE_FULLNAME (new_scope))
3789 == TEMPLATE_ID_EXPR)))
3790 pedwarn (TYPE_P (new_scope)
3791 ? "%qT is not a template"
3792 : "%qD is not a template",
3793 new_scope);
3794 /* If it is a class scope, try to complete it; we are about to
3795 be looking up names inside the class. */
3796 if (TYPE_P (new_scope)
3797 /* Since checking types for dependency can be expensive,
3798 avoid doing it if the type is already complete. */
3799 && !COMPLETE_TYPE_P (new_scope)
3800 /* Do not try to complete dependent types. */
3801 && !dependent_type_p (new_scope))
3802 new_scope = complete_type (new_scope);
3803 /* Make sure we look in the right scope the next time through
3804 the loop. */
3805 parser->scope = new_scope;
3806 }
3807
3808 /* If parsing tentatively, replace the sequence of tokens that makes
3809 up the nested-name-specifier with a CPP_NESTED_NAME_SPECIFIER
3810 token. That way, should we re-parse the token stream, we will
3811 not have to repeat the effort required to do the parse, nor will
3812 we issue duplicate error messages. */
3813 if (success && start)
3814 {
3815 cp_token *token;
3816 tree access_checks;
3817
3818 token = cp_lexer_token_at (parser->lexer, start);
3819 /* Reset the contents of the START token. */
3820 token->type = CPP_NESTED_NAME_SPECIFIER;
3821 /* Retrieve any deferred checks. Do not pop this access checks yet
3822 so the memory will not be reclaimed during token replacing below. */
3823 access_checks = get_deferred_access_checks ();
3824 token->value = build_tree_list (copy_list (access_checks),
3825 parser->scope);
3826 TREE_TYPE (token->value) = parser->qualifying_scope;
3827 token->keyword = RID_MAX;
3828
3829 /* Purge all subsequent tokens. */
3830 cp_lexer_purge_tokens_after (parser->lexer, start);
3831 }
3832
3833 if (start)
3834 pop_to_parent_deferring_access_checks ();
3835
3836 return success ? parser->scope : NULL_TREE;
3837 }
3838
3839 /* Parse a nested-name-specifier. See
3840 cp_parser_nested_name_specifier_opt for details. This function
3841 behaves identically, except that it will an issue an error if no
3842 nested-name-specifier is present. */
3843
3844 static tree
3845 cp_parser_nested_name_specifier (cp_parser *parser,
3846 bool typename_keyword_p,
3847 bool check_dependency_p,
3848 bool type_p,
3849 bool is_declaration)
3850 {
3851 tree scope;
3852
3853 /* Look for the nested-name-specifier. */
3854 scope = cp_parser_nested_name_specifier_opt (parser,
3855 typename_keyword_p,
3856 check_dependency_p,
3857 type_p,
3858 is_declaration);
3859 /* If it was not present, issue an error message. */
3860 if (!scope)
3861 {
3862 cp_parser_error (parser, "expected nested-name-specifier");
3863 parser->scope = NULL_TREE;
3864 }
3865
3866 return scope;
3867 }
3868
3869 /* Parse a class-or-namespace-name.
3870
3871 class-or-namespace-name:
3872 class-name
3873 namespace-name
3874
3875 TYPENAME_KEYWORD_P is TRUE iff the `typename' keyword is in effect.
3876 TEMPLATE_KEYWORD_P is TRUE iff the `template' keyword is in effect.
3877 CHECK_DEPENDENCY_P is FALSE iff dependent names should be looked up.
3878 TYPE_P is TRUE iff the next name should be taken as a class-name,
3879 even the same name is declared to be another entity in the same
3880 scope.
3881
3882 Returns the class (TYPE_DECL) or namespace (NAMESPACE_DECL)
3883 specified by the class-or-namespace-name. If neither is found the
3884 ERROR_MARK_NODE is returned. */
3885
3886 static tree
3887 cp_parser_class_or_namespace_name (cp_parser *parser,
3888 bool typename_keyword_p,
3889 bool template_keyword_p,
3890 bool check_dependency_p,
3891 bool type_p,
3892 bool is_declaration)
3893 {
3894 tree saved_scope;
3895 tree saved_qualifying_scope;
3896 tree saved_object_scope;
3897 tree scope;
3898 bool only_class_p;
3899
3900 /* Before we try to parse the class-name, we must save away the
3901 current PARSER->SCOPE since cp_parser_class_name will destroy
3902 it. */
3903 saved_scope = parser->scope;
3904 saved_qualifying_scope = parser->qualifying_scope;
3905 saved_object_scope = parser->object_scope;
3906 /* Try for a class-name first. If the SAVED_SCOPE is a type, then
3907 there is no need to look for a namespace-name. */
3908 only_class_p = template_keyword_p || (saved_scope && TYPE_P (saved_scope));
3909 if (!only_class_p)
3910 cp_parser_parse_tentatively (parser);
3911 scope = cp_parser_class_name (parser,
3912 typename_keyword_p,
3913 template_keyword_p,
3914 type_p ? class_type : none_type,
3915 check_dependency_p,
3916 /*class_head_p=*/false,
3917 is_declaration);
3918 /* If that didn't work, try for a namespace-name. */
3919 if (!only_class_p && !cp_parser_parse_definitely (parser))
3920 {
3921 /* Restore the saved scope. */
3922 parser->scope = saved_scope;
3923 parser->qualifying_scope = saved_qualifying_scope;
3924 parser->object_scope = saved_object_scope;
3925 /* If we are not looking at an identifier followed by the scope
3926 resolution operator, then this is not part of a
3927 nested-name-specifier. (Note that this function is only used
3928 to parse the components of a nested-name-specifier.) */
3929 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NAME)
3930 || cp_lexer_peek_nth_token (parser->lexer, 2)->type != CPP_SCOPE)
3931 return error_mark_node;
3932 scope = cp_parser_namespace_name (parser);
3933 }
3934
3935 return scope;
3936 }
3937
3938 /* Parse a postfix-expression.
3939
3940 postfix-expression:
3941 primary-expression
3942 postfix-expression [ expression ]
3943 postfix-expression ( expression-list [opt] )
3944 simple-type-specifier ( expression-list [opt] )
3945 typename :: [opt] nested-name-specifier identifier
3946 ( expression-list [opt] )
3947 typename :: [opt] nested-name-specifier template [opt] template-id
3948 ( expression-list [opt] )
3949 postfix-expression . template [opt] id-expression
3950 postfix-expression -> template [opt] id-expression
3951 postfix-expression . pseudo-destructor-name
3952 postfix-expression -> pseudo-destructor-name
3953 postfix-expression ++
3954 postfix-expression --
3955 dynamic_cast < type-id > ( expression )
3956 static_cast < type-id > ( expression )
3957 reinterpret_cast < type-id > ( expression )
3958 const_cast < type-id > ( expression )
3959 typeid ( expression )
3960 typeid ( type-id )
3961
3962 GNU Extension:
3963
3964 postfix-expression:
3965 ( type-id ) { initializer-list , [opt] }
3966
3967 This extension is a GNU version of the C99 compound-literal
3968 construct. (The C99 grammar uses `type-name' instead of `type-id',
3969 but they are essentially the same concept.)
3970
3971 If ADDRESS_P is true, the postfix expression is the operand of the
3972 `&' operator. CAST_P is true if this expression is the target of a
3973 cast.
3974
3975 Returns a representation of the expression. */
3976
3977 static tree
3978 cp_parser_postfix_expression (cp_parser *parser, bool address_p, bool cast_p)
3979 {
3980 cp_token *token;
3981 enum rid keyword;
3982 cp_id_kind idk = CP_ID_KIND_NONE;
3983 tree postfix_expression = NULL_TREE;
3984
3985 /* Peek at the next token. */
3986 token = cp_lexer_peek_token (parser->lexer);
3987 /* Some of the productions are determined by keywords. */
3988 keyword = token->keyword;
3989 switch (keyword)
3990 {
3991 case RID_DYNCAST:
3992 case RID_STATCAST:
3993 case RID_REINTCAST:
3994 case RID_CONSTCAST:
3995 {
3996 tree type;
3997 tree expression;
3998 const char *saved_message;
3999
4000 /* All of these can be handled in the same way from the point
4001 of view of parsing. Begin by consuming the token
4002 identifying the cast. */
4003 cp_lexer_consume_token (parser->lexer);
4004
4005 /* New types cannot be defined in the cast. */
4006 saved_message = parser->type_definition_forbidden_message;
4007 parser->type_definition_forbidden_message
4008 = "types may not be defined in casts";
4009
4010 /* Look for the opening `<'. */
4011 cp_parser_require (parser, CPP_LESS, "`<'");
4012 /* Parse the type to which we are casting. */
4013 type = cp_parser_type_id (parser);
4014 /* Look for the closing `>'. */
4015 cp_parser_require (parser, CPP_GREATER, "`>'");
4016 /* Restore the old message. */
4017 parser->type_definition_forbidden_message = saved_message;
4018
4019 /* And the expression which is being cast. */
4020 cp_parser_require (parser, CPP_OPEN_PAREN, "`('");
4021 expression = cp_parser_expression (parser, /*cast_p=*/true);
4022 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
4023
4024 /* Only type conversions to integral or enumeration types
4025 can be used in constant-expressions. */
4026 if (!cast_valid_in_integral_constant_expression_p (type)
4027 && (cp_parser_non_integral_constant_expression
4028 (parser,
4029 "a cast to a type other than an integral or "
4030 "enumeration type")))
4031 return error_mark_node;
4032
4033 switch (keyword)
4034 {
4035 case RID_DYNCAST:
4036 postfix_expression
4037 = build_dynamic_cast (type, expression);
4038 break;
4039 case RID_STATCAST:
4040 postfix_expression
4041 = build_static_cast (type, expression);
4042 break;
4043 case RID_REINTCAST:
4044 postfix_expression
4045 = build_reinterpret_cast (type, expression);
4046 break;
4047 case RID_CONSTCAST:
4048 postfix_expression
4049 = build_const_cast (type, expression);
4050 break;
4051 default:
4052 gcc_unreachable ();
4053 }
4054 }
4055 break;
4056
4057 case RID_TYPEID:
4058 {
4059 tree type;
4060 const char *saved_message;
4061 bool saved_in_type_id_in_expr_p;
4062
4063 /* Consume the `typeid' token. */
4064 cp_lexer_consume_token (parser->lexer);
4065 /* Look for the `(' token. */
4066 cp_parser_require (parser, CPP_OPEN_PAREN, "`('");
4067 /* Types cannot be defined in a `typeid' expression. */
4068 saved_message = parser->type_definition_forbidden_message;
4069 parser->type_definition_forbidden_message
4070 = "types may not be defined in a `typeid\' expression";
4071 /* We can't be sure yet whether we're looking at a type-id or an
4072 expression. */
4073 cp_parser_parse_tentatively (parser);
4074 /* Try a type-id first. */
4075 saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
4076 parser->in_type_id_in_expr_p = true;
4077 type = cp_parser_type_id (parser);
4078 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
4079 /* Look for the `)' token. Otherwise, we can't be sure that
4080 we're not looking at an expression: consider `typeid (int
4081 (3))', for example. */
4082 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
4083 /* If all went well, simply lookup the type-id. */
4084 if (cp_parser_parse_definitely (parser))
4085 postfix_expression = get_typeid (type);
4086 /* Otherwise, fall back to the expression variant. */
4087 else
4088 {
4089 tree expression;
4090
4091 /* Look for an expression. */
4092 expression = cp_parser_expression (parser, /*cast_p=*/false);
4093 /* Compute its typeid. */
4094 postfix_expression = build_typeid (expression);
4095 /* Look for the `)' token. */
4096 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
4097 }
4098 /* Restore the saved message. */
4099 parser->type_definition_forbidden_message = saved_message;
4100 /* `typeid' may not appear in an integral constant expression. */
4101 if (cp_parser_non_integral_constant_expression(parser,
4102 "`typeid' operator"))
4103 return error_mark_node;
4104 }
4105 break;
4106
4107 case RID_TYPENAME:
4108 {
4109 tree type;
4110 /* The syntax permitted here is the same permitted for an
4111 elaborated-type-specifier. */
4112 type = cp_parser_elaborated_type_specifier (parser,
4113 /*is_friend=*/false,
4114 /*is_declaration=*/false);
4115 postfix_expression = cp_parser_functional_cast (parser, type);
4116 }
4117 break;
4118
4119 default:
4120 {
4121 tree type;
4122
4123 /* If the next thing is a simple-type-specifier, we may be
4124 looking at a functional cast. We could also be looking at
4125 an id-expression. So, we try the functional cast, and if
4126 that doesn't work we fall back to the primary-expression. */
4127 cp_parser_parse_tentatively (parser);
4128 /* Look for the simple-type-specifier. */
4129 type = cp_parser_simple_type_specifier (parser,
4130 /*decl_specs=*/NULL,
4131 CP_PARSER_FLAGS_NONE);
4132 /* Parse the cast itself. */
4133 if (!cp_parser_error_occurred (parser))
4134 postfix_expression
4135 = cp_parser_functional_cast (parser, type);
4136 /* If that worked, we're done. */
4137 if (cp_parser_parse_definitely (parser))
4138 break;
4139
4140 /* If the functional-cast didn't work out, try a
4141 compound-literal. */
4142 if (cp_parser_allow_gnu_extensions_p (parser)
4143 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
4144 {
4145 VEC(constructor_elt,gc) *initializer_list = NULL;
4146 bool saved_in_type_id_in_expr_p;
4147
4148 cp_parser_parse_tentatively (parser);
4149 /* Consume the `('. */
4150 cp_lexer_consume_token (parser->lexer);
4151 /* Parse the type. */
4152 saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
4153 parser->in_type_id_in_expr_p = true;
4154 type = cp_parser_type_id (parser);
4155 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
4156 /* Look for the `)'. */
4157 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
4158 /* Look for the `{'. */
4159 cp_parser_require (parser, CPP_OPEN_BRACE, "`{'");
4160 /* If things aren't going well, there's no need to
4161 keep going. */
4162 if (!cp_parser_error_occurred (parser))
4163 {
4164 bool non_constant_p;
4165 /* Parse the initializer-list. */
4166 initializer_list
4167 = cp_parser_initializer_list (parser, &non_constant_p);
4168 /* Allow a trailing `,'. */
4169 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
4170 cp_lexer_consume_token (parser->lexer);
4171 /* Look for the final `}'. */
4172 cp_parser_require (parser, CPP_CLOSE_BRACE, "`}'");
4173 }
4174 /* If that worked, we're definitely looking at a
4175 compound-literal expression. */
4176 if (cp_parser_parse_definitely (parser))
4177 {
4178 /* Warn the user that a compound literal is not
4179 allowed in standard C++. */
4180 if (pedantic)
4181 pedwarn ("ISO C++ forbids compound-literals");
4182 /* Form the representation of the compound-literal. */
4183 postfix_expression
4184 = finish_compound_literal (type, initializer_list);
4185 break;
4186 }
4187 }
4188
4189 /* It must be a primary-expression. */
4190 postfix_expression
4191 = cp_parser_primary_expression (parser, address_p, cast_p,
4192 /*template_arg_p=*/false,
4193 &idk);
4194 }
4195 break;
4196 }
4197
4198 /* Keep looping until the postfix-expression is complete. */
4199 while (true)
4200 {
4201 if (idk == CP_ID_KIND_UNQUALIFIED
4202 && TREE_CODE (postfix_expression) == IDENTIFIER_NODE
4203 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_PAREN))
4204 /* It is not a Koenig lookup function call. */
4205 postfix_expression
4206 = unqualified_name_lookup_error (postfix_expression);
4207
4208 /* Peek at the next token. */
4209 token = cp_lexer_peek_token (parser->lexer);
4210
4211 switch (token->type)
4212 {
4213 case CPP_OPEN_SQUARE:
4214 postfix_expression
4215 = cp_parser_postfix_open_square_expression (parser,
4216 postfix_expression,
4217 false);
4218 idk = CP_ID_KIND_NONE;
4219 break;
4220
4221 case CPP_OPEN_PAREN:
4222 /* postfix-expression ( expression-list [opt] ) */
4223 {
4224 bool koenig_p;
4225 bool is_builtin_constant_p;
4226 bool saved_integral_constant_expression_p = false;
4227 bool saved_non_integral_constant_expression_p = false;
4228 tree args;
4229
4230 is_builtin_constant_p
4231 = DECL_IS_BUILTIN_CONSTANT_P (postfix_expression);
4232 if (is_builtin_constant_p)
4233 {
4234 /* The whole point of __builtin_constant_p is to allow
4235 non-constant expressions to appear as arguments. */
4236 saved_integral_constant_expression_p
4237 = parser->integral_constant_expression_p;
4238 saved_non_integral_constant_expression_p
4239 = parser->non_integral_constant_expression_p;
4240 parser->integral_constant_expression_p = false;
4241 }
4242 args = (cp_parser_parenthesized_expression_list
4243 (parser, /*is_attribute_list=*/false,
4244 /*cast_p=*/false,
4245 /*non_constant_p=*/NULL));
4246 if (is_builtin_constant_p)
4247 {
4248 parser->integral_constant_expression_p
4249 = saved_integral_constant_expression_p;
4250 parser->non_integral_constant_expression_p
4251 = saved_non_integral_constant_expression_p;
4252 }
4253
4254 if (args == error_mark_node)
4255 {
4256 postfix_expression = error_mark_node;
4257 break;
4258 }
4259
4260 /* Function calls are not permitted in
4261 constant-expressions. */
4262 if (! builtin_valid_in_constant_expr_p (postfix_expression)
4263 && cp_parser_non_integral_constant_expression (parser,
4264 "a function call"))
4265 {
4266 postfix_expression = error_mark_node;
4267 break;
4268 }
4269
4270 koenig_p = false;
4271 if (idk == CP_ID_KIND_UNQUALIFIED)
4272 {
4273 if (TREE_CODE (postfix_expression) == IDENTIFIER_NODE)
4274 {
4275 if (args)
4276 {
4277 koenig_p = true;
4278 postfix_expression
4279 = perform_koenig_lookup (postfix_expression, args);
4280 }
4281 else
4282 postfix_expression
4283 = unqualified_fn_lookup_error (postfix_expression);
4284 }
4285 /* We do not perform argument-dependent lookup if
4286 normal lookup finds a non-function, in accordance
4287 with the expected resolution of DR 218. */
4288 else if (args && is_overloaded_fn (postfix_expression))
4289 {
4290 tree fn = get_first_fn (postfix_expression);
4291
4292 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
4293 fn = OVL_CURRENT (TREE_OPERAND (fn, 0));
4294
4295 /* Only do argument dependent lookup if regular
4296 lookup does not find a set of member functions.
4297 [basic.lookup.koenig]/2a */
4298 if (!DECL_FUNCTION_MEMBER_P (fn))
4299 {
4300 koenig_p = true;
4301 postfix_expression
4302 = perform_koenig_lookup (postfix_expression, args);
4303 }
4304 }
4305 }
4306
4307 if (TREE_CODE (postfix_expression) == COMPONENT_REF)
4308 {
4309 tree instance = TREE_OPERAND (postfix_expression, 0);
4310 tree fn = TREE_OPERAND (postfix_expression, 1);
4311
4312 if (processing_template_decl
4313 && (type_dependent_expression_p (instance)
4314 || (!BASELINK_P (fn)
4315 && TREE_CODE (fn) != FIELD_DECL)
4316 || type_dependent_expression_p (fn)
4317 || any_type_dependent_arguments_p (args)))
4318 {
4319 postfix_expression
4320 = build_min_nt (CALL_EXPR, postfix_expression,
4321 args, NULL_TREE);
4322 break;
4323 }
4324
4325 if (BASELINK_P (fn))
4326 postfix_expression
4327 = (build_new_method_call
4328 (instance, fn, args, NULL_TREE,
4329 (idk == CP_ID_KIND_QUALIFIED
4330 ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL),
4331 /*fn_p=*/NULL));
4332 else
4333 postfix_expression
4334 = finish_call_expr (postfix_expression, args,
4335 /*disallow_virtual=*/false,
4336 /*koenig_p=*/false);
4337 }
4338 else if (TREE_CODE (postfix_expression) == OFFSET_REF
4339 || TREE_CODE (postfix_expression) == MEMBER_REF
4340 || TREE_CODE (postfix_expression) == DOTSTAR_EXPR)
4341 postfix_expression = (build_offset_ref_call_from_tree
4342 (postfix_expression, args));
4343 else if (idk == CP_ID_KIND_QUALIFIED)
4344 /* A call to a static class member, or a namespace-scope
4345 function. */
4346 postfix_expression
4347 = finish_call_expr (postfix_expression, args,
4348 /*disallow_virtual=*/true,
4349 koenig_p);
4350 else
4351 /* All other function calls. */
4352 postfix_expression
4353 = finish_call_expr (postfix_expression, args,
4354 /*disallow_virtual=*/false,
4355 koenig_p);
4356
4357 /* The POSTFIX_EXPRESSION is certainly no longer an id. */
4358 idk = CP_ID_KIND_NONE;
4359 }
4360 break;
4361
4362 case CPP_DOT:
4363 case CPP_DEREF:
4364 /* postfix-expression . template [opt] id-expression
4365 postfix-expression . pseudo-destructor-name
4366 postfix-expression -> template [opt] id-expression
4367 postfix-expression -> pseudo-destructor-name */
4368
4369 /* Consume the `.' or `->' operator. */
4370 cp_lexer_consume_token (parser->lexer);
4371
4372 postfix_expression
4373 = cp_parser_postfix_dot_deref_expression (parser, token->type,
4374 postfix_expression,
4375 false, &idk);
4376 break;
4377
4378 case CPP_PLUS_PLUS:
4379 /* postfix-expression ++ */
4380 /* Consume the `++' token. */
4381 cp_lexer_consume_token (parser->lexer);
4382 /* Generate a representation for the complete expression. */
4383 postfix_expression
4384 = finish_increment_expr (postfix_expression,
4385 POSTINCREMENT_EXPR);
4386 /* Increments may not appear in constant-expressions. */
4387 if (cp_parser_non_integral_constant_expression (parser,
4388 "an increment"))
4389 postfix_expression = error_mark_node;
4390 idk = CP_ID_KIND_NONE;
4391 break;
4392
4393 case CPP_MINUS_MINUS:
4394 /* postfix-expression -- */
4395 /* Consume the `--' token. */
4396 cp_lexer_consume_token (parser->lexer);
4397 /* Generate a representation for the complete expression. */
4398 postfix_expression
4399 = finish_increment_expr (postfix_expression,
4400 POSTDECREMENT_EXPR);
4401 /* Decrements may not appear in constant-expressions. */
4402 if (cp_parser_non_integral_constant_expression (parser,
4403 "a decrement"))
4404 postfix_expression = error_mark_node;
4405 idk = CP_ID_KIND_NONE;
4406 break;
4407
4408 default:
4409 return postfix_expression;
4410 }
4411 }
4412
4413 /* We should never get here. */
4414 gcc_unreachable ();
4415 return error_mark_node;
4416 }
4417
4418 /* A subroutine of cp_parser_postfix_expression that also gets hijacked
4419 by cp_parser_builtin_offsetof. We're looking for
4420
4421 postfix-expression [ expression ]
4422
4423 FOR_OFFSETOF is set if we're being called in that context, which
4424 changes how we deal with integer constant expressions. */
4425
4426 static tree
4427 cp_parser_postfix_open_square_expression (cp_parser *parser,
4428 tree postfix_expression,
4429 bool for_offsetof)
4430 {
4431 tree index;
4432
4433 /* Consume the `[' token. */
4434 cp_lexer_consume_token (parser->lexer);
4435
4436 /* Parse the index expression. */
4437 /* ??? For offsetof, there is a question of what to allow here. If
4438 offsetof is not being used in an integral constant expression context,
4439 then we *could* get the right answer by computing the value at runtime.
4440 If we are in an integral constant expression context, then we might
4441 could accept any constant expression; hard to say without analysis.
4442 Rather than open the barn door too wide right away, allow only integer
4443 constant expressions here. */
4444 if (for_offsetof)
4445 index = cp_parser_constant_expression (parser, false, NULL);
4446 else
4447 index = cp_parser_expression (parser, /*cast_p=*/false);
4448
4449 /* Look for the closing `]'. */
4450 cp_parser_require (parser, CPP_CLOSE_SQUARE, "`]'");
4451
4452 /* Build the ARRAY_REF. */
4453 postfix_expression = grok_array_decl (postfix_expression, index);
4454
4455 /* When not doing offsetof, array references are not permitted in
4456 constant-expressions. */
4457 if (!for_offsetof
4458 && (cp_parser_non_integral_constant_expression
4459 (parser, "an array reference")))
4460 postfix_expression = error_mark_node;
4461
4462 return postfix_expression;
4463 }
4464
4465 /* A subroutine of cp_parser_postfix_expression that also gets hijacked
4466 by cp_parser_builtin_offsetof. We're looking for
4467
4468 postfix-expression . template [opt] id-expression
4469 postfix-expression . pseudo-destructor-name
4470 postfix-expression -> template [opt] id-expression
4471 postfix-expression -> pseudo-destructor-name
4472
4473 FOR_OFFSETOF is set if we're being called in that context. That sorta
4474 limits what of the above we'll actually accept, but nevermind.
4475 TOKEN_TYPE is the "." or "->" token, which will already have been
4476 removed from the stream. */
4477
4478 static tree
4479 cp_parser_postfix_dot_deref_expression (cp_parser *parser,
4480 enum cpp_ttype token_type,
4481 tree postfix_expression,
4482 bool for_offsetof, cp_id_kind *idk)
4483 {
4484 tree name;
4485 bool dependent_p;
4486 bool pseudo_destructor_p;
4487 tree scope = NULL_TREE;
4488
4489 /* If this is a `->' operator, dereference the pointer. */
4490 if (token_type == CPP_DEREF)
4491 postfix_expression = build_x_arrow (postfix_expression);
4492 /* Check to see whether or not the expression is type-dependent. */
4493 dependent_p = type_dependent_expression_p (postfix_expression);
4494 /* The identifier following the `->' or `.' is not qualified. */
4495 parser->scope = NULL_TREE;
4496 parser->qualifying_scope = NULL_TREE;
4497 parser->object_scope = NULL_TREE;
4498 *idk = CP_ID_KIND_NONE;
4499 /* Enter the scope corresponding to the type of the object
4500 given by the POSTFIX_EXPRESSION. */
4501 if (!dependent_p && TREE_TYPE (postfix_expression) != NULL_TREE)
4502 {
4503 scope = TREE_TYPE (postfix_expression);
4504 /* According to the standard, no expression should ever have
4505 reference type. Unfortunately, we do not currently match
4506 the standard in this respect in that our internal representation
4507 of an expression may have reference type even when the standard
4508 says it does not. Therefore, we have to manually obtain the
4509 underlying type here. */
4510 scope = non_reference (scope);
4511 /* The type of the POSTFIX_EXPRESSION must be complete. */
4512 if (scope == unknown_type_node)
4513 {
4514 error ("%qE does not have class type", postfix_expression);
4515 scope = NULL_TREE;
4516 }
4517 else
4518 scope = complete_type_or_else (scope, NULL_TREE);
4519 /* Let the name lookup machinery know that we are processing a
4520 class member access expression. */
4521 parser->context->object_type = scope;
4522 /* If something went wrong, we want to be able to discern that case,
4523 as opposed to the case where there was no SCOPE due to the type
4524 of expression being dependent. */
4525 if (!scope)
4526 scope = error_mark_node;
4527 /* If the SCOPE was erroneous, make the various semantic analysis
4528 functions exit quickly -- and without issuing additional error
4529 messages. */
4530 if (scope == error_mark_node)
4531 postfix_expression = error_mark_node;
4532 }
4533
4534 /* Assume this expression is not a pseudo-destructor access. */
4535 pseudo_destructor_p = false;
4536
4537 /* If the SCOPE is a scalar type, then, if this is a valid program,
4538 we must be looking at a pseudo-destructor-name. */
4539 if (scope && SCALAR_TYPE_P (scope))
4540 {
4541 tree s;
4542 tree type;
4543
4544 cp_parser_parse_tentatively (parser);
4545 /* Parse the pseudo-destructor-name. */
4546 s = NULL_TREE;
4547 cp_parser_pseudo_destructor_name (parser, &s, &type);
4548 if (cp_parser_parse_definitely (parser))
4549 {
4550 pseudo_destructor_p = true;
4551 postfix_expression
4552 = finish_pseudo_destructor_expr (postfix_expression,
4553 s, TREE_TYPE (type));
4554 }
4555 }
4556
4557 if (!pseudo_destructor_p)
4558 {
4559 /* If the SCOPE is not a scalar type, we are looking at an
4560 ordinary class member access expression, rather than a
4561 pseudo-destructor-name. */
4562 bool template_p;
4563 /* Parse the id-expression. */
4564 name = (cp_parser_id_expression
4565 (parser,
4566 cp_parser_optional_template_keyword (parser),
4567 /*check_dependency_p=*/true,
4568 &template_p,
4569 /*declarator_p=*/false,
4570 /*optional_p=*/false));
4571 /* In general, build a SCOPE_REF if the member name is qualified.
4572 However, if the name was not dependent and has already been
4573 resolved; there is no need to build the SCOPE_REF. For example;
4574
4575 struct X { void f(); };
4576 template <typename T> void f(T* t) { t->X::f(); }
4577
4578 Even though "t" is dependent, "X::f" is not and has been resolved
4579 to a BASELINK; there is no need to include scope information. */
4580
4581 /* But we do need to remember that there was an explicit scope for
4582 virtual function calls. */
4583 if (parser->scope)
4584 *idk = CP_ID_KIND_QUALIFIED;
4585
4586 /* If the name is a template-id that names a type, we will get a
4587 TYPE_DECL here. That is invalid code. */
4588 if (TREE_CODE (name) == TYPE_DECL)
4589 {
4590 error ("invalid use of %qD", name);
4591 postfix_expression = error_mark_node;
4592 }
4593 else
4594 {
4595 if (name != error_mark_node && !BASELINK_P (name) && parser->scope)
4596 {
4597 name = build_qualified_name (/*type=*/NULL_TREE,
4598 parser->scope,
4599 name,
4600 template_p);
4601 parser->scope = NULL_TREE;
4602 parser->qualifying_scope = NULL_TREE;
4603 parser->object_scope = NULL_TREE;
4604 }
4605 if (scope && name && BASELINK_P (name))
4606 adjust_result_of_qualified_name_lookup
4607 (name, BINFO_TYPE (BASELINK_ACCESS_BINFO (name)), scope);
4608 postfix_expression
4609 = finish_class_member_access_expr (postfix_expression, name,
4610 template_p);
4611 }
4612 }
4613
4614 /* We no longer need to look up names in the scope of the object on
4615 the left-hand side of the `.' or `->' operator. */
4616 parser->context->object_type = NULL_TREE;
4617
4618 /* Outside of offsetof, these operators may not appear in
4619 constant-expressions. */
4620 if (!for_offsetof
4621 && (cp_parser_non_integral_constant_expression
4622 (parser, token_type == CPP_DEREF ? "'->'" : "`.'")))
4623 postfix_expression = error_mark_node;
4624
4625 return postfix_expression;
4626 }
4627
4628 /* Parse a parenthesized expression-list.
4629
4630 expression-list:
4631 assignment-expression
4632 expression-list, assignment-expression
4633
4634 attribute-list:
4635 expression-list
4636 identifier
4637 identifier, expression-list
4638
4639 CAST_P is true if this expression is the target of a cast.
4640
4641 Returns a TREE_LIST. The TREE_VALUE of each node is a
4642 representation of an assignment-expression. Note that a TREE_LIST
4643 is returned even if there is only a single expression in the list.
4644 error_mark_node is returned if the ( and or ) are
4645 missing. NULL_TREE is returned on no expressions. The parentheses
4646 are eaten. IS_ATTRIBUTE_LIST is true if this is really an attribute
4647 list being parsed. If NON_CONSTANT_P is non-NULL, *NON_CONSTANT_P
4648 indicates whether or not all of the expressions in the list were
4649 constant. */
4650
4651 static tree
4652 cp_parser_parenthesized_expression_list (cp_parser* parser,
4653 bool is_attribute_list,
4654 bool cast_p,
4655 bool *non_constant_p)
4656 {
4657 tree expression_list = NULL_TREE;
4658 bool fold_expr_p = is_attribute_list;
4659 tree identifier = NULL_TREE;
4660
4661 /* Assume all the expressions will be constant. */
4662 if (non_constant_p)
4663 *non_constant_p = false;
4664
4665 if (!cp_parser_require (parser, CPP_OPEN_PAREN, "`('"))
4666 return error_mark_node;
4667
4668 /* Consume expressions until there are no more. */
4669 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN))
4670 while (true)
4671 {
4672 tree expr;
4673
4674 /* At the beginning of attribute lists, check to see if the
4675 next token is an identifier. */
4676 if (is_attribute_list
4677 && cp_lexer_peek_token (parser->lexer)->type == CPP_NAME)
4678 {
4679 cp_token *token;
4680
4681 /* Consume the identifier. */
4682 token = cp_lexer_consume_token (parser->lexer);
4683 /* Save the identifier. */
4684 identifier = token->value;
4685 }
4686 else
4687 {
4688 /* Parse the next assignment-expression. */
4689 if (non_constant_p)
4690 {
4691 bool expr_non_constant_p;
4692 expr = (cp_parser_constant_expression
4693 (parser, /*allow_non_constant_p=*/true,
4694 &expr_non_constant_p));
4695 if (expr_non_constant_p)
4696 *non_constant_p = true;
4697 }
4698 else
4699 expr = cp_parser_assignment_expression (parser, cast_p);
4700
4701 if (fold_expr_p)
4702 expr = fold_non_dependent_expr (expr);
4703
4704 /* Add it to the list. We add error_mark_node
4705 expressions to the list, so that we can still tell if
4706 the correct form for a parenthesized expression-list
4707 is found. That gives better errors. */
4708 expression_list = tree_cons (NULL_TREE, expr, expression_list);
4709
4710 if (expr == error_mark_node)
4711 goto skip_comma;
4712 }
4713
4714 /* After the first item, attribute lists look the same as
4715 expression lists. */
4716 is_attribute_list = false;
4717
4718 get_comma:;
4719 /* If the next token isn't a `,', then we are done. */
4720 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
4721 break;
4722
4723 /* Otherwise, consume the `,' and keep going. */
4724 cp_lexer_consume_token (parser->lexer);
4725 }
4726
4727 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'"))
4728 {
4729 int ending;
4730
4731 skip_comma:;
4732 /* We try and resync to an unnested comma, as that will give the
4733 user better diagnostics. */
4734 ending = cp_parser_skip_to_closing_parenthesis (parser,
4735 /*recovering=*/true,
4736 /*or_comma=*/true,
4737 /*consume_paren=*/true);
4738 if (ending < 0)
4739 goto get_comma;
4740 if (!ending)
4741 return error_mark_node;
4742 }
4743
4744 /* We built up the list in reverse order so we must reverse it now. */
4745 expression_list = nreverse (expression_list);
4746 if (identifier)
4747 expression_list = tree_cons (NULL_TREE, identifier, expression_list);
4748
4749 return expression_list;
4750 }
4751
4752 /* Parse a pseudo-destructor-name.
4753
4754 pseudo-destructor-name:
4755 :: [opt] nested-name-specifier [opt] type-name :: ~ type-name
4756 :: [opt] nested-name-specifier template template-id :: ~ type-name
4757 :: [opt] nested-name-specifier [opt] ~ type-name
4758
4759 If either of the first two productions is used, sets *SCOPE to the
4760 TYPE specified before the final `::'. Otherwise, *SCOPE is set to
4761 NULL_TREE. *TYPE is set to the TYPE_DECL for the final type-name,
4762 or ERROR_MARK_NODE if the parse fails. */
4763
4764 static void
4765 cp_parser_pseudo_destructor_name (cp_parser* parser,
4766 tree* scope,
4767 tree* type)
4768 {
4769 bool nested_name_specifier_p;
4770
4771 /* Assume that things will not work out. */
4772 *type = error_mark_node;
4773
4774 /* Look for the optional `::' operator. */
4775 cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/true);
4776 /* Look for the optional nested-name-specifier. */
4777 nested_name_specifier_p
4778 = (cp_parser_nested_name_specifier_opt (parser,
4779 /*typename_keyword_p=*/false,
4780 /*check_dependency_p=*/true,
4781 /*type_p=*/false,
4782 /*is_declaration=*/true)
4783 != NULL_TREE);
4784 /* Now, if we saw a nested-name-specifier, we might be doing the
4785 second production. */
4786 if (nested_name_specifier_p
4787 && cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
4788 {
4789 /* Consume the `template' keyword. */
4790 cp_lexer_consume_token (parser->lexer);
4791 /* Parse the template-id. */
4792 cp_parser_template_id (parser,
4793 /*template_keyword_p=*/true,
4794 /*check_dependency_p=*/false,
4795 /*is_declaration=*/true);
4796 /* Look for the `::' token. */
4797 cp_parser_require (parser, CPP_SCOPE, "`::'");
4798 }
4799 /* If the next token is not a `~', then there might be some
4800 additional qualification. */
4801 else if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMPL))
4802 {
4803 /* Look for the type-name. */
4804 *scope = TREE_TYPE (cp_parser_type_name (parser));
4805
4806 if (*scope == error_mark_node)
4807 return;
4808
4809 /* If we don't have ::~, then something has gone wrong. Since
4810 the only caller of this function is looking for something
4811 after `.' or `->' after a scalar type, most likely the
4812 program is trying to get a member of a non-aggregate
4813 type. */
4814 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SCOPE)
4815 || cp_lexer_peek_nth_token (parser->lexer, 2)->type != CPP_COMPL)
4816 {
4817 cp_parser_error (parser, "request for member of non-aggregate type");
4818 return;
4819 }
4820
4821 /* Look for the `::' token. */
4822 cp_parser_require (parser, CPP_SCOPE, "`::'");
4823 }
4824 else
4825 *scope = NULL_TREE;
4826
4827 /* Look for the `~'. */
4828 cp_parser_require (parser, CPP_COMPL, "`~'");
4829 /* Look for the type-name again. We are not responsible for
4830 checking that it matches the first type-name. */
4831 *type = cp_parser_type_name (parser);
4832 }
4833
4834 /* Parse a unary-expression.
4835
4836 unary-expression:
4837 postfix-expression
4838 ++ cast-expression
4839 -- cast-expression
4840 unary-operator cast-expression
4841 sizeof unary-expression
4842 sizeof ( type-id )
4843 new-expression
4844 delete-expression
4845
4846 GNU Extensions:
4847
4848 unary-expression:
4849 __extension__ cast-expression
4850 __alignof__ unary-expression
4851 __alignof__ ( type-id )
4852 __real__ cast-expression
4853 __imag__ cast-expression
4854 && identifier
4855
4856 ADDRESS_P is true iff the unary-expression is appearing as the
4857 operand of the `&' operator. CAST_P is true if this expression is
4858 the target of a cast.
4859
4860 Returns a representation of the expression. */
4861
4862 static tree
4863 cp_parser_unary_expression (cp_parser *parser, bool address_p, bool cast_p)
4864 {
4865 cp_token *token;
4866 enum tree_code unary_operator;
4867
4868 /* Peek at the next token. */
4869 token = cp_lexer_peek_token (parser->lexer);
4870 /* Some keywords give away the kind of expression. */
4871 if (token->type == CPP_KEYWORD)
4872 {
4873 enum rid keyword = token->keyword;
4874
4875 switch (keyword)
4876 {
4877 case RID_ALIGNOF:
4878 case RID_SIZEOF:
4879 {
4880 tree operand;
4881 enum tree_code op;
4882
4883 op = keyword == RID_ALIGNOF ? ALIGNOF_EXPR : SIZEOF_EXPR;
4884 /* Consume the token. */
4885 cp_lexer_consume_token (parser->lexer);
4886 /* Parse the operand. */
4887 operand = cp_parser_sizeof_operand (parser, keyword);
4888
4889 if (TYPE_P (operand))
4890 return cxx_sizeof_or_alignof_type (operand, op, true);
4891 else
4892 return cxx_sizeof_or_alignof_expr (operand, op);
4893 }
4894
4895 case RID_NEW:
4896 return cp_parser_new_expression (parser);
4897
4898 case RID_DELETE:
4899 return cp_parser_delete_expression (parser);
4900
4901 case RID_EXTENSION:
4902 {
4903 /* The saved value of the PEDANTIC flag. */
4904 int saved_pedantic;
4905 tree expr;
4906
4907 /* Save away the PEDANTIC flag. */
4908 cp_parser_extension_opt (parser, &saved_pedantic);
4909 /* Parse the cast-expression. */
4910 expr = cp_parser_simple_cast_expression (parser);
4911 /* Restore the PEDANTIC flag. */
4912 pedantic = saved_pedantic;
4913
4914 return expr;
4915 }
4916
4917 case RID_REALPART:
4918 case RID_IMAGPART:
4919 {
4920 tree expression;
4921
4922 /* Consume the `__real__' or `__imag__' token. */
4923 cp_lexer_consume_token (parser->lexer);
4924 /* Parse the cast-expression. */
4925 expression = cp_parser_simple_cast_expression (parser);
4926 /* Create the complete representation. */
4927 return build_x_unary_op ((keyword == RID_REALPART
4928 ? REALPART_EXPR : IMAGPART_EXPR),
4929 expression);
4930 }
4931 break;
4932
4933 default:
4934 break;
4935 }
4936 }
4937
4938 /* Look for the `:: new' and `:: delete', which also signal the
4939 beginning of a new-expression, or delete-expression,
4940 respectively. If the next token is `::', then it might be one of
4941 these. */
4942 if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
4943 {
4944 enum rid keyword;
4945
4946 /* See if the token after the `::' is one of the keywords in
4947 which we're interested. */
4948 keyword = cp_lexer_peek_nth_token (parser->lexer, 2)->keyword;
4949 /* If it's `new', we have a new-expression. */
4950 if (keyword == RID_NEW)
4951 return cp_parser_new_expression (parser);
4952 /* Similarly, for `delete'. */
4953 else if (keyword == RID_DELETE)
4954 return cp_parser_delete_expression (parser);
4955 }
4956
4957 /* Look for a unary operator. */
4958 unary_operator = cp_parser_unary_operator (token);
4959 /* The `++' and `--' operators can be handled similarly, even though
4960 they are not technically unary-operators in the grammar. */
4961 if (unary_operator == ERROR_MARK)
4962 {
4963 if (token->type == CPP_PLUS_PLUS)
4964 unary_operator = PREINCREMENT_EXPR;
4965 else if (token->type == CPP_MINUS_MINUS)
4966 unary_operator = PREDECREMENT_EXPR;
4967 /* Handle the GNU address-of-label extension. */
4968 else if (cp_parser_allow_gnu_extensions_p (parser)
4969 && token->type == CPP_AND_AND)
4970 {
4971 tree identifier;
4972
4973 /* Consume the '&&' token. */
4974 cp_lexer_consume_token (parser->lexer);
4975 /* Look for the identifier. */
4976 identifier = cp_parser_identifier (parser);
4977 /* Create an expression representing the address. */
4978 return finish_label_address_expr (identifier);
4979 }
4980 }
4981 if (unary_operator != ERROR_MARK)
4982 {
4983 tree cast_expression;
4984 tree expression = error_mark_node;
4985 const char *non_constant_p = NULL;
4986
4987 /* Consume the operator token. */
4988 token = cp_lexer_consume_token (parser->lexer);
4989 /* Parse the cast-expression. */
4990 cast_expression
4991 = cp_parser_cast_expression (parser,
4992 unary_operator == ADDR_EXPR,
4993 /*cast_p=*/false);
4994 /* Now, build an appropriate representation. */
4995 switch (unary_operator)
4996 {
4997 case INDIRECT_REF:
4998 non_constant_p = "`*'";
4999 expression = build_x_indirect_ref (cast_expression, "unary *");
5000 break;
5001
5002 case ADDR_EXPR:
5003 non_constant_p = "`&'";
5004 /* Fall through. */
5005 case BIT_NOT_EXPR:
5006 expression = build_x_unary_op (unary_operator, cast_expression);
5007 break;
5008
5009 case PREINCREMENT_EXPR:
5010 case PREDECREMENT_EXPR:
5011 non_constant_p = (unary_operator == PREINCREMENT_EXPR
5012 ? "`++'" : "`--'");
5013 /* Fall through. */
5014 case UNARY_PLUS_EXPR:
5015 case NEGATE_EXPR:
5016 case TRUTH_NOT_EXPR:
5017 expression = finish_unary_op_expr (unary_operator, cast_expression);
5018 break;
5019
5020 default:
5021 gcc_unreachable ();
5022 }
5023
5024 if (non_constant_p
5025 && cp_parser_non_integral_constant_expression (parser,
5026 non_constant_p))
5027 expression = error_mark_node;
5028
5029 return expression;
5030 }
5031
5032 return cp_parser_postfix_expression (parser, address_p, cast_p);
5033 }
5034
5035 /* Returns ERROR_MARK if TOKEN is not a unary-operator. If TOKEN is a
5036 unary-operator, the corresponding tree code is returned. */
5037
5038 static enum tree_code
5039 cp_parser_unary_operator (cp_token* token)
5040 {
5041 switch (token->type)
5042 {
5043 case CPP_MULT:
5044 return INDIRECT_REF;
5045
5046 case CPP_AND:
5047 return ADDR_EXPR;
5048
5049 case CPP_PLUS:
5050 return UNARY_PLUS_EXPR;
5051
5052 case CPP_MINUS:
5053 return NEGATE_EXPR;
5054
5055 case CPP_NOT:
5056 return TRUTH_NOT_EXPR;
5057
5058 case CPP_COMPL:
5059 return BIT_NOT_EXPR;
5060
5061 default:
5062 return ERROR_MARK;
5063 }
5064 }
5065
5066 /* Parse a new-expression.
5067
5068 new-expression:
5069 :: [opt] new new-placement [opt] new-type-id new-initializer [opt]
5070 :: [opt] new new-placement [opt] ( type-id ) new-initializer [opt]
5071
5072 Returns a representation of the expression. */
5073
5074 static tree
5075 cp_parser_new_expression (cp_parser* parser)
5076 {
5077 bool global_scope_p;
5078 tree placement;
5079 tree type;
5080 tree initializer;
5081 tree nelts;
5082
5083 /* Look for the optional `::' operator. */
5084 global_scope_p
5085 = (cp_parser_global_scope_opt (parser,
5086 /*current_scope_valid_p=*/false)
5087 != NULL_TREE);
5088 /* Look for the `new' operator. */
5089 cp_parser_require_keyword (parser, RID_NEW, "`new'");
5090 /* There's no easy way to tell a new-placement from the
5091 `( type-id )' construct. */
5092 cp_parser_parse_tentatively (parser);
5093 /* Look for a new-placement. */
5094 placement = cp_parser_new_placement (parser);
5095 /* If that didn't work out, there's no new-placement. */
5096 if (!cp_parser_parse_definitely (parser))
5097 placement = NULL_TREE;
5098
5099 /* If the next token is a `(', then we have a parenthesized
5100 type-id. */
5101 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
5102 {
5103 /* Consume the `('. */
5104 cp_lexer_consume_token (parser->lexer);
5105 /* Parse the type-id. */
5106 type = cp_parser_type_id (parser);
5107 /* Look for the closing `)'. */
5108 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
5109 /* There should not be a direct-new-declarator in this production,
5110 but GCC used to allowed this, so we check and emit a sensible error
5111 message for this case. */
5112 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
5113 {
5114 error ("array bound forbidden after parenthesized type-id");
5115 inform ("try removing the parentheses around the type-id");
5116 cp_parser_direct_new_declarator (parser);
5117 }
5118 nelts = NULL_TREE;
5119 }
5120 /* Otherwise, there must be a new-type-id. */
5121 else
5122 type = cp_parser_new_type_id (parser, &nelts);
5123
5124 /* If the next token is a `(', then we have a new-initializer. */
5125 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
5126 initializer = cp_parser_new_initializer (parser);
5127 else
5128 initializer = NULL_TREE;
5129
5130 /* A new-expression may not appear in an integral constant
5131 expression. */
5132 if (cp_parser_non_integral_constant_expression (parser, "`new'"))
5133 return error_mark_node;
5134
5135 /* Create a representation of the new-expression. */
5136 return build_new (placement, type, nelts, initializer, global_scope_p);
5137 }
5138
5139 /* Parse a new-placement.
5140
5141 new-placement:
5142 ( expression-list )
5143
5144 Returns the same representation as for an expression-list. */
5145
5146 static tree
5147 cp_parser_new_placement (cp_parser* parser)
5148 {
5149 tree expression_list;
5150
5151 /* Parse the expression-list. */
5152 expression_list = (cp_parser_parenthesized_expression_list
5153 (parser, false, /*cast_p=*/false,
5154 /*non_constant_p=*/NULL));
5155
5156 return expression_list;
5157 }
5158
5159 /* Parse a new-type-id.
5160
5161 new-type-id:
5162 type-specifier-seq new-declarator [opt]
5163
5164 Returns the TYPE allocated. If the new-type-id indicates an array
5165 type, *NELTS is set to the number of elements in the last array
5166 bound; the TYPE will not include the last array bound. */
5167
5168 static tree
5169 cp_parser_new_type_id (cp_parser* parser, tree *nelts)
5170 {
5171 cp_decl_specifier_seq type_specifier_seq;
5172 cp_declarator *new_declarator;
5173 cp_declarator *declarator;
5174 cp_declarator *outer_declarator;
5175 const char *saved_message;
5176 tree type;
5177
5178 /* The type-specifier sequence must not contain type definitions.
5179 (It cannot contain declarations of new types either, but if they
5180 are not definitions we will catch that because they are not
5181 complete.) */
5182 saved_message = parser->type_definition_forbidden_message;
5183 parser->type_definition_forbidden_message
5184 = "types may not be defined in a new-type-id";
5185 /* Parse the type-specifier-seq. */
5186 cp_parser_type_specifier_seq (parser, /*is_condition=*/false,
5187 &type_specifier_seq);
5188 /* Restore the old message. */
5189 parser->type_definition_forbidden_message = saved_message;
5190 /* Parse the new-declarator. */
5191 new_declarator = cp_parser_new_declarator_opt (parser);
5192
5193 /* Determine the number of elements in the last array dimension, if
5194 any. */
5195 *nelts = NULL_TREE;
5196 /* Skip down to the last array dimension. */
5197 declarator = new_declarator;
5198 outer_declarator = NULL;
5199 while (declarator && (declarator->kind == cdk_pointer
5200 || declarator->kind == cdk_ptrmem))
5201 {
5202 outer_declarator = declarator;
5203 declarator = declarator->declarator;
5204 }
5205 while (declarator
5206 && declarator->kind == cdk_array
5207 && declarator->declarator
5208 && declarator->declarator->kind == cdk_array)
5209 {
5210 outer_declarator = declarator;
5211 declarator = declarator->declarator;
5212 }
5213
5214 if (declarator && declarator->kind == cdk_array)
5215 {
5216 *nelts = declarator->u.array.bounds;
5217 if (*nelts == error_mark_node)
5218 *nelts = integer_one_node;
5219
5220 if (outer_declarator)
5221 outer_declarator->declarator = declarator->declarator;
5222 else
5223 new_declarator = NULL;
5224 }
5225
5226 type = groktypename (&type_specifier_seq, new_declarator);
5227 if (TREE_CODE (type) == ARRAY_TYPE && *nelts == NULL_TREE)
5228 {
5229 *nelts = array_type_nelts_top (type);
5230 type = TREE_TYPE (type);
5231 }
5232 return type;
5233 }
5234
5235 /* Parse an (optional) new-declarator.
5236
5237 new-declarator:
5238 ptr-operator new-declarator [opt]
5239 direct-new-declarator
5240
5241 Returns the declarator. */
5242
5243 static cp_declarator *
5244 cp_parser_new_declarator_opt (cp_parser* parser)
5245 {
5246 enum tree_code code;
5247 tree type;
5248 cp_cv_quals cv_quals;
5249
5250 /* We don't know if there's a ptr-operator next, or not. */
5251 cp_parser_parse_tentatively (parser);
5252 /* Look for a ptr-operator. */
5253 code = cp_parser_ptr_operator (parser, &type, &cv_quals);
5254 /* If that worked, look for more new-declarators. */
5255 if (cp_parser_parse_definitely (parser))
5256 {
5257 cp_declarator *declarator;
5258
5259 /* Parse another optional declarator. */
5260 declarator = cp_parser_new_declarator_opt (parser);
5261
5262 /* Create the representation of the declarator. */
5263 if (type)
5264 declarator = make_ptrmem_declarator (cv_quals, type, declarator);
5265 else if (code == INDIRECT_REF)
5266 declarator = make_pointer_declarator (cv_quals, declarator);
5267 else
5268 declarator = make_reference_declarator (cv_quals, declarator);
5269
5270 return declarator;
5271 }
5272
5273 /* If the next token is a `[', there is a direct-new-declarator. */
5274 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
5275 return cp_parser_direct_new_declarator (parser);
5276
5277 return NULL;
5278 }
5279
5280 /* Parse a direct-new-declarator.
5281
5282 direct-new-declarator:
5283 [ expression ]
5284 direct-new-declarator [constant-expression]
5285
5286 */
5287
5288 static cp_declarator *
5289 cp_parser_direct_new_declarator (cp_parser* parser)
5290 {
5291 cp_declarator *declarator = NULL;
5292
5293 while (true)
5294 {
5295 tree expression;
5296
5297 /* Look for the opening `['. */
5298 cp_parser_require (parser, CPP_OPEN_SQUARE, "`['");
5299 /* The first expression is not required to be constant. */
5300 if (!declarator)
5301 {
5302 expression = cp_parser_expression (parser, /*cast_p=*/false);
5303 /* The standard requires that the expression have integral
5304 type. DR 74 adds enumeration types. We believe that the
5305 real intent is that these expressions be handled like the
5306 expression in a `switch' condition, which also allows
5307 classes with a single conversion to integral or
5308 enumeration type. */
5309 if (!processing_template_decl)
5310 {
5311 expression
5312 = build_expr_type_conversion (WANT_INT | WANT_ENUM,
5313 expression,
5314 /*complain=*/true);
5315 if (!expression)
5316 {
5317 error ("expression in new-declarator must have integral "
5318 "or enumeration type");
5319 expression = error_mark_node;
5320 }
5321 }
5322 }
5323 /* But all the other expressions must be. */
5324 else
5325 expression
5326 = cp_parser_constant_expression (parser,
5327 /*allow_non_constant=*/false,
5328 NULL);
5329 /* Look for the closing `]'. */
5330 cp_parser_require (parser, CPP_CLOSE_SQUARE, "`]'");
5331
5332 /* Add this bound to the declarator. */
5333 declarator = make_array_declarator (declarator, expression);
5334
5335 /* If the next token is not a `[', then there are no more
5336 bounds. */
5337 if (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_SQUARE))
5338 break;
5339 }
5340
5341 return declarator;
5342 }
5343
5344 /* Parse a new-initializer.
5345
5346 new-initializer:
5347 ( expression-list [opt] )
5348
5349 Returns a representation of the expression-list. If there is no
5350 expression-list, VOID_ZERO_NODE is returned. */
5351
5352 static tree
5353 cp_parser_new_initializer (cp_parser* parser)
5354 {
5355 tree expression_list;
5356
5357 expression_list = (cp_parser_parenthesized_expression_list
5358 (parser, false, /*cast_p=*/false,
5359 /*non_constant_p=*/NULL));
5360 if (!expression_list)
5361 expression_list = void_zero_node;
5362
5363 return expression_list;
5364 }
5365
5366 /* Parse a delete-expression.
5367
5368 delete-expression:
5369 :: [opt] delete cast-expression
5370 :: [opt] delete [ ] cast-expression
5371
5372 Returns a representation of the expression. */
5373
5374 static tree
5375 cp_parser_delete_expression (cp_parser* parser)
5376 {
5377 bool global_scope_p;
5378 bool array_p;
5379 tree expression;
5380
5381 /* Look for the optional `::' operator. */
5382 global_scope_p
5383 = (cp_parser_global_scope_opt (parser,
5384 /*current_scope_valid_p=*/false)
5385 != NULL_TREE);
5386 /* Look for the `delete' keyword. */
5387 cp_parser_require_keyword (parser, RID_DELETE, "`delete'");
5388 /* See if the array syntax is in use. */
5389 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
5390 {
5391 /* Consume the `[' token. */
5392 cp_lexer_consume_token (parser->lexer);
5393 /* Look for the `]' token. */
5394 cp_parser_require (parser, CPP_CLOSE_SQUARE, "`]'");
5395 /* Remember that this is the `[]' construct. */
5396 array_p = true;
5397 }
5398 else
5399 array_p = false;
5400
5401 /* Parse the cast-expression. */
5402 expression = cp_parser_simple_cast_expression (parser);
5403
5404 /* A delete-expression may not appear in an integral constant
5405 expression. */
5406 if (cp_parser_non_integral_constant_expression (parser, "`delete'"))
5407 return error_mark_node;
5408
5409 return delete_sanity (expression, NULL_TREE, array_p, global_scope_p);
5410 }
5411
5412 /* Parse a cast-expression.
5413
5414 cast-expression:
5415 unary-expression
5416 ( type-id ) cast-expression
5417
5418 ADDRESS_P is true iff the unary-expression is appearing as the
5419 operand of the `&' operator. CAST_P is true if this expression is
5420 the target of a cast.
5421
5422 Returns a representation of the expression. */
5423
5424 static tree
5425 cp_parser_cast_expression (cp_parser *parser, bool address_p, bool cast_p)
5426 {
5427 /* If it's a `(', then we might be looking at a cast. */
5428 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
5429 {
5430 tree type = NULL_TREE;
5431 tree expr = NULL_TREE;
5432 bool compound_literal_p;
5433 const char *saved_message;
5434
5435 /* There's no way to know yet whether or not this is a cast.
5436 For example, `(int (3))' is a unary-expression, while `(int)
5437 3' is a cast. So, we resort to parsing tentatively. */
5438 cp_parser_parse_tentatively (parser);
5439 /* Types may not be defined in a cast. */
5440 saved_message = parser->type_definition_forbidden_message;
5441 parser->type_definition_forbidden_message
5442 = "types may not be defined in casts";
5443 /* Consume the `('. */
5444 cp_lexer_consume_token (parser->lexer);
5445 /* A very tricky bit is that `(struct S) { 3 }' is a
5446 compound-literal (which we permit in C++ as an extension).
5447 But, that construct is not a cast-expression -- it is a
5448 postfix-expression. (The reason is that `(struct S) { 3 }.i'
5449 is legal; if the compound-literal were a cast-expression,
5450 you'd need an extra set of parentheses.) But, if we parse
5451 the type-id, and it happens to be a class-specifier, then we
5452 will commit to the parse at that point, because we cannot
5453 undo the action that is done when creating a new class. So,
5454 then we cannot back up and do a postfix-expression.
5455
5456 Therefore, we scan ahead to the closing `)', and check to see
5457 if the token after the `)' is a `{'. If so, we are not
5458 looking at a cast-expression.
5459
5460 Save tokens so that we can put them back. */
5461 cp_lexer_save_tokens (parser->lexer);
5462 /* Skip tokens until the next token is a closing parenthesis.
5463 If we find the closing `)', and the next token is a `{', then
5464 we are looking at a compound-literal. */
5465 compound_literal_p
5466 = (cp_parser_skip_to_closing_parenthesis (parser, false, false,
5467 /*consume_paren=*/true)
5468 && cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE));
5469 /* Roll back the tokens we skipped. */
5470 cp_lexer_rollback_tokens (parser->lexer);
5471 /* If we were looking at a compound-literal, simulate an error
5472 so that the call to cp_parser_parse_definitely below will
5473 fail. */
5474 if (compound_literal_p)
5475 cp_parser_simulate_error (parser);
5476 else
5477 {
5478 bool saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
5479 parser->in_type_id_in_expr_p = true;
5480 /* Look for the type-id. */
5481 type = cp_parser_type_id (parser);
5482 /* Look for the closing `)'. */
5483 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
5484 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
5485 }
5486
5487 /* Restore the saved message. */
5488 parser->type_definition_forbidden_message = saved_message;
5489
5490 /* If ok so far, parse the dependent expression. We cannot be
5491 sure it is a cast. Consider `(T ())'. It is a parenthesized
5492 ctor of T, but looks like a cast to function returning T
5493 without a dependent expression. */
5494 if (!cp_parser_error_occurred (parser))
5495 expr = cp_parser_cast_expression (parser,
5496 /*address_p=*/false,
5497 /*cast_p=*/true);
5498
5499 if (cp_parser_parse_definitely (parser))
5500 {
5501 /* Warn about old-style casts, if so requested. */
5502 if (warn_old_style_cast
5503 && !in_system_header
5504 && !VOID_TYPE_P (type)
5505 && current_lang_name != lang_name_c)
5506 warning (OPT_Wold_style_cast, "use of old-style cast");
5507
5508 /* Only type conversions to integral or enumeration types
5509 can be used in constant-expressions. */
5510 if (!cast_valid_in_integral_constant_expression_p (type)
5511 && (cp_parser_non_integral_constant_expression
5512 (parser,
5513 "a cast to a type other than an integral or "
5514 "enumeration type")))
5515 return error_mark_node;
5516
5517 /* Perform the cast. */
5518 expr = build_c_cast (type, expr);
5519 return expr;
5520 }
5521 }
5522
5523 /* If we get here, then it's not a cast, so it must be a
5524 unary-expression. */
5525 return cp_parser_unary_expression (parser, address_p, cast_p);
5526 }
5527
5528 /* Parse a binary expression of the general form:
5529
5530 pm-expression:
5531 cast-expression
5532 pm-expression .* cast-expression
5533 pm-expression ->* cast-expression
5534
5535 multiplicative-expression:
5536 pm-expression
5537 multiplicative-expression * pm-expression
5538 multiplicative-expression / pm-expression
5539 multiplicative-expression % pm-expression
5540
5541 additive-expression:
5542 multiplicative-expression
5543 additive-expression + multiplicative-expression
5544 additive-expression - multiplicative-expression
5545
5546 shift-expression:
5547 additive-expression
5548 shift-expression << additive-expression
5549 shift-expression >> additive-expression
5550
5551 relational-expression:
5552 shift-expression
5553 relational-expression < shift-expression
5554 relational-expression > shift-expression
5555 relational-expression <= shift-expression
5556 relational-expression >= shift-expression
5557
5558 GNU Extension:
5559
5560 relational-expression:
5561 relational-expression <? shift-expression
5562 relational-expression >? shift-expression
5563
5564 equality-expression:
5565 relational-expression
5566 equality-expression == relational-expression
5567 equality-expression != relational-expression
5568
5569 and-expression:
5570 equality-expression
5571 and-expression & equality-expression
5572
5573 exclusive-or-expression:
5574 and-expression
5575 exclusive-or-expression ^ and-expression
5576
5577 inclusive-or-expression:
5578 exclusive-or-expression
5579 inclusive-or-expression | exclusive-or-expression
5580
5581 logical-and-expression:
5582 inclusive-or-expression
5583 logical-and-expression && inclusive-or-expression
5584
5585 logical-or-expression:
5586 logical-and-expression
5587 logical-or-expression || logical-and-expression
5588
5589 All these are implemented with a single function like:
5590
5591 binary-expression:
5592 simple-cast-expression
5593 binary-expression <token> binary-expression
5594
5595 CAST_P is true if this expression is the target of a cast.
5596
5597 The binops_by_token map is used to get the tree codes for each <token> type.
5598 binary-expressions are associated according to a precedence table. */
5599
5600 #define TOKEN_PRECEDENCE(token) \
5601 ((token->type == CPP_GREATER && !parser->greater_than_is_operator_p) \
5602 ? PREC_NOT_OPERATOR \
5603 : binops_by_token[token->type].prec)
5604
5605 static tree
5606 cp_parser_binary_expression (cp_parser* parser, bool cast_p)
5607 {
5608 cp_parser_expression_stack stack;
5609 cp_parser_expression_stack_entry *sp = &stack[0];
5610 tree lhs, rhs;
5611 cp_token *token;
5612 enum tree_code tree_type;
5613 enum cp_parser_prec prec = PREC_NOT_OPERATOR, new_prec, lookahead_prec;
5614 bool overloaded_p;
5615
5616 /* Parse the first expression. */
5617 lhs = cp_parser_cast_expression (parser, /*address_p=*/false, cast_p);
5618
5619 for (;;)
5620 {
5621 /* Get an operator token. */
5622 token = cp_lexer_peek_token (parser->lexer);
5623
5624 new_prec = TOKEN_PRECEDENCE (token);
5625
5626 /* Popping an entry off the stack means we completed a subexpression:
5627 - either we found a token which is not an operator (`>' where it is not
5628 an operator, or prec == PREC_NOT_OPERATOR), in which case popping
5629 will happen repeatedly;
5630 - or, we found an operator which has lower priority. This is the case
5631 where the recursive descent *ascends*, as in `3 * 4 + 5' after
5632 parsing `3 * 4'. */
5633 if (new_prec <= prec)
5634 {
5635 if (sp == stack)
5636 break;
5637 else
5638 goto pop;
5639 }
5640
5641 get_rhs:
5642 tree_type = binops_by_token[token->type].tree_type;
5643
5644 /* We used the operator token. */
5645 cp_lexer_consume_token (parser->lexer);
5646
5647 /* Extract another operand. It may be the RHS of this expression
5648 or the LHS of a new, higher priority expression. */
5649 rhs = cp_parser_simple_cast_expression (parser);
5650
5651 /* Get another operator token. Look up its precedence to avoid
5652 building a useless (immediately popped) stack entry for common
5653 cases such as 3 + 4 + 5 or 3 * 4 + 5. */
5654 token = cp_lexer_peek_token (parser->lexer);
5655 lookahead_prec = TOKEN_PRECEDENCE (token);
5656 if (lookahead_prec > new_prec)
5657 {
5658 /* ... and prepare to parse the RHS of the new, higher priority
5659 expression. Since precedence levels on the stack are
5660 monotonically increasing, we do not have to care about
5661 stack overflows. */
5662 sp->prec = prec;
5663 sp->tree_type = tree_type;
5664 sp->lhs = lhs;
5665 sp++;
5666 lhs = rhs;
5667 prec = new_prec;
5668 new_prec = lookahead_prec;
5669 goto get_rhs;
5670
5671 pop:
5672 /* If the stack is not empty, we have parsed into LHS the right side
5673 (`4' in the example above) of an expression we had suspended.
5674 We can use the information on the stack to recover the LHS (`3')
5675 from the stack together with the tree code (`MULT_EXPR'), and
5676 the precedence of the higher level subexpression
5677 (`PREC_ADDITIVE_EXPRESSION'). TOKEN is the CPP_PLUS token,
5678 which will be used to actually build the additive expression. */
5679 --sp;
5680 prec = sp->prec;
5681 tree_type = sp->tree_type;
5682 rhs = lhs;
5683 lhs = sp->lhs;
5684 }
5685
5686 overloaded_p = false;
5687 lhs = build_x_binary_op (tree_type, lhs, rhs, &overloaded_p);
5688
5689 /* If the binary operator required the use of an overloaded operator,
5690 then this expression cannot be an integral constant-expression.
5691 An overloaded operator can be used even if both operands are
5692 otherwise permissible in an integral constant-expression if at
5693 least one of the operands is of enumeration type. */
5694
5695 if (overloaded_p
5696 && (cp_parser_non_integral_constant_expression
5697 (parser, "calls to overloaded operators")))
5698 return error_mark_node;
5699 }
5700
5701 return lhs;
5702 }
5703
5704
5705 /* Parse the `? expression : assignment-expression' part of a
5706 conditional-expression. The LOGICAL_OR_EXPR is the
5707 logical-or-expression that started the conditional-expression.
5708 Returns a representation of the entire conditional-expression.
5709
5710 This routine is used by cp_parser_assignment_expression.
5711
5712 ? expression : assignment-expression
5713
5714 GNU Extensions:
5715
5716 ? : assignment-expression */
5717
5718 static tree
5719 cp_parser_question_colon_clause (cp_parser* parser, tree logical_or_expr)
5720 {
5721 tree expr;
5722 tree assignment_expr;
5723
5724 /* Consume the `?' token. */
5725 cp_lexer_consume_token (parser->lexer);
5726 if (cp_parser_allow_gnu_extensions_p (parser)
5727 && cp_lexer_next_token_is (parser->lexer, CPP_COLON))
5728 /* Implicit true clause. */
5729 expr = NULL_TREE;
5730 else
5731 /* Parse the expression. */
5732 expr = cp_parser_expression (parser, /*cast_p=*/false);
5733
5734 /* The next token should be a `:'. */
5735 cp_parser_require (parser, CPP_COLON, "`:'");
5736 /* Parse the assignment-expression. */
5737 assignment_expr = cp_parser_assignment_expression (parser, /*cast_p=*/false);
5738
5739 /* Build the conditional-expression. */
5740 return build_x_conditional_expr (logical_or_expr,
5741 expr,
5742 assignment_expr);
5743 }
5744
5745 /* Parse an assignment-expression.
5746
5747 assignment-expression:
5748 conditional-expression
5749 logical-or-expression assignment-operator assignment_expression
5750 throw-expression
5751
5752 CAST_P is true if this expression is the target of a cast.
5753
5754 Returns a representation for the expression. */
5755
5756 static tree
5757 cp_parser_assignment_expression (cp_parser* parser, bool cast_p)
5758 {
5759 tree expr;
5760
5761 /* If the next token is the `throw' keyword, then we're looking at
5762 a throw-expression. */
5763 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_THROW))
5764 expr = cp_parser_throw_expression (parser);
5765 /* Otherwise, it must be that we are looking at a
5766 logical-or-expression. */
5767 else
5768 {
5769 /* Parse the binary expressions (logical-or-expression). */
5770 expr = cp_parser_binary_expression (parser, cast_p);
5771 /* If the next token is a `?' then we're actually looking at a
5772 conditional-expression. */
5773 if (cp_lexer_next_token_is (parser->lexer, CPP_QUERY))
5774 return cp_parser_question_colon_clause (parser, expr);
5775 else
5776 {
5777 enum tree_code assignment_operator;
5778
5779 /* If it's an assignment-operator, we're using the second
5780 production. */
5781 assignment_operator
5782 = cp_parser_assignment_operator_opt (parser);
5783 if (assignment_operator != ERROR_MARK)
5784 {
5785 tree rhs;
5786
5787 /* Parse the right-hand side of the assignment. */
5788 rhs = cp_parser_assignment_expression (parser, cast_p);
5789 /* An assignment may not appear in a
5790 constant-expression. */
5791 if (cp_parser_non_integral_constant_expression (parser,
5792 "an assignment"))
5793 return error_mark_node;
5794 /* Build the assignment expression. */
5795 expr = build_x_modify_expr (expr,
5796 assignment_operator,
5797 rhs);
5798 }
5799 }
5800 }
5801
5802 return expr;
5803 }
5804
5805 /* Parse an (optional) assignment-operator.
5806
5807 assignment-operator: one of
5808 = *= /= %= += -= >>= <<= &= ^= |=
5809
5810 GNU Extension:
5811
5812 assignment-operator: one of
5813 <?= >?=
5814
5815 If the next token is an assignment operator, the corresponding tree
5816 code is returned, and the token is consumed. For example, for
5817 `+=', PLUS_EXPR is returned. For `=' itself, the code returned is
5818 NOP_EXPR. For `/', TRUNC_DIV_EXPR is returned; for `%',
5819 TRUNC_MOD_EXPR is returned. If TOKEN is not an assignment
5820 operator, ERROR_MARK is returned. */
5821
5822 static enum tree_code
5823 cp_parser_assignment_operator_opt (cp_parser* parser)
5824 {
5825 enum tree_code op;
5826 cp_token *token;
5827
5828 /* Peek at the next toen. */
5829 token = cp_lexer_peek_token (parser->lexer);
5830
5831 switch (token->type)
5832 {
5833 case CPP_EQ:
5834 op = NOP_EXPR;
5835 break;
5836
5837 case CPP_MULT_EQ:
5838 op = MULT_EXPR;
5839 break;
5840
5841 case CPP_DIV_EQ:
5842 op = TRUNC_DIV_EXPR;
5843 break;
5844
5845 case CPP_MOD_EQ:
5846 op = TRUNC_MOD_EXPR;
5847 break;
5848
5849 case CPP_PLUS_EQ:
5850 op = PLUS_EXPR;
5851 break;
5852
5853 case CPP_MINUS_EQ:
5854 op = MINUS_EXPR;
5855 break;
5856
5857 case CPP_RSHIFT_EQ:
5858 op = RSHIFT_EXPR;
5859 break;
5860
5861 case CPP_LSHIFT_EQ:
5862 op = LSHIFT_EXPR;
5863 break;
5864
5865 case CPP_AND_EQ:
5866 op = BIT_AND_EXPR;
5867 break;
5868
5869 case CPP_XOR_EQ:
5870 op = BIT_XOR_EXPR;
5871 break;
5872
5873 case CPP_OR_EQ:
5874 op = BIT_IOR_EXPR;
5875 break;
5876
5877 default:
5878 /* Nothing else is an assignment operator. */
5879 op = ERROR_MARK;
5880 }
5881
5882 /* If it was an assignment operator, consume it. */
5883 if (op != ERROR_MARK)
5884 cp_lexer_consume_token (parser->lexer);
5885
5886 return op;
5887 }
5888
5889 /* Parse an expression.
5890
5891 expression:
5892 assignment-expression
5893 expression , assignment-expression
5894
5895 CAST_P is true if this expression is the target of a cast.
5896
5897 Returns a representation of the expression. */
5898
5899 static tree
5900 cp_parser_expression (cp_parser* parser, bool cast_p)
5901 {
5902 tree expression = NULL_TREE;
5903
5904 while (true)
5905 {
5906 tree assignment_expression;
5907
5908 /* Parse the next assignment-expression. */
5909 assignment_expression
5910 = cp_parser_assignment_expression (parser, cast_p);
5911 /* If this is the first assignment-expression, we can just
5912 save it away. */
5913 if (!expression)
5914 expression = assignment_expression;
5915 else
5916 expression = build_x_compound_expr (expression,
5917 assignment_expression);
5918 /* If the next token is not a comma, then we are done with the
5919 expression. */
5920 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
5921 break;
5922 /* Consume the `,'. */
5923 cp_lexer_consume_token (parser->lexer);
5924 /* A comma operator cannot appear in a constant-expression. */
5925 if (cp_parser_non_integral_constant_expression (parser,
5926 "a comma operator"))
5927 expression = error_mark_node;
5928 }
5929
5930 return expression;
5931 }
5932
5933 /* Parse a constant-expression.
5934
5935 constant-expression:
5936 conditional-expression
5937
5938 If ALLOW_NON_CONSTANT_P a non-constant expression is silently
5939 accepted. If ALLOW_NON_CONSTANT_P is true and the expression is not
5940 constant, *NON_CONSTANT_P is set to TRUE. If ALLOW_NON_CONSTANT_P
5941 is false, NON_CONSTANT_P should be NULL. */
5942
5943 static tree
5944 cp_parser_constant_expression (cp_parser* parser,
5945 bool allow_non_constant_p,
5946 bool *non_constant_p)
5947 {
5948 bool saved_integral_constant_expression_p;
5949 bool saved_allow_non_integral_constant_expression_p;
5950 bool saved_non_integral_constant_expression_p;
5951 tree expression;
5952
5953 /* It might seem that we could simply parse the
5954 conditional-expression, and then check to see if it were
5955 TREE_CONSTANT. However, an expression that is TREE_CONSTANT is
5956 one that the compiler can figure out is constant, possibly after
5957 doing some simplifications or optimizations. The standard has a
5958 precise definition of constant-expression, and we must honor
5959 that, even though it is somewhat more restrictive.
5960
5961 For example:
5962
5963 int i[(2, 3)];
5964
5965 is not a legal declaration, because `(2, 3)' is not a
5966 constant-expression. The `,' operator is forbidden in a
5967 constant-expression. However, GCC's constant-folding machinery
5968 will fold this operation to an INTEGER_CST for `3'. */
5969
5970 /* Save the old settings. */
5971 saved_integral_constant_expression_p = parser->integral_constant_expression_p;
5972 saved_allow_non_integral_constant_expression_p
5973 = parser->allow_non_integral_constant_expression_p;
5974 saved_non_integral_constant_expression_p = parser->non_integral_constant_expression_p;
5975 /* We are now parsing a constant-expression. */
5976 parser->integral_constant_expression_p = true;
5977 parser->allow_non_integral_constant_expression_p = allow_non_constant_p;
5978 parser->non_integral_constant_expression_p = false;
5979 /* Although the grammar says "conditional-expression", we parse an
5980 "assignment-expression", which also permits "throw-expression"
5981 and the use of assignment operators. In the case that
5982 ALLOW_NON_CONSTANT_P is false, we get better errors than we would
5983 otherwise. In the case that ALLOW_NON_CONSTANT_P is true, it is
5984 actually essential that we look for an assignment-expression.
5985 For example, cp_parser_initializer_clauses uses this function to
5986 determine whether a particular assignment-expression is in fact
5987 constant. */
5988 expression = cp_parser_assignment_expression (parser, /*cast_p=*/false);
5989 /* Restore the old settings. */
5990 parser->integral_constant_expression_p
5991 = saved_integral_constant_expression_p;
5992 parser->allow_non_integral_constant_expression_p
5993 = saved_allow_non_integral_constant_expression_p;
5994 if (allow_non_constant_p)
5995 *non_constant_p = parser->non_integral_constant_expression_p;
5996 else if (parser->non_integral_constant_expression_p)
5997 expression = error_mark_node;
5998 parser->non_integral_constant_expression_p
5999 = saved_non_integral_constant_expression_p;
6000
6001 return expression;
6002 }
6003
6004 /* Parse __builtin_offsetof.
6005
6006 offsetof-expression:
6007 "__builtin_offsetof" "(" type-id "," offsetof-member-designator ")"
6008
6009 offsetof-member-designator:
6010 id-expression
6011 | offsetof-member-designator "." id-expression
6012 | offsetof-member-designator "[" expression "]" */
6013
6014 static tree
6015 cp_parser_builtin_offsetof (cp_parser *parser)
6016 {
6017 int save_ice_p, save_non_ice_p;
6018 tree type, expr;
6019 cp_id_kind dummy;
6020
6021 /* We're about to accept non-integral-constant things, but will
6022 definitely yield an integral constant expression. Save and
6023 restore these values around our local parsing. */
6024 save_ice_p = parser->integral_constant_expression_p;
6025 save_non_ice_p = parser->non_integral_constant_expression_p;
6026
6027 /* Consume the "__builtin_offsetof" token. */
6028 cp_lexer_consume_token (parser->lexer);
6029 /* Consume the opening `('. */
6030 cp_parser_require (parser, CPP_OPEN_PAREN, "`('");
6031 /* Parse the type-id. */
6032 type = cp_parser_type_id (parser);
6033 /* Look for the `,'. */
6034 cp_parser_require (parser, CPP_COMMA, "`,'");
6035
6036 /* Build the (type *)null that begins the traditional offsetof macro. */
6037 expr = build_static_cast (build_pointer_type (type), null_pointer_node);
6038
6039 /* Parse the offsetof-member-designator. We begin as if we saw "expr->". */
6040 expr = cp_parser_postfix_dot_deref_expression (parser, CPP_DEREF, expr,
6041 true, &dummy);
6042 while (true)
6043 {
6044 cp_token *token = cp_lexer_peek_token (parser->lexer);
6045 switch (token->type)
6046 {
6047 case CPP_OPEN_SQUARE:
6048 /* offsetof-member-designator "[" expression "]" */
6049 expr = cp_parser_postfix_open_square_expression (parser, expr, true);
6050 break;
6051
6052 case CPP_DOT:
6053 /* offsetof-member-designator "." identifier */
6054 cp_lexer_consume_token (parser->lexer);
6055 expr = cp_parser_postfix_dot_deref_expression (parser, CPP_DOT, expr,
6056 true, &dummy);
6057 break;
6058
6059 case CPP_CLOSE_PAREN:
6060 /* Consume the ")" token. */
6061 cp_lexer_consume_token (parser->lexer);
6062 goto success;
6063
6064 default:
6065 /* Error. We know the following require will fail, but
6066 that gives the proper error message. */
6067 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
6068 cp_parser_skip_to_closing_parenthesis (parser, true, false, true);
6069 expr = error_mark_node;
6070 goto failure;
6071 }
6072 }
6073
6074 success:
6075 /* If we're processing a template, we can't finish the semantics yet.
6076 Otherwise we can fold the entire expression now. */
6077 if (processing_template_decl)
6078 expr = build1 (OFFSETOF_EXPR, size_type_node, expr);
6079 else
6080 expr = finish_offsetof (expr);
6081
6082 failure:
6083 parser->integral_constant_expression_p = save_ice_p;
6084 parser->non_integral_constant_expression_p = save_non_ice_p;
6085
6086 return expr;
6087 }
6088
6089 /* Statements [gram.stmt.stmt] */
6090
6091 /* Parse a statement.
6092
6093 statement:
6094 labeled-statement
6095 expression-statement
6096 compound-statement
6097 selection-statement
6098 iteration-statement
6099 jump-statement
6100 declaration-statement
6101 try-block
6102
6103 IN_COMPOUND is true when the statement is nested inside a
6104 cp_parser_compound_statement; this matters for certain pragmas. */
6105
6106 static void
6107 cp_parser_statement (cp_parser* parser, tree in_statement_expr,
6108 bool in_compound)
6109 {
6110 tree statement;
6111 cp_token *token;
6112 location_t statement_location;
6113
6114 restart:
6115 /* There is no statement yet. */
6116 statement = NULL_TREE;
6117 /* Peek at the next token. */
6118 token = cp_lexer_peek_token (parser->lexer);
6119 /* Remember the location of the first token in the statement. */
6120 statement_location = token->location;
6121 /* If this is a keyword, then that will often determine what kind of
6122 statement we have. */
6123 if (token->type == CPP_KEYWORD)
6124 {
6125 enum rid keyword = token->keyword;
6126
6127 switch (keyword)
6128 {
6129 case RID_CASE:
6130 case RID_DEFAULT:
6131 /* Looks like a labeled-statement with a case label.
6132 Parse the label, and then use tail recursion to parse
6133 the statement. */
6134 cp_parser_label_for_labeled_statement (parser);
6135 goto restart;
6136
6137 case RID_IF:
6138 case RID_SWITCH:
6139 statement = cp_parser_selection_statement (parser);
6140 break;
6141
6142 case RID_WHILE:
6143 case RID_DO:
6144 case RID_FOR:
6145 statement = cp_parser_iteration_statement (parser);
6146 break;
6147
6148 case RID_BREAK:
6149 case RID_CONTINUE:
6150 case RID_RETURN:
6151 case RID_GOTO:
6152 statement = cp_parser_jump_statement (parser);
6153 break;
6154
6155 /* Objective-C++ exception-handling constructs. */
6156 case RID_AT_TRY:
6157 case RID_AT_CATCH:
6158 case RID_AT_FINALLY:
6159 case RID_AT_SYNCHRONIZED:
6160 case RID_AT_THROW:
6161 statement = cp_parser_objc_statement (parser);
6162 break;
6163
6164 case RID_TRY:
6165 statement = cp_parser_try_block (parser);
6166 break;
6167
6168 default:
6169 /* It might be a keyword like `int' that can start a
6170 declaration-statement. */
6171 break;
6172 }
6173 }
6174 else if (token->type == CPP_NAME)
6175 {
6176 /* If the next token is a `:', then we are looking at a
6177 labeled-statement. */
6178 token = cp_lexer_peek_nth_token (parser->lexer, 2);
6179 if (token->type == CPP_COLON)
6180 {
6181 /* Looks like a labeled-statement with an ordinary label.
6182 Parse the label, and then use tail recursion to parse
6183 the statement. */
6184 cp_parser_label_for_labeled_statement (parser);
6185 goto restart;
6186 }
6187 }
6188 /* Anything that starts with a `{' must be a compound-statement. */
6189 else if (token->type == CPP_OPEN_BRACE)
6190 statement = cp_parser_compound_statement (parser, NULL, false);
6191 /* CPP_PRAGMA is a #pragma inside a function body, which constitutes
6192 a statement all its own. */
6193 else if (token->type == CPP_PRAGMA)
6194 {
6195 /* Only certain OpenMP pragmas are attached to statements, and thus
6196 are considered statements themselves. All others are not. In
6197 the context of a compound, accept the pragma as a "statement" and
6198 return so that we can check for a close brace. Otherwise we
6199 require a real statement and must go back and read one. */
6200 if (in_compound)
6201 cp_parser_pragma (parser, pragma_compound);
6202 else if (!cp_parser_pragma (parser, pragma_stmt))
6203 goto restart;
6204 return;
6205 }
6206 else if (token->type == CPP_EOF)
6207 {
6208 cp_parser_error (parser, "expected statement");
6209 return;
6210 }
6211
6212 /* Everything else must be a declaration-statement or an
6213 expression-statement. Try for the declaration-statement
6214 first, unless we are looking at a `;', in which case we know that
6215 we have an expression-statement. */
6216 if (!statement)
6217 {
6218 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
6219 {
6220 cp_parser_parse_tentatively (parser);
6221 /* Try to parse the declaration-statement. */
6222 cp_parser_declaration_statement (parser);
6223 /* If that worked, we're done. */
6224 if (cp_parser_parse_definitely (parser))
6225 return;
6226 }
6227 /* Look for an expression-statement instead. */
6228 statement = cp_parser_expression_statement (parser, in_statement_expr);
6229 }
6230
6231 /* Set the line number for the statement. */
6232 if (statement && STATEMENT_CODE_P (TREE_CODE (statement)))
6233 SET_EXPR_LOCATION (statement, statement_location);
6234 }
6235
6236 /* Parse the label for a labeled-statement, i.e.
6237
6238 identifier :
6239 case constant-expression :
6240 default :
6241
6242 GNU Extension:
6243 case constant-expression ... constant-expression : statement
6244
6245 When a label is parsed without errors, the label is added to the
6246 parse tree by the finish_* functions, so this function doesn't
6247 have to return the label. */
6248
6249 static void
6250 cp_parser_label_for_labeled_statement (cp_parser* parser)
6251 {
6252 cp_token *token;
6253
6254 /* The next token should be an identifier. */
6255 token = cp_lexer_peek_token (parser->lexer);
6256 if (token->type != CPP_NAME
6257 && token->type != CPP_KEYWORD)
6258 {
6259 cp_parser_error (parser, "expected labeled-statement");
6260 return;
6261 }
6262
6263 switch (token->keyword)
6264 {
6265 case RID_CASE:
6266 {
6267 tree expr, expr_hi;
6268 cp_token *ellipsis;
6269
6270 /* Consume the `case' token. */
6271 cp_lexer_consume_token (parser->lexer);
6272 /* Parse the constant-expression. */
6273 expr = cp_parser_constant_expression (parser,
6274 /*allow_non_constant_p=*/false,
6275 NULL);
6276
6277 ellipsis = cp_lexer_peek_token (parser->lexer);
6278 if (ellipsis->type == CPP_ELLIPSIS)
6279 {
6280 /* Consume the `...' token. */
6281 cp_lexer_consume_token (parser->lexer);
6282 expr_hi =
6283 cp_parser_constant_expression (parser,
6284 /*allow_non_constant_p=*/false,
6285 NULL);
6286 /* We don't need to emit warnings here, as the common code
6287 will do this for us. */
6288 }
6289 else
6290 expr_hi = NULL_TREE;
6291
6292 if (parser->in_switch_statement_p)
6293 finish_case_label (expr, expr_hi);
6294 else
6295 error ("case label %qE not within a switch statement", expr);
6296 }
6297 break;
6298
6299 case RID_DEFAULT:
6300 /* Consume the `default' token. */
6301 cp_lexer_consume_token (parser->lexer);
6302
6303 if (parser->in_switch_statement_p)
6304 finish_case_label (NULL_TREE, NULL_TREE);
6305 else
6306 error ("case label not within a switch statement");
6307 break;
6308
6309 default:
6310 /* Anything else must be an ordinary label. */
6311 finish_label_stmt (cp_parser_identifier (parser));
6312 break;
6313 }
6314
6315 /* Require the `:' token. */
6316 cp_parser_require (parser, CPP_COLON, "`:'");
6317 }
6318
6319 /* Parse an expression-statement.
6320
6321 expression-statement:
6322 expression [opt] ;
6323
6324 Returns the new EXPR_STMT -- or NULL_TREE if the expression
6325 statement consists of nothing more than an `;'. IN_STATEMENT_EXPR_P
6326 indicates whether this expression-statement is part of an
6327 expression statement. */
6328
6329 static tree
6330 cp_parser_expression_statement (cp_parser* parser, tree in_statement_expr)
6331 {
6332 tree statement = NULL_TREE;
6333
6334 /* If the next token is a ';', then there is no expression
6335 statement. */
6336 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
6337 statement = cp_parser_expression (parser, /*cast_p=*/false);
6338
6339 /* Consume the final `;'. */
6340 cp_parser_consume_semicolon_at_end_of_statement (parser);
6341
6342 if (in_statement_expr
6343 && cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
6344 /* This is the final expression statement of a statement
6345 expression. */
6346 statement = finish_stmt_expr_expr (statement, in_statement_expr);
6347 else if (statement)
6348 statement = finish_expr_stmt (statement);
6349 else
6350 finish_stmt ();
6351
6352 return statement;
6353 }
6354
6355 /* Parse a compound-statement.
6356
6357 compound-statement:
6358 { statement-seq [opt] }
6359
6360 Returns a tree representing the statement. */
6361
6362 static tree
6363 cp_parser_compound_statement (cp_parser *parser, tree in_statement_expr,
6364 bool in_try)
6365 {
6366 tree compound_stmt;
6367
6368 /* Consume the `{'. */
6369 if (!cp_parser_require (parser, CPP_OPEN_BRACE, "`{'"))
6370 return error_mark_node;
6371 /* Begin the compound-statement. */
6372 compound_stmt = begin_compound_stmt (in_try ? BCS_TRY_BLOCK : 0);
6373 /* Parse an (optional) statement-seq. */
6374 cp_parser_statement_seq_opt (parser, in_statement_expr);
6375 /* Finish the compound-statement. */
6376 finish_compound_stmt (compound_stmt);
6377 /* Consume the `}'. */
6378 cp_parser_require (parser, CPP_CLOSE_BRACE, "`}'");
6379
6380 return compound_stmt;
6381 }
6382
6383 /* Parse an (optional) statement-seq.
6384
6385 statement-seq:
6386 statement
6387 statement-seq [opt] statement */
6388
6389 static void
6390 cp_parser_statement_seq_opt (cp_parser* parser, tree in_statement_expr)
6391 {
6392 /* Scan statements until there aren't any more. */
6393 while (true)
6394 {
6395 cp_token *token = cp_lexer_peek_token (parser->lexer);
6396
6397 /* If we're looking at a `}', then we've run out of statements. */
6398 if (token->type == CPP_CLOSE_BRACE
6399 || token->type == CPP_EOF
6400 || token->type == CPP_PRAGMA_EOL)
6401 break;
6402
6403 /* Parse the statement. */
6404 cp_parser_statement (parser, in_statement_expr, true);
6405 }
6406 }
6407
6408 /* Parse a selection-statement.
6409
6410 selection-statement:
6411 if ( condition ) statement
6412 if ( condition ) statement else statement
6413 switch ( condition ) statement
6414
6415 Returns the new IF_STMT or SWITCH_STMT. */
6416
6417 static tree
6418 cp_parser_selection_statement (cp_parser* parser)
6419 {
6420 cp_token *token;
6421 enum rid keyword;
6422
6423 /* Peek at the next token. */
6424 token = cp_parser_require (parser, CPP_KEYWORD, "selection-statement");
6425
6426 /* See what kind of keyword it is. */
6427 keyword = token->keyword;
6428 switch (keyword)
6429 {
6430 case RID_IF:
6431 case RID_SWITCH:
6432 {
6433 tree statement;
6434 tree condition;
6435
6436 /* Look for the `('. */
6437 if (!cp_parser_require (parser, CPP_OPEN_PAREN, "`('"))
6438 {
6439 cp_parser_skip_to_end_of_statement (parser);
6440 return error_mark_node;
6441 }
6442
6443 /* Begin the selection-statement. */
6444 if (keyword == RID_IF)
6445 statement = begin_if_stmt ();
6446 else
6447 statement = begin_switch_stmt ();
6448
6449 /* Parse the condition. */
6450 condition = cp_parser_condition (parser);
6451 /* Look for the `)'. */
6452 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'"))
6453 cp_parser_skip_to_closing_parenthesis (parser, true, false,
6454 /*consume_paren=*/true);
6455
6456 if (keyword == RID_IF)
6457 {
6458 /* Add the condition. */
6459 finish_if_stmt_cond (condition, statement);
6460
6461 /* Parse the then-clause. */
6462 cp_parser_implicitly_scoped_statement (parser);
6463 finish_then_clause (statement);
6464
6465 /* If the next token is `else', parse the else-clause. */
6466 if (cp_lexer_next_token_is_keyword (parser->lexer,
6467 RID_ELSE))
6468 {
6469 /* Consume the `else' keyword. */
6470 cp_lexer_consume_token (parser->lexer);
6471 begin_else_clause (statement);
6472 /* Parse the else-clause. */
6473 cp_parser_implicitly_scoped_statement (parser);
6474 finish_else_clause (statement);
6475 }
6476
6477 /* Now we're all done with the if-statement. */
6478 finish_if_stmt (statement);
6479 }
6480 else
6481 {
6482 bool in_switch_statement_p;
6483 unsigned char in_statement;
6484
6485 /* Add the condition. */
6486 finish_switch_cond (condition, statement);
6487
6488 /* Parse the body of the switch-statement. */
6489 in_switch_statement_p = parser->in_switch_statement_p;
6490 in_statement = parser->in_statement;
6491 parser->in_switch_statement_p = true;
6492 parser->in_statement |= IN_SWITCH_STMT;
6493 cp_parser_implicitly_scoped_statement (parser);
6494 parser->in_switch_statement_p = in_switch_statement_p;
6495 parser->in_statement = in_statement;
6496
6497 /* Now we're all done with the switch-statement. */
6498 finish_switch_stmt (statement);
6499 }
6500
6501 return statement;
6502 }
6503 break;
6504
6505 default:
6506 cp_parser_error (parser, "expected selection-statement");
6507 return error_mark_node;
6508 }
6509 }
6510
6511 /* Parse a condition.
6512
6513 condition:
6514 expression
6515 type-specifier-seq declarator = assignment-expression
6516
6517 GNU Extension:
6518
6519 condition:
6520 type-specifier-seq declarator asm-specification [opt]
6521 attributes [opt] = assignment-expression
6522
6523 Returns the expression that should be tested. */
6524
6525 static tree
6526 cp_parser_condition (cp_parser* parser)
6527 {
6528 cp_decl_specifier_seq type_specifiers;
6529 const char *saved_message;
6530
6531 /* Try the declaration first. */
6532 cp_parser_parse_tentatively (parser);
6533 /* New types are not allowed in the type-specifier-seq for a
6534 condition. */
6535 saved_message = parser->type_definition_forbidden_message;
6536 parser->type_definition_forbidden_message
6537 = "types may not be defined in conditions";
6538 /* Parse the type-specifier-seq. */
6539 cp_parser_type_specifier_seq (parser, /*is_condition==*/true,
6540 &type_specifiers);
6541 /* Restore the saved message. */
6542 parser->type_definition_forbidden_message = saved_message;
6543 /* If all is well, we might be looking at a declaration. */
6544 if (!cp_parser_error_occurred (parser))
6545 {
6546 tree decl;
6547 tree asm_specification;
6548 tree attributes;
6549 cp_declarator *declarator;
6550 tree initializer = NULL_TREE;
6551
6552 /* Parse the declarator. */
6553 declarator = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
6554 /*ctor_dtor_or_conv_p=*/NULL,
6555 /*parenthesized_p=*/NULL,
6556 /*member_p=*/false);
6557 /* Parse the attributes. */
6558 attributes = cp_parser_attributes_opt (parser);
6559 /* Parse the asm-specification. */
6560 asm_specification = cp_parser_asm_specification_opt (parser);
6561 /* If the next token is not an `=', then we might still be
6562 looking at an expression. For example:
6563
6564 if (A(a).x)
6565
6566 looks like a decl-specifier-seq and a declarator -- but then
6567 there is no `=', so this is an expression. */
6568 cp_parser_require (parser, CPP_EQ, "`='");
6569 /* If we did see an `=', then we are looking at a declaration
6570 for sure. */
6571 if (cp_parser_parse_definitely (parser))
6572 {
6573 tree pushed_scope;
6574 bool non_constant_p;
6575
6576 /* Create the declaration. */
6577 decl = start_decl (declarator, &type_specifiers,
6578 /*initialized_p=*/true,
6579 attributes, /*prefix_attributes=*/NULL_TREE,
6580 &pushed_scope);
6581 /* Parse the assignment-expression. */
6582 initializer
6583 = cp_parser_constant_expression (parser,
6584 /*allow_non_constant_p=*/true,
6585 &non_constant_p);
6586 if (!non_constant_p)
6587 initializer = fold_non_dependent_expr (initializer);
6588
6589 /* Process the initializer. */
6590 cp_finish_decl (decl,
6591 initializer, !non_constant_p,
6592 asm_specification,
6593 LOOKUP_ONLYCONVERTING);
6594
6595 if (pushed_scope)
6596 pop_scope (pushed_scope);
6597
6598 return convert_from_reference (decl);
6599 }
6600 }
6601 /* If we didn't even get past the declarator successfully, we are
6602 definitely not looking at a declaration. */
6603 else
6604 cp_parser_abort_tentative_parse (parser);
6605
6606 /* Otherwise, we are looking at an expression. */
6607 return cp_parser_expression (parser, /*cast_p=*/false);
6608 }
6609
6610 /* Parse an iteration-statement.
6611
6612 iteration-statement:
6613 while ( condition ) statement
6614 do statement while ( expression ) ;
6615 for ( for-init-statement condition [opt] ; expression [opt] )
6616 statement
6617
6618 Returns the new WHILE_STMT, DO_STMT, or FOR_STMT. */
6619
6620 static tree
6621 cp_parser_iteration_statement (cp_parser* parser)
6622 {
6623 cp_token *token;
6624 enum rid keyword;
6625 tree statement;
6626 unsigned char in_statement;
6627
6628 /* Peek at the next token. */
6629 token = cp_parser_require (parser, CPP_KEYWORD, "iteration-statement");
6630 if (!token)
6631 return error_mark_node;
6632
6633 /* Remember whether or not we are already within an iteration
6634 statement. */
6635 in_statement = parser->in_statement;
6636
6637 /* See what kind of keyword it is. */
6638 keyword = token->keyword;
6639 switch (keyword)
6640 {
6641 case RID_WHILE:
6642 {
6643 tree condition;
6644
6645 /* Begin the while-statement. */
6646 statement = begin_while_stmt ();
6647 /* Look for the `('. */
6648 cp_parser_require (parser, CPP_OPEN_PAREN, "`('");
6649 /* Parse the condition. */
6650 condition = cp_parser_condition (parser);
6651 finish_while_stmt_cond (condition, statement);
6652 /* Look for the `)'. */
6653 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
6654 /* Parse the dependent statement. */
6655 parser->in_statement = IN_ITERATION_STMT;
6656 cp_parser_already_scoped_statement (parser);
6657 parser->in_statement = in_statement;
6658 /* We're done with the while-statement. */
6659 finish_while_stmt (statement);
6660 }
6661 break;
6662
6663 case RID_DO:
6664 {
6665 tree expression;
6666
6667 /* Begin the do-statement. */
6668 statement = begin_do_stmt ();
6669 /* Parse the body of the do-statement. */
6670 parser->in_statement = IN_ITERATION_STMT;
6671 cp_parser_implicitly_scoped_statement (parser);
6672 parser->in_statement = in_statement;
6673 finish_do_body (statement);
6674 /* Look for the `while' keyword. */
6675 cp_parser_require_keyword (parser, RID_WHILE, "`while'");
6676 /* Look for the `('. */
6677 cp_parser_require (parser, CPP_OPEN_PAREN, "`('");
6678 /* Parse the expression. */
6679 expression = cp_parser_expression (parser, /*cast_p=*/false);
6680 /* We're done with the do-statement. */
6681 finish_do_stmt (expression, statement);
6682 /* Look for the `)'. */
6683 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
6684 /* Look for the `;'. */
6685 cp_parser_require (parser, CPP_SEMICOLON, "`;'");
6686 }
6687 break;
6688
6689 case RID_FOR:
6690 {
6691 tree condition = NULL_TREE;
6692 tree expression = NULL_TREE;
6693
6694 /* Begin the for-statement. */
6695 statement = begin_for_stmt ();
6696 /* Look for the `('. */
6697 cp_parser_require (parser, CPP_OPEN_PAREN, "`('");
6698 /* Parse the initialization. */
6699 cp_parser_for_init_statement (parser);
6700 finish_for_init_stmt (statement);
6701
6702 /* If there's a condition, process it. */
6703 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
6704 condition = cp_parser_condition (parser);
6705 finish_for_cond (condition, statement);
6706 /* Look for the `;'. */
6707 cp_parser_require (parser, CPP_SEMICOLON, "`;'");
6708
6709 /* If there's an expression, process it. */
6710 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN))
6711 expression = cp_parser_expression (parser, /*cast_p=*/false);
6712 finish_for_expr (expression, statement);
6713 /* Look for the `)'. */
6714 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
6715
6716 /* Parse the body of the for-statement. */
6717 parser->in_statement = IN_ITERATION_STMT;
6718 cp_parser_already_scoped_statement (parser);
6719 parser->in_statement = in_statement;
6720
6721 /* We're done with the for-statement. */
6722 finish_for_stmt (statement);
6723 }
6724 break;
6725
6726 default:
6727 cp_parser_error (parser, "expected iteration-statement");
6728 statement = error_mark_node;
6729 break;
6730 }
6731
6732 return statement;
6733 }
6734
6735 /* Parse a for-init-statement.
6736
6737 for-init-statement:
6738 expression-statement
6739 simple-declaration */
6740
6741 static void
6742 cp_parser_for_init_statement (cp_parser* parser)
6743 {
6744 /* If the next token is a `;', then we have an empty
6745 expression-statement. Grammatically, this is also a
6746 simple-declaration, but an invalid one, because it does not
6747 declare anything. Therefore, if we did not handle this case
6748 specially, we would issue an error message about an invalid
6749 declaration. */
6750 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
6751 {
6752 /* We're going to speculatively look for a declaration, falling back
6753 to an expression, if necessary. */
6754 cp_parser_parse_tentatively (parser);
6755 /* Parse the declaration. */
6756 cp_parser_simple_declaration (parser,
6757 /*function_definition_allowed_p=*/false);
6758 /* If the tentative parse failed, then we shall need to look for an
6759 expression-statement. */
6760 if (cp_parser_parse_definitely (parser))
6761 return;
6762 }
6763
6764 cp_parser_expression_statement (parser, false);
6765 }
6766
6767 /* Parse a jump-statement.
6768
6769 jump-statement:
6770 break ;
6771 continue ;
6772 return expression [opt] ;
6773 goto identifier ;
6774
6775 GNU extension:
6776
6777 jump-statement:
6778 goto * expression ;
6779
6780 Returns the new BREAK_STMT, CONTINUE_STMT, RETURN_EXPR, or GOTO_EXPR. */
6781
6782 static tree
6783 cp_parser_jump_statement (cp_parser* parser)
6784 {
6785 tree statement = error_mark_node;
6786 cp_token *token;
6787 enum rid keyword;
6788
6789 /* Peek at the next token. */
6790 token = cp_parser_require (parser, CPP_KEYWORD, "jump-statement");
6791 if (!token)
6792 return error_mark_node;
6793
6794 /* See what kind of keyword it is. */
6795 keyword = token->keyword;
6796 switch (keyword)
6797 {
6798 case RID_BREAK:
6799 switch (parser->in_statement)
6800 {
6801 case 0:
6802 error ("break statement not within loop or switch");
6803 break;
6804 default:
6805 gcc_assert ((parser->in_statement & IN_SWITCH_STMT)
6806 || parser->in_statement == IN_ITERATION_STMT);
6807 statement = finish_break_stmt ();
6808 break;
6809 case IN_OMP_BLOCK:
6810 error ("invalid exit from OpenMP structured block");
6811 break;
6812 case IN_OMP_FOR:
6813 error ("break statement used with OpenMP for loop");
6814 break;
6815 }
6816 cp_parser_require (parser, CPP_SEMICOLON, "%<;%>");
6817 break;
6818
6819 case RID_CONTINUE:
6820 switch (parser->in_statement & ~IN_SWITCH_STMT)
6821 {
6822 case 0:
6823 error ("continue statement not within a loop");
6824 break;
6825 case IN_ITERATION_STMT:
6826 case IN_OMP_FOR:
6827 statement = finish_continue_stmt ();
6828 break;
6829 case IN_OMP_BLOCK:
6830 error ("invalid exit from OpenMP structured block");
6831 break;
6832 default:
6833 gcc_unreachable ();
6834 }
6835 cp_parser_require (parser, CPP_SEMICOLON, "%<;%>");
6836 break;
6837
6838 case RID_RETURN:
6839 {
6840 tree expr;
6841
6842 /* If the next token is a `;', then there is no
6843 expression. */
6844 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
6845 expr = cp_parser_expression (parser, /*cast_p=*/false);
6846 else
6847 expr = NULL_TREE;
6848 /* Build the return-statement. */
6849 statement = finish_return_stmt (expr);
6850 /* Look for the final `;'. */
6851 cp_parser_require (parser, CPP_SEMICOLON, "%<;%>");
6852 }
6853 break;
6854
6855 case RID_GOTO:
6856 /* Create the goto-statement. */
6857 if (cp_lexer_next_token_is (parser->lexer, CPP_MULT))
6858 {
6859 /* Issue a warning about this use of a GNU extension. */
6860 if (pedantic)
6861 pedwarn ("ISO C++ forbids computed gotos");
6862 /* Consume the '*' token. */
6863 cp_lexer_consume_token (parser->lexer);
6864 /* Parse the dependent expression. */
6865 finish_goto_stmt (cp_parser_expression (parser, /*cast_p=*/false));
6866 }
6867 else
6868 finish_goto_stmt (cp_parser_identifier (parser));
6869 /* Look for the final `;'. */
6870 cp_parser_require (parser, CPP_SEMICOLON, "%<;%>");
6871 break;
6872
6873 default:
6874 cp_parser_error (parser, "expected jump-statement");
6875 break;
6876 }
6877
6878 return statement;
6879 }
6880
6881 /* Parse a declaration-statement.
6882
6883 declaration-statement:
6884 block-declaration */
6885
6886 static void
6887 cp_parser_declaration_statement (cp_parser* parser)
6888 {
6889 void *p;
6890
6891 /* Get the high-water mark for the DECLARATOR_OBSTACK. */
6892 p = obstack_alloc (&declarator_obstack, 0);
6893
6894 /* Parse the block-declaration. */
6895 cp_parser_block_declaration (parser, /*statement_p=*/true);
6896
6897 /* Free any declarators allocated. */
6898 obstack_free (&declarator_obstack, p);
6899
6900 /* Finish off the statement. */
6901 finish_stmt ();
6902 }
6903
6904 /* Some dependent statements (like `if (cond) statement'), are
6905 implicitly in their own scope. In other words, if the statement is
6906 a single statement (as opposed to a compound-statement), it is
6907 none-the-less treated as if it were enclosed in braces. Any
6908 declarations appearing in the dependent statement are out of scope
6909 after control passes that point. This function parses a statement,
6910 but ensures that is in its own scope, even if it is not a
6911 compound-statement.
6912
6913 Returns the new statement. */
6914
6915 static tree
6916 cp_parser_implicitly_scoped_statement (cp_parser* parser)
6917 {
6918 tree statement;
6919
6920 /* Mark if () ; with a special NOP_EXPR. */
6921 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
6922 {
6923 cp_lexer_consume_token (parser->lexer);
6924 statement = add_stmt (build_empty_stmt ());
6925 }
6926 /* if a compound is opened, we simply parse the statement directly. */
6927 else if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
6928 statement = cp_parser_compound_statement (parser, NULL, false);
6929 /* If the token is not a `{', then we must take special action. */
6930 else
6931 {
6932 /* Create a compound-statement. */
6933 statement = begin_compound_stmt (0);
6934 /* Parse the dependent-statement. */
6935 cp_parser_statement (parser, NULL_TREE, false);
6936 /* Finish the dummy compound-statement. */
6937 finish_compound_stmt (statement);
6938 }
6939
6940 /* Return the statement. */
6941 return statement;
6942 }
6943
6944 /* For some dependent statements (like `while (cond) statement'), we
6945 have already created a scope. Therefore, even if the dependent
6946 statement is a compound-statement, we do not want to create another
6947 scope. */
6948
6949 static void
6950 cp_parser_already_scoped_statement (cp_parser* parser)
6951 {
6952 /* If the token is a `{', then we must take special action. */
6953 if (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE))
6954 cp_parser_statement (parser, NULL_TREE, false);
6955 else
6956 {
6957 /* Avoid calling cp_parser_compound_statement, so that we
6958 don't create a new scope. Do everything else by hand. */
6959 cp_parser_require (parser, CPP_OPEN_BRACE, "`{'");
6960 cp_parser_statement_seq_opt (parser, NULL_TREE);
6961 cp_parser_require (parser, CPP_CLOSE_BRACE, "`}'");
6962 }
6963 }
6964
6965 /* Declarations [gram.dcl.dcl] */
6966
6967 /* Parse an optional declaration-sequence.
6968
6969 declaration-seq:
6970 declaration
6971 declaration-seq declaration */
6972
6973 static void
6974 cp_parser_declaration_seq_opt (cp_parser* parser)
6975 {
6976 while (true)
6977 {
6978 cp_token *token;
6979
6980 token = cp_lexer_peek_token (parser->lexer);
6981
6982 if (token->type == CPP_CLOSE_BRACE
6983 || token->type == CPP_EOF
6984 || token->type == CPP_PRAGMA_EOL)
6985 break;
6986
6987 if (token->type == CPP_SEMICOLON)
6988 {
6989 /* A declaration consisting of a single semicolon is
6990 invalid. Allow it unless we're being pedantic. */
6991 cp_lexer_consume_token (parser->lexer);
6992 if (pedantic && !in_system_header)
6993 pedwarn ("extra %<;%>");
6994 continue;
6995 }
6996
6997 /* If we're entering or exiting a region that's implicitly
6998 extern "C", modify the lang context appropriately. */
6999 if (!parser->implicit_extern_c && token->implicit_extern_c)
7000 {
7001 push_lang_context (lang_name_c);
7002 parser->implicit_extern_c = true;
7003 }
7004 else if (parser->implicit_extern_c && !token->implicit_extern_c)
7005 {
7006 pop_lang_context ();
7007 parser->implicit_extern_c = false;
7008 }
7009
7010 if (token->type == CPP_PRAGMA)
7011 {
7012 /* A top-level declaration can consist solely of a #pragma.
7013 A nested declaration cannot, so this is done here and not
7014 in cp_parser_declaration. (A #pragma at block scope is
7015 handled in cp_parser_statement.) */
7016 cp_parser_pragma (parser, pragma_external);
7017 continue;
7018 }
7019
7020 /* Parse the declaration itself. */
7021 cp_parser_declaration (parser);
7022 }
7023 }
7024
7025 /* Parse a declaration.
7026
7027 declaration:
7028 block-declaration
7029 function-definition
7030 template-declaration
7031 explicit-instantiation
7032 explicit-specialization
7033 linkage-specification
7034 namespace-definition
7035
7036 GNU extension:
7037
7038 declaration:
7039 __extension__ declaration */
7040
7041 static void
7042 cp_parser_declaration (cp_parser* parser)
7043 {
7044 cp_token token1;
7045 cp_token token2;
7046 int saved_pedantic;
7047 void *p;
7048
7049 /* Check for the `__extension__' keyword. */
7050 if (cp_parser_extension_opt (parser, &saved_pedantic))
7051 {
7052 /* Parse the qualified declaration. */
7053 cp_parser_declaration (parser);
7054 /* Restore the PEDANTIC flag. */
7055 pedantic = saved_pedantic;
7056
7057 return;
7058 }
7059
7060 /* Try to figure out what kind of declaration is present. */
7061 token1 = *cp_lexer_peek_token (parser->lexer);
7062
7063 if (token1.type != CPP_EOF)
7064 token2 = *cp_lexer_peek_nth_token (parser->lexer, 2);
7065 else
7066 {
7067 token2.type = CPP_EOF;
7068 token2.keyword = RID_MAX;
7069 }
7070
7071 /* Get the high-water mark for the DECLARATOR_OBSTACK. */
7072 p = obstack_alloc (&declarator_obstack, 0);
7073
7074 /* If the next token is `extern' and the following token is a string
7075 literal, then we have a linkage specification. */
7076 if (token1.keyword == RID_EXTERN
7077 && cp_parser_is_string_literal (&token2))
7078 cp_parser_linkage_specification (parser);
7079 /* If the next token is `template', then we have either a template
7080 declaration, an explicit instantiation, or an explicit
7081 specialization. */
7082 else if (token1.keyword == RID_TEMPLATE)
7083 {
7084 /* `template <>' indicates a template specialization. */
7085 if (token2.type == CPP_LESS
7086 && cp_lexer_peek_nth_token (parser->lexer, 3)->type == CPP_GREATER)
7087 cp_parser_explicit_specialization (parser);
7088 /* `template <' indicates a template declaration. */
7089 else if (token2.type == CPP_LESS)
7090 cp_parser_template_declaration (parser, /*member_p=*/false);
7091 /* Anything else must be an explicit instantiation. */
7092 else
7093 cp_parser_explicit_instantiation (parser);
7094 }
7095 /* If the next token is `export', then we have a template
7096 declaration. */
7097 else if (token1.keyword == RID_EXPORT)
7098 cp_parser_template_declaration (parser, /*member_p=*/false);
7099 /* If the next token is `extern', 'static' or 'inline' and the one
7100 after that is `template', we have a GNU extended explicit
7101 instantiation directive. */
7102 else if (cp_parser_allow_gnu_extensions_p (parser)
7103 && (token1.keyword == RID_EXTERN
7104 || token1.keyword == RID_STATIC
7105 || token1.keyword == RID_INLINE)
7106 && token2.keyword == RID_TEMPLATE)
7107 cp_parser_explicit_instantiation (parser);
7108 /* If the next token is `namespace', check for a named or unnamed
7109 namespace definition. */
7110 else if (token1.keyword == RID_NAMESPACE
7111 && (/* A named namespace definition. */
7112 (token2.type == CPP_NAME
7113 && (cp_lexer_peek_nth_token (parser->lexer, 3)->type
7114 != CPP_EQ))
7115 /* An unnamed namespace definition. */
7116 || token2.type == CPP_OPEN_BRACE
7117 || token2.keyword == RID_ATTRIBUTE))
7118 cp_parser_namespace_definition (parser);
7119 /* Objective-C++ declaration/definition. */
7120 else if (c_dialect_objc () && OBJC_IS_AT_KEYWORD (token1.keyword))
7121 cp_parser_objc_declaration (parser);
7122 /* We must have either a block declaration or a function
7123 definition. */
7124 else
7125 /* Try to parse a block-declaration, or a function-definition. */
7126 cp_parser_block_declaration (parser, /*statement_p=*/false);
7127
7128 /* Free any declarators allocated. */
7129 obstack_free (&declarator_obstack, p);
7130 }
7131
7132 /* Parse a block-declaration.
7133
7134 block-declaration:
7135 simple-declaration
7136 asm-definition
7137 namespace-alias-definition
7138 using-declaration
7139 using-directive
7140
7141 GNU Extension:
7142
7143 block-declaration:
7144 __extension__ block-declaration
7145 label-declaration
7146
7147 If STATEMENT_P is TRUE, then this block-declaration is occurring as
7148 part of a declaration-statement. */
7149
7150 static void
7151 cp_parser_block_declaration (cp_parser *parser,
7152 bool statement_p)
7153 {
7154 cp_token *token1;
7155 int saved_pedantic;
7156
7157 /* Check for the `__extension__' keyword. */
7158 if (cp_parser_extension_opt (parser, &saved_pedantic))
7159 {
7160 /* Parse the qualified declaration. */
7161 cp_parser_block_declaration (parser, statement_p);
7162 /* Restore the PEDANTIC flag. */
7163 pedantic = saved_pedantic;
7164
7165 return;
7166 }
7167
7168 /* Peek at the next token to figure out which kind of declaration is
7169 present. */
7170 token1 = cp_lexer_peek_token (parser->lexer);
7171
7172 /* If the next keyword is `asm', we have an asm-definition. */
7173 if (token1->keyword == RID_ASM)
7174 {
7175 if (statement_p)
7176 cp_parser_commit_to_tentative_parse (parser);
7177 cp_parser_asm_definition (parser);
7178 }
7179 /* If the next keyword is `namespace', we have a
7180 namespace-alias-definition. */
7181 else if (token1->keyword == RID_NAMESPACE)
7182 cp_parser_namespace_alias_definition (parser);
7183 /* If the next keyword is `using', we have either a
7184 using-declaration or a using-directive. */
7185 else if (token1->keyword == RID_USING)
7186 {
7187 cp_token *token2;
7188
7189 if (statement_p)
7190 cp_parser_commit_to_tentative_parse (parser);
7191 /* If the token after `using' is `namespace', then we have a
7192 using-directive. */
7193 token2 = cp_lexer_peek_nth_token (parser->lexer, 2);
7194 if (token2->keyword == RID_NAMESPACE)
7195 cp_parser_using_directive (parser);
7196 /* Otherwise, it's a using-declaration. */
7197 else
7198 cp_parser_using_declaration (parser,
7199 /*access_declaration_p=*/false);
7200 }
7201 /* If the next keyword is `__label__' we have a label declaration. */
7202 else if (token1->keyword == RID_LABEL)
7203 {
7204 if (statement_p)
7205 cp_parser_commit_to_tentative_parse (parser);
7206 cp_parser_label_declaration (parser);
7207 }
7208 /* Anything else must be a simple-declaration. */
7209 else
7210 cp_parser_simple_declaration (parser, !statement_p);
7211 }
7212
7213 /* Parse a simple-declaration.
7214
7215 simple-declaration:
7216 decl-specifier-seq [opt] init-declarator-list [opt] ;
7217
7218 init-declarator-list:
7219 init-declarator
7220 init-declarator-list , init-declarator
7221
7222 If FUNCTION_DEFINITION_ALLOWED_P is TRUE, then we also recognize a
7223 function-definition as a simple-declaration. */
7224
7225 static void
7226 cp_parser_simple_declaration (cp_parser* parser,
7227 bool function_definition_allowed_p)
7228 {
7229 cp_decl_specifier_seq decl_specifiers;
7230 int declares_class_or_enum;
7231 bool saw_declarator;
7232
7233 /* Defer access checks until we know what is being declared; the
7234 checks for names appearing in the decl-specifier-seq should be
7235 done as if we were in the scope of the thing being declared. */
7236 push_deferring_access_checks (dk_deferred);
7237
7238 /* Parse the decl-specifier-seq. We have to keep track of whether
7239 or not the decl-specifier-seq declares a named class or
7240 enumeration type, since that is the only case in which the
7241 init-declarator-list is allowed to be empty.
7242
7243 [dcl.dcl]
7244
7245 In a simple-declaration, the optional init-declarator-list can be
7246 omitted only when declaring a class or enumeration, that is when
7247 the decl-specifier-seq contains either a class-specifier, an
7248 elaborated-type-specifier, or an enum-specifier. */
7249 cp_parser_decl_specifier_seq (parser,
7250 CP_PARSER_FLAGS_OPTIONAL,
7251 &decl_specifiers,
7252 &declares_class_or_enum);
7253 /* We no longer need to defer access checks. */
7254 stop_deferring_access_checks ();
7255
7256 /* In a block scope, a valid declaration must always have a
7257 decl-specifier-seq. By not trying to parse declarators, we can
7258 resolve the declaration/expression ambiguity more quickly. */
7259 if (!function_definition_allowed_p
7260 && !decl_specifiers.any_specifiers_p)
7261 {
7262 cp_parser_error (parser, "expected declaration");
7263 goto done;
7264 }
7265
7266 /* If the next two tokens are both identifiers, the code is
7267 erroneous. The usual cause of this situation is code like:
7268
7269 T t;
7270
7271 where "T" should name a type -- but does not. */
7272 if (!decl_specifiers.type
7273 && cp_parser_parse_and_diagnose_invalid_type_name (parser))
7274 {
7275 /* If parsing tentatively, we should commit; we really are
7276 looking at a declaration. */
7277 cp_parser_commit_to_tentative_parse (parser);
7278 /* Give up. */
7279 goto done;
7280 }
7281
7282 /* If we have seen at least one decl-specifier, and the next token
7283 is not a parenthesis, then we must be looking at a declaration.
7284 (After "int (" we might be looking at a functional cast.) */
7285 if (decl_specifiers.any_specifiers_p
7286 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_PAREN))
7287 cp_parser_commit_to_tentative_parse (parser);
7288
7289 /* Keep going until we hit the `;' at the end of the simple
7290 declaration. */
7291 saw_declarator = false;
7292 while (cp_lexer_next_token_is_not (parser->lexer,
7293 CPP_SEMICOLON))
7294 {
7295 cp_token *token;
7296 bool function_definition_p;
7297 tree decl;
7298
7299 if (saw_declarator)
7300 {
7301 /* If we are processing next declarator, coma is expected */
7302 token = cp_lexer_peek_token (parser->lexer);
7303 gcc_assert (token->type == CPP_COMMA);
7304 cp_lexer_consume_token (parser->lexer);
7305 }
7306 else
7307 saw_declarator = true;
7308
7309 /* Parse the init-declarator. */
7310 decl = cp_parser_init_declarator (parser, &decl_specifiers,
7311 /*checks=*/NULL_TREE,
7312 function_definition_allowed_p,
7313 /*member_p=*/false,
7314 declares_class_or_enum,
7315 &function_definition_p);
7316 /* If an error occurred while parsing tentatively, exit quickly.
7317 (That usually happens when in the body of a function; each
7318 statement is treated as a declaration-statement until proven
7319 otherwise.) */
7320 if (cp_parser_error_occurred (parser))
7321 goto done;
7322 /* Handle function definitions specially. */
7323 if (function_definition_p)
7324 {
7325 /* If the next token is a `,', then we are probably
7326 processing something like:
7327
7328 void f() {}, *p;
7329
7330 which is erroneous. */
7331 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
7332 error ("mixing declarations and function-definitions is forbidden");
7333 /* Otherwise, we're done with the list of declarators. */
7334 else
7335 {
7336 pop_deferring_access_checks ();
7337 return;
7338 }
7339 }
7340 /* The next token should be either a `,' or a `;'. */
7341 token = cp_lexer_peek_token (parser->lexer);
7342 /* If it's a `,', there are more declarators to come. */
7343 if (token->type == CPP_COMMA)
7344 /* will be consumed next time around */;
7345 /* If it's a `;', we are done. */
7346 else if (token->type == CPP_SEMICOLON)
7347 break;
7348 /* Anything else is an error. */
7349 else
7350 {
7351 /* If we have already issued an error message we don't need
7352 to issue another one. */
7353 if (decl != error_mark_node
7354 || cp_parser_uncommitted_to_tentative_parse_p (parser))
7355 cp_parser_error (parser, "expected %<,%> or %<;%>");
7356 /* Skip tokens until we reach the end of the statement. */
7357 cp_parser_skip_to_end_of_statement (parser);
7358 /* If the next token is now a `;', consume it. */
7359 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
7360 cp_lexer_consume_token (parser->lexer);
7361 goto done;
7362 }
7363 /* After the first time around, a function-definition is not
7364 allowed -- even if it was OK at first. For example:
7365
7366 int i, f() {}
7367
7368 is not valid. */
7369 function_definition_allowed_p = false;
7370 }
7371
7372 /* Issue an error message if no declarators are present, and the
7373 decl-specifier-seq does not itself declare a class or
7374 enumeration. */
7375 if (!saw_declarator)
7376 {
7377 if (cp_parser_declares_only_class_p (parser))
7378 shadow_tag (&decl_specifiers);
7379 /* Perform any deferred access checks. */
7380 perform_deferred_access_checks ();
7381 }
7382
7383 /* Consume the `;'. */
7384 cp_parser_require (parser, CPP_SEMICOLON, "`;'");
7385
7386 done:
7387 pop_deferring_access_checks ();
7388 }
7389
7390 /* Parse a decl-specifier-seq.
7391
7392 decl-specifier-seq:
7393 decl-specifier-seq [opt] decl-specifier
7394
7395 decl-specifier:
7396 storage-class-specifier
7397 type-specifier
7398 function-specifier
7399 friend
7400 typedef
7401
7402 GNU Extension:
7403
7404 decl-specifier:
7405 attributes
7406
7407 Set *DECL_SPECS to a representation of the decl-specifier-seq.
7408
7409 The parser flags FLAGS is used to control type-specifier parsing.
7410
7411 *DECLARES_CLASS_OR_ENUM is set to the bitwise or of the following
7412 flags:
7413
7414 1: one of the decl-specifiers is an elaborated-type-specifier
7415 (i.e., a type declaration)
7416 2: one of the decl-specifiers is an enum-specifier or a
7417 class-specifier (i.e., a type definition)
7418
7419 */
7420
7421 static void
7422 cp_parser_decl_specifier_seq (cp_parser* parser,
7423 cp_parser_flags flags,
7424 cp_decl_specifier_seq *decl_specs,
7425 int* declares_class_or_enum)
7426 {
7427 bool constructor_possible_p = !parser->in_declarator_p;
7428
7429 /* Clear DECL_SPECS. */
7430 clear_decl_specs (decl_specs);
7431
7432 /* Assume no class or enumeration type is declared. */
7433 *declares_class_or_enum = 0;
7434
7435 /* Keep reading specifiers until there are no more to read. */
7436 while (true)
7437 {
7438 bool constructor_p;
7439 bool found_decl_spec;
7440 cp_token *token;
7441
7442 /* Peek at the next token. */
7443 token = cp_lexer_peek_token (parser->lexer);
7444 /* Handle attributes. */
7445 if (token->keyword == RID_ATTRIBUTE)
7446 {
7447 /* Parse the attributes. */
7448 decl_specs->attributes
7449 = chainon (decl_specs->attributes,
7450 cp_parser_attributes_opt (parser));
7451 continue;
7452 }
7453 /* Assume we will find a decl-specifier keyword. */
7454 found_decl_spec = true;
7455 /* If the next token is an appropriate keyword, we can simply
7456 add it to the list. */
7457 switch (token->keyword)
7458 {
7459 /* decl-specifier:
7460 friend */
7461 case RID_FRIEND:
7462 if (!at_class_scope_p ())
7463 {
7464 error ("%<friend%> used outside of class");
7465 cp_lexer_purge_token (parser->lexer);
7466 }
7467 else
7468 {
7469 ++decl_specs->specs[(int) ds_friend];
7470 /* Consume the token. */
7471 cp_lexer_consume_token (parser->lexer);
7472 }
7473 break;
7474
7475 /* function-specifier:
7476 inline
7477 virtual
7478 explicit */
7479 case RID_INLINE:
7480 case RID_VIRTUAL:
7481 case RID_EXPLICIT:
7482 cp_parser_function_specifier_opt (parser, decl_specs);
7483 break;
7484
7485 /* decl-specifier:
7486 typedef */
7487 case RID_TYPEDEF:
7488 ++decl_specs->specs[(int) ds_typedef];
7489 /* Consume the token. */
7490 cp_lexer_consume_token (parser->lexer);
7491 /* A constructor declarator cannot appear in a typedef. */
7492 constructor_possible_p = false;
7493 /* The "typedef" keyword can only occur in a declaration; we
7494 may as well commit at this point. */
7495 cp_parser_commit_to_tentative_parse (parser);
7496 break;
7497
7498 /* storage-class-specifier:
7499 auto
7500 register
7501 static
7502 extern
7503 mutable
7504
7505 GNU Extension:
7506 thread */
7507 case RID_AUTO:
7508 case RID_REGISTER:
7509 case RID_STATIC:
7510 case RID_EXTERN:
7511 case RID_MUTABLE:
7512 /* Consume the token. */
7513 cp_lexer_consume_token (parser->lexer);
7514 cp_parser_set_storage_class (parser, decl_specs, token->keyword);
7515 break;
7516 case RID_THREAD:
7517 /* Consume the token. */
7518 cp_lexer_consume_token (parser->lexer);
7519 ++decl_specs->specs[(int) ds_thread];
7520 break;
7521
7522 default:
7523 /* We did not yet find a decl-specifier yet. */
7524 found_decl_spec = false;
7525 break;
7526 }
7527
7528 /* Constructors are a special case. The `S' in `S()' is not a
7529 decl-specifier; it is the beginning of the declarator. */
7530 constructor_p
7531 = (!found_decl_spec
7532 && constructor_possible_p
7533 && (cp_parser_constructor_declarator_p
7534 (parser, decl_specs->specs[(int) ds_friend] != 0)));
7535
7536 /* If we don't have a DECL_SPEC yet, then we must be looking at
7537 a type-specifier. */
7538 if (!found_decl_spec && !constructor_p)
7539 {
7540 int decl_spec_declares_class_or_enum;
7541 bool is_cv_qualifier;
7542 tree type_spec;
7543
7544 type_spec
7545 = cp_parser_type_specifier (parser, flags,
7546 decl_specs,
7547 /*is_declaration=*/true,
7548 &decl_spec_declares_class_or_enum,
7549 &is_cv_qualifier);
7550
7551 *declares_class_or_enum |= decl_spec_declares_class_or_enum;
7552
7553 /* If this type-specifier referenced a user-defined type
7554 (a typedef, class-name, etc.), then we can't allow any
7555 more such type-specifiers henceforth.
7556
7557 [dcl.spec]
7558
7559 The longest sequence of decl-specifiers that could
7560 possibly be a type name is taken as the
7561 decl-specifier-seq of a declaration. The sequence shall
7562 be self-consistent as described below.
7563
7564 [dcl.type]
7565
7566 As a general rule, at most one type-specifier is allowed
7567 in the complete decl-specifier-seq of a declaration. The
7568 only exceptions are the following:
7569
7570 -- const or volatile can be combined with any other
7571 type-specifier.
7572
7573 -- signed or unsigned can be combined with char, long,
7574 short, or int.
7575
7576 -- ..
7577
7578 Example:
7579
7580 typedef char* Pc;
7581 void g (const int Pc);
7582
7583 Here, Pc is *not* part of the decl-specifier seq; it's
7584 the declarator. Therefore, once we see a type-specifier
7585 (other than a cv-qualifier), we forbid any additional
7586 user-defined types. We *do* still allow things like `int
7587 int' to be considered a decl-specifier-seq, and issue the
7588 error message later. */
7589 if (type_spec && !is_cv_qualifier)
7590 flags |= CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES;
7591 /* A constructor declarator cannot follow a type-specifier. */
7592 if (type_spec)
7593 {
7594 constructor_possible_p = false;
7595 found_decl_spec = true;
7596 }
7597 }
7598
7599 /* If we still do not have a DECL_SPEC, then there are no more
7600 decl-specifiers. */
7601 if (!found_decl_spec)
7602 break;
7603
7604 decl_specs->any_specifiers_p = true;
7605 /* After we see one decl-specifier, further decl-specifiers are
7606 always optional. */
7607 flags |= CP_PARSER_FLAGS_OPTIONAL;
7608 }
7609
7610 cp_parser_check_decl_spec (decl_specs);
7611
7612 /* Don't allow a friend specifier with a class definition. */
7613 if (decl_specs->specs[(int) ds_friend] != 0
7614 && (*declares_class_or_enum & 2))
7615 error ("class definition may not be declared a friend");
7616 }
7617
7618 /* Parse an (optional) storage-class-specifier.
7619
7620 storage-class-specifier:
7621 auto
7622 register
7623 static
7624 extern
7625 mutable
7626
7627 GNU Extension:
7628
7629 storage-class-specifier:
7630 thread
7631
7632 Returns an IDENTIFIER_NODE corresponding to the keyword used. */
7633
7634 static tree
7635 cp_parser_storage_class_specifier_opt (cp_parser* parser)
7636 {
7637 switch (cp_lexer_peek_token (parser->lexer)->keyword)
7638 {
7639 case RID_AUTO:
7640 case RID_REGISTER:
7641 case RID_STATIC:
7642 case RID_EXTERN:
7643 case RID_MUTABLE:
7644 case RID_THREAD:
7645 /* Consume the token. */
7646 return cp_lexer_consume_token (parser->lexer)->value;
7647
7648 default:
7649 return NULL_TREE;
7650 }
7651 }
7652
7653 /* Parse an (optional) function-specifier.
7654
7655 function-specifier:
7656 inline
7657 virtual
7658 explicit
7659
7660 Returns an IDENTIFIER_NODE corresponding to the keyword used.
7661 Updates DECL_SPECS, if it is non-NULL. */
7662
7663 static tree
7664 cp_parser_function_specifier_opt (cp_parser* parser,
7665 cp_decl_specifier_seq *decl_specs)
7666 {
7667 switch (cp_lexer_peek_token (parser->lexer)->keyword)
7668 {
7669 case RID_INLINE:
7670 if (decl_specs)
7671 ++decl_specs->specs[(int) ds_inline];
7672 break;
7673
7674 case RID_VIRTUAL:
7675 /* 14.5.2.3 [temp.mem]
7676
7677 A member function template shall not be virtual. */
7678 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
7679 error ("templates may not be %<virtual%>");
7680 else if (decl_specs)
7681 ++decl_specs->specs[(int) ds_virtual];
7682 break;
7683
7684 case RID_EXPLICIT:
7685 if (decl_specs)
7686 ++decl_specs->specs[(int) ds_explicit];
7687 break;
7688
7689 default:
7690 return NULL_TREE;
7691 }
7692
7693 /* Consume the token. */
7694 return cp_lexer_consume_token (parser->lexer)->value;
7695 }
7696
7697 /* Parse a linkage-specification.
7698
7699 linkage-specification:
7700 extern string-literal { declaration-seq [opt] }
7701 extern string-literal declaration */
7702
7703 static void
7704 cp_parser_linkage_specification (cp_parser* parser)
7705 {
7706 tree linkage;
7707
7708 /* Look for the `extern' keyword. */
7709 cp_parser_require_keyword (parser, RID_EXTERN, "`extern'");
7710
7711 /* Look for the string-literal. */
7712 linkage = cp_parser_string_literal (parser, false, false);
7713
7714 /* Transform the literal into an identifier. If the literal is a
7715 wide-character string, or contains embedded NULs, then we can't
7716 handle it as the user wants. */
7717 if (strlen (TREE_STRING_POINTER (linkage))
7718 != (size_t) (TREE_STRING_LENGTH (linkage) - 1))
7719 {
7720 cp_parser_error (parser, "invalid linkage-specification");
7721 /* Assume C++ linkage. */
7722 linkage = lang_name_cplusplus;
7723 }
7724 else
7725 linkage = get_identifier (TREE_STRING_POINTER (linkage));
7726
7727 /* We're now using the new linkage. */
7728 push_lang_context (linkage);
7729
7730 /* If the next token is a `{', then we're using the first
7731 production. */
7732 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
7733 {
7734 /* Consume the `{' token. */
7735 cp_lexer_consume_token (parser->lexer);
7736 /* Parse the declarations. */
7737 cp_parser_declaration_seq_opt (parser);
7738 /* Look for the closing `}'. */
7739 cp_parser_require (parser, CPP_CLOSE_BRACE, "`}'");
7740 }
7741 /* Otherwise, there's just one declaration. */
7742 else
7743 {
7744 bool saved_in_unbraced_linkage_specification_p;
7745
7746 saved_in_unbraced_linkage_specification_p
7747 = parser->in_unbraced_linkage_specification_p;
7748 parser->in_unbraced_linkage_specification_p = true;
7749 cp_parser_declaration (parser);
7750 parser->in_unbraced_linkage_specification_p
7751 = saved_in_unbraced_linkage_specification_p;
7752 }
7753
7754 /* We're done with the linkage-specification. */
7755 pop_lang_context ();
7756 }
7757
7758 /* Special member functions [gram.special] */
7759
7760 /* Parse a conversion-function-id.
7761
7762 conversion-function-id:
7763 operator conversion-type-id
7764
7765 Returns an IDENTIFIER_NODE representing the operator. */
7766
7767 static tree
7768 cp_parser_conversion_function_id (cp_parser* parser)
7769 {
7770 tree type;
7771 tree saved_scope;
7772 tree saved_qualifying_scope;
7773 tree saved_object_scope;
7774 tree pushed_scope = NULL_TREE;
7775
7776 /* Look for the `operator' token. */
7777 if (!cp_parser_require_keyword (parser, RID_OPERATOR, "`operator'"))
7778 return error_mark_node;
7779 /* When we parse the conversion-type-id, the current scope will be
7780 reset. However, we need that information in able to look up the
7781 conversion function later, so we save it here. */
7782 saved_scope = parser->scope;
7783 saved_qualifying_scope = parser->qualifying_scope;
7784 saved_object_scope = parser->object_scope;
7785 /* We must enter the scope of the class so that the names of
7786 entities declared within the class are available in the
7787 conversion-type-id. For example, consider:
7788
7789 struct S {
7790 typedef int I;
7791 operator I();
7792 };
7793
7794 S::operator I() { ... }
7795
7796 In order to see that `I' is a type-name in the definition, we
7797 must be in the scope of `S'. */
7798 if (saved_scope)
7799 pushed_scope = push_scope (saved_scope);
7800 /* Parse the conversion-type-id. */
7801 type = cp_parser_conversion_type_id (parser);
7802 /* Leave the scope of the class, if any. */
7803 if (pushed_scope)
7804 pop_scope (pushed_scope);
7805 /* Restore the saved scope. */
7806 parser->scope = saved_scope;
7807 parser->qualifying_scope = saved_qualifying_scope;
7808 parser->object_scope = saved_object_scope;
7809 /* If the TYPE is invalid, indicate failure. */
7810 if (type == error_mark_node)
7811 return error_mark_node;
7812 return mangle_conv_op_name_for_type (type);
7813 }
7814
7815 /* Parse a conversion-type-id:
7816
7817 conversion-type-id:
7818 type-specifier-seq conversion-declarator [opt]
7819
7820 Returns the TYPE specified. */
7821
7822 static tree
7823 cp_parser_conversion_type_id (cp_parser* parser)
7824 {
7825 tree attributes;
7826 cp_decl_specifier_seq type_specifiers;
7827 cp_declarator *declarator;
7828 tree type_specified;
7829
7830 /* Parse the attributes. */
7831 attributes = cp_parser_attributes_opt (parser);
7832 /* Parse the type-specifiers. */
7833 cp_parser_type_specifier_seq (parser, /*is_condition=*/false,
7834 &type_specifiers);
7835 /* If that didn't work, stop. */
7836 if (type_specifiers.type == error_mark_node)
7837 return error_mark_node;
7838 /* Parse the conversion-declarator. */
7839 declarator = cp_parser_conversion_declarator_opt (parser);
7840
7841 type_specified = grokdeclarator (declarator, &type_specifiers, TYPENAME,
7842 /*initialized=*/0, &attributes);
7843 if (attributes)
7844 cplus_decl_attributes (&type_specified, attributes, /*flags=*/0);
7845 return type_specified;
7846 }
7847
7848 /* Parse an (optional) conversion-declarator.
7849
7850 conversion-declarator:
7851 ptr-operator conversion-declarator [opt]
7852
7853 */
7854
7855 static cp_declarator *
7856 cp_parser_conversion_declarator_opt (cp_parser* parser)
7857 {
7858 enum tree_code code;
7859 tree class_type;
7860 cp_cv_quals cv_quals;
7861
7862 /* We don't know if there's a ptr-operator next, or not. */
7863 cp_parser_parse_tentatively (parser);
7864 /* Try the ptr-operator. */
7865 code = cp_parser_ptr_operator (parser, &class_type, &cv_quals);
7866 /* If it worked, look for more conversion-declarators. */
7867 if (cp_parser_parse_definitely (parser))
7868 {
7869 cp_declarator *declarator;
7870
7871 /* Parse another optional declarator. */
7872 declarator = cp_parser_conversion_declarator_opt (parser);
7873
7874 /* Create the representation of the declarator. */
7875 if (class_type)
7876 declarator = make_ptrmem_declarator (cv_quals, class_type,
7877 declarator);
7878 else if (code == INDIRECT_REF)
7879 declarator = make_pointer_declarator (cv_quals, declarator);
7880 else
7881 declarator = make_reference_declarator (cv_quals, declarator);
7882
7883 return declarator;
7884 }
7885
7886 return NULL;
7887 }
7888
7889 /* Parse an (optional) ctor-initializer.
7890
7891 ctor-initializer:
7892 : mem-initializer-list
7893
7894 Returns TRUE iff the ctor-initializer was actually present. */
7895
7896 static bool
7897 cp_parser_ctor_initializer_opt (cp_parser* parser)
7898 {
7899 /* If the next token is not a `:', then there is no
7900 ctor-initializer. */
7901 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COLON))
7902 {
7903 /* Do default initialization of any bases and members. */
7904 if (DECL_CONSTRUCTOR_P (current_function_decl))
7905 finish_mem_initializers (NULL_TREE);
7906
7907 return false;
7908 }
7909
7910 /* Consume the `:' token. */
7911 cp_lexer_consume_token (parser->lexer);
7912 /* And the mem-initializer-list. */
7913 cp_parser_mem_initializer_list (parser);
7914
7915 return true;
7916 }
7917
7918 /* Parse a mem-initializer-list.
7919
7920 mem-initializer-list:
7921 mem-initializer
7922 mem-initializer , mem-initializer-list */
7923
7924 static void
7925 cp_parser_mem_initializer_list (cp_parser* parser)
7926 {
7927 tree mem_initializer_list = NULL_TREE;
7928
7929 /* Let the semantic analysis code know that we are starting the
7930 mem-initializer-list. */
7931 if (!DECL_CONSTRUCTOR_P (current_function_decl))
7932 error ("only constructors take base initializers");
7933
7934 /* Loop through the list. */
7935 while (true)
7936 {
7937 tree mem_initializer;
7938
7939 /* Parse the mem-initializer. */
7940 mem_initializer = cp_parser_mem_initializer (parser);
7941 /* Add it to the list, unless it was erroneous. */
7942 if (mem_initializer != error_mark_node)
7943 {
7944 TREE_CHAIN (mem_initializer) = mem_initializer_list;
7945 mem_initializer_list = mem_initializer;
7946 }
7947 /* If the next token is not a `,', we're done. */
7948 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
7949 break;
7950 /* Consume the `,' token. */
7951 cp_lexer_consume_token (parser->lexer);
7952 }
7953
7954 /* Perform semantic analysis. */
7955 if (DECL_CONSTRUCTOR_P (current_function_decl))
7956 finish_mem_initializers (mem_initializer_list);
7957 }
7958
7959 /* Parse a mem-initializer.
7960
7961 mem-initializer:
7962 mem-initializer-id ( expression-list [opt] )
7963
7964 GNU extension:
7965
7966 mem-initializer:
7967 ( expression-list [opt] )
7968
7969 Returns a TREE_LIST. The TREE_PURPOSE is the TYPE (for a base
7970 class) or FIELD_DECL (for a non-static data member) to initialize;
7971 the TREE_VALUE is the expression-list. An empty initialization
7972 list is represented by void_list_node. */
7973
7974 static tree
7975 cp_parser_mem_initializer (cp_parser* parser)
7976 {
7977 tree mem_initializer_id;
7978 tree expression_list;
7979 tree member;
7980
7981 /* Find out what is being initialized. */
7982 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
7983 {
7984 pedwarn ("anachronistic old-style base class initializer");
7985 mem_initializer_id = NULL_TREE;
7986 }
7987 else
7988 mem_initializer_id = cp_parser_mem_initializer_id (parser);
7989 member = expand_member_init (mem_initializer_id);
7990 if (member && !DECL_P (member))
7991 in_base_initializer = 1;
7992
7993 expression_list
7994 = cp_parser_parenthesized_expression_list (parser, false,
7995 /*cast_p=*/false,
7996 /*non_constant_p=*/NULL);
7997 if (expression_list == error_mark_node)
7998 return error_mark_node;
7999 if (!expression_list)
8000 expression_list = void_type_node;
8001
8002 in_base_initializer = 0;
8003
8004 return member ? build_tree_list (member, expression_list) : error_mark_node;
8005 }
8006
8007 /* Parse a mem-initializer-id.
8008
8009 mem-initializer-id:
8010 :: [opt] nested-name-specifier [opt] class-name
8011 identifier
8012
8013 Returns a TYPE indicating the class to be initializer for the first
8014 production. Returns an IDENTIFIER_NODE indicating the data member
8015 to be initialized for the second production. */
8016
8017 static tree
8018 cp_parser_mem_initializer_id (cp_parser* parser)
8019 {
8020 bool global_scope_p;
8021 bool nested_name_specifier_p;
8022 bool template_p = false;
8023 tree id;
8024
8025 /* `typename' is not allowed in this context ([temp.res]). */
8026 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TYPENAME))
8027 {
8028 error ("keyword %<typename%> not allowed in this context (a qualified "
8029 "member initializer is implicitly a type)");
8030 cp_lexer_consume_token (parser->lexer);
8031 }
8032 /* Look for the optional `::' operator. */
8033 global_scope_p
8034 = (cp_parser_global_scope_opt (parser,
8035 /*current_scope_valid_p=*/false)
8036 != NULL_TREE);
8037 /* Look for the optional nested-name-specifier. The simplest way to
8038 implement:
8039
8040 [temp.res]
8041
8042 The keyword `typename' is not permitted in a base-specifier or
8043 mem-initializer; in these contexts a qualified name that
8044 depends on a template-parameter is implicitly assumed to be a
8045 type name.
8046
8047 is to assume that we have seen the `typename' keyword at this
8048 point. */
8049 nested_name_specifier_p
8050 = (cp_parser_nested_name_specifier_opt (parser,
8051 /*typename_keyword_p=*/true,
8052 /*check_dependency_p=*/true,
8053 /*type_p=*/true,
8054 /*is_declaration=*/true)
8055 != NULL_TREE);
8056 if (nested_name_specifier_p)
8057 template_p = cp_parser_optional_template_keyword (parser);
8058 /* If there is a `::' operator or a nested-name-specifier, then we
8059 are definitely looking for a class-name. */
8060 if (global_scope_p || nested_name_specifier_p)
8061 return cp_parser_class_name (parser,
8062 /*typename_keyword_p=*/true,
8063 /*template_keyword_p=*/template_p,
8064 none_type,
8065 /*check_dependency_p=*/true,
8066 /*class_head_p=*/false,
8067 /*is_declaration=*/true);
8068 /* Otherwise, we could also be looking for an ordinary identifier. */
8069 cp_parser_parse_tentatively (parser);
8070 /* Try a class-name. */
8071 id = cp_parser_class_name (parser,
8072 /*typename_keyword_p=*/true,
8073 /*template_keyword_p=*/false,
8074 none_type,
8075 /*check_dependency_p=*/true,
8076 /*class_head_p=*/false,
8077 /*is_declaration=*/true);
8078 /* If we found one, we're done. */
8079 if (cp_parser_parse_definitely (parser))
8080 return id;
8081 /* Otherwise, look for an ordinary identifier. */
8082 return cp_parser_identifier (parser);
8083 }
8084
8085 /* Overloading [gram.over] */
8086
8087 /* Parse an operator-function-id.
8088
8089 operator-function-id:
8090 operator operator
8091
8092 Returns an IDENTIFIER_NODE for the operator which is a
8093 human-readable spelling of the identifier, e.g., `operator +'. */
8094
8095 static tree
8096 cp_parser_operator_function_id (cp_parser* parser)
8097 {
8098 /* Look for the `operator' keyword. */
8099 if (!cp_parser_require_keyword (parser, RID_OPERATOR, "`operator'"))
8100 return error_mark_node;
8101 /* And then the name of the operator itself. */
8102 return cp_parser_operator (parser);
8103 }
8104
8105 /* Parse an operator.
8106
8107 operator:
8108 new delete new[] delete[] + - * / % ^ & | ~ ! = < >
8109 += -= *= /= %= ^= &= |= << >> >>= <<= == != <= >= &&
8110 || ++ -- , ->* -> () []
8111
8112 GNU Extensions:
8113
8114 operator:
8115 <? >? <?= >?=
8116
8117 Returns an IDENTIFIER_NODE for the operator which is a
8118 human-readable spelling of the identifier, e.g., `operator +'. */
8119
8120 static tree
8121 cp_parser_operator (cp_parser* parser)
8122 {
8123 tree id = NULL_TREE;
8124 cp_token *token;
8125
8126 /* Peek at the next token. */
8127 token = cp_lexer_peek_token (parser->lexer);
8128 /* Figure out which operator we have. */
8129 switch (token->type)
8130 {
8131 case CPP_KEYWORD:
8132 {
8133 enum tree_code op;
8134
8135 /* The keyword should be either `new' or `delete'. */
8136 if (token->keyword == RID_NEW)
8137 op = NEW_EXPR;
8138 else if (token->keyword == RID_DELETE)
8139 op = DELETE_EXPR;
8140 else
8141 break;
8142
8143 /* Consume the `new' or `delete' token. */
8144 cp_lexer_consume_token (parser->lexer);
8145
8146 /* Peek at the next token. */
8147 token = cp_lexer_peek_token (parser->lexer);
8148 /* If it's a `[' token then this is the array variant of the
8149 operator. */
8150 if (token->type == CPP_OPEN_SQUARE)
8151 {
8152 /* Consume the `[' token. */
8153 cp_lexer_consume_token (parser->lexer);
8154 /* Look for the `]' token. */
8155 cp_parser_require (parser, CPP_CLOSE_SQUARE, "`]'");
8156 id = ansi_opname (op == NEW_EXPR
8157 ? VEC_NEW_EXPR : VEC_DELETE_EXPR);
8158 }
8159 /* Otherwise, we have the non-array variant. */
8160 else
8161 id = ansi_opname (op);
8162
8163 return id;
8164 }
8165
8166 case CPP_PLUS:
8167 id = ansi_opname (PLUS_EXPR);
8168 break;
8169
8170 case CPP_MINUS:
8171 id = ansi_opname (MINUS_EXPR);
8172 break;
8173
8174 case CPP_MULT:
8175 id = ansi_opname (MULT_EXPR);
8176 break;
8177
8178 case CPP_DIV:
8179 id = ansi_opname (TRUNC_DIV_EXPR);
8180 break;
8181
8182 case CPP_MOD:
8183 id = ansi_opname (TRUNC_MOD_EXPR);
8184 break;
8185
8186 case CPP_XOR:
8187 id = ansi_opname (BIT_XOR_EXPR);
8188 break;
8189
8190 case CPP_AND:
8191 id = ansi_opname (BIT_AND_EXPR);
8192 break;
8193
8194 case CPP_OR:
8195 id = ansi_opname (BIT_IOR_EXPR);
8196 break;
8197
8198 case CPP_COMPL:
8199 id = ansi_opname (BIT_NOT_EXPR);
8200 break;
8201
8202 case CPP_NOT:
8203 id = ansi_opname (TRUTH_NOT_EXPR);
8204 break;
8205
8206 case CPP_EQ:
8207 id = ansi_assopname (NOP_EXPR);
8208 break;
8209
8210 case CPP_LESS:
8211 id = ansi_opname (LT_EXPR);
8212 break;
8213
8214 case CPP_GREATER:
8215 id = ansi_opname (GT_EXPR);
8216 break;
8217
8218 case CPP_PLUS_EQ:
8219 id = ansi_assopname (PLUS_EXPR);
8220 break;
8221
8222 case CPP_MINUS_EQ:
8223 id = ansi_assopname (MINUS_EXPR);
8224 break;
8225
8226 case CPP_MULT_EQ:
8227 id = ansi_assopname (MULT_EXPR);
8228 break;
8229
8230 case CPP_DIV_EQ:
8231 id = ansi_assopname (TRUNC_DIV_EXPR);
8232 break;
8233
8234 case CPP_MOD_EQ:
8235 id = ansi_assopname (TRUNC_MOD_EXPR);
8236 break;
8237
8238 case CPP_XOR_EQ:
8239 id = ansi_assopname (BIT_XOR_EXPR);
8240 break;
8241
8242 case CPP_AND_EQ:
8243 id = ansi_assopname (BIT_AND_EXPR);
8244 break;
8245
8246 case CPP_OR_EQ:
8247 id = ansi_assopname (BIT_IOR_EXPR);
8248 break;
8249
8250 case CPP_LSHIFT:
8251 id = ansi_opname (LSHIFT_EXPR);
8252 break;
8253
8254 case CPP_RSHIFT:
8255 id = ansi_opname (RSHIFT_EXPR);
8256 break;
8257
8258 case CPP_LSHIFT_EQ:
8259 id = ansi_assopname (LSHIFT_EXPR);
8260 break;
8261
8262 case CPP_RSHIFT_EQ:
8263 id = ansi_assopname (RSHIFT_EXPR);
8264 break;
8265
8266 case CPP_EQ_EQ:
8267 id = ansi_opname (EQ_EXPR);
8268 break;
8269
8270 case CPP_NOT_EQ:
8271 id = ansi_opname (NE_EXPR);
8272 break;
8273
8274 case CPP_LESS_EQ:
8275 id = ansi_opname (LE_EXPR);
8276 break;
8277
8278 case CPP_GREATER_EQ:
8279 id = ansi_opname (GE_EXPR);
8280 break;
8281
8282 case CPP_AND_AND:
8283 id = ansi_opname (TRUTH_ANDIF_EXPR);
8284 break;
8285
8286 case CPP_OR_OR:
8287 id = ansi_opname (TRUTH_ORIF_EXPR);
8288 break;
8289
8290 case CPP_PLUS_PLUS:
8291 id = ansi_opname (POSTINCREMENT_EXPR);
8292 break;
8293
8294 case CPP_MINUS_MINUS:
8295 id = ansi_opname (PREDECREMENT_EXPR);
8296 break;
8297
8298 case CPP_COMMA:
8299 id = ansi_opname (COMPOUND_EXPR);
8300 break;
8301
8302 case CPP_DEREF_STAR:
8303 id = ansi_opname (MEMBER_REF);
8304 break;
8305
8306 case CPP_DEREF:
8307 id = ansi_opname (COMPONENT_REF);
8308 break;
8309
8310 case CPP_OPEN_PAREN:
8311 /* Consume the `('. */
8312 cp_lexer_consume_token (parser->lexer);
8313 /* Look for the matching `)'. */
8314 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
8315 return ansi_opname (CALL_EXPR);
8316
8317 case CPP_OPEN_SQUARE:
8318 /* Consume the `['. */
8319 cp_lexer_consume_token (parser->lexer);
8320 /* Look for the matching `]'. */
8321 cp_parser_require (parser, CPP_CLOSE_SQUARE, "`]'");
8322 return ansi_opname (ARRAY_REF);
8323
8324 default:
8325 /* Anything else is an error. */
8326 break;
8327 }
8328
8329 /* If we have selected an identifier, we need to consume the
8330 operator token. */
8331 if (id)
8332 cp_lexer_consume_token (parser->lexer);
8333 /* Otherwise, no valid operator name was present. */
8334 else
8335 {
8336 cp_parser_error (parser, "expected operator");
8337 id = error_mark_node;
8338 }
8339
8340 return id;
8341 }
8342
8343 /* Parse a template-declaration.
8344
8345 template-declaration:
8346 export [opt] template < template-parameter-list > declaration
8347
8348 If MEMBER_P is TRUE, this template-declaration occurs within a
8349 class-specifier.
8350
8351 The grammar rule given by the standard isn't correct. What
8352 is really meant is:
8353
8354 template-declaration:
8355 export [opt] template-parameter-list-seq
8356 decl-specifier-seq [opt] init-declarator [opt] ;
8357 export [opt] template-parameter-list-seq
8358 function-definition
8359
8360 template-parameter-list-seq:
8361 template-parameter-list-seq [opt]
8362 template < template-parameter-list > */
8363
8364 static void
8365 cp_parser_template_declaration (cp_parser* parser, bool member_p)
8366 {
8367 /* Check for `export'. */
8368 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_EXPORT))
8369 {
8370 /* Consume the `export' token. */
8371 cp_lexer_consume_token (parser->lexer);
8372 /* Warn that we do not support `export'. */
8373 warning (0, "keyword %<export%> not implemented, and will be ignored");
8374 }
8375
8376 cp_parser_template_declaration_after_export (parser, member_p);
8377 }
8378
8379 /* Parse a template-parameter-list.
8380
8381 template-parameter-list:
8382 template-parameter
8383 template-parameter-list , template-parameter
8384
8385 Returns a TREE_LIST. Each node represents a template parameter.
8386 The nodes are connected via their TREE_CHAINs. */
8387
8388 static tree
8389 cp_parser_template_parameter_list (cp_parser* parser)
8390 {
8391 tree parameter_list = NULL_TREE;
8392
8393 begin_template_parm_list ();
8394 while (true)
8395 {
8396 tree parameter;
8397 cp_token *token;
8398 bool is_non_type;
8399
8400 /* Parse the template-parameter. */
8401 parameter = cp_parser_template_parameter (parser, &is_non_type);
8402 /* Add it to the list. */
8403 if (parameter != error_mark_node)
8404 parameter_list = process_template_parm (parameter_list,
8405 parameter,
8406 is_non_type);
8407 else
8408 {
8409 tree err_parm = build_tree_list (parameter, parameter);
8410 TREE_VALUE (err_parm) = error_mark_node;
8411 parameter_list = chainon (parameter_list, err_parm);
8412 }
8413
8414 /* Peek at the next token. */
8415 token = cp_lexer_peek_token (parser->lexer);
8416 /* If it's not a `,', we're done. */
8417 if (token->type != CPP_COMMA)
8418 break;
8419 /* Otherwise, consume the `,' token. */
8420 cp_lexer_consume_token (parser->lexer);
8421 }
8422
8423 return end_template_parm_list (parameter_list);
8424 }
8425
8426 /* Parse a template-parameter.
8427
8428 template-parameter:
8429 type-parameter
8430 parameter-declaration
8431
8432 If all goes well, returns a TREE_LIST. The TREE_VALUE represents
8433 the parameter. The TREE_PURPOSE is the default value, if any.
8434 Returns ERROR_MARK_NODE on failure. *IS_NON_TYPE is set to true
8435 iff this parameter is a non-type parameter. */
8436
8437 static tree
8438 cp_parser_template_parameter (cp_parser* parser, bool *is_non_type)
8439 {
8440 cp_token *token;
8441 cp_parameter_declarator *parameter_declarator;
8442 tree parm;
8443
8444 /* Assume it is a type parameter or a template parameter. */
8445 *is_non_type = false;
8446 /* Peek at the next token. */
8447 token = cp_lexer_peek_token (parser->lexer);
8448 /* If it is `class' or `template', we have a type-parameter. */
8449 if (token->keyword == RID_TEMPLATE)
8450 return cp_parser_type_parameter (parser);
8451 /* If it is `class' or `typename' we do not know yet whether it is a
8452 type parameter or a non-type parameter. Consider:
8453
8454 template <typename T, typename T::X X> ...
8455
8456 or:
8457
8458 template <class C, class D*> ...
8459
8460 Here, the first parameter is a type parameter, and the second is
8461 a non-type parameter. We can tell by looking at the token after
8462 the identifier -- if it is a `,', `=', or `>' then we have a type
8463 parameter. */
8464 if (token->keyword == RID_TYPENAME || token->keyword == RID_CLASS)
8465 {
8466 /* Peek at the token after `class' or `typename'. */
8467 token = cp_lexer_peek_nth_token (parser->lexer, 2);
8468 /* If it's an identifier, skip it. */
8469 if (token->type == CPP_NAME)
8470 token = cp_lexer_peek_nth_token (parser->lexer, 3);
8471 /* Now, see if the token looks like the end of a template
8472 parameter. */
8473 if (token->type == CPP_COMMA
8474 || token->type == CPP_EQ
8475 || token->type == CPP_GREATER)
8476 return cp_parser_type_parameter (parser);
8477 }
8478
8479 /* Otherwise, it is a non-type parameter.
8480
8481 [temp.param]
8482
8483 When parsing a default template-argument for a non-type
8484 template-parameter, the first non-nested `>' is taken as the end
8485 of the template parameter-list rather than a greater-than
8486 operator. */
8487 *is_non_type = true;
8488 parameter_declarator
8489 = cp_parser_parameter_declaration (parser, /*template_parm_p=*/true,
8490 /*parenthesized_p=*/NULL);
8491 parm = grokdeclarator (parameter_declarator->declarator,
8492 &parameter_declarator->decl_specifiers,
8493 PARM, /*initialized=*/0,
8494 /*attrlist=*/NULL);
8495 if (parm == error_mark_node)
8496 return error_mark_node;
8497 return build_tree_list (parameter_declarator->default_argument, parm);
8498 }
8499
8500 /* Parse a type-parameter.
8501
8502 type-parameter:
8503 class identifier [opt]
8504 class identifier [opt] = type-id
8505 typename identifier [opt]
8506 typename identifier [opt] = type-id
8507 template < template-parameter-list > class identifier [opt]
8508 template < template-parameter-list > class identifier [opt]
8509 = id-expression
8510
8511 Returns a TREE_LIST. The TREE_VALUE is itself a TREE_LIST. The
8512 TREE_PURPOSE is the default-argument, if any. The TREE_VALUE is
8513 the declaration of the parameter. */
8514
8515 static tree
8516 cp_parser_type_parameter (cp_parser* parser)
8517 {
8518 cp_token *token;
8519 tree parameter;
8520
8521 /* Look for a keyword to tell us what kind of parameter this is. */
8522 token = cp_parser_require (parser, CPP_KEYWORD,
8523 "`class', `typename', or `template'");
8524 if (!token)
8525 return error_mark_node;
8526
8527 switch (token->keyword)
8528 {
8529 case RID_CLASS:
8530 case RID_TYPENAME:
8531 {
8532 tree identifier;
8533 tree default_argument;
8534
8535 /* If the next token is an identifier, then it names the
8536 parameter. */
8537 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
8538 identifier = cp_parser_identifier (parser);
8539 else
8540 identifier = NULL_TREE;
8541
8542 /* Create the parameter. */
8543 parameter = finish_template_type_parm (class_type_node, identifier);
8544
8545 /* If the next token is an `=', we have a default argument. */
8546 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
8547 {
8548 /* Consume the `=' token. */
8549 cp_lexer_consume_token (parser->lexer);
8550 /* Parse the default-argument. */
8551 push_deferring_access_checks (dk_no_deferred);
8552 default_argument = cp_parser_type_id (parser);
8553 pop_deferring_access_checks ();
8554 }
8555 else
8556 default_argument = NULL_TREE;
8557
8558 /* Create the combined representation of the parameter and the
8559 default argument. */
8560 parameter = build_tree_list (default_argument, parameter);
8561 }
8562 break;
8563
8564 case RID_TEMPLATE:
8565 {
8566 tree parameter_list;
8567 tree identifier;
8568 tree default_argument;
8569
8570 /* Look for the `<'. */
8571 cp_parser_require (parser, CPP_LESS, "`<'");
8572 /* Parse the template-parameter-list. */
8573 parameter_list = cp_parser_template_parameter_list (parser);
8574 /* Look for the `>'. */
8575 cp_parser_require (parser, CPP_GREATER, "`>'");
8576 /* Look for the `class' keyword. */
8577 cp_parser_require_keyword (parser, RID_CLASS, "`class'");
8578 /* If the next token is an `=', then there is a
8579 default-argument. If the next token is a `>', we are at
8580 the end of the parameter-list. If the next token is a `,',
8581 then we are at the end of this parameter. */
8582 if (cp_lexer_next_token_is_not (parser->lexer, CPP_EQ)
8583 && cp_lexer_next_token_is_not (parser->lexer, CPP_GREATER)
8584 && cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
8585 {
8586 identifier = cp_parser_identifier (parser);
8587 /* Treat invalid names as if the parameter were nameless. */
8588 if (identifier == error_mark_node)
8589 identifier = NULL_TREE;
8590 }
8591 else
8592 identifier = NULL_TREE;
8593
8594 /* Create the template parameter. */
8595 parameter = finish_template_template_parm (class_type_node,
8596 identifier);
8597
8598 /* If the next token is an `=', then there is a
8599 default-argument. */
8600 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
8601 {
8602 bool is_template;
8603
8604 /* Consume the `='. */
8605 cp_lexer_consume_token (parser->lexer);
8606 /* Parse the id-expression. */
8607 push_deferring_access_checks (dk_no_deferred);
8608 default_argument
8609 = cp_parser_id_expression (parser,
8610 /*template_keyword_p=*/false,
8611 /*check_dependency_p=*/true,
8612 /*template_p=*/&is_template,
8613 /*declarator_p=*/false,
8614 /*optional_p=*/false);
8615 if (TREE_CODE (default_argument) == TYPE_DECL)
8616 /* If the id-expression was a template-id that refers to
8617 a template-class, we already have the declaration here,
8618 so no further lookup is needed. */
8619 ;
8620 else
8621 /* Look up the name. */
8622 default_argument
8623 = cp_parser_lookup_name (parser, default_argument,
8624 none_type,
8625 /*is_template=*/is_template,
8626 /*is_namespace=*/false,
8627 /*check_dependency=*/true,
8628 /*ambiguous_decls=*/NULL);
8629 /* See if the default argument is valid. */
8630 default_argument
8631 = check_template_template_default_arg (default_argument);
8632 pop_deferring_access_checks ();
8633 }
8634 else
8635 default_argument = NULL_TREE;
8636
8637 /* Create the combined representation of the parameter and the
8638 default argument. */
8639 parameter = build_tree_list (default_argument, parameter);
8640 }
8641 break;
8642
8643 default:
8644 gcc_unreachable ();
8645 break;
8646 }
8647
8648 return parameter;
8649 }
8650
8651 /* Parse a template-id.
8652
8653 template-id:
8654 template-name < template-argument-list [opt] >
8655
8656 If TEMPLATE_KEYWORD_P is TRUE, then we have just seen the
8657 `template' keyword. In this case, a TEMPLATE_ID_EXPR will be
8658 returned. Otherwise, if the template-name names a function, or set
8659 of functions, returns a TEMPLATE_ID_EXPR. If the template-name
8660 names a class, returns a TYPE_DECL for the specialization.
8661
8662 If CHECK_DEPENDENCY_P is FALSE, names are looked up in
8663 uninstantiated templates. */
8664
8665 static tree
8666 cp_parser_template_id (cp_parser *parser,
8667 bool template_keyword_p,
8668 bool check_dependency_p,
8669 bool is_declaration)
8670 {
8671 tree template;
8672 tree arguments;
8673 tree template_id;
8674 cp_token_position start_of_id = 0;
8675 tree access_check = NULL_TREE;
8676 cp_token *next_token, *next_token_2;
8677 bool is_identifier;
8678
8679 /* If the next token corresponds to a template-id, there is no need
8680 to reparse it. */
8681 next_token = cp_lexer_peek_token (parser->lexer);
8682 if (next_token->type == CPP_TEMPLATE_ID)
8683 {
8684 tree value;
8685 tree check;
8686
8687 /* Get the stored value. */
8688 value = cp_lexer_consume_token (parser->lexer)->value;
8689 /* Perform any access checks that were deferred. */
8690 for (check = TREE_PURPOSE (value); check; check = TREE_CHAIN (check))
8691 perform_or_defer_access_check (TREE_PURPOSE (check),
8692 TREE_VALUE (check));
8693 /* Return the stored value. */
8694 return TREE_VALUE (value);
8695 }
8696
8697 /* Avoid performing name lookup if there is no possibility of
8698 finding a template-id. */
8699 if ((next_token->type != CPP_NAME && next_token->keyword != RID_OPERATOR)
8700 || (next_token->type == CPP_NAME
8701 && !cp_parser_nth_token_starts_template_argument_list_p
8702 (parser, 2)))
8703 {
8704 cp_parser_error (parser, "expected template-id");
8705 return error_mark_node;
8706 }
8707
8708 /* Remember where the template-id starts. */
8709 if (cp_parser_uncommitted_to_tentative_parse_p (parser))
8710 start_of_id = cp_lexer_token_position (parser->lexer, false);
8711
8712 push_deferring_access_checks (dk_deferred);
8713
8714 /* Parse the template-name. */
8715 is_identifier = false;
8716 template = cp_parser_template_name (parser, template_keyword_p,
8717 check_dependency_p,
8718 is_declaration,
8719 &is_identifier);
8720 if (template == error_mark_node || is_identifier)
8721 {
8722 pop_deferring_access_checks ();
8723 return template;
8724 }
8725
8726 /* If we find the sequence `[:' after a template-name, it's probably
8727 a digraph-typo for `< ::'. Substitute the tokens and check if we can
8728 parse correctly the argument list. */
8729 next_token = cp_lexer_peek_token (parser->lexer);
8730 next_token_2 = cp_lexer_peek_nth_token (parser->lexer, 2);
8731 if (next_token->type == CPP_OPEN_SQUARE
8732 && next_token->flags & DIGRAPH
8733 && next_token_2->type == CPP_COLON
8734 && !(next_token_2->flags & PREV_WHITE))
8735 {
8736 cp_parser_parse_tentatively (parser);
8737 /* Change `:' into `::'. */
8738 next_token_2->type = CPP_SCOPE;
8739 /* Consume the first token (CPP_OPEN_SQUARE - which we pretend it is
8740 CPP_LESS. */
8741 cp_lexer_consume_token (parser->lexer);
8742 /* Parse the arguments. */
8743 arguments = cp_parser_enclosed_template_argument_list (parser);
8744 if (!cp_parser_parse_definitely (parser))
8745 {
8746 /* If we couldn't parse an argument list, then we revert our changes
8747 and return simply an error. Maybe this is not a template-id
8748 after all. */
8749 next_token_2->type = CPP_COLON;
8750 cp_parser_error (parser, "expected %<<%>");
8751 pop_deferring_access_checks ();
8752 return error_mark_node;
8753 }
8754 /* Otherwise, emit an error about the invalid digraph, but continue
8755 parsing because we got our argument list. */
8756 pedwarn ("%<<::%> cannot begin a template-argument list");
8757 inform ("%<<:%> is an alternate spelling for %<[%>. Insert whitespace "
8758 "between %<<%> and %<::%>");
8759 if (!flag_permissive)
8760 {
8761 static bool hint;
8762 if (!hint)
8763 {
8764 inform ("(if you use -fpermissive G++ will accept your code)");
8765 hint = true;
8766 }
8767 }
8768 }
8769 else
8770 {
8771 /* Look for the `<' that starts the template-argument-list. */
8772 if (!cp_parser_require (parser, CPP_LESS, "`<'"))
8773 {
8774 pop_deferring_access_checks ();
8775 return error_mark_node;
8776 }
8777 /* Parse the arguments. */
8778 arguments = cp_parser_enclosed_template_argument_list (parser);
8779 }
8780
8781 /* Build a representation of the specialization. */
8782 if (TREE_CODE (template) == IDENTIFIER_NODE)
8783 template_id = build_min_nt (TEMPLATE_ID_EXPR, template, arguments);
8784 else if (DECL_CLASS_TEMPLATE_P (template)
8785 || DECL_TEMPLATE_TEMPLATE_PARM_P (template))
8786 {
8787 bool entering_scope;
8788 /* In "template <typename T> ... A<T>::", A<T> is the abstract A
8789 template (rather than some instantiation thereof) only if
8790 is not nested within some other construct. For example, in
8791 "template <typename T> void f(T) { A<T>::", A<T> is just an
8792 instantiation of A. */
8793 entering_scope = (template_parm_scope_p ()
8794 && cp_lexer_next_token_is (parser->lexer,
8795 CPP_SCOPE));
8796 template_id
8797 = finish_template_type (template, arguments, entering_scope);
8798 }
8799 else
8800 {
8801 /* If it's not a class-template or a template-template, it should be
8802 a function-template. */
8803 gcc_assert ((DECL_FUNCTION_TEMPLATE_P (template)
8804 || TREE_CODE (template) == OVERLOAD
8805 || BASELINK_P (template)));
8806
8807 template_id = lookup_template_function (template, arguments);
8808 }
8809
8810 /* Retrieve any deferred checks. Do not pop this access checks yet
8811 so the memory will not be reclaimed during token replacing below. */
8812 access_check = get_deferred_access_checks ();
8813
8814 /* If parsing tentatively, replace the sequence of tokens that makes
8815 up the template-id with a CPP_TEMPLATE_ID token. That way,
8816 should we re-parse the token stream, we will not have to repeat
8817 the effort required to do the parse, nor will we issue duplicate
8818 error messages about problems during instantiation of the
8819 template. */
8820 if (start_of_id)
8821 {
8822 cp_token *token = cp_lexer_token_at (parser->lexer, start_of_id);
8823
8824 /* Reset the contents of the START_OF_ID token. */
8825 token->type = CPP_TEMPLATE_ID;
8826 token->value = build_tree_list (access_check, template_id);
8827 token->keyword = RID_MAX;
8828
8829 /* Purge all subsequent tokens. */
8830 cp_lexer_purge_tokens_after (parser->lexer, start_of_id);
8831
8832 /* ??? Can we actually assume that, if template_id ==
8833 error_mark_node, we will have issued a diagnostic to the
8834 user, as opposed to simply marking the tentative parse as
8835 failed? */
8836 if (cp_parser_error_occurred (parser) && template_id != error_mark_node)
8837 error ("parse error in template argument list");
8838 }
8839
8840 pop_deferring_access_checks ();
8841 return template_id;
8842 }
8843
8844 /* Parse a template-name.
8845
8846 template-name:
8847 identifier
8848
8849 The standard should actually say:
8850
8851 template-name:
8852 identifier
8853 operator-function-id
8854
8855 A defect report has been filed about this issue.
8856
8857 A conversion-function-id cannot be a template name because they cannot
8858 be part of a template-id. In fact, looking at this code:
8859
8860 a.operator K<int>()
8861
8862 the conversion-function-id is "operator K<int>", and K<int> is a type-id.
8863 It is impossible to call a templated conversion-function-id with an
8864 explicit argument list, since the only allowed template parameter is
8865 the type to which it is converting.
8866
8867 If TEMPLATE_KEYWORD_P is true, then we have just seen the
8868 `template' keyword, in a construction like:
8869
8870 T::template f<3>()
8871
8872 In that case `f' is taken to be a template-name, even though there
8873 is no way of knowing for sure.
8874
8875 Returns the TEMPLATE_DECL for the template, or an OVERLOAD if the
8876 name refers to a set of overloaded functions, at least one of which
8877 is a template, or an IDENTIFIER_NODE with the name of the template,
8878 if TEMPLATE_KEYWORD_P is true. If CHECK_DEPENDENCY_P is FALSE,
8879 names are looked up inside uninstantiated templates. */
8880
8881 static tree
8882 cp_parser_template_name (cp_parser* parser,
8883 bool template_keyword_p,
8884 bool check_dependency_p,
8885 bool is_declaration,
8886 bool *is_identifier)
8887 {
8888 tree identifier;
8889 tree decl;
8890 tree fns;
8891
8892 /* If the next token is `operator', then we have either an
8893 operator-function-id or a conversion-function-id. */
8894 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_OPERATOR))
8895 {
8896 /* We don't know whether we're looking at an
8897 operator-function-id or a conversion-function-id. */
8898 cp_parser_parse_tentatively (parser);
8899 /* Try an operator-function-id. */
8900 identifier = cp_parser_operator_function_id (parser);
8901 /* If that didn't work, try a conversion-function-id. */
8902 if (!cp_parser_parse_definitely (parser))
8903 {
8904 cp_parser_error (parser, "expected template-name");
8905 return error_mark_node;
8906 }
8907 }
8908 /* Look for the identifier. */
8909 else
8910 identifier = cp_parser_identifier (parser);
8911
8912 /* If we didn't find an identifier, we don't have a template-id. */
8913 if (identifier == error_mark_node)
8914 return error_mark_node;
8915
8916 /* If the name immediately followed the `template' keyword, then it
8917 is a template-name. However, if the next token is not `<', then
8918 we do not treat it as a template-name, since it is not being used
8919 as part of a template-id. This enables us to handle constructs
8920 like:
8921
8922 template <typename T> struct S { S(); };
8923 template <typename T> S<T>::S();
8924
8925 correctly. We would treat `S' as a template -- if it were `S<T>'
8926 -- but we do not if there is no `<'. */
8927
8928 if (processing_template_decl
8929 && cp_parser_nth_token_starts_template_argument_list_p (parser, 1))
8930 {
8931 /* In a declaration, in a dependent context, we pretend that the
8932 "template" keyword was present in order to improve error
8933 recovery. For example, given:
8934
8935 template <typename T> void f(T::X<int>);
8936
8937 we want to treat "X<int>" as a template-id. */
8938 if (is_declaration
8939 && !template_keyword_p
8940 && parser->scope && TYPE_P (parser->scope)
8941 && check_dependency_p
8942 && dependent_type_p (parser->scope)
8943 /* Do not do this for dtors (or ctors), since they never
8944 need the template keyword before their name. */
8945 && !constructor_name_p (identifier, parser->scope))
8946 {
8947 cp_token_position start = 0;
8948
8949 /* Explain what went wrong. */
8950 error ("non-template %qD used as template", identifier);
8951 inform ("use %<%T::template %D%> to indicate that it is a template",
8952 parser->scope, identifier);
8953 /* If parsing tentatively, find the location of the "<" token. */
8954 if (cp_parser_simulate_error (parser))
8955 start = cp_lexer_token_position (parser->lexer, true);
8956 /* Parse the template arguments so that we can issue error
8957 messages about them. */
8958 cp_lexer_consume_token (parser->lexer);
8959 cp_parser_enclosed_template_argument_list (parser);
8960 /* Skip tokens until we find a good place from which to
8961 continue parsing. */
8962 cp_parser_skip_to_closing_parenthesis (parser,
8963 /*recovering=*/true,
8964 /*or_comma=*/true,
8965 /*consume_paren=*/false);
8966 /* If parsing tentatively, permanently remove the
8967 template argument list. That will prevent duplicate
8968 error messages from being issued about the missing
8969 "template" keyword. */
8970 if (start)
8971 cp_lexer_purge_tokens_after (parser->lexer, start);
8972 if (is_identifier)
8973 *is_identifier = true;
8974 return identifier;
8975 }
8976
8977 /* If the "template" keyword is present, then there is generally
8978 no point in doing name-lookup, so we just return IDENTIFIER.
8979 But, if the qualifying scope is non-dependent then we can
8980 (and must) do name-lookup normally. */
8981 if (template_keyword_p
8982 && (!parser->scope
8983 || (TYPE_P (parser->scope)
8984 && dependent_type_p (parser->scope))))
8985 return identifier;
8986 }
8987
8988 /* Look up the name. */
8989 decl = cp_parser_lookup_name (parser, identifier,
8990 none_type,
8991 /*is_template=*/false,
8992 /*is_namespace=*/false,
8993 check_dependency_p,
8994 /*ambiguous_decls=*/NULL);
8995 decl = maybe_get_template_decl_from_type_decl (decl);
8996
8997 /* If DECL is a template, then the name was a template-name. */
8998 if (TREE_CODE (decl) == TEMPLATE_DECL)
8999 ;
9000 else
9001 {
9002 tree fn = NULL_TREE;
9003
9004 /* The standard does not explicitly indicate whether a name that
9005 names a set of overloaded declarations, some of which are
9006 templates, is a template-name. However, such a name should
9007 be a template-name; otherwise, there is no way to form a
9008 template-id for the overloaded templates. */
9009 fns = BASELINK_P (decl) ? BASELINK_FUNCTIONS (decl) : decl;
9010 if (TREE_CODE (fns) == OVERLOAD)
9011 for (fn = fns; fn; fn = OVL_NEXT (fn))
9012 if (TREE_CODE (OVL_CURRENT (fn)) == TEMPLATE_DECL)
9013 break;
9014
9015 if (!fn)
9016 {
9017 /* The name does not name a template. */
9018 cp_parser_error (parser, "expected template-name");
9019 return error_mark_node;
9020 }
9021 }
9022
9023 /* If DECL is dependent, and refers to a function, then just return
9024 its name; we will look it up again during template instantiation. */
9025 if (DECL_FUNCTION_TEMPLATE_P (decl) || !DECL_P (decl))
9026 {
9027 tree scope = CP_DECL_CONTEXT (get_first_fn (decl));
9028 if (TYPE_P (scope) && dependent_type_p (scope))
9029 return identifier;
9030 }
9031
9032 return decl;
9033 }
9034
9035 /* Parse a template-argument-list.
9036
9037 template-argument-list:
9038 template-argument
9039 template-argument-list , template-argument
9040
9041 Returns a TREE_VEC containing the arguments. */
9042
9043 static tree
9044 cp_parser_template_argument_list (cp_parser* parser)
9045 {
9046 tree fixed_args[10];
9047 unsigned n_args = 0;
9048 unsigned alloced = 10;
9049 tree *arg_ary = fixed_args;
9050 tree vec;
9051 bool saved_in_template_argument_list_p;
9052 bool saved_ice_p;
9053 bool saved_non_ice_p;
9054
9055 saved_in_template_argument_list_p = parser->in_template_argument_list_p;
9056 parser->in_template_argument_list_p = true;
9057 /* Even if the template-id appears in an integral
9058 constant-expression, the contents of the argument list do
9059 not. */
9060 saved_ice_p = parser->integral_constant_expression_p;
9061 parser->integral_constant_expression_p = false;
9062 saved_non_ice_p = parser->non_integral_constant_expression_p;
9063 parser->non_integral_constant_expression_p = false;
9064 /* Parse the arguments. */
9065 do
9066 {
9067 tree argument;
9068
9069 if (n_args)
9070 /* Consume the comma. */
9071 cp_lexer_consume_token (parser->lexer);
9072
9073 /* Parse the template-argument. */
9074 argument = cp_parser_template_argument (parser);
9075 if (n_args == alloced)
9076 {
9077 alloced *= 2;
9078
9079 if (arg_ary == fixed_args)
9080 {
9081 arg_ary = XNEWVEC (tree, alloced);
9082 memcpy (arg_ary, fixed_args, sizeof (tree) * n_args);
9083 }
9084 else
9085 arg_ary = XRESIZEVEC (tree, arg_ary, alloced);
9086 }
9087 arg_ary[n_args++] = argument;
9088 }
9089 while (cp_lexer_next_token_is (parser->lexer, CPP_COMMA));
9090
9091 vec = make_tree_vec (n_args);
9092
9093 while (n_args--)
9094 TREE_VEC_ELT (vec, n_args) = arg_ary[n_args];
9095
9096 if (arg_ary != fixed_args)
9097 free (arg_ary);
9098 parser->non_integral_constant_expression_p = saved_non_ice_p;
9099 parser->integral_constant_expression_p = saved_ice_p;
9100 parser->in_template_argument_list_p = saved_in_template_argument_list_p;
9101 return vec;
9102 }
9103
9104 /* Parse a template-argument.
9105
9106 template-argument:
9107 assignment-expression
9108 type-id
9109 id-expression
9110
9111 The representation is that of an assignment-expression, type-id, or
9112 id-expression -- except that the qualified id-expression is
9113 evaluated, so that the value returned is either a DECL or an
9114 OVERLOAD.
9115
9116 Although the standard says "assignment-expression", it forbids
9117 throw-expressions or assignments in the template argument.
9118 Therefore, we use "conditional-expression" instead. */
9119
9120 static tree
9121 cp_parser_template_argument (cp_parser* parser)
9122 {
9123 tree argument;
9124 bool template_p;
9125 bool address_p;
9126 bool maybe_type_id = false;
9127 cp_token *token;
9128 cp_id_kind idk;
9129
9130 /* There's really no way to know what we're looking at, so we just
9131 try each alternative in order.
9132
9133 [temp.arg]
9134
9135 In a template-argument, an ambiguity between a type-id and an
9136 expression is resolved to a type-id, regardless of the form of
9137 the corresponding template-parameter.
9138
9139 Therefore, we try a type-id first. */
9140 cp_parser_parse_tentatively (parser);
9141 argument = cp_parser_type_id (parser);
9142 /* If there was no error parsing the type-id but the next token is a '>>',
9143 we probably found a typo for '> >'. But there are type-id which are
9144 also valid expressions. For instance:
9145
9146 struct X { int operator >> (int); };
9147 template <int V> struct Foo {};
9148 Foo<X () >> 5> r;
9149
9150 Here 'X()' is a valid type-id of a function type, but the user just
9151 wanted to write the expression "X() >> 5". Thus, we remember that we
9152 found a valid type-id, but we still try to parse the argument as an
9153 expression to see what happens. */
9154 if (!cp_parser_error_occurred (parser)
9155 && cp_lexer_next_token_is (parser->lexer, CPP_RSHIFT))
9156 {
9157 maybe_type_id = true;
9158 cp_parser_abort_tentative_parse (parser);
9159 }
9160 else
9161 {
9162 /* If the next token isn't a `,' or a `>', then this argument wasn't
9163 really finished. This means that the argument is not a valid
9164 type-id. */
9165 if (!cp_parser_next_token_ends_template_argument_p (parser))
9166 cp_parser_error (parser, "expected template-argument");
9167 /* If that worked, we're done. */
9168 if (cp_parser_parse_definitely (parser))
9169 return argument;
9170 }
9171 /* We're still not sure what the argument will be. */
9172 cp_parser_parse_tentatively (parser);
9173 /* Try a template. */
9174 argument = cp_parser_id_expression (parser,
9175 /*template_keyword_p=*/false,
9176 /*check_dependency_p=*/true,
9177 &template_p,
9178 /*declarator_p=*/false,
9179 /*optional_p=*/false);
9180 /* If the next token isn't a `,' or a `>', then this argument wasn't
9181 really finished. */
9182 if (!cp_parser_next_token_ends_template_argument_p (parser))
9183 cp_parser_error (parser, "expected template-argument");
9184 if (!cp_parser_error_occurred (parser))
9185 {
9186 /* Figure out what is being referred to. If the id-expression
9187 was for a class template specialization, then we will have a
9188 TYPE_DECL at this point. There is no need to do name lookup
9189 at this point in that case. */
9190 if (TREE_CODE (argument) != TYPE_DECL)
9191 argument = cp_parser_lookup_name (parser, argument,
9192 none_type,
9193 /*is_template=*/template_p,
9194 /*is_namespace=*/false,
9195 /*check_dependency=*/true,
9196 /*ambiguous_decls=*/NULL);
9197 if (TREE_CODE (argument) != TEMPLATE_DECL
9198 && TREE_CODE (argument) != UNBOUND_CLASS_TEMPLATE)
9199 cp_parser_error (parser, "expected template-name");
9200 }
9201 if (cp_parser_parse_definitely (parser))
9202 return argument;
9203 /* It must be a non-type argument. There permitted cases are given
9204 in [temp.arg.nontype]:
9205
9206 -- an integral constant-expression of integral or enumeration
9207 type; or
9208
9209 -- the name of a non-type template-parameter; or
9210
9211 -- the name of an object or function with external linkage...
9212
9213 -- the address of an object or function with external linkage...
9214
9215 -- a pointer to member... */
9216 /* Look for a non-type template parameter. */
9217 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
9218 {
9219 cp_parser_parse_tentatively (parser);
9220 argument = cp_parser_primary_expression (parser,
9221 /*adress_p=*/false,
9222 /*cast_p=*/false,
9223 /*template_arg_p=*/true,
9224 &idk);
9225 if (TREE_CODE (argument) != TEMPLATE_PARM_INDEX
9226 || !cp_parser_next_token_ends_template_argument_p (parser))
9227 cp_parser_simulate_error (parser);
9228 if (cp_parser_parse_definitely (parser))
9229 return argument;
9230 }
9231
9232 /* If the next token is "&", the argument must be the address of an
9233 object or function with external linkage. */
9234 address_p = cp_lexer_next_token_is (parser->lexer, CPP_AND);
9235 if (address_p)
9236 cp_lexer_consume_token (parser->lexer);
9237 /* See if we might have an id-expression. */
9238 token = cp_lexer_peek_token (parser->lexer);
9239 if (token->type == CPP_NAME
9240 || token->keyword == RID_OPERATOR
9241 || token->type == CPP_SCOPE
9242 || token->type == CPP_TEMPLATE_ID
9243 || token->type == CPP_NESTED_NAME_SPECIFIER)
9244 {
9245 cp_parser_parse_tentatively (parser);
9246 argument = cp_parser_primary_expression (parser,
9247 address_p,
9248 /*cast_p=*/false,
9249 /*template_arg_p=*/true,
9250 &idk);
9251 if (cp_parser_error_occurred (parser)
9252 || !cp_parser_next_token_ends_template_argument_p (parser))
9253 cp_parser_abort_tentative_parse (parser);
9254 else
9255 {
9256 if (TREE_CODE (argument) == INDIRECT_REF)
9257 {
9258 gcc_assert (REFERENCE_REF_P (argument));
9259 argument = TREE_OPERAND (argument, 0);
9260 }
9261
9262 if (TREE_CODE (argument) == VAR_DECL)
9263 {
9264 /* A variable without external linkage might still be a
9265 valid constant-expression, so no error is issued here
9266 if the external-linkage check fails. */
9267 if (!DECL_EXTERNAL_LINKAGE_P (argument))
9268 cp_parser_simulate_error (parser);
9269 }
9270 else if (is_overloaded_fn (argument))
9271 /* All overloaded functions are allowed; if the external
9272 linkage test does not pass, an error will be issued
9273 later. */
9274 ;
9275 else if (address_p
9276 && (TREE_CODE (argument) == OFFSET_REF
9277 || TREE_CODE (argument) == SCOPE_REF))
9278 /* A pointer-to-member. */
9279 ;
9280 else if (TREE_CODE (argument) == TEMPLATE_PARM_INDEX)
9281 ;
9282 else
9283 cp_parser_simulate_error (parser);
9284
9285 if (cp_parser_parse_definitely (parser))
9286 {
9287 if (address_p)
9288 argument = build_x_unary_op (ADDR_EXPR, argument);
9289 return argument;
9290 }
9291 }
9292 }
9293 /* If the argument started with "&", there are no other valid
9294 alternatives at this point. */
9295 if (address_p)
9296 {
9297 cp_parser_error (parser, "invalid non-type template argument");
9298 return error_mark_node;
9299 }
9300
9301 /* If the argument wasn't successfully parsed as a type-id followed
9302 by '>>', the argument can only be a constant expression now.
9303 Otherwise, we try parsing the constant-expression tentatively,
9304 because the argument could really be a type-id. */
9305 if (maybe_type_id)
9306 cp_parser_parse_tentatively (parser);
9307 argument = cp_parser_constant_expression (parser,
9308 /*allow_non_constant_p=*/false,
9309 /*non_constant_p=*/NULL);
9310 argument = fold_non_dependent_expr (argument);
9311 if (!maybe_type_id)
9312 return argument;
9313 if (!cp_parser_next_token_ends_template_argument_p (parser))
9314 cp_parser_error (parser, "expected template-argument");
9315 if (cp_parser_parse_definitely (parser))
9316 return argument;
9317 /* We did our best to parse the argument as a non type-id, but that
9318 was the only alternative that matched (albeit with a '>' after
9319 it). We can assume it's just a typo from the user, and a
9320 diagnostic will then be issued. */
9321 return cp_parser_type_id (parser);
9322 }
9323
9324 /* Parse an explicit-instantiation.
9325
9326 explicit-instantiation:
9327 template declaration
9328
9329 Although the standard says `declaration', what it really means is:
9330
9331 explicit-instantiation:
9332 template decl-specifier-seq [opt] declarator [opt] ;
9333
9334 Things like `template int S<int>::i = 5, int S<double>::j;' are not
9335 supposed to be allowed. A defect report has been filed about this
9336 issue.
9337
9338 GNU Extension:
9339
9340 explicit-instantiation:
9341 storage-class-specifier template
9342 decl-specifier-seq [opt] declarator [opt] ;
9343 function-specifier template
9344 decl-specifier-seq [opt] declarator [opt] ; */
9345
9346 static void
9347 cp_parser_explicit_instantiation (cp_parser* parser)
9348 {
9349 int declares_class_or_enum;
9350 cp_decl_specifier_seq decl_specifiers;
9351 tree extension_specifier = NULL_TREE;
9352
9353 /* Look for an (optional) storage-class-specifier or
9354 function-specifier. */
9355 if (cp_parser_allow_gnu_extensions_p (parser))
9356 {
9357 extension_specifier
9358 = cp_parser_storage_class_specifier_opt (parser);
9359 if (!extension_specifier)
9360 extension_specifier
9361 = cp_parser_function_specifier_opt (parser,
9362 /*decl_specs=*/NULL);
9363 }
9364
9365 /* Look for the `template' keyword. */
9366 cp_parser_require_keyword (parser, RID_TEMPLATE, "`template'");
9367 /* Let the front end know that we are processing an explicit
9368 instantiation. */
9369 begin_explicit_instantiation ();
9370 /* [temp.explicit] says that we are supposed to ignore access
9371 control while processing explicit instantiation directives. */
9372 push_deferring_access_checks (dk_no_check);
9373 /* Parse a decl-specifier-seq. */
9374 cp_parser_decl_specifier_seq (parser,
9375 CP_PARSER_FLAGS_OPTIONAL,
9376 &decl_specifiers,
9377 &declares_class_or_enum);
9378 /* If there was exactly one decl-specifier, and it declared a class,
9379 and there's no declarator, then we have an explicit type
9380 instantiation. */
9381 if (declares_class_or_enum && cp_parser_declares_only_class_p (parser))
9382 {
9383 tree type;
9384
9385 type = check_tag_decl (&decl_specifiers);
9386 /* Turn access control back on for names used during
9387 template instantiation. */
9388 pop_deferring_access_checks ();
9389 if (type)
9390 do_type_instantiation (type, extension_specifier,
9391 /*complain=*/tf_error);
9392 }
9393 else
9394 {
9395 cp_declarator *declarator;
9396 tree decl;
9397
9398 /* Parse the declarator. */
9399 declarator
9400 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
9401 /*ctor_dtor_or_conv_p=*/NULL,
9402 /*parenthesized_p=*/NULL,
9403 /*member_p=*/false);
9404 if (declares_class_or_enum & 2)
9405 cp_parser_check_for_definition_in_return_type (declarator,
9406 decl_specifiers.type);
9407 if (declarator != cp_error_declarator)
9408 {
9409 decl = grokdeclarator (declarator, &decl_specifiers,
9410 NORMAL, 0, &decl_specifiers.attributes);
9411 /* Turn access control back on for names used during
9412 template instantiation. */
9413 pop_deferring_access_checks ();
9414 /* Do the explicit instantiation. */
9415 do_decl_instantiation (decl, extension_specifier);
9416 }
9417 else
9418 {
9419 pop_deferring_access_checks ();
9420 /* Skip the body of the explicit instantiation. */
9421 cp_parser_skip_to_end_of_statement (parser);
9422 }
9423 }
9424 /* We're done with the instantiation. */
9425 end_explicit_instantiation ();
9426
9427 cp_parser_consume_semicolon_at_end_of_statement (parser);
9428 }
9429
9430 /* Parse an explicit-specialization.
9431
9432 explicit-specialization:
9433 template < > declaration
9434
9435 Although the standard says `declaration', what it really means is:
9436
9437 explicit-specialization:
9438 template <> decl-specifier [opt] init-declarator [opt] ;
9439 template <> function-definition
9440 template <> explicit-specialization
9441 template <> template-declaration */
9442
9443 static void
9444 cp_parser_explicit_specialization (cp_parser* parser)
9445 {
9446 bool need_lang_pop;
9447 /* Look for the `template' keyword. */
9448 cp_parser_require_keyword (parser, RID_TEMPLATE, "`template'");
9449 /* Look for the `<'. */
9450 cp_parser_require (parser, CPP_LESS, "`<'");
9451 /* Look for the `>'. */
9452 cp_parser_require (parser, CPP_GREATER, "`>'");
9453 /* We have processed another parameter list. */
9454 ++parser->num_template_parameter_lists;
9455 /* [temp]
9456
9457 A template ... explicit specialization ... shall not have C
9458 linkage. */
9459 if (current_lang_name == lang_name_c)
9460 {
9461 error ("template specialization with C linkage");
9462 /* Give it C++ linkage to avoid confusing other parts of the
9463 front end. */
9464 push_lang_context (lang_name_cplusplus);
9465 need_lang_pop = true;
9466 }
9467 else
9468 need_lang_pop = false;
9469 /* Let the front end know that we are beginning a specialization. */
9470 if (!begin_specialization ())
9471 {
9472 end_specialization ();
9473 cp_parser_skip_to_end_of_block_or_statement (parser);
9474 return;
9475 }
9476
9477 /* If the next keyword is `template', we need to figure out whether
9478 or not we're looking a template-declaration. */
9479 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
9480 {
9481 if (cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_LESS
9482 && cp_lexer_peek_nth_token (parser->lexer, 3)->type != CPP_GREATER)
9483 cp_parser_template_declaration_after_export (parser,
9484 /*member_p=*/false);
9485 else
9486 cp_parser_explicit_specialization (parser);
9487 }
9488 else
9489 /* Parse the dependent declaration. */
9490 cp_parser_single_declaration (parser,
9491 /*checks=*/NULL_TREE,
9492 /*member_p=*/false,
9493 /*friend_p=*/NULL);
9494 /* We're done with the specialization. */
9495 end_specialization ();
9496 /* For the erroneous case of a template with C linkage, we pushed an
9497 implicit C++ linkage scope; exit that scope now. */
9498 if (need_lang_pop)
9499 pop_lang_context ();
9500 /* We're done with this parameter list. */
9501 --parser->num_template_parameter_lists;
9502 }
9503
9504 /* Parse a type-specifier.
9505
9506 type-specifier:
9507 simple-type-specifier
9508 class-specifier
9509 enum-specifier
9510 elaborated-type-specifier
9511 cv-qualifier
9512
9513 GNU Extension:
9514
9515 type-specifier:
9516 __complex__
9517
9518 Returns a representation of the type-specifier. For a
9519 class-specifier, enum-specifier, or elaborated-type-specifier, a
9520 TREE_TYPE is returned; otherwise, a TYPE_DECL is returned.
9521
9522 The parser flags FLAGS is used to control type-specifier parsing.
9523
9524 If IS_DECLARATION is TRUE, then this type-specifier is appearing
9525 in a decl-specifier-seq.
9526
9527 If DECLARES_CLASS_OR_ENUM is non-NULL, and the type-specifier is a
9528 class-specifier, enum-specifier, or elaborated-type-specifier, then
9529 *DECLARES_CLASS_OR_ENUM is set to a nonzero value. The value is 1
9530 if a type is declared; 2 if it is defined. Otherwise, it is set to
9531 zero.
9532
9533 If IS_CV_QUALIFIER is non-NULL, and the type-specifier is a
9534 cv-qualifier, then IS_CV_QUALIFIER is set to TRUE. Otherwise, it
9535 is set to FALSE. */
9536
9537 static tree
9538 cp_parser_type_specifier (cp_parser* parser,
9539 cp_parser_flags flags,
9540 cp_decl_specifier_seq *decl_specs,
9541 bool is_declaration,
9542 int* declares_class_or_enum,
9543 bool* is_cv_qualifier)
9544 {
9545 tree type_spec = NULL_TREE;
9546 cp_token *token;
9547 enum rid keyword;
9548 cp_decl_spec ds = ds_last;
9549
9550 /* Assume this type-specifier does not declare a new type. */
9551 if (declares_class_or_enum)
9552 *declares_class_or_enum = 0;
9553 /* And that it does not specify a cv-qualifier. */
9554 if (is_cv_qualifier)
9555 *is_cv_qualifier = false;
9556 /* Peek at the next token. */
9557 token = cp_lexer_peek_token (parser->lexer);
9558
9559 /* If we're looking at a keyword, we can use that to guide the
9560 production we choose. */
9561 keyword = token->keyword;
9562 switch (keyword)
9563 {
9564 case RID_ENUM:
9565 /* Look for the enum-specifier. */
9566 type_spec = cp_parser_enum_specifier (parser);
9567 /* If that worked, we're done. */
9568 if (type_spec)
9569 {
9570 if (declares_class_or_enum)
9571 *declares_class_or_enum = 2;
9572 if (decl_specs)
9573 cp_parser_set_decl_spec_type (decl_specs,
9574 type_spec,
9575 /*user_defined_p=*/true);
9576 return type_spec;
9577 }
9578 else
9579 goto elaborated_type_specifier;
9580
9581 /* Any of these indicate either a class-specifier, or an
9582 elaborated-type-specifier. */
9583 case RID_CLASS:
9584 case RID_STRUCT:
9585 case RID_UNION:
9586 /* Parse tentatively so that we can back up if we don't find a
9587 class-specifier. */
9588 cp_parser_parse_tentatively (parser);
9589 /* Look for the class-specifier. */
9590 type_spec = cp_parser_class_specifier (parser);
9591 /* If that worked, we're done. */
9592 if (cp_parser_parse_definitely (parser))
9593 {
9594 if (declares_class_or_enum)
9595 *declares_class_or_enum = 2;
9596 if (decl_specs)
9597 cp_parser_set_decl_spec_type (decl_specs,
9598 type_spec,
9599 /*user_defined_p=*/true);
9600 return type_spec;
9601 }
9602
9603 /* Fall through. */
9604 elaborated_type_specifier:
9605 /* We're declaring (not defining) a class or enum. */
9606 if (declares_class_or_enum)
9607 *declares_class_or_enum = 1;
9608
9609 /* Fall through. */
9610 case RID_TYPENAME:
9611 /* Look for an elaborated-type-specifier. */
9612 type_spec
9613 = (cp_parser_elaborated_type_specifier
9614 (parser,
9615 decl_specs && decl_specs->specs[(int) ds_friend],
9616 is_declaration));
9617 if (decl_specs)
9618 cp_parser_set_decl_spec_type (decl_specs,
9619 type_spec,
9620 /*user_defined_p=*/true);
9621 return type_spec;
9622
9623 case RID_CONST:
9624 ds = ds_const;
9625 if (is_cv_qualifier)
9626 *is_cv_qualifier = true;
9627 break;
9628
9629 case RID_VOLATILE:
9630 ds = ds_volatile;
9631 if (is_cv_qualifier)
9632 *is_cv_qualifier = true;
9633 break;
9634
9635 case RID_RESTRICT:
9636 ds = ds_restrict;
9637 if (is_cv_qualifier)
9638 *is_cv_qualifier = true;
9639 break;
9640
9641 case RID_COMPLEX:
9642 /* The `__complex__' keyword is a GNU extension. */
9643 ds = ds_complex;
9644 break;
9645
9646 default:
9647 break;
9648 }
9649
9650 /* Handle simple keywords. */
9651 if (ds != ds_last)
9652 {
9653 if (decl_specs)
9654 {
9655 ++decl_specs->specs[(int)ds];
9656 decl_specs->any_specifiers_p = true;
9657 }
9658 return cp_lexer_consume_token (parser->lexer)->value;
9659 }
9660
9661 /* If we do not already have a type-specifier, assume we are looking
9662 at a simple-type-specifier. */
9663 type_spec = cp_parser_simple_type_specifier (parser,
9664 decl_specs,
9665 flags);
9666
9667 /* If we didn't find a type-specifier, and a type-specifier was not
9668 optional in this context, issue an error message. */
9669 if (!type_spec && !(flags & CP_PARSER_FLAGS_OPTIONAL))
9670 {
9671 cp_parser_error (parser, "expected type specifier");
9672 return error_mark_node;
9673 }
9674
9675 return type_spec;
9676 }
9677
9678 /* Parse a simple-type-specifier.
9679
9680 simple-type-specifier:
9681 :: [opt] nested-name-specifier [opt] type-name
9682 :: [opt] nested-name-specifier template template-id
9683 char
9684 wchar_t
9685 bool
9686 short
9687 int
9688 long
9689 signed
9690 unsigned
9691 float
9692 double
9693 void
9694
9695 GNU Extension:
9696
9697 simple-type-specifier:
9698 __typeof__ unary-expression
9699 __typeof__ ( type-id )
9700
9701 Returns the indicated TYPE_DECL. If DECL_SPECS is not NULL, it is
9702 appropriately updated. */
9703
9704 static tree
9705 cp_parser_simple_type_specifier (cp_parser* parser,
9706 cp_decl_specifier_seq *decl_specs,
9707 cp_parser_flags flags)
9708 {
9709 tree type = NULL_TREE;
9710 cp_token *token;
9711
9712 /* Peek at the next token. */
9713 token = cp_lexer_peek_token (parser->lexer);
9714
9715 /* If we're looking at a keyword, things are easy. */
9716 switch (token->keyword)
9717 {
9718 case RID_CHAR:
9719 if (decl_specs)
9720 decl_specs->explicit_char_p = true;
9721 type = char_type_node;
9722 break;
9723 case RID_WCHAR:
9724 type = wchar_type_node;
9725 break;
9726 case RID_BOOL:
9727 type = boolean_type_node;
9728 break;
9729 case RID_SHORT:
9730 if (decl_specs)
9731 ++decl_specs->specs[(int) ds_short];
9732 type = short_integer_type_node;
9733 break;
9734 case RID_INT:
9735 if (decl_specs)
9736 decl_specs->explicit_int_p = true;
9737 type = integer_type_node;
9738 break;
9739 case RID_LONG:
9740 if (decl_specs)
9741 ++decl_specs->specs[(int) ds_long];
9742 type = long_integer_type_node;
9743 break;
9744 case RID_SIGNED:
9745 if (decl_specs)
9746 ++decl_specs->specs[(int) ds_signed];
9747 type = integer_type_node;
9748 break;
9749 case RID_UNSIGNED:
9750 if (decl_specs)
9751 ++decl_specs->specs[(int) ds_unsigned];
9752 type = unsigned_type_node;
9753 break;
9754 case RID_FLOAT:
9755 type = float_type_node;
9756 break;
9757 case RID_DOUBLE:
9758 type = double_type_node;
9759 break;
9760 case RID_VOID:
9761 type = void_type_node;
9762 break;
9763
9764 case RID_TYPEOF:
9765 /* Consume the `typeof' token. */
9766 cp_lexer_consume_token (parser->lexer);
9767 /* Parse the operand to `typeof'. */
9768 type = cp_parser_sizeof_operand (parser, RID_TYPEOF);
9769 /* If it is not already a TYPE, take its type. */
9770 if (!TYPE_P (type))
9771 type = finish_typeof (type);
9772
9773 if (decl_specs)
9774 cp_parser_set_decl_spec_type (decl_specs, type,
9775 /*user_defined_p=*/true);
9776
9777 return type;
9778
9779 default:
9780 break;
9781 }
9782
9783 /* If the type-specifier was for a built-in type, we're done. */
9784 if (type)
9785 {
9786 tree id;
9787
9788 /* Record the type. */
9789 if (decl_specs
9790 && (token->keyword != RID_SIGNED
9791 && token->keyword != RID_UNSIGNED
9792 && token->keyword != RID_SHORT
9793 && token->keyword != RID_LONG))
9794 cp_parser_set_decl_spec_type (decl_specs,
9795 type,
9796 /*user_defined=*/false);
9797 if (decl_specs)
9798 decl_specs->any_specifiers_p = true;
9799
9800 /* Consume the token. */
9801 id = cp_lexer_consume_token (parser->lexer)->value;
9802
9803 /* There is no valid C++ program where a non-template type is
9804 followed by a "<". That usually indicates that the user thought
9805 that the type was a template. */
9806 cp_parser_check_for_invalid_template_id (parser, type);
9807
9808 return TYPE_NAME (type);
9809 }
9810
9811 /* The type-specifier must be a user-defined type. */
9812 if (!(flags & CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES))
9813 {
9814 bool qualified_p;
9815 bool global_p;
9816
9817 /* Don't gobble tokens or issue error messages if this is an
9818 optional type-specifier. */
9819 if (flags & CP_PARSER_FLAGS_OPTIONAL)
9820 cp_parser_parse_tentatively (parser);
9821
9822 /* Look for the optional `::' operator. */
9823 global_p
9824 = (cp_parser_global_scope_opt (parser,
9825 /*current_scope_valid_p=*/false)
9826 != NULL_TREE);
9827 /* Look for the nested-name specifier. */
9828 qualified_p
9829 = (cp_parser_nested_name_specifier_opt (parser,
9830 /*typename_keyword_p=*/false,
9831 /*check_dependency_p=*/true,
9832 /*type_p=*/false,
9833 /*is_declaration=*/false)
9834 != NULL_TREE);
9835 /* If we have seen a nested-name-specifier, and the next token
9836 is `template', then we are using the template-id production. */
9837 if (parser->scope
9838 && cp_parser_optional_template_keyword (parser))
9839 {
9840 /* Look for the template-id. */
9841 type = cp_parser_template_id (parser,
9842 /*template_keyword_p=*/true,
9843 /*check_dependency_p=*/true,
9844 /*is_declaration=*/false);
9845 /* If the template-id did not name a type, we are out of
9846 luck. */
9847 if (TREE_CODE (type) != TYPE_DECL)
9848 {
9849 cp_parser_error (parser, "expected template-id for type");
9850 type = NULL_TREE;
9851 }
9852 }
9853 /* Otherwise, look for a type-name. */
9854 else
9855 type = cp_parser_type_name (parser);
9856 /* Keep track of all name-lookups performed in class scopes. */
9857 if (type
9858 && !global_p
9859 && !qualified_p
9860 && TREE_CODE (type) == TYPE_DECL
9861 && TREE_CODE (DECL_NAME (type)) == IDENTIFIER_NODE)
9862 maybe_note_name_used_in_class (DECL_NAME (type), type);
9863 /* If it didn't work out, we don't have a TYPE. */
9864 if ((flags & CP_PARSER_FLAGS_OPTIONAL)
9865 && !cp_parser_parse_definitely (parser))
9866 type = NULL_TREE;
9867 if (type && decl_specs)
9868 cp_parser_set_decl_spec_type (decl_specs, type,
9869 /*user_defined=*/true);
9870 }
9871
9872 /* If we didn't get a type-name, issue an error message. */
9873 if (!type && !(flags & CP_PARSER_FLAGS_OPTIONAL))
9874 {
9875 cp_parser_error (parser, "expected type-name");
9876 return error_mark_node;
9877 }
9878
9879 /* There is no valid C++ program where a non-template type is
9880 followed by a "<". That usually indicates that the user thought
9881 that the type was a template. */
9882 if (type && type != error_mark_node)
9883 {
9884 /* As a last-ditch effort, see if TYPE is an Objective-C type.
9885 If it is, then the '<'...'>' enclose protocol names rather than
9886 template arguments, and so everything is fine. */
9887 if (c_dialect_objc ()
9888 && (objc_is_id (type) || objc_is_class_name (type)))
9889 {
9890 tree protos = cp_parser_objc_protocol_refs_opt (parser);
9891 tree qual_type = objc_get_protocol_qualified_type (type, protos);
9892
9893 /* Clobber the "unqualified" type previously entered into
9894 DECL_SPECS with the new, improved protocol-qualified version. */
9895 if (decl_specs)
9896 decl_specs->type = qual_type;
9897
9898 return qual_type;
9899 }
9900
9901 cp_parser_check_for_invalid_template_id (parser, TREE_TYPE (type));
9902 }
9903
9904 return type;
9905 }
9906
9907 /* Parse a type-name.
9908
9909 type-name:
9910 class-name
9911 enum-name
9912 typedef-name
9913
9914 enum-name:
9915 identifier
9916
9917 typedef-name:
9918 identifier
9919
9920 Returns a TYPE_DECL for the type. */
9921
9922 static tree
9923 cp_parser_type_name (cp_parser* parser)
9924 {
9925 tree type_decl;
9926 tree identifier;
9927
9928 /* We can't know yet whether it is a class-name or not. */
9929 cp_parser_parse_tentatively (parser);
9930 /* Try a class-name. */
9931 type_decl = cp_parser_class_name (parser,
9932 /*typename_keyword_p=*/false,
9933 /*template_keyword_p=*/false,
9934 none_type,
9935 /*check_dependency_p=*/true,
9936 /*class_head_p=*/false,
9937 /*is_declaration=*/false);
9938 /* If it's not a class-name, keep looking. */
9939 if (!cp_parser_parse_definitely (parser))
9940 {
9941 /* It must be a typedef-name or an enum-name. */
9942 identifier = cp_parser_identifier (parser);
9943 if (identifier == error_mark_node)
9944 return error_mark_node;
9945
9946 /* Look up the type-name. */
9947 type_decl = cp_parser_lookup_name_simple (parser, identifier);
9948
9949 if (TREE_CODE (type_decl) != TYPE_DECL
9950 && (objc_is_id (identifier) || objc_is_class_name (identifier)))
9951 {
9952 /* See if this is an Objective-C type. */
9953 tree protos = cp_parser_objc_protocol_refs_opt (parser);
9954 tree type = objc_get_protocol_qualified_type (identifier, protos);
9955 if (type)
9956 type_decl = TYPE_NAME (type);
9957 }
9958
9959 /* Issue an error if we did not find a type-name. */
9960 if (TREE_CODE (type_decl) != TYPE_DECL)
9961 {
9962 if (!cp_parser_simulate_error (parser))
9963 cp_parser_name_lookup_error (parser, identifier, type_decl,
9964 "is not a type");
9965 type_decl = error_mark_node;
9966 }
9967 /* Remember that the name was used in the definition of the
9968 current class so that we can check later to see if the
9969 meaning would have been different after the class was
9970 entirely defined. */
9971 else if (type_decl != error_mark_node
9972 && !parser->scope)
9973 maybe_note_name_used_in_class (identifier, type_decl);
9974 }
9975
9976 return type_decl;
9977 }
9978
9979
9980 /* Parse an elaborated-type-specifier. Note that the grammar given
9981 here incorporates the resolution to DR68.
9982
9983 elaborated-type-specifier:
9984 class-key :: [opt] nested-name-specifier [opt] identifier
9985 class-key :: [opt] nested-name-specifier [opt] template [opt] template-id
9986 enum :: [opt] nested-name-specifier [opt] identifier
9987 typename :: [opt] nested-name-specifier identifier
9988 typename :: [opt] nested-name-specifier template [opt]
9989 template-id
9990
9991 GNU extension:
9992
9993 elaborated-type-specifier:
9994 class-key attributes :: [opt] nested-name-specifier [opt] identifier
9995 class-key attributes :: [opt] nested-name-specifier [opt]
9996 template [opt] template-id
9997 enum attributes :: [opt] nested-name-specifier [opt] identifier
9998
9999 If IS_FRIEND is TRUE, then this elaborated-type-specifier is being
10000 declared `friend'. If IS_DECLARATION is TRUE, then this
10001 elaborated-type-specifier appears in a decl-specifiers-seq, i.e.,
10002 something is being declared.
10003
10004 Returns the TYPE specified. */
10005
10006 static tree
10007 cp_parser_elaborated_type_specifier (cp_parser* parser,
10008 bool is_friend,
10009 bool is_declaration)
10010 {
10011 enum tag_types tag_type;
10012 tree identifier;
10013 tree type = NULL_TREE;
10014 tree attributes = NULL_TREE;
10015
10016 /* See if we're looking at the `enum' keyword. */
10017 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_ENUM))
10018 {
10019 /* Consume the `enum' token. */
10020 cp_lexer_consume_token (parser->lexer);
10021 /* Remember that it's an enumeration type. */
10022 tag_type = enum_type;
10023 /* Parse the attributes. */
10024 attributes = cp_parser_attributes_opt (parser);
10025 }
10026 /* Or, it might be `typename'. */
10027 else if (cp_lexer_next_token_is_keyword (parser->lexer,
10028 RID_TYPENAME))
10029 {
10030 /* Consume the `typename' token. */
10031 cp_lexer_consume_token (parser->lexer);
10032 /* Remember that it's a `typename' type. */
10033 tag_type = typename_type;
10034 /* The `typename' keyword is only allowed in templates. */
10035 if (!processing_template_decl)
10036 pedwarn ("using %<typename%> outside of template");
10037 }
10038 /* Otherwise it must be a class-key. */
10039 else
10040 {
10041 tag_type = cp_parser_class_key (parser);
10042 if (tag_type == none_type)
10043 return error_mark_node;
10044 /* Parse the attributes. */
10045 attributes = cp_parser_attributes_opt (parser);
10046 }
10047
10048 /* Look for the `::' operator. */
10049 cp_parser_global_scope_opt (parser,
10050 /*current_scope_valid_p=*/false);
10051 /* Look for the nested-name-specifier. */
10052 if (tag_type == typename_type)
10053 {
10054 if (!cp_parser_nested_name_specifier (parser,
10055 /*typename_keyword_p=*/true,
10056 /*check_dependency_p=*/true,
10057 /*type_p=*/true,
10058 is_declaration))
10059 return error_mark_node;
10060 }
10061 else
10062 /* Even though `typename' is not present, the proposed resolution
10063 to Core Issue 180 says that in `class A<T>::B', `B' should be
10064 considered a type-name, even if `A<T>' is dependent. */
10065 cp_parser_nested_name_specifier_opt (parser,
10066 /*typename_keyword_p=*/true,
10067 /*check_dependency_p=*/true,
10068 /*type_p=*/true,
10069 is_declaration);
10070 /* For everything but enumeration types, consider a template-id. */
10071 /* For an enumeration type, consider only a plain identifier. */
10072 if (tag_type != enum_type)
10073 {
10074 bool template_p = false;
10075 tree decl;
10076
10077 /* Allow the `template' keyword. */
10078 template_p = cp_parser_optional_template_keyword (parser);
10079 /* If we didn't see `template', we don't know if there's a
10080 template-id or not. */
10081 if (!template_p)
10082 cp_parser_parse_tentatively (parser);
10083 /* Parse the template-id. */
10084 decl = cp_parser_template_id (parser, template_p,
10085 /*check_dependency_p=*/true,
10086 is_declaration);
10087 /* If we didn't find a template-id, look for an ordinary
10088 identifier. */
10089 if (!template_p && !cp_parser_parse_definitely (parser))
10090 ;
10091 /* If DECL is a TEMPLATE_ID_EXPR, and the `typename' keyword is
10092 in effect, then we must assume that, upon instantiation, the
10093 template will correspond to a class. */
10094 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
10095 && tag_type == typename_type)
10096 type = make_typename_type (parser->scope, decl,
10097 typename_type,
10098 /*complain=*/tf_error);
10099 else
10100 type = TREE_TYPE (decl);
10101 }
10102
10103 if (!type)
10104 {
10105 identifier = cp_parser_identifier (parser);
10106
10107 if (identifier == error_mark_node)
10108 {
10109 parser->scope = NULL_TREE;
10110 return error_mark_node;
10111 }
10112
10113 /* For a `typename', we needn't call xref_tag. */
10114 if (tag_type == typename_type
10115 && TREE_CODE (parser->scope) != NAMESPACE_DECL)
10116 return cp_parser_make_typename_type (parser, parser->scope,
10117 identifier);
10118 /* Look up a qualified name in the usual way. */
10119 if (parser->scope)
10120 {
10121 tree decl;
10122
10123 decl = cp_parser_lookup_name (parser, identifier,
10124 tag_type,
10125 /*is_template=*/false,
10126 /*is_namespace=*/false,
10127 /*check_dependency=*/true,
10128 /*ambiguous_decls=*/NULL);
10129
10130 /* If we are parsing friend declaration, DECL may be a
10131 TEMPLATE_DECL tree node here. However, we need to check
10132 whether this TEMPLATE_DECL results in valid code. Consider
10133 the following example:
10134
10135 namespace N {
10136 template <class T> class C {};
10137 }
10138 class X {
10139 template <class T> friend class N::C; // #1, valid code
10140 };
10141 template <class T> class Y {
10142 friend class N::C; // #2, invalid code
10143 };
10144
10145 For both case #1 and #2, we arrive at a TEMPLATE_DECL after
10146 name lookup of `N::C'. We see that friend declaration must
10147 be template for the code to be valid. Note that
10148 processing_template_decl does not work here since it is
10149 always 1 for the above two cases. */
10150
10151 decl = (cp_parser_maybe_treat_template_as_class
10152 (decl, /*tag_name_p=*/is_friend
10153 && parser->num_template_parameter_lists));
10154
10155 if (TREE_CODE (decl) != TYPE_DECL)
10156 {
10157 cp_parser_diagnose_invalid_type_name (parser,
10158 parser->scope,
10159 identifier);
10160 return error_mark_node;
10161 }
10162
10163 if (TREE_CODE (TREE_TYPE (decl)) != TYPENAME_TYPE)
10164 check_elaborated_type_specifier
10165 (tag_type, decl,
10166 (parser->num_template_parameter_lists
10167 || DECL_SELF_REFERENCE_P (decl)));
10168
10169 type = TREE_TYPE (decl);
10170 }
10171 else
10172 {
10173 /* An elaborated-type-specifier sometimes introduces a new type and
10174 sometimes names an existing type. Normally, the rule is that it
10175 introduces a new type only if there is not an existing type of
10176 the same name already in scope. For example, given:
10177
10178 struct S {};
10179 void f() { struct S s; }
10180
10181 the `struct S' in the body of `f' is the same `struct S' as in
10182 the global scope; the existing definition is used. However, if
10183 there were no global declaration, this would introduce a new
10184 local class named `S'.
10185
10186 An exception to this rule applies to the following code:
10187
10188 namespace N { struct S; }
10189
10190 Here, the elaborated-type-specifier names a new type
10191 unconditionally; even if there is already an `S' in the
10192 containing scope this declaration names a new type.
10193 This exception only applies if the elaborated-type-specifier
10194 forms the complete declaration:
10195
10196 [class.name]
10197
10198 A declaration consisting solely of `class-key identifier ;' is
10199 either a redeclaration of the name in the current scope or a
10200 forward declaration of the identifier as a class name. It
10201 introduces the name into the current scope.
10202
10203 We are in this situation precisely when the next token is a `;'.
10204
10205 An exception to the exception is that a `friend' declaration does
10206 *not* name a new type; i.e., given:
10207
10208 struct S { friend struct T; };
10209
10210 `T' is not a new type in the scope of `S'.
10211
10212 Also, `new struct S' or `sizeof (struct S)' never results in the
10213 definition of a new type; a new type can only be declared in a
10214 declaration context. */
10215
10216 tag_scope ts;
10217 bool template_p;
10218
10219 if (is_friend)
10220 /* Friends have special name lookup rules. */
10221 ts = ts_within_enclosing_non_class;
10222 else if (is_declaration
10223 && cp_lexer_next_token_is (parser->lexer,
10224 CPP_SEMICOLON))
10225 /* This is a `class-key identifier ;' */
10226 ts = ts_current;
10227 else
10228 ts = ts_global;
10229
10230 template_p =
10231 (parser->num_template_parameter_lists
10232 && (cp_parser_next_token_starts_class_definition_p (parser)
10233 || cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)));
10234 /* An unqualified name was used to reference this type, so
10235 there were no qualifying templates. */
10236 if (!cp_parser_check_template_parameters (parser,
10237 /*num_templates=*/0))
10238 return error_mark_node;
10239 type = xref_tag (tag_type, identifier, ts, template_p);
10240 }
10241 }
10242
10243 if (type == error_mark_node)
10244 return error_mark_node;
10245
10246 /* Allow attributes on forward declarations of classes. */
10247 if (attributes)
10248 {
10249 if (TREE_CODE (type) == TYPENAME_TYPE)
10250 warning (OPT_Wattributes,
10251 "attributes ignored on uninstantiated type");
10252 else if (tag_type != enum_type && CLASSTYPE_TEMPLATE_INSTANTIATION (type)
10253 && ! processing_explicit_instantiation)
10254 warning (OPT_Wattributes,
10255 "attributes ignored on template instantiation");
10256 else if (is_declaration && cp_parser_declares_only_class_p (parser))
10257 cplus_decl_attributes (&type, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
10258 else
10259 warning (OPT_Wattributes,
10260 "attributes ignored on elaborated-type-specifier that is not a forward declaration");
10261 }
10262
10263 if (tag_type != enum_type)
10264 cp_parser_check_class_key (tag_type, type);
10265
10266 /* A "<" cannot follow an elaborated type specifier. If that
10267 happens, the user was probably trying to form a template-id. */
10268 cp_parser_check_for_invalid_template_id (parser, type);
10269
10270 return type;
10271 }
10272
10273 /* Parse an enum-specifier.
10274
10275 enum-specifier:
10276 enum identifier [opt] { enumerator-list [opt] }
10277
10278 GNU Extensions:
10279 enum attributes[opt] identifier [opt] { enumerator-list [opt] }
10280 attributes[opt]
10281
10282 Returns an ENUM_TYPE representing the enumeration, or NULL_TREE
10283 if the token stream isn't an enum-specifier after all. */
10284
10285 static tree
10286 cp_parser_enum_specifier (cp_parser* parser)
10287 {
10288 tree identifier;
10289 tree type;
10290 tree attributes;
10291
10292 /* Parse tentatively so that we can back up if we don't find a
10293 enum-specifier. */
10294 cp_parser_parse_tentatively (parser);
10295
10296 /* Caller guarantees that the current token is 'enum', an identifier
10297 possibly follows, and the token after that is an opening brace.
10298 If we don't have an identifier, fabricate an anonymous name for
10299 the enumeration being defined. */
10300 cp_lexer_consume_token (parser->lexer);
10301
10302 attributes = cp_parser_attributes_opt (parser);
10303
10304 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
10305 identifier = cp_parser_identifier (parser);
10306 else
10307 identifier = make_anon_name ();
10308
10309 /* Look for the `{' but don't consume it yet. */
10310 if (!cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
10311 cp_parser_simulate_error (parser);
10312
10313 if (!cp_parser_parse_definitely (parser))
10314 return NULL_TREE;
10315
10316 /* Issue an error message if type-definitions are forbidden here. */
10317 cp_parser_check_type_definition (parser);
10318
10319 /* Create the new type. We do this before consuming the opening brace
10320 so the enum will be recorded as being on the line of its tag (or the
10321 'enum' keyword, if there is no tag). */
10322 type = start_enum (identifier);
10323
10324 /* Consume the opening brace. */
10325 cp_lexer_consume_token (parser->lexer);
10326
10327 if (type == error_mark_node)
10328 {
10329 cp_parser_skip_to_end_of_block_or_statement (parser);
10330 return error_mark_node;
10331 }
10332
10333 /* If the next token is not '}', then there are some enumerators. */
10334 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_BRACE))
10335 cp_parser_enumerator_list (parser, type);
10336
10337 /* Consume the final '}'. */
10338 cp_parser_require (parser, CPP_CLOSE_BRACE, "`}'");
10339
10340 /* Look for trailing attributes to apply to this enumeration, and
10341 apply them if appropriate. */
10342 if (cp_parser_allow_gnu_extensions_p (parser))
10343 {
10344 tree trailing_attr = cp_parser_attributes_opt (parser);
10345 cplus_decl_attributes (&type,
10346 trailing_attr,
10347 (int) ATTR_FLAG_TYPE_IN_PLACE);
10348 }
10349
10350 /* Finish up the enumeration. */
10351 finish_enum (type);
10352
10353 return type;
10354 }
10355
10356 /* Parse an enumerator-list. The enumerators all have the indicated
10357 TYPE.
10358
10359 enumerator-list:
10360 enumerator-definition
10361 enumerator-list , enumerator-definition */
10362
10363 static void
10364 cp_parser_enumerator_list (cp_parser* parser, tree type)
10365 {
10366 while (true)
10367 {
10368 /* Parse an enumerator-definition. */
10369 cp_parser_enumerator_definition (parser, type);
10370
10371 /* If the next token is not a ',', we've reached the end of
10372 the list. */
10373 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
10374 break;
10375 /* Otherwise, consume the `,' and keep going. */
10376 cp_lexer_consume_token (parser->lexer);
10377 /* If the next token is a `}', there is a trailing comma. */
10378 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
10379 {
10380 if (pedantic && !in_system_header)
10381 pedwarn ("comma at end of enumerator list");
10382 break;
10383 }
10384 }
10385 }
10386
10387 /* Parse an enumerator-definition. The enumerator has the indicated
10388 TYPE.
10389
10390 enumerator-definition:
10391 enumerator
10392 enumerator = constant-expression
10393
10394 enumerator:
10395 identifier */
10396
10397 static void
10398 cp_parser_enumerator_definition (cp_parser* parser, tree type)
10399 {
10400 tree identifier;
10401 tree value;
10402
10403 /* Look for the identifier. */
10404 identifier = cp_parser_identifier (parser);
10405 if (identifier == error_mark_node)
10406 return;
10407
10408 /* If the next token is an '=', then there is an explicit value. */
10409 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
10410 {
10411 /* Consume the `=' token. */
10412 cp_lexer_consume_token (parser->lexer);
10413 /* Parse the value. */
10414 value = cp_parser_constant_expression (parser,
10415 /*allow_non_constant_p=*/false,
10416 NULL);
10417 }
10418 else
10419 value = NULL_TREE;
10420
10421 /* Create the enumerator. */
10422 build_enumerator (identifier, value, type);
10423 }
10424
10425 /* Parse a namespace-name.
10426
10427 namespace-name:
10428 original-namespace-name
10429 namespace-alias
10430
10431 Returns the NAMESPACE_DECL for the namespace. */
10432
10433 static tree
10434 cp_parser_namespace_name (cp_parser* parser)
10435 {
10436 tree identifier;
10437 tree namespace_decl;
10438
10439 /* Get the name of the namespace. */
10440 identifier = cp_parser_identifier (parser);
10441 if (identifier == error_mark_node)
10442 return error_mark_node;
10443
10444 /* Look up the identifier in the currently active scope. Look only
10445 for namespaces, due to:
10446
10447 [basic.lookup.udir]
10448
10449 When looking up a namespace-name in a using-directive or alias
10450 definition, only namespace names are considered.
10451
10452 And:
10453
10454 [basic.lookup.qual]
10455
10456 During the lookup of a name preceding the :: scope resolution
10457 operator, object, function, and enumerator names are ignored.
10458
10459 (Note that cp_parser_class_or_namespace_name only calls this
10460 function if the token after the name is the scope resolution
10461 operator.) */
10462 namespace_decl = cp_parser_lookup_name (parser, identifier,
10463 none_type,
10464 /*is_template=*/false,
10465 /*is_namespace=*/true,
10466 /*check_dependency=*/true,
10467 /*ambiguous_decls=*/NULL);
10468 /* If it's not a namespace, issue an error. */
10469 if (namespace_decl == error_mark_node
10470 || TREE_CODE (namespace_decl) != NAMESPACE_DECL)
10471 {
10472 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
10473 error ("%qD is not a namespace-name", identifier);
10474 cp_parser_error (parser, "expected namespace-name");
10475 namespace_decl = error_mark_node;
10476 }
10477
10478 return namespace_decl;
10479 }
10480
10481 /* Parse a namespace-definition.
10482
10483 namespace-definition:
10484 named-namespace-definition
10485 unnamed-namespace-definition
10486
10487 named-namespace-definition:
10488 original-namespace-definition
10489 extension-namespace-definition
10490
10491 original-namespace-definition:
10492 namespace identifier { namespace-body }
10493
10494 extension-namespace-definition:
10495 namespace original-namespace-name { namespace-body }
10496
10497 unnamed-namespace-definition:
10498 namespace { namespace-body } */
10499
10500 static void
10501 cp_parser_namespace_definition (cp_parser* parser)
10502 {
10503 tree identifier, attribs;
10504
10505 /* Look for the `namespace' keyword. */
10506 cp_parser_require_keyword (parser, RID_NAMESPACE, "`namespace'");
10507
10508 /* Get the name of the namespace. We do not attempt to distinguish
10509 between an original-namespace-definition and an
10510 extension-namespace-definition at this point. The semantic
10511 analysis routines are responsible for that. */
10512 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
10513 identifier = cp_parser_identifier (parser);
10514 else
10515 identifier = NULL_TREE;
10516
10517 /* Parse any specified attributes. */
10518 attribs = cp_parser_attributes_opt (parser);
10519
10520 /* Look for the `{' to start the namespace. */
10521 cp_parser_require (parser, CPP_OPEN_BRACE, "`{'");
10522 /* Start the namespace. */
10523 push_namespace_with_attribs (identifier, attribs);
10524 /* Parse the body of the namespace. */
10525 cp_parser_namespace_body (parser);
10526 /* Finish the namespace. */
10527 pop_namespace ();
10528 /* Look for the final `}'. */
10529 cp_parser_require (parser, CPP_CLOSE_BRACE, "`}'");
10530 }
10531
10532 /* Parse a namespace-body.
10533
10534 namespace-body:
10535 declaration-seq [opt] */
10536
10537 static void
10538 cp_parser_namespace_body (cp_parser* parser)
10539 {
10540 cp_parser_declaration_seq_opt (parser);
10541 }
10542
10543 /* Parse a namespace-alias-definition.
10544
10545 namespace-alias-definition:
10546 namespace identifier = qualified-namespace-specifier ; */
10547
10548 static void
10549 cp_parser_namespace_alias_definition (cp_parser* parser)
10550 {
10551 tree identifier;
10552 tree namespace_specifier;
10553
10554 /* Look for the `namespace' keyword. */
10555 cp_parser_require_keyword (parser, RID_NAMESPACE, "`namespace'");
10556 /* Look for the identifier. */
10557 identifier = cp_parser_identifier (parser);
10558 if (identifier == error_mark_node)
10559 return;
10560 /* Look for the `=' token. */
10561 cp_parser_require (parser, CPP_EQ, "`='");
10562 /* Look for the qualified-namespace-specifier. */
10563 namespace_specifier
10564 = cp_parser_qualified_namespace_specifier (parser);
10565 /* Look for the `;' token. */
10566 cp_parser_require (parser, CPP_SEMICOLON, "`;'");
10567
10568 /* Register the alias in the symbol table. */
10569 do_namespace_alias (identifier, namespace_specifier);
10570 }
10571
10572 /* Parse a qualified-namespace-specifier.
10573
10574 qualified-namespace-specifier:
10575 :: [opt] nested-name-specifier [opt] namespace-name
10576
10577 Returns a NAMESPACE_DECL corresponding to the specified
10578 namespace. */
10579
10580 static tree
10581 cp_parser_qualified_namespace_specifier (cp_parser* parser)
10582 {
10583 /* Look for the optional `::'. */
10584 cp_parser_global_scope_opt (parser,
10585 /*current_scope_valid_p=*/false);
10586
10587 /* Look for the optional nested-name-specifier. */
10588 cp_parser_nested_name_specifier_opt (parser,
10589 /*typename_keyword_p=*/false,
10590 /*check_dependency_p=*/true,
10591 /*type_p=*/false,
10592 /*is_declaration=*/true);
10593
10594 return cp_parser_namespace_name (parser);
10595 }
10596
10597 /* Parse a using-declaration, or, if ACCESS_DECLARATION_P is true, an
10598 access declaration.
10599
10600 using-declaration:
10601 using typename [opt] :: [opt] nested-name-specifier unqualified-id ;
10602 using :: unqualified-id ;
10603
10604 access-declaration:
10605 qualified-id ;
10606
10607 */
10608
10609 static bool
10610 cp_parser_using_declaration (cp_parser* parser,
10611 bool access_declaration_p)
10612 {
10613 cp_token *token;
10614 bool typename_p = false;
10615 bool global_scope_p;
10616 tree decl;
10617 tree identifier;
10618 tree qscope;
10619
10620 if (access_declaration_p)
10621 cp_parser_parse_tentatively (parser);
10622 else
10623 {
10624 /* Look for the `using' keyword. */
10625 cp_parser_require_keyword (parser, RID_USING, "`using'");
10626
10627 /* Peek at the next token. */
10628 token = cp_lexer_peek_token (parser->lexer);
10629 /* See if it's `typename'. */
10630 if (token->keyword == RID_TYPENAME)
10631 {
10632 /* Remember that we've seen it. */
10633 typename_p = true;
10634 /* Consume the `typename' token. */
10635 cp_lexer_consume_token (parser->lexer);
10636 }
10637 }
10638
10639 /* Look for the optional global scope qualification. */
10640 global_scope_p
10641 = (cp_parser_global_scope_opt (parser,
10642 /*current_scope_valid_p=*/false)
10643 != NULL_TREE);
10644
10645 /* If we saw `typename', or didn't see `::', then there must be a
10646 nested-name-specifier present. */
10647 if (typename_p || !global_scope_p)
10648 qscope = cp_parser_nested_name_specifier (parser, typename_p,
10649 /*check_dependency_p=*/true,
10650 /*type_p=*/false,
10651 /*is_declaration=*/true);
10652 /* Otherwise, we could be in either of the two productions. In that
10653 case, treat the nested-name-specifier as optional. */
10654 else
10655 qscope = cp_parser_nested_name_specifier_opt (parser,
10656 /*typename_keyword_p=*/false,
10657 /*check_dependency_p=*/true,
10658 /*type_p=*/false,
10659 /*is_declaration=*/true);
10660 if (!qscope)
10661 qscope = global_namespace;
10662
10663 /* Parse the unqualified-id. */
10664 identifier = cp_parser_unqualified_id (parser,
10665 /*template_keyword_p=*/false,
10666 /*check_dependency_p=*/true,
10667 /*declarator_p=*/true,
10668 /*optional_p=*/false);
10669
10670 if (access_declaration_p)
10671 {
10672 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
10673 cp_parser_simulate_error (parser);
10674 if (!cp_parser_parse_definitely (parser))
10675 return false;
10676 }
10677
10678 /* The function we call to handle a using-declaration is different
10679 depending on what scope we are in. */
10680 if (qscope == error_mark_node || identifier == error_mark_node)
10681 ;
10682 else if (TREE_CODE (identifier) != IDENTIFIER_NODE
10683 && TREE_CODE (identifier) != BIT_NOT_EXPR)
10684 /* [namespace.udecl]
10685
10686 A using declaration shall not name a template-id. */
10687 error ("a template-id may not appear in a using-declaration");
10688 else
10689 {
10690 if (at_class_scope_p ())
10691 {
10692 /* Create the USING_DECL. */
10693 decl = do_class_using_decl (parser->scope, identifier);
10694 /* Add it to the list of members in this class. */
10695 finish_member_declaration (decl);
10696 }
10697 else
10698 {
10699 decl = cp_parser_lookup_name_simple (parser, identifier);
10700 if (decl == error_mark_node)
10701 cp_parser_name_lookup_error (parser, identifier, decl, NULL);
10702 else if (!at_namespace_scope_p ())
10703 do_local_using_decl (decl, qscope, identifier);
10704 else
10705 do_toplevel_using_decl (decl, qscope, identifier);
10706 }
10707 }
10708
10709 /* Look for the final `;'. */
10710 cp_parser_require (parser, CPP_SEMICOLON, "`;'");
10711
10712 return true;
10713 }
10714
10715 /* Parse a using-directive.
10716
10717 using-directive:
10718 using namespace :: [opt] nested-name-specifier [opt]
10719 namespace-name ; */
10720
10721 static void
10722 cp_parser_using_directive (cp_parser* parser)
10723 {
10724 tree namespace_decl;
10725 tree attribs;
10726
10727 /* Look for the `using' keyword. */
10728 cp_parser_require_keyword (parser, RID_USING, "`using'");
10729 /* And the `namespace' keyword. */
10730 cp_parser_require_keyword (parser, RID_NAMESPACE, "`namespace'");
10731 /* Look for the optional `::' operator. */
10732 cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/false);
10733 /* And the optional nested-name-specifier. */
10734 cp_parser_nested_name_specifier_opt (parser,
10735 /*typename_keyword_p=*/false,
10736 /*check_dependency_p=*/true,
10737 /*type_p=*/false,
10738 /*is_declaration=*/true);
10739 /* Get the namespace being used. */
10740 namespace_decl = cp_parser_namespace_name (parser);
10741 /* And any specified attributes. */
10742 attribs = cp_parser_attributes_opt (parser);
10743 /* Update the symbol table. */
10744 parse_using_directive (namespace_decl, attribs);
10745 /* Look for the final `;'. */
10746 cp_parser_require (parser, CPP_SEMICOLON, "`;'");
10747 }
10748
10749 /* Parse an asm-definition.
10750
10751 asm-definition:
10752 asm ( string-literal ) ;
10753
10754 GNU Extension:
10755
10756 asm-definition:
10757 asm volatile [opt] ( string-literal ) ;
10758 asm volatile [opt] ( string-literal : asm-operand-list [opt] ) ;
10759 asm volatile [opt] ( string-literal : asm-operand-list [opt]
10760 : asm-operand-list [opt] ) ;
10761 asm volatile [opt] ( string-literal : asm-operand-list [opt]
10762 : asm-operand-list [opt]
10763 : asm-operand-list [opt] ) ; */
10764
10765 static void
10766 cp_parser_asm_definition (cp_parser* parser)
10767 {
10768 tree string;
10769 tree outputs = NULL_TREE;
10770 tree inputs = NULL_TREE;
10771 tree clobbers = NULL_TREE;
10772 tree asm_stmt;
10773 bool volatile_p = false;
10774 bool extended_p = false;
10775
10776 /* Look for the `asm' keyword. */
10777 cp_parser_require_keyword (parser, RID_ASM, "`asm'");
10778 /* See if the next token is `volatile'. */
10779 if (cp_parser_allow_gnu_extensions_p (parser)
10780 && cp_lexer_next_token_is_keyword (parser->lexer, RID_VOLATILE))
10781 {
10782 /* Remember that we saw the `volatile' keyword. */
10783 volatile_p = true;
10784 /* Consume the token. */
10785 cp_lexer_consume_token (parser->lexer);
10786 }
10787 /* Look for the opening `('. */
10788 if (!cp_parser_require (parser, CPP_OPEN_PAREN, "`('"))
10789 return;
10790 /* Look for the string. */
10791 string = cp_parser_string_literal (parser, false, false);
10792 if (string == error_mark_node)
10793 {
10794 cp_parser_skip_to_closing_parenthesis (parser, true, false,
10795 /*consume_paren=*/true);
10796 return;
10797 }
10798
10799 /* If we're allowing GNU extensions, check for the extended assembly
10800 syntax. Unfortunately, the `:' tokens need not be separated by
10801 a space in C, and so, for compatibility, we tolerate that here
10802 too. Doing that means that we have to treat the `::' operator as
10803 two `:' tokens. */
10804 if (cp_parser_allow_gnu_extensions_p (parser)
10805 && at_function_scope_p ()
10806 && (cp_lexer_next_token_is (parser->lexer, CPP_COLON)
10807 || cp_lexer_next_token_is (parser->lexer, CPP_SCOPE)))
10808 {
10809 bool inputs_p = false;
10810 bool clobbers_p = false;
10811
10812 /* The extended syntax was used. */
10813 extended_p = true;
10814
10815 /* Look for outputs. */
10816 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
10817 {
10818 /* Consume the `:'. */
10819 cp_lexer_consume_token (parser->lexer);
10820 /* Parse the output-operands. */
10821 if (cp_lexer_next_token_is_not (parser->lexer,
10822 CPP_COLON)
10823 && cp_lexer_next_token_is_not (parser->lexer,
10824 CPP_SCOPE)
10825 && cp_lexer_next_token_is_not (parser->lexer,
10826 CPP_CLOSE_PAREN))
10827 outputs = cp_parser_asm_operand_list (parser);
10828 }
10829 /* If the next token is `::', there are no outputs, and the
10830 next token is the beginning of the inputs. */
10831 else if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
10832 /* The inputs are coming next. */
10833 inputs_p = true;
10834
10835 /* Look for inputs. */
10836 if (inputs_p
10837 || cp_lexer_next_token_is (parser->lexer, CPP_COLON))
10838 {
10839 /* Consume the `:' or `::'. */
10840 cp_lexer_consume_token (parser->lexer);
10841 /* Parse the output-operands. */
10842 if (cp_lexer_next_token_is_not (parser->lexer,
10843 CPP_COLON)
10844 && cp_lexer_next_token_is_not (parser->lexer,
10845 CPP_CLOSE_PAREN))
10846 inputs = cp_parser_asm_operand_list (parser);
10847 }
10848 else if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
10849 /* The clobbers are coming next. */
10850 clobbers_p = true;
10851
10852 /* Look for clobbers. */
10853 if (clobbers_p
10854 || cp_lexer_next_token_is (parser->lexer, CPP_COLON))
10855 {
10856 /* Consume the `:' or `::'. */
10857 cp_lexer_consume_token (parser->lexer);
10858 /* Parse the clobbers. */
10859 if (cp_lexer_next_token_is_not (parser->lexer,
10860 CPP_CLOSE_PAREN))
10861 clobbers = cp_parser_asm_clobber_list (parser);
10862 }
10863 }
10864 /* Look for the closing `)'. */
10865 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'"))
10866 cp_parser_skip_to_closing_parenthesis (parser, true, false,
10867 /*consume_paren=*/true);
10868 cp_parser_require (parser, CPP_SEMICOLON, "`;'");
10869
10870 /* Create the ASM_EXPR. */
10871 if (at_function_scope_p ())
10872 {
10873 asm_stmt = finish_asm_stmt (volatile_p, string, outputs,
10874 inputs, clobbers);
10875 /* If the extended syntax was not used, mark the ASM_EXPR. */
10876 if (!extended_p)
10877 {
10878 tree temp = asm_stmt;
10879 if (TREE_CODE (temp) == CLEANUP_POINT_EXPR)
10880 temp = TREE_OPERAND (temp, 0);
10881
10882 ASM_INPUT_P (temp) = 1;
10883 }
10884 }
10885 else
10886 cgraph_add_asm_node (string);
10887 }
10888
10889 /* Declarators [gram.dcl.decl] */
10890
10891 /* Parse an init-declarator.
10892
10893 init-declarator:
10894 declarator initializer [opt]
10895
10896 GNU Extension:
10897
10898 init-declarator:
10899 declarator asm-specification [opt] attributes [opt] initializer [opt]
10900
10901 function-definition:
10902 decl-specifier-seq [opt] declarator ctor-initializer [opt]
10903 function-body
10904 decl-specifier-seq [opt] declarator function-try-block
10905
10906 GNU Extension:
10907
10908 function-definition:
10909 __extension__ function-definition
10910
10911 The DECL_SPECIFIERS apply to this declarator. Returns a
10912 representation of the entity declared. If MEMBER_P is TRUE, then
10913 this declarator appears in a class scope. The new DECL created by
10914 this declarator is returned.
10915
10916 The CHECKS are access checks that should be performed once we know
10917 what entity is being declared (and, therefore, what classes have
10918 befriended it).
10919
10920 If FUNCTION_DEFINITION_ALLOWED_P then we handle the declarator and
10921 for a function-definition here as well. If the declarator is a
10922 declarator for a function-definition, *FUNCTION_DEFINITION_P will
10923 be TRUE upon return. By that point, the function-definition will
10924 have been completely parsed.
10925
10926 FUNCTION_DEFINITION_P may be NULL if FUNCTION_DEFINITION_ALLOWED_P
10927 is FALSE. */
10928
10929 static tree
10930 cp_parser_init_declarator (cp_parser* parser,
10931 cp_decl_specifier_seq *decl_specifiers,
10932 tree checks,
10933 bool function_definition_allowed_p,
10934 bool member_p,
10935 int declares_class_or_enum,
10936 bool* function_definition_p)
10937 {
10938 cp_token *token;
10939 cp_declarator *declarator;
10940 tree prefix_attributes;
10941 tree attributes;
10942 tree asm_specification;
10943 tree initializer;
10944 tree decl = NULL_TREE;
10945 tree scope;
10946 bool is_initialized;
10947 /* Only valid if IS_INITIALIZED is true. In that case, CPP_EQ if
10948 initialized with "= ..", CPP_OPEN_PAREN if initialized with
10949 "(...)". */
10950 enum cpp_ttype initialization_kind;
10951 bool is_parenthesized_init = false;
10952 bool is_non_constant_init;
10953 int ctor_dtor_or_conv_p;
10954 bool friend_p;
10955 tree pushed_scope = NULL;
10956
10957 /* Gather the attributes that were provided with the
10958 decl-specifiers. */
10959 prefix_attributes = decl_specifiers->attributes;
10960
10961 /* Assume that this is not the declarator for a function
10962 definition. */
10963 if (function_definition_p)
10964 *function_definition_p = false;
10965
10966 /* Defer access checks while parsing the declarator; we cannot know
10967 what names are accessible until we know what is being
10968 declared. */
10969 resume_deferring_access_checks ();
10970
10971 /* Parse the declarator. */
10972 declarator
10973 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
10974 &ctor_dtor_or_conv_p,
10975 /*parenthesized_p=*/NULL,
10976 /*member_p=*/false);
10977 /* Gather up the deferred checks. */
10978 stop_deferring_access_checks ();
10979
10980 /* If the DECLARATOR was erroneous, there's no need to go
10981 further. */
10982 if (declarator == cp_error_declarator)
10983 return error_mark_node;
10984
10985 if (declares_class_or_enum & 2)
10986 cp_parser_check_for_definition_in_return_type (declarator,
10987 decl_specifiers->type);
10988
10989 /* Figure out what scope the entity declared by the DECLARATOR is
10990 located in. `grokdeclarator' sometimes changes the scope, so
10991 we compute it now. */
10992 scope = get_scope_of_declarator (declarator);
10993
10994 /* If we're allowing GNU extensions, look for an asm-specification
10995 and attributes. */
10996 if (cp_parser_allow_gnu_extensions_p (parser))
10997 {
10998 /* Look for an asm-specification. */
10999 asm_specification = cp_parser_asm_specification_opt (parser);
11000 /* And attributes. */
11001 attributes = cp_parser_attributes_opt (parser);
11002 }
11003 else
11004 {
11005 asm_specification = NULL_TREE;
11006 attributes = NULL_TREE;
11007 }
11008
11009 /* Peek at the next token. */
11010 token = cp_lexer_peek_token (parser->lexer);
11011 /* Check to see if the token indicates the start of a
11012 function-definition. */
11013 if (cp_parser_token_starts_function_definition_p (token))
11014 {
11015 if (!function_definition_allowed_p)
11016 {
11017 /* If a function-definition should not appear here, issue an
11018 error message. */
11019 cp_parser_error (parser,
11020 "a function-definition is not allowed here");
11021 return error_mark_node;
11022 }
11023 else
11024 {
11025 /* Neither attributes nor an asm-specification are allowed
11026 on a function-definition. */
11027 if (asm_specification)
11028 error ("an asm-specification is not allowed on a function-definition");
11029 if (attributes)
11030 error ("attributes are not allowed on a function-definition");
11031 /* This is a function-definition. */
11032 *function_definition_p = true;
11033
11034 /* Parse the function definition. */
11035 if (member_p)
11036 decl = cp_parser_save_member_function_body (parser,
11037 decl_specifiers,
11038 declarator,
11039 prefix_attributes);
11040 else
11041 decl
11042 = (cp_parser_function_definition_from_specifiers_and_declarator
11043 (parser, decl_specifiers, prefix_attributes, declarator));
11044
11045 return decl;
11046 }
11047 }
11048
11049 /* [dcl.dcl]
11050
11051 Only in function declarations for constructors, destructors, and
11052 type conversions can the decl-specifier-seq be omitted.
11053
11054 We explicitly postpone this check past the point where we handle
11055 function-definitions because we tolerate function-definitions
11056 that are missing their return types in some modes. */
11057 if (!decl_specifiers->any_specifiers_p && ctor_dtor_or_conv_p <= 0)
11058 {
11059 cp_parser_error (parser,
11060 "expected constructor, destructor, or type conversion");
11061 return error_mark_node;
11062 }
11063
11064 /* An `=' or an `(' indicates an initializer. */
11065 if (token->type == CPP_EQ
11066 || token->type == CPP_OPEN_PAREN)
11067 {
11068 is_initialized = true;
11069 initialization_kind = token->type;
11070 }
11071 else
11072 {
11073 /* If the init-declarator isn't initialized and isn't followed by a
11074 `,' or `;', it's not a valid init-declarator. */
11075 if (token->type != CPP_COMMA
11076 && token->type != CPP_SEMICOLON)
11077 {
11078 cp_parser_error (parser, "expected initializer");
11079 return error_mark_node;
11080 }
11081 is_initialized = false;
11082 initialization_kind = CPP_EOF;
11083 }
11084
11085 /* Because start_decl has side-effects, we should only call it if we
11086 know we're going ahead. By this point, we know that we cannot
11087 possibly be looking at any other construct. */
11088 cp_parser_commit_to_tentative_parse (parser);
11089
11090 /* If the decl specifiers were bad, issue an error now that we're
11091 sure this was intended to be a declarator. Then continue
11092 declaring the variable(s), as int, to try to cut down on further
11093 errors. */
11094 if (decl_specifiers->any_specifiers_p
11095 && decl_specifiers->type == error_mark_node)
11096 {
11097 cp_parser_error (parser, "invalid type in declaration");
11098 decl_specifiers->type = integer_type_node;
11099 }
11100
11101 /* Check to see whether or not this declaration is a friend. */
11102 friend_p = cp_parser_friend_p (decl_specifiers);
11103
11104 /* Check that the number of template-parameter-lists is OK. */
11105 if (!cp_parser_check_declarator_template_parameters (parser, declarator))
11106 return error_mark_node;
11107
11108 /* Enter the newly declared entry in the symbol table. If we're
11109 processing a declaration in a class-specifier, we wait until
11110 after processing the initializer. */
11111 if (!member_p)
11112 {
11113 if (parser->in_unbraced_linkage_specification_p)
11114 decl_specifiers->storage_class = sc_extern;
11115 decl = start_decl (declarator, decl_specifiers,
11116 is_initialized, attributes, prefix_attributes,
11117 &pushed_scope);
11118 }
11119 else if (scope)
11120 /* Enter the SCOPE. That way unqualified names appearing in the
11121 initializer will be looked up in SCOPE. */
11122 pushed_scope = push_scope (scope);
11123
11124 /* Perform deferred access control checks, now that we know in which
11125 SCOPE the declared entity resides. */
11126 if (!member_p && decl)
11127 {
11128 tree saved_current_function_decl = NULL_TREE;
11129
11130 /* If the entity being declared is a function, pretend that we
11131 are in its scope. If it is a `friend', it may have access to
11132 things that would not otherwise be accessible. */
11133 if (TREE_CODE (decl) == FUNCTION_DECL)
11134 {
11135 saved_current_function_decl = current_function_decl;
11136 current_function_decl = decl;
11137 }
11138
11139 /* Perform access checks for template parameters. */
11140 cp_parser_perform_template_parameter_access_checks (checks);
11141
11142 /* Perform the access control checks for the declarator and the
11143 the decl-specifiers. */
11144 perform_deferred_access_checks ();
11145
11146 /* Restore the saved value. */
11147 if (TREE_CODE (decl) == FUNCTION_DECL)
11148 current_function_decl = saved_current_function_decl;
11149 }
11150
11151 /* Parse the initializer. */
11152 initializer = NULL_TREE;
11153 is_parenthesized_init = false;
11154 is_non_constant_init = true;
11155 if (is_initialized)
11156 {
11157 if (declarator->kind == cdk_function
11158 && declarator->declarator->kind == cdk_id
11159 && initialization_kind == CPP_EQ)
11160 initializer = cp_parser_pure_specifier (parser);
11161 else
11162 initializer = cp_parser_initializer (parser,
11163 &is_parenthesized_init,
11164 &is_non_constant_init);
11165 }
11166
11167 /* The old parser allows attributes to appear after a parenthesized
11168 initializer. Mark Mitchell proposed removing this functionality
11169 on the GCC mailing lists on 2002-08-13. This parser accepts the
11170 attributes -- but ignores them. */
11171 if (cp_parser_allow_gnu_extensions_p (parser) && is_parenthesized_init)
11172 if (cp_parser_attributes_opt (parser))
11173 warning (OPT_Wattributes,
11174 "attributes after parenthesized initializer ignored");
11175
11176 /* For an in-class declaration, use `grokfield' to create the
11177 declaration. */
11178 if (member_p)
11179 {
11180 if (pushed_scope)
11181 {
11182 pop_scope (pushed_scope);
11183 pushed_scope = false;
11184 }
11185 decl = grokfield (declarator, decl_specifiers,
11186 initializer, !is_non_constant_init,
11187 /*asmspec=*/NULL_TREE,
11188 prefix_attributes);
11189 if (decl && TREE_CODE (decl) == FUNCTION_DECL)
11190 cp_parser_save_default_args (parser, decl);
11191 }
11192
11193 /* Finish processing the declaration. But, skip friend
11194 declarations. */
11195 if (!friend_p && decl && decl != error_mark_node)
11196 {
11197 cp_finish_decl (decl,
11198 initializer, !is_non_constant_init,
11199 asm_specification,
11200 /* If the initializer is in parentheses, then this is
11201 a direct-initialization, which means that an
11202 `explicit' constructor is OK. Otherwise, an
11203 `explicit' constructor cannot be used. */
11204 ((is_parenthesized_init || !is_initialized)
11205 ? 0 : LOOKUP_ONLYCONVERTING));
11206 }
11207 if (!friend_p && pushed_scope)
11208 pop_scope (pushed_scope);
11209
11210 return decl;
11211 }
11212
11213 /* Parse a declarator.
11214
11215 declarator:
11216 direct-declarator
11217 ptr-operator declarator
11218
11219 abstract-declarator:
11220 ptr-operator abstract-declarator [opt]
11221 direct-abstract-declarator
11222
11223 GNU Extensions:
11224
11225 declarator:
11226 attributes [opt] direct-declarator
11227 attributes [opt] ptr-operator declarator
11228
11229 abstract-declarator:
11230 attributes [opt] ptr-operator abstract-declarator [opt]
11231 attributes [opt] direct-abstract-declarator
11232
11233 If CTOR_DTOR_OR_CONV_P is not NULL, *CTOR_DTOR_OR_CONV_P is used to
11234 detect constructor, destructor or conversion operators. It is set
11235 to -1 if the declarator is a name, and +1 if it is a
11236 function. Otherwise it is set to zero. Usually you just want to
11237 test for >0, but internally the negative value is used.
11238
11239 (The reason for CTOR_DTOR_OR_CONV_P is that a declaration must have
11240 a decl-specifier-seq unless it declares a constructor, destructor,
11241 or conversion. It might seem that we could check this condition in
11242 semantic analysis, rather than parsing, but that makes it difficult
11243 to handle something like `f()'. We want to notice that there are
11244 no decl-specifiers, and therefore realize that this is an
11245 expression, not a declaration.)
11246
11247 If PARENTHESIZED_P is non-NULL, *PARENTHESIZED_P is set to true iff
11248 the declarator is a direct-declarator of the form "(...)".
11249
11250 MEMBER_P is true iff this declarator is a member-declarator. */
11251
11252 static cp_declarator *
11253 cp_parser_declarator (cp_parser* parser,
11254 cp_parser_declarator_kind dcl_kind,
11255 int* ctor_dtor_or_conv_p,
11256 bool* parenthesized_p,
11257 bool member_p)
11258 {
11259 cp_token *token;
11260 cp_declarator *declarator;
11261 enum tree_code code;
11262 cp_cv_quals cv_quals;
11263 tree class_type;
11264 tree attributes = NULL_TREE;
11265
11266 /* Assume this is not a constructor, destructor, or type-conversion
11267 operator. */
11268 if (ctor_dtor_or_conv_p)
11269 *ctor_dtor_or_conv_p = 0;
11270
11271 if (cp_parser_allow_gnu_extensions_p (parser))
11272 attributes = cp_parser_attributes_opt (parser);
11273
11274 /* Peek at the next token. */
11275 token = cp_lexer_peek_token (parser->lexer);
11276
11277 /* Check for the ptr-operator production. */
11278 cp_parser_parse_tentatively (parser);
11279 /* Parse the ptr-operator. */
11280 code = cp_parser_ptr_operator (parser,
11281 &class_type,
11282 &cv_quals);
11283 /* If that worked, then we have a ptr-operator. */
11284 if (cp_parser_parse_definitely (parser))
11285 {
11286 /* If a ptr-operator was found, then this declarator was not
11287 parenthesized. */
11288 if (parenthesized_p)
11289 *parenthesized_p = true;
11290 /* The dependent declarator is optional if we are parsing an
11291 abstract-declarator. */
11292 if (dcl_kind != CP_PARSER_DECLARATOR_NAMED)
11293 cp_parser_parse_tentatively (parser);
11294
11295 /* Parse the dependent declarator. */
11296 declarator = cp_parser_declarator (parser, dcl_kind,
11297 /*ctor_dtor_or_conv_p=*/NULL,
11298 /*parenthesized_p=*/NULL,
11299 /*member_p=*/false);
11300
11301 /* If we are parsing an abstract-declarator, we must handle the
11302 case where the dependent declarator is absent. */
11303 if (dcl_kind != CP_PARSER_DECLARATOR_NAMED
11304 && !cp_parser_parse_definitely (parser))
11305 declarator = NULL;
11306
11307 /* Build the representation of the ptr-operator. */
11308 if (class_type)
11309 declarator = make_ptrmem_declarator (cv_quals,
11310 class_type,
11311 declarator);
11312 else if (code == INDIRECT_REF)
11313 declarator = make_pointer_declarator (cv_quals, declarator);
11314 else
11315 declarator = make_reference_declarator (cv_quals, declarator);
11316 }
11317 /* Everything else is a direct-declarator. */
11318 else
11319 {
11320 if (parenthesized_p)
11321 *parenthesized_p = cp_lexer_next_token_is (parser->lexer,
11322 CPP_OPEN_PAREN);
11323 declarator = cp_parser_direct_declarator (parser, dcl_kind,
11324 ctor_dtor_or_conv_p,
11325 member_p);
11326 }
11327
11328 if (attributes && declarator && declarator != cp_error_declarator)
11329 declarator->attributes = attributes;
11330
11331 return declarator;
11332 }
11333
11334 /* Parse a direct-declarator or direct-abstract-declarator.
11335
11336 direct-declarator:
11337 declarator-id
11338 direct-declarator ( parameter-declaration-clause )
11339 cv-qualifier-seq [opt]
11340 exception-specification [opt]
11341 direct-declarator [ constant-expression [opt] ]
11342 ( declarator )
11343
11344 direct-abstract-declarator:
11345 direct-abstract-declarator [opt]
11346 ( parameter-declaration-clause )
11347 cv-qualifier-seq [opt]
11348 exception-specification [opt]
11349 direct-abstract-declarator [opt] [ constant-expression [opt] ]
11350 ( abstract-declarator )
11351
11352 Returns a representation of the declarator. DCL_KIND is
11353 CP_PARSER_DECLARATOR_ABSTRACT, if we are parsing a
11354 direct-abstract-declarator. It is CP_PARSER_DECLARATOR_NAMED, if
11355 we are parsing a direct-declarator. It is
11356 CP_PARSER_DECLARATOR_EITHER, if we can accept either - in the case
11357 of ambiguity we prefer an abstract declarator, as per
11358 [dcl.ambig.res]. CTOR_DTOR_OR_CONV_P and MEMBER_P are as for
11359 cp_parser_declarator. */
11360
11361 static cp_declarator *
11362 cp_parser_direct_declarator (cp_parser* parser,
11363 cp_parser_declarator_kind dcl_kind,
11364 int* ctor_dtor_or_conv_p,
11365 bool member_p)
11366 {
11367 cp_token *token;
11368 cp_declarator *declarator = NULL;
11369 tree scope = NULL_TREE;
11370 bool saved_default_arg_ok_p = parser->default_arg_ok_p;
11371 bool saved_in_declarator_p = parser->in_declarator_p;
11372 bool first = true;
11373 tree pushed_scope = NULL_TREE;
11374
11375 while (true)
11376 {
11377 /* Peek at the next token. */
11378 token = cp_lexer_peek_token (parser->lexer);
11379 if (token->type == CPP_OPEN_PAREN)
11380 {
11381 /* This is either a parameter-declaration-clause, or a
11382 parenthesized declarator. When we know we are parsing a
11383 named declarator, it must be a parenthesized declarator
11384 if FIRST is true. For instance, `(int)' is a
11385 parameter-declaration-clause, with an omitted
11386 direct-abstract-declarator. But `((*))', is a
11387 parenthesized abstract declarator. Finally, when T is a
11388 template parameter `(T)' is a
11389 parameter-declaration-clause, and not a parenthesized
11390 named declarator.
11391
11392 We first try and parse a parameter-declaration-clause,
11393 and then try a nested declarator (if FIRST is true).
11394
11395 It is not an error for it not to be a
11396 parameter-declaration-clause, even when FIRST is
11397 false. Consider,
11398
11399 int i (int);
11400 int i (3);
11401
11402 The first is the declaration of a function while the
11403 second is a the definition of a variable, including its
11404 initializer.
11405
11406 Having seen only the parenthesis, we cannot know which of
11407 these two alternatives should be selected. Even more
11408 complex are examples like:
11409
11410 int i (int (a));
11411 int i (int (3));
11412
11413 The former is a function-declaration; the latter is a
11414 variable initialization.
11415
11416 Thus again, we try a parameter-declaration-clause, and if
11417 that fails, we back out and return. */
11418
11419 if (!first || dcl_kind != CP_PARSER_DECLARATOR_NAMED)
11420 {
11421 cp_parameter_declarator *params;
11422 unsigned saved_num_template_parameter_lists;
11423
11424 /* In a member-declarator, the only valid interpretation
11425 of a parenthesis is the start of a
11426 parameter-declaration-clause. (It is invalid to
11427 initialize a static data member with a parenthesized
11428 initializer; only the "=" form of initialization is
11429 permitted.) */
11430 if (!member_p)
11431 cp_parser_parse_tentatively (parser);
11432
11433 /* Consume the `('. */
11434 cp_lexer_consume_token (parser->lexer);
11435 if (first)
11436 {
11437 /* If this is going to be an abstract declarator, we're
11438 in a declarator and we can't have default args. */
11439 parser->default_arg_ok_p = false;
11440 parser->in_declarator_p = true;
11441 }
11442
11443 /* Inside the function parameter list, surrounding
11444 template-parameter-lists do not apply. */
11445 saved_num_template_parameter_lists
11446 = parser->num_template_parameter_lists;
11447 parser->num_template_parameter_lists = 0;
11448
11449 /* Parse the parameter-declaration-clause. */
11450 params = cp_parser_parameter_declaration_clause (parser);
11451
11452 parser->num_template_parameter_lists
11453 = saved_num_template_parameter_lists;
11454
11455 /* If all went well, parse the cv-qualifier-seq and the
11456 exception-specification. */
11457 if (member_p || cp_parser_parse_definitely (parser))
11458 {
11459 cp_cv_quals cv_quals;
11460 tree exception_specification;
11461
11462 if (ctor_dtor_or_conv_p)
11463 *ctor_dtor_or_conv_p = *ctor_dtor_or_conv_p < 0;
11464 first = false;
11465 /* Consume the `)'. */
11466 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
11467
11468 /* Parse the cv-qualifier-seq. */
11469 cv_quals = cp_parser_cv_qualifier_seq_opt (parser);
11470 /* And the exception-specification. */
11471 exception_specification
11472 = cp_parser_exception_specification_opt (parser);
11473
11474 /* Create the function-declarator. */
11475 declarator = make_call_declarator (declarator,
11476 params,
11477 cv_quals,
11478 exception_specification);
11479 /* Any subsequent parameter lists are to do with
11480 return type, so are not those of the declared
11481 function. */
11482 parser->default_arg_ok_p = false;
11483
11484 /* Repeat the main loop. */
11485 continue;
11486 }
11487 }
11488
11489 /* If this is the first, we can try a parenthesized
11490 declarator. */
11491 if (first)
11492 {
11493 bool saved_in_type_id_in_expr_p;
11494
11495 parser->default_arg_ok_p = saved_default_arg_ok_p;
11496 parser->in_declarator_p = saved_in_declarator_p;
11497
11498 /* Consume the `('. */
11499 cp_lexer_consume_token (parser->lexer);
11500 /* Parse the nested declarator. */
11501 saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
11502 parser->in_type_id_in_expr_p = true;
11503 declarator
11504 = cp_parser_declarator (parser, dcl_kind, ctor_dtor_or_conv_p,
11505 /*parenthesized_p=*/NULL,
11506 member_p);
11507 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
11508 first = false;
11509 /* Expect a `)'. */
11510 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'"))
11511 declarator = cp_error_declarator;
11512 if (declarator == cp_error_declarator)
11513 break;
11514
11515 goto handle_declarator;
11516 }
11517 /* Otherwise, we must be done. */
11518 else
11519 break;
11520 }
11521 else if ((!first || dcl_kind != CP_PARSER_DECLARATOR_NAMED)
11522 && token->type == CPP_OPEN_SQUARE)
11523 {
11524 /* Parse an array-declarator. */
11525 tree bounds;
11526
11527 if (ctor_dtor_or_conv_p)
11528 *ctor_dtor_or_conv_p = 0;
11529
11530 first = false;
11531 parser->default_arg_ok_p = false;
11532 parser->in_declarator_p = true;
11533 /* Consume the `['. */
11534 cp_lexer_consume_token (parser->lexer);
11535 /* Peek at the next token. */
11536 token = cp_lexer_peek_token (parser->lexer);
11537 /* If the next token is `]', then there is no
11538 constant-expression. */
11539 if (token->type != CPP_CLOSE_SQUARE)
11540 {
11541 bool non_constant_p;
11542
11543 bounds
11544 = cp_parser_constant_expression (parser,
11545 /*allow_non_constant=*/true,
11546 &non_constant_p);
11547 if (!non_constant_p)
11548 bounds = fold_non_dependent_expr (bounds);
11549 /* Normally, the array bound must be an integral constant
11550 expression. However, as an extension, we allow VLAs
11551 in function scopes. */
11552 else if (!at_function_scope_p ())
11553 {
11554 error ("array bound is not an integer constant");
11555 bounds = error_mark_node;
11556 }
11557 }
11558 else
11559 bounds = NULL_TREE;
11560 /* Look for the closing `]'. */
11561 if (!cp_parser_require (parser, CPP_CLOSE_SQUARE, "`]'"))
11562 {
11563 declarator = cp_error_declarator;
11564 break;
11565 }
11566
11567 declarator = make_array_declarator (declarator, bounds);
11568 }
11569 else if (first && dcl_kind != CP_PARSER_DECLARATOR_ABSTRACT)
11570 {
11571 tree qualifying_scope;
11572 tree unqualified_name;
11573 special_function_kind sfk;
11574 bool abstract_ok;
11575
11576 /* Parse a declarator-id */
11577 abstract_ok = (dcl_kind == CP_PARSER_DECLARATOR_EITHER);
11578 if (abstract_ok)
11579 cp_parser_parse_tentatively (parser);
11580 unqualified_name
11581 = cp_parser_declarator_id (parser, /*optional_p=*/abstract_ok);
11582 qualifying_scope = parser->scope;
11583 if (abstract_ok)
11584 {
11585 if (!cp_parser_parse_definitely (parser))
11586 unqualified_name = error_mark_node;
11587 else if (unqualified_name
11588 && (qualifying_scope
11589 || (TREE_CODE (unqualified_name)
11590 != IDENTIFIER_NODE)))
11591 {
11592 cp_parser_error (parser, "expected unqualified-id");
11593 unqualified_name = error_mark_node;
11594 }
11595 }
11596
11597 if (!unqualified_name)
11598 return NULL;
11599 if (unqualified_name == error_mark_node)
11600 {
11601 declarator = cp_error_declarator;
11602 break;
11603 }
11604
11605 if (qualifying_scope && at_namespace_scope_p ()
11606 && TREE_CODE (qualifying_scope) == TYPENAME_TYPE)
11607 {
11608 /* In the declaration of a member of a template class
11609 outside of the class itself, the SCOPE will sometimes
11610 be a TYPENAME_TYPE. For example, given:
11611
11612 template <typename T>
11613 int S<T>::R::i = 3;
11614
11615 the SCOPE will be a TYPENAME_TYPE for `S<T>::R'. In
11616 this context, we must resolve S<T>::R to an ordinary
11617 type, rather than a typename type.
11618
11619 The reason we normally avoid resolving TYPENAME_TYPEs
11620 is that a specialization of `S' might render
11621 `S<T>::R' not a type. However, if `S' is
11622 specialized, then this `i' will not be used, so there
11623 is no harm in resolving the types here. */
11624 tree type;
11625
11626 /* Resolve the TYPENAME_TYPE. */
11627 type = resolve_typename_type (qualifying_scope,
11628 /*only_current_p=*/false);
11629 /* If that failed, the declarator is invalid. */
11630 if (type == error_mark_node)
11631 error ("%<%T::%D%> is not a type",
11632 TYPE_CONTEXT (qualifying_scope),
11633 TYPE_IDENTIFIER (qualifying_scope));
11634 qualifying_scope = type;
11635 }
11636
11637 sfk = sfk_none;
11638 if (unqualified_name)
11639 {
11640 tree class_type;
11641
11642 if (qualifying_scope
11643 && CLASS_TYPE_P (qualifying_scope))
11644 class_type = qualifying_scope;
11645 else
11646 class_type = current_class_type;
11647
11648 if (TREE_CODE (unqualified_name) == TYPE_DECL)
11649 {
11650 tree name_type = TREE_TYPE (unqualified_name);
11651 if (class_type && same_type_p (name_type, class_type))
11652 {
11653 if (qualifying_scope
11654 && CLASSTYPE_USE_TEMPLATE (name_type))
11655 {
11656 error ("invalid use of constructor as a template");
11657 inform ("use %<%T::%D%> instead of %<%T::%D%> to "
11658 "name the constructor in a qualified name",
11659 class_type,
11660 DECL_NAME (TYPE_TI_TEMPLATE (class_type)),
11661 class_type, name_type);
11662 declarator = cp_error_declarator;
11663 break;
11664 }
11665 else
11666 unqualified_name = constructor_name (class_type);
11667 }
11668 else
11669 {
11670 /* We do not attempt to print the declarator
11671 here because we do not have enough
11672 information about its original syntactic
11673 form. */
11674 cp_parser_error (parser, "invalid declarator");
11675 declarator = cp_error_declarator;
11676 break;
11677 }
11678 }
11679
11680 if (class_type)
11681 {
11682 if (TREE_CODE (unqualified_name) == BIT_NOT_EXPR)
11683 sfk = sfk_destructor;
11684 else if (IDENTIFIER_TYPENAME_P (unqualified_name))
11685 sfk = sfk_conversion;
11686 else if (/* There's no way to declare a constructor
11687 for an anonymous type, even if the type
11688 got a name for linkage purposes. */
11689 !TYPE_WAS_ANONYMOUS (class_type)
11690 && constructor_name_p (unqualified_name,
11691 class_type))
11692 {
11693 unqualified_name = constructor_name (class_type);
11694 sfk = sfk_constructor;
11695 }
11696
11697 if (ctor_dtor_or_conv_p && sfk != sfk_none)
11698 *ctor_dtor_or_conv_p = -1;
11699 }
11700 }
11701 declarator = make_id_declarator (qualifying_scope,
11702 unqualified_name,
11703 sfk);
11704 declarator->id_loc = token->location;
11705
11706 handle_declarator:;
11707 scope = get_scope_of_declarator (declarator);
11708 if (scope)
11709 /* Any names that appear after the declarator-id for a
11710 member are looked up in the containing scope. */
11711 pushed_scope = push_scope (scope);
11712 parser->in_declarator_p = true;
11713 if ((ctor_dtor_or_conv_p && *ctor_dtor_or_conv_p)
11714 || (declarator && declarator->kind == cdk_id))
11715 /* Default args are only allowed on function
11716 declarations. */
11717 parser->default_arg_ok_p = saved_default_arg_ok_p;
11718 else
11719 parser->default_arg_ok_p = false;
11720
11721 first = false;
11722 }
11723 /* We're done. */
11724 else
11725 break;
11726 }
11727
11728 /* For an abstract declarator, we might wind up with nothing at this
11729 point. That's an error; the declarator is not optional. */
11730 if (!declarator)
11731 cp_parser_error (parser, "expected declarator");
11732
11733 /* If we entered a scope, we must exit it now. */
11734 if (pushed_scope)
11735 pop_scope (pushed_scope);
11736
11737 parser->default_arg_ok_p = saved_default_arg_ok_p;
11738 parser->in_declarator_p = saved_in_declarator_p;
11739
11740 return declarator;
11741 }
11742
11743 /* Parse a ptr-operator.
11744
11745 ptr-operator:
11746 * cv-qualifier-seq [opt]
11747 &
11748 :: [opt] nested-name-specifier * cv-qualifier-seq [opt]
11749
11750 GNU Extension:
11751
11752 ptr-operator:
11753 & cv-qualifier-seq [opt]
11754
11755 Returns INDIRECT_REF if a pointer, or pointer-to-member, was used.
11756 Returns ADDR_EXPR if a reference was used. In the case of a
11757 pointer-to-member, *TYPE is filled in with the TYPE containing the
11758 member. *CV_QUALS is filled in with the cv-qualifier-seq, or
11759 TYPE_UNQUALIFIED, if there are no cv-qualifiers. Returns
11760 ERROR_MARK if an error occurred. */
11761
11762 static enum tree_code
11763 cp_parser_ptr_operator (cp_parser* parser,
11764 tree* type,
11765 cp_cv_quals *cv_quals)
11766 {
11767 enum tree_code code = ERROR_MARK;
11768 cp_token *token;
11769
11770 /* Assume that it's not a pointer-to-member. */
11771 *type = NULL_TREE;
11772 /* And that there are no cv-qualifiers. */
11773 *cv_quals = TYPE_UNQUALIFIED;
11774
11775 /* Peek at the next token. */
11776 token = cp_lexer_peek_token (parser->lexer);
11777 /* If it's a `*' or `&' we have a pointer or reference. */
11778 if (token->type == CPP_MULT || token->type == CPP_AND)
11779 {
11780 /* Remember which ptr-operator we were processing. */
11781 code = (token->type == CPP_AND ? ADDR_EXPR : INDIRECT_REF);
11782
11783 /* Consume the `*' or `&'. */
11784 cp_lexer_consume_token (parser->lexer);
11785
11786 /* A `*' can be followed by a cv-qualifier-seq, and so can a
11787 `&', if we are allowing GNU extensions. (The only qualifier
11788 that can legally appear after `&' is `restrict', but that is
11789 enforced during semantic analysis. */
11790 if (code == INDIRECT_REF
11791 || cp_parser_allow_gnu_extensions_p (parser))
11792 *cv_quals = cp_parser_cv_qualifier_seq_opt (parser);
11793 }
11794 else
11795 {
11796 /* Try the pointer-to-member case. */
11797 cp_parser_parse_tentatively (parser);
11798 /* Look for the optional `::' operator. */
11799 cp_parser_global_scope_opt (parser,
11800 /*current_scope_valid_p=*/false);
11801 /* Look for the nested-name specifier. */
11802 cp_parser_nested_name_specifier (parser,
11803 /*typename_keyword_p=*/false,
11804 /*check_dependency_p=*/true,
11805 /*type_p=*/false,
11806 /*is_declaration=*/false);
11807 /* If we found it, and the next token is a `*', then we are
11808 indeed looking at a pointer-to-member operator. */
11809 if (!cp_parser_error_occurred (parser)
11810 && cp_parser_require (parser, CPP_MULT, "`*'"))
11811 {
11812 /* Indicate that the `*' operator was used. */
11813 code = INDIRECT_REF;
11814
11815 if (TREE_CODE (parser->scope) == NAMESPACE_DECL)
11816 error ("%qD is a namespace", parser->scope);
11817 else
11818 {
11819 /* The type of which the member is a member is given by the
11820 current SCOPE. */
11821 *type = parser->scope;
11822 /* The next name will not be qualified. */
11823 parser->scope = NULL_TREE;
11824 parser->qualifying_scope = NULL_TREE;
11825 parser->object_scope = NULL_TREE;
11826 /* Look for the optional cv-qualifier-seq. */
11827 *cv_quals = cp_parser_cv_qualifier_seq_opt (parser);
11828 }
11829 }
11830 /* If that didn't work we don't have a ptr-operator. */
11831 if (!cp_parser_parse_definitely (parser))
11832 cp_parser_error (parser, "expected ptr-operator");
11833 }
11834
11835 return code;
11836 }
11837
11838 /* Parse an (optional) cv-qualifier-seq.
11839
11840 cv-qualifier-seq:
11841 cv-qualifier cv-qualifier-seq [opt]
11842
11843 cv-qualifier:
11844 const
11845 volatile
11846
11847 GNU Extension:
11848
11849 cv-qualifier:
11850 __restrict__
11851
11852 Returns a bitmask representing the cv-qualifiers. */
11853
11854 static cp_cv_quals
11855 cp_parser_cv_qualifier_seq_opt (cp_parser* parser)
11856 {
11857 cp_cv_quals cv_quals = TYPE_UNQUALIFIED;
11858
11859 while (true)
11860 {
11861 cp_token *token;
11862 cp_cv_quals cv_qualifier;
11863
11864 /* Peek at the next token. */
11865 token = cp_lexer_peek_token (parser->lexer);
11866 /* See if it's a cv-qualifier. */
11867 switch (token->keyword)
11868 {
11869 case RID_CONST:
11870 cv_qualifier = TYPE_QUAL_CONST;
11871 break;
11872
11873 case RID_VOLATILE:
11874 cv_qualifier = TYPE_QUAL_VOLATILE;
11875 break;
11876
11877 case RID_RESTRICT:
11878 cv_qualifier = TYPE_QUAL_RESTRICT;
11879 break;
11880
11881 default:
11882 cv_qualifier = TYPE_UNQUALIFIED;
11883 break;
11884 }
11885
11886 if (!cv_qualifier)
11887 break;
11888
11889 if (cv_quals & cv_qualifier)
11890 {
11891 error ("duplicate cv-qualifier");
11892 cp_lexer_purge_token (parser->lexer);
11893 }
11894 else
11895 {
11896 cp_lexer_consume_token (parser->lexer);
11897 cv_quals |= cv_qualifier;
11898 }
11899 }
11900
11901 return cv_quals;
11902 }
11903
11904 /* Parse a declarator-id.
11905
11906 declarator-id:
11907 id-expression
11908 :: [opt] nested-name-specifier [opt] type-name
11909
11910 In the `id-expression' case, the value returned is as for
11911 cp_parser_id_expression if the id-expression was an unqualified-id.
11912 If the id-expression was a qualified-id, then a SCOPE_REF is
11913 returned. The first operand is the scope (either a NAMESPACE_DECL
11914 or TREE_TYPE), but the second is still just a representation of an
11915 unqualified-id. */
11916
11917 static tree
11918 cp_parser_declarator_id (cp_parser* parser, bool optional_p)
11919 {
11920 tree id;
11921 /* The expression must be an id-expression. Assume that qualified
11922 names are the names of types so that:
11923
11924 template <class T>
11925 int S<T>::R::i = 3;
11926
11927 will work; we must treat `S<T>::R' as the name of a type.
11928 Similarly, assume that qualified names are templates, where
11929 required, so that:
11930
11931 template <class T>
11932 int S<T>::R<T>::i = 3;
11933
11934 will work, too. */
11935 id = cp_parser_id_expression (parser,
11936 /*template_keyword_p=*/false,
11937 /*check_dependency_p=*/false,
11938 /*template_p=*/NULL,
11939 /*declarator_p=*/true,
11940 optional_p);
11941 if (id && BASELINK_P (id))
11942 id = BASELINK_FUNCTIONS (id);
11943 return id;
11944 }
11945
11946 /* Parse a type-id.
11947
11948 type-id:
11949 type-specifier-seq abstract-declarator [opt]
11950
11951 Returns the TYPE specified. */
11952
11953 static tree
11954 cp_parser_type_id (cp_parser* parser)
11955 {
11956 cp_decl_specifier_seq type_specifier_seq;
11957 cp_declarator *abstract_declarator;
11958
11959 /* Parse the type-specifier-seq. */
11960 cp_parser_type_specifier_seq (parser, /*is_condition=*/false,
11961 &type_specifier_seq);
11962 if (type_specifier_seq.type == error_mark_node)
11963 return error_mark_node;
11964
11965 /* There might or might not be an abstract declarator. */
11966 cp_parser_parse_tentatively (parser);
11967 /* Look for the declarator. */
11968 abstract_declarator
11969 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_ABSTRACT, NULL,
11970 /*parenthesized_p=*/NULL,
11971 /*member_p=*/false);
11972 /* Check to see if there really was a declarator. */
11973 if (!cp_parser_parse_definitely (parser))
11974 abstract_declarator = NULL;
11975
11976 return groktypename (&type_specifier_seq, abstract_declarator);
11977 }
11978
11979 /* Parse a type-specifier-seq.
11980
11981 type-specifier-seq:
11982 type-specifier type-specifier-seq [opt]
11983
11984 GNU extension:
11985
11986 type-specifier-seq:
11987 attributes type-specifier-seq [opt]
11988
11989 If IS_CONDITION is true, we are at the start of a "condition",
11990 e.g., we've just seen "if (".
11991
11992 Sets *TYPE_SPECIFIER_SEQ to represent the sequence. */
11993
11994 static void
11995 cp_parser_type_specifier_seq (cp_parser* parser,
11996 bool is_condition,
11997 cp_decl_specifier_seq *type_specifier_seq)
11998 {
11999 bool seen_type_specifier = false;
12000 cp_parser_flags flags = CP_PARSER_FLAGS_OPTIONAL;
12001
12002 /* Clear the TYPE_SPECIFIER_SEQ. */
12003 clear_decl_specs (type_specifier_seq);
12004
12005 /* Parse the type-specifiers and attributes. */
12006 while (true)
12007 {
12008 tree type_specifier;
12009 bool is_cv_qualifier;
12010
12011 /* Check for attributes first. */
12012 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_ATTRIBUTE))
12013 {
12014 type_specifier_seq->attributes =
12015 chainon (type_specifier_seq->attributes,
12016 cp_parser_attributes_opt (parser));
12017 continue;
12018 }
12019
12020 /* Look for the type-specifier. */
12021 type_specifier = cp_parser_type_specifier (parser,
12022 flags,
12023 type_specifier_seq,
12024 /*is_declaration=*/false,
12025 NULL,
12026 &is_cv_qualifier);
12027 if (!type_specifier)
12028 {
12029 /* If the first type-specifier could not be found, this is not a
12030 type-specifier-seq at all. */
12031 if (!seen_type_specifier)
12032 {
12033 cp_parser_error (parser, "expected type-specifier");
12034 type_specifier_seq->type = error_mark_node;
12035 return;
12036 }
12037 /* If subsequent type-specifiers could not be found, the
12038 type-specifier-seq is complete. */
12039 break;
12040 }
12041
12042 seen_type_specifier = true;
12043 /* The standard says that a condition can be:
12044
12045 type-specifier-seq declarator = assignment-expression
12046
12047 However, given:
12048
12049 struct S {};
12050 if (int S = ...)
12051
12052 we should treat the "S" as a declarator, not as a
12053 type-specifier. The standard doesn't say that explicitly for
12054 type-specifier-seq, but it does say that for
12055 decl-specifier-seq in an ordinary declaration. Perhaps it
12056 would be clearer just to allow a decl-specifier-seq here, and
12057 then add a semantic restriction that if any decl-specifiers
12058 that are not type-specifiers appear, the program is invalid. */
12059 if (is_condition && !is_cv_qualifier)
12060 flags |= CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES;
12061 }
12062
12063 cp_parser_check_decl_spec (type_specifier_seq);
12064 }
12065
12066 /* Parse a parameter-declaration-clause.
12067
12068 parameter-declaration-clause:
12069 parameter-declaration-list [opt] ... [opt]
12070 parameter-declaration-list , ...
12071
12072 Returns a representation for the parameter declarations. A return
12073 value of NULL indicates a parameter-declaration-clause consisting
12074 only of an ellipsis. */
12075
12076 static cp_parameter_declarator *
12077 cp_parser_parameter_declaration_clause (cp_parser* parser)
12078 {
12079 cp_parameter_declarator *parameters;
12080 cp_token *token;
12081 bool ellipsis_p;
12082 bool is_error;
12083
12084 /* Peek at the next token. */
12085 token = cp_lexer_peek_token (parser->lexer);
12086 /* Check for trivial parameter-declaration-clauses. */
12087 if (token->type == CPP_ELLIPSIS)
12088 {
12089 /* Consume the `...' token. */
12090 cp_lexer_consume_token (parser->lexer);
12091 return NULL;
12092 }
12093 else if (token->type == CPP_CLOSE_PAREN)
12094 /* There are no parameters. */
12095 {
12096 #ifndef NO_IMPLICIT_EXTERN_C
12097 if (in_system_header && current_class_type == NULL
12098 && current_lang_name == lang_name_c)
12099 return NULL;
12100 else
12101 #endif
12102 return no_parameters;
12103 }
12104 /* Check for `(void)', too, which is a special case. */
12105 else if (token->keyword == RID_VOID
12106 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
12107 == CPP_CLOSE_PAREN))
12108 {
12109 /* Consume the `void' token. */
12110 cp_lexer_consume_token (parser->lexer);
12111 /* There are no parameters. */
12112 return no_parameters;
12113 }
12114
12115 /* Parse the parameter-declaration-list. */
12116 parameters = cp_parser_parameter_declaration_list (parser, &is_error);
12117 /* If a parse error occurred while parsing the
12118 parameter-declaration-list, then the entire
12119 parameter-declaration-clause is erroneous. */
12120 if (is_error)
12121 return NULL;
12122
12123 /* Peek at the next token. */
12124 token = cp_lexer_peek_token (parser->lexer);
12125 /* If it's a `,', the clause should terminate with an ellipsis. */
12126 if (token->type == CPP_COMMA)
12127 {
12128 /* Consume the `,'. */
12129 cp_lexer_consume_token (parser->lexer);
12130 /* Expect an ellipsis. */
12131 ellipsis_p
12132 = (cp_parser_require (parser, CPP_ELLIPSIS, "`...'") != NULL);
12133 }
12134 /* It might also be `...' if the optional trailing `,' was
12135 omitted. */
12136 else if (token->type == CPP_ELLIPSIS)
12137 {
12138 /* Consume the `...' token. */
12139 cp_lexer_consume_token (parser->lexer);
12140 /* And remember that we saw it. */
12141 ellipsis_p = true;
12142 }
12143 else
12144 ellipsis_p = false;
12145
12146 /* Finish the parameter list. */
12147 if (parameters && ellipsis_p)
12148 parameters->ellipsis_p = true;
12149
12150 return parameters;
12151 }
12152
12153 /* Parse a parameter-declaration-list.
12154
12155 parameter-declaration-list:
12156 parameter-declaration
12157 parameter-declaration-list , parameter-declaration
12158
12159 Returns a representation of the parameter-declaration-list, as for
12160 cp_parser_parameter_declaration_clause. However, the
12161 `void_list_node' is never appended to the list. Upon return,
12162 *IS_ERROR will be true iff an error occurred. */
12163
12164 static cp_parameter_declarator *
12165 cp_parser_parameter_declaration_list (cp_parser* parser, bool *is_error)
12166 {
12167 cp_parameter_declarator *parameters = NULL;
12168 cp_parameter_declarator **tail = &parameters;
12169 bool saved_in_unbraced_linkage_specification_p;
12170
12171 /* Assume all will go well. */
12172 *is_error = false;
12173 /* The special considerations that apply to a function within an
12174 unbraced linkage specifications do not apply to the parameters
12175 to the function. */
12176 saved_in_unbraced_linkage_specification_p
12177 = parser->in_unbraced_linkage_specification_p;
12178 parser->in_unbraced_linkage_specification_p = false;
12179
12180 /* Look for more parameters. */
12181 while (true)
12182 {
12183 cp_parameter_declarator *parameter;
12184 bool parenthesized_p;
12185 /* Parse the parameter. */
12186 parameter
12187 = cp_parser_parameter_declaration (parser,
12188 /*template_parm_p=*/false,
12189 &parenthesized_p);
12190
12191 /* If a parse error occurred parsing the parameter declaration,
12192 then the entire parameter-declaration-list is erroneous. */
12193 if (!parameter)
12194 {
12195 *is_error = true;
12196 parameters = NULL;
12197 break;
12198 }
12199 /* Add the new parameter to the list. */
12200 *tail = parameter;
12201 tail = &parameter->next;
12202
12203 /* Peek at the next token. */
12204 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN)
12205 || cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS)
12206 /* These are for Objective-C++ */
12207 || cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
12208 || cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
12209 /* The parameter-declaration-list is complete. */
12210 break;
12211 else if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
12212 {
12213 cp_token *token;
12214
12215 /* Peek at the next token. */
12216 token = cp_lexer_peek_nth_token (parser->lexer, 2);
12217 /* If it's an ellipsis, then the list is complete. */
12218 if (token->type == CPP_ELLIPSIS)
12219 break;
12220 /* Otherwise, there must be more parameters. Consume the
12221 `,'. */
12222 cp_lexer_consume_token (parser->lexer);
12223 /* When parsing something like:
12224
12225 int i(float f, double d)
12226
12227 we can tell after seeing the declaration for "f" that we
12228 are not looking at an initialization of a variable "i",
12229 but rather at the declaration of a function "i".
12230
12231 Due to the fact that the parsing of template arguments
12232 (as specified to a template-id) requires backtracking we
12233 cannot use this technique when inside a template argument
12234 list. */
12235 if (!parser->in_template_argument_list_p
12236 && !parser->in_type_id_in_expr_p
12237 && cp_parser_uncommitted_to_tentative_parse_p (parser)
12238 /* However, a parameter-declaration of the form
12239 "foat(f)" (which is a valid declaration of a
12240 parameter "f") can also be interpreted as an
12241 expression (the conversion of "f" to "float"). */
12242 && !parenthesized_p)
12243 cp_parser_commit_to_tentative_parse (parser);
12244 }
12245 else
12246 {
12247 cp_parser_error (parser, "expected %<,%> or %<...%>");
12248 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
12249 cp_parser_skip_to_closing_parenthesis (parser,
12250 /*recovering=*/true,
12251 /*or_comma=*/false,
12252 /*consume_paren=*/false);
12253 break;
12254 }
12255 }
12256
12257 parser->in_unbraced_linkage_specification_p
12258 = saved_in_unbraced_linkage_specification_p;
12259
12260 return parameters;
12261 }
12262
12263 /* Parse a parameter declaration.
12264
12265 parameter-declaration:
12266 decl-specifier-seq declarator
12267 decl-specifier-seq declarator = assignment-expression
12268 decl-specifier-seq abstract-declarator [opt]
12269 decl-specifier-seq abstract-declarator [opt] = assignment-expression
12270
12271 If TEMPLATE_PARM_P is TRUE, then this parameter-declaration
12272 declares a template parameter. (In that case, a non-nested `>'
12273 token encountered during the parsing of the assignment-expression
12274 is not interpreted as a greater-than operator.)
12275
12276 Returns a representation of the parameter, or NULL if an error
12277 occurs. If PARENTHESIZED_P is non-NULL, *PARENTHESIZED_P is set to
12278 true iff the declarator is of the form "(p)". */
12279
12280 static cp_parameter_declarator *
12281 cp_parser_parameter_declaration (cp_parser *parser,
12282 bool template_parm_p,
12283 bool *parenthesized_p)
12284 {
12285 int declares_class_or_enum;
12286 bool greater_than_is_operator_p;
12287 cp_decl_specifier_seq decl_specifiers;
12288 cp_declarator *declarator;
12289 tree default_argument;
12290 cp_token *token;
12291 const char *saved_message;
12292
12293 /* In a template parameter, `>' is not an operator.
12294
12295 [temp.param]
12296
12297 When parsing a default template-argument for a non-type
12298 template-parameter, the first non-nested `>' is taken as the end
12299 of the template parameter-list rather than a greater-than
12300 operator. */
12301 greater_than_is_operator_p = !template_parm_p;
12302
12303 /* Type definitions may not appear in parameter types. */
12304 saved_message = parser->type_definition_forbidden_message;
12305 parser->type_definition_forbidden_message
12306 = "types may not be defined in parameter types";
12307
12308 /* Parse the declaration-specifiers. */
12309 cp_parser_decl_specifier_seq (parser,
12310 CP_PARSER_FLAGS_NONE,
12311 &decl_specifiers,
12312 &declares_class_or_enum);
12313 /* If an error occurred, there's no reason to attempt to parse the
12314 rest of the declaration. */
12315 if (cp_parser_error_occurred (parser))
12316 {
12317 parser->type_definition_forbidden_message = saved_message;
12318 return NULL;
12319 }
12320
12321 /* Peek at the next token. */
12322 token = cp_lexer_peek_token (parser->lexer);
12323 /* If the next token is a `)', `,', `=', `>', or `...', then there
12324 is no declarator. */
12325 if (token->type == CPP_CLOSE_PAREN
12326 || token->type == CPP_COMMA
12327 || token->type == CPP_EQ
12328 || token->type == CPP_ELLIPSIS
12329 || token->type == CPP_GREATER)
12330 {
12331 declarator = NULL;
12332 if (parenthesized_p)
12333 *parenthesized_p = false;
12334 }
12335 /* Otherwise, there should be a declarator. */
12336 else
12337 {
12338 bool saved_default_arg_ok_p = parser->default_arg_ok_p;
12339 parser->default_arg_ok_p = false;
12340
12341 /* After seeing a decl-specifier-seq, if the next token is not a
12342 "(", there is no possibility that the code is a valid
12343 expression. Therefore, if parsing tentatively, we commit at
12344 this point. */
12345 if (!parser->in_template_argument_list_p
12346 /* In an expression context, having seen:
12347
12348 (int((char ...
12349
12350 we cannot be sure whether we are looking at a
12351 function-type (taking a "char" as a parameter) or a cast
12352 of some object of type "char" to "int". */
12353 && !parser->in_type_id_in_expr_p
12354 && cp_parser_uncommitted_to_tentative_parse_p (parser)
12355 && cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_PAREN))
12356 cp_parser_commit_to_tentative_parse (parser);
12357 /* Parse the declarator. */
12358 declarator = cp_parser_declarator (parser,
12359 CP_PARSER_DECLARATOR_EITHER,
12360 /*ctor_dtor_or_conv_p=*/NULL,
12361 parenthesized_p,
12362 /*member_p=*/false);
12363 parser->default_arg_ok_p = saved_default_arg_ok_p;
12364 /* After the declarator, allow more attributes. */
12365 decl_specifiers.attributes
12366 = chainon (decl_specifiers.attributes,
12367 cp_parser_attributes_opt (parser));
12368 }
12369
12370 /* The restriction on defining new types applies only to the type
12371 of the parameter, not to the default argument. */
12372 parser->type_definition_forbidden_message = saved_message;
12373
12374 /* If the next token is `=', then process a default argument. */
12375 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
12376 {
12377 bool saved_greater_than_is_operator_p;
12378 /* Consume the `='. */
12379 cp_lexer_consume_token (parser->lexer);
12380
12381 /* If we are defining a class, then the tokens that make up the
12382 default argument must be saved and processed later. */
12383 if (!template_parm_p && at_class_scope_p ()
12384 && TYPE_BEING_DEFINED (current_class_type))
12385 {
12386 unsigned depth = 0;
12387 cp_token *first_token;
12388 cp_token *token;
12389
12390 /* Add tokens until we have processed the entire default
12391 argument. We add the range [first_token, token). */
12392 first_token = cp_lexer_peek_token (parser->lexer);
12393 while (true)
12394 {
12395 bool done = false;
12396
12397 /* Peek at the next token. */
12398 token = cp_lexer_peek_token (parser->lexer);
12399 /* What we do depends on what token we have. */
12400 switch (token->type)
12401 {
12402 /* In valid code, a default argument must be
12403 immediately followed by a `,' `)', or `...'. */
12404 case CPP_COMMA:
12405 case CPP_CLOSE_PAREN:
12406 case CPP_ELLIPSIS:
12407 /* If we run into a non-nested `;', `}', or `]',
12408 then the code is invalid -- but the default
12409 argument is certainly over. */
12410 case CPP_SEMICOLON:
12411 case CPP_CLOSE_BRACE:
12412 case CPP_CLOSE_SQUARE:
12413 if (depth == 0)
12414 done = true;
12415 /* Update DEPTH, if necessary. */
12416 else if (token->type == CPP_CLOSE_PAREN
12417 || token->type == CPP_CLOSE_BRACE
12418 || token->type == CPP_CLOSE_SQUARE)
12419 --depth;
12420 break;
12421
12422 case CPP_OPEN_PAREN:
12423 case CPP_OPEN_SQUARE:
12424 case CPP_OPEN_BRACE:
12425 ++depth;
12426 break;
12427
12428 case CPP_GREATER:
12429 /* If we see a non-nested `>', and `>' is not an
12430 operator, then it marks the end of the default
12431 argument. */
12432 if (!depth && !greater_than_is_operator_p)
12433 done = true;
12434 break;
12435
12436 /* If we run out of tokens, issue an error message. */
12437 case CPP_EOF:
12438 case CPP_PRAGMA_EOL:
12439 error ("file ends in default argument");
12440 done = true;
12441 break;
12442
12443 case CPP_NAME:
12444 case CPP_SCOPE:
12445 /* In these cases, we should look for template-ids.
12446 For example, if the default argument is
12447 `X<int, double>()', we need to do name lookup to
12448 figure out whether or not `X' is a template; if
12449 so, the `,' does not end the default argument.
12450
12451 That is not yet done. */
12452 break;
12453
12454 default:
12455 break;
12456 }
12457
12458 /* If we've reached the end, stop. */
12459 if (done)
12460 break;
12461
12462 /* Add the token to the token block. */
12463 token = cp_lexer_consume_token (parser->lexer);
12464 }
12465
12466 /* Create a DEFAULT_ARG to represented the unparsed default
12467 argument. */
12468 default_argument = make_node (DEFAULT_ARG);
12469 DEFARG_TOKENS (default_argument)
12470 = cp_token_cache_new (first_token, token);
12471 DEFARG_INSTANTIATIONS (default_argument) = NULL;
12472 }
12473 /* Outside of a class definition, we can just parse the
12474 assignment-expression. */
12475 else
12476 {
12477 bool saved_local_variables_forbidden_p;
12478
12479 /* Make sure that PARSER->GREATER_THAN_IS_OPERATOR_P is
12480 set correctly. */
12481 saved_greater_than_is_operator_p
12482 = parser->greater_than_is_operator_p;
12483 parser->greater_than_is_operator_p = greater_than_is_operator_p;
12484 /* Local variable names (and the `this' keyword) may not
12485 appear in a default argument. */
12486 saved_local_variables_forbidden_p
12487 = parser->local_variables_forbidden_p;
12488 parser->local_variables_forbidden_p = true;
12489 /* The default argument expression may cause implicitly
12490 defined member functions to be synthesized, which will
12491 result in garbage collection. We must treat this
12492 situation as if we were within the body of function so as
12493 to avoid collecting live data on the stack. */
12494 ++function_depth;
12495 /* Parse the assignment-expression. */
12496 if (template_parm_p)
12497 push_deferring_access_checks (dk_no_deferred);
12498 default_argument
12499 = cp_parser_assignment_expression (parser, /*cast_p=*/false);
12500 if (template_parm_p)
12501 pop_deferring_access_checks ();
12502 /* Restore saved state. */
12503 --function_depth;
12504 parser->greater_than_is_operator_p
12505 = saved_greater_than_is_operator_p;
12506 parser->local_variables_forbidden_p
12507 = saved_local_variables_forbidden_p;
12508 }
12509 if (!parser->default_arg_ok_p)
12510 {
12511 if (!flag_pedantic_errors)
12512 warning (0, "deprecated use of default argument for parameter of non-function");
12513 else
12514 {
12515 error ("default arguments are only permitted for function parameters");
12516 default_argument = NULL_TREE;
12517 }
12518 }
12519 }
12520 else
12521 default_argument = NULL_TREE;
12522
12523 return make_parameter_declarator (&decl_specifiers,
12524 declarator,
12525 default_argument);
12526 }
12527
12528 /* Parse a function-body.
12529
12530 function-body:
12531 compound_statement */
12532
12533 static void
12534 cp_parser_function_body (cp_parser *parser)
12535 {
12536 cp_parser_compound_statement (parser, NULL, false);
12537 }
12538
12539 /* Parse a ctor-initializer-opt followed by a function-body. Return
12540 true if a ctor-initializer was present. */
12541
12542 static bool
12543 cp_parser_ctor_initializer_opt_and_function_body (cp_parser *parser)
12544 {
12545 tree body;
12546 bool ctor_initializer_p;
12547
12548 /* Begin the function body. */
12549 body = begin_function_body ();
12550 /* Parse the optional ctor-initializer. */
12551 ctor_initializer_p = cp_parser_ctor_initializer_opt (parser);
12552 /* Parse the function-body. */
12553 cp_parser_function_body (parser);
12554 /* Finish the function body. */
12555 finish_function_body (body);
12556
12557 return ctor_initializer_p;
12558 }
12559
12560 /* Parse an initializer.
12561
12562 initializer:
12563 = initializer-clause
12564 ( expression-list )
12565
12566 Returns an expression representing the initializer. If no
12567 initializer is present, NULL_TREE is returned.
12568
12569 *IS_PARENTHESIZED_INIT is set to TRUE if the `( expression-list )'
12570 production is used, and zero otherwise. *IS_PARENTHESIZED_INIT is
12571 set to FALSE if there is no initializer present. If there is an
12572 initializer, and it is not a constant-expression, *NON_CONSTANT_P
12573 is set to true; otherwise it is set to false. */
12574
12575 static tree
12576 cp_parser_initializer (cp_parser* parser, bool* is_parenthesized_init,
12577 bool* non_constant_p)
12578 {
12579 cp_token *token;
12580 tree init;
12581
12582 /* Peek at the next token. */
12583 token = cp_lexer_peek_token (parser->lexer);
12584
12585 /* Let our caller know whether or not this initializer was
12586 parenthesized. */
12587 *is_parenthesized_init = (token->type == CPP_OPEN_PAREN);
12588 /* Assume that the initializer is constant. */
12589 *non_constant_p = false;
12590
12591 if (token->type == CPP_EQ)
12592 {
12593 /* Consume the `='. */
12594 cp_lexer_consume_token (parser->lexer);
12595 /* Parse the initializer-clause. */
12596 init = cp_parser_initializer_clause (parser, non_constant_p);
12597 }
12598 else if (token->type == CPP_OPEN_PAREN)
12599 init = cp_parser_parenthesized_expression_list (parser, false,
12600 /*cast_p=*/false,
12601 non_constant_p);
12602 else
12603 {
12604 /* Anything else is an error. */
12605 cp_parser_error (parser, "expected initializer");
12606 init = error_mark_node;
12607 }
12608
12609 return init;
12610 }
12611
12612 /* Parse an initializer-clause.
12613
12614 initializer-clause:
12615 assignment-expression
12616 { initializer-list , [opt] }
12617 { }
12618
12619 Returns an expression representing the initializer.
12620
12621 If the `assignment-expression' production is used the value
12622 returned is simply a representation for the expression.
12623
12624 Otherwise, a CONSTRUCTOR is returned. The CONSTRUCTOR_ELTS will be
12625 the elements of the initializer-list (or NULL, if the last
12626 production is used). The TREE_TYPE for the CONSTRUCTOR will be
12627 NULL_TREE. There is no way to detect whether or not the optional
12628 trailing `,' was provided. NON_CONSTANT_P is as for
12629 cp_parser_initializer. */
12630
12631 static tree
12632 cp_parser_initializer_clause (cp_parser* parser, bool* non_constant_p)
12633 {
12634 tree initializer;
12635
12636 /* Assume the expression is constant. */
12637 *non_constant_p = false;
12638
12639 /* If it is not a `{', then we are looking at an
12640 assignment-expression. */
12641 if (cp_lexer_next_token_is_not (parser->lexer, CPP_OPEN_BRACE))
12642 {
12643 initializer
12644 = cp_parser_constant_expression (parser,
12645 /*allow_non_constant_p=*/true,
12646 non_constant_p);
12647 if (!*non_constant_p)
12648 initializer = fold_non_dependent_expr (initializer);
12649 }
12650 else
12651 {
12652 /* Consume the `{' token. */
12653 cp_lexer_consume_token (parser->lexer);
12654 /* Create a CONSTRUCTOR to represent the braced-initializer. */
12655 initializer = make_node (CONSTRUCTOR);
12656 /* If it's not a `}', then there is a non-trivial initializer. */
12657 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_BRACE))
12658 {
12659 /* Parse the initializer list. */
12660 CONSTRUCTOR_ELTS (initializer)
12661 = cp_parser_initializer_list (parser, non_constant_p);
12662 /* A trailing `,' token is allowed. */
12663 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
12664 cp_lexer_consume_token (parser->lexer);
12665 }
12666 /* Now, there should be a trailing `}'. */
12667 cp_parser_require (parser, CPP_CLOSE_BRACE, "`}'");
12668 }
12669
12670 return initializer;
12671 }
12672
12673 /* Parse an initializer-list.
12674
12675 initializer-list:
12676 initializer-clause
12677 initializer-list , initializer-clause
12678
12679 GNU Extension:
12680
12681 initializer-list:
12682 identifier : initializer-clause
12683 initializer-list, identifier : initializer-clause
12684
12685 Returns a VEC of constructor_elt. The VALUE of each elt is an expression
12686 for the initializer. If the INDEX of the elt is non-NULL, it is the
12687 IDENTIFIER_NODE naming the field to initialize. NON_CONSTANT_P is
12688 as for cp_parser_initializer. */
12689
12690 static VEC(constructor_elt,gc) *
12691 cp_parser_initializer_list (cp_parser* parser, bool* non_constant_p)
12692 {
12693 VEC(constructor_elt,gc) *v = NULL;
12694
12695 /* Assume all of the expressions are constant. */
12696 *non_constant_p = false;
12697
12698 /* Parse the rest of the list. */
12699 while (true)
12700 {
12701 cp_token *token;
12702 tree identifier;
12703 tree initializer;
12704 bool clause_non_constant_p;
12705
12706 /* If the next token is an identifier and the following one is a
12707 colon, we are looking at the GNU designated-initializer
12708 syntax. */
12709 if (cp_parser_allow_gnu_extensions_p (parser)
12710 && cp_lexer_next_token_is (parser->lexer, CPP_NAME)
12711 && cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_COLON)
12712 {
12713 /* Consume the identifier. */
12714 identifier = cp_lexer_consume_token (parser->lexer)->value;
12715 /* Consume the `:'. */
12716 cp_lexer_consume_token (parser->lexer);
12717 }
12718 else
12719 identifier = NULL_TREE;
12720
12721 /* Parse the initializer. */
12722 initializer = cp_parser_initializer_clause (parser,
12723 &clause_non_constant_p);
12724 /* If any clause is non-constant, so is the entire initializer. */
12725 if (clause_non_constant_p)
12726 *non_constant_p = true;
12727
12728 /* Add it to the vector. */
12729 CONSTRUCTOR_APPEND_ELT(v, identifier, initializer);
12730
12731 /* If the next token is not a comma, we have reached the end of
12732 the list. */
12733 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
12734 break;
12735
12736 /* Peek at the next token. */
12737 token = cp_lexer_peek_nth_token (parser->lexer, 2);
12738 /* If the next token is a `}', then we're still done. An
12739 initializer-clause can have a trailing `,' after the
12740 initializer-list and before the closing `}'. */
12741 if (token->type == CPP_CLOSE_BRACE)
12742 break;
12743
12744 /* Consume the `,' token. */
12745 cp_lexer_consume_token (parser->lexer);
12746 }
12747
12748 return v;
12749 }
12750
12751 /* Classes [gram.class] */
12752
12753 /* Parse a class-name.
12754
12755 class-name:
12756 identifier
12757 template-id
12758
12759 TYPENAME_KEYWORD_P is true iff the `typename' keyword has been used
12760 to indicate that names looked up in dependent types should be
12761 assumed to be types. TEMPLATE_KEYWORD_P is true iff the `template'
12762 keyword has been used to indicate that the name that appears next
12763 is a template. TAG_TYPE indicates the explicit tag given before
12764 the type name, if any. If CHECK_DEPENDENCY_P is FALSE, names are
12765 looked up in dependent scopes. If CLASS_HEAD_P is TRUE, this class
12766 is the class being defined in a class-head.
12767
12768 Returns the TYPE_DECL representing the class. */
12769
12770 static tree
12771 cp_parser_class_name (cp_parser *parser,
12772 bool typename_keyword_p,
12773 bool template_keyword_p,
12774 enum tag_types tag_type,
12775 bool check_dependency_p,
12776 bool class_head_p,
12777 bool is_declaration)
12778 {
12779 tree decl;
12780 tree scope;
12781 bool typename_p;
12782 cp_token *token;
12783
12784 /* All class-names start with an identifier. */
12785 token = cp_lexer_peek_token (parser->lexer);
12786 if (token->type != CPP_NAME && token->type != CPP_TEMPLATE_ID)
12787 {
12788 cp_parser_error (parser, "expected class-name");
12789 return error_mark_node;
12790 }
12791
12792 /* PARSER->SCOPE can be cleared when parsing the template-arguments
12793 to a template-id, so we save it here. */
12794 scope = parser->scope;
12795 if (scope == error_mark_node)
12796 return error_mark_node;
12797
12798 /* Any name names a type if we're following the `typename' keyword
12799 in a qualified name where the enclosing scope is type-dependent. */
12800 typename_p = (typename_keyword_p && scope && TYPE_P (scope)
12801 && dependent_type_p (scope));
12802 /* Handle the common case (an identifier, but not a template-id)
12803 efficiently. */
12804 if (token->type == CPP_NAME
12805 && !cp_parser_nth_token_starts_template_argument_list_p (parser, 2))
12806 {
12807 cp_token *identifier_token;
12808 tree identifier;
12809 bool ambiguous_p;
12810
12811 /* Look for the identifier. */
12812 identifier_token = cp_lexer_peek_token (parser->lexer);
12813 ambiguous_p = identifier_token->ambiguous_p;
12814 identifier = cp_parser_identifier (parser);
12815 /* If the next token isn't an identifier, we are certainly not
12816 looking at a class-name. */
12817 if (identifier == error_mark_node)
12818 decl = error_mark_node;
12819 /* If we know this is a type-name, there's no need to look it
12820 up. */
12821 else if (typename_p)
12822 decl = identifier;
12823 else
12824 {
12825 tree ambiguous_decls;
12826 /* If we already know that this lookup is ambiguous, then
12827 we've already issued an error message; there's no reason
12828 to check again. */
12829 if (ambiguous_p)
12830 {
12831 cp_parser_simulate_error (parser);
12832 return error_mark_node;
12833 }
12834 /* If the next token is a `::', then the name must be a type
12835 name.
12836
12837 [basic.lookup.qual]
12838
12839 During the lookup for a name preceding the :: scope
12840 resolution operator, object, function, and enumerator
12841 names are ignored. */
12842 if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
12843 tag_type = typename_type;
12844 /* Look up the name. */
12845 decl = cp_parser_lookup_name (parser, identifier,
12846 tag_type,
12847 /*is_template=*/false,
12848 /*is_namespace=*/false,
12849 check_dependency_p,
12850 &ambiguous_decls);
12851 if (ambiguous_decls)
12852 {
12853 error ("reference to %qD is ambiguous", identifier);
12854 print_candidates (ambiguous_decls);
12855 if (cp_parser_parsing_tentatively (parser))
12856 {
12857 identifier_token->ambiguous_p = true;
12858 cp_parser_simulate_error (parser);
12859 }
12860 return error_mark_node;
12861 }
12862 }
12863 }
12864 else
12865 {
12866 /* Try a template-id. */
12867 decl = cp_parser_template_id (parser, template_keyword_p,
12868 check_dependency_p,
12869 is_declaration);
12870 if (decl == error_mark_node)
12871 return error_mark_node;
12872 }
12873
12874 decl = cp_parser_maybe_treat_template_as_class (decl, class_head_p);
12875
12876 /* If this is a typename, create a TYPENAME_TYPE. */
12877 if (typename_p && decl != error_mark_node)
12878 {
12879 decl = make_typename_type (scope, decl, typename_type,
12880 /*complain=*/tf_error);
12881 if (decl != error_mark_node)
12882 decl = TYPE_NAME (decl);
12883 }
12884
12885 /* Check to see that it is really the name of a class. */
12886 if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
12887 && TREE_CODE (TREE_OPERAND (decl, 0)) == IDENTIFIER_NODE
12888 && cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
12889 /* Situations like this:
12890
12891 template <typename T> struct A {
12892 typename T::template X<int>::I i;
12893 };
12894
12895 are problematic. Is `T::template X<int>' a class-name? The
12896 standard does not seem to be definitive, but there is no other
12897 valid interpretation of the following `::'. Therefore, those
12898 names are considered class-names. */
12899 {
12900 decl = make_typename_type (scope, decl, tag_type, tf_error);
12901 if (decl != error_mark_node)
12902 decl = TYPE_NAME (decl);
12903 }
12904 else if (TREE_CODE (decl) != TYPE_DECL
12905 || TREE_TYPE (decl) == error_mark_node
12906 || !IS_AGGR_TYPE (TREE_TYPE (decl)))
12907 decl = error_mark_node;
12908
12909 if (decl == error_mark_node)
12910 cp_parser_error (parser, "expected class-name");
12911
12912 return decl;
12913 }
12914
12915 /* Parse a class-specifier.
12916
12917 class-specifier:
12918 class-head { member-specification [opt] }
12919
12920 Returns the TREE_TYPE representing the class. */
12921
12922 static tree
12923 cp_parser_class_specifier (cp_parser* parser)
12924 {
12925 cp_token *token;
12926 tree type;
12927 tree attributes = NULL_TREE;
12928 int has_trailing_semicolon;
12929 bool nested_name_specifier_p;
12930 unsigned saved_num_template_parameter_lists;
12931 tree old_scope = NULL_TREE;
12932 tree scope = NULL_TREE;
12933
12934 push_deferring_access_checks (dk_no_deferred);
12935
12936 /* Parse the class-head. */
12937 type = cp_parser_class_head (parser,
12938 &nested_name_specifier_p,
12939 &attributes);
12940 /* If the class-head was a semantic disaster, skip the entire body
12941 of the class. */
12942 if (!type)
12943 {
12944 cp_parser_skip_to_end_of_block_or_statement (parser);
12945 pop_deferring_access_checks ();
12946 return error_mark_node;
12947 }
12948
12949 /* Look for the `{'. */
12950 if (!cp_parser_require (parser, CPP_OPEN_BRACE, "`{'"))
12951 {
12952 pop_deferring_access_checks ();
12953 return error_mark_node;
12954 }
12955
12956 /* Issue an error message if type-definitions are forbidden here. */
12957 cp_parser_check_type_definition (parser);
12958 /* Remember that we are defining one more class. */
12959 ++parser->num_classes_being_defined;
12960 /* Inside the class, surrounding template-parameter-lists do not
12961 apply. */
12962 saved_num_template_parameter_lists
12963 = parser->num_template_parameter_lists;
12964 parser->num_template_parameter_lists = 0;
12965
12966 /* Start the class. */
12967 if (nested_name_specifier_p)
12968 {
12969 scope = CP_DECL_CONTEXT (TYPE_MAIN_DECL (type));
12970 old_scope = push_inner_scope (scope);
12971 }
12972 type = begin_class_definition (type, attributes);
12973
12974 if (type == error_mark_node)
12975 /* If the type is erroneous, skip the entire body of the class. */
12976 cp_parser_skip_to_closing_brace (parser);
12977 else
12978 /* Parse the member-specification. */
12979 cp_parser_member_specification_opt (parser);
12980
12981 /* Look for the trailing `}'. */
12982 cp_parser_require (parser, CPP_CLOSE_BRACE, "`}'");
12983 /* We get better error messages by noticing a common problem: a
12984 missing trailing `;'. */
12985 token = cp_lexer_peek_token (parser->lexer);
12986 has_trailing_semicolon = (token->type == CPP_SEMICOLON);
12987 /* Look for trailing attributes to apply to this class. */
12988 if (cp_parser_allow_gnu_extensions_p (parser))
12989 attributes = cp_parser_attributes_opt (parser);
12990 if (type != error_mark_node)
12991 type = finish_struct (type, attributes);
12992 if (nested_name_specifier_p)
12993 pop_inner_scope (old_scope, scope);
12994 /* If this class is not itself within the scope of another class,
12995 then we need to parse the bodies of all of the queued function
12996 definitions. Note that the queued functions defined in a class
12997 are not always processed immediately following the
12998 class-specifier for that class. Consider:
12999
13000 struct A {
13001 struct B { void f() { sizeof (A); } };
13002 };
13003
13004 If `f' were processed before the processing of `A' were
13005 completed, there would be no way to compute the size of `A'.
13006 Note that the nesting we are interested in here is lexical --
13007 not the semantic nesting given by TYPE_CONTEXT. In particular,
13008 for:
13009
13010 struct A { struct B; };
13011 struct A::B { void f() { } };
13012
13013 there is no need to delay the parsing of `A::B::f'. */
13014 if (--parser->num_classes_being_defined == 0)
13015 {
13016 tree queue_entry;
13017 tree fn;
13018 tree class_type = NULL_TREE;
13019 tree pushed_scope = NULL_TREE;
13020
13021 /* In a first pass, parse default arguments to the functions.
13022 Then, in a second pass, parse the bodies of the functions.
13023 This two-phased approach handles cases like:
13024
13025 struct S {
13026 void f() { g(); }
13027 void g(int i = 3);
13028 };
13029
13030 */
13031 for (TREE_PURPOSE (parser->unparsed_functions_queues)
13032 = nreverse (TREE_PURPOSE (parser->unparsed_functions_queues));
13033 (queue_entry = TREE_PURPOSE (parser->unparsed_functions_queues));
13034 TREE_PURPOSE (parser->unparsed_functions_queues)
13035 = TREE_CHAIN (TREE_PURPOSE (parser->unparsed_functions_queues)))
13036 {
13037 fn = TREE_VALUE (queue_entry);
13038 /* If there are default arguments that have not yet been processed,
13039 take care of them now. */
13040 if (class_type != TREE_PURPOSE (queue_entry))
13041 {
13042 if (pushed_scope)
13043 pop_scope (pushed_scope);
13044 class_type = TREE_PURPOSE (queue_entry);
13045 pushed_scope = push_scope (class_type);
13046 }
13047 /* Make sure that any template parameters are in scope. */
13048 maybe_begin_member_template_processing (fn);
13049 /* Parse the default argument expressions. */
13050 cp_parser_late_parsing_default_args (parser, fn);
13051 /* Remove any template parameters from the symbol table. */
13052 maybe_end_member_template_processing ();
13053 }
13054 if (pushed_scope)
13055 pop_scope (pushed_scope);
13056 /* Now parse the body of the functions. */
13057 for (TREE_VALUE (parser->unparsed_functions_queues)
13058 = nreverse (TREE_VALUE (parser->unparsed_functions_queues));
13059 (queue_entry = TREE_VALUE (parser->unparsed_functions_queues));
13060 TREE_VALUE (parser->unparsed_functions_queues)
13061 = TREE_CHAIN (TREE_VALUE (parser->unparsed_functions_queues)))
13062 {
13063 /* Figure out which function we need to process. */
13064 fn = TREE_VALUE (queue_entry);
13065 /* Parse the function. */
13066 cp_parser_late_parsing_for_member (parser, fn);
13067 }
13068 }
13069
13070 /* Put back any saved access checks. */
13071 pop_deferring_access_checks ();
13072
13073 /* Restore the count of active template-parameter-lists. */
13074 parser->num_template_parameter_lists
13075 = saved_num_template_parameter_lists;
13076
13077 return type;
13078 }
13079
13080 /* Parse a class-head.
13081
13082 class-head:
13083 class-key identifier [opt] base-clause [opt]
13084 class-key nested-name-specifier identifier base-clause [opt]
13085 class-key nested-name-specifier [opt] template-id
13086 base-clause [opt]
13087
13088 GNU Extensions:
13089 class-key attributes identifier [opt] base-clause [opt]
13090 class-key attributes nested-name-specifier identifier base-clause [opt]
13091 class-key attributes nested-name-specifier [opt] template-id
13092 base-clause [opt]
13093
13094 Returns the TYPE of the indicated class. Sets
13095 *NESTED_NAME_SPECIFIER_P to TRUE iff one of the productions
13096 involving a nested-name-specifier was used, and FALSE otherwise.
13097
13098 Returns error_mark_node if this is not a class-head.
13099
13100 Returns NULL_TREE if the class-head is syntactically valid, but
13101 semantically invalid in a way that means we should skip the entire
13102 body of the class. */
13103
13104 static tree
13105 cp_parser_class_head (cp_parser* parser,
13106 bool* nested_name_specifier_p,
13107 tree *attributes_p)
13108 {
13109 tree nested_name_specifier;
13110 enum tag_types class_key;
13111 tree id = NULL_TREE;
13112 tree type = NULL_TREE;
13113 tree attributes;
13114 bool template_id_p = false;
13115 bool qualified_p = false;
13116 bool invalid_nested_name_p = false;
13117 bool invalid_explicit_specialization_p = false;
13118 tree pushed_scope = NULL_TREE;
13119 unsigned num_templates;
13120 tree bases;
13121
13122 /* Assume no nested-name-specifier will be present. */
13123 *nested_name_specifier_p = false;
13124 /* Assume no template parameter lists will be used in defining the
13125 type. */
13126 num_templates = 0;
13127
13128 /* Look for the class-key. */
13129 class_key = cp_parser_class_key (parser);
13130 if (class_key == none_type)
13131 return error_mark_node;
13132
13133 /* Parse the attributes. */
13134 attributes = cp_parser_attributes_opt (parser);
13135
13136 /* If the next token is `::', that is invalid -- but sometimes
13137 people do try to write:
13138
13139 struct ::S {};
13140
13141 Handle this gracefully by accepting the extra qualifier, and then
13142 issuing an error about it later if this really is a
13143 class-head. If it turns out just to be an elaborated type
13144 specifier, remain silent. */
13145 if (cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/false))
13146 qualified_p = true;
13147
13148 push_deferring_access_checks (dk_no_check);
13149
13150 /* Determine the name of the class. Begin by looking for an
13151 optional nested-name-specifier. */
13152 nested_name_specifier
13153 = cp_parser_nested_name_specifier_opt (parser,
13154 /*typename_keyword_p=*/false,
13155 /*check_dependency_p=*/false,
13156 /*type_p=*/false,
13157 /*is_declaration=*/false);
13158 /* If there was a nested-name-specifier, then there *must* be an
13159 identifier. */
13160 if (nested_name_specifier)
13161 {
13162 /* Although the grammar says `identifier', it really means
13163 `class-name' or `template-name'. You are only allowed to
13164 define a class that has already been declared with this
13165 syntax.
13166
13167 The proposed resolution for Core Issue 180 says that wherever
13168 you see `class T::X' you should treat `X' as a type-name.
13169
13170 It is OK to define an inaccessible class; for example:
13171
13172 class A { class B; };
13173 class A::B {};
13174
13175 We do not know if we will see a class-name, or a
13176 template-name. We look for a class-name first, in case the
13177 class-name is a template-id; if we looked for the
13178 template-name first we would stop after the template-name. */
13179 cp_parser_parse_tentatively (parser);
13180 type = cp_parser_class_name (parser,
13181 /*typename_keyword_p=*/false,
13182 /*template_keyword_p=*/false,
13183 class_type,
13184 /*check_dependency_p=*/false,
13185 /*class_head_p=*/true,
13186 /*is_declaration=*/false);
13187 /* If that didn't work, ignore the nested-name-specifier. */
13188 if (!cp_parser_parse_definitely (parser))
13189 {
13190 invalid_nested_name_p = true;
13191 id = cp_parser_identifier (parser);
13192 if (id == error_mark_node)
13193 id = NULL_TREE;
13194 }
13195 /* If we could not find a corresponding TYPE, treat this
13196 declaration like an unqualified declaration. */
13197 if (type == error_mark_node)
13198 nested_name_specifier = NULL_TREE;
13199 /* Otherwise, count the number of templates used in TYPE and its
13200 containing scopes. */
13201 else
13202 {
13203 tree scope;
13204
13205 for (scope = TREE_TYPE (type);
13206 scope && TREE_CODE (scope) != NAMESPACE_DECL;
13207 scope = (TYPE_P (scope)
13208 ? TYPE_CONTEXT (scope)
13209 : DECL_CONTEXT (scope)))
13210 if (TYPE_P (scope)
13211 && CLASS_TYPE_P (scope)
13212 && CLASSTYPE_TEMPLATE_INFO (scope)
13213 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (scope))
13214 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (scope))
13215 ++num_templates;
13216 }
13217 }
13218 /* Otherwise, the identifier is optional. */
13219 else
13220 {
13221 /* We don't know whether what comes next is a template-id,
13222 an identifier, or nothing at all. */
13223 cp_parser_parse_tentatively (parser);
13224 /* Check for a template-id. */
13225 id = cp_parser_template_id (parser,
13226 /*template_keyword_p=*/false,
13227 /*check_dependency_p=*/true,
13228 /*is_declaration=*/true);
13229 /* If that didn't work, it could still be an identifier. */
13230 if (!cp_parser_parse_definitely (parser))
13231 {
13232 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
13233 id = cp_parser_identifier (parser);
13234 else
13235 id = NULL_TREE;
13236 }
13237 else
13238 {
13239 template_id_p = true;
13240 ++num_templates;
13241 }
13242 }
13243
13244 pop_deferring_access_checks ();
13245
13246 if (id)
13247 cp_parser_check_for_invalid_template_id (parser, id);
13248
13249 /* If it's not a `:' or a `{' then we can't really be looking at a
13250 class-head, since a class-head only appears as part of a
13251 class-specifier. We have to detect this situation before calling
13252 xref_tag, since that has irreversible side-effects. */
13253 if (!cp_parser_next_token_starts_class_definition_p (parser))
13254 {
13255 cp_parser_error (parser, "expected %<{%> or %<:%>");
13256 return error_mark_node;
13257 }
13258
13259 /* At this point, we're going ahead with the class-specifier, even
13260 if some other problem occurs. */
13261 cp_parser_commit_to_tentative_parse (parser);
13262 /* Issue the error about the overly-qualified name now. */
13263 if (qualified_p)
13264 cp_parser_error (parser,
13265 "global qualification of class name is invalid");
13266 else if (invalid_nested_name_p)
13267 cp_parser_error (parser,
13268 "qualified name does not name a class");
13269 else if (nested_name_specifier)
13270 {
13271 tree scope;
13272
13273 /* Reject typedef-names in class heads. */
13274 if (!DECL_IMPLICIT_TYPEDEF_P (type))
13275 {
13276 error ("invalid class name in declaration of %qD", type);
13277 type = NULL_TREE;
13278 goto done;
13279 }
13280
13281 /* Figure out in what scope the declaration is being placed. */
13282 scope = current_scope ();
13283 /* If that scope does not contain the scope in which the
13284 class was originally declared, the program is invalid. */
13285 if (scope && !is_ancestor (scope, nested_name_specifier))
13286 {
13287 error ("declaration of %qD in %qD which does not enclose %qD",
13288 type, scope, nested_name_specifier);
13289 type = NULL_TREE;
13290 goto done;
13291 }
13292 /* [dcl.meaning]
13293
13294 A declarator-id shall not be qualified exception of the
13295 definition of a ... nested class outside of its class
13296 ... [or] a the definition or explicit instantiation of a
13297 class member of a namespace outside of its namespace. */
13298 if (scope == nested_name_specifier)
13299 {
13300 pedwarn ("extra qualification ignored");
13301 nested_name_specifier = NULL_TREE;
13302 num_templates = 0;
13303 }
13304 }
13305 /* An explicit-specialization must be preceded by "template <>". If
13306 it is not, try to recover gracefully. */
13307 if (at_namespace_scope_p ()
13308 && parser->num_template_parameter_lists == 0
13309 && template_id_p)
13310 {
13311 error ("an explicit specialization must be preceded by %<template <>%>");
13312 invalid_explicit_specialization_p = true;
13313 /* Take the same action that would have been taken by
13314 cp_parser_explicit_specialization. */
13315 ++parser->num_template_parameter_lists;
13316 begin_specialization ();
13317 }
13318 /* There must be no "return" statements between this point and the
13319 end of this function; set "type "to the correct return value and
13320 use "goto done;" to return. */
13321 /* Make sure that the right number of template parameters were
13322 present. */
13323 if (!cp_parser_check_template_parameters (parser, num_templates))
13324 {
13325 /* If something went wrong, there is no point in even trying to
13326 process the class-definition. */
13327 type = NULL_TREE;
13328 goto done;
13329 }
13330
13331 /* Look up the type. */
13332 if (template_id_p)
13333 {
13334 type = TREE_TYPE (id);
13335 type = maybe_process_partial_specialization (type);
13336 if (nested_name_specifier)
13337 pushed_scope = push_scope (nested_name_specifier);
13338 }
13339 else if (nested_name_specifier)
13340 {
13341 tree class_type;
13342
13343 /* Given:
13344
13345 template <typename T> struct S { struct T };
13346 template <typename T> struct S<T>::T { };
13347
13348 we will get a TYPENAME_TYPE when processing the definition of
13349 `S::T'. We need to resolve it to the actual type before we
13350 try to define it. */
13351 if (TREE_CODE (TREE_TYPE (type)) == TYPENAME_TYPE)
13352 {
13353 class_type = resolve_typename_type (TREE_TYPE (type),
13354 /*only_current_p=*/false);
13355 if (class_type != error_mark_node)
13356 type = TYPE_NAME (class_type);
13357 else
13358 {
13359 cp_parser_error (parser, "could not resolve typename type");
13360 type = error_mark_node;
13361 }
13362 }
13363
13364 maybe_process_partial_specialization (TREE_TYPE (type));
13365 class_type = current_class_type;
13366 /* Enter the scope indicated by the nested-name-specifier. */
13367 pushed_scope = push_scope (nested_name_specifier);
13368 /* Get the canonical version of this type. */
13369 type = TYPE_MAIN_DECL (TREE_TYPE (type));
13370 if (PROCESSING_REAL_TEMPLATE_DECL_P ()
13371 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (type)))
13372 {
13373 type = push_template_decl (type);
13374 if (type == error_mark_node)
13375 {
13376 type = NULL_TREE;
13377 goto done;
13378 }
13379 }
13380
13381 type = TREE_TYPE (type);
13382 *nested_name_specifier_p = true;
13383 }
13384 else /* The name is not a nested name. */
13385 {
13386 /* If the class was unnamed, create a dummy name. */
13387 if (!id)
13388 id = make_anon_name ();
13389 type = xref_tag (class_key, id, /*tag_scope=*/ts_current,
13390 parser->num_template_parameter_lists);
13391 }
13392
13393 /* Indicate whether this class was declared as a `class' or as a
13394 `struct'. */
13395 if (TREE_CODE (type) == RECORD_TYPE)
13396 CLASSTYPE_DECLARED_CLASS (type) = (class_key == class_type);
13397 cp_parser_check_class_key (class_key, type);
13398
13399 /* If this type was already complete, and we see another definition,
13400 that's an error. */
13401 if (type != error_mark_node && COMPLETE_TYPE_P (type))
13402 {
13403 error ("redefinition of %q#T", type);
13404 error ("previous definition of %q+#T", type);
13405 type = NULL_TREE;
13406 goto done;
13407 }
13408
13409 /* We will have entered the scope containing the class; the names of
13410 base classes should be looked up in that context. For example:
13411
13412 struct A { struct B {}; struct C; };
13413 struct A::C : B {};
13414
13415 is valid. */
13416 bases = NULL_TREE;
13417
13418 /* Get the list of base-classes, if there is one. */
13419 if (cp_lexer_next_token_is (parser->lexer, CPP_COLON))
13420 bases = cp_parser_base_clause (parser);
13421
13422 /* Process the base classes. */
13423 xref_basetypes (type, bases);
13424
13425 done:
13426 /* Leave the scope given by the nested-name-specifier. We will
13427 enter the class scope itself while processing the members. */
13428 if (pushed_scope)
13429 pop_scope (pushed_scope);
13430
13431 if (invalid_explicit_specialization_p)
13432 {
13433 end_specialization ();
13434 --parser->num_template_parameter_lists;
13435 }
13436 *attributes_p = attributes;
13437 return type;
13438 }
13439
13440 /* Parse a class-key.
13441
13442 class-key:
13443 class
13444 struct
13445 union
13446
13447 Returns the kind of class-key specified, or none_type to indicate
13448 error. */
13449
13450 static enum tag_types
13451 cp_parser_class_key (cp_parser* parser)
13452 {
13453 cp_token *token;
13454 enum tag_types tag_type;
13455
13456 /* Look for the class-key. */
13457 token = cp_parser_require (parser, CPP_KEYWORD, "class-key");
13458 if (!token)
13459 return none_type;
13460
13461 /* Check to see if the TOKEN is a class-key. */
13462 tag_type = cp_parser_token_is_class_key (token);
13463 if (!tag_type)
13464 cp_parser_error (parser, "expected class-key");
13465 return tag_type;
13466 }
13467
13468 /* Parse an (optional) member-specification.
13469
13470 member-specification:
13471 member-declaration member-specification [opt]
13472 access-specifier : member-specification [opt] */
13473
13474 static void
13475 cp_parser_member_specification_opt (cp_parser* parser)
13476 {
13477 while (true)
13478 {
13479 cp_token *token;
13480 enum rid keyword;
13481
13482 /* Peek at the next token. */
13483 token = cp_lexer_peek_token (parser->lexer);
13484 /* If it's a `}', or EOF then we've seen all the members. */
13485 if (token->type == CPP_CLOSE_BRACE
13486 || token->type == CPP_EOF
13487 || token->type == CPP_PRAGMA_EOL)
13488 break;
13489
13490 /* See if this token is a keyword. */
13491 keyword = token->keyword;
13492 switch (keyword)
13493 {
13494 case RID_PUBLIC:
13495 case RID_PROTECTED:
13496 case RID_PRIVATE:
13497 /* Consume the access-specifier. */
13498 cp_lexer_consume_token (parser->lexer);
13499 /* Remember which access-specifier is active. */
13500 current_access_specifier = token->value;
13501 /* Look for the `:'. */
13502 cp_parser_require (parser, CPP_COLON, "`:'");
13503 break;
13504
13505 default:
13506 /* Accept #pragmas at class scope. */
13507 if (token->type == CPP_PRAGMA)
13508 {
13509 cp_parser_pragma (parser, pragma_external);
13510 break;
13511 }
13512
13513 /* Otherwise, the next construction must be a
13514 member-declaration. */
13515 cp_parser_member_declaration (parser);
13516 }
13517 }
13518 }
13519
13520 /* Parse a member-declaration.
13521
13522 member-declaration:
13523 decl-specifier-seq [opt] member-declarator-list [opt] ;
13524 function-definition ; [opt]
13525 :: [opt] nested-name-specifier template [opt] unqualified-id ;
13526 using-declaration
13527 template-declaration
13528
13529 member-declarator-list:
13530 member-declarator
13531 member-declarator-list , member-declarator
13532
13533 member-declarator:
13534 declarator pure-specifier [opt]
13535 declarator constant-initializer [opt]
13536 identifier [opt] : constant-expression
13537
13538 GNU Extensions:
13539
13540 member-declaration:
13541 __extension__ member-declaration
13542
13543 member-declarator:
13544 declarator attributes [opt] pure-specifier [opt]
13545 declarator attributes [opt] constant-initializer [opt]
13546 identifier [opt] attributes [opt] : constant-expression */
13547
13548 static void
13549 cp_parser_member_declaration (cp_parser* parser)
13550 {
13551 cp_decl_specifier_seq decl_specifiers;
13552 tree prefix_attributes;
13553 tree decl;
13554 int declares_class_or_enum;
13555 bool friend_p;
13556 cp_token *token;
13557 int saved_pedantic;
13558
13559 /* Check for the `__extension__' keyword. */
13560 if (cp_parser_extension_opt (parser, &saved_pedantic))
13561 {
13562 /* Recurse. */
13563 cp_parser_member_declaration (parser);
13564 /* Restore the old value of the PEDANTIC flag. */
13565 pedantic = saved_pedantic;
13566
13567 return;
13568 }
13569
13570 /* Check for a template-declaration. */
13571 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
13572 {
13573 /* An explicit specialization here is an error condition, and we
13574 expect the specialization handler to detect and report this. */
13575 if (cp_lexer_peek_nth_token (parser->lexer, 2)->type == CPP_LESS
13576 && cp_lexer_peek_nth_token (parser->lexer, 3)->type == CPP_GREATER)
13577 cp_parser_explicit_specialization (parser);
13578 else
13579 cp_parser_template_declaration (parser, /*member_p=*/true);
13580
13581 return;
13582 }
13583
13584 /* Check for a using-declaration. */
13585 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_USING))
13586 {
13587 /* Parse the using-declaration. */
13588 cp_parser_using_declaration (parser,
13589 /*access_declaration_p=*/false);
13590 return;
13591 }
13592
13593 /* Check for @defs. */
13594 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_AT_DEFS))
13595 {
13596 tree ivar, member;
13597 tree ivar_chains = cp_parser_objc_defs_expression (parser);
13598 ivar = ivar_chains;
13599 while (ivar)
13600 {
13601 member = ivar;
13602 ivar = TREE_CHAIN (member);
13603 TREE_CHAIN (member) = NULL_TREE;
13604 finish_member_declaration (member);
13605 }
13606 return;
13607 }
13608
13609 if (cp_parser_using_declaration (parser, /*access_declaration=*/true))
13610 return;
13611
13612 /* Parse the decl-specifier-seq. */
13613 cp_parser_decl_specifier_seq (parser,
13614 CP_PARSER_FLAGS_OPTIONAL,
13615 &decl_specifiers,
13616 &declares_class_or_enum);
13617 prefix_attributes = decl_specifiers.attributes;
13618 decl_specifiers.attributes = NULL_TREE;
13619 /* Check for an invalid type-name. */
13620 if (!decl_specifiers.type
13621 && cp_parser_parse_and_diagnose_invalid_type_name (parser))
13622 return;
13623 /* If there is no declarator, then the decl-specifier-seq should
13624 specify a type. */
13625 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
13626 {
13627 /* If there was no decl-specifier-seq, and the next token is a
13628 `;', then we have something like:
13629
13630 struct S { ; };
13631
13632 [class.mem]
13633
13634 Each member-declaration shall declare at least one member
13635 name of the class. */
13636 if (!decl_specifiers.any_specifiers_p)
13637 {
13638 cp_token *token = cp_lexer_peek_token (parser->lexer);
13639 if (pedantic && !token->in_system_header)
13640 pedwarn ("%Hextra %<;%>", &token->location);
13641 }
13642 else
13643 {
13644 tree type;
13645
13646 /* See if this declaration is a friend. */
13647 friend_p = cp_parser_friend_p (&decl_specifiers);
13648 /* If there were decl-specifiers, check to see if there was
13649 a class-declaration. */
13650 type = check_tag_decl (&decl_specifiers);
13651 /* Nested classes have already been added to the class, but
13652 a `friend' needs to be explicitly registered. */
13653 if (friend_p)
13654 {
13655 /* If the `friend' keyword was present, the friend must
13656 be introduced with a class-key. */
13657 if (!declares_class_or_enum)
13658 error ("a class-key must be used when declaring a friend");
13659 /* In this case:
13660
13661 template <typename T> struct A {
13662 friend struct A<T>::B;
13663 };
13664
13665 A<T>::B will be represented by a TYPENAME_TYPE, and
13666 therefore not recognized by check_tag_decl. */
13667 if (!type
13668 && decl_specifiers.type
13669 && TYPE_P (decl_specifiers.type))
13670 type = decl_specifiers.type;
13671 if (!type || !TYPE_P (type))
13672 error ("friend declaration does not name a class or "
13673 "function");
13674 else
13675 make_friend_class (current_class_type, type,
13676 /*complain=*/true);
13677 }
13678 /* If there is no TYPE, an error message will already have
13679 been issued. */
13680 else if (!type || type == error_mark_node)
13681 ;
13682 /* An anonymous aggregate has to be handled specially; such
13683 a declaration really declares a data member (with a
13684 particular type), as opposed to a nested class. */
13685 else if (ANON_AGGR_TYPE_P (type))
13686 {
13687 /* Remove constructors and such from TYPE, now that we
13688 know it is an anonymous aggregate. */
13689 fixup_anonymous_aggr (type);
13690 /* And make the corresponding data member. */
13691 decl = build_decl (FIELD_DECL, NULL_TREE, type);
13692 /* Add it to the class. */
13693 finish_member_declaration (decl);
13694 }
13695 else
13696 cp_parser_check_access_in_redeclaration (TYPE_NAME (type));
13697 }
13698 }
13699 else
13700 {
13701 /* See if these declarations will be friends. */
13702 friend_p = cp_parser_friend_p (&decl_specifiers);
13703
13704 /* Keep going until we hit the `;' at the end of the
13705 declaration. */
13706 while (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
13707 {
13708 tree attributes = NULL_TREE;
13709 tree first_attribute;
13710
13711 /* Peek at the next token. */
13712 token = cp_lexer_peek_token (parser->lexer);
13713
13714 /* Check for a bitfield declaration. */
13715 if (token->type == CPP_COLON
13716 || (token->type == CPP_NAME
13717 && cp_lexer_peek_nth_token (parser->lexer, 2)->type
13718 == CPP_COLON))
13719 {
13720 tree identifier;
13721 tree width;
13722
13723 /* Get the name of the bitfield. Note that we cannot just
13724 check TOKEN here because it may have been invalidated by
13725 the call to cp_lexer_peek_nth_token above. */
13726 if (cp_lexer_peek_token (parser->lexer)->type != CPP_COLON)
13727 identifier = cp_parser_identifier (parser);
13728 else
13729 identifier = NULL_TREE;
13730
13731 /* Consume the `:' token. */
13732 cp_lexer_consume_token (parser->lexer);
13733 /* Get the width of the bitfield. */
13734 width
13735 = cp_parser_constant_expression (parser,
13736 /*allow_non_constant=*/false,
13737 NULL);
13738
13739 /* Look for attributes that apply to the bitfield. */
13740 attributes = cp_parser_attributes_opt (parser);
13741 /* Remember which attributes are prefix attributes and
13742 which are not. */
13743 first_attribute = attributes;
13744 /* Combine the attributes. */
13745 attributes = chainon (prefix_attributes, attributes);
13746
13747 /* Create the bitfield declaration. */
13748 decl = grokbitfield (identifier
13749 ? make_id_declarator (NULL_TREE,
13750 identifier,
13751 sfk_none)
13752 : NULL,
13753 &decl_specifiers,
13754 width);
13755 /* Apply the attributes. */
13756 cplus_decl_attributes (&decl, attributes, /*flags=*/0);
13757 }
13758 else
13759 {
13760 cp_declarator *declarator;
13761 tree initializer;
13762 tree asm_specification;
13763 int ctor_dtor_or_conv_p;
13764
13765 /* Parse the declarator. */
13766 declarator
13767 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
13768 &ctor_dtor_or_conv_p,
13769 /*parenthesized_p=*/NULL,
13770 /*member_p=*/true);
13771
13772 /* If something went wrong parsing the declarator, make sure
13773 that we at least consume some tokens. */
13774 if (declarator == cp_error_declarator)
13775 {
13776 /* Skip to the end of the statement. */
13777 cp_parser_skip_to_end_of_statement (parser);
13778 /* If the next token is not a semicolon, that is
13779 probably because we just skipped over the body of
13780 a function. So, we consume a semicolon if
13781 present, but do not issue an error message if it
13782 is not present. */
13783 if (cp_lexer_next_token_is (parser->lexer,
13784 CPP_SEMICOLON))
13785 cp_lexer_consume_token (parser->lexer);
13786 return;
13787 }
13788
13789 if (declares_class_or_enum & 2)
13790 cp_parser_check_for_definition_in_return_type
13791 (declarator, decl_specifiers.type);
13792
13793 /* Look for an asm-specification. */
13794 asm_specification = cp_parser_asm_specification_opt (parser);
13795 /* Look for attributes that apply to the declaration. */
13796 attributes = cp_parser_attributes_opt (parser);
13797 /* Remember which attributes are prefix attributes and
13798 which are not. */
13799 first_attribute = attributes;
13800 /* Combine the attributes. */
13801 attributes = chainon (prefix_attributes, attributes);
13802
13803 /* If it's an `=', then we have a constant-initializer or a
13804 pure-specifier. It is not correct to parse the
13805 initializer before registering the member declaration
13806 since the member declaration should be in scope while
13807 its initializer is processed. However, the rest of the
13808 front end does not yet provide an interface that allows
13809 us to handle this correctly. */
13810 if (cp_lexer_next_token_is (parser->lexer, CPP_EQ))
13811 {
13812 /* In [class.mem]:
13813
13814 A pure-specifier shall be used only in the declaration of
13815 a virtual function.
13816
13817 A member-declarator can contain a constant-initializer
13818 only if it declares a static member of integral or
13819 enumeration type.
13820
13821 Therefore, if the DECLARATOR is for a function, we look
13822 for a pure-specifier; otherwise, we look for a
13823 constant-initializer. When we call `grokfield', it will
13824 perform more stringent semantics checks. */
13825 if (declarator->kind == cdk_function
13826 && declarator->declarator->kind == cdk_id)
13827 initializer = cp_parser_pure_specifier (parser);
13828 else
13829 /* Parse the initializer. */
13830 initializer = cp_parser_constant_initializer (parser);
13831 }
13832 /* Otherwise, there is no initializer. */
13833 else
13834 initializer = NULL_TREE;
13835
13836 /* See if we are probably looking at a function
13837 definition. We are certainly not looking at a
13838 member-declarator. Calling `grokfield' has
13839 side-effects, so we must not do it unless we are sure
13840 that we are looking at a member-declarator. */
13841 if (cp_parser_token_starts_function_definition_p
13842 (cp_lexer_peek_token (parser->lexer)))
13843 {
13844 /* The grammar does not allow a pure-specifier to be
13845 used when a member function is defined. (It is
13846 possible that this fact is an oversight in the
13847 standard, since a pure function may be defined
13848 outside of the class-specifier. */
13849 if (initializer)
13850 error ("pure-specifier on function-definition");
13851 decl = cp_parser_save_member_function_body (parser,
13852 &decl_specifiers,
13853 declarator,
13854 attributes);
13855 /* If the member was not a friend, declare it here. */
13856 if (!friend_p)
13857 finish_member_declaration (decl);
13858 /* Peek at the next token. */
13859 token = cp_lexer_peek_token (parser->lexer);
13860 /* If the next token is a semicolon, consume it. */
13861 if (token->type == CPP_SEMICOLON)
13862 cp_lexer_consume_token (parser->lexer);
13863 return;
13864 }
13865 else
13866 /* Create the declaration. */
13867 decl = grokfield (declarator, &decl_specifiers,
13868 initializer, /*init_const_expr_p=*/true,
13869 asm_specification,
13870 attributes);
13871 }
13872
13873 /* Reset PREFIX_ATTRIBUTES. */
13874 while (attributes && TREE_CHAIN (attributes) != first_attribute)
13875 attributes = TREE_CHAIN (attributes);
13876 if (attributes)
13877 TREE_CHAIN (attributes) = NULL_TREE;
13878
13879 /* If there is any qualification still in effect, clear it
13880 now; we will be starting fresh with the next declarator. */
13881 parser->scope = NULL_TREE;
13882 parser->qualifying_scope = NULL_TREE;
13883 parser->object_scope = NULL_TREE;
13884 /* If it's a `,', then there are more declarators. */
13885 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
13886 cp_lexer_consume_token (parser->lexer);
13887 /* If the next token isn't a `;', then we have a parse error. */
13888 else if (cp_lexer_next_token_is_not (parser->lexer,
13889 CPP_SEMICOLON))
13890 {
13891 cp_parser_error (parser, "expected %<;%>");
13892 /* Skip tokens until we find a `;'. */
13893 cp_parser_skip_to_end_of_statement (parser);
13894
13895 break;
13896 }
13897
13898 if (decl)
13899 {
13900 /* Add DECL to the list of members. */
13901 if (!friend_p)
13902 finish_member_declaration (decl);
13903
13904 if (TREE_CODE (decl) == FUNCTION_DECL)
13905 cp_parser_save_default_args (parser, decl);
13906 }
13907 }
13908 }
13909
13910 cp_parser_require (parser, CPP_SEMICOLON, "`;'");
13911 }
13912
13913 /* Parse a pure-specifier.
13914
13915 pure-specifier:
13916 = 0
13917
13918 Returns INTEGER_ZERO_NODE if a pure specifier is found.
13919 Otherwise, ERROR_MARK_NODE is returned. */
13920
13921 static tree
13922 cp_parser_pure_specifier (cp_parser* parser)
13923 {
13924 cp_token *token;
13925
13926 /* Look for the `=' token. */
13927 if (!cp_parser_require (parser, CPP_EQ, "`='"))
13928 return error_mark_node;
13929 /* Look for the `0' token. */
13930 token = cp_lexer_consume_token (parser->lexer);
13931 /* c_lex_with_flags marks a single digit '0' with PURE_ZERO. */
13932 if (token->type != CPP_NUMBER || !(token->flags & PURE_ZERO))
13933 {
13934 cp_parser_error (parser,
13935 "invalid pure specifier (only `= 0' is allowed)");
13936 cp_parser_skip_to_end_of_statement (parser);
13937 return error_mark_node;
13938 }
13939 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
13940 {
13941 error ("templates may not be %<virtual%>");
13942 return error_mark_node;
13943 }
13944
13945 return integer_zero_node;
13946 }
13947
13948 /* Parse a constant-initializer.
13949
13950 constant-initializer:
13951 = constant-expression
13952
13953 Returns a representation of the constant-expression. */
13954
13955 static tree
13956 cp_parser_constant_initializer (cp_parser* parser)
13957 {
13958 /* Look for the `=' token. */
13959 if (!cp_parser_require (parser, CPP_EQ, "`='"))
13960 return error_mark_node;
13961
13962 /* It is invalid to write:
13963
13964 struct S { static const int i = { 7 }; };
13965
13966 */
13967 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
13968 {
13969 cp_parser_error (parser,
13970 "a brace-enclosed initializer is not allowed here");
13971 /* Consume the opening brace. */
13972 cp_lexer_consume_token (parser->lexer);
13973 /* Skip the initializer. */
13974 cp_parser_skip_to_closing_brace (parser);
13975 /* Look for the trailing `}'. */
13976 cp_parser_require (parser, CPP_CLOSE_BRACE, "`}'");
13977
13978 return error_mark_node;
13979 }
13980
13981 return cp_parser_constant_expression (parser,
13982 /*allow_non_constant=*/false,
13983 NULL);
13984 }
13985
13986 /* Derived classes [gram.class.derived] */
13987
13988 /* Parse a base-clause.
13989
13990 base-clause:
13991 : base-specifier-list
13992
13993 base-specifier-list:
13994 base-specifier
13995 base-specifier-list , base-specifier
13996
13997 Returns a TREE_LIST representing the base-classes, in the order in
13998 which they were declared. The representation of each node is as
13999 described by cp_parser_base_specifier.
14000
14001 In the case that no bases are specified, this function will return
14002 NULL_TREE, not ERROR_MARK_NODE. */
14003
14004 static tree
14005 cp_parser_base_clause (cp_parser* parser)
14006 {
14007 tree bases = NULL_TREE;
14008
14009 /* Look for the `:' that begins the list. */
14010 cp_parser_require (parser, CPP_COLON, "`:'");
14011
14012 /* Scan the base-specifier-list. */
14013 while (true)
14014 {
14015 cp_token *token;
14016 tree base;
14017
14018 /* Look for the base-specifier. */
14019 base = cp_parser_base_specifier (parser);
14020 /* Add BASE to the front of the list. */
14021 if (base != error_mark_node)
14022 {
14023 TREE_CHAIN (base) = bases;
14024 bases = base;
14025 }
14026 /* Peek at the next token. */
14027 token = cp_lexer_peek_token (parser->lexer);
14028 /* If it's not a comma, then the list is complete. */
14029 if (token->type != CPP_COMMA)
14030 break;
14031 /* Consume the `,'. */
14032 cp_lexer_consume_token (parser->lexer);
14033 }
14034
14035 /* PARSER->SCOPE may still be non-NULL at this point, if the last
14036 base class had a qualified name. However, the next name that
14037 appears is certainly not qualified. */
14038 parser->scope = NULL_TREE;
14039 parser->qualifying_scope = NULL_TREE;
14040 parser->object_scope = NULL_TREE;
14041
14042 return nreverse (bases);
14043 }
14044
14045 /* Parse a base-specifier.
14046
14047 base-specifier:
14048 :: [opt] nested-name-specifier [opt] class-name
14049 virtual access-specifier [opt] :: [opt] nested-name-specifier
14050 [opt] class-name
14051 access-specifier virtual [opt] :: [opt] nested-name-specifier
14052 [opt] class-name
14053
14054 Returns a TREE_LIST. The TREE_PURPOSE will be one of
14055 ACCESS_{DEFAULT,PUBLIC,PROTECTED,PRIVATE}_[VIRTUAL]_NODE to
14056 indicate the specifiers provided. The TREE_VALUE will be a TYPE
14057 (or the ERROR_MARK_NODE) indicating the type that was specified. */
14058
14059 static tree
14060 cp_parser_base_specifier (cp_parser* parser)
14061 {
14062 cp_token *token;
14063 bool done = false;
14064 bool virtual_p = false;
14065 bool duplicate_virtual_error_issued_p = false;
14066 bool duplicate_access_error_issued_p = false;
14067 bool class_scope_p, template_p;
14068 tree access = access_default_node;
14069 tree type;
14070
14071 /* Process the optional `virtual' and `access-specifier'. */
14072 while (!done)
14073 {
14074 /* Peek at the next token. */
14075 token = cp_lexer_peek_token (parser->lexer);
14076 /* Process `virtual'. */
14077 switch (token->keyword)
14078 {
14079 case RID_VIRTUAL:
14080 /* If `virtual' appears more than once, issue an error. */
14081 if (virtual_p && !duplicate_virtual_error_issued_p)
14082 {
14083 cp_parser_error (parser,
14084 "%<virtual%> specified more than once in base-specified");
14085 duplicate_virtual_error_issued_p = true;
14086 }
14087
14088 virtual_p = true;
14089
14090 /* Consume the `virtual' token. */
14091 cp_lexer_consume_token (parser->lexer);
14092
14093 break;
14094
14095 case RID_PUBLIC:
14096 case RID_PROTECTED:
14097 case RID_PRIVATE:
14098 /* If more than one access specifier appears, issue an
14099 error. */
14100 if (access != access_default_node
14101 && !duplicate_access_error_issued_p)
14102 {
14103 cp_parser_error (parser,
14104 "more than one access specifier in base-specified");
14105 duplicate_access_error_issued_p = true;
14106 }
14107
14108 access = ridpointers[(int) token->keyword];
14109
14110 /* Consume the access-specifier. */
14111 cp_lexer_consume_token (parser->lexer);
14112
14113 break;
14114
14115 default:
14116 done = true;
14117 break;
14118 }
14119 }
14120 /* It is not uncommon to see programs mechanically, erroneously, use
14121 the 'typename' keyword to denote (dependent) qualified types
14122 as base classes. */
14123 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TYPENAME))
14124 {
14125 if (!processing_template_decl)
14126 error ("keyword %<typename%> not allowed outside of templates");
14127 else
14128 error ("keyword %<typename%> not allowed in this context "
14129 "(the base class is implicitly a type)");
14130 cp_lexer_consume_token (parser->lexer);
14131 }
14132
14133 /* Look for the optional `::' operator. */
14134 cp_parser_global_scope_opt (parser, /*current_scope_valid_p=*/false);
14135 /* Look for the nested-name-specifier. The simplest way to
14136 implement:
14137
14138 [temp.res]
14139
14140 The keyword `typename' is not permitted in a base-specifier or
14141 mem-initializer; in these contexts a qualified name that
14142 depends on a template-parameter is implicitly assumed to be a
14143 type name.
14144
14145 is to pretend that we have seen the `typename' keyword at this
14146 point. */
14147 cp_parser_nested_name_specifier_opt (parser,
14148 /*typename_keyword_p=*/true,
14149 /*check_dependency_p=*/true,
14150 typename_type,
14151 /*is_declaration=*/true);
14152 /* If the base class is given by a qualified name, assume that names
14153 we see are type names or templates, as appropriate. */
14154 class_scope_p = (parser->scope && TYPE_P (parser->scope));
14155 template_p = class_scope_p && cp_parser_optional_template_keyword (parser);
14156
14157 /* Finally, look for the class-name. */
14158 type = cp_parser_class_name (parser,
14159 class_scope_p,
14160 template_p,
14161 typename_type,
14162 /*check_dependency_p=*/true,
14163 /*class_head_p=*/false,
14164 /*is_declaration=*/true);
14165
14166 if (type == error_mark_node)
14167 return error_mark_node;
14168
14169 return finish_base_specifier (TREE_TYPE (type), access, virtual_p);
14170 }
14171
14172 /* Exception handling [gram.exception] */
14173
14174 /* Parse an (optional) exception-specification.
14175
14176 exception-specification:
14177 throw ( type-id-list [opt] )
14178
14179 Returns a TREE_LIST representing the exception-specification. The
14180 TREE_VALUE of each node is a type. */
14181
14182 static tree
14183 cp_parser_exception_specification_opt (cp_parser* parser)
14184 {
14185 cp_token *token;
14186 tree type_id_list;
14187
14188 /* Peek at the next token. */
14189 token = cp_lexer_peek_token (parser->lexer);
14190 /* If it's not `throw', then there's no exception-specification. */
14191 if (!cp_parser_is_keyword (token, RID_THROW))
14192 return NULL_TREE;
14193
14194 /* Consume the `throw'. */
14195 cp_lexer_consume_token (parser->lexer);
14196
14197 /* Look for the `('. */
14198 cp_parser_require (parser, CPP_OPEN_PAREN, "`('");
14199
14200 /* Peek at the next token. */
14201 token = cp_lexer_peek_token (parser->lexer);
14202 /* If it's not a `)', then there is a type-id-list. */
14203 if (token->type != CPP_CLOSE_PAREN)
14204 {
14205 const char *saved_message;
14206
14207 /* Types may not be defined in an exception-specification. */
14208 saved_message = parser->type_definition_forbidden_message;
14209 parser->type_definition_forbidden_message
14210 = "types may not be defined in an exception-specification";
14211 /* Parse the type-id-list. */
14212 type_id_list = cp_parser_type_id_list (parser);
14213 /* Restore the saved message. */
14214 parser->type_definition_forbidden_message = saved_message;
14215 }
14216 else
14217 type_id_list = empty_except_spec;
14218
14219 /* Look for the `)'. */
14220 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
14221
14222 return type_id_list;
14223 }
14224
14225 /* Parse an (optional) type-id-list.
14226
14227 type-id-list:
14228 type-id
14229 type-id-list , type-id
14230
14231 Returns a TREE_LIST. The TREE_VALUE of each node is a TYPE,
14232 in the order that the types were presented. */
14233
14234 static tree
14235 cp_parser_type_id_list (cp_parser* parser)
14236 {
14237 tree types = NULL_TREE;
14238
14239 while (true)
14240 {
14241 cp_token *token;
14242 tree type;
14243
14244 /* Get the next type-id. */
14245 type = cp_parser_type_id (parser);
14246 /* Add it to the list. */
14247 types = add_exception_specifier (types, type, /*complain=*/1);
14248 /* Peek at the next token. */
14249 token = cp_lexer_peek_token (parser->lexer);
14250 /* If it is not a `,', we are done. */
14251 if (token->type != CPP_COMMA)
14252 break;
14253 /* Consume the `,'. */
14254 cp_lexer_consume_token (parser->lexer);
14255 }
14256
14257 return nreverse (types);
14258 }
14259
14260 /* Parse a try-block.
14261
14262 try-block:
14263 try compound-statement handler-seq */
14264
14265 static tree
14266 cp_parser_try_block (cp_parser* parser)
14267 {
14268 tree try_block;
14269
14270 cp_parser_require_keyword (parser, RID_TRY, "`try'");
14271 try_block = begin_try_block ();
14272 cp_parser_compound_statement (parser, NULL, true);
14273 finish_try_block (try_block);
14274 cp_parser_handler_seq (parser);
14275 finish_handler_sequence (try_block);
14276
14277 return try_block;
14278 }
14279
14280 /* Parse a function-try-block.
14281
14282 function-try-block:
14283 try ctor-initializer [opt] function-body handler-seq */
14284
14285 static bool
14286 cp_parser_function_try_block (cp_parser* parser)
14287 {
14288 tree compound_stmt;
14289 tree try_block;
14290 bool ctor_initializer_p;
14291
14292 /* Look for the `try' keyword. */
14293 if (!cp_parser_require_keyword (parser, RID_TRY, "`try'"))
14294 return false;
14295 /* Let the rest of the front-end know where we are. */
14296 try_block = begin_function_try_block (&compound_stmt);
14297 /* Parse the function-body. */
14298 ctor_initializer_p
14299 = cp_parser_ctor_initializer_opt_and_function_body (parser);
14300 /* We're done with the `try' part. */
14301 finish_function_try_block (try_block);
14302 /* Parse the handlers. */
14303 cp_parser_handler_seq (parser);
14304 /* We're done with the handlers. */
14305 finish_function_handler_sequence (try_block, compound_stmt);
14306
14307 return ctor_initializer_p;
14308 }
14309
14310 /* Parse a handler-seq.
14311
14312 handler-seq:
14313 handler handler-seq [opt] */
14314
14315 static void
14316 cp_parser_handler_seq (cp_parser* parser)
14317 {
14318 while (true)
14319 {
14320 cp_token *token;
14321
14322 /* Parse the handler. */
14323 cp_parser_handler (parser);
14324 /* Peek at the next token. */
14325 token = cp_lexer_peek_token (parser->lexer);
14326 /* If it's not `catch' then there are no more handlers. */
14327 if (!cp_parser_is_keyword (token, RID_CATCH))
14328 break;
14329 }
14330 }
14331
14332 /* Parse a handler.
14333
14334 handler:
14335 catch ( exception-declaration ) compound-statement */
14336
14337 static void
14338 cp_parser_handler (cp_parser* parser)
14339 {
14340 tree handler;
14341 tree declaration;
14342
14343 cp_parser_require_keyword (parser, RID_CATCH, "`catch'");
14344 handler = begin_handler ();
14345 cp_parser_require (parser, CPP_OPEN_PAREN, "`('");
14346 declaration = cp_parser_exception_declaration (parser);
14347 finish_handler_parms (declaration, handler);
14348 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
14349 cp_parser_compound_statement (parser, NULL, false);
14350 finish_handler (handler);
14351 }
14352
14353 /* Parse an exception-declaration.
14354
14355 exception-declaration:
14356 type-specifier-seq declarator
14357 type-specifier-seq abstract-declarator
14358 type-specifier-seq
14359 ...
14360
14361 Returns a VAR_DECL for the declaration, or NULL_TREE if the
14362 ellipsis variant is used. */
14363
14364 static tree
14365 cp_parser_exception_declaration (cp_parser* parser)
14366 {
14367 cp_decl_specifier_seq type_specifiers;
14368 cp_declarator *declarator;
14369 const char *saved_message;
14370
14371 /* If it's an ellipsis, it's easy to handle. */
14372 if (cp_lexer_next_token_is (parser->lexer, CPP_ELLIPSIS))
14373 {
14374 /* Consume the `...' token. */
14375 cp_lexer_consume_token (parser->lexer);
14376 return NULL_TREE;
14377 }
14378
14379 /* Types may not be defined in exception-declarations. */
14380 saved_message = parser->type_definition_forbidden_message;
14381 parser->type_definition_forbidden_message
14382 = "types may not be defined in exception-declarations";
14383
14384 /* Parse the type-specifier-seq. */
14385 cp_parser_type_specifier_seq (parser, /*is_condition=*/false,
14386 &type_specifiers);
14387 /* If it's a `)', then there is no declarator. */
14388 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_PAREN))
14389 declarator = NULL;
14390 else
14391 declarator = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_EITHER,
14392 /*ctor_dtor_or_conv_p=*/NULL,
14393 /*parenthesized_p=*/NULL,
14394 /*member_p=*/false);
14395
14396 /* Restore the saved message. */
14397 parser->type_definition_forbidden_message = saved_message;
14398
14399 if (!type_specifiers.any_specifiers_p)
14400 return error_mark_node;
14401
14402 return grokdeclarator (declarator, &type_specifiers, CATCHPARM, 1, NULL);
14403 }
14404
14405 /* Parse a throw-expression.
14406
14407 throw-expression:
14408 throw assignment-expression [opt]
14409
14410 Returns a THROW_EXPR representing the throw-expression. */
14411
14412 static tree
14413 cp_parser_throw_expression (cp_parser* parser)
14414 {
14415 tree expression;
14416 cp_token* token;
14417
14418 cp_parser_require_keyword (parser, RID_THROW, "`throw'");
14419 token = cp_lexer_peek_token (parser->lexer);
14420 /* Figure out whether or not there is an assignment-expression
14421 following the "throw" keyword. */
14422 if (token->type == CPP_COMMA
14423 || token->type == CPP_SEMICOLON
14424 || token->type == CPP_CLOSE_PAREN
14425 || token->type == CPP_CLOSE_SQUARE
14426 || token->type == CPP_CLOSE_BRACE
14427 || token->type == CPP_COLON)
14428 expression = NULL_TREE;
14429 else
14430 expression = cp_parser_assignment_expression (parser,
14431 /*cast_p=*/false);
14432
14433 return build_throw (expression);
14434 }
14435
14436 /* GNU Extensions */
14437
14438 /* Parse an (optional) asm-specification.
14439
14440 asm-specification:
14441 asm ( string-literal )
14442
14443 If the asm-specification is present, returns a STRING_CST
14444 corresponding to the string-literal. Otherwise, returns
14445 NULL_TREE. */
14446
14447 static tree
14448 cp_parser_asm_specification_opt (cp_parser* parser)
14449 {
14450 cp_token *token;
14451 tree asm_specification;
14452
14453 /* Peek at the next token. */
14454 token = cp_lexer_peek_token (parser->lexer);
14455 /* If the next token isn't the `asm' keyword, then there's no
14456 asm-specification. */
14457 if (!cp_parser_is_keyword (token, RID_ASM))
14458 return NULL_TREE;
14459
14460 /* Consume the `asm' token. */
14461 cp_lexer_consume_token (parser->lexer);
14462 /* Look for the `('. */
14463 cp_parser_require (parser, CPP_OPEN_PAREN, "`('");
14464
14465 /* Look for the string-literal. */
14466 asm_specification = cp_parser_string_literal (parser, false, false);
14467
14468 /* Look for the `)'. */
14469 cp_parser_require (parser, CPP_CLOSE_PAREN, "`('");
14470
14471 return asm_specification;
14472 }
14473
14474 /* Parse an asm-operand-list.
14475
14476 asm-operand-list:
14477 asm-operand
14478 asm-operand-list , asm-operand
14479
14480 asm-operand:
14481 string-literal ( expression )
14482 [ string-literal ] string-literal ( expression )
14483
14484 Returns a TREE_LIST representing the operands. The TREE_VALUE of
14485 each node is the expression. The TREE_PURPOSE is itself a
14486 TREE_LIST whose TREE_PURPOSE is a STRING_CST for the bracketed
14487 string-literal (or NULL_TREE if not present) and whose TREE_VALUE
14488 is a STRING_CST for the string literal before the parenthesis. */
14489
14490 static tree
14491 cp_parser_asm_operand_list (cp_parser* parser)
14492 {
14493 tree asm_operands = NULL_TREE;
14494
14495 while (true)
14496 {
14497 tree string_literal;
14498 tree expression;
14499 tree name;
14500
14501 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_SQUARE))
14502 {
14503 /* Consume the `[' token. */
14504 cp_lexer_consume_token (parser->lexer);
14505 /* Read the operand name. */
14506 name = cp_parser_identifier (parser);
14507 if (name != error_mark_node)
14508 name = build_string (IDENTIFIER_LENGTH (name),
14509 IDENTIFIER_POINTER (name));
14510 /* Look for the closing `]'. */
14511 cp_parser_require (parser, CPP_CLOSE_SQUARE, "`]'");
14512 }
14513 else
14514 name = NULL_TREE;
14515 /* Look for the string-literal. */
14516 string_literal = cp_parser_string_literal (parser, false, false);
14517
14518 /* Look for the `('. */
14519 cp_parser_require (parser, CPP_OPEN_PAREN, "`('");
14520 /* Parse the expression. */
14521 expression = cp_parser_expression (parser, /*cast_p=*/false);
14522 /* Look for the `)'. */
14523 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
14524
14525 /* Add this operand to the list. */
14526 asm_operands = tree_cons (build_tree_list (name, string_literal),
14527 expression,
14528 asm_operands);
14529 /* If the next token is not a `,', there are no more
14530 operands. */
14531 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
14532 break;
14533 /* Consume the `,'. */
14534 cp_lexer_consume_token (parser->lexer);
14535 }
14536
14537 return nreverse (asm_operands);
14538 }
14539
14540 /* Parse an asm-clobber-list.
14541
14542 asm-clobber-list:
14543 string-literal
14544 asm-clobber-list , string-literal
14545
14546 Returns a TREE_LIST, indicating the clobbers in the order that they
14547 appeared. The TREE_VALUE of each node is a STRING_CST. */
14548
14549 static tree
14550 cp_parser_asm_clobber_list (cp_parser* parser)
14551 {
14552 tree clobbers = NULL_TREE;
14553
14554 while (true)
14555 {
14556 tree string_literal;
14557
14558 /* Look for the string literal. */
14559 string_literal = cp_parser_string_literal (parser, false, false);
14560 /* Add it to the list. */
14561 clobbers = tree_cons (NULL_TREE, string_literal, clobbers);
14562 /* If the next token is not a `,', then the list is
14563 complete. */
14564 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
14565 break;
14566 /* Consume the `,' token. */
14567 cp_lexer_consume_token (parser->lexer);
14568 }
14569
14570 return clobbers;
14571 }
14572
14573 /* Parse an (optional) series of attributes.
14574
14575 attributes:
14576 attributes attribute
14577
14578 attribute:
14579 __attribute__ (( attribute-list [opt] ))
14580
14581 The return value is as for cp_parser_attribute_list. */
14582
14583 static tree
14584 cp_parser_attributes_opt (cp_parser* parser)
14585 {
14586 tree attributes = NULL_TREE;
14587
14588 while (true)
14589 {
14590 cp_token *token;
14591 tree attribute_list;
14592
14593 /* Peek at the next token. */
14594 token = cp_lexer_peek_token (parser->lexer);
14595 /* If it's not `__attribute__', then we're done. */
14596 if (token->keyword != RID_ATTRIBUTE)
14597 break;
14598
14599 /* Consume the `__attribute__' keyword. */
14600 cp_lexer_consume_token (parser->lexer);
14601 /* Look for the two `(' tokens. */
14602 cp_parser_require (parser, CPP_OPEN_PAREN, "`('");
14603 cp_parser_require (parser, CPP_OPEN_PAREN, "`('");
14604
14605 /* Peek at the next token. */
14606 token = cp_lexer_peek_token (parser->lexer);
14607 if (token->type != CPP_CLOSE_PAREN)
14608 /* Parse the attribute-list. */
14609 attribute_list = cp_parser_attribute_list (parser);
14610 else
14611 /* If the next token is a `)', then there is no attribute
14612 list. */
14613 attribute_list = NULL;
14614
14615 /* Look for the two `)' tokens. */
14616 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
14617 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
14618
14619 /* Add these new attributes to the list. */
14620 attributes = chainon (attributes, attribute_list);
14621 }
14622
14623 return attributes;
14624 }
14625
14626 /* Parse an attribute-list.
14627
14628 attribute-list:
14629 attribute
14630 attribute-list , attribute
14631
14632 attribute:
14633 identifier
14634 identifier ( identifier )
14635 identifier ( identifier , expression-list )
14636 identifier ( expression-list )
14637
14638 Returns a TREE_LIST, or NULL_TREE on error. Each node corresponds
14639 to an attribute. The TREE_PURPOSE of each node is the identifier
14640 indicating which attribute is in use. The TREE_VALUE represents
14641 the arguments, if any. */
14642
14643 static tree
14644 cp_parser_attribute_list (cp_parser* parser)
14645 {
14646 tree attribute_list = NULL_TREE;
14647 bool save_translate_strings_p = parser->translate_strings_p;
14648
14649 parser->translate_strings_p = false;
14650 while (true)
14651 {
14652 cp_token *token;
14653 tree identifier;
14654 tree attribute;
14655
14656 /* Look for the identifier. We also allow keywords here; for
14657 example `__attribute__ ((const))' is legal. */
14658 token = cp_lexer_peek_token (parser->lexer);
14659 if (token->type == CPP_NAME
14660 || token->type == CPP_KEYWORD)
14661 {
14662 tree arguments = NULL_TREE;
14663
14664 /* Consume the token. */
14665 token = cp_lexer_consume_token (parser->lexer);
14666
14667 /* Save away the identifier that indicates which attribute
14668 this is. */
14669 identifier = token->value;
14670 attribute = build_tree_list (identifier, NULL_TREE);
14671
14672 /* Peek at the next token. */
14673 token = cp_lexer_peek_token (parser->lexer);
14674 /* If it's an `(', then parse the attribute arguments. */
14675 if (token->type == CPP_OPEN_PAREN)
14676 {
14677 arguments = cp_parser_parenthesized_expression_list
14678 (parser, true, /*cast_p=*/false,
14679 /*non_constant_p=*/NULL);
14680 /* Save the arguments away. */
14681 TREE_VALUE (attribute) = arguments;
14682 }
14683
14684 if (arguments != error_mark_node)
14685 {
14686 /* Add this attribute to the list. */
14687 TREE_CHAIN (attribute) = attribute_list;
14688 attribute_list = attribute;
14689 }
14690
14691 token = cp_lexer_peek_token (parser->lexer);
14692 }
14693 /* Now, look for more attributes. If the next token isn't a
14694 `,', we're done. */
14695 if (token->type != CPP_COMMA)
14696 break;
14697
14698 /* Consume the comma and keep going. */
14699 cp_lexer_consume_token (parser->lexer);
14700 }
14701 parser->translate_strings_p = save_translate_strings_p;
14702
14703 /* We built up the list in reverse order. */
14704 return nreverse (attribute_list);
14705 }
14706
14707 /* Parse an optional `__extension__' keyword. Returns TRUE if it is
14708 present, and FALSE otherwise. *SAVED_PEDANTIC is set to the
14709 current value of the PEDANTIC flag, regardless of whether or not
14710 the `__extension__' keyword is present. The caller is responsible
14711 for restoring the value of the PEDANTIC flag. */
14712
14713 static bool
14714 cp_parser_extension_opt (cp_parser* parser, int* saved_pedantic)
14715 {
14716 /* Save the old value of the PEDANTIC flag. */
14717 *saved_pedantic = pedantic;
14718
14719 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_EXTENSION))
14720 {
14721 /* Consume the `__extension__' token. */
14722 cp_lexer_consume_token (parser->lexer);
14723 /* We're not being pedantic while the `__extension__' keyword is
14724 in effect. */
14725 pedantic = 0;
14726
14727 return true;
14728 }
14729
14730 return false;
14731 }
14732
14733 /* Parse a label declaration.
14734
14735 label-declaration:
14736 __label__ label-declarator-seq ;
14737
14738 label-declarator-seq:
14739 identifier , label-declarator-seq
14740 identifier */
14741
14742 static void
14743 cp_parser_label_declaration (cp_parser* parser)
14744 {
14745 /* Look for the `__label__' keyword. */
14746 cp_parser_require_keyword (parser, RID_LABEL, "`__label__'");
14747
14748 while (true)
14749 {
14750 tree identifier;
14751
14752 /* Look for an identifier. */
14753 identifier = cp_parser_identifier (parser);
14754 /* If we failed, stop. */
14755 if (identifier == error_mark_node)
14756 break;
14757 /* Declare it as a label. */
14758 finish_label_decl (identifier);
14759 /* If the next token is a `;', stop. */
14760 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
14761 break;
14762 /* Look for the `,' separating the label declarations. */
14763 cp_parser_require (parser, CPP_COMMA, "`,'");
14764 }
14765
14766 /* Look for the final `;'. */
14767 cp_parser_require (parser, CPP_SEMICOLON, "`;'");
14768 }
14769
14770 /* Support Functions */
14771
14772 /* Looks up NAME in the current scope, as given by PARSER->SCOPE.
14773 NAME should have one of the representations used for an
14774 id-expression. If NAME is the ERROR_MARK_NODE, the ERROR_MARK_NODE
14775 is returned. If PARSER->SCOPE is a dependent type, then a
14776 SCOPE_REF is returned.
14777
14778 If NAME is a TEMPLATE_ID_EXPR, then it will be immediately
14779 returned; the name was already resolved when the TEMPLATE_ID_EXPR
14780 was formed. Abstractly, such entities should not be passed to this
14781 function, because they do not need to be looked up, but it is
14782 simpler to check for this special case here, rather than at the
14783 call-sites.
14784
14785 In cases not explicitly covered above, this function returns a
14786 DECL, OVERLOAD, or baselink representing the result of the lookup.
14787 If there was no entity with the indicated NAME, the ERROR_MARK_NODE
14788 is returned.
14789
14790 If TAG_TYPE is not NONE_TYPE, it indicates an explicit type keyword
14791 (e.g., "struct") that was used. In that case bindings that do not
14792 refer to types are ignored.
14793
14794 If IS_TEMPLATE is TRUE, bindings that do not refer to templates are
14795 ignored.
14796
14797 If IS_NAMESPACE is TRUE, bindings that do not refer to namespaces
14798 are ignored.
14799
14800 If CHECK_DEPENDENCY is TRUE, names are not looked up in dependent
14801 types.
14802
14803 If AMBIGUOUS_DECLS is non-NULL, *AMBIGUOUS_DECLS is set to a
14804 TREE_LIST of candidates if name-lookup results in an ambiguity, and
14805 NULL_TREE otherwise. */
14806
14807 static tree
14808 cp_parser_lookup_name (cp_parser *parser, tree name,
14809 enum tag_types tag_type,
14810 bool is_template,
14811 bool is_namespace,
14812 bool check_dependency,
14813 tree *ambiguous_decls)
14814 {
14815 int flags = 0;
14816 tree decl;
14817 tree object_type = parser->context->object_type;
14818
14819 if (!cp_parser_uncommitted_to_tentative_parse_p (parser))
14820 flags |= LOOKUP_COMPLAIN;
14821
14822 /* Assume that the lookup will be unambiguous. */
14823 if (ambiguous_decls)
14824 *ambiguous_decls = NULL_TREE;
14825
14826 /* Now that we have looked up the name, the OBJECT_TYPE (if any) is
14827 no longer valid. Note that if we are parsing tentatively, and
14828 the parse fails, OBJECT_TYPE will be automatically restored. */
14829 parser->context->object_type = NULL_TREE;
14830
14831 if (name == error_mark_node)
14832 return error_mark_node;
14833
14834 /* A template-id has already been resolved; there is no lookup to
14835 do. */
14836 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
14837 return name;
14838 if (BASELINK_P (name))
14839 {
14840 gcc_assert (TREE_CODE (BASELINK_FUNCTIONS (name))
14841 == TEMPLATE_ID_EXPR);
14842 return name;
14843 }
14844
14845 /* A BIT_NOT_EXPR is used to represent a destructor. By this point,
14846 it should already have been checked to make sure that the name
14847 used matches the type being destroyed. */
14848 if (TREE_CODE (name) == BIT_NOT_EXPR)
14849 {
14850 tree type;
14851
14852 /* Figure out to which type this destructor applies. */
14853 if (parser->scope)
14854 type = parser->scope;
14855 else if (object_type)
14856 type = object_type;
14857 else
14858 type = current_class_type;
14859 /* If that's not a class type, there is no destructor. */
14860 if (!type || !CLASS_TYPE_P (type))
14861 return error_mark_node;
14862 if (CLASSTYPE_LAZY_DESTRUCTOR (type))
14863 lazily_declare_fn (sfk_destructor, type);
14864 if (!CLASSTYPE_DESTRUCTORS (type))
14865 return error_mark_node;
14866 /* If it was a class type, return the destructor. */
14867 return CLASSTYPE_DESTRUCTORS (type);
14868 }
14869
14870 /* By this point, the NAME should be an ordinary identifier. If
14871 the id-expression was a qualified name, the qualifying scope is
14872 stored in PARSER->SCOPE at this point. */
14873 gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE);
14874
14875 /* Perform the lookup. */
14876 if (parser->scope)
14877 {
14878 bool dependent_p;
14879
14880 if (parser->scope == error_mark_node)
14881 return error_mark_node;
14882
14883 /* If the SCOPE is dependent, the lookup must be deferred until
14884 the template is instantiated -- unless we are explicitly
14885 looking up names in uninstantiated templates. Even then, we
14886 cannot look up the name if the scope is not a class type; it
14887 might, for example, be a template type parameter. */
14888 dependent_p = (TYPE_P (parser->scope)
14889 && !(parser->in_declarator_p
14890 && currently_open_class (parser->scope))
14891 && dependent_type_p (parser->scope));
14892 if ((check_dependency || !CLASS_TYPE_P (parser->scope))
14893 && dependent_p)
14894 {
14895 if (tag_type)
14896 {
14897 tree type;
14898
14899 /* The resolution to Core Issue 180 says that `struct
14900 A::B' should be considered a type-name, even if `A'
14901 is dependent. */
14902 type = make_typename_type (parser->scope, name, tag_type,
14903 /*complain=*/tf_error);
14904 decl = TYPE_NAME (type);
14905 }
14906 else if (is_template
14907 && (cp_parser_next_token_ends_template_argument_p (parser)
14908 || cp_lexer_next_token_is (parser->lexer,
14909 CPP_CLOSE_PAREN)))
14910 decl = make_unbound_class_template (parser->scope,
14911 name, NULL_TREE,
14912 /*complain=*/tf_error);
14913 else
14914 decl = build_qualified_name (/*type=*/NULL_TREE,
14915 parser->scope, name,
14916 is_template);
14917 }
14918 else
14919 {
14920 tree pushed_scope = NULL_TREE;
14921
14922 /* If PARSER->SCOPE is a dependent type, then it must be a
14923 class type, and we must not be checking dependencies;
14924 otherwise, we would have processed this lookup above. So
14925 that PARSER->SCOPE is not considered a dependent base by
14926 lookup_member, we must enter the scope here. */
14927 if (dependent_p)
14928 pushed_scope = push_scope (parser->scope);
14929 /* If the PARSER->SCOPE is a template specialization, it
14930 may be instantiated during name lookup. In that case,
14931 errors may be issued. Even if we rollback the current
14932 tentative parse, those errors are valid. */
14933 decl = lookup_qualified_name (parser->scope, name,
14934 tag_type != none_type,
14935 /*complain=*/true);
14936 if (pushed_scope)
14937 pop_scope (pushed_scope);
14938 }
14939 parser->qualifying_scope = parser->scope;
14940 parser->object_scope = NULL_TREE;
14941 }
14942 else if (object_type)
14943 {
14944 tree object_decl = NULL_TREE;
14945 /* Look up the name in the scope of the OBJECT_TYPE, unless the
14946 OBJECT_TYPE is not a class. */
14947 if (CLASS_TYPE_P (object_type))
14948 /* If the OBJECT_TYPE is a template specialization, it may
14949 be instantiated during name lookup. In that case, errors
14950 may be issued. Even if we rollback the current tentative
14951 parse, those errors are valid. */
14952 object_decl = lookup_member (object_type,
14953 name,
14954 /*protect=*/0,
14955 tag_type != none_type);
14956 /* Look it up in the enclosing context, too. */
14957 decl = lookup_name_real (name, tag_type != none_type,
14958 /*nonclass=*/0,
14959 /*block_p=*/true, is_namespace, flags);
14960 parser->object_scope = object_type;
14961 parser->qualifying_scope = NULL_TREE;
14962 if (object_decl)
14963 decl = object_decl;
14964 }
14965 else
14966 {
14967 decl = lookup_name_real (name, tag_type != none_type,
14968 /*nonclass=*/0,
14969 /*block_p=*/true, is_namespace, flags);
14970 parser->qualifying_scope = NULL_TREE;
14971 parser->object_scope = NULL_TREE;
14972 }
14973
14974 /* If the lookup failed, let our caller know. */
14975 if (!decl || decl == error_mark_node)
14976 return error_mark_node;
14977
14978 /* If it's a TREE_LIST, the result of the lookup was ambiguous. */
14979 if (TREE_CODE (decl) == TREE_LIST)
14980 {
14981 if (ambiguous_decls)
14982 *ambiguous_decls = decl;
14983 /* The error message we have to print is too complicated for
14984 cp_parser_error, so we incorporate its actions directly. */
14985 if (!cp_parser_simulate_error (parser))
14986 {
14987 error ("reference to %qD is ambiguous", name);
14988 print_candidates (decl);
14989 }
14990 return error_mark_node;
14991 }
14992
14993 gcc_assert (DECL_P (decl)
14994 || TREE_CODE (decl) == OVERLOAD
14995 || TREE_CODE (decl) == SCOPE_REF
14996 || TREE_CODE (decl) == UNBOUND_CLASS_TEMPLATE
14997 || BASELINK_P (decl));
14998
14999 /* If we have resolved the name of a member declaration, check to
15000 see if the declaration is accessible. When the name resolves to
15001 set of overloaded functions, accessibility is checked when
15002 overload resolution is done.
15003
15004 During an explicit instantiation, access is not checked at all,
15005 as per [temp.explicit]. */
15006 if (DECL_P (decl))
15007 check_accessibility_of_qualified_id (decl, object_type, parser->scope);
15008
15009 return decl;
15010 }
15011
15012 /* Like cp_parser_lookup_name, but for use in the typical case where
15013 CHECK_ACCESS is TRUE, IS_TYPE is FALSE, IS_TEMPLATE is FALSE,
15014 IS_NAMESPACE is FALSE, and CHECK_DEPENDENCY is TRUE. */
15015
15016 static tree
15017 cp_parser_lookup_name_simple (cp_parser* parser, tree name)
15018 {
15019 return cp_parser_lookup_name (parser, name,
15020 none_type,
15021 /*is_template=*/false,
15022 /*is_namespace=*/false,
15023 /*check_dependency=*/true,
15024 /*ambiguous_decls=*/NULL);
15025 }
15026
15027 /* If DECL is a TEMPLATE_DECL that can be treated like a TYPE_DECL in
15028 the current context, return the TYPE_DECL. If TAG_NAME_P is
15029 true, the DECL indicates the class being defined in a class-head,
15030 or declared in an elaborated-type-specifier.
15031
15032 Otherwise, return DECL. */
15033
15034 static tree
15035 cp_parser_maybe_treat_template_as_class (tree decl, bool tag_name_p)
15036 {
15037 /* If the TEMPLATE_DECL is being declared as part of a class-head,
15038 the translation from TEMPLATE_DECL to TYPE_DECL occurs:
15039
15040 struct A {
15041 template <typename T> struct B;
15042 };
15043
15044 template <typename T> struct A::B {};
15045
15046 Similarly, in an elaborated-type-specifier:
15047
15048 namespace N { struct X{}; }
15049
15050 struct A {
15051 template <typename T> friend struct N::X;
15052 };
15053
15054 However, if the DECL refers to a class type, and we are in
15055 the scope of the class, then the name lookup automatically
15056 finds the TYPE_DECL created by build_self_reference rather
15057 than a TEMPLATE_DECL. For example, in:
15058
15059 template <class T> struct S {
15060 S s;
15061 };
15062
15063 there is no need to handle such case. */
15064
15065 if (DECL_CLASS_TEMPLATE_P (decl) && tag_name_p)
15066 return DECL_TEMPLATE_RESULT (decl);
15067
15068 return decl;
15069 }
15070
15071 /* If too many, or too few, template-parameter lists apply to the
15072 declarator, issue an error message. Returns TRUE if all went well,
15073 and FALSE otherwise. */
15074
15075 static bool
15076 cp_parser_check_declarator_template_parameters (cp_parser* parser,
15077 cp_declarator *declarator)
15078 {
15079 unsigned num_templates;
15080
15081 /* We haven't seen any classes that involve template parameters yet. */
15082 num_templates = 0;
15083
15084 switch (declarator->kind)
15085 {
15086 case cdk_id:
15087 if (declarator->u.id.qualifying_scope)
15088 {
15089 tree scope;
15090 tree member;
15091
15092 scope = declarator->u.id.qualifying_scope;
15093 member = declarator->u.id.unqualified_name;
15094
15095 while (scope && CLASS_TYPE_P (scope))
15096 {
15097 /* You're supposed to have one `template <...>'
15098 for every template class, but you don't need one
15099 for a full specialization. For example:
15100
15101 template <class T> struct S{};
15102 template <> struct S<int> { void f(); };
15103 void S<int>::f () {}
15104
15105 is correct; there shouldn't be a `template <>' for
15106 the definition of `S<int>::f'. */
15107 if (CLASSTYPE_TEMPLATE_INFO (scope)
15108 && (CLASSTYPE_TEMPLATE_INSTANTIATION (scope)
15109 || uses_template_parms (CLASSTYPE_TI_ARGS (scope)))
15110 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (scope)))
15111 ++num_templates;
15112
15113 scope = TYPE_CONTEXT (scope);
15114 }
15115 }
15116 else if (TREE_CODE (declarator->u.id.unqualified_name)
15117 == TEMPLATE_ID_EXPR)
15118 /* If the DECLARATOR has the form `X<y>' then it uses one
15119 additional level of template parameters. */
15120 ++num_templates;
15121
15122 return cp_parser_check_template_parameters (parser,
15123 num_templates);
15124
15125 case cdk_function:
15126 case cdk_array:
15127 case cdk_pointer:
15128 case cdk_reference:
15129 case cdk_ptrmem:
15130 return (cp_parser_check_declarator_template_parameters
15131 (parser, declarator->declarator));
15132
15133 case cdk_error:
15134 return true;
15135
15136 default:
15137 gcc_unreachable ();
15138 }
15139 return false;
15140 }
15141
15142 /* NUM_TEMPLATES were used in the current declaration. If that is
15143 invalid, return FALSE and issue an error messages. Otherwise,
15144 return TRUE. */
15145
15146 static bool
15147 cp_parser_check_template_parameters (cp_parser* parser,
15148 unsigned num_templates)
15149 {
15150 /* If there are more template classes than parameter lists, we have
15151 something like:
15152
15153 template <class T> void S<T>::R<T>::f (); */
15154 if (parser->num_template_parameter_lists < num_templates)
15155 {
15156 error ("too few template-parameter-lists");
15157 return false;
15158 }
15159 /* If there are the same number of template classes and parameter
15160 lists, that's OK. */
15161 if (parser->num_template_parameter_lists == num_templates)
15162 return true;
15163 /* If there are more, but only one more, then we are referring to a
15164 member template. That's OK too. */
15165 if (parser->num_template_parameter_lists == num_templates + 1)
15166 return true;
15167 /* Otherwise, there are too many template parameter lists. We have
15168 something like:
15169
15170 template <class T> template <class U> void S::f(); */
15171 error ("too many template-parameter-lists");
15172 return false;
15173 }
15174
15175 /* Parse an optional `::' token indicating that the following name is
15176 from the global namespace. If so, PARSER->SCOPE is set to the
15177 GLOBAL_NAMESPACE. Otherwise, PARSER->SCOPE is set to NULL_TREE,
15178 unless CURRENT_SCOPE_VALID_P is TRUE, in which case it is left alone.
15179 Returns the new value of PARSER->SCOPE, if the `::' token is
15180 present, and NULL_TREE otherwise. */
15181
15182 static tree
15183 cp_parser_global_scope_opt (cp_parser* parser, bool current_scope_valid_p)
15184 {
15185 cp_token *token;
15186
15187 /* Peek at the next token. */
15188 token = cp_lexer_peek_token (parser->lexer);
15189 /* If we're looking at a `::' token then we're starting from the
15190 global namespace, not our current location. */
15191 if (token->type == CPP_SCOPE)
15192 {
15193 /* Consume the `::' token. */
15194 cp_lexer_consume_token (parser->lexer);
15195 /* Set the SCOPE so that we know where to start the lookup. */
15196 parser->scope = global_namespace;
15197 parser->qualifying_scope = global_namespace;
15198 parser->object_scope = NULL_TREE;
15199
15200 return parser->scope;
15201 }
15202 else if (!current_scope_valid_p)
15203 {
15204 parser->scope = NULL_TREE;
15205 parser->qualifying_scope = NULL_TREE;
15206 parser->object_scope = NULL_TREE;
15207 }
15208
15209 return NULL_TREE;
15210 }
15211
15212 /* Returns TRUE if the upcoming token sequence is the start of a
15213 constructor declarator. If FRIEND_P is true, the declarator is
15214 preceded by the `friend' specifier. */
15215
15216 static bool
15217 cp_parser_constructor_declarator_p (cp_parser *parser, bool friend_p)
15218 {
15219 bool constructor_p;
15220 tree type_decl = NULL_TREE;
15221 bool nested_name_p;
15222 cp_token *next_token;
15223
15224 /* The common case is that this is not a constructor declarator, so
15225 try to avoid doing lots of work if at all possible. It's not
15226 valid declare a constructor at function scope. */
15227 if (at_function_scope_p ())
15228 return false;
15229 /* And only certain tokens can begin a constructor declarator. */
15230 next_token = cp_lexer_peek_token (parser->lexer);
15231 if (next_token->type != CPP_NAME
15232 && next_token->type != CPP_SCOPE
15233 && next_token->type != CPP_NESTED_NAME_SPECIFIER
15234 && next_token->type != CPP_TEMPLATE_ID)
15235 return false;
15236
15237 /* Parse tentatively; we are going to roll back all of the tokens
15238 consumed here. */
15239 cp_parser_parse_tentatively (parser);
15240 /* Assume that we are looking at a constructor declarator. */
15241 constructor_p = true;
15242
15243 /* Look for the optional `::' operator. */
15244 cp_parser_global_scope_opt (parser,
15245 /*current_scope_valid_p=*/false);
15246 /* Look for the nested-name-specifier. */
15247 nested_name_p
15248 = (cp_parser_nested_name_specifier_opt (parser,
15249 /*typename_keyword_p=*/false,
15250 /*check_dependency_p=*/false,
15251 /*type_p=*/false,
15252 /*is_declaration=*/false)
15253 != NULL_TREE);
15254 /* Outside of a class-specifier, there must be a
15255 nested-name-specifier. */
15256 if (!nested_name_p &&
15257 (!at_class_scope_p () || !TYPE_BEING_DEFINED (current_class_type)
15258 || friend_p))
15259 constructor_p = false;
15260 /* If we still think that this might be a constructor-declarator,
15261 look for a class-name. */
15262 if (constructor_p)
15263 {
15264 /* If we have:
15265
15266 template <typename T> struct S { S(); };
15267 template <typename T> S<T>::S ();
15268
15269 we must recognize that the nested `S' names a class.
15270 Similarly, for:
15271
15272 template <typename T> S<T>::S<T> ();
15273
15274 we must recognize that the nested `S' names a template. */
15275 type_decl = cp_parser_class_name (parser,
15276 /*typename_keyword_p=*/false,
15277 /*template_keyword_p=*/false,
15278 none_type,
15279 /*check_dependency_p=*/false,
15280 /*class_head_p=*/false,
15281 /*is_declaration=*/false);
15282 /* If there was no class-name, then this is not a constructor. */
15283 constructor_p = !cp_parser_error_occurred (parser);
15284 }
15285
15286 /* If we're still considering a constructor, we have to see a `(',
15287 to begin the parameter-declaration-clause, followed by either a
15288 `)', an `...', or a decl-specifier. We need to check for a
15289 type-specifier to avoid being fooled into thinking that:
15290
15291 S::S (f) (int);
15292
15293 is a constructor. (It is actually a function named `f' that
15294 takes one parameter (of type `int') and returns a value of type
15295 `S::S'. */
15296 if (constructor_p
15297 && cp_parser_require (parser, CPP_OPEN_PAREN, "`('"))
15298 {
15299 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN)
15300 && cp_lexer_next_token_is_not (parser->lexer, CPP_ELLIPSIS)
15301 /* A parameter declaration begins with a decl-specifier,
15302 which is either the "attribute" keyword, a storage class
15303 specifier, or (usually) a type-specifier. */
15304 && !cp_lexer_next_token_is_keyword (parser->lexer, RID_ATTRIBUTE)
15305 && !cp_parser_storage_class_specifier_opt (parser))
15306 {
15307 tree type;
15308 tree pushed_scope = NULL_TREE;
15309 unsigned saved_num_template_parameter_lists;
15310
15311 /* Names appearing in the type-specifier should be looked up
15312 in the scope of the class. */
15313 if (current_class_type)
15314 type = NULL_TREE;
15315 else
15316 {
15317 type = TREE_TYPE (type_decl);
15318 if (TREE_CODE (type) == TYPENAME_TYPE)
15319 {
15320 type = resolve_typename_type (type,
15321 /*only_current_p=*/false);
15322 if (type == error_mark_node)
15323 {
15324 cp_parser_abort_tentative_parse (parser);
15325 return false;
15326 }
15327 }
15328 pushed_scope = push_scope (type);
15329 }
15330
15331 /* Inside the constructor parameter list, surrounding
15332 template-parameter-lists do not apply. */
15333 saved_num_template_parameter_lists
15334 = parser->num_template_parameter_lists;
15335 parser->num_template_parameter_lists = 0;
15336
15337 /* Look for the type-specifier. */
15338 cp_parser_type_specifier (parser,
15339 CP_PARSER_FLAGS_NONE,
15340 /*decl_specs=*/NULL,
15341 /*is_declarator=*/true,
15342 /*declares_class_or_enum=*/NULL,
15343 /*is_cv_qualifier=*/NULL);
15344
15345 parser->num_template_parameter_lists
15346 = saved_num_template_parameter_lists;
15347
15348 /* Leave the scope of the class. */
15349 if (pushed_scope)
15350 pop_scope (pushed_scope);
15351
15352 constructor_p = !cp_parser_error_occurred (parser);
15353 }
15354 }
15355 else
15356 constructor_p = false;
15357 /* We did not really want to consume any tokens. */
15358 cp_parser_abort_tentative_parse (parser);
15359
15360 return constructor_p;
15361 }
15362
15363 /* Parse the definition of the function given by the DECL_SPECIFIERS,
15364 ATTRIBUTES, and DECLARATOR. The access checks have been deferred;
15365 they must be performed once we are in the scope of the function.
15366
15367 Returns the function defined. */
15368
15369 static tree
15370 cp_parser_function_definition_from_specifiers_and_declarator
15371 (cp_parser* parser,
15372 cp_decl_specifier_seq *decl_specifiers,
15373 tree attributes,
15374 const cp_declarator *declarator)
15375 {
15376 tree fn;
15377 bool success_p;
15378
15379 /* Begin the function-definition. */
15380 success_p = start_function (decl_specifiers, declarator, attributes);
15381
15382 /* The things we're about to see are not directly qualified by any
15383 template headers we've seen thus far. */
15384 reset_specialization ();
15385
15386 /* If there were names looked up in the decl-specifier-seq that we
15387 did not check, check them now. We must wait until we are in the
15388 scope of the function to perform the checks, since the function
15389 might be a friend. */
15390 perform_deferred_access_checks ();
15391
15392 if (!success_p)
15393 {
15394 /* Skip the entire function. */
15395 cp_parser_skip_to_end_of_block_or_statement (parser);
15396 fn = error_mark_node;
15397 }
15398 else
15399 fn = cp_parser_function_definition_after_declarator (parser,
15400 /*inline_p=*/false);
15401
15402 return fn;
15403 }
15404
15405 /* Parse the part of a function-definition that follows the
15406 declarator. INLINE_P is TRUE iff this function is an inline
15407 function defined with a class-specifier.
15408
15409 Returns the function defined. */
15410
15411 static tree
15412 cp_parser_function_definition_after_declarator (cp_parser* parser,
15413 bool inline_p)
15414 {
15415 tree fn;
15416 bool ctor_initializer_p = false;
15417 bool saved_in_unbraced_linkage_specification_p;
15418 unsigned saved_num_template_parameter_lists;
15419
15420 /* If the next token is `return', then the code may be trying to
15421 make use of the "named return value" extension that G++ used to
15422 support. */
15423 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_RETURN))
15424 {
15425 /* Consume the `return' keyword. */
15426 cp_lexer_consume_token (parser->lexer);
15427 /* Look for the identifier that indicates what value is to be
15428 returned. */
15429 cp_parser_identifier (parser);
15430 /* Issue an error message. */
15431 error ("named return values are no longer supported");
15432 /* Skip tokens until we reach the start of the function body. */
15433 while (true)
15434 {
15435 cp_token *token = cp_lexer_peek_token (parser->lexer);
15436 if (token->type == CPP_OPEN_BRACE
15437 || token->type == CPP_EOF
15438 || token->type == CPP_PRAGMA_EOL)
15439 break;
15440 cp_lexer_consume_token (parser->lexer);
15441 }
15442 }
15443 /* The `extern' in `extern "C" void f () { ... }' does not apply to
15444 anything declared inside `f'. */
15445 saved_in_unbraced_linkage_specification_p
15446 = parser->in_unbraced_linkage_specification_p;
15447 parser->in_unbraced_linkage_specification_p = false;
15448 /* Inside the function, surrounding template-parameter-lists do not
15449 apply. */
15450 saved_num_template_parameter_lists
15451 = parser->num_template_parameter_lists;
15452 parser->num_template_parameter_lists = 0;
15453 /* If the next token is `try', then we are looking at a
15454 function-try-block. */
15455 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TRY))
15456 ctor_initializer_p = cp_parser_function_try_block (parser);
15457 /* A function-try-block includes the function-body, so we only do
15458 this next part if we're not processing a function-try-block. */
15459 else
15460 ctor_initializer_p
15461 = cp_parser_ctor_initializer_opt_and_function_body (parser);
15462
15463 /* Finish the function. */
15464 fn = finish_function ((ctor_initializer_p ? 1 : 0) |
15465 (inline_p ? 2 : 0));
15466 /* Generate code for it, if necessary. */
15467 expand_or_defer_fn (fn);
15468 /* Restore the saved values. */
15469 parser->in_unbraced_linkage_specification_p
15470 = saved_in_unbraced_linkage_specification_p;
15471 parser->num_template_parameter_lists
15472 = saved_num_template_parameter_lists;
15473
15474 return fn;
15475 }
15476
15477 /* Parse a template-declaration, assuming that the `export' (and
15478 `extern') keywords, if present, has already been scanned. MEMBER_P
15479 is as for cp_parser_template_declaration. */
15480
15481 static void
15482 cp_parser_template_declaration_after_export (cp_parser* parser, bool member_p)
15483 {
15484 tree decl = NULL_TREE;
15485 tree checks;
15486 tree parameter_list;
15487 bool friend_p = false;
15488 bool need_lang_pop;
15489
15490 /* Look for the `template' keyword. */
15491 if (!cp_parser_require_keyword (parser, RID_TEMPLATE, "`template'"))
15492 return;
15493
15494 /* And the `<'. */
15495 if (!cp_parser_require (parser, CPP_LESS, "`<'"))
15496 return;
15497 /* [temp]
15498
15499 A template ... shall not have C linkage. */
15500 if (current_lang_name == lang_name_c)
15501 {
15502 error ("template with C linkage");
15503 /* Give it C++ linkage to avoid confusing other parts of the
15504 front end. */
15505 push_lang_context (lang_name_cplusplus);
15506 need_lang_pop = true;
15507 }
15508 else
15509 need_lang_pop = false;
15510
15511 /* We cannot perform access checks on the template parameter
15512 declarations until we know what is being declared, just as we
15513 cannot check the decl-specifier list. */
15514 push_deferring_access_checks (dk_deferred);
15515
15516 /* If the next token is `>', then we have an invalid
15517 specialization. Rather than complain about an invalid template
15518 parameter, issue an error message here. */
15519 if (cp_lexer_next_token_is (parser->lexer, CPP_GREATER))
15520 {
15521 cp_parser_error (parser, "invalid explicit specialization");
15522 begin_specialization ();
15523 parameter_list = NULL_TREE;
15524 }
15525 else
15526 /* Parse the template parameters. */
15527 parameter_list = cp_parser_template_parameter_list (parser);
15528
15529 /* Get the deferred access checks from the parameter list. These
15530 will be checked once we know what is being declared, as for a
15531 member template the checks must be performed in the scope of the
15532 class containing the member. */
15533 checks = get_deferred_access_checks ();
15534
15535 /* Look for the `>'. */
15536 cp_parser_skip_to_end_of_template_parameter_list (parser);
15537 /* We just processed one more parameter list. */
15538 ++parser->num_template_parameter_lists;
15539 /* If the next token is `template', there are more template
15540 parameters. */
15541 if (cp_lexer_next_token_is_keyword (parser->lexer,
15542 RID_TEMPLATE))
15543 cp_parser_template_declaration_after_export (parser, member_p);
15544 else
15545 {
15546 /* There are no access checks when parsing a template, as we do not
15547 know if a specialization will be a friend. */
15548 push_deferring_access_checks (dk_no_check);
15549 decl = cp_parser_single_declaration (parser,
15550 checks,
15551 member_p,
15552 &friend_p);
15553 pop_deferring_access_checks ();
15554
15555 /* If this is a member template declaration, let the front
15556 end know. */
15557 if (member_p && !friend_p && decl)
15558 {
15559 if (TREE_CODE (decl) == TYPE_DECL)
15560 cp_parser_check_access_in_redeclaration (decl);
15561
15562 decl = finish_member_template_decl (decl);
15563 }
15564 else if (friend_p && decl && TREE_CODE (decl) == TYPE_DECL)
15565 make_friend_class (current_class_type, TREE_TYPE (decl),
15566 /*complain=*/true);
15567 }
15568 /* We are done with the current parameter list. */
15569 --parser->num_template_parameter_lists;
15570
15571 pop_deferring_access_checks ();
15572
15573 /* Finish up. */
15574 finish_template_decl (parameter_list);
15575
15576 /* Register member declarations. */
15577 if (member_p && !friend_p && decl && !DECL_CLASS_TEMPLATE_P (decl))
15578 finish_member_declaration (decl);
15579 /* For the erroneous case of a template with C linkage, we pushed an
15580 implicit C++ linkage scope; exit that scope now. */
15581 if (need_lang_pop)
15582 pop_lang_context ();
15583 /* If DECL is a function template, we must return to parse it later.
15584 (Even though there is no definition, there might be default
15585 arguments that need handling.) */
15586 if (member_p && decl
15587 && (TREE_CODE (decl) == FUNCTION_DECL
15588 || DECL_FUNCTION_TEMPLATE_P (decl)))
15589 TREE_VALUE (parser->unparsed_functions_queues)
15590 = tree_cons (NULL_TREE, decl,
15591 TREE_VALUE (parser->unparsed_functions_queues));
15592 }
15593
15594 /* Perform the deferred access checks from a template-parameter-list.
15595 CHECKS is a TREE_LIST of access checks, as returned by
15596 get_deferred_access_checks. */
15597
15598 static void
15599 cp_parser_perform_template_parameter_access_checks (tree checks)
15600 {
15601 ++processing_template_parmlist;
15602 perform_access_checks (checks);
15603 --processing_template_parmlist;
15604 }
15605
15606 /* Parse a `decl-specifier-seq [opt] init-declarator [opt] ;' or
15607 `function-definition' sequence. MEMBER_P is true, this declaration
15608 appears in a class scope.
15609
15610 Returns the DECL for the declared entity. If FRIEND_P is non-NULL,
15611 *FRIEND_P is set to TRUE iff the declaration is a friend. */
15612
15613 static tree
15614 cp_parser_single_declaration (cp_parser* parser,
15615 tree checks,
15616 bool member_p,
15617 bool* friend_p)
15618 {
15619 int declares_class_or_enum;
15620 tree decl = NULL_TREE;
15621 cp_decl_specifier_seq decl_specifiers;
15622 bool function_definition_p = false;
15623
15624 /* This function is only used when processing a template
15625 declaration. */
15626 gcc_assert (innermost_scope_kind () == sk_template_parms
15627 || innermost_scope_kind () == sk_template_spec);
15628
15629 /* Defer access checks until we know what is being declared. */
15630 push_deferring_access_checks (dk_deferred);
15631
15632 /* Try the `decl-specifier-seq [opt] init-declarator [opt]'
15633 alternative. */
15634 cp_parser_decl_specifier_seq (parser,
15635 CP_PARSER_FLAGS_OPTIONAL,
15636 &decl_specifiers,
15637 &declares_class_or_enum);
15638 if (friend_p)
15639 *friend_p = cp_parser_friend_p (&decl_specifiers);
15640
15641 /* There are no template typedefs. */
15642 if (decl_specifiers.specs[(int) ds_typedef])
15643 {
15644 error ("template declaration of %qs", "typedef");
15645 decl = error_mark_node;
15646 }
15647
15648 /* Gather up the access checks that occurred the
15649 decl-specifier-seq. */
15650 stop_deferring_access_checks ();
15651
15652 /* Check for the declaration of a template class. */
15653 if (declares_class_or_enum)
15654 {
15655 if (cp_parser_declares_only_class_p (parser))
15656 {
15657 decl = shadow_tag (&decl_specifiers);
15658
15659 /* In this case:
15660
15661 struct C {
15662 friend template <typename T> struct A<T>::B;
15663 };
15664
15665 A<T>::B will be represented by a TYPENAME_TYPE, and
15666 therefore not recognized by shadow_tag. */
15667 if (friend_p && *friend_p
15668 && !decl
15669 && decl_specifiers.type
15670 && TYPE_P (decl_specifiers.type))
15671 decl = decl_specifiers.type;
15672
15673 if (decl && decl != error_mark_node)
15674 decl = TYPE_NAME (decl);
15675 else
15676 decl = error_mark_node;
15677
15678 /* Perform access checks for template parameters. */
15679 cp_parser_perform_template_parameter_access_checks (checks);
15680 }
15681 }
15682 /* If it's not a template class, try for a template function. If
15683 the next token is a `;', then this declaration does not declare
15684 anything. But, if there were errors in the decl-specifiers, then
15685 the error might well have come from an attempted class-specifier.
15686 In that case, there's no need to warn about a missing declarator. */
15687 if (!decl
15688 && (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON)
15689 || decl_specifiers.type != error_mark_node))
15690 decl = cp_parser_init_declarator (parser,
15691 &decl_specifiers,
15692 checks,
15693 /*function_definition_allowed_p=*/true,
15694 member_p,
15695 declares_class_or_enum,
15696 &function_definition_p);
15697
15698 pop_deferring_access_checks ();
15699
15700 /* Clear any current qualification; whatever comes next is the start
15701 of something new. */
15702 parser->scope = NULL_TREE;
15703 parser->qualifying_scope = NULL_TREE;
15704 parser->object_scope = NULL_TREE;
15705 /* Look for a trailing `;' after the declaration. */
15706 if (!function_definition_p
15707 && (decl == error_mark_node
15708 || !cp_parser_require (parser, CPP_SEMICOLON, "`;'")))
15709 cp_parser_skip_to_end_of_block_or_statement (parser);
15710
15711 return decl;
15712 }
15713
15714 /* Parse a cast-expression that is not the operand of a unary "&". */
15715
15716 static tree
15717 cp_parser_simple_cast_expression (cp_parser *parser)
15718 {
15719 return cp_parser_cast_expression (parser, /*address_p=*/false,
15720 /*cast_p=*/false);
15721 }
15722
15723 /* Parse a functional cast to TYPE. Returns an expression
15724 representing the cast. */
15725
15726 static tree
15727 cp_parser_functional_cast (cp_parser* parser, tree type)
15728 {
15729 tree expression_list;
15730 tree cast;
15731
15732 expression_list
15733 = cp_parser_parenthesized_expression_list (parser, false,
15734 /*cast_p=*/true,
15735 /*non_constant_p=*/NULL);
15736
15737 cast = build_functional_cast (type, expression_list);
15738 /* [expr.const]/1: In an integral constant expression "only type
15739 conversions to integral or enumeration type can be used". */
15740 if (TREE_CODE (type) == TYPE_DECL)
15741 type = TREE_TYPE (type);
15742 if (cast != error_mark_node
15743 && !cast_valid_in_integral_constant_expression_p (type)
15744 && (cp_parser_non_integral_constant_expression
15745 (parser, "a call to a constructor")))
15746 return error_mark_node;
15747 return cast;
15748 }
15749
15750 /* Save the tokens that make up the body of a member function defined
15751 in a class-specifier. The DECL_SPECIFIERS and DECLARATOR have
15752 already been parsed. The ATTRIBUTES are any GNU "__attribute__"
15753 specifiers applied to the declaration. Returns the FUNCTION_DECL
15754 for the member function. */
15755
15756 static tree
15757 cp_parser_save_member_function_body (cp_parser* parser,
15758 cp_decl_specifier_seq *decl_specifiers,
15759 cp_declarator *declarator,
15760 tree attributes)
15761 {
15762 cp_token *first;
15763 cp_token *last;
15764 tree fn;
15765
15766 /* Create the function-declaration. */
15767 fn = start_method (decl_specifiers, declarator, attributes);
15768 /* If something went badly wrong, bail out now. */
15769 if (fn == error_mark_node)
15770 {
15771 /* If there's a function-body, skip it. */
15772 if (cp_parser_token_starts_function_definition_p
15773 (cp_lexer_peek_token (parser->lexer)))
15774 cp_parser_skip_to_end_of_block_or_statement (parser);
15775 return error_mark_node;
15776 }
15777
15778 /* Remember it, if there default args to post process. */
15779 cp_parser_save_default_args (parser, fn);
15780
15781 /* Save away the tokens that make up the body of the
15782 function. */
15783 first = parser->lexer->next_token;
15784 cp_parser_cache_group (parser, CPP_CLOSE_BRACE, /*depth=*/0);
15785 /* Handle function try blocks. */
15786 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_CATCH))
15787 cp_parser_cache_group (parser, CPP_CLOSE_BRACE, /*depth=*/0);
15788 last = parser->lexer->next_token;
15789
15790 /* Save away the inline definition; we will process it when the
15791 class is complete. */
15792 DECL_PENDING_INLINE_INFO (fn) = cp_token_cache_new (first, last);
15793 DECL_PENDING_INLINE_P (fn) = 1;
15794
15795 /* We need to know that this was defined in the class, so that
15796 friend templates are handled correctly. */
15797 DECL_INITIALIZED_IN_CLASS_P (fn) = 1;
15798
15799 /* We're done with the inline definition. */
15800 finish_method (fn);
15801
15802 /* Add FN to the queue of functions to be parsed later. */
15803 TREE_VALUE (parser->unparsed_functions_queues)
15804 = tree_cons (NULL_TREE, fn,
15805 TREE_VALUE (parser->unparsed_functions_queues));
15806
15807 return fn;
15808 }
15809
15810 /* Parse a template-argument-list, as well as the trailing ">" (but
15811 not the opening ">"). See cp_parser_template_argument_list for the
15812 return value. */
15813
15814 static tree
15815 cp_parser_enclosed_template_argument_list (cp_parser* parser)
15816 {
15817 tree arguments;
15818 tree saved_scope;
15819 tree saved_qualifying_scope;
15820 tree saved_object_scope;
15821 bool saved_greater_than_is_operator_p;
15822 bool saved_skip_evaluation;
15823
15824 /* [temp.names]
15825
15826 When parsing a template-id, the first non-nested `>' is taken as
15827 the end of the template-argument-list rather than a greater-than
15828 operator. */
15829 saved_greater_than_is_operator_p
15830 = parser->greater_than_is_operator_p;
15831 parser->greater_than_is_operator_p = false;
15832 /* Parsing the argument list may modify SCOPE, so we save it
15833 here. */
15834 saved_scope = parser->scope;
15835 saved_qualifying_scope = parser->qualifying_scope;
15836 saved_object_scope = parser->object_scope;
15837 /* We need to evaluate the template arguments, even though this
15838 template-id may be nested within a "sizeof". */
15839 saved_skip_evaluation = skip_evaluation;
15840 skip_evaluation = false;
15841 /* Parse the template-argument-list itself. */
15842 if (cp_lexer_next_token_is (parser->lexer, CPP_GREATER))
15843 arguments = NULL_TREE;
15844 else
15845 arguments = cp_parser_template_argument_list (parser);
15846 /* Look for the `>' that ends the template-argument-list. If we find
15847 a '>>' instead, it's probably just a typo. */
15848 if (cp_lexer_next_token_is (parser->lexer, CPP_RSHIFT))
15849 {
15850 if (!saved_greater_than_is_operator_p)
15851 {
15852 /* If we're in a nested template argument list, the '>>' has
15853 to be a typo for '> >'. We emit the error message, but we
15854 continue parsing and we push a '>' as next token, so that
15855 the argument list will be parsed correctly. Note that the
15856 global source location is still on the token before the
15857 '>>', so we need to say explicitly where we want it. */
15858 cp_token *token = cp_lexer_peek_token (parser->lexer);
15859 error ("%H%<>>%> should be %<> >%> "
15860 "within a nested template argument list",
15861 &token->location);
15862
15863 /* ??? Proper recovery should terminate two levels of
15864 template argument list here. */
15865 token->type = CPP_GREATER;
15866 }
15867 else
15868 {
15869 /* If this is not a nested template argument list, the '>>'
15870 is a typo for '>'. Emit an error message and continue.
15871 Same deal about the token location, but here we can get it
15872 right by consuming the '>>' before issuing the diagnostic. */
15873 cp_lexer_consume_token (parser->lexer);
15874 error ("spurious %<>>%>, use %<>%> to terminate "
15875 "a template argument list");
15876 }
15877 }
15878 else
15879 cp_parser_skip_to_end_of_template_parameter_list (parser);
15880 /* The `>' token might be a greater-than operator again now. */
15881 parser->greater_than_is_operator_p
15882 = saved_greater_than_is_operator_p;
15883 /* Restore the SAVED_SCOPE. */
15884 parser->scope = saved_scope;
15885 parser->qualifying_scope = saved_qualifying_scope;
15886 parser->object_scope = saved_object_scope;
15887 skip_evaluation = saved_skip_evaluation;
15888
15889 return arguments;
15890 }
15891
15892 /* MEMBER_FUNCTION is a member function, or a friend. If default
15893 arguments, or the body of the function have not yet been parsed,
15894 parse them now. */
15895
15896 static void
15897 cp_parser_late_parsing_for_member (cp_parser* parser, tree member_function)
15898 {
15899 /* If this member is a template, get the underlying
15900 FUNCTION_DECL. */
15901 if (DECL_FUNCTION_TEMPLATE_P (member_function))
15902 member_function = DECL_TEMPLATE_RESULT (member_function);
15903
15904 /* There should not be any class definitions in progress at this
15905 point; the bodies of members are only parsed outside of all class
15906 definitions. */
15907 gcc_assert (parser->num_classes_being_defined == 0);
15908 /* While we're parsing the member functions we might encounter more
15909 classes. We want to handle them right away, but we don't want
15910 them getting mixed up with functions that are currently in the
15911 queue. */
15912 parser->unparsed_functions_queues
15913 = tree_cons (NULL_TREE, NULL_TREE, parser->unparsed_functions_queues);
15914
15915 /* Make sure that any template parameters are in scope. */
15916 maybe_begin_member_template_processing (member_function);
15917
15918 /* If the body of the function has not yet been parsed, parse it
15919 now. */
15920 if (DECL_PENDING_INLINE_P (member_function))
15921 {
15922 tree function_scope;
15923 cp_token_cache *tokens;
15924
15925 /* The function is no longer pending; we are processing it. */
15926 tokens = DECL_PENDING_INLINE_INFO (member_function);
15927 DECL_PENDING_INLINE_INFO (member_function) = NULL;
15928 DECL_PENDING_INLINE_P (member_function) = 0;
15929
15930 /* If this is a local class, enter the scope of the containing
15931 function. */
15932 function_scope = current_function_decl;
15933 if (function_scope)
15934 push_function_context_to (function_scope);
15935
15936
15937 /* Push the body of the function onto the lexer stack. */
15938 cp_parser_push_lexer_for_tokens (parser, tokens);
15939
15940 /* Let the front end know that we going to be defining this
15941 function. */
15942 start_preparsed_function (member_function, NULL_TREE,
15943 SF_PRE_PARSED | SF_INCLASS_INLINE);
15944
15945 /* Don't do access checking if it is a templated function. */
15946 if (processing_template_decl)
15947 push_deferring_access_checks (dk_no_check);
15948
15949 /* Now, parse the body of the function. */
15950 cp_parser_function_definition_after_declarator (parser,
15951 /*inline_p=*/true);
15952
15953 if (processing_template_decl)
15954 pop_deferring_access_checks ();
15955
15956 /* Leave the scope of the containing function. */
15957 if (function_scope)
15958 pop_function_context_from (function_scope);
15959 cp_parser_pop_lexer (parser);
15960 }
15961
15962 /* Remove any template parameters from the symbol table. */
15963 maybe_end_member_template_processing ();
15964
15965 /* Restore the queue. */
15966 parser->unparsed_functions_queues
15967 = TREE_CHAIN (parser->unparsed_functions_queues);
15968 }
15969
15970 /* If DECL contains any default args, remember it on the unparsed
15971 functions queue. */
15972
15973 static void
15974 cp_parser_save_default_args (cp_parser* parser, tree decl)
15975 {
15976 tree probe;
15977
15978 for (probe = TYPE_ARG_TYPES (TREE_TYPE (decl));
15979 probe;
15980 probe = TREE_CHAIN (probe))
15981 if (TREE_PURPOSE (probe))
15982 {
15983 TREE_PURPOSE (parser->unparsed_functions_queues)
15984 = tree_cons (current_class_type, decl,
15985 TREE_PURPOSE (parser->unparsed_functions_queues));
15986 break;
15987 }
15988 }
15989
15990 /* FN is a FUNCTION_DECL which may contains a parameter with an
15991 unparsed DEFAULT_ARG. Parse the default args now. This function
15992 assumes that the current scope is the scope in which the default
15993 argument should be processed. */
15994
15995 static void
15996 cp_parser_late_parsing_default_args (cp_parser *parser, tree fn)
15997 {
15998 bool saved_local_variables_forbidden_p;
15999 tree parm;
16000
16001 /* While we're parsing the default args, we might (due to the
16002 statement expression extension) encounter more classes. We want
16003 to handle them right away, but we don't want them getting mixed
16004 up with default args that are currently in the queue. */
16005 parser->unparsed_functions_queues
16006 = tree_cons (NULL_TREE, NULL_TREE, parser->unparsed_functions_queues);
16007
16008 /* Local variable names (and the `this' keyword) may not appear
16009 in a default argument. */
16010 saved_local_variables_forbidden_p = parser->local_variables_forbidden_p;
16011 parser->local_variables_forbidden_p = true;
16012
16013 for (parm = TYPE_ARG_TYPES (TREE_TYPE (fn));
16014 parm;
16015 parm = TREE_CHAIN (parm))
16016 {
16017 cp_token_cache *tokens;
16018 tree default_arg = TREE_PURPOSE (parm);
16019 tree parsed_arg;
16020 VEC(tree,gc) *insts;
16021 tree copy;
16022 unsigned ix;
16023
16024 if (!default_arg)
16025 continue;
16026
16027 if (TREE_CODE (default_arg) != DEFAULT_ARG)
16028 /* This can happen for a friend declaration for a function
16029 already declared with default arguments. */
16030 continue;
16031
16032 /* Push the saved tokens for the default argument onto the parser's
16033 lexer stack. */
16034 tokens = DEFARG_TOKENS (default_arg);
16035 cp_parser_push_lexer_for_tokens (parser, tokens);
16036
16037 /* Parse the assignment-expression. */
16038 parsed_arg = cp_parser_assignment_expression (parser, /*cast_p=*/false);
16039
16040 if (!processing_template_decl)
16041 parsed_arg = check_default_argument (TREE_VALUE (parm), parsed_arg);
16042
16043 TREE_PURPOSE (parm) = parsed_arg;
16044
16045 /* Update any instantiations we've already created. */
16046 for (insts = DEFARG_INSTANTIATIONS (default_arg), ix = 0;
16047 VEC_iterate (tree, insts, ix, copy); ix++)
16048 TREE_PURPOSE (copy) = parsed_arg;
16049
16050 /* If the token stream has not been completely used up, then
16051 there was extra junk after the end of the default
16052 argument. */
16053 if (!cp_lexer_next_token_is (parser->lexer, CPP_EOF))
16054 cp_parser_error (parser, "expected %<,%>");
16055
16056 /* Revert to the main lexer. */
16057 cp_parser_pop_lexer (parser);
16058 }
16059
16060 /* Make sure no default arg is missing. */
16061 check_default_args (fn);
16062
16063 /* Restore the state of local_variables_forbidden_p. */
16064 parser->local_variables_forbidden_p = saved_local_variables_forbidden_p;
16065
16066 /* Restore the queue. */
16067 parser->unparsed_functions_queues
16068 = TREE_CHAIN (parser->unparsed_functions_queues);
16069 }
16070
16071 /* Parse the operand of `sizeof' (or a similar operator). Returns
16072 either a TYPE or an expression, depending on the form of the
16073 input. The KEYWORD indicates which kind of expression we have
16074 encountered. */
16075
16076 static tree
16077 cp_parser_sizeof_operand (cp_parser* parser, enum rid keyword)
16078 {
16079 static const char *format;
16080 tree expr = NULL_TREE;
16081 const char *saved_message;
16082 bool saved_integral_constant_expression_p;
16083 bool saved_non_integral_constant_expression_p;
16084
16085 /* Initialize FORMAT the first time we get here. */
16086 if (!format)
16087 format = "types may not be defined in '%s' expressions";
16088
16089 /* Types cannot be defined in a `sizeof' expression. Save away the
16090 old message. */
16091 saved_message = parser->type_definition_forbidden_message;
16092 /* And create the new one. */
16093 parser->type_definition_forbidden_message
16094 = XNEWVEC (const char, strlen (format)
16095 + strlen (IDENTIFIER_POINTER (ridpointers[keyword]))
16096 + 1 /* `\0' */);
16097 sprintf ((char *) parser->type_definition_forbidden_message,
16098 format, IDENTIFIER_POINTER (ridpointers[keyword]));
16099
16100 /* The restrictions on constant-expressions do not apply inside
16101 sizeof expressions. */
16102 saved_integral_constant_expression_p
16103 = parser->integral_constant_expression_p;
16104 saved_non_integral_constant_expression_p
16105 = parser->non_integral_constant_expression_p;
16106 parser->integral_constant_expression_p = false;
16107
16108 /* Do not actually evaluate the expression. */
16109 ++skip_evaluation;
16110 /* If it's a `(', then we might be looking at the type-id
16111 construction. */
16112 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
16113 {
16114 tree type;
16115 bool saved_in_type_id_in_expr_p;
16116
16117 /* We can't be sure yet whether we're looking at a type-id or an
16118 expression. */
16119 cp_parser_parse_tentatively (parser);
16120 /* Consume the `('. */
16121 cp_lexer_consume_token (parser->lexer);
16122 /* Parse the type-id. */
16123 saved_in_type_id_in_expr_p = parser->in_type_id_in_expr_p;
16124 parser->in_type_id_in_expr_p = true;
16125 type = cp_parser_type_id (parser);
16126 parser->in_type_id_in_expr_p = saved_in_type_id_in_expr_p;
16127 /* Now, look for the trailing `)'. */
16128 cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
16129 /* If all went well, then we're done. */
16130 if (cp_parser_parse_definitely (parser))
16131 {
16132 cp_decl_specifier_seq decl_specs;
16133
16134 /* Build a trivial decl-specifier-seq. */
16135 clear_decl_specs (&decl_specs);
16136 decl_specs.type = type;
16137
16138 /* Call grokdeclarator to figure out what type this is. */
16139 expr = grokdeclarator (NULL,
16140 &decl_specs,
16141 TYPENAME,
16142 /*initialized=*/0,
16143 /*attrlist=*/NULL);
16144 }
16145 }
16146
16147 /* If the type-id production did not work out, then we must be
16148 looking at the unary-expression production. */
16149 if (!expr)
16150 expr = cp_parser_unary_expression (parser, /*address_p=*/false,
16151 /*cast_p=*/false);
16152 /* Go back to evaluating expressions. */
16153 --skip_evaluation;
16154
16155 /* Free the message we created. */
16156 free ((char *) parser->type_definition_forbidden_message);
16157 /* And restore the old one. */
16158 parser->type_definition_forbidden_message = saved_message;
16159 parser->integral_constant_expression_p
16160 = saved_integral_constant_expression_p;
16161 parser->non_integral_constant_expression_p
16162 = saved_non_integral_constant_expression_p;
16163
16164 return expr;
16165 }
16166
16167 /* If the current declaration has no declarator, return true. */
16168
16169 static bool
16170 cp_parser_declares_only_class_p (cp_parser *parser)
16171 {
16172 /* If the next token is a `;' or a `,' then there is no
16173 declarator. */
16174 return (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON)
16175 || cp_lexer_next_token_is (parser->lexer, CPP_COMMA));
16176 }
16177
16178 /* Update the DECL_SPECS to reflect the storage class indicated by
16179 KEYWORD. */
16180
16181 static void
16182 cp_parser_set_storage_class (cp_parser *parser,
16183 cp_decl_specifier_seq *decl_specs,
16184 enum rid keyword)
16185 {
16186 cp_storage_class storage_class;
16187
16188 if (parser->in_unbraced_linkage_specification_p)
16189 {
16190 error ("invalid use of %qD in linkage specification",
16191 ridpointers[keyword]);
16192 return;
16193 }
16194 else if (decl_specs->storage_class != sc_none)
16195 {
16196 decl_specs->multiple_storage_classes_p = true;
16197 return;
16198 }
16199
16200 if ((keyword == RID_EXTERN || keyword == RID_STATIC)
16201 && decl_specs->specs[(int) ds_thread])
16202 {
16203 error ("%<__thread%> before %qD", ridpointers[keyword]);
16204 decl_specs->specs[(int) ds_thread] = 0;
16205 }
16206
16207 switch (keyword)
16208 {
16209 case RID_AUTO:
16210 storage_class = sc_auto;
16211 break;
16212 case RID_REGISTER:
16213 storage_class = sc_register;
16214 break;
16215 case RID_STATIC:
16216 storage_class = sc_static;
16217 break;
16218 case RID_EXTERN:
16219 storage_class = sc_extern;
16220 break;
16221 case RID_MUTABLE:
16222 storage_class = sc_mutable;
16223 break;
16224 default:
16225 gcc_unreachable ();
16226 }
16227 decl_specs->storage_class = storage_class;
16228 }
16229
16230 /* Update the DECL_SPECS to reflect the TYPE_SPEC. If USER_DEFINED_P
16231 is true, the type is a user-defined type; otherwise it is a
16232 built-in type specified by a keyword. */
16233
16234 static void
16235 cp_parser_set_decl_spec_type (cp_decl_specifier_seq *decl_specs,
16236 tree type_spec,
16237 bool user_defined_p)
16238 {
16239 decl_specs->any_specifiers_p = true;
16240
16241 /* If the user tries to redeclare bool or wchar_t (with, for
16242 example, in "typedef int wchar_t;") we remember that this is what
16243 happened. In system headers, we ignore these declarations so
16244 that G++ can work with system headers that are not C++-safe. */
16245 if (decl_specs->specs[(int) ds_typedef]
16246 && !user_defined_p
16247 && (type_spec == boolean_type_node
16248 || type_spec == wchar_type_node)
16249 && (decl_specs->type
16250 || decl_specs->specs[(int) ds_long]
16251 || decl_specs->specs[(int) ds_short]
16252 || decl_specs->specs[(int) ds_unsigned]
16253 || decl_specs->specs[(int) ds_signed]))
16254 {
16255 decl_specs->redefined_builtin_type = type_spec;
16256 if (!decl_specs->type)
16257 {
16258 decl_specs->type = type_spec;
16259 decl_specs->user_defined_type_p = false;
16260 }
16261 }
16262 else if (decl_specs->type)
16263 decl_specs->multiple_types_p = true;
16264 else
16265 {
16266 decl_specs->type = type_spec;
16267 decl_specs->user_defined_type_p = user_defined_p;
16268 decl_specs->redefined_builtin_type = NULL_TREE;
16269 }
16270 }
16271
16272 /* DECL_SPECIFIERS is the representation of a decl-specifier-seq.
16273 Returns TRUE iff `friend' appears among the DECL_SPECIFIERS. */
16274
16275 static bool
16276 cp_parser_friend_p (const cp_decl_specifier_seq *decl_specifiers)
16277 {
16278 return decl_specifiers->specs[(int) ds_friend] != 0;
16279 }
16280
16281 /* If the next token is of the indicated TYPE, consume it. Otherwise,
16282 issue an error message indicating that TOKEN_DESC was expected.
16283
16284 Returns the token consumed, if the token had the appropriate type.
16285 Otherwise, returns NULL. */
16286
16287 static cp_token *
16288 cp_parser_require (cp_parser* parser,
16289 enum cpp_ttype type,
16290 const char* token_desc)
16291 {
16292 if (cp_lexer_next_token_is (parser->lexer, type))
16293 return cp_lexer_consume_token (parser->lexer);
16294 else
16295 {
16296 /* Output the MESSAGE -- unless we're parsing tentatively. */
16297 if (!cp_parser_simulate_error (parser))
16298 {
16299 char *message = concat ("expected ", token_desc, NULL);
16300 cp_parser_error (parser, message);
16301 free (message);
16302 }
16303 return NULL;
16304 }
16305 }
16306
16307 /* An error message is produced if the next token is not '>'.
16308 All further tokens are skipped until the desired token is
16309 found or '{', '}', ';' or an unbalanced ')' or ']'. */
16310
16311 static void
16312 cp_parser_skip_to_end_of_template_parameter_list (cp_parser* parser)
16313 {
16314 /* Current level of '< ... >'. */
16315 unsigned level = 0;
16316 /* Ignore '<' and '>' nested inside '( ... )' or '[ ... ]'. */
16317 unsigned nesting_depth = 0;
16318
16319 /* Are we ready, yet? If not, issue error message. */
16320 if (cp_parser_require (parser, CPP_GREATER, "%<>%>"))
16321 return;
16322
16323 /* Skip tokens until the desired token is found. */
16324 while (true)
16325 {
16326 /* Peek at the next token. */
16327 switch (cp_lexer_peek_token (parser->lexer)->type)
16328 {
16329 case CPP_LESS:
16330 if (!nesting_depth)
16331 ++level;
16332 break;
16333
16334 case CPP_GREATER:
16335 if (!nesting_depth && level-- == 0)
16336 {
16337 /* We've reached the token we want, consume it and stop. */
16338 cp_lexer_consume_token (parser->lexer);
16339 return;
16340 }
16341 break;
16342
16343 case CPP_OPEN_PAREN:
16344 case CPP_OPEN_SQUARE:
16345 ++nesting_depth;
16346 break;
16347
16348 case CPP_CLOSE_PAREN:
16349 case CPP_CLOSE_SQUARE:
16350 if (nesting_depth-- == 0)
16351 return;
16352 break;
16353
16354 case CPP_EOF:
16355 case CPP_PRAGMA_EOL:
16356 case CPP_SEMICOLON:
16357 case CPP_OPEN_BRACE:
16358 case CPP_CLOSE_BRACE:
16359 /* The '>' was probably forgotten, don't look further. */
16360 return;
16361
16362 default:
16363 break;
16364 }
16365
16366 /* Consume this token. */
16367 cp_lexer_consume_token (parser->lexer);
16368 }
16369 }
16370
16371 /* If the next token is the indicated keyword, consume it. Otherwise,
16372 issue an error message indicating that TOKEN_DESC was expected.
16373
16374 Returns the token consumed, if the token had the appropriate type.
16375 Otherwise, returns NULL. */
16376
16377 static cp_token *
16378 cp_parser_require_keyword (cp_parser* parser,
16379 enum rid keyword,
16380 const char* token_desc)
16381 {
16382 cp_token *token = cp_parser_require (parser, CPP_KEYWORD, token_desc);
16383
16384 if (token && token->keyword != keyword)
16385 {
16386 dyn_string_t error_msg;
16387
16388 /* Format the error message. */
16389 error_msg = dyn_string_new (0);
16390 dyn_string_append_cstr (error_msg, "expected ");
16391 dyn_string_append_cstr (error_msg, token_desc);
16392 cp_parser_error (parser, error_msg->s);
16393 dyn_string_delete (error_msg);
16394 return NULL;
16395 }
16396
16397 return token;
16398 }
16399
16400 /* Returns TRUE iff TOKEN is a token that can begin the body of a
16401 function-definition. */
16402
16403 static bool
16404 cp_parser_token_starts_function_definition_p (cp_token* token)
16405 {
16406 return (/* An ordinary function-body begins with an `{'. */
16407 token->type == CPP_OPEN_BRACE
16408 /* A ctor-initializer begins with a `:'. */
16409 || token->type == CPP_COLON
16410 /* A function-try-block begins with `try'. */
16411 || token->keyword == RID_TRY
16412 /* The named return value extension begins with `return'. */
16413 || token->keyword == RID_RETURN);
16414 }
16415
16416 /* Returns TRUE iff the next token is the ":" or "{" beginning a class
16417 definition. */
16418
16419 static bool
16420 cp_parser_next_token_starts_class_definition_p (cp_parser *parser)
16421 {
16422 cp_token *token;
16423
16424 token = cp_lexer_peek_token (parser->lexer);
16425 return (token->type == CPP_OPEN_BRACE || token->type == CPP_COLON);
16426 }
16427
16428 /* Returns TRUE iff the next token is the "," or ">" ending a
16429 template-argument. */
16430
16431 static bool
16432 cp_parser_next_token_ends_template_argument_p (cp_parser *parser)
16433 {
16434 cp_token *token;
16435
16436 token = cp_lexer_peek_token (parser->lexer);
16437 return (token->type == CPP_COMMA || token->type == CPP_GREATER);
16438 }
16439
16440 /* Returns TRUE iff the n-th token is a "<", or the n-th is a "[" and the
16441 (n+1)-th is a ":" (which is a possible digraph typo for "< ::"). */
16442
16443 static bool
16444 cp_parser_nth_token_starts_template_argument_list_p (cp_parser * parser,
16445 size_t n)
16446 {
16447 cp_token *token;
16448
16449 token = cp_lexer_peek_nth_token (parser->lexer, n);
16450 if (token->type == CPP_LESS)
16451 return true;
16452 /* Check for the sequence `<::' in the original code. It would be lexed as
16453 `[:', where `[' is a digraph, and there is no whitespace before
16454 `:'. */
16455 if (token->type == CPP_OPEN_SQUARE && token->flags & DIGRAPH)
16456 {
16457 cp_token *token2;
16458 token2 = cp_lexer_peek_nth_token (parser->lexer, n+1);
16459 if (token2->type == CPP_COLON && !(token2->flags & PREV_WHITE))
16460 return true;
16461 }
16462 return false;
16463 }
16464
16465 /* Returns the kind of tag indicated by TOKEN, if it is a class-key,
16466 or none_type otherwise. */
16467
16468 static enum tag_types
16469 cp_parser_token_is_class_key (cp_token* token)
16470 {
16471 switch (token->keyword)
16472 {
16473 case RID_CLASS:
16474 return class_type;
16475 case RID_STRUCT:
16476 return record_type;
16477 case RID_UNION:
16478 return union_type;
16479
16480 default:
16481 return none_type;
16482 }
16483 }
16484
16485 /* Issue an error message if the CLASS_KEY does not match the TYPE. */
16486
16487 static void
16488 cp_parser_check_class_key (enum tag_types class_key, tree type)
16489 {
16490 if ((TREE_CODE (type) == UNION_TYPE) != (class_key == union_type))
16491 pedwarn ("%qs tag used in naming %q#T",
16492 class_key == union_type ? "union"
16493 : class_key == record_type ? "struct" : "class",
16494 type);
16495 }
16496
16497 /* Issue an error message if DECL is redeclared with different
16498 access than its original declaration [class.access.spec/3].
16499 This applies to nested classes and nested class templates.
16500 [class.mem/1]. */
16501
16502 static void
16503 cp_parser_check_access_in_redeclaration (tree decl)
16504 {
16505 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
16506 return;
16507
16508 if ((TREE_PRIVATE (decl)
16509 != (current_access_specifier == access_private_node))
16510 || (TREE_PROTECTED (decl)
16511 != (current_access_specifier == access_protected_node)))
16512 error ("%qD redeclared with different access", decl);
16513 }
16514
16515 /* Look for the `template' keyword, as a syntactic disambiguator.
16516 Return TRUE iff it is present, in which case it will be
16517 consumed. */
16518
16519 static bool
16520 cp_parser_optional_template_keyword (cp_parser *parser)
16521 {
16522 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_TEMPLATE))
16523 {
16524 /* The `template' keyword can only be used within templates;
16525 outside templates the parser can always figure out what is a
16526 template and what is not. */
16527 if (!processing_template_decl)
16528 {
16529 error ("%<template%> (as a disambiguator) is only allowed "
16530 "within templates");
16531 /* If this part of the token stream is rescanned, the same
16532 error message would be generated. So, we purge the token
16533 from the stream. */
16534 cp_lexer_purge_token (parser->lexer);
16535 return false;
16536 }
16537 else
16538 {
16539 /* Consume the `template' keyword. */
16540 cp_lexer_consume_token (parser->lexer);
16541 return true;
16542 }
16543 }
16544
16545 return false;
16546 }
16547
16548 /* The next token is a CPP_NESTED_NAME_SPECIFIER. Consume the token,
16549 set PARSER->SCOPE, and perform other related actions. */
16550
16551 static void
16552 cp_parser_pre_parsed_nested_name_specifier (cp_parser *parser)
16553 {
16554 tree value;
16555 tree check;
16556
16557 /* Get the stored value. */
16558 value = cp_lexer_consume_token (parser->lexer)->value;
16559 /* Perform any access checks that were deferred. */
16560 for (check = TREE_PURPOSE (value); check; check = TREE_CHAIN (check))
16561 perform_or_defer_access_check (TREE_PURPOSE (check), TREE_VALUE (check));
16562 /* Set the scope from the stored value. */
16563 parser->scope = TREE_VALUE (value);
16564 parser->qualifying_scope = TREE_TYPE (value);
16565 parser->object_scope = NULL_TREE;
16566 }
16567
16568 /* Consume tokens up through a non-nested END token. */
16569
16570 static void
16571 cp_parser_cache_group (cp_parser *parser,
16572 enum cpp_ttype end,
16573 unsigned depth)
16574 {
16575 while (true)
16576 {
16577 cp_token *token;
16578
16579 /* Abort a parenthesized expression if we encounter a brace. */
16580 if ((end == CPP_CLOSE_PAREN || depth == 0)
16581 && cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
16582 return;
16583 /* If we've reached the end of the file, stop. */
16584 if (cp_lexer_next_token_is (parser->lexer, CPP_EOF)
16585 || (end != CPP_PRAGMA_EOL
16586 && cp_lexer_next_token_is (parser->lexer, CPP_PRAGMA_EOL)))
16587 return;
16588 /* Consume the next token. */
16589 token = cp_lexer_consume_token (parser->lexer);
16590 /* See if it starts a new group. */
16591 if (token->type == CPP_OPEN_BRACE)
16592 {
16593 cp_parser_cache_group (parser, CPP_CLOSE_BRACE, depth + 1);
16594 if (depth == 0)
16595 return;
16596 }
16597 else if (token->type == CPP_OPEN_PAREN)
16598 cp_parser_cache_group (parser, CPP_CLOSE_PAREN, depth + 1);
16599 else if (token->type == CPP_PRAGMA)
16600 cp_parser_cache_group (parser, CPP_PRAGMA_EOL, depth + 1);
16601 else if (token->type == end)
16602 return;
16603 }
16604 }
16605
16606 /* Begin parsing tentatively. We always save tokens while parsing
16607 tentatively so that if the tentative parsing fails we can restore the
16608 tokens. */
16609
16610 static void
16611 cp_parser_parse_tentatively (cp_parser* parser)
16612 {
16613 /* Enter a new parsing context. */
16614 parser->context = cp_parser_context_new (parser->context);
16615 /* Begin saving tokens. */
16616 cp_lexer_save_tokens (parser->lexer);
16617 /* In order to avoid repetitive access control error messages,
16618 access checks are queued up until we are no longer parsing
16619 tentatively. */
16620 push_deferring_access_checks (dk_deferred);
16621 }
16622
16623 /* Commit to the currently active tentative parse. */
16624
16625 static void
16626 cp_parser_commit_to_tentative_parse (cp_parser* parser)
16627 {
16628 cp_parser_context *context;
16629 cp_lexer *lexer;
16630
16631 /* Mark all of the levels as committed. */
16632 lexer = parser->lexer;
16633 for (context = parser->context; context->next; context = context->next)
16634 {
16635 if (context->status == CP_PARSER_STATUS_KIND_COMMITTED)
16636 break;
16637 context->status = CP_PARSER_STATUS_KIND_COMMITTED;
16638 while (!cp_lexer_saving_tokens (lexer))
16639 lexer = lexer->next;
16640 cp_lexer_commit_tokens (lexer);
16641 }
16642 }
16643
16644 /* Abort the currently active tentative parse. All consumed tokens
16645 will be rolled back, and no diagnostics will be issued. */
16646
16647 static void
16648 cp_parser_abort_tentative_parse (cp_parser* parser)
16649 {
16650 cp_parser_simulate_error (parser);
16651 /* Now, pretend that we want to see if the construct was
16652 successfully parsed. */
16653 cp_parser_parse_definitely (parser);
16654 }
16655
16656 /* Stop parsing tentatively. If a parse error has occurred, restore the
16657 token stream. Otherwise, commit to the tokens we have consumed.
16658 Returns true if no error occurred; false otherwise. */
16659
16660 static bool
16661 cp_parser_parse_definitely (cp_parser* parser)
16662 {
16663 bool error_occurred;
16664 cp_parser_context *context;
16665
16666 /* Remember whether or not an error occurred, since we are about to
16667 destroy that information. */
16668 error_occurred = cp_parser_error_occurred (parser);
16669 /* Remove the topmost context from the stack. */
16670 context = parser->context;
16671 parser->context = context->next;
16672 /* If no parse errors occurred, commit to the tentative parse. */
16673 if (!error_occurred)
16674 {
16675 /* Commit to the tokens read tentatively, unless that was
16676 already done. */
16677 if (context->status != CP_PARSER_STATUS_KIND_COMMITTED)
16678 cp_lexer_commit_tokens (parser->lexer);
16679
16680 pop_to_parent_deferring_access_checks ();
16681 }
16682 /* Otherwise, if errors occurred, roll back our state so that things
16683 are just as they were before we began the tentative parse. */
16684 else
16685 {
16686 cp_lexer_rollback_tokens (parser->lexer);
16687 pop_deferring_access_checks ();
16688 }
16689 /* Add the context to the front of the free list. */
16690 context->next = cp_parser_context_free_list;
16691 cp_parser_context_free_list = context;
16692
16693 return !error_occurred;
16694 }
16695
16696 /* Returns true if we are parsing tentatively and are not committed to
16697 this tentative parse. */
16698
16699 static bool
16700 cp_parser_uncommitted_to_tentative_parse_p (cp_parser* parser)
16701 {
16702 return (cp_parser_parsing_tentatively (parser)
16703 && parser->context->status != CP_PARSER_STATUS_KIND_COMMITTED);
16704 }
16705
16706 /* Returns nonzero iff an error has occurred during the most recent
16707 tentative parse. */
16708
16709 static bool
16710 cp_parser_error_occurred (cp_parser* parser)
16711 {
16712 return (cp_parser_parsing_tentatively (parser)
16713 && parser->context->status == CP_PARSER_STATUS_KIND_ERROR);
16714 }
16715
16716 /* Returns nonzero if GNU extensions are allowed. */
16717
16718 static bool
16719 cp_parser_allow_gnu_extensions_p (cp_parser* parser)
16720 {
16721 return parser->allow_gnu_extensions_p;
16722 }
16723 \f
16724 /* Objective-C++ Productions */
16725
16726
16727 /* Parse an Objective-C expression, which feeds into a primary-expression
16728 above.
16729
16730 objc-expression:
16731 objc-message-expression
16732 objc-string-literal
16733 objc-encode-expression
16734 objc-protocol-expression
16735 objc-selector-expression
16736
16737 Returns a tree representation of the expression. */
16738
16739 static tree
16740 cp_parser_objc_expression (cp_parser* parser)
16741 {
16742 /* Try to figure out what kind of declaration is present. */
16743 cp_token *kwd = cp_lexer_peek_token (parser->lexer);
16744
16745 switch (kwd->type)
16746 {
16747 case CPP_OPEN_SQUARE:
16748 return cp_parser_objc_message_expression (parser);
16749
16750 case CPP_OBJC_STRING:
16751 kwd = cp_lexer_consume_token (parser->lexer);
16752 return objc_build_string_object (kwd->value);
16753
16754 case CPP_KEYWORD:
16755 switch (kwd->keyword)
16756 {
16757 case RID_AT_ENCODE:
16758 return cp_parser_objc_encode_expression (parser);
16759
16760 case RID_AT_PROTOCOL:
16761 return cp_parser_objc_protocol_expression (parser);
16762
16763 case RID_AT_SELECTOR:
16764 return cp_parser_objc_selector_expression (parser);
16765
16766 default:
16767 break;
16768 }
16769 default:
16770 error ("misplaced %<@%D%> Objective-C++ construct", kwd->value);
16771 cp_parser_skip_to_end_of_block_or_statement (parser);
16772 }
16773
16774 return error_mark_node;
16775 }
16776
16777 /* Parse an Objective-C message expression.
16778
16779 objc-message-expression:
16780 [ objc-message-receiver objc-message-args ]
16781
16782 Returns a representation of an Objective-C message. */
16783
16784 static tree
16785 cp_parser_objc_message_expression (cp_parser* parser)
16786 {
16787 tree receiver, messageargs;
16788
16789 cp_lexer_consume_token (parser->lexer); /* Eat '['. */
16790 receiver = cp_parser_objc_message_receiver (parser);
16791 messageargs = cp_parser_objc_message_args (parser);
16792 cp_parser_require (parser, CPP_CLOSE_SQUARE, "`]'");
16793
16794 return objc_build_message_expr (build_tree_list (receiver, messageargs));
16795 }
16796
16797 /* Parse an objc-message-receiver.
16798
16799 objc-message-receiver:
16800 expression
16801 simple-type-specifier
16802
16803 Returns a representation of the type or expression. */
16804
16805 static tree
16806 cp_parser_objc_message_receiver (cp_parser* parser)
16807 {
16808 tree rcv;
16809
16810 /* An Objective-C message receiver may be either (1) a type
16811 or (2) an expression. */
16812 cp_parser_parse_tentatively (parser);
16813 rcv = cp_parser_expression (parser, false);
16814
16815 if (cp_parser_parse_definitely (parser))
16816 return rcv;
16817
16818 rcv = cp_parser_simple_type_specifier (parser,
16819 /*decl_specs=*/NULL,
16820 CP_PARSER_FLAGS_NONE);
16821
16822 return objc_get_class_reference (rcv);
16823 }
16824
16825 /* Parse the arguments and selectors comprising an Objective-C message.
16826
16827 objc-message-args:
16828 objc-selector
16829 objc-selector-args
16830 objc-selector-args , objc-comma-args
16831
16832 objc-selector-args:
16833 objc-selector [opt] : assignment-expression
16834 objc-selector-args objc-selector [opt] : assignment-expression
16835
16836 objc-comma-args:
16837 assignment-expression
16838 objc-comma-args , assignment-expression
16839
16840 Returns a TREE_LIST, with TREE_PURPOSE containing a list of
16841 selector arguments and TREE_VALUE containing a list of comma
16842 arguments. */
16843
16844 static tree
16845 cp_parser_objc_message_args (cp_parser* parser)
16846 {
16847 tree sel_args = NULL_TREE, addl_args = NULL_TREE;
16848 bool maybe_unary_selector_p = true;
16849 cp_token *token = cp_lexer_peek_token (parser->lexer);
16850
16851 while (cp_parser_objc_selector_p (token->type) || token->type == CPP_COLON)
16852 {
16853 tree selector = NULL_TREE, arg;
16854
16855 if (token->type != CPP_COLON)
16856 selector = cp_parser_objc_selector (parser);
16857
16858 /* Detect if we have a unary selector. */
16859 if (maybe_unary_selector_p
16860 && cp_lexer_next_token_is_not (parser->lexer, CPP_COLON))
16861 return build_tree_list (selector, NULL_TREE);
16862
16863 maybe_unary_selector_p = false;
16864 cp_parser_require (parser, CPP_COLON, "`:'");
16865 arg = cp_parser_assignment_expression (parser, false);
16866
16867 sel_args
16868 = chainon (sel_args,
16869 build_tree_list (selector, arg));
16870
16871 token = cp_lexer_peek_token (parser->lexer);
16872 }
16873
16874 /* Handle non-selector arguments, if any. */
16875 while (token->type == CPP_COMMA)
16876 {
16877 tree arg;
16878
16879 cp_lexer_consume_token (parser->lexer);
16880 arg = cp_parser_assignment_expression (parser, false);
16881
16882 addl_args
16883 = chainon (addl_args,
16884 build_tree_list (NULL_TREE, arg));
16885
16886 token = cp_lexer_peek_token (parser->lexer);
16887 }
16888
16889 return build_tree_list (sel_args, addl_args);
16890 }
16891
16892 /* Parse an Objective-C encode expression.
16893
16894 objc-encode-expression:
16895 @encode objc-typename
16896
16897 Returns an encoded representation of the type argument. */
16898
16899 static tree
16900 cp_parser_objc_encode_expression (cp_parser* parser)
16901 {
16902 tree type;
16903
16904 cp_lexer_consume_token (parser->lexer); /* Eat '@encode'. */
16905 cp_parser_require (parser, CPP_OPEN_PAREN, "`('");
16906 type = complete_type (cp_parser_type_id (parser));
16907 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
16908
16909 if (!type)
16910 {
16911 error ("%<@encode%> must specify a type as an argument");
16912 return error_mark_node;
16913 }
16914
16915 return objc_build_encode_expr (type);
16916 }
16917
16918 /* Parse an Objective-C @defs expression. */
16919
16920 static tree
16921 cp_parser_objc_defs_expression (cp_parser *parser)
16922 {
16923 tree name;
16924
16925 cp_lexer_consume_token (parser->lexer); /* Eat '@defs'. */
16926 cp_parser_require (parser, CPP_OPEN_PAREN, "`('");
16927 name = cp_parser_identifier (parser);
16928 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
16929
16930 return objc_get_class_ivars (name);
16931 }
16932
16933 /* Parse an Objective-C protocol expression.
16934
16935 objc-protocol-expression:
16936 @protocol ( identifier )
16937
16938 Returns a representation of the protocol expression. */
16939
16940 static tree
16941 cp_parser_objc_protocol_expression (cp_parser* parser)
16942 {
16943 tree proto;
16944
16945 cp_lexer_consume_token (parser->lexer); /* Eat '@protocol'. */
16946 cp_parser_require (parser, CPP_OPEN_PAREN, "`('");
16947 proto = cp_parser_identifier (parser);
16948 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
16949
16950 return objc_build_protocol_expr (proto);
16951 }
16952
16953 /* Parse an Objective-C selector expression.
16954
16955 objc-selector-expression:
16956 @selector ( objc-method-signature )
16957
16958 objc-method-signature:
16959 objc-selector
16960 objc-selector-seq
16961
16962 objc-selector-seq:
16963 objc-selector :
16964 objc-selector-seq objc-selector :
16965
16966 Returns a representation of the method selector. */
16967
16968 static tree
16969 cp_parser_objc_selector_expression (cp_parser* parser)
16970 {
16971 tree sel_seq = NULL_TREE;
16972 bool maybe_unary_selector_p = true;
16973 cp_token *token;
16974
16975 cp_lexer_consume_token (parser->lexer); /* Eat '@selector'. */
16976 cp_parser_require (parser, CPP_OPEN_PAREN, "`('");
16977 token = cp_lexer_peek_token (parser->lexer);
16978
16979 while (cp_parser_objc_selector_p (token->type) || token->type == CPP_COLON
16980 || token->type == CPP_SCOPE)
16981 {
16982 tree selector = NULL_TREE;
16983
16984 if (token->type != CPP_COLON
16985 || token->type == CPP_SCOPE)
16986 selector = cp_parser_objc_selector (parser);
16987
16988 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COLON)
16989 && cp_lexer_next_token_is_not (parser->lexer, CPP_SCOPE))
16990 {
16991 /* Detect if we have a unary selector. */
16992 if (maybe_unary_selector_p)
16993 {
16994 sel_seq = selector;
16995 goto finish_selector;
16996 }
16997 else
16998 {
16999 cp_parser_error (parser, "expected %<:%>");
17000 }
17001 }
17002 maybe_unary_selector_p = false;
17003 token = cp_lexer_consume_token (parser->lexer);
17004
17005 if (token->type == CPP_SCOPE)
17006 {
17007 sel_seq
17008 = chainon (sel_seq,
17009 build_tree_list (selector, NULL_TREE));
17010 sel_seq
17011 = chainon (sel_seq,
17012 build_tree_list (NULL_TREE, NULL_TREE));
17013 }
17014 else
17015 sel_seq
17016 = chainon (sel_seq,
17017 build_tree_list (selector, NULL_TREE));
17018
17019 token = cp_lexer_peek_token (parser->lexer);
17020 }
17021
17022 finish_selector:
17023 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
17024
17025 return objc_build_selector_expr (sel_seq);
17026 }
17027
17028 /* Parse a list of identifiers.
17029
17030 objc-identifier-list:
17031 identifier
17032 objc-identifier-list , identifier
17033
17034 Returns a TREE_LIST of identifier nodes. */
17035
17036 static tree
17037 cp_parser_objc_identifier_list (cp_parser* parser)
17038 {
17039 tree list = build_tree_list (NULL_TREE, cp_parser_identifier (parser));
17040 cp_token *sep = cp_lexer_peek_token (parser->lexer);
17041
17042 while (sep->type == CPP_COMMA)
17043 {
17044 cp_lexer_consume_token (parser->lexer); /* Eat ','. */
17045 list = chainon (list,
17046 build_tree_list (NULL_TREE,
17047 cp_parser_identifier (parser)));
17048 sep = cp_lexer_peek_token (parser->lexer);
17049 }
17050
17051 return list;
17052 }
17053
17054 /* Parse an Objective-C alias declaration.
17055
17056 objc-alias-declaration:
17057 @compatibility_alias identifier identifier ;
17058
17059 This function registers the alias mapping with the Objective-C front-end.
17060 It returns nothing. */
17061
17062 static void
17063 cp_parser_objc_alias_declaration (cp_parser* parser)
17064 {
17065 tree alias, orig;
17066
17067 cp_lexer_consume_token (parser->lexer); /* Eat '@compatibility_alias'. */
17068 alias = cp_parser_identifier (parser);
17069 orig = cp_parser_identifier (parser);
17070 objc_declare_alias (alias, orig);
17071 cp_parser_consume_semicolon_at_end_of_statement (parser);
17072 }
17073
17074 /* Parse an Objective-C class forward-declaration.
17075
17076 objc-class-declaration:
17077 @class objc-identifier-list ;
17078
17079 The function registers the forward declarations with the Objective-C
17080 front-end. It returns nothing. */
17081
17082 static void
17083 cp_parser_objc_class_declaration (cp_parser* parser)
17084 {
17085 cp_lexer_consume_token (parser->lexer); /* Eat '@class'. */
17086 objc_declare_class (cp_parser_objc_identifier_list (parser));
17087 cp_parser_consume_semicolon_at_end_of_statement (parser);
17088 }
17089
17090 /* Parse a list of Objective-C protocol references.
17091
17092 objc-protocol-refs-opt:
17093 objc-protocol-refs [opt]
17094
17095 objc-protocol-refs:
17096 < objc-identifier-list >
17097
17098 Returns a TREE_LIST of identifiers, if any. */
17099
17100 static tree
17101 cp_parser_objc_protocol_refs_opt (cp_parser* parser)
17102 {
17103 tree protorefs = NULL_TREE;
17104
17105 if(cp_lexer_next_token_is (parser->lexer, CPP_LESS))
17106 {
17107 cp_lexer_consume_token (parser->lexer); /* Eat '<'. */
17108 protorefs = cp_parser_objc_identifier_list (parser);
17109 cp_parser_require (parser, CPP_GREATER, "`>'");
17110 }
17111
17112 return protorefs;
17113 }
17114
17115 /* Parse a Objective-C visibility specification. */
17116
17117 static void
17118 cp_parser_objc_visibility_spec (cp_parser* parser)
17119 {
17120 cp_token *vis = cp_lexer_peek_token (parser->lexer);
17121
17122 switch (vis->keyword)
17123 {
17124 case RID_AT_PRIVATE:
17125 objc_set_visibility (2);
17126 break;
17127 case RID_AT_PROTECTED:
17128 objc_set_visibility (0);
17129 break;
17130 case RID_AT_PUBLIC:
17131 objc_set_visibility (1);
17132 break;
17133 default:
17134 return;
17135 }
17136
17137 /* Eat '@private'/'@protected'/'@public'. */
17138 cp_lexer_consume_token (parser->lexer);
17139 }
17140
17141 /* Parse an Objective-C method type. */
17142
17143 static void
17144 cp_parser_objc_method_type (cp_parser* parser)
17145 {
17146 objc_set_method_type
17147 (cp_lexer_consume_token (parser->lexer)->type == CPP_PLUS
17148 ? PLUS_EXPR
17149 : MINUS_EXPR);
17150 }
17151
17152 /* Parse an Objective-C protocol qualifier. */
17153
17154 static tree
17155 cp_parser_objc_protocol_qualifiers (cp_parser* parser)
17156 {
17157 tree quals = NULL_TREE, node;
17158 cp_token *token = cp_lexer_peek_token (parser->lexer);
17159
17160 node = token->value;
17161
17162 while (node && TREE_CODE (node) == IDENTIFIER_NODE
17163 && (node == ridpointers [(int) RID_IN]
17164 || node == ridpointers [(int) RID_OUT]
17165 || node == ridpointers [(int) RID_INOUT]
17166 || node == ridpointers [(int) RID_BYCOPY]
17167 || node == ridpointers [(int) RID_BYREF]
17168 || node == ridpointers [(int) RID_ONEWAY]))
17169 {
17170 quals = tree_cons (NULL_TREE, node, quals);
17171 cp_lexer_consume_token (parser->lexer);
17172 token = cp_lexer_peek_token (parser->lexer);
17173 node = token->value;
17174 }
17175
17176 return quals;
17177 }
17178
17179 /* Parse an Objective-C typename. */
17180
17181 static tree
17182 cp_parser_objc_typename (cp_parser* parser)
17183 {
17184 tree typename = NULL_TREE;
17185
17186 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
17187 {
17188 tree proto_quals, cp_type = NULL_TREE;
17189
17190 cp_lexer_consume_token (parser->lexer); /* Eat '('. */
17191 proto_quals = cp_parser_objc_protocol_qualifiers (parser);
17192
17193 /* An ObjC type name may consist of just protocol qualifiers, in which
17194 case the type shall default to 'id'. */
17195 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN))
17196 cp_type = cp_parser_type_id (parser);
17197
17198 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
17199 typename = build_tree_list (proto_quals, cp_type);
17200 }
17201
17202 return typename;
17203 }
17204
17205 /* Check to see if TYPE refers to an Objective-C selector name. */
17206
17207 static bool
17208 cp_parser_objc_selector_p (enum cpp_ttype type)
17209 {
17210 return (type == CPP_NAME || type == CPP_KEYWORD
17211 || type == CPP_AND_AND || type == CPP_AND_EQ || type == CPP_AND
17212 || type == CPP_OR || type == CPP_COMPL || type == CPP_NOT
17213 || type == CPP_NOT_EQ || type == CPP_OR_OR || type == CPP_OR_EQ
17214 || type == CPP_XOR || type == CPP_XOR_EQ);
17215 }
17216
17217 /* Parse an Objective-C selector. */
17218
17219 static tree
17220 cp_parser_objc_selector (cp_parser* parser)
17221 {
17222 cp_token *token = cp_lexer_consume_token (parser->lexer);
17223
17224 if (!cp_parser_objc_selector_p (token->type))
17225 {
17226 error ("invalid Objective-C++ selector name");
17227 return error_mark_node;
17228 }
17229
17230 /* C++ operator names are allowed to appear in ObjC selectors. */
17231 switch (token->type)
17232 {
17233 case CPP_AND_AND: return get_identifier ("and");
17234 case CPP_AND_EQ: return get_identifier ("and_eq");
17235 case CPP_AND: return get_identifier ("bitand");
17236 case CPP_OR: return get_identifier ("bitor");
17237 case CPP_COMPL: return get_identifier ("compl");
17238 case CPP_NOT: return get_identifier ("not");
17239 case CPP_NOT_EQ: return get_identifier ("not_eq");
17240 case CPP_OR_OR: return get_identifier ("or");
17241 case CPP_OR_EQ: return get_identifier ("or_eq");
17242 case CPP_XOR: return get_identifier ("xor");
17243 case CPP_XOR_EQ: return get_identifier ("xor_eq");
17244 default: return token->value;
17245 }
17246 }
17247
17248 /* Parse an Objective-C params list. */
17249
17250 static tree
17251 cp_parser_objc_method_keyword_params (cp_parser* parser)
17252 {
17253 tree params = NULL_TREE;
17254 bool maybe_unary_selector_p = true;
17255 cp_token *token = cp_lexer_peek_token (parser->lexer);
17256
17257 while (cp_parser_objc_selector_p (token->type) || token->type == CPP_COLON)
17258 {
17259 tree selector = NULL_TREE, typename, identifier;
17260
17261 if (token->type != CPP_COLON)
17262 selector = cp_parser_objc_selector (parser);
17263
17264 /* Detect if we have a unary selector. */
17265 if (maybe_unary_selector_p
17266 && cp_lexer_next_token_is_not (parser->lexer, CPP_COLON))
17267 return selector;
17268
17269 maybe_unary_selector_p = false;
17270 cp_parser_require (parser, CPP_COLON, "`:'");
17271 typename = cp_parser_objc_typename (parser);
17272 identifier = cp_parser_identifier (parser);
17273
17274 params
17275 = chainon (params,
17276 objc_build_keyword_decl (selector,
17277 typename,
17278 identifier));
17279
17280 token = cp_lexer_peek_token (parser->lexer);
17281 }
17282
17283 return params;
17284 }
17285
17286 /* Parse the non-keyword Objective-C params. */
17287
17288 static tree
17289 cp_parser_objc_method_tail_params_opt (cp_parser* parser, bool *ellipsisp)
17290 {
17291 tree params = make_node (TREE_LIST);
17292 cp_token *token = cp_lexer_peek_token (parser->lexer);
17293 *ellipsisp = false; /* Initially, assume no ellipsis. */
17294
17295 while (token->type == CPP_COMMA)
17296 {
17297 cp_parameter_declarator *parmdecl;
17298 tree parm;
17299
17300 cp_lexer_consume_token (parser->lexer); /* Eat ','. */
17301 token = cp_lexer_peek_token (parser->lexer);
17302
17303 if (token->type == CPP_ELLIPSIS)
17304 {
17305 cp_lexer_consume_token (parser->lexer); /* Eat '...'. */
17306 *ellipsisp = true;
17307 break;
17308 }
17309
17310 parmdecl = cp_parser_parameter_declaration (parser, false, NULL);
17311 parm = grokdeclarator (parmdecl->declarator,
17312 &parmdecl->decl_specifiers,
17313 PARM, /*initialized=*/0,
17314 /*attrlist=*/NULL);
17315
17316 chainon (params, build_tree_list (NULL_TREE, parm));
17317 token = cp_lexer_peek_token (parser->lexer);
17318 }
17319
17320 return params;
17321 }
17322
17323 /* Parse a linkage specification, a pragma, an extra semicolon or a block. */
17324
17325 static void
17326 cp_parser_objc_interstitial_code (cp_parser* parser)
17327 {
17328 cp_token *token = cp_lexer_peek_token (parser->lexer);
17329
17330 /* If the next token is `extern' and the following token is a string
17331 literal, then we have a linkage specification. */
17332 if (token->keyword == RID_EXTERN
17333 && cp_parser_is_string_literal (cp_lexer_peek_nth_token (parser->lexer, 2)))
17334 cp_parser_linkage_specification (parser);
17335 /* Handle #pragma, if any. */
17336 else if (token->type == CPP_PRAGMA)
17337 cp_parser_pragma (parser, pragma_external);
17338 /* Allow stray semicolons. */
17339 else if (token->type == CPP_SEMICOLON)
17340 cp_lexer_consume_token (parser->lexer);
17341 /* Finally, try to parse a block-declaration, or a function-definition. */
17342 else
17343 cp_parser_block_declaration (parser, /*statement_p=*/false);
17344 }
17345
17346 /* Parse a method signature. */
17347
17348 static tree
17349 cp_parser_objc_method_signature (cp_parser* parser)
17350 {
17351 tree rettype, kwdparms, optparms;
17352 bool ellipsis = false;
17353
17354 cp_parser_objc_method_type (parser);
17355 rettype = cp_parser_objc_typename (parser);
17356 kwdparms = cp_parser_objc_method_keyword_params (parser);
17357 optparms = cp_parser_objc_method_tail_params_opt (parser, &ellipsis);
17358
17359 return objc_build_method_signature (rettype, kwdparms, optparms, ellipsis);
17360 }
17361
17362 /* Pars an Objective-C method prototype list. */
17363
17364 static void
17365 cp_parser_objc_method_prototype_list (cp_parser* parser)
17366 {
17367 cp_token *token = cp_lexer_peek_token (parser->lexer);
17368
17369 while (token->keyword != RID_AT_END)
17370 {
17371 if (token->type == CPP_PLUS || token->type == CPP_MINUS)
17372 {
17373 objc_add_method_declaration
17374 (cp_parser_objc_method_signature (parser));
17375 cp_parser_consume_semicolon_at_end_of_statement (parser);
17376 }
17377 else
17378 /* Allow for interspersed non-ObjC++ code. */
17379 cp_parser_objc_interstitial_code (parser);
17380
17381 token = cp_lexer_peek_token (parser->lexer);
17382 }
17383
17384 cp_lexer_consume_token (parser->lexer); /* Eat '@end'. */
17385 objc_finish_interface ();
17386 }
17387
17388 /* Parse an Objective-C method definition list. */
17389
17390 static void
17391 cp_parser_objc_method_definition_list (cp_parser* parser)
17392 {
17393 cp_token *token = cp_lexer_peek_token (parser->lexer);
17394
17395 while (token->keyword != RID_AT_END)
17396 {
17397 tree meth;
17398
17399 if (token->type == CPP_PLUS || token->type == CPP_MINUS)
17400 {
17401 push_deferring_access_checks (dk_deferred);
17402 objc_start_method_definition
17403 (cp_parser_objc_method_signature (parser));
17404
17405 /* For historical reasons, we accept an optional semicolon. */
17406 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
17407 cp_lexer_consume_token (parser->lexer);
17408
17409 perform_deferred_access_checks ();
17410 stop_deferring_access_checks ();
17411 meth = cp_parser_function_definition_after_declarator (parser,
17412 false);
17413 pop_deferring_access_checks ();
17414 objc_finish_method_definition (meth);
17415 }
17416 else
17417 /* Allow for interspersed non-ObjC++ code. */
17418 cp_parser_objc_interstitial_code (parser);
17419
17420 token = cp_lexer_peek_token (parser->lexer);
17421 }
17422
17423 cp_lexer_consume_token (parser->lexer); /* Eat '@end'. */
17424 objc_finish_implementation ();
17425 }
17426
17427 /* Parse Objective-C ivars. */
17428
17429 static void
17430 cp_parser_objc_class_ivars (cp_parser* parser)
17431 {
17432 cp_token *token = cp_lexer_peek_token (parser->lexer);
17433
17434 if (token->type != CPP_OPEN_BRACE)
17435 return; /* No ivars specified. */
17436
17437 cp_lexer_consume_token (parser->lexer); /* Eat '{'. */
17438 token = cp_lexer_peek_token (parser->lexer);
17439
17440 while (token->type != CPP_CLOSE_BRACE)
17441 {
17442 cp_decl_specifier_seq declspecs;
17443 int decl_class_or_enum_p;
17444 tree prefix_attributes;
17445
17446 cp_parser_objc_visibility_spec (parser);
17447
17448 if (cp_lexer_next_token_is (parser->lexer, CPP_CLOSE_BRACE))
17449 break;
17450
17451 cp_parser_decl_specifier_seq (parser,
17452 CP_PARSER_FLAGS_OPTIONAL,
17453 &declspecs,
17454 &decl_class_or_enum_p);
17455 prefix_attributes = declspecs.attributes;
17456 declspecs.attributes = NULL_TREE;
17457
17458 /* Keep going until we hit the `;' at the end of the
17459 declaration. */
17460 while (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
17461 {
17462 tree width = NULL_TREE, attributes, first_attribute, decl;
17463 cp_declarator *declarator = NULL;
17464 int ctor_dtor_or_conv_p;
17465
17466 /* Check for a (possibly unnamed) bitfield declaration. */
17467 token = cp_lexer_peek_token (parser->lexer);
17468 if (token->type == CPP_COLON)
17469 goto eat_colon;
17470
17471 if (token->type == CPP_NAME
17472 && (cp_lexer_peek_nth_token (parser->lexer, 2)->type
17473 == CPP_COLON))
17474 {
17475 /* Get the name of the bitfield. */
17476 declarator = make_id_declarator (NULL_TREE,
17477 cp_parser_identifier (parser),
17478 sfk_none);
17479
17480 eat_colon:
17481 cp_lexer_consume_token (parser->lexer); /* Eat ':'. */
17482 /* Get the width of the bitfield. */
17483 width
17484 = cp_parser_constant_expression (parser,
17485 /*allow_non_constant=*/false,
17486 NULL);
17487 }
17488 else
17489 {
17490 /* Parse the declarator. */
17491 declarator
17492 = cp_parser_declarator (parser, CP_PARSER_DECLARATOR_NAMED,
17493 &ctor_dtor_or_conv_p,
17494 /*parenthesized_p=*/NULL,
17495 /*member_p=*/false);
17496 }
17497
17498 /* Look for attributes that apply to the ivar. */
17499 attributes = cp_parser_attributes_opt (parser);
17500 /* Remember which attributes are prefix attributes and
17501 which are not. */
17502 first_attribute = attributes;
17503 /* Combine the attributes. */
17504 attributes = chainon (prefix_attributes, attributes);
17505
17506 if (width)
17507 {
17508 /* Create the bitfield declaration. */
17509 decl = grokbitfield (declarator, &declspecs, width);
17510 cplus_decl_attributes (&decl, attributes, /*flags=*/0);
17511 }
17512 else
17513 decl = grokfield (declarator, &declspecs,
17514 NULL_TREE, /*init_const_expr_p=*/false,
17515 NULL_TREE, attributes);
17516
17517 /* Add the instance variable. */
17518 objc_add_instance_variable (decl);
17519
17520 /* Reset PREFIX_ATTRIBUTES. */
17521 while (attributes && TREE_CHAIN (attributes) != first_attribute)
17522 attributes = TREE_CHAIN (attributes);
17523 if (attributes)
17524 TREE_CHAIN (attributes) = NULL_TREE;
17525
17526 token = cp_lexer_peek_token (parser->lexer);
17527
17528 if (token->type == CPP_COMMA)
17529 {
17530 cp_lexer_consume_token (parser->lexer); /* Eat ','. */
17531 continue;
17532 }
17533 break;
17534 }
17535
17536 cp_parser_consume_semicolon_at_end_of_statement (parser);
17537 token = cp_lexer_peek_token (parser->lexer);
17538 }
17539
17540 cp_lexer_consume_token (parser->lexer); /* Eat '}'. */
17541 /* For historical reasons, we accept an optional semicolon. */
17542 if (cp_lexer_next_token_is (parser->lexer, CPP_SEMICOLON))
17543 cp_lexer_consume_token (parser->lexer);
17544 }
17545
17546 /* Parse an Objective-C protocol declaration. */
17547
17548 static void
17549 cp_parser_objc_protocol_declaration (cp_parser* parser)
17550 {
17551 tree proto, protorefs;
17552 cp_token *tok;
17553
17554 cp_lexer_consume_token (parser->lexer); /* Eat '@protocol'. */
17555 if (cp_lexer_next_token_is_not (parser->lexer, CPP_NAME))
17556 {
17557 error ("identifier expected after %<@protocol%>");
17558 goto finish;
17559 }
17560
17561 /* See if we have a forward declaration or a definition. */
17562 tok = cp_lexer_peek_nth_token (parser->lexer, 2);
17563
17564 /* Try a forward declaration first. */
17565 if (tok->type == CPP_COMMA || tok->type == CPP_SEMICOLON)
17566 {
17567 objc_declare_protocols (cp_parser_objc_identifier_list (parser));
17568 finish:
17569 cp_parser_consume_semicolon_at_end_of_statement (parser);
17570 }
17571
17572 /* Ok, we got a full-fledged definition (or at least should). */
17573 else
17574 {
17575 proto = cp_parser_identifier (parser);
17576 protorefs = cp_parser_objc_protocol_refs_opt (parser);
17577 objc_start_protocol (proto, protorefs);
17578 cp_parser_objc_method_prototype_list (parser);
17579 }
17580 }
17581
17582 /* Parse an Objective-C superclass or category. */
17583
17584 static void
17585 cp_parser_objc_superclass_or_category (cp_parser *parser, tree *super,
17586 tree *categ)
17587 {
17588 cp_token *next = cp_lexer_peek_token (parser->lexer);
17589
17590 *super = *categ = NULL_TREE;
17591 if (next->type == CPP_COLON)
17592 {
17593 cp_lexer_consume_token (parser->lexer); /* Eat ':'. */
17594 *super = cp_parser_identifier (parser);
17595 }
17596 else if (next->type == CPP_OPEN_PAREN)
17597 {
17598 cp_lexer_consume_token (parser->lexer); /* Eat '('. */
17599 *categ = cp_parser_identifier (parser);
17600 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
17601 }
17602 }
17603
17604 /* Parse an Objective-C class interface. */
17605
17606 static void
17607 cp_parser_objc_class_interface (cp_parser* parser)
17608 {
17609 tree name, super, categ, protos;
17610
17611 cp_lexer_consume_token (parser->lexer); /* Eat '@interface'. */
17612 name = cp_parser_identifier (parser);
17613 cp_parser_objc_superclass_or_category (parser, &super, &categ);
17614 protos = cp_parser_objc_protocol_refs_opt (parser);
17615
17616 /* We have either a class or a category on our hands. */
17617 if (categ)
17618 objc_start_category_interface (name, categ, protos);
17619 else
17620 {
17621 objc_start_class_interface (name, super, protos);
17622 /* Handle instance variable declarations, if any. */
17623 cp_parser_objc_class_ivars (parser);
17624 objc_continue_interface ();
17625 }
17626
17627 cp_parser_objc_method_prototype_list (parser);
17628 }
17629
17630 /* Parse an Objective-C class implementation. */
17631
17632 static void
17633 cp_parser_objc_class_implementation (cp_parser* parser)
17634 {
17635 tree name, super, categ;
17636
17637 cp_lexer_consume_token (parser->lexer); /* Eat '@implementation'. */
17638 name = cp_parser_identifier (parser);
17639 cp_parser_objc_superclass_or_category (parser, &super, &categ);
17640
17641 /* We have either a class or a category on our hands. */
17642 if (categ)
17643 objc_start_category_implementation (name, categ);
17644 else
17645 {
17646 objc_start_class_implementation (name, super);
17647 /* Handle instance variable declarations, if any. */
17648 cp_parser_objc_class_ivars (parser);
17649 objc_continue_implementation ();
17650 }
17651
17652 cp_parser_objc_method_definition_list (parser);
17653 }
17654
17655 /* Consume the @end token and finish off the implementation. */
17656
17657 static void
17658 cp_parser_objc_end_implementation (cp_parser* parser)
17659 {
17660 cp_lexer_consume_token (parser->lexer); /* Eat '@end'. */
17661 objc_finish_implementation ();
17662 }
17663
17664 /* Parse an Objective-C declaration. */
17665
17666 static void
17667 cp_parser_objc_declaration (cp_parser* parser)
17668 {
17669 /* Try to figure out what kind of declaration is present. */
17670 cp_token *kwd = cp_lexer_peek_token (parser->lexer);
17671
17672 switch (kwd->keyword)
17673 {
17674 case RID_AT_ALIAS:
17675 cp_parser_objc_alias_declaration (parser);
17676 break;
17677 case RID_AT_CLASS:
17678 cp_parser_objc_class_declaration (parser);
17679 break;
17680 case RID_AT_PROTOCOL:
17681 cp_parser_objc_protocol_declaration (parser);
17682 break;
17683 case RID_AT_INTERFACE:
17684 cp_parser_objc_class_interface (parser);
17685 break;
17686 case RID_AT_IMPLEMENTATION:
17687 cp_parser_objc_class_implementation (parser);
17688 break;
17689 case RID_AT_END:
17690 cp_parser_objc_end_implementation (parser);
17691 break;
17692 default:
17693 error ("misplaced %<@%D%> Objective-C++ construct", kwd->value);
17694 cp_parser_skip_to_end_of_block_or_statement (parser);
17695 }
17696 }
17697
17698 /* Parse an Objective-C try-catch-finally statement.
17699
17700 objc-try-catch-finally-stmt:
17701 @try compound-statement objc-catch-clause-seq [opt]
17702 objc-finally-clause [opt]
17703
17704 objc-catch-clause-seq:
17705 objc-catch-clause objc-catch-clause-seq [opt]
17706
17707 objc-catch-clause:
17708 @catch ( exception-declaration ) compound-statement
17709
17710 objc-finally-clause
17711 @finally compound-statement
17712
17713 Returns NULL_TREE. */
17714
17715 static tree
17716 cp_parser_objc_try_catch_finally_statement (cp_parser *parser) {
17717 location_t location;
17718 tree stmt;
17719
17720 cp_parser_require_keyword (parser, RID_AT_TRY, "`@try'");
17721 location = cp_lexer_peek_token (parser->lexer)->location;
17722 /* NB: The @try block needs to be wrapped in its own STATEMENT_LIST
17723 node, lest it get absorbed into the surrounding block. */
17724 stmt = push_stmt_list ();
17725 cp_parser_compound_statement (parser, NULL, false);
17726 objc_begin_try_stmt (location, pop_stmt_list (stmt));
17727
17728 while (cp_lexer_next_token_is_keyword (parser->lexer, RID_AT_CATCH))
17729 {
17730 cp_parameter_declarator *parmdecl;
17731 tree parm;
17732
17733 cp_lexer_consume_token (parser->lexer);
17734 cp_parser_require (parser, CPP_OPEN_PAREN, "`('");
17735 parmdecl = cp_parser_parameter_declaration (parser, false, NULL);
17736 parm = grokdeclarator (parmdecl->declarator,
17737 &parmdecl->decl_specifiers,
17738 PARM, /*initialized=*/0,
17739 /*attrlist=*/NULL);
17740 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
17741 objc_begin_catch_clause (parm);
17742 cp_parser_compound_statement (parser, NULL, false);
17743 objc_finish_catch_clause ();
17744 }
17745
17746 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_AT_FINALLY))
17747 {
17748 cp_lexer_consume_token (parser->lexer);
17749 location = cp_lexer_peek_token (parser->lexer)->location;
17750 /* NB: The @finally block needs to be wrapped in its own STATEMENT_LIST
17751 node, lest it get absorbed into the surrounding block. */
17752 stmt = push_stmt_list ();
17753 cp_parser_compound_statement (parser, NULL, false);
17754 objc_build_finally_clause (location, pop_stmt_list (stmt));
17755 }
17756
17757 return objc_finish_try_stmt ();
17758 }
17759
17760 /* Parse an Objective-C synchronized statement.
17761
17762 objc-synchronized-stmt:
17763 @synchronized ( expression ) compound-statement
17764
17765 Returns NULL_TREE. */
17766
17767 static tree
17768 cp_parser_objc_synchronized_statement (cp_parser *parser) {
17769 location_t location;
17770 tree lock, stmt;
17771
17772 cp_parser_require_keyword (parser, RID_AT_SYNCHRONIZED, "`@synchronized'");
17773
17774 location = cp_lexer_peek_token (parser->lexer)->location;
17775 cp_parser_require (parser, CPP_OPEN_PAREN, "`('");
17776 lock = cp_parser_expression (parser, false);
17777 cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'");
17778
17779 /* NB: The @synchronized block needs to be wrapped in its own STATEMENT_LIST
17780 node, lest it get absorbed into the surrounding block. */
17781 stmt = push_stmt_list ();
17782 cp_parser_compound_statement (parser, NULL, false);
17783
17784 return objc_build_synchronized (location, lock, pop_stmt_list (stmt));
17785 }
17786
17787 /* Parse an Objective-C throw statement.
17788
17789 objc-throw-stmt:
17790 @throw assignment-expression [opt] ;
17791
17792 Returns a constructed '@throw' statement. */
17793
17794 static tree
17795 cp_parser_objc_throw_statement (cp_parser *parser) {
17796 tree expr = NULL_TREE;
17797
17798 cp_parser_require_keyword (parser, RID_AT_THROW, "`@throw'");
17799
17800 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
17801 expr = cp_parser_assignment_expression (parser, false);
17802
17803 cp_parser_consume_semicolon_at_end_of_statement (parser);
17804
17805 return objc_build_throw_stmt (expr);
17806 }
17807
17808 /* Parse an Objective-C statement. */
17809
17810 static tree
17811 cp_parser_objc_statement (cp_parser * parser) {
17812 /* Try to figure out what kind of declaration is present. */
17813 cp_token *kwd = cp_lexer_peek_token (parser->lexer);
17814
17815 switch (kwd->keyword)
17816 {
17817 case RID_AT_TRY:
17818 return cp_parser_objc_try_catch_finally_statement (parser);
17819 case RID_AT_SYNCHRONIZED:
17820 return cp_parser_objc_synchronized_statement (parser);
17821 case RID_AT_THROW:
17822 return cp_parser_objc_throw_statement (parser);
17823 default:
17824 error ("misplaced %<@%D%> Objective-C++ construct", kwd->value);
17825 cp_parser_skip_to_end_of_block_or_statement (parser);
17826 }
17827
17828 return error_mark_node;
17829 }
17830 \f
17831 /* OpenMP 2.5 parsing routines. */
17832
17833 /* All OpenMP clauses. OpenMP 2.5. */
17834 typedef enum pragma_omp_clause {
17835 PRAGMA_OMP_CLAUSE_NONE = 0,
17836
17837 PRAGMA_OMP_CLAUSE_COPYIN,
17838 PRAGMA_OMP_CLAUSE_COPYPRIVATE,
17839 PRAGMA_OMP_CLAUSE_DEFAULT,
17840 PRAGMA_OMP_CLAUSE_FIRSTPRIVATE,
17841 PRAGMA_OMP_CLAUSE_IF,
17842 PRAGMA_OMP_CLAUSE_LASTPRIVATE,
17843 PRAGMA_OMP_CLAUSE_NOWAIT,
17844 PRAGMA_OMP_CLAUSE_NUM_THREADS,
17845 PRAGMA_OMP_CLAUSE_ORDERED,
17846 PRAGMA_OMP_CLAUSE_PRIVATE,
17847 PRAGMA_OMP_CLAUSE_REDUCTION,
17848 PRAGMA_OMP_CLAUSE_SCHEDULE,
17849 PRAGMA_OMP_CLAUSE_SHARED
17850 } pragma_omp_clause;
17851
17852 /* Returns name of the next clause.
17853 If the clause is not recognized PRAGMA_OMP_CLAUSE_NONE is returned and
17854 the token is not consumed. Otherwise appropriate pragma_omp_clause is
17855 returned and the token is consumed. */
17856
17857 static pragma_omp_clause
17858 cp_parser_omp_clause_name (cp_parser *parser)
17859 {
17860 pragma_omp_clause result = PRAGMA_OMP_CLAUSE_NONE;
17861
17862 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_IF))
17863 result = PRAGMA_OMP_CLAUSE_IF;
17864 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_DEFAULT))
17865 result = PRAGMA_OMP_CLAUSE_DEFAULT;
17866 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_PRIVATE))
17867 result = PRAGMA_OMP_CLAUSE_PRIVATE;
17868 else if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
17869 {
17870 tree id = cp_lexer_peek_token (parser->lexer)->value;
17871 const char *p = IDENTIFIER_POINTER (id);
17872
17873 switch (p[0])
17874 {
17875 case 'c':
17876 if (!strcmp ("copyin", p))
17877 result = PRAGMA_OMP_CLAUSE_COPYIN;
17878 else if (!strcmp ("copyprivate", p))
17879 result = PRAGMA_OMP_CLAUSE_COPYPRIVATE;
17880 break;
17881 case 'f':
17882 if (!strcmp ("firstprivate", p))
17883 result = PRAGMA_OMP_CLAUSE_FIRSTPRIVATE;
17884 break;
17885 case 'l':
17886 if (!strcmp ("lastprivate", p))
17887 result = PRAGMA_OMP_CLAUSE_LASTPRIVATE;
17888 break;
17889 case 'n':
17890 if (!strcmp ("nowait", p))
17891 result = PRAGMA_OMP_CLAUSE_NOWAIT;
17892 else if (!strcmp ("num_threads", p))
17893 result = PRAGMA_OMP_CLAUSE_NUM_THREADS;
17894 break;
17895 case 'o':
17896 if (!strcmp ("ordered", p))
17897 result = PRAGMA_OMP_CLAUSE_ORDERED;
17898 break;
17899 case 'r':
17900 if (!strcmp ("reduction", p))
17901 result = PRAGMA_OMP_CLAUSE_REDUCTION;
17902 break;
17903 case 's':
17904 if (!strcmp ("schedule", p))
17905 result = PRAGMA_OMP_CLAUSE_SCHEDULE;
17906 else if (!strcmp ("shared", p))
17907 result = PRAGMA_OMP_CLAUSE_SHARED;
17908 break;
17909 }
17910 }
17911
17912 if (result != PRAGMA_OMP_CLAUSE_NONE)
17913 cp_lexer_consume_token (parser->lexer);
17914
17915 return result;
17916 }
17917
17918 /* Validate that a clause of the given type does not already exist. */
17919
17920 static void
17921 check_no_duplicate_clause (tree clauses, enum tree_code code, const char *name)
17922 {
17923 tree c;
17924
17925 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
17926 if (OMP_CLAUSE_CODE (c) == code)
17927 {
17928 error ("too many %qs clauses", name);
17929 break;
17930 }
17931 }
17932
17933 /* OpenMP 2.5:
17934 variable-list:
17935 identifier
17936 variable-list , identifier
17937
17938 In addition, we match a closing parenthesis. An opening parenthesis
17939 will have been consumed by the caller.
17940
17941 If KIND is nonzero, create the appropriate node and install the decl
17942 in OMP_CLAUSE_DECL and add the node to the head of the list.
17943
17944 If KIND is zero, create a TREE_LIST with the decl in TREE_PURPOSE;
17945 return the list created. */
17946
17947 static tree
17948 cp_parser_omp_var_list_no_open (cp_parser *parser, enum omp_clause_code kind,
17949 tree list)
17950 {
17951 while (1)
17952 {
17953 tree name, decl;
17954
17955 name = cp_parser_id_expression (parser, /*template_p=*/false,
17956 /*check_dependency_p=*/true,
17957 /*template_p=*/NULL,
17958 /*declarator_p=*/false,
17959 /*optional_p=*/false);
17960 if (name == error_mark_node)
17961 goto skip_comma;
17962
17963 decl = cp_parser_lookup_name_simple (parser, name);
17964 if (decl == error_mark_node)
17965 cp_parser_name_lookup_error (parser, name, decl, NULL);
17966 else if (kind != 0)
17967 {
17968 tree u = build_omp_clause (kind);
17969 OMP_CLAUSE_DECL (u) = decl;
17970 OMP_CLAUSE_CHAIN (u) = list;
17971 list = u;
17972 }
17973 else
17974 list = tree_cons (decl, NULL_TREE, list);
17975
17976 get_comma:
17977 if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMMA))
17978 break;
17979 cp_lexer_consume_token (parser->lexer);
17980 }
17981
17982 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'"))
17983 {
17984 int ending;
17985
17986 /* Try to resync to an unnested comma. Copied from
17987 cp_parser_parenthesized_expression_list. */
17988 skip_comma:
17989 ending = cp_parser_skip_to_closing_parenthesis (parser,
17990 /*recovering=*/true,
17991 /*or_comma=*/true,
17992 /*consume_paren=*/true);
17993 if (ending < 0)
17994 goto get_comma;
17995 }
17996
17997 return list;
17998 }
17999
18000 /* Similarly, but expect leading and trailing parenthesis. This is a very
18001 common case for omp clauses. */
18002
18003 static tree
18004 cp_parser_omp_var_list (cp_parser *parser, enum omp_clause_code kind, tree list)
18005 {
18006 if (cp_parser_require (parser, CPP_OPEN_PAREN, "`('"))
18007 return cp_parser_omp_var_list_no_open (parser, kind, list);
18008 return list;
18009 }
18010
18011 /* OpenMP 2.5:
18012 default ( shared | none ) */
18013
18014 static tree
18015 cp_parser_omp_clause_default (cp_parser *parser, tree list)
18016 {
18017 enum omp_clause_default_kind kind = OMP_CLAUSE_DEFAULT_UNSPECIFIED;
18018 tree c;
18019
18020 if (!cp_parser_require (parser, CPP_OPEN_PAREN, "`('"))
18021 return list;
18022 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
18023 {
18024 tree id = cp_lexer_peek_token (parser->lexer)->value;
18025 const char *p = IDENTIFIER_POINTER (id);
18026
18027 switch (p[0])
18028 {
18029 case 'n':
18030 if (strcmp ("none", p) != 0)
18031 goto invalid_kind;
18032 kind = OMP_CLAUSE_DEFAULT_NONE;
18033 break;
18034
18035 case 's':
18036 if (strcmp ("shared", p) != 0)
18037 goto invalid_kind;
18038 kind = OMP_CLAUSE_DEFAULT_SHARED;
18039 break;
18040
18041 default:
18042 goto invalid_kind;
18043 }
18044
18045 cp_lexer_consume_token (parser->lexer);
18046 }
18047 else
18048 {
18049 invalid_kind:
18050 cp_parser_error (parser, "expected %<none%> or %<shared%>");
18051 }
18052
18053 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'"))
18054 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
18055 /*or_comma=*/false,
18056 /*consume_paren=*/true);
18057
18058 if (kind == OMP_CLAUSE_DEFAULT_UNSPECIFIED)
18059 return list;
18060
18061 check_no_duplicate_clause (list, OMP_CLAUSE_DEFAULT, "default");
18062 c = build_omp_clause (OMP_CLAUSE_DEFAULT);
18063 OMP_CLAUSE_CHAIN (c) = list;
18064 OMP_CLAUSE_DEFAULT_KIND (c) = kind;
18065
18066 return c;
18067 }
18068
18069 /* OpenMP 2.5:
18070 if ( expression ) */
18071
18072 static tree
18073 cp_parser_omp_clause_if (cp_parser *parser, tree list)
18074 {
18075 tree t, c;
18076
18077 if (!cp_parser_require (parser, CPP_OPEN_PAREN, "`('"))
18078 return list;
18079
18080 t = cp_parser_condition (parser);
18081
18082 if (t == error_mark_node
18083 || !cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'"))
18084 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
18085 /*or_comma=*/false,
18086 /*consume_paren=*/true);
18087
18088 check_no_duplicate_clause (list, OMP_CLAUSE_IF, "if");
18089
18090 c = build_omp_clause (OMP_CLAUSE_IF);
18091 OMP_CLAUSE_IF_EXPR (c) = t;
18092 OMP_CLAUSE_CHAIN (c) = list;
18093
18094 return c;
18095 }
18096
18097 /* OpenMP 2.5:
18098 nowait */
18099
18100 static tree
18101 cp_parser_omp_clause_nowait (cp_parser *parser ATTRIBUTE_UNUSED, tree list)
18102 {
18103 tree c;
18104
18105 check_no_duplicate_clause (list, OMP_CLAUSE_NOWAIT, "nowait");
18106
18107 c = build_omp_clause (OMP_CLAUSE_NOWAIT);
18108 OMP_CLAUSE_CHAIN (c) = list;
18109 return c;
18110 }
18111
18112 /* OpenMP 2.5:
18113 num_threads ( expression ) */
18114
18115 static tree
18116 cp_parser_omp_clause_num_threads (cp_parser *parser, tree list)
18117 {
18118 tree t, c;
18119
18120 if (!cp_parser_require (parser, CPP_OPEN_PAREN, "`('"))
18121 return list;
18122
18123 t = cp_parser_expression (parser, false);
18124
18125 if (t == error_mark_node
18126 || !cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'"))
18127 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
18128 /*or_comma=*/false,
18129 /*consume_paren=*/true);
18130
18131 check_no_duplicate_clause (list, OMP_CLAUSE_NUM_THREADS, "num_threads");
18132
18133 c = build_omp_clause (OMP_CLAUSE_NUM_THREADS);
18134 OMP_CLAUSE_NUM_THREADS_EXPR (c) = t;
18135 OMP_CLAUSE_CHAIN (c) = list;
18136
18137 return c;
18138 }
18139
18140 /* OpenMP 2.5:
18141 ordered */
18142
18143 static tree
18144 cp_parser_omp_clause_ordered (cp_parser *parser ATTRIBUTE_UNUSED, tree list)
18145 {
18146 tree c;
18147
18148 check_no_duplicate_clause (list, OMP_CLAUSE_ORDERED, "ordered");
18149
18150 c = build_omp_clause (OMP_CLAUSE_ORDERED);
18151 OMP_CLAUSE_CHAIN (c) = list;
18152 return c;
18153 }
18154
18155 /* OpenMP 2.5:
18156 reduction ( reduction-operator : variable-list )
18157
18158 reduction-operator:
18159 One of: + * - & ^ | && || */
18160
18161 static tree
18162 cp_parser_omp_clause_reduction (cp_parser *parser, tree list)
18163 {
18164 enum tree_code code;
18165 tree nlist, c;
18166
18167 if (!cp_parser_require (parser, CPP_OPEN_PAREN, "`('"))
18168 return list;
18169
18170 switch (cp_lexer_peek_token (parser->lexer)->type)
18171 {
18172 case CPP_PLUS:
18173 code = PLUS_EXPR;
18174 break;
18175 case CPP_MULT:
18176 code = MULT_EXPR;
18177 break;
18178 case CPP_MINUS:
18179 code = MINUS_EXPR;
18180 break;
18181 case CPP_AND:
18182 code = BIT_AND_EXPR;
18183 break;
18184 case CPP_XOR:
18185 code = BIT_XOR_EXPR;
18186 break;
18187 case CPP_OR:
18188 code = BIT_IOR_EXPR;
18189 break;
18190 case CPP_AND_AND:
18191 code = TRUTH_ANDIF_EXPR;
18192 break;
18193 case CPP_OR_OR:
18194 code = TRUTH_ORIF_EXPR;
18195 break;
18196 default:
18197 cp_parser_error (parser, "`+', `*', `-', `&', `^', `|', `&&', or `||'");
18198 resync_fail:
18199 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
18200 /*or_comma=*/false,
18201 /*consume_paren=*/true);
18202 return list;
18203 }
18204 cp_lexer_consume_token (parser->lexer);
18205
18206 if (!cp_parser_require (parser, CPP_COLON, "`:'"))
18207 goto resync_fail;
18208
18209 nlist = cp_parser_omp_var_list_no_open (parser, OMP_CLAUSE_REDUCTION, list);
18210 for (c = nlist; c != list; c = OMP_CLAUSE_CHAIN (c))
18211 OMP_CLAUSE_REDUCTION_CODE (c) = code;
18212
18213 return nlist;
18214 }
18215
18216 /* OpenMP 2.5:
18217 schedule ( schedule-kind )
18218 schedule ( schedule-kind , expression )
18219
18220 schedule-kind:
18221 static | dynamic | guided | runtime */
18222
18223 static tree
18224 cp_parser_omp_clause_schedule (cp_parser *parser, tree list)
18225 {
18226 tree c, t;
18227
18228 if (!cp_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
18229 return list;
18230
18231 c = build_omp_clause (OMP_CLAUSE_SCHEDULE);
18232
18233 if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
18234 {
18235 tree id = cp_lexer_peek_token (parser->lexer)->value;
18236 const char *p = IDENTIFIER_POINTER (id);
18237
18238 switch (p[0])
18239 {
18240 case 'd':
18241 if (strcmp ("dynamic", p) != 0)
18242 goto invalid_kind;
18243 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_DYNAMIC;
18244 break;
18245
18246 case 'g':
18247 if (strcmp ("guided", p) != 0)
18248 goto invalid_kind;
18249 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_GUIDED;
18250 break;
18251
18252 case 'r':
18253 if (strcmp ("runtime", p) != 0)
18254 goto invalid_kind;
18255 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_RUNTIME;
18256 break;
18257
18258 default:
18259 goto invalid_kind;
18260 }
18261 }
18262 else if (cp_lexer_next_token_is_keyword (parser->lexer, RID_STATIC))
18263 OMP_CLAUSE_SCHEDULE_KIND (c) = OMP_CLAUSE_SCHEDULE_STATIC;
18264 else
18265 goto invalid_kind;
18266 cp_lexer_consume_token (parser->lexer);
18267
18268 if (cp_lexer_next_token_is (parser->lexer, CPP_COMMA))
18269 {
18270 cp_lexer_consume_token (parser->lexer);
18271
18272 t = cp_parser_assignment_expression (parser, false);
18273
18274 if (t == error_mark_node)
18275 goto resync_fail;
18276 else if (OMP_CLAUSE_SCHEDULE_KIND (c) == OMP_CLAUSE_SCHEDULE_RUNTIME)
18277 error ("schedule %<runtime%> does not take "
18278 "a %<chunk_size%> parameter");
18279 else
18280 OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c) = t;
18281
18282 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'"))
18283 goto resync_fail;
18284 }
18285 else if (!cp_parser_require (parser, CPP_CLOSE_PAREN, "`,' or `)'"))
18286 goto resync_fail;
18287
18288 check_no_duplicate_clause (list, OMP_CLAUSE_SCHEDULE, "schedule");
18289 OMP_CLAUSE_CHAIN (c) = list;
18290 return c;
18291
18292 invalid_kind:
18293 cp_parser_error (parser, "invalid schedule kind");
18294 resync_fail:
18295 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
18296 /*or_comma=*/false,
18297 /*consume_paren=*/true);
18298 return list;
18299 }
18300
18301 /* Parse all OpenMP clauses. The set clauses allowed by the directive
18302 is a bitmask in MASK. Return the list of clauses found; the result
18303 of clause default goes in *pdefault. */
18304
18305 static tree
18306 cp_parser_omp_all_clauses (cp_parser *parser, unsigned int mask,
18307 const char *where, cp_token *pragma_tok)
18308 {
18309 tree clauses = NULL;
18310
18311 while (cp_lexer_next_token_is_not (parser->lexer, CPP_PRAGMA_EOL))
18312 {
18313 pragma_omp_clause c_kind = cp_parser_omp_clause_name (parser);
18314 const char *c_name;
18315 tree prev = clauses;
18316
18317 switch (c_kind)
18318 {
18319 case PRAGMA_OMP_CLAUSE_COPYIN:
18320 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_COPYIN, clauses);
18321 c_name = "copyin";
18322 break;
18323 case PRAGMA_OMP_CLAUSE_COPYPRIVATE:
18324 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_COPYPRIVATE,
18325 clauses);
18326 c_name = "copyprivate";
18327 break;
18328 case PRAGMA_OMP_CLAUSE_DEFAULT:
18329 clauses = cp_parser_omp_clause_default (parser, clauses);
18330 c_name = "default";
18331 break;
18332 case PRAGMA_OMP_CLAUSE_FIRSTPRIVATE:
18333 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_FIRSTPRIVATE,
18334 clauses);
18335 c_name = "firstprivate";
18336 break;
18337 case PRAGMA_OMP_CLAUSE_IF:
18338 clauses = cp_parser_omp_clause_if (parser, clauses);
18339 c_name = "if";
18340 break;
18341 case PRAGMA_OMP_CLAUSE_LASTPRIVATE:
18342 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_LASTPRIVATE,
18343 clauses);
18344 c_name = "lastprivate";
18345 break;
18346 case PRAGMA_OMP_CLAUSE_NOWAIT:
18347 clauses = cp_parser_omp_clause_nowait (parser, clauses);
18348 c_name = "nowait";
18349 break;
18350 case PRAGMA_OMP_CLAUSE_NUM_THREADS:
18351 clauses = cp_parser_omp_clause_num_threads (parser, clauses);
18352 c_name = "num_threads";
18353 break;
18354 case PRAGMA_OMP_CLAUSE_ORDERED:
18355 clauses = cp_parser_omp_clause_ordered (parser, clauses);
18356 c_name = "ordered";
18357 break;
18358 case PRAGMA_OMP_CLAUSE_PRIVATE:
18359 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_PRIVATE,
18360 clauses);
18361 c_name = "private";
18362 break;
18363 case PRAGMA_OMP_CLAUSE_REDUCTION:
18364 clauses = cp_parser_omp_clause_reduction (parser, clauses);
18365 c_name = "reduction";
18366 break;
18367 case PRAGMA_OMP_CLAUSE_SCHEDULE:
18368 clauses = cp_parser_omp_clause_schedule (parser, clauses);
18369 c_name = "schedule";
18370 break;
18371 case PRAGMA_OMP_CLAUSE_SHARED:
18372 clauses = cp_parser_omp_var_list (parser, OMP_CLAUSE_SHARED,
18373 clauses);
18374 c_name = "shared";
18375 break;
18376 default:
18377 cp_parser_error (parser, "expected %<#pragma omp%> clause");
18378 goto saw_error;
18379 }
18380
18381 if (((mask >> c_kind) & 1) == 0)
18382 {
18383 /* Remove the invalid clause(s) from the list to avoid
18384 confusing the rest of the compiler. */
18385 clauses = prev;
18386 error ("%qs is not valid for %qs", c_name, where);
18387 }
18388 }
18389 saw_error:
18390 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
18391 return finish_omp_clauses (clauses);
18392 }
18393
18394 /* OpenMP 2.5:
18395 structured-block:
18396 statement
18397
18398 In practice, we're also interested in adding the statement to an
18399 outer node. So it is convenient if we work around the fact that
18400 cp_parser_statement calls add_stmt. */
18401
18402 static unsigned
18403 cp_parser_begin_omp_structured_block (cp_parser *parser)
18404 {
18405 unsigned save = parser->in_statement;
18406
18407 /* Only move the values to IN_OMP_BLOCK if they weren't false.
18408 This preserves the "not within loop or switch" style error messages
18409 for nonsense cases like
18410 void foo() {
18411 #pragma omp single
18412 break;
18413 }
18414 */
18415 if (parser->in_statement)
18416 parser->in_statement = IN_OMP_BLOCK;
18417
18418 return save;
18419 }
18420
18421 static void
18422 cp_parser_end_omp_structured_block (cp_parser *parser, unsigned save)
18423 {
18424 parser->in_statement = save;
18425 }
18426
18427 static tree
18428 cp_parser_omp_structured_block (cp_parser *parser)
18429 {
18430 tree stmt = begin_omp_structured_block ();
18431 unsigned int save = cp_parser_begin_omp_structured_block (parser);
18432
18433 cp_parser_statement (parser, NULL_TREE, false);
18434
18435 cp_parser_end_omp_structured_block (parser, save);
18436 return finish_omp_structured_block (stmt);
18437 }
18438
18439 /* OpenMP 2.5:
18440 # pragma omp atomic new-line
18441 expression-stmt
18442
18443 expression-stmt:
18444 x binop= expr | x++ | ++x | x-- | --x
18445 binop:
18446 +, *, -, /, &, ^, |, <<, >>
18447
18448 where x is an lvalue expression with scalar type. */
18449
18450 static void
18451 cp_parser_omp_atomic (cp_parser *parser, cp_token *pragma_tok)
18452 {
18453 tree lhs, rhs;
18454 enum tree_code code;
18455
18456 cp_parser_require_pragma_eol (parser, pragma_tok);
18457
18458 lhs = cp_parser_unary_expression (parser, /*address_p=*/false,
18459 /*cast_p=*/false);
18460 switch (TREE_CODE (lhs))
18461 {
18462 case ERROR_MARK:
18463 goto saw_error;
18464
18465 case PREINCREMENT_EXPR:
18466 case POSTINCREMENT_EXPR:
18467 lhs = TREE_OPERAND (lhs, 0);
18468 code = PLUS_EXPR;
18469 rhs = integer_one_node;
18470 break;
18471
18472 case PREDECREMENT_EXPR:
18473 case POSTDECREMENT_EXPR:
18474 lhs = TREE_OPERAND (lhs, 0);
18475 code = MINUS_EXPR;
18476 rhs = integer_one_node;
18477 break;
18478
18479 default:
18480 switch (cp_lexer_peek_token (parser->lexer)->type)
18481 {
18482 case CPP_MULT_EQ:
18483 code = MULT_EXPR;
18484 break;
18485 case CPP_DIV_EQ:
18486 code = TRUNC_DIV_EXPR;
18487 break;
18488 case CPP_PLUS_EQ:
18489 code = PLUS_EXPR;
18490 break;
18491 case CPP_MINUS_EQ:
18492 code = MINUS_EXPR;
18493 break;
18494 case CPP_LSHIFT_EQ:
18495 code = LSHIFT_EXPR;
18496 break;
18497 case CPP_RSHIFT_EQ:
18498 code = RSHIFT_EXPR;
18499 break;
18500 case CPP_AND_EQ:
18501 code = BIT_AND_EXPR;
18502 break;
18503 case CPP_OR_EQ:
18504 code = BIT_IOR_EXPR;
18505 break;
18506 case CPP_XOR_EQ:
18507 code = BIT_XOR_EXPR;
18508 break;
18509 default:
18510 cp_parser_error (parser,
18511 "invalid operator for %<#pragma omp atomic%>");
18512 goto saw_error;
18513 }
18514 cp_lexer_consume_token (parser->lexer);
18515
18516 rhs = cp_parser_expression (parser, false);
18517 if (rhs == error_mark_node)
18518 goto saw_error;
18519 break;
18520 }
18521 finish_omp_atomic (code, lhs, rhs);
18522 cp_parser_consume_semicolon_at_end_of_statement (parser);
18523 return;
18524
18525 saw_error:
18526 cp_parser_skip_to_end_of_block_or_statement (parser);
18527 }
18528
18529
18530 /* OpenMP 2.5:
18531 # pragma omp barrier new-line */
18532
18533 static void
18534 cp_parser_omp_barrier (cp_parser *parser, cp_token *pragma_tok)
18535 {
18536 cp_parser_require_pragma_eol (parser, pragma_tok);
18537 finish_omp_barrier ();
18538 }
18539
18540 /* OpenMP 2.5:
18541 # pragma omp critical [(name)] new-line
18542 structured-block */
18543
18544 static tree
18545 cp_parser_omp_critical (cp_parser *parser, cp_token *pragma_tok)
18546 {
18547 tree stmt, name = NULL;
18548
18549 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
18550 {
18551 cp_lexer_consume_token (parser->lexer);
18552
18553 name = cp_parser_identifier (parser);
18554
18555 if (name == error_mark_node
18556 || !cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'"))
18557 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
18558 /*or_comma=*/false,
18559 /*consume_paren=*/true);
18560 if (name == error_mark_node)
18561 name = NULL;
18562 }
18563 cp_parser_require_pragma_eol (parser, pragma_tok);
18564
18565 stmt = cp_parser_omp_structured_block (parser);
18566 return c_finish_omp_critical (stmt, name);
18567 }
18568
18569 /* OpenMP 2.5:
18570 # pragma omp flush flush-vars[opt] new-line
18571
18572 flush-vars:
18573 ( variable-list ) */
18574
18575 static void
18576 cp_parser_omp_flush (cp_parser *parser, cp_token *pragma_tok)
18577 {
18578 if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_PAREN))
18579 (void) cp_parser_omp_var_list (parser, 0, NULL);
18580 cp_parser_require_pragma_eol (parser, pragma_tok);
18581
18582 finish_omp_flush ();
18583 }
18584
18585 /* Parse the restricted form of the for statment allowed by OpenMP. */
18586
18587 static tree
18588 cp_parser_omp_for_loop (cp_parser *parser)
18589 {
18590 tree init, cond, incr, body, decl, pre_body;
18591 location_t loc;
18592
18593 if (!cp_lexer_next_token_is_keyword (parser->lexer, RID_FOR))
18594 {
18595 cp_parser_error (parser, "for statement expected");
18596 return NULL;
18597 }
18598 loc = cp_lexer_consume_token (parser->lexer)->location;
18599 if (!cp_parser_require (parser, CPP_OPEN_PAREN, "`('"))
18600 return NULL;
18601
18602 init = decl = NULL;
18603 pre_body = push_stmt_list ();
18604 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
18605 {
18606 cp_decl_specifier_seq type_specifiers;
18607
18608 /* First, try to parse as an initialized declaration. See
18609 cp_parser_condition, from whence the bulk of this is copied. */
18610
18611 cp_parser_parse_tentatively (parser);
18612 cp_parser_type_specifier_seq (parser, /*is_condition=*/false,
18613 &type_specifiers);
18614 if (!cp_parser_error_occurred (parser))
18615 {
18616 tree asm_specification, attributes;
18617 cp_declarator *declarator;
18618
18619 declarator = cp_parser_declarator (parser,
18620 CP_PARSER_DECLARATOR_NAMED,
18621 /*ctor_dtor_or_conv_p=*/NULL,
18622 /*parenthesized_p=*/NULL,
18623 /*member_p=*/false);
18624 attributes = cp_parser_attributes_opt (parser);
18625 asm_specification = cp_parser_asm_specification_opt (parser);
18626
18627 cp_parser_require (parser, CPP_EQ, "`='");
18628 if (cp_parser_parse_definitely (parser))
18629 {
18630 tree pushed_scope;
18631
18632 decl = start_decl (declarator, &type_specifiers,
18633 /*initialized_p=*/false, attributes,
18634 /*prefix_attributes=*/NULL_TREE,
18635 &pushed_scope);
18636
18637 init = cp_parser_assignment_expression (parser, false);
18638
18639 cp_finish_decl (decl, NULL_TREE, /*init_const_expr_p=*/false,
18640 asm_specification, LOOKUP_ONLYCONVERTING);
18641
18642 if (pushed_scope)
18643 pop_scope (pushed_scope);
18644 }
18645 }
18646 else
18647 cp_parser_abort_tentative_parse (parser);
18648
18649 /* If parsing as an initialized declaration failed, try again as
18650 a simple expression. */
18651 if (decl == NULL)
18652 init = cp_parser_expression (parser, false);
18653 }
18654 cp_parser_require (parser, CPP_SEMICOLON, "`;'");
18655 pre_body = pop_stmt_list (pre_body);
18656
18657 cond = NULL;
18658 if (cp_lexer_next_token_is_not (parser->lexer, CPP_SEMICOLON))
18659 cond = cp_parser_condition (parser);
18660 cp_parser_require (parser, CPP_SEMICOLON, "`;'");
18661
18662 incr = NULL;
18663 if (cp_lexer_next_token_is_not (parser->lexer, CPP_CLOSE_PAREN))
18664 incr = cp_parser_expression (parser, false);
18665
18666 if (!cp_parser_require (parser, CPP_CLOSE_PAREN, "`)'"))
18667 cp_parser_skip_to_closing_parenthesis (parser, /*recovering=*/true,
18668 /*or_comma=*/false,
18669 /*consume_paren=*/true);
18670
18671 /* Note that we saved the original contents of this flag when we entered
18672 the structured block, and so we don't need to re-save it here. */
18673 parser->in_statement = IN_OMP_FOR;
18674
18675 /* Note that the grammar doesn't call for a structured block here,
18676 though the loop as a whole is a structured block. */
18677 body = push_stmt_list ();
18678 cp_parser_statement (parser, NULL_TREE, false);
18679 body = pop_stmt_list (body);
18680
18681 return finish_omp_for (loc, decl, init, cond, incr, body, pre_body);
18682 }
18683
18684 /* OpenMP 2.5:
18685 #pragma omp for for-clause[optseq] new-line
18686 for-loop */
18687
18688 #define OMP_FOR_CLAUSE_MASK \
18689 ( (1u << PRAGMA_OMP_CLAUSE_PRIVATE) \
18690 | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
18691 | (1u << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
18692 | (1u << PRAGMA_OMP_CLAUSE_REDUCTION) \
18693 | (1u << PRAGMA_OMP_CLAUSE_ORDERED) \
18694 | (1u << PRAGMA_OMP_CLAUSE_SCHEDULE) \
18695 | (1u << PRAGMA_OMP_CLAUSE_NOWAIT))
18696
18697 static tree
18698 cp_parser_omp_for (cp_parser *parser, cp_token *pragma_tok)
18699 {
18700 tree clauses, sb, ret;
18701 unsigned int save;
18702
18703 clauses = cp_parser_omp_all_clauses (parser, OMP_FOR_CLAUSE_MASK,
18704 "#pragma omp for", pragma_tok);
18705
18706 sb = begin_omp_structured_block ();
18707 save = cp_parser_begin_omp_structured_block (parser);
18708
18709 ret = cp_parser_omp_for_loop (parser);
18710 if (ret)
18711 OMP_FOR_CLAUSES (ret) = clauses;
18712
18713 cp_parser_end_omp_structured_block (parser, save);
18714 add_stmt (finish_omp_structured_block (sb));
18715
18716 return ret;
18717 }
18718
18719 /* OpenMP 2.5:
18720 # pragma omp master new-line
18721 structured-block */
18722
18723 static tree
18724 cp_parser_omp_master (cp_parser *parser, cp_token *pragma_tok)
18725 {
18726 cp_parser_require_pragma_eol (parser, pragma_tok);
18727 return c_finish_omp_master (cp_parser_omp_structured_block (parser));
18728 }
18729
18730 /* OpenMP 2.5:
18731 # pragma omp ordered new-line
18732 structured-block */
18733
18734 static tree
18735 cp_parser_omp_ordered (cp_parser *parser, cp_token *pragma_tok)
18736 {
18737 cp_parser_require_pragma_eol (parser, pragma_tok);
18738 return c_finish_omp_ordered (cp_parser_omp_structured_block (parser));
18739 }
18740
18741 /* OpenMP 2.5:
18742
18743 section-scope:
18744 { section-sequence }
18745
18746 section-sequence:
18747 section-directive[opt] structured-block
18748 section-sequence section-directive structured-block */
18749
18750 static tree
18751 cp_parser_omp_sections_scope (cp_parser *parser)
18752 {
18753 tree stmt, substmt;
18754 bool error_suppress = false;
18755 cp_token *tok;
18756
18757 if (!cp_parser_require (parser, CPP_OPEN_BRACE, "`{'"))
18758 return NULL_TREE;
18759
18760 stmt = push_stmt_list ();
18761
18762 if (cp_lexer_peek_token (parser->lexer)->pragma_kind != PRAGMA_OMP_SECTION)
18763 {
18764 unsigned save;
18765
18766 substmt = begin_omp_structured_block ();
18767 save = cp_parser_begin_omp_structured_block (parser);
18768
18769 while (1)
18770 {
18771 cp_parser_statement (parser, NULL_TREE, false);
18772
18773 tok = cp_lexer_peek_token (parser->lexer);
18774 if (tok->pragma_kind == PRAGMA_OMP_SECTION)
18775 break;
18776 if (tok->type == CPP_CLOSE_BRACE)
18777 break;
18778 if (tok->type == CPP_EOF)
18779 break;
18780 }
18781
18782 cp_parser_end_omp_structured_block (parser, save);
18783 substmt = finish_omp_structured_block (substmt);
18784 substmt = build1 (OMP_SECTION, void_type_node, substmt);
18785 add_stmt (substmt);
18786 }
18787
18788 while (1)
18789 {
18790 tok = cp_lexer_peek_token (parser->lexer);
18791 if (tok->type == CPP_CLOSE_BRACE)
18792 break;
18793 if (tok->type == CPP_EOF)
18794 break;
18795
18796 if (tok->pragma_kind == PRAGMA_OMP_SECTION)
18797 {
18798 cp_lexer_consume_token (parser->lexer);
18799 cp_parser_require_pragma_eol (parser, tok);
18800 error_suppress = false;
18801 }
18802 else if (!error_suppress)
18803 {
18804 cp_parser_error (parser, "expected %<#pragma omp section%> or %<}%>");
18805 error_suppress = true;
18806 }
18807
18808 substmt = cp_parser_omp_structured_block (parser);
18809 substmt = build1 (OMP_SECTION, void_type_node, substmt);
18810 add_stmt (substmt);
18811 }
18812 cp_parser_require (parser, CPP_CLOSE_BRACE, "`}'");
18813
18814 substmt = pop_stmt_list (stmt);
18815
18816 stmt = make_node (OMP_SECTIONS);
18817 TREE_TYPE (stmt) = void_type_node;
18818 OMP_SECTIONS_BODY (stmt) = substmt;
18819
18820 add_stmt (stmt);
18821 return stmt;
18822 }
18823
18824 /* OpenMP 2.5:
18825 # pragma omp sections sections-clause[optseq] newline
18826 sections-scope */
18827
18828 #define OMP_SECTIONS_CLAUSE_MASK \
18829 ( (1u << PRAGMA_OMP_CLAUSE_PRIVATE) \
18830 | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
18831 | (1u << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
18832 | (1u << PRAGMA_OMP_CLAUSE_REDUCTION) \
18833 | (1u << PRAGMA_OMP_CLAUSE_NOWAIT))
18834
18835 static tree
18836 cp_parser_omp_sections (cp_parser *parser, cp_token *pragma_tok)
18837 {
18838 tree clauses, ret;
18839
18840 clauses = cp_parser_omp_all_clauses (parser, OMP_SECTIONS_CLAUSE_MASK,
18841 "#pragma omp sections", pragma_tok);
18842
18843 ret = cp_parser_omp_sections_scope (parser);
18844 if (ret)
18845 OMP_SECTIONS_CLAUSES (ret) = clauses;
18846
18847 return ret;
18848 }
18849
18850 /* OpenMP 2.5:
18851 # pragma parallel parallel-clause new-line
18852 # pragma parallel for parallel-for-clause new-line
18853 # pragma parallel sections parallel-sections-clause new-line */
18854
18855 #define OMP_PARALLEL_CLAUSE_MASK \
18856 ( (1u << PRAGMA_OMP_CLAUSE_IF) \
18857 | (1u << PRAGMA_OMP_CLAUSE_PRIVATE) \
18858 | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
18859 | (1u << PRAGMA_OMP_CLAUSE_DEFAULT) \
18860 | (1u << PRAGMA_OMP_CLAUSE_SHARED) \
18861 | (1u << PRAGMA_OMP_CLAUSE_COPYIN) \
18862 | (1u << PRAGMA_OMP_CLAUSE_REDUCTION) \
18863 | (1u << PRAGMA_OMP_CLAUSE_NUM_THREADS))
18864
18865 static tree
18866 cp_parser_omp_parallel (cp_parser *parser, cp_token *pragma_tok)
18867 {
18868 enum pragma_kind p_kind = PRAGMA_OMP_PARALLEL;
18869 const char *p_name = "#pragma omp parallel";
18870 tree stmt, clauses, par_clause, ws_clause, block;
18871 unsigned int mask = OMP_PARALLEL_CLAUSE_MASK;
18872 unsigned int save;
18873
18874 if (cp_lexer_next_token_is_keyword (parser->lexer, RID_FOR))
18875 {
18876 cp_lexer_consume_token (parser->lexer);
18877 p_kind = PRAGMA_OMP_PARALLEL_FOR;
18878 p_name = "#pragma omp parallel for";
18879 mask |= OMP_FOR_CLAUSE_MASK;
18880 mask &= ~(1u << PRAGMA_OMP_CLAUSE_NOWAIT);
18881 }
18882 else if (cp_lexer_next_token_is (parser->lexer, CPP_NAME))
18883 {
18884 tree id = cp_lexer_peek_token (parser->lexer)->value;
18885 const char *p = IDENTIFIER_POINTER (id);
18886 if (strcmp (p, "sections") == 0)
18887 {
18888 cp_lexer_consume_token (parser->lexer);
18889 p_kind = PRAGMA_OMP_PARALLEL_SECTIONS;
18890 p_name = "#pragma omp parallel sections";
18891 mask |= OMP_SECTIONS_CLAUSE_MASK;
18892 mask &= ~(1u << PRAGMA_OMP_CLAUSE_NOWAIT);
18893 }
18894 }
18895
18896 clauses = cp_parser_omp_all_clauses (parser, mask, p_name, pragma_tok);
18897 block = begin_omp_parallel ();
18898 save = cp_parser_begin_omp_structured_block (parser);
18899
18900 switch (p_kind)
18901 {
18902 case PRAGMA_OMP_PARALLEL:
18903 cp_parser_already_scoped_statement (parser);
18904 par_clause = clauses;
18905 break;
18906
18907 case PRAGMA_OMP_PARALLEL_FOR:
18908 c_split_parallel_clauses (clauses, &par_clause, &ws_clause);
18909 stmt = cp_parser_omp_for_loop (parser);
18910 if (stmt)
18911 OMP_FOR_CLAUSES (stmt) = ws_clause;
18912 break;
18913
18914 case PRAGMA_OMP_PARALLEL_SECTIONS:
18915 c_split_parallel_clauses (clauses, &par_clause, &ws_clause);
18916 stmt = cp_parser_omp_sections_scope (parser);
18917 if (stmt)
18918 OMP_SECTIONS_CLAUSES (stmt) = ws_clause;
18919 break;
18920
18921 default:
18922 gcc_unreachable ();
18923 }
18924
18925 cp_parser_end_omp_structured_block (parser, save);
18926 stmt = finish_omp_parallel (par_clause, block);
18927 if (p_kind != PRAGMA_OMP_PARALLEL)
18928 OMP_PARALLEL_COMBINED (stmt) = 1;
18929 return stmt;
18930 }
18931
18932 /* OpenMP 2.5:
18933 # pragma omp single single-clause[optseq] new-line
18934 structured-block */
18935
18936 #define OMP_SINGLE_CLAUSE_MASK \
18937 ( (1u << PRAGMA_OMP_CLAUSE_PRIVATE) \
18938 | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
18939 | (1u << PRAGMA_OMP_CLAUSE_COPYPRIVATE) \
18940 | (1u << PRAGMA_OMP_CLAUSE_NOWAIT))
18941
18942 static tree
18943 cp_parser_omp_single (cp_parser *parser, cp_token *pragma_tok)
18944 {
18945 tree stmt = make_node (OMP_SINGLE);
18946 TREE_TYPE (stmt) = void_type_node;
18947
18948 OMP_SINGLE_CLAUSES (stmt)
18949 = cp_parser_omp_all_clauses (parser, OMP_SINGLE_CLAUSE_MASK,
18950 "#pragma omp single", pragma_tok);
18951 OMP_SINGLE_BODY (stmt) = cp_parser_omp_structured_block (parser);
18952
18953 return add_stmt (stmt);
18954 }
18955
18956 /* OpenMP 2.5:
18957 # pragma omp threadprivate (variable-list) */
18958
18959 static void
18960 cp_parser_omp_threadprivate (cp_parser *parser, cp_token *pragma_tok)
18961 {
18962 tree vars;
18963
18964 vars = cp_parser_omp_var_list (parser, 0, NULL);
18965 cp_parser_require_pragma_eol (parser, pragma_tok);
18966
18967 if (!targetm.have_tls)
18968 sorry ("threadprivate variables not supported in this target");
18969
18970 finish_omp_threadprivate (vars);
18971 }
18972
18973 /* Main entry point to OpenMP statement pragmas. */
18974
18975 static void
18976 cp_parser_omp_construct (cp_parser *parser, cp_token *pragma_tok)
18977 {
18978 tree stmt;
18979
18980 switch (pragma_tok->pragma_kind)
18981 {
18982 case PRAGMA_OMP_ATOMIC:
18983 cp_parser_omp_atomic (parser, pragma_tok);
18984 return;
18985 case PRAGMA_OMP_CRITICAL:
18986 stmt = cp_parser_omp_critical (parser, pragma_tok);
18987 break;
18988 case PRAGMA_OMP_FOR:
18989 stmt = cp_parser_omp_for (parser, pragma_tok);
18990 break;
18991 case PRAGMA_OMP_MASTER:
18992 stmt = cp_parser_omp_master (parser, pragma_tok);
18993 break;
18994 case PRAGMA_OMP_ORDERED:
18995 stmt = cp_parser_omp_ordered (parser, pragma_tok);
18996 break;
18997 case PRAGMA_OMP_PARALLEL:
18998 stmt = cp_parser_omp_parallel (parser, pragma_tok);
18999 break;
19000 case PRAGMA_OMP_SECTIONS:
19001 stmt = cp_parser_omp_sections (parser, pragma_tok);
19002 break;
19003 case PRAGMA_OMP_SINGLE:
19004 stmt = cp_parser_omp_single (parser, pragma_tok);
19005 break;
19006 default:
19007 gcc_unreachable ();
19008 }
19009
19010 if (stmt)
19011 SET_EXPR_LOCATION (stmt, pragma_tok->location);
19012 }
19013 \f
19014 /* The parser. */
19015
19016 static GTY (()) cp_parser *the_parser;
19017
19018 \f
19019 /* Special handling for the first token or line in the file. The first
19020 thing in the file might be #pragma GCC pch_preprocess, which loads a
19021 PCH file, which is a GC collection point. So we need to handle this
19022 first pragma without benefit of an existing lexer structure.
19023
19024 Always returns one token to the caller in *FIRST_TOKEN. This is
19025 either the true first token of the file, or the first token after
19026 the initial pragma. */
19027
19028 static void
19029 cp_parser_initial_pragma (cp_token *first_token)
19030 {
19031 tree name = NULL;
19032
19033 cp_lexer_get_preprocessor_token (NULL, first_token);
19034 if (first_token->pragma_kind != PRAGMA_GCC_PCH_PREPROCESS)
19035 return;
19036
19037 cp_lexer_get_preprocessor_token (NULL, first_token);
19038 if (first_token->type == CPP_STRING)
19039 {
19040 name = first_token->value;
19041
19042 cp_lexer_get_preprocessor_token (NULL, first_token);
19043 if (first_token->type != CPP_PRAGMA_EOL)
19044 error ("junk at end of %<#pragma GCC pch_preprocess%>");
19045 }
19046 else
19047 error ("expected string literal");
19048
19049 /* Skip to the end of the pragma. */
19050 while (first_token->type != CPP_PRAGMA_EOL && first_token->type != CPP_EOF)
19051 cp_lexer_get_preprocessor_token (NULL, first_token);
19052
19053 /* Now actually load the PCH file. */
19054 if (name)
19055 c_common_pch_pragma (parse_in, TREE_STRING_POINTER (name));
19056
19057 /* Read one more token to return to our caller. We have to do this
19058 after reading the PCH file in, since its pointers have to be
19059 live. */
19060 cp_lexer_get_preprocessor_token (NULL, first_token);
19061 }
19062
19063 /* Normal parsing of a pragma token. Here we can (and must) use the
19064 regular lexer. */
19065
19066 static bool
19067 cp_parser_pragma (cp_parser *parser, enum pragma_context context)
19068 {
19069 cp_token *pragma_tok;
19070 unsigned int id;
19071
19072 pragma_tok = cp_lexer_consume_token (parser->lexer);
19073 gcc_assert (pragma_tok->type == CPP_PRAGMA);
19074 parser->lexer->in_pragma = true;
19075
19076 id = pragma_tok->pragma_kind;
19077 switch (id)
19078 {
19079 case PRAGMA_GCC_PCH_PREPROCESS:
19080 error ("%<#pragma GCC pch_preprocess%> must be first");
19081 break;
19082
19083 case PRAGMA_OMP_BARRIER:
19084 switch (context)
19085 {
19086 case pragma_compound:
19087 cp_parser_omp_barrier (parser, pragma_tok);
19088 return false;
19089 case pragma_stmt:
19090 error ("%<#pragma omp barrier%> may only be "
19091 "used in compound statements");
19092 break;
19093 default:
19094 goto bad_stmt;
19095 }
19096 break;
19097
19098 case PRAGMA_OMP_FLUSH:
19099 switch (context)
19100 {
19101 case pragma_compound:
19102 cp_parser_omp_flush (parser, pragma_tok);
19103 return false;
19104 case pragma_stmt:
19105 error ("%<#pragma omp flush%> may only be "
19106 "used in compound statements");
19107 break;
19108 default:
19109 goto bad_stmt;
19110 }
19111 break;
19112
19113 case PRAGMA_OMP_THREADPRIVATE:
19114 cp_parser_omp_threadprivate (parser, pragma_tok);
19115 return false;
19116
19117 case PRAGMA_OMP_ATOMIC:
19118 case PRAGMA_OMP_CRITICAL:
19119 case PRAGMA_OMP_FOR:
19120 case PRAGMA_OMP_MASTER:
19121 case PRAGMA_OMP_ORDERED:
19122 case PRAGMA_OMP_PARALLEL:
19123 case PRAGMA_OMP_SECTIONS:
19124 case PRAGMA_OMP_SINGLE:
19125 if (context == pragma_external)
19126 goto bad_stmt;
19127 cp_parser_omp_construct (parser, pragma_tok);
19128 return true;
19129
19130 case PRAGMA_OMP_SECTION:
19131 error ("%<#pragma omp section%> may only be used in "
19132 "%<#pragma omp sections%> construct");
19133 break;
19134
19135 default:
19136 gcc_assert (id >= PRAGMA_FIRST_EXTERNAL);
19137 c_invoke_pragma_handler (id);
19138 break;
19139
19140 bad_stmt:
19141 cp_parser_error (parser, "expected declaration specifiers");
19142 break;
19143 }
19144
19145 cp_parser_skip_to_pragma_eol (parser, pragma_tok);
19146 return false;
19147 }
19148
19149 /* The interface the pragma parsers have to the lexer. */
19150
19151 enum cpp_ttype
19152 pragma_lex (tree *value)
19153 {
19154 cp_token *tok;
19155 enum cpp_ttype ret;
19156
19157 tok = cp_lexer_peek_token (the_parser->lexer);
19158
19159 ret = tok->type;
19160 *value = tok->value;
19161
19162 if (ret == CPP_PRAGMA_EOL || ret == CPP_EOF)
19163 ret = CPP_EOF;
19164 else if (ret == CPP_STRING)
19165 *value = cp_parser_string_literal (the_parser, false, false);
19166 else
19167 {
19168 cp_lexer_consume_token (the_parser->lexer);
19169 if (ret == CPP_KEYWORD)
19170 ret = CPP_NAME;
19171 }
19172
19173 return ret;
19174 }
19175
19176 \f
19177 /* External interface. */
19178
19179 /* Parse one entire translation unit. */
19180
19181 void
19182 c_parse_file (void)
19183 {
19184 bool error_occurred;
19185 static bool already_called = false;
19186
19187 if (already_called)
19188 {
19189 sorry ("inter-module optimizations not implemented for C++");
19190 return;
19191 }
19192 already_called = true;
19193
19194 the_parser = cp_parser_new ();
19195 push_deferring_access_checks (flag_access_control
19196 ? dk_no_deferred : dk_no_check);
19197 error_occurred = cp_parser_translation_unit (the_parser);
19198 the_parser = NULL;
19199 }
19200
19201 /* This variable must be provided by every front end. */
19202
19203 int yydebug;
19204
19205 #include "gt-cp-parser.h"