2 Copyright (C) 2000, 2001, 2002, 2003, 2004,
3 2005 Free Software Foundation, Inc.
4 Written by Mark Mitchell <mark@codesourcery.com>.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 GCC is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING. If not, write to the Free
20 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
25 #include "coretypes.h"
27 #include "dyn-string.h"
35 #include "diagnostic.h"
45 /* The cp_lexer_* routines mediate between the lexer proper (in libcpp
46 and c-lex.c) and the C++ parser. */
50 typedef struct cp_token
GTY (())
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;
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 value associated with this token, if any. */
71 /* The location at which this token was found. */
75 /* We use a stack of token pointer for saving token sets. */
76 typedef struct cp_token
*cp_token_position
;
77 DEF_VEC_P (cp_token_position
);
78 DEF_VEC_ALLOC_P (cp_token_position
,heap
);
80 static const cp_token eof_token
=
82 CPP_EOF
, RID_MAX
, 0, PRAGMA_NONE
, 0, 0, false, NULL_TREE
,
83 #if USE_MAPPED_LOCATION
90 /* The cp_lexer structure represents the C++ lexer. It is responsible
91 for managing the token stream from the preprocessor and supplying
92 it to the parser. Tokens are never added to the cp_lexer after
95 typedef struct cp_lexer
GTY (())
97 /* The memory allocated for the buffer. NULL if this lexer does not
98 own the token buffer. */
99 cp_token
* GTY ((length ("%h.buffer_length"))) buffer
;
100 /* If the lexer owns the buffer, this is the number of tokens in the
102 size_t buffer_length
;
104 /* A pointer just past the last available token. The tokens
105 in this lexer are [buffer, last_token). */
106 cp_token_position
GTY ((skip
)) last_token
;
108 /* The next available token. If NEXT_TOKEN is &eof_token, then there are
109 no more available tokens. */
110 cp_token_position
GTY ((skip
)) next_token
;
112 /* A stack indicating positions at which cp_lexer_save_tokens was
113 called. The top entry is the most recent position at which we
114 began saving tokens. If the stack is non-empty, we are saving
116 VEC(cp_token_position
,heap
) *GTY ((skip
)) saved_tokens
;
118 /* The next lexer in a linked list of lexers. */
119 struct cp_lexer
*next
;
121 /* True if we should output debugging information. */
124 /* True if we're in the context of parsing a pragma, and should not
125 increment past the end-of-line marker. */
129 /* cp_token_cache is a range of tokens. There is no need to represent
130 allocate heap memory for it, since tokens are never removed from the
131 lexer's array. There is also no need for the GC to walk through
132 a cp_token_cache, since everything in here is referenced through
135 typedef struct cp_token_cache
GTY(())
137 /* The beginning of the token range. */
138 cp_token
* GTY((skip
)) first
;
140 /* Points immediately after the last token in the range. */
141 cp_token
* GTY ((skip
)) last
;
146 static cp_lexer
*cp_lexer_new_main
148 static cp_lexer
*cp_lexer_new_from_tokens
149 (cp_token_cache
*tokens
);
150 static void cp_lexer_destroy
152 static int cp_lexer_saving_tokens
154 static cp_token_position cp_lexer_token_position
156 static cp_token
*cp_lexer_token_at
157 (cp_lexer
*, cp_token_position
);
158 static void cp_lexer_get_preprocessor_token
159 (cp_lexer
*, cp_token
*);
160 static inline cp_token
*cp_lexer_peek_token
162 static cp_token
*cp_lexer_peek_nth_token
163 (cp_lexer
*, size_t);
164 static inline bool cp_lexer_next_token_is
165 (cp_lexer
*, enum cpp_ttype
);
166 static bool cp_lexer_next_token_is_not
167 (cp_lexer
*, enum cpp_ttype
);
168 static bool cp_lexer_next_token_is_keyword
169 (cp_lexer
*, enum rid
);
170 static cp_token
*cp_lexer_consume_token
172 static void cp_lexer_purge_token
174 static void cp_lexer_purge_tokens_after
175 (cp_lexer
*, cp_token_position
);
176 static void cp_lexer_save_tokens
178 static void cp_lexer_commit_tokens
180 static void cp_lexer_rollback_tokens
182 #ifdef ENABLE_CHECKING
183 static void cp_lexer_print_token
184 (FILE *, cp_token
*);
185 static inline bool cp_lexer_debugging_p
187 static void cp_lexer_start_debugging
188 (cp_lexer
*) ATTRIBUTE_UNUSED
;
189 static void cp_lexer_stop_debugging
190 (cp_lexer
*) ATTRIBUTE_UNUSED
;
192 /* If we define cp_lexer_debug_stream to NULL it will provoke warnings
193 about passing NULL to functions that require non-NULL arguments
194 (fputs, fprintf). It will never be used, so all we need is a value
195 of the right type that's guaranteed not to be NULL. */
196 #define cp_lexer_debug_stream stdout
197 #define cp_lexer_print_token(str, tok) (void) 0
198 #define cp_lexer_debugging_p(lexer) 0
199 #endif /* ENABLE_CHECKING */
201 static cp_token_cache
*cp_token_cache_new
202 (cp_token
*, cp_token
*);
204 static void cp_parser_initial_pragma
207 /* Manifest constants. */
208 #define CP_LEXER_BUFFER_SIZE ((256 * 1024) / sizeof (cp_token))
209 #define CP_SAVED_TOKEN_STACK 5
211 /* A token type for keywords, as opposed to ordinary identifiers. */
212 #define CPP_KEYWORD ((enum cpp_ttype) (N_TTYPES + 1))
214 /* A token type for template-ids. If a template-id is processed while
215 parsing tentatively, it is replaced with a CPP_TEMPLATE_ID token;
216 the value of the CPP_TEMPLATE_ID is whatever was returned by
217 cp_parser_template_id. */
218 #define CPP_TEMPLATE_ID ((enum cpp_ttype) (CPP_KEYWORD + 1))
220 /* A token type for nested-name-specifiers. If a
221 nested-name-specifier is processed while parsing tentatively, it is
222 replaced with a CPP_NESTED_NAME_SPECIFIER token; the value of the
223 CPP_NESTED_NAME_SPECIFIER is whatever was returned by
224 cp_parser_nested_name_specifier_opt. */
225 #define CPP_NESTED_NAME_SPECIFIER ((enum cpp_ttype) (CPP_TEMPLATE_ID + 1))
227 /* A token type for tokens that are not tokens at all; these are used
228 to represent slots in the array where there used to be a token
229 that has now been deleted. */
230 #define CPP_PURGED ((enum cpp_ttype) (CPP_NESTED_NAME_SPECIFIER + 1))
232 /* The number of token types, including C++-specific ones. */
233 #define N_CP_TTYPES ((int) (CPP_PURGED + 1))
237 #ifdef ENABLE_CHECKING
238 /* The stream to which debugging output should be written. */
239 static FILE *cp_lexer_debug_stream
;
240 #endif /* ENABLE_CHECKING */
242 /* Create a new main C++ lexer, the lexer that gets tokens from the
246 cp_lexer_new_main (void)
248 cp_token first_token
;
255 /* It's possible that parsing the first pragma will load a PCH file,
256 which is a GC collection point. So we have to do that before
257 allocating any memory. */
258 cp_parser_initial_pragma (&first_token
);
260 /* Tell c_lex_with_flags not to merge string constants. */
261 c_lex_return_raw_strings
= true;
263 c_common_no_more_pch ();
265 /* Allocate the memory. */
266 lexer
= GGC_CNEW (cp_lexer
);
268 #ifdef ENABLE_CHECKING
269 /* Initially we are not debugging. */
270 lexer
->debugging_p
= false;
271 #endif /* ENABLE_CHECKING */
272 lexer
->saved_tokens
= VEC_alloc (cp_token_position
, heap
,
273 CP_SAVED_TOKEN_STACK
);
275 /* Create the buffer. */
276 alloc
= CP_LEXER_BUFFER_SIZE
;
277 buffer
= GGC_NEWVEC (cp_token
, alloc
);
279 /* Put the first token in the buffer. */
284 /* Get the remaining tokens from the preprocessor. */
285 while (pos
->type
!= CPP_EOF
)
292 buffer
= GGC_RESIZEVEC (cp_token
, buffer
, alloc
);
293 pos
= buffer
+ space
;
295 cp_lexer_get_preprocessor_token (lexer
, pos
);
297 lexer
->buffer
= buffer
;
298 lexer
->buffer_length
= alloc
- space
;
299 lexer
->last_token
= pos
;
300 lexer
->next_token
= lexer
->buffer_length
? buffer
: (cp_token
*)&eof_token
;
302 /* Subsequent preprocessor diagnostics should use compiler
303 diagnostic functions to get the compiler source location. */
304 cpp_get_options (parse_in
)->client_diagnostic
= true;
305 cpp_get_callbacks (parse_in
)->error
= cp_cpp_error
;
307 gcc_assert (lexer
->next_token
->type
!= CPP_PURGED
);
311 /* Create a new lexer whose token stream is primed with the tokens in
312 CACHE. When these tokens are exhausted, no new tokens will be read. */
315 cp_lexer_new_from_tokens (cp_token_cache
*cache
)
317 cp_token
*first
= cache
->first
;
318 cp_token
*last
= cache
->last
;
319 cp_lexer
*lexer
= GGC_CNEW (cp_lexer
);
321 /* We do not own the buffer. */
322 lexer
->buffer
= NULL
;
323 lexer
->buffer_length
= 0;
324 lexer
->next_token
= first
== last
? (cp_token
*)&eof_token
: first
;
325 lexer
->last_token
= last
;
327 lexer
->saved_tokens
= VEC_alloc (cp_token_position
, heap
,
328 CP_SAVED_TOKEN_STACK
);
330 #ifdef ENABLE_CHECKING
331 /* Initially we are not debugging. */
332 lexer
->debugging_p
= false;
335 gcc_assert (lexer
->next_token
->type
!= CPP_PURGED
);
339 /* Frees all resources associated with LEXER. */
342 cp_lexer_destroy (cp_lexer
*lexer
)
345 ggc_free (lexer
->buffer
);
346 VEC_free (cp_token_position
, heap
, lexer
->saved_tokens
);
350 /* Returns nonzero if debugging information should be output. */
352 #ifdef ENABLE_CHECKING
355 cp_lexer_debugging_p (cp_lexer
*lexer
)
357 return lexer
->debugging_p
;
360 #endif /* ENABLE_CHECKING */
362 static inline cp_token_position
363 cp_lexer_token_position (cp_lexer
*lexer
, bool previous_p
)
365 gcc_assert (!previous_p
|| lexer
->next_token
!= &eof_token
);
367 return lexer
->next_token
- previous_p
;
370 static inline cp_token
*
371 cp_lexer_token_at (cp_lexer
*lexer ATTRIBUTE_UNUSED
, cp_token_position pos
)
376 /* nonzero if we are presently saving tokens. */
379 cp_lexer_saving_tokens (const cp_lexer
* lexer
)
381 return VEC_length (cp_token_position
, lexer
->saved_tokens
) != 0;
384 /* Store the next token from the preprocessor in *TOKEN. Return true
388 cp_lexer_get_preprocessor_token (cp_lexer
*lexer ATTRIBUTE_UNUSED
,
391 static int is_extern_c
= 0;
393 /* Get a new token from the preprocessor. */
395 = c_lex_with_flags (&token
->value
, &token
->location
, &token
->flags
);
396 token
->keyword
= RID_MAX
;
397 token
->pragma_kind
= PRAGMA_NONE
;
398 token
->in_system_header
= in_system_header
;
400 /* On some systems, some header files are surrounded by an
401 implicit extern "C" block. Set a flag in the token if it
402 comes from such a header. */
403 is_extern_c
+= pending_lang_change
;
404 pending_lang_change
= 0;
405 token
->implicit_extern_c
= is_extern_c
> 0;
407 /* Check to see if this token is a keyword. */
408 if (token
->type
== CPP_NAME
)
410 if (C_IS_RESERVED_WORD (token
->value
))
412 /* Mark this token as a keyword. */
413 token
->type
= CPP_KEYWORD
;
414 /* Record which keyword. */
415 token
->keyword
= C_RID_CODE (token
->value
);
416 /* Update the value. Some keywords are mapped to particular
417 entities, rather than simply having the value of the
418 corresponding IDENTIFIER_NODE. For example, `__const' is
419 mapped to `const'. */
420 token
->value
= ridpointers
[token
->keyword
];
424 token
->ambiguous_p
= false;
425 token
->keyword
= RID_MAX
;
428 /* Handle Objective-C++ keywords. */
429 else if (token
->type
== CPP_AT_NAME
)
431 token
->type
= CPP_KEYWORD
;
432 switch (C_RID_CODE (token
->value
))
434 /* Map 'class' to '@class', 'private' to '@private', etc. */
435 case RID_CLASS
: token
->keyword
= RID_AT_CLASS
; break;
436 case RID_PRIVATE
: token
->keyword
= RID_AT_PRIVATE
; break;
437 case RID_PROTECTED
: token
->keyword
= RID_AT_PROTECTED
; break;
438 case RID_PUBLIC
: token
->keyword
= RID_AT_PUBLIC
; break;
439 case RID_THROW
: token
->keyword
= RID_AT_THROW
; break;
440 case RID_TRY
: token
->keyword
= RID_AT_TRY
; break;
441 case RID_CATCH
: token
->keyword
= RID_AT_CATCH
; break;
442 default: token
->keyword
= C_RID_CODE (token
->value
);
445 else if (token
->type
== CPP_PRAGMA
)
447 /* We smuggled the cpp_token->u.pragma value in an INTEGER_CST. */
448 token
->pragma_kind
= TREE_INT_CST_LOW (token
->value
);
453 /* Update the globals input_location and in_system_header from TOKEN. */
455 cp_lexer_set_source_position_from_token (cp_token
*token
)
457 if (token
->type
!= CPP_EOF
)
459 input_location
= token
->location
;
460 in_system_header
= token
->in_system_header
;
464 /* Return a pointer to the next token in the token stream, but do not
467 static inline cp_token
*
468 cp_lexer_peek_token (cp_lexer
*lexer
)
470 if (cp_lexer_debugging_p (lexer
))
472 fputs ("cp_lexer: peeking at token: ", cp_lexer_debug_stream
);
473 cp_lexer_print_token (cp_lexer_debug_stream
, lexer
->next_token
);
474 putc ('\n', cp_lexer_debug_stream
);
476 return lexer
->next_token
;
479 /* Return true if the next token has the indicated TYPE. */
482 cp_lexer_next_token_is (cp_lexer
* lexer
, enum cpp_ttype type
)
484 return cp_lexer_peek_token (lexer
)->type
== type
;
487 /* Return true if the next token does not have the indicated TYPE. */
490 cp_lexer_next_token_is_not (cp_lexer
* lexer
, enum cpp_ttype type
)
492 return !cp_lexer_next_token_is (lexer
, type
);
495 /* Return true if the next token is the indicated KEYWORD. */
498 cp_lexer_next_token_is_keyword (cp_lexer
* lexer
, enum rid keyword
)
500 return cp_lexer_peek_token (lexer
)->keyword
== keyword
;
503 /* Return a pointer to the Nth token in the token stream. If N is 1,
504 then this is precisely equivalent to cp_lexer_peek_token (except
505 that it is not inline). One would like to disallow that case, but
506 there is one case (cp_parser_nth_token_starts_template_id) where
507 the caller passes a variable for N and it might be 1. */
510 cp_lexer_peek_nth_token (cp_lexer
* lexer
, size_t n
)
514 /* N is 1-based, not zero-based. */
517 if (cp_lexer_debugging_p (lexer
))
518 fprintf (cp_lexer_debug_stream
,
519 "cp_lexer: peeking ahead %ld at token: ", (long)n
);
522 token
= lexer
->next_token
;
523 gcc_assert (!n
|| token
!= &eof_token
);
527 if (token
== lexer
->last_token
)
529 token
= (cp_token
*)&eof_token
;
533 if (token
->type
!= CPP_PURGED
)
537 if (cp_lexer_debugging_p (lexer
))
539 cp_lexer_print_token (cp_lexer_debug_stream
, token
);
540 putc ('\n', cp_lexer_debug_stream
);
546 /* Return the next token, and advance the lexer's next_token pointer
547 to point to the next non-purged token. */
550 cp_lexer_consume_token (cp_lexer
* lexer
)
552 cp_token
*token
= lexer
->next_token
;
554 gcc_assert (token
!= &eof_token
);
555 gcc_assert (!lexer
->in_pragma
|| token
->type
!= CPP_PRAGMA_EOL
);
560 if (lexer
->next_token
== lexer
->last_token
)
562 lexer
->next_token
= (cp_token
*)&eof_token
;
567 while (lexer
->next_token
->type
== CPP_PURGED
);
569 cp_lexer_set_source_position_from_token (token
);
571 /* Provide debugging output. */
572 if (cp_lexer_debugging_p (lexer
))
574 fputs ("cp_lexer: consuming token: ", cp_lexer_debug_stream
);
575 cp_lexer_print_token (cp_lexer_debug_stream
, token
);
576 putc ('\n', cp_lexer_debug_stream
);
582 /* Permanently remove the next token from the token stream, and
583 advance the next_token pointer to refer to the next non-purged
587 cp_lexer_purge_token (cp_lexer
*lexer
)
589 cp_token
*tok
= lexer
->next_token
;
591 gcc_assert (tok
!= &eof_token
);
592 tok
->type
= CPP_PURGED
;
593 tok
->location
= UNKNOWN_LOCATION
;
594 tok
->value
= NULL_TREE
;
595 tok
->keyword
= RID_MAX
;
600 if (tok
== lexer
->last_token
)
602 tok
= (cp_token
*)&eof_token
;
606 while (tok
->type
== CPP_PURGED
);
607 lexer
->next_token
= tok
;
610 /* Permanently remove all tokens after TOK, up to, but not
611 including, the token that will be returned next by
612 cp_lexer_peek_token. */
615 cp_lexer_purge_tokens_after (cp_lexer
*lexer
, cp_token
*tok
)
617 cp_token
*peek
= lexer
->next_token
;
619 if (peek
== &eof_token
)
620 peek
= lexer
->last_token
;
622 gcc_assert (tok
< peek
);
624 for ( tok
+= 1; tok
!= peek
; tok
+= 1)
626 tok
->type
= CPP_PURGED
;
627 tok
->location
= UNKNOWN_LOCATION
;
628 tok
->value
= NULL_TREE
;
629 tok
->keyword
= RID_MAX
;
633 /* Begin saving tokens. All tokens consumed after this point will be
637 cp_lexer_save_tokens (cp_lexer
* lexer
)
639 /* Provide debugging output. */
640 if (cp_lexer_debugging_p (lexer
))
641 fprintf (cp_lexer_debug_stream
, "cp_lexer: saving tokens\n");
643 VEC_safe_push (cp_token_position
, heap
,
644 lexer
->saved_tokens
, lexer
->next_token
);
647 /* Commit to the portion of the token stream most recently saved. */
650 cp_lexer_commit_tokens (cp_lexer
* lexer
)
652 /* Provide debugging output. */
653 if (cp_lexer_debugging_p (lexer
))
654 fprintf (cp_lexer_debug_stream
, "cp_lexer: committing tokens\n");
656 VEC_pop (cp_token_position
, lexer
->saved_tokens
);
659 /* Return all tokens saved since the last call to cp_lexer_save_tokens
660 to the token stream. Stop saving tokens. */
663 cp_lexer_rollback_tokens (cp_lexer
* lexer
)
665 /* Provide debugging output. */
666 if (cp_lexer_debugging_p (lexer
))
667 fprintf (cp_lexer_debug_stream
, "cp_lexer: restoring tokens\n");
669 lexer
->next_token
= VEC_pop (cp_token_position
, lexer
->saved_tokens
);
672 /* Print a representation of the TOKEN on the STREAM. */
674 #ifdef ENABLE_CHECKING
677 cp_lexer_print_token (FILE * stream
, cp_token
*token
)
679 /* We don't use cpp_type2name here because the parser defines
680 a few tokens of its own. */
681 static const char *const token_names
[] = {
682 /* cpplib-defined token types */
688 /* C++ parser token types - see "Manifest constants", above. */
691 "NESTED_NAME_SPECIFIER",
695 /* If we have a name for the token, print it out. Otherwise, we
696 simply give the numeric code. */
697 gcc_assert (token
->type
< ARRAY_SIZE(token_names
));
698 fputs (token_names
[token
->type
], stream
);
700 /* For some tokens, print the associated data. */
704 /* Some keywords have a value that is not an IDENTIFIER_NODE.
705 For example, `struct' is mapped to an INTEGER_CST. */
706 if (TREE_CODE (token
->value
) != IDENTIFIER_NODE
)
708 /* else fall through */
710 fputs (IDENTIFIER_POINTER (token
->value
), stream
);
715 fprintf (stream
, " \"%s\"", TREE_STRING_POINTER (token
->value
));
723 /* Start emitting debugging information. */
726 cp_lexer_start_debugging (cp_lexer
* lexer
)
728 lexer
->debugging_p
= true;
731 /* Stop emitting debugging information. */
734 cp_lexer_stop_debugging (cp_lexer
* lexer
)
736 lexer
->debugging_p
= false;
739 #endif /* ENABLE_CHECKING */
741 /* Create a new cp_token_cache, representing a range of tokens. */
743 static cp_token_cache
*
744 cp_token_cache_new (cp_token
*first
, cp_token
*last
)
746 cp_token_cache
*cache
= GGC_NEW (cp_token_cache
);
747 cache
->first
= first
;
753 /* Decl-specifiers. */
755 /* Set *DECL_SPECS to represent an empty decl-specifier-seq. */
758 clear_decl_specs (cp_decl_specifier_seq
*decl_specs
)
760 memset (decl_specs
, 0, sizeof (cp_decl_specifier_seq
));
765 /* Nothing other than the parser should be creating declarators;
766 declarators are a semi-syntactic representation of C++ entities.
767 Other parts of the front end that need to create entities (like
768 VAR_DECLs or FUNCTION_DECLs) should do that directly. */
770 static cp_declarator
*make_call_declarator
771 (cp_declarator
*, cp_parameter_declarator
*, cp_cv_quals
, tree
);
772 static cp_declarator
*make_array_declarator
773 (cp_declarator
*, tree
);
774 static cp_declarator
*make_pointer_declarator
775 (cp_cv_quals
, cp_declarator
*);
776 static cp_declarator
*make_reference_declarator
777 (cp_cv_quals
, cp_declarator
*);
778 static cp_parameter_declarator
*make_parameter_declarator
779 (cp_decl_specifier_seq
*, cp_declarator
*, tree
);
780 static cp_declarator
*make_ptrmem_declarator
781 (cp_cv_quals
, tree
, cp_declarator
*);
783 /* An erroneous declarator. */
784 static cp_declarator
*cp_error_declarator
;
786 /* The obstack on which declarators and related data structures are
788 static struct obstack declarator_obstack
;
790 /* Alloc BYTES from the declarator memory pool. */
793 alloc_declarator (size_t bytes
)
795 return obstack_alloc (&declarator_obstack
, bytes
);
798 /* Allocate a declarator of the indicated KIND. Clear fields that are
799 common to all declarators. */
801 static cp_declarator
*
802 make_declarator (cp_declarator_kind kind
)
804 cp_declarator
*declarator
;
806 declarator
= (cp_declarator
*) alloc_declarator (sizeof (cp_declarator
));
807 declarator
->kind
= kind
;
808 declarator
->attributes
= NULL_TREE
;
809 declarator
->declarator
= NULL
;
814 /* Make a declarator for a generalized identifier. If
815 QUALIFYING_SCOPE is non-NULL, the identifier is
816 QUALIFYING_SCOPE::UNQUALIFIED_NAME; otherwise, it is just
817 UNQUALIFIED_NAME. SFK indicates the kind of special function this
820 static cp_declarator
*
821 make_id_declarator (tree qualifying_scope
, tree unqualified_name
,
822 special_function_kind sfk
)
824 cp_declarator
*declarator
;
826 /* It is valid to write:
828 class C { void f(); };
832 The standard is not clear about whether `typedef const C D' is
833 legal; as of 2002-09-15 the committee is considering that
834 question. EDG 3.0 allows that syntax. Therefore, we do as
836 if (qualifying_scope
&& TYPE_P (qualifying_scope
))
837 qualifying_scope
= TYPE_MAIN_VARIANT (qualifying_scope
);
839 gcc_assert (TREE_CODE (unqualified_name
) == IDENTIFIER_NODE
840 || TREE_CODE (unqualified_name
) == BIT_NOT_EXPR
841 || TREE_CODE (unqualified_name
) == TEMPLATE_ID_EXPR
);
843 declarator
= make_declarator (cdk_id
);
844 declarator
->u
.id
.qualifying_scope
= qualifying_scope
;
845 declarator
->u
.id
.unqualified_name
= unqualified_name
;
846 declarator
->u
.id
.sfk
= sfk
;
851 /* Make a declarator for a pointer to TARGET. CV_QUALIFIERS is a list
852 of modifiers such as const or volatile to apply to the pointer
853 type, represented as identifiers. */
856 make_pointer_declarator (cp_cv_quals cv_qualifiers
, cp_declarator
*target
)
858 cp_declarator
*declarator
;
860 declarator
= make_declarator (cdk_pointer
);
861 declarator
->declarator
= target
;
862 declarator
->u
.pointer
.qualifiers
= cv_qualifiers
;
863 declarator
->u
.pointer
.class_type
= NULL_TREE
;
868 /* Like make_pointer_declarator -- but for references. */
871 make_reference_declarator (cp_cv_quals cv_qualifiers
, cp_declarator
*target
)
873 cp_declarator
*declarator
;
875 declarator
= make_declarator (cdk_reference
);
876 declarator
->declarator
= target
;
877 declarator
->u
.pointer
.qualifiers
= cv_qualifiers
;
878 declarator
->u
.pointer
.class_type
= NULL_TREE
;
883 /* Like make_pointer_declarator -- but for a pointer to a non-static
884 member of CLASS_TYPE. */
887 make_ptrmem_declarator (cp_cv_quals cv_qualifiers
, tree class_type
,
888 cp_declarator
*pointee
)
890 cp_declarator
*declarator
;
892 declarator
= make_declarator (cdk_ptrmem
);
893 declarator
->declarator
= pointee
;
894 declarator
->u
.pointer
.qualifiers
= cv_qualifiers
;
895 declarator
->u
.pointer
.class_type
= class_type
;
900 /* Make a declarator for the function given by TARGET, with the
901 indicated PARMS. The CV_QUALIFIERS aply to the function, as in
902 "const"-qualified member function. The EXCEPTION_SPECIFICATION
903 indicates what exceptions can be thrown. */
906 make_call_declarator (cp_declarator
*target
,
907 cp_parameter_declarator
*parms
,
908 cp_cv_quals cv_qualifiers
,
909 tree exception_specification
)
911 cp_declarator
*declarator
;
913 declarator
= make_declarator (cdk_function
);
914 declarator
->declarator
= target
;
915 declarator
->u
.function
.parameters
= parms
;
916 declarator
->u
.function
.qualifiers
= cv_qualifiers
;
917 declarator
->u
.function
.exception_specification
= exception_specification
;
922 /* Make a declarator for an array of BOUNDS elements, each of which is
923 defined by ELEMENT. */
926 make_array_declarator (cp_declarator
*element
, tree bounds
)
928 cp_declarator
*declarator
;
930 declarator
= make_declarator (cdk_array
);
931 declarator
->declarator
= element
;
932 declarator
->u
.array
.bounds
= bounds
;
937 cp_parameter_declarator
*no_parameters
;
939 /* Create a parameter declarator with the indicated DECL_SPECIFIERS,
940 DECLARATOR and DEFAULT_ARGUMENT. */
942 cp_parameter_declarator
*
943 make_parameter_declarator (cp_decl_specifier_seq
*decl_specifiers
,
944 cp_declarator
*declarator
,
945 tree default_argument
)
947 cp_parameter_declarator
*parameter
;
949 parameter
= ((cp_parameter_declarator
*)
950 alloc_declarator (sizeof (cp_parameter_declarator
)));
951 parameter
->next
= NULL
;
953 parameter
->decl_specifiers
= *decl_specifiers
;
955 clear_decl_specs (¶meter
->decl_specifiers
);
956 parameter
->declarator
= declarator
;
957 parameter
->default_argument
= default_argument
;
958 parameter
->ellipsis_p
= false;
968 A cp_parser parses the token stream as specified by the C++
969 grammar. Its job is purely parsing, not semantic analysis. For
970 example, the parser breaks the token stream into declarators,
971 expressions, statements, and other similar syntactic constructs.
972 It does not check that the types of the expressions on either side
973 of an assignment-statement are compatible, or that a function is
974 not declared with a parameter of type `void'.
976 The parser invokes routines elsewhere in the compiler to perform
977 semantic analysis and to build up the abstract syntax tree for the
980 The parser (and the template instantiation code, which is, in a
981 way, a close relative of parsing) are the only parts of the
982 compiler that should be calling push_scope and pop_scope, or
983 related functions. The parser (and template instantiation code)
984 keeps track of what scope is presently active; everything else
985 should simply honor that. (The code that generates static
986 initializers may also need to set the scope, in order to check
987 access control correctly when emitting the initializers.)
992 The parser is of the standard recursive-descent variety. Upcoming
993 tokens in the token stream are examined in order to determine which
994 production to use when parsing a non-terminal. Some C++ constructs
995 require arbitrary look ahead to disambiguate. For example, it is
996 impossible, in the general case, to tell whether a statement is an
997 expression or declaration without scanning the entire statement.
998 Therefore, the parser is capable of "parsing tentatively." When the
999 parser is not sure what construct comes next, it enters this mode.
1000 Then, while we attempt to parse the construct, the parser queues up
1001 error messages, rather than issuing them immediately, and saves the
1002 tokens it consumes. If the construct is parsed successfully, the
1003 parser "commits", i.e., it issues any queued error messages and
1004 the tokens that were being preserved are permanently discarded.
1005 If, however, the construct is not parsed successfully, the parser
1006 rolls back its state completely so that it can resume parsing using
1007 a different alternative.
1012 The performance of the parser could probably be improved substantially.
1013 We could often eliminate the need to parse tentatively by looking ahead
1014 a little bit. In some places, this approach might not entirely eliminate
1015 the need to parse tentatively, but it might still speed up the average
1018 /* Flags that are passed to some parsing functions. These values can
1019 be bitwise-ored together. */
1021 typedef enum cp_parser_flags
1024 CP_PARSER_FLAGS_NONE
= 0x0,
1025 /* The construct is optional. If it is not present, then no error
1026 should be issued. */
1027 CP_PARSER_FLAGS_OPTIONAL
= 0x1,
1028 /* When parsing a type-specifier, do not allow user-defined types. */
1029 CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES
= 0x2
1032 /* The different kinds of declarators we want to parse. */
1034 typedef enum cp_parser_declarator_kind
1036 /* We want an abstract declarator. */
1037 CP_PARSER_DECLARATOR_ABSTRACT
,
1038 /* We want a named declarator. */
1039 CP_PARSER_DECLARATOR_NAMED
,
1040 /* We don't mind, but the name must be an unqualified-id. */
1041 CP_PARSER_DECLARATOR_EITHER
1042 } cp_parser_declarator_kind
;
1044 /* The precedence values used to parse binary expressions. The minimum value
1045 of PREC must be 1, because zero is reserved to quickly discriminate
1046 binary operators from other tokens. */
1051 PREC_LOGICAL_OR_EXPRESSION
,
1052 PREC_LOGICAL_AND_EXPRESSION
,
1053 PREC_INCLUSIVE_OR_EXPRESSION
,
1054 PREC_EXCLUSIVE_OR_EXPRESSION
,
1055 PREC_AND_EXPRESSION
,
1056 PREC_EQUALITY_EXPRESSION
,
1057 PREC_RELATIONAL_EXPRESSION
,
1058 PREC_SHIFT_EXPRESSION
,
1059 PREC_ADDITIVE_EXPRESSION
,
1060 PREC_MULTIPLICATIVE_EXPRESSION
,
1062 NUM_PREC_VALUES
= PREC_PM_EXPRESSION
1065 /* A mapping from a token type to a corresponding tree node type, with a
1066 precedence value. */
1068 typedef struct cp_parser_binary_operations_map_node
1070 /* The token type. */
1071 enum cpp_ttype token_type
;
1072 /* The corresponding tree code. */
1073 enum tree_code tree_type
;
1074 /* The precedence of this operator. */
1075 enum cp_parser_prec prec
;
1076 } cp_parser_binary_operations_map_node
;
1078 /* The status of a tentative parse. */
1080 typedef enum cp_parser_status_kind
1082 /* No errors have occurred. */
1083 CP_PARSER_STATUS_KIND_NO_ERROR
,
1084 /* An error has occurred. */
1085 CP_PARSER_STATUS_KIND_ERROR
,
1086 /* We are committed to this tentative parse, whether or not an error
1088 CP_PARSER_STATUS_KIND_COMMITTED
1089 } cp_parser_status_kind
;
1091 typedef struct cp_parser_expression_stack_entry
1094 enum tree_code tree_type
;
1096 } cp_parser_expression_stack_entry
;
1098 /* The stack for storing partial expressions. We only need NUM_PREC_VALUES
1099 entries because precedence levels on the stack are monotonically
1101 typedef struct cp_parser_expression_stack_entry
1102 cp_parser_expression_stack
[NUM_PREC_VALUES
];
1104 /* Context that is saved and restored when parsing tentatively. */
1105 typedef struct cp_parser_context
GTY (())
1107 /* If this is a tentative parsing context, the status of the
1109 enum cp_parser_status_kind status
;
1110 /* If non-NULL, we have just seen a `x->' or `x.' expression. Names
1111 that are looked up in this context must be looked up both in the
1112 scope given by OBJECT_TYPE (the type of `x' or `*x') and also in
1113 the context of the containing expression. */
1116 /* The next parsing context in the stack. */
1117 struct cp_parser_context
*next
;
1118 } cp_parser_context
;
1122 /* Constructors and destructors. */
1124 static cp_parser_context
*cp_parser_context_new
1125 (cp_parser_context
*);
1127 /* Class variables. */
1129 static GTY((deletable
)) cp_parser_context
* cp_parser_context_free_list
;
1131 /* The operator-precedence table used by cp_parser_binary_expression.
1132 Transformed into an associative array (binops_by_token) by
1135 static const cp_parser_binary_operations_map_node binops
[] = {
1136 { CPP_DEREF_STAR
, MEMBER_REF
, PREC_PM_EXPRESSION
},
1137 { CPP_DOT_STAR
, DOTSTAR_EXPR
, PREC_PM_EXPRESSION
},
1139 { CPP_MULT
, MULT_EXPR
, PREC_MULTIPLICATIVE_EXPRESSION
},
1140 { CPP_DIV
, TRUNC_DIV_EXPR
, PREC_MULTIPLICATIVE_EXPRESSION
},
1141 { CPP_MOD
, TRUNC_MOD_EXPR
, PREC_MULTIPLICATIVE_EXPRESSION
},
1143 { CPP_PLUS
, PLUS_EXPR
, PREC_ADDITIVE_EXPRESSION
},
1144 { CPP_MINUS
, MINUS_EXPR
, PREC_ADDITIVE_EXPRESSION
},
1146 { CPP_LSHIFT
, LSHIFT_EXPR
, PREC_SHIFT_EXPRESSION
},
1147 { CPP_RSHIFT
, RSHIFT_EXPR
, PREC_SHIFT_EXPRESSION
},
1149 { CPP_LESS
, LT_EXPR
, PREC_RELATIONAL_EXPRESSION
},
1150 { CPP_GREATER
, GT_EXPR
, PREC_RELATIONAL_EXPRESSION
},
1151 { CPP_LESS_EQ
, LE_EXPR
, PREC_RELATIONAL_EXPRESSION
},
1152 { CPP_GREATER_EQ
, GE_EXPR
, PREC_RELATIONAL_EXPRESSION
},
1154 { CPP_EQ_EQ
, EQ_EXPR
, PREC_EQUALITY_EXPRESSION
},
1155 { CPP_NOT_EQ
, NE_EXPR
, PREC_EQUALITY_EXPRESSION
},
1157 { CPP_AND
, BIT_AND_EXPR
, PREC_AND_EXPRESSION
},
1159 { CPP_XOR
, BIT_XOR_EXPR
, PREC_EXCLUSIVE_OR_EXPRESSION
},
1161 { CPP_OR
, BIT_IOR_EXPR
, PREC_INCLUSIVE_OR_EXPRESSION
},
1163 { CPP_AND_AND
, TRUTH_ANDIF_EXPR
, PREC_LOGICAL_AND_EXPRESSION
},
1165 { CPP_OR_OR
, TRUTH_ORIF_EXPR
, PREC_LOGICAL_OR_EXPRESSION
}
1168 /* The same as binops, but initialized by cp_parser_new so that
1169 binops_by_token[N].token_type == N. Used in cp_parser_binary_expression
1171 static cp_parser_binary_operations_map_node binops_by_token
[N_CP_TTYPES
];
1173 /* Constructors and destructors. */
1175 /* Construct a new context. The context below this one on the stack
1176 is given by NEXT. */
1178 static cp_parser_context
*
1179 cp_parser_context_new (cp_parser_context
* next
)
1181 cp_parser_context
*context
;
1183 /* Allocate the storage. */
1184 if (cp_parser_context_free_list
!= NULL
)
1186 /* Pull the first entry from the free list. */
1187 context
= cp_parser_context_free_list
;
1188 cp_parser_context_free_list
= context
->next
;
1189 memset (context
, 0, sizeof (*context
));
1192 context
= GGC_CNEW (cp_parser_context
);
1194 /* No errors have occurred yet in this context. */
1195 context
->status
= CP_PARSER_STATUS_KIND_NO_ERROR
;
1196 /* If this is not the bottomost context, copy information that we
1197 need from the previous context. */
1200 /* If, in the NEXT context, we are parsing an `x->' or `x.'
1201 expression, then we are parsing one in this context, too. */
1202 context
->object_type
= next
->object_type
;
1203 /* Thread the stack. */
1204 context
->next
= next
;
1210 /* The cp_parser structure represents the C++ parser. */
1212 typedef struct cp_parser
GTY(())
1214 /* The lexer from which we are obtaining tokens. */
1217 /* The scope in which names should be looked up. If NULL_TREE, then
1218 we look up names in the scope that is currently open in the
1219 source program. If non-NULL, this is either a TYPE or
1220 NAMESPACE_DECL for the scope in which we should look. It can
1221 also be ERROR_MARK, when we've parsed a bogus scope.
1223 This value is not cleared automatically after a name is looked
1224 up, so we must be careful to clear it before starting a new look
1225 up sequence. (If it is not cleared, then `X::Y' followed by `Z'
1226 will look up `Z' in the scope of `X', rather than the current
1227 scope.) Unfortunately, it is difficult to tell when name lookup
1228 is complete, because we sometimes peek at a token, look it up,
1229 and then decide not to consume it. */
1232 /* OBJECT_SCOPE and QUALIFYING_SCOPE give the scopes in which the
1233 last lookup took place. OBJECT_SCOPE is used if an expression
1234 like "x->y" or "x.y" was used; it gives the type of "*x" or "x",
1235 respectively. QUALIFYING_SCOPE is used for an expression of the
1236 form "X::Y"; it refers to X. */
1238 tree qualifying_scope
;
1240 /* A stack of parsing contexts. All but the bottom entry on the
1241 stack will be tentative contexts.
1243 We parse tentatively in order to determine which construct is in
1244 use in some situations. For example, in order to determine
1245 whether a statement is an expression-statement or a
1246 declaration-statement we parse it tentatively as a
1247 declaration-statement. If that fails, we then reparse the same
1248 token stream as an expression-statement. */
1249 cp_parser_context
*context
;
1251 /* True if we are parsing GNU C++. If this flag is not set, then
1252 GNU extensions are not recognized. */
1253 bool allow_gnu_extensions_p
;
1255 /* TRUE if the `>' token should be interpreted as the greater-than
1256 operator. FALSE if it is the end of a template-id or
1257 template-parameter-list. */
1258 bool greater_than_is_operator_p
;
1260 /* TRUE if default arguments are allowed within a parameter list
1261 that starts at this point. FALSE if only a gnu extension makes
1262 them permissible. */
1263 bool default_arg_ok_p
;
1265 /* TRUE if we are parsing an integral constant-expression. See
1266 [expr.const] for a precise definition. */
1267 bool integral_constant_expression_p
;
1269 /* TRUE if we are parsing an integral constant-expression -- but a
1270 non-constant expression should be permitted as well. This flag
1271 is used when parsing an array bound so that GNU variable-length
1272 arrays are tolerated. */
1273 bool allow_non_integral_constant_expression_p
;
1275 /* TRUE if ALLOW_NON_CONSTANT_EXPRESSION_P is TRUE and something has
1276 been seen that makes the expression non-constant. */
1277 bool non_integral_constant_expression_p
;
1279 /* TRUE if local variable names and `this' are forbidden in the
1281 bool local_variables_forbidden_p
;
1283 /* TRUE if the declaration we are parsing is part of a
1284 linkage-specification of the form `extern string-literal
1286 bool in_unbraced_linkage_specification_p
;
1288 /* TRUE if we are presently parsing a declarator, after the
1289 direct-declarator. */
1290 bool in_declarator_p
;
1292 /* TRUE if we are presently parsing a template-argument-list. */
1293 bool in_template_argument_list_p
;
1295 /* Set to IN_ITERATION_STMT if parsing an iteration-statement,
1296 to IN_OMP_BLOCK if parsing OpenMP structured block and
1297 IN_OMP_FOR if parsing OpenMP loop. If parsing a switch statement,
1298 this is bitwise ORed with IN_SWITCH_STMT, unless parsing an
1299 iteration-statement, OpenMP block or loop within that switch. */
1300 #define IN_SWITCH_STMT 1
1301 #define IN_ITERATION_STMT 2
1302 #define IN_OMP_BLOCK 4
1303 #define IN_OMP_FOR 8
1304 unsigned char in_statement
;
1306 /* TRUE if we are presently parsing the body of a switch statement.
1307 Note that this doesn't quite overlap with in_statement above.
1308 The difference relates to giving the right sets of error messages:
1309 "case not in switch" vs "break statement used with OpenMP...". */
1310 bool in_switch_statement_p
;
1312 /* TRUE if we are parsing a type-id in an expression context. In
1313 such a situation, both "type (expr)" and "type (type)" are valid
1315 bool in_type_id_in_expr_p
;
1317 /* TRUE if we are currently in a header file where declarations are
1318 implicitly extern "C". */
1319 bool implicit_extern_c
;
1321 /* TRUE if strings in expressions should be translated to the execution
1323 bool translate_strings_p
;
1325 /* If non-NULL, then we are parsing a construct where new type
1326 definitions are not permitted. The string stored here will be
1327 issued as an error message if a type is defined. */
1328 const char *type_definition_forbidden_message
;
1330 /* A list of lists. The outer list is a stack, used for member
1331 functions of local classes. At each level there are two sub-list,
1332 one on TREE_VALUE and one on TREE_PURPOSE. Each of those
1333 sub-lists has a FUNCTION_DECL or TEMPLATE_DECL on their
1334 TREE_VALUE's. The functions are chained in reverse declaration
1337 The TREE_PURPOSE sublist contains those functions with default
1338 arguments that need post processing, and the TREE_VALUE sublist
1339 contains those functions with definitions that need post
1342 These lists can only be processed once the outermost class being
1343 defined is complete. */
1344 tree unparsed_functions_queues
;
1346 /* The number of classes whose definitions are currently in
1348 unsigned num_classes_being_defined
;
1350 /* The number of template parameter lists that apply directly to the
1351 current declaration. */
1352 unsigned num_template_parameter_lists
;
1357 /* Constructors and destructors. */
1359 static cp_parser
*cp_parser_new
1362 /* Routines to parse various constructs.
1364 Those that return `tree' will return the error_mark_node (rather
1365 than NULL_TREE) if a parse error occurs, unless otherwise noted.
1366 Sometimes, they will return an ordinary node if error-recovery was
1367 attempted, even though a parse error occurred. So, to check
1368 whether or not a parse error occurred, you should always use
1369 cp_parser_error_occurred. If the construct is optional (indicated
1370 either by an `_opt' in the name of the function that does the
1371 parsing or via a FLAGS parameter), then NULL_TREE is returned if
1372 the construct is not present. */
1374 /* Lexical conventions [gram.lex] */
1376 static tree cp_parser_identifier
1378 static tree cp_parser_string_literal
1379 (cp_parser
*, bool, bool);
1381 /* Basic concepts [gram.basic] */
1383 static bool cp_parser_translation_unit
1386 /* Expressions [gram.expr] */
1388 static tree cp_parser_primary_expression
1389 (cp_parser
*, bool, bool, bool, cp_id_kind
*);
1390 static tree cp_parser_id_expression
1391 (cp_parser
*, bool, bool, bool *, bool, bool);
1392 static tree cp_parser_unqualified_id
1393 (cp_parser
*, bool, bool, bool, bool);
1394 static tree cp_parser_nested_name_specifier_opt
1395 (cp_parser
*, bool, bool, bool, bool);
1396 static tree cp_parser_nested_name_specifier
1397 (cp_parser
*, bool, bool, bool, bool);
1398 static tree cp_parser_class_or_namespace_name
1399 (cp_parser
*, bool, bool, bool, bool, bool);
1400 static tree cp_parser_postfix_expression
1401 (cp_parser
*, bool, bool);
1402 static tree cp_parser_postfix_open_square_expression
1403 (cp_parser
*, tree
, bool);
1404 static tree cp_parser_postfix_dot_deref_expression
1405 (cp_parser
*, enum cpp_ttype
, tree
, bool, cp_id_kind
*);
1406 static tree cp_parser_parenthesized_expression_list
1407 (cp_parser
*, bool, bool, bool *);
1408 static void cp_parser_pseudo_destructor_name
1409 (cp_parser
*, tree
*, tree
*);
1410 static tree cp_parser_unary_expression
1411 (cp_parser
*, bool, bool);
1412 static enum tree_code cp_parser_unary_operator
1414 static tree cp_parser_new_expression
1416 static tree cp_parser_new_placement
1418 static tree cp_parser_new_type_id
1419 (cp_parser
*, tree
*);
1420 static cp_declarator
*cp_parser_new_declarator_opt
1422 static cp_declarator
*cp_parser_direct_new_declarator
1424 static tree cp_parser_new_initializer
1426 static tree cp_parser_delete_expression
1428 static tree cp_parser_cast_expression
1429 (cp_parser
*, bool, bool);
1430 static tree cp_parser_binary_expression
1431 (cp_parser
*, bool);
1432 static tree cp_parser_question_colon_clause
1433 (cp_parser
*, tree
);
1434 static tree cp_parser_assignment_expression
1435 (cp_parser
*, bool);
1436 static enum tree_code cp_parser_assignment_operator_opt
1438 static tree cp_parser_expression
1439 (cp_parser
*, bool);
1440 static tree cp_parser_constant_expression
1441 (cp_parser
*, bool, bool *);
1442 static tree cp_parser_builtin_offsetof
1445 /* Statements [gram.stmt.stmt] */
1447 static void cp_parser_statement
1448 (cp_parser
*, tree
, bool);
1449 static tree cp_parser_labeled_statement
1450 (cp_parser
*, tree
, bool);
1451 static tree cp_parser_expression_statement
1452 (cp_parser
*, tree
);
1453 static tree cp_parser_compound_statement
1454 (cp_parser
*, tree
, bool);
1455 static void cp_parser_statement_seq_opt
1456 (cp_parser
*, tree
);
1457 static tree cp_parser_selection_statement
1459 static tree cp_parser_condition
1461 static tree cp_parser_iteration_statement
1463 static void cp_parser_for_init_statement
1465 static tree cp_parser_jump_statement
1467 static void cp_parser_declaration_statement
1470 static tree cp_parser_implicitly_scoped_statement
1472 static void cp_parser_already_scoped_statement
1475 /* Declarations [gram.dcl.dcl] */
1477 static void cp_parser_declaration_seq_opt
1479 static void cp_parser_declaration
1481 static void cp_parser_block_declaration
1482 (cp_parser
*, bool);
1483 static void cp_parser_simple_declaration
1484 (cp_parser
*, bool);
1485 static void cp_parser_decl_specifier_seq
1486 (cp_parser
*, cp_parser_flags
, cp_decl_specifier_seq
*, int *);
1487 static tree cp_parser_storage_class_specifier_opt
1489 static tree cp_parser_function_specifier_opt
1490 (cp_parser
*, cp_decl_specifier_seq
*);
1491 static tree cp_parser_type_specifier
1492 (cp_parser
*, cp_parser_flags
, cp_decl_specifier_seq
*, bool,
1494 static tree cp_parser_simple_type_specifier
1495 (cp_parser
*, cp_decl_specifier_seq
*, cp_parser_flags
);
1496 static tree cp_parser_type_name
1498 static tree cp_parser_elaborated_type_specifier
1499 (cp_parser
*, bool, bool);
1500 static tree cp_parser_enum_specifier
1502 static void cp_parser_enumerator_list
1503 (cp_parser
*, tree
);
1504 static void cp_parser_enumerator_definition
1505 (cp_parser
*, tree
);
1506 static tree cp_parser_namespace_name
1508 static void cp_parser_namespace_definition
1510 static void cp_parser_namespace_body
1512 static tree cp_parser_qualified_namespace_specifier
1514 static void cp_parser_namespace_alias_definition
1516 static void cp_parser_using_declaration
1518 static void cp_parser_using_directive
1520 static void cp_parser_asm_definition
1522 static void cp_parser_linkage_specification
1525 /* Declarators [gram.dcl.decl] */
1527 static tree cp_parser_init_declarator
1528 (cp_parser
*, cp_decl_specifier_seq
*, tree
, bool, bool, int, bool *);
1529 static cp_declarator
*cp_parser_declarator
1530 (cp_parser
*, cp_parser_declarator_kind
, int *, bool *, bool);
1531 static cp_declarator
*cp_parser_direct_declarator
1532 (cp_parser
*, cp_parser_declarator_kind
, int *, bool);
1533 static enum tree_code cp_parser_ptr_operator
1534 (cp_parser
*, tree
*, cp_cv_quals
*);
1535 static cp_cv_quals cp_parser_cv_qualifier_seq_opt
1537 static tree cp_parser_declarator_id
1538 (cp_parser
*, bool);
1539 static tree cp_parser_type_id
1541 static void cp_parser_type_specifier_seq
1542 (cp_parser
*, bool, cp_decl_specifier_seq
*);
1543 static cp_parameter_declarator
*cp_parser_parameter_declaration_clause
1545 static cp_parameter_declarator
*cp_parser_parameter_declaration_list
1546 (cp_parser
*, bool *);
1547 static cp_parameter_declarator
*cp_parser_parameter_declaration
1548 (cp_parser
*, bool, bool *);
1549 static void cp_parser_function_body
1551 static tree cp_parser_initializer
1552 (cp_parser
*, bool *, bool *);
1553 static tree cp_parser_initializer_clause
1554 (cp_parser
*, bool *);
1555 static VEC(constructor_elt
,gc
) *cp_parser_initializer_list
1556 (cp_parser
*, bool *);
1558 static bool cp_parser_ctor_initializer_opt_and_function_body
1561 /* Classes [gram.class] */
1563 static tree cp_parser_class_name
1564 (cp_parser
*, bool, bool, enum tag_types
, bool, bool, bool);
1565 static tree cp_parser_class_specifier
1567 static tree cp_parser_class_head
1568 (cp_parser
*, bool *, tree
*);
1569 static enum tag_types cp_parser_class_key
1571 static void cp_parser_member_specification_opt
1573 static void cp_parser_member_declaration
1575 static tree cp_parser_pure_specifier
1577 static tree cp_parser_constant_initializer
1580 /* Derived classes [gram.class.derived] */
1582 static tree cp_parser_base_clause
1584 static tree cp_parser_base_specifier
1587 /* Special member functions [gram.special] */
1589 static tree cp_parser_conversion_function_id
1591 static tree cp_parser_conversion_type_id
1593 static cp_declarator
*cp_parser_conversion_declarator_opt
1595 static bool cp_parser_ctor_initializer_opt
1597 static void cp_parser_mem_initializer_list
1599 static tree cp_parser_mem_initializer
1601 static tree cp_parser_mem_initializer_id
1604 /* Overloading [gram.over] */
1606 static tree cp_parser_operator_function_id
1608 static tree cp_parser_operator
1611 /* Templates [gram.temp] */
1613 static void cp_parser_template_declaration
1614 (cp_parser
*, bool);
1615 static tree cp_parser_template_parameter_list
1617 static tree cp_parser_template_parameter
1618 (cp_parser
*, bool *);
1619 static tree cp_parser_type_parameter
1621 static tree cp_parser_template_id
1622 (cp_parser
*, bool, bool, bool);
1623 static tree cp_parser_template_name
1624 (cp_parser
*, bool, bool, bool, bool *);
1625 static tree cp_parser_template_argument_list
1627 static tree cp_parser_template_argument
1629 static void cp_parser_explicit_instantiation
1631 static void cp_parser_explicit_specialization
1634 /* Exception handling [gram.exception] */
1636 static tree cp_parser_try_block
1638 static bool cp_parser_function_try_block
1640 static void cp_parser_handler_seq
1642 static void cp_parser_handler
1644 static tree cp_parser_exception_declaration
1646 static tree cp_parser_throw_expression
1648 static tree cp_parser_exception_specification_opt
1650 static tree cp_parser_type_id_list
1653 /* GNU Extensions */
1655 static tree cp_parser_asm_specification_opt
1657 static tree cp_parser_asm_operand_list
1659 static tree cp_parser_asm_clobber_list
1661 static tree cp_parser_attributes_opt
1663 static tree cp_parser_attribute_list
1665 static bool cp_parser_extension_opt
1666 (cp_parser
*, int *);
1667 static void cp_parser_label_declaration
1670 enum pragma_context
{ pragma_external
, pragma_stmt
, pragma_compound
};
1671 static bool cp_parser_pragma
1672 (cp_parser
*, enum pragma_context
);
1674 /* Objective-C++ Productions */
1676 static tree cp_parser_objc_message_receiver
1678 static tree cp_parser_objc_message_args
1680 static tree cp_parser_objc_message_expression
1682 static tree cp_parser_objc_encode_expression
1684 static tree cp_parser_objc_defs_expression
1686 static tree cp_parser_objc_protocol_expression
1688 static tree cp_parser_objc_selector_expression
1690 static tree cp_parser_objc_expression
1692 static bool cp_parser_objc_selector_p
1694 static tree cp_parser_objc_selector
1696 static tree cp_parser_objc_protocol_refs_opt
1698 static void cp_parser_objc_declaration
1700 static tree cp_parser_objc_statement
1703 /* Utility Routines */
1705 static tree cp_parser_lookup_name
1706 (cp_parser
*, tree
, enum tag_types
, bool, bool, bool, tree
*);
1707 static tree cp_parser_lookup_name_simple
1708 (cp_parser
*, tree
);
1709 static tree cp_parser_maybe_treat_template_as_class
1711 static bool cp_parser_check_declarator_template_parameters
1712 (cp_parser
*, cp_declarator
*);
1713 static bool cp_parser_check_template_parameters
1714 (cp_parser
*, unsigned);
1715 static tree cp_parser_simple_cast_expression
1717 static tree cp_parser_global_scope_opt
1718 (cp_parser
*, bool);
1719 static bool cp_parser_constructor_declarator_p
1720 (cp_parser
*, bool);
1721 static tree cp_parser_function_definition_from_specifiers_and_declarator
1722 (cp_parser
*, cp_decl_specifier_seq
*, tree
, const cp_declarator
*);
1723 static tree cp_parser_function_definition_after_declarator
1724 (cp_parser
*, bool);
1725 static void cp_parser_template_declaration_after_export
1726 (cp_parser
*, bool);
1727 static void cp_parser_perform_template_parameter_access_checks
1729 static tree cp_parser_single_declaration
1730 (cp_parser
*, tree
, bool, bool *);
1731 static tree cp_parser_functional_cast
1732 (cp_parser
*, tree
);
1733 static tree cp_parser_save_member_function_body
1734 (cp_parser
*, cp_decl_specifier_seq
*, cp_declarator
*, tree
);
1735 static tree cp_parser_enclosed_template_argument_list
1737 static void cp_parser_save_default_args
1738 (cp_parser
*, tree
);
1739 static void cp_parser_late_parsing_for_member
1740 (cp_parser
*, tree
);
1741 static void cp_parser_late_parsing_default_args
1742 (cp_parser
*, tree
);
1743 static tree cp_parser_sizeof_operand
1744 (cp_parser
*, enum rid
);
1745 static bool cp_parser_declares_only_class_p
1747 static void cp_parser_set_storage_class
1748 (cp_parser
*, cp_decl_specifier_seq
*, enum rid
);
1749 static void cp_parser_set_decl_spec_type
1750 (cp_decl_specifier_seq
*, tree
, bool);
1751 static bool cp_parser_friend_p
1752 (const cp_decl_specifier_seq
*);
1753 static cp_token
*cp_parser_require
1754 (cp_parser
*, enum cpp_ttype
, const char *);
1755 static cp_token
*cp_parser_require_keyword
1756 (cp_parser
*, enum rid
, const char *);
1757 static bool cp_parser_token_starts_function_definition_p
1759 static bool cp_parser_next_token_starts_class_definition_p
1761 static bool cp_parser_next_token_ends_template_argument_p
1763 static bool cp_parser_nth_token_starts_template_argument_list_p
1764 (cp_parser
*, size_t);
1765 static enum tag_types cp_parser_token_is_class_key
1767 static void cp_parser_check_class_key
1768 (enum tag_types
, tree type
);
1769 static void cp_parser_check_access_in_redeclaration
1771 static bool cp_parser_optional_template_keyword
1773 static void cp_parser_pre_parsed_nested_name_specifier
1775 static void cp_parser_cache_group
1776 (cp_parser
*, enum cpp_ttype
, unsigned);
1777 static void cp_parser_parse_tentatively
1779 static void cp_parser_commit_to_tentative_parse
1781 static void cp_parser_abort_tentative_parse
1783 static bool cp_parser_parse_definitely
1785 static inline bool cp_parser_parsing_tentatively
1787 static bool cp_parser_uncommitted_to_tentative_parse_p
1789 static void cp_parser_error
1790 (cp_parser
*, const char *);
1791 static void cp_parser_name_lookup_error
1792 (cp_parser
*, tree
, tree
, const char *);
1793 static bool cp_parser_simulate_error
1795 static void cp_parser_check_type_definition
1797 static void cp_parser_check_for_definition_in_return_type
1798 (cp_declarator
*, tree
);
1799 static void cp_parser_check_for_invalid_template_id
1800 (cp_parser
*, tree
);
1801 static bool cp_parser_non_integral_constant_expression
1802 (cp_parser
*, const char *);
1803 static void cp_parser_diagnose_invalid_type_name
1804 (cp_parser
*, tree
, tree
);
1805 static bool cp_parser_parse_and_diagnose_invalid_type_name
1807 static int cp_parser_skip_to_closing_parenthesis
1808 (cp_parser
*, bool, bool, bool);
1809 static void cp_parser_skip_to_end_of_statement
1811 static void cp_parser_consume_semicolon_at_end_of_statement
1813 static void cp_parser_skip_to_end_of_block_or_statement
1815 static void cp_parser_skip_to_closing_brace
1817 static void cp_parser_skip_until_found
1818 (cp_parser
*, enum cpp_ttype
, const char *);
1819 static void cp_parser_skip_to_pragma_eol
1820 (cp_parser
*, cp_token
*);
1821 static bool cp_parser_error_occurred
1823 static bool cp_parser_allow_gnu_extensions_p
1825 static bool cp_parser_is_string_literal
1827 static bool cp_parser_is_keyword
1828 (cp_token
*, enum rid
);
1829 static tree cp_parser_make_typename_type
1830 (cp_parser
*, tree
, tree
);
1832 /* Returns nonzero if we are parsing tentatively. */
1835 cp_parser_parsing_tentatively (cp_parser
* parser
)
1837 return parser
->context
->next
!= NULL
;
1840 /* Returns nonzero if TOKEN is a string literal. */
1843 cp_parser_is_string_literal (cp_token
* token
)
1845 return (token
->type
== CPP_STRING
|| token
->type
== CPP_WSTRING
);
1848 /* Returns nonzero if TOKEN is the indicated KEYWORD. */
1851 cp_parser_is_keyword (cp_token
* token
, enum rid keyword
)
1853 return token
->keyword
== keyword
;
1856 /* If not parsing tentatively, issue a diagnostic of the form
1857 FILE:LINE: MESSAGE before TOKEN
1858 where TOKEN is the next token in the input stream. MESSAGE
1859 (specified by the caller) is usually of the form "expected
1863 cp_parser_error (cp_parser
* parser
, const char* message
)
1865 if (!cp_parser_simulate_error (parser
))
1867 cp_token
*token
= cp_lexer_peek_token (parser
->lexer
);
1868 /* This diagnostic makes more sense if it is tagged to the line
1869 of the token we just peeked at. */
1870 cp_lexer_set_source_position_from_token (token
);
1872 if (token
->type
== CPP_PRAGMA
)
1874 error ("%<#pragma%> is not allowed here");
1875 cp_parser_skip_to_pragma_eol (parser
, token
);
1879 c_parse_error (message
,
1880 /* Because c_parser_error does not understand
1881 CPP_KEYWORD, keywords are treated like
1883 (token
->type
== CPP_KEYWORD
? CPP_NAME
: token
->type
),
1888 /* Issue an error about name-lookup failing. NAME is the
1889 IDENTIFIER_NODE DECL is the result of
1890 the lookup (as returned from cp_parser_lookup_name). DESIRED is
1891 the thing that we hoped to find. */
1894 cp_parser_name_lookup_error (cp_parser
* parser
,
1897 const char* desired
)
1899 /* If name lookup completely failed, tell the user that NAME was not
1901 if (decl
== error_mark_node
)
1903 if (parser
->scope
&& parser
->scope
!= global_namespace
)
1904 error ("%<%D::%D%> has not been declared",
1905 parser
->scope
, name
);
1906 else if (parser
->scope
== global_namespace
)
1907 error ("%<::%D%> has not been declared", name
);
1908 else if (parser
->object_scope
1909 && !CLASS_TYPE_P (parser
->object_scope
))
1910 error ("request for member %qD in non-class type %qT",
1911 name
, parser
->object_scope
);
1912 else if (parser
->object_scope
)
1913 error ("%<%T::%D%> has not been declared",
1914 parser
->object_scope
, name
);
1916 error ("%qD has not been declared", name
);
1918 else if (parser
->scope
&& parser
->scope
!= global_namespace
)
1919 error ("%<%D::%D%> %s", parser
->scope
, name
, desired
);
1920 else if (parser
->scope
== global_namespace
)
1921 error ("%<::%D%> %s", name
, desired
);
1923 error ("%qD %s", name
, desired
);
1926 /* If we are parsing tentatively, remember that an error has occurred
1927 during this tentative parse. Returns true if the error was
1928 simulated; false if a message should be issued by the caller. */
1931 cp_parser_simulate_error (cp_parser
* parser
)
1933 if (cp_parser_uncommitted_to_tentative_parse_p (parser
))
1935 parser
->context
->status
= CP_PARSER_STATUS_KIND_ERROR
;
1941 /* Check for repeated decl-specifiers. */
1944 cp_parser_check_decl_spec (cp_decl_specifier_seq
*decl_specs
)
1948 for (ds
= ds_first
; ds
!= ds_last
; ++ds
)
1950 unsigned count
= decl_specs
->specs
[(int)ds
];
1953 /* The "long" specifier is a special case because of "long long". */
1957 error ("%<long long long%> is too long for GCC");
1958 else if (pedantic
&& !in_system_header
&& warn_long_long
)
1959 pedwarn ("ISO C++ does not support %<long long%>");
1963 static const char *const decl_spec_names
[] = {
1979 error ("duplicate %qs", decl_spec_names
[(int)ds
]);
1984 /* This function is called when a type is defined. If type
1985 definitions are forbidden at this point, an error message is
1989 cp_parser_check_type_definition (cp_parser
* parser
)
1991 /* If types are forbidden here, issue a message. */
1992 if (parser
->type_definition_forbidden_message
)
1993 /* Use `%s' to print the string in case there are any escape
1994 characters in the message. */
1995 error ("%s", parser
->type_definition_forbidden_message
);
1998 /* This function is called when the DECLARATOR is processed. The TYPE
1999 was a type defined in the decl-specifiers. If it is invalid to
2000 define a type in the decl-specifiers for DECLARATOR, an error is
2004 cp_parser_check_for_definition_in_return_type (cp_declarator
*declarator
,
2007 /* [dcl.fct] forbids type definitions in return types.
2008 Unfortunately, it's not easy to know whether or not we are
2009 processing a return type until after the fact. */
2011 && (declarator
->kind
== cdk_pointer
2012 || declarator
->kind
== cdk_reference
2013 || declarator
->kind
== cdk_ptrmem
))
2014 declarator
= declarator
->declarator
;
2016 && declarator
->kind
== cdk_function
)
2018 error ("new types may not be defined in a return type");
2019 inform ("(perhaps a semicolon is missing after the definition of %qT)",
2024 /* A type-specifier (TYPE) has been parsed which cannot be followed by
2025 "<" in any valid C++ program. If the next token is indeed "<",
2026 issue a message warning the user about what appears to be an
2027 invalid attempt to form a template-id. */
2030 cp_parser_check_for_invalid_template_id (cp_parser
* parser
,
2033 cp_token_position start
= 0;
2035 if (cp_lexer_next_token_is (parser
->lexer
, CPP_LESS
))
2038 error ("%qT is not a template", type
);
2039 else if (TREE_CODE (type
) == IDENTIFIER_NODE
)
2040 error ("%qE is not a template", type
);
2042 error ("invalid template-id");
2043 /* Remember the location of the invalid "<". */
2044 if (cp_parser_uncommitted_to_tentative_parse_p (parser
))
2045 start
= cp_lexer_token_position (parser
->lexer
, true);
2046 /* Consume the "<". */
2047 cp_lexer_consume_token (parser
->lexer
);
2048 /* Parse the template arguments. */
2049 cp_parser_enclosed_template_argument_list (parser
);
2050 /* Permanently remove the invalid template arguments so that
2051 this error message is not issued again. */
2053 cp_lexer_purge_tokens_after (parser
->lexer
, start
);
2057 /* If parsing an integral constant-expression, issue an error message
2058 about the fact that THING appeared and return true. Otherwise,
2059 return false. In either case, set
2060 PARSER->NON_INTEGRAL_CONSTANT_EXPRESSION_P. */
2063 cp_parser_non_integral_constant_expression (cp_parser
*parser
,
2066 parser
->non_integral_constant_expression_p
= true;
2067 if (parser
->integral_constant_expression_p
)
2069 if (!parser
->allow_non_integral_constant_expression_p
)
2071 error ("%s cannot appear in a constant-expression", thing
);
2078 /* Emit a diagnostic for an invalid type name. SCOPE is the
2079 qualifying scope (or NULL, if none) for ID. This function commits
2080 to the current active tentative parse, if any. (Otherwise, the
2081 problematic construct might be encountered again later, resulting
2082 in duplicate error messages.) */
2085 cp_parser_diagnose_invalid_type_name (cp_parser
*parser
, tree scope
, tree id
)
2087 tree decl
, old_scope
;
2088 /* Try to lookup the identifier. */
2089 old_scope
= parser
->scope
;
2090 parser
->scope
= scope
;
2091 decl
= cp_parser_lookup_name_simple (parser
, id
);
2092 parser
->scope
= old_scope
;
2093 /* If the lookup found a template-name, it means that the user forgot
2094 to specify an argument list. Emit a useful error message. */
2095 if (TREE_CODE (decl
) == TEMPLATE_DECL
)
2096 error ("invalid use of template-name %qE without an argument list", decl
);
2097 else if (TREE_CODE (id
) == BIT_NOT_EXPR
)
2098 error ("invalid use of destructor %qD as a type", id
);
2099 else if (!parser
->scope
)
2101 /* Issue an error message. */
2102 error ("%qE does not name a type", id
);
2103 /* If we're in a template class, it's possible that the user was
2104 referring to a type from a base class. For example:
2106 template <typename T> struct A { typedef T X; };
2107 template <typename T> struct B : public A<T> { X x; };
2109 The user should have said "typename A<T>::X". */
2110 if (processing_template_decl
&& current_class_type
2111 && TYPE_BINFO (current_class_type
))
2115 for (b
= TREE_CHAIN (TYPE_BINFO (current_class_type
));
2119 tree base_type
= BINFO_TYPE (b
);
2120 if (CLASS_TYPE_P (base_type
)
2121 && dependent_type_p (base_type
))
2124 /* Go from a particular instantiation of the
2125 template (which will have an empty TYPE_FIELDs),
2126 to the main version. */
2127 base_type
= CLASSTYPE_PRIMARY_TEMPLATE_TYPE (base_type
);
2128 for (field
= TYPE_FIELDS (base_type
);
2130 field
= TREE_CHAIN (field
))
2131 if (TREE_CODE (field
) == TYPE_DECL
2132 && DECL_NAME (field
) == id
)
2134 inform ("(perhaps %<typename %T::%E%> was intended)",
2135 BINFO_TYPE (b
), id
);
2144 /* Here we diagnose qualified-ids where the scope is actually correct,
2145 but the identifier does not resolve to a valid type name. */
2146 else if (parser
->scope
!= error_mark_node
)
2148 if (TREE_CODE (parser
->scope
) == NAMESPACE_DECL
)
2149 error ("%qE in namespace %qE does not name a type",
2151 else if (TYPE_P (parser
->scope
))
2152 error ("%qE in class %qT does not name a type", id
, parser
->scope
);
2156 cp_parser_commit_to_tentative_parse (parser
);
2159 /* Check for a common situation where a type-name should be present,
2160 but is not, and issue a sensible error message. Returns true if an
2161 invalid type-name was detected.
2163 The situation handled by this function are variable declarations of the
2164 form `ID a', where `ID' is an id-expression and `a' is a plain identifier.
2165 Usually, `ID' should name a type, but if we got here it means that it
2166 does not. We try to emit the best possible error message depending on
2167 how exactly the id-expression looks like. */
2170 cp_parser_parse_and_diagnose_invalid_type_name (cp_parser
*parser
)
2174 cp_parser_parse_tentatively (parser
);
2175 id
= cp_parser_id_expression (parser
,
2176 /*template_keyword_p=*/false,
2177 /*check_dependency_p=*/true,
2178 /*template_p=*/NULL
,
2179 /*declarator_p=*/true,
2180 /*optional_p=*/false);
2181 /* After the id-expression, there should be a plain identifier,
2182 otherwise this is not a simple variable declaration. Also, if
2183 the scope is dependent, we cannot do much. */
2184 if (!cp_lexer_next_token_is (parser
->lexer
, CPP_NAME
)
2185 || (parser
->scope
&& TYPE_P (parser
->scope
)
2186 && dependent_type_p (parser
->scope
)))
2188 cp_parser_abort_tentative_parse (parser
);
2191 if (!cp_parser_parse_definitely (parser
) || TREE_CODE (id
) == TYPE_DECL
)
2194 /* Emit a diagnostic for the invalid type. */
2195 cp_parser_diagnose_invalid_type_name (parser
, parser
->scope
, id
);
2196 /* Skip to the end of the declaration; there's no point in
2197 trying to process it. */
2198 cp_parser_skip_to_end_of_block_or_statement (parser
);
2202 /* Consume tokens up to, and including, the next non-nested closing `)'.
2203 Returns 1 iff we found a closing `)'. RECOVERING is true, if we
2204 are doing error recovery. Returns -1 if OR_COMMA is true and we
2205 found an unnested comma. */
2208 cp_parser_skip_to_closing_parenthesis (cp_parser
*parser
,
2213 unsigned paren_depth
= 0;
2214 unsigned brace_depth
= 0;
2216 if (recovering
&& !or_comma
2217 && cp_parser_uncommitted_to_tentative_parse_p (parser
))
2222 cp_token
* token
= cp_lexer_peek_token (parser
->lexer
);
2224 switch (token
->type
)
2227 case CPP_PRAGMA_EOL
:
2228 /* If we've run out of tokens, then there is no closing `)'. */
2232 /* This matches the processing in skip_to_end_of_statement. */
2237 case CPP_OPEN_BRACE
:
2240 case CPP_CLOSE_BRACE
:
2246 if (recovering
&& or_comma
&& !brace_depth
&& !paren_depth
)
2250 case CPP_OPEN_PAREN
:
2255 case CPP_CLOSE_PAREN
:
2256 if (!brace_depth
&& !paren_depth
--)
2259 cp_lexer_consume_token (parser
->lexer
);
2268 /* Consume the token. */
2269 cp_lexer_consume_token (parser
->lexer
);
2273 /* Consume tokens until we reach the end of the current statement.
2274 Normally, that will be just before consuming a `;'. However, if a
2275 non-nested `}' comes first, then we stop before consuming that. */
2278 cp_parser_skip_to_end_of_statement (cp_parser
* parser
)
2280 unsigned nesting_depth
= 0;
2284 cp_token
*token
= cp_lexer_peek_token (parser
->lexer
);
2286 switch (token
->type
)
2289 case CPP_PRAGMA_EOL
:
2290 /* If we've run out of tokens, stop. */
2294 /* If the next token is a `;', we have reached the end of the
2300 case CPP_CLOSE_BRACE
:
2301 /* If this is a non-nested '}', stop before consuming it.
2302 That way, when confronted with something like:
2306 we stop before consuming the closing '}', even though we
2307 have not yet reached a `;'. */
2308 if (nesting_depth
== 0)
2311 /* If it is the closing '}' for a block that we have
2312 scanned, stop -- but only after consuming the token.
2318 we will stop after the body of the erroneously declared
2319 function, but before consuming the following `typedef'
2321 if (--nesting_depth
== 0)
2323 cp_lexer_consume_token (parser
->lexer
);
2327 case CPP_OPEN_BRACE
:
2335 /* Consume the token. */
2336 cp_lexer_consume_token (parser
->lexer
);
2340 /* This function is called at the end of a statement or declaration.
2341 If the next token is a semicolon, it is consumed; otherwise, error
2342 recovery is attempted. */
2345 cp_parser_consume_semicolon_at_end_of_statement (cp_parser
*parser
)
2347 /* Look for the trailing `;'. */
2348 if (!cp_parser_require (parser
, CPP_SEMICOLON
, "`;'"))
2350 /* If there is additional (erroneous) input, skip to the end of
2352 cp_parser_skip_to_end_of_statement (parser
);
2353 /* If the next token is now a `;', consume it. */
2354 if (cp_lexer_next_token_is (parser
->lexer
, CPP_SEMICOLON
))
2355 cp_lexer_consume_token (parser
->lexer
);
2359 /* Skip tokens until we have consumed an entire block, or until we
2360 have consumed a non-nested `;'. */
2363 cp_parser_skip_to_end_of_block_or_statement (cp_parser
* parser
)
2365 int nesting_depth
= 0;
2367 while (nesting_depth
>= 0)
2369 cp_token
*token
= cp_lexer_peek_token (parser
->lexer
);
2371 switch (token
->type
)
2374 case CPP_PRAGMA_EOL
:
2375 /* If we've run out of tokens, stop. */
2379 /* Stop if this is an unnested ';'. */
2384 case CPP_CLOSE_BRACE
:
2385 /* Stop if this is an unnested '}', or closes the outermost
2392 case CPP_OPEN_BRACE
:
2401 /* Consume the token. */
2402 cp_lexer_consume_token (parser
->lexer
);
2406 /* Skip tokens until a non-nested closing curly brace is the next
2410 cp_parser_skip_to_closing_brace (cp_parser
*parser
)
2412 unsigned nesting_depth
= 0;
2416 cp_token
*token
= cp_lexer_peek_token (parser
->lexer
);
2418 switch (token
->type
)
2421 case CPP_PRAGMA_EOL
:
2422 /* If we've run out of tokens, stop. */
2425 case CPP_CLOSE_BRACE
:
2426 /* If the next token is a non-nested `}', then we have reached
2427 the end of the current block. */
2428 if (nesting_depth
-- == 0)
2432 case CPP_OPEN_BRACE
:
2433 /* If it the next token is a `{', then we are entering a new
2434 block. Consume the entire block. */
2442 /* Consume the token. */
2443 cp_lexer_consume_token (parser
->lexer
);
2447 /* Consume tokens until we reach the end of the pragma. The PRAGMA_TOK
2448 parameter is the PRAGMA token, allowing us to purge the entire pragma
2452 cp_parser_skip_to_pragma_eol (cp_parser
* parser
, cp_token
*pragma_tok
)
2456 parser
->lexer
->in_pragma
= false;
2459 token
= cp_lexer_consume_token (parser
->lexer
);
2460 while (token
->type
!= CPP_PRAGMA_EOL
&& token
->type
!= CPP_EOF
);
2462 /* Ensure that the pragma is not parsed again. */
2463 cp_lexer_purge_tokens_after (parser
->lexer
, pragma_tok
);
2466 /* Require pragma end of line, resyncing with it as necessary. The
2467 arguments are as for cp_parser_skip_to_pragma_eol. */
2470 cp_parser_require_pragma_eol (cp_parser
*parser
, cp_token
*pragma_tok
)
2472 parser
->lexer
->in_pragma
= false;
2473 if (!cp_parser_require (parser
, CPP_PRAGMA_EOL
, "end of line"))
2474 cp_parser_skip_to_pragma_eol (parser
, pragma_tok
);
2477 /* This is a simple wrapper around make_typename_type. When the id is
2478 an unresolved identifier node, we can provide a superior diagnostic
2479 using cp_parser_diagnose_invalid_type_name. */
2482 cp_parser_make_typename_type (cp_parser
*parser
, tree scope
, tree id
)
2485 if (TREE_CODE (id
) == IDENTIFIER_NODE
)
2487 result
= make_typename_type (scope
, id
, typename_type
,
2488 /*complain=*/tf_none
);
2489 if (result
== error_mark_node
)
2490 cp_parser_diagnose_invalid_type_name (parser
, scope
, id
);
2493 return make_typename_type (scope
, id
, typename_type
, tf_error
);
2497 /* Create a new C++ parser. */
2500 cp_parser_new (void)
2506 /* cp_lexer_new_main is called before calling ggc_alloc because
2507 cp_lexer_new_main might load a PCH file. */
2508 lexer
= cp_lexer_new_main ();
2510 /* Initialize the binops_by_token so that we can get the tree
2511 directly from the token. */
2512 for (i
= 0; i
< sizeof (binops
) / sizeof (binops
[0]); i
++)
2513 binops_by_token
[binops
[i
].token_type
] = binops
[i
];
2515 parser
= GGC_CNEW (cp_parser
);
2516 parser
->lexer
= lexer
;
2517 parser
->context
= cp_parser_context_new (NULL
);
2519 /* For now, we always accept GNU extensions. */
2520 parser
->allow_gnu_extensions_p
= 1;
2522 /* The `>' token is a greater-than operator, not the end of a
2524 parser
->greater_than_is_operator_p
= true;
2526 parser
->default_arg_ok_p
= true;
2528 /* We are not parsing a constant-expression. */
2529 parser
->integral_constant_expression_p
= false;
2530 parser
->allow_non_integral_constant_expression_p
= false;
2531 parser
->non_integral_constant_expression_p
= false;
2533 /* Local variable names are not forbidden. */
2534 parser
->local_variables_forbidden_p
= false;
2536 /* We are not processing an `extern "C"' declaration. */
2537 parser
->in_unbraced_linkage_specification_p
= false;
2539 /* We are not processing a declarator. */
2540 parser
->in_declarator_p
= false;
2542 /* We are not processing a template-argument-list. */
2543 parser
->in_template_argument_list_p
= false;
2545 /* We are not in an iteration statement. */
2546 parser
->in_statement
= 0;
2548 /* We are not in a switch statement. */
2549 parser
->in_switch_statement_p
= false;
2551 /* We are not parsing a type-id inside an expression. */
2552 parser
->in_type_id_in_expr_p
= false;
2554 /* Declarations aren't implicitly extern "C". */
2555 parser
->implicit_extern_c
= false;
2557 /* String literals should be translated to the execution character set. */
2558 parser
->translate_strings_p
= true;
2560 /* The unparsed function queue is empty. */
2561 parser
->unparsed_functions_queues
= build_tree_list (NULL_TREE
, NULL_TREE
);
2563 /* There are no classes being defined. */
2564 parser
->num_classes_being_defined
= 0;
2566 /* No template parameters apply. */
2567 parser
->num_template_parameter_lists
= 0;
2572 /* Create a cp_lexer structure which will emit the tokens in CACHE
2573 and push it onto the parser's lexer stack. This is used for delayed
2574 parsing of in-class method bodies and default arguments, and should
2575 not be confused with tentative parsing. */
2577 cp_parser_push_lexer_for_tokens (cp_parser
*parser
, cp_token_cache
*cache
)
2579 cp_lexer
*lexer
= cp_lexer_new_from_tokens (cache
);
2580 lexer
->next
= parser
->lexer
;
2581 parser
->lexer
= lexer
;
2583 /* Move the current source position to that of the first token in the
2585 cp_lexer_set_source_position_from_token (lexer
->next_token
);
2588 /* Pop the top lexer off the parser stack. This is never used for the
2589 "main" lexer, only for those pushed by cp_parser_push_lexer_for_tokens. */
2591 cp_parser_pop_lexer (cp_parser
*parser
)
2593 cp_lexer
*lexer
= parser
->lexer
;
2594 parser
->lexer
= lexer
->next
;
2595 cp_lexer_destroy (lexer
);
2597 /* Put the current source position back where it was before this
2598 lexer was pushed. */
2599 cp_lexer_set_source_position_from_token (parser
->lexer
->next_token
);
2602 /* Lexical conventions [gram.lex] */
2604 /* Parse an identifier. Returns an IDENTIFIER_NODE representing the
2608 cp_parser_identifier (cp_parser
* parser
)
2612 /* Look for the identifier. */
2613 token
= cp_parser_require (parser
, CPP_NAME
, "identifier");
2614 /* Return the value. */
2615 return token
? token
->value
: error_mark_node
;
2618 /* Parse a sequence of adjacent string constants. Returns a
2619 TREE_STRING representing the combined, nul-terminated string
2620 constant. If TRANSLATE is true, translate the string to the
2621 execution character set. If WIDE_OK is true, a wide string is
2624 C++98 [lex.string] says that if a narrow string literal token is
2625 adjacent to a wide string literal token, the behavior is undefined.
2626 However, C99 6.4.5p4 says that this results in a wide string literal.
2627 We follow C99 here, for consistency with the C front end.
2629 This code is largely lifted from lex_string() in c-lex.c.
2631 FUTURE: ObjC++ will need to handle @-strings here. */
2633 cp_parser_string_literal (cp_parser
*parser
, bool translate
, bool wide_ok
)
2638 struct obstack str_ob
;
2639 cpp_string str
, istr
, *strs
;
2642 tok
= cp_lexer_peek_token (parser
->lexer
);
2643 if (!cp_parser_is_string_literal (tok
))
2645 cp_parser_error (parser
, "expected string-literal");
2646 return error_mark_node
;
2649 /* Try to avoid the overhead of creating and destroying an obstack
2650 for the common case of just one string. */
2651 if (!cp_parser_is_string_literal
2652 (cp_lexer_peek_nth_token (parser
->lexer
, 2)))
2654 cp_lexer_consume_token (parser
->lexer
);
2656 str
.text
= (const unsigned char *)TREE_STRING_POINTER (tok
->value
);
2657 str
.len
= TREE_STRING_LENGTH (tok
->value
);
2659 if (tok
->type
== CPP_WSTRING
)
2666 gcc_obstack_init (&str_ob
);
2671 cp_lexer_consume_token (parser
->lexer
);
2673 str
.text
= (unsigned char *)TREE_STRING_POINTER (tok
->value
);
2674 str
.len
= TREE_STRING_LENGTH (tok
->value
);
2675 if (tok
->type
== CPP_WSTRING
)
2678 obstack_grow (&str_ob
, &str
, sizeof (cpp_string
));
2680 tok
= cp_lexer_peek_token (parser
->lexer
);
2682 while (cp_parser_is_string_literal (tok
));
2684 strs
= (cpp_string
*) obstack_finish (&str_ob
);
2687 if (wide
&& !wide_ok
)
2689 cp_parser_error (parser
, "a wide string is invalid in this context");
2693 if ((translate
? cpp_interpret_string
: cpp_interpret_string_notranslate
)
2694 (parse_in
, strs
, count
, &istr
, wide
))
2696 value
= build_string (istr
.len
, (char *)istr
.text
);
2697 free ((void *)istr
.text
);
2699 TREE_TYPE (value
) = wide
? wchar_array_type_node
: char_array_type_node
;
2700 value
= fix_string_type (value
);
2703 /* cpp_interpret_string has issued an error. */
2704 value
= error_mark_node
;
2707 obstack_free (&str_ob
, 0);
2713 /* Basic concepts [gram.basic] */
2715 /* Parse a translation-unit.
2718 declaration-seq [opt]
2720 Returns TRUE if all went well. */
2723 cp_parser_translation_unit (cp_parser
* parser
)
2725 /* The address of the first non-permanent object on the declarator
2727 static void *declarator_obstack_base
;
2731 /* Create the declarator obstack, if necessary. */
2732 if (!cp_error_declarator
)
2734 gcc_obstack_init (&declarator_obstack
);
2735 /* Create the error declarator. */
2736 cp_error_declarator
= make_declarator (cdk_error
);
2737 /* Create the empty parameter list. */
2738 no_parameters
= make_parameter_declarator (NULL
, NULL
, NULL_TREE
);
2739 /* Remember where the base of the declarator obstack lies. */
2740 declarator_obstack_base
= obstack_next_free (&declarator_obstack
);
2743 cp_parser_declaration_seq_opt (parser
);
2745 /* If there are no tokens left then all went well. */
2746 if (cp_lexer_next_token_is (parser
->lexer
, CPP_EOF
))
2748 /* Get rid of the token array; we don't need it any more. */
2749 cp_lexer_destroy (parser
->lexer
);
2750 parser
->lexer
= NULL
;
2752 /* This file might have been a context that's implicitly extern
2753 "C". If so, pop the lang context. (Only relevant for PCH.) */
2754 if (parser
->implicit_extern_c
)
2756 pop_lang_context ();
2757 parser
->implicit_extern_c
= false;
2761 finish_translation_unit ();
2767 cp_parser_error (parser
, "expected declaration");
2771 /* Make sure the declarator obstack was fully cleaned up. */
2772 gcc_assert (obstack_next_free (&declarator_obstack
)
2773 == declarator_obstack_base
);
2775 /* All went well. */
2779 /* Expressions [gram.expr] */
2781 /* Parse a primary-expression.
2792 ( compound-statement )
2793 __builtin_va_arg ( assignment-expression , type-id )
2794 __builtin_offsetof ( type-id , offsetof-expression )
2796 Objective-C++ Extension:
2804 ADDRESS_P is true iff this expression was immediately preceded by
2805 "&" and therefore might denote a pointer-to-member. CAST_P is true
2806 iff this expression is the target of a cast. TEMPLATE_ARG_P is
2807 true iff this expression is a template argument.
2809 Returns a representation of the expression. Upon return, *IDK
2810 indicates what kind of id-expression (if any) was present. */
2813 cp_parser_primary_expression (cp_parser
*parser
,
2816 bool template_arg_p
,
2821 /* Assume the primary expression is not an id-expression. */
2822 *idk
= CP_ID_KIND_NONE
;
2824 /* Peek at the next token. */
2825 token
= cp_lexer_peek_token (parser
->lexer
);
2826 switch (token
->type
)
2837 token
= cp_lexer_consume_token (parser
->lexer
);
2838 /* Floating-point literals are only allowed in an integral
2839 constant expression if they are cast to an integral or
2840 enumeration type. */
2841 if (TREE_CODE (token
->value
) == REAL_CST
2842 && parser
->integral_constant_expression_p
2845 /* CAST_P will be set even in invalid code like "int(2.7 +
2846 ...)". Therefore, we have to check that the next token
2847 is sure to end the cast. */
2850 cp_token
*next_token
;
2852 next_token
= cp_lexer_peek_token (parser
->lexer
);
2853 if (/* The comma at the end of an
2854 enumerator-definition. */
2855 next_token
->type
!= CPP_COMMA
2856 /* The curly brace at the end of an enum-specifier. */
2857 && next_token
->type
!= CPP_CLOSE_BRACE
2858 /* The end of a statement. */
2859 && next_token
->type
!= CPP_SEMICOLON
2860 /* The end of the cast-expression. */
2861 && next_token
->type
!= CPP_CLOSE_PAREN
2862 /* The end of an array bound. */
2863 && next_token
->type
!= CPP_CLOSE_SQUARE
2864 /* The closing ">" in a template-argument-list. */
2865 && (next_token
->type
!= CPP_GREATER
2866 || parser
->greater_than_is_operator_p
))
2870 /* If we are within a cast, then the constraint that the
2871 cast is to an integral or enumeration type will be
2872 checked at that point. If we are not within a cast, then
2873 this code is invalid. */
2875 cp_parser_non_integral_constant_expression
2876 (parser
, "floating-point literal");
2878 return token
->value
;
2882 /* ??? Should wide strings be allowed when parser->translate_strings_p
2883 is false (i.e. in attributes)? If not, we can kill the third
2884 argument to cp_parser_string_literal. */
2885 return cp_parser_string_literal (parser
,
2886 parser
->translate_strings_p
,
2889 case CPP_OPEN_PAREN
:
2892 bool saved_greater_than_is_operator_p
;
2894 /* Consume the `('. */
2895 cp_lexer_consume_token (parser
->lexer
);
2896 /* Within a parenthesized expression, a `>' token is always
2897 the greater-than operator. */
2898 saved_greater_than_is_operator_p
2899 = parser
->greater_than_is_operator_p
;
2900 parser
->greater_than_is_operator_p
= true;
2901 /* If we see `( { ' then we are looking at the beginning of
2902 a GNU statement-expression. */
2903 if (cp_parser_allow_gnu_extensions_p (parser
)
2904 && cp_lexer_next_token_is (parser
->lexer
, CPP_OPEN_BRACE
))
2906 /* Statement-expressions are not allowed by the standard. */
2908 pedwarn ("ISO C++ forbids braced-groups within expressions");
2910 /* And they're not allowed outside of a function-body; you
2911 cannot, for example, write:
2913 int i = ({ int j = 3; j + 1; });
2915 at class or namespace scope. */
2916 if (!at_function_scope_p ())
2917 error ("statement-expressions are allowed only inside functions");
2918 /* Start the statement-expression. */
2919 expr
= begin_stmt_expr ();
2920 /* Parse the compound-statement. */
2921 cp_parser_compound_statement (parser
, expr
, false);
2923 expr
= finish_stmt_expr (expr
, false);
2927 /* Parse the parenthesized expression. */
2928 expr
= cp_parser_expression (parser
, cast_p
);
2929 /* Let the front end know that this expression was
2930 enclosed in parentheses. This matters in case, for
2931 example, the expression is of the form `A::B', since
2932 `&A::B' might be a pointer-to-member, but `&(A::B)' is
2934 finish_parenthesized_expr (expr
);
2936 /* The `>' token might be the end of a template-id or
2937 template-parameter-list now. */
2938 parser
->greater_than_is_operator_p
2939 = saved_greater_than_is_operator_p
;
2940 /* Consume the `)'. */
2941 if (!cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'"))
2942 cp_parser_skip_to_end_of_statement (parser
);
2948 switch (token
->keyword
)
2950 /* These two are the boolean literals. */
2952 cp_lexer_consume_token (parser
->lexer
);
2953 return boolean_true_node
;
2955 cp_lexer_consume_token (parser
->lexer
);
2956 return boolean_false_node
;
2958 /* The `__null' literal. */
2960 cp_lexer_consume_token (parser
->lexer
);
2963 /* Recognize the `this' keyword. */
2965 cp_lexer_consume_token (parser
->lexer
);
2966 if (parser
->local_variables_forbidden_p
)
2968 error ("%<this%> may not be used in this context");
2969 return error_mark_node
;
2971 /* Pointers cannot appear in constant-expressions. */
2972 if (cp_parser_non_integral_constant_expression (parser
,
2974 return error_mark_node
;
2975 return finish_this_expr ();
2977 /* The `operator' keyword can be the beginning of an
2982 case RID_FUNCTION_NAME
:
2983 case RID_PRETTY_FUNCTION_NAME
:
2984 case RID_C99_FUNCTION_NAME
:
2985 /* The symbols __FUNCTION__, __PRETTY_FUNCTION__, and
2986 __func__ are the names of variables -- but they are
2987 treated specially. Therefore, they are handled here,
2988 rather than relying on the generic id-expression logic
2989 below. Grammatically, these names are id-expressions.
2991 Consume the token. */
2992 token
= cp_lexer_consume_token (parser
->lexer
);
2993 /* Look up the name. */
2994 return finish_fname (token
->value
);
3001 /* The `__builtin_va_arg' construct is used to handle
3002 `va_arg'. Consume the `__builtin_va_arg' token. */
3003 cp_lexer_consume_token (parser
->lexer
);
3004 /* Look for the opening `('. */
3005 cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('");
3006 /* Now, parse the assignment-expression. */
3007 expression
= cp_parser_assignment_expression (parser
,
3009 /* Look for the `,'. */
3010 cp_parser_require (parser
, CPP_COMMA
, "`,'");
3011 /* Parse the type-id. */
3012 type
= cp_parser_type_id (parser
);
3013 /* Look for the closing `)'. */
3014 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
3015 /* Using `va_arg' in a constant-expression is not
3017 if (cp_parser_non_integral_constant_expression (parser
,
3019 return error_mark_node
;
3020 return build_x_va_arg (expression
, type
);
3024 return cp_parser_builtin_offsetof (parser
);
3026 /* Objective-C++ expressions. */
3028 case RID_AT_PROTOCOL
:
3029 case RID_AT_SELECTOR
:
3030 return cp_parser_objc_expression (parser
);
3033 cp_parser_error (parser
, "expected primary-expression");
3034 return error_mark_node
;
3037 /* An id-expression can start with either an identifier, a
3038 `::' as the beginning of a qualified-id, or the "operator"
3042 case CPP_TEMPLATE_ID
:
3043 case CPP_NESTED_NAME_SPECIFIER
:
3047 const char *error_msg
;
3052 /* Parse the id-expression. */
3054 = cp_parser_id_expression (parser
,
3055 /*template_keyword_p=*/false,
3056 /*check_dependency_p=*/true,
3058 /*declarator_p=*/false,
3059 /*optional_p=*/false);
3060 if (id_expression
== error_mark_node
)
3061 return error_mark_node
;
3062 token
= cp_lexer_peek_token (parser
->lexer
);
3063 done
= (token
->type
!= CPP_OPEN_SQUARE
3064 && token
->type
!= CPP_OPEN_PAREN
3065 && token
->type
!= CPP_DOT
3066 && token
->type
!= CPP_DEREF
3067 && token
->type
!= CPP_PLUS_PLUS
3068 && token
->type
!= CPP_MINUS_MINUS
);
3069 /* If we have a template-id, then no further lookup is
3070 required. If the template-id was for a template-class, we
3071 will sometimes have a TYPE_DECL at this point. */
3072 if (TREE_CODE (id_expression
) == TEMPLATE_ID_EXPR
3073 || TREE_CODE (id_expression
) == TYPE_DECL
)
3074 decl
= id_expression
;
3075 /* Look up the name. */
3078 tree ambiguous_decls
;
3080 decl
= cp_parser_lookup_name (parser
, id_expression
,
3083 /*is_namespace=*/false,
3084 /*check_dependency=*/true,
3086 /* If the lookup was ambiguous, an error will already have
3088 if (ambiguous_decls
)
3089 return error_mark_node
;
3091 /* In Objective-C++, an instance variable (ivar) may be preferred
3092 to whatever cp_parser_lookup_name() found. */
3093 decl
= objc_lookup_ivar (decl
, id_expression
);
3095 /* If name lookup gives us a SCOPE_REF, then the
3096 qualifying scope was dependent. */
3097 if (TREE_CODE (decl
) == SCOPE_REF
)
3099 /* Check to see if DECL is a local variable in a context
3100 where that is forbidden. */
3101 if (parser
->local_variables_forbidden_p
3102 && local_variable_p (decl
))
3104 /* It might be that we only found DECL because we are
3105 trying to be generous with pre-ISO scoping rules.
3106 For example, consider:
3110 for (int i = 0; i < 10; ++i) {}
3111 extern void f(int j = i);
3114 Here, name look up will originally find the out
3115 of scope `i'. We need to issue a warning message,
3116 but then use the global `i'. */
3117 decl
= check_for_out_of_scope_variable (decl
);
3118 if (local_variable_p (decl
))
3120 error ("local variable %qD may not appear in this context",
3122 return error_mark_node
;
3127 decl
= (finish_id_expression
3128 (id_expression
, decl
, parser
->scope
,
3130 parser
->integral_constant_expression_p
,
3131 parser
->allow_non_integral_constant_expression_p
,
3132 &parser
->non_integral_constant_expression_p
,
3133 template_p
, done
, address_p
,
3137 cp_parser_error (parser
, error_msg
);
3141 /* Anything else is an error. */
3143 /* ...unless we have an Objective-C++ message or string literal, that is. */
3144 if (c_dialect_objc ()
3145 && (token
->type
== CPP_OPEN_SQUARE
|| token
->type
== CPP_OBJC_STRING
))
3146 return cp_parser_objc_expression (parser
);
3148 cp_parser_error (parser
, "expected primary-expression");
3149 return error_mark_node
;
3153 /* Parse an id-expression.
3160 :: [opt] nested-name-specifier template [opt] unqualified-id
3162 :: operator-function-id
3165 Return a representation of the unqualified portion of the
3166 identifier. Sets PARSER->SCOPE to the qualifying scope if there is
3167 a `::' or nested-name-specifier.
3169 Often, if the id-expression was a qualified-id, the caller will
3170 want to make a SCOPE_REF to represent the qualified-id. This
3171 function does not do this in order to avoid wastefully creating
3172 SCOPE_REFs when they are not required.
3174 If TEMPLATE_KEYWORD_P is true, then we have just seen the
3177 If CHECK_DEPENDENCY_P is false, then names are looked up inside
3178 uninstantiated templates.
3180 If *TEMPLATE_P is non-NULL, it is set to true iff the
3181 `template' keyword is used to explicitly indicate that the entity
3182 named is a template.
3184 If DECLARATOR_P is true, the id-expression is appearing as part of
3185 a declarator, rather than as part of an expression. */
3188 cp_parser_id_expression (cp_parser
*parser
,
3189 bool template_keyword_p
,
3190 bool check_dependency_p
,
3195 bool global_scope_p
;
3196 bool nested_name_specifier_p
;
3198 /* Assume the `template' keyword was not used. */
3200 *template_p
= template_keyword_p
;
3202 /* Look for the optional `::' operator. */
3204 = (cp_parser_global_scope_opt (parser
, /*current_scope_valid_p=*/false)
3206 /* Look for the optional nested-name-specifier. */
3207 nested_name_specifier_p
3208 = (cp_parser_nested_name_specifier_opt (parser
,
3209 /*typename_keyword_p=*/false,
3214 /* If there is a nested-name-specifier, then we are looking at
3215 the first qualified-id production. */
3216 if (nested_name_specifier_p
)
3219 tree saved_object_scope
;
3220 tree saved_qualifying_scope
;
3221 tree unqualified_id
;
3224 /* See if the next token is the `template' keyword. */
3226 template_p
= &is_template
;
3227 *template_p
= cp_parser_optional_template_keyword (parser
);
3228 /* Name lookup we do during the processing of the
3229 unqualified-id might obliterate SCOPE. */
3230 saved_scope
= parser
->scope
;
3231 saved_object_scope
= parser
->object_scope
;
3232 saved_qualifying_scope
= parser
->qualifying_scope
;
3233 /* Process the final unqualified-id. */
3234 unqualified_id
= cp_parser_unqualified_id (parser
, *template_p
,
3237 /*optional_p=*/false);
3238 /* Restore the SAVED_SCOPE for our caller. */
3239 parser
->scope
= saved_scope
;
3240 parser
->object_scope
= saved_object_scope
;
3241 parser
->qualifying_scope
= saved_qualifying_scope
;
3243 return unqualified_id
;
3245 /* Otherwise, if we are in global scope, then we are looking at one
3246 of the other qualified-id productions. */
3247 else if (global_scope_p
)
3252 /* Peek at the next token. */
3253 token
= cp_lexer_peek_token (parser
->lexer
);
3255 /* If it's an identifier, and the next token is not a "<", then
3256 we can avoid the template-id case. This is an optimization
3257 for this common case. */
3258 if (token
->type
== CPP_NAME
3259 && !cp_parser_nth_token_starts_template_argument_list_p
3261 return cp_parser_identifier (parser
);
3263 cp_parser_parse_tentatively (parser
);
3264 /* Try a template-id. */
3265 id
= cp_parser_template_id (parser
,
3266 /*template_keyword_p=*/false,
3267 /*check_dependency_p=*/true,
3269 /* If that worked, we're done. */
3270 if (cp_parser_parse_definitely (parser
))
3273 /* Peek at the next token. (Changes in the token buffer may
3274 have invalidated the pointer obtained above.) */
3275 token
= cp_lexer_peek_token (parser
->lexer
);
3277 switch (token
->type
)
3280 return cp_parser_identifier (parser
);
3283 if (token
->keyword
== RID_OPERATOR
)
3284 return cp_parser_operator_function_id (parser
);
3288 cp_parser_error (parser
, "expected id-expression");
3289 return error_mark_node
;
3293 return cp_parser_unqualified_id (parser
, template_keyword_p
,
3294 /*check_dependency_p=*/true,
3299 /* Parse an unqualified-id.
3303 operator-function-id
3304 conversion-function-id
3308 If TEMPLATE_KEYWORD_P is TRUE, we have just seen the `template'
3309 keyword, in a construct like `A::template ...'.
3311 Returns a representation of unqualified-id. For the `identifier'
3312 production, an IDENTIFIER_NODE is returned. For the `~ class-name'
3313 production a BIT_NOT_EXPR is returned; the operand of the
3314 BIT_NOT_EXPR is an IDENTIFIER_NODE for the class-name. For the
3315 other productions, see the documentation accompanying the
3316 corresponding parsing functions. If CHECK_DEPENDENCY_P is false,
3317 names are looked up in uninstantiated templates. If DECLARATOR_P
3318 is true, the unqualified-id is appearing as part of a declarator,
3319 rather than as part of an expression. */
3322 cp_parser_unqualified_id (cp_parser
* parser
,
3323 bool template_keyword_p
,
3324 bool check_dependency_p
,
3330 /* Peek at the next token. */
3331 token
= cp_lexer_peek_token (parser
->lexer
);
3333 switch (token
->type
)
3339 /* We don't know yet whether or not this will be a
3341 cp_parser_parse_tentatively (parser
);
3342 /* Try a template-id. */
3343 id
= cp_parser_template_id (parser
, template_keyword_p
,
3346 /* If it worked, we're done. */
3347 if (cp_parser_parse_definitely (parser
))
3349 /* Otherwise, it's an ordinary identifier. */
3350 return cp_parser_identifier (parser
);
3353 case CPP_TEMPLATE_ID
:
3354 return cp_parser_template_id (parser
, template_keyword_p
,
3361 tree qualifying_scope
;
3366 /* Consume the `~' token. */
3367 cp_lexer_consume_token (parser
->lexer
);
3368 /* Parse the class-name. The standard, as written, seems to
3371 template <typename T> struct S { ~S (); };
3372 template <typename T> S<T>::~S() {}
3374 is invalid, since `~' must be followed by a class-name, but
3375 `S<T>' is dependent, and so not known to be a class.
3376 That's not right; we need to look in uninstantiated
3377 templates. A further complication arises from:
3379 template <typename T> void f(T t) {
3383 Here, it is not possible to look up `T' in the scope of `T'
3384 itself. We must look in both the current scope, and the
3385 scope of the containing complete expression.
3387 Yet another issue is:
3396 The standard does not seem to say that the `S' in `~S'
3397 should refer to the type `S' and not the data member
3400 /* DR 244 says that we look up the name after the "~" in the
3401 same scope as we looked up the qualifying name. That idea
3402 isn't fully worked out; it's more complicated than that. */
3403 scope
= parser
->scope
;
3404 object_scope
= parser
->object_scope
;
3405 qualifying_scope
= parser
->qualifying_scope
;
3407 /* Check for invalid scopes. */
3408 if (scope
== error_mark_node
)
3410 if (cp_lexer_next_token_is (parser
->lexer
, CPP_NAME
))
3411 cp_lexer_consume_token (parser
->lexer
);
3412 return error_mark_node
;
3414 if (scope
&& TREE_CODE (scope
) == NAMESPACE_DECL
)
3416 if (!cp_parser_uncommitted_to_tentative_parse_p (parser
))
3417 error ("scope %qT before %<~%> is not a class-name", scope
);
3418 cp_parser_simulate_error (parser
);
3419 if (cp_lexer_next_token_is (parser
->lexer
, CPP_NAME
))
3420 cp_lexer_consume_token (parser
->lexer
);
3421 return error_mark_node
;
3423 gcc_assert (!scope
|| TYPE_P (scope
));
3425 /* If the name is of the form "X::~X" it's OK. */
3426 token
= cp_lexer_peek_token (parser
->lexer
);
3428 && token
->type
== CPP_NAME
3429 && (cp_lexer_peek_nth_token (parser
->lexer
, 2)->type
3431 && constructor_name_p (token
->value
, scope
))
3433 cp_lexer_consume_token (parser
->lexer
);
3434 return build_nt (BIT_NOT_EXPR
, scope
);
3437 /* If there was an explicit qualification (S::~T), first look
3438 in the scope given by the qualification (i.e., S). */
3440 type_decl
= NULL_TREE
;
3443 cp_parser_parse_tentatively (parser
);
3444 type_decl
= cp_parser_class_name (parser
,
3445 /*typename_keyword_p=*/false,
3446 /*template_keyword_p=*/false,
3448 /*check_dependency=*/false,
3449 /*class_head_p=*/false,
3451 if (cp_parser_parse_definitely (parser
))
3454 /* In "N::S::~S", look in "N" as well. */
3455 if (!done
&& scope
&& qualifying_scope
)
3457 cp_parser_parse_tentatively (parser
);
3458 parser
->scope
= qualifying_scope
;
3459 parser
->object_scope
= NULL_TREE
;
3460 parser
->qualifying_scope
= NULL_TREE
;
3462 = cp_parser_class_name (parser
,
3463 /*typename_keyword_p=*/false,
3464 /*template_keyword_p=*/false,
3466 /*check_dependency=*/false,
3467 /*class_head_p=*/false,
3469 if (cp_parser_parse_definitely (parser
))
3472 /* In "p->S::~T", look in the scope given by "*p" as well. */
3473 else if (!done
&& object_scope
)
3475 cp_parser_parse_tentatively (parser
);
3476 parser
->scope
= object_scope
;
3477 parser
->object_scope
= NULL_TREE
;
3478 parser
->qualifying_scope
= NULL_TREE
;
3480 = cp_parser_class_name (parser
,
3481 /*typename_keyword_p=*/false,
3482 /*template_keyword_p=*/false,
3484 /*check_dependency=*/false,
3485 /*class_head_p=*/false,
3487 if (cp_parser_parse_definitely (parser
))
3490 /* Look in the surrounding context. */
3493 parser
->scope
= NULL_TREE
;
3494 parser
->object_scope
= NULL_TREE
;
3495 parser
->qualifying_scope
= NULL_TREE
;
3497 = cp_parser_class_name (parser
,
3498 /*typename_keyword_p=*/false,
3499 /*template_keyword_p=*/false,
3501 /*check_dependency=*/false,
3502 /*class_head_p=*/false,
3505 /* If an error occurred, assume that the name of the
3506 destructor is the same as the name of the qualifying
3507 class. That allows us to keep parsing after running
3508 into ill-formed destructor names. */
3509 if (type_decl
== error_mark_node
&& scope
)
3510 return build_nt (BIT_NOT_EXPR
, scope
);
3511 else if (type_decl
== error_mark_node
)
3512 return error_mark_node
;
3514 /* Check that destructor name and scope match. */
3515 if (declarator_p
&& scope
&& !check_dtor_name (scope
, type_decl
))
3517 if (!cp_parser_uncommitted_to_tentative_parse_p (parser
))
3518 error ("declaration of %<~%T%> as member of %qT",
3520 cp_parser_simulate_error (parser
);
3521 return error_mark_node
;
3526 A typedef-name that names a class shall not be used as the
3527 identifier in the declarator for a destructor declaration. */
3529 && !DECL_IMPLICIT_TYPEDEF_P (type_decl
)
3530 && !DECL_SELF_REFERENCE_P (type_decl
)
3531 && !cp_parser_uncommitted_to_tentative_parse_p (parser
))
3532 error ("typedef-name %qD used as destructor declarator",
3535 return build_nt (BIT_NOT_EXPR
, TREE_TYPE (type_decl
));
3539 if (token
->keyword
== RID_OPERATOR
)
3543 /* This could be a template-id, so we try that first. */
3544 cp_parser_parse_tentatively (parser
);
3545 /* Try a template-id. */
3546 id
= cp_parser_template_id (parser
, template_keyword_p
,
3547 /*check_dependency_p=*/true,
3549 /* If that worked, we're done. */
3550 if (cp_parser_parse_definitely (parser
))
3552 /* We still don't know whether we're looking at an
3553 operator-function-id or a conversion-function-id. */
3554 cp_parser_parse_tentatively (parser
);
3555 /* Try an operator-function-id. */
3556 id
= cp_parser_operator_function_id (parser
);
3557 /* If that didn't work, try a conversion-function-id. */
3558 if (!cp_parser_parse_definitely (parser
))
3559 id
= cp_parser_conversion_function_id (parser
);
3568 cp_parser_error (parser
, "expected unqualified-id");
3569 return error_mark_node
;
3573 /* Parse an (optional) nested-name-specifier.
3575 nested-name-specifier:
3576 class-or-namespace-name :: nested-name-specifier [opt]
3577 class-or-namespace-name :: template nested-name-specifier [opt]
3579 PARSER->SCOPE should be set appropriately before this function is
3580 called. TYPENAME_KEYWORD_P is TRUE if the `typename' keyword is in
3581 effect. TYPE_P is TRUE if we non-type bindings should be ignored
3584 Sets PARSER->SCOPE to the class (TYPE) or namespace
3585 (NAMESPACE_DECL) specified by the nested-name-specifier, or leaves
3586 it unchanged if there is no nested-name-specifier. Returns the new
3587 scope iff there is a nested-name-specifier, or NULL_TREE otherwise.
3589 If IS_DECLARATION is TRUE, the nested-name-specifier is known to be
3590 part of a declaration and/or decl-specifier. */
3593 cp_parser_nested_name_specifier_opt (cp_parser
*parser
,
3594 bool typename_keyword_p
,
3595 bool check_dependency_p
,
3597 bool is_declaration
)
3599 bool success
= false;
3600 cp_token_position start
= 0;
3603 /* Remember where the nested-name-specifier starts. */
3604 if (cp_parser_uncommitted_to_tentative_parse_p (parser
))
3606 start
= cp_lexer_token_position (parser
->lexer
, false);
3607 push_deferring_access_checks (dk_deferred
);
3614 tree saved_qualifying_scope
;
3615 bool template_keyword_p
;
3617 /* Spot cases that cannot be the beginning of a
3618 nested-name-specifier. */
3619 token
= cp_lexer_peek_token (parser
->lexer
);
3621 /* If the next token is CPP_NESTED_NAME_SPECIFIER, just process
3622 the already parsed nested-name-specifier. */
3623 if (token
->type
== CPP_NESTED_NAME_SPECIFIER
)
3625 /* Grab the nested-name-specifier and continue the loop. */
3626 cp_parser_pre_parsed_nested_name_specifier (parser
);
3631 /* Spot cases that cannot be the beginning of a
3632 nested-name-specifier. On the second and subsequent times
3633 through the loop, we look for the `template' keyword. */
3634 if (success
&& token
->keyword
== RID_TEMPLATE
)
3636 /* A template-id can start a nested-name-specifier. */
3637 else if (token
->type
== CPP_TEMPLATE_ID
)
3641 /* If the next token is not an identifier, then it is
3642 definitely not a class-or-namespace-name. */
3643 if (token
->type
!= CPP_NAME
)
3645 /* If the following token is neither a `<' (to begin a
3646 template-id), nor a `::', then we are not looking at a
3647 nested-name-specifier. */
3648 token
= cp_lexer_peek_nth_token (parser
->lexer
, 2);
3649 if (token
->type
!= CPP_SCOPE
3650 && !cp_parser_nth_token_starts_template_argument_list_p
3655 /* The nested-name-specifier is optional, so we parse
3657 cp_parser_parse_tentatively (parser
);
3659 /* Look for the optional `template' keyword, if this isn't the
3660 first time through the loop. */
3662 template_keyword_p
= cp_parser_optional_template_keyword (parser
);
3664 template_keyword_p
= false;
3666 /* Save the old scope since the name lookup we are about to do
3667 might destroy it. */
3668 old_scope
= parser
->scope
;
3669 saved_qualifying_scope
= parser
->qualifying_scope
;
3670 /* In a declarator-id like "X<T>::I::Y<T>" we must be able to
3671 look up names in "X<T>::I" in order to determine that "Y" is
3672 a template. So, if we have a typename at this point, we make
3673 an effort to look through it. */
3675 && !typename_keyword_p
3677 && TREE_CODE (parser
->scope
) == TYPENAME_TYPE
)
3678 parser
->scope
= resolve_typename_type (parser
->scope
,
3679 /*only_current_p=*/false);
3680 /* Parse the qualifying entity. */
3682 = cp_parser_class_or_namespace_name (parser
,
3688 /* Look for the `::' token. */
3689 cp_parser_require (parser
, CPP_SCOPE
, "`::'");
3691 /* If we found what we wanted, we keep going; otherwise, we're
3693 if (!cp_parser_parse_definitely (parser
))
3695 bool error_p
= false;
3697 /* Restore the OLD_SCOPE since it was valid before the
3698 failed attempt at finding the last
3699 class-or-namespace-name. */
3700 parser
->scope
= old_scope
;
3701 parser
->qualifying_scope
= saved_qualifying_scope
;
3702 if (cp_parser_uncommitted_to_tentative_parse_p (parser
))
3704 /* If the next token is an identifier, and the one after
3705 that is a `::', then any valid interpretation would have
3706 found a class-or-namespace-name. */
3707 while (cp_lexer_next_token_is (parser
->lexer
, CPP_NAME
)
3708 && (cp_lexer_peek_nth_token (parser
->lexer
, 2)->type
3710 && (cp_lexer_peek_nth_token (parser
->lexer
, 3)->type
3713 token
= cp_lexer_consume_token (parser
->lexer
);
3716 if (!token
->ambiguous_p
)
3719 tree ambiguous_decls
;
3721 decl
= cp_parser_lookup_name (parser
, token
->value
,
3723 /*is_template=*/false,
3724 /*is_namespace=*/false,
3725 /*check_dependency=*/true,
3727 if (TREE_CODE (decl
) == TEMPLATE_DECL
)
3728 error ("%qD used without template parameters", decl
);
3729 else if (ambiguous_decls
)
3731 error ("reference to %qD is ambiguous",
3733 print_candidates (ambiguous_decls
);
3734 decl
= error_mark_node
;
3737 cp_parser_name_lookup_error
3738 (parser
, token
->value
, decl
,
3739 "is not a class or namespace");
3741 parser
->scope
= error_mark_node
;
3743 /* Treat this as a successful nested-name-specifier
3748 If the name found is not a class-name (clause
3749 _class_) or namespace-name (_namespace.def_), the
3750 program is ill-formed. */
3753 cp_lexer_consume_token (parser
->lexer
);
3757 /* We've found one valid nested-name-specifier. */
3759 /* Name lookup always gives us a DECL. */
3760 if (TREE_CODE (new_scope
) == TYPE_DECL
)
3761 new_scope
= TREE_TYPE (new_scope
);
3762 /* Uses of "template" must be followed by actual templates. */
3763 if (template_keyword_p
3764 && !(CLASS_TYPE_P (new_scope
)
3765 && ((CLASSTYPE_USE_TEMPLATE (new_scope
)
3766 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (new_scope
)))
3767 || CLASSTYPE_IS_TEMPLATE (new_scope
)))
3768 && !(TREE_CODE (new_scope
) == TYPENAME_TYPE
3769 && (TREE_CODE (TYPENAME_TYPE_FULLNAME (new_scope
))
3770 == TEMPLATE_ID_EXPR
)))
3771 pedwarn (TYPE_P (new_scope
)
3772 ? "%qT is not a template"
3773 : "%qD is not a template",
3775 /* If it is a class scope, try to complete it; we are about to
3776 be looking up names inside the class. */
3777 if (TYPE_P (new_scope
)
3778 /* Since checking types for dependency can be expensive,
3779 avoid doing it if the type is already complete. */
3780 && !COMPLETE_TYPE_P (new_scope
)
3781 /* Do not try to complete dependent types. */
3782 && !dependent_type_p (new_scope
))
3783 new_scope
= complete_type (new_scope
);
3784 /* Make sure we look in the right scope the next time through
3786 parser
->scope
= new_scope
;
3789 /* If parsing tentatively, replace the sequence of tokens that makes
3790 up the nested-name-specifier with a CPP_NESTED_NAME_SPECIFIER
3791 token. That way, should we re-parse the token stream, we will
3792 not have to repeat the effort required to do the parse, nor will
3793 we issue duplicate error messages. */
3794 if (success
&& start
)
3799 token
= cp_lexer_token_at (parser
->lexer
, start
);
3800 /* Reset the contents of the START token. */
3801 token
->type
= CPP_NESTED_NAME_SPECIFIER
;
3802 /* Retrieve any deferred checks. Do not pop this access checks yet
3803 so the memory will not be reclaimed during token replacing below. */
3804 access_checks
= get_deferred_access_checks ();
3805 token
->value
= build_tree_list (copy_list (access_checks
),
3807 TREE_TYPE (token
->value
) = parser
->qualifying_scope
;
3808 token
->keyword
= RID_MAX
;
3810 /* Purge all subsequent tokens. */
3811 cp_lexer_purge_tokens_after (parser
->lexer
, start
);
3815 pop_to_parent_deferring_access_checks ();
3817 return success
? parser
->scope
: NULL_TREE
;
3820 /* Parse a nested-name-specifier. See
3821 cp_parser_nested_name_specifier_opt for details. This function
3822 behaves identically, except that it will an issue an error if no
3823 nested-name-specifier is present. */
3826 cp_parser_nested_name_specifier (cp_parser
*parser
,
3827 bool typename_keyword_p
,
3828 bool check_dependency_p
,
3830 bool is_declaration
)
3834 /* Look for the nested-name-specifier. */
3835 scope
= cp_parser_nested_name_specifier_opt (parser
,
3840 /* If it was not present, issue an error message. */
3843 cp_parser_error (parser
, "expected nested-name-specifier");
3844 parser
->scope
= NULL_TREE
;
3850 /* Parse a class-or-namespace-name.
3852 class-or-namespace-name:
3856 TYPENAME_KEYWORD_P is TRUE iff the `typename' keyword is in effect.
3857 TEMPLATE_KEYWORD_P is TRUE iff the `template' keyword is in effect.
3858 CHECK_DEPENDENCY_P is FALSE iff dependent names should be looked up.
3859 TYPE_P is TRUE iff the next name should be taken as a class-name,
3860 even the same name is declared to be another entity in the same
3863 Returns the class (TYPE_DECL) or namespace (NAMESPACE_DECL)
3864 specified by the class-or-namespace-name. If neither is found the
3865 ERROR_MARK_NODE is returned. */
3868 cp_parser_class_or_namespace_name (cp_parser
*parser
,
3869 bool typename_keyword_p
,
3870 bool template_keyword_p
,
3871 bool check_dependency_p
,
3873 bool is_declaration
)
3876 tree saved_qualifying_scope
;
3877 tree saved_object_scope
;
3881 /* Before we try to parse the class-name, we must save away the
3882 current PARSER->SCOPE since cp_parser_class_name will destroy
3884 saved_scope
= parser
->scope
;
3885 saved_qualifying_scope
= parser
->qualifying_scope
;
3886 saved_object_scope
= parser
->object_scope
;
3887 /* Try for a class-name first. If the SAVED_SCOPE is a type, then
3888 there is no need to look for a namespace-name. */
3889 only_class_p
= template_keyword_p
|| (saved_scope
&& TYPE_P (saved_scope
));
3891 cp_parser_parse_tentatively (parser
);
3892 scope
= cp_parser_class_name (parser
,
3895 type_p
? class_type
: none_type
,
3897 /*class_head_p=*/false,
3899 /* If that didn't work, try for a namespace-name. */
3900 if (!only_class_p
&& !cp_parser_parse_definitely (parser
))
3902 /* Restore the saved scope. */
3903 parser
->scope
= saved_scope
;
3904 parser
->qualifying_scope
= saved_qualifying_scope
;
3905 parser
->object_scope
= saved_object_scope
;
3906 /* If we are not looking at an identifier followed by the scope
3907 resolution operator, then this is not part of a
3908 nested-name-specifier. (Note that this function is only used
3909 to parse the components of a nested-name-specifier.) */
3910 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_NAME
)
3911 || cp_lexer_peek_nth_token (parser
->lexer
, 2)->type
!= CPP_SCOPE
)
3912 return error_mark_node
;
3913 scope
= cp_parser_namespace_name (parser
);
3919 /* Parse a postfix-expression.
3923 postfix-expression [ expression ]
3924 postfix-expression ( expression-list [opt] )
3925 simple-type-specifier ( expression-list [opt] )
3926 typename :: [opt] nested-name-specifier identifier
3927 ( expression-list [opt] )
3928 typename :: [opt] nested-name-specifier template [opt] template-id
3929 ( expression-list [opt] )
3930 postfix-expression . template [opt] id-expression
3931 postfix-expression -> template [opt] id-expression
3932 postfix-expression . pseudo-destructor-name
3933 postfix-expression -> pseudo-destructor-name
3934 postfix-expression ++
3935 postfix-expression --
3936 dynamic_cast < type-id > ( expression )
3937 static_cast < type-id > ( expression )
3938 reinterpret_cast < type-id > ( expression )
3939 const_cast < type-id > ( expression )
3940 typeid ( expression )
3946 ( type-id ) { initializer-list , [opt] }
3948 This extension is a GNU version of the C99 compound-literal
3949 construct. (The C99 grammar uses `type-name' instead of `type-id',
3950 but they are essentially the same concept.)
3952 If ADDRESS_P is true, the postfix expression is the operand of the
3953 `&' operator. CAST_P is true if this expression is the target of a
3956 Returns a representation of the expression. */
3959 cp_parser_postfix_expression (cp_parser
*parser
, bool address_p
, bool cast_p
)
3963 cp_id_kind idk
= CP_ID_KIND_NONE
;
3964 tree postfix_expression
= NULL_TREE
;
3966 /* Peek at the next token. */
3967 token
= cp_lexer_peek_token (parser
->lexer
);
3968 /* Some of the productions are determined by keywords. */
3969 keyword
= token
->keyword
;
3979 const char *saved_message
;
3981 /* All of these can be handled in the same way from the point
3982 of view of parsing. Begin by consuming the token
3983 identifying the cast. */
3984 cp_lexer_consume_token (parser
->lexer
);
3986 /* New types cannot be defined in the cast. */
3987 saved_message
= parser
->type_definition_forbidden_message
;
3988 parser
->type_definition_forbidden_message
3989 = "types may not be defined in casts";
3991 /* Look for the opening `<'. */
3992 cp_parser_require (parser
, CPP_LESS
, "`<'");
3993 /* Parse the type to which we are casting. */
3994 type
= cp_parser_type_id (parser
);
3995 /* Look for the closing `>'. */
3996 cp_parser_require (parser
, CPP_GREATER
, "`>'");
3997 /* Restore the old message. */
3998 parser
->type_definition_forbidden_message
= saved_message
;
4000 /* And the expression which is being cast. */
4001 cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('");
4002 expression
= cp_parser_expression (parser
, /*cast_p=*/true);
4003 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
4005 /* Only type conversions to integral or enumeration types
4006 can be used in constant-expressions. */
4007 if (!cast_valid_in_integral_constant_expression_p (type
)
4008 && (cp_parser_non_integral_constant_expression
4010 "a cast to a type other than an integral or "
4011 "enumeration type")))
4012 return error_mark_node
;
4018 = build_dynamic_cast (type
, expression
);
4022 = build_static_cast (type
, expression
);
4026 = build_reinterpret_cast (type
, expression
);
4030 = build_const_cast (type
, expression
);
4041 const char *saved_message
;
4042 bool saved_in_type_id_in_expr_p
;
4044 /* Consume the `typeid' token. */
4045 cp_lexer_consume_token (parser
->lexer
);
4046 /* Look for the `(' token. */
4047 cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('");
4048 /* Types cannot be defined in a `typeid' expression. */
4049 saved_message
= parser
->type_definition_forbidden_message
;
4050 parser
->type_definition_forbidden_message
4051 = "types may not be defined in a `typeid\' expression";
4052 /* We can't be sure yet whether we're looking at a type-id or an
4054 cp_parser_parse_tentatively (parser
);
4055 /* Try a type-id first. */
4056 saved_in_type_id_in_expr_p
= parser
->in_type_id_in_expr_p
;
4057 parser
->in_type_id_in_expr_p
= true;
4058 type
= cp_parser_type_id (parser
);
4059 parser
->in_type_id_in_expr_p
= saved_in_type_id_in_expr_p
;
4060 /* Look for the `)' token. Otherwise, we can't be sure that
4061 we're not looking at an expression: consider `typeid (int
4062 (3))', for example. */
4063 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
4064 /* If all went well, simply lookup the type-id. */
4065 if (cp_parser_parse_definitely (parser
))
4066 postfix_expression
= get_typeid (type
);
4067 /* Otherwise, fall back to the expression variant. */
4072 /* Look for an expression. */
4073 expression
= cp_parser_expression (parser
, /*cast_p=*/false);
4074 /* Compute its typeid. */
4075 postfix_expression
= build_typeid (expression
);
4076 /* Look for the `)' token. */
4077 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
4079 /* Restore the saved message. */
4080 parser
->type_definition_forbidden_message
= saved_message
;
4081 /* `typeid' may not appear in an integral constant expression. */
4082 if (cp_parser_non_integral_constant_expression(parser
,
4083 "`typeid' operator"))
4084 return error_mark_node
;
4091 /* The syntax permitted here is the same permitted for an
4092 elaborated-type-specifier. */
4093 type
= cp_parser_elaborated_type_specifier (parser
,
4094 /*is_friend=*/false,
4095 /*is_declaration=*/false);
4096 postfix_expression
= cp_parser_functional_cast (parser
, type
);
4104 /* If the next thing is a simple-type-specifier, we may be
4105 looking at a functional cast. We could also be looking at
4106 an id-expression. So, we try the functional cast, and if
4107 that doesn't work we fall back to the primary-expression. */
4108 cp_parser_parse_tentatively (parser
);
4109 /* Look for the simple-type-specifier. */
4110 type
= cp_parser_simple_type_specifier (parser
,
4111 /*decl_specs=*/NULL
,
4112 CP_PARSER_FLAGS_NONE
);
4113 /* Parse the cast itself. */
4114 if (!cp_parser_error_occurred (parser
))
4116 = cp_parser_functional_cast (parser
, type
);
4117 /* If that worked, we're done. */
4118 if (cp_parser_parse_definitely (parser
))
4121 /* If the functional-cast didn't work out, try a
4122 compound-literal. */
4123 if (cp_parser_allow_gnu_extensions_p (parser
)
4124 && cp_lexer_next_token_is (parser
->lexer
, CPP_OPEN_PAREN
))
4126 VEC(constructor_elt
,gc
) *initializer_list
= NULL
;
4127 bool saved_in_type_id_in_expr_p
;
4129 cp_parser_parse_tentatively (parser
);
4130 /* Consume the `('. */
4131 cp_lexer_consume_token (parser
->lexer
);
4132 /* Parse the type. */
4133 saved_in_type_id_in_expr_p
= parser
->in_type_id_in_expr_p
;
4134 parser
->in_type_id_in_expr_p
= true;
4135 type
= cp_parser_type_id (parser
);
4136 parser
->in_type_id_in_expr_p
= saved_in_type_id_in_expr_p
;
4137 /* Look for the `)'. */
4138 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
4139 /* Look for the `{'. */
4140 cp_parser_require (parser
, CPP_OPEN_BRACE
, "`{'");
4141 /* If things aren't going well, there's no need to
4143 if (!cp_parser_error_occurred (parser
))
4145 bool non_constant_p
;
4146 /* Parse the initializer-list. */
4148 = cp_parser_initializer_list (parser
, &non_constant_p
);
4149 /* Allow a trailing `,'. */
4150 if (cp_lexer_next_token_is (parser
->lexer
, CPP_COMMA
))
4151 cp_lexer_consume_token (parser
->lexer
);
4152 /* Look for the final `}'. */
4153 cp_parser_require (parser
, CPP_CLOSE_BRACE
, "`}'");
4155 /* If that worked, we're definitely looking at a
4156 compound-literal expression. */
4157 if (cp_parser_parse_definitely (parser
))
4159 /* Warn the user that a compound literal is not
4160 allowed in standard C++. */
4162 pedwarn ("ISO C++ forbids compound-literals");
4163 /* Form the representation of the compound-literal. */
4165 = finish_compound_literal (type
, initializer_list
);
4170 /* It must be a primary-expression. */
4172 = cp_parser_primary_expression (parser
, address_p
, cast_p
,
4173 /*template_arg_p=*/false,
4179 /* Keep looping until the postfix-expression is complete. */
4182 if (idk
== CP_ID_KIND_UNQUALIFIED
4183 && TREE_CODE (postfix_expression
) == IDENTIFIER_NODE
4184 && cp_lexer_next_token_is_not (parser
->lexer
, CPP_OPEN_PAREN
))
4185 /* It is not a Koenig lookup function call. */
4187 = unqualified_name_lookup_error (postfix_expression
);
4189 /* Peek at the next token. */
4190 token
= cp_lexer_peek_token (parser
->lexer
);
4192 switch (token
->type
)
4194 case CPP_OPEN_SQUARE
:
4196 = cp_parser_postfix_open_square_expression (parser
,
4199 idk
= CP_ID_KIND_NONE
;
4202 case CPP_OPEN_PAREN
:
4203 /* postfix-expression ( expression-list [opt] ) */
4206 bool is_builtin_constant_p
;
4207 bool saved_integral_constant_expression_p
= false;
4208 bool saved_non_integral_constant_expression_p
= false;
4211 is_builtin_constant_p
4212 = DECL_IS_BUILTIN_CONSTANT_P (postfix_expression
);
4213 if (is_builtin_constant_p
)
4215 /* The whole point of __builtin_constant_p is to allow
4216 non-constant expressions to appear as arguments. */
4217 saved_integral_constant_expression_p
4218 = parser
->integral_constant_expression_p
;
4219 saved_non_integral_constant_expression_p
4220 = parser
->non_integral_constant_expression_p
;
4221 parser
->integral_constant_expression_p
= false;
4223 args
= (cp_parser_parenthesized_expression_list
4224 (parser
, /*is_attribute_list=*/false,
4226 /*non_constant_p=*/NULL
));
4227 if (is_builtin_constant_p
)
4229 parser
->integral_constant_expression_p
4230 = saved_integral_constant_expression_p
;
4231 parser
->non_integral_constant_expression_p
4232 = saved_non_integral_constant_expression_p
;
4235 if (args
== error_mark_node
)
4237 postfix_expression
= error_mark_node
;
4241 /* Function calls are not permitted in
4242 constant-expressions. */
4243 if (! builtin_valid_in_constant_expr_p (postfix_expression
)
4244 && cp_parser_non_integral_constant_expression (parser
,
4247 postfix_expression
= error_mark_node
;
4252 if (idk
== CP_ID_KIND_UNQUALIFIED
)
4254 if (TREE_CODE (postfix_expression
) == IDENTIFIER_NODE
)
4260 = perform_koenig_lookup (postfix_expression
, args
);
4264 = unqualified_fn_lookup_error (postfix_expression
);
4266 /* We do not perform argument-dependent lookup if
4267 normal lookup finds a non-function, in accordance
4268 with the expected resolution of DR 218. */
4269 else if (args
&& is_overloaded_fn (postfix_expression
))
4271 tree fn
= get_first_fn (postfix_expression
);
4273 if (TREE_CODE (fn
) == TEMPLATE_ID_EXPR
)
4274 fn
= OVL_CURRENT (TREE_OPERAND (fn
, 0));
4276 /* Only do argument dependent lookup if regular
4277 lookup does not find a set of member functions.
4278 [basic.lookup.koenig]/2a */
4279 if (!DECL_FUNCTION_MEMBER_P (fn
))
4283 = perform_koenig_lookup (postfix_expression
, args
);
4288 if (TREE_CODE (postfix_expression
) == COMPONENT_REF
)
4290 tree instance
= TREE_OPERAND (postfix_expression
, 0);
4291 tree fn
= TREE_OPERAND (postfix_expression
, 1);
4293 if (processing_template_decl
4294 && (type_dependent_expression_p (instance
)
4295 || (!BASELINK_P (fn
)
4296 && TREE_CODE (fn
) != FIELD_DECL
)
4297 || type_dependent_expression_p (fn
)
4298 || any_type_dependent_arguments_p (args
)))
4301 = build_min_nt (CALL_EXPR
, postfix_expression
,
4306 if (BASELINK_P (fn
))
4308 = (build_new_method_call
4309 (instance
, fn
, args
, NULL_TREE
,
4310 (idk
== CP_ID_KIND_QUALIFIED
4311 ? LOOKUP_NONVIRTUAL
: LOOKUP_NORMAL
),
4315 = finish_call_expr (postfix_expression
, args
,
4316 /*disallow_virtual=*/false,
4317 /*koenig_p=*/false);
4319 else if (TREE_CODE (postfix_expression
) == OFFSET_REF
4320 || TREE_CODE (postfix_expression
) == MEMBER_REF
4321 || TREE_CODE (postfix_expression
) == DOTSTAR_EXPR
)
4322 postfix_expression
= (build_offset_ref_call_from_tree
4323 (postfix_expression
, args
));
4324 else if (idk
== CP_ID_KIND_QUALIFIED
)
4325 /* A call to a static class member, or a namespace-scope
4328 = finish_call_expr (postfix_expression
, args
,
4329 /*disallow_virtual=*/true,
4332 /* All other function calls. */
4334 = finish_call_expr (postfix_expression
, args
,
4335 /*disallow_virtual=*/false,
4338 /* The POSTFIX_EXPRESSION is certainly no longer an id. */
4339 idk
= CP_ID_KIND_NONE
;
4345 /* postfix-expression . template [opt] id-expression
4346 postfix-expression . pseudo-destructor-name
4347 postfix-expression -> template [opt] id-expression
4348 postfix-expression -> pseudo-destructor-name */
4350 /* Consume the `.' or `->' operator. */
4351 cp_lexer_consume_token (parser
->lexer
);
4354 = cp_parser_postfix_dot_deref_expression (parser
, token
->type
,
4360 /* postfix-expression ++ */
4361 /* Consume the `++' token. */
4362 cp_lexer_consume_token (parser
->lexer
);
4363 /* Generate a representation for the complete expression. */
4365 = finish_increment_expr (postfix_expression
,
4366 POSTINCREMENT_EXPR
);
4367 /* Increments may not appear in constant-expressions. */
4368 if (cp_parser_non_integral_constant_expression (parser
,
4370 postfix_expression
= error_mark_node
;
4371 idk
= CP_ID_KIND_NONE
;
4374 case CPP_MINUS_MINUS
:
4375 /* postfix-expression -- */
4376 /* Consume the `--' token. */
4377 cp_lexer_consume_token (parser
->lexer
);
4378 /* Generate a representation for the complete expression. */
4380 = finish_increment_expr (postfix_expression
,
4381 POSTDECREMENT_EXPR
);
4382 /* Decrements may not appear in constant-expressions. */
4383 if (cp_parser_non_integral_constant_expression (parser
,
4385 postfix_expression
= error_mark_node
;
4386 idk
= CP_ID_KIND_NONE
;
4390 return postfix_expression
;
4394 /* We should never get here. */
4396 return error_mark_node
;
4399 /* A subroutine of cp_parser_postfix_expression that also gets hijacked
4400 by cp_parser_builtin_offsetof. We're looking for
4402 postfix-expression [ expression ]
4404 FOR_OFFSETOF is set if we're being called in that context, which
4405 changes how we deal with integer constant expressions. */
4408 cp_parser_postfix_open_square_expression (cp_parser
*parser
,
4409 tree postfix_expression
,
4414 /* Consume the `[' token. */
4415 cp_lexer_consume_token (parser
->lexer
);
4417 /* Parse the index expression. */
4418 /* ??? For offsetof, there is a question of what to allow here. If
4419 offsetof is not being used in an integral constant expression context,
4420 then we *could* get the right answer by computing the value at runtime.
4421 If we are in an integral constant expression context, then we might
4422 could accept any constant expression; hard to say without analysis.
4423 Rather than open the barn door too wide right away, allow only integer
4424 constant expressions here. */
4426 index
= cp_parser_constant_expression (parser
, false, NULL
);
4428 index
= cp_parser_expression (parser
, /*cast_p=*/false);
4430 /* Look for the closing `]'. */
4431 cp_parser_require (parser
, CPP_CLOSE_SQUARE
, "`]'");
4433 /* Build the ARRAY_REF. */
4434 postfix_expression
= grok_array_decl (postfix_expression
, index
);
4436 /* When not doing offsetof, array references are not permitted in
4437 constant-expressions. */
4439 && (cp_parser_non_integral_constant_expression
4440 (parser
, "an array reference")))
4441 postfix_expression
= error_mark_node
;
4443 return postfix_expression
;
4446 /* A subroutine of cp_parser_postfix_expression that also gets hijacked
4447 by cp_parser_builtin_offsetof. We're looking for
4449 postfix-expression . template [opt] id-expression
4450 postfix-expression . pseudo-destructor-name
4451 postfix-expression -> template [opt] id-expression
4452 postfix-expression -> pseudo-destructor-name
4454 FOR_OFFSETOF is set if we're being called in that context. That sorta
4455 limits what of the above we'll actually accept, but nevermind.
4456 TOKEN_TYPE is the "." or "->" token, which will already have been
4457 removed from the stream. */
4460 cp_parser_postfix_dot_deref_expression (cp_parser
*parser
,
4461 enum cpp_ttype token_type
,
4462 tree postfix_expression
,
4463 bool for_offsetof
, cp_id_kind
*idk
)
4467 bool pseudo_destructor_p
;
4468 tree scope
= NULL_TREE
;
4470 /* If this is a `->' operator, dereference the pointer. */
4471 if (token_type
== CPP_DEREF
)
4472 postfix_expression
= build_x_arrow (postfix_expression
);
4473 /* Check to see whether or not the expression is type-dependent. */
4474 dependent_p
= type_dependent_expression_p (postfix_expression
);
4475 /* The identifier following the `->' or `.' is not qualified. */
4476 parser
->scope
= NULL_TREE
;
4477 parser
->qualifying_scope
= NULL_TREE
;
4478 parser
->object_scope
= NULL_TREE
;
4479 *idk
= CP_ID_KIND_NONE
;
4480 /* Enter the scope corresponding to the type of the object
4481 given by the POSTFIX_EXPRESSION. */
4482 if (!dependent_p
&& TREE_TYPE (postfix_expression
) != NULL_TREE
)
4484 scope
= TREE_TYPE (postfix_expression
);
4485 /* According to the standard, no expression should ever have
4486 reference type. Unfortunately, we do not currently match
4487 the standard in this respect in that our internal representation
4488 of an expression may have reference type even when the standard
4489 says it does not. Therefore, we have to manually obtain the
4490 underlying type here. */
4491 scope
= non_reference (scope
);
4492 /* The type of the POSTFIX_EXPRESSION must be complete. */
4493 if (scope
== unknown_type_node
)
4495 error ("%qE does not have class type", postfix_expression
);
4499 scope
= complete_type_or_else (scope
, NULL_TREE
);
4500 /* Let the name lookup machinery know that we are processing a
4501 class member access expression. */
4502 parser
->context
->object_type
= scope
;
4503 /* If something went wrong, we want to be able to discern that case,
4504 as opposed to the case where there was no SCOPE due to the type
4505 of expression being dependent. */
4507 scope
= error_mark_node
;
4508 /* If the SCOPE was erroneous, make the various semantic analysis
4509 functions exit quickly -- and without issuing additional error
4511 if (scope
== error_mark_node
)
4512 postfix_expression
= error_mark_node
;
4515 /* Assume this expression is not a pseudo-destructor access. */
4516 pseudo_destructor_p
= false;
4518 /* If the SCOPE is a scalar type, then, if this is a valid program,
4519 we must be looking at a pseudo-destructor-name. */
4520 if (scope
&& SCALAR_TYPE_P (scope
))
4525 cp_parser_parse_tentatively (parser
);
4526 /* Parse the pseudo-destructor-name. */
4528 cp_parser_pseudo_destructor_name (parser
, &s
, &type
);
4529 if (cp_parser_parse_definitely (parser
))
4531 pseudo_destructor_p
= true;
4533 = finish_pseudo_destructor_expr (postfix_expression
,
4534 s
, TREE_TYPE (type
));
4538 if (!pseudo_destructor_p
)
4540 /* If the SCOPE is not a scalar type, we are looking at an
4541 ordinary class member access expression, rather than a
4542 pseudo-destructor-name. */
4544 /* Parse the id-expression. */
4545 name
= (cp_parser_id_expression
4547 cp_parser_optional_template_keyword (parser
),
4548 /*check_dependency_p=*/true,
4550 /*declarator_p=*/false,
4551 /*optional_p=*/false));
4552 /* In general, build a SCOPE_REF if the member name is qualified.
4553 However, if the name was not dependent and has already been
4554 resolved; there is no need to build the SCOPE_REF. For example;
4556 struct X { void f(); };
4557 template <typename T> void f(T* t) { t->X::f(); }
4559 Even though "t" is dependent, "X::f" is not and has been resolved
4560 to a BASELINK; there is no need to include scope information. */
4562 /* But we do need to remember that there was an explicit scope for
4563 virtual function calls. */
4565 *idk
= CP_ID_KIND_QUALIFIED
;
4567 /* If the name is a template-id that names a type, we will get a
4568 TYPE_DECL here. That is invalid code. */
4569 if (TREE_CODE (name
) == TYPE_DECL
)
4571 error ("invalid use of %qD", name
);
4572 postfix_expression
= error_mark_node
;
4576 if (name
!= error_mark_node
&& !BASELINK_P (name
) && parser
->scope
)
4578 name
= build_qualified_name (/*type=*/NULL_TREE
,
4582 parser
->scope
= NULL_TREE
;
4583 parser
->qualifying_scope
= NULL_TREE
;
4584 parser
->object_scope
= NULL_TREE
;
4586 if (scope
&& name
&& BASELINK_P (name
))
4587 adjust_result_of_qualified_name_lookup
4588 (name
, BINFO_TYPE (BASELINK_BINFO (name
)), scope
);
4590 = finish_class_member_access_expr (postfix_expression
, name
,
4595 /* We no longer need to look up names in the scope of the object on
4596 the left-hand side of the `.' or `->' operator. */
4597 parser
->context
->object_type
= NULL_TREE
;
4599 /* Outside of offsetof, these operators may not appear in
4600 constant-expressions. */
4602 && (cp_parser_non_integral_constant_expression
4603 (parser
, token_type
== CPP_DEREF
? "'->'" : "`.'")))
4604 postfix_expression
= error_mark_node
;
4606 return postfix_expression
;
4609 /* Parse a parenthesized expression-list.
4612 assignment-expression
4613 expression-list, assignment-expression
4618 identifier, expression-list
4620 CAST_P is true if this expression is the target of a cast.
4622 Returns a TREE_LIST. The TREE_VALUE of each node is a
4623 representation of an assignment-expression. Note that a TREE_LIST
4624 is returned even if there is only a single expression in the list.
4625 error_mark_node is returned if the ( and or ) are
4626 missing. NULL_TREE is returned on no expressions. The parentheses
4627 are eaten. IS_ATTRIBUTE_LIST is true if this is really an attribute
4628 list being parsed. If NON_CONSTANT_P is non-NULL, *NON_CONSTANT_P
4629 indicates whether or not all of the expressions in the list were
4633 cp_parser_parenthesized_expression_list (cp_parser
* parser
,
4634 bool is_attribute_list
,
4636 bool *non_constant_p
)
4638 tree expression_list
= NULL_TREE
;
4639 bool fold_expr_p
= is_attribute_list
;
4640 tree identifier
= NULL_TREE
;
4642 /* Assume all the expressions will be constant. */
4644 *non_constant_p
= false;
4646 if (!cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('"))
4647 return error_mark_node
;
4649 /* Consume expressions until there are no more. */
4650 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_CLOSE_PAREN
))
4655 /* At the beginning of attribute lists, check to see if the
4656 next token is an identifier. */
4657 if (is_attribute_list
4658 && cp_lexer_peek_token (parser
->lexer
)->type
== CPP_NAME
)
4662 /* Consume the identifier. */
4663 token
= cp_lexer_consume_token (parser
->lexer
);
4664 /* Save the identifier. */
4665 identifier
= token
->value
;
4669 /* Parse the next assignment-expression. */
4672 bool expr_non_constant_p
;
4673 expr
= (cp_parser_constant_expression
4674 (parser
, /*allow_non_constant_p=*/true,
4675 &expr_non_constant_p
));
4676 if (expr_non_constant_p
)
4677 *non_constant_p
= true;
4680 expr
= cp_parser_assignment_expression (parser
, cast_p
);
4683 expr
= fold_non_dependent_expr (expr
);
4685 /* Add it to the list. We add error_mark_node
4686 expressions to the list, so that we can still tell if
4687 the correct form for a parenthesized expression-list
4688 is found. That gives better errors. */
4689 expression_list
= tree_cons (NULL_TREE
, expr
, expression_list
);
4691 if (expr
== error_mark_node
)
4695 /* After the first item, attribute lists look the same as
4696 expression lists. */
4697 is_attribute_list
= false;
4700 /* If the next token isn't a `,', then we are done. */
4701 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_COMMA
))
4704 /* Otherwise, consume the `,' and keep going. */
4705 cp_lexer_consume_token (parser
->lexer
);
4708 if (!cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'"))
4713 /* We try and resync to an unnested comma, as that will give the
4714 user better diagnostics. */
4715 ending
= cp_parser_skip_to_closing_parenthesis (parser
,
4716 /*recovering=*/true,
4718 /*consume_paren=*/true);
4722 return error_mark_node
;
4725 /* We built up the list in reverse order so we must reverse it now. */
4726 expression_list
= nreverse (expression_list
);
4728 expression_list
= tree_cons (NULL_TREE
, identifier
, expression_list
);
4730 return expression_list
;
4733 /* Parse a pseudo-destructor-name.
4735 pseudo-destructor-name:
4736 :: [opt] nested-name-specifier [opt] type-name :: ~ type-name
4737 :: [opt] nested-name-specifier template template-id :: ~ type-name
4738 :: [opt] nested-name-specifier [opt] ~ type-name
4740 If either of the first two productions is used, sets *SCOPE to the
4741 TYPE specified before the final `::'. Otherwise, *SCOPE is set to
4742 NULL_TREE. *TYPE is set to the TYPE_DECL for the final type-name,
4743 or ERROR_MARK_NODE if the parse fails. */
4746 cp_parser_pseudo_destructor_name (cp_parser
* parser
,
4750 bool nested_name_specifier_p
;
4752 /* Assume that things will not work out. */
4753 *type
= error_mark_node
;
4755 /* Look for the optional `::' operator. */
4756 cp_parser_global_scope_opt (parser
, /*current_scope_valid_p=*/true);
4757 /* Look for the optional nested-name-specifier. */
4758 nested_name_specifier_p
4759 = (cp_parser_nested_name_specifier_opt (parser
,
4760 /*typename_keyword_p=*/false,
4761 /*check_dependency_p=*/true,
4763 /*is_declaration=*/true)
4765 /* Now, if we saw a nested-name-specifier, we might be doing the
4766 second production. */
4767 if (nested_name_specifier_p
4768 && cp_lexer_next_token_is_keyword (parser
->lexer
, RID_TEMPLATE
))
4770 /* Consume the `template' keyword. */
4771 cp_lexer_consume_token (parser
->lexer
);
4772 /* Parse the template-id. */
4773 cp_parser_template_id (parser
,
4774 /*template_keyword_p=*/true,
4775 /*check_dependency_p=*/false,
4776 /*is_declaration=*/true);
4777 /* Look for the `::' token. */
4778 cp_parser_require (parser
, CPP_SCOPE
, "`::'");
4780 /* If the next token is not a `~', then there might be some
4781 additional qualification. */
4782 else if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_COMPL
))
4784 /* Look for the type-name. */
4785 *scope
= TREE_TYPE (cp_parser_type_name (parser
));
4787 if (*scope
== error_mark_node
)
4790 /* If we don't have ::~, then something has gone wrong. Since
4791 the only caller of this function is looking for something
4792 after `.' or `->' after a scalar type, most likely the
4793 program is trying to get a member of a non-aggregate
4795 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_SCOPE
)
4796 || cp_lexer_peek_nth_token (parser
->lexer
, 2)->type
!= CPP_COMPL
)
4798 cp_parser_error (parser
, "request for member of non-aggregate type");
4802 /* Look for the `::' token. */
4803 cp_parser_require (parser
, CPP_SCOPE
, "`::'");
4808 /* Look for the `~'. */
4809 cp_parser_require (parser
, CPP_COMPL
, "`~'");
4810 /* Look for the type-name again. We are not responsible for
4811 checking that it matches the first type-name. */
4812 *type
= cp_parser_type_name (parser
);
4815 /* Parse a unary-expression.
4821 unary-operator cast-expression
4822 sizeof unary-expression
4830 __extension__ cast-expression
4831 __alignof__ unary-expression
4832 __alignof__ ( type-id )
4833 __real__ cast-expression
4834 __imag__ cast-expression
4837 ADDRESS_P is true iff the unary-expression is appearing as the
4838 operand of the `&' operator. CAST_P is true if this expression is
4839 the target of a cast.
4841 Returns a representation of the expression. */
4844 cp_parser_unary_expression (cp_parser
*parser
, bool address_p
, bool cast_p
)
4847 enum tree_code unary_operator
;
4849 /* Peek at the next token. */
4850 token
= cp_lexer_peek_token (parser
->lexer
);
4851 /* Some keywords give away the kind of expression. */
4852 if (token
->type
== CPP_KEYWORD
)
4854 enum rid keyword
= token
->keyword
;
4864 op
= keyword
== RID_ALIGNOF
? ALIGNOF_EXPR
: SIZEOF_EXPR
;
4865 /* Consume the token. */
4866 cp_lexer_consume_token (parser
->lexer
);
4867 /* Parse the operand. */
4868 operand
= cp_parser_sizeof_operand (parser
, keyword
);
4870 if (TYPE_P (operand
))
4871 return cxx_sizeof_or_alignof_type (operand
, op
, true);
4873 return cxx_sizeof_or_alignof_expr (operand
, op
);
4877 return cp_parser_new_expression (parser
);
4880 return cp_parser_delete_expression (parser
);
4884 /* The saved value of the PEDANTIC flag. */
4888 /* Save away the PEDANTIC flag. */
4889 cp_parser_extension_opt (parser
, &saved_pedantic
);
4890 /* Parse the cast-expression. */
4891 expr
= cp_parser_simple_cast_expression (parser
);
4892 /* Restore the PEDANTIC flag. */
4893 pedantic
= saved_pedantic
;
4903 /* Consume the `__real__' or `__imag__' token. */
4904 cp_lexer_consume_token (parser
->lexer
);
4905 /* Parse the cast-expression. */
4906 expression
= cp_parser_simple_cast_expression (parser
);
4907 /* Create the complete representation. */
4908 return build_x_unary_op ((keyword
== RID_REALPART
4909 ? REALPART_EXPR
: IMAGPART_EXPR
),
4919 /* Look for the `:: new' and `:: delete', which also signal the
4920 beginning of a new-expression, or delete-expression,
4921 respectively. If the next token is `::', then it might be one of
4923 if (cp_lexer_next_token_is (parser
->lexer
, CPP_SCOPE
))
4927 /* See if the token after the `::' is one of the keywords in
4928 which we're interested. */
4929 keyword
= cp_lexer_peek_nth_token (parser
->lexer
, 2)->keyword
;
4930 /* If it's `new', we have a new-expression. */
4931 if (keyword
== RID_NEW
)
4932 return cp_parser_new_expression (parser
);
4933 /* Similarly, for `delete'. */
4934 else if (keyword
== RID_DELETE
)
4935 return cp_parser_delete_expression (parser
);
4938 /* Look for a unary operator. */
4939 unary_operator
= cp_parser_unary_operator (token
);
4940 /* The `++' and `--' operators can be handled similarly, even though
4941 they are not technically unary-operators in the grammar. */
4942 if (unary_operator
== ERROR_MARK
)
4944 if (token
->type
== CPP_PLUS_PLUS
)
4945 unary_operator
= PREINCREMENT_EXPR
;
4946 else if (token
->type
== CPP_MINUS_MINUS
)
4947 unary_operator
= PREDECREMENT_EXPR
;
4948 /* Handle the GNU address-of-label extension. */
4949 else if (cp_parser_allow_gnu_extensions_p (parser
)
4950 && token
->type
== CPP_AND_AND
)
4954 /* Consume the '&&' token. */
4955 cp_lexer_consume_token (parser
->lexer
);
4956 /* Look for the identifier. */
4957 identifier
= cp_parser_identifier (parser
);
4958 /* Create an expression representing the address. */
4959 return finish_label_address_expr (identifier
);
4962 if (unary_operator
!= ERROR_MARK
)
4964 tree cast_expression
;
4965 tree expression
= error_mark_node
;
4966 const char *non_constant_p
= NULL
;
4968 /* Consume the operator token. */
4969 token
= cp_lexer_consume_token (parser
->lexer
);
4970 /* Parse the cast-expression. */
4972 = cp_parser_cast_expression (parser
,
4973 unary_operator
== ADDR_EXPR
,
4975 /* Now, build an appropriate representation. */
4976 switch (unary_operator
)
4979 non_constant_p
= "`*'";
4980 expression
= build_x_indirect_ref (cast_expression
, "unary *");
4984 non_constant_p
= "`&'";
4987 expression
= build_x_unary_op (unary_operator
, cast_expression
);
4990 case PREINCREMENT_EXPR
:
4991 case PREDECREMENT_EXPR
:
4992 non_constant_p
= (unary_operator
== PREINCREMENT_EXPR
4995 case UNARY_PLUS_EXPR
:
4997 case TRUTH_NOT_EXPR
:
4998 expression
= finish_unary_op_expr (unary_operator
, cast_expression
);
5006 && cp_parser_non_integral_constant_expression (parser
,
5008 expression
= error_mark_node
;
5013 return cp_parser_postfix_expression (parser
, address_p
, cast_p
);
5016 /* Returns ERROR_MARK if TOKEN is not a unary-operator. If TOKEN is a
5017 unary-operator, the corresponding tree code is returned. */
5019 static enum tree_code
5020 cp_parser_unary_operator (cp_token
* token
)
5022 switch (token
->type
)
5025 return INDIRECT_REF
;
5031 return UNARY_PLUS_EXPR
;
5037 return TRUTH_NOT_EXPR
;
5040 return BIT_NOT_EXPR
;
5047 /* Parse a new-expression.
5050 :: [opt] new new-placement [opt] new-type-id new-initializer [opt]
5051 :: [opt] new new-placement [opt] ( type-id ) new-initializer [opt]
5053 Returns a representation of the expression. */
5056 cp_parser_new_expression (cp_parser
* parser
)
5058 bool global_scope_p
;
5064 /* Look for the optional `::' operator. */
5066 = (cp_parser_global_scope_opt (parser
,
5067 /*current_scope_valid_p=*/false)
5069 /* Look for the `new' operator. */
5070 cp_parser_require_keyword (parser
, RID_NEW
, "`new'");
5071 /* There's no easy way to tell a new-placement from the
5072 `( type-id )' construct. */
5073 cp_parser_parse_tentatively (parser
);
5074 /* Look for a new-placement. */
5075 placement
= cp_parser_new_placement (parser
);
5076 /* If that didn't work out, there's no new-placement. */
5077 if (!cp_parser_parse_definitely (parser
))
5078 placement
= NULL_TREE
;
5080 /* If the next token is a `(', then we have a parenthesized
5082 if (cp_lexer_next_token_is (parser
->lexer
, CPP_OPEN_PAREN
))
5084 /* Consume the `('. */
5085 cp_lexer_consume_token (parser
->lexer
);
5086 /* Parse the type-id. */
5087 type
= cp_parser_type_id (parser
);
5088 /* Look for the closing `)'. */
5089 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
5090 /* There should not be a direct-new-declarator in this production,
5091 but GCC used to allowed this, so we check and emit a sensible error
5092 message for this case. */
5093 if (cp_lexer_next_token_is (parser
->lexer
, CPP_OPEN_SQUARE
))
5095 error ("array bound forbidden after parenthesized type-id");
5096 inform ("try removing the parentheses around the type-id");
5097 cp_parser_direct_new_declarator (parser
);
5101 /* Otherwise, there must be a new-type-id. */
5103 type
= cp_parser_new_type_id (parser
, &nelts
);
5105 /* If the next token is a `(', then we have a new-initializer. */
5106 if (cp_lexer_next_token_is (parser
->lexer
, CPP_OPEN_PAREN
))
5107 initializer
= cp_parser_new_initializer (parser
);
5109 initializer
= NULL_TREE
;
5111 /* A new-expression may not appear in an integral constant
5113 if (cp_parser_non_integral_constant_expression (parser
, "`new'"))
5114 return error_mark_node
;
5116 /* Create a representation of the new-expression. */
5117 return build_new (placement
, type
, nelts
, initializer
, global_scope_p
);
5120 /* Parse a new-placement.
5125 Returns the same representation as for an expression-list. */
5128 cp_parser_new_placement (cp_parser
* parser
)
5130 tree expression_list
;
5132 /* Parse the expression-list. */
5133 expression_list
= (cp_parser_parenthesized_expression_list
5134 (parser
, false, /*cast_p=*/false,
5135 /*non_constant_p=*/NULL
));
5137 return expression_list
;
5140 /* Parse a new-type-id.
5143 type-specifier-seq new-declarator [opt]
5145 Returns the TYPE allocated. If the new-type-id indicates an array
5146 type, *NELTS is set to the number of elements in the last array
5147 bound; the TYPE will not include the last array bound. */
5150 cp_parser_new_type_id (cp_parser
* parser
, tree
*nelts
)
5152 cp_decl_specifier_seq type_specifier_seq
;
5153 cp_declarator
*new_declarator
;
5154 cp_declarator
*declarator
;
5155 cp_declarator
*outer_declarator
;
5156 const char *saved_message
;
5159 /* The type-specifier sequence must not contain type definitions.
5160 (It cannot contain declarations of new types either, but if they
5161 are not definitions we will catch that because they are not
5163 saved_message
= parser
->type_definition_forbidden_message
;
5164 parser
->type_definition_forbidden_message
5165 = "types may not be defined in a new-type-id";
5166 /* Parse the type-specifier-seq. */
5167 cp_parser_type_specifier_seq (parser
, /*is_condition=*/false,
5168 &type_specifier_seq
);
5169 /* Restore the old message. */
5170 parser
->type_definition_forbidden_message
= saved_message
;
5171 /* Parse the new-declarator. */
5172 new_declarator
= cp_parser_new_declarator_opt (parser
);
5174 /* Determine the number of elements in the last array dimension, if
5177 /* Skip down to the last array dimension. */
5178 declarator
= new_declarator
;
5179 outer_declarator
= NULL
;
5180 while (declarator
&& (declarator
->kind
== cdk_pointer
5181 || declarator
->kind
== cdk_ptrmem
))
5183 outer_declarator
= declarator
;
5184 declarator
= declarator
->declarator
;
5187 && declarator
->kind
== cdk_array
5188 && declarator
->declarator
5189 && declarator
->declarator
->kind
== cdk_array
)
5191 outer_declarator
= declarator
;
5192 declarator
= declarator
->declarator
;
5195 if (declarator
&& declarator
->kind
== cdk_array
)
5197 *nelts
= declarator
->u
.array
.bounds
;
5198 if (*nelts
== error_mark_node
)
5199 *nelts
= integer_one_node
;
5201 if (outer_declarator
)
5202 outer_declarator
->declarator
= declarator
->declarator
;
5204 new_declarator
= NULL
;
5207 type
= groktypename (&type_specifier_seq
, new_declarator
);
5208 if (TREE_CODE (type
) == ARRAY_TYPE
&& *nelts
== NULL_TREE
)
5210 *nelts
= array_type_nelts_top (type
);
5211 type
= TREE_TYPE (type
);
5216 /* Parse an (optional) new-declarator.
5219 ptr-operator new-declarator [opt]
5220 direct-new-declarator
5222 Returns the declarator. */
5224 static cp_declarator
*
5225 cp_parser_new_declarator_opt (cp_parser
* parser
)
5227 enum tree_code code
;
5229 cp_cv_quals cv_quals
;
5231 /* We don't know if there's a ptr-operator next, or not. */
5232 cp_parser_parse_tentatively (parser
);
5233 /* Look for a ptr-operator. */
5234 code
= cp_parser_ptr_operator (parser
, &type
, &cv_quals
);
5235 /* If that worked, look for more new-declarators. */
5236 if (cp_parser_parse_definitely (parser
))
5238 cp_declarator
*declarator
;
5240 /* Parse another optional declarator. */
5241 declarator
= cp_parser_new_declarator_opt (parser
);
5243 /* Create the representation of the declarator. */
5245 declarator
= make_ptrmem_declarator (cv_quals
, type
, declarator
);
5246 else if (code
== INDIRECT_REF
)
5247 declarator
= make_pointer_declarator (cv_quals
, declarator
);
5249 declarator
= make_reference_declarator (cv_quals
, declarator
);
5254 /* If the next token is a `[', there is a direct-new-declarator. */
5255 if (cp_lexer_next_token_is (parser
->lexer
, CPP_OPEN_SQUARE
))
5256 return cp_parser_direct_new_declarator (parser
);
5261 /* Parse a direct-new-declarator.
5263 direct-new-declarator:
5265 direct-new-declarator [constant-expression]
5269 static cp_declarator
*
5270 cp_parser_direct_new_declarator (cp_parser
* parser
)
5272 cp_declarator
*declarator
= NULL
;
5278 /* Look for the opening `['. */
5279 cp_parser_require (parser
, CPP_OPEN_SQUARE
, "`['");
5280 /* The first expression is not required to be constant. */
5283 expression
= cp_parser_expression (parser
, /*cast_p=*/false);
5284 /* The standard requires that the expression have integral
5285 type. DR 74 adds enumeration types. We believe that the
5286 real intent is that these expressions be handled like the
5287 expression in a `switch' condition, which also allows
5288 classes with a single conversion to integral or
5289 enumeration type. */
5290 if (!processing_template_decl
)
5293 = build_expr_type_conversion (WANT_INT
| WANT_ENUM
,
5298 error ("expression in new-declarator must have integral "
5299 "or enumeration type");
5300 expression
= error_mark_node
;
5304 /* But all the other expressions must be. */
5307 = cp_parser_constant_expression (parser
,
5308 /*allow_non_constant=*/false,
5310 /* Look for the closing `]'. */
5311 cp_parser_require (parser
, CPP_CLOSE_SQUARE
, "`]'");
5313 /* Add this bound to the declarator. */
5314 declarator
= make_array_declarator (declarator
, expression
);
5316 /* If the next token is not a `[', then there are no more
5318 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_OPEN_SQUARE
))
5325 /* Parse a new-initializer.
5328 ( expression-list [opt] )
5330 Returns a representation of the expression-list. If there is no
5331 expression-list, VOID_ZERO_NODE is returned. */
5334 cp_parser_new_initializer (cp_parser
* parser
)
5336 tree expression_list
;
5338 expression_list
= (cp_parser_parenthesized_expression_list
5339 (parser
, false, /*cast_p=*/false,
5340 /*non_constant_p=*/NULL
));
5341 if (!expression_list
)
5342 expression_list
= void_zero_node
;
5344 return expression_list
;
5347 /* Parse a delete-expression.
5350 :: [opt] delete cast-expression
5351 :: [opt] delete [ ] cast-expression
5353 Returns a representation of the expression. */
5356 cp_parser_delete_expression (cp_parser
* parser
)
5358 bool global_scope_p
;
5362 /* Look for the optional `::' operator. */
5364 = (cp_parser_global_scope_opt (parser
,
5365 /*current_scope_valid_p=*/false)
5367 /* Look for the `delete' keyword. */
5368 cp_parser_require_keyword (parser
, RID_DELETE
, "`delete'");
5369 /* See if the array syntax is in use. */
5370 if (cp_lexer_next_token_is (parser
->lexer
, CPP_OPEN_SQUARE
))
5372 /* Consume the `[' token. */
5373 cp_lexer_consume_token (parser
->lexer
);
5374 /* Look for the `]' token. */
5375 cp_parser_require (parser
, CPP_CLOSE_SQUARE
, "`]'");
5376 /* Remember that this is the `[]' construct. */
5382 /* Parse the cast-expression. */
5383 expression
= cp_parser_simple_cast_expression (parser
);
5385 /* A delete-expression may not appear in an integral constant
5387 if (cp_parser_non_integral_constant_expression (parser
, "`delete'"))
5388 return error_mark_node
;
5390 return delete_sanity (expression
, NULL_TREE
, array_p
, global_scope_p
);
5393 /* Parse a cast-expression.
5397 ( type-id ) cast-expression
5399 ADDRESS_P is true iff the unary-expression is appearing as the
5400 operand of the `&' operator. CAST_P is true if this expression is
5401 the target of a cast.
5403 Returns a representation of the expression. */
5406 cp_parser_cast_expression (cp_parser
*parser
, bool address_p
, bool cast_p
)
5408 /* If it's a `(', then we might be looking at a cast. */
5409 if (cp_lexer_next_token_is (parser
->lexer
, CPP_OPEN_PAREN
))
5411 tree type
= NULL_TREE
;
5412 tree expr
= NULL_TREE
;
5413 bool compound_literal_p
;
5414 const char *saved_message
;
5416 /* There's no way to know yet whether or not this is a cast.
5417 For example, `(int (3))' is a unary-expression, while `(int)
5418 3' is a cast. So, we resort to parsing tentatively. */
5419 cp_parser_parse_tentatively (parser
);
5420 /* Types may not be defined in a cast. */
5421 saved_message
= parser
->type_definition_forbidden_message
;
5422 parser
->type_definition_forbidden_message
5423 = "types may not be defined in casts";
5424 /* Consume the `('. */
5425 cp_lexer_consume_token (parser
->lexer
);
5426 /* A very tricky bit is that `(struct S) { 3 }' is a
5427 compound-literal (which we permit in C++ as an extension).
5428 But, that construct is not a cast-expression -- it is a
5429 postfix-expression. (The reason is that `(struct S) { 3 }.i'
5430 is legal; if the compound-literal were a cast-expression,
5431 you'd need an extra set of parentheses.) But, if we parse
5432 the type-id, and it happens to be a class-specifier, then we
5433 will commit to the parse at that point, because we cannot
5434 undo the action that is done when creating a new class. So,
5435 then we cannot back up and do a postfix-expression.
5437 Therefore, we scan ahead to the closing `)', and check to see
5438 if the token after the `)' is a `{'. If so, we are not
5439 looking at a cast-expression.
5441 Save tokens so that we can put them back. */
5442 cp_lexer_save_tokens (parser
->lexer
);
5443 /* Skip tokens until the next token is a closing parenthesis.
5444 If we find the closing `)', and the next token is a `{', then
5445 we are looking at a compound-literal. */
5447 = (cp_parser_skip_to_closing_parenthesis (parser
, false, false,
5448 /*consume_paren=*/true)
5449 && cp_lexer_next_token_is (parser
->lexer
, CPP_OPEN_BRACE
));
5450 /* Roll back the tokens we skipped. */
5451 cp_lexer_rollback_tokens (parser
->lexer
);
5452 /* If we were looking at a compound-literal, simulate an error
5453 so that the call to cp_parser_parse_definitely below will
5455 if (compound_literal_p
)
5456 cp_parser_simulate_error (parser
);
5459 bool saved_in_type_id_in_expr_p
= parser
->in_type_id_in_expr_p
;
5460 parser
->in_type_id_in_expr_p
= true;
5461 /* Look for the type-id. */
5462 type
= cp_parser_type_id (parser
);
5463 /* Look for the closing `)'. */
5464 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
5465 parser
->in_type_id_in_expr_p
= saved_in_type_id_in_expr_p
;
5468 /* Restore the saved message. */
5469 parser
->type_definition_forbidden_message
= saved_message
;
5471 /* If ok so far, parse the dependent expression. We cannot be
5472 sure it is a cast. Consider `(T ())'. It is a parenthesized
5473 ctor of T, but looks like a cast to function returning T
5474 without a dependent expression. */
5475 if (!cp_parser_error_occurred (parser
))
5476 expr
= cp_parser_cast_expression (parser
,
5477 /*address_p=*/false,
5480 if (cp_parser_parse_definitely (parser
))
5482 /* Warn about old-style casts, if so requested. */
5483 if (warn_old_style_cast
5484 && !in_system_header
5485 && !VOID_TYPE_P (type
)
5486 && current_lang_name
!= lang_name_c
)
5487 warning (OPT_Wold_style_cast
, "use of old-style cast");
5489 /* Only type conversions to integral or enumeration types
5490 can be used in constant-expressions. */
5491 if (!cast_valid_in_integral_constant_expression_p (type
)
5492 && (cp_parser_non_integral_constant_expression
5494 "a cast to a type other than an integral or "
5495 "enumeration type")))
5496 return error_mark_node
;
5498 /* Perform the cast. */
5499 expr
= build_c_cast (type
, expr
);
5504 /* If we get here, then it's not a cast, so it must be a
5505 unary-expression. */
5506 return cp_parser_unary_expression (parser
, address_p
, cast_p
);
5509 /* Parse a binary expression of the general form:
5513 pm-expression .* cast-expression
5514 pm-expression ->* cast-expression
5516 multiplicative-expression:
5518 multiplicative-expression * pm-expression
5519 multiplicative-expression / pm-expression
5520 multiplicative-expression % pm-expression
5522 additive-expression:
5523 multiplicative-expression
5524 additive-expression + multiplicative-expression
5525 additive-expression - multiplicative-expression
5529 shift-expression << additive-expression
5530 shift-expression >> additive-expression
5532 relational-expression:
5534 relational-expression < shift-expression
5535 relational-expression > shift-expression
5536 relational-expression <= shift-expression
5537 relational-expression >= shift-expression
5541 relational-expression:
5542 relational-expression <? shift-expression
5543 relational-expression >? shift-expression
5545 equality-expression:
5546 relational-expression
5547 equality-expression == relational-expression
5548 equality-expression != relational-expression
5552 and-expression & equality-expression
5554 exclusive-or-expression:
5556 exclusive-or-expression ^ and-expression
5558 inclusive-or-expression:
5559 exclusive-or-expression
5560 inclusive-or-expression | exclusive-or-expression
5562 logical-and-expression:
5563 inclusive-or-expression
5564 logical-and-expression && inclusive-or-expression
5566 logical-or-expression:
5567 logical-and-expression
5568 logical-or-expression || logical-and-expression
5570 All these are implemented with a single function like:
5573 simple-cast-expression
5574 binary-expression <token> binary-expression
5576 CAST_P is true if this expression is the target of a cast.
5578 The binops_by_token map is used to get the tree codes for each <token> type.
5579 binary-expressions are associated according to a precedence table. */
5581 #define TOKEN_PRECEDENCE(token) \
5582 ((token->type == CPP_GREATER && !parser->greater_than_is_operator_p) \
5583 ? PREC_NOT_OPERATOR \
5584 : binops_by_token[token->type].prec)
5587 cp_parser_binary_expression (cp_parser
* parser
, bool cast_p
)
5589 cp_parser_expression_stack stack
;
5590 cp_parser_expression_stack_entry
*sp
= &stack
[0];
5593 enum tree_code tree_type
;
5594 enum cp_parser_prec prec
= PREC_NOT_OPERATOR
, new_prec
, lookahead_prec
;
5597 /* Parse the first expression. */
5598 lhs
= cp_parser_cast_expression (parser
, /*address_p=*/false, cast_p
);
5602 /* Get an operator token. */
5603 token
= cp_lexer_peek_token (parser
->lexer
);
5605 new_prec
= TOKEN_PRECEDENCE (token
);
5607 /* Popping an entry off the stack means we completed a subexpression:
5608 - either we found a token which is not an operator (`>' where it is not
5609 an operator, or prec == PREC_NOT_OPERATOR), in which case popping
5610 will happen repeatedly;
5611 - or, we found an operator which has lower priority. This is the case
5612 where the recursive descent *ascends*, as in `3 * 4 + 5' after
5614 if (new_prec
<= prec
)
5623 tree_type
= binops_by_token
[token
->type
].tree_type
;
5625 /* We used the operator token. */
5626 cp_lexer_consume_token (parser
->lexer
);
5628 /* Extract another operand. It may be the RHS of this expression
5629 or the LHS of a new, higher priority expression. */
5630 rhs
= cp_parser_simple_cast_expression (parser
);
5632 /* Get another operator token. Look up its precedence to avoid
5633 building a useless (immediately popped) stack entry for common
5634 cases such as 3 + 4 + 5 or 3 * 4 + 5. */
5635 token
= cp_lexer_peek_token (parser
->lexer
);
5636 lookahead_prec
= TOKEN_PRECEDENCE (token
);
5637 if (lookahead_prec
> new_prec
)
5639 /* ... and prepare to parse the RHS of the new, higher priority
5640 expression. Since precedence levels on the stack are
5641 monotonically increasing, we do not have to care about
5644 sp
->tree_type
= tree_type
;
5649 new_prec
= lookahead_prec
;
5653 /* If the stack is not empty, we have parsed into LHS the right side
5654 (`4' in the example above) of an expression we had suspended.
5655 We can use the information on the stack to recover the LHS (`3')
5656 from the stack together with the tree code (`MULT_EXPR'), and
5657 the precedence of the higher level subexpression
5658 (`PREC_ADDITIVE_EXPRESSION'). TOKEN is the CPP_PLUS token,
5659 which will be used to actually build the additive expression. */
5662 tree_type
= sp
->tree_type
;
5667 overloaded_p
= false;
5668 lhs
= build_x_binary_op (tree_type
, lhs
, rhs
, &overloaded_p
);
5670 /* If the binary operator required the use of an overloaded operator,
5671 then this expression cannot be an integral constant-expression.
5672 An overloaded operator can be used even if both operands are
5673 otherwise permissible in an integral constant-expression if at
5674 least one of the operands is of enumeration type. */
5677 && (cp_parser_non_integral_constant_expression
5678 (parser
, "calls to overloaded operators")))
5679 return error_mark_node
;
5686 /* Parse the `? expression : assignment-expression' part of a
5687 conditional-expression. The LOGICAL_OR_EXPR is the
5688 logical-or-expression that started the conditional-expression.
5689 Returns a representation of the entire conditional-expression.
5691 This routine is used by cp_parser_assignment_expression.
5693 ? expression : assignment-expression
5697 ? : assignment-expression */
5700 cp_parser_question_colon_clause (cp_parser
* parser
, tree logical_or_expr
)
5703 tree assignment_expr
;
5705 /* Consume the `?' token. */
5706 cp_lexer_consume_token (parser
->lexer
);
5707 if (cp_parser_allow_gnu_extensions_p (parser
)
5708 && cp_lexer_next_token_is (parser
->lexer
, CPP_COLON
))
5709 /* Implicit true clause. */
5712 /* Parse the expression. */
5713 expr
= cp_parser_expression (parser
, /*cast_p=*/false);
5715 /* The next token should be a `:'. */
5716 cp_parser_require (parser
, CPP_COLON
, "`:'");
5717 /* Parse the assignment-expression. */
5718 assignment_expr
= cp_parser_assignment_expression (parser
, /*cast_p=*/false);
5720 /* Build the conditional-expression. */
5721 return build_x_conditional_expr (logical_or_expr
,
5726 /* Parse an assignment-expression.
5728 assignment-expression:
5729 conditional-expression
5730 logical-or-expression assignment-operator assignment_expression
5733 CAST_P is true if this expression is the target of a cast.
5735 Returns a representation for the expression. */
5738 cp_parser_assignment_expression (cp_parser
* parser
, bool cast_p
)
5742 /* If the next token is the `throw' keyword, then we're looking at
5743 a throw-expression. */
5744 if (cp_lexer_next_token_is_keyword (parser
->lexer
, RID_THROW
))
5745 expr
= cp_parser_throw_expression (parser
);
5746 /* Otherwise, it must be that we are looking at a
5747 logical-or-expression. */
5750 /* Parse the binary expressions (logical-or-expression). */
5751 expr
= cp_parser_binary_expression (parser
, cast_p
);
5752 /* If the next token is a `?' then we're actually looking at a
5753 conditional-expression. */
5754 if (cp_lexer_next_token_is (parser
->lexer
, CPP_QUERY
))
5755 return cp_parser_question_colon_clause (parser
, expr
);
5758 enum tree_code assignment_operator
;
5760 /* If it's an assignment-operator, we're using the second
5763 = cp_parser_assignment_operator_opt (parser
);
5764 if (assignment_operator
!= ERROR_MARK
)
5768 /* Parse the right-hand side of the assignment. */
5769 rhs
= cp_parser_assignment_expression (parser
, cast_p
);
5770 /* An assignment may not appear in a
5771 constant-expression. */
5772 if (cp_parser_non_integral_constant_expression (parser
,
5774 return error_mark_node
;
5775 /* Build the assignment expression. */
5776 expr
= build_x_modify_expr (expr
,
5777 assignment_operator
,
5786 /* Parse an (optional) assignment-operator.
5788 assignment-operator: one of
5789 = *= /= %= += -= >>= <<= &= ^= |=
5793 assignment-operator: one of
5796 If the next token is an assignment operator, the corresponding tree
5797 code is returned, and the token is consumed. For example, for
5798 `+=', PLUS_EXPR is returned. For `=' itself, the code returned is
5799 NOP_EXPR. For `/', TRUNC_DIV_EXPR is returned; for `%',
5800 TRUNC_MOD_EXPR is returned. If TOKEN is not an assignment
5801 operator, ERROR_MARK is returned. */
5803 static enum tree_code
5804 cp_parser_assignment_operator_opt (cp_parser
* parser
)
5809 /* Peek at the next toen. */
5810 token
= cp_lexer_peek_token (parser
->lexer
);
5812 switch (token
->type
)
5823 op
= TRUNC_DIV_EXPR
;
5827 op
= TRUNC_MOD_EXPR
;
5859 /* Nothing else is an assignment operator. */
5863 /* If it was an assignment operator, consume it. */
5864 if (op
!= ERROR_MARK
)
5865 cp_lexer_consume_token (parser
->lexer
);
5870 /* Parse an expression.
5873 assignment-expression
5874 expression , assignment-expression
5876 CAST_P is true if this expression is the target of a cast.
5878 Returns a representation of the expression. */
5881 cp_parser_expression (cp_parser
* parser
, bool cast_p
)
5883 tree expression
= NULL_TREE
;
5887 tree assignment_expression
;
5889 /* Parse the next assignment-expression. */
5890 assignment_expression
5891 = cp_parser_assignment_expression (parser
, cast_p
);
5892 /* If this is the first assignment-expression, we can just
5895 expression
= assignment_expression
;
5897 expression
= build_x_compound_expr (expression
,
5898 assignment_expression
);
5899 /* If the next token is not a comma, then we are done with the
5901 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_COMMA
))
5903 /* Consume the `,'. */
5904 cp_lexer_consume_token (parser
->lexer
);
5905 /* A comma operator cannot appear in a constant-expression. */
5906 if (cp_parser_non_integral_constant_expression (parser
,
5907 "a comma operator"))
5908 expression
= error_mark_node
;
5914 /* Parse a constant-expression.
5916 constant-expression:
5917 conditional-expression
5919 If ALLOW_NON_CONSTANT_P a non-constant expression is silently
5920 accepted. If ALLOW_NON_CONSTANT_P is true and the expression is not
5921 constant, *NON_CONSTANT_P is set to TRUE. If ALLOW_NON_CONSTANT_P
5922 is false, NON_CONSTANT_P should be NULL. */
5925 cp_parser_constant_expression (cp_parser
* parser
,
5926 bool allow_non_constant_p
,
5927 bool *non_constant_p
)
5929 bool saved_integral_constant_expression_p
;
5930 bool saved_allow_non_integral_constant_expression_p
;
5931 bool saved_non_integral_constant_expression_p
;
5934 /* It might seem that we could simply parse the
5935 conditional-expression, and then check to see if it were
5936 TREE_CONSTANT. However, an expression that is TREE_CONSTANT is
5937 one that the compiler can figure out is constant, possibly after
5938 doing some simplifications or optimizations. The standard has a
5939 precise definition of constant-expression, and we must honor
5940 that, even though it is somewhat more restrictive.
5946 is not a legal declaration, because `(2, 3)' is not a
5947 constant-expression. The `,' operator is forbidden in a
5948 constant-expression. However, GCC's constant-folding machinery
5949 will fold this operation to an INTEGER_CST for `3'. */
5951 /* Save the old settings. */
5952 saved_integral_constant_expression_p
= parser
->integral_constant_expression_p
;
5953 saved_allow_non_integral_constant_expression_p
5954 = parser
->allow_non_integral_constant_expression_p
;
5955 saved_non_integral_constant_expression_p
= parser
->non_integral_constant_expression_p
;
5956 /* We are now parsing a constant-expression. */
5957 parser
->integral_constant_expression_p
= true;
5958 parser
->allow_non_integral_constant_expression_p
= allow_non_constant_p
;
5959 parser
->non_integral_constant_expression_p
= false;
5960 /* Although the grammar says "conditional-expression", we parse an
5961 "assignment-expression", which also permits "throw-expression"
5962 and the use of assignment operators. In the case that
5963 ALLOW_NON_CONSTANT_P is false, we get better errors than we would
5964 otherwise. In the case that ALLOW_NON_CONSTANT_P is true, it is
5965 actually essential that we look for an assignment-expression.
5966 For example, cp_parser_initializer_clauses uses this function to
5967 determine whether a particular assignment-expression is in fact
5969 expression
= cp_parser_assignment_expression (parser
, /*cast_p=*/false);
5970 /* Restore the old settings. */
5971 parser
->integral_constant_expression_p
5972 = saved_integral_constant_expression_p
;
5973 parser
->allow_non_integral_constant_expression_p
5974 = saved_allow_non_integral_constant_expression_p
;
5975 if (allow_non_constant_p
)
5976 *non_constant_p
= parser
->non_integral_constant_expression_p
;
5977 else if (parser
->non_integral_constant_expression_p
)
5978 expression
= error_mark_node
;
5979 parser
->non_integral_constant_expression_p
5980 = saved_non_integral_constant_expression_p
;
5985 /* Parse __builtin_offsetof.
5987 offsetof-expression:
5988 "__builtin_offsetof" "(" type-id "," offsetof-member-designator ")"
5990 offsetof-member-designator:
5992 | offsetof-member-designator "." id-expression
5993 | offsetof-member-designator "[" expression "]" */
5996 cp_parser_builtin_offsetof (cp_parser
*parser
)
5998 int save_ice_p
, save_non_ice_p
;
6002 /* We're about to accept non-integral-constant things, but will
6003 definitely yield an integral constant expression. Save and
6004 restore these values around our local parsing. */
6005 save_ice_p
= parser
->integral_constant_expression_p
;
6006 save_non_ice_p
= parser
->non_integral_constant_expression_p
;
6008 /* Consume the "__builtin_offsetof" token. */
6009 cp_lexer_consume_token (parser
->lexer
);
6010 /* Consume the opening `('. */
6011 cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('");
6012 /* Parse the type-id. */
6013 type
= cp_parser_type_id (parser
);
6014 /* Look for the `,'. */
6015 cp_parser_require (parser
, CPP_COMMA
, "`,'");
6017 /* Build the (type *)null that begins the traditional offsetof macro. */
6018 expr
= build_static_cast (build_pointer_type (type
), null_pointer_node
);
6020 /* Parse the offsetof-member-designator. We begin as if we saw "expr->". */
6021 expr
= cp_parser_postfix_dot_deref_expression (parser
, CPP_DEREF
, expr
,
6025 cp_token
*token
= cp_lexer_peek_token (parser
->lexer
);
6026 switch (token
->type
)
6028 case CPP_OPEN_SQUARE
:
6029 /* offsetof-member-designator "[" expression "]" */
6030 expr
= cp_parser_postfix_open_square_expression (parser
, expr
, true);
6034 /* offsetof-member-designator "." identifier */
6035 cp_lexer_consume_token (parser
->lexer
);
6036 expr
= cp_parser_postfix_dot_deref_expression (parser
, CPP_DOT
, expr
,
6040 case CPP_CLOSE_PAREN
:
6041 /* Consume the ")" token. */
6042 cp_lexer_consume_token (parser
->lexer
);
6046 /* Error. We know the following require will fail, but
6047 that gives the proper error message. */
6048 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
6049 cp_parser_skip_to_closing_parenthesis (parser
, true, false, true);
6050 expr
= error_mark_node
;
6056 /* If we're processing a template, we can't finish the semantics yet.
6057 Otherwise we can fold the entire expression now. */
6058 if (processing_template_decl
)
6059 expr
= build1 (OFFSETOF_EXPR
, size_type_node
, expr
);
6061 expr
= finish_offsetof (expr
);
6064 parser
->integral_constant_expression_p
= save_ice_p
;
6065 parser
->non_integral_constant_expression_p
= save_non_ice_p
;
6070 /* Statements [gram.stmt.stmt] */
6072 /* Parse a statement.
6076 expression-statement
6081 declaration-statement
6084 IN_COMPOUND is true when the statement is nested inside a
6085 cp_parser_compound_statement; this matters for certain pragmas. */
6088 cp_parser_statement (cp_parser
* parser
, tree in_statement_expr
,
6093 location_t statement_location
;
6096 /* There is no statement yet. */
6097 statement
= NULL_TREE
;
6098 /* Peek at the next token. */
6099 token
= cp_lexer_peek_token (parser
->lexer
);
6100 /* Remember the location of the first token in the statement. */
6101 statement_location
= token
->location
;
6102 /* If this is a keyword, then that will often determine what kind of
6103 statement we have. */
6104 if (token
->type
== CPP_KEYWORD
)
6106 enum rid keyword
= token
->keyword
;
6112 statement
= cp_parser_labeled_statement (parser
, in_statement_expr
,
6118 statement
= cp_parser_selection_statement (parser
);
6124 statement
= cp_parser_iteration_statement (parser
);
6131 statement
= cp_parser_jump_statement (parser
);
6134 /* Objective-C++ exception-handling constructs. */
6137 case RID_AT_FINALLY
:
6138 case RID_AT_SYNCHRONIZED
:
6140 statement
= cp_parser_objc_statement (parser
);
6144 statement
= cp_parser_try_block (parser
);
6148 /* It might be a keyword like `int' that can start a
6149 declaration-statement. */
6153 else if (token
->type
== CPP_NAME
)
6155 /* If the next token is a `:', then we are looking at a
6156 labeled-statement. */
6157 token
= cp_lexer_peek_nth_token (parser
->lexer
, 2);
6158 if (token
->type
== CPP_COLON
)
6159 statement
= cp_parser_labeled_statement (parser
, in_statement_expr
,
6162 /* Anything that starts with a `{' must be a compound-statement. */
6163 else if (token
->type
== CPP_OPEN_BRACE
)
6164 statement
= cp_parser_compound_statement (parser
, NULL
, false);
6165 /* CPP_PRAGMA is a #pragma inside a function body, which constitutes
6166 a statement all its own. */
6167 else if (token
->type
== CPP_PRAGMA
)
6169 /* Only certain OpenMP pragmas are attached to statements, and thus
6170 are considered statements themselves. All others are not. In
6171 the context of a compound, accept the pragma as a "statement" and
6172 return so that we can check for a close brace. Otherwise we
6173 require a real statement and must go back and read one. */
6175 cp_parser_pragma (parser
, pragma_compound
);
6176 else if (!cp_parser_pragma (parser
, pragma_stmt
))
6180 else if (token
->type
== CPP_EOF
)
6182 cp_parser_error (parser
, "expected statement");
6186 /* Everything else must be a declaration-statement or an
6187 expression-statement. Try for the declaration-statement
6188 first, unless we are looking at a `;', in which case we know that
6189 we have an expression-statement. */
6192 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_SEMICOLON
))
6194 cp_parser_parse_tentatively (parser
);
6195 /* Try to parse the declaration-statement. */
6196 cp_parser_declaration_statement (parser
);
6197 /* If that worked, we're done. */
6198 if (cp_parser_parse_definitely (parser
))
6201 /* Look for an expression-statement instead. */
6202 statement
= cp_parser_expression_statement (parser
, in_statement_expr
);
6205 /* Set the line number for the statement. */
6206 if (statement
&& STATEMENT_CODE_P (TREE_CODE (statement
)))
6207 SET_EXPR_LOCATION (statement
, statement_location
);
6210 /* Parse a labeled-statement.
6213 identifier : statement
6214 case constant-expression : statement
6220 case constant-expression ... constant-expression : statement
6222 Returns the new CASE_LABEL_EXPR, for a `case' or `default' label.
6223 For an ordinary label, returns a LABEL_EXPR.
6225 IN_COMPOUND is as for cp_parser_statement: true when we're nested
6226 inside a compound. */
6229 cp_parser_labeled_statement (cp_parser
* parser
, tree in_statement_expr
,
6233 tree statement
= error_mark_node
;
6235 /* The next token should be an identifier. */
6236 token
= cp_lexer_peek_token (parser
->lexer
);
6237 if (token
->type
!= CPP_NAME
6238 && token
->type
!= CPP_KEYWORD
)
6240 cp_parser_error (parser
, "expected labeled-statement");
6241 return error_mark_node
;
6244 switch (token
->keyword
)
6251 /* Consume the `case' token. */
6252 cp_lexer_consume_token (parser
->lexer
);
6253 /* Parse the constant-expression. */
6254 expr
= cp_parser_constant_expression (parser
,
6255 /*allow_non_constant_p=*/false,
6258 ellipsis
= cp_lexer_peek_token (parser
->lexer
);
6259 if (ellipsis
->type
== CPP_ELLIPSIS
)
6261 /* Consume the `...' token. */
6262 cp_lexer_consume_token (parser
->lexer
);
6264 cp_parser_constant_expression (parser
,
6265 /*allow_non_constant_p=*/false,
6267 /* We don't need to emit warnings here, as the common code
6268 will do this for us. */
6271 expr_hi
= NULL_TREE
;
6273 if (parser
->in_switch_statement_p
)
6274 statement
= finish_case_label (expr
, expr_hi
);
6276 error ("case label %qE not within a switch statement", expr
);
6281 /* Consume the `default' token. */
6282 cp_lexer_consume_token (parser
->lexer
);
6284 if (parser
->in_switch_statement_p
)
6285 statement
= finish_case_label (NULL_TREE
, NULL_TREE
);
6287 error ("case label not within a switch statement");
6291 /* Anything else must be an ordinary label. */
6292 statement
= finish_label_stmt (cp_parser_identifier (parser
));
6296 /* Require the `:' token. */
6297 cp_parser_require (parser
, CPP_COLON
, "`:'");
6298 /* Parse the labeled statement. */
6299 cp_parser_statement (parser
, in_statement_expr
, in_compound
);
6301 /* Return the label, in the case of a `case' or `default' label. */
6305 /* Parse an expression-statement.
6307 expression-statement:
6310 Returns the new EXPR_STMT -- or NULL_TREE if the expression
6311 statement consists of nothing more than an `;'. IN_STATEMENT_EXPR_P
6312 indicates whether this expression-statement is part of an
6313 expression statement. */
6316 cp_parser_expression_statement (cp_parser
* parser
, tree in_statement_expr
)
6318 tree statement
= NULL_TREE
;
6320 /* If the next token is a ';', then there is no expression
6322 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_SEMICOLON
))
6323 statement
= cp_parser_expression (parser
, /*cast_p=*/false);
6325 /* Consume the final `;'. */
6326 cp_parser_consume_semicolon_at_end_of_statement (parser
);
6328 if (in_statement_expr
6329 && cp_lexer_next_token_is (parser
->lexer
, CPP_CLOSE_BRACE
))
6330 /* This is the final expression statement of a statement
6332 statement
= finish_stmt_expr_expr (statement
, in_statement_expr
);
6334 statement
= finish_expr_stmt (statement
);
6341 /* Parse a compound-statement.
6344 { statement-seq [opt] }
6346 Returns a tree representing the statement. */
6349 cp_parser_compound_statement (cp_parser
*parser
, tree in_statement_expr
,
6354 /* Consume the `{'. */
6355 if (!cp_parser_require (parser
, CPP_OPEN_BRACE
, "`{'"))
6356 return error_mark_node
;
6357 /* Begin the compound-statement. */
6358 compound_stmt
= begin_compound_stmt (in_try
? BCS_TRY_BLOCK
: 0);
6359 /* Parse an (optional) statement-seq. */
6360 cp_parser_statement_seq_opt (parser
, in_statement_expr
);
6361 /* Finish the compound-statement. */
6362 finish_compound_stmt (compound_stmt
);
6363 /* Consume the `}'. */
6364 cp_parser_require (parser
, CPP_CLOSE_BRACE
, "`}'");
6366 return compound_stmt
;
6369 /* Parse an (optional) statement-seq.
6373 statement-seq [opt] statement */
6376 cp_parser_statement_seq_opt (cp_parser
* parser
, tree in_statement_expr
)
6378 /* Scan statements until there aren't any more. */
6381 cp_token
*token
= cp_lexer_peek_token (parser
->lexer
);
6383 /* If we're looking at a `}', then we've run out of statements. */
6384 if (token
->type
== CPP_CLOSE_BRACE
6385 || token
->type
== CPP_EOF
6386 || token
->type
== CPP_PRAGMA_EOL
)
6389 /* Parse the statement. */
6390 cp_parser_statement (parser
, in_statement_expr
, true);
6394 /* Parse a selection-statement.
6396 selection-statement:
6397 if ( condition ) statement
6398 if ( condition ) statement else statement
6399 switch ( condition ) statement
6401 Returns the new IF_STMT or SWITCH_STMT. */
6404 cp_parser_selection_statement (cp_parser
* parser
)
6409 /* Peek at the next token. */
6410 token
= cp_parser_require (parser
, CPP_KEYWORD
, "selection-statement");
6412 /* See what kind of keyword it is. */
6413 keyword
= token
->keyword
;
6422 /* Look for the `('. */
6423 if (!cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('"))
6425 cp_parser_skip_to_end_of_statement (parser
);
6426 return error_mark_node
;
6429 /* Begin the selection-statement. */
6430 if (keyword
== RID_IF
)
6431 statement
= begin_if_stmt ();
6433 statement
= begin_switch_stmt ();
6435 /* Parse the condition. */
6436 condition
= cp_parser_condition (parser
);
6437 /* Look for the `)'. */
6438 if (!cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'"))
6439 cp_parser_skip_to_closing_parenthesis (parser
, true, false,
6440 /*consume_paren=*/true);
6442 if (keyword
== RID_IF
)
6444 /* Add the condition. */
6445 finish_if_stmt_cond (condition
, statement
);
6447 /* Parse the then-clause. */
6448 cp_parser_implicitly_scoped_statement (parser
);
6449 finish_then_clause (statement
);
6451 /* If the next token is `else', parse the else-clause. */
6452 if (cp_lexer_next_token_is_keyword (parser
->lexer
,
6455 /* Consume the `else' keyword. */
6456 cp_lexer_consume_token (parser
->lexer
);
6457 begin_else_clause (statement
);
6458 /* Parse the else-clause. */
6459 cp_parser_implicitly_scoped_statement (parser
);
6460 finish_else_clause (statement
);
6463 /* Now we're all done with the if-statement. */
6464 finish_if_stmt (statement
);
6468 bool in_switch_statement_p
;
6469 unsigned char in_statement
;
6471 /* Add the condition. */
6472 finish_switch_cond (condition
, statement
);
6474 /* Parse the body of the switch-statement. */
6475 in_switch_statement_p
= parser
->in_switch_statement_p
;
6476 in_statement
= parser
->in_statement
;
6477 parser
->in_switch_statement_p
= true;
6478 parser
->in_statement
|= IN_SWITCH_STMT
;
6479 cp_parser_implicitly_scoped_statement (parser
);
6480 parser
->in_switch_statement_p
= in_switch_statement_p
;
6481 parser
->in_statement
= in_statement
;
6483 /* Now we're all done with the switch-statement. */
6484 finish_switch_stmt (statement
);
6492 cp_parser_error (parser
, "expected selection-statement");
6493 return error_mark_node
;
6497 /* Parse a condition.
6501 type-specifier-seq declarator = assignment-expression
6506 type-specifier-seq declarator asm-specification [opt]
6507 attributes [opt] = assignment-expression
6509 Returns the expression that should be tested. */
6512 cp_parser_condition (cp_parser
* parser
)
6514 cp_decl_specifier_seq type_specifiers
;
6515 const char *saved_message
;
6517 /* Try the declaration first. */
6518 cp_parser_parse_tentatively (parser
);
6519 /* New types are not allowed in the type-specifier-seq for a
6521 saved_message
= parser
->type_definition_forbidden_message
;
6522 parser
->type_definition_forbidden_message
6523 = "types may not be defined in conditions";
6524 /* Parse the type-specifier-seq. */
6525 cp_parser_type_specifier_seq (parser
, /*is_condition==*/true,
6527 /* Restore the saved message. */
6528 parser
->type_definition_forbidden_message
= saved_message
;
6529 /* If all is well, we might be looking at a declaration. */
6530 if (!cp_parser_error_occurred (parser
))
6533 tree asm_specification
;
6535 cp_declarator
*declarator
;
6536 tree initializer
= NULL_TREE
;
6538 /* Parse the declarator. */
6539 declarator
= cp_parser_declarator (parser
, CP_PARSER_DECLARATOR_NAMED
,
6540 /*ctor_dtor_or_conv_p=*/NULL
,
6541 /*parenthesized_p=*/NULL
,
6542 /*member_p=*/false);
6543 /* Parse the attributes. */
6544 attributes
= cp_parser_attributes_opt (parser
);
6545 /* Parse the asm-specification. */
6546 asm_specification
= cp_parser_asm_specification_opt (parser
);
6547 /* If the next token is not an `=', then we might still be
6548 looking at an expression. For example:
6552 looks like a decl-specifier-seq and a declarator -- but then
6553 there is no `=', so this is an expression. */
6554 cp_parser_require (parser
, CPP_EQ
, "`='");
6555 /* If we did see an `=', then we are looking at a declaration
6557 if (cp_parser_parse_definitely (parser
))
6560 bool non_constant_p
;
6562 /* Create the declaration. */
6563 decl
= start_decl (declarator
, &type_specifiers
,
6564 /*initialized_p=*/true,
6565 attributes
, /*prefix_attributes=*/NULL_TREE
,
6567 /* Parse the assignment-expression. */
6569 = cp_parser_constant_expression (parser
,
6570 /*allow_non_constant_p=*/true,
6572 if (!non_constant_p
)
6573 initializer
= fold_non_dependent_expr (initializer
);
6575 /* Process the initializer. */
6576 cp_finish_decl (decl
,
6577 initializer
, !non_constant_p
,
6579 LOOKUP_ONLYCONVERTING
);
6582 pop_scope (pushed_scope
);
6584 return convert_from_reference (decl
);
6587 /* If we didn't even get past the declarator successfully, we are
6588 definitely not looking at a declaration. */
6590 cp_parser_abort_tentative_parse (parser
);
6592 /* Otherwise, we are looking at an expression. */
6593 return cp_parser_expression (parser
, /*cast_p=*/false);
6596 /* Parse an iteration-statement.
6598 iteration-statement:
6599 while ( condition ) statement
6600 do statement while ( expression ) ;
6601 for ( for-init-statement condition [opt] ; expression [opt] )
6604 Returns the new WHILE_STMT, DO_STMT, or FOR_STMT. */
6607 cp_parser_iteration_statement (cp_parser
* parser
)
6612 unsigned char in_statement
;
6614 /* Peek at the next token. */
6615 token
= cp_parser_require (parser
, CPP_KEYWORD
, "iteration-statement");
6617 return error_mark_node
;
6619 /* Remember whether or not we are already within an iteration
6621 in_statement
= parser
->in_statement
;
6623 /* See what kind of keyword it is. */
6624 keyword
= token
->keyword
;
6631 /* Begin the while-statement. */
6632 statement
= begin_while_stmt ();
6633 /* Look for the `('. */
6634 cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('");
6635 /* Parse the condition. */
6636 condition
= cp_parser_condition (parser
);
6637 finish_while_stmt_cond (condition
, statement
);
6638 /* Look for the `)'. */
6639 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
6640 /* Parse the dependent statement. */
6641 parser
->in_statement
= IN_ITERATION_STMT
;
6642 cp_parser_already_scoped_statement (parser
);
6643 parser
->in_statement
= in_statement
;
6644 /* We're done with the while-statement. */
6645 finish_while_stmt (statement
);
6653 /* Begin the do-statement. */
6654 statement
= begin_do_stmt ();
6655 /* Parse the body of the do-statement. */
6656 parser
->in_statement
= IN_ITERATION_STMT
;
6657 cp_parser_implicitly_scoped_statement (parser
);
6658 parser
->in_statement
= in_statement
;
6659 finish_do_body (statement
);
6660 /* Look for the `while' keyword. */
6661 cp_parser_require_keyword (parser
, RID_WHILE
, "`while'");
6662 /* Look for the `('. */
6663 cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('");
6664 /* Parse the expression. */
6665 expression
= cp_parser_expression (parser
, /*cast_p=*/false);
6666 /* We're done with the do-statement. */
6667 finish_do_stmt (expression
, statement
);
6668 /* Look for the `)'. */
6669 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
6670 /* Look for the `;'. */
6671 cp_parser_require (parser
, CPP_SEMICOLON
, "`;'");
6677 tree condition
= NULL_TREE
;
6678 tree expression
= NULL_TREE
;
6680 /* Begin the for-statement. */
6681 statement
= begin_for_stmt ();
6682 /* Look for the `('. */
6683 cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('");
6684 /* Parse the initialization. */
6685 cp_parser_for_init_statement (parser
);
6686 finish_for_init_stmt (statement
);
6688 /* If there's a condition, process it. */
6689 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_SEMICOLON
))
6690 condition
= cp_parser_condition (parser
);
6691 finish_for_cond (condition
, statement
);
6692 /* Look for the `;'. */
6693 cp_parser_require (parser
, CPP_SEMICOLON
, "`;'");
6695 /* If there's an expression, process it. */
6696 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_CLOSE_PAREN
))
6697 expression
= cp_parser_expression (parser
, /*cast_p=*/false);
6698 finish_for_expr (expression
, statement
);
6699 /* Look for the `)'. */
6700 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
6702 /* Parse the body of the for-statement. */
6703 parser
->in_statement
= IN_ITERATION_STMT
;
6704 cp_parser_already_scoped_statement (parser
);
6705 parser
->in_statement
= in_statement
;
6707 /* We're done with the for-statement. */
6708 finish_for_stmt (statement
);
6713 cp_parser_error (parser
, "expected iteration-statement");
6714 statement
= error_mark_node
;
6721 /* Parse a for-init-statement.
6724 expression-statement
6725 simple-declaration */
6728 cp_parser_for_init_statement (cp_parser
* parser
)
6730 /* If the next token is a `;', then we have an empty
6731 expression-statement. Grammatically, this is also a
6732 simple-declaration, but an invalid one, because it does not
6733 declare anything. Therefore, if we did not handle this case
6734 specially, we would issue an error message about an invalid
6736 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_SEMICOLON
))
6738 /* We're going to speculatively look for a declaration, falling back
6739 to an expression, if necessary. */
6740 cp_parser_parse_tentatively (parser
);
6741 /* Parse the declaration. */
6742 cp_parser_simple_declaration (parser
,
6743 /*function_definition_allowed_p=*/false);
6744 /* If the tentative parse failed, then we shall need to look for an
6745 expression-statement. */
6746 if (cp_parser_parse_definitely (parser
))
6750 cp_parser_expression_statement (parser
, false);
6753 /* Parse a jump-statement.
6758 return expression [opt] ;
6766 Returns the new BREAK_STMT, CONTINUE_STMT, RETURN_EXPR, or GOTO_EXPR. */
6769 cp_parser_jump_statement (cp_parser
* parser
)
6771 tree statement
= error_mark_node
;
6775 /* Peek at the next token. */
6776 token
= cp_parser_require (parser
, CPP_KEYWORD
, "jump-statement");
6778 return error_mark_node
;
6780 /* See what kind of keyword it is. */
6781 keyword
= token
->keyword
;
6785 switch (parser
->in_statement
)
6788 error ("break statement not within loop or switch");
6791 gcc_assert ((parser
->in_statement
& IN_SWITCH_STMT
)
6792 || parser
->in_statement
== IN_ITERATION_STMT
);
6793 statement
= finish_break_stmt ();
6796 error ("invalid exit from OpenMP structured block");
6799 error ("break statement used with OpenMP for loop");
6802 cp_parser_require (parser
, CPP_SEMICOLON
, "%<;%>");
6806 switch (parser
->in_statement
& ~IN_SWITCH_STMT
)
6809 error ("continue statement not within a loop");
6811 case IN_ITERATION_STMT
:
6813 statement
= finish_continue_stmt ();
6816 error ("invalid exit from OpenMP structured block");
6821 cp_parser_require (parser
, CPP_SEMICOLON
, "%<;%>");
6828 /* If the next token is a `;', then there is no
6830 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_SEMICOLON
))
6831 expr
= cp_parser_expression (parser
, /*cast_p=*/false);
6834 /* Build the return-statement. */
6835 statement
= finish_return_stmt (expr
);
6836 /* Look for the final `;'. */
6837 cp_parser_require (parser
, CPP_SEMICOLON
, "%<;%>");
6842 /* Create the goto-statement. */
6843 if (cp_lexer_next_token_is (parser
->lexer
, CPP_MULT
))
6845 /* Issue a warning about this use of a GNU extension. */
6847 pedwarn ("ISO C++ forbids computed gotos");
6848 /* Consume the '*' token. */
6849 cp_lexer_consume_token (parser
->lexer
);
6850 /* Parse the dependent expression. */
6851 finish_goto_stmt (cp_parser_expression (parser
, /*cast_p=*/false));
6854 finish_goto_stmt (cp_parser_identifier (parser
));
6855 /* Look for the final `;'. */
6856 cp_parser_require (parser
, CPP_SEMICOLON
, "%<;%>");
6860 cp_parser_error (parser
, "expected jump-statement");
6867 /* Parse a declaration-statement.
6869 declaration-statement:
6870 block-declaration */
6873 cp_parser_declaration_statement (cp_parser
* parser
)
6877 /* Get the high-water mark for the DECLARATOR_OBSTACK. */
6878 p
= obstack_alloc (&declarator_obstack
, 0);
6880 /* Parse the block-declaration. */
6881 cp_parser_block_declaration (parser
, /*statement_p=*/true);
6883 /* Free any declarators allocated. */
6884 obstack_free (&declarator_obstack
, p
);
6886 /* Finish off the statement. */
6890 /* Some dependent statements (like `if (cond) statement'), are
6891 implicitly in their own scope. In other words, if the statement is
6892 a single statement (as opposed to a compound-statement), it is
6893 none-the-less treated as if it were enclosed in braces. Any
6894 declarations appearing in the dependent statement are out of scope
6895 after control passes that point. This function parses a statement,
6896 but ensures that is in its own scope, even if it is not a
6899 Returns the new statement. */
6902 cp_parser_implicitly_scoped_statement (cp_parser
* parser
)
6906 /* Mark if () ; with a special NOP_EXPR. */
6907 if (cp_lexer_next_token_is (parser
->lexer
, CPP_SEMICOLON
))
6909 cp_lexer_consume_token (parser
->lexer
);
6910 statement
= add_stmt (build_empty_stmt ());
6912 /* if a compound is opened, we simply parse the statement directly. */
6913 else if (cp_lexer_next_token_is (parser
->lexer
, CPP_OPEN_BRACE
))
6914 statement
= cp_parser_compound_statement (parser
, NULL
, false);
6915 /* If the token is not a `{', then we must take special action. */
6918 /* Create a compound-statement. */
6919 statement
= begin_compound_stmt (0);
6920 /* Parse the dependent-statement. */
6921 cp_parser_statement (parser
, NULL_TREE
, false);
6922 /* Finish the dummy compound-statement. */
6923 finish_compound_stmt (statement
);
6926 /* Return the statement. */
6930 /* For some dependent statements (like `while (cond) statement'), we
6931 have already created a scope. Therefore, even if the dependent
6932 statement is a compound-statement, we do not want to create another
6936 cp_parser_already_scoped_statement (cp_parser
* parser
)
6938 /* If the token is a `{', then we must take special action. */
6939 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_OPEN_BRACE
))
6940 cp_parser_statement (parser
, NULL_TREE
, false);
6943 /* Avoid calling cp_parser_compound_statement, so that we
6944 don't create a new scope. Do everything else by hand. */
6945 cp_parser_require (parser
, CPP_OPEN_BRACE
, "`{'");
6946 cp_parser_statement_seq_opt (parser
, NULL_TREE
);
6947 cp_parser_require (parser
, CPP_CLOSE_BRACE
, "`}'");
6951 /* Declarations [gram.dcl.dcl] */
6953 /* Parse an optional declaration-sequence.
6957 declaration-seq declaration */
6960 cp_parser_declaration_seq_opt (cp_parser
* parser
)
6966 token
= cp_lexer_peek_token (parser
->lexer
);
6968 if (token
->type
== CPP_CLOSE_BRACE
6969 || token
->type
== CPP_EOF
6970 || token
->type
== CPP_PRAGMA_EOL
)
6973 if (token
->type
== CPP_SEMICOLON
)
6975 /* A declaration consisting of a single semicolon is
6976 invalid. Allow it unless we're being pedantic. */
6977 cp_lexer_consume_token (parser
->lexer
);
6978 if (pedantic
&& !in_system_header
)
6979 pedwarn ("extra %<;%>");
6983 /* If we're entering or exiting a region that's implicitly
6984 extern "C", modify the lang context appropriately. */
6985 if (!parser
->implicit_extern_c
&& token
->implicit_extern_c
)
6987 push_lang_context (lang_name_c
);
6988 parser
->implicit_extern_c
= true;
6990 else if (parser
->implicit_extern_c
&& !token
->implicit_extern_c
)
6992 pop_lang_context ();
6993 parser
->implicit_extern_c
= false;
6996 if (token
->type
== CPP_PRAGMA
)
6998 /* A top-level declaration can consist solely of a #pragma.
6999 A nested declaration cannot, so this is done here and not
7000 in cp_parser_declaration. (A #pragma at block scope is
7001 handled in cp_parser_statement.) */
7002 cp_parser_pragma (parser
, pragma_external
);
7006 /* Parse the declaration itself. */
7007 cp_parser_declaration (parser
);
7011 /* Parse a declaration.
7016 template-declaration
7017 explicit-instantiation
7018 explicit-specialization
7019 linkage-specification
7020 namespace-definition
7025 __extension__ declaration */
7028 cp_parser_declaration (cp_parser
* parser
)
7035 /* Check for the `__extension__' keyword. */
7036 if (cp_parser_extension_opt (parser
, &saved_pedantic
))
7038 /* Parse the qualified declaration. */
7039 cp_parser_declaration (parser
);
7040 /* Restore the PEDANTIC flag. */
7041 pedantic
= saved_pedantic
;
7046 /* Try to figure out what kind of declaration is present. */
7047 token1
= *cp_lexer_peek_token (parser
->lexer
);
7049 if (token1
.type
!= CPP_EOF
)
7050 token2
= *cp_lexer_peek_nth_token (parser
->lexer
, 2);
7053 token2
.type
= CPP_EOF
;
7054 token2
.keyword
= RID_MAX
;
7057 /* Get the high-water mark for the DECLARATOR_OBSTACK. */
7058 p
= obstack_alloc (&declarator_obstack
, 0);
7060 /* If the next token is `extern' and the following token is a string
7061 literal, then we have a linkage specification. */
7062 if (token1
.keyword
== RID_EXTERN
7063 && cp_parser_is_string_literal (&token2
))
7064 cp_parser_linkage_specification (parser
);
7065 /* If the next token is `template', then we have either a template
7066 declaration, an explicit instantiation, or an explicit
7068 else if (token1
.keyword
== RID_TEMPLATE
)
7070 /* `template <>' indicates a template specialization. */
7071 if (token2
.type
== CPP_LESS
7072 && cp_lexer_peek_nth_token (parser
->lexer
, 3)->type
== CPP_GREATER
)
7073 cp_parser_explicit_specialization (parser
);
7074 /* `template <' indicates a template declaration. */
7075 else if (token2
.type
== CPP_LESS
)
7076 cp_parser_template_declaration (parser
, /*member_p=*/false);
7077 /* Anything else must be an explicit instantiation. */
7079 cp_parser_explicit_instantiation (parser
);
7081 /* If the next token is `export', then we have a template
7083 else if (token1
.keyword
== RID_EXPORT
)
7084 cp_parser_template_declaration (parser
, /*member_p=*/false);
7085 /* If the next token is `extern', 'static' or 'inline' and the one
7086 after that is `template', we have a GNU extended explicit
7087 instantiation directive. */
7088 else if (cp_parser_allow_gnu_extensions_p (parser
)
7089 && (token1
.keyword
== RID_EXTERN
7090 || token1
.keyword
== RID_STATIC
7091 || token1
.keyword
== RID_INLINE
)
7092 && token2
.keyword
== RID_TEMPLATE
)
7093 cp_parser_explicit_instantiation (parser
);
7094 /* If the next token is `namespace', check for a named or unnamed
7095 namespace definition. */
7096 else if (token1
.keyword
== RID_NAMESPACE
7097 && (/* A named namespace definition. */
7098 (token2
.type
== CPP_NAME
7099 && (cp_lexer_peek_nth_token (parser
->lexer
, 3)->type
7101 /* An unnamed namespace definition. */
7102 || token2
.type
== CPP_OPEN_BRACE
7103 || token2
.keyword
== RID_ATTRIBUTE
))
7104 cp_parser_namespace_definition (parser
);
7105 /* Objective-C++ declaration/definition. */
7106 else if (c_dialect_objc () && OBJC_IS_AT_KEYWORD (token1
.keyword
))
7107 cp_parser_objc_declaration (parser
);
7108 /* We must have either a block declaration or a function
7111 /* Try to parse a block-declaration, or a function-definition. */
7112 cp_parser_block_declaration (parser
, /*statement_p=*/false);
7114 /* Free any declarators allocated. */
7115 obstack_free (&declarator_obstack
, p
);
7118 /* Parse a block-declaration.
7123 namespace-alias-definition
7130 __extension__ block-declaration
7133 If STATEMENT_P is TRUE, then this block-declaration is occurring as
7134 part of a declaration-statement. */
7137 cp_parser_block_declaration (cp_parser
*parser
,
7143 /* Check for the `__extension__' keyword. */
7144 if (cp_parser_extension_opt (parser
, &saved_pedantic
))
7146 /* Parse the qualified declaration. */
7147 cp_parser_block_declaration (parser
, statement_p
);
7148 /* Restore the PEDANTIC flag. */
7149 pedantic
= saved_pedantic
;
7154 /* Peek at the next token to figure out which kind of declaration is
7156 token1
= cp_lexer_peek_token (parser
->lexer
);
7158 /* If the next keyword is `asm', we have an asm-definition. */
7159 if (token1
->keyword
== RID_ASM
)
7162 cp_parser_commit_to_tentative_parse (parser
);
7163 cp_parser_asm_definition (parser
);
7165 /* If the next keyword is `namespace', we have a
7166 namespace-alias-definition. */
7167 else if (token1
->keyword
== RID_NAMESPACE
)
7168 cp_parser_namespace_alias_definition (parser
);
7169 /* If the next keyword is `using', we have either a
7170 using-declaration or a using-directive. */
7171 else if (token1
->keyword
== RID_USING
)
7176 cp_parser_commit_to_tentative_parse (parser
);
7177 /* If the token after `using' is `namespace', then we have a
7179 token2
= cp_lexer_peek_nth_token (parser
->lexer
, 2);
7180 if (token2
->keyword
== RID_NAMESPACE
)
7181 cp_parser_using_directive (parser
);
7182 /* Otherwise, it's a using-declaration. */
7184 cp_parser_using_declaration (parser
);
7186 /* If the next keyword is `__label__' we have a label declaration. */
7187 else if (token1
->keyword
== RID_LABEL
)
7190 cp_parser_commit_to_tentative_parse (parser
);
7191 cp_parser_label_declaration (parser
);
7193 /* Anything else must be a simple-declaration. */
7195 cp_parser_simple_declaration (parser
, !statement_p
);
7198 /* Parse a simple-declaration.
7201 decl-specifier-seq [opt] init-declarator-list [opt] ;
7203 init-declarator-list:
7205 init-declarator-list , init-declarator
7207 If FUNCTION_DEFINITION_ALLOWED_P is TRUE, then we also recognize a
7208 function-definition as a simple-declaration. */
7211 cp_parser_simple_declaration (cp_parser
* parser
,
7212 bool function_definition_allowed_p
)
7214 cp_decl_specifier_seq decl_specifiers
;
7215 int declares_class_or_enum
;
7216 bool saw_declarator
;
7218 /* Defer access checks until we know what is being declared; the
7219 checks for names appearing in the decl-specifier-seq should be
7220 done as if we were in the scope of the thing being declared. */
7221 push_deferring_access_checks (dk_deferred
);
7223 /* Parse the decl-specifier-seq. We have to keep track of whether
7224 or not the decl-specifier-seq declares a named class or
7225 enumeration type, since that is the only case in which the
7226 init-declarator-list is allowed to be empty.
7230 In a simple-declaration, the optional init-declarator-list can be
7231 omitted only when declaring a class or enumeration, that is when
7232 the decl-specifier-seq contains either a class-specifier, an
7233 elaborated-type-specifier, or an enum-specifier. */
7234 cp_parser_decl_specifier_seq (parser
,
7235 CP_PARSER_FLAGS_OPTIONAL
,
7237 &declares_class_or_enum
);
7238 /* We no longer need to defer access checks. */
7239 stop_deferring_access_checks ();
7241 /* In a block scope, a valid declaration must always have a
7242 decl-specifier-seq. By not trying to parse declarators, we can
7243 resolve the declaration/expression ambiguity more quickly. */
7244 if (!function_definition_allowed_p
7245 && !decl_specifiers
.any_specifiers_p
)
7247 cp_parser_error (parser
, "expected declaration");
7251 /* If the next two tokens are both identifiers, the code is
7252 erroneous. The usual cause of this situation is code like:
7256 where "T" should name a type -- but does not. */
7257 if (!decl_specifiers
.type
7258 && cp_parser_parse_and_diagnose_invalid_type_name (parser
))
7260 /* If parsing tentatively, we should commit; we really are
7261 looking at a declaration. */
7262 cp_parser_commit_to_tentative_parse (parser
);
7267 /* If we have seen at least one decl-specifier, and the next token
7268 is not a parenthesis, then we must be looking at a declaration.
7269 (After "int (" we might be looking at a functional cast.) */
7270 if (decl_specifiers
.any_specifiers_p
7271 && cp_lexer_next_token_is_not (parser
->lexer
, CPP_OPEN_PAREN
))
7272 cp_parser_commit_to_tentative_parse (parser
);
7274 /* Keep going until we hit the `;' at the end of the simple
7276 saw_declarator
= false;
7277 while (cp_lexer_next_token_is_not (parser
->lexer
,
7281 bool function_definition_p
;
7286 /* If we are processing next declarator, coma is expected */
7287 token
= cp_lexer_peek_token (parser
->lexer
);
7288 gcc_assert (token
->type
== CPP_COMMA
);
7289 cp_lexer_consume_token (parser
->lexer
);
7292 saw_declarator
= true;
7294 /* Parse the init-declarator. */
7295 decl
= cp_parser_init_declarator (parser
, &decl_specifiers
,
7296 /*checks=*/NULL_TREE
,
7297 function_definition_allowed_p
,
7299 declares_class_or_enum
,
7300 &function_definition_p
);
7301 /* If an error occurred while parsing tentatively, exit quickly.
7302 (That usually happens when in the body of a function; each
7303 statement is treated as a declaration-statement until proven
7305 if (cp_parser_error_occurred (parser
))
7307 /* Handle function definitions specially. */
7308 if (function_definition_p
)
7310 /* If the next token is a `,', then we are probably
7311 processing something like:
7315 which is erroneous. */
7316 if (cp_lexer_next_token_is (parser
->lexer
, CPP_COMMA
))
7317 error ("mixing declarations and function-definitions is forbidden");
7318 /* Otherwise, we're done with the list of declarators. */
7321 pop_deferring_access_checks ();
7325 /* The next token should be either a `,' or a `;'. */
7326 token
= cp_lexer_peek_token (parser
->lexer
);
7327 /* If it's a `,', there are more declarators to come. */
7328 if (token
->type
== CPP_COMMA
)
7329 /* will be consumed next time around */;
7330 /* If it's a `;', we are done. */
7331 else if (token
->type
== CPP_SEMICOLON
)
7333 /* Anything else is an error. */
7336 /* If we have already issued an error message we don't need
7337 to issue another one. */
7338 if (decl
!= error_mark_node
7339 || cp_parser_uncommitted_to_tentative_parse_p (parser
))
7340 cp_parser_error (parser
, "expected %<,%> or %<;%>");
7341 /* Skip tokens until we reach the end of the statement. */
7342 cp_parser_skip_to_end_of_statement (parser
);
7343 /* If the next token is now a `;', consume it. */
7344 if (cp_lexer_next_token_is (parser
->lexer
, CPP_SEMICOLON
))
7345 cp_lexer_consume_token (parser
->lexer
);
7348 /* After the first time around, a function-definition is not
7349 allowed -- even if it was OK at first. For example:
7354 function_definition_allowed_p
= false;
7357 /* Issue an error message if no declarators are present, and the
7358 decl-specifier-seq does not itself declare a class or
7360 if (!saw_declarator
)
7362 if (cp_parser_declares_only_class_p (parser
))
7363 shadow_tag (&decl_specifiers
);
7364 /* Perform any deferred access checks. */
7365 perform_deferred_access_checks ();
7368 /* Consume the `;'. */
7369 cp_parser_require (parser
, CPP_SEMICOLON
, "`;'");
7372 pop_deferring_access_checks ();
7375 /* Parse a decl-specifier-seq.
7378 decl-specifier-seq [opt] decl-specifier
7381 storage-class-specifier
7392 Set *DECL_SPECS to a representation of the decl-specifier-seq.
7394 The parser flags FLAGS is used to control type-specifier parsing.
7396 *DECLARES_CLASS_OR_ENUM is set to the bitwise or of the following
7399 1: one of the decl-specifiers is an elaborated-type-specifier
7400 (i.e., a type declaration)
7401 2: one of the decl-specifiers is an enum-specifier or a
7402 class-specifier (i.e., a type definition)
7407 cp_parser_decl_specifier_seq (cp_parser
* parser
,
7408 cp_parser_flags flags
,
7409 cp_decl_specifier_seq
*decl_specs
,
7410 int* declares_class_or_enum
)
7412 bool constructor_possible_p
= !parser
->in_declarator_p
;
7414 /* Clear DECL_SPECS. */
7415 clear_decl_specs (decl_specs
);
7417 /* Assume no class or enumeration type is declared. */
7418 *declares_class_or_enum
= 0;
7420 /* Keep reading specifiers until there are no more to read. */
7424 bool found_decl_spec
;
7427 /* Peek at the next token. */
7428 token
= cp_lexer_peek_token (parser
->lexer
);
7429 /* Handle attributes. */
7430 if (token
->keyword
== RID_ATTRIBUTE
)
7432 /* Parse the attributes. */
7433 decl_specs
->attributes
7434 = chainon (decl_specs
->attributes
,
7435 cp_parser_attributes_opt (parser
));
7438 /* Assume we will find a decl-specifier keyword. */
7439 found_decl_spec
= true;
7440 /* If the next token is an appropriate keyword, we can simply
7441 add it to the list. */
7442 switch (token
->keyword
)
7447 if (!at_class_scope_p ())
7449 error ("%<friend%> used outside of class");
7450 cp_lexer_purge_token (parser
->lexer
);
7454 ++decl_specs
->specs
[(int) ds_friend
];
7455 /* Consume the token. */
7456 cp_lexer_consume_token (parser
->lexer
);
7460 /* function-specifier:
7467 cp_parser_function_specifier_opt (parser
, decl_specs
);
7473 ++decl_specs
->specs
[(int) ds_typedef
];
7474 /* Consume the token. */
7475 cp_lexer_consume_token (parser
->lexer
);
7476 /* A constructor declarator cannot appear in a typedef. */
7477 constructor_possible_p
= false;
7478 /* The "typedef" keyword can only occur in a declaration; we
7479 may as well commit at this point. */
7480 cp_parser_commit_to_tentative_parse (parser
);
7483 /* storage-class-specifier:
7497 /* Consume the token. */
7498 cp_lexer_consume_token (parser
->lexer
);
7499 cp_parser_set_storage_class (parser
, decl_specs
, token
->keyword
);
7502 /* Consume the token. */
7503 cp_lexer_consume_token (parser
->lexer
);
7504 ++decl_specs
->specs
[(int) ds_thread
];
7508 /* We did not yet find a decl-specifier yet. */
7509 found_decl_spec
= false;
7513 /* Constructors are a special case. The `S' in `S()' is not a
7514 decl-specifier; it is the beginning of the declarator. */
7517 && constructor_possible_p
7518 && (cp_parser_constructor_declarator_p
7519 (parser
, decl_specs
->specs
[(int) ds_friend
] != 0)));
7521 /* If we don't have a DECL_SPEC yet, then we must be looking at
7522 a type-specifier. */
7523 if (!found_decl_spec
&& !constructor_p
)
7525 int decl_spec_declares_class_or_enum
;
7526 bool is_cv_qualifier
;
7530 = cp_parser_type_specifier (parser
, flags
,
7532 /*is_declaration=*/true,
7533 &decl_spec_declares_class_or_enum
,
7536 *declares_class_or_enum
|= decl_spec_declares_class_or_enum
;
7538 /* If this type-specifier referenced a user-defined type
7539 (a typedef, class-name, etc.), then we can't allow any
7540 more such type-specifiers henceforth.
7544 The longest sequence of decl-specifiers that could
7545 possibly be a type name is taken as the
7546 decl-specifier-seq of a declaration. The sequence shall
7547 be self-consistent as described below.
7551 As a general rule, at most one type-specifier is allowed
7552 in the complete decl-specifier-seq of a declaration. The
7553 only exceptions are the following:
7555 -- const or volatile can be combined with any other
7558 -- signed or unsigned can be combined with char, long,
7566 void g (const int Pc);
7568 Here, Pc is *not* part of the decl-specifier seq; it's
7569 the declarator. Therefore, once we see a type-specifier
7570 (other than a cv-qualifier), we forbid any additional
7571 user-defined types. We *do* still allow things like `int
7572 int' to be considered a decl-specifier-seq, and issue the
7573 error message later. */
7574 if (type_spec
&& !is_cv_qualifier
)
7575 flags
|= CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES
;
7576 /* A constructor declarator cannot follow a type-specifier. */
7579 constructor_possible_p
= false;
7580 found_decl_spec
= true;
7584 /* If we still do not have a DECL_SPEC, then there are no more
7586 if (!found_decl_spec
)
7589 decl_specs
->any_specifiers_p
= true;
7590 /* After we see one decl-specifier, further decl-specifiers are
7592 flags
|= CP_PARSER_FLAGS_OPTIONAL
;
7595 cp_parser_check_decl_spec (decl_specs
);
7597 /* Don't allow a friend specifier with a class definition. */
7598 if (decl_specs
->specs
[(int) ds_friend
] != 0
7599 && (*declares_class_or_enum
& 2))
7600 error ("class definition may not be declared a friend");
7603 /* Parse an (optional) storage-class-specifier.
7605 storage-class-specifier:
7614 storage-class-specifier:
7617 Returns an IDENTIFIER_NODE corresponding to the keyword used. */
7620 cp_parser_storage_class_specifier_opt (cp_parser
* parser
)
7622 switch (cp_lexer_peek_token (parser
->lexer
)->keyword
)
7630 /* Consume the token. */
7631 return cp_lexer_consume_token (parser
->lexer
)->value
;
7638 /* Parse an (optional) function-specifier.
7645 Returns an IDENTIFIER_NODE corresponding to the keyword used.
7646 Updates DECL_SPECS, if it is non-NULL. */
7649 cp_parser_function_specifier_opt (cp_parser
* parser
,
7650 cp_decl_specifier_seq
*decl_specs
)
7652 switch (cp_lexer_peek_token (parser
->lexer
)->keyword
)
7656 ++decl_specs
->specs
[(int) ds_inline
];
7660 /* 14.5.2.3 [temp.mem]
7662 A member function template shall not be virtual. */
7663 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
7664 error ("templates may not be %<virtual%>");
7665 else if (decl_specs
)
7666 ++decl_specs
->specs
[(int) ds_virtual
];
7671 ++decl_specs
->specs
[(int) ds_explicit
];
7678 /* Consume the token. */
7679 return cp_lexer_consume_token (parser
->lexer
)->value
;
7682 /* Parse a linkage-specification.
7684 linkage-specification:
7685 extern string-literal { declaration-seq [opt] }
7686 extern string-literal declaration */
7689 cp_parser_linkage_specification (cp_parser
* parser
)
7693 /* Look for the `extern' keyword. */
7694 cp_parser_require_keyword (parser
, RID_EXTERN
, "`extern'");
7696 /* Look for the string-literal. */
7697 linkage
= cp_parser_string_literal (parser
, false, false);
7699 /* Transform the literal into an identifier. If the literal is a
7700 wide-character string, or contains embedded NULs, then we can't
7701 handle it as the user wants. */
7702 if (strlen (TREE_STRING_POINTER (linkage
))
7703 != (size_t) (TREE_STRING_LENGTH (linkage
) - 1))
7705 cp_parser_error (parser
, "invalid linkage-specification");
7706 /* Assume C++ linkage. */
7707 linkage
= lang_name_cplusplus
;
7710 linkage
= get_identifier (TREE_STRING_POINTER (linkage
));
7712 /* We're now using the new linkage. */
7713 push_lang_context (linkage
);
7715 /* If the next token is a `{', then we're using the first
7717 if (cp_lexer_next_token_is (parser
->lexer
, CPP_OPEN_BRACE
))
7719 /* Consume the `{' token. */
7720 cp_lexer_consume_token (parser
->lexer
);
7721 /* Parse the declarations. */
7722 cp_parser_declaration_seq_opt (parser
);
7723 /* Look for the closing `}'. */
7724 cp_parser_require (parser
, CPP_CLOSE_BRACE
, "`}'");
7726 /* Otherwise, there's just one declaration. */
7729 bool saved_in_unbraced_linkage_specification_p
;
7731 saved_in_unbraced_linkage_specification_p
7732 = parser
->in_unbraced_linkage_specification_p
;
7733 parser
->in_unbraced_linkage_specification_p
= true;
7734 cp_parser_declaration (parser
);
7735 parser
->in_unbraced_linkage_specification_p
7736 = saved_in_unbraced_linkage_specification_p
;
7739 /* We're done with the linkage-specification. */
7740 pop_lang_context ();
7743 /* Special member functions [gram.special] */
7745 /* Parse a conversion-function-id.
7747 conversion-function-id:
7748 operator conversion-type-id
7750 Returns an IDENTIFIER_NODE representing the operator. */
7753 cp_parser_conversion_function_id (cp_parser
* parser
)
7757 tree saved_qualifying_scope
;
7758 tree saved_object_scope
;
7759 tree pushed_scope
= NULL_TREE
;
7761 /* Look for the `operator' token. */
7762 if (!cp_parser_require_keyword (parser
, RID_OPERATOR
, "`operator'"))
7763 return error_mark_node
;
7764 /* When we parse the conversion-type-id, the current scope will be
7765 reset. However, we need that information in able to look up the
7766 conversion function later, so we save it here. */
7767 saved_scope
= parser
->scope
;
7768 saved_qualifying_scope
= parser
->qualifying_scope
;
7769 saved_object_scope
= parser
->object_scope
;
7770 /* We must enter the scope of the class so that the names of
7771 entities declared within the class are available in the
7772 conversion-type-id. For example, consider:
7779 S::operator I() { ... }
7781 In order to see that `I' is a type-name in the definition, we
7782 must be in the scope of `S'. */
7784 pushed_scope
= push_scope (saved_scope
);
7785 /* Parse the conversion-type-id. */
7786 type
= cp_parser_conversion_type_id (parser
);
7787 /* Leave the scope of the class, if any. */
7789 pop_scope (pushed_scope
);
7790 /* Restore the saved scope. */
7791 parser
->scope
= saved_scope
;
7792 parser
->qualifying_scope
= saved_qualifying_scope
;
7793 parser
->object_scope
= saved_object_scope
;
7794 /* If the TYPE is invalid, indicate failure. */
7795 if (type
== error_mark_node
)
7796 return error_mark_node
;
7797 return mangle_conv_op_name_for_type (type
);
7800 /* Parse a conversion-type-id:
7803 type-specifier-seq conversion-declarator [opt]
7805 Returns the TYPE specified. */
7808 cp_parser_conversion_type_id (cp_parser
* parser
)
7811 cp_decl_specifier_seq type_specifiers
;
7812 cp_declarator
*declarator
;
7813 tree type_specified
;
7815 /* Parse the attributes. */
7816 attributes
= cp_parser_attributes_opt (parser
);
7817 /* Parse the type-specifiers. */
7818 cp_parser_type_specifier_seq (parser
, /*is_condition=*/false,
7820 /* If that didn't work, stop. */
7821 if (type_specifiers
.type
== error_mark_node
)
7822 return error_mark_node
;
7823 /* Parse the conversion-declarator. */
7824 declarator
= cp_parser_conversion_declarator_opt (parser
);
7826 type_specified
= grokdeclarator (declarator
, &type_specifiers
, TYPENAME
,
7827 /*initialized=*/0, &attributes
);
7829 cplus_decl_attributes (&type_specified
, attributes
, /*flags=*/0);
7830 return type_specified
;
7833 /* Parse an (optional) conversion-declarator.
7835 conversion-declarator:
7836 ptr-operator conversion-declarator [opt]
7840 static cp_declarator
*
7841 cp_parser_conversion_declarator_opt (cp_parser
* parser
)
7843 enum tree_code code
;
7845 cp_cv_quals cv_quals
;
7847 /* We don't know if there's a ptr-operator next, or not. */
7848 cp_parser_parse_tentatively (parser
);
7849 /* Try the ptr-operator. */
7850 code
= cp_parser_ptr_operator (parser
, &class_type
, &cv_quals
);
7851 /* If it worked, look for more conversion-declarators. */
7852 if (cp_parser_parse_definitely (parser
))
7854 cp_declarator
*declarator
;
7856 /* Parse another optional declarator. */
7857 declarator
= cp_parser_conversion_declarator_opt (parser
);
7859 /* Create the representation of the declarator. */
7861 declarator
= make_ptrmem_declarator (cv_quals
, class_type
,
7863 else if (code
== INDIRECT_REF
)
7864 declarator
= make_pointer_declarator (cv_quals
, declarator
);
7866 declarator
= make_reference_declarator (cv_quals
, declarator
);
7874 /* Parse an (optional) ctor-initializer.
7877 : mem-initializer-list
7879 Returns TRUE iff the ctor-initializer was actually present. */
7882 cp_parser_ctor_initializer_opt (cp_parser
* parser
)
7884 /* If the next token is not a `:', then there is no
7885 ctor-initializer. */
7886 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_COLON
))
7888 /* Do default initialization of any bases and members. */
7889 if (DECL_CONSTRUCTOR_P (current_function_decl
))
7890 finish_mem_initializers (NULL_TREE
);
7895 /* Consume the `:' token. */
7896 cp_lexer_consume_token (parser
->lexer
);
7897 /* And the mem-initializer-list. */
7898 cp_parser_mem_initializer_list (parser
);
7903 /* Parse a mem-initializer-list.
7905 mem-initializer-list:
7907 mem-initializer , mem-initializer-list */
7910 cp_parser_mem_initializer_list (cp_parser
* parser
)
7912 tree mem_initializer_list
= NULL_TREE
;
7914 /* Let the semantic analysis code know that we are starting the
7915 mem-initializer-list. */
7916 if (!DECL_CONSTRUCTOR_P (current_function_decl
))
7917 error ("only constructors take base initializers");
7919 /* Loop through the list. */
7922 tree mem_initializer
;
7924 /* Parse the mem-initializer. */
7925 mem_initializer
= cp_parser_mem_initializer (parser
);
7926 /* Add it to the list, unless it was erroneous. */
7927 if (mem_initializer
!= error_mark_node
)
7929 TREE_CHAIN (mem_initializer
) = mem_initializer_list
;
7930 mem_initializer_list
= mem_initializer
;
7932 /* If the next token is not a `,', we're done. */
7933 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_COMMA
))
7935 /* Consume the `,' token. */
7936 cp_lexer_consume_token (parser
->lexer
);
7939 /* Perform semantic analysis. */
7940 if (DECL_CONSTRUCTOR_P (current_function_decl
))
7941 finish_mem_initializers (mem_initializer_list
);
7944 /* Parse a mem-initializer.
7947 mem-initializer-id ( expression-list [opt] )
7952 ( expression-list [opt] )
7954 Returns a TREE_LIST. The TREE_PURPOSE is the TYPE (for a base
7955 class) or FIELD_DECL (for a non-static data member) to initialize;
7956 the TREE_VALUE is the expression-list. An empty initialization
7957 list is represented by void_list_node. */
7960 cp_parser_mem_initializer (cp_parser
* parser
)
7962 tree mem_initializer_id
;
7963 tree expression_list
;
7966 /* Find out what is being initialized. */
7967 if (cp_lexer_next_token_is (parser
->lexer
, CPP_OPEN_PAREN
))
7969 pedwarn ("anachronistic old-style base class initializer");
7970 mem_initializer_id
= NULL_TREE
;
7973 mem_initializer_id
= cp_parser_mem_initializer_id (parser
);
7974 member
= expand_member_init (mem_initializer_id
);
7975 if (member
&& !DECL_P (member
))
7976 in_base_initializer
= 1;
7979 = cp_parser_parenthesized_expression_list (parser
, false,
7981 /*non_constant_p=*/NULL
);
7982 if (expression_list
== error_mark_node
)
7983 return error_mark_node
;
7984 if (!expression_list
)
7985 expression_list
= void_type_node
;
7987 in_base_initializer
= 0;
7989 return member
? build_tree_list (member
, expression_list
) : error_mark_node
;
7992 /* Parse a mem-initializer-id.
7995 :: [opt] nested-name-specifier [opt] class-name
7998 Returns a TYPE indicating the class to be initializer for the first
7999 production. Returns an IDENTIFIER_NODE indicating the data member
8000 to be initialized for the second production. */
8003 cp_parser_mem_initializer_id (cp_parser
* parser
)
8005 bool global_scope_p
;
8006 bool nested_name_specifier_p
;
8007 bool template_p
= false;
8010 /* `typename' is not allowed in this context ([temp.res]). */
8011 if (cp_lexer_next_token_is_keyword (parser
->lexer
, RID_TYPENAME
))
8013 error ("keyword %<typename%> not allowed in this context (a qualified "
8014 "member initializer is implicitly a type)");
8015 cp_lexer_consume_token (parser
->lexer
);
8017 /* Look for the optional `::' operator. */
8019 = (cp_parser_global_scope_opt (parser
,
8020 /*current_scope_valid_p=*/false)
8022 /* Look for the optional nested-name-specifier. The simplest way to
8027 The keyword `typename' is not permitted in a base-specifier or
8028 mem-initializer; in these contexts a qualified name that
8029 depends on a template-parameter is implicitly assumed to be a
8032 is to assume that we have seen the `typename' keyword at this
8034 nested_name_specifier_p
8035 = (cp_parser_nested_name_specifier_opt (parser
,
8036 /*typename_keyword_p=*/true,
8037 /*check_dependency_p=*/true,
8039 /*is_declaration=*/true)
8041 if (nested_name_specifier_p
)
8042 template_p
= cp_parser_optional_template_keyword (parser
);
8043 /* If there is a `::' operator or a nested-name-specifier, then we
8044 are definitely looking for a class-name. */
8045 if (global_scope_p
|| nested_name_specifier_p
)
8046 return cp_parser_class_name (parser
,
8047 /*typename_keyword_p=*/true,
8048 /*template_keyword_p=*/template_p
,
8050 /*check_dependency_p=*/true,
8051 /*class_head_p=*/false,
8052 /*is_declaration=*/true);
8053 /* Otherwise, we could also be looking for an ordinary identifier. */
8054 cp_parser_parse_tentatively (parser
);
8055 /* Try a class-name. */
8056 id
= cp_parser_class_name (parser
,
8057 /*typename_keyword_p=*/true,
8058 /*template_keyword_p=*/false,
8060 /*check_dependency_p=*/true,
8061 /*class_head_p=*/false,
8062 /*is_declaration=*/true);
8063 /* If we found one, we're done. */
8064 if (cp_parser_parse_definitely (parser
))
8066 /* Otherwise, look for an ordinary identifier. */
8067 return cp_parser_identifier (parser
);
8070 /* Overloading [gram.over] */
8072 /* Parse an operator-function-id.
8074 operator-function-id:
8077 Returns an IDENTIFIER_NODE for the operator which is a
8078 human-readable spelling of the identifier, e.g., `operator +'. */
8081 cp_parser_operator_function_id (cp_parser
* parser
)
8083 /* Look for the `operator' keyword. */
8084 if (!cp_parser_require_keyword (parser
, RID_OPERATOR
, "`operator'"))
8085 return error_mark_node
;
8086 /* And then the name of the operator itself. */
8087 return cp_parser_operator (parser
);
8090 /* Parse an operator.
8093 new delete new[] delete[] + - * / % ^ & | ~ ! = < >
8094 += -= *= /= %= ^= &= |= << >> >>= <<= == != <= >= &&
8095 || ++ -- , ->* -> () []
8102 Returns an IDENTIFIER_NODE for the operator which is a
8103 human-readable spelling of the identifier, e.g., `operator +'. */
8106 cp_parser_operator (cp_parser
* parser
)
8108 tree id
= NULL_TREE
;
8111 /* Peek at the next token. */
8112 token
= cp_lexer_peek_token (parser
->lexer
);
8113 /* Figure out which operator we have. */
8114 switch (token
->type
)
8120 /* The keyword should be either `new' or `delete'. */
8121 if (token
->keyword
== RID_NEW
)
8123 else if (token
->keyword
== RID_DELETE
)
8128 /* Consume the `new' or `delete' token. */
8129 cp_lexer_consume_token (parser
->lexer
);
8131 /* Peek at the next token. */
8132 token
= cp_lexer_peek_token (parser
->lexer
);
8133 /* If it's a `[' token then this is the array variant of the
8135 if (token
->type
== CPP_OPEN_SQUARE
)
8137 /* Consume the `[' token. */
8138 cp_lexer_consume_token (parser
->lexer
);
8139 /* Look for the `]' token. */
8140 cp_parser_require (parser
, CPP_CLOSE_SQUARE
, "`]'");
8141 id
= ansi_opname (op
== NEW_EXPR
8142 ? VEC_NEW_EXPR
: VEC_DELETE_EXPR
);
8144 /* Otherwise, we have the non-array variant. */
8146 id
= ansi_opname (op
);
8152 id
= ansi_opname (PLUS_EXPR
);
8156 id
= ansi_opname (MINUS_EXPR
);
8160 id
= ansi_opname (MULT_EXPR
);
8164 id
= ansi_opname (TRUNC_DIV_EXPR
);
8168 id
= ansi_opname (TRUNC_MOD_EXPR
);
8172 id
= ansi_opname (BIT_XOR_EXPR
);
8176 id
= ansi_opname (BIT_AND_EXPR
);
8180 id
= ansi_opname (BIT_IOR_EXPR
);
8184 id
= ansi_opname (BIT_NOT_EXPR
);
8188 id
= ansi_opname (TRUTH_NOT_EXPR
);
8192 id
= ansi_assopname (NOP_EXPR
);
8196 id
= ansi_opname (LT_EXPR
);
8200 id
= ansi_opname (GT_EXPR
);
8204 id
= ansi_assopname (PLUS_EXPR
);
8208 id
= ansi_assopname (MINUS_EXPR
);
8212 id
= ansi_assopname (MULT_EXPR
);
8216 id
= ansi_assopname (TRUNC_DIV_EXPR
);
8220 id
= ansi_assopname (TRUNC_MOD_EXPR
);
8224 id
= ansi_assopname (BIT_XOR_EXPR
);
8228 id
= ansi_assopname (BIT_AND_EXPR
);
8232 id
= ansi_assopname (BIT_IOR_EXPR
);
8236 id
= ansi_opname (LSHIFT_EXPR
);
8240 id
= ansi_opname (RSHIFT_EXPR
);
8244 id
= ansi_assopname (LSHIFT_EXPR
);
8248 id
= ansi_assopname (RSHIFT_EXPR
);
8252 id
= ansi_opname (EQ_EXPR
);
8256 id
= ansi_opname (NE_EXPR
);
8260 id
= ansi_opname (LE_EXPR
);
8263 case CPP_GREATER_EQ
:
8264 id
= ansi_opname (GE_EXPR
);
8268 id
= ansi_opname (TRUTH_ANDIF_EXPR
);
8272 id
= ansi_opname (TRUTH_ORIF_EXPR
);
8276 id
= ansi_opname (POSTINCREMENT_EXPR
);
8279 case CPP_MINUS_MINUS
:
8280 id
= ansi_opname (PREDECREMENT_EXPR
);
8284 id
= ansi_opname (COMPOUND_EXPR
);
8287 case CPP_DEREF_STAR
:
8288 id
= ansi_opname (MEMBER_REF
);
8292 id
= ansi_opname (COMPONENT_REF
);
8295 case CPP_OPEN_PAREN
:
8296 /* Consume the `('. */
8297 cp_lexer_consume_token (parser
->lexer
);
8298 /* Look for the matching `)'. */
8299 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
8300 return ansi_opname (CALL_EXPR
);
8302 case CPP_OPEN_SQUARE
:
8303 /* Consume the `['. */
8304 cp_lexer_consume_token (parser
->lexer
);
8305 /* Look for the matching `]'. */
8306 cp_parser_require (parser
, CPP_CLOSE_SQUARE
, "`]'");
8307 return ansi_opname (ARRAY_REF
);
8310 /* Anything else is an error. */
8314 /* If we have selected an identifier, we need to consume the
8317 cp_lexer_consume_token (parser
->lexer
);
8318 /* Otherwise, no valid operator name was present. */
8321 cp_parser_error (parser
, "expected operator");
8322 id
= error_mark_node
;
8328 /* Parse a template-declaration.
8330 template-declaration:
8331 export [opt] template < template-parameter-list > declaration
8333 If MEMBER_P is TRUE, this template-declaration occurs within a
8336 The grammar rule given by the standard isn't correct. What
8339 template-declaration:
8340 export [opt] template-parameter-list-seq
8341 decl-specifier-seq [opt] init-declarator [opt] ;
8342 export [opt] template-parameter-list-seq
8345 template-parameter-list-seq:
8346 template-parameter-list-seq [opt]
8347 template < template-parameter-list > */
8350 cp_parser_template_declaration (cp_parser
* parser
, bool member_p
)
8352 /* Check for `export'. */
8353 if (cp_lexer_next_token_is_keyword (parser
->lexer
, RID_EXPORT
))
8355 /* Consume the `export' token. */
8356 cp_lexer_consume_token (parser
->lexer
);
8357 /* Warn that we do not support `export'. */
8358 warning (0, "keyword %<export%> not implemented, and will be ignored");
8361 cp_parser_template_declaration_after_export (parser
, member_p
);
8364 /* Parse a template-parameter-list.
8366 template-parameter-list:
8368 template-parameter-list , template-parameter
8370 Returns a TREE_LIST. Each node represents a template parameter.
8371 The nodes are connected via their TREE_CHAINs. */
8374 cp_parser_template_parameter_list (cp_parser
* parser
)
8376 tree parameter_list
= NULL_TREE
;
8378 begin_template_parm_list ();
8385 /* Parse the template-parameter. */
8386 parameter
= cp_parser_template_parameter (parser
, &is_non_type
);
8387 /* Add it to the list. */
8388 if (parameter
!= error_mark_node
)
8389 parameter_list
= process_template_parm (parameter_list
,
8392 /* Peek at the next token. */
8393 token
= cp_lexer_peek_token (parser
->lexer
);
8394 /* If it's not a `,', we're done. */
8395 if (token
->type
!= CPP_COMMA
)
8397 /* Otherwise, consume the `,' token. */
8398 cp_lexer_consume_token (parser
->lexer
);
8401 return end_template_parm_list (parameter_list
);
8404 /* Parse a template-parameter.
8408 parameter-declaration
8410 If all goes well, returns a TREE_LIST. The TREE_VALUE represents
8411 the parameter. The TREE_PURPOSE is the default value, if any.
8412 Returns ERROR_MARK_NODE on failure. *IS_NON_TYPE is set to true
8413 iff this parameter is a non-type parameter. */
8416 cp_parser_template_parameter (cp_parser
* parser
, bool *is_non_type
)
8419 cp_parameter_declarator
*parameter_declarator
;
8422 /* Assume it is a type parameter or a template parameter. */
8423 *is_non_type
= false;
8424 /* Peek at the next token. */
8425 token
= cp_lexer_peek_token (parser
->lexer
);
8426 /* If it is `class' or `template', we have a type-parameter. */
8427 if (token
->keyword
== RID_TEMPLATE
)
8428 return cp_parser_type_parameter (parser
);
8429 /* If it is `class' or `typename' we do not know yet whether it is a
8430 type parameter or a non-type parameter. Consider:
8432 template <typename T, typename T::X X> ...
8436 template <class C, class D*> ...
8438 Here, the first parameter is a type parameter, and the second is
8439 a non-type parameter. We can tell by looking at the token after
8440 the identifier -- if it is a `,', `=', or `>' then we have a type
8442 if (token
->keyword
== RID_TYPENAME
|| token
->keyword
== RID_CLASS
)
8444 /* Peek at the token after `class' or `typename'. */
8445 token
= cp_lexer_peek_nth_token (parser
->lexer
, 2);
8446 /* If it's an identifier, skip it. */
8447 if (token
->type
== CPP_NAME
)
8448 token
= cp_lexer_peek_nth_token (parser
->lexer
, 3);
8449 /* Now, see if the token looks like the end of a template
8451 if (token
->type
== CPP_COMMA
8452 || token
->type
== CPP_EQ
8453 || token
->type
== CPP_GREATER
)
8454 return cp_parser_type_parameter (parser
);
8457 /* Otherwise, it is a non-type parameter.
8461 When parsing a default template-argument for a non-type
8462 template-parameter, the first non-nested `>' is taken as the end
8463 of the template parameter-list rather than a greater-than
8465 *is_non_type
= true;
8466 parameter_declarator
8467 = cp_parser_parameter_declaration (parser
, /*template_parm_p=*/true,
8468 /*parenthesized_p=*/NULL
);
8469 parm
= grokdeclarator (parameter_declarator
->declarator
,
8470 ¶meter_declarator
->decl_specifiers
,
8471 PARM
, /*initialized=*/0,
8473 if (parm
== error_mark_node
)
8474 return error_mark_node
;
8475 return build_tree_list (parameter_declarator
->default_argument
, parm
);
8478 /* Parse a type-parameter.
8481 class identifier [opt]
8482 class identifier [opt] = type-id
8483 typename identifier [opt]
8484 typename identifier [opt] = type-id
8485 template < template-parameter-list > class identifier [opt]
8486 template < template-parameter-list > class identifier [opt]
8489 Returns a TREE_LIST. The TREE_VALUE is itself a TREE_LIST. The
8490 TREE_PURPOSE is the default-argument, if any. The TREE_VALUE is
8491 the declaration of the parameter. */
8494 cp_parser_type_parameter (cp_parser
* parser
)
8499 /* Look for a keyword to tell us what kind of parameter this is. */
8500 token
= cp_parser_require (parser
, CPP_KEYWORD
,
8501 "`class', `typename', or `template'");
8503 return error_mark_node
;
8505 switch (token
->keyword
)
8511 tree default_argument
;
8513 /* If the next token is an identifier, then it names the
8515 if (cp_lexer_next_token_is (parser
->lexer
, CPP_NAME
))
8516 identifier
= cp_parser_identifier (parser
);
8518 identifier
= NULL_TREE
;
8520 /* Create the parameter. */
8521 parameter
= finish_template_type_parm (class_type_node
, identifier
);
8523 /* If the next token is an `=', we have a default argument. */
8524 if (cp_lexer_next_token_is (parser
->lexer
, CPP_EQ
))
8526 /* Consume the `=' token. */
8527 cp_lexer_consume_token (parser
->lexer
);
8528 /* Parse the default-argument. */
8529 push_deferring_access_checks (dk_no_deferred
);
8530 default_argument
= cp_parser_type_id (parser
);
8531 pop_deferring_access_checks ();
8534 default_argument
= NULL_TREE
;
8536 /* Create the combined representation of the parameter and the
8537 default argument. */
8538 parameter
= build_tree_list (default_argument
, parameter
);
8544 tree parameter_list
;
8546 tree default_argument
;
8548 /* Look for the `<'. */
8549 cp_parser_require (parser
, CPP_LESS
, "`<'");
8550 /* Parse the template-parameter-list. */
8551 parameter_list
= cp_parser_template_parameter_list (parser
);
8552 /* Look for the `>'. */
8553 cp_parser_require (parser
, CPP_GREATER
, "`>'");
8554 /* Look for the `class' keyword. */
8555 cp_parser_require_keyword (parser
, RID_CLASS
, "`class'");
8556 /* If the next token is an `=', then there is a
8557 default-argument. If the next token is a `>', we are at
8558 the end of the parameter-list. If the next token is a `,',
8559 then we are at the end of this parameter. */
8560 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_EQ
)
8561 && cp_lexer_next_token_is_not (parser
->lexer
, CPP_GREATER
)
8562 && cp_lexer_next_token_is_not (parser
->lexer
, CPP_COMMA
))
8564 identifier
= cp_parser_identifier (parser
);
8565 /* Treat invalid names as if the parameter were nameless. */
8566 if (identifier
== error_mark_node
)
8567 identifier
= NULL_TREE
;
8570 identifier
= NULL_TREE
;
8572 /* Create the template parameter. */
8573 parameter
= finish_template_template_parm (class_type_node
,
8576 /* If the next token is an `=', then there is a
8577 default-argument. */
8578 if (cp_lexer_next_token_is (parser
->lexer
, CPP_EQ
))
8582 /* Consume the `='. */
8583 cp_lexer_consume_token (parser
->lexer
);
8584 /* Parse the id-expression. */
8585 push_deferring_access_checks (dk_no_deferred
);
8587 = cp_parser_id_expression (parser
,
8588 /*template_keyword_p=*/false,
8589 /*check_dependency_p=*/true,
8590 /*template_p=*/&is_template
,
8591 /*declarator_p=*/false,
8592 /*optional_p=*/false);
8593 if (TREE_CODE (default_argument
) == TYPE_DECL
)
8594 /* If the id-expression was a template-id that refers to
8595 a template-class, we already have the declaration here,
8596 so no further lookup is needed. */
8599 /* Look up the name. */
8601 = cp_parser_lookup_name (parser
, default_argument
,
8603 /*is_template=*/is_template
,
8604 /*is_namespace=*/false,
8605 /*check_dependency=*/true,
8606 /*ambiguous_decls=*/NULL
);
8607 /* See if the default argument is valid. */
8609 = check_template_template_default_arg (default_argument
);
8610 pop_deferring_access_checks ();
8613 default_argument
= NULL_TREE
;
8615 /* Create the combined representation of the parameter and the
8616 default argument. */
8617 parameter
= build_tree_list (default_argument
, parameter
);
8629 /* Parse a template-id.
8632 template-name < template-argument-list [opt] >
8634 If TEMPLATE_KEYWORD_P is TRUE, then we have just seen the
8635 `template' keyword. In this case, a TEMPLATE_ID_EXPR will be
8636 returned. Otherwise, if the template-name names a function, or set
8637 of functions, returns a TEMPLATE_ID_EXPR. If the template-name
8638 names a class, returns a TYPE_DECL for the specialization.
8640 If CHECK_DEPENDENCY_P is FALSE, names are looked up in
8641 uninstantiated templates. */
8644 cp_parser_template_id (cp_parser
*parser
,
8645 bool template_keyword_p
,
8646 bool check_dependency_p
,
8647 bool is_declaration
)
8652 cp_token_position start_of_id
= 0;
8653 tree access_check
= NULL_TREE
;
8654 cp_token
*next_token
, *next_token_2
;
8657 /* If the next token corresponds to a template-id, there is no need
8659 next_token
= cp_lexer_peek_token (parser
->lexer
);
8660 if (next_token
->type
== CPP_TEMPLATE_ID
)
8665 /* Get the stored value. */
8666 value
= cp_lexer_consume_token (parser
->lexer
)->value
;
8667 /* Perform any access checks that were deferred. */
8668 for (check
= TREE_PURPOSE (value
); check
; check
= TREE_CHAIN (check
))
8669 perform_or_defer_access_check (TREE_PURPOSE (check
),
8670 TREE_VALUE (check
));
8671 /* Return the stored value. */
8672 return TREE_VALUE (value
);
8675 /* Avoid performing name lookup if there is no possibility of
8676 finding a template-id. */
8677 if ((next_token
->type
!= CPP_NAME
&& next_token
->keyword
!= RID_OPERATOR
)
8678 || (next_token
->type
== CPP_NAME
8679 && !cp_parser_nth_token_starts_template_argument_list_p
8682 cp_parser_error (parser
, "expected template-id");
8683 return error_mark_node
;
8686 /* Remember where the template-id starts. */
8687 if (cp_parser_uncommitted_to_tentative_parse_p (parser
))
8688 start_of_id
= cp_lexer_token_position (parser
->lexer
, false);
8690 push_deferring_access_checks (dk_deferred
);
8692 /* Parse the template-name. */
8693 is_identifier
= false;
8694 template = cp_parser_template_name (parser
, template_keyword_p
,
8698 if (template == error_mark_node
|| is_identifier
)
8700 pop_deferring_access_checks ();
8704 /* If we find the sequence `[:' after a template-name, it's probably
8705 a digraph-typo for `< ::'. Substitute the tokens and check if we can
8706 parse correctly the argument list. */
8707 next_token
= cp_lexer_peek_token (parser
->lexer
);
8708 next_token_2
= cp_lexer_peek_nth_token (parser
->lexer
, 2);
8709 if (next_token
->type
== CPP_OPEN_SQUARE
8710 && next_token
->flags
& DIGRAPH
8711 && next_token_2
->type
== CPP_COLON
8712 && !(next_token_2
->flags
& PREV_WHITE
))
8714 cp_parser_parse_tentatively (parser
);
8715 /* Change `:' into `::'. */
8716 next_token_2
->type
= CPP_SCOPE
;
8717 /* Consume the first token (CPP_OPEN_SQUARE - which we pretend it is
8719 cp_lexer_consume_token (parser
->lexer
);
8720 /* Parse the arguments. */
8721 arguments
= cp_parser_enclosed_template_argument_list (parser
);
8722 if (!cp_parser_parse_definitely (parser
))
8724 /* If we couldn't parse an argument list, then we revert our changes
8725 and return simply an error. Maybe this is not a template-id
8727 next_token_2
->type
= CPP_COLON
;
8728 cp_parser_error (parser
, "expected %<<%>");
8729 pop_deferring_access_checks ();
8730 return error_mark_node
;
8732 /* Otherwise, emit an error about the invalid digraph, but continue
8733 parsing because we got our argument list. */
8734 pedwarn ("%<<::%> cannot begin a template-argument list");
8735 inform ("%<<:%> is an alternate spelling for %<[%>. Insert whitespace "
8736 "between %<<%> and %<::%>");
8737 if (!flag_permissive
)
8742 inform ("(if you use -fpermissive G++ will accept your code)");
8749 /* Look for the `<' that starts the template-argument-list. */
8750 if (!cp_parser_require (parser
, CPP_LESS
, "`<'"))
8752 pop_deferring_access_checks ();
8753 return error_mark_node
;
8755 /* Parse the arguments. */
8756 arguments
= cp_parser_enclosed_template_argument_list (parser
);
8759 /* Build a representation of the specialization. */
8760 if (TREE_CODE (template) == IDENTIFIER_NODE
)
8761 template_id
= build_min_nt (TEMPLATE_ID_EXPR
, template, arguments
);
8762 else if (DECL_CLASS_TEMPLATE_P (template)
8763 || DECL_TEMPLATE_TEMPLATE_PARM_P (template))
8765 bool entering_scope
;
8766 /* In "template <typename T> ... A<T>::", A<T> is the abstract A
8767 template (rather than some instantiation thereof) only if
8768 is not nested within some other construct. For example, in
8769 "template <typename T> void f(T) { A<T>::", A<T> is just an
8770 instantiation of A. */
8771 entering_scope
= (template_parm_scope_p ()
8772 && cp_lexer_next_token_is (parser
->lexer
,
8775 = finish_template_type (template, arguments
, entering_scope
);
8779 /* If it's not a class-template or a template-template, it should be
8780 a function-template. */
8781 gcc_assert ((DECL_FUNCTION_TEMPLATE_P (template)
8782 || TREE_CODE (template) == OVERLOAD
8783 || BASELINK_P (template)));
8785 template_id
= lookup_template_function (template, arguments
);
8788 /* Retrieve any deferred checks. Do not pop this access checks yet
8789 so the memory will not be reclaimed during token replacing below. */
8790 access_check
= get_deferred_access_checks ();
8792 /* If parsing tentatively, replace the sequence of tokens that makes
8793 up the template-id with a CPP_TEMPLATE_ID token. That way,
8794 should we re-parse the token stream, we will not have to repeat
8795 the effort required to do the parse, nor will we issue duplicate
8796 error messages about problems during instantiation of the
8800 cp_token
*token
= cp_lexer_token_at (parser
->lexer
, start_of_id
);
8802 /* Reset the contents of the START_OF_ID token. */
8803 token
->type
= CPP_TEMPLATE_ID
;
8804 token
->value
= build_tree_list (access_check
, template_id
);
8805 token
->keyword
= RID_MAX
;
8807 /* Purge all subsequent tokens. */
8808 cp_lexer_purge_tokens_after (parser
->lexer
, start_of_id
);
8810 /* ??? Can we actually assume that, if template_id ==
8811 error_mark_node, we will have issued a diagnostic to the
8812 user, as opposed to simply marking the tentative parse as
8814 if (cp_parser_error_occurred (parser
) && template_id
!= error_mark_node
)
8815 error ("parse error in template argument list");
8818 pop_deferring_access_checks ();
8822 /* Parse a template-name.
8827 The standard should actually say:
8831 operator-function-id
8833 A defect report has been filed about this issue.
8835 A conversion-function-id cannot be a template name because they cannot
8836 be part of a template-id. In fact, looking at this code:
8840 the conversion-function-id is "operator K<int>", and K<int> is a type-id.
8841 It is impossible to call a templated conversion-function-id with an
8842 explicit argument list, since the only allowed template parameter is
8843 the type to which it is converting.
8845 If TEMPLATE_KEYWORD_P is true, then we have just seen the
8846 `template' keyword, in a construction like:
8850 In that case `f' is taken to be a template-name, even though there
8851 is no way of knowing for sure.
8853 Returns the TEMPLATE_DECL for the template, or an OVERLOAD if the
8854 name refers to a set of overloaded functions, at least one of which
8855 is a template, or an IDENTIFIER_NODE with the name of the template,
8856 if TEMPLATE_KEYWORD_P is true. If CHECK_DEPENDENCY_P is FALSE,
8857 names are looked up inside uninstantiated templates. */
8860 cp_parser_template_name (cp_parser
* parser
,
8861 bool template_keyword_p
,
8862 bool check_dependency_p
,
8863 bool is_declaration
,
8864 bool *is_identifier
)
8870 /* If the next token is `operator', then we have either an
8871 operator-function-id or a conversion-function-id. */
8872 if (cp_lexer_next_token_is_keyword (parser
->lexer
, RID_OPERATOR
))
8874 /* We don't know whether we're looking at an
8875 operator-function-id or a conversion-function-id. */
8876 cp_parser_parse_tentatively (parser
);
8877 /* Try an operator-function-id. */
8878 identifier
= cp_parser_operator_function_id (parser
);
8879 /* If that didn't work, try a conversion-function-id. */
8880 if (!cp_parser_parse_definitely (parser
))
8882 cp_parser_error (parser
, "expected template-name");
8883 return error_mark_node
;
8886 /* Look for the identifier. */
8888 identifier
= cp_parser_identifier (parser
);
8890 /* If we didn't find an identifier, we don't have a template-id. */
8891 if (identifier
== error_mark_node
)
8892 return error_mark_node
;
8894 /* If the name immediately followed the `template' keyword, then it
8895 is a template-name. However, if the next token is not `<', then
8896 we do not treat it as a template-name, since it is not being used
8897 as part of a template-id. This enables us to handle constructs
8900 template <typename T> struct S { S(); };
8901 template <typename T> S<T>::S();
8903 correctly. We would treat `S' as a template -- if it were `S<T>'
8904 -- but we do not if there is no `<'. */
8906 if (processing_template_decl
8907 && cp_parser_nth_token_starts_template_argument_list_p (parser
, 1))
8909 /* In a declaration, in a dependent context, we pretend that the
8910 "template" keyword was present in order to improve error
8911 recovery. For example, given:
8913 template <typename T> void f(T::X<int>);
8915 we want to treat "X<int>" as a template-id. */
8917 && !template_keyword_p
8918 && parser
->scope
&& TYPE_P (parser
->scope
)
8919 && check_dependency_p
8920 && dependent_type_p (parser
->scope
)
8921 /* Do not do this for dtors (or ctors), since they never
8922 need the template keyword before their name. */
8923 && !constructor_name_p (identifier
, parser
->scope
))
8925 cp_token_position start
= 0;
8927 /* Explain what went wrong. */
8928 error ("non-template %qD used as template", identifier
);
8929 inform ("use %<%T::template %D%> to indicate that it is a template",
8930 parser
->scope
, identifier
);
8931 /* If parsing tentatively, find the location of the "<" token. */
8932 if (cp_parser_simulate_error (parser
))
8933 start
= cp_lexer_token_position (parser
->lexer
, true);
8934 /* Parse the template arguments so that we can issue error
8935 messages about them. */
8936 cp_lexer_consume_token (parser
->lexer
);
8937 cp_parser_enclosed_template_argument_list (parser
);
8938 /* Skip tokens until we find a good place from which to
8939 continue parsing. */
8940 cp_parser_skip_to_closing_parenthesis (parser
,
8941 /*recovering=*/true,
8943 /*consume_paren=*/false);
8944 /* If parsing tentatively, permanently remove the
8945 template argument list. That will prevent duplicate
8946 error messages from being issued about the missing
8947 "template" keyword. */
8949 cp_lexer_purge_tokens_after (parser
->lexer
, start
);
8951 *is_identifier
= true;
8955 /* If the "template" keyword is present, then there is generally
8956 no point in doing name-lookup, so we just return IDENTIFIER.
8957 But, if the qualifying scope is non-dependent then we can
8958 (and must) do name-lookup normally. */
8959 if (template_keyword_p
8961 || (TYPE_P (parser
->scope
)
8962 && dependent_type_p (parser
->scope
))))
8966 /* Look up the name. */
8967 decl
= cp_parser_lookup_name (parser
, identifier
,
8969 /*is_template=*/false,
8970 /*is_namespace=*/false,
8972 /*ambiguous_decls=*/NULL
);
8973 decl
= maybe_get_template_decl_from_type_decl (decl
);
8975 /* If DECL is a template, then the name was a template-name. */
8976 if (TREE_CODE (decl
) == TEMPLATE_DECL
)
8980 tree fn
= NULL_TREE
;
8982 /* The standard does not explicitly indicate whether a name that
8983 names a set of overloaded declarations, some of which are
8984 templates, is a template-name. However, such a name should
8985 be a template-name; otherwise, there is no way to form a
8986 template-id for the overloaded templates. */
8987 fns
= BASELINK_P (decl
) ? BASELINK_FUNCTIONS (decl
) : decl
;
8988 if (TREE_CODE (fns
) == OVERLOAD
)
8989 for (fn
= fns
; fn
; fn
= OVL_NEXT (fn
))
8990 if (TREE_CODE (OVL_CURRENT (fn
)) == TEMPLATE_DECL
)
8995 /* The name does not name a template. */
8996 cp_parser_error (parser
, "expected template-name");
8997 return error_mark_node
;
9001 /* If DECL is dependent, and refers to a function, then just return
9002 its name; we will look it up again during template instantiation. */
9003 if (DECL_FUNCTION_TEMPLATE_P (decl
) || !DECL_P (decl
))
9005 tree scope
= CP_DECL_CONTEXT (get_first_fn (decl
));
9006 if (TYPE_P (scope
) && dependent_type_p (scope
))
9013 /* Parse a template-argument-list.
9015 template-argument-list:
9017 template-argument-list , template-argument
9019 Returns a TREE_VEC containing the arguments. */
9022 cp_parser_template_argument_list (cp_parser
* parser
)
9024 tree fixed_args
[10];
9025 unsigned n_args
= 0;
9026 unsigned alloced
= 10;
9027 tree
*arg_ary
= fixed_args
;
9029 bool saved_in_template_argument_list_p
;
9031 bool saved_non_ice_p
;
9033 saved_in_template_argument_list_p
= parser
->in_template_argument_list_p
;
9034 parser
->in_template_argument_list_p
= true;
9035 /* Even if the template-id appears in an integral
9036 constant-expression, the contents of the argument list do
9038 saved_ice_p
= parser
->integral_constant_expression_p
;
9039 parser
->integral_constant_expression_p
= false;
9040 saved_non_ice_p
= parser
->non_integral_constant_expression_p
;
9041 parser
->non_integral_constant_expression_p
= false;
9042 /* Parse the arguments. */
9048 /* Consume the comma. */
9049 cp_lexer_consume_token (parser
->lexer
);
9051 /* Parse the template-argument. */
9052 argument
= cp_parser_template_argument (parser
);
9053 if (n_args
== alloced
)
9057 if (arg_ary
== fixed_args
)
9059 arg_ary
= XNEWVEC (tree
, alloced
);
9060 memcpy (arg_ary
, fixed_args
, sizeof (tree
) * n_args
);
9063 arg_ary
= XRESIZEVEC (tree
, arg_ary
, alloced
);
9065 arg_ary
[n_args
++] = argument
;
9067 while (cp_lexer_next_token_is (parser
->lexer
, CPP_COMMA
));
9069 vec
= make_tree_vec (n_args
);
9072 TREE_VEC_ELT (vec
, n_args
) = arg_ary
[n_args
];
9074 if (arg_ary
!= fixed_args
)
9076 parser
->non_integral_constant_expression_p
= saved_non_ice_p
;
9077 parser
->integral_constant_expression_p
= saved_ice_p
;
9078 parser
->in_template_argument_list_p
= saved_in_template_argument_list_p
;
9082 /* Parse a template-argument.
9085 assignment-expression
9089 The representation is that of an assignment-expression, type-id, or
9090 id-expression -- except that the qualified id-expression is
9091 evaluated, so that the value returned is either a DECL or an
9094 Although the standard says "assignment-expression", it forbids
9095 throw-expressions or assignments in the template argument.
9096 Therefore, we use "conditional-expression" instead. */
9099 cp_parser_template_argument (cp_parser
* parser
)
9104 bool maybe_type_id
= false;
9108 /* There's really no way to know what we're looking at, so we just
9109 try each alternative in order.
9113 In a template-argument, an ambiguity between a type-id and an
9114 expression is resolved to a type-id, regardless of the form of
9115 the corresponding template-parameter.
9117 Therefore, we try a type-id first. */
9118 cp_parser_parse_tentatively (parser
);
9119 argument
= cp_parser_type_id (parser
);
9120 /* If there was no error parsing the type-id but the next token is a '>>',
9121 we probably found a typo for '> >'. But there are type-id which are
9122 also valid expressions. For instance:
9124 struct X { int operator >> (int); };
9125 template <int V> struct Foo {};
9128 Here 'X()' is a valid type-id of a function type, but the user just
9129 wanted to write the expression "X() >> 5". Thus, we remember that we
9130 found a valid type-id, but we still try to parse the argument as an
9131 expression to see what happens. */
9132 if (!cp_parser_error_occurred (parser
)
9133 && cp_lexer_next_token_is (parser
->lexer
, CPP_RSHIFT
))
9135 maybe_type_id
= true;
9136 cp_parser_abort_tentative_parse (parser
);
9140 /* If the next token isn't a `,' or a `>', then this argument wasn't
9141 really finished. This means that the argument is not a valid
9143 if (!cp_parser_next_token_ends_template_argument_p (parser
))
9144 cp_parser_error (parser
, "expected template-argument");
9145 /* If that worked, we're done. */
9146 if (cp_parser_parse_definitely (parser
))
9149 /* We're still not sure what the argument will be. */
9150 cp_parser_parse_tentatively (parser
);
9151 /* Try a template. */
9152 argument
= cp_parser_id_expression (parser
,
9153 /*template_keyword_p=*/false,
9154 /*check_dependency_p=*/true,
9156 /*declarator_p=*/false,
9157 /*optional_p=*/false);
9158 /* If the next token isn't a `,' or a `>', then this argument wasn't
9160 if (!cp_parser_next_token_ends_template_argument_p (parser
))
9161 cp_parser_error (parser
, "expected template-argument");
9162 if (!cp_parser_error_occurred (parser
))
9164 /* Figure out what is being referred to. If the id-expression
9165 was for a class template specialization, then we will have a
9166 TYPE_DECL at this point. There is no need to do name lookup
9167 at this point in that case. */
9168 if (TREE_CODE (argument
) != TYPE_DECL
)
9169 argument
= cp_parser_lookup_name (parser
, argument
,
9171 /*is_template=*/template_p
,
9172 /*is_namespace=*/false,
9173 /*check_dependency=*/true,
9174 /*ambiguous_decls=*/NULL
);
9175 if (TREE_CODE (argument
) != TEMPLATE_DECL
9176 && TREE_CODE (argument
) != UNBOUND_CLASS_TEMPLATE
)
9177 cp_parser_error (parser
, "expected template-name");
9179 if (cp_parser_parse_definitely (parser
))
9181 /* It must be a non-type argument. There permitted cases are given
9182 in [temp.arg.nontype]:
9184 -- an integral constant-expression of integral or enumeration
9187 -- the name of a non-type template-parameter; or
9189 -- the name of an object or function with external linkage...
9191 -- the address of an object or function with external linkage...
9193 -- a pointer to member... */
9194 /* Look for a non-type template parameter. */
9195 if (cp_lexer_next_token_is (parser
->lexer
, CPP_NAME
))
9197 cp_parser_parse_tentatively (parser
);
9198 argument
= cp_parser_primary_expression (parser
,
9201 /*template_arg_p=*/true,
9203 if (TREE_CODE (argument
) != TEMPLATE_PARM_INDEX
9204 || !cp_parser_next_token_ends_template_argument_p (parser
))
9205 cp_parser_simulate_error (parser
);
9206 if (cp_parser_parse_definitely (parser
))
9210 /* If the next token is "&", the argument must be the address of an
9211 object or function with external linkage. */
9212 address_p
= cp_lexer_next_token_is (parser
->lexer
, CPP_AND
);
9214 cp_lexer_consume_token (parser
->lexer
);
9215 /* See if we might have an id-expression. */
9216 token
= cp_lexer_peek_token (parser
->lexer
);
9217 if (token
->type
== CPP_NAME
9218 || token
->keyword
== RID_OPERATOR
9219 || token
->type
== CPP_SCOPE
9220 || token
->type
== CPP_TEMPLATE_ID
9221 || token
->type
== CPP_NESTED_NAME_SPECIFIER
)
9223 cp_parser_parse_tentatively (parser
);
9224 argument
= cp_parser_primary_expression (parser
,
9227 /*template_arg_p=*/true,
9229 if (cp_parser_error_occurred (parser
)
9230 || !cp_parser_next_token_ends_template_argument_p (parser
))
9231 cp_parser_abort_tentative_parse (parser
);
9234 if (TREE_CODE (argument
) == INDIRECT_REF
)
9236 gcc_assert (REFERENCE_REF_P (argument
));
9237 argument
= TREE_OPERAND (argument
, 0);
9240 if (TREE_CODE (argument
) == VAR_DECL
)
9242 /* A variable without external linkage might still be a
9243 valid constant-expression, so no error is issued here
9244 if the external-linkage check fails. */
9245 if (!DECL_EXTERNAL_LINKAGE_P (argument
))
9246 cp_parser_simulate_error (parser
);
9248 else if (is_overloaded_fn (argument
))
9249 /* All overloaded functions are allowed; if the external
9250 linkage test does not pass, an error will be issued
9254 && (TREE_CODE (argument
) == OFFSET_REF
9255 || TREE_CODE (argument
) == SCOPE_REF
))
9256 /* A pointer-to-member. */
9258 else if (TREE_CODE (argument
) == TEMPLATE_PARM_INDEX
)
9261 cp_parser_simulate_error (parser
);
9263 if (cp_parser_parse_definitely (parser
))
9266 argument
= build_x_unary_op (ADDR_EXPR
, argument
);
9271 /* If the argument started with "&", there are no other valid
9272 alternatives at this point. */
9275 cp_parser_error (parser
, "invalid non-type template argument");
9276 return error_mark_node
;
9279 /* If the argument wasn't successfully parsed as a type-id followed
9280 by '>>', the argument can only be a constant expression now.
9281 Otherwise, we try parsing the constant-expression tentatively,
9282 because the argument could really be a type-id. */
9284 cp_parser_parse_tentatively (parser
);
9285 argument
= cp_parser_constant_expression (parser
,
9286 /*allow_non_constant_p=*/false,
9287 /*non_constant_p=*/NULL
);
9288 argument
= fold_non_dependent_expr (argument
);
9291 if (!cp_parser_next_token_ends_template_argument_p (parser
))
9292 cp_parser_error (parser
, "expected template-argument");
9293 if (cp_parser_parse_definitely (parser
))
9295 /* We did our best to parse the argument as a non type-id, but that
9296 was the only alternative that matched (albeit with a '>' after
9297 it). We can assume it's just a typo from the user, and a
9298 diagnostic will then be issued. */
9299 return cp_parser_type_id (parser
);
9302 /* Parse an explicit-instantiation.
9304 explicit-instantiation:
9305 template declaration
9307 Although the standard says `declaration', what it really means is:
9309 explicit-instantiation:
9310 template decl-specifier-seq [opt] declarator [opt] ;
9312 Things like `template int S<int>::i = 5, int S<double>::j;' are not
9313 supposed to be allowed. A defect report has been filed about this
9318 explicit-instantiation:
9319 storage-class-specifier template
9320 decl-specifier-seq [opt] declarator [opt] ;
9321 function-specifier template
9322 decl-specifier-seq [opt] declarator [opt] ; */
9325 cp_parser_explicit_instantiation (cp_parser
* parser
)
9327 int declares_class_or_enum
;
9328 cp_decl_specifier_seq decl_specifiers
;
9329 tree extension_specifier
= NULL_TREE
;
9331 /* Look for an (optional) storage-class-specifier or
9332 function-specifier. */
9333 if (cp_parser_allow_gnu_extensions_p (parser
))
9336 = cp_parser_storage_class_specifier_opt (parser
);
9337 if (!extension_specifier
)
9339 = cp_parser_function_specifier_opt (parser
,
9340 /*decl_specs=*/NULL
);
9343 /* Look for the `template' keyword. */
9344 cp_parser_require_keyword (parser
, RID_TEMPLATE
, "`template'");
9345 /* Let the front end know that we are processing an explicit
9347 begin_explicit_instantiation ();
9348 /* [temp.explicit] says that we are supposed to ignore access
9349 control while processing explicit instantiation directives. */
9350 push_deferring_access_checks (dk_no_check
);
9351 /* Parse a decl-specifier-seq. */
9352 cp_parser_decl_specifier_seq (parser
,
9353 CP_PARSER_FLAGS_OPTIONAL
,
9355 &declares_class_or_enum
);
9356 /* If there was exactly one decl-specifier, and it declared a class,
9357 and there's no declarator, then we have an explicit type
9359 if (declares_class_or_enum
&& cp_parser_declares_only_class_p (parser
))
9363 type
= check_tag_decl (&decl_specifiers
);
9364 /* Turn access control back on for names used during
9365 template instantiation. */
9366 pop_deferring_access_checks ();
9368 do_type_instantiation (type
, extension_specifier
,
9369 /*complain=*/tf_error
);
9373 cp_declarator
*declarator
;
9376 /* Parse the declarator. */
9378 = cp_parser_declarator (parser
, CP_PARSER_DECLARATOR_NAMED
,
9379 /*ctor_dtor_or_conv_p=*/NULL
,
9380 /*parenthesized_p=*/NULL
,
9381 /*member_p=*/false);
9382 if (declares_class_or_enum
& 2)
9383 cp_parser_check_for_definition_in_return_type (declarator
,
9384 decl_specifiers
.type
);
9385 if (declarator
!= cp_error_declarator
)
9387 decl
= grokdeclarator (declarator
, &decl_specifiers
,
9388 NORMAL
, 0, &decl_specifiers
.attributes
);
9389 /* Turn access control back on for names used during
9390 template instantiation. */
9391 pop_deferring_access_checks ();
9392 /* Do the explicit instantiation. */
9393 do_decl_instantiation (decl
, extension_specifier
);
9397 pop_deferring_access_checks ();
9398 /* Skip the body of the explicit instantiation. */
9399 cp_parser_skip_to_end_of_statement (parser
);
9402 /* We're done with the instantiation. */
9403 end_explicit_instantiation ();
9405 cp_parser_consume_semicolon_at_end_of_statement (parser
);
9408 /* Parse an explicit-specialization.
9410 explicit-specialization:
9411 template < > declaration
9413 Although the standard says `declaration', what it really means is:
9415 explicit-specialization:
9416 template <> decl-specifier [opt] init-declarator [opt] ;
9417 template <> function-definition
9418 template <> explicit-specialization
9419 template <> template-declaration */
9422 cp_parser_explicit_specialization (cp_parser
* parser
)
9425 /* Look for the `template' keyword. */
9426 cp_parser_require_keyword (parser
, RID_TEMPLATE
, "`template'");
9427 /* Look for the `<'. */
9428 cp_parser_require (parser
, CPP_LESS
, "`<'");
9429 /* Look for the `>'. */
9430 cp_parser_require (parser
, CPP_GREATER
, "`>'");
9431 /* We have processed another parameter list. */
9432 ++parser
->num_template_parameter_lists
;
9435 A template ... explicit specialization ... shall not have C
9437 if (current_lang_name
== lang_name_c
)
9439 error ("template specialization with C linkage");
9440 /* Give it C++ linkage to avoid confusing other parts of the
9442 push_lang_context (lang_name_cplusplus
);
9443 need_lang_pop
= true;
9446 need_lang_pop
= false;
9447 /* Let the front end know that we are beginning a specialization. */
9448 begin_specialization ();
9449 /* If the next keyword is `template', we need to figure out whether
9450 or not we're looking a template-declaration. */
9451 if (cp_lexer_next_token_is_keyword (parser
->lexer
, RID_TEMPLATE
))
9453 if (cp_lexer_peek_nth_token (parser
->lexer
, 2)->type
== CPP_LESS
9454 && cp_lexer_peek_nth_token (parser
->lexer
, 3)->type
!= CPP_GREATER
)
9455 cp_parser_template_declaration_after_export (parser
,
9456 /*member_p=*/false);
9458 cp_parser_explicit_specialization (parser
);
9461 /* Parse the dependent declaration. */
9462 cp_parser_single_declaration (parser
,
9463 /*checks=*/NULL_TREE
,
9466 /* We're done with the specialization. */
9467 end_specialization ();
9468 /* For the erroneous case of a template with C linkage, we pushed an
9469 implicit C++ linkage scope; exit that scope now. */
9471 pop_lang_context ();
9472 /* We're done with this parameter list. */
9473 --parser
->num_template_parameter_lists
;
9476 /* Parse a type-specifier.
9479 simple-type-specifier
9482 elaborated-type-specifier
9490 Returns a representation of the type-specifier. For a
9491 class-specifier, enum-specifier, or elaborated-type-specifier, a
9492 TREE_TYPE is returned; otherwise, a TYPE_DECL is returned.
9494 The parser flags FLAGS is used to control type-specifier parsing.
9496 If IS_DECLARATION is TRUE, then this type-specifier is appearing
9497 in a decl-specifier-seq.
9499 If DECLARES_CLASS_OR_ENUM is non-NULL, and the type-specifier is a
9500 class-specifier, enum-specifier, or elaborated-type-specifier, then
9501 *DECLARES_CLASS_OR_ENUM is set to a nonzero value. The value is 1
9502 if a type is declared; 2 if it is defined. Otherwise, it is set to
9505 If IS_CV_QUALIFIER is non-NULL, and the type-specifier is a
9506 cv-qualifier, then IS_CV_QUALIFIER is set to TRUE. Otherwise, it
9510 cp_parser_type_specifier (cp_parser
* parser
,
9511 cp_parser_flags flags
,
9512 cp_decl_specifier_seq
*decl_specs
,
9513 bool is_declaration
,
9514 int* declares_class_or_enum
,
9515 bool* is_cv_qualifier
)
9517 tree type_spec
= NULL_TREE
;
9520 cp_decl_spec ds
= ds_last
;
9522 /* Assume this type-specifier does not declare a new type. */
9523 if (declares_class_or_enum
)
9524 *declares_class_or_enum
= 0;
9525 /* And that it does not specify a cv-qualifier. */
9526 if (is_cv_qualifier
)
9527 *is_cv_qualifier
= false;
9528 /* Peek at the next token. */
9529 token
= cp_lexer_peek_token (parser
->lexer
);
9531 /* If we're looking at a keyword, we can use that to guide the
9532 production we choose. */
9533 keyword
= token
->keyword
;
9537 /* Look for the enum-specifier. */
9538 type_spec
= cp_parser_enum_specifier (parser
);
9539 /* If that worked, we're done. */
9542 if (declares_class_or_enum
)
9543 *declares_class_or_enum
= 2;
9545 cp_parser_set_decl_spec_type (decl_specs
,
9547 /*user_defined_p=*/true);
9551 goto elaborated_type_specifier
;
9553 /* Any of these indicate either a class-specifier, or an
9554 elaborated-type-specifier. */
9558 /* Parse tentatively so that we can back up if we don't find a
9560 cp_parser_parse_tentatively (parser
);
9561 /* Look for the class-specifier. */
9562 type_spec
= cp_parser_class_specifier (parser
);
9563 /* If that worked, we're done. */
9564 if (cp_parser_parse_definitely (parser
))
9566 if (declares_class_or_enum
)
9567 *declares_class_or_enum
= 2;
9569 cp_parser_set_decl_spec_type (decl_specs
,
9571 /*user_defined_p=*/true);
9576 elaborated_type_specifier
:
9577 /* We're declaring (not defining) a class or enum. */
9578 if (declares_class_or_enum
)
9579 *declares_class_or_enum
= 1;
9583 /* Look for an elaborated-type-specifier. */
9585 = (cp_parser_elaborated_type_specifier
9587 decl_specs
&& decl_specs
->specs
[(int) ds_friend
],
9590 cp_parser_set_decl_spec_type (decl_specs
,
9592 /*user_defined_p=*/true);
9597 if (is_cv_qualifier
)
9598 *is_cv_qualifier
= true;
9603 if (is_cv_qualifier
)
9604 *is_cv_qualifier
= true;
9609 if (is_cv_qualifier
)
9610 *is_cv_qualifier
= true;
9614 /* The `__complex__' keyword is a GNU extension. */
9622 /* Handle simple keywords. */
9627 ++decl_specs
->specs
[(int)ds
];
9628 decl_specs
->any_specifiers_p
= true;
9630 return cp_lexer_consume_token (parser
->lexer
)->value
;
9633 /* If we do not already have a type-specifier, assume we are looking
9634 at a simple-type-specifier. */
9635 type_spec
= cp_parser_simple_type_specifier (parser
,
9639 /* If we didn't find a type-specifier, and a type-specifier was not
9640 optional in this context, issue an error message. */
9641 if (!type_spec
&& !(flags
& CP_PARSER_FLAGS_OPTIONAL
))
9643 cp_parser_error (parser
, "expected type specifier");
9644 return error_mark_node
;
9650 /* Parse a simple-type-specifier.
9652 simple-type-specifier:
9653 :: [opt] nested-name-specifier [opt] type-name
9654 :: [opt] nested-name-specifier template template-id
9669 simple-type-specifier:
9670 __typeof__ unary-expression
9671 __typeof__ ( type-id )
9673 Returns the indicated TYPE_DECL. If DECL_SPECS is not NULL, it is
9674 appropriately updated. */
9677 cp_parser_simple_type_specifier (cp_parser
* parser
,
9678 cp_decl_specifier_seq
*decl_specs
,
9679 cp_parser_flags flags
)
9681 tree type
= NULL_TREE
;
9684 /* Peek at the next token. */
9685 token
= cp_lexer_peek_token (parser
->lexer
);
9687 /* If we're looking at a keyword, things are easy. */
9688 switch (token
->keyword
)
9692 decl_specs
->explicit_char_p
= true;
9693 type
= char_type_node
;
9696 type
= wchar_type_node
;
9699 type
= boolean_type_node
;
9703 ++decl_specs
->specs
[(int) ds_short
];
9704 type
= short_integer_type_node
;
9708 decl_specs
->explicit_int_p
= true;
9709 type
= integer_type_node
;
9713 ++decl_specs
->specs
[(int) ds_long
];
9714 type
= long_integer_type_node
;
9718 ++decl_specs
->specs
[(int) ds_signed
];
9719 type
= integer_type_node
;
9723 ++decl_specs
->specs
[(int) ds_unsigned
];
9724 type
= unsigned_type_node
;
9727 type
= float_type_node
;
9730 type
= double_type_node
;
9733 type
= void_type_node
;
9737 /* Consume the `typeof' token. */
9738 cp_lexer_consume_token (parser
->lexer
);
9739 /* Parse the operand to `typeof'. */
9740 type
= cp_parser_sizeof_operand (parser
, RID_TYPEOF
);
9741 /* If it is not already a TYPE, take its type. */
9743 type
= finish_typeof (type
);
9746 cp_parser_set_decl_spec_type (decl_specs
, type
,
9747 /*user_defined_p=*/true);
9755 /* If the type-specifier was for a built-in type, we're done. */
9760 /* Record the type. */
9762 && (token
->keyword
!= RID_SIGNED
9763 && token
->keyword
!= RID_UNSIGNED
9764 && token
->keyword
!= RID_SHORT
9765 && token
->keyword
!= RID_LONG
))
9766 cp_parser_set_decl_spec_type (decl_specs
,
9768 /*user_defined=*/false);
9770 decl_specs
->any_specifiers_p
= true;
9772 /* Consume the token. */
9773 id
= cp_lexer_consume_token (parser
->lexer
)->value
;
9775 /* There is no valid C++ program where a non-template type is
9776 followed by a "<". That usually indicates that the user thought
9777 that the type was a template. */
9778 cp_parser_check_for_invalid_template_id (parser
, type
);
9780 return TYPE_NAME (type
);
9783 /* The type-specifier must be a user-defined type. */
9784 if (!(flags
& CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES
))
9789 /* Don't gobble tokens or issue error messages if this is an
9790 optional type-specifier. */
9791 if (flags
& CP_PARSER_FLAGS_OPTIONAL
)
9792 cp_parser_parse_tentatively (parser
);
9794 /* Look for the optional `::' operator. */
9796 = (cp_parser_global_scope_opt (parser
,
9797 /*current_scope_valid_p=*/false)
9799 /* Look for the nested-name specifier. */
9801 = (cp_parser_nested_name_specifier_opt (parser
,
9802 /*typename_keyword_p=*/false,
9803 /*check_dependency_p=*/true,
9805 /*is_declaration=*/false)
9807 /* If we have seen a nested-name-specifier, and the next token
9808 is `template', then we are using the template-id production. */
9810 && cp_parser_optional_template_keyword (parser
))
9812 /* Look for the template-id. */
9813 type
= cp_parser_template_id (parser
,
9814 /*template_keyword_p=*/true,
9815 /*check_dependency_p=*/true,
9816 /*is_declaration=*/false);
9817 /* If the template-id did not name a type, we are out of
9819 if (TREE_CODE (type
) != TYPE_DECL
)
9821 cp_parser_error (parser
, "expected template-id for type");
9825 /* Otherwise, look for a type-name. */
9827 type
= cp_parser_type_name (parser
);
9828 /* Keep track of all name-lookups performed in class scopes. */
9832 && TREE_CODE (type
) == TYPE_DECL
9833 && TREE_CODE (DECL_NAME (type
)) == IDENTIFIER_NODE
)
9834 maybe_note_name_used_in_class (DECL_NAME (type
), type
);
9835 /* If it didn't work out, we don't have a TYPE. */
9836 if ((flags
& CP_PARSER_FLAGS_OPTIONAL
)
9837 && !cp_parser_parse_definitely (parser
))
9839 if (type
&& decl_specs
)
9840 cp_parser_set_decl_spec_type (decl_specs
, type
,
9841 /*user_defined=*/true);
9844 /* If we didn't get a type-name, issue an error message. */
9845 if (!type
&& !(flags
& CP_PARSER_FLAGS_OPTIONAL
))
9847 cp_parser_error (parser
, "expected type-name");
9848 return error_mark_node
;
9851 /* There is no valid C++ program where a non-template type is
9852 followed by a "<". That usually indicates that the user thought
9853 that the type was a template. */
9854 if (type
&& type
!= error_mark_node
)
9856 /* As a last-ditch effort, see if TYPE is an Objective-C type.
9857 If it is, then the '<'...'>' enclose protocol names rather than
9858 template arguments, and so everything is fine. */
9859 if (c_dialect_objc ()
9860 && (objc_is_id (type
) || objc_is_class_name (type
)))
9862 tree protos
= cp_parser_objc_protocol_refs_opt (parser
);
9863 tree qual_type
= objc_get_protocol_qualified_type (type
, protos
);
9865 /* Clobber the "unqualified" type previously entered into
9866 DECL_SPECS with the new, improved protocol-qualified version. */
9868 decl_specs
->type
= qual_type
;
9873 cp_parser_check_for_invalid_template_id (parser
, TREE_TYPE (type
));
9879 /* Parse a type-name.
9892 Returns a TYPE_DECL for the type. */
9895 cp_parser_type_name (cp_parser
* parser
)
9900 /* We can't know yet whether it is a class-name or not. */
9901 cp_parser_parse_tentatively (parser
);
9902 /* Try a class-name. */
9903 type_decl
= cp_parser_class_name (parser
,
9904 /*typename_keyword_p=*/false,
9905 /*template_keyword_p=*/false,
9907 /*check_dependency_p=*/true,
9908 /*class_head_p=*/false,
9909 /*is_declaration=*/false);
9910 /* If it's not a class-name, keep looking. */
9911 if (!cp_parser_parse_definitely (parser
))
9913 /* It must be a typedef-name or an enum-name. */
9914 identifier
= cp_parser_identifier (parser
);
9915 if (identifier
== error_mark_node
)
9916 return error_mark_node
;
9918 /* Look up the type-name. */
9919 type_decl
= cp_parser_lookup_name_simple (parser
, identifier
);
9921 if (TREE_CODE (type_decl
) != TYPE_DECL
9922 && (objc_is_id (identifier
) || objc_is_class_name (identifier
)))
9924 /* See if this is an Objective-C type. */
9925 tree protos
= cp_parser_objc_protocol_refs_opt (parser
);
9926 tree type
= objc_get_protocol_qualified_type (identifier
, protos
);
9928 type_decl
= TYPE_NAME (type
);
9931 /* Issue an error if we did not find a type-name. */
9932 if (TREE_CODE (type_decl
) != TYPE_DECL
)
9934 if (!cp_parser_simulate_error (parser
))
9935 cp_parser_name_lookup_error (parser
, identifier
, type_decl
,
9937 type_decl
= error_mark_node
;
9939 /* Remember that the name was used in the definition of the
9940 current class so that we can check later to see if the
9941 meaning would have been different after the class was
9942 entirely defined. */
9943 else if (type_decl
!= error_mark_node
9945 maybe_note_name_used_in_class (identifier
, type_decl
);
9952 /* Parse an elaborated-type-specifier. Note that the grammar given
9953 here incorporates the resolution to DR68.
9955 elaborated-type-specifier:
9956 class-key :: [opt] nested-name-specifier [opt] identifier
9957 class-key :: [opt] nested-name-specifier [opt] template [opt] template-id
9958 enum :: [opt] nested-name-specifier [opt] identifier
9959 typename :: [opt] nested-name-specifier identifier
9960 typename :: [opt] nested-name-specifier template [opt]
9965 elaborated-type-specifier:
9966 class-key attributes :: [opt] nested-name-specifier [opt] identifier
9967 class-key attributes :: [opt] nested-name-specifier [opt]
9968 template [opt] template-id
9969 enum attributes :: [opt] nested-name-specifier [opt] identifier
9971 If IS_FRIEND is TRUE, then this elaborated-type-specifier is being
9972 declared `friend'. If IS_DECLARATION is TRUE, then this
9973 elaborated-type-specifier appears in a decl-specifiers-seq, i.e.,
9974 something is being declared.
9976 Returns the TYPE specified. */
9979 cp_parser_elaborated_type_specifier (cp_parser
* parser
,
9981 bool is_declaration
)
9983 enum tag_types tag_type
;
9985 tree type
= NULL_TREE
;
9986 tree attributes
= NULL_TREE
;
9988 /* See if we're looking at the `enum' keyword. */
9989 if (cp_lexer_next_token_is_keyword (parser
->lexer
, RID_ENUM
))
9991 /* Consume the `enum' token. */
9992 cp_lexer_consume_token (parser
->lexer
);
9993 /* Remember that it's an enumeration type. */
9994 tag_type
= enum_type
;
9995 /* Parse the attributes. */
9996 attributes
= cp_parser_attributes_opt (parser
);
9998 /* Or, it might be `typename'. */
9999 else if (cp_lexer_next_token_is_keyword (parser
->lexer
,
10002 /* Consume the `typename' token. */
10003 cp_lexer_consume_token (parser
->lexer
);
10004 /* Remember that it's a `typename' type. */
10005 tag_type
= typename_type
;
10006 /* The `typename' keyword is only allowed in templates. */
10007 if (!processing_template_decl
)
10008 pedwarn ("using %<typename%> outside of template");
10010 /* Otherwise it must be a class-key. */
10013 tag_type
= cp_parser_class_key (parser
);
10014 if (tag_type
== none_type
)
10015 return error_mark_node
;
10016 /* Parse the attributes. */
10017 attributes
= cp_parser_attributes_opt (parser
);
10020 /* Look for the `::' operator. */
10021 cp_parser_global_scope_opt (parser
,
10022 /*current_scope_valid_p=*/false);
10023 /* Look for the nested-name-specifier. */
10024 if (tag_type
== typename_type
)
10026 if (!cp_parser_nested_name_specifier (parser
,
10027 /*typename_keyword_p=*/true,
10028 /*check_dependency_p=*/true,
10031 return error_mark_node
;
10034 /* Even though `typename' is not present, the proposed resolution
10035 to Core Issue 180 says that in `class A<T>::B', `B' should be
10036 considered a type-name, even if `A<T>' is dependent. */
10037 cp_parser_nested_name_specifier_opt (parser
,
10038 /*typename_keyword_p=*/true,
10039 /*check_dependency_p=*/true,
10042 /* For everything but enumeration types, consider a template-id. */
10043 /* For an enumeration type, consider only a plain identifier. */
10044 if (tag_type
!= enum_type
)
10046 bool template_p
= false;
10049 /* Allow the `template' keyword. */
10050 template_p
= cp_parser_optional_template_keyword (parser
);
10051 /* If we didn't see `template', we don't know if there's a
10052 template-id or not. */
10054 cp_parser_parse_tentatively (parser
);
10055 /* Parse the template-id. */
10056 decl
= cp_parser_template_id (parser
, template_p
,
10057 /*check_dependency_p=*/true,
10059 /* If we didn't find a template-id, look for an ordinary
10061 if (!template_p
&& !cp_parser_parse_definitely (parser
))
10063 /* If DECL is a TEMPLATE_ID_EXPR, and the `typename' keyword is
10064 in effect, then we must assume that, upon instantiation, the
10065 template will correspond to a class. */
10066 else if (TREE_CODE (decl
) == TEMPLATE_ID_EXPR
10067 && tag_type
== typename_type
)
10068 type
= make_typename_type (parser
->scope
, decl
,
10070 /*complain=*/tf_error
);
10072 type
= TREE_TYPE (decl
);
10077 identifier
= cp_parser_identifier (parser
);
10079 if (identifier
== error_mark_node
)
10081 parser
->scope
= NULL_TREE
;
10082 return error_mark_node
;
10085 /* For a `typename', we needn't call xref_tag. */
10086 if (tag_type
== typename_type
10087 && TREE_CODE (parser
->scope
) != NAMESPACE_DECL
)
10088 return cp_parser_make_typename_type (parser
, parser
->scope
,
10090 /* Look up a qualified name in the usual way. */
10095 decl
= cp_parser_lookup_name (parser
, identifier
,
10097 /*is_template=*/false,
10098 /*is_namespace=*/false,
10099 /*check_dependency=*/true,
10100 /*ambiguous_decls=*/NULL
);
10102 /* If we are parsing friend declaration, DECL may be a
10103 TEMPLATE_DECL tree node here. However, we need to check
10104 whether this TEMPLATE_DECL results in valid code. Consider
10105 the following example:
10108 template <class T> class C {};
10111 template <class T> friend class N::C; // #1, valid code
10113 template <class T> class Y {
10114 friend class N::C; // #2, invalid code
10117 For both case #1 and #2, we arrive at a TEMPLATE_DECL after
10118 name lookup of `N::C'. We see that friend declaration must
10119 be template for the code to be valid. Note that
10120 processing_template_decl does not work here since it is
10121 always 1 for the above two cases. */
10123 decl
= (cp_parser_maybe_treat_template_as_class
10124 (decl
, /*tag_name_p=*/is_friend
10125 && parser
->num_template_parameter_lists
));
10127 if (TREE_CODE (decl
) != TYPE_DECL
)
10129 cp_parser_diagnose_invalid_type_name (parser
,
10132 return error_mark_node
;
10135 if (TREE_CODE (TREE_TYPE (decl
)) != TYPENAME_TYPE
)
10136 check_elaborated_type_specifier
10138 (parser
->num_template_parameter_lists
10139 || DECL_SELF_REFERENCE_P (decl
)));
10141 type
= TREE_TYPE (decl
);
10145 /* An elaborated-type-specifier sometimes introduces a new type and
10146 sometimes names an existing type. Normally, the rule is that it
10147 introduces a new type only if there is not an existing type of
10148 the same name already in scope. For example, given:
10151 void f() { struct S s; }
10153 the `struct S' in the body of `f' is the same `struct S' as in
10154 the global scope; the existing definition is used. However, if
10155 there were no global declaration, this would introduce a new
10156 local class named `S'.
10158 An exception to this rule applies to the following code:
10160 namespace N { struct S; }
10162 Here, the elaborated-type-specifier names a new type
10163 unconditionally; even if there is already an `S' in the
10164 containing scope this declaration names a new type.
10165 This exception only applies if the elaborated-type-specifier
10166 forms the complete declaration:
10170 A declaration consisting solely of `class-key identifier ;' is
10171 either a redeclaration of the name in the current scope or a
10172 forward declaration of the identifier as a class name. It
10173 introduces the name into the current scope.
10175 We are in this situation precisely when the next token is a `;'.
10177 An exception to the exception is that a `friend' declaration does
10178 *not* name a new type; i.e., given:
10180 struct S { friend struct T; };
10182 `T' is not a new type in the scope of `S'.
10184 Also, `new struct S' or `sizeof (struct S)' never results in the
10185 definition of a new type; a new type can only be declared in a
10186 declaration context. */
10192 /* Friends have special name lookup rules. */
10193 ts
= ts_within_enclosing_non_class
;
10194 else if (is_declaration
10195 && cp_lexer_next_token_is (parser
->lexer
,
10197 /* This is a `class-key identifier ;' */
10203 (parser
->num_template_parameter_lists
10204 && (cp_parser_next_token_starts_class_definition_p (parser
)
10205 || cp_lexer_next_token_is (parser
->lexer
, CPP_SEMICOLON
)));
10206 /* An unqualified name was used to reference this type, so
10207 there were no qualifying templates. */
10208 if (!cp_parser_check_template_parameters (parser
,
10209 /*num_templates=*/0))
10210 return error_mark_node
;
10211 type
= xref_tag (tag_type
, identifier
, ts
, template_p
);
10215 if (type
== error_mark_node
)
10216 return error_mark_node
;
10218 /* Allow attributes on forward declarations of classes. */
10221 if (TREE_CODE (type
) == TYPENAME_TYPE
)
10222 warning (OPT_Wattributes
,
10223 "attributes ignored on uninstantiated type");
10224 else if (tag_type
!= enum_type
&& CLASSTYPE_TEMPLATE_INSTANTIATION (type
)
10225 && ! processing_explicit_instantiation
)
10226 warning (OPT_Wattributes
,
10227 "attributes ignored on template instantiation");
10228 else if (is_declaration
&& cp_parser_declares_only_class_p (parser
))
10229 cplus_decl_attributes (&type
, attributes
, (int) ATTR_FLAG_TYPE_IN_PLACE
);
10231 warning (OPT_Wattributes
,
10232 "attributes ignored on elaborated-type-specifier that is not a forward declaration");
10235 if (tag_type
!= enum_type
)
10236 cp_parser_check_class_key (tag_type
, type
);
10238 /* A "<" cannot follow an elaborated type specifier. If that
10239 happens, the user was probably trying to form a template-id. */
10240 cp_parser_check_for_invalid_template_id (parser
, type
);
10245 /* Parse an enum-specifier.
10248 enum identifier [opt] { enumerator-list [opt] }
10251 enum attributes[opt] identifier [opt] { enumerator-list [opt] }
10254 Returns an ENUM_TYPE representing the enumeration, or NULL_TREE
10255 if the token stream isn't an enum-specifier after all. */
10258 cp_parser_enum_specifier (cp_parser
* parser
)
10264 /* Parse tentatively so that we can back up if we don't find a
10266 cp_parser_parse_tentatively (parser
);
10268 /* Caller guarantees that the current token is 'enum', an identifier
10269 possibly follows, and the token after that is an opening brace.
10270 If we don't have an identifier, fabricate an anonymous name for
10271 the enumeration being defined. */
10272 cp_lexer_consume_token (parser
->lexer
);
10274 attributes
= cp_parser_attributes_opt (parser
);
10276 if (cp_lexer_next_token_is (parser
->lexer
, CPP_NAME
))
10277 identifier
= cp_parser_identifier (parser
);
10279 identifier
= make_anon_name ();
10281 /* Look for the `{' but don't consume it yet. */
10282 if (!cp_lexer_next_token_is (parser
->lexer
, CPP_OPEN_BRACE
))
10283 cp_parser_simulate_error (parser
);
10285 if (!cp_parser_parse_definitely (parser
))
10288 /* Issue an error message if type-definitions are forbidden here. */
10289 cp_parser_check_type_definition (parser
);
10291 /* Create the new type. We do this before consuming the opening brace
10292 so the enum will be recorded as being on the line of its tag (or the
10293 'enum' keyword, if there is no tag). */
10294 type
= start_enum (identifier
);
10296 /* Consume the opening brace. */
10297 cp_lexer_consume_token (parser
->lexer
);
10299 if (type
== error_mark_node
)
10301 cp_parser_skip_to_end_of_block_or_statement (parser
);
10302 return error_mark_node
;
10305 /* If the next token is not '}', then there are some enumerators. */
10306 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_CLOSE_BRACE
))
10307 cp_parser_enumerator_list (parser
, type
);
10309 /* Consume the final '}'. */
10310 cp_parser_require (parser
, CPP_CLOSE_BRACE
, "`}'");
10312 /* Look for trailing attributes to apply to this enumeration, and
10313 apply them if appropriate. */
10314 if (cp_parser_allow_gnu_extensions_p (parser
))
10316 tree trailing_attr
= cp_parser_attributes_opt (parser
);
10317 cplus_decl_attributes (&type
,
10319 (int) ATTR_FLAG_TYPE_IN_PLACE
);
10322 /* Finish up the enumeration. */
10323 finish_enum (type
);
10328 /* Parse an enumerator-list. The enumerators all have the indicated
10332 enumerator-definition
10333 enumerator-list , enumerator-definition */
10336 cp_parser_enumerator_list (cp_parser
* parser
, tree type
)
10340 /* Parse an enumerator-definition. */
10341 cp_parser_enumerator_definition (parser
, type
);
10343 /* If the next token is not a ',', we've reached the end of
10345 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_COMMA
))
10347 /* Otherwise, consume the `,' and keep going. */
10348 cp_lexer_consume_token (parser
->lexer
);
10349 /* If the next token is a `}', there is a trailing comma. */
10350 if (cp_lexer_next_token_is (parser
->lexer
, CPP_CLOSE_BRACE
))
10352 if (pedantic
&& !in_system_header
)
10353 pedwarn ("comma at end of enumerator list");
10359 /* Parse an enumerator-definition. The enumerator has the indicated
10362 enumerator-definition:
10364 enumerator = constant-expression
10370 cp_parser_enumerator_definition (cp_parser
* parser
, tree type
)
10375 /* Look for the identifier. */
10376 identifier
= cp_parser_identifier (parser
);
10377 if (identifier
== error_mark_node
)
10380 /* If the next token is an '=', then there is an explicit value. */
10381 if (cp_lexer_next_token_is (parser
->lexer
, CPP_EQ
))
10383 /* Consume the `=' token. */
10384 cp_lexer_consume_token (parser
->lexer
);
10385 /* Parse the value. */
10386 value
= cp_parser_constant_expression (parser
,
10387 /*allow_non_constant_p=*/false,
10393 /* Create the enumerator. */
10394 build_enumerator (identifier
, value
, type
);
10397 /* Parse a namespace-name.
10400 original-namespace-name
10403 Returns the NAMESPACE_DECL for the namespace. */
10406 cp_parser_namespace_name (cp_parser
* parser
)
10409 tree namespace_decl
;
10411 /* Get the name of the namespace. */
10412 identifier
= cp_parser_identifier (parser
);
10413 if (identifier
== error_mark_node
)
10414 return error_mark_node
;
10416 /* Look up the identifier in the currently active scope. Look only
10417 for namespaces, due to:
10419 [basic.lookup.udir]
10421 When looking up a namespace-name in a using-directive or alias
10422 definition, only namespace names are considered.
10426 [basic.lookup.qual]
10428 During the lookup of a name preceding the :: scope resolution
10429 operator, object, function, and enumerator names are ignored.
10431 (Note that cp_parser_class_or_namespace_name only calls this
10432 function if the token after the name is the scope resolution
10434 namespace_decl
= cp_parser_lookup_name (parser
, identifier
,
10436 /*is_template=*/false,
10437 /*is_namespace=*/true,
10438 /*check_dependency=*/true,
10439 /*ambiguous_decls=*/NULL
);
10440 /* If it's not a namespace, issue an error. */
10441 if (namespace_decl
== error_mark_node
10442 || TREE_CODE (namespace_decl
) != NAMESPACE_DECL
)
10444 if (!cp_parser_uncommitted_to_tentative_parse_p (parser
))
10445 error ("%qD is not a namespace-name", identifier
);
10446 cp_parser_error (parser
, "expected namespace-name");
10447 namespace_decl
= error_mark_node
;
10450 return namespace_decl
;
10453 /* Parse a namespace-definition.
10455 namespace-definition:
10456 named-namespace-definition
10457 unnamed-namespace-definition
10459 named-namespace-definition:
10460 original-namespace-definition
10461 extension-namespace-definition
10463 original-namespace-definition:
10464 namespace identifier { namespace-body }
10466 extension-namespace-definition:
10467 namespace original-namespace-name { namespace-body }
10469 unnamed-namespace-definition:
10470 namespace { namespace-body } */
10473 cp_parser_namespace_definition (cp_parser
* parser
)
10475 tree identifier
, attribs
;
10477 /* Look for the `namespace' keyword. */
10478 cp_parser_require_keyword (parser
, RID_NAMESPACE
, "`namespace'");
10480 /* Get the name of the namespace. We do not attempt to distinguish
10481 between an original-namespace-definition and an
10482 extension-namespace-definition at this point. The semantic
10483 analysis routines are responsible for that. */
10484 if (cp_lexer_next_token_is (parser
->lexer
, CPP_NAME
))
10485 identifier
= cp_parser_identifier (parser
);
10487 identifier
= NULL_TREE
;
10489 /* Parse any specified attributes. */
10490 attribs
= cp_parser_attributes_opt (parser
);
10492 /* Look for the `{' to start the namespace. */
10493 cp_parser_require (parser
, CPP_OPEN_BRACE
, "`{'");
10494 /* Start the namespace. */
10495 push_namespace_with_attribs (identifier
, attribs
);
10496 /* Parse the body of the namespace. */
10497 cp_parser_namespace_body (parser
);
10498 /* Finish the namespace. */
10500 /* Look for the final `}'. */
10501 cp_parser_require (parser
, CPP_CLOSE_BRACE
, "`}'");
10504 /* Parse a namespace-body.
10507 declaration-seq [opt] */
10510 cp_parser_namespace_body (cp_parser
* parser
)
10512 cp_parser_declaration_seq_opt (parser
);
10515 /* Parse a namespace-alias-definition.
10517 namespace-alias-definition:
10518 namespace identifier = qualified-namespace-specifier ; */
10521 cp_parser_namespace_alias_definition (cp_parser
* parser
)
10524 tree namespace_specifier
;
10526 /* Look for the `namespace' keyword. */
10527 cp_parser_require_keyword (parser
, RID_NAMESPACE
, "`namespace'");
10528 /* Look for the identifier. */
10529 identifier
= cp_parser_identifier (parser
);
10530 if (identifier
== error_mark_node
)
10532 /* Look for the `=' token. */
10533 cp_parser_require (parser
, CPP_EQ
, "`='");
10534 /* Look for the qualified-namespace-specifier. */
10535 namespace_specifier
10536 = cp_parser_qualified_namespace_specifier (parser
);
10537 /* Look for the `;' token. */
10538 cp_parser_require (parser
, CPP_SEMICOLON
, "`;'");
10540 /* Register the alias in the symbol table. */
10541 do_namespace_alias (identifier
, namespace_specifier
);
10544 /* Parse a qualified-namespace-specifier.
10546 qualified-namespace-specifier:
10547 :: [opt] nested-name-specifier [opt] namespace-name
10549 Returns a NAMESPACE_DECL corresponding to the specified
10553 cp_parser_qualified_namespace_specifier (cp_parser
* parser
)
10555 /* Look for the optional `::'. */
10556 cp_parser_global_scope_opt (parser
,
10557 /*current_scope_valid_p=*/false);
10559 /* Look for the optional nested-name-specifier. */
10560 cp_parser_nested_name_specifier_opt (parser
,
10561 /*typename_keyword_p=*/false,
10562 /*check_dependency_p=*/true,
10564 /*is_declaration=*/true);
10566 return cp_parser_namespace_name (parser
);
10569 /* Parse a using-declaration.
10572 using typename [opt] :: [opt] nested-name-specifier unqualified-id ;
10573 using :: unqualified-id ; */
10576 cp_parser_using_declaration (cp_parser
* parser
)
10579 bool typename_p
= false;
10580 bool global_scope_p
;
10585 /* Look for the `using' keyword. */
10586 cp_parser_require_keyword (parser
, RID_USING
, "`using'");
10588 /* Peek at the next token. */
10589 token
= cp_lexer_peek_token (parser
->lexer
);
10590 /* See if it's `typename'. */
10591 if (token
->keyword
== RID_TYPENAME
)
10593 /* Remember that we've seen it. */
10595 /* Consume the `typename' token. */
10596 cp_lexer_consume_token (parser
->lexer
);
10599 /* Look for the optional global scope qualification. */
10601 = (cp_parser_global_scope_opt (parser
,
10602 /*current_scope_valid_p=*/false)
10605 /* If we saw `typename', or didn't see `::', then there must be a
10606 nested-name-specifier present. */
10607 if (typename_p
|| !global_scope_p
)
10608 qscope
= cp_parser_nested_name_specifier (parser
, typename_p
,
10609 /*check_dependency_p=*/true,
10611 /*is_declaration=*/true);
10612 /* Otherwise, we could be in either of the two productions. In that
10613 case, treat the nested-name-specifier as optional. */
10615 qscope
= cp_parser_nested_name_specifier_opt (parser
,
10616 /*typename_keyword_p=*/false,
10617 /*check_dependency_p=*/true,
10619 /*is_declaration=*/true);
10621 qscope
= global_namespace
;
10623 /* Parse the unqualified-id. */
10624 identifier
= cp_parser_unqualified_id (parser
,
10625 /*template_keyword_p=*/false,
10626 /*check_dependency_p=*/true,
10627 /*declarator_p=*/true,
10628 /*optional_p=*/false);
10630 /* The function we call to handle a using-declaration is different
10631 depending on what scope we are in. */
10632 if (qscope
== error_mark_node
|| identifier
== error_mark_node
)
10634 else if (TREE_CODE (identifier
) != IDENTIFIER_NODE
10635 && TREE_CODE (identifier
) != BIT_NOT_EXPR
)
10636 /* [namespace.udecl]
10638 A using declaration shall not name a template-id. */
10639 error ("a template-id may not appear in a using-declaration");
10642 if (at_class_scope_p ())
10644 /* Create the USING_DECL. */
10645 decl
= do_class_using_decl (parser
->scope
, identifier
);
10646 /* Add it to the list of members in this class. */
10647 finish_member_declaration (decl
);
10651 decl
= cp_parser_lookup_name_simple (parser
, identifier
);
10652 if (decl
== error_mark_node
)
10653 cp_parser_name_lookup_error (parser
, identifier
, decl
, NULL
);
10654 else if (!at_namespace_scope_p ())
10655 do_local_using_decl (decl
, qscope
, identifier
);
10657 do_toplevel_using_decl (decl
, qscope
, identifier
);
10661 /* Look for the final `;'. */
10662 cp_parser_require (parser
, CPP_SEMICOLON
, "`;'");
10665 /* Parse a using-directive.
10668 using namespace :: [opt] nested-name-specifier [opt]
10669 namespace-name ; */
10672 cp_parser_using_directive (cp_parser
* parser
)
10674 tree namespace_decl
;
10677 /* Look for the `using' keyword. */
10678 cp_parser_require_keyword (parser
, RID_USING
, "`using'");
10679 /* And the `namespace' keyword. */
10680 cp_parser_require_keyword (parser
, RID_NAMESPACE
, "`namespace'");
10681 /* Look for the optional `::' operator. */
10682 cp_parser_global_scope_opt (parser
, /*current_scope_valid_p=*/false);
10683 /* And the optional nested-name-specifier. */
10684 cp_parser_nested_name_specifier_opt (parser
,
10685 /*typename_keyword_p=*/false,
10686 /*check_dependency_p=*/true,
10688 /*is_declaration=*/true);
10689 /* Get the namespace being used. */
10690 namespace_decl
= cp_parser_namespace_name (parser
);
10691 /* And any specified attributes. */
10692 attribs
= cp_parser_attributes_opt (parser
);
10693 /* Update the symbol table. */
10694 parse_using_directive (namespace_decl
, attribs
);
10695 /* Look for the final `;'. */
10696 cp_parser_require (parser
, CPP_SEMICOLON
, "`;'");
10699 /* Parse an asm-definition.
10702 asm ( string-literal ) ;
10707 asm volatile [opt] ( string-literal ) ;
10708 asm volatile [opt] ( string-literal : asm-operand-list [opt] ) ;
10709 asm volatile [opt] ( string-literal : asm-operand-list [opt]
10710 : asm-operand-list [opt] ) ;
10711 asm volatile [opt] ( string-literal : asm-operand-list [opt]
10712 : asm-operand-list [opt]
10713 : asm-operand-list [opt] ) ; */
10716 cp_parser_asm_definition (cp_parser
* parser
)
10719 tree outputs
= NULL_TREE
;
10720 tree inputs
= NULL_TREE
;
10721 tree clobbers
= NULL_TREE
;
10723 bool volatile_p
= false;
10724 bool extended_p
= false;
10726 /* Look for the `asm' keyword. */
10727 cp_parser_require_keyword (parser
, RID_ASM
, "`asm'");
10728 /* See if the next token is `volatile'. */
10729 if (cp_parser_allow_gnu_extensions_p (parser
)
10730 && cp_lexer_next_token_is_keyword (parser
->lexer
, RID_VOLATILE
))
10732 /* Remember that we saw the `volatile' keyword. */
10734 /* Consume the token. */
10735 cp_lexer_consume_token (parser
->lexer
);
10737 /* Look for the opening `('. */
10738 if (!cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('"))
10740 /* Look for the string. */
10741 string
= cp_parser_string_literal (parser
, false, false);
10742 if (string
== error_mark_node
)
10744 cp_parser_skip_to_closing_parenthesis (parser
, true, false,
10745 /*consume_paren=*/true);
10749 /* If we're allowing GNU extensions, check for the extended assembly
10750 syntax. Unfortunately, the `:' tokens need not be separated by
10751 a space in C, and so, for compatibility, we tolerate that here
10752 too. Doing that means that we have to treat the `::' operator as
10754 if (cp_parser_allow_gnu_extensions_p (parser
)
10755 && at_function_scope_p ()
10756 && (cp_lexer_next_token_is (parser
->lexer
, CPP_COLON
)
10757 || cp_lexer_next_token_is (parser
->lexer
, CPP_SCOPE
)))
10759 bool inputs_p
= false;
10760 bool clobbers_p
= false;
10762 /* The extended syntax was used. */
10765 /* Look for outputs. */
10766 if (cp_lexer_next_token_is (parser
->lexer
, CPP_COLON
))
10768 /* Consume the `:'. */
10769 cp_lexer_consume_token (parser
->lexer
);
10770 /* Parse the output-operands. */
10771 if (cp_lexer_next_token_is_not (parser
->lexer
,
10773 && cp_lexer_next_token_is_not (parser
->lexer
,
10775 && cp_lexer_next_token_is_not (parser
->lexer
,
10777 outputs
= cp_parser_asm_operand_list (parser
);
10779 /* If the next token is `::', there are no outputs, and the
10780 next token is the beginning of the inputs. */
10781 else if (cp_lexer_next_token_is (parser
->lexer
, CPP_SCOPE
))
10782 /* The inputs are coming next. */
10785 /* Look for inputs. */
10787 || cp_lexer_next_token_is (parser
->lexer
, CPP_COLON
))
10789 /* Consume the `:' or `::'. */
10790 cp_lexer_consume_token (parser
->lexer
);
10791 /* Parse the output-operands. */
10792 if (cp_lexer_next_token_is_not (parser
->lexer
,
10794 && cp_lexer_next_token_is_not (parser
->lexer
,
10796 inputs
= cp_parser_asm_operand_list (parser
);
10798 else if (cp_lexer_next_token_is (parser
->lexer
, CPP_SCOPE
))
10799 /* The clobbers are coming next. */
10802 /* Look for clobbers. */
10804 || cp_lexer_next_token_is (parser
->lexer
, CPP_COLON
))
10806 /* Consume the `:' or `::'. */
10807 cp_lexer_consume_token (parser
->lexer
);
10808 /* Parse the clobbers. */
10809 if (cp_lexer_next_token_is_not (parser
->lexer
,
10811 clobbers
= cp_parser_asm_clobber_list (parser
);
10814 /* Look for the closing `)'. */
10815 if (!cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'"))
10816 cp_parser_skip_to_closing_parenthesis (parser
, true, false,
10817 /*consume_paren=*/true);
10818 cp_parser_require (parser
, CPP_SEMICOLON
, "`;'");
10820 /* Create the ASM_EXPR. */
10821 if (at_function_scope_p ())
10823 asm_stmt
= finish_asm_stmt (volatile_p
, string
, outputs
,
10825 /* If the extended syntax was not used, mark the ASM_EXPR. */
10828 tree temp
= asm_stmt
;
10829 if (TREE_CODE (temp
) == CLEANUP_POINT_EXPR
)
10830 temp
= TREE_OPERAND (temp
, 0);
10832 ASM_INPUT_P (temp
) = 1;
10836 cgraph_add_asm_node (string
);
10839 /* Declarators [gram.dcl.decl] */
10841 /* Parse an init-declarator.
10844 declarator initializer [opt]
10849 declarator asm-specification [opt] attributes [opt] initializer [opt]
10851 function-definition:
10852 decl-specifier-seq [opt] declarator ctor-initializer [opt]
10854 decl-specifier-seq [opt] declarator function-try-block
10858 function-definition:
10859 __extension__ function-definition
10861 The DECL_SPECIFIERS apply to this declarator. Returns a
10862 representation of the entity declared. If MEMBER_P is TRUE, then
10863 this declarator appears in a class scope. The new DECL created by
10864 this declarator is returned.
10866 The CHECKS are access checks that should be performed once we know
10867 what entity is being declared (and, therefore, what classes have
10870 If FUNCTION_DEFINITION_ALLOWED_P then we handle the declarator and
10871 for a function-definition here as well. If the declarator is a
10872 declarator for a function-definition, *FUNCTION_DEFINITION_P will
10873 be TRUE upon return. By that point, the function-definition will
10874 have been completely parsed.
10876 FUNCTION_DEFINITION_P may be NULL if FUNCTION_DEFINITION_ALLOWED_P
10880 cp_parser_init_declarator (cp_parser
* parser
,
10881 cp_decl_specifier_seq
*decl_specifiers
,
10883 bool function_definition_allowed_p
,
10885 int declares_class_or_enum
,
10886 bool* function_definition_p
)
10889 cp_declarator
*declarator
;
10890 tree prefix_attributes
;
10892 tree asm_specification
;
10894 tree decl
= NULL_TREE
;
10896 bool is_initialized
;
10897 /* Only valid if IS_INITIALIZED is true. In that case, CPP_EQ if
10898 initialized with "= ..", CPP_OPEN_PAREN if initialized with
10900 enum cpp_ttype initialization_kind
;
10901 bool is_parenthesized_init
= false;
10902 bool is_non_constant_init
;
10903 int ctor_dtor_or_conv_p
;
10905 tree pushed_scope
= NULL
;
10907 /* Gather the attributes that were provided with the
10908 decl-specifiers. */
10909 prefix_attributes
= decl_specifiers
->attributes
;
10911 /* Assume that this is not the declarator for a function
10913 if (function_definition_p
)
10914 *function_definition_p
= false;
10916 /* Defer access checks while parsing the declarator; we cannot know
10917 what names are accessible until we know what is being
10919 resume_deferring_access_checks ();
10921 /* Parse the declarator. */
10923 = cp_parser_declarator (parser
, CP_PARSER_DECLARATOR_NAMED
,
10924 &ctor_dtor_or_conv_p
,
10925 /*parenthesized_p=*/NULL
,
10926 /*member_p=*/false);
10927 /* Gather up the deferred checks. */
10928 stop_deferring_access_checks ();
10930 /* If the DECLARATOR was erroneous, there's no need to go
10932 if (declarator
== cp_error_declarator
)
10933 return error_mark_node
;
10935 if (declares_class_or_enum
& 2)
10936 cp_parser_check_for_definition_in_return_type (declarator
,
10937 decl_specifiers
->type
);
10939 /* Figure out what scope the entity declared by the DECLARATOR is
10940 located in. `grokdeclarator' sometimes changes the scope, so
10941 we compute it now. */
10942 scope
= get_scope_of_declarator (declarator
);
10944 /* If we're allowing GNU extensions, look for an asm-specification
10946 if (cp_parser_allow_gnu_extensions_p (parser
))
10948 /* Look for an asm-specification. */
10949 asm_specification
= cp_parser_asm_specification_opt (parser
);
10950 /* And attributes. */
10951 attributes
= cp_parser_attributes_opt (parser
);
10955 asm_specification
= NULL_TREE
;
10956 attributes
= NULL_TREE
;
10959 /* Peek at the next token. */
10960 token
= cp_lexer_peek_token (parser
->lexer
);
10961 /* Check to see if the token indicates the start of a
10962 function-definition. */
10963 if (cp_parser_token_starts_function_definition_p (token
))
10965 if (!function_definition_allowed_p
)
10967 /* If a function-definition should not appear here, issue an
10969 cp_parser_error (parser
,
10970 "a function-definition is not allowed here");
10971 return error_mark_node
;
10975 /* Neither attributes nor an asm-specification are allowed
10976 on a function-definition. */
10977 if (asm_specification
)
10978 error ("an asm-specification is not allowed on a function-definition");
10980 error ("attributes are not allowed on a function-definition");
10981 /* This is a function-definition. */
10982 *function_definition_p
= true;
10984 /* Parse the function definition. */
10986 decl
= cp_parser_save_member_function_body (parser
,
10989 prefix_attributes
);
10992 = (cp_parser_function_definition_from_specifiers_and_declarator
10993 (parser
, decl_specifiers
, prefix_attributes
, declarator
));
11001 Only in function declarations for constructors, destructors, and
11002 type conversions can the decl-specifier-seq be omitted.
11004 We explicitly postpone this check past the point where we handle
11005 function-definitions because we tolerate function-definitions
11006 that are missing their return types in some modes. */
11007 if (!decl_specifiers
->any_specifiers_p
&& ctor_dtor_or_conv_p
<= 0)
11009 cp_parser_error (parser
,
11010 "expected constructor, destructor, or type conversion");
11011 return error_mark_node
;
11014 /* An `=' or an `(' indicates an initializer. */
11015 if (token
->type
== CPP_EQ
11016 || token
->type
== CPP_OPEN_PAREN
)
11018 is_initialized
= true;
11019 initialization_kind
= token
->type
;
11023 /* If the init-declarator isn't initialized and isn't followed by a
11024 `,' or `;', it's not a valid init-declarator. */
11025 if (token
->type
!= CPP_COMMA
11026 && token
->type
!= CPP_SEMICOLON
)
11028 cp_parser_error (parser
, "expected initializer");
11029 return error_mark_node
;
11031 is_initialized
= false;
11032 initialization_kind
= CPP_EOF
;
11035 /* Because start_decl has side-effects, we should only call it if we
11036 know we're going ahead. By this point, we know that we cannot
11037 possibly be looking at any other construct. */
11038 cp_parser_commit_to_tentative_parse (parser
);
11040 /* If the decl specifiers were bad, issue an error now that we're
11041 sure this was intended to be a declarator. Then continue
11042 declaring the variable(s), as int, to try to cut down on further
11044 if (decl_specifiers
->any_specifiers_p
11045 && decl_specifiers
->type
== error_mark_node
)
11047 cp_parser_error (parser
, "invalid type in declaration");
11048 decl_specifiers
->type
= integer_type_node
;
11051 /* Check to see whether or not this declaration is a friend. */
11052 friend_p
= cp_parser_friend_p (decl_specifiers
);
11054 /* Check that the number of template-parameter-lists is OK. */
11055 if (!cp_parser_check_declarator_template_parameters (parser
, declarator
))
11056 return error_mark_node
;
11058 /* Enter the newly declared entry in the symbol table. If we're
11059 processing a declaration in a class-specifier, we wait until
11060 after processing the initializer. */
11063 if (parser
->in_unbraced_linkage_specification_p
)
11064 decl_specifiers
->storage_class
= sc_extern
;
11065 decl
= start_decl (declarator
, decl_specifiers
,
11066 is_initialized
, attributes
, prefix_attributes
,
11070 /* Enter the SCOPE. That way unqualified names appearing in the
11071 initializer will be looked up in SCOPE. */
11072 pushed_scope
= push_scope (scope
);
11074 /* Perform deferred access control checks, now that we know in which
11075 SCOPE the declared entity resides. */
11076 if (!member_p
&& decl
)
11078 tree saved_current_function_decl
= NULL_TREE
;
11080 /* If the entity being declared is a function, pretend that we
11081 are in its scope. If it is a `friend', it may have access to
11082 things that would not otherwise be accessible. */
11083 if (TREE_CODE (decl
) == FUNCTION_DECL
)
11085 saved_current_function_decl
= current_function_decl
;
11086 current_function_decl
= decl
;
11089 /* Perform access checks for template parameters. */
11090 cp_parser_perform_template_parameter_access_checks (checks
);
11092 /* Perform the access control checks for the declarator and the
11093 the decl-specifiers. */
11094 perform_deferred_access_checks ();
11096 /* Restore the saved value. */
11097 if (TREE_CODE (decl
) == FUNCTION_DECL
)
11098 current_function_decl
= saved_current_function_decl
;
11101 /* Parse the initializer. */
11102 initializer
= NULL_TREE
;
11103 is_parenthesized_init
= false;
11104 is_non_constant_init
= true;
11105 if (is_initialized
)
11107 if (declarator
->kind
== cdk_function
11108 && declarator
->declarator
->kind
== cdk_id
11109 && initialization_kind
== CPP_EQ
)
11110 initializer
= cp_parser_pure_specifier (parser
);
11112 initializer
= cp_parser_initializer (parser
,
11113 &is_parenthesized_init
,
11114 &is_non_constant_init
);
11117 /* The old parser allows attributes to appear after a parenthesized
11118 initializer. Mark Mitchell proposed removing this functionality
11119 on the GCC mailing lists on 2002-08-13. This parser accepts the
11120 attributes -- but ignores them. */
11121 if (cp_parser_allow_gnu_extensions_p (parser
) && is_parenthesized_init
)
11122 if (cp_parser_attributes_opt (parser
))
11123 warning (OPT_Wattributes
,
11124 "attributes after parenthesized initializer ignored");
11126 /* For an in-class declaration, use `grokfield' to create the
11132 pop_scope (pushed_scope
);
11133 pushed_scope
= false;
11135 decl
= grokfield (declarator
, decl_specifiers
,
11136 initializer
, !is_non_constant_init
,
11137 /*asmspec=*/NULL_TREE
,
11138 prefix_attributes
);
11139 if (decl
&& TREE_CODE (decl
) == FUNCTION_DECL
)
11140 cp_parser_save_default_args (parser
, decl
);
11143 /* Finish processing the declaration. But, skip friend
11145 if (!friend_p
&& decl
&& decl
!= error_mark_node
)
11147 cp_finish_decl (decl
,
11148 initializer
, !is_non_constant_init
,
11150 /* If the initializer is in parentheses, then this is
11151 a direct-initialization, which means that an
11152 `explicit' constructor is OK. Otherwise, an
11153 `explicit' constructor cannot be used. */
11154 ((is_parenthesized_init
|| !is_initialized
)
11155 ? 0 : LOOKUP_ONLYCONVERTING
));
11157 if (!friend_p
&& pushed_scope
)
11158 pop_scope (pushed_scope
);
11163 /* Parse a declarator.
11167 ptr-operator declarator
11169 abstract-declarator:
11170 ptr-operator abstract-declarator [opt]
11171 direct-abstract-declarator
11176 attributes [opt] direct-declarator
11177 attributes [opt] ptr-operator declarator
11179 abstract-declarator:
11180 attributes [opt] ptr-operator abstract-declarator [opt]
11181 attributes [opt] direct-abstract-declarator
11183 If CTOR_DTOR_OR_CONV_P is not NULL, *CTOR_DTOR_OR_CONV_P is used to
11184 detect constructor, destructor or conversion operators. It is set
11185 to -1 if the declarator is a name, and +1 if it is a
11186 function. Otherwise it is set to zero. Usually you just want to
11187 test for >0, but internally the negative value is used.
11189 (The reason for CTOR_DTOR_OR_CONV_P is that a declaration must have
11190 a decl-specifier-seq unless it declares a constructor, destructor,
11191 or conversion. It might seem that we could check this condition in
11192 semantic analysis, rather than parsing, but that makes it difficult
11193 to handle something like `f()'. We want to notice that there are
11194 no decl-specifiers, and therefore realize that this is an
11195 expression, not a declaration.)
11197 If PARENTHESIZED_P is non-NULL, *PARENTHESIZED_P is set to true iff
11198 the declarator is a direct-declarator of the form "(...)".
11200 MEMBER_P is true iff this declarator is a member-declarator. */
11202 static cp_declarator
*
11203 cp_parser_declarator (cp_parser
* parser
,
11204 cp_parser_declarator_kind dcl_kind
,
11205 int* ctor_dtor_or_conv_p
,
11206 bool* parenthesized_p
,
11210 cp_declarator
*declarator
;
11211 enum tree_code code
;
11212 cp_cv_quals cv_quals
;
11214 tree attributes
= NULL_TREE
;
11216 /* Assume this is not a constructor, destructor, or type-conversion
11218 if (ctor_dtor_or_conv_p
)
11219 *ctor_dtor_or_conv_p
= 0;
11221 if (cp_parser_allow_gnu_extensions_p (parser
))
11222 attributes
= cp_parser_attributes_opt (parser
);
11224 /* Peek at the next token. */
11225 token
= cp_lexer_peek_token (parser
->lexer
);
11227 /* Check for the ptr-operator production. */
11228 cp_parser_parse_tentatively (parser
);
11229 /* Parse the ptr-operator. */
11230 code
= cp_parser_ptr_operator (parser
,
11233 /* If that worked, then we have a ptr-operator. */
11234 if (cp_parser_parse_definitely (parser
))
11236 /* If a ptr-operator was found, then this declarator was not
11238 if (parenthesized_p
)
11239 *parenthesized_p
= true;
11240 /* The dependent declarator is optional if we are parsing an
11241 abstract-declarator. */
11242 if (dcl_kind
!= CP_PARSER_DECLARATOR_NAMED
)
11243 cp_parser_parse_tentatively (parser
);
11245 /* Parse the dependent declarator. */
11246 declarator
= cp_parser_declarator (parser
, dcl_kind
,
11247 /*ctor_dtor_or_conv_p=*/NULL
,
11248 /*parenthesized_p=*/NULL
,
11249 /*member_p=*/false);
11251 /* If we are parsing an abstract-declarator, we must handle the
11252 case where the dependent declarator is absent. */
11253 if (dcl_kind
!= CP_PARSER_DECLARATOR_NAMED
11254 && !cp_parser_parse_definitely (parser
))
11257 /* Build the representation of the ptr-operator. */
11259 declarator
= make_ptrmem_declarator (cv_quals
,
11262 else if (code
== INDIRECT_REF
)
11263 declarator
= make_pointer_declarator (cv_quals
, declarator
);
11265 declarator
= make_reference_declarator (cv_quals
, declarator
);
11267 /* Everything else is a direct-declarator. */
11270 if (parenthesized_p
)
11271 *parenthesized_p
= cp_lexer_next_token_is (parser
->lexer
,
11273 declarator
= cp_parser_direct_declarator (parser
, dcl_kind
,
11274 ctor_dtor_or_conv_p
,
11278 if (attributes
&& declarator
&& declarator
!= cp_error_declarator
)
11279 declarator
->attributes
= attributes
;
11284 /* Parse a direct-declarator or direct-abstract-declarator.
11288 direct-declarator ( parameter-declaration-clause )
11289 cv-qualifier-seq [opt]
11290 exception-specification [opt]
11291 direct-declarator [ constant-expression [opt] ]
11294 direct-abstract-declarator:
11295 direct-abstract-declarator [opt]
11296 ( parameter-declaration-clause )
11297 cv-qualifier-seq [opt]
11298 exception-specification [opt]
11299 direct-abstract-declarator [opt] [ constant-expression [opt] ]
11300 ( abstract-declarator )
11302 Returns a representation of the declarator. DCL_KIND is
11303 CP_PARSER_DECLARATOR_ABSTRACT, if we are parsing a
11304 direct-abstract-declarator. It is CP_PARSER_DECLARATOR_NAMED, if
11305 we are parsing a direct-declarator. It is
11306 CP_PARSER_DECLARATOR_EITHER, if we can accept either - in the case
11307 of ambiguity we prefer an abstract declarator, as per
11308 [dcl.ambig.res]. CTOR_DTOR_OR_CONV_P and MEMBER_P are as for
11309 cp_parser_declarator. */
11311 static cp_declarator
*
11312 cp_parser_direct_declarator (cp_parser
* parser
,
11313 cp_parser_declarator_kind dcl_kind
,
11314 int* ctor_dtor_or_conv_p
,
11318 cp_declarator
*declarator
= NULL
;
11319 tree scope
= NULL_TREE
;
11320 bool saved_default_arg_ok_p
= parser
->default_arg_ok_p
;
11321 bool saved_in_declarator_p
= parser
->in_declarator_p
;
11323 tree pushed_scope
= NULL_TREE
;
11327 /* Peek at the next token. */
11328 token
= cp_lexer_peek_token (parser
->lexer
);
11329 if (token
->type
== CPP_OPEN_PAREN
)
11331 /* This is either a parameter-declaration-clause, or a
11332 parenthesized declarator. When we know we are parsing a
11333 named declarator, it must be a parenthesized declarator
11334 if FIRST is true. For instance, `(int)' is a
11335 parameter-declaration-clause, with an omitted
11336 direct-abstract-declarator. But `((*))', is a
11337 parenthesized abstract declarator. Finally, when T is a
11338 template parameter `(T)' is a
11339 parameter-declaration-clause, and not a parenthesized
11342 We first try and parse a parameter-declaration-clause,
11343 and then try a nested declarator (if FIRST is true).
11345 It is not an error for it not to be a
11346 parameter-declaration-clause, even when FIRST is
11352 The first is the declaration of a function while the
11353 second is a the definition of a variable, including its
11356 Having seen only the parenthesis, we cannot know which of
11357 these two alternatives should be selected. Even more
11358 complex are examples like:
11363 The former is a function-declaration; the latter is a
11364 variable initialization.
11366 Thus again, we try a parameter-declaration-clause, and if
11367 that fails, we back out and return. */
11369 if (!first
|| dcl_kind
!= CP_PARSER_DECLARATOR_NAMED
)
11371 cp_parameter_declarator
*params
;
11372 unsigned saved_num_template_parameter_lists
;
11374 /* In a member-declarator, the only valid interpretation
11375 of a parenthesis is the start of a
11376 parameter-declaration-clause. (It is invalid to
11377 initialize a static data member with a parenthesized
11378 initializer; only the "=" form of initialization is
11381 cp_parser_parse_tentatively (parser
);
11383 /* Consume the `('. */
11384 cp_lexer_consume_token (parser
->lexer
);
11387 /* If this is going to be an abstract declarator, we're
11388 in a declarator and we can't have default args. */
11389 parser
->default_arg_ok_p
= false;
11390 parser
->in_declarator_p
= true;
11393 /* Inside the function parameter list, surrounding
11394 template-parameter-lists do not apply. */
11395 saved_num_template_parameter_lists
11396 = parser
->num_template_parameter_lists
;
11397 parser
->num_template_parameter_lists
= 0;
11399 /* Parse the parameter-declaration-clause. */
11400 params
= cp_parser_parameter_declaration_clause (parser
);
11402 parser
->num_template_parameter_lists
11403 = saved_num_template_parameter_lists
;
11405 /* If all went well, parse the cv-qualifier-seq and the
11406 exception-specification. */
11407 if (member_p
|| cp_parser_parse_definitely (parser
))
11409 cp_cv_quals cv_quals
;
11410 tree exception_specification
;
11412 if (ctor_dtor_or_conv_p
)
11413 *ctor_dtor_or_conv_p
= *ctor_dtor_or_conv_p
< 0;
11415 /* Consume the `)'. */
11416 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
11418 /* Parse the cv-qualifier-seq. */
11419 cv_quals
= cp_parser_cv_qualifier_seq_opt (parser
);
11420 /* And the exception-specification. */
11421 exception_specification
11422 = cp_parser_exception_specification_opt (parser
);
11424 /* Create the function-declarator. */
11425 declarator
= make_call_declarator (declarator
,
11428 exception_specification
);
11429 /* Any subsequent parameter lists are to do with
11430 return type, so are not those of the declared
11432 parser
->default_arg_ok_p
= false;
11434 /* Repeat the main loop. */
11439 /* If this is the first, we can try a parenthesized
11443 bool saved_in_type_id_in_expr_p
;
11445 parser
->default_arg_ok_p
= saved_default_arg_ok_p
;
11446 parser
->in_declarator_p
= saved_in_declarator_p
;
11448 /* Consume the `('. */
11449 cp_lexer_consume_token (parser
->lexer
);
11450 /* Parse the nested declarator. */
11451 saved_in_type_id_in_expr_p
= parser
->in_type_id_in_expr_p
;
11452 parser
->in_type_id_in_expr_p
= true;
11454 = cp_parser_declarator (parser
, dcl_kind
, ctor_dtor_or_conv_p
,
11455 /*parenthesized_p=*/NULL
,
11457 parser
->in_type_id_in_expr_p
= saved_in_type_id_in_expr_p
;
11459 /* Expect a `)'. */
11460 if (!cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'"))
11461 declarator
= cp_error_declarator
;
11462 if (declarator
== cp_error_declarator
)
11465 goto handle_declarator
;
11467 /* Otherwise, we must be done. */
11471 else if ((!first
|| dcl_kind
!= CP_PARSER_DECLARATOR_NAMED
)
11472 && token
->type
== CPP_OPEN_SQUARE
)
11474 /* Parse an array-declarator. */
11477 if (ctor_dtor_or_conv_p
)
11478 *ctor_dtor_or_conv_p
= 0;
11481 parser
->default_arg_ok_p
= false;
11482 parser
->in_declarator_p
= true;
11483 /* Consume the `['. */
11484 cp_lexer_consume_token (parser
->lexer
);
11485 /* Peek at the next token. */
11486 token
= cp_lexer_peek_token (parser
->lexer
);
11487 /* If the next token is `]', then there is no
11488 constant-expression. */
11489 if (token
->type
!= CPP_CLOSE_SQUARE
)
11491 bool non_constant_p
;
11494 = cp_parser_constant_expression (parser
,
11495 /*allow_non_constant=*/true,
11497 if (!non_constant_p
)
11498 bounds
= fold_non_dependent_expr (bounds
);
11499 /* Normally, the array bound must be an integral constant
11500 expression. However, as an extension, we allow VLAs
11501 in function scopes. */
11502 else if (!at_function_scope_p ())
11504 error ("array bound is not an integer constant");
11505 bounds
= error_mark_node
;
11509 bounds
= NULL_TREE
;
11510 /* Look for the closing `]'. */
11511 if (!cp_parser_require (parser
, CPP_CLOSE_SQUARE
, "`]'"))
11513 declarator
= cp_error_declarator
;
11517 declarator
= make_array_declarator (declarator
, bounds
);
11519 else if (first
&& dcl_kind
!= CP_PARSER_DECLARATOR_ABSTRACT
)
11521 tree qualifying_scope
;
11522 tree unqualified_name
;
11523 special_function_kind sfk
;
11526 /* Parse a declarator-id */
11527 abstract_ok
= (dcl_kind
== CP_PARSER_DECLARATOR_EITHER
);
11529 cp_parser_parse_tentatively (parser
);
11531 = cp_parser_declarator_id (parser
, /*optional_p=*/abstract_ok
);
11532 qualifying_scope
= parser
->scope
;
11535 if (!cp_parser_parse_definitely (parser
))
11536 unqualified_name
= error_mark_node
;
11537 else if (unqualified_name
11538 && (qualifying_scope
11539 || (TREE_CODE (unqualified_name
)
11540 != IDENTIFIER_NODE
)))
11542 cp_parser_error (parser
, "expected unqualified-id");
11543 unqualified_name
= error_mark_node
;
11547 if (!unqualified_name
)
11549 if (unqualified_name
== error_mark_node
)
11551 declarator
= cp_error_declarator
;
11555 if (qualifying_scope
&& at_namespace_scope_p ()
11556 && TREE_CODE (qualifying_scope
) == TYPENAME_TYPE
)
11558 /* In the declaration of a member of a template class
11559 outside of the class itself, the SCOPE will sometimes
11560 be a TYPENAME_TYPE. For example, given:
11562 template <typename T>
11563 int S<T>::R::i = 3;
11565 the SCOPE will be a TYPENAME_TYPE for `S<T>::R'. In
11566 this context, we must resolve S<T>::R to an ordinary
11567 type, rather than a typename type.
11569 The reason we normally avoid resolving TYPENAME_TYPEs
11570 is that a specialization of `S' might render
11571 `S<T>::R' not a type. However, if `S' is
11572 specialized, then this `i' will not be used, so there
11573 is no harm in resolving the types here. */
11576 /* Resolve the TYPENAME_TYPE. */
11577 type
= resolve_typename_type (qualifying_scope
,
11578 /*only_current_p=*/false);
11579 /* If that failed, the declarator is invalid. */
11580 if (type
== error_mark_node
)
11581 error ("%<%T::%D%> is not a type",
11582 TYPE_CONTEXT (qualifying_scope
),
11583 TYPE_IDENTIFIER (qualifying_scope
));
11584 qualifying_scope
= type
;
11588 if (unqualified_name
)
11592 if (qualifying_scope
11593 && CLASS_TYPE_P (qualifying_scope
))
11594 class_type
= qualifying_scope
;
11596 class_type
= current_class_type
;
11598 if (TREE_CODE (unqualified_name
) == TYPE_DECL
)
11600 tree name_type
= TREE_TYPE (unqualified_name
);
11601 if (class_type
&& same_type_p (name_type
, class_type
))
11603 if (qualifying_scope
11604 && CLASSTYPE_USE_TEMPLATE (name_type
))
11606 error ("invalid use of constructor as a template");
11607 inform ("use %<%T::%D%> instead of %<%T::%D%> to "
11608 "name the constructor in a qualified name",
11610 DECL_NAME (TYPE_TI_TEMPLATE (class_type
)),
11611 class_type
, name_type
);
11612 declarator
= cp_error_declarator
;
11616 unqualified_name
= constructor_name (class_type
);
11620 /* We do not attempt to print the declarator
11621 here because we do not have enough
11622 information about its original syntactic
11624 cp_parser_error (parser
, "invalid declarator");
11625 declarator
= cp_error_declarator
;
11632 if (TREE_CODE (unqualified_name
) == BIT_NOT_EXPR
)
11633 sfk
= sfk_destructor
;
11634 else if (IDENTIFIER_TYPENAME_P (unqualified_name
))
11635 sfk
= sfk_conversion
;
11636 else if (/* There's no way to declare a constructor
11637 for an anonymous type, even if the type
11638 got a name for linkage purposes. */
11639 !TYPE_WAS_ANONYMOUS (class_type
)
11640 && constructor_name_p (unqualified_name
,
11643 unqualified_name
= constructor_name (class_type
);
11644 sfk
= sfk_constructor
;
11647 if (ctor_dtor_or_conv_p
&& sfk
!= sfk_none
)
11648 *ctor_dtor_or_conv_p
= -1;
11651 declarator
= make_id_declarator (qualifying_scope
,
11654 declarator
->id_loc
= token
->location
;
11656 handle_declarator
:;
11657 scope
= get_scope_of_declarator (declarator
);
11659 /* Any names that appear after the declarator-id for a
11660 member are looked up in the containing scope. */
11661 pushed_scope
= push_scope (scope
);
11662 parser
->in_declarator_p
= true;
11663 if ((ctor_dtor_or_conv_p
&& *ctor_dtor_or_conv_p
)
11664 || (declarator
&& declarator
->kind
== cdk_id
))
11665 /* Default args are only allowed on function
11667 parser
->default_arg_ok_p
= saved_default_arg_ok_p
;
11669 parser
->default_arg_ok_p
= false;
11678 /* For an abstract declarator, we might wind up with nothing at this
11679 point. That's an error; the declarator is not optional. */
11681 cp_parser_error (parser
, "expected declarator");
11683 /* If we entered a scope, we must exit it now. */
11685 pop_scope (pushed_scope
);
11687 parser
->default_arg_ok_p
= saved_default_arg_ok_p
;
11688 parser
->in_declarator_p
= saved_in_declarator_p
;
11693 /* Parse a ptr-operator.
11696 * cv-qualifier-seq [opt]
11698 :: [opt] nested-name-specifier * cv-qualifier-seq [opt]
11703 & cv-qualifier-seq [opt]
11705 Returns INDIRECT_REF if a pointer, or pointer-to-member, was used.
11706 Returns ADDR_EXPR if a reference was used. In the case of a
11707 pointer-to-member, *TYPE is filled in with the TYPE containing the
11708 member. *CV_QUALS is filled in with the cv-qualifier-seq, or
11709 TYPE_UNQUALIFIED, if there are no cv-qualifiers. Returns
11710 ERROR_MARK if an error occurred. */
11712 static enum tree_code
11713 cp_parser_ptr_operator (cp_parser
* parser
,
11715 cp_cv_quals
*cv_quals
)
11717 enum tree_code code
= ERROR_MARK
;
11720 /* Assume that it's not a pointer-to-member. */
11722 /* And that there are no cv-qualifiers. */
11723 *cv_quals
= TYPE_UNQUALIFIED
;
11725 /* Peek at the next token. */
11726 token
= cp_lexer_peek_token (parser
->lexer
);
11727 /* If it's a `*' or `&' we have a pointer or reference. */
11728 if (token
->type
== CPP_MULT
|| token
->type
== CPP_AND
)
11730 /* Remember which ptr-operator we were processing. */
11731 code
= (token
->type
== CPP_AND
? ADDR_EXPR
: INDIRECT_REF
);
11733 /* Consume the `*' or `&'. */
11734 cp_lexer_consume_token (parser
->lexer
);
11736 /* A `*' can be followed by a cv-qualifier-seq, and so can a
11737 `&', if we are allowing GNU extensions. (The only qualifier
11738 that can legally appear after `&' is `restrict', but that is
11739 enforced during semantic analysis. */
11740 if (code
== INDIRECT_REF
11741 || cp_parser_allow_gnu_extensions_p (parser
))
11742 *cv_quals
= cp_parser_cv_qualifier_seq_opt (parser
);
11746 /* Try the pointer-to-member case. */
11747 cp_parser_parse_tentatively (parser
);
11748 /* Look for the optional `::' operator. */
11749 cp_parser_global_scope_opt (parser
,
11750 /*current_scope_valid_p=*/false);
11751 /* Look for the nested-name specifier. */
11752 cp_parser_nested_name_specifier (parser
,
11753 /*typename_keyword_p=*/false,
11754 /*check_dependency_p=*/true,
11756 /*is_declaration=*/false);
11757 /* If we found it, and the next token is a `*', then we are
11758 indeed looking at a pointer-to-member operator. */
11759 if (!cp_parser_error_occurred (parser
)
11760 && cp_parser_require (parser
, CPP_MULT
, "`*'"))
11762 /* Indicate that the `*' operator was used. */
11763 code
= INDIRECT_REF
;
11765 if (TREE_CODE (parser
->scope
) == NAMESPACE_DECL
)
11766 error ("%qD is a namespace", parser
->scope
);
11769 /* The type of which the member is a member is given by the
11771 *type
= parser
->scope
;
11772 /* The next name will not be qualified. */
11773 parser
->scope
= NULL_TREE
;
11774 parser
->qualifying_scope
= NULL_TREE
;
11775 parser
->object_scope
= NULL_TREE
;
11776 /* Look for the optional cv-qualifier-seq. */
11777 *cv_quals
= cp_parser_cv_qualifier_seq_opt (parser
);
11780 /* If that didn't work we don't have a ptr-operator. */
11781 if (!cp_parser_parse_definitely (parser
))
11782 cp_parser_error (parser
, "expected ptr-operator");
11788 /* Parse an (optional) cv-qualifier-seq.
11791 cv-qualifier cv-qualifier-seq [opt]
11802 Returns a bitmask representing the cv-qualifiers. */
11805 cp_parser_cv_qualifier_seq_opt (cp_parser
* parser
)
11807 cp_cv_quals cv_quals
= TYPE_UNQUALIFIED
;
11812 cp_cv_quals cv_qualifier
;
11814 /* Peek at the next token. */
11815 token
= cp_lexer_peek_token (parser
->lexer
);
11816 /* See if it's a cv-qualifier. */
11817 switch (token
->keyword
)
11820 cv_qualifier
= TYPE_QUAL_CONST
;
11824 cv_qualifier
= TYPE_QUAL_VOLATILE
;
11828 cv_qualifier
= TYPE_QUAL_RESTRICT
;
11832 cv_qualifier
= TYPE_UNQUALIFIED
;
11839 if (cv_quals
& cv_qualifier
)
11841 error ("duplicate cv-qualifier");
11842 cp_lexer_purge_token (parser
->lexer
);
11846 cp_lexer_consume_token (parser
->lexer
);
11847 cv_quals
|= cv_qualifier
;
11854 /* Parse a declarator-id.
11858 :: [opt] nested-name-specifier [opt] type-name
11860 In the `id-expression' case, the value returned is as for
11861 cp_parser_id_expression if the id-expression was an unqualified-id.
11862 If the id-expression was a qualified-id, then a SCOPE_REF is
11863 returned. The first operand is the scope (either a NAMESPACE_DECL
11864 or TREE_TYPE), but the second is still just a representation of an
11868 cp_parser_declarator_id (cp_parser
* parser
, bool optional_p
)
11871 /* The expression must be an id-expression. Assume that qualified
11872 names are the names of types so that:
11875 int S<T>::R::i = 3;
11877 will work; we must treat `S<T>::R' as the name of a type.
11878 Similarly, assume that qualified names are templates, where
11882 int S<T>::R<T>::i = 3;
11885 id
= cp_parser_id_expression (parser
,
11886 /*template_keyword_p=*/false,
11887 /*check_dependency_p=*/false,
11888 /*template_p=*/NULL
,
11889 /*declarator_p=*/true,
11891 if (id
&& BASELINK_P (id
))
11892 id
= BASELINK_FUNCTIONS (id
);
11896 /* Parse a type-id.
11899 type-specifier-seq abstract-declarator [opt]
11901 Returns the TYPE specified. */
11904 cp_parser_type_id (cp_parser
* parser
)
11906 cp_decl_specifier_seq type_specifier_seq
;
11907 cp_declarator
*abstract_declarator
;
11909 /* Parse the type-specifier-seq. */
11910 cp_parser_type_specifier_seq (parser
, /*is_condition=*/false,
11911 &type_specifier_seq
);
11912 if (type_specifier_seq
.type
== error_mark_node
)
11913 return error_mark_node
;
11915 /* There might or might not be an abstract declarator. */
11916 cp_parser_parse_tentatively (parser
);
11917 /* Look for the declarator. */
11918 abstract_declarator
11919 = cp_parser_declarator (parser
, CP_PARSER_DECLARATOR_ABSTRACT
, NULL
,
11920 /*parenthesized_p=*/NULL
,
11921 /*member_p=*/false);
11922 /* Check to see if there really was a declarator. */
11923 if (!cp_parser_parse_definitely (parser
))
11924 abstract_declarator
= NULL
;
11926 return groktypename (&type_specifier_seq
, abstract_declarator
);
11929 /* Parse a type-specifier-seq.
11931 type-specifier-seq:
11932 type-specifier type-specifier-seq [opt]
11936 type-specifier-seq:
11937 attributes type-specifier-seq [opt]
11939 If IS_CONDITION is true, we are at the start of a "condition",
11940 e.g., we've just seen "if (".
11942 Sets *TYPE_SPECIFIER_SEQ to represent the sequence. */
11945 cp_parser_type_specifier_seq (cp_parser
* parser
,
11947 cp_decl_specifier_seq
*type_specifier_seq
)
11949 bool seen_type_specifier
= false;
11950 cp_parser_flags flags
= CP_PARSER_FLAGS_OPTIONAL
;
11952 /* Clear the TYPE_SPECIFIER_SEQ. */
11953 clear_decl_specs (type_specifier_seq
);
11955 /* Parse the type-specifiers and attributes. */
11958 tree type_specifier
;
11959 bool is_cv_qualifier
;
11961 /* Check for attributes first. */
11962 if (cp_lexer_next_token_is_keyword (parser
->lexer
, RID_ATTRIBUTE
))
11964 type_specifier_seq
->attributes
=
11965 chainon (type_specifier_seq
->attributes
,
11966 cp_parser_attributes_opt (parser
));
11970 /* Look for the type-specifier. */
11971 type_specifier
= cp_parser_type_specifier (parser
,
11973 type_specifier_seq
,
11974 /*is_declaration=*/false,
11977 if (!type_specifier
)
11979 /* If the first type-specifier could not be found, this is not a
11980 type-specifier-seq at all. */
11981 if (!seen_type_specifier
)
11983 cp_parser_error (parser
, "expected type-specifier");
11984 type_specifier_seq
->type
= error_mark_node
;
11987 /* If subsequent type-specifiers could not be found, the
11988 type-specifier-seq is complete. */
11992 seen_type_specifier
= true;
11993 /* The standard says that a condition can be:
11995 type-specifier-seq declarator = assignment-expression
12002 we should treat the "S" as a declarator, not as a
12003 type-specifier. The standard doesn't say that explicitly for
12004 type-specifier-seq, but it does say that for
12005 decl-specifier-seq in an ordinary declaration. Perhaps it
12006 would be clearer just to allow a decl-specifier-seq here, and
12007 then add a semantic restriction that if any decl-specifiers
12008 that are not type-specifiers appear, the program is invalid. */
12009 if (is_condition
&& !is_cv_qualifier
)
12010 flags
|= CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES
;
12013 cp_parser_check_decl_spec (type_specifier_seq
);
12016 /* Parse a parameter-declaration-clause.
12018 parameter-declaration-clause:
12019 parameter-declaration-list [opt] ... [opt]
12020 parameter-declaration-list , ...
12022 Returns a representation for the parameter declarations. A return
12023 value of NULL indicates a parameter-declaration-clause consisting
12024 only of an ellipsis. */
12026 static cp_parameter_declarator
*
12027 cp_parser_parameter_declaration_clause (cp_parser
* parser
)
12029 cp_parameter_declarator
*parameters
;
12034 /* Peek at the next token. */
12035 token
= cp_lexer_peek_token (parser
->lexer
);
12036 /* Check for trivial parameter-declaration-clauses. */
12037 if (token
->type
== CPP_ELLIPSIS
)
12039 /* Consume the `...' token. */
12040 cp_lexer_consume_token (parser
->lexer
);
12043 else if (token
->type
== CPP_CLOSE_PAREN
)
12044 /* There are no parameters. */
12046 #ifndef NO_IMPLICIT_EXTERN_C
12047 if (in_system_header
&& current_class_type
== NULL
12048 && current_lang_name
== lang_name_c
)
12052 return no_parameters
;
12054 /* Check for `(void)', too, which is a special case. */
12055 else if (token
->keyword
== RID_VOID
12056 && (cp_lexer_peek_nth_token (parser
->lexer
, 2)->type
12057 == CPP_CLOSE_PAREN
))
12059 /* Consume the `void' token. */
12060 cp_lexer_consume_token (parser
->lexer
);
12061 /* There are no parameters. */
12062 return no_parameters
;
12065 /* Parse the parameter-declaration-list. */
12066 parameters
= cp_parser_parameter_declaration_list (parser
, &is_error
);
12067 /* If a parse error occurred while parsing the
12068 parameter-declaration-list, then the entire
12069 parameter-declaration-clause is erroneous. */
12073 /* Peek at the next token. */
12074 token
= cp_lexer_peek_token (parser
->lexer
);
12075 /* If it's a `,', the clause should terminate with an ellipsis. */
12076 if (token
->type
== CPP_COMMA
)
12078 /* Consume the `,'. */
12079 cp_lexer_consume_token (parser
->lexer
);
12080 /* Expect an ellipsis. */
12082 = (cp_parser_require (parser
, CPP_ELLIPSIS
, "`...'") != NULL
);
12084 /* It might also be `...' if the optional trailing `,' was
12086 else if (token
->type
== CPP_ELLIPSIS
)
12088 /* Consume the `...' token. */
12089 cp_lexer_consume_token (parser
->lexer
);
12090 /* And remember that we saw it. */
12094 ellipsis_p
= false;
12096 /* Finish the parameter list. */
12097 if (parameters
&& ellipsis_p
)
12098 parameters
->ellipsis_p
= true;
12103 /* Parse a parameter-declaration-list.
12105 parameter-declaration-list:
12106 parameter-declaration
12107 parameter-declaration-list , parameter-declaration
12109 Returns a representation of the parameter-declaration-list, as for
12110 cp_parser_parameter_declaration_clause. However, the
12111 `void_list_node' is never appended to the list. Upon return,
12112 *IS_ERROR will be true iff an error occurred. */
12114 static cp_parameter_declarator
*
12115 cp_parser_parameter_declaration_list (cp_parser
* parser
, bool *is_error
)
12117 cp_parameter_declarator
*parameters
= NULL
;
12118 cp_parameter_declarator
**tail
= ¶meters
;
12119 bool saved_in_unbraced_linkage_specification_p
;
12121 /* Assume all will go well. */
12123 /* The special considerations that apply to a function within an
12124 unbraced linkage specifications do not apply to the parameters
12125 to the function. */
12126 saved_in_unbraced_linkage_specification_p
12127 = parser
->in_unbraced_linkage_specification_p
;
12128 parser
->in_unbraced_linkage_specification_p
= false;
12130 /* Look for more parameters. */
12133 cp_parameter_declarator
*parameter
;
12134 bool parenthesized_p
;
12135 /* Parse the parameter. */
12137 = cp_parser_parameter_declaration (parser
,
12138 /*template_parm_p=*/false,
12141 /* If a parse error occurred parsing the parameter declaration,
12142 then the entire parameter-declaration-list is erroneous. */
12149 /* Add the new parameter to the list. */
12151 tail
= ¶meter
->next
;
12153 /* Peek at the next token. */
12154 if (cp_lexer_next_token_is (parser
->lexer
, CPP_CLOSE_PAREN
)
12155 || cp_lexer_next_token_is (parser
->lexer
, CPP_ELLIPSIS
)
12156 /* These are for Objective-C++ */
12157 || cp_lexer_next_token_is (parser
->lexer
, CPP_SEMICOLON
)
12158 || cp_lexer_next_token_is (parser
->lexer
, CPP_OPEN_BRACE
))
12159 /* The parameter-declaration-list is complete. */
12161 else if (cp_lexer_next_token_is (parser
->lexer
, CPP_COMMA
))
12165 /* Peek at the next token. */
12166 token
= cp_lexer_peek_nth_token (parser
->lexer
, 2);
12167 /* If it's an ellipsis, then the list is complete. */
12168 if (token
->type
== CPP_ELLIPSIS
)
12170 /* Otherwise, there must be more parameters. Consume the
12172 cp_lexer_consume_token (parser
->lexer
);
12173 /* When parsing something like:
12175 int i(float f, double d)
12177 we can tell after seeing the declaration for "f" that we
12178 are not looking at an initialization of a variable "i",
12179 but rather at the declaration of a function "i".
12181 Due to the fact that the parsing of template arguments
12182 (as specified to a template-id) requires backtracking we
12183 cannot use this technique when inside a template argument
12185 if (!parser
->in_template_argument_list_p
12186 && !parser
->in_type_id_in_expr_p
12187 && cp_parser_uncommitted_to_tentative_parse_p (parser
)
12188 /* However, a parameter-declaration of the form
12189 "foat(f)" (which is a valid declaration of a
12190 parameter "f") can also be interpreted as an
12191 expression (the conversion of "f" to "float"). */
12192 && !parenthesized_p
)
12193 cp_parser_commit_to_tentative_parse (parser
);
12197 cp_parser_error (parser
, "expected %<,%> or %<...%>");
12198 if (!cp_parser_uncommitted_to_tentative_parse_p (parser
))
12199 cp_parser_skip_to_closing_parenthesis (parser
,
12200 /*recovering=*/true,
12201 /*or_comma=*/false,
12202 /*consume_paren=*/false);
12207 parser
->in_unbraced_linkage_specification_p
12208 = saved_in_unbraced_linkage_specification_p
;
12213 /* Parse a parameter declaration.
12215 parameter-declaration:
12216 decl-specifier-seq declarator
12217 decl-specifier-seq declarator = assignment-expression
12218 decl-specifier-seq abstract-declarator [opt]
12219 decl-specifier-seq abstract-declarator [opt] = assignment-expression
12221 If TEMPLATE_PARM_P is TRUE, then this parameter-declaration
12222 declares a template parameter. (In that case, a non-nested `>'
12223 token encountered during the parsing of the assignment-expression
12224 is not interpreted as a greater-than operator.)
12226 Returns a representation of the parameter, or NULL if an error
12227 occurs. If PARENTHESIZED_P is non-NULL, *PARENTHESIZED_P is set to
12228 true iff the declarator is of the form "(p)". */
12230 static cp_parameter_declarator
*
12231 cp_parser_parameter_declaration (cp_parser
*parser
,
12232 bool template_parm_p
,
12233 bool *parenthesized_p
)
12235 int declares_class_or_enum
;
12236 bool greater_than_is_operator_p
;
12237 cp_decl_specifier_seq decl_specifiers
;
12238 cp_declarator
*declarator
;
12239 tree default_argument
;
12241 const char *saved_message
;
12243 /* In a template parameter, `>' is not an operator.
12247 When parsing a default template-argument for a non-type
12248 template-parameter, the first non-nested `>' is taken as the end
12249 of the template parameter-list rather than a greater-than
12251 greater_than_is_operator_p
= !template_parm_p
;
12253 /* Type definitions may not appear in parameter types. */
12254 saved_message
= parser
->type_definition_forbidden_message
;
12255 parser
->type_definition_forbidden_message
12256 = "types may not be defined in parameter types";
12258 /* Parse the declaration-specifiers. */
12259 cp_parser_decl_specifier_seq (parser
,
12260 CP_PARSER_FLAGS_NONE
,
12262 &declares_class_or_enum
);
12263 /* If an error occurred, there's no reason to attempt to parse the
12264 rest of the declaration. */
12265 if (cp_parser_error_occurred (parser
))
12267 parser
->type_definition_forbidden_message
= saved_message
;
12271 /* Peek at the next token. */
12272 token
= cp_lexer_peek_token (parser
->lexer
);
12273 /* If the next token is a `)', `,', `=', `>', or `...', then there
12274 is no declarator. */
12275 if (token
->type
== CPP_CLOSE_PAREN
12276 || token
->type
== CPP_COMMA
12277 || token
->type
== CPP_EQ
12278 || token
->type
== CPP_ELLIPSIS
12279 || token
->type
== CPP_GREATER
)
12282 if (parenthesized_p
)
12283 *parenthesized_p
= false;
12285 /* Otherwise, there should be a declarator. */
12288 bool saved_default_arg_ok_p
= parser
->default_arg_ok_p
;
12289 parser
->default_arg_ok_p
= false;
12291 /* After seeing a decl-specifier-seq, if the next token is not a
12292 "(", there is no possibility that the code is a valid
12293 expression. Therefore, if parsing tentatively, we commit at
12295 if (!parser
->in_template_argument_list_p
12296 /* In an expression context, having seen:
12300 we cannot be sure whether we are looking at a
12301 function-type (taking a "char" as a parameter) or a cast
12302 of some object of type "char" to "int". */
12303 && !parser
->in_type_id_in_expr_p
12304 && cp_parser_uncommitted_to_tentative_parse_p (parser
)
12305 && cp_lexer_next_token_is_not (parser
->lexer
, CPP_OPEN_PAREN
))
12306 cp_parser_commit_to_tentative_parse (parser
);
12307 /* Parse the declarator. */
12308 declarator
= cp_parser_declarator (parser
,
12309 CP_PARSER_DECLARATOR_EITHER
,
12310 /*ctor_dtor_or_conv_p=*/NULL
,
12312 /*member_p=*/false);
12313 parser
->default_arg_ok_p
= saved_default_arg_ok_p
;
12314 /* After the declarator, allow more attributes. */
12315 decl_specifiers
.attributes
12316 = chainon (decl_specifiers
.attributes
,
12317 cp_parser_attributes_opt (parser
));
12320 /* The restriction on defining new types applies only to the type
12321 of the parameter, not to the default argument. */
12322 parser
->type_definition_forbidden_message
= saved_message
;
12324 /* If the next token is `=', then process a default argument. */
12325 if (cp_lexer_next_token_is (parser
->lexer
, CPP_EQ
))
12327 bool saved_greater_than_is_operator_p
;
12328 /* Consume the `='. */
12329 cp_lexer_consume_token (parser
->lexer
);
12331 /* If we are defining a class, then the tokens that make up the
12332 default argument must be saved and processed later. */
12333 if (!template_parm_p
&& at_class_scope_p ()
12334 && TYPE_BEING_DEFINED (current_class_type
))
12336 unsigned depth
= 0;
12337 cp_token
*first_token
;
12340 /* Add tokens until we have processed the entire default
12341 argument. We add the range [first_token, token). */
12342 first_token
= cp_lexer_peek_token (parser
->lexer
);
12347 /* Peek at the next token. */
12348 token
= cp_lexer_peek_token (parser
->lexer
);
12349 /* What we do depends on what token we have. */
12350 switch (token
->type
)
12352 /* In valid code, a default argument must be
12353 immediately followed by a `,' `)', or `...'. */
12355 case CPP_CLOSE_PAREN
:
12357 /* If we run into a non-nested `;', `}', or `]',
12358 then the code is invalid -- but the default
12359 argument is certainly over. */
12360 case CPP_SEMICOLON
:
12361 case CPP_CLOSE_BRACE
:
12362 case CPP_CLOSE_SQUARE
:
12365 /* Update DEPTH, if necessary. */
12366 else if (token
->type
== CPP_CLOSE_PAREN
12367 || token
->type
== CPP_CLOSE_BRACE
12368 || token
->type
== CPP_CLOSE_SQUARE
)
12372 case CPP_OPEN_PAREN
:
12373 case CPP_OPEN_SQUARE
:
12374 case CPP_OPEN_BRACE
:
12379 /* If we see a non-nested `>', and `>' is not an
12380 operator, then it marks the end of the default
12382 if (!depth
&& !greater_than_is_operator_p
)
12386 /* If we run out of tokens, issue an error message. */
12388 case CPP_PRAGMA_EOL
:
12389 error ("file ends in default argument");
12395 /* In these cases, we should look for template-ids.
12396 For example, if the default argument is
12397 `X<int, double>()', we need to do name lookup to
12398 figure out whether or not `X' is a template; if
12399 so, the `,' does not end the default argument.
12401 That is not yet done. */
12408 /* If we've reached the end, stop. */
12412 /* Add the token to the token block. */
12413 token
= cp_lexer_consume_token (parser
->lexer
);
12416 /* Create a DEFAULT_ARG to represented the unparsed default
12418 default_argument
= make_node (DEFAULT_ARG
);
12419 DEFARG_TOKENS (default_argument
)
12420 = cp_token_cache_new (first_token
, token
);
12421 DEFARG_INSTANTIATIONS (default_argument
) = NULL
;
12423 /* Outside of a class definition, we can just parse the
12424 assignment-expression. */
12427 bool saved_local_variables_forbidden_p
;
12429 /* Make sure that PARSER->GREATER_THAN_IS_OPERATOR_P is
12431 saved_greater_than_is_operator_p
12432 = parser
->greater_than_is_operator_p
;
12433 parser
->greater_than_is_operator_p
= greater_than_is_operator_p
;
12434 /* Local variable names (and the `this' keyword) may not
12435 appear in a default argument. */
12436 saved_local_variables_forbidden_p
12437 = parser
->local_variables_forbidden_p
;
12438 parser
->local_variables_forbidden_p
= true;
12439 /* The default argument expression may cause implicitly
12440 defined member functions to be synthesized, which will
12441 result in garbage collection. We must treat this
12442 situation as if we were within the body of function so as
12443 to avoid collecting live data on the stack. */
12445 /* Parse the assignment-expression. */
12446 if (template_parm_p
)
12447 push_deferring_access_checks (dk_no_deferred
);
12449 = cp_parser_assignment_expression (parser
, /*cast_p=*/false);
12450 if (template_parm_p
)
12451 pop_deferring_access_checks ();
12452 /* Restore saved state. */
12454 parser
->greater_than_is_operator_p
12455 = saved_greater_than_is_operator_p
;
12456 parser
->local_variables_forbidden_p
12457 = saved_local_variables_forbidden_p
;
12459 if (!parser
->default_arg_ok_p
)
12461 if (!flag_pedantic_errors
)
12462 warning (0, "deprecated use of default argument for parameter of non-function");
12465 error ("default arguments are only permitted for function parameters");
12466 default_argument
= NULL_TREE
;
12471 default_argument
= NULL_TREE
;
12473 return make_parameter_declarator (&decl_specifiers
,
12478 /* Parse a function-body.
12481 compound_statement */
12484 cp_parser_function_body (cp_parser
*parser
)
12486 cp_parser_compound_statement (parser
, NULL
, false);
12489 /* Parse a ctor-initializer-opt followed by a function-body. Return
12490 true if a ctor-initializer was present. */
12493 cp_parser_ctor_initializer_opt_and_function_body (cp_parser
*parser
)
12496 bool ctor_initializer_p
;
12498 /* Begin the function body. */
12499 body
= begin_function_body ();
12500 /* Parse the optional ctor-initializer. */
12501 ctor_initializer_p
= cp_parser_ctor_initializer_opt (parser
);
12502 /* Parse the function-body. */
12503 cp_parser_function_body (parser
);
12504 /* Finish the function body. */
12505 finish_function_body (body
);
12507 return ctor_initializer_p
;
12510 /* Parse an initializer.
12513 = initializer-clause
12514 ( expression-list )
12516 Returns an expression representing the initializer. If no
12517 initializer is present, NULL_TREE is returned.
12519 *IS_PARENTHESIZED_INIT is set to TRUE if the `( expression-list )'
12520 production is used, and zero otherwise. *IS_PARENTHESIZED_INIT is
12521 set to FALSE if there is no initializer present. If there is an
12522 initializer, and it is not a constant-expression, *NON_CONSTANT_P
12523 is set to true; otherwise it is set to false. */
12526 cp_parser_initializer (cp_parser
* parser
, bool* is_parenthesized_init
,
12527 bool* non_constant_p
)
12532 /* Peek at the next token. */
12533 token
= cp_lexer_peek_token (parser
->lexer
);
12535 /* Let our caller know whether or not this initializer was
12537 *is_parenthesized_init
= (token
->type
== CPP_OPEN_PAREN
);
12538 /* Assume that the initializer is constant. */
12539 *non_constant_p
= false;
12541 if (token
->type
== CPP_EQ
)
12543 /* Consume the `='. */
12544 cp_lexer_consume_token (parser
->lexer
);
12545 /* Parse the initializer-clause. */
12546 init
= cp_parser_initializer_clause (parser
, non_constant_p
);
12548 else if (token
->type
== CPP_OPEN_PAREN
)
12549 init
= cp_parser_parenthesized_expression_list (parser
, false,
12554 /* Anything else is an error. */
12555 cp_parser_error (parser
, "expected initializer");
12556 init
= error_mark_node
;
12562 /* Parse an initializer-clause.
12564 initializer-clause:
12565 assignment-expression
12566 { initializer-list , [opt] }
12569 Returns an expression representing the initializer.
12571 If the `assignment-expression' production is used the value
12572 returned is simply a representation for the expression.
12574 Otherwise, a CONSTRUCTOR is returned. The CONSTRUCTOR_ELTS will be
12575 the elements of the initializer-list (or NULL, if the last
12576 production is used). The TREE_TYPE for the CONSTRUCTOR will be
12577 NULL_TREE. There is no way to detect whether or not the optional
12578 trailing `,' was provided. NON_CONSTANT_P is as for
12579 cp_parser_initializer. */
12582 cp_parser_initializer_clause (cp_parser
* parser
, bool* non_constant_p
)
12586 /* Assume the expression is constant. */
12587 *non_constant_p
= false;
12589 /* If it is not a `{', then we are looking at an
12590 assignment-expression. */
12591 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_OPEN_BRACE
))
12594 = cp_parser_constant_expression (parser
,
12595 /*allow_non_constant_p=*/true,
12597 if (!*non_constant_p
)
12598 initializer
= fold_non_dependent_expr (initializer
);
12602 /* Consume the `{' token. */
12603 cp_lexer_consume_token (parser
->lexer
);
12604 /* Create a CONSTRUCTOR to represent the braced-initializer. */
12605 initializer
= make_node (CONSTRUCTOR
);
12606 /* If it's not a `}', then there is a non-trivial initializer. */
12607 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_CLOSE_BRACE
))
12609 /* Parse the initializer list. */
12610 CONSTRUCTOR_ELTS (initializer
)
12611 = cp_parser_initializer_list (parser
, non_constant_p
);
12612 /* A trailing `,' token is allowed. */
12613 if (cp_lexer_next_token_is (parser
->lexer
, CPP_COMMA
))
12614 cp_lexer_consume_token (parser
->lexer
);
12616 /* Now, there should be a trailing `}'. */
12617 cp_parser_require (parser
, CPP_CLOSE_BRACE
, "`}'");
12620 return initializer
;
12623 /* Parse an initializer-list.
12627 initializer-list , initializer-clause
12632 identifier : initializer-clause
12633 initializer-list, identifier : initializer-clause
12635 Returns a VEC of constructor_elt. The VALUE of each elt is an expression
12636 for the initializer. If the INDEX of the elt is non-NULL, it is the
12637 IDENTIFIER_NODE naming the field to initialize. NON_CONSTANT_P is
12638 as for cp_parser_initializer. */
12640 static VEC(constructor_elt
,gc
) *
12641 cp_parser_initializer_list (cp_parser
* parser
, bool* non_constant_p
)
12643 VEC(constructor_elt
,gc
) *v
= NULL
;
12645 /* Assume all of the expressions are constant. */
12646 *non_constant_p
= false;
12648 /* Parse the rest of the list. */
12654 bool clause_non_constant_p
;
12656 /* If the next token is an identifier and the following one is a
12657 colon, we are looking at the GNU designated-initializer
12659 if (cp_parser_allow_gnu_extensions_p (parser
)
12660 && cp_lexer_next_token_is (parser
->lexer
, CPP_NAME
)
12661 && cp_lexer_peek_nth_token (parser
->lexer
, 2)->type
== CPP_COLON
)
12663 /* Consume the identifier. */
12664 identifier
= cp_lexer_consume_token (parser
->lexer
)->value
;
12665 /* Consume the `:'. */
12666 cp_lexer_consume_token (parser
->lexer
);
12669 identifier
= NULL_TREE
;
12671 /* Parse the initializer. */
12672 initializer
= cp_parser_initializer_clause (parser
,
12673 &clause_non_constant_p
);
12674 /* If any clause is non-constant, so is the entire initializer. */
12675 if (clause_non_constant_p
)
12676 *non_constant_p
= true;
12678 /* Add it to the vector. */
12679 CONSTRUCTOR_APPEND_ELT(v
, identifier
, initializer
);
12681 /* If the next token is not a comma, we have reached the end of
12683 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_COMMA
))
12686 /* Peek at the next token. */
12687 token
= cp_lexer_peek_nth_token (parser
->lexer
, 2);
12688 /* If the next token is a `}', then we're still done. An
12689 initializer-clause can have a trailing `,' after the
12690 initializer-list and before the closing `}'. */
12691 if (token
->type
== CPP_CLOSE_BRACE
)
12694 /* Consume the `,' token. */
12695 cp_lexer_consume_token (parser
->lexer
);
12701 /* Classes [gram.class] */
12703 /* Parse a class-name.
12709 TYPENAME_KEYWORD_P is true iff the `typename' keyword has been used
12710 to indicate that names looked up in dependent types should be
12711 assumed to be types. TEMPLATE_KEYWORD_P is true iff the `template'
12712 keyword has been used to indicate that the name that appears next
12713 is a template. TAG_TYPE indicates the explicit tag given before
12714 the type name, if any. If CHECK_DEPENDENCY_P is FALSE, names are
12715 looked up in dependent scopes. If CLASS_HEAD_P is TRUE, this class
12716 is the class being defined in a class-head.
12718 Returns the TYPE_DECL representing the class. */
12721 cp_parser_class_name (cp_parser
*parser
,
12722 bool typename_keyword_p
,
12723 bool template_keyword_p
,
12724 enum tag_types tag_type
,
12725 bool check_dependency_p
,
12727 bool is_declaration
)
12734 /* All class-names start with an identifier. */
12735 token
= cp_lexer_peek_token (parser
->lexer
);
12736 if (token
->type
!= CPP_NAME
&& token
->type
!= CPP_TEMPLATE_ID
)
12738 cp_parser_error (parser
, "expected class-name");
12739 return error_mark_node
;
12742 /* PARSER->SCOPE can be cleared when parsing the template-arguments
12743 to a template-id, so we save it here. */
12744 scope
= parser
->scope
;
12745 if (scope
== error_mark_node
)
12746 return error_mark_node
;
12748 /* Any name names a type if we're following the `typename' keyword
12749 in a qualified name where the enclosing scope is type-dependent. */
12750 typename_p
= (typename_keyword_p
&& scope
&& TYPE_P (scope
)
12751 && dependent_type_p (scope
));
12752 /* Handle the common case (an identifier, but not a template-id)
12754 if (token
->type
== CPP_NAME
12755 && !cp_parser_nth_token_starts_template_argument_list_p (parser
, 2))
12757 cp_token
*identifier_token
;
12761 /* Look for the identifier. */
12762 identifier_token
= cp_lexer_peek_token (parser
->lexer
);
12763 ambiguous_p
= identifier_token
->ambiguous_p
;
12764 identifier
= cp_parser_identifier (parser
);
12765 /* If the next token isn't an identifier, we are certainly not
12766 looking at a class-name. */
12767 if (identifier
== error_mark_node
)
12768 decl
= error_mark_node
;
12769 /* If we know this is a type-name, there's no need to look it
12771 else if (typename_p
)
12775 tree ambiguous_decls
;
12776 /* If we already know that this lookup is ambiguous, then
12777 we've already issued an error message; there's no reason
12781 cp_parser_simulate_error (parser
);
12782 return error_mark_node
;
12784 /* If the next token is a `::', then the name must be a type
12787 [basic.lookup.qual]
12789 During the lookup for a name preceding the :: scope
12790 resolution operator, object, function, and enumerator
12791 names are ignored. */
12792 if (cp_lexer_next_token_is (parser
->lexer
, CPP_SCOPE
))
12793 tag_type
= typename_type
;
12794 /* Look up the name. */
12795 decl
= cp_parser_lookup_name (parser
, identifier
,
12797 /*is_template=*/false,
12798 /*is_namespace=*/false,
12799 check_dependency_p
,
12801 if (ambiguous_decls
)
12803 error ("reference to %qD is ambiguous", identifier
);
12804 print_candidates (ambiguous_decls
);
12805 if (cp_parser_parsing_tentatively (parser
))
12807 identifier_token
->ambiguous_p
= true;
12808 cp_parser_simulate_error (parser
);
12810 return error_mark_node
;
12816 /* Try a template-id. */
12817 decl
= cp_parser_template_id (parser
, template_keyword_p
,
12818 check_dependency_p
,
12820 if (decl
== error_mark_node
)
12821 return error_mark_node
;
12824 decl
= cp_parser_maybe_treat_template_as_class (decl
, class_head_p
);
12826 /* If this is a typename, create a TYPENAME_TYPE. */
12827 if (typename_p
&& decl
!= error_mark_node
)
12829 decl
= make_typename_type (scope
, decl
, typename_type
,
12830 /*complain=*/tf_error
);
12831 if (decl
!= error_mark_node
)
12832 decl
= TYPE_NAME (decl
);
12835 /* Check to see that it is really the name of a class. */
12836 if (TREE_CODE (decl
) == TEMPLATE_ID_EXPR
12837 && TREE_CODE (TREE_OPERAND (decl
, 0)) == IDENTIFIER_NODE
12838 && cp_lexer_next_token_is (parser
->lexer
, CPP_SCOPE
))
12839 /* Situations like this:
12841 template <typename T> struct A {
12842 typename T::template X<int>::I i;
12845 are problematic. Is `T::template X<int>' a class-name? The
12846 standard does not seem to be definitive, but there is no other
12847 valid interpretation of the following `::'. Therefore, those
12848 names are considered class-names. */
12850 decl
= make_typename_type (scope
, decl
, tag_type
, tf_error
);
12851 if (decl
!= error_mark_node
)
12852 decl
= TYPE_NAME (decl
);
12854 else if (TREE_CODE (decl
) != TYPE_DECL
12855 || TREE_TYPE (decl
) == error_mark_node
12856 || !IS_AGGR_TYPE (TREE_TYPE (decl
)))
12857 decl
= error_mark_node
;
12859 if (decl
== error_mark_node
)
12860 cp_parser_error (parser
, "expected class-name");
12865 /* Parse a class-specifier.
12868 class-head { member-specification [opt] }
12870 Returns the TREE_TYPE representing the class. */
12873 cp_parser_class_specifier (cp_parser
* parser
)
12877 tree attributes
= NULL_TREE
;
12878 int has_trailing_semicolon
;
12879 bool nested_name_specifier_p
;
12880 unsigned saved_num_template_parameter_lists
;
12881 tree old_scope
= NULL_TREE
;
12882 tree scope
= NULL_TREE
;
12884 push_deferring_access_checks (dk_no_deferred
);
12886 /* Parse the class-head. */
12887 type
= cp_parser_class_head (parser
,
12888 &nested_name_specifier_p
,
12890 /* If the class-head was a semantic disaster, skip the entire body
12894 cp_parser_skip_to_end_of_block_or_statement (parser
);
12895 pop_deferring_access_checks ();
12896 return error_mark_node
;
12899 /* Look for the `{'. */
12900 if (!cp_parser_require (parser
, CPP_OPEN_BRACE
, "`{'"))
12902 pop_deferring_access_checks ();
12903 return error_mark_node
;
12906 /* Issue an error message if type-definitions are forbidden here. */
12907 cp_parser_check_type_definition (parser
);
12908 /* Remember that we are defining one more class. */
12909 ++parser
->num_classes_being_defined
;
12910 /* Inside the class, surrounding template-parameter-lists do not
12912 saved_num_template_parameter_lists
12913 = parser
->num_template_parameter_lists
;
12914 parser
->num_template_parameter_lists
= 0;
12916 /* Start the class. */
12917 if (nested_name_specifier_p
)
12919 scope
= CP_DECL_CONTEXT (TYPE_MAIN_DECL (type
));
12920 old_scope
= push_inner_scope (scope
);
12922 type
= begin_class_definition (type
, attributes
);
12924 if (type
== error_mark_node
)
12925 /* If the type is erroneous, skip the entire body of the class. */
12926 cp_parser_skip_to_closing_brace (parser
);
12928 /* Parse the member-specification. */
12929 cp_parser_member_specification_opt (parser
);
12931 /* Look for the trailing `}'. */
12932 cp_parser_require (parser
, CPP_CLOSE_BRACE
, "`}'");
12933 /* We get better error messages by noticing a common problem: a
12934 missing trailing `;'. */
12935 token
= cp_lexer_peek_token (parser
->lexer
);
12936 has_trailing_semicolon
= (token
->type
== CPP_SEMICOLON
);
12937 /* Look for trailing attributes to apply to this class. */
12938 if (cp_parser_allow_gnu_extensions_p (parser
))
12939 attributes
= cp_parser_attributes_opt (parser
);
12940 if (type
!= error_mark_node
)
12941 type
= finish_struct (type
, attributes
);
12942 if (nested_name_specifier_p
)
12943 pop_inner_scope (old_scope
, scope
);
12944 /* If this class is not itself within the scope of another class,
12945 then we need to parse the bodies of all of the queued function
12946 definitions. Note that the queued functions defined in a class
12947 are not always processed immediately following the
12948 class-specifier for that class. Consider:
12951 struct B { void f() { sizeof (A); } };
12954 If `f' were processed before the processing of `A' were
12955 completed, there would be no way to compute the size of `A'.
12956 Note that the nesting we are interested in here is lexical --
12957 not the semantic nesting given by TYPE_CONTEXT. In particular,
12960 struct A { struct B; };
12961 struct A::B { void f() { } };
12963 there is no need to delay the parsing of `A::B::f'. */
12964 if (--parser
->num_classes_being_defined
== 0)
12968 tree class_type
= NULL_TREE
;
12969 tree pushed_scope
= NULL_TREE
;
12971 /* In a first pass, parse default arguments to the functions.
12972 Then, in a second pass, parse the bodies of the functions.
12973 This two-phased approach handles cases like:
12981 for (TREE_PURPOSE (parser
->unparsed_functions_queues
)
12982 = nreverse (TREE_PURPOSE (parser
->unparsed_functions_queues
));
12983 (queue_entry
= TREE_PURPOSE (parser
->unparsed_functions_queues
));
12984 TREE_PURPOSE (parser
->unparsed_functions_queues
)
12985 = TREE_CHAIN (TREE_PURPOSE (parser
->unparsed_functions_queues
)))
12987 fn
= TREE_VALUE (queue_entry
);
12988 /* If there are default arguments that have not yet been processed,
12989 take care of them now. */
12990 if (class_type
!= TREE_PURPOSE (queue_entry
))
12993 pop_scope (pushed_scope
);
12994 class_type
= TREE_PURPOSE (queue_entry
);
12995 pushed_scope
= push_scope (class_type
);
12997 /* Make sure that any template parameters are in scope. */
12998 maybe_begin_member_template_processing (fn
);
12999 /* Parse the default argument expressions. */
13000 cp_parser_late_parsing_default_args (parser
, fn
);
13001 /* Remove any template parameters from the symbol table. */
13002 maybe_end_member_template_processing ();
13005 pop_scope (pushed_scope
);
13006 /* Now parse the body of the functions. */
13007 for (TREE_VALUE (parser
->unparsed_functions_queues
)
13008 = nreverse (TREE_VALUE (parser
->unparsed_functions_queues
));
13009 (queue_entry
= TREE_VALUE (parser
->unparsed_functions_queues
));
13010 TREE_VALUE (parser
->unparsed_functions_queues
)
13011 = TREE_CHAIN (TREE_VALUE (parser
->unparsed_functions_queues
)))
13013 /* Figure out which function we need to process. */
13014 fn
= TREE_VALUE (queue_entry
);
13015 /* Parse the function. */
13016 cp_parser_late_parsing_for_member (parser
, fn
);
13020 /* Put back any saved access checks. */
13021 pop_deferring_access_checks ();
13023 /* Restore the count of active template-parameter-lists. */
13024 parser
->num_template_parameter_lists
13025 = saved_num_template_parameter_lists
;
13030 /* Parse a class-head.
13033 class-key identifier [opt] base-clause [opt]
13034 class-key nested-name-specifier identifier base-clause [opt]
13035 class-key nested-name-specifier [opt] template-id
13039 class-key attributes identifier [opt] base-clause [opt]
13040 class-key attributes nested-name-specifier identifier base-clause [opt]
13041 class-key attributes nested-name-specifier [opt] template-id
13044 Returns the TYPE of the indicated class. Sets
13045 *NESTED_NAME_SPECIFIER_P to TRUE iff one of the productions
13046 involving a nested-name-specifier was used, and FALSE otherwise.
13048 Returns error_mark_node if this is not a class-head.
13050 Returns NULL_TREE if the class-head is syntactically valid, but
13051 semantically invalid in a way that means we should skip the entire
13052 body of the class. */
13055 cp_parser_class_head (cp_parser
* parser
,
13056 bool* nested_name_specifier_p
,
13057 tree
*attributes_p
)
13059 tree nested_name_specifier
;
13060 enum tag_types class_key
;
13061 tree id
= NULL_TREE
;
13062 tree type
= NULL_TREE
;
13064 bool template_id_p
= false;
13065 bool qualified_p
= false;
13066 bool invalid_nested_name_p
= false;
13067 bool invalid_explicit_specialization_p
= false;
13068 tree pushed_scope
= NULL_TREE
;
13069 unsigned num_templates
;
13072 /* Assume no nested-name-specifier will be present. */
13073 *nested_name_specifier_p
= false;
13074 /* Assume no template parameter lists will be used in defining the
13078 /* Look for the class-key. */
13079 class_key
= cp_parser_class_key (parser
);
13080 if (class_key
== none_type
)
13081 return error_mark_node
;
13083 /* Parse the attributes. */
13084 attributes
= cp_parser_attributes_opt (parser
);
13086 /* If the next token is `::', that is invalid -- but sometimes
13087 people do try to write:
13091 Handle this gracefully by accepting the extra qualifier, and then
13092 issuing an error about it later if this really is a
13093 class-head. If it turns out just to be an elaborated type
13094 specifier, remain silent. */
13095 if (cp_parser_global_scope_opt (parser
, /*current_scope_valid_p=*/false))
13096 qualified_p
= true;
13098 push_deferring_access_checks (dk_no_check
);
13100 /* Determine the name of the class. Begin by looking for an
13101 optional nested-name-specifier. */
13102 nested_name_specifier
13103 = cp_parser_nested_name_specifier_opt (parser
,
13104 /*typename_keyword_p=*/false,
13105 /*check_dependency_p=*/false,
13107 /*is_declaration=*/false);
13108 /* If there was a nested-name-specifier, then there *must* be an
13110 if (nested_name_specifier
)
13112 /* Although the grammar says `identifier', it really means
13113 `class-name' or `template-name'. You are only allowed to
13114 define a class that has already been declared with this
13117 The proposed resolution for Core Issue 180 says that wherever
13118 you see `class T::X' you should treat `X' as a type-name.
13120 It is OK to define an inaccessible class; for example:
13122 class A { class B; };
13125 We do not know if we will see a class-name, or a
13126 template-name. We look for a class-name first, in case the
13127 class-name is a template-id; if we looked for the
13128 template-name first we would stop after the template-name. */
13129 cp_parser_parse_tentatively (parser
);
13130 type
= cp_parser_class_name (parser
,
13131 /*typename_keyword_p=*/false,
13132 /*template_keyword_p=*/false,
13134 /*check_dependency_p=*/false,
13135 /*class_head_p=*/true,
13136 /*is_declaration=*/false);
13137 /* If that didn't work, ignore the nested-name-specifier. */
13138 if (!cp_parser_parse_definitely (parser
))
13140 invalid_nested_name_p
= true;
13141 id
= cp_parser_identifier (parser
);
13142 if (id
== error_mark_node
)
13145 /* If we could not find a corresponding TYPE, treat this
13146 declaration like an unqualified declaration. */
13147 if (type
== error_mark_node
)
13148 nested_name_specifier
= NULL_TREE
;
13149 /* Otherwise, count the number of templates used in TYPE and its
13150 containing scopes. */
13155 for (scope
= TREE_TYPE (type
);
13156 scope
&& TREE_CODE (scope
) != NAMESPACE_DECL
;
13157 scope
= (TYPE_P (scope
)
13158 ? TYPE_CONTEXT (scope
)
13159 : DECL_CONTEXT (scope
)))
13161 && CLASS_TYPE_P (scope
)
13162 && CLASSTYPE_TEMPLATE_INFO (scope
)
13163 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (scope
))
13164 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (scope
))
13168 /* Otherwise, the identifier is optional. */
13171 /* We don't know whether what comes next is a template-id,
13172 an identifier, or nothing at all. */
13173 cp_parser_parse_tentatively (parser
);
13174 /* Check for a template-id. */
13175 id
= cp_parser_template_id (parser
,
13176 /*template_keyword_p=*/false,
13177 /*check_dependency_p=*/true,
13178 /*is_declaration=*/true);
13179 /* If that didn't work, it could still be an identifier. */
13180 if (!cp_parser_parse_definitely (parser
))
13182 if (cp_lexer_next_token_is (parser
->lexer
, CPP_NAME
))
13183 id
= cp_parser_identifier (parser
);
13189 template_id_p
= true;
13194 pop_deferring_access_checks ();
13197 cp_parser_check_for_invalid_template_id (parser
, id
);
13199 /* If it's not a `:' or a `{' then we can't really be looking at a
13200 class-head, since a class-head only appears as part of a
13201 class-specifier. We have to detect this situation before calling
13202 xref_tag, since that has irreversible side-effects. */
13203 if (!cp_parser_next_token_starts_class_definition_p (parser
))
13205 cp_parser_error (parser
, "expected %<{%> or %<:%>");
13206 return error_mark_node
;
13209 /* At this point, we're going ahead with the class-specifier, even
13210 if some other problem occurs. */
13211 cp_parser_commit_to_tentative_parse (parser
);
13212 /* Issue the error about the overly-qualified name now. */
13214 cp_parser_error (parser
,
13215 "global qualification of class name is invalid");
13216 else if (invalid_nested_name_p
)
13217 cp_parser_error (parser
,
13218 "qualified name does not name a class");
13219 else if (nested_name_specifier
)
13223 /* Reject typedef-names in class heads. */
13224 if (!DECL_IMPLICIT_TYPEDEF_P (type
))
13226 error ("invalid class name in declaration of %qD", type
);
13231 /* Figure out in what scope the declaration is being placed. */
13232 scope
= current_scope ();
13233 /* If that scope does not contain the scope in which the
13234 class was originally declared, the program is invalid. */
13235 if (scope
&& !is_ancestor (scope
, nested_name_specifier
))
13237 error ("declaration of %qD in %qD which does not enclose %qD",
13238 type
, scope
, nested_name_specifier
);
13244 A declarator-id shall not be qualified exception of the
13245 definition of a ... nested class outside of its class
13246 ... [or] a the definition or explicit instantiation of a
13247 class member of a namespace outside of its namespace. */
13248 if (scope
== nested_name_specifier
)
13250 pedwarn ("extra qualification ignored");
13251 nested_name_specifier
= NULL_TREE
;
13255 /* An explicit-specialization must be preceded by "template <>". If
13256 it is not, try to recover gracefully. */
13257 if (at_namespace_scope_p ()
13258 && parser
->num_template_parameter_lists
== 0
13261 error ("an explicit specialization must be preceded by %<template <>%>");
13262 invalid_explicit_specialization_p
= true;
13263 /* Take the same action that would have been taken by
13264 cp_parser_explicit_specialization. */
13265 ++parser
->num_template_parameter_lists
;
13266 begin_specialization ();
13268 /* There must be no "return" statements between this point and the
13269 end of this function; set "type "to the correct return value and
13270 use "goto done;" to return. */
13271 /* Make sure that the right number of template parameters were
13273 if (!cp_parser_check_template_parameters (parser
, num_templates
))
13275 /* If something went wrong, there is no point in even trying to
13276 process the class-definition. */
13281 /* Look up the type. */
13284 type
= TREE_TYPE (id
);
13285 maybe_process_partial_specialization (type
);
13286 if (nested_name_specifier
)
13287 pushed_scope
= push_scope (nested_name_specifier
);
13289 else if (nested_name_specifier
)
13295 template <typename T> struct S { struct T };
13296 template <typename T> struct S<T>::T { };
13298 we will get a TYPENAME_TYPE when processing the definition of
13299 `S::T'. We need to resolve it to the actual type before we
13300 try to define it. */
13301 if (TREE_CODE (TREE_TYPE (type
)) == TYPENAME_TYPE
)
13303 class_type
= resolve_typename_type (TREE_TYPE (type
),
13304 /*only_current_p=*/false);
13305 if (class_type
!= error_mark_node
)
13306 type
= TYPE_NAME (class_type
);
13309 cp_parser_error (parser
, "could not resolve typename type");
13310 type
= error_mark_node
;
13314 maybe_process_partial_specialization (TREE_TYPE (type
));
13315 class_type
= current_class_type
;
13316 /* Enter the scope indicated by the nested-name-specifier. */
13317 pushed_scope
= push_scope (nested_name_specifier
);
13318 /* Get the canonical version of this type. */
13319 type
= TYPE_MAIN_DECL (TREE_TYPE (type
));
13320 if (PROCESSING_REAL_TEMPLATE_DECL_P ()
13321 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (type
)))
13323 type
= push_template_decl (type
);
13324 if (type
== error_mark_node
)
13331 type
= TREE_TYPE (type
);
13332 *nested_name_specifier_p
= true;
13334 else /* The name is not a nested name. */
13336 /* If the class was unnamed, create a dummy name. */
13338 id
= make_anon_name ();
13339 type
= xref_tag (class_key
, id
, /*tag_scope=*/ts_current
,
13340 parser
->num_template_parameter_lists
);
13343 /* Indicate whether this class was declared as a `class' or as a
13345 if (TREE_CODE (type
) == RECORD_TYPE
)
13346 CLASSTYPE_DECLARED_CLASS (type
) = (class_key
== class_type
);
13347 cp_parser_check_class_key (class_key
, type
);
13349 /* If this type was already complete, and we see another definition,
13350 that's an error. */
13351 if (type
!= error_mark_node
&& COMPLETE_TYPE_P (type
))
13353 error ("redefinition of %q#T", type
);
13354 error ("previous definition of %q+#T", type
);
13359 /* We will have entered the scope containing the class; the names of
13360 base classes should be looked up in that context. For example:
13362 struct A { struct B {}; struct C; };
13363 struct A::C : B {};
13368 /* Get the list of base-classes, if there is one. */
13369 if (cp_lexer_next_token_is (parser
->lexer
, CPP_COLON
))
13370 bases
= cp_parser_base_clause (parser
);
13372 /* Process the base classes. */
13373 xref_basetypes (type
, bases
);
13376 /* Leave the scope given by the nested-name-specifier. We will
13377 enter the class scope itself while processing the members. */
13379 pop_scope (pushed_scope
);
13381 if (invalid_explicit_specialization_p
)
13383 end_specialization ();
13384 --parser
->num_template_parameter_lists
;
13386 *attributes_p
= attributes
;
13390 /* Parse a class-key.
13397 Returns the kind of class-key specified, or none_type to indicate
13400 static enum tag_types
13401 cp_parser_class_key (cp_parser
* parser
)
13404 enum tag_types tag_type
;
13406 /* Look for the class-key. */
13407 token
= cp_parser_require (parser
, CPP_KEYWORD
, "class-key");
13411 /* Check to see if the TOKEN is a class-key. */
13412 tag_type
= cp_parser_token_is_class_key (token
);
13414 cp_parser_error (parser
, "expected class-key");
13418 /* Parse an (optional) member-specification.
13420 member-specification:
13421 member-declaration member-specification [opt]
13422 access-specifier : member-specification [opt] */
13425 cp_parser_member_specification_opt (cp_parser
* parser
)
13432 /* Peek at the next token. */
13433 token
= cp_lexer_peek_token (parser
->lexer
);
13434 /* If it's a `}', or EOF then we've seen all the members. */
13435 if (token
->type
== CPP_CLOSE_BRACE
13436 || token
->type
== CPP_EOF
13437 || token
->type
== CPP_PRAGMA_EOL
)
13440 /* See if this token is a keyword. */
13441 keyword
= token
->keyword
;
13445 case RID_PROTECTED
:
13447 /* Consume the access-specifier. */
13448 cp_lexer_consume_token (parser
->lexer
);
13449 /* Remember which access-specifier is active. */
13450 current_access_specifier
= token
->value
;
13451 /* Look for the `:'. */
13452 cp_parser_require (parser
, CPP_COLON
, "`:'");
13456 /* Accept #pragmas at class scope. */
13457 if (token
->type
== CPP_PRAGMA
)
13459 cp_parser_pragma (parser
, pragma_external
);
13463 /* Otherwise, the next construction must be a
13464 member-declaration. */
13465 cp_parser_member_declaration (parser
);
13470 /* Parse a member-declaration.
13472 member-declaration:
13473 decl-specifier-seq [opt] member-declarator-list [opt] ;
13474 function-definition ; [opt]
13475 :: [opt] nested-name-specifier template [opt] unqualified-id ;
13477 template-declaration
13479 member-declarator-list:
13481 member-declarator-list , member-declarator
13484 declarator pure-specifier [opt]
13485 declarator constant-initializer [opt]
13486 identifier [opt] : constant-expression
13490 member-declaration:
13491 __extension__ member-declaration
13494 declarator attributes [opt] pure-specifier [opt]
13495 declarator attributes [opt] constant-initializer [opt]
13496 identifier [opt] attributes [opt] : constant-expression */
13499 cp_parser_member_declaration (cp_parser
* parser
)
13501 cp_decl_specifier_seq decl_specifiers
;
13502 tree prefix_attributes
;
13504 int declares_class_or_enum
;
13507 int saved_pedantic
;
13509 /* Check for the `__extension__' keyword. */
13510 if (cp_parser_extension_opt (parser
, &saved_pedantic
))
13513 cp_parser_member_declaration (parser
);
13514 /* Restore the old value of the PEDANTIC flag. */
13515 pedantic
= saved_pedantic
;
13520 /* Check for a template-declaration. */
13521 if (cp_lexer_next_token_is_keyword (parser
->lexer
, RID_TEMPLATE
))
13523 /* An explicit specialization here is an error condition, and we
13524 expect the specialization handler to detect and report this. */
13525 if (cp_lexer_peek_nth_token (parser
->lexer
, 2)->type
== CPP_LESS
13526 && cp_lexer_peek_nth_token (parser
->lexer
, 3)->type
== CPP_GREATER
)
13527 cp_parser_explicit_specialization (parser
);
13529 cp_parser_template_declaration (parser
, /*member_p=*/true);
13534 /* Check for a using-declaration. */
13535 if (cp_lexer_next_token_is_keyword (parser
->lexer
, RID_USING
))
13537 /* Parse the using-declaration. */
13538 cp_parser_using_declaration (parser
);
13543 /* Check for @defs. */
13544 if (cp_lexer_next_token_is_keyword (parser
->lexer
, RID_AT_DEFS
))
13547 tree ivar_chains
= cp_parser_objc_defs_expression (parser
);
13548 ivar
= ivar_chains
;
13552 ivar
= TREE_CHAIN (member
);
13553 TREE_CHAIN (member
) = NULL_TREE
;
13554 finish_member_declaration (member
);
13559 /* Parse the decl-specifier-seq. */
13560 cp_parser_decl_specifier_seq (parser
,
13561 CP_PARSER_FLAGS_OPTIONAL
,
13563 &declares_class_or_enum
);
13564 prefix_attributes
= decl_specifiers
.attributes
;
13565 decl_specifiers
.attributes
= NULL_TREE
;
13566 /* Check for an invalid type-name. */
13567 if (!decl_specifiers
.type
13568 && cp_parser_parse_and_diagnose_invalid_type_name (parser
))
13570 /* If there is no declarator, then the decl-specifier-seq should
13572 if (cp_lexer_next_token_is (parser
->lexer
, CPP_SEMICOLON
))
13574 /* If there was no decl-specifier-seq, and the next token is a
13575 `;', then we have something like:
13581 Each member-declaration shall declare at least one member
13582 name of the class. */
13583 if (!decl_specifiers
.any_specifiers_p
)
13585 cp_token
*token
= cp_lexer_peek_token (parser
->lexer
);
13586 if (pedantic
&& !token
->in_system_header
)
13587 pedwarn ("%Hextra %<;%>", &token
->location
);
13593 /* See if this declaration is a friend. */
13594 friend_p
= cp_parser_friend_p (&decl_specifiers
);
13595 /* If there were decl-specifiers, check to see if there was
13596 a class-declaration. */
13597 type
= check_tag_decl (&decl_specifiers
);
13598 /* Nested classes have already been added to the class, but
13599 a `friend' needs to be explicitly registered. */
13602 /* If the `friend' keyword was present, the friend must
13603 be introduced with a class-key. */
13604 if (!declares_class_or_enum
)
13605 error ("a class-key must be used when declaring a friend");
13608 template <typename T> struct A {
13609 friend struct A<T>::B;
13612 A<T>::B will be represented by a TYPENAME_TYPE, and
13613 therefore not recognized by check_tag_decl. */
13615 && decl_specifiers
.type
13616 && TYPE_P (decl_specifiers
.type
))
13617 type
= decl_specifiers
.type
;
13618 if (!type
|| !TYPE_P (type
))
13619 error ("friend declaration does not name a class or "
13622 make_friend_class (current_class_type
, type
,
13623 /*complain=*/true);
13625 /* If there is no TYPE, an error message will already have
13627 else if (!type
|| type
== error_mark_node
)
13629 /* An anonymous aggregate has to be handled specially; such
13630 a declaration really declares a data member (with a
13631 particular type), as opposed to a nested class. */
13632 else if (ANON_AGGR_TYPE_P (type
))
13634 /* Remove constructors and such from TYPE, now that we
13635 know it is an anonymous aggregate. */
13636 fixup_anonymous_aggr (type
);
13637 /* And make the corresponding data member. */
13638 decl
= build_decl (FIELD_DECL
, NULL_TREE
, type
);
13639 /* Add it to the class. */
13640 finish_member_declaration (decl
);
13643 cp_parser_check_access_in_redeclaration (TYPE_NAME (type
));
13648 /* See if these declarations will be friends. */
13649 friend_p
= cp_parser_friend_p (&decl_specifiers
);
13651 /* Keep going until we hit the `;' at the end of the
13653 while (cp_lexer_next_token_is_not (parser
->lexer
, CPP_SEMICOLON
))
13655 tree attributes
= NULL_TREE
;
13656 tree first_attribute
;
13658 /* Peek at the next token. */
13659 token
= cp_lexer_peek_token (parser
->lexer
);
13661 /* Check for a bitfield declaration. */
13662 if (token
->type
== CPP_COLON
13663 || (token
->type
== CPP_NAME
13664 && cp_lexer_peek_nth_token (parser
->lexer
, 2)->type
13670 /* Get the name of the bitfield. Note that we cannot just
13671 check TOKEN here because it may have been invalidated by
13672 the call to cp_lexer_peek_nth_token above. */
13673 if (cp_lexer_peek_token (parser
->lexer
)->type
!= CPP_COLON
)
13674 identifier
= cp_parser_identifier (parser
);
13676 identifier
= NULL_TREE
;
13678 /* Consume the `:' token. */
13679 cp_lexer_consume_token (parser
->lexer
);
13680 /* Get the width of the bitfield. */
13682 = cp_parser_constant_expression (parser
,
13683 /*allow_non_constant=*/false,
13686 /* Look for attributes that apply to the bitfield. */
13687 attributes
= cp_parser_attributes_opt (parser
);
13688 /* Remember which attributes are prefix attributes and
13690 first_attribute
= attributes
;
13691 /* Combine the attributes. */
13692 attributes
= chainon (prefix_attributes
, attributes
);
13694 /* Create the bitfield declaration. */
13695 decl
= grokbitfield (identifier
13696 ? make_id_declarator (NULL_TREE
,
13702 /* Apply the attributes. */
13703 cplus_decl_attributes (&decl
, attributes
, /*flags=*/0);
13707 cp_declarator
*declarator
;
13709 tree asm_specification
;
13710 int ctor_dtor_or_conv_p
;
13712 /* Parse the declarator. */
13714 = cp_parser_declarator (parser
, CP_PARSER_DECLARATOR_NAMED
,
13715 &ctor_dtor_or_conv_p
,
13716 /*parenthesized_p=*/NULL
,
13717 /*member_p=*/true);
13719 /* If something went wrong parsing the declarator, make sure
13720 that we at least consume some tokens. */
13721 if (declarator
== cp_error_declarator
)
13723 /* Skip to the end of the statement. */
13724 cp_parser_skip_to_end_of_statement (parser
);
13725 /* If the next token is not a semicolon, that is
13726 probably because we just skipped over the body of
13727 a function. So, we consume a semicolon if
13728 present, but do not issue an error message if it
13730 if (cp_lexer_next_token_is (parser
->lexer
,
13732 cp_lexer_consume_token (parser
->lexer
);
13736 if (declares_class_or_enum
& 2)
13737 cp_parser_check_for_definition_in_return_type
13738 (declarator
, decl_specifiers
.type
);
13740 /* Look for an asm-specification. */
13741 asm_specification
= cp_parser_asm_specification_opt (parser
);
13742 /* Look for attributes that apply to the declaration. */
13743 attributes
= cp_parser_attributes_opt (parser
);
13744 /* Remember which attributes are prefix attributes and
13746 first_attribute
= attributes
;
13747 /* Combine the attributes. */
13748 attributes
= chainon (prefix_attributes
, attributes
);
13750 /* If it's an `=', then we have a constant-initializer or a
13751 pure-specifier. It is not correct to parse the
13752 initializer before registering the member declaration
13753 since the member declaration should be in scope while
13754 its initializer is processed. However, the rest of the
13755 front end does not yet provide an interface that allows
13756 us to handle this correctly. */
13757 if (cp_lexer_next_token_is (parser
->lexer
, CPP_EQ
))
13761 A pure-specifier shall be used only in the declaration of
13762 a virtual function.
13764 A member-declarator can contain a constant-initializer
13765 only if it declares a static member of integral or
13768 Therefore, if the DECLARATOR is for a function, we look
13769 for a pure-specifier; otherwise, we look for a
13770 constant-initializer. When we call `grokfield', it will
13771 perform more stringent semantics checks. */
13772 if (declarator
->kind
== cdk_function
13773 && declarator
->declarator
->kind
== cdk_id
)
13774 initializer
= cp_parser_pure_specifier (parser
);
13776 /* Parse the initializer. */
13777 initializer
= cp_parser_constant_initializer (parser
);
13779 /* Otherwise, there is no initializer. */
13781 initializer
= NULL_TREE
;
13783 /* See if we are probably looking at a function
13784 definition. We are certainly not looking at a
13785 member-declarator. Calling `grokfield' has
13786 side-effects, so we must not do it unless we are sure
13787 that we are looking at a member-declarator. */
13788 if (cp_parser_token_starts_function_definition_p
13789 (cp_lexer_peek_token (parser
->lexer
)))
13791 /* The grammar does not allow a pure-specifier to be
13792 used when a member function is defined. (It is
13793 possible that this fact is an oversight in the
13794 standard, since a pure function may be defined
13795 outside of the class-specifier. */
13797 error ("pure-specifier on function-definition");
13798 decl
= cp_parser_save_member_function_body (parser
,
13802 /* If the member was not a friend, declare it here. */
13804 finish_member_declaration (decl
);
13805 /* Peek at the next token. */
13806 token
= cp_lexer_peek_token (parser
->lexer
);
13807 /* If the next token is a semicolon, consume it. */
13808 if (token
->type
== CPP_SEMICOLON
)
13809 cp_lexer_consume_token (parser
->lexer
);
13813 /* Create the declaration. */
13814 decl
= grokfield (declarator
, &decl_specifiers
,
13815 initializer
, /*init_const_expr_p=*/true,
13820 /* Reset PREFIX_ATTRIBUTES. */
13821 while (attributes
&& TREE_CHAIN (attributes
) != first_attribute
)
13822 attributes
= TREE_CHAIN (attributes
);
13824 TREE_CHAIN (attributes
) = NULL_TREE
;
13826 /* If there is any qualification still in effect, clear it
13827 now; we will be starting fresh with the next declarator. */
13828 parser
->scope
= NULL_TREE
;
13829 parser
->qualifying_scope
= NULL_TREE
;
13830 parser
->object_scope
= NULL_TREE
;
13831 /* If it's a `,', then there are more declarators. */
13832 if (cp_lexer_next_token_is (parser
->lexer
, CPP_COMMA
))
13833 cp_lexer_consume_token (parser
->lexer
);
13834 /* If the next token isn't a `;', then we have a parse error. */
13835 else if (cp_lexer_next_token_is_not (parser
->lexer
,
13838 cp_parser_error (parser
, "expected %<;%>");
13839 /* Skip tokens until we find a `;'. */
13840 cp_parser_skip_to_end_of_statement (parser
);
13847 /* Add DECL to the list of members. */
13849 finish_member_declaration (decl
);
13851 if (TREE_CODE (decl
) == FUNCTION_DECL
)
13852 cp_parser_save_default_args (parser
, decl
);
13857 cp_parser_require (parser
, CPP_SEMICOLON
, "`;'");
13860 /* Parse a pure-specifier.
13865 Returns INTEGER_ZERO_NODE if a pure specifier is found.
13866 Otherwise, ERROR_MARK_NODE is returned. */
13869 cp_parser_pure_specifier (cp_parser
* parser
)
13873 /* Look for the `=' token. */
13874 if (!cp_parser_require (parser
, CPP_EQ
, "`='"))
13875 return error_mark_node
;
13876 /* Look for the `0' token. */
13877 token
= cp_lexer_consume_token (parser
->lexer
);
13878 /* c_lex_with_flags marks a single digit '0' with PURE_ZERO. */
13879 if (token
->type
!= CPP_NUMBER
|| !(token
->flags
& PURE_ZERO
))
13881 cp_parser_error (parser
,
13882 "invalid pure specifier (only `= 0' is allowed)");
13883 cp_parser_skip_to_end_of_statement (parser
);
13884 return error_mark_node
;
13886 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
13888 error ("templates may not be %<virtual%>");
13889 return error_mark_node
;
13892 return integer_zero_node
;
13895 /* Parse a constant-initializer.
13897 constant-initializer:
13898 = constant-expression
13900 Returns a representation of the constant-expression. */
13903 cp_parser_constant_initializer (cp_parser
* parser
)
13905 /* Look for the `=' token. */
13906 if (!cp_parser_require (parser
, CPP_EQ
, "`='"))
13907 return error_mark_node
;
13909 /* It is invalid to write:
13911 struct S { static const int i = { 7 }; };
13914 if (cp_lexer_next_token_is (parser
->lexer
, CPP_OPEN_BRACE
))
13916 cp_parser_error (parser
,
13917 "a brace-enclosed initializer is not allowed here");
13918 /* Consume the opening brace. */
13919 cp_lexer_consume_token (parser
->lexer
);
13920 /* Skip the initializer. */
13921 cp_parser_skip_to_closing_brace (parser
);
13922 /* Look for the trailing `}'. */
13923 cp_parser_require (parser
, CPP_CLOSE_BRACE
, "`}'");
13925 return error_mark_node
;
13928 return cp_parser_constant_expression (parser
,
13929 /*allow_non_constant=*/false,
13933 /* Derived classes [gram.class.derived] */
13935 /* Parse a base-clause.
13938 : base-specifier-list
13940 base-specifier-list:
13942 base-specifier-list , base-specifier
13944 Returns a TREE_LIST representing the base-classes, in the order in
13945 which they were declared. The representation of each node is as
13946 described by cp_parser_base_specifier.
13948 In the case that no bases are specified, this function will return
13949 NULL_TREE, not ERROR_MARK_NODE. */
13952 cp_parser_base_clause (cp_parser
* parser
)
13954 tree bases
= NULL_TREE
;
13956 /* Look for the `:' that begins the list. */
13957 cp_parser_require (parser
, CPP_COLON
, "`:'");
13959 /* Scan the base-specifier-list. */
13965 /* Look for the base-specifier. */
13966 base
= cp_parser_base_specifier (parser
);
13967 /* Add BASE to the front of the list. */
13968 if (base
!= error_mark_node
)
13970 TREE_CHAIN (base
) = bases
;
13973 /* Peek at the next token. */
13974 token
= cp_lexer_peek_token (parser
->lexer
);
13975 /* If it's not a comma, then the list is complete. */
13976 if (token
->type
!= CPP_COMMA
)
13978 /* Consume the `,'. */
13979 cp_lexer_consume_token (parser
->lexer
);
13982 /* PARSER->SCOPE may still be non-NULL at this point, if the last
13983 base class had a qualified name. However, the next name that
13984 appears is certainly not qualified. */
13985 parser
->scope
= NULL_TREE
;
13986 parser
->qualifying_scope
= NULL_TREE
;
13987 parser
->object_scope
= NULL_TREE
;
13989 return nreverse (bases
);
13992 /* Parse a base-specifier.
13995 :: [opt] nested-name-specifier [opt] class-name
13996 virtual access-specifier [opt] :: [opt] nested-name-specifier
13998 access-specifier virtual [opt] :: [opt] nested-name-specifier
14001 Returns a TREE_LIST. The TREE_PURPOSE will be one of
14002 ACCESS_{DEFAULT,PUBLIC,PROTECTED,PRIVATE}_[VIRTUAL]_NODE to
14003 indicate the specifiers provided. The TREE_VALUE will be a TYPE
14004 (or the ERROR_MARK_NODE) indicating the type that was specified. */
14007 cp_parser_base_specifier (cp_parser
* parser
)
14011 bool virtual_p
= false;
14012 bool duplicate_virtual_error_issued_p
= false;
14013 bool duplicate_access_error_issued_p
= false;
14014 bool class_scope_p
, template_p
;
14015 tree access
= access_default_node
;
14018 /* Process the optional `virtual' and `access-specifier'. */
14021 /* Peek at the next token. */
14022 token
= cp_lexer_peek_token (parser
->lexer
);
14023 /* Process `virtual'. */
14024 switch (token
->keyword
)
14027 /* If `virtual' appears more than once, issue an error. */
14028 if (virtual_p
&& !duplicate_virtual_error_issued_p
)
14030 cp_parser_error (parser
,
14031 "%<virtual%> specified more than once in base-specified");
14032 duplicate_virtual_error_issued_p
= true;
14037 /* Consume the `virtual' token. */
14038 cp_lexer_consume_token (parser
->lexer
);
14043 case RID_PROTECTED
:
14045 /* If more than one access specifier appears, issue an
14047 if (access
!= access_default_node
14048 && !duplicate_access_error_issued_p
)
14050 cp_parser_error (parser
,
14051 "more than one access specifier in base-specified");
14052 duplicate_access_error_issued_p
= true;
14055 access
= ridpointers
[(int) token
->keyword
];
14057 /* Consume the access-specifier. */
14058 cp_lexer_consume_token (parser
->lexer
);
14067 /* It is not uncommon to see programs mechanically, erroneously, use
14068 the 'typename' keyword to denote (dependent) qualified types
14069 as base classes. */
14070 if (cp_lexer_next_token_is_keyword (parser
->lexer
, RID_TYPENAME
))
14072 if (!processing_template_decl
)
14073 error ("keyword %<typename%> not allowed outside of templates");
14075 error ("keyword %<typename%> not allowed in this context "
14076 "(the base class is implicitly a type)");
14077 cp_lexer_consume_token (parser
->lexer
);
14080 /* Look for the optional `::' operator. */
14081 cp_parser_global_scope_opt (parser
, /*current_scope_valid_p=*/false);
14082 /* Look for the nested-name-specifier. The simplest way to
14087 The keyword `typename' is not permitted in a base-specifier or
14088 mem-initializer; in these contexts a qualified name that
14089 depends on a template-parameter is implicitly assumed to be a
14092 is to pretend that we have seen the `typename' keyword at this
14094 cp_parser_nested_name_specifier_opt (parser
,
14095 /*typename_keyword_p=*/true,
14096 /*check_dependency_p=*/true,
14098 /*is_declaration=*/true);
14099 /* If the base class is given by a qualified name, assume that names
14100 we see are type names or templates, as appropriate. */
14101 class_scope_p
= (parser
->scope
&& TYPE_P (parser
->scope
));
14102 template_p
= class_scope_p
&& cp_parser_optional_template_keyword (parser
);
14104 /* Finally, look for the class-name. */
14105 type
= cp_parser_class_name (parser
,
14109 /*check_dependency_p=*/true,
14110 /*class_head_p=*/false,
14111 /*is_declaration=*/true);
14113 if (type
== error_mark_node
)
14114 return error_mark_node
;
14116 return finish_base_specifier (TREE_TYPE (type
), access
, virtual_p
);
14119 /* Exception handling [gram.exception] */
14121 /* Parse an (optional) exception-specification.
14123 exception-specification:
14124 throw ( type-id-list [opt] )
14126 Returns a TREE_LIST representing the exception-specification. The
14127 TREE_VALUE of each node is a type. */
14130 cp_parser_exception_specification_opt (cp_parser
* parser
)
14135 /* Peek at the next token. */
14136 token
= cp_lexer_peek_token (parser
->lexer
);
14137 /* If it's not `throw', then there's no exception-specification. */
14138 if (!cp_parser_is_keyword (token
, RID_THROW
))
14141 /* Consume the `throw'. */
14142 cp_lexer_consume_token (parser
->lexer
);
14144 /* Look for the `('. */
14145 cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('");
14147 /* Peek at the next token. */
14148 token
= cp_lexer_peek_token (parser
->lexer
);
14149 /* If it's not a `)', then there is a type-id-list. */
14150 if (token
->type
!= CPP_CLOSE_PAREN
)
14152 const char *saved_message
;
14154 /* Types may not be defined in an exception-specification. */
14155 saved_message
= parser
->type_definition_forbidden_message
;
14156 parser
->type_definition_forbidden_message
14157 = "types may not be defined in an exception-specification";
14158 /* Parse the type-id-list. */
14159 type_id_list
= cp_parser_type_id_list (parser
);
14160 /* Restore the saved message. */
14161 parser
->type_definition_forbidden_message
= saved_message
;
14164 type_id_list
= empty_except_spec
;
14166 /* Look for the `)'. */
14167 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
14169 return type_id_list
;
14172 /* Parse an (optional) type-id-list.
14176 type-id-list , type-id
14178 Returns a TREE_LIST. The TREE_VALUE of each node is a TYPE,
14179 in the order that the types were presented. */
14182 cp_parser_type_id_list (cp_parser
* parser
)
14184 tree types
= NULL_TREE
;
14191 /* Get the next type-id. */
14192 type
= cp_parser_type_id (parser
);
14193 /* Add it to the list. */
14194 types
= add_exception_specifier (types
, type
, /*complain=*/1);
14195 /* Peek at the next token. */
14196 token
= cp_lexer_peek_token (parser
->lexer
);
14197 /* If it is not a `,', we are done. */
14198 if (token
->type
!= CPP_COMMA
)
14200 /* Consume the `,'. */
14201 cp_lexer_consume_token (parser
->lexer
);
14204 return nreverse (types
);
14207 /* Parse a try-block.
14210 try compound-statement handler-seq */
14213 cp_parser_try_block (cp_parser
* parser
)
14217 cp_parser_require_keyword (parser
, RID_TRY
, "`try'");
14218 try_block
= begin_try_block ();
14219 cp_parser_compound_statement (parser
, NULL
, true);
14220 finish_try_block (try_block
);
14221 cp_parser_handler_seq (parser
);
14222 finish_handler_sequence (try_block
);
14227 /* Parse a function-try-block.
14229 function-try-block:
14230 try ctor-initializer [opt] function-body handler-seq */
14233 cp_parser_function_try_block (cp_parser
* parser
)
14235 tree compound_stmt
;
14237 bool ctor_initializer_p
;
14239 /* Look for the `try' keyword. */
14240 if (!cp_parser_require_keyword (parser
, RID_TRY
, "`try'"))
14242 /* Let the rest of the front-end know where we are. */
14243 try_block
= begin_function_try_block (&compound_stmt
);
14244 /* Parse the function-body. */
14246 = cp_parser_ctor_initializer_opt_and_function_body (parser
);
14247 /* We're done with the `try' part. */
14248 finish_function_try_block (try_block
);
14249 /* Parse the handlers. */
14250 cp_parser_handler_seq (parser
);
14251 /* We're done with the handlers. */
14252 finish_function_handler_sequence (try_block
, compound_stmt
);
14254 return ctor_initializer_p
;
14257 /* Parse a handler-seq.
14260 handler handler-seq [opt] */
14263 cp_parser_handler_seq (cp_parser
* parser
)
14269 /* Parse the handler. */
14270 cp_parser_handler (parser
);
14271 /* Peek at the next token. */
14272 token
= cp_lexer_peek_token (parser
->lexer
);
14273 /* If it's not `catch' then there are no more handlers. */
14274 if (!cp_parser_is_keyword (token
, RID_CATCH
))
14279 /* Parse a handler.
14282 catch ( exception-declaration ) compound-statement */
14285 cp_parser_handler (cp_parser
* parser
)
14290 cp_parser_require_keyword (parser
, RID_CATCH
, "`catch'");
14291 handler
= begin_handler ();
14292 cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('");
14293 declaration
= cp_parser_exception_declaration (parser
);
14294 finish_handler_parms (declaration
, handler
);
14295 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
14296 cp_parser_compound_statement (parser
, NULL
, false);
14297 finish_handler (handler
);
14300 /* Parse an exception-declaration.
14302 exception-declaration:
14303 type-specifier-seq declarator
14304 type-specifier-seq abstract-declarator
14308 Returns a VAR_DECL for the declaration, or NULL_TREE if the
14309 ellipsis variant is used. */
14312 cp_parser_exception_declaration (cp_parser
* parser
)
14314 cp_decl_specifier_seq type_specifiers
;
14315 cp_declarator
*declarator
;
14316 const char *saved_message
;
14318 /* If it's an ellipsis, it's easy to handle. */
14319 if (cp_lexer_next_token_is (parser
->lexer
, CPP_ELLIPSIS
))
14321 /* Consume the `...' token. */
14322 cp_lexer_consume_token (parser
->lexer
);
14326 /* Types may not be defined in exception-declarations. */
14327 saved_message
= parser
->type_definition_forbidden_message
;
14328 parser
->type_definition_forbidden_message
14329 = "types may not be defined in exception-declarations";
14331 /* Parse the type-specifier-seq. */
14332 cp_parser_type_specifier_seq (parser
, /*is_condition=*/false,
14334 /* If it's a `)', then there is no declarator. */
14335 if (cp_lexer_next_token_is (parser
->lexer
, CPP_CLOSE_PAREN
))
14338 declarator
= cp_parser_declarator (parser
, CP_PARSER_DECLARATOR_EITHER
,
14339 /*ctor_dtor_or_conv_p=*/NULL
,
14340 /*parenthesized_p=*/NULL
,
14341 /*member_p=*/false);
14343 /* Restore the saved message. */
14344 parser
->type_definition_forbidden_message
= saved_message
;
14346 if (!type_specifiers
.any_specifiers_p
)
14347 return error_mark_node
;
14349 return grokdeclarator (declarator
, &type_specifiers
, CATCHPARM
, 1, NULL
);
14352 /* Parse a throw-expression.
14355 throw assignment-expression [opt]
14357 Returns a THROW_EXPR representing the throw-expression. */
14360 cp_parser_throw_expression (cp_parser
* parser
)
14365 cp_parser_require_keyword (parser
, RID_THROW
, "`throw'");
14366 token
= cp_lexer_peek_token (parser
->lexer
);
14367 /* Figure out whether or not there is an assignment-expression
14368 following the "throw" keyword. */
14369 if (token
->type
== CPP_COMMA
14370 || token
->type
== CPP_SEMICOLON
14371 || token
->type
== CPP_CLOSE_PAREN
14372 || token
->type
== CPP_CLOSE_SQUARE
14373 || token
->type
== CPP_CLOSE_BRACE
14374 || token
->type
== CPP_COLON
)
14375 expression
= NULL_TREE
;
14377 expression
= cp_parser_assignment_expression (parser
,
14380 return build_throw (expression
);
14383 /* GNU Extensions */
14385 /* Parse an (optional) asm-specification.
14388 asm ( string-literal )
14390 If the asm-specification is present, returns a STRING_CST
14391 corresponding to the string-literal. Otherwise, returns
14395 cp_parser_asm_specification_opt (cp_parser
* parser
)
14398 tree asm_specification
;
14400 /* Peek at the next token. */
14401 token
= cp_lexer_peek_token (parser
->lexer
);
14402 /* If the next token isn't the `asm' keyword, then there's no
14403 asm-specification. */
14404 if (!cp_parser_is_keyword (token
, RID_ASM
))
14407 /* Consume the `asm' token. */
14408 cp_lexer_consume_token (parser
->lexer
);
14409 /* Look for the `('. */
14410 cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('");
14412 /* Look for the string-literal. */
14413 asm_specification
= cp_parser_string_literal (parser
, false, false);
14415 /* Look for the `)'. */
14416 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`('");
14418 return asm_specification
;
14421 /* Parse an asm-operand-list.
14425 asm-operand-list , asm-operand
14428 string-literal ( expression )
14429 [ string-literal ] string-literal ( expression )
14431 Returns a TREE_LIST representing the operands. The TREE_VALUE of
14432 each node is the expression. The TREE_PURPOSE is itself a
14433 TREE_LIST whose TREE_PURPOSE is a STRING_CST for the bracketed
14434 string-literal (or NULL_TREE if not present) and whose TREE_VALUE
14435 is a STRING_CST for the string literal before the parenthesis. */
14438 cp_parser_asm_operand_list (cp_parser
* parser
)
14440 tree asm_operands
= NULL_TREE
;
14444 tree string_literal
;
14448 if (cp_lexer_next_token_is (parser
->lexer
, CPP_OPEN_SQUARE
))
14450 /* Consume the `[' token. */
14451 cp_lexer_consume_token (parser
->lexer
);
14452 /* Read the operand name. */
14453 name
= cp_parser_identifier (parser
);
14454 if (name
!= error_mark_node
)
14455 name
= build_string (IDENTIFIER_LENGTH (name
),
14456 IDENTIFIER_POINTER (name
));
14457 /* Look for the closing `]'. */
14458 cp_parser_require (parser
, CPP_CLOSE_SQUARE
, "`]'");
14462 /* Look for the string-literal. */
14463 string_literal
= cp_parser_string_literal (parser
, false, false);
14465 /* Look for the `('. */
14466 cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('");
14467 /* Parse the expression. */
14468 expression
= cp_parser_expression (parser
, /*cast_p=*/false);
14469 /* Look for the `)'. */
14470 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
14472 /* Add this operand to the list. */
14473 asm_operands
= tree_cons (build_tree_list (name
, string_literal
),
14476 /* If the next token is not a `,', there are no more
14478 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_COMMA
))
14480 /* Consume the `,'. */
14481 cp_lexer_consume_token (parser
->lexer
);
14484 return nreverse (asm_operands
);
14487 /* Parse an asm-clobber-list.
14491 asm-clobber-list , string-literal
14493 Returns a TREE_LIST, indicating the clobbers in the order that they
14494 appeared. The TREE_VALUE of each node is a STRING_CST. */
14497 cp_parser_asm_clobber_list (cp_parser
* parser
)
14499 tree clobbers
= NULL_TREE
;
14503 tree string_literal
;
14505 /* Look for the string literal. */
14506 string_literal
= cp_parser_string_literal (parser
, false, false);
14507 /* Add it to the list. */
14508 clobbers
= tree_cons (NULL_TREE
, string_literal
, clobbers
);
14509 /* If the next token is not a `,', then the list is
14511 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_COMMA
))
14513 /* Consume the `,' token. */
14514 cp_lexer_consume_token (parser
->lexer
);
14520 /* Parse an (optional) series of attributes.
14523 attributes attribute
14526 __attribute__ (( attribute-list [opt] ))
14528 The return value is as for cp_parser_attribute_list. */
14531 cp_parser_attributes_opt (cp_parser
* parser
)
14533 tree attributes
= NULL_TREE
;
14538 tree attribute_list
;
14540 /* Peek at the next token. */
14541 token
= cp_lexer_peek_token (parser
->lexer
);
14542 /* If it's not `__attribute__', then we're done. */
14543 if (token
->keyword
!= RID_ATTRIBUTE
)
14546 /* Consume the `__attribute__' keyword. */
14547 cp_lexer_consume_token (parser
->lexer
);
14548 /* Look for the two `(' tokens. */
14549 cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('");
14550 cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('");
14552 /* Peek at the next token. */
14553 token
= cp_lexer_peek_token (parser
->lexer
);
14554 if (token
->type
!= CPP_CLOSE_PAREN
)
14555 /* Parse the attribute-list. */
14556 attribute_list
= cp_parser_attribute_list (parser
);
14558 /* If the next token is a `)', then there is no attribute
14560 attribute_list
= NULL
;
14562 /* Look for the two `)' tokens. */
14563 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
14564 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
14566 /* Add these new attributes to the list. */
14567 attributes
= chainon (attributes
, attribute_list
);
14573 /* Parse an attribute-list.
14577 attribute-list , attribute
14581 identifier ( identifier )
14582 identifier ( identifier , expression-list )
14583 identifier ( expression-list )
14585 Returns a TREE_LIST, or NULL_TREE on error. Each node corresponds
14586 to an attribute. The TREE_PURPOSE of each node is the identifier
14587 indicating which attribute is in use. The TREE_VALUE represents
14588 the arguments, if any. */
14591 cp_parser_attribute_list (cp_parser
* parser
)
14593 tree attribute_list
= NULL_TREE
;
14594 bool save_translate_strings_p
= parser
->translate_strings_p
;
14596 parser
->translate_strings_p
= false;
14603 /* Look for the identifier. We also allow keywords here; for
14604 example `__attribute__ ((const))' is legal. */
14605 token
= cp_lexer_peek_token (parser
->lexer
);
14606 if (token
->type
== CPP_NAME
14607 || token
->type
== CPP_KEYWORD
)
14609 tree arguments
= NULL_TREE
;
14611 /* Consume the token. */
14612 token
= cp_lexer_consume_token (parser
->lexer
);
14614 /* Save away the identifier that indicates which attribute
14616 identifier
= token
->value
;
14617 attribute
= build_tree_list (identifier
, NULL_TREE
);
14619 /* Peek at the next token. */
14620 token
= cp_lexer_peek_token (parser
->lexer
);
14621 /* If it's an `(', then parse the attribute arguments. */
14622 if (token
->type
== CPP_OPEN_PAREN
)
14624 arguments
= cp_parser_parenthesized_expression_list
14625 (parser
, true, /*cast_p=*/false,
14626 /*non_constant_p=*/NULL
);
14627 /* Save the arguments away. */
14628 TREE_VALUE (attribute
) = arguments
;
14631 if (arguments
!= error_mark_node
)
14633 /* Add this attribute to the list. */
14634 TREE_CHAIN (attribute
) = attribute_list
;
14635 attribute_list
= attribute
;
14638 token
= cp_lexer_peek_token (parser
->lexer
);
14640 /* Now, look for more attributes. If the next token isn't a
14641 `,', we're done. */
14642 if (token
->type
!= CPP_COMMA
)
14645 /* Consume the comma and keep going. */
14646 cp_lexer_consume_token (parser
->lexer
);
14648 parser
->translate_strings_p
= save_translate_strings_p
;
14650 /* We built up the list in reverse order. */
14651 return nreverse (attribute_list
);
14654 /* Parse an optional `__extension__' keyword. Returns TRUE if it is
14655 present, and FALSE otherwise. *SAVED_PEDANTIC is set to the
14656 current value of the PEDANTIC flag, regardless of whether or not
14657 the `__extension__' keyword is present. The caller is responsible
14658 for restoring the value of the PEDANTIC flag. */
14661 cp_parser_extension_opt (cp_parser
* parser
, int* saved_pedantic
)
14663 /* Save the old value of the PEDANTIC flag. */
14664 *saved_pedantic
= pedantic
;
14666 if (cp_lexer_next_token_is_keyword (parser
->lexer
, RID_EXTENSION
))
14668 /* Consume the `__extension__' token. */
14669 cp_lexer_consume_token (parser
->lexer
);
14670 /* We're not being pedantic while the `__extension__' keyword is
14680 /* Parse a label declaration.
14683 __label__ label-declarator-seq ;
14685 label-declarator-seq:
14686 identifier , label-declarator-seq
14690 cp_parser_label_declaration (cp_parser
* parser
)
14692 /* Look for the `__label__' keyword. */
14693 cp_parser_require_keyword (parser
, RID_LABEL
, "`__label__'");
14699 /* Look for an identifier. */
14700 identifier
= cp_parser_identifier (parser
);
14701 /* If we failed, stop. */
14702 if (identifier
== error_mark_node
)
14704 /* Declare it as a label. */
14705 finish_label_decl (identifier
);
14706 /* If the next token is a `;', stop. */
14707 if (cp_lexer_next_token_is (parser
->lexer
, CPP_SEMICOLON
))
14709 /* Look for the `,' separating the label declarations. */
14710 cp_parser_require (parser
, CPP_COMMA
, "`,'");
14713 /* Look for the final `;'. */
14714 cp_parser_require (parser
, CPP_SEMICOLON
, "`;'");
14717 /* Support Functions */
14719 /* Looks up NAME in the current scope, as given by PARSER->SCOPE.
14720 NAME should have one of the representations used for an
14721 id-expression. If NAME is the ERROR_MARK_NODE, the ERROR_MARK_NODE
14722 is returned. If PARSER->SCOPE is a dependent type, then a
14723 SCOPE_REF is returned.
14725 If NAME is a TEMPLATE_ID_EXPR, then it will be immediately
14726 returned; the name was already resolved when the TEMPLATE_ID_EXPR
14727 was formed. Abstractly, such entities should not be passed to this
14728 function, because they do not need to be looked up, but it is
14729 simpler to check for this special case here, rather than at the
14732 In cases not explicitly covered above, this function returns a
14733 DECL, OVERLOAD, or baselink representing the result of the lookup.
14734 If there was no entity with the indicated NAME, the ERROR_MARK_NODE
14737 If TAG_TYPE is not NONE_TYPE, it indicates an explicit type keyword
14738 (e.g., "struct") that was used. In that case bindings that do not
14739 refer to types are ignored.
14741 If IS_TEMPLATE is TRUE, bindings that do not refer to templates are
14744 If IS_NAMESPACE is TRUE, bindings that do not refer to namespaces
14747 If CHECK_DEPENDENCY is TRUE, names are not looked up in dependent
14750 If AMBIGUOUS_DECLS is non-NULL, *AMBIGUOUS_DECLS is set to a
14751 TREE_LIST of candidates if name-lookup results in an ambiguity, and
14752 NULL_TREE otherwise. */
14755 cp_parser_lookup_name (cp_parser
*parser
, tree name
,
14756 enum tag_types tag_type
,
14759 bool check_dependency
,
14760 tree
*ambiguous_decls
)
14764 tree object_type
= parser
->context
->object_type
;
14766 if (!cp_parser_uncommitted_to_tentative_parse_p (parser
))
14767 flags
|= LOOKUP_COMPLAIN
;
14769 /* Assume that the lookup will be unambiguous. */
14770 if (ambiguous_decls
)
14771 *ambiguous_decls
= NULL_TREE
;
14773 /* Now that we have looked up the name, the OBJECT_TYPE (if any) is
14774 no longer valid. Note that if we are parsing tentatively, and
14775 the parse fails, OBJECT_TYPE will be automatically restored. */
14776 parser
->context
->object_type
= NULL_TREE
;
14778 if (name
== error_mark_node
)
14779 return error_mark_node
;
14781 /* A template-id has already been resolved; there is no lookup to
14783 if (TREE_CODE (name
) == TEMPLATE_ID_EXPR
)
14785 if (BASELINK_P (name
))
14787 gcc_assert (TREE_CODE (BASELINK_FUNCTIONS (name
))
14788 == TEMPLATE_ID_EXPR
);
14792 /* A BIT_NOT_EXPR is used to represent a destructor. By this point,
14793 it should already have been checked to make sure that the name
14794 used matches the type being destroyed. */
14795 if (TREE_CODE (name
) == BIT_NOT_EXPR
)
14799 /* Figure out to which type this destructor applies. */
14801 type
= parser
->scope
;
14802 else if (object_type
)
14803 type
= object_type
;
14805 type
= current_class_type
;
14806 /* If that's not a class type, there is no destructor. */
14807 if (!type
|| !CLASS_TYPE_P (type
))
14808 return error_mark_node
;
14809 if (CLASSTYPE_LAZY_DESTRUCTOR (type
))
14810 lazily_declare_fn (sfk_destructor
, type
);
14811 if (!CLASSTYPE_DESTRUCTORS (type
))
14812 return error_mark_node
;
14813 /* If it was a class type, return the destructor. */
14814 return CLASSTYPE_DESTRUCTORS (type
);
14817 /* By this point, the NAME should be an ordinary identifier. If
14818 the id-expression was a qualified name, the qualifying scope is
14819 stored in PARSER->SCOPE at this point. */
14820 gcc_assert (TREE_CODE (name
) == IDENTIFIER_NODE
);
14822 /* Perform the lookup. */
14827 if (parser
->scope
== error_mark_node
)
14828 return error_mark_node
;
14830 /* If the SCOPE is dependent, the lookup must be deferred until
14831 the template is instantiated -- unless we are explicitly
14832 looking up names in uninstantiated templates. Even then, we
14833 cannot look up the name if the scope is not a class type; it
14834 might, for example, be a template type parameter. */
14835 dependent_p
= (TYPE_P (parser
->scope
)
14836 && !(parser
->in_declarator_p
14837 && currently_open_class (parser
->scope
))
14838 && dependent_type_p (parser
->scope
));
14839 if ((check_dependency
|| !CLASS_TYPE_P (parser
->scope
))
14846 /* The resolution to Core Issue 180 says that `struct
14847 A::B' should be considered a type-name, even if `A'
14849 type
= make_typename_type (parser
->scope
, name
, tag_type
,
14850 /*complain=*/tf_error
);
14851 decl
= TYPE_NAME (type
);
14853 else if (is_template
14854 && (cp_parser_next_token_ends_template_argument_p (parser
)
14855 || cp_lexer_next_token_is (parser
->lexer
,
14857 decl
= make_unbound_class_template (parser
->scope
,
14859 /*complain=*/tf_error
);
14861 decl
= build_qualified_name (/*type=*/NULL_TREE
,
14862 parser
->scope
, name
,
14867 tree pushed_scope
= NULL_TREE
;
14869 /* If PARSER->SCOPE is a dependent type, then it must be a
14870 class type, and we must not be checking dependencies;
14871 otherwise, we would have processed this lookup above. So
14872 that PARSER->SCOPE is not considered a dependent base by
14873 lookup_member, we must enter the scope here. */
14875 pushed_scope
= push_scope (parser
->scope
);
14876 /* If the PARSER->SCOPE is a template specialization, it
14877 may be instantiated during name lookup. In that case,
14878 errors may be issued. Even if we rollback the current
14879 tentative parse, those errors are valid. */
14880 decl
= lookup_qualified_name (parser
->scope
, name
,
14881 tag_type
!= none_type
,
14882 /*complain=*/true);
14884 pop_scope (pushed_scope
);
14886 parser
->qualifying_scope
= parser
->scope
;
14887 parser
->object_scope
= NULL_TREE
;
14889 else if (object_type
)
14891 tree object_decl
= NULL_TREE
;
14892 /* Look up the name in the scope of the OBJECT_TYPE, unless the
14893 OBJECT_TYPE is not a class. */
14894 if (CLASS_TYPE_P (object_type
))
14895 /* If the OBJECT_TYPE is a template specialization, it may
14896 be instantiated during name lookup. In that case, errors
14897 may be issued. Even if we rollback the current tentative
14898 parse, those errors are valid. */
14899 object_decl
= lookup_member (object_type
,
14902 tag_type
!= none_type
);
14903 /* Look it up in the enclosing context, too. */
14904 decl
= lookup_name_real (name
, tag_type
!= none_type
,
14906 /*block_p=*/true, is_namespace
, flags
);
14907 parser
->object_scope
= object_type
;
14908 parser
->qualifying_scope
= NULL_TREE
;
14910 decl
= object_decl
;
14914 decl
= lookup_name_real (name
, tag_type
!= none_type
,
14916 /*block_p=*/true, is_namespace
, flags
);
14917 parser
->qualifying_scope
= NULL_TREE
;
14918 parser
->object_scope
= NULL_TREE
;
14921 /* If the lookup failed, let our caller know. */
14922 if (!decl
|| decl
== error_mark_node
)
14923 return error_mark_node
;
14925 /* If it's a TREE_LIST, the result of the lookup was ambiguous. */
14926 if (TREE_CODE (decl
) == TREE_LIST
)
14928 if (ambiguous_decls
)
14929 *ambiguous_decls
= decl
;
14930 /* The error message we have to print is too complicated for
14931 cp_parser_error, so we incorporate its actions directly. */
14932 if (!cp_parser_simulate_error (parser
))
14934 error ("reference to %qD is ambiguous", name
);
14935 print_candidates (decl
);
14937 return error_mark_node
;
14940 gcc_assert (DECL_P (decl
)
14941 || TREE_CODE (decl
) == OVERLOAD
14942 || TREE_CODE (decl
) == SCOPE_REF
14943 || TREE_CODE (decl
) == UNBOUND_CLASS_TEMPLATE
14944 || BASELINK_P (decl
));
14946 /* If we have resolved the name of a member declaration, check to
14947 see if the declaration is accessible. When the name resolves to
14948 set of overloaded functions, accessibility is checked when
14949 overload resolution is done.
14951 During an explicit instantiation, access is not checked at all,
14952 as per [temp.explicit]. */
14954 check_accessibility_of_qualified_id (decl
, object_type
, parser
->scope
);
14959 /* Like cp_parser_lookup_name, but for use in the typical case where
14960 CHECK_ACCESS is TRUE, IS_TYPE is FALSE, IS_TEMPLATE is FALSE,
14961 IS_NAMESPACE is FALSE, and CHECK_DEPENDENCY is TRUE. */
14964 cp_parser_lookup_name_simple (cp_parser
* parser
, tree name
)
14966 return cp_parser_lookup_name (parser
, name
,
14968 /*is_template=*/false,
14969 /*is_namespace=*/false,
14970 /*check_dependency=*/true,
14971 /*ambiguous_decls=*/NULL
);
14974 /* If DECL is a TEMPLATE_DECL that can be treated like a TYPE_DECL in
14975 the current context, return the TYPE_DECL. If TAG_NAME_P is
14976 true, the DECL indicates the class being defined in a class-head,
14977 or declared in an elaborated-type-specifier.
14979 Otherwise, return DECL. */
14982 cp_parser_maybe_treat_template_as_class (tree decl
, bool tag_name_p
)
14984 /* If the TEMPLATE_DECL is being declared as part of a class-head,
14985 the translation from TEMPLATE_DECL to TYPE_DECL occurs:
14988 template <typename T> struct B;
14991 template <typename T> struct A::B {};
14993 Similarly, in an elaborated-type-specifier:
14995 namespace N { struct X{}; }
14998 template <typename T> friend struct N::X;
15001 However, if the DECL refers to a class type, and we are in
15002 the scope of the class, then the name lookup automatically
15003 finds the TYPE_DECL created by build_self_reference rather
15004 than a TEMPLATE_DECL. For example, in:
15006 template <class T> struct S {
15010 there is no need to handle such case. */
15012 if (DECL_CLASS_TEMPLATE_P (decl
) && tag_name_p
)
15013 return DECL_TEMPLATE_RESULT (decl
);
15018 /* If too many, or too few, template-parameter lists apply to the
15019 declarator, issue an error message. Returns TRUE if all went well,
15020 and FALSE otherwise. */
15023 cp_parser_check_declarator_template_parameters (cp_parser
* parser
,
15024 cp_declarator
*declarator
)
15026 unsigned num_templates
;
15028 /* We haven't seen any classes that involve template parameters yet. */
15031 switch (declarator
->kind
)
15034 if (declarator
->u
.id
.qualifying_scope
)
15039 scope
= declarator
->u
.id
.qualifying_scope
;
15040 member
= declarator
->u
.id
.unqualified_name
;
15042 while (scope
&& CLASS_TYPE_P (scope
))
15044 /* You're supposed to have one `template <...>'
15045 for every template class, but you don't need one
15046 for a full specialization. For example:
15048 template <class T> struct S{};
15049 template <> struct S<int> { void f(); };
15050 void S<int>::f () {}
15052 is correct; there shouldn't be a `template <>' for
15053 the definition of `S<int>::f'. */
15054 if (CLASSTYPE_TEMPLATE_INFO (scope
)
15055 && (CLASSTYPE_TEMPLATE_INSTANTIATION (scope
)
15056 || uses_template_parms (CLASSTYPE_TI_ARGS (scope
)))
15057 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (scope
)))
15060 scope
= TYPE_CONTEXT (scope
);
15063 else if (TREE_CODE (declarator
->u
.id
.unqualified_name
)
15064 == TEMPLATE_ID_EXPR
)
15065 /* If the DECLARATOR has the form `X<y>' then it uses one
15066 additional level of template parameters. */
15069 return cp_parser_check_template_parameters (parser
,
15075 case cdk_reference
:
15077 return (cp_parser_check_declarator_template_parameters
15078 (parser
, declarator
->declarator
));
15084 gcc_unreachable ();
15089 /* NUM_TEMPLATES were used in the current declaration. If that is
15090 invalid, return FALSE and issue an error messages. Otherwise,
15094 cp_parser_check_template_parameters (cp_parser
* parser
,
15095 unsigned num_templates
)
15097 /* If there are more template classes than parameter lists, we have
15100 template <class T> void S<T>::R<T>::f (); */
15101 if (parser
->num_template_parameter_lists
< num_templates
)
15103 error ("too few template-parameter-lists");
15106 /* If there are the same number of template classes and parameter
15107 lists, that's OK. */
15108 if (parser
->num_template_parameter_lists
== num_templates
)
15110 /* If there are more, but only one more, then we are referring to a
15111 member template. That's OK too. */
15112 if (parser
->num_template_parameter_lists
== num_templates
+ 1)
15114 /* Otherwise, there are too many template parameter lists. We have
15117 template <class T> template <class U> void S::f(); */
15118 error ("too many template-parameter-lists");
15122 /* Parse an optional `::' token indicating that the following name is
15123 from the global namespace. If so, PARSER->SCOPE is set to the
15124 GLOBAL_NAMESPACE. Otherwise, PARSER->SCOPE is set to NULL_TREE,
15125 unless CURRENT_SCOPE_VALID_P is TRUE, in which case it is left alone.
15126 Returns the new value of PARSER->SCOPE, if the `::' token is
15127 present, and NULL_TREE otherwise. */
15130 cp_parser_global_scope_opt (cp_parser
* parser
, bool current_scope_valid_p
)
15134 /* Peek at the next token. */
15135 token
= cp_lexer_peek_token (parser
->lexer
);
15136 /* If we're looking at a `::' token then we're starting from the
15137 global namespace, not our current location. */
15138 if (token
->type
== CPP_SCOPE
)
15140 /* Consume the `::' token. */
15141 cp_lexer_consume_token (parser
->lexer
);
15142 /* Set the SCOPE so that we know where to start the lookup. */
15143 parser
->scope
= global_namespace
;
15144 parser
->qualifying_scope
= global_namespace
;
15145 parser
->object_scope
= NULL_TREE
;
15147 return parser
->scope
;
15149 else if (!current_scope_valid_p
)
15151 parser
->scope
= NULL_TREE
;
15152 parser
->qualifying_scope
= NULL_TREE
;
15153 parser
->object_scope
= NULL_TREE
;
15159 /* Returns TRUE if the upcoming token sequence is the start of a
15160 constructor declarator. If FRIEND_P is true, the declarator is
15161 preceded by the `friend' specifier. */
15164 cp_parser_constructor_declarator_p (cp_parser
*parser
, bool friend_p
)
15166 bool constructor_p
;
15167 tree type_decl
= NULL_TREE
;
15168 bool nested_name_p
;
15169 cp_token
*next_token
;
15171 /* The common case is that this is not a constructor declarator, so
15172 try to avoid doing lots of work if at all possible. It's not
15173 valid declare a constructor at function scope. */
15174 if (at_function_scope_p ())
15176 /* And only certain tokens can begin a constructor declarator. */
15177 next_token
= cp_lexer_peek_token (parser
->lexer
);
15178 if (next_token
->type
!= CPP_NAME
15179 && next_token
->type
!= CPP_SCOPE
15180 && next_token
->type
!= CPP_NESTED_NAME_SPECIFIER
15181 && next_token
->type
!= CPP_TEMPLATE_ID
)
15184 /* Parse tentatively; we are going to roll back all of the tokens
15186 cp_parser_parse_tentatively (parser
);
15187 /* Assume that we are looking at a constructor declarator. */
15188 constructor_p
= true;
15190 /* Look for the optional `::' operator. */
15191 cp_parser_global_scope_opt (parser
,
15192 /*current_scope_valid_p=*/false);
15193 /* Look for the nested-name-specifier. */
15195 = (cp_parser_nested_name_specifier_opt (parser
,
15196 /*typename_keyword_p=*/false,
15197 /*check_dependency_p=*/false,
15199 /*is_declaration=*/false)
15201 /* Outside of a class-specifier, there must be a
15202 nested-name-specifier. */
15203 if (!nested_name_p
&&
15204 (!at_class_scope_p () || !TYPE_BEING_DEFINED (current_class_type
)
15206 constructor_p
= false;
15207 /* If we still think that this might be a constructor-declarator,
15208 look for a class-name. */
15213 template <typename T> struct S { S(); };
15214 template <typename T> S<T>::S ();
15216 we must recognize that the nested `S' names a class.
15219 template <typename T> S<T>::S<T> ();
15221 we must recognize that the nested `S' names a template. */
15222 type_decl
= cp_parser_class_name (parser
,
15223 /*typename_keyword_p=*/false,
15224 /*template_keyword_p=*/false,
15226 /*check_dependency_p=*/false,
15227 /*class_head_p=*/false,
15228 /*is_declaration=*/false);
15229 /* If there was no class-name, then this is not a constructor. */
15230 constructor_p
= !cp_parser_error_occurred (parser
);
15233 /* If we're still considering a constructor, we have to see a `(',
15234 to begin the parameter-declaration-clause, followed by either a
15235 `)', an `...', or a decl-specifier. We need to check for a
15236 type-specifier to avoid being fooled into thinking that:
15240 is a constructor. (It is actually a function named `f' that
15241 takes one parameter (of type `int') and returns a value of type
15244 && cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('"))
15246 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_CLOSE_PAREN
)
15247 && cp_lexer_next_token_is_not (parser
->lexer
, CPP_ELLIPSIS
)
15248 /* A parameter declaration begins with a decl-specifier,
15249 which is either the "attribute" keyword, a storage class
15250 specifier, or (usually) a type-specifier. */
15251 && !cp_lexer_next_token_is_keyword (parser
->lexer
, RID_ATTRIBUTE
)
15252 && !cp_parser_storage_class_specifier_opt (parser
))
15255 tree pushed_scope
= NULL_TREE
;
15256 unsigned saved_num_template_parameter_lists
;
15258 /* Names appearing in the type-specifier should be looked up
15259 in the scope of the class. */
15260 if (current_class_type
)
15264 type
= TREE_TYPE (type_decl
);
15265 if (TREE_CODE (type
) == TYPENAME_TYPE
)
15267 type
= resolve_typename_type (type
,
15268 /*only_current_p=*/false);
15269 if (type
== error_mark_node
)
15271 cp_parser_abort_tentative_parse (parser
);
15275 pushed_scope
= push_scope (type
);
15278 /* Inside the constructor parameter list, surrounding
15279 template-parameter-lists do not apply. */
15280 saved_num_template_parameter_lists
15281 = parser
->num_template_parameter_lists
;
15282 parser
->num_template_parameter_lists
= 0;
15284 /* Look for the type-specifier. */
15285 cp_parser_type_specifier (parser
,
15286 CP_PARSER_FLAGS_NONE
,
15287 /*decl_specs=*/NULL
,
15288 /*is_declarator=*/true,
15289 /*declares_class_or_enum=*/NULL
,
15290 /*is_cv_qualifier=*/NULL
);
15292 parser
->num_template_parameter_lists
15293 = saved_num_template_parameter_lists
;
15295 /* Leave the scope of the class. */
15297 pop_scope (pushed_scope
);
15299 constructor_p
= !cp_parser_error_occurred (parser
);
15303 constructor_p
= false;
15304 /* We did not really want to consume any tokens. */
15305 cp_parser_abort_tentative_parse (parser
);
15307 return constructor_p
;
15310 /* Parse the definition of the function given by the DECL_SPECIFIERS,
15311 ATTRIBUTES, and DECLARATOR. The access checks have been deferred;
15312 they must be performed once we are in the scope of the function.
15314 Returns the function defined. */
15317 cp_parser_function_definition_from_specifiers_and_declarator
15318 (cp_parser
* parser
,
15319 cp_decl_specifier_seq
*decl_specifiers
,
15321 const cp_declarator
*declarator
)
15326 /* Begin the function-definition. */
15327 success_p
= start_function (decl_specifiers
, declarator
, attributes
);
15329 /* The things we're about to see are not directly qualified by any
15330 template headers we've seen thus far. */
15331 reset_specialization ();
15333 /* If there were names looked up in the decl-specifier-seq that we
15334 did not check, check them now. We must wait until we are in the
15335 scope of the function to perform the checks, since the function
15336 might be a friend. */
15337 perform_deferred_access_checks ();
15341 /* Skip the entire function. */
15342 cp_parser_skip_to_end_of_block_or_statement (parser
);
15343 fn
= error_mark_node
;
15346 fn
= cp_parser_function_definition_after_declarator (parser
,
15347 /*inline_p=*/false);
15352 /* Parse the part of a function-definition that follows the
15353 declarator. INLINE_P is TRUE iff this function is an inline
15354 function defined with a class-specifier.
15356 Returns the function defined. */
15359 cp_parser_function_definition_after_declarator (cp_parser
* parser
,
15363 bool ctor_initializer_p
= false;
15364 bool saved_in_unbraced_linkage_specification_p
;
15365 unsigned saved_num_template_parameter_lists
;
15367 /* If the next token is `return', then the code may be trying to
15368 make use of the "named return value" extension that G++ used to
15370 if (cp_lexer_next_token_is_keyword (parser
->lexer
, RID_RETURN
))
15372 /* Consume the `return' keyword. */
15373 cp_lexer_consume_token (parser
->lexer
);
15374 /* Look for the identifier that indicates what value is to be
15376 cp_parser_identifier (parser
);
15377 /* Issue an error message. */
15378 error ("named return values are no longer supported");
15379 /* Skip tokens until we reach the start of the function body. */
15382 cp_token
*token
= cp_lexer_peek_token (parser
->lexer
);
15383 if (token
->type
== CPP_OPEN_BRACE
15384 || token
->type
== CPP_EOF
15385 || token
->type
== CPP_PRAGMA_EOL
)
15387 cp_lexer_consume_token (parser
->lexer
);
15390 /* The `extern' in `extern "C" void f () { ... }' does not apply to
15391 anything declared inside `f'. */
15392 saved_in_unbraced_linkage_specification_p
15393 = parser
->in_unbraced_linkage_specification_p
;
15394 parser
->in_unbraced_linkage_specification_p
= false;
15395 /* Inside the function, surrounding template-parameter-lists do not
15397 saved_num_template_parameter_lists
15398 = parser
->num_template_parameter_lists
;
15399 parser
->num_template_parameter_lists
= 0;
15400 /* If the next token is `try', then we are looking at a
15401 function-try-block. */
15402 if (cp_lexer_next_token_is_keyword (parser
->lexer
, RID_TRY
))
15403 ctor_initializer_p
= cp_parser_function_try_block (parser
);
15404 /* A function-try-block includes the function-body, so we only do
15405 this next part if we're not processing a function-try-block. */
15408 = cp_parser_ctor_initializer_opt_and_function_body (parser
);
15410 /* Finish the function. */
15411 fn
= finish_function ((ctor_initializer_p
? 1 : 0) |
15412 (inline_p
? 2 : 0));
15413 /* Generate code for it, if necessary. */
15414 expand_or_defer_fn (fn
);
15415 /* Restore the saved values. */
15416 parser
->in_unbraced_linkage_specification_p
15417 = saved_in_unbraced_linkage_specification_p
;
15418 parser
->num_template_parameter_lists
15419 = saved_num_template_parameter_lists
;
15424 /* Parse a template-declaration, assuming that the `export' (and
15425 `extern') keywords, if present, has already been scanned. MEMBER_P
15426 is as for cp_parser_template_declaration. */
15429 cp_parser_template_declaration_after_export (cp_parser
* parser
, bool member_p
)
15431 tree decl
= NULL_TREE
;
15433 tree parameter_list
;
15434 bool friend_p
= false;
15435 bool need_lang_pop
;
15437 /* Look for the `template' keyword. */
15438 if (!cp_parser_require_keyword (parser
, RID_TEMPLATE
, "`template'"))
15442 if (!cp_parser_require (parser
, CPP_LESS
, "`<'"))
15446 A template ... shall not have C linkage. */
15447 if (current_lang_name
== lang_name_c
)
15449 error ("template with C linkage");
15450 /* Give it C++ linkage to avoid confusing other parts of the
15452 push_lang_context (lang_name_cplusplus
);
15453 need_lang_pop
= true;
15456 need_lang_pop
= false;
15458 /* We cannot perform access checks on the template parameter
15459 declarations until we know what is being declared, just as we
15460 cannot check the decl-specifier list. */
15461 push_deferring_access_checks (dk_deferred
);
15463 /* If the next token is `>', then we have an invalid
15464 specialization. Rather than complain about an invalid template
15465 parameter, issue an error message here. */
15466 if (cp_lexer_next_token_is (parser
->lexer
, CPP_GREATER
))
15468 cp_parser_error (parser
, "invalid explicit specialization");
15469 begin_specialization ();
15470 parameter_list
= NULL_TREE
;
15473 /* Parse the template parameters. */
15474 parameter_list
= cp_parser_template_parameter_list (parser
);
15476 /* Get the deferred access checks from the parameter list. These
15477 will be checked once we know what is being declared, as for a
15478 member template the checks must be performed in the scope of the
15479 class containing the member. */
15480 checks
= get_deferred_access_checks ();
15482 /* Look for the `>'. */
15483 cp_parser_skip_until_found (parser
, CPP_GREATER
, "`>'");
15484 /* We just processed one more parameter list. */
15485 ++parser
->num_template_parameter_lists
;
15486 /* If the next token is `template', there are more template
15488 if (cp_lexer_next_token_is_keyword (parser
->lexer
,
15490 cp_parser_template_declaration_after_export (parser
, member_p
);
15493 /* There are no access checks when parsing a template, as we do not
15494 know if a specialization will be a friend. */
15495 push_deferring_access_checks (dk_no_check
);
15496 decl
= cp_parser_single_declaration (parser
,
15500 pop_deferring_access_checks ();
15502 /* If this is a member template declaration, let the front
15504 if (member_p
&& !friend_p
&& decl
)
15506 if (TREE_CODE (decl
) == TYPE_DECL
)
15507 cp_parser_check_access_in_redeclaration (decl
);
15509 decl
= finish_member_template_decl (decl
);
15511 else if (friend_p
&& decl
&& TREE_CODE (decl
) == TYPE_DECL
)
15512 make_friend_class (current_class_type
, TREE_TYPE (decl
),
15513 /*complain=*/true);
15515 /* We are done with the current parameter list. */
15516 --parser
->num_template_parameter_lists
;
15518 pop_deferring_access_checks ();
15521 finish_template_decl (parameter_list
);
15523 /* Register member declarations. */
15524 if (member_p
&& !friend_p
&& decl
&& !DECL_CLASS_TEMPLATE_P (decl
))
15525 finish_member_declaration (decl
);
15526 /* For the erroneous case of a template with C linkage, we pushed an
15527 implicit C++ linkage scope; exit that scope now. */
15529 pop_lang_context ();
15530 /* If DECL is a function template, we must return to parse it later.
15531 (Even though there is no definition, there might be default
15532 arguments that need handling.) */
15533 if (member_p
&& decl
15534 && (TREE_CODE (decl
) == FUNCTION_DECL
15535 || DECL_FUNCTION_TEMPLATE_P (decl
)))
15536 TREE_VALUE (parser
->unparsed_functions_queues
)
15537 = tree_cons (NULL_TREE
, decl
,
15538 TREE_VALUE (parser
->unparsed_functions_queues
));
15541 /* Perform the deferred access checks from a template-parameter-list.
15542 CHECKS is a TREE_LIST of access checks, as returned by
15543 get_deferred_access_checks. */
15546 cp_parser_perform_template_parameter_access_checks (tree checks
)
15548 ++processing_template_parmlist
;
15549 perform_access_checks (checks
);
15550 --processing_template_parmlist
;
15553 /* Parse a `decl-specifier-seq [opt] init-declarator [opt] ;' or
15554 `function-definition' sequence. MEMBER_P is true, this declaration
15555 appears in a class scope.
15557 Returns the DECL for the declared entity. If FRIEND_P is non-NULL,
15558 *FRIEND_P is set to TRUE iff the declaration is a friend. */
15561 cp_parser_single_declaration (cp_parser
* parser
,
15566 int declares_class_or_enum
;
15567 tree decl
= NULL_TREE
;
15568 cp_decl_specifier_seq decl_specifiers
;
15569 bool function_definition_p
= false;
15571 /* This function is only used when processing a template
15573 gcc_assert (innermost_scope_kind () == sk_template_parms
15574 || innermost_scope_kind () == sk_template_spec
);
15576 /* Defer access checks until we know what is being declared. */
15577 push_deferring_access_checks (dk_deferred
);
15579 /* Try the `decl-specifier-seq [opt] init-declarator [opt]'
15581 cp_parser_decl_specifier_seq (parser
,
15582 CP_PARSER_FLAGS_OPTIONAL
,
15584 &declares_class_or_enum
);
15586 *friend_p
= cp_parser_friend_p (&decl_specifiers
);
15588 /* There are no template typedefs. */
15589 if (decl_specifiers
.specs
[(int) ds_typedef
])
15591 error ("template declaration of %qs", "typedef");
15592 decl
= error_mark_node
;
15595 /* Gather up the access checks that occurred the
15596 decl-specifier-seq. */
15597 stop_deferring_access_checks ();
15599 /* Check for the declaration of a template class. */
15600 if (declares_class_or_enum
)
15602 if (cp_parser_declares_only_class_p (parser
))
15604 decl
= shadow_tag (&decl_specifiers
);
15609 friend template <typename T> struct A<T>::B;
15612 A<T>::B will be represented by a TYPENAME_TYPE, and
15613 therefore not recognized by shadow_tag. */
15614 if (friend_p
&& *friend_p
15616 && decl_specifiers
.type
15617 && TYPE_P (decl_specifiers
.type
))
15618 decl
= decl_specifiers
.type
;
15620 if (decl
&& decl
!= error_mark_node
)
15621 decl
= TYPE_NAME (decl
);
15623 decl
= error_mark_node
;
15625 /* Perform access checks for template parameters. */
15626 cp_parser_perform_template_parameter_access_checks (checks
);
15629 /* If it's not a template class, try for a template function. If
15630 the next token is a `;', then this declaration does not declare
15631 anything. But, if there were errors in the decl-specifiers, then
15632 the error might well have come from an attempted class-specifier.
15633 In that case, there's no need to warn about a missing declarator. */
15635 && (cp_lexer_next_token_is_not (parser
->lexer
, CPP_SEMICOLON
)
15636 || decl_specifiers
.type
!= error_mark_node
))
15637 decl
= cp_parser_init_declarator (parser
,
15640 /*function_definition_allowed_p=*/true,
15642 declares_class_or_enum
,
15643 &function_definition_p
);
15645 pop_deferring_access_checks ();
15647 /* Clear any current qualification; whatever comes next is the start
15648 of something new. */
15649 parser
->scope
= NULL_TREE
;
15650 parser
->qualifying_scope
= NULL_TREE
;
15651 parser
->object_scope
= NULL_TREE
;
15652 /* Look for a trailing `;' after the declaration. */
15653 if (!function_definition_p
15654 && (decl
== error_mark_node
15655 || !cp_parser_require (parser
, CPP_SEMICOLON
, "`;'")))
15656 cp_parser_skip_to_end_of_block_or_statement (parser
);
15661 /* Parse a cast-expression that is not the operand of a unary "&". */
15664 cp_parser_simple_cast_expression (cp_parser
*parser
)
15666 return cp_parser_cast_expression (parser
, /*address_p=*/false,
15670 /* Parse a functional cast to TYPE. Returns an expression
15671 representing the cast. */
15674 cp_parser_functional_cast (cp_parser
* parser
, tree type
)
15676 tree expression_list
;
15680 = cp_parser_parenthesized_expression_list (parser
, false,
15682 /*non_constant_p=*/NULL
);
15684 cast
= build_functional_cast (type
, expression_list
);
15685 /* [expr.const]/1: In an integral constant expression "only type
15686 conversions to integral or enumeration type can be used". */
15687 if (TREE_CODE (type
) == TYPE_DECL
)
15688 type
= TREE_TYPE (type
);
15689 if (cast
!= error_mark_node
15690 && !cast_valid_in_integral_constant_expression_p (type
)
15691 && (cp_parser_non_integral_constant_expression
15692 (parser
, "a call to a constructor")))
15693 return error_mark_node
;
15697 /* Save the tokens that make up the body of a member function defined
15698 in a class-specifier. The DECL_SPECIFIERS and DECLARATOR have
15699 already been parsed. The ATTRIBUTES are any GNU "__attribute__"
15700 specifiers applied to the declaration. Returns the FUNCTION_DECL
15701 for the member function. */
15704 cp_parser_save_member_function_body (cp_parser
* parser
,
15705 cp_decl_specifier_seq
*decl_specifiers
,
15706 cp_declarator
*declarator
,
15713 /* Create the function-declaration. */
15714 fn
= start_method (decl_specifiers
, declarator
, attributes
);
15715 /* If something went badly wrong, bail out now. */
15716 if (fn
== error_mark_node
)
15718 /* If there's a function-body, skip it. */
15719 if (cp_parser_token_starts_function_definition_p
15720 (cp_lexer_peek_token (parser
->lexer
)))
15721 cp_parser_skip_to_end_of_block_or_statement (parser
);
15722 return error_mark_node
;
15725 /* Remember it, if there default args to post process. */
15726 cp_parser_save_default_args (parser
, fn
);
15728 /* Save away the tokens that make up the body of the
15730 first
= parser
->lexer
->next_token
;
15731 cp_parser_cache_group (parser
, CPP_CLOSE_BRACE
, /*depth=*/0);
15732 /* Handle function try blocks. */
15733 while (cp_lexer_next_token_is_keyword (parser
->lexer
, RID_CATCH
))
15734 cp_parser_cache_group (parser
, CPP_CLOSE_BRACE
, /*depth=*/0);
15735 last
= parser
->lexer
->next_token
;
15737 /* Save away the inline definition; we will process it when the
15738 class is complete. */
15739 DECL_PENDING_INLINE_INFO (fn
) = cp_token_cache_new (first
, last
);
15740 DECL_PENDING_INLINE_P (fn
) = 1;
15742 /* We need to know that this was defined in the class, so that
15743 friend templates are handled correctly. */
15744 DECL_INITIALIZED_IN_CLASS_P (fn
) = 1;
15746 /* We're done with the inline definition. */
15747 finish_method (fn
);
15749 /* Add FN to the queue of functions to be parsed later. */
15750 TREE_VALUE (parser
->unparsed_functions_queues
)
15751 = tree_cons (NULL_TREE
, fn
,
15752 TREE_VALUE (parser
->unparsed_functions_queues
));
15757 /* Parse a template-argument-list, as well as the trailing ">" (but
15758 not the opening ">"). See cp_parser_template_argument_list for the
15762 cp_parser_enclosed_template_argument_list (cp_parser
* parser
)
15766 tree saved_qualifying_scope
;
15767 tree saved_object_scope
;
15768 bool saved_greater_than_is_operator_p
;
15769 bool saved_skip_evaluation
;
15773 When parsing a template-id, the first non-nested `>' is taken as
15774 the end of the template-argument-list rather than a greater-than
15776 saved_greater_than_is_operator_p
15777 = parser
->greater_than_is_operator_p
;
15778 parser
->greater_than_is_operator_p
= false;
15779 /* Parsing the argument list may modify SCOPE, so we save it
15781 saved_scope
= parser
->scope
;
15782 saved_qualifying_scope
= parser
->qualifying_scope
;
15783 saved_object_scope
= parser
->object_scope
;
15784 /* We need to evaluate the template arguments, even though this
15785 template-id may be nested within a "sizeof". */
15786 saved_skip_evaluation
= skip_evaluation
;
15787 skip_evaluation
= false;
15788 /* Parse the template-argument-list itself. */
15789 if (cp_lexer_next_token_is (parser
->lexer
, CPP_GREATER
))
15790 arguments
= NULL_TREE
;
15792 arguments
= cp_parser_template_argument_list (parser
);
15793 /* Look for the `>' that ends the template-argument-list. If we find
15794 a '>>' instead, it's probably just a typo. */
15795 if (cp_lexer_next_token_is (parser
->lexer
, CPP_RSHIFT
))
15797 if (!saved_greater_than_is_operator_p
)
15799 /* If we're in a nested template argument list, the '>>' has
15800 to be a typo for '> >'. We emit the error message, but we
15801 continue parsing and we push a '>' as next token, so that
15802 the argument list will be parsed correctly. Note that the
15803 global source location is still on the token before the
15804 '>>', so we need to say explicitly where we want it. */
15805 cp_token
*token
= cp_lexer_peek_token (parser
->lexer
);
15806 error ("%H%<>>%> should be %<> >%> "
15807 "within a nested template argument list",
15810 /* ??? Proper recovery should terminate two levels of
15811 template argument list here. */
15812 token
->type
= CPP_GREATER
;
15816 /* If this is not a nested template argument list, the '>>'
15817 is a typo for '>'. Emit an error message and continue.
15818 Same deal about the token location, but here we can get it
15819 right by consuming the '>>' before issuing the diagnostic. */
15820 cp_lexer_consume_token (parser
->lexer
);
15821 error ("spurious %<>>%>, use %<>%> to terminate "
15822 "a template argument list");
15826 cp_parser_skip_until_found (parser
, CPP_GREATER
, "`>'");
15827 /* The `>' token might be a greater-than operator again now. */
15828 parser
->greater_than_is_operator_p
15829 = saved_greater_than_is_operator_p
;
15830 /* Restore the SAVED_SCOPE. */
15831 parser
->scope
= saved_scope
;
15832 parser
->qualifying_scope
= saved_qualifying_scope
;
15833 parser
->object_scope
= saved_object_scope
;
15834 skip_evaluation
= saved_skip_evaluation
;
15839 /* MEMBER_FUNCTION is a member function, or a friend. If default
15840 arguments, or the body of the function have not yet been parsed,
15844 cp_parser_late_parsing_for_member (cp_parser
* parser
, tree member_function
)
15846 /* If this member is a template, get the underlying
15848 if (DECL_FUNCTION_TEMPLATE_P (member_function
))
15849 member_function
= DECL_TEMPLATE_RESULT (member_function
);
15851 /* There should not be any class definitions in progress at this
15852 point; the bodies of members are only parsed outside of all class
15854 gcc_assert (parser
->num_classes_being_defined
== 0);
15855 /* While we're parsing the member functions we might encounter more
15856 classes. We want to handle them right away, but we don't want
15857 them getting mixed up with functions that are currently in the
15859 parser
->unparsed_functions_queues
15860 = tree_cons (NULL_TREE
, NULL_TREE
, parser
->unparsed_functions_queues
);
15862 /* Make sure that any template parameters are in scope. */
15863 maybe_begin_member_template_processing (member_function
);
15865 /* If the body of the function has not yet been parsed, parse it
15867 if (DECL_PENDING_INLINE_P (member_function
))
15869 tree function_scope
;
15870 cp_token_cache
*tokens
;
15872 /* The function is no longer pending; we are processing it. */
15873 tokens
= DECL_PENDING_INLINE_INFO (member_function
);
15874 DECL_PENDING_INLINE_INFO (member_function
) = NULL
;
15875 DECL_PENDING_INLINE_P (member_function
) = 0;
15877 /* If this is a local class, enter the scope of the containing
15879 function_scope
= current_function_decl
;
15880 if (function_scope
)
15881 push_function_context_to (function_scope
);
15884 /* Push the body of the function onto the lexer stack. */
15885 cp_parser_push_lexer_for_tokens (parser
, tokens
);
15887 /* Let the front end know that we going to be defining this
15889 start_preparsed_function (member_function
, NULL_TREE
,
15890 SF_PRE_PARSED
| SF_INCLASS_INLINE
);
15892 /* Don't do access checking if it is a templated function. */
15893 if (processing_template_decl
)
15894 push_deferring_access_checks (dk_no_check
);
15896 /* Now, parse the body of the function. */
15897 cp_parser_function_definition_after_declarator (parser
,
15898 /*inline_p=*/true);
15900 if (processing_template_decl
)
15901 pop_deferring_access_checks ();
15903 /* Leave the scope of the containing function. */
15904 if (function_scope
)
15905 pop_function_context_from (function_scope
);
15906 cp_parser_pop_lexer (parser
);
15909 /* Remove any template parameters from the symbol table. */
15910 maybe_end_member_template_processing ();
15912 /* Restore the queue. */
15913 parser
->unparsed_functions_queues
15914 = TREE_CHAIN (parser
->unparsed_functions_queues
);
15917 /* If DECL contains any default args, remember it on the unparsed
15918 functions queue. */
15921 cp_parser_save_default_args (cp_parser
* parser
, tree decl
)
15925 for (probe
= TYPE_ARG_TYPES (TREE_TYPE (decl
));
15927 probe
= TREE_CHAIN (probe
))
15928 if (TREE_PURPOSE (probe
))
15930 TREE_PURPOSE (parser
->unparsed_functions_queues
)
15931 = tree_cons (current_class_type
, decl
,
15932 TREE_PURPOSE (parser
->unparsed_functions_queues
));
15937 /* FN is a FUNCTION_DECL which may contains a parameter with an
15938 unparsed DEFAULT_ARG. Parse the default args now. This function
15939 assumes that the current scope is the scope in which the default
15940 argument should be processed. */
15943 cp_parser_late_parsing_default_args (cp_parser
*parser
, tree fn
)
15945 bool saved_local_variables_forbidden_p
;
15948 /* While we're parsing the default args, we might (due to the
15949 statement expression extension) encounter more classes. We want
15950 to handle them right away, but we don't want them getting mixed
15951 up with default args that are currently in the queue. */
15952 parser
->unparsed_functions_queues
15953 = tree_cons (NULL_TREE
, NULL_TREE
, parser
->unparsed_functions_queues
);
15955 /* Local variable names (and the `this' keyword) may not appear
15956 in a default argument. */
15957 saved_local_variables_forbidden_p
= parser
->local_variables_forbidden_p
;
15958 parser
->local_variables_forbidden_p
= true;
15960 for (parm
= TYPE_ARG_TYPES (TREE_TYPE (fn
));
15962 parm
= TREE_CHAIN (parm
))
15964 cp_token_cache
*tokens
;
15965 tree default_arg
= TREE_PURPOSE (parm
);
15967 VEC(tree
,gc
) *insts
;
15974 if (TREE_CODE (default_arg
) != DEFAULT_ARG
)
15975 /* This can happen for a friend declaration for a function
15976 already declared with default arguments. */
15979 /* Push the saved tokens for the default argument onto the parser's
15981 tokens
= DEFARG_TOKENS (default_arg
);
15982 cp_parser_push_lexer_for_tokens (parser
, tokens
);
15984 /* Parse the assignment-expression. */
15985 parsed_arg
= cp_parser_assignment_expression (parser
, /*cast_p=*/false);
15987 if (!processing_template_decl
)
15988 parsed_arg
= check_default_argument (TREE_VALUE (parm
), parsed_arg
);
15990 TREE_PURPOSE (parm
) = parsed_arg
;
15992 /* Update any instantiations we've already created. */
15993 for (insts
= DEFARG_INSTANTIATIONS (default_arg
), ix
= 0;
15994 VEC_iterate (tree
, insts
, ix
, copy
); ix
++)
15995 TREE_PURPOSE (copy
) = parsed_arg
;
15997 /* If the token stream has not been completely used up, then
15998 there was extra junk after the end of the default
16000 if (!cp_lexer_next_token_is (parser
->lexer
, CPP_EOF
))
16001 cp_parser_error (parser
, "expected %<,%>");
16003 /* Revert to the main lexer. */
16004 cp_parser_pop_lexer (parser
);
16007 /* Make sure no default arg is missing. */
16008 check_default_args (fn
);
16010 /* Restore the state of local_variables_forbidden_p. */
16011 parser
->local_variables_forbidden_p
= saved_local_variables_forbidden_p
;
16013 /* Restore the queue. */
16014 parser
->unparsed_functions_queues
16015 = TREE_CHAIN (parser
->unparsed_functions_queues
);
16018 /* Parse the operand of `sizeof' (or a similar operator). Returns
16019 either a TYPE or an expression, depending on the form of the
16020 input. The KEYWORD indicates which kind of expression we have
16024 cp_parser_sizeof_operand (cp_parser
* parser
, enum rid keyword
)
16026 static const char *format
;
16027 tree expr
= NULL_TREE
;
16028 const char *saved_message
;
16029 bool saved_integral_constant_expression_p
;
16030 bool saved_non_integral_constant_expression_p
;
16032 /* Initialize FORMAT the first time we get here. */
16034 format
= "types may not be defined in '%s' expressions";
16036 /* Types cannot be defined in a `sizeof' expression. Save away the
16038 saved_message
= parser
->type_definition_forbidden_message
;
16039 /* And create the new one. */
16040 parser
->type_definition_forbidden_message
16041 = XNEWVEC (const char, strlen (format
)
16042 + strlen (IDENTIFIER_POINTER (ridpointers
[keyword
]))
16044 sprintf ((char *) parser
->type_definition_forbidden_message
,
16045 format
, IDENTIFIER_POINTER (ridpointers
[keyword
]));
16047 /* The restrictions on constant-expressions do not apply inside
16048 sizeof expressions. */
16049 saved_integral_constant_expression_p
16050 = parser
->integral_constant_expression_p
;
16051 saved_non_integral_constant_expression_p
16052 = parser
->non_integral_constant_expression_p
;
16053 parser
->integral_constant_expression_p
= false;
16055 /* Do not actually evaluate the expression. */
16057 /* If it's a `(', then we might be looking at the type-id
16059 if (cp_lexer_next_token_is (parser
->lexer
, CPP_OPEN_PAREN
))
16062 bool saved_in_type_id_in_expr_p
;
16064 /* We can't be sure yet whether we're looking at a type-id or an
16066 cp_parser_parse_tentatively (parser
);
16067 /* Consume the `('. */
16068 cp_lexer_consume_token (parser
->lexer
);
16069 /* Parse the type-id. */
16070 saved_in_type_id_in_expr_p
= parser
->in_type_id_in_expr_p
;
16071 parser
->in_type_id_in_expr_p
= true;
16072 type
= cp_parser_type_id (parser
);
16073 parser
->in_type_id_in_expr_p
= saved_in_type_id_in_expr_p
;
16074 /* Now, look for the trailing `)'. */
16075 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "%<)%>");
16076 /* If all went well, then we're done. */
16077 if (cp_parser_parse_definitely (parser
))
16079 cp_decl_specifier_seq decl_specs
;
16081 /* Build a trivial decl-specifier-seq. */
16082 clear_decl_specs (&decl_specs
);
16083 decl_specs
.type
= type
;
16085 /* Call grokdeclarator to figure out what type this is. */
16086 expr
= grokdeclarator (NULL
,
16090 /*attrlist=*/NULL
);
16094 /* If the type-id production did not work out, then we must be
16095 looking at the unary-expression production. */
16097 expr
= cp_parser_unary_expression (parser
, /*address_p=*/false,
16099 /* Go back to evaluating expressions. */
16102 /* Free the message we created. */
16103 free ((char *) parser
->type_definition_forbidden_message
);
16104 /* And restore the old one. */
16105 parser
->type_definition_forbidden_message
= saved_message
;
16106 parser
->integral_constant_expression_p
16107 = saved_integral_constant_expression_p
;
16108 parser
->non_integral_constant_expression_p
16109 = saved_non_integral_constant_expression_p
;
16114 /* If the current declaration has no declarator, return true. */
16117 cp_parser_declares_only_class_p (cp_parser
*parser
)
16119 /* If the next token is a `;' or a `,' then there is no
16121 return (cp_lexer_next_token_is (parser
->lexer
, CPP_SEMICOLON
)
16122 || cp_lexer_next_token_is (parser
->lexer
, CPP_COMMA
));
16125 /* Update the DECL_SPECS to reflect the storage class indicated by
16129 cp_parser_set_storage_class (cp_parser
*parser
,
16130 cp_decl_specifier_seq
*decl_specs
,
16133 cp_storage_class storage_class
;
16135 if (parser
->in_unbraced_linkage_specification_p
)
16137 error ("invalid use of %qD in linkage specification",
16138 ridpointers
[keyword
]);
16141 else if (decl_specs
->storage_class
!= sc_none
)
16143 decl_specs
->multiple_storage_classes_p
= true;
16147 if ((keyword
== RID_EXTERN
|| keyword
== RID_STATIC
)
16148 && decl_specs
->specs
[(int) ds_thread
])
16150 error ("%<__thread%> before %qD", ridpointers
[keyword
]);
16151 decl_specs
->specs
[(int) ds_thread
] = 0;
16157 storage_class
= sc_auto
;
16160 storage_class
= sc_register
;
16163 storage_class
= sc_static
;
16166 storage_class
= sc_extern
;
16169 storage_class
= sc_mutable
;
16172 gcc_unreachable ();
16174 decl_specs
->storage_class
= storage_class
;
16177 /* Update the DECL_SPECS to reflect the TYPE_SPEC. If USER_DEFINED_P
16178 is true, the type is a user-defined type; otherwise it is a
16179 built-in type specified by a keyword. */
16182 cp_parser_set_decl_spec_type (cp_decl_specifier_seq
*decl_specs
,
16184 bool user_defined_p
)
16186 decl_specs
->any_specifiers_p
= true;
16188 /* If the user tries to redeclare bool or wchar_t (with, for
16189 example, in "typedef int wchar_t;") we remember that this is what
16190 happened. In system headers, we ignore these declarations so
16191 that G++ can work with system headers that are not C++-safe. */
16192 if (decl_specs
->specs
[(int) ds_typedef
]
16194 && (type_spec
== boolean_type_node
16195 || type_spec
== wchar_type_node
)
16196 && (decl_specs
->type
16197 || decl_specs
->specs
[(int) ds_long
]
16198 || decl_specs
->specs
[(int) ds_short
]
16199 || decl_specs
->specs
[(int) ds_unsigned
]
16200 || decl_specs
->specs
[(int) ds_signed
]))
16202 decl_specs
->redefined_builtin_type
= type_spec
;
16203 if (!decl_specs
->type
)
16205 decl_specs
->type
= type_spec
;
16206 decl_specs
->user_defined_type_p
= false;
16209 else if (decl_specs
->type
)
16210 decl_specs
->multiple_types_p
= true;
16213 decl_specs
->type
= type_spec
;
16214 decl_specs
->user_defined_type_p
= user_defined_p
;
16215 decl_specs
->redefined_builtin_type
= NULL_TREE
;
16219 /* DECL_SPECIFIERS is the representation of a decl-specifier-seq.
16220 Returns TRUE iff `friend' appears among the DECL_SPECIFIERS. */
16223 cp_parser_friend_p (const cp_decl_specifier_seq
*decl_specifiers
)
16225 return decl_specifiers
->specs
[(int) ds_friend
] != 0;
16228 /* If the next token is of the indicated TYPE, consume it. Otherwise,
16229 issue an error message indicating that TOKEN_DESC was expected.
16231 Returns the token consumed, if the token had the appropriate type.
16232 Otherwise, returns NULL. */
16235 cp_parser_require (cp_parser
* parser
,
16236 enum cpp_ttype type
,
16237 const char* token_desc
)
16239 if (cp_lexer_next_token_is (parser
->lexer
, type
))
16240 return cp_lexer_consume_token (parser
->lexer
);
16243 /* Output the MESSAGE -- unless we're parsing tentatively. */
16244 if (!cp_parser_simulate_error (parser
))
16246 char *message
= concat ("expected ", token_desc
, NULL
);
16247 cp_parser_error (parser
, message
);
16254 /* Like cp_parser_require, except that tokens will be skipped until
16255 the desired token is found. An error message is still produced if
16256 the next token is not as expected. */
16259 cp_parser_skip_until_found (cp_parser
* parser
,
16260 enum cpp_ttype type
,
16261 const char* token_desc
)
16264 unsigned nesting_depth
= 0;
16266 if (cp_parser_require (parser
, type
, token_desc
))
16269 /* Skip tokens until the desired token is found. */
16272 /* Peek at the next token. */
16273 token
= cp_lexer_peek_token (parser
->lexer
);
16275 /* If we've reached the token we want, consume it and stop. */
16276 if (token
->type
== type
&& !nesting_depth
)
16278 cp_lexer_consume_token (parser
->lexer
);
16282 switch (token
->type
)
16285 case CPP_PRAGMA_EOL
:
16286 /* If we've run out of tokens, stop. */
16289 case CPP_OPEN_BRACE
:
16290 case CPP_OPEN_PAREN
:
16291 case CPP_OPEN_SQUARE
:
16295 case CPP_CLOSE_BRACE
:
16296 case CPP_CLOSE_PAREN
:
16297 case CPP_CLOSE_SQUARE
:
16298 if (nesting_depth
-- == 0)
16306 /* Consume this token. */
16307 cp_lexer_consume_token (parser
->lexer
);
16311 /* If the next token is the indicated keyword, consume it. Otherwise,
16312 issue an error message indicating that TOKEN_DESC was expected.
16314 Returns the token consumed, if the token had the appropriate type.
16315 Otherwise, returns NULL. */
16318 cp_parser_require_keyword (cp_parser
* parser
,
16320 const char* token_desc
)
16322 cp_token
*token
= cp_parser_require (parser
, CPP_KEYWORD
, token_desc
);
16324 if (token
&& token
->keyword
!= keyword
)
16326 dyn_string_t error_msg
;
16328 /* Format the error message. */
16329 error_msg
= dyn_string_new (0);
16330 dyn_string_append_cstr (error_msg
, "expected ");
16331 dyn_string_append_cstr (error_msg
, token_desc
);
16332 cp_parser_error (parser
, error_msg
->s
);
16333 dyn_string_delete (error_msg
);
16340 /* Returns TRUE iff TOKEN is a token that can begin the body of a
16341 function-definition. */
16344 cp_parser_token_starts_function_definition_p (cp_token
* token
)
16346 return (/* An ordinary function-body begins with an `{'. */
16347 token
->type
== CPP_OPEN_BRACE
16348 /* A ctor-initializer begins with a `:'. */
16349 || token
->type
== CPP_COLON
16350 /* A function-try-block begins with `try'. */
16351 || token
->keyword
== RID_TRY
16352 /* The named return value extension begins with `return'. */
16353 || token
->keyword
== RID_RETURN
);
16356 /* Returns TRUE iff the next token is the ":" or "{" beginning a class
16360 cp_parser_next_token_starts_class_definition_p (cp_parser
*parser
)
16364 token
= cp_lexer_peek_token (parser
->lexer
);
16365 return (token
->type
== CPP_OPEN_BRACE
|| token
->type
== CPP_COLON
);
16368 /* Returns TRUE iff the next token is the "," or ">" ending a
16369 template-argument. */
16372 cp_parser_next_token_ends_template_argument_p (cp_parser
*parser
)
16376 token
= cp_lexer_peek_token (parser
->lexer
);
16377 return (token
->type
== CPP_COMMA
|| token
->type
== CPP_GREATER
);
16380 /* Returns TRUE iff the n-th token is a "<", or the n-th is a "[" and the
16381 (n+1)-th is a ":" (which is a possible digraph typo for "< ::"). */
16384 cp_parser_nth_token_starts_template_argument_list_p (cp_parser
* parser
,
16389 token
= cp_lexer_peek_nth_token (parser
->lexer
, n
);
16390 if (token
->type
== CPP_LESS
)
16392 /* Check for the sequence `<::' in the original code. It would be lexed as
16393 `[:', where `[' is a digraph, and there is no whitespace before
16395 if (token
->type
== CPP_OPEN_SQUARE
&& token
->flags
& DIGRAPH
)
16398 token2
= cp_lexer_peek_nth_token (parser
->lexer
, n
+1);
16399 if (token2
->type
== CPP_COLON
&& !(token2
->flags
& PREV_WHITE
))
16405 /* Returns the kind of tag indicated by TOKEN, if it is a class-key,
16406 or none_type otherwise. */
16408 static enum tag_types
16409 cp_parser_token_is_class_key (cp_token
* token
)
16411 switch (token
->keyword
)
16416 return record_type
;
16425 /* Issue an error message if the CLASS_KEY does not match the TYPE. */
16428 cp_parser_check_class_key (enum tag_types class_key
, tree type
)
16430 if ((TREE_CODE (type
) == UNION_TYPE
) != (class_key
== union_type
))
16431 pedwarn ("%qs tag used in naming %q#T",
16432 class_key
== union_type
? "union"
16433 : class_key
== record_type
? "struct" : "class",
16437 /* Issue an error message if DECL is redeclared with different
16438 access than its original declaration [class.access.spec/3].
16439 This applies to nested classes and nested class templates.
16443 cp_parser_check_access_in_redeclaration (tree decl
)
16445 if (!CLASS_TYPE_P (TREE_TYPE (decl
)))
16448 if ((TREE_PRIVATE (decl
)
16449 != (current_access_specifier
== access_private_node
))
16450 || (TREE_PROTECTED (decl
)
16451 != (current_access_specifier
== access_protected_node
)))
16452 error ("%qD redeclared with different access", decl
);
16455 /* Look for the `template' keyword, as a syntactic disambiguator.
16456 Return TRUE iff it is present, in which case it will be
16460 cp_parser_optional_template_keyword (cp_parser
*parser
)
16462 if (cp_lexer_next_token_is_keyword (parser
->lexer
, RID_TEMPLATE
))
16464 /* The `template' keyword can only be used within templates;
16465 outside templates the parser can always figure out what is a
16466 template and what is not. */
16467 if (!processing_template_decl
)
16469 error ("%<template%> (as a disambiguator) is only allowed "
16470 "within templates");
16471 /* If this part of the token stream is rescanned, the same
16472 error message would be generated. So, we purge the token
16473 from the stream. */
16474 cp_lexer_purge_token (parser
->lexer
);
16479 /* Consume the `template' keyword. */
16480 cp_lexer_consume_token (parser
->lexer
);
16488 /* The next token is a CPP_NESTED_NAME_SPECIFIER. Consume the token,
16489 set PARSER->SCOPE, and perform other related actions. */
16492 cp_parser_pre_parsed_nested_name_specifier (cp_parser
*parser
)
16497 /* Get the stored value. */
16498 value
= cp_lexer_consume_token (parser
->lexer
)->value
;
16499 /* Perform any access checks that were deferred. */
16500 for (check
= TREE_PURPOSE (value
); check
; check
= TREE_CHAIN (check
))
16501 perform_or_defer_access_check (TREE_PURPOSE (check
), TREE_VALUE (check
));
16502 /* Set the scope from the stored value. */
16503 parser
->scope
= TREE_VALUE (value
);
16504 parser
->qualifying_scope
= TREE_TYPE (value
);
16505 parser
->object_scope
= NULL_TREE
;
16508 /* Consume tokens up through a non-nested END token. */
16511 cp_parser_cache_group (cp_parser
*parser
,
16512 enum cpp_ttype end
,
16519 /* Abort a parenthesized expression if we encounter a brace. */
16520 if ((end
== CPP_CLOSE_PAREN
|| depth
== 0)
16521 && cp_lexer_next_token_is (parser
->lexer
, CPP_SEMICOLON
))
16523 /* If we've reached the end of the file, stop. */
16524 if (cp_lexer_next_token_is (parser
->lexer
, CPP_EOF
)
16525 || (end
!= CPP_PRAGMA_EOL
16526 && cp_lexer_next_token_is (parser
->lexer
, CPP_PRAGMA_EOL
)))
16528 /* Consume the next token. */
16529 token
= cp_lexer_consume_token (parser
->lexer
);
16530 /* See if it starts a new group. */
16531 if (token
->type
== CPP_OPEN_BRACE
)
16533 cp_parser_cache_group (parser
, CPP_CLOSE_BRACE
, depth
+ 1);
16537 else if (token
->type
== CPP_OPEN_PAREN
)
16538 cp_parser_cache_group (parser
, CPP_CLOSE_PAREN
, depth
+ 1);
16539 else if (token
->type
== CPP_PRAGMA
)
16540 cp_parser_cache_group (parser
, CPP_PRAGMA_EOL
, depth
+ 1);
16541 else if (token
->type
== end
)
16546 /* Begin parsing tentatively. We always save tokens while parsing
16547 tentatively so that if the tentative parsing fails we can restore the
16551 cp_parser_parse_tentatively (cp_parser
* parser
)
16553 /* Enter a new parsing context. */
16554 parser
->context
= cp_parser_context_new (parser
->context
);
16555 /* Begin saving tokens. */
16556 cp_lexer_save_tokens (parser
->lexer
);
16557 /* In order to avoid repetitive access control error messages,
16558 access checks are queued up until we are no longer parsing
16560 push_deferring_access_checks (dk_deferred
);
16563 /* Commit to the currently active tentative parse. */
16566 cp_parser_commit_to_tentative_parse (cp_parser
* parser
)
16568 cp_parser_context
*context
;
16571 /* Mark all of the levels as committed. */
16572 lexer
= parser
->lexer
;
16573 for (context
= parser
->context
; context
->next
; context
= context
->next
)
16575 if (context
->status
== CP_PARSER_STATUS_KIND_COMMITTED
)
16577 context
->status
= CP_PARSER_STATUS_KIND_COMMITTED
;
16578 while (!cp_lexer_saving_tokens (lexer
))
16579 lexer
= lexer
->next
;
16580 cp_lexer_commit_tokens (lexer
);
16584 /* Abort the currently active tentative parse. All consumed tokens
16585 will be rolled back, and no diagnostics will be issued. */
16588 cp_parser_abort_tentative_parse (cp_parser
* parser
)
16590 cp_parser_simulate_error (parser
);
16591 /* Now, pretend that we want to see if the construct was
16592 successfully parsed. */
16593 cp_parser_parse_definitely (parser
);
16596 /* Stop parsing tentatively. If a parse error has occurred, restore the
16597 token stream. Otherwise, commit to the tokens we have consumed.
16598 Returns true if no error occurred; false otherwise. */
16601 cp_parser_parse_definitely (cp_parser
* parser
)
16603 bool error_occurred
;
16604 cp_parser_context
*context
;
16606 /* Remember whether or not an error occurred, since we are about to
16607 destroy that information. */
16608 error_occurred
= cp_parser_error_occurred (parser
);
16609 /* Remove the topmost context from the stack. */
16610 context
= parser
->context
;
16611 parser
->context
= context
->next
;
16612 /* If no parse errors occurred, commit to the tentative parse. */
16613 if (!error_occurred
)
16615 /* Commit to the tokens read tentatively, unless that was
16617 if (context
->status
!= CP_PARSER_STATUS_KIND_COMMITTED
)
16618 cp_lexer_commit_tokens (parser
->lexer
);
16620 pop_to_parent_deferring_access_checks ();
16622 /* Otherwise, if errors occurred, roll back our state so that things
16623 are just as they were before we began the tentative parse. */
16626 cp_lexer_rollback_tokens (parser
->lexer
);
16627 pop_deferring_access_checks ();
16629 /* Add the context to the front of the free list. */
16630 context
->next
= cp_parser_context_free_list
;
16631 cp_parser_context_free_list
= context
;
16633 return !error_occurred
;
16636 /* Returns true if we are parsing tentatively and are not committed to
16637 this tentative parse. */
16640 cp_parser_uncommitted_to_tentative_parse_p (cp_parser
* parser
)
16642 return (cp_parser_parsing_tentatively (parser
)
16643 && parser
->context
->status
!= CP_PARSER_STATUS_KIND_COMMITTED
);
16646 /* Returns nonzero iff an error has occurred during the most recent
16647 tentative parse. */
16650 cp_parser_error_occurred (cp_parser
* parser
)
16652 return (cp_parser_parsing_tentatively (parser
)
16653 && parser
->context
->status
== CP_PARSER_STATUS_KIND_ERROR
);
16656 /* Returns nonzero if GNU extensions are allowed. */
16659 cp_parser_allow_gnu_extensions_p (cp_parser
* parser
)
16661 return parser
->allow_gnu_extensions_p
;
16664 /* Objective-C++ Productions */
16667 /* Parse an Objective-C expression, which feeds into a primary-expression
16671 objc-message-expression
16672 objc-string-literal
16673 objc-encode-expression
16674 objc-protocol-expression
16675 objc-selector-expression
16677 Returns a tree representation of the expression. */
16680 cp_parser_objc_expression (cp_parser
* parser
)
16682 /* Try to figure out what kind of declaration is present. */
16683 cp_token
*kwd
= cp_lexer_peek_token (parser
->lexer
);
16687 case CPP_OPEN_SQUARE
:
16688 return cp_parser_objc_message_expression (parser
);
16690 case CPP_OBJC_STRING
:
16691 kwd
= cp_lexer_consume_token (parser
->lexer
);
16692 return objc_build_string_object (kwd
->value
);
16695 switch (kwd
->keyword
)
16697 case RID_AT_ENCODE
:
16698 return cp_parser_objc_encode_expression (parser
);
16700 case RID_AT_PROTOCOL
:
16701 return cp_parser_objc_protocol_expression (parser
);
16703 case RID_AT_SELECTOR
:
16704 return cp_parser_objc_selector_expression (parser
);
16710 error ("misplaced %<@%D%> Objective-C++ construct", kwd
->value
);
16711 cp_parser_skip_to_end_of_block_or_statement (parser
);
16714 return error_mark_node
;
16717 /* Parse an Objective-C message expression.
16719 objc-message-expression:
16720 [ objc-message-receiver objc-message-args ]
16722 Returns a representation of an Objective-C message. */
16725 cp_parser_objc_message_expression (cp_parser
* parser
)
16727 tree receiver
, messageargs
;
16729 cp_lexer_consume_token (parser
->lexer
); /* Eat '['. */
16730 receiver
= cp_parser_objc_message_receiver (parser
);
16731 messageargs
= cp_parser_objc_message_args (parser
);
16732 cp_parser_require (parser
, CPP_CLOSE_SQUARE
, "`]'");
16734 return objc_build_message_expr (build_tree_list (receiver
, messageargs
));
16737 /* Parse an objc-message-receiver.
16739 objc-message-receiver:
16741 simple-type-specifier
16743 Returns a representation of the type or expression. */
16746 cp_parser_objc_message_receiver (cp_parser
* parser
)
16750 /* An Objective-C message receiver may be either (1) a type
16751 or (2) an expression. */
16752 cp_parser_parse_tentatively (parser
);
16753 rcv
= cp_parser_expression (parser
, false);
16755 if (cp_parser_parse_definitely (parser
))
16758 rcv
= cp_parser_simple_type_specifier (parser
,
16759 /*decl_specs=*/NULL
,
16760 CP_PARSER_FLAGS_NONE
);
16762 return objc_get_class_reference (rcv
);
16765 /* Parse the arguments and selectors comprising an Objective-C message.
16770 objc-selector-args , objc-comma-args
16772 objc-selector-args:
16773 objc-selector [opt] : assignment-expression
16774 objc-selector-args objc-selector [opt] : assignment-expression
16777 assignment-expression
16778 objc-comma-args , assignment-expression
16780 Returns a TREE_LIST, with TREE_PURPOSE containing a list of
16781 selector arguments and TREE_VALUE containing a list of comma
16785 cp_parser_objc_message_args (cp_parser
* parser
)
16787 tree sel_args
= NULL_TREE
, addl_args
= NULL_TREE
;
16788 bool maybe_unary_selector_p
= true;
16789 cp_token
*token
= cp_lexer_peek_token (parser
->lexer
);
16791 while (cp_parser_objc_selector_p (token
->type
) || token
->type
== CPP_COLON
)
16793 tree selector
= NULL_TREE
, arg
;
16795 if (token
->type
!= CPP_COLON
)
16796 selector
= cp_parser_objc_selector (parser
);
16798 /* Detect if we have a unary selector. */
16799 if (maybe_unary_selector_p
16800 && cp_lexer_next_token_is_not (parser
->lexer
, CPP_COLON
))
16801 return build_tree_list (selector
, NULL_TREE
);
16803 maybe_unary_selector_p
= false;
16804 cp_parser_require (parser
, CPP_COLON
, "`:'");
16805 arg
= cp_parser_assignment_expression (parser
, false);
16808 = chainon (sel_args
,
16809 build_tree_list (selector
, arg
));
16811 token
= cp_lexer_peek_token (parser
->lexer
);
16814 /* Handle non-selector arguments, if any. */
16815 while (token
->type
== CPP_COMMA
)
16819 cp_lexer_consume_token (parser
->lexer
);
16820 arg
= cp_parser_assignment_expression (parser
, false);
16823 = chainon (addl_args
,
16824 build_tree_list (NULL_TREE
, arg
));
16826 token
= cp_lexer_peek_token (parser
->lexer
);
16829 return build_tree_list (sel_args
, addl_args
);
16832 /* Parse an Objective-C encode expression.
16834 objc-encode-expression:
16835 @encode objc-typename
16837 Returns an encoded representation of the type argument. */
16840 cp_parser_objc_encode_expression (cp_parser
* parser
)
16844 cp_lexer_consume_token (parser
->lexer
); /* Eat '@encode'. */
16845 cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('");
16846 type
= complete_type (cp_parser_type_id (parser
));
16847 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
16851 error ("%<@encode%> must specify a type as an argument");
16852 return error_mark_node
;
16855 return objc_build_encode_expr (type
);
16858 /* Parse an Objective-C @defs expression. */
16861 cp_parser_objc_defs_expression (cp_parser
*parser
)
16865 cp_lexer_consume_token (parser
->lexer
); /* Eat '@defs'. */
16866 cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('");
16867 name
= cp_parser_identifier (parser
);
16868 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
16870 return objc_get_class_ivars (name
);
16873 /* Parse an Objective-C protocol expression.
16875 objc-protocol-expression:
16876 @protocol ( identifier )
16878 Returns a representation of the protocol expression. */
16881 cp_parser_objc_protocol_expression (cp_parser
* parser
)
16885 cp_lexer_consume_token (parser
->lexer
); /* Eat '@protocol'. */
16886 cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('");
16887 proto
= cp_parser_identifier (parser
);
16888 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
16890 return objc_build_protocol_expr (proto
);
16893 /* Parse an Objective-C selector expression.
16895 objc-selector-expression:
16896 @selector ( objc-method-signature )
16898 objc-method-signature:
16904 objc-selector-seq objc-selector :
16906 Returns a representation of the method selector. */
16909 cp_parser_objc_selector_expression (cp_parser
* parser
)
16911 tree sel_seq
= NULL_TREE
;
16912 bool maybe_unary_selector_p
= true;
16915 cp_lexer_consume_token (parser
->lexer
); /* Eat '@selector'. */
16916 cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('");
16917 token
= cp_lexer_peek_token (parser
->lexer
);
16919 while (cp_parser_objc_selector_p (token
->type
) || token
->type
== CPP_COLON
16920 || token
->type
== CPP_SCOPE
)
16922 tree selector
= NULL_TREE
;
16924 if (token
->type
!= CPP_COLON
16925 || token
->type
== CPP_SCOPE
)
16926 selector
= cp_parser_objc_selector (parser
);
16928 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_COLON
)
16929 && cp_lexer_next_token_is_not (parser
->lexer
, CPP_SCOPE
))
16931 /* Detect if we have a unary selector. */
16932 if (maybe_unary_selector_p
)
16934 sel_seq
= selector
;
16935 goto finish_selector
;
16939 cp_parser_error (parser
, "expected %<:%>");
16942 maybe_unary_selector_p
= false;
16943 token
= cp_lexer_consume_token (parser
->lexer
);
16945 if (token
->type
== CPP_SCOPE
)
16948 = chainon (sel_seq
,
16949 build_tree_list (selector
, NULL_TREE
));
16951 = chainon (sel_seq
,
16952 build_tree_list (NULL_TREE
, NULL_TREE
));
16956 = chainon (sel_seq
,
16957 build_tree_list (selector
, NULL_TREE
));
16959 token
= cp_lexer_peek_token (parser
->lexer
);
16963 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
16965 return objc_build_selector_expr (sel_seq
);
16968 /* Parse a list of identifiers.
16970 objc-identifier-list:
16972 objc-identifier-list , identifier
16974 Returns a TREE_LIST of identifier nodes. */
16977 cp_parser_objc_identifier_list (cp_parser
* parser
)
16979 tree list
= build_tree_list (NULL_TREE
, cp_parser_identifier (parser
));
16980 cp_token
*sep
= cp_lexer_peek_token (parser
->lexer
);
16982 while (sep
->type
== CPP_COMMA
)
16984 cp_lexer_consume_token (parser
->lexer
); /* Eat ','. */
16985 list
= chainon (list
,
16986 build_tree_list (NULL_TREE
,
16987 cp_parser_identifier (parser
)));
16988 sep
= cp_lexer_peek_token (parser
->lexer
);
16994 /* Parse an Objective-C alias declaration.
16996 objc-alias-declaration:
16997 @compatibility_alias identifier identifier ;
16999 This function registers the alias mapping with the Objective-C front-end.
17000 It returns nothing. */
17003 cp_parser_objc_alias_declaration (cp_parser
* parser
)
17007 cp_lexer_consume_token (parser
->lexer
); /* Eat '@compatibility_alias'. */
17008 alias
= cp_parser_identifier (parser
);
17009 orig
= cp_parser_identifier (parser
);
17010 objc_declare_alias (alias
, orig
);
17011 cp_parser_consume_semicolon_at_end_of_statement (parser
);
17014 /* Parse an Objective-C class forward-declaration.
17016 objc-class-declaration:
17017 @class objc-identifier-list ;
17019 The function registers the forward declarations with the Objective-C
17020 front-end. It returns nothing. */
17023 cp_parser_objc_class_declaration (cp_parser
* parser
)
17025 cp_lexer_consume_token (parser
->lexer
); /* Eat '@class'. */
17026 objc_declare_class (cp_parser_objc_identifier_list (parser
));
17027 cp_parser_consume_semicolon_at_end_of_statement (parser
);
17030 /* Parse a list of Objective-C protocol references.
17032 objc-protocol-refs-opt:
17033 objc-protocol-refs [opt]
17035 objc-protocol-refs:
17036 < objc-identifier-list >
17038 Returns a TREE_LIST of identifiers, if any. */
17041 cp_parser_objc_protocol_refs_opt (cp_parser
* parser
)
17043 tree protorefs
= NULL_TREE
;
17045 if(cp_lexer_next_token_is (parser
->lexer
, CPP_LESS
))
17047 cp_lexer_consume_token (parser
->lexer
); /* Eat '<'. */
17048 protorefs
= cp_parser_objc_identifier_list (parser
);
17049 cp_parser_require (parser
, CPP_GREATER
, "`>'");
17055 /* Parse a Objective-C visibility specification. */
17058 cp_parser_objc_visibility_spec (cp_parser
* parser
)
17060 cp_token
*vis
= cp_lexer_peek_token (parser
->lexer
);
17062 switch (vis
->keyword
)
17064 case RID_AT_PRIVATE
:
17065 objc_set_visibility (2);
17067 case RID_AT_PROTECTED
:
17068 objc_set_visibility (0);
17070 case RID_AT_PUBLIC
:
17071 objc_set_visibility (1);
17077 /* Eat '@private'/'@protected'/'@public'. */
17078 cp_lexer_consume_token (parser
->lexer
);
17081 /* Parse an Objective-C method type. */
17084 cp_parser_objc_method_type (cp_parser
* parser
)
17086 objc_set_method_type
17087 (cp_lexer_consume_token (parser
->lexer
)->type
== CPP_PLUS
17092 /* Parse an Objective-C protocol qualifier. */
17095 cp_parser_objc_protocol_qualifiers (cp_parser
* parser
)
17097 tree quals
= NULL_TREE
, node
;
17098 cp_token
*token
= cp_lexer_peek_token (parser
->lexer
);
17100 node
= token
->value
;
17102 while (node
&& TREE_CODE (node
) == IDENTIFIER_NODE
17103 && (node
== ridpointers
[(int) RID_IN
]
17104 || node
== ridpointers
[(int) RID_OUT
]
17105 || node
== ridpointers
[(int) RID_INOUT
]
17106 || node
== ridpointers
[(int) RID_BYCOPY
]
17107 || node
== ridpointers
[(int) RID_BYREF
]
17108 || node
== ridpointers
[(int) RID_ONEWAY
]))
17110 quals
= tree_cons (NULL_TREE
, node
, quals
);
17111 cp_lexer_consume_token (parser
->lexer
);
17112 token
= cp_lexer_peek_token (parser
->lexer
);
17113 node
= token
->value
;
17119 /* Parse an Objective-C typename. */
17122 cp_parser_objc_typename (cp_parser
* parser
)
17124 tree typename
= NULL_TREE
;
17126 if (cp_lexer_next_token_is (parser
->lexer
, CPP_OPEN_PAREN
))
17128 tree proto_quals
, cp_type
= NULL_TREE
;
17130 cp_lexer_consume_token (parser
->lexer
); /* Eat '('. */
17131 proto_quals
= cp_parser_objc_protocol_qualifiers (parser
);
17133 /* An ObjC type name may consist of just protocol qualifiers, in which
17134 case the type shall default to 'id'. */
17135 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_CLOSE_PAREN
))
17136 cp_type
= cp_parser_type_id (parser
);
17138 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
17139 typename
= build_tree_list (proto_quals
, cp_type
);
17145 /* Check to see if TYPE refers to an Objective-C selector name. */
17148 cp_parser_objc_selector_p (enum cpp_ttype type
)
17150 return (type
== CPP_NAME
|| type
== CPP_KEYWORD
17151 || type
== CPP_AND_AND
|| type
== CPP_AND_EQ
|| type
== CPP_AND
17152 || type
== CPP_OR
|| type
== CPP_COMPL
|| type
== CPP_NOT
17153 || type
== CPP_NOT_EQ
|| type
== CPP_OR_OR
|| type
== CPP_OR_EQ
17154 || type
== CPP_XOR
|| type
== CPP_XOR_EQ
);
17157 /* Parse an Objective-C selector. */
17160 cp_parser_objc_selector (cp_parser
* parser
)
17162 cp_token
*token
= cp_lexer_consume_token (parser
->lexer
);
17164 if (!cp_parser_objc_selector_p (token
->type
))
17166 error ("invalid Objective-C++ selector name");
17167 return error_mark_node
;
17170 /* C++ operator names are allowed to appear in ObjC selectors. */
17171 switch (token
->type
)
17173 case CPP_AND_AND
: return get_identifier ("and");
17174 case CPP_AND_EQ
: return get_identifier ("and_eq");
17175 case CPP_AND
: return get_identifier ("bitand");
17176 case CPP_OR
: return get_identifier ("bitor");
17177 case CPP_COMPL
: return get_identifier ("compl");
17178 case CPP_NOT
: return get_identifier ("not");
17179 case CPP_NOT_EQ
: return get_identifier ("not_eq");
17180 case CPP_OR_OR
: return get_identifier ("or");
17181 case CPP_OR_EQ
: return get_identifier ("or_eq");
17182 case CPP_XOR
: return get_identifier ("xor");
17183 case CPP_XOR_EQ
: return get_identifier ("xor_eq");
17184 default: return token
->value
;
17188 /* Parse an Objective-C params list. */
17191 cp_parser_objc_method_keyword_params (cp_parser
* parser
)
17193 tree params
= NULL_TREE
;
17194 bool maybe_unary_selector_p
= true;
17195 cp_token
*token
= cp_lexer_peek_token (parser
->lexer
);
17197 while (cp_parser_objc_selector_p (token
->type
) || token
->type
== CPP_COLON
)
17199 tree selector
= NULL_TREE
, typename
, identifier
;
17201 if (token
->type
!= CPP_COLON
)
17202 selector
= cp_parser_objc_selector (parser
);
17204 /* Detect if we have a unary selector. */
17205 if (maybe_unary_selector_p
17206 && cp_lexer_next_token_is_not (parser
->lexer
, CPP_COLON
))
17209 maybe_unary_selector_p
= false;
17210 cp_parser_require (parser
, CPP_COLON
, "`:'");
17211 typename
= cp_parser_objc_typename (parser
);
17212 identifier
= cp_parser_identifier (parser
);
17216 objc_build_keyword_decl (selector
,
17220 token
= cp_lexer_peek_token (parser
->lexer
);
17226 /* Parse the non-keyword Objective-C params. */
17229 cp_parser_objc_method_tail_params_opt (cp_parser
* parser
, bool *ellipsisp
)
17231 tree params
= make_node (TREE_LIST
);
17232 cp_token
*token
= cp_lexer_peek_token (parser
->lexer
);
17233 *ellipsisp
= false; /* Initially, assume no ellipsis. */
17235 while (token
->type
== CPP_COMMA
)
17237 cp_parameter_declarator
*parmdecl
;
17240 cp_lexer_consume_token (parser
->lexer
); /* Eat ','. */
17241 token
= cp_lexer_peek_token (parser
->lexer
);
17243 if (token
->type
== CPP_ELLIPSIS
)
17245 cp_lexer_consume_token (parser
->lexer
); /* Eat '...'. */
17250 parmdecl
= cp_parser_parameter_declaration (parser
, false, NULL
);
17251 parm
= grokdeclarator (parmdecl
->declarator
,
17252 &parmdecl
->decl_specifiers
,
17253 PARM
, /*initialized=*/0,
17254 /*attrlist=*/NULL
);
17256 chainon (params
, build_tree_list (NULL_TREE
, parm
));
17257 token
= cp_lexer_peek_token (parser
->lexer
);
17263 /* Parse a linkage specification, a pragma, an extra semicolon or a block. */
17266 cp_parser_objc_interstitial_code (cp_parser
* parser
)
17268 cp_token
*token
= cp_lexer_peek_token (parser
->lexer
);
17270 /* If the next token is `extern' and the following token is a string
17271 literal, then we have a linkage specification. */
17272 if (token
->keyword
== RID_EXTERN
17273 && cp_parser_is_string_literal (cp_lexer_peek_nth_token (parser
->lexer
, 2)))
17274 cp_parser_linkage_specification (parser
);
17275 /* Handle #pragma, if any. */
17276 else if (token
->type
== CPP_PRAGMA
)
17277 cp_parser_pragma (parser
, pragma_external
);
17278 /* Allow stray semicolons. */
17279 else if (token
->type
== CPP_SEMICOLON
)
17280 cp_lexer_consume_token (parser
->lexer
);
17281 /* Finally, try to parse a block-declaration, or a function-definition. */
17283 cp_parser_block_declaration (parser
, /*statement_p=*/false);
17286 /* Parse a method signature. */
17289 cp_parser_objc_method_signature (cp_parser
* parser
)
17291 tree rettype
, kwdparms
, optparms
;
17292 bool ellipsis
= false;
17294 cp_parser_objc_method_type (parser
);
17295 rettype
= cp_parser_objc_typename (parser
);
17296 kwdparms
= cp_parser_objc_method_keyword_params (parser
);
17297 optparms
= cp_parser_objc_method_tail_params_opt (parser
, &ellipsis
);
17299 return objc_build_method_signature (rettype
, kwdparms
, optparms
, ellipsis
);
17302 /* Pars an Objective-C method prototype list. */
17305 cp_parser_objc_method_prototype_list (cp_parser
* parser
)
17307 cp_token
*token
= cp_lexer_peek_token (parser
->lexer
);
17309 while (token
->keyword
!= RID_AT_END
)
17311 if (token
->type
== CPP_PLUS
|| token
->type
== CPP_MINUS
)
17313 objc_add_method_declaration
17314 (cp_parser_objc_method_signature (parser
));
17315 cp_parser_consume_semicolon_at_end_of_statement (parser
);
17318 /* Allow for interspersed non-ObjC++ code. */
17319 cp_parser_objc_interstitial_code (parser
);
17321 token
= cp_lexer_peek_token (parser
->lexer
);
17324 cp_lexer_consume_token (parser
->lexer
); /* Eat '@end'. */
17325 objc_finish_interface ();
17328 /* Parse an Objective-C method definition list. */
17331 cp_parser_objc_method_definition_list (cp_parser
* parser
)
17333 cp_token
*token
= cp_lexer_peek_token (parser
->lexer
);
17335 while (token
->keyword
!= RID_AT_END
)
17339 if (token
->type
== CPP_PLUS
|| token
->type
== CPP_MINUS
)
17341 push_deferring_access_checks (dk_deferred
);
17342 objc_start_method_definition
17343 (cp_parser_objc_method_signature (parser
));
17345 /* For historical reasons, we accept an optional semicolon. */
17346 if (cp_lexer_next_token_is (parser
->lexer
, CPP_SEMICOLON
))
17347 cp_lexer_consume_token (parser
->lexer
);
17349 perform_deferred_access_checks ();
17350 stop_deferring_access_checks ();
17351 meth
= cp_parser_function_definition_after_declarator (parser
,
17353 pop_deferring_access_checks ();
17354 objc_finish_method_definition (meth
);
17357 /* Allow for interspersed non-ObjC++ code. */
17358 cp_parser_objc_interstitial_code (parser
);
17360 token
= cp_lexer_peek_token (parser
->lexer
);
17363 cp_lexer_consume_token (parser
->lexer
); /* Eat '@end'. */
17364 objc_finish_implementation ();
17367 /* Parse Objective-C ivars. */
17370 cp_parser_objc_class_ivars (cp_parser
* parser
)
17372 cp_token
*token
= cp_lexer_peek_token (parser
->lexer
);
17374 if (token
->type
!= CPP_OPEN_BRACE
)
17375 return; /* No ivars specified. */
17377 cp_lexer_consume_token (parser
->lexer
); /* Eat '{'. */
17378 token
= cp_lexer_peek_token (parser
->lexer
);
17380 while (token
->type
!= CPP_CLOSE_BRACE
)
17382 cp_decl_specifier_seq declspecs
;
17383 int decl_class_or_enum_p
;
17384 tree prefix_attributes
;
17386 cp_parser_objc_visibility_spec (parser
);
17388 if (cp_lexer_next_token_is (parser
->lexer
, CPP_CLOSE_BRACE
))
17391 cp_parser_decl_specifier_seq (parser
,
17392 CP_PARSER_FLAGS_OPTIONAL
,
17394 &decl_class_or_enum_p
);
17395 prefix_attributes
= declspecs
.attributes
;
17396 declspecs
.attributes
= NULL_TREE
;
17398 /* Keep going until we hit the `;' at the end of the
17400 while (cp_lexer_next_token_is_not (parser
->lexer
, CPP_SEMICOLON
))
17402 tree width
= NULL_TREE
, attributes
, first_attribute
, decl
;
17403 cp_declarator
*declarator
= NULL
;
17404 int ctor_dtor_or_conv_p
;
17406 /* Check for a (possibly unnamed) bitfield declaration. */
17407 token
= cp_lexer_peek_token (parser
->lexer
);
17408 if (token
->type
== CPP_COLON
)
17411 if (token
->type
== CPP_NAME
17412 && (cp_lexer_peek_nth_token (parser
->lexer
, 2)->type
17415 /* Get the name of the bitfield. */
17416 declarator
= make_id_declarator (NULL_TREE
,
17417 cp_parser_identifier (parser
),
17421 cp_lexer_consume_token (parser
->lexer
); /* Eat ':'. */
17422 /* Get the width of the bitfield. */
17424 = cp_parser_constant_expression (parser
,
17425 /*allow_non_constant=*/false,
17430 /* Parse the declarator. */
17432 = cp_parser_declarator (parser
, CP_PARSER_DECLARATOR_NAMED
,
17433 &ctor_dtor_or_conv_p
,
17434 /*parenthesized_p=*/NULL
,
17435 /*member_p=*/false);
17438 /* Look for attributes that apply to the ivar. */
17439 attributes
= cp_parser_attributes_opt (parser
);
17440 /* Remember which attributes are prefix attributes and
17442 first_attribute
= attributes
;
17443 /* Combine the attributes. */
17444 attributes
= chainon (prefix_attributes
, attributes
);
17448 /* Create the bitfield declaration. */
17449 decl
= grokbitfield (declarator
, &declspecs
, width
);
17450 cplus_decl_attributes (&decl
, attributes
, /*flags=*/0);
17453 decl
= grokfield (declarator
, &declspecs
,
17454 NULL_TREE
, /*init_const_expr_p=*/false,
17455 NULL_TREE
, attributes
);
17457 /* Add the instance variable. */
17458 objc_add_instance_variable (decl
);
17460 /* Reset PREFIX_ATTRIBUTES. */
17461 while (attributes
&& TREE_CHAIN (attributes
) != first_attribute
)
17462 attributes
= TREE_CHAIN (attributes
);
17464 TREE_CHAIN (attributes
) = NULL_TREE
;
17466 token
= cp_lexer_peek_token (parser
->lexer
);
17468 if (token
->type
== CPP_COMMA
)
17470 cp_lexer_consume_token (parser
->lexer
); /* Eat ','. */
17476 cp_parser_consume_semicolon_at_end_of_statement (parser
);
17477 token
= cp_lexer_peek_token (parser
->lexer
);
17480 cp_lexer_consume_token (parser
->lexer
); /* Eat '}'. */
17481 /* For historical reasons, we accept an optional semicolon. */
17482 if (cp_lexer_next_token_is (parser
->lexer
, CPP_SEMICOLON
))
17483 cp_lexer_consume_token (parser
->lexer
);
17486 /* Parse an Objective-C protocol declaration. */
17489 cp_parser_objc_protocol_declaration (cp_parser
* parser
)
17491 tree proto
, protorefs
;
17494 cp_lexer_consume_token (parser
->lexer
); /* Eat '@protocol'. */
17495 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_NAME
))
17497 error ("identifier expected after %<@protocol%>");
17501 /* See if we have a forward declaration or a definition. */
17502 tok
= cp_lexer_peek_nth_token (parser
->lexer
, 2);
17504 /* Try a forward declaration first. */
17505 if (tok
->type
== CPP_COMMA
|| tok
->type
== CPP_SEMICOLON
)
17507 objc_declare_protocols (cp_parser_objc_identifier_list (parser
));
17509 cp_parser_consume_semicolon_at_end_of_statement (parser
);
17512 /* Ok, we got a full-fledged definition (or at least should). */
17515 proto
= cp_parser_identifier (parser
);
17516 protorefs
= cp_parser_objc_protocol_refs_opt (parser
);
17517 objc_start_protocol (proto
, protorefs
);
17518 cp_parser_objc_method_prototype_list (parser
);
17522 /* Parse an Objective-C superclass or category. */
17525 cp_parser_objc_superclass_or_category (cp_parser
*parser
, tree
*super
,
17528 cp_token
*next
= cp_lexer_peek_token (parser
->lexer
);
17530 *super
= *categ
= NULL_TREE
;
17531 if (next
->type
== CPP_COLON
)
17533 cp_lexer_consume_token (parser
->lexer
); /* Eat ':'. */
17534 *super
= cp_parser_identifier (parser
);
17536 else if (next
->type
== CPP_OPEN_PAREN
)
17538 cp_lexer_consume_token (parser
->lexer
); /* Eat '('. */
17539 *categ
= cp_parser_identifier (parser
);
17540 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
17544 /* Parse an Objective-C class interface. */
17547 cp_parser_objc_class_interface (cp_parser
* parser
)
17549 tree name
, super
, categ
, protos
;
17551 cp_lexer_consume_token (parser
->lexer
); /* Eat '@interface'. */
17552 name
= cp_parser_identifier (parser
);
17553 cp_parser_objc_superclass_or_category (parser
, &super
, &categ
);
17554 protos
= cp_parser_objc_protocol_refs_opt (parser
);
17556 /* We have either a class or a category on our hands. */
17558 objc_start_category_interface (name
, categ
, protos
);
17561 objc_start_class_interface (name
, super
, protos
);
17562 /* Handle instance variable declarations, if any. */
17563 cp_parser_objc_class_ivars (parser
);
17564 objc_continue_interface ();
17567 cp_parser_objc_method_prototype_list (parser
);
17570 /* Parse an Objective-C class implementation. */
17573 cp_parser_objc_class_implementation (cp_parser
* parser
)
17575 tree name
, super
, categ
;
17577 cp_lexer_consume_token (parser
->lexer
); /* Eat '@implementation'. */
17578 name
= cp_parser_identifier (parser
);
17579 cp_parser_objc_superclass_or_category (parser
, &super
, &categ
);
17581 /* We have either a class or a category on our hands. */
17583 objc_start_category_implementation (name
, categ
);
17586 objc_start_class_implementation (name
, super
);
17587 /* Handle instance variable declarations, if any. */
17588 cp_parser_objc_class_ivars (parser
);
17589 objc_continue_implementation ();
17592 cp_parser_objc_method_definition_list (parser
);
17595 /* Consume the @end token and finish off the implementation. */
17598 cp_parser_objc_end_implementation (cp_parser
* parser
)
17600 cp_lexer_consume_token (parser
->lexer
); /* Eat '@end'. */
17601 objc_finish_implementation ();
17604 /* Parse an Objective-C declaration. */
17607 cp_parser_objc_declaration (cp_parser
* parser
)
17609 /* Try to figure out what kind of declaration is present. */
17610 cp_token
*kwd
= cp_lexer_peek_token (parser
->lexer
);
17612 switch (kwd
->keyword
)
17615 cp_parser_objc_alias_declaration (parser
);
17618 cp_parser_objc_class_declaration (parser
);
17620 case RID_AT_PROTOCOL
:
17621 cp_parser_objc_protocol_declaration (parser
);
17623 case RID_AT_INTERFACE
:
17624 cp_parser_objc_class_interface (parser
);
17626 case RID_AT_IMPLEMENTATION
:
17627 cp_parser_objc_class_implementation (parser
);
17630 cp_parser_objc_end_implementation (parser
);
17633 error ("misplaced %<@%D%> Objective-C++ construct", kwd
->value
);
17634 cp_parser_skip_to_end_of_block_or_statement (parser
);
17638 /* Parse an Objective-C try-catch-finally statement.
17640 objc-try-catch-finally-stmt:
17641 @try compound-statement objc-catch-clause-seq [opt]
17642 objc-finally-clause [opt]
17644 objc-catch-clause-seq:
17645 objc-catch-clause objc-catch-clause-seq [opt]
17648 @catch ( exception-declaration ) compound-statement
17650 objc-finally-clause
17651 @finally compound-statement
17653 Returns NULL_TREE. */
17656 cp_parser_objc_try_catch_finally_statement (cp_parser
*parser
) {
17657 location_t location
;
17660 cp_parser_require_keyword (parser
, RID_AT_TRY
, "`@try'");
17661 location
= cp_lexer_peek_token (parser
->lexer
)->location
;
17662 /* NB: The @try block needs to be wrapped in its own STATEMENT_LIST
17663 node, lest it get absorbed into the surrounding block. */
17664 stmt
= push_stmt_list ();
17665 cp_parser_compound_statement (parser
, NULL
, false);
17666 objc_begin_try_stmt (location
, pop_stmt_list (stmt
));
17668 while (cp_lexer_next_token_is_keyword (parser
->lexer
, RID_AT_CATCH
))
17670 cp_parameter_declarator
*parmdecl
;
17673 cp_lexer_consume_token (parser
->lexer
);
17674 cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('");
17675 parmdecl
= cp_parser_parameter_declaration (parser
, false, NULL
);
17676 parm
= grokdeclarator (parmdecl
->declarator
,
17677 &parmdecl
->decl_specifiers
,
17678 PARM
, /*initialized=*/0,
17679 /*attrlist=*/NULL
);
17680 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
17681 objc_begin_catch_clause (parm
);
17682 cp_parser_compound_statement (parser
, NULL
, false);
17683 objc_finish_catch_clause ();
17686 if (cp_lexer_next_token_is_keyword (parser
->lexer
, RID_AT_FINALLY
))
17688 cp_lexer_consume_token (parser
->lexer
);
17689 location
= cp_lexer_peek_token (parser
->lexer
)->location
;
17690 /* NB: The @finally block needs to be wrapped in its own STATEMENT_LIST
17691 node, lest it get absorbed into the surrounding block. */
17692 stmt
= push_stmt_list ();
17693 cp_parser_compound_statement (parser
, NULL
, false);
17694 objc_build_finally_clause (location
, pop_stmt_list (stmt
));
17697 return objc_finish_try_stmt ();
17700 /* Parse an Objective-C synchronized statement.
17702 objc-synchronized-stmt:
17703 @synchronized ( expression ) compound-statement
17705 Returns NULL_TREE. */
17708 cp_parser_objc_synchronized_statement (cp_parser
*parser
) {
17709 location_t location
;
17712 cp_parser_require_keyword (parser
, RID_AT_SYNCHRONIZED
, "`@synchronized'");
17714 location
= cp_lexer_peek_token (parser
->lexer
)->location
;
17715 cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('");
17716 lock
= cp_parser_expression (parser
, false);
17717 cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'");
17719 /* NB: The @synchronized block needs to be wrapped in its own STATEMENT_LIST
17720 node, lest it get absorbed into the surrounding block. */
17721 stmt
= push_stmt_list ();
17722 cp_parser_compound_statement (parser
, NULL
, false);
17724 return objc_build_synchronized (location
, lock
, pop_stmt_list (stmt
));
17727 /* Parse an Objective-C throw statement.
17730 @throw assignment-expression [opt] ;
17732 Returns a constructed '@throw' statement. */
17735 cp_parser_objc_throw_statement (cp_parser
*parser
) {
17736 tree expr
= NULL_TREE
;
17738 cp_parser_require_keyword (parser
, RID_AT_THROW
, "`@throw'");
17740 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_SEMICOLON
))
17741 expr
= cp_parser_assignment_expression (parser
, false);
17743 cp_parser_consume_semicolon_at_end_of_statement (parser
);
17745 return objc_build_throw_stmt (expr
);
17748 /* Parse an Objective-C statement. */
17751 cp_parser_objc_statement (cp_parser
* parser
) {
17752 /* Try to figure out what kind of declaration is present. */
17753 cp_token
*kwd
= cp_lexer_peek_token (parser
->lexer
);
17755 switch (kwd
->keyword
)
17758 return cp_parser_objc_try_catch_finally_statement (parser
);
17759 case RID_AT_SYNCHRONIZED
:
17760 return cp_parser_objc_synchronized_statement (parser
);
17762 return cp_parser_objc_throw_statement (parser
);
17764 error ("misplaced %<@%D%> Objective-C++ construct", kwd
->value
);
17765 cp_parser_skip_to_end_of_block_or_statement (parser
);
17768 return error_mark_node
;
17771 /* OpenMP 2.5 parsing routines. */
17773 /* All OpenMP clauses. OpenMP 2.5. */
17774 typedef enum pragma_omp_clause
{
17775 PRAGMA_OMP_CLAUSE_NONE
= 0,
17777 PRAGMA_OMP_CLAUSE_COPYIN
,
17778 PRAGMA_OMP_CLAUSE_COPYPRIVATE
,
17779 PRAGMA_OMP_CLAUSE_DEFAULT
,
17780 PRAGMA_OMP_CLAUSE_FIRSTPRIVATE
,
17781 PRAGMA_OMP_CLAUSE_IF
,
17782 PRAGMA_OMP_CLAUSE_LASTPRIVATE
,
17783 PRAGMA_OMP_CLAUSE_NOWAIT
,
17784 PRAGMA_OMP_CLAUSE_NUM_THREADS
,
17785 PRAGMA_OMP_CLAUSE_ORDERED
,
17786 PRAGMA_OMP_CLAUSE_PRIVATE
,
17787 PRAGMA_OMP_CLAUSE_REDUCTION
,
17788 PRAGMA_OMP_CLAUSE_SCHEDULE
,
17789 PRAGMA_OMP_CLAUSE_SHARED
17790 } pragma_omp_clause
;
17792 /* Returns name of the next clause.
17793 If the clause is not recognized PRAGMA_OMP_CLAUSE_NONE is returned and
17794 the token is not consumed. Otherwise appropriate pragma_omp_clause is
17795 returned and the token is consumed. */
17797 static pragma_omp_clause
17798 cp_parser_omp_clause_name (cp_parser
*parser
)
17800 pragma_omp_clause result
= PRAGMA_OMP_CLAUSE_NONE
;
17802 if (cp_lexer_next_token_is_keyword (parser
->lexer
, RID_IF
))
17803 result
= PRAGMA_OMP_CLAUSE_IF
;
17804 else if (cp_lexer_next_token_is_keyword (parser
->lexer
, RID_DEFAULT
))
17805 result
= PRAGMA_OMP_CLAUSE_DEFAULT
;
17806 else if (cp_lexer_next_token_is_keyword (parser
->lexer
, RID_PRIVATE
))
17807 result
= PRAGMA_OMP_CLAUSE_PRIVATE
;
17808 else if (cp_lexer_next_token_is (parser
->lexer
, CPP_NAME
))
17810 tree id
= cp_lexer_peek_token (parser
->lexer
)->value
;
17811 const char *p
= IDENTIFIER_POINTER (id
);
17816 if (!strcmp ("copyin", p
))
17817 result
= PRAGMA_OMP_CLAUSE_COPYIN
;
17818 else if (!strcmp ("copyprivate", p
))
17819 result
= PRAGMA_OMP_CLAUSE_COPYPRIVATE
;
17822 if (!strcmp ("firstprivate", p
))
17823 result
= PRAGMA_OMP_CLAUSE_FIRSTPRIVATE
;
17826 if (!strcmp ("lastprivate", p
))
17827 result
= PRAGMA_OMP_CLAUSE_LASTPRIVATE
;
17830 if (!strcmp ("nowait", p
))
17831 result
= PRAGMA_OMP_CLAUSE_NOWAIT
;
17832 else if (!strcmp ("num_threads", p
))
17833 result
= PRAGMA_OMP_CLAUSE_NUM_THREADS
;
17836 if (!strcmp ("ordered", p
))
17837 result
= PRAGMA_OMP_CLAUSE_ORDERED
;
17840 if (!strcmp ("reduction", p
))
17841 result
= PRAGMA_OMP_CLAUSE_REDUCTION
;
17844 if (!strcmp ("schedule", p
))
17845 result
= PRAGMA_OMP_CLAUSE_SCHEDULE
;
17846 else if (!strcmp ("shared", p
))
17847 result
= PRAGMA_OMP_CLAUSE_SHARED
;
17852 if (result
!= PRAGMA_OMP_CLAUSE_NONE
)
17853 cp_lexer_consume_token (parser
->lexer
);
17858 /* Validate that a clause of the given type does not already exist. */
17861 check_no_duplicate_clause (tree clauses
, enum tree_code code
, const char *name
)
17865 for (c
= clauses
; c
; c
= OMP_CLAUSE_CHAIN (c
))
17866 if (OMP_CLAUSE_CODE (c
) == code
)
17868 error ("too many %qs clauses", name
);
17876 variable-list , identifier
17878 In addition, we match a closing parenthesis. An opening parenthesis
17879 will have been consumed by the caller.
17881 If KIND is nonzero, create the appropriate node and install the decl
17882 in OMP_CLAUSE_DECL and add the node to the head of the list.
17884 If KIND is zero, create a TREE_LIST with the decl in TREE_PURPOSE;
17885 return the list created. */
17888 cp_parser_omp_var_list_no_open (cp_parser
*parser
, enum omp_clause_code kind
,
17895 name
= cp_parser_id_expression (parser
, /*template_p=*/false,
17896 /*check_dependency_p=*/true,
17897 /*template_p=*/NULL
,
17898 /*declarator_p=*/false,
17899 /*optional_p=*/false);
17900 if (name
== error_mark_node
)
17903 decl
= cp_parser_lookup_name_simple (parser
, name
);
17904 if (decl
== error_mark_node
)
17905 cp_parser_name_lookup_error (parser
, name
, decl
, NULL
);
17906 else if (kind
!= 0)
17908 tree u
= build_omp_clause (kind
);
17909 OMP_CLAUSE_DECL (u
) = decl
;
17910 OMP_CLAUSE_CHAIN (u
) = list
;
17914 list
= tree_cons (decl
, NULL_TREE
, list
);
17917 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_COMMA
))
17919 cp_lexer_consume_token (parser
->lexer
);
17922 if (!cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'"))
17926 /* Try to resync to an unnested comma. Copied from
17927 cp_parser_parenthesized_expression_list. */
17929 ending
= cp_parser_skip_to_closing_parenthesis (parser
,
17930 /*recovering=*/true,
17932 /*consume_paren=*/true);
17940 /* Similarly, but expect leading and trailing parenthesis. This is a very
17941 common case for omp clauses. */
17944 cp_parser_omp_var_list (cp_parser
*parser
, enum omp_clause_code kind
, tree list
)
17946 if (cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('"))
17947 return cp_parser_omp_var_list_no_open (parser
, kind
, list
);
17952 default ( shared | none ) */
17955 cp_parser_omp_clause_default (cp_parser
*parser
, tree list
)
17957 enum omp_clause_default_kind kind
= OMP_CLAUSE_DEFAULT_UNSPECIFIED
;
17960 if (!cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('"))
17962 if (cp_lexer_next_token_is (parser
->lexer
, CPP_NAME
))
17964 tree id
= cp_lexer_peek_token (parser
->lexer
)->value
;
17965 const char *p
= IDENTIFIER_POINTER (id
);
17970 if (strcmp ("none", p
) != 0)
17972 kind
= OMP_CLAUSE_DEFAULT_NONE
;
17976 if (strcmp ("shared", p
) != 0)
17978 kind
= OMP_CLAUSE_DEFAULT_SHARED
;
17985 cp_lexer_consume_token (parser
->lexer
);
17990 cp_parser_error (parser
, "expected %<none%> or %<shared%>");
17993 if (!cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'"))
17994 cp_parser_skip_to_closing_parenthesis (parser
, /*recovering=*/true,
17995 /*or_comma=*/false,
17996 /*consume_paren=*/true);
17998 if (kind
== OMP_CLAUSE_DEFAULT_UNSPECIFIED
)
18001 check_no_duplicate_clause (list
, OMP_CLAUSE_DEFAULT
, "default");
18002 c
= build_omp_clause (OMP_CLAUSE_DEFAULT
);
18003 OMP_CLAUSE_CHAIN (c
) = list
;
18004 OMP_CLAUSE_DEFAULT_KIND (c
) = kind
;
18010 if ( expression ) */
18013 cp_parser_omp_clause_if (cp_parser
*parser
, tree list
)
18017 if (!cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('"))
18020 t
= cp_parser_condition (parser
);
18022 if (t
== error_mark_node
18023 || !cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'"))
18024 cp_parser_skip_to_closing_parenthesis (parser
, /*recovering=*/true,
18025 /*or_comma=*/false,
18026 /*consume_paren=*/true);
18028 check_no_duplicate_clause (list
, OMP_CLAUSE_IF
, "if");
18030 c
= build_omp_clause (OMP_CLAUSE_IF
);
18031 OMP_CLAUSE_IF_EXPR (c
) = t
;
18032 OMP_CLAUSE_CHAIN (c
) = list
;
18041 cp_parser_omp_clause_nowait (cp_parser
*parser ATTRIBUTE_UNUSED
, tree list
)
18045 check_no_duplicate_clause (list
, OMP_CLAUSE_NOWAIT
, "nowait");
18047 c
= build_omp_clause (OMP_CLAUSE_NOWAIT
);
18048 OMP_CLAUSE_CHAIN (c
) = list
;
18053 num_threads ( expression ) */
18056 cp_parser_omp_clause_num_threads (cp_parser
*parser
, tree list
)
18060 if (!cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('"))
18063 t
= cp_parser_expression (parser
, false);
18065 if (t
== error_mark_node
18066 || !cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'"))
18067 cp_parser_skip_to_closing_parenthesis (parser
, /*recovering=*/true,
18068 /*or_comma=*/false,
18069 /*consume_paren=*/true);
18071 check_no_duplicate_clause (list
, OMP_CLAUSE_NUM_THREADS
, "num_threads");
18073 c
= build_omp_clause (OMP_CLAUSE_NUM_THREADS
);
18074 OMP_CLAUSE_NUM_THREADS_EXPR (c
) = t
;
18075 OMP_CLAUSE_CHAIN (c
) = list
;
18084 cp_parser_omp_clause_ordered (cp_parser
*parser ATTRIBUTE_UNUSED
, tree list
)
18088 check_no_duplicate_clause (list
, OMP_CLAUSE_ORDERED
, "ordered");
18090 c
= build_omp_clause (OMP_CLAUSE_ORDERED
);
18091 OMP_CLAUSE_CHAIN (c
) = list
;
18096 reduction ( reduction-operator : variable-list )
18098 reduction-operator:
18099 One of: + * - & ^ | && || */
18102 cp_parser_omp_clause_reduction (cp_parser
*parser
, tree list
)
18104 enum tree_code code
;
18107 if (!cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('"))
18110 switch (cp_lexer_peek_token (parser
->lexer
)->type
)
18122 code
= BIT_AND_EXPR
;
18125 code
= BIT_XOR_EXPR
;
18128 code
= BIT_IOR_EXPR
;
18131 code
= TRUTH_ANDIF_EXPR
;
18134 code
= TRUTH_ORIF_EXPR
;
18137 cp_parser_error (parser
, "`+', `*', `-', `&', `^', `|', `&&', or `||'");
18139 cp_parser_skip_to_closing_parenthesis (parser
, /*recovering=*/true,
18140 /*or_comma=*/false,
18141 /*consume_paren=*/true);
18144 cp_lexer_consume_token (parser
->lexer
);
18146 if (!cp_parser_require (parser
, CPP_COLON
, "`:'"))
18149 nlist
= cp_parser_omp_var_list_no_open (parser
, OMP_CLAUSE_REDUCTION
, list
);
18150 for (c
= nlist
; c
!= list
; c
= OMP_CLAUSE_CHAIN (c
))
18151 OMP_CLAUSE_REDUCTION_CODE (c
) = code
;
18157 schedule ( schedule-kind )
18158 schedule ( schedule-kind , expression )
18161 static | dynamic | guided | runtime */
18164 cp_parser_omp_clause_schedule (cp_parser
*parser
, tree list
)
18168 if (!cp_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
18171 c
= build_omp_clause (OMP_CLAUSE_SCHEDULE
);
18173 if (cp_lexer_next_token_is (parser
->lexer
, CPP_NAME
))
18175 tree id
= cp_lexer_peek_token (parser
->lexer
)->value
;
18176 const char *p
= IDENTIFIER_POINTER (id
);
18181 if (strcmp ("dynamic", p
) != 0)
18183 OMP_CLAUSE_SCHEDULE_KIND (c
) = OMP_CLAUSE_SCHEDULE_DYNAMIC
;
18187 if (strcmp ("guided", p
) != 0)
18189 OMP_CLAUSE_SCHEDULE_KIND (c
) = OMP_CLAUSE_SCHEDULE_GUIDED
;
18193 if (strcmp ("runtime", p
) != 0)
18195 OMP_CLAUSE_SCHEDULE_KIND (c
) = OMP_CLAUSE_SCHEDULE_RUNTIME
;
18202 else if (cp_lexer_next_token_is_keyword (parser
->lexer
, RID_STATIC
))
18203 OMP_CLAUSE_SCHEDULE_KIND (c
) = OMP_CLAUSE_SCHEDULE_STATIC
;
18206 cp_lexer_consume_token (parser
->lexer
);
18208 if (cp_lexer_next_token_is (parser
->lexer
, CPP_COMMA
))
18210 cp_lexer_consume_token (parser
->lexer
);
18212 t
= cp_parser_assignment_expression (parser
, false);
18214 if (t
== error_mark_node
)
18216 else if (OMP_CLAUSE_SCHEDULE_KIND (c
) == OMP_CLAUSE_SCHEDULE_RUNTIME
)
18217 error ("schedule %<runtime%> does not take "
18218 "a %<chunk_size%> parameter");
18220 OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c
) = t
;
18222 if (!cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'"))
18225 else if (!cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`,' or `)'"))
18228 check_no_duplicate_clause (list
, OMP_CLAUSE_SCHEDULE
, "schedule");
18229 OMP_CLAUSE_CHAIN (c
) = list
;
18233 cp_parser_error (parser
, "invalid schedule kind");
18235 cp_parser_skip_to_closing_parenthesis (parser
, /*recovering=*/true,
18236 /*or_comma=*/false,
18237 /*consume_paren=*/true);
18241 /* Parse all OpenMP clauses. The set clauses allowed by the directive
18242 is a bitmask in MASK. Return the list of clauses found; the result
18243 of clause default goes in *pdefault. */
18246 cp_parser_omp_all_clauses (cp_parser
*parser
, unsigned int mask
,
18247 const char *where
, cp_token
*pragma_tok
)
18249 tree clauses
= NULL
;
18251 while (cp_lexer_next_token_is_not (parser
->lexer
, CPP_PRAGMA_EOL
))
18253 pragma_omp_clause c_kind
= cp_parser_omp_clause_name (parser
);
18254 const char *c_name
;
18255 tree prev
= clauses
;
18259 case PRAGMA_OMP_CLAUSE_COPYIN
:
18260 clauses
= cp_parser_omp_var_list (parser
, OMP_CLAUSE_COPYIN
, clauses
);
18263 case PRAGMA_OMP_CLAUSE_COPYPRIVATE
:
18264 clauses
= cp_parser_omp_var_list (parser
, OMP_CLAUSE_COPYPRIVATE
,
18266 c_name
= "copyprivate";
18268 case PRAGMA_OMP_CLAUSE_DEFAULT
:
18269 clauses
= cp_parser_omp_clause_default (parser
, clauses
);
18270 c_name
= "default";
18272 case PRAGMA_OMP_CLAUSE_FIRSTPRIVATE
:
18273 clauses
= cp_parser_omp_var_list (parser
, OMP_CLAUSE_FIRSTPRIVATE
,
18275 c_name
= "firstprivate";
18277 case PRAGMA_OMP_CLAUSE_IF
:
18278 clauses
= cp_parser_omp_clause_if (parser
, clauses
);
18281 case PRAGMA_OMP_CLAUSE_LASTPRIVATE
:
18282 clauses
= cp_parser_omp_var_list (parser
, OMP_CLAUSE_LASTPRIVATE
,
18284 c_name
= "lastprivate";
18286 case PRAGMA_OMP_CLAUSE_NOWAIT
:
18287 clauses
= cp_parser_omp_clause_nowait (parser
, clauses
);
18290 case PRAGMA_OMP_CLAUSE_NUM_THREADS
:
18291 clauses
= cp_parser_omp_clause_num_threads (parser
, clauses
);
18292 c_name
= "num_threads";
18294 case PRAGMA_OMP_CLAUSE_ORDERED
:
18295 clauses
= cp_parser_omp_clause_ordered (parser
, clauses
);
18296 c_name
= "ordered";
18298 case PRAGMA_OMP_CLAUSE_PRIVATE
:
18299 clauses
= cp_parser_omp_var_list (parser
, OMP_CLAUSE_PRIVATE
,
18301 c_name
= "private";
18303 case PRAGMA_OMP_CLAUSE_REDUCTION
:
18304 clauses
= cp_parser_omp_clause_reduction (parser
, clauses
);
18305 c_name
= "reduction";
18307 case PRAGMA_OMP_CLAUSE_SCHEDULE
:
18308 clauses
= cp_parser_omp_clause_schedule (parser
, clauses
);
18309 c_name
= "schedule";
18311 case PRAGMA_OMP_CLAUSE_SHARED
:
18312 clauses
= cp_parser_omp_var_list (parser
, OMP_CLAUSE_SHARED
,
18317 cp_parser_error (parser
, "expected %<#pragma omp%> clause");
18321 if (((mask
>> c_kind
) & 1) == 0)
18323 /* Remove the invalid clause(s) from the list to avoid
18324 confusing the rest of the compiler. */
18326 error ("%qs is not valid for %qs", c_name
, where
);
18330 cp_parser_skip_to_pragma_eol (parser
, pragma_tok
);
18331 return finish_omp_clauses (clauses
);
18338 In practice, we're also interested in adding the statement to an
18339 outer node. So it is convenient if we work around the fact that
18340 cp_parser_statement calls add_stmt. */
18343 cp_parser_begin_omp_structured_block (cp_parser
*parser
)
18345 unsigned save
= parser
->in_statement
;
18347 /* Only move the values to IN_OMP_BLOCK if they weren't false.
18348 This preserves the "not within loop or switch" style error messages
18349 for nonsense cases like
18355 if (parser
->in_statement
)
18356 parser
->in_statement
= IN_OMP_BLOCK
;
18362 cp_parser_end_omp_structured_block (cp_parser
*parser
, unsigned save
)
18364 parser
->in_statement
= save
;
18368 cp_parser_omp_structured_block (cp_parser
*parser
)
18370 tree stmt
= begin_omp_structured_block ();
18371 unsigned int save
= cp_parser_begin_omp_structured_block (parser
);
18373 cp_parser_statement (parser
, NULL_TREE
, false);
18375 cp_parser_end_omp_structured_block (parser
, save
);
18376 return finish_omp_structured_block (stmt
);
18380 # pragma omp atomic new-line
18384 x binop= expr | x++ | ++x | x-- | --x
18386 +, *, -, /, &, ^, |, <<, >>
18388 where x is an lvalue expression with scalar type. */
18391 cp_parser_omp_atomic (cp_parser
*parser
, cp_token
*pragma_tok
)
18394 enum tree_code code
;
18396 cp_parser_require_pragma_eol (parser
, pragma_tok
);
18398 lhs
= cp_parser_unary_expression (parser
, /*address_p=*/false,
18400 switch (TREE_CODE (lhs
))
18405 case PREINCREMENT_EXPR
:
18406 case POSTINCREMENT_EXPR
:
18407 lhs
= TREE_OPERAND (lhs
, 0);
18409 rhs
= integer_one_node
;
18412 case PREDECREMENT_EXPR
:
18413 case POSTDECREMENT_EXPR
:
18414 lhs
= TREE_OPERAND (lhs
, 0);
18416 rhs
= integer_one_node
;
18420 switch (cp_lexer_peek_token (parser
->lexer
)->type
)
18426 code
= TRUNC_DIV_EXPR
;
18434 case CPP_LSHIFT_EQ
:
18435 code
= LSHIFT_EXPR
;
18437 case CPP_RSHIFT_EQ
:
18438 code
= RSHIFT_EXPR
;
18441 code
= BIT_AND_EXPR
;
18444 code
= BIT_IOR_EXPR
;
18447 code
= BIT_XOR_EXPR
;
18450 cp_parser_error (parser
,
18451 "invalid operator for %<#pragma omp atomic%>");
18454 cp_lexer_consume_token (parser
->lexer
);
18456 rhs
= cp_parser_expression (parser
, false);
18457 if (rhs
== error_mark_node
)
18461 finish_omp_atomic (code
, lhs
, rhs
);
18462 cp_parser_consume_semicolon_at_end_of_statement (parser
);
18466 cp_parser_skip_to_end_of_block_or_statement (parser
);
18471 # pragma omp barrier new-line */
18474 cp_parser_omp_barrier (cp_parser
*parser
, cp_token
*pragma_tok
)
18476 cp_parser_require_pragma_eol (parser
, pragma_tok
);
18477 finish_omp_barrier ();
18481 # pragma omp critical [(name)] new-line
18482 structured-block */
18485 cp_parser_omp_critical (cp_parser
*parser
, cp_token
*pragma_tok
)
18487 tree stmt
, name
= NULL
;
18489 if (cp_lexer_next_token_is (parser
->lexer
, CPP_OPEN_PAREN
))
18491 cp_lexer_consume_token (parser
->lexer
);
18493 name
= cp_parser_identifier (parser
);
18495 if (name
== error_mark_node
18496 || !cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'"))
18497 cp_parser_skip_to_closing_parenthesis (parser
, /*recovering=*/true,
18498 /*or_comma=*/false,
18499 /*consume_paren=*/true);
18500 if (name
== error_mark_node
)
18503 cp_parser_require_pragma_eol (parser
, pragma_tok
);
18505 stmt
= cp_parser_omp_structured_block (parser
);
18506 return c_finish_omp_critical (stmt
, name
);
18510 # pragma omp flush flush-vars[opt] new-line
18513 ( variable-list ) */
18516 cp_parser_omp_flush (cp_parser
*parser
, cp_token
*pragma_tok
)
18518 if (cp_lexer_next_token_is (parser
->lexer
, CPP_OPEN_PAREN
))
18519 (void) cp_parser_omp_var_list (parser
, 0, NULL
);
18520 cp_parser_require_pragma_eol (parser
, pragma_tok
);
18522 finish_omp_flush ();
18525 /* Parse the restricted form of the for statment allowed by OpenMP. */
18528 cp_parser_omp_for_loop (cp_parser
*parser
)
18530 tree init
, cond
, incr
, body
, decl
, pre_body
;
18533 if (!cp_lexer_next_token_is_keyword (parser
->lexer
, RID_FOR
))
18535 cp_parser_error (parser
, "for statement expected");
18538 loc
= cp_lexer_consume_token (parser
->lexer
)->location
;
18539 if (!cp_parser_require (parser
, CPP_OPEN_PAREN
, "`('"))
18542 init
= decl
= NULL
;
18543 pre_body
= push_stmt_list ();
18544 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_SEMICOLON
))
18546 cp_decl_specifier_seq type_specifiers
;
18548 /* First, try to parse as an initialized declaration. See
18549 cp_parser_condition, from whence the bulk of this is copied. */
18551 cp_parser_parse_tentatively (parser
);
18552 cp_parser_type_specifier_seq (parser
, /*is_condition=*/false,
18554 if (!cp_parser_error_occurred (parser
))
18556 tree asm_specification
, attributes
;
18557 cp_declarator
*declarator
;
18559 declarator
= cp_parser_declarator (parser
,
18560 CP_PARSER_DECLARATOR_NAMED
,
18561 /*ctor_dtor_or_conv_p=*/NULL
,
18562 /*parenthesized_p=*/NULL
,
18563 /*member_p=*/false);
18564 attributes
= cp_parser_attributes_opt (parser
);
18565 asm_specification
= cp_parser_asm_specification_opt (parser
);
18567 cp_parser_require (parser
, CPP_EQ
, "`='");
18568 if (cp_parser_parse_definitely (parser
))
18572 decl
= start_decl (declarator
, &type_specifiers
,
18573 /*initialized_p=*/false, attributes
,
18574 /*prefix_attributes=*/NULL_TREE
,
18577 init
= cp_parser_assignment_expression (parser
, false);
18579 cp_finish_decl (decl
, NULL_TREE
, /*init_const_expr_p=*/false,
18580 asm_specification
, LOOKUP_ONLYCONVERTING
);
18583 pop_scope (pushed_scope
);
18587 cp_parser_abort_tentative_parse (parser
);
18589 /* If parsing as an initialized declaration failed, try again as
18590 a simple expression. */
18592 init
= cp_parser_expression (parser
, false);
18594 cp_parser_require (parser
, CPP_SEMICOLON
, "`;'");
18595 pre_body
= pop_stmt_list (pre_body
);
18598 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_SEMICOLON
))
18599 cond
= cp_parser_condition (parser
);
18600 cp_parser_require (parser
, CPP_SEMICOLON
, "`;'");
18603 if (cp_lexer_next_token_is_not (parser
->lexer
, CPP_CLOSE_PAREN
))
18604 incr
= cp_parser_expression (parser
, false);
18606 if (!cp_parser_require (parser
, CPP_CLOSE_PAREN
, "`)'"))
18607 cp_parser_skip_to_closing_parenthesis (parser
, /*recovering=*/true,
18608 /*or_comma=*/false,
18609 /*consume_paren=*/true);
18611 /* Note that we saved the original contents of this flag when we entered
18612 the structured block, and so we don't need to re-save it here. */
18613 parser
->in_statement
= IN_OMP_FOR
;
18615 /* Note that the grammar doesn't call for a structured block here,
18616 though the loop as a whole is a structured block. */
18617 body
= push_stmt_list ();
18618 cp_parser_statement (parser
, NULL_TREE
, false);
18619 body
= pop_stmt_list (body
);
18621 return finish_omp_for (loc
, decl
, init
, cond
, incr
, body
, pre_body
);
18625 #pragma omp for for-clause[optseq] new-line
18628 #define OMP_FOR_CLAUSE_MASK \
18629 ( (1u << PRAGMA_OMP_CLAUSE_PRIVATE) \
18630 | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
18631 | (1u << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
18632 | (1u << PRAGMA_OMP_CLAUSE_REDUCTION) \
18633 | (1u << PRAGMA_OMP_CLAUSE_ORDERED) \
18634 | (1u << PRAGMA_OMP_CLAUSE_SCHEDULE) \
18635 | (1u << PRAGMA_OMP_CLAUSE_NOWAIT))
18638 cp_parser_omp_for (cp_parser
*parser
, cp_token
*pragma_tok
)
18640 tree clauses
, sb
, ret
;
18643 clauses
= cp_parser_omp_all_clauses (parser
, OMP_FOR_CLAUSE_MASK
,
18644 "#pragma omp for", pragma_tok
);
18646 sb
= begin_omp_structured_block ();
18647 save
= cp_parser_begin_omp_structured_block (parser
);
18649 ret
= cp_parser_omp_for_loop (parser
);
18651 OMP_FOR_CLAUSES (ret
) = clauses
;
18653 cp_parser_end_omp_structured_block (parser
, save
);
18654 add_stmt (finish_omp_structured_block (sb
));
18660 # pragma omp master new-line
18661 structured-block */
18664 cp_parser_omp_master (cp_parser
*parser
, cp_token
*pragma_tok
)
18666 cp_parser_require_pragma_eol (parser
, pragma_tok
);
18667 return c_finish_omp_master (cp_parser_omp_structured_block (parser
));
18671 # pragma omp ordered new-line
18672 structured-block */
18675 cp_parser_omp_ordered (cp_parser
*parser
, cp_token
*pragma_tok
)
18677 cp_parser_require_pragma_eol (parser
, pragma_tok
);
18678 return c_finish_omp_ordered (cp_parser_omp_structured_block (parser
));
18684 { section-sequence }
18687 section-directive[opt] structured-block
18688 section-sequence section-directive structured-block */
18691 cp_parser_omp_sections_scope (cp_parser
*parser
)
18693 tree stmt
, substmt
;
18694 bool error_suppress
= false;
18697 if (!cp_parser_require (parser
, CPP_OPEN_BRACE
, "`{'"))
18700 stmt
= push_stmt_list ();
18702 if (cp_lexer_peek_token (parser
->lexer
)->pragma_kind
!= PRAGMA_OMP_SECTION
)
18706 substmt
= begin_omp_structured_block ();
18707 save
= cp_parser_begin_omp_structured_block (parser
);
18711 cp_parser_statement (parser
, NULL_TREE
, false);
18713 tok
= cp_lexer_peek_token (parser
->lexer
);
18714 if (tok
->pragma_kind
== PRAGMA_OMP_SECTION
)
18716 if (tok
->type
== CPP_CLOSE_BRACE
)
18718 if (tok
->type
== CPP_EOF
)
18722 cp_parser_end_omp_structured_block (parser
, save
);
18723 substmt
= finish_omp_structured_block (substmt
);
18724 substmt
= build1 (OMP_SECTION
, void_type_node
, substmt
);
18725 add_stmt (substmt
);
18730 tok
= cp_lexer_peek_token (parser
->lexer
);
18731 if (tok
->type
== CPP_CLOSE_BRACE
)
18733 if (tok
->type
== CPP_EOF
)
18736 if (tok
->pragma_kind
== PRAGMA_OMP_SECTION
)
18738 cp_lexer_consume_token (parser
->lexer
);
18739 cp_parser_require_pragma_eol (parser
, tok
);
18740 error_suppress
= false;
18742 else if (!error_suppress
)
18744 cp_parser_error (parser
, "expected %<#pragma omp section%> or %<}%>");
18745 error_suppress
= true;
18748 substmt
= cp_parser_omp_structured_block (parser
);
18749 substmt
= build1 (OMP_SECTION
, void_type_node
, substmt
);
18750 add_stmt (substmt
);
18752 cp_parser_require (parser
, CPP_CLOSE_BRACE
, "`}'");
18754 substmt
= pop_stmt_list (stmt
);
18756 stmt
= make_node (OMP_SECTIONS
);
18757 TREE_TYPE (stmt
) = void_type_node
;
18758 OMP_SECTIONS_BODY (stmt
) = substmt
;
18765 # pragma omp sections sections-clause[optseq] newline
18768 #define OMP_SECTIONS_CLAUSE_MASK \
18769 ( (1u << PRAGMA_OMP_CLAUSE_PRIVATE) \
18770 | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
18771 | (1u << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
18772 | (1u << PRAGMA_OMP_CLAUSE_REDUCTION) \
18773 | (1u << PRAGMA_OMP_CLAUSE_NOWAIT))
18776 cp_parser_omp_sections (cp_parser
*parser
, cp_token
*pragma_tok
)
18780 clauses
= cp_parser_omp_all_clauses (parser
, OMP_SECTIONS_CLAUSE_MASK
,
18781 "#pragma omp sections", pragma_tok
);
18783 ret
= cp_parser_omp_sections_scope (parser
);
18785 OMP_SECTIONS_CLAUSES (ret
) = clauses
;
18791 # pragma parallel parallel-clause new-line
18792 # pragma parallel for parallel-for-clause new-line
18793 # pragma parallel sections parallel-sections-clause new-line */
18795 #define OMP_PARALLEL_CLAUSE_MASK \
18796 ( (1u << PRAGMA_OMP_CLAUSE_IF) \
18797 | (1u << PRAGMA_OMP_CLAUSE_PRIVATE) \
18798 | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
18799 | (1u << PRAGMA_OMP_CLAUSE_DEFAULT) \
18800 | (1u << PRAGMA_OMP_CLAUSE_SHARED) \
18801 | (1u << PRAGMA_OMP_CLAUSE_COPYIN) \
18802 | (1u << PRAGMA_OMP_CLAUSE_REDUCTION) \
18803 | (1u << PRAGMA_OMP_CLAUSE_NUM_THREADS))
18806 cp_parser_omp_parallel (cp_parser
*parser
, cp_token
*pragma_tok
)
18808 enum pragma_kind p_kind
= PRAGMA_OMP_PARALLEL
;
18809 const char *p_name
= "#pragma omp parallel";
18810 tree stmt
, clauses
, par_clause
, ws_clause
, block
;
18811 unsigned int mask
= OMP_PARALLEL_CLAUSE_MASK
;
18814 if (cp_lexer_next_token_is_keyword (parser
->lexer
, RID_FOR
))
18816 cp_lexer_consume_token (parser
->lexer
);
18817 p_kind
= PRAGMA_OMP_PARALLEL_FOR
;
18818 p_name
= "#pragma omp parallel for";
18819 mask
|= OMP_FOR_CLAUSE_MASK
;
18820 mask
&= ~(1u << PRAGMA_OMP_CLAUSE_NOWAIT
);
18822 else if (cp_lexer_next_token_is (parser
->lexer
, CPP_NAME
))
18824 tree id
= cp_lexer_peek_token (parser
->lexer
)->value
;
18825 const char *p
= IDENTIFIER_POINTER (id
);
18826 if (strcmp (p
, "sections") == 0)
18828 cp_lexer_consume_token (parser
->lexer
);
18829 p_kind
= PRAGMA_OMP_PARALLEL_SECTIONS
;
18830 p_name
= "#pragma omp parallel sections";
18831 mask
|= OMP_SECTIONS_CLAUSE_MASK
;
18832 mask
&= ~(1u << PRAGMA_OMP_CLAUSE_NOWAIT
);
18836 clauses
= cp_parser_omp_all_clauses (parser
, mask
, p_name
, pragma_tok
);
18837 block
= begin_omp_parallel ();
18838 save
= cp_parser_begin_omp_structured_block (parser
);
18842 case PRAGMA_OMP_PARALLEL
:
18843 cp_parser_already_scoped_statement (parser
);
18844 par_clause
= clauses
;
18847 case PRAGMA_OMP_PARALLEL_FOR
:
18848 c_split_parallel_clauses (clauses
, &par_clause
, &ws_clause
);
18849 stmt
= cp_parser_omp_for_loop (parser
);
18851 OMP_FOR_CLAUSES (stmt
) = ws_clause
;
18854 case PRAGMA_OMP_PARALLEL_SECTIONS
:
18855 c_split_parallel_clauses (clauses
, &par_clause
, &ws_clause
);
18856 stmt
= cp_parser_omp_sections_scope (parser
);
18858 OMP_SECTIONS_CLAUSES (stmt
) = ws_clause
;
18862 gcc_unreachable ();
18865 cp_parser_end_omp_structured_block (parser
, save
);
18866 stmt
= finish_omp_parallel (par_clause
, block
);
18867 if (p_kind
!= PRAGMA_OMP_PARALLEL
)
18868 OMP_PARALLEL_COMBINED (stmt
) = 1;
18873 # pragma omp single single-clause[optseq] new-line
18874 structured-block */
18876 #define OMP_SINGLE_CLAUSE_MASK \
18877 ( (1u << PRAGMA_OMP_CLAUSE_PRIVATE) \
18878 | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
18879 | (1u << PRAGMA_OMP_CLAUSE_COPYPRIVATE) \
18880 | (1u << PRAGMA_OMP_CLAUSE_NOWAIT))
18883 cp_parser_omp_single (cp_parser
*parser
, cp_token
*pragma_tok
)
18885 tree stmt
= make_node (OMP_SINGLE
);
18886 TREE_TYPE (stmt
) = void_type_node
;
18888 OMP_SINGLE_CLAUSES (stmt
)
18889 = cp_parser_omp_all_clauses (parser
, OMP_SINGLE_CLAUSE_MASK
,
18890 "#pragma omp single", pragma_tok
);
18891 OMP_SINGLE_BODY (stmt
) = cp_parser_omp_structured_block (parser
);
18893 return add_stmt (stmt
);
18897 # pragma omp threadprivate (variable-list) */
18900 cp_parser_omp_threadprivate (cp_parser
*parser
, cp_token
*pragma_tok
)
18904 vars
= cp_parser_omp_var_list (parser
, 0, NULL
);
18905 cp_parser_require_pragma_eol (parser
, pragma_tok
);
18907 if (!targetm
.have_tls
)
18908 sorry ("threadprivate variables not supported in this target");
18910 finish_omp_threadprivate (vars
);
18913 /* Main entry point to OpenMP statement pragmas. */
18916 cp_parser_omp_construct (cp_parser
*parser
, cp_token
*pragma_tok
)
18920 switch (pragma_tok
->pragma_kind
)
18922 case PRAGMA_OMP_ATOMIC
:
18923 cp_parser_omp_atomic (parser
, pragma_tok
);
18925 case PRAGMA_OMP_CRITICAL
:
18926 stmt
= cp_parser_omp_critical (parser
, pragma_tok
);
18928 case PRAGMA_OMP_FOR
:
18929 stmt
= cp_parser_omp_for (parser
, pragma_tok
);
18931 case PRAGMA_OMP_MASTER
:
18932 stmt
= cp_parser_omp_master (parser
, pragma_tok
);
18934 case PRAGMA_OMP_ORDERED
:
18935 stmt
= cp_parser_omp_ordered (parser
, pragma_tok
);
18937 case PRAGMA_OMP_PARALLEL
:
18938 stmt
= cp_parser_omp_parallel (parser
, pragma_tok
);
18940 case PRAGMA_OMP_SECTIONS
:
18941 stmt
= cp_parser_omp_sections (parser
, pragma_tok
);
18943 case PRAGMA_OMP_SINGLE
:
18944 stmt
= cp_parser_omp_single (parser
, pragma_tok
);
18947 gcc_unreachable ();
18951 SET_EXPR_LOCATION (stmt
, pragma_tok
->location
);
18956 static GTY (()) cp_parser
*the_parser
;
18959 /* Special handling for the first token or line in the file. The first
18960 thing in the file might be #pragma GCC pch_preprocess, which loads a
18961 PCH file, which is a GC collection point. So we need to handle this
18962 first pragma without benefit of an existing lexer structure.
18964 Always returns one token to the caller in *FIRST_TOKEN. This is
18965 either the true first token of the file, or the first token after
18966 the initial pragma. */
18969 cp_parser_initial_pragma (cp_token
*first_token
)
18973 cp_lexer_get_preprocessor_token (NULL
, first_token
);
18974 if (first_token
->pragma_kind
!= PRAGMA_GCC_PCH_PREPROCESS
)
18977 cp_lexer_get_preprocessor_token (NULL
, first_token
);
18978 if (first_token
->type
== CPP_STRING
)
18980 name
= first_token
->value
;
18982 cp_lexer_get_preprocessor_token (NULL
, first_token
);
18983 if (first_token
->type
!= CPP_PRAGMA_EOL
)
18984 error ("junk at end of %<#pragma GCC pch_preprocess%>");
18987 error ("expected string literal");
18989 /* Skip to the end of the pragma. */
18990 while (first_token
->type
!= CPP_PRAGMA_EOL
&& first_token
->type
!= CPP_EOF
)
18991 cp_lexer_get_preprocessor_token (NULL
, first_token
);
18993 /* Now actually load the PCH file. */
18995 c_common_pch_pragma (parse_in
, TREE_STRING_POINTER (name
));
18997 /* Read one more token to return to our caller. We have to do this
18998 after reading the PCH file in, since its pointers have to be
19000 cp_lexer_get_preprocessor_token (NULL
, first_token
);
19003 /* Normal parsing of a pragma token. Here we can (and must) use the
19007 cp_parser_pragma (cp_parser
*parser
, enum pragma_context context
)
19009 cp_token
*pragma_tok
;
19012 pragma_tok
= cp_lexer_consume_token (parser
->lexer
);
19013 gcc_assert (pragma_tok
->type
== CPP_PRAGMA
);
19014 parser
->lexer
->in_pragma
= true;
19016 id
= pragma_tok
->pragma_kind
;
19019 case PRAGMA_GCC_PCH_PREPROCESS
:
19020 error ("%<#pragma GCC pch_preprocess%> must be first");
19023 case PRAGMA_OMP_BARRIER
:
19026 case pragma_compound
:
19027 cp_parser_omp_barrier (parser
, pragma_tok
);
19030 error ("%<#pragma omp barrier%> may only be "
19031 "used in compound statements");
19038 case PRAGMA_OMP_FLUSH
:
19041 case pragma_compound
:
19042 cp_parser_omp_flush (parser
, pragma_tok
);
19045 error ("%<#pragma omp flush%> may only be "
19046 "used in compound statements");
19053 case PRAGMA_OMP_THREADPRIVATE
:
19054 cp_parser_omp_threadprivate (parser
, pragma_tok
);
19057 case PRAGMA_OMP_ATOMIC
:
19058 case PRAGMA_OMP_CRITICAL
:
19059 case PRAGMA_OMP_FOR
:
19060 case PRAGMA_OMP_MASTER
:
19061 case PRAGMA_OMP_ORDERED
:
19062 case PRAGMA_OMP_PARALLEL
:
19063 case PRAGMA_OMP_SECTIONS
:
19064 case PRAGMA_OMP_SINGLE
:
19065 if (context
== pragma_external
)
19067 cp_parser_omp_construct (parser
, pragma_tok
);
19070 case PRAGMA_OMP_SECTION
:
19071 error ("%<#pragma omp section%> may only be used in "
19072 "%<#pragma omp sections%> construct");
19076 gcc_assert (id
>= PRAGMA_FIRST_EXTERNAL
);
19077 c_invoke_pragma_handler (id
);
19081 cp_parser_error (parser
, "expected declaration specifiers");
19085 cp_parser_skip_to_pragma_eol (parser
, pragma_tok
);
19089 /* The interface the pragma parsers have to the lexer. */
19092 pragma_lex (tree
*value
)
19095 enum cpp_ttype ret
;
19097 tok
= cp_lexer_peek_token (the_parser
->lexer
);
19100 *value
= tok
->value
;
19102 if (ret
== CPP_PRAGMA_EOL
|| ret
== CPP_EOF
)
19104 else if (ret
== CPP_STRING
)
19105 *value
= cp_parser_string_literal (the_parser
, false, false);
19108 cp_lexer_consume_token (the_parser
->lexer
);
19109 if (ret
== CPP_KEYWORD
)
19117 /* External interface. */
19119 /* Parse one entire translation unit. */
19122 c_parse_file (void)
19124 bool error_occurred
;
19125 static bool already_called
= false;
19127 if (already_called
)
19129 sorry ("inter-module optimizations not implemented for C++");
19132 already_called
= true;
19134 the_parser
= cp_parser_new ();
19135 push_deferring_access_checks (flag_access_control
19136 ? dk_no_deferred
: dk_no_check
);
19137 error_occurred
= cp_parser_translation_unit (the_parser
);
19141 /* This variable must be provided by every front end. */
19145 #include "gt-cp-parser.h"