1 /* Parser for C and Objective-C.
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010
4 Free Software Foundation, Inc.
6 Parser actions based on the old Bison parser; structure somewhat
7 influenced by and fragments based on the C++ parser.
9 This file is part of GCC.
11 GCC is free software; you can redistribute it and/or modify it under
12 the terms of the GNU General Public License as published by the Free
13 Software Foundation; either version 3, or (at your option) any later
16 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
17 WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 You should have received a copy of the GNU General Public License
22 along with GCC; see the file COPYING3. If not see
23 <http://www.gnu.org/licenses/>. */
27 Make sure all relevant comments, and all relevant code from all
28 actions, brought over from old parser. Verify exact correspondence
31 Add testcases covering every input symbol in every state in old and
34 Include full syntax for GNU C, including erroneous cases accepted
35 with error messages, in syntax productions in comments.
37 Make more diagnostics in the front end generally take an explicit
38 location rather than implicitly using input_location. */
42 #include "coretypes.h"
43 #include "tm.h" /* For rtl.h: needs enum reg_class. */
45 #include "langhooks.h"
62 /* Initialization routine for this file. */
67 /* The only initialization required is of the reserved word
73 /* Make sure RID_MAX hasn't grown past the 8 bits used to hold the keyword in
74 the c_token structure. */
75 gcc_assert (RID_MAX
<= 255);
82 mask
|= D_ASM
| D_EXT
;
86 if (!c_dialect_objc ())
87 mask
|= D_OBJC
| D_CXX_OBJC
;
89 ridpointers
= GGC_CNEWVEC (tree
, (int) RID_MAX
);
90 for (i
= 0; i
< num_c_common_reswords
; i
++)
92 /* If a keyword is disabled, do not enter it into the table
93 and so create a canonical spelling that isn't a keyword. */
94 if (c_common_reswords
[i
].disable
& mask
)
97 && (c_common_reswords
[i
].disable
& D_CXXWARN
))
99 id
= get_identifier (c_common_reswords
[i
].word
);
100 C_SET_RID_CODE (id
, RID_CXX_COMPAT_WARN
);
101 C_IS_RESERVED_WORD (id
) = 1;
106 id
= get_identifier (c_common_reswords
[i
].word
);
107 C_SET_RID_CODE (id
, c_common_reswords
[i
].rid
);
108 C_IS_RESERVED_WORD (id
) = 1;
109 ridpointers
[(int) c_common_reswords
[i
].rid
] = id
;
113 /* The C lexer intermediates between the lexer in cpplib and c-lex.c
114 and the C parser. Unlike the C++ lexer, the parser structure
115 stores the lexer information instead of using a separate structure.
116 Identifiers are separated into ordinary identifiers, type names,
117 keywords and some other Objective-C types of identifiers, and some
118 look-ahead is maintained.
120 ??? It might be a good idea to lex the whole file up front (as for
121 C++). It would then be possible to share more of the C and C++
122 lexer code, if desired. */
124 /* The following local token type is used. */
127 #define CPP_KEYWORD ((enum cpp_ttype) (N_TTYPES + 1))
129 /* More information about the type of a CPP_NAME token. */
130 typedef enum c_id_kind
{
131 /* An ordinary identifier. */
133 /* An identifier declared as a typedef name. */
135 /* An identifier declared as an Objective-C class name. */
137 /* An address space identifier. */
139 /* Not an identifier. */
143 /* A single C token after string literal concatenation and conversion
144 of preprocessing tokens to tokens. */
145 typedef struct GTY (()) c_token
{
146 /* The kind of token. */
147 ENUM_BITFIELD (cpp_ttype
) type
: 8;
148 /* If this token is a CPP_NAME, this value indicates whether also
149 declared as some kind of type. Otherwise, it is C_ID_NONE. */
150 ENUM_BITFIELD (c_id_kind
) id_kind
: 8;
151 /* If this token is a keyword, this value indicates which keyword.
152 Otherwise, this value is RID_MAX. */
153 ENUM_BITFIELD (rid
) keyword
: 8;
154 /* If this token is a CPP_PRAGMA, this indicates the pragma that
155 was seen. Otherwise it is PRAGMA_NONE. */
156 ENUM_BITFIELD (pragma_kind
) pragma_kind
: 8;
157 /* The location at which this token was found. */
159 /* The value associated with this token, if any. */
163 /* A parser structure recording information about the state and
164 context of parsing. Includes lexer information with up to two
165 tokens of look-ahead; more are not needed for C. */
166 typedef struct GTY(()) c_parser
{
167 /* The look-ahead tokens. */
169 /* How many look-ahead tokens are available (0, 1 or 2). */
171 /* True if a syntax error is being recovered from; false otherwise.
172 c_parser_error sets this flag. It should clear this flag when
173 enough tokens have been consumed to recover from the error. */
174 BOOL_BITFIELD error
: 1;
175 /* True if we're processing a pragma, and shouldn't automatically
176 consume CPP_PRAGMA_EOL. */
177 BOOL_BITFIELD in_pragma
: 1;
178 /* True if we're parsing the outermost block of an if statement. */
179 BOOL_BITFIELD in_if_block
: 1;
180 /* True if we want to lex an untranslated string. */
181 BOOL_BITFIELD lex_untranslated_string
: 1;
182 /* Objective-C specific parser/lexer information. */
183 BOOL_BITFIELD objc_pq_context
: 1;
184 /* The following flag is needed to contextualize Objective-C lexical
185 analysis. In some cases (e.g., 'int NSObject;'), it is
186 undesirable to bind an identifier to an Objective-C class, even
187 if a class with that name exists. */
188 BOOL_BITFIELD objc_need_raw_identifier
: 1;
192 /* The actual parser and external interface. ??? Does this need to be
193 garbage-collected? */
195 static GTY (()) c_parser
*the_parser
;
198 /* Read in and lex a single token, storing it in *TOKEN. */
201 c_lex_one_token (c_parser
*parser
, c_token
*token
)
203 timevar_push (TV_LEX
);
205 token
->type
= c_lex_with_flags (&token
->value
, &token
->location
, NULL
,
206 (parser
->lex_untranslated_string
207 ? C_LEX_STRING_NO_TRANSLATE
: 0));
208 token
->id_kind
= C_ID_NONE
;
209 token
->keyword
= RID_MAX
;
210 token
->pragma_kind
= PRAGMA_NONE
;
218 bool objc_force_identifier
= parser
->objc_need_raw_identifier
;
219 if (c_dialect_objc ())
220 parser
->objc_need_raw_identifier
= false;
222 if (C_IS_RESERVED_WORD (token
->value
))
224 enum rid rid_code
= C_RID_CODE (token
->value
);
226 if (rid_code
== RID_CXX_COMPAT_WARN
)
228 warning_at (token
->location
,
230 "identifier %qE conflicts with C++ keyword",
233 else if (rid_code
>= RID_FIRST_ADDR_SPACE
234 && rid_code
<= RID_LAST_ADDR_SPACE
)
236 token
->id_kind
= C_ID_ADDRSPACE
;
237 token
->keyword
= rid_code
;
240 else if (c_dialect_objc ())
242 if (!objc_is_reserved_word (token
->value
)
243 && (!OBJC_IS_PQ_KEYWORD (rid_code
)
244 || parser
->objc_pq_context
))
246 /* Return the canonical spelling for this keyword. */
247 token
->value
= ridpointers
[(int) rid_code
];
248 token
->type
= CPP_KEYWORD
;
249 token
->keyword
= rid_code
;
255 token
->type
= CPP_KEYWORD
;
256 token
->keyword
= rid_code
;
261 decl
= lookup_name (token
->value
);
264 if (TREE_CODE (decl
) == TYPE_DECL
)
266 token
->id_kind
= C_ID_TYPENAME
;
270 else if (c_dialect_objc ())
272 tree objc_interface_decl
= objc_is_class_name (token
->value
);
273 /* Objective-C class names are in the same namespace as
274 variables and typedefs, and hence are shadowed by local
276 if (objc_interface_decl
277 && (global_bindings_p ()
278 || (!objc_force_identifier
&& !decl
)))
280 token
->value
= objc_interface_decl
;
281 token
->id_kind
= C_ID_CLASSNAME
;
285 token
->id_kind
= C_ID_ID
;
289 /* This only happens in Objective-C; it must be a keyword. */
290 token
->type
= CPP_KEYWORD
;
291 token
->keyword
= C_RID_CODE (token
->value
);
295 case CPP_CLOSE_PAREN
:
297 /* These tokens may affect the interpretation of any identifiers
298 following, if doing Objective-C. */
299 if (c_dialect_objc ())
300 parser
->objc_need_raw_identifier
= false;
303 /* We smuggled the cpp_token->u.pragma value in an INTEGER_CST. */
304 token
->pragma_kind
= (enum pragma_kind
) TREE_INT_CST_LOW (token
->value
);
310 timevar_pop (TV_LEX
);
313 /* Return a pointer to the next token from PARSER, reading it in if
316 static inline c_token
*
317 c_parser_peek_token (c_parser
*parser
)
319 if (parser
->tokens_avail
== 0)
321 c_lex_one_token (parser
, &parser
->tokens
[0]);
322 parser
->tokens_avail
= 1;
324 return &parser
->tokens
[0];
327 /* Return true if the next token from PARSER has the indicated
331 c_parser_next_token_is (c_parser
*parser
, enum cpp_ttype type
)
333 return c_parser_peek_token (parser
)->type
== type
;
336 /* Return true if the next token from PARSER does not have the
340 c_parser_next_token_is_not (c_parser
*parser
, enum cpp_ttype type
)
342 return !c_parser_next_token_is (parser
, type
);
345 /* Return true if the next token from PARSER is the indicated
349 c_parser_next_token_is_keyword (c_parser
*parser
, enum rid keyword
)
351 return c_parser_peek_token (parser
)->keyword
== keyword
;
354 /* Return true if TOKEN can start a type name,
357 c_token_starts_typename (c_token
*token
)
362 switch (token
->id_kind
)
371 gcc_assert (c_dialect_objc ());
377 switch (token
->keyword
)
410 if (c_dialect_objc ())
418 /* Return true if the next token from PARSER can start a type name,
421 c_parser_next_token_starts_typename (c_parser
*parser
)
423 c_token
*token
= c_parser_peek_token (parser
);
424 return c_token_starts_typename (token
);
427 /* Return true if TOKEN can start declaration specifiers, false
430 c_token_starts_declspecs (c_token
*token
)
435 switch (token
->id_kind
)
444 gcc_assert (c_dialect_objc ());
450 switch (token
->keyword
)
490 if (c_dialect_objc ())
499 /* Return true if TOKEN can start declaration specifiers or a static
500 assertion, false otherwise. */
502 c_token_starts_declaration (c_token
*token
)
504 if (c_token_starts_declspecs (token
)
505 || token
->keyword
== RID_STATIC_ASSERT
)
511 /* Return true if the next token from PARSER can start declaration
512 specifiers, false otherwise. */
514 c_parser_next_token_starts_declspecs (c_parser
*parser
)
516 c_token
*token
= c_parser_peek_token (parser
);
517 return c_token_starts_declspecs (token
);
520 /* Return true if the next token from PARSER can start declaration
521 specifiers or a static assertion, false otherwise. */
523 c_parser_next_token_starts_declaration (c_parser
*parser
)
525 c_token
*token
= c_parser_peek_token (parser
);
526 return c_token_starts_declaration (token
);
529 /* Return a pointer to the next-but-one token from PARSER, reading it
530 in if necessary. The next token is already read in. */
533 c_parser_peek_2nd_token (c_parser
*parser
)
535 if (parser
->tokens_avail
>= 2)
536 return &parser
->tokens
[1];
537 gcc_assert (parser
->tokens_avail
== 1);
538 gcc_assert (parser
->tokens
[0].type
!= CPP_EOF
);
539 gcc_assert (parser
->tokens
[0].type
!= CPP_PRAGMA_EOL
);
540 c_lex_one_token (parser
, &parser
->tokens
[1]);
541 parser
->tokens_avail
= 2;
542 return &parser
->tokens
[1];
545 /* Consume the next token from PARSER. */
548 c_parser_consume_token (c_parser
*parser
)
550 gcc_assert (parser
->tokens_avail
>= 1);
551 gcc_assert (parser
->tokens
[0].type
!= CPP_EOF
);
552 gcc_assert (!parser
->in_pragma
|| parser
->tokens
[0].type
!= CPP_PRAGMA_EOL
);
553 gcc_assert (parser
->error
|| parser
->tokens
[0].type
!= CPP_PRAGMA
);
554 if (parser
->tokens_avail
== 2)
555 parser
->tokens
[0] = parser
->tokens
[1];
556 parser
->tokens_avail
--;
559 /* Expect the current token to be a #pragma. Consume it and remember
560 that we've begun parsing a pragma. */
563 c_parser_consume_pragma (c_parser
*parser
)
565 gcc_assert (!parser
->in_pragma
);
566 gcc_assert (parser
->tokens_avail
>= 1);
567 gcc_assert (parser
->tokens
[0].type
== CPP_PRAGMA
);
568 if (parser
->tokens_avail
== 2)
569 parser
->tokens
[0] = parser
->tokens
[1];
570 parser
->tokens_avail
--;
571 parser
->in_pragma
= true;
574 /* Update the globals input_location and in_system_header from
577 c_parser_set_source_position_from_token (c_token
*token
)
579 if (token
->type
!= CPP_EOF
)
581 input_location
= token
->location
;
585 /* Issue a diagnostic of the form
586 FILE:LINE: MESSAGE before TOKEN
587 where TOKEN is the next token in the input stream of PARSER.
588 MESSAGE (specified by the caller) is usually of the form "expected
591 Do not issue a diagnostic if still recovering from an error.
593 ??? This is taken from the C++ parser, but building up messages in
594 this way is not i18n-friendly and some other approach should be
598 c_parser_error (c_parser
*parser
, const char *gmsgid
)
600 c_token
*token
= c_parser_peek_token (parser
);
603 parser
->error
= true;
606 /* This diagnostic makes more sense if it is tagged to the line of
607 the token we just peeked at. */
608 c_parser_set_source_position_from_token (token
);
609 c_parse_error (gmsgid
,
610 /* Because c_parse_error does not understand
611 CPP_KEYWORD, keywords are treated like
613 (token
->type
== CPP_KEYWORD
? CPP_NAME
: token
->type
),
614 /* ??? The C parser does not save the cpp flags of a
615 token, we need to pass 0 here and we will not get
616 the source spelling of some tokens but rather the
617 canonical spelling. */
618 token
->value
, /*flags=*/0);
621 /* If the next token is of the indicated TYPE, consume it. Otherwise,
622 issue the error MSGID. If MSGID is NULL then a message has already
623 been produced and no message will be produced this time. Returns
624 true if found, false otherwise. */
627 c_parser_require (c_parser
*parser
,
631 if (c_parser_next_token_is (parser
, type
))
633 c_parser_consume_token (parser
);
638 c_parser_error (parser
, msgid
);
643 /* If the next token is the indicated keyword, consume it. Otherwise,
644 issue the error MSGID. Returns true if found, false otherwise. */
647 c_parser_require_keyword (c_parser
*parser
,
651 if (c_parser_next_token_is_keyword (parser
, keyword
))
653 c_parser_consume_token (parser
);
658 c_parser_error (parser
, msgid
);
663 /* Like c_parser_require, except that tokens will be skipped until the
664 desired token is found. An error message is still produced if the
665 next token is not as expected. If MSGID is NULL then a message has
666 already been produced and no message will be produced this
670 c_parser_skip_until_found (c_parser
*parser
,
674 unsigned nesting_depth
= 0;
676 if (c_parser_require (parser
, type
, msgid
))
679 /* Skip tokens until the desired token is found. */
682 /* Peek at the next token. */
683 c_token
*token
= c_parser_peek_token (parser
);
684 /* If we've reached the token we want, consume it and stop. */
685 if (token
->type
== type
&& !nesting_depth
)
687 c_parser_consume_token (parser
);
691 /* If we've run out of tokens, stop. */
692 if (token
->type
== CPP_EOF
)
694 if (token
->type
== CPP_PRAGMA_EOL
&& parser
->in_pragma
)
696 if (token
->type
== CPP_OPEN_BRACE
697 || token
->type
== CPP_OPEN_PAREN
698 || token
->type
== CPP_OPEN_SQUARE
)
700 else if (token
->type
== CPP_CLOSE_BRACE
701 || token
->type
== CPP_CLOSE_PAREN
702 || token
->type
== CPP_CLOSE_SQUARE
)
704 if (nesting_depth
-- == 0)
707 /* Consume this token. */
708 c_parser_consume_token (parser
);
710 parser
->error
= false;
713 /* Skip tokens until the end of a parameter is found, but do not
714 consume the comma, semicolon or closing delimiter. */
717 c_parser_skip_to_end_of_parameter (c_parser
*parser
)
719 unsigned nesting_depth
= 0;
723 c_token
*token
= c_parser_peek_token (parser
);
724 if ((token
->type
== CPP_COMMA
|| token
->type
== CPP_SEMICOLON
)
727 /* If we've run out of tokens, stop. */
728 if (token
->type
== CPP_EOF
)
730 if (token
->type
== CPP_PRAGMA_EOL
&& parser
->in_pragma
)
732 if (token
->type
== CPP_OPEN_BRACE
733 || token
->type
== CPP_OPEN_PAREN
734 || token
->type
== CPP_OPEN_SQUARE
)
736 else if (token
->type
== CPP_CLOSE_BRACE
737 || token
->type
== CPP_CLOSE_PAREN
738 || token
->type
== CPP_CLOSE_SQUARE
)
740 if (nesting_depth
-- == 0)
743 /* Consume this token. */
744 c_parser_consume_token (parser
);
746 parser
->error
= false;
749 /* Expect to be at the end of the pragma directive and consume an
750 end of line marker. */
753 c_parser_skip_to_pragma_eol (c_parser
*parser
)
755 gcc_assert (parser
->in_pragma
);
756 parser
->in_pragma
= false;
758 if (!c_parser_require (parser
, CPP_PRAGMA_EOL
, "expected end of line"))
761 c_token
*token
= c_parser_peek_token (parser
);
762 if (token
->type
== CPP_EOF
)
764 if (token
->type
== CPP_PRAGMA_EOL
)
766 c_parser_consume_token (parser
);
769 c_parser_consume_token (parser
);
772 parser
->error
= false;
775 /* Skip tokens until we have consumed an entire block, or until we
776 have consumed a non-nested ';'. */
779 c_parser_skip_to_end_of_block_or_statement (c_parser
*parser
)
781 unsigned nesting_depth
= 0;
782 bool save_error
= parser
->error
;
788 /* Peek at the next token. */
789 token
= c_parser_peek_token (parser
);
797 if (parser
->in_pragma
)
802 /* If the next token is a ';', we have reached the
803 end of the statement. */
806 /* Consume the ';'. */
807 c_parser_consume_token (parser
);
812 case CPP_CLOSE_BRACE
:
813 /* If the next token is a non-nested '}', then we have
814 reached the end of the current block. */
815 if (nesting_depth
== 0 || --nesting_depth
== 0)
817 c_parser_consume_token (parser
);
823 /* If it the next token is a '{', then we are entering a new
824 block. Consume the entire block. */
829 /* If we see a pragma, consume the whole thing at once. We
830 have some safeguards against consuming pragmas willy-nilly.
831 Normally, we'd expect to be here with parser->error set,
832 which disables these safeguards. But it's possible to get
833 here for secondary error recovery, after parser->error has
835 c_parser_consume_pragma (parser
);
836 c_parser_skip_to_pragma_eol (parser
);
837 parser
->error
= save_error
;
844 c_parser_consume_token (parser
);
848 parser
->error
= false;
851 /* CPP's options (initialized by c-opts.c). */
852 extern cpp_options
*cpp_opts
;
854 /* Save the warning flags which are controlled by __extension__. */
857 disable_extension_diagnostics (void)
860 | (warn_pointer_arith
<< 1)
861 | (warn_traditional
<< 2)
863 | (warn_long_long
<< 4)
864 | (warn_cxx_compat
<< 5));
865 cpp_opts
->pedantic
= pedantic
= 0;
866 warn_pointer_arith
= 0;
867 cpp_opts
->warn_traditional
= warn_traditional
= 0;
869 cpp_opts
->warn_long_long
= warn_long_long
= 0;
874 /* Restore the warning flags which are controlled by __extension__.
875 FLAGS is the return value from disable_extension_diagnostics. */
878 restore_extension_diagnostics (int flags
)
880 cpp_opts
->pedantic
= pedantic
= flags
& 1;
881 warn_pointer_arith
= (flags
>> 1) & 1;
882 cpp_opts
->warn_traditional
= warn_traditional
= (flags
>> 2) & 1;
883 flag_iso
= (flags
>> 3) & 1;
884 cpp_opts
->warn_long_long
= warn_long_long
= (flags
>> 4) & 1;
885 warn_cxx_compat
= (flags
>> 5) & 1;
888 /* Possibly kinds of declarator to parse. */
889 typedef enum c_dtr_syn
{
890 /* A normal declarator with an identifier. */
892 /* An abstract declarator (maybe empty). */
894 /* A parameter declarator: may be either, but after a type name does
895 not redeclare a typedef name as an identifier if it can
896 alternatively be interpreted as a typedef name; see DR#009,
897 applied in C90 TC1, omitted from C99 and reapplied in C99 TC2
898 following DR#249. For example, given a typedef T, "int T" and
899 "int *T" are valid parameter declarations redeclaring T, while
900 "int (T)" and "int * (T)" and "int (T[])" and "int (T (int))" are
901 abstract declarators rather than involving redundant parentheses;
902 the same applies with attributes inside the parentheses before
907 static void c_parser_external_declaration (c_parser
*);
908 static void c_parser_asm_definition (c_parser
*);
909 static void c_parser_declaration_or_fndef (c_parser
*, bool, bool, bool,
911 static void c_parser_static_assert_declaration_no_semi (c_parser
*);
912 static void c_parser_static_assert_declaration (c_parser
*);
913 static void c_parser_declspecs (c_parser
*, struct c_declspecs
*, bool, bool,
915 static struct c_typespec
c_parser_enum_specifier (c_parser
*);
916 static struct c_typespec
c_parser_struct_or_union_specifier (c_parser
*);
917 static tree
c_parser_struct_declaration (c_parser
*);
918 static struct c_typespec
c_parser_typeof_specifier (c_parser
*);
919 static struct c_declarator
*c_parser_declarator (c_parser
*, bool, c_dtr_syn
,
921 static struct c_declarator
*c_parser_direct_declarator (c_parser
*, bool,
923 static struct c_declarator
*c_parser_direct_declarator_inner (c_parser
*,
925 struct c_declarator
*);
926 static struct c_arg_info
*c_parser_parms_declarator (c_parser
*, bool, tree
);
927 static struct c_arg_info
*c_parser_parms_list_declarator (c_parser
*, tree
);
928 static struct c_parm
*c_parser_parameter_declaration (c_parser
*, tree
);
929 static tree
c_parser_simple_asm_expr (c_parser
*);
930 static tree
c_parser_attributes (c_parser
*);
931 static struct c_type_name
*c_parser_type_name (c_parser
*);
932 static struct c_expr
c_parser_initializer (c_parser
*);
933 static struct c_expr
c_parser_braced_init (c_parser
*, tree
, bool);
934 static void c_parser_initelt (c_parser
*, struct obstack
*);
935 static void c_parser_initval (c_parser
*, struct c_expr
*,
937 static tree
c_parser_compound_statement (c_parser
*);
938 static void c_parser_compound_statement_nostart (c_parser
*);
939 static void c_parser_label (c_parser
*);
940 static void c_parser_statement (c_parser
*);
941 static void c_parser_statement_after_labels (c_parser
*);
942 static void c_parser_if_statement (c_parser
*);
943 static void c_parser_switch_statement (c_parser
*);
944 static void c_parser_while_statement (c_parser
*);
945 static void c_parser_do_statement (c_parser
*);
946 static void c_parser_for_statement (c_parser
*);
947 static tree
c_parser_asm_statement (c_parser
*);
948 static tree
c_parser_asm_operands (c_parser
*, bool);
949 static tree
c_parser_asm_goto_operands (c_parser
*);
950 static tree
c_parser_asm_clobbers (c_parser
*);
951 static struct c_expr
c_parser_expr_no_commas (c_parser
*, struct c_expr
*);
952 static struct c_expr
c_parser_conditional_expression (c_parser
*,
954 static struct c_expr
c_parser_binary_expression (c_parser
*, struct c_expr
*);
955 static struct c_expr
c_parser_cast_expression (c_parser
*, struct c_expr
*);
956 static struct c_expr
c_parser_unary_expression (c_parser
*);
957 static struct c_expr
c_parser_sizeof_expression (c_parser
*);
958 static struct c_expr
c_parser_alignof_expression (c_parser
*);
959 static struct c_expr
c_parser_postfix_expression (c_parser
*);
960 static struct c_expr
c_parser_postfix_expression_after_paren_type (c_parser
*,
961 struct c_type_name
*,
963 static struct c_expr
c_parser_postfix_expression_after_primary (c_parser
*,
966 static struct c_expr
c_parser_expression (c_parser
*);
967 static struct c_expr
c_parser_expression_conv (c_parser
*);
968 static VEC(tree
,gc
) *c_parser_expr_list (c_parser
*, bool, bool,
970 static void c_parser_omp_construct (c_parser
*);
971 static void c_parser_omp_threadprivate (c_parser
*);
972 static void c_parser_omp_barrier (c_parser
*);
973 static void c_parser_omp_flush (c_parser
*);
974 static void c_parser_omp_taskwait (c_parser
*);
976 enum pragma_context
{ pragma_external
, pragma_stmt
, pragma_compound
};
977 static bool c_parser_pragma (c_parser
*, enum pragma_context
);
979 /* These Objective-C parser functions are only ever called when
980 compiling Objective-C. */
981 static void c_parser_objc_class_definition (c_parser
*);
982 static void c_parser_objc_class_instance_variables (c_parser
*);
983 static void c_parser_objc_class_declaration (c_parser
*);
984 static void c_parser_objc_alias_declaration (c_parser
*);
985 static void c_parser_objc_protocol_definition (c_parser
*);
986 static enum tree_code
c_parser_objc_method_type (c_parser
*);
987 static void c_parser_objc_method_definition (c_parser
*);
988 static void c_parser_objc_methodprotolist (c_parser
*);
989 static void c_parser_objc_methodproto (c_parser
*);
990 static tree
c_parser_objc_method_decl (c_parser
*);
991 static tree
c_parser_objc_type_name (c_parser
*);
992 static tree
c_parser_objc_protocol_refs (c_parser
*);
993 static void c_parser_objc_try_catch_statement (c_parser
*);
994 static void c_parser_objc_synchronized_statement (c_parser
*);
995 static tree
c_parser_objc_selector (c_parser
*);
996 static tree
c_parser_objc_selector_arg (c_parser
*);
997 static tree
c_parser_objc_receiver (c_parser
*);
998 static tree
c_parser_objc_message_args (c_parser
*);
999 static tree
c_parser_objc_keywordexpr (c_parser
*);
1001 /* Parse a translation unit (C90 6.7, C99 6.9).
1004 external-declarations
1006 external-declarations:
1007 external-declaration
1008 external-declarations external-declaration
1017 c_parser_translation_unit (c_parser
*parser
)
1019 if (c_parser_next_token_is (parser
, CPP_EOF
))
1021 pedwarn (c_parser_peek_token (parser
)->location
, OPT_pedantic
,
1022 "ISO C forbids an empty translation unit");
1026 void *obstack_position
= obstack_alloc (&parser_obstack
, 0);
1027 mark_valid_location_for_stdc_pragma (false);
1031 c_parser_external_declaration (parser
);
1032 obstack_free (&parser_obstack
, obstack_position
);
1034 while (c_parser_next_token_is_not (parser
, CPP_EOF
));
1038 /* Parse an external declaration (C90 6.7, C99 6.9).
1040 external-declaration:
1046 external-declaration:
1049 __extension__ external-declaration
1053 external-declaration:
1054 objc-class-definition
1055 objc-class-declaration
1056 objc-alias-declaration
1057 objc-protocol-definition
1058 objc-method-definition
1063 c_parser_external_declaration (c_parser
*parser
)
1066 switch (c_parser_peek_token (parser
)->type
)
1069 switch (c_parser_peek_token (parser
)->keyword
)
1072 ext
= disable_extension_diagnostics ();
1073 c_parser_consume_token (parser
);
1074 c_parser_external_declaration (parser
);
1075 restore_extension_diagnostics (ext
);
1078 c_parser_asm_definition (parser
);
1080 case RID_AT_INTERFACE
:
1081 case RID_AT_IMPLEMENTATION
:
1082 gcc_assert (c_dialect_objc ());
1083 c_parser_objc_class_definition (parser
);
1086 gcc_assert (c_dialect_objc ());
1087 c_parser_objc_class_declaration (parser
);
1090 gcc_assert (c_dialect_objc ());
1091 c_parser_objc_alias_declaration (parser
);
1093 case RID_AT_PROTOCOL
:
1094 gcc_assert (c_dialect_objc ());
1095 c_parser_objc_protocol_definition (parser
);
1098 gcc_assert (c_dialect_objc ());
1099 c_parser_consume_token (parser
);
1100 objc_finish_implementation ();
1107 pedwarn (c_parser_peek_token (parser
)->location
, OPT_pedantic
,
1108 "ISO C does not allow extra %<;%> outside of a function");
1109 c_parser_consume_token (parser
);
1112 mark_valid_location_for_stdc_pragma (true);
1113 c_parser_pragma (parser
, pragma_external
);
1114 mark_valid_location_for_stdc_pragma (false);
1118 if (c_dialect_objc ())
1120 c_parser_objc_method_definition (parser
);
1123 /* Else fall through, and yield a syntax error trying to parse
1124 as a declaration or function definition. */
1127 /* A declaration or a function definition. We can only tell
1128 which after parsing the declaration specifiers, if any, and
1129 the first declarator. */
1130 c_parser_declaration_or_fndef (parser
, true, true, true, false, true);
1136 /* Parse a declaration or function definition (C90 6.5, 6.7.1, C99
1137 6.7, 6.9.1). If FNDEF_OK is true, a function definition is
1138 accepted; otherwise (old-style parameter declarations) only other
1139 declarations are accepted. If STATIC_ASSERT_OK is true, a static
1140 assertion is accepted; otherwise (old-style parameter declarations)
1141 it is not. If NESTED is true, we are inside a function or parsing
1142 old-style parameter declarations; any functions encountered are
1143 nested functions and declaration specifiers are required; otherwise
1144 we are at top level and functions are normal functions and
1145 declaration specifiers may be optional. If EMPTY_OK is true, empty
1146 declarations are OK (subject to all other constraints); otherwise
1147 (old-style parameter declarations) they are diagnosed. If
1148 START_ATTR_OK is true, the declaration specifiers may start with
1149 attributes; otherwise they may not.
1152 declaration-specifiers init-declarator-list[opt] ;
1153 static_assert-declaration
1155 function-definition:
1156 declaration-specifiers[opt] declarator declaration-list[opt]
1161 declaration-list declaration
1163 init-declarator-list:
1165 init-declarator-list , init-declarator
1168 declarator simple-asm-expr[opt] attributes[opt]
1169 declarator simple-asm-expr[opt] attributes[opt] = initializer
1173 nested-function-definition:
1174 declaration-specifiers declarator declaration-list[opt]
1177 The simple-asm-expr and attributes are GNU extensions.
1179 This function does not handle __extension__; that is handled in its
1180 callers. ??? Following the old parser, __extension__ may start
1181 external declarations, declarations in functions and declarations
1182 at the start of "for" loops, but not old-style parameter
1185 C99 requires declaration specifiers in a function definition; the
1186 absence is diagnosed through the diagnosis of implicit int. In GNU
1187 C we also allow but diagnose declarations without declaration
1188 specifiers, but only at top level (elsewhere they conflict with
1194 threadprivate-directive */
1197 c_parser_declaration_or_fndef (c_parser
*parser
, bool fndef_ok
,
1198 bool static_assert_ok
, bool empty_ok
,
1199 bool nested
, bool start_attr_ok
)
1201 struct c_declspecs
*specs
;
1203 tree all_prefix_attrs
;
1204 bool diagnosed_no_specs
= false;
1205 location_t here
= c_parser_peek_token (parser
)->location
;
1207 if (static_assert_ok
1208 && c_parser_next_token_is_keyword (parser
, RID_STATIC_ASSERT
))
1210 c_parser_static_assert_declaration (parser
);
1213 specs
= build_null_declspecs ();
1214 c_parser_declspecs (parser
, specs
, true, true, start_attr_ok
);
1217 c_parser_skip_to_end_of_block_or_statement (parser
);
1220 if (nested
&& !specs
->declspecs_seen_p
)
1222 c_parser_error (parser
, "expected declaration specifiers");
1223 c_parser_skip_to_end_of_block_or_statement (parser
);
1226 finish_declspecs (specs
);
1227 if (c_parser_next_token_is (parser
, CPP_SEMICOLON
))
1233 shadow_tag_warned (specs
, 1);
1234 pedwarn (here
, 0, "empty declaration");
1236 c_parser_consume_token (parser
);
1239 pending_xref_error ();
1240 prefix_attrs
= specs
->attrs
;
1241 all_prefix_attrs
= prefix_attrs
;
1242 specs
->attrs
= NULL_TREE
;
1245 struct c_declarator
*declarator
;
1248 /* Declaring either one or more declarators (in which case we
1249 should diagnose if there were no declaration specifiers) or a
1250 function definition (in which case the diagnostic for
1251 implicit int suffices). */
1252 declarator
= c_parser_declarator (parser
, specs
->type_seen_p
,
1253 C_DTR_NORMAL
, &dummy
);
1254 if (declarator
== NULL
)
1256 c_parser_skip_to_end_of_block_or_statement (parser
);
1259 if (c_parser_next_token_is (parser
, CPP_EQ
)
1260 || c_parser_next_token_is (parser
, CPP_COMMA
)
1261 || c_parser_next_token_is (parser
, CPP_SEMICOLON
)
1262 || c_parser_next_token_is_keyword (parser
, RID_ASM
)
1263 || c_parser_next_token_is_keyword (parser
, RID_ATTRIBUTE
))
1265 tree asm_name
= NULL_TREE
;
1266 tree postfix_attrs
= NULL_TREE
;
1267 if (!diagnosed_no_specs
&& !specs
->declspecs_seen_p
)
1269 diagnosed_no_specs
= true;
1270 pedwarn (here
, 0, "data definition has no type or storage class");
1272 /* Having seen a data definition, there cannot now be a
1273 function definition. */
1275 if (c_parser_next_token_is_keyword (parser
, RID_ASM
))
1276 asm_name
= c_parser_simple_asm_expr (parser
);
1277 if (c_parser_next_token_is_keyword (parser
, RID_ATTRIBUTE
))
1278 postfix_attrs
= c_parser_attributes (parser
);
1279 if (c_parser_next_token_is (parser
, CPP_EQ
))
1283 location_t init_loc
;
1284 c_parser_consume_token (parser
);
1285 /* The declaration of the variable is in effect while
1286 its initializer is parsed. */
1287 d
= start_decl (declarator
, specs
, true,
1288 chainon (postfix_attrs
, all_prefix_attrs
));
1290 d
= error_mark_node
;
1291 start_init (d
, asm_name
, global_bindings_p ());
1292 init_loc
= c_parser_peek_token (parser
)->location
;
1293 init
= c_parser_initializer (parser
);
1295 if (d
!= error_mark_node
)
1297 maybe_warn_string_init (TREE_TYPE (d
), init
);
1298 finish_decl (d
, init_loc
, init
.value
,
1299 init
.original_type
, asm_name
);
1304 tree d
= start_decl (declarator
, specs
, false,
1305 chainon (postfix_attrs
,
1308 finish_decl (d
, UNKNOWN_LOCATION
, NULL_TREE
,
1309 NULL_TREE
, asm_name
);
1311 if (c_parser_next_token_is (parser
, CPP_COMMA
))
1313 c_parser_consume_token (parser
);
1314 if (c_parser_next_token_is_keyword (parser
, RID_ATTRIBUTE
))
1315 all_prefix_attrs
= chainon (c_parser_attributes (parser
),
1318 all_prefix_attrs
= prefix_attrs
;
1321 else if (c_parser_next_token_is (parser
, CPP_SEMICOLON
))
1323 c_parser_consume_token (parser
);
1328 c_parser_error (parser
, "expected %<,%> or %<;%>");
1329 c_parser_skip_to_end_of_block_or_statement (parser
);
1335 c_parser_error (parser
, "expected %<=%>, %<,%>, %<;%>, "
1336 "%<asm%> or %<__attribute__%>");
1337 c_parser_skip_to_end_of_block_or_statement (parser
);
1340 /* Function definition (nested or otherwise). */
1343 pedwarn (here
, OPT_pedantic
, "ISO C forbids nested functions");
1344 c_push_function_context ();
1346 if (!start_function (specs
, declarator
, all_prefix_attrs
))
1348 /* This can appear in many cases looking nothing like a
1349 function definition, so we don't give a more specific
1350 error suggesting there was one. */
1351 c_parser_error (parser
, "expected %<=%>, %<,%>, %<;%>, %<asm%> "
1352 "or %<__attribute__%>");
1354 c_pop_function_context ();
1357 /* Parse old-style parameter declarations. ??? Attributes are
1358 not allowed to start declaration specifiers here because of a
1359 syntax conflict between a function declaration with attribute
1360 suffix and a function definition with an attribute prefix on
1361 first old-style parameter declaration. Following the old
1362 parser, they are not accepted on subsequent old-style
1363 parameter declarations either. However, there is no
1364 ambiguity after the first declaration, nor indeed on the
1365 first as long as we don't allow postfix attributes after a
1366 declarator with a nonempty identifier list in a definition;
1367 and postfix attributes have never been accepted here in
1368 function definitions either. */
1369 while (c_parser_next_token_is_not (parser
, CPP_EOF
)
1370 && c_parser_next_token_is_not (parser
, CPP_OPEN_BRACE
))
1371 c_parser_declaration_or_fndef (parser
, false, false, false,
1373 store_parm_decls ();
1374 DECL_STRUCT_FUNCTION (current_function_decl
)->function_start_locus
1375 = c_parser_peek_token (parser
)->location
;
1376 fnbody
= c_parser_compound_statement (parser
);
1379 tree decl
= current_function_decl
;
1380 /* Mark nested functions as needing static-chain initially.
1381 lower_nested_functions will recompute it but the
1382 DECL_STATIC_CHAIN flag is also used before that happens,
1383 by initializer_constant_valid_p. See gcc.dg/nested-fn-2.c. */
1384 DECL_STATIC_CHAIN (decl
) = 1;
1387 c_pop_function_context ();
1388 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl
), DECL_EXPR
, decl
));
1399 /* Parse an asm-definition (asm() outside a function body). This is a
1407 c_parser_asm_definition (c_parser
*parser
)
1409 tree asm_str
= c_parser_simple_asm_expr (parser
);
1411 cgraph_add_asm_node (asm_str
);
1412 c_parser_skip_until_found (parser
, CPP_SEMICOLON
, "expected %<;%>");
1415 /* Parse a static assertion (C1X N1425 6.7.10).
1417 static_assert-declaration:
1418 static_assert-declaration-no-semi ;
1422 c_parser_static_assert_declaration (c_parser
*parser
)
1424 c_parser_static_assert_declaration_no_semi (parser
);
1426 || !c_parser_require (parser
, CPP_SEMICOLON
, "expected %<;%>"))
1427 c_parser_skip_to_end_of_block_or_statement (parser
);
1430 /* Parse a static assertion (C1X N1425 6.7.10), without the trailing
1433 static_assert-declaration-no-semi:
1434 _Static_assert ( constant-expression , string-literal )
1438 c_parser_static_assert_declaration_no_semi (c_parser
*parser
)
1440 location_t assert_loc
, value_loc
;
1444 gcc_assert (c_parser_next_token_is_keyword (parser
, RID_STATIC_ASSERT
));
1445 assert_loc
= c_parser_peek_token (parser
)->location
;
1449 pedwarn (assert_loc
, OPT_pedantic
,
1450 "ISO C99 does not support %<_Static_assert%>");
1452 pedwarn (assert_loc
, OPT_pedantic
,
1453 "ISO C90 does not support %<_Static_assert%>");
1455 c_parser_consume_token (parser
);
1456 if (!c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
1458 value_loc
= c_parser_peek_token (parser
)->location
;
1459 value
= c_parser_expr_no_commas (parser
, NULL
).value
;
1460 parser
->lex_untranslated_string
= true;
1461 if (!c_parser_require (parser
, CPP_COMMA
, "expected %<,%>"))
1463 parser
->lex_untranslated_string
= false;
1466 switch (c_parser_peek_token (parser
)->type
)
1472 case CPP_UTF8STRING
:
1473 string
= c_parser_peek_token (parser
)->value
;
1474 c_parser_consume_token (parser
);
1475 parser
->lex_untranslated_string
= false;
1478 c_parser_error (parser
, "expected string literal");
1479 parser
->lex_untranslated_string
= false;
1482 c_parser_require (parser
, CPP_CLOSE_PAREN
, "expected %<)%>");
1484 if (!INTEGRAL_TYPE_P (TREE_TYPE (value
)))
1486 error_at (value_loc
, "expression in static assertion is not an integer");
1489 if (TREE_CODE (value
) != INTEGER_CST
)
1491 value
= c_fully_fold (value
, false, NULL
);
1492 if (TREE_CODE (value
) == INTEGER_CST
)
1493 pedwarn (value_loc
, OPT_pedantic
, "expression in static assertion "
1494 "is not an integer constant expression");
1496 if (TREE_CODE (value
) != INTEGER_CST
)
1498 error_at (value_loc
, "expression in static assertion is not constant");
1501 constant_expression_warning (value
);
1502 if (integer_zerop (value
))
1503 error_at (assert_loc
, "static assertion failed: %E", string
);
1506 /* Parse some declaration specifiers (possibly none) (C90 6.5, C99
1507 6.7), adding them to SPECS (which may already include some).
1508 Storage class specifiers are accepted iff SCSPEC_OK; type
1509 specifiers are accepted iff TYPESPEC_OK; attributes are accepted at
1510 the start iff START_ATTR_OK.
1512 declaration-specifiers:
1513 storage-class-specifier declaration-specifiers[opt]
1514 type-specifier declaration-specifiers[opt]
1515 type-qualifier declaration-specifiers[opt]
1516 function-specifier declaration-specifiers[opt]
1518 Function specifiers (inline) are from C99, and are currently
1519 handled as storage class specifiers, as is __thread.
1521 C90 6.5.1, C99 6.7.1:
1522 storage-class-specifier:
1533 C90 6.5.2, C99 6.7.2:
1546 [_Imaginary removed in C99 TC2]
1547 struct-or-union-specifier
1551 (_Bool and _Complex are new in C99.)
1553 C90 6.5.3, C99 6.7.3:
1559 address-space-qualifier
1561 (restrict is new in C99.)
1565 declaration-specifiers:
1566 attributes declaration-specifiers[opt]
1572 identifier recognized by the target
1574 storage-class-specifier:
1587 (_Fract, _Accum, and _Sat are new from ISO/IEC DTR 18037:
1588 http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1169.pdf)
1593 class-name objc-protocol-refs[opt]
1594 typedef-name objc-protocol-refs
1599 c_parser_declspecs (c_parser
*parser
, struct c_declspecs
*specs
,
1600 bool scspec_ok
, bool typespec_ok
, bool start_attr_ok
)
1602 bool attrs_ok
= start_attr_ok
;
1603 bool seen_type
= specs
->type_seen_p
;
1604 while (c_parser_next_token_is (parser
, CPP_NAME
)
1605 || c_parser_next_token_is (parser
, CPP_KEYWORD
)
1606 || (c_dialect_objc () && c_parser_next_token_is (parser
, CPP_LESS
)))
1608 struct c_typespec t
;
1610 location_t loc
= c_parser_peek_token (parser
)->location
;
1611 if (c_parser_next_token_is (parser
, CPP_NAME
))
1613 tree value
= c_parser_peek_token (parser
)->value
;
1614 c_id_kind kind
= c_parser_peek_token (parser
)->id_kind
;
1616 if (kind
== C_ID_ADDRSPACE
)
1619 = c_parser_peek_token (parser
)->keyword
- RID_FIRST_ADDR_SPACE
;
1620 declspecs_add_addrspace (specs
, as
);
1621 c_parser_consume_token (parser
);
1626 /* This finishes the specifiers unless a type name is OK, it
1627 is declared as a type name and a type name hasn't yet
1629 if (!typespec_ok
|| seen_type
1630 || (kind
!= C_ID_TYPENAME
&& kind
!= C_ID_CLASSNAME
))
1632 c_parser_consume_token (parser
);
1635 if (kind
== C_ID_TYPENAME
1636 && (!c_dialect_objc ()
1637 || c_parser_next_token_is_not (parser
, CPP_LESS
)))
1639 t
.kind
= ctsk_typedef
;
1640 /* For a typedef name, record the meaning, not the name.
1641 In case of 'foo foo, bar;'. */
1642 t
.spec
= lookup_name (value
);
1644 t
.expr_const_operands
= true;
1648 tree proto
= NULL_TREE
;
1649 gcc_assert (c_dialect_objc ());
1651 if (c_parser_next_token_is (parser
, CPP_LESS
))
1652 proto
= c_parser_objc_protocol_refs (parser
);
1653 t
.spec
= objc_get_protocol_qualified_type (value
, proto
);
1655 t
.expr_const_operands
= true;
1657 declspecs_add_type (loc
, specs
, t
);
1660 if (c_parser_next_token_is (parser
, CPP_LESS
))
1662 /* Make "<SomeProtocol>" equivalent to "id <SomeProtocol>" -
1663 nisse@lysator.liu.se. */
1665 gcc_assert (c_dialect_objc ());
1666 if (!typespec_ok
|| seen_type
)
1668 proto
= c_parser_objc_protocol_refs (parser
);
1670 t
.spec
= objc_get_protocol_qualified_type (NULL_TREE
, proto
);
1672 t
.expr_const_operands
= true;
1673 declspecs_add_type (loc
, specs
, t
);
1676 gcc_assert (c_parser_next_token_is (parser
, CPP_KEYWORD
));
1677 switch (c_parser_peek_token (parser
)->keyword
)
1689 /* TODO: Distinguish between function specifiers (inline)
1690 and storage class specifiers, either here or in
1691 declspecs_add_scspec. */
1692 declspecs_add_scspec (specs
, c_parser_peek_token (parser
)->value
);
1693 c_parser_consume_token (parser
);
1717 if (c_dialect_objc ())
1718 parser
->objc_need_raw_identifier
= true;
1719 t
.kind
= ctsk_resword
;
1720 t
.spec
= c_parser_peek_token (parser
)->value
;
1722 t
.expr_const_operands
= true;
1723 declspecs_add_type (loc
, specs
, t
);
1724 c_parser_consume_token (parser
);
1731 t
= c_parser_enum_specifier (parser
);
1732 declspecs_add_type (loc
, specs
, t
);
1740 t
= c_parser_struct_or_union_specifier (parser
);
1741 invoke_plugin_callbacks (PLUGIN_FINISH_TYPE
, t
.spec
);
1742 declspecs_add_type (loc
, specs
, t
);
1745 /* ??? The old parser rejected typeof after other type
1746 specifiers, but is a syntax error the best way of
1748 if (!typespec_ok
|| seen_type
)
1752 t
= c_parser_typeof_specifier (parser
);
1753 declspecs_add_type (loc
, specs
, t
);
1759 declspecs_add_qual (specs
, c_parser_peek_token (parser
)->value
);
1760 c_parser_consume_token (parser
);
1765 attrs
= c_parser_attributes (parser
);
1766 declspecs_add_attrs (specs
, attrs
);
1775 /* Parse an enum specifier (C90 6.5.2.2, C99 6.7.2.2).
1778 enum attributes[opt] identifier[opt] { enumerator-list } attributes[opt]
1779 enum attributes[opt] identifier[opt] { enumerator-list , } attributes[opt]
1780 enum attributes[opt] identifier
1782 The form with trailing comma is new in C99. The forms with
1783 attributes are GNU extensions. In GNU C, we accept any expression
1784 without commas in the syntax (assignment expressions, not just
1785 conditional expressions); assignment expressions will be diagnosed
1790 enumerator-list , enumerator
1793 enumeration-constant
1794 enumeration-constant = constant-expression
1797 static struct c_typespec
1798 c_parser_enum_specifier (c_parser
*parser
)
1800 struct c_typespec ret
;
1802 tree ident
= NULL_TREE
;
1803 location_t enum_loc
;
1804 location_t ident_loc
= UNKNOWN_LOCATION
; /* Quiet warning. */
1805 gcc_assert (c_parser_next_token_is_keyword (parser
, RID_ENUM
));
1806 enum_loc
= c_parser_peek_token (parser
)->location
;
1807 c_parser_consume_token (parser
);
1808 attrs
= c_parser_attributes (parser
);
1809 enum_loc
= c_parser_peek_token (parser
)->location
;
1810 /* Set the location in case we create a decl now. */
1811 c_parser_set_source_position_from_token (c_parser_peek_token (parser
));
1812 if (c_parser_next_token_is (parser
, CPP_NAME
))
1814 ident
= c_parser_peek_token (parser
)->value
;
1815 ident_loc
= c_parser_peek_token (parser
)->location
;
1816 enum_loc
= ident_loc
;
1817 c_parser_consume_token (parser
);
1819 if (c_parser_next_token_is (parser
, CPP_OPEN_BRACE
))
1821 /* Parse an enum definition. */
1822 struct c_enum_contents the_enum
;
1823 tree type
= start_enum (enum_loc
, &the_enum
, ident
);
1825 /* We chain the enumerators in reverse order, then put them in
1826 forward order at the end. */
1827 tree values
= NULL_TREE
;
1828 c_parser_consume_token (parser
);
1836 location_t comma_loc
= UNKNOWN_LOCATION
; /* Quiet warning. */
1837 location_t value_loc
;
1838 if (c_parser_next_token_is_not (parser
, CPP_NAME
))
1840 c_parser_error (parser
, "expected identifier");
1841 c_parser_skip_until_found (parser
, CPP_CLOSE_BRACE
, NULL
);
1842 values
= error_mark_node
;
1845 token
= c_parser_peek_token (parser
);
1846 enum_id
= token
->value
;
1847 /* Set the location in case we create a decl now. */
1848 c_parser_set_source_position_from_token (token
);
1849 value_loc
= token
->location
;
1850 c_parser_consume_token (parser
);
1851 if (c_parser_next_token_is (parser
, CPP_EQ
))
1853 c_parser_consume_token (parser
);
1854 value_loc
= c_parser_peek_token (parser
)->location
;
1855 enum_value
= c_parser_expr_no_commas (parser
, NULL
).value
;
1858 enum_value
= NULL_TREE
;
1859 enum_decl
= build_enumerator (value_loc
,
1860 &the_enum
, enum_id
, enum_value
);
1861 TREE_CHAIN (enum_decl
) = values
;
1864 if (c_parser_next_token_is (parser
, CPP_COMMA
))
1866 comma_loc
= c_parser_peek_token (parser
)->location
;
1868 c_parser_consume_token (parser
);
1870 if (c_parser_next_token_is (parser
, CPP_CLOSE_BRACE
))
1872 if (seen_comma
&& !flag_isoc99
)
1873 pedwarn (comma_loc
, OPT_pedantic
, "comma at end of enumerator list");
1874 c_parser_consume_token (parser
);
1879 c_parser_error (parser
, "expected %<,%> or %<}%>");
1880 c_parser_skip_until_found (parser
, CPP_CLOSE_BRACE
, NULL
);
1881 values
= error_mark_node
;
1885 postfix_attrs
= c_parser_attributes (parser
);
1886 ret
.spec
= finish_enum (type
, nreverse (values
),
1887 chainon (attrs
, postfix_attrs
));
1888 ret
.kind
= ctsk_tagdef
;
1889 ret
.expr
= NULL_TREE
;
1890 ret
.expr_const_operands
= true;
1895 c_parser_error (parser
, "expected %<{%>");
1896 ret
.spec
= error_mark_node
;
1897 ret
.kind
= ctsk_tagref
;
1898 ret
.expr
= NULL_TREE
;
1899 ret
.expr_const_operands
= true;
1902 ret
= parser_xref_tag (ident_loc
, ENUMERAL_TYPE
, ident
);
1903 /* In ISO C, enumerated types can be referred to only if already
1905 if (pedantic
&& !COMPLETE_TYPE_P (ret
.spec
))
1908 pedwarn (enum_loc
, OPT_pedantic
,
1909 "ISO C forbids forward references to %<enum%> types");
1914 /* Parse a struct or union specifier (C90 6.5.2.1, C99 6.7.2.1).
1916 struct-or-union-specifier:
1917 struct-or-union attributes[opt] identifier[opt]
1918 { struct-contents } attributes[opt]
1919 struct-or-union attributes[opt] identifier
1922 struct-declaration-list
1924 struct-declaration-list:
1925 struct-declaration ;
1926 struct-declaration-list struct-declaration ;
1933 struct-declaration-list struct-declaration
1935 struct-declaration-list:
1936 struct-declaration-list ;
1939 (Note that in the syntax here, unlike that in ISO C, the semicolons
1940 are included here rather than in struct-declaration, in order to
1941 describe the syntax with extra semicolons and missing semicolon at
1946 struct-declaration-list:
1947 @defs ( class-name )
1949 (Note this does not include a trailing semicolon, but can be
1950 followed by further declarations, and gets a pedwarn-if-pedantic
1951 when followed by a semicolon.) */
1953 static struct c_typespec
1954 c_parser_struct_or_union_specifier (c_parser
*parser
)
1956 struct c_typespec ret
;
1958 tree ident
= NULL_TREE
;
1959 location_t struct_loc
;
1960 location_t ident_loc
= UNKNOWN_LOCATION
;
1961 enum tree_code code
;
1962 switch (c_parser_peek_token (parser
)->keyword
)
1973 struct_loc
= c_parser_peek_token (parser
)->location
;
1974 c_parser_consume_token (parser
);
1975 attrs
= c_parser_attributes (parser
);
1977 /* Set the location in case we create a decl now. */
1978 c_parser_set_source_position_from_token (c_parser_peek_token (parser
));
1980 if (c_parser_next_token_is (parser
, CPP_NAME
))
1982 ident
= c_parser_peek_token (parser
)->value
;
1983 ident_loc
= c_parser_peek_token (parser
)->location
;
1984 struct_loc
= ident_loc
;
1985 c_parser_consume_token (parser
);
1987 if (c_parser_next_token_is (parser
, CPP_OPEN_BRACE
))
1989 /* Parse a struct or union definition. Start the scope of the
1990 tag before parsing components. */
1991 struct c_struct_parse_info
*struct_info
;
1992 tree type
= start_struct (struct_loc
, code
, ident
, &struct_info
);
1994 /* We chain the components in reverse order, then put them in
1995 forward order at the end. Each struct-declaration may
1996 declare multiple components (comma-separated), so we must use
1997 chainon to join them, although when parsing each
1998 struct-declaration we can use TREE_CHAIN directly.
2000 The theory behind all this is that there will be more
2001 semicolon separated fields than comma separated fields, and
2002 so we'll be minimizing the number of node traversals required
2004 tree contents
= NULL_TREE
;
2005 c_parser_consume_token (parser
);
2006 /* Handle the Objective-C @defs construct,
2007 e.g. foo(sizeof(struct{ @defs(ClassName) }));. */
2008 if (c_parser_next_token_is_keyword (parser
, RID_AT_DEFS
))
2011 gcc_assert (c_dialect_objc ());
2012 c_parser_consume_token (parser
);
2013 if (!c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
2015 if (c_parser_next_token_is (parser
, CPP_NAME
)
2016 && c_parser_peek_token (parser
)->id_kind
== C_ID_CLASSNAME
)
2018 name
= c_parser_peek_token (parser
)->value
;
2019 c_parser_consume_token (parser
);
2023 c_parser_error (parser
, "expected class name");
2024 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, NULL
);
2027 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
,
2029 contents
= nreverse (objc_get_class_ivars (name
));
2032 /* Parse the struct-declarations and semicolons. Problems with
2033 semicolons are diagnosed here; empty structures are diagnosed
2038 /* Parse any stray semicolon. */
2039 if (c_parser_next_token_is (parser
, CPP_SEMICOLON
))
2041 pedwarn (c_parser_peek_token (parser
)->location
, OPT_pedantic
,
2042 "extra semicolon in struct or union specified");
2043 c_parser_consume_token (parser
);
2046 /* Stop if at the end of the struct or union contents. */
2047 if (c_parser_next_token_is (parser
, CPP_CLOSE_BRACE
))
2049 c_parser_consume_token (parser
);
2052 /* Accept #pragmas at struct scope. */
2053 if (c_parser_next_token_is (parser
, CPP_PRAGMA
))
2055 c_parser_pragma (parser
, pragma_external
);
2058 /* Parse some comma-separated declarations, but not the
2059 trailing semicolon if any. */
2060 decls
= c_parser_struct_declaration (parser
);
2061 contents
= chainon (decls
, contents
);
2062 /* If no semicolon follows, either we have a parse error or
2063 are at the end of the struct or union and should
2065 if (c_parser_next_token_is (parser
, CPP_SEMICOLON
))
2066 c_parser_consume_token (parser
);
2069 if (c_parser_next_token_is (parser
, CPP_CLOSE_BRACE
))
2070 pedwarn (c_parser_peek_token (parser
)->location
, 0,
2071 "no semicolon at end of struct or union");
2074 c_parser_error (parser
, "expected %<;%>");
2075 c_parser_skip_until_found (parser
, CPP_CLOSE_BRACE
, NULL
);
2080 postfix_attrs
= c_parser_attributes (parser
);
2081 ret
.spec
= finish_struct (struct_loc
, type
, nreverse (contents
),
2082 chainon (attrs
, postfix_attrs
), struct_info
);
2083 ret
.kind
= ctsk_tagdef
;
2084 ret
.expr
= NULL_TREE
;
2085 ret
.expr_const_operands
= true;
2090 c_parser_error (parser
, "expected %<{%>");
2091 ret
.spec
= error_mark_node
;
2092 ret
.kind
= ctsk_tagref
;
2093 ret
.expr
= NULL_TREE
;
2094 ret
.expr_const_operands
= true;
2097 ret
= parser_xref_tag (ident_loc
, code
, ident
);
2101 /* Parse a struct-declaration (C90 6.5.2.1, C99 6.7.2.1), *without*
2102 the trailing semicolon.
2105 specifier-qualifier-list struct-declarator-list
2106 static_assert-declaration-no-semi
2108 specifier-qualifier-list:
2109 type-specifier specifier-qualifier-list[opt]
2110 type-qualifier specifier-qualifier-list[opt]
2111 attributes specifier-qualifier-list[opt]
2113 struct-declarator-list:
2115 struct-declarator-list , attributes[opt] struct-declarator
2118 declarator attributes[opt]
2119 declarator[opt] : constant-expression attributes[opt]
2124 __extension__ struct-declaration
2125 specifier-qualifier-list
2127 Unlike the ISO C syntax, semicolons are handled elsewhere. The use
2128 of attributes where shown is a GNU extension. In GNU C, we accept
2129 any expression without commas in the syntax (assignment
2130 expressions, not just conditional expressions); assignment
2131 expressions will be diagnosed as non-constant. */
2134 c_parser_struct_declaration (c_parser
*parser
)
2136 struct c_declspecs
*specs
;
2138 tree all_prefix_attrs
;
2140 location_t decl_loc
;
2141 if (c_parser_next_token_is_keyword (parser
, RID_EXTENSION
))
2145 ext
= disable_extension_diagnostics ();
2146 c_parser_consume_token (parser
);
2147 decl
= c_parser_struct_declaration (parser
);
2148 restore_extension_diagnostics (ext
);
2151 if (c_parser_next_token_is_keyword (parser
, RID_STATIC_ASSERT
))
2153 c_parser_static_assert_declaration_no_semi (parser
);
2156 specs
= build_null_declspecs ();
2157 decl_loc
= c_parser_peek_token (parser
)->location
;
2158 c_parser_declspecs (parser
, specs
, false, true, true);
2161 if (!specs
->declspecs_seen_p
)
2163 c_parser_error (parser
, "expected specifier-qualifier-list");
2166 finish_declspecs (specs
);
2167 if (c_parser_next_token_is (parser
, CPP_SEMICOLON
))
2170 if (!specs
->type_seen_p
)
2172 pedwarn (decl_loc
, OPT_pedantic
,
2173 "ISO C forbids member declarations with no members");
2174 shadow_tag_warned (specs
, pedantic
);
2179 /* Support for unnamed structs or unions as members of
2180 structs or unions (which is [a] useful and [b] supports
2184 ret
= grokfield (c_parser_peek_token (parser
)->location
,
2185 build_id_declarator (NULL_TREE
), specs
,
2188 decl_attributes (&ret
, attrs
, 0);
2192 pending_xref_error ();
2193 prefix_attrs
= specs
->attrs
;
2194 all_prefix_attrs
= prefix_attrs
;
2195 specs
->attrs
= NULL_TREE
;
2199 /* Declaring one or more declarators or un-named bit-fields. */
2200 struct c_declarator
*declarator
;
2202 if (c_parser_next_token_is (parser
, CPP_COLON
))
2203 declarator
= build_id_declarator (NULL_TREE
);
2205 declarator
= c_parser_declarator (parser
, specs
->type_seen_p
,
2206 C_DTR_NORMAL
, &dummy
);
2207 if (declarator
== NULL
)
2209 c_parser_skip_to_end_of_block_or_statement (parser
);
2212 if (c_parser_next_token_is (parser
, CPP_COLON
)
2213 || c_parser_next_token_is (parser
, CPP_COMMA
)
2214 || c_parser_next_token_is (parser
, CPP_SEMICOLON
)
2215 || c_parser_next_token_is (parser
, CPP_CLOSE_BRACE
)
2216 || c_parser_next_token_is_keyword (parser
, RID_ATTRIBUTE
))
2218 tree postfix_attrs
= NULL_TREE
;
2219 tree width
= NULL_TREE
;
2221 if (c_parser_next_token_is (parser
, CPP_COLON
))
2223 c_parser_consume_token (parser
);
2224 width
= c_parser_expr_no_commas (parser
, NULL
).value
;
2226 if (c_parser_next_token_is_keyword (parser
, RID_ATTRIBUTE
))
2227 postfix_attrs
= c_parser_attributes (parser
);
2228 d
= grokfield (c_parser_peek_token (parser
)->location
,
2229 declarator
, specs
, width
, &all_prefix_attrs
);
2230 decl_attributes (&d
, chainon (postfix_attrs
,
2231 all_prefix_attrs
), 0);
2232 TREE_CHAIN (d
) = decls
;
2234 if (c_parser_next_token_is_keyword (parser
, RID_ATTRIBUTE
))
2235 all_prefix_attrs
= chainon (c_parser_attributes (parser
),
2238 all_prefix_attrs
= prefix_attrs
;
2239 if (c_parser_next_token_is (parser
, CPP_COMMA
))
2240 c_parser_consume_token (parser
);
2241 else if (c_parser_next_token_is (parser
, CPP_SEMICOLON
)
2242 || c_parser_next_token_is (parser
, CPP_CLOSE_BRACE
))
2244 /* Semicolon consumed in caller. */
2249 c_parser_error (parser
, "expected %<,%>, %<;%> or %<}%>");
2255 c_parser_error (parser
,
2256 "expected %<:%>, %<,%>, %<;%>, %<}%> or "
2257 "%<__attribute__%>");
2264 /* Parse a typeof specifier (a GNU extension).
2267 typeof ( expression )
2268 typeof ( type-name )
2271 static struct c_typespec
2272 c_parser_typeof_specifier (c_parser
*parser
)
2274 struct c_typespec ret
;
2275 ret
.kind
= ctsk_typeof
;
2276 ret
.spec
= error_mark_node
;
2277 ret
.expr
= NULL_TREE
;
2278 ret
.expr_const_operands
= true;
2279 gcc_assert (c_parser_next_token_is_keyword (parser
, RID_TYPEOF
));
2280 c_parser_consume_token (parser
);
2281 c_inhibit_evaluation_warnings
++;
2283 if (!c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
2285 c_inhibit_evaluation_warnings
--;
2289 if (c_parser_next_token_starts_typename (parser
))
2291 struct c_type_name
*type
= c_parser_type_name (parser
);
2292 c_inhibit_evaluation_warnings
--;
2296 ret
.spec
= groktypename (type
, &ret
.expr
, &ret
.expr_const_operands
);
2297 pop_maybe_used (variably_modified_type_p (ret
.spec
, NULL_TREE
));
2303 location_t here
= c_parser_peek_token (parser
)->location
;
2304 struct c_expr expr
= c_parser_expression (parser
);
2305 c_inhibit_evaluation_warnings
--;
2307 if (TREE_CODE (expr
.value
) == COMPONENT_REF
2308 && DECL_C_BIT_FIELD (TREE_OPERAND (expr
.value
, 1)))
2309 error_at (here
, "%<typeof%> applied to a bit-field");
2310 mark_exp_read (expr
.value
);
2311 ret
.spec
= TREE_TYPE (expr
.value
);
2312 was_vm
= variably_modified_type_p (ret
.spec
, NULL_TREE
);
2313 /* This is returned with the type so that when the type is
2314 evaluated, this can be evaluated. */
2316 ret
.expr
= c_fully_fold (expr
.value
, false, &ret
.expr_const_operands
);
2317 pop_maybe_used (was_vm
);
2319 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, "expected %<)%>");
2323 /* Parse a declarator, possibly an abstract declarator (C90 6.5.4,
2324 6.5.5, C99 6.7.5, 6.7.6). If TYPE_SEEN_P then a typedef name may
2325 be redeclared; otherwise it may not. KIND indicates which kind of
2326 declarator is wanted. Returns a valid declarator except in the
2327 case of a syntax error in which case NULL is returned. *SEEN_ID is
2328 set to true if an identifier being declared is seen; this is used
2329 to diagnose bad forms of abstract array declarators and to
2330 determine whether an identifier list is syntactically permitted.
2333 pointer[opt] direct-declarator
2337 ( attributes[opt] declarator )
2338 direct-declarator array-declarator
2339 direct-declarator ( parameter-type-list )
2340 direct-declarator ( identifier-list[opt] )
2343 * type-qualifier-list[opt]
2344 * type-qualifier-list[opt] pointer
2346 type-qualifier-list:
2349 type-qualifier-list type-qualifier
2350 type-qualifier-list attributes
2352 parameter-type-list:
2354 parameter-list , ...
2357 parameter-declaration
2358 parameter-list , parameter-declaration
2360 parameter-declaration:
2361 declaration-specifiers declarator attributes[opt]
2362 declaration-specifiers abstract-declarator[opt] attributes[opt]
2366 identifier-list , identifier
2368 abstract-declarator:
2370 pointer[opt] direct-abstract-declarator
2372 direct-abstract-declarator:
2373 ( attributes[opt] abstract-declarator )
2374 direct-abstract-declarator[opt] array-declarator
2375 direct-abstract-declarator[opt] ( parameter-type-list[opt] )
2380 direct-declarator ( parameter-forward-declarations
2381 parameter-type-list[opt] )
2383 direct-abstract-declarator:
2384 direct-abstract-declarator[opt] ( parameter-forward-declarations
2385 parameter-type-list[opt] )
2387 parameter-forward-declarations:
2389 parameter-forward-declarations parameter-list ;
2391 The uses of attributes shown above are GNU extensions.
2393 Some forms of array declarator are not included in C99 in the
2394 syntax for abstract declarators; these are disallowed elsewhere.
2395 This may be a defect (DR#289).
2397 This function also accepts an omitted abstract declarator as being
2398 an abstract declarator, although not part of the formal syntax. */
2400 static struct c_declarator
*
2401 c_parser_declarator (c_parser
*parser
, bool type_seen_p
, c_dtr_syn kind
,
2404 /* Parse any initial pointer part. */
2405 if (c_parser_next_token_is (parser
, CPP_MULT
))
2407 struct c_declspecs
*quals_attrs
= build_null_declspecs ();
2408 struct c_declarator
*inner
;
2409 c_parser_consume_token (parser
);
2410 c_parser_declspecs (parser
, quals_attrs
, false, false, true);
2411 inner
= c_parser_declarator (parser
, type_seen_p
, kind
, seen_id
);
2415 return make_pointer_declarator (quals_attrs
, inner
);
2417 /* Now we have a direct declarator, direct abstract declarator or
2418 nothing (which counts as a direct abstract declarator here). */
2419 return c_parser_direct_declarator (parser
, type_seen_p
, kind
, seen_id
);
2422 /* Parse a direct declarator or direct abstract declarator; arguments
2423 as c_parser_declarator. */
2425 static struct c_declarator
*
2426 c_parser_direct_declarator (c_parser
*parser
, bool type_seen_p
, c_dtr_syn kind
,
2429 /* The direct declarator must start with an identifier (possibly
2430 omitted) or a parenthesized declarator (possibly abstract). In
2431 an ordinary declarator, initial parentheses must start a
2432 parenthesized declarator. In an abstract declarator or parameter
2433 declarator, they could start a parenthesized declarator or a
2434 parameter list. To tell which, the open parenthesis and any
2435 following attributes must be read. If a declaration specifier
2436 follows, then it is a parameter list; if the specifier is a
2437 typedef name, there might be an ambiguity about redeclaring it,
2438 which is resolved in the direction of treating it as a typedef
2439 name. If a close parenthesis follows, it is also an empty
2440 parameter list, as the syntax does not permit empty abstract
2441 declarators. Otherwise, it is a parenthesized declarator (in
2442 which case the analysis may be repeated inside it, recursively).
2444 ??? There is an ambiguity in a parameter declaration "int
2445 (__attribute__((foo)) x)", where x is not a typedef name: it
2446 could be an abstract declarator for a function, or declare x with
2447 parentheses. The proper resolution of this ambiguity needs
2448 documenting. At present we follow an accident of the old
2449 parser's implementation, whereby the first parameter must have
2450 some declaration specifiers other than just attributes. Thus as
2451 a parameter declaration it is treated as a parenthesized
2452 parameter named x, and as an abstract declarator it is
2455 ??? Also following the old parser, attributes inside an empty
2456 parameter list are ignored, making it a list not yielding a
2457 prototype, rather than giving an error or making it have one
2458 parameter with implicit type int.
2460 ??? Also following the old parser, typedef names may be
2461 redeclared in declarators, but not Objective-C class names. */
2463 if (kind
!= C_DTR_ABSTRACT
2464 && c_parser_next_token_is (parser
, CPP_NAME
)
2466 && c_parser_peek_token (parser
)->id_kind
== C_ID_TYPENAME
)
2467 || c_parser_peek_token (parser
)->id_kind
== C_ID_ID
))
2469 struct c_declarator
*inner
2470 = build_id_declarator (c_parser_peek_token (parser
)->value
);
2472 inner
->id_loc
= c_parser_peek_token (parser
)->location
;
2473 c_parser_consume_token (parser
);
2474 return c_parser_direct_declarator_inner (parser
, *seen_id
, inner
);
2477 if (kind
!= C_DTR_NORMAL
2478 && c_parser_next_token_is (parser
, CPP_OPEN_SQUARE
))
2480 struct c_declarator
*inner
= build_id_declarator (NULL_TREE
);
2481 return c_parser_direct_declarator_inner (parser
, *seen_id
, inner
);
2484 /* Either we are at the end of an abstract declarator, or we have
2487 if (c_parser_next_token_is (parser
, CPP_OPEN_PAREN
))
2490 struct c_declarator
*inner
;
2491 c_parser_consume_token (parser
);
2492 attrs
= c_parser_attributes (parser
);
2493 if (kind
!= C_DTR_NORMAL
2494 && (c_parser_next_token_starts_declspecs (parser
)
2495 || c_parser_next_token_is (parser
, CPP_CLOSE_PAREN
)))
2497 struct c_arg_info
*args
2498 = c_parser_parms_declarator (parser
, kind
== C_DTR_NORMAL
,
2505 = build_function_declarator (args
,
2506 build_id_declarator (NULL_TREE
));
2507 return c_parser_direct_declarator_inner (parser
, *seen_id
,
2511 /* A parenthesized declarator. */
2512 inner
= c_parser_declarator (parser
, type_seen_p
, kind
, seen_id
);
2513 if (inner
!= NULL
&& attrs
!= NULL
)
2514 inner
= build_attrs_declarator (attrs
, inner
);
2515 if (c_parser_next_token_is (parser
, CPP_CLOSE_PAREN
))
2517 c_parser_consume_token (parser
);
2521 return c_parser_direct_declarator_inner (parser
, *seen_id
, inner
);
2525 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
,
2532 if (kind
== C_DTR_NORMAL
)
2534 c_parser_error (parser
, "expected identifier or %<(%>");
2538 return build_id_declarator (NULL_TREE
);
2542 /* Parse part of a direct declarator or direct abstract declarator,
2543 given that some (in INNER) has already been parsed; ID_PRESENT is
2544 true if an identifier is present, false for an abstract
2547 static struct c_declarator
*
2548 c_parser_direct_declarator_inner (c_parser
*parser
, bool id_present
,
2549 struct c_declarator
*inner
)
2551 /* Parse a sequence of array declarators and parameter lists. */
2552 if (c_parser_next_token_is (parser
, CPP_OPEN_SQUARE
))
2554 location_t brace_loc
= c_parser_peek_token (parser
)->location
;
2555 struct c_declarator
*declarator
;
2556 struct c_declspecs
*quals_attrs
= build_null_declspecs ();
2560 c_parser_consume_token (parser
);
2561 c_parser_declspecs (parser
, quals_attrs
, false, false, true);
2562 static_seen
= c_parser_next_token_is_keyword (parser
, RID_STATIC
);
2564 c_parser_consume_token (parser
);
2565 if (static_seen
&& !quals_attrs
->declspecs_seen_p
)
2566 c_parser_declspecs (parser
, quals_attrs
, false, false, true);
2567 if (!quals_attrs
->declspecs_seen_p
)
2569 /* If "static" is present, there must be an array dimension.
2570 Otherwise, there may be a dimension, "*", or no
2575 dimen
= c_parser_expr_no_commas (parser
, NULL
).value
;
2579 if (c_parser_next_token_is (parser
, CPP_CLOSE_SQUARE
))
2584 else if (c_parser_next_token_is (parser
, CPP_MULT
))
2586 if (c_parser_peek_2nd_token (parser
)->type
== CPP_CLOSE_SQUARE
)
2590 c_parser_consume_token (parser
);
2595 dimen
= c_parser_expr_no_commas (parser
, NULL
).value
;
2601 dimen
= c_parser_expr_no_commas (parser
, NULL
).value
;
2604 if (c_parser_next_token_is (parser
, CPP_CLOSE_SQUARE
))
2605 c_parser_consume_token (parser
);
2608 c_parser_skip_until_found (parser
, CPP_CLOSE_SQUARE
,
2613 mark_exp_read (dimen
);
2614 declarator
= build_array_declarator (brace_loc
, dimen
, quals_attrs
,
2615 static_seen
, star_seen
);
2616 if (declarator
== NULL
)
2618 inner
= set_array_declarator_inner (declarator
, inner
);
2619 return c_parser_direct_declarator_inner (parser
, id_present
, inner
);
2621 else if (c_parser_next_token_is (parser
, CPP_OPEN_PAREN
))
2624 struct c_arg_info
*args
;
2625 c_parser_consume_token (parser
);
2626 attrs
= c_parser_attributes (parser
);
2627 args
= c_parser_parms_declarator (parser
, id_present
, attrs
);
2632 inner
= build_function_declarator (args
, inner
);
2633 return c_parser_direct_declarator_inner (parser
, id_present
, inner
);
2639 /* Parse a parameter list or identifier list, including the closing
2640 parenthesis but not the opening one. ATTRS are the attributes at
2641 the start of the list. ID_LIST_OK is true if an identifier list is
2642 acceptable; such a list must not have attributes at the start. */
2644 static struct c_arg_info
*
2645 c_parser_parms_declarator (c_parser
*parser
, bool id_list_ok
, tree attrs
)
2648 declare_parm_level ();
2649 /* If the list starts with an identifier, it is an identifier list.
2650 Otherwise, it is either a prototype list or an empty list. */
2653 && c_parser_next_token_is (parser
, CPP_NAME
)
2654 && c_parser_peek_token (parser
)->id_kind
== C_ID_ID
)
2656 tree list
= NULL_TREE
, *nextp
= &list
;
2657 while (c_parser_next_token_is (parser
, CPP_NAME
)
2658 && c_parser_peek_token (parser
)->id_kind
== C_ID_ID
)
2660 *nextp
= build_tree_list (NULL_TREE
,
2661 c_parser_peek_token (parser
)->value
);
2662 nextp
= & TREE_CHAIN (*nextp
);
2663 c_parser_consume_token (parser
);
2664 if (c_parser_next_token_is_not (parser
, CPP_COMMA
))
2666 c_parser_consume_token (parser
);
2667 if (c_parser_next_token_is (parser
, CPP_CLOSE_PAREN
))
2669 c_parser_error (parser
, "expected identifier");
2673 if (c_parser_next_token_is (parser
, CPP_CLOSE_PAREN
))
2675 struct c_arg_info
*ret
= XOBNEW (&parser_obstack
, struct c_arg_info
);
2680 ret
->pending_sizes
= 0;
2681 ret
->had_vla_unspec
= 0;
2682 c_parser_consume_token (parser
);
2688 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
,
2696 struct c_arg_info
*ret
= c_parser_parms_list_declarator (parser
, attrs
);
2702 /* Parse a parameter list (possibly empty), including the closing
2703 parenthesis but not the opening one. ATTRS are the attributes at
2704 the start of the list. */
2706 static struct c_arg_info
*
2707 c_parser_parms_list_declarator (c_parser
*parser
, tree attrs
)
2709 bool good_parm
= false;
2710 /* ??? Following the old parser, forward parameter declarations may
2711 use abstract declarators, and if no real parameter declarations
2712 follow the forward declarations then this is not diagnosed. Also
2713 note as above that attributes are ignored as the only contents of
2714 the parentheses, or as the only contents after forward
2716 if (c_parser_next_token_is (parser
, CPP_CLOSE_PAREN
))
2718 struct c_arg_info
*ret
= XOBNEW (&parser_obstack
, struct c_arg_info
);
2723 ret
->pending_sizes
= 0;
2724 ret
->had_vla_unspec
= 0;
2725 c_parser_consume_token (parser
);
2728 if (c_parser_next_token_is (parser
, CPP_ELLIPSIS
))
2730 struct c_arg_info
*ret
= XOBNEW (&parser_obstack
, struct c_arg_info
);
2734 ret
->pending_sizes
= 0;
2735 ret
->had_vla_unspec
= 0;
2736 /* Suppress -Wold-style-definition for this case. */
2737 ret
->types
= error_mark_node
;
2738 error_at (c_parser_peek_token (parser
)->location
,
2739 "ISO C requires a named argument before %<...%>");
2740 c_parser_consume_token (parser
);
2741 if (c_parser_next_token_is (parser
, CPP_CLOSE_PAREN
))
2743 c_parser_consume_token (parser
);
2748 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
,
2753 /* Nonempty list of parameters, either terminated with semicolon
2754 (forward declarations; recurse) or with close parenthesis (normal
2755 function) or with ", ... )" (variadic function). */
2758 /* Parse a parameter. */
2759 struct c_parm
*parm
= c_parser_parameter_declaration (parser
, attrs
);
2764 push_parm_decl (parm
);
2766 if (c_parser_next_token_is (parser
, CPP_SEMICOLON
))
2769 c_parser_consume_token (parser
);
2770 mark_forward_parm_decls ();
2771 new_attrs
= c_parser_attributes (parser
);
2772 return c_parser_parms_list_declarator (parser
, new_attrs
);
2774 if (c_parser_next_token_is (parser
, CPP_CLOSE_PAREN
))
2776 c_parser_consume_token (parser
);
2778 return get_parm_info (false);
2781 struct c_arg_info
*ret
2782 = XOBNEW (&parser_obstack
, struct c_arg_info
);
2787 ret
->pending_sizes
= 0;
2788 ret
->had_vla_unspec
= 0;
2792 if (!c_parser_require (parser
, CPP_COMMA
,
2793 "expected %<;%>, %<,%> or %<)%>"))
2795 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, NULL
);
2796 get_pending_sizes ();
2799 if (c_parser_next_token_is (parser
, CPP_ELLIPSIS
))
2801 c_parser_consume_token (parser
);
2802 if (c_parser_next_token_is (parser
, CPP_CLOSE_PAREN
))
2804 c_parser_consume_token (parser
);
2806 return get_parm_info (true);
2809 struct c_arg_info
*ret
2810 = XOBNEW (&parser_obstack
, struct c_arg_info
);
2815 ret
->pending_sizes
= 0;
2816 ret
->had_vla_unspec
= 0;
2822 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
,
2824 get_pending_sizes ();
2831 /* Parse a parameter declaration. ATTRS are the attributes at the
2832 start of the declaration if it is the first parameter. */
2834 static struct c_parm
*
2835 c_parser_parameter_declaration (c_parser
*parser
, tree attrs
)
2837 struct c_declspecs
*specs
;
2838 struct c_declarator
*declarator
;
2840 tree postfix_attrs
= NULL_TREE
;
2842 if (!c_parser_next_token_starts_declspecs (parser
))
2844 /* ??? In some Objective-C cases '...' isn't applicable so there
2845 should be a different message. */
2846 c_parser_error (parser
,
2847 "expected declaration specifiers or %<...%>");
2848 c_parser_skip_to_end_of_parameter (parser
);
2851 specs
= build_null_declspecs ();
2854 declspecs_add_attrs (specs
, attrs
);
2857 c_parser_declspecs (parser
, specs
, true, true, true);
2858 finish_declspecs (specs
);
2859 pending_xref_error ();
2860 prefix_attrs
= specs
->attrs
;
2861 specs
->attrs
= NULL_TREE
;
2862 declarator
= c_parser_declarator (parser
, specs
->type_seen_p
,
2863 C_DTR_PARM
, &dummy
);
2864 if (declarator
== NULL
)
2866 c_parser_skip_until_found (parser
, CPP_COMMA
, NULL
);
2869 if (c_parser_next_token_is_keyword (parser
, RID_ATTRIBUTE
))
2870 postfix_attrs
= c_parser_attributes (parser
);
2871 return build_c_parm (specs
, chainon (postfix_attrs
, prefix_attrs
),
2875 /* Parse a string literal in an asm expression. It should not be
2876 translated, and wide string literals are an error although
2877 permitted by the syntax. This is a GNU extension.
2882 ??? At present, following the old parser, the caller needs to have
2883 set lex_untranslated_string to 1. It would be better to follow the
2884 C++ parser rather than using this kludge. */
2887 c_parser_asm_string_literal (c_parser
*parser
)
2890 if (c_parser_next_token_is (parser
, CPP_STRING
))
2892 str
= c_parser_peek_token (parser
)->value
;
2893 c_parser_consume_token (parser
);
2895 else if (c_parser_next_token_is (parser
, CPP_WSTRING
))
2897 error_at (c_parser_peek_token (parser
)->location
,
2898 "wide string literal in %<asm%>");
2899 str
= build_string (1, "");
2900 c_parser_consume_token (parser
);
2904 c_parser_error (parser
, "expected string literal");
2910 /* Parse a simple asm expression. This is used in restricted
2911 contexts, where a full expression with inputs and outputs does not
2912 make sense. This is a GNU extension.
2915 asm ( asm-string-literal )
2919 c_parser_simple_asm_expr (c_parser
*parser
)
2922 gcc_assert (c_parser_next_token_is_keyword (parser
, RID_ASM
));
2923 /* ??? Follow the C++ parser rather than using the
2924 lex_untranslated_string kludge. */
2925 parser
->lex_untranslated_string
= true;
2926 c_parser_consume_token (parser
);
2927 if (!c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
2929 parser
->lex_untranslated_string
= false;
2932 str
= c_parser_asm_string_literal (parser
);
2933 parser
->lex_untranslated_string
= false;
2934 if (!c_parser_require (parser
, CPP_CLOSE_PAREN
, "expected %<)%>"))
2936 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, NULL
);
2942 /* Parse (possibly empty) attributes. This is a GNU extension.
2946 attributes attribute
2949 __attribute__ ( ( attribute-list ) )
2953 attribute_list , attrib
2958 any-word ( identifier )
2959 any-word ( identifier , nonempty-expr-list )
2960 any-word ( expr-list )
2962 where the "identifier" must not be declared as a type, and
2963 "any-word" may be any identifier (including one declared as a
2964 type), a reserved word storage class specifier, type specifier or
2965 type qualifier. ??? This still leaves out most reserved keywords
2966 (following the old parser), shouldn't we include them, and why not
2967 allow identifiers declared as types to start the arguments? */
2970 c_parser_attributes (c_parser
*parser
)
2972 tree attrs
= NULL_TREE
;
2973 while (c_parser_next_token_is_keyword (parser
, RID_ATTRIBUTE
))
2975 /* ??? Follow the C++ parser rather than using the
2976 lex_untranslated_string kludge. */
2977 parser
->lex_untranslated_string
= true;
2978 c_parser_consume_token (parser
);
2979 if (!c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
2981 parser
->lex_untranslated_string
= false;
2984 if (!c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
2986 parser
->lex_untranslated_string
= false;
2987 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, NULL
);
2990 /* Parse the attribute list. */
2991 while (c_parser_next_token_is (parser
, CPP_COMMA
)
2992 || c_parser_next_token_is (parser
, CPP_NAME
)
2993 || c_parser_next_token_is (parser
, CPP_KEYWORD
))
2995 tree attr
, attr_name
, attr_args
;
2996 VEC(tree
,gc
) *expr_list
;
2997 if (c_parser_next_token_is (parser
, CPP_COMMA
))
2999 c_parser_consume_token (parser
);
3002 if (c_parser_next_token_is (parser
, CPP_KEYWORD
))
3004 /* ??? See comment above about what keywords are
3007 switch (c_parser_peek_token (parser
)->keyword
)
3045 /* Accept __attribute__((__const)) as __attribute__((const))
3048 = ridpointers
[(int) c_parser_peek_token (parser
)->keyword
];
3051 attr_name
= c_parser_peek_token (parser
)->value
;
3052 c_parser_consume_token (parser
);
3053 if (c_parser_next_token_is_not (parser
, CPP_OPEN_PAREN
))
3055 attr
= build_tree_list (attr_name
, NULL_TREE
);
3056 attrs
= chainon (attrs
, attr
);
3059 c_parser_consume_token (parser
);
3060 /* Parse the attribute contents. If they start with an
3061 identifier which is followed by a comma or close
3062 parenthesis, then the arguments start with that
3063 identifier; otherwise they are an expression list. */
3064 if (c_parser_next_token_is (parser
, CPP_NAME
)
3065 && c_parser_peek_token (parser
)->id_kind
== C_ID_ID
3066 && ((c_parser_peek_2nd_token (parser
)->type
== CPP_COMMA
)
3067 || (c_parser_peek_2nd_token (parser
)->type
3068 == CPP_CLOSE_PAREN
)))
3070 tree arg1
= c_parser_peek_token (parser
)->value
;
3071 c_parser_consume_token (parser
);
3072 if (c_parser_next_token_is (parser
, CPP_CLOSE_PAREN
))
3073 attr_args
= build_tree_list (NULL_TREE
, arg1
);
3077 c_parser_consume_token (parser
);
3078 expr_list
= c_parser_expr_list (parser
, false, true, NULL
);
3079 tree_list
= build_tree_list_vec (expr_list
);
3080 attr_args
= tree_cons (NULL_TREE
, arg1
, tree_list
);
3081 release_tree_vector (expr_list
);
3086 if (c_parser_next_token_is (parser
, CPP_CLOSE_PAREN
))
3087 attr_args
= NULL_TREE
;
3090 expr_list
= c_parser_expr_list (parser
, false, true, NULL
);
3091 attr_args
= build_tree_list_vec (expr_list
);
3092 release_tree_vector (expr_list
);
3095 attr
= build_tree_list (attr_name
, attr_args
);
3096 if (c_parser_next_token_is (parser
, CPP_CLOSE_PAREN
))
3097 c_parser_consume_token (parser
);
3100 parser
->lex_untranslated_string
= false;
3101 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
,
3105 attrs
= chainon (attrs
, attr
);
3107 if (c_parser_next_token_is (parser
, CPP_CLOSE_PAREN
))
3108 c_parser_consume_token (parser
);
3111 parser
->lex_untranslated_string
= false;
3112 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
,
3116 if (c_parser_next_token_is (parser
, CPP_CLOSE_PAREN
))
3117 c_parser_consume_token (parser
);
3120 parser
->lex_untranslated_string
= false;
3121 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
,
3125 parser
->lex_untranslated_string
= false;
3130 /* Parse a type name (C90 6.5.5, C99 6.7.6).
3133 specifier-qualifier-list abstract-declarator[opt]
3136 static struct c_type_name
*
3137 c_parser_type_name (c_parser
*parser
)
3139 struct c_declspecs
*specs
= build_null_declspecs ();
3140 struct c_declarator
*declarator
;
3141 struct c_type_name
*ret
;
3143 c_parser_declspecs (parser
, specs
, false, true, true);
3144 if (!specs
->declspecs_seen_p
)
3146 c_parser_error (parser
, "expected specifier-qualifier-list");
3149 pending_xref_error ();
3150 finish_declspecs (specs
);
3151 declarator
= c_parser_declarator (parser
, specs
->type_seen_p
,
3152 C_DTR_ABSTRACT
, &dummy
);
3153 if (declarator
== NULL
)
3155 ret
= XOBNEW (&parser_obstack
, struct c_type_name
);
3157 ret
->declarator
= declarator
;
3161 /* Parse an initializer (C90 6.5.7, C99 6.7.8).
3164 assignment-expression
3165 { initializer-list }
3166 { initializer-list , }
3169 designation[opt] initializer
3170 initializer-list , designation[opt] initializer
3177 designator-list designator
3184 [ constant-expression ]
3196 [ constant-expression ... constant-expression ]
3198 Any expression without commas is accepted in the syntax for the
3199 constant-expressions, with non-constant expressions rejected later.
3201 This function is only used for top-level initializers; for nested
3202 ones, see c_parser_initval. */
3204 static struct c_expr
3205 c_parser_initializer (c_parser
*parser
)
3207 if (c_parser_next_token_is (parser
, CPP_OPEN_BRACE
))
3208 return c_parser_braced_init (parser
, NULL_TREE
, false);
3212 location_t loc
= c_parser_peek_token (parser
)->location
;
3213 ret
= c_parser_expr_no_commas (parser
, NULL
);
3214 if (TREE_CODE (ret
.value
) != STRING_CST
3215 && TREE_CODE (ret
.value
) != COMPOUND_LITERAL_EXPR
)
3216 ret
= default_function_array_read_conversion (loc
, ret
);
3221 /* Parse a braced initializer list. TYPE is the type specified for a
3222 compound literal, and NULL_TREE for other initializers and for
3223 nested braced lists. NESTED_P is true for nested braced lists,
3224 false for the list of a compound literal or the list that is the
3225 top-level initializer in a declaration. */
3227 static struct c_expr
3228 c_parser_braced_init (c_parser
*parser
, tree type
, bool nested_p
)
3231 struct obstack braced_init_obstack
;
3232 location_t brace_loc
= c_parser_peek_token (parser
)->location
;
3233 gcc_obstack_init (&braced_init_obstack
);
3234 gcc_assert (c_parser_next_token_is (parser
, CPP_OPEN_BRACE
));
3235 c_parser_consume_token (parser
);
3237 push_init_level (0, &braced_init_obstack
);
3239 really_start_incremental_init (type
);
3240 if (c_parser_next_token_is (parser
, CPP_CLOSE_BRACE
))
3242 pedwarn (brace_loc
, OPT_pedantic
, "ISO C forbids empty initializer braces");
3246 /* Parse a non-empty initializer list, possibly with a trailing
3250 c_parser_initelt (parser
, &braced_init_obstack
);
3253 if (c_parser_next_token_is (parser
, CPP_COMMA
))
3254 c_parser_consume_token (parser
);
3257 if (c_parser_next_token_is (parser
, CPP_CLOSE_BRACE
))
3261 if (c_parser_next_token_is_not (parser
, CPP_CLOSE_BRACE
))
3263 ret
.value
= error_mark_node
;
3264 ret
.original_code
= ERROR_MARK
;
3265 ret
.original_type
= NULL
;
3266 c_parser_skip_until_found (parser
, CPP_CLOSE_BRACE
, "expected %<}%>");
3267 pop_init_level (0, &braced_init_obstack
);
3268 obstack_free (&braced_init_obstack
, NULL
);
3271 c_parser_consume_token (parser
);
3272 ret
= pop_init_level (0, &braced_init_obstack
);
3273 obstack_free (&braced_init_obstack
, NULL
);
3277 /* Parse a nested initializer, including designators. */
3280 c_parser_initelt (c_parser
*parser
, struct obstack
* braced_init_obstack
)
3282 /* Parse any designator or designator list. A single array
3283 designator may have the subsequent "=" omitted in GNU C, but a
3284 longer list or a structure member designator may not. */
3285 if (c_parser_next_token_is (parser
, CPP_NAME
)
3286 && c_parser_peek_2nd_token (parser
)->type
== CPP_COLON
)
3288 /* Old-style structure member designator. */
3289 set_init_label (c_parser_peek_token (parser
)->value
,
3290 braced_init_obstack
);
3291 /* Use the colon as the error location. */
3292 pedwarn (c_parser_peek_2nd_token (parser
)->location
, OPT_pedantic
,
3293 "obsolete use of designated initializer with %<:%>");
3294 c_parser_consume_token (parser
);
3295 c_parser_consume_token (parser
);
3299 /* des_seen is 0 if there have been no designators, 1 if there
3300 has been a single array designator and 2 otherwise. */
3302 /* Location of a designator. */
3303 location_t des_loc
= UNKNOWN_LOCATION
; /* Quiet warning. */
3304 while (c_parser_next_token_is (parser
, CPP_OPEN_SQUARE
)
3305 || c_parser_next_token_is (parser
, CPP_DOT
))
3307 int des_prev
= des_seen
;
3309 des_loc
= c_parser_peek_token (parser
)->location
;
3312 if (c_parser_next_token_is (parser
, CPP_DOT
))
3315 c_parser_consume_token (parser
);
3316 if (c_parser_next_token_is (parser
, CPP_NAME
))
3318 set_init_label (c_parser_peek_token (parser
)->value
,
3319 braced_init_obstack
);
3320 c_parser_consume_token (parser
);
3325 init
.value
= error_mark_node
;
3326 init
.original_code
= ERROR_MARK
;
3327 init
.original_type
= NULL
;
3328 c_parser_error (parser
, "expected identifier");
3329 c_parser_skip_until_found (parser
, CPP_COMMA
, NULL
);
3330 process_init_element (init
, false, braced_init_obstack
);
3337 location_t ellipsis_loc
= UNKNOWN_LOCATION
; /* Quiet warning. */
3338 /* ??? Following the old parser, [ objc-receiver
3339 objc-message-args ] is accepted as an initializer,
3340 being distinguished from a designator by what follows
3341 the first assignment expression inside the square
3342 brackets, but after a first array designator a
3343 subsequent square bracket is for Objective-C taken to
3344 start an expression, using the obsolete form of
3345 designated initializer without '=', rather than
3346 possibly being a second level of designation: in LALR
3347 terms, the '[' is shifted rather than reducing
3348 designator to designator-list. */
3349 if (des_prev
== 1 && c_dialect_objc ())
3351 des_seen
= des_prev
;
3354 if (des_prev
== 0 && c_dialect_objc ())
3356 /* This might be an array designator or an
3357 Objective-C message expression. If the former,
3358 continue parsing here; if the latter, parse the
3359 remainder of the initializer given the starting
3360 primary-expression. ??? It might make sense to
3361 distinguish when des_prev == 1 as well; see
3362 previous comment. */
3364 struct c_expr mexpr
;
3365 c_parser_consume_token (parser
);
3366 if (c_parser_peek_token (parser
)->type
== CPP_NAME
3367 && ((c_parser_peek_token (parser
)->id_kind
3369 || (c_parser_peek_token (parser
)->id_kind
3370 == C_ID_CLASSNAME
)))
3372 /* Type name receiver. */
3373 tree id
= c_parser_peek_token (parser
)->value
;
3374 c_parser_consume_token (parser
);
3375 rec
= objc_get_class_reference (id
);
3376 goto parse_message_args
;
3378 first
= c_parser_expr_no_commas (parser
, NULL
).value
;
3379 mark_exp_read (first
);
3380 if (c_parser_next_token_is (parser
, CPP_ELLIPSIS
)
3381 || c_parser_next_token_is (parser
, CPP_CLOSE_SQUARE
))
3382 goto array_desig_after_first
;
3383 /* Expression receiver. So far only one part
3384 without commas has been parsed; there might be
3385 more of the expression. */
3387 while (c_parser_next_token_is (parser
, CPP_COMMA
))
3390 location_t comma_loc
, exp_loc
;
3391 comma_loc
= c_parser_peek_token (parser
)->location
;
3392 c_parser_consume_token (parser
);
3393 exp_loc
= c_parser_peek_token (parser
)->location
;
3394 next
= c_parser_expr_no_commas (parser
, NULL
);
3395 next
= default_function_array_read_conversion (exp_loc
,
3397 rec
= build_compound_expr (comma_loc
, rec
, next
.value
);
3400 /* Now parse the objc-message-args. */
3401 args
= c_parser_objc_message_args (parser
);
3402 c_parser_skip_until_found (parser
, CPP_CLOSE_SQUARE
,
3405 = objc_build_message_expr (build_tree_list (rec
, args
));
3406 mexpr
.original_code
= ERROR_MARK
;
3407 mexpr
.original_type
= NULL
;
3408 /* Now parse and process the remainder of the
3409 initializer, starting with this message
3410 expression as a primary-expression. */
3411 c_parser_initval (parser
, &mexpr
, braced_init_obstack
);
3414 c_parser_consume_token (parser
);
3415 first
= c_parser_expr_no_commas (parser
, NULL
).value
;
3416 mark_exp_read (first
);
3417 array_desig_after_first
:
3418 if (c_parser_next_token_is (parser
, CPP_ELLIPSIS
))
3420 ellipsis_loc
= c_parser_peek_token (parser
)->location
;
3421 c_parser_consume_token (parser
);
3422 second
= c_parser_expr_no_commas (parser
, NULL
).value
;
3423 mark_exp_read (second
);
3427 if (c_parser_next_token_is (parser
, CPP_CLOSE_SQUARE
))
3429 c_parser_consume_token (parser
);
3430 set_init_index (first
, second
, braced_init_obstack
);
3432 pedwarn (ellipsis_loc
, OPT_pedantic
,
3433 "ISO C forbids specifying range of elements to initialize");
3436 c_parser_skip_until_found (parser
, CPP_CLOSE_SQUARE
,
3442 if (c_parser_next_token_is (parser
, CPP_EQ
))
3445 pedwarn (des_loc
, OPT_pedantic
,
3446 "ISO C90 forbids specifying subobject to initialize");
3447 c_parser_consume_token (parser
);
3452 pedwarn (c_parser_peek_token (parser
)->location
, OPT_pedantic
,
3453 "obsolete use of designated initializer without %<=%>");
3457 init
.value
= error_mark_node
;
3458 init
.original_code
= ERROR_MARK
;
3459 init
.original_type
= NULL
;
3460 c_parser_error (parser
, "expected %<=%>");
3461 c_parser_skip_until_found (parser
, CPP_COMMA
, NULL
);
3462 process_init_element (init
, false, braced_init_obstack
);
3468 c_parser_initval (parser
, NULL
, braced_init_obstack
);
3471 /* Parse a nested initializer; as c_parser_initializer but parses
3472 initializers within braced lists, after any designators have been
3473 applied. If AFTER is not NULL then it is an Objective-C message
3474 expression which is the primary-expression starting the
3478 c_parser_initval (c_parser
*parser
, struct c_expr
*after
,
3479 struct obstack
* braced_init_obstack
)
3482 gcc_assert (!after
|| c_dialect_objc ());
3483 if (c_parser_next_token_is (parser
, CPP_OPEN_BRACE
) && !after
)
3484 init
= c_parser_braced_init (parser
, NULL_TREE
, true);
3487 location_t loc
= c_parser_peek_token (parser
)->location
;
3488 init
= c_parser_expr_no_commas (parser
, after
);
3489 if (init
.value
!= NULL_TREE
3490 && TREE_CODE (init
.value
) != STRING_CST
3491 && TREE_CODE (init
.value
) != COMPOUND_LITERAL_EXPR
)
3492 init
= default_function_array_read_conversion (loc
, init
);
3494 process_init_element (init
, false, braced_init_obstack
);
3497 /* Parse a compound statement (possibly a function body) (C90 6.6.2,
3501 { block-item-list[opt] }
3502 { label-declarations block-item-list }
3506 block-item-list block-item
3518 { label-declarations block-item-list }
3521 __extension__ nested-declaration
3522 nested-function-definition
3526 label-declarations label-declaration
3529 __label__ identifier-list ;
3531 Allowing the mixing of declarations and code is new in C99. The
3532 GNU syntax also permits (not shown above) labels at the end of
3533 compound statements, which yield an error. We don't allow labels
3534 on declarations; this might seem like a natural extension, but
3535 there would be a conflict between attributes on the label and
3536 prefix attributes on the declaration. ??? The syntax follows the
3537 old parser in requiring something after label declarations.
3538 Although they are erroneous if the labels declared aren't defined,
3539 is it useful for the syntax to be this way?
3551 c_parser_compound_statement (c_parser
*parser
)
3554 location_t brace_loc
;
3555 brace_loc
= c_parser_peek_token (parser
)->location
;
3556 if (!c_parser_require (parser
, CPP_OPEN_BRACE
, "expected %<{%>"))
3558 /* Ensure a scope is entered and left anyway to avoid confusion
3559 if we have just prepared to enter a function body. */
3560 stmt
= c_begin_compound_stmt (true);
3561 c_end_compound_stmt (brace_loc
, stmt
, true);
3562 return error_mark_node
;
3564 stmt
= c_begin_compound_stmt (true);
3565 c_parser_compound_statement_nostart (parser
);
3566 return c_end_compound_stmt (brace_loc
, stmt
, true);
3569 /* Parse a compound statement except for the opening brace. This is
3570 used for parsing both compound statements and statement expressions
3571 (which follow different paths to handling the opening). */
3574 c_parser_compound_statement_nostart (c_parser
*parser
)
3576 bool last_stmt
= false;
3577 bool last_label
= false;
3578 bool save_valid_for_pragma
= valid_location_for_stdc_pragma_p ();
3579 location_t label_loc
= UNKNOWN_LOCATION
; /* Quiet warning. */
3580 if (c_parser_next_token_is (parser
, CPP_CLOSE_BRACE
))
3582 c_parser_consume_token (parser
);
3585 mark_valid_location_for_stdc_pragma (true);
3586 if (c_parser_next_token_is_keyword (parser
, RID_LABEL
))
3588 /* Read zero or more forward-declarations for labels that nested
3589 functions can jump to. */
3590 mark_valid_location_for_stdc_pragma (false);
3591 while (c_parser_next_token_is_keyword (parser
, RID_LABEL
))
3593 label_loc
= c_parser_peek_token (parser
)->location
;
3594 c_parser_consume_token (parser
);
3595 /* Any identifiers, including those declared as type names,
3600 if (c_parser_next_token_is_not (parser
, CPP_NAME
))
3602 c_parser_error (parser
, "expected identifier");
3606 = declare_label (c_parser_peek_token (parser
)->value
);
3607 C_DECLARED_LABEL_FLAG (label
) = 1;
3608 add_stmt (build_stmt (label_loc
, DECL_EXPR
, label
));
3609 c_parser_consume_token (parser
);
3610 if (c_parser_next_token_is (parser
, CPP_COMMA
))
3611 c_parser_consume_token (parser
);
3615 c_parser_skip_until_found (parser
, CPP_SEMICOLON
, "expected %<;%>");
3617 pedwarn (label_loc
, OPT_pedantic
, "ISO C forbids label declarations");
3619 /* We must now have at least one statement, label or declaration. */
3620 if (c_parser_next_token_is (parser
, CPP_CLOSE_BRACE
))
3622 mark_valid_location_for_stdc_pragma (save_valid_for_pragma
);
3623 c_parser_error (parser
, "expected declaration or statement");
3624 c_parser_consume_token (parser
);
3627 while (c_parser_next_token_is_not (parser
, CPP_CLOSE_BRACE
))
3629 location_t loc
= c_parser_peek_token (parser
)->location
;
3630 if (c_parser_next_token_is_keyword (parser
, RID_CASE
)
3631 || c_parser_next_token_is_keyword (parser
, RID_DEFAULT
)
3632 || (c_parser_next_token_is (parser
, CPP_NAME
)
3633 && c_parser_peek_2nd_token (parser
)->type
== CPP_COLON
))
3635 if (c_parser_next_token_is_keyword (parser
, RID_CASE
))
3636 label_loc
= c_parser_peek_2nd_token (parser
)->location
;
3638 label_loc
= c_parser_peek_token (parser
)->location
;
3641 mark_valid_location_for_stdc_pragma (false);
3642 c_parser_label (parser
);
3644 else if (!last_label
3645 && c_parser_next_token_starts_declaration (parser
))
3648 mark_valid_location_for_stdc_pragma (false);
3649 c_parser_declaration_or_fndef (parser
, true, true, true, true, true);
3652 (pedantic
&& !flag_isoc99
)
3654 : OPT_Wdeclaration_after_statement
,
3655 "ISO C90 forbids mixed declarations and code");
3658 else if (!last_label
3659 && c_parser_next_token_is_keyword (parser
, RID_EXTENSION
))
3661 /* __extension__ can start a declaration, but is also an
3662 unary operator that can start an expression. Consume all
3663 but the last of a possible series of __extension__ to
3665 while (c_parser_peek_2nd_token (parser
)->type
== CPP_KEYWORD
3666 && (c_parser_peek_2nd_token (parser
)->keyword
3668 c_parser_consume_token (parser
);
3669 if (c_token_starts_declaration (c_parser_peek_2nd_token (parser
)))
3672 ext
= disable_extension_diagnostics ();
3673 c_parser_consume_token (parser
);
3675 mark_valid_location_for_stdc_pragma (false);
3676 c_parser_declaration_or_fndef (parser
, true, true, true, true,
3678 /* Following the old parser, __extension__ does not
3679 disable this diagnostic. */
3680 restore_extension_diagnostics (ext
);
3682 pedwarn_c90 (loc
, (pedantic
&& !flag_isoc99
)
3684 : OPT_Wdeclaration_after_statement
,
3685 "ISO C90 forbids mixed declarations and code");
3691 else if (c_parser_next_token_is (parser
, CPP_PRAGMA
))
3693 /* External pragmas, and some omp pragmas, are not associated
3694 with regular c code, and so are not to be considered statements
3695 syntactically. This ensures that the user doesn't put them
3696 places that would turn into syntax errors if the directive
3698 if (c_parser_pragma (parser
, pragma_compound
))
3699 last_label
= false, last_stmt
= true;
3701 else if (c_parser_next_token_is (parser
, CPP_EOF
))
3703 mark_valid_location_for_stdc_pragma (save_valid_for_pragma
);
3704 c_parser_error (parser
, "expected declaration or statement");
3707 else if (c_parser_next_token_is_keyword (parser
, RID_ELSE
))
3709 if (parser
->in_if_block
)
3711 mark_valid_location_for_stdc_pragma (save_valid_for_pragma
);
3712 error_at (loc
, """expected %<}%> before %<else%>");
3717 error_at (loc
, "%<else%> without a previous %<if%>");
3718 c_parser_consume_token (parser
);
3727 mark_valid_location_for_stdc_pragma (false);
3728 c_parser_statement_after_labels (parser
);
3731 parser
->error
= false;
3734 error_at (label_loc
, "label at end of compound statement");
3735 c_parser_consume_token (parser
);
3736 /* Restore the value we started with. */
3737 mark_valid_location_for_stdc_pragma (save_valid_for_pragma
);
3740 /* Parse a label (C90 6.6.1, C99 6.8.1).
3743 identifier : attributes[opt]
3744 case constant-expression :
3750 case constant-expression ... constant-expression :
3752 The use of attributes on labels is a GNU extension. The syntax in
3753 GNU C accepts any expressions without commas, non-constant
3754 expressions being rejected later. */
3757 c_parser_label (c_parser
*parser
)
3759 location_t loc1
= c_parser_peek_token (parser
)->location
;
3760 tree label
= NULL_TREE
;
3761 if (c_parser_next_token_is_keyword (parser
, RID_CASE
))
3764 c_parser_consume_token (parser
);
3765 exp1
= c_parser_expr_no_commas (parser
, NULL
).value
;
3766 if (c_parser_next_token_is (parser
, CPP_COLON
))
3768 c_parser_consume_token (parser
);
3769 label
= do_case (loc1
, exp1
, NULL_TREE
);
3771 else if (c_parser_next_token_is (parser
, CPP_ELLIPSIS
))
3773 c_parser_consume_token (parser
);
3774 exp2
= c_parser_expr_no_commas (parser
, NULL
).value
;
3775 if (c_parser_require (parser
, CPP_COLON
, "expected %<:%>"))
3776 label
= do_case (loc1
, exp1
, exp2
);
3779 c_parser_error (parser
, "expected %<:%> or %<...%>");
3781 else if (c_parser_next_token_is_keyword (parser
, RID_DEFAULT
))
3783 c_parser_consume_token (parser
);
3784 if (c_parser_require (parser
, CPP_COLON
, "expected %<:%>"))
3785 label
= do_case (loc1
, NULL_TREE
, NULL_TREE
);
3789 tree name
= c_parser_peek_token (parser
)->value
;
3792 location_t loc2
= c_parser_peek_token (parser
)->location
;
3793 gcc_assert (c_parser_next_token_is (parser
, CPP_NAME
));
3794 c_parser_consume_token (parser
);
3795 gcc_assert (c_parser_next_token_is (parser
, CPP_COLON
));
3796 c_parser_consume_token (parser
);
3797 attrs
= c_parser_attributes (parser
);
3798 tlab
= define_label (loc2
, name
);
3801 decl_attributes (&tlab
, attrs
, 0);
3802 label
= add_stmt (build_stmt (loc1
, LABEL_EXPR
, tlab
));
3807 if (c_parser_next_token_starts_declaration (parser
)
3808 && !(c_parser_next_token_is (parser
, CPP_NAME
)
3809 && c_parser_peek_2nd_token (parser
)->type
== CPP_COLON
))
3811 error_at (c_parser_peek_token (parser
)->location
,
3812 "a label can only be part of a statement and "
3813 "a declaration is not a statement");
3814 c_parser_declaration_or_fndef (parser
, /*fndef_ok*/ false,
3815 /*static_assert_ok*/ true,
3816 /*nested*/ true, /*empty_ok*/ false,
3817 /*start_attr_ok*/ true);
3822 /* Parse a statement (C90 6.6, C99 6.8).
3827 expression-statement
3835 expression-statement:
3838 selection-statement:
3842 iteration-statement:
3851 return expression[opt] ;
3864 objc-throw-statement
3865 objc-try-catch-statement
3866 objc-synchronized-statement
3868 objc-throw-statement:
3882 parallel-for-construct
3883 parallel-sections-construct
3890 parallel-directive structured-block
3893 for-directive iteration-statement
3896 sections-directive section-scope
3899 single-directive structured-block
3901 parallel-for-construct:
3902 parallel-for-directive iteration-statement
3904 parallel-sections-construct:
3905 parallel-sections-directive section-scope
3908 master-directive structured-block
3911 critical-directive structured-block
3914 atomic-directive expression-statement
3917 ordered-directive structured-block */
3920 c_parser_statement (c_parser
*parser
)
3922 while (c_parser_next_token_is_keyword (parser
, RID_CASE
)
3923 || c_parser_next_token_is_keyword (parser
, RID_DEFAULT
)
3924 || (c_parser_next_token_is (parser
, CPP_NAME
)
3925 && c_parser_peek_2nd_token (parser
)->type
== CPP_COLON
))
3926 c_parser_label (parser
);
3927 c_parser_statement_after_labels (parser
);
3930 /* Parse a statement, other than a labeled statement. */
3933 c_parser_statement_after_labels (c_parser
*parser
)
3935 location_t loc
= c_parser_peek_token (parser
)->location
;
3936 tree stmt
= NULL_TREE
;
3937 bool in_if_block
= parser
->in_if_block
;
3938 parser
->in_if_block
= false;
3939 switch (c_parser_peek_token (parser
)->type
)
3941 case CPP_OPEN_BRACE
:
3942 add_stmt (c_parser_compound_statement (parser
));
3945 switch (c_parser_peek_token (parser
)->keyword
)
3948 c_parser_if_statement (parser
);
3951 c_parser_switch_statement (parser
);
3954 c_parser_while_statement (parser
);
3957 c_parser_do_statement (parser
);
3960 c_parser_for_statement (parser
);
3963 c_parser_consume_token (parser
);
3964 if (c_parser_next_token_is (parser
, CPP_NAME
))
3966 stmt
= c_finish_goto_label (loc
,
3967 c_parser_peek_token (parser
)->value
);
3968 c_parser_consume_token (parser
);
3970 else if (c_parser_next_token_is (parser
, CPP_MULT
))
3972 c_parser_consume_token (parser
);
3973 stmt
= c_finish_goto_ptr (loc
,
3974 c_parser_expression (parser
).value
);
3977 c_parser_error (parser
, "expected identifier or %<*%>");
3978 goto expect_semicolon
;
3980 c_parser_consume_token (parser
);
3981 stmt
= c_finish_bc_stmt (loc
, &c_cont_label
, false);
3982 goto expect_semicolon
;
3984 c_parser_consume_token (parser
);
3985 stmt
= c_finish_bc_stmt (loc
, &c_break_label
, true);
3986 goto expect_semicolon
;
3988 c_parser_consume_token (parser
);
3989 if (c_parser_next_token_is (parser
, CPP_SEMICOLON
))
3991 stmt
= c_finish_return (loc
, NULL_TREE
, NULL_TREE
);
3992 c_parser_consume_token (parser
);
3996 struct c_expr expr
= c_parser_expression_conv (parser
);
3997 mark_exp_read (expr
.value
);
3998 stmt
= c_finish_return (loc
, expr
.value
, expr
.original_type
);
3999 goto expect_semicolon
;
4003 stmt
= c_parser_asm_statement (parser
);
4006 gcc_assert (c_dialect_objc ());
4007 c_parser_consume_token (parser
);
4008 if (c_parser_next_token_is (parser
, CPP_SEMICOLON
))
4010 stmt
= objc_build_throw_stmt (loc
, NULL_TREE
);
4011 c_parser_consume_token (parser
);
4015 tree expr
= c_parser_expression (parser
).value
;
4016 expr
= c_fully_fold (expr
, false, NULL
);
4017 stmt
= objc_build_throw_stmt (loc
, expr
);
4018 goto expect_semicolon
;
4022 gcc_assert (c_dialect_objc ());
4023 c_parser_objc_try_catch_statement (parser
);
4025 case RID_AT_SYNCHRONIZED
:
4026 gcc_assert (c_dialect_objc ());
4027 c_parser_objc_synchronized_statement (parser
);
4034 c_parser_consume_token (parser
);
4036 case CPP_CLOSE_PAREN
:
4037 case CPP_CLOSE_SQUARE
:
4038 /* Avoid infinite loop in error recovery:
4039 c_parser_skip_until_found stops at a closing nesting
4040 delimiter without consuming it, but here we need to consume
4041 it to proceed further. */
4042 c_parser_error (parser
, "expected statement");
4043 c_parser_consume_token (parser
);
4046 c_parser_pragma (parser
, pragma_stmt
);
4050 stmt
= c_finish_expr_stmt (loc
, c_parser_expression_conv (parser
).value
);
4052 c_parser_skip_until_found (parser
, CPP_SEMICOLON
, "expected %<;%>");
4055 /* Two cases cannot and do not have line numbers associated: If stmt
4056 is degenerate, such as "2;", then stmt is an INTEGER_CST, which
4057 cannot hold line numbers. But that's OK because the statement
4058 will either be changed to a MODIFY_EXPR during gimplification of
4059 the statement expr, or discarded. If stmt was compound, but
4060 without new variables, we will have skipped the creation of a
4061 BIND and will have a bare STATEMENT_LIST. But that's OK because
4062 (recursively) all of the component statements should already have
4063 line numbers assigned. ??? Can we discard no-op statements
4065 if (CAN_HAVE_LOCATION_P (stmt
)
4066 && EXPR_LOCATION (stmt
) == UNKNOWN_LOCATION
)
4067 SET_EXPR_LOCATION (stmt
, loc
);
4069 parser
->in_if_block
= in_if_block
;
4072 /* Parse the condition from an if, do, while or for statements. */
4075 c_parser_condition (c_parser
*parser
)
4077 location_t loc
= c_parser_peek_token (parser
)->location
;
4079 cond
= c_parser_expression_conv (parser
).value
;
4080 cond
= c_objc_common_truthvalue_conversion (loc
, cond
);
4081 cond
= c_fully_fold (cond
, false, NULL
);
4082 if (warn_sequence_point
)
4083 verify_sequence_points (cond
);
4087 /* Parse a parenthesized condition from an if, do or while statement.
4093 c_parser_paren_condition (c_parser
*parser
)
4096 if (!c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
4097 return error_mark_node
;
4098 cond
= c_parser_condition (parser
);
4099 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, "expected %<)%>");
4103 /* Parse a statement which is a block in C99. */
4106 c_parser_c99_block_statement (c_parser
*parser
)
4108 tree block
= c_begin_compound_stmt (flag_isoc99
);
4109 location_t loc
= c_parser_peek_token (parser
)->location
;
4110 c_parser_statement (parser
);
4111 return c_end_compound_stmt (loc
, block
, flag_isoc99
);
4114 /* Parse the body of an if statement. This is just parsing a
4115 statement but (a) it is a block in C99, (b) we track whether the
4116 body is an if statement for the sake of -Wparentheses warnings, (c)
4117 we handle an empty body specially for the sake of -Wempty-body
4118 warnings, and (d) we call parser_compound_statement directly
4119 because c_parser_statement_after_labels resets
4120 parser->in_if_block. */
4123 c_parser_if_body (c_parser
*parser
, bool *if_p
)
4125 tree block
= c_begin_compound_stmt (flag_isoc99
);
4126 location_t body_loc
= c_parser_peek_token (parser
)->location
;
4127 while (c_parser_next_token_is_keyword (parser
, RID_CASE
)
4128 || c_parser_next_token_is_keyword (parser
, RID_DEFAULT
)
4129 || (c_parser_next_token_is (parser
, CPP_NAME
)
4130 && c_parser_peek_2nd_token (parser
)->type
== CPP_COLON
))
4131 c_parser_label (parser
);
4132 *if_p
= c_parser_next_token_is_keyword (parser
, RID_IF
);
4133 if (c_parser_next_token_is (parser
, CPP_SEMICOLON
))
4135 location_t loc
= c_parser_peek_token (parser
)->location
;
4136 add_stmt (build_empty_stmt (loc
));
4137 c_parser_consume_token (parser
);
4138 if (!c_parser_next_token_is_keyword (parser
, RID_ELSE
))
4139 warning_at (loc
, OPT_Wempty_body
,
4140 "suggest braces around empty body in an %<if%> statement");
4142 else if (c_parser_next_token_is (parser
, CPP_OPEN_BRACE
))
4143 add_stmt (c_parser_compound_statement (parser
));
4145 c_parser_statement_after_labels (parser
);
4146 return c_end_compound_stmt (body_loc
, block
, flag_isoc99
);
4149 /* Parse the else body of an if statement. This is just parsing a
4150 statement but (a) it is a block in C99, (b) we handle an empty body
4151 specially for the sake of -Wempty-body warnings. */
4154 c_parser_else_body (c_parser
*parser
)
4156 location_t else_loc
= c_parser_peek_token (parser
)->location
;
4157 tree block
= c_begin_compound_stmt (flag_isoc99
);
4158 while (c_parser_next_token_is_keyword (parser
, RID_CASE
)
4159 || c_parser_next_token_is_keyword (parser
, RID_DEFAULT
)
4160 || (c_parser_next_token_is (parser
, CPP_NAME
)
4161 && c_parser_peek_2nd_token (parser
)->type
== CPP_COLON
))
4162 c_parser_label (parser
);
4163 if (c_parser_next_token_is (parser
, CPP_SEMICOLON
))
4165 location_t loc
= c_parser_peek_token (parser
)->location
;
4168 "suggest braces around empty body in an %<else%> statement");
4169 add_stmt (build_empty_stmt (loc
));
4170 c_parser_consume_token (parser
);
4173 c_parser_statement_after_labels (parser
);
4174 return c_end_compound_stmt (else_loc
, block
, flag_isoc99
);
4177 /* Parse an if statement (C90 6.6.4, C99 6.8.4).
4180 if ( expression ) statement
4181 if ( expression ) statement else statement
4185 c_parser_if_statement (c_parser
*parser
)
4190 bool first_if
= false;
4191 tree first_body
, second_body
;
4194 gcc_assert (c_parser_next_token_is_keyword (parser
, RID_IF
));
4195 c_parser_consume_token (parser
);
4196 block
= c_begin_compound_stmt (flag_isoc99
);
4197 loc
= c_parser_peek_token (parser
)->location
;
4198 cond
= c_parser_paren_condition (parser
);
4199 in_if_block
= parser
->in_if_block
;
4200 parser
->in_if_block
= true;
4201 first_body
= c_parser_if_body (parser
, &first_if
);
4202 parser
->in_if_block
= in_if_block
;
4203 if (c_parser_next_token_is_keyword (parser
, RID_ELSE
))
4205 c_parser_consume_token (parser
);
4206 second_body
= c_parser_else_body (parser
);
4209 second_body
= NULL_TREE
;
4210 c_finish_if_stmt (loc
, cond
, first_body
, second_body
, first_if
);
4211 add_stmt (c_end_compound_stmt (loc
, block
, flag_isoc99
));
4214 /* Parse a switch statement (C90 6.6.4, C99 6.8.4).
4217 switch (expression) statement
4221 c_parser_switch_statement (c_parser
*parser
)
4223 tree block
, expr
, body
, save_break
;
4224 location_t switch_loc
= c_parser_peek_token (parser
)->location
;
4225 location_t switch_cond_loc
;
4226 gcc_assert (c_parser_next_token_is_keyword (parser
, RID_SWITCH
));
4227 c_parser_consume_token (parser
);
4228 block
= c_begin_compound_stmt (flag_isoc99
);
4229 if (c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
4231 switch_cond_loc
= c_parser_peek_token (parser
)->location
;
4232 expr
= c_parser_expression (parser
).value
;
4233 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, "expected %<)%>");
4237 switch_cond_loc
= UNKNOWN_LOCATION
;
4238 expr
= error_mark_node
;
4240 c_start_case (switch_loc
, switch_cond_loc
, expr
);
4241 save_break
= c_break_label
;
4242 c_break_label
= NULL_TREE
;
4243 body
= c_parser_c99_block_statement (parser
);
4244 c_finish_case (body
);
4247 location_t here
= c_parser_peek_token (parser
)->location
;
4248 tree t
= build1 (LABEL_EXPR
, void_type_node
, c_break_label
);
4249 SET_EXPR_LOCATION (t
, here
);
4252 c_break_label
= save_break
;
4253 add_stmt (c_end_compound_stmt (switch_loc
, block
, flag_isoc99
));
4256 /* Parse a while statement (C90 6.6.5, C99 6.8.5).
4259 while (expression) statement
4263 c_parser_while_statement (c_parser
*parser
)
4265 tree block
, cond
, body
, save_break
, save_cont
;
4267 gcc_assert (c_parser_next_token_is_keyword (parser
, RID_WHILE
));
4268 c_parser_consume_token (parser
);
4269 block
= c_begin_compound_stmt (flag_isoc99
);
4270 loc
= c_parser_peek_token (parser
)->location
;
4271 cond
= c_parser_paren_condition (parser
);
4272 save_break
= c_break_label
;
4273 c_break_label
= NULL_TREE
;
4274 save_cont
= c_cont_label
;
4275 c_cont_label
= NULL_TREE
;
4276 body
= c_parser_c99_block_statement (parser
);
4277 c_finish_loop (loc
, cond
, NULL
, body
, c_break_label
, c_cont_label
, true);
4278 add_stmt (c_end_compound_stmt (loc
, block
, flag_isoc99
));
4279 c_break_label
= save_break
;
4280 c_cont_label
= save_cont
;
4283 /* Parse a do statement (C90 6.6.5, C99 6.8.5).
4286 do statement while ( expression ) ;
4290 c_parser_do_statement (c_parser
*parser
)
4292 tree block
, cond
, body
, save_break
, save_cont
, new_break
, new_cont
;
4294 gcc_assert (c_parser_next_token_is_keyword (parser
, RID_DO
));
4295 c_parser_consume_token (parser
);
4296 if (c_parser_next_token_is (parser
, CPP_SEMICOLON
))
4297 warning_at (c_parser_peek_token (parser
)->location
,
4299 "suggest braces around empty body in %<do%> statement");
4300 block
= c_begin_compound_stmt (flag_isoc99
);
4301 loc
= c_parser_peek_token (parser
)->location
;
4302 save_break
= c_break_label
;
4303 c_break_label
= NULL_TREE
;
4304 save_cont
= c_cont_label
;
4305 c_cont_label
= NULL_TREE
;
4306 body
= c_parser_c99_block_statement (parser
);
4307 c_parser_require_keyword (parser
, RID_WHILE
, "expected %<while%>");
4308 new_break
= c_break_label
;
4309 c_break_label
= save_break
;
4310 new_cont
= c_cont_label
;
4311 c_cont_label
= save_cont
;
4312 cond
= c_parser_paren_condition (parser
);
4313 if (!c_parser_require (parser
, CPP_SEMICOLON
, "expected %<;%>"))
4314 c_parser_skip_to_end_of_block_or_statement (parser
);
4315 c_finish_loop (loc
, cond
, NULL
, body
, new_break
, new_cont
, false);
4316 add_stmt (c_end_compound_stmt (loc
, block
, flag_isoc99
));
4319 /* Parse a for statement (C90 6.6.5, C99 6.8.5).
4322 for ( expression[opt] ; expression[opt] ; expression[opt] ) statement
4323 for ( nested-declaration expression[opt] ; expression[opt] ) statement
4325 The form with a declaration is new in C99.
4327 ??? In accordance with the old parser, the declaration may be a
4328 nested function, which is then rejected in check_for_loop_decls,
4329 but does it make any sense for this to be included in the grammar?
4330 Note in particular that the nested function does not include a
4331 trailing ';', whereas the "declaration" production includes one.
4332 Also, can we reject bad declarations earlier and cheaper than
4333 check_for_loop_decls? */
4336 c_parser_for_statement (c_parser
*parser
)
4338 tree block
, cond
, incr
, save_break
, save_cont
, body
;
4339 location_t loc
= c_parser_peek_token (parser
)->location
;
4340 location_t for_loc
= c_parser_peek_token (parser
)->location
;
4341 gcc_assert (c_parser_next_token_is_keyword (parser
, RID_FOR
));
4342 c_parser_consume_token (parser
);
4343 block
= c_begin_compound_stmt (flag_isoc99
);
4344 if (c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
4346 /* Parse the initialization declaration or expression. */
4347 if (c_parser_next_token_is (parser
, CPP_SEMICOLON
))
4349 c_parser_consume_token (parser
);
4350 c_finish_expr_stmt (loc
, NULL_TREE
);
4352 else if (c_parser_next_token_starts_declaration (parser
))
4354 c_parser_declaration_or_fndef (parser
, true, true, true, true, true);
4355 check_for_loop_decls (for_loc
);
4357 else if (c_parser_next_token_is_keyword (parser
, RID_EXTENSION
))
4359 /* __extension__ can start a declaration, but is also an
4360 unary operator that can start an expression. Consume all
4361 but the last of a possible series of __extension__ to
4363 while (c_parser_peek_2nd_token (parser
)->type
== CPP_KEYWORD
4364 && (c_parser_peek_2nd_token (parser
)->keyword
4366 c_parser_consume_token (parser
);
4367 if (c_token_starts_declaration (c_parser_peek_2nd_token (parser
)))
4370 ext
= disable_extension_diagnostics ();
4371 c_parser_consume_token (parser
);
4372 c_parser_declaration_or_fndef (parser
, true, true, true, true,
4374 restore_extension_diagnostics (ext
);
4375 check_for_loop_decls (for_loc
);
4383 c_finish_expr_stmt (loc
, c_parser_expression (parser
).value
);
4384 c_parser_skip_until_found (parser
, CPP_SEMICOLON
, "expected %<;%>");
4386 /* Parse the loop condition. */
4387 if (c_parser_next_token_is (parser
, CPP_SEMICOLON
))
4389 c_parser_consume_token (parser
);
4394 cond
= c_parser_condition (parser
);
4395 c_parser_skip_until_found (parser
, CPP_SEMICOLON
, "expected %<;%>");
4397 /* Parse the increment expression. */
4398 if (c_parser_next_token_is (parser
, CPP_CLOSE_PAREN
))
4399 incr
= c_process_expr_stmt (loc
, NULL_TREE
);
4401 incr
= c_process_expr_stmt (loc
, c_parser_expression (parser
).value
);
4402 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, "expected %<)%>");
4406 cond
= error_mark_node
;
4407 incr
= error_mark_node
;
4409 save_break
= c_break_label
;
4410 c_break_label
= NULL_TREE
;
4411 save_cont
= c_cont_label
;
4412 c_cont_label
= NULL_TREE
;
4413 body
= c_parser_c99_block_statement (parser
);
4414 c_finish_loop (loc
, cond
, incr
, body
, c_break_label
, c_cont_label
, true);
4415 add_stmt (c_end_compound_stmt (loc
, block
, flag_isoc99
));
4416 c_break_label
= save_break
;
4417 c_cont_label
= save_cont
;
4420 /* Parse an asm statement, a GNU extension. This is a full-blown asm
4421 statement with inputs, outputs, clobbers, and volatile tag
4425 asm type-qualifier[opt] ( asm-argument ) ;
4426 asm type-qualifier[opt] goto ( asm-goto-argument ) ;
4430 asm-string-literal : asm-operands[opt]
4431 asm-string-literal : asm-operands[opt] : asm-operands[opt]
4432 asm-string-literal : asm-operands[opt] : asm-operands[opt] : asm-clobbers[opt]
4435 asm-string-literal : : asm-operands[opt] : asm-clobbers[opt] \
4438 Qualifiers other than volatile are accepted in the syntax but
4442 c_parser_asm_statement (c_parser
*parser
)
4444 tree quals
, str
, outputs
, inputs
, clobbers
, labels
, ret
;
4445 bool simple
, is_goto
;
4446 location_t asm_loc
= c_parser_peek_token (parser
)->location
;
4447 int section
, nsections
;
4449 gcc_assert (c_parser_next_token_is_keyword (parser
, RID_ASM
));
4450 c_parser_consume_token (parser
);
4451 if (c_parser_next_token_is_keyword (parser
, RID_VOLATILE
))
4453 quals
= c_parser_peek_token (parser
)->value
;
4454 c_parser_consume_token (parser
);
4456 else if (c_parser_next_token_is_keyword (parser
, RID_CONST
)
4457 || c_parser_next_token_is_keyword (parser
, RID_RESTRICT
))
4459 warning_at (c_parser_peek_token (parser
)->location
,
4461 "%E qualifier ignored on asm",
4462 c_parser_peek_token (parser
)->value
);
4464 c_parser_consume_token (parser
);
4470 if (c_parser_next_token_is_keyword (parser
, RID_GOTO
))
4472 c_parser_consume_token (parser
);
4476 /* ??? Follow the C++ parser rather than using the
4477 lex_untranslated_string kludge. */
4478 parser
->lex_untranslated_string
= true;
4481 if (!c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
4484 str
= c_parser_asm_string_literal (parser
);
4485 if (str
== NULL_TREE
)
4486 goto error_close_paren
;
4489 outputs
= NULL_TREE
;
4491 clobbers
= NULL_TREE
;
4494 if (c_parser_next_token_is (parser
, CPP_CLOSE_PAREN
) && !is_goto
)
4497 /* Parse each colon-delimited section of operands. */
4498 nsections
= 3 + is_goto
;
4499 for (section
= 0; section
< nsections
; ++section
)
4501 if (!c_parser_require (parser
, CPP_COLON
,
4504 : "expected %<:%> or %<)%>"))
4505 goto error_close_paren
;
4507 /* Once past any colon, we're no longer a simple asm. */
4510 if ((!c_parser_next_token_is (parser
, CPP_COLON
)
4511 && !c_parser_next_token_is (parser
, CPP_CLOSE_PAREN
))
4516 /* For asm goto, we don't allow output operands, but reserve
4517 the slot for a future extension that does allow them. */
4519 outputs
= c_parser_asm_operands (parser
, false);
4522 inputs
= c_parser_asm_operands (parser
, true);
4525 clobbers
= c_parser_asm_clobbers (parser
);
4528 labels
= c_parser_asm_goto_operands (parser
);
4534 if (c_parser_next_token_is (parser
, CPP_CLOSE_PAREN
) && !is_goto
)
4539 if (!c_parser_require (parser
, CPP_CLOSE_PAREN
, "expected %<)%>"))
4541 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, NULL
);
4545 if (!c_parser_require (parser
, CPP_SEMICOLON
, "expected %<;%>"))
4546 c_parser_skip_to_end_of_block_or_statement (parser
);
4548 ret
= build_asm_stmt (quals
, build_asm_expr (asm_loc
, str
, outputs
, inputs
,
4549 clobbers
, labels
, simple
));
4552 parser
->lex_untranslated_string
= false;
4556 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, NULL
);
4560 /* Parse asm operands, a GNU extension. If CONVERT_P (for inputs but
4561 not outputs), apply the default conversion of functions and arrays
4566 asm-operands , asm-operand
4569 asm-string-literal ( expression )
4570 [ identifier ] asm-string-literal ( expression )
4574 c_parser_asm_operands (c_parser
*parser
, bool convert_p
)
4576 tree list
= NULL_TREE
;
4582 if (c_parser_next_token_is (parser
, CPP_OPEN_SQUARE
))
4584 c_parser_consume_token (parser
);
4585 if (c_parser_next_token_is (parser
, CPP_NAME
))
4587 tree id
= c_parser_peek_token (parser
)->value
;
4588 c_parser_consume_token (parser
);
4589 name
= build_string (IDENTIFIER_LENGTH (id
),
4590 IDENTIFIER_POINTER (id
));
4594 c_parser_error (parser
, "expected identifier");
4595 c_parser_skip_until_found (parser
, CPP_CLOSE_SQUARE
, NULL
);
4598 c_parser_skip_until_found (parser
, CPP_CLOSE_SQUARE
,
4603 str
= c_parser_asm_string_literal (parser
);
4604 if (str
== NULL_TREE
)
4606 parser
->lex_untranslated_string
= false;
4607 if (!c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
4609 parser
->lex_untranslated_string
= true;
4612 loc
= c_parser_peek_token (parser
)->location
;
4613 expr
= c_parser_expression (parser
);
4614 mark_exp_read (expr
.value
);
4616 expr
= default_function_array_conversion (loc
, expr
);
4617 expr
.value
= c_fully_fold (expr
.value
, false, NULL
);
4618 parser
->lex_untranslated_string
= true;
4619 if (!c_parser_require (parser
, CPP_CLOSE_PAREN
, "expected %<)%>"))
4621 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, NULL
);
4624 list
= chainon (list
, build_tree_list (build_tree_list (name
, str
),
4626 if (c_parser_next_token_is (parser
, CPP_COMMA
))
4627 c_parser_consume_token (parser
);
4634 /* Parse asm clobbers, a GNU extension.
4638 asm-clobbers , asm-string-literal
4642 c_parser_asm_clobbers (c_parser
*parser
)
4644 tree list
= NULL_TREE
;
4647 tree str
= c_parser_asm_string_literal (parser
);
4649 list
= tree_cons (NULL_TREE
, str
, list
);
4652 if (c_parser_next_token_is (parser
, CPP_COMMA
))
4653 c_parser_consume_token (parser
);
4660 /* Parse asm goto labels, a GNU extension.
4664 asm-goto-operands , identifier
4668 c_parser_asm_goto_operands (c_parser
*parser
)
4670 tree list
= NULL_TREE
;
4675 if (c_parser_next_token_is (parser
, CPP_NAME
))
4677 c_token
*tok
= c_parser_peek_token (parser
);
4679 label
= lookup_label_for_goto (tok
->location
, name
);
4680 c_parser_consume_token (parser
);
4681 TREE_USED (label
) = 1;
4685 c_parser_error (parser
, "expected identifier");
4689 name
= build_string (IDENTIFIER_LENGTH (name
),
4690 IDENTIFIER_POINTER (name
));
4691 list
= tree_cons (name
, label
, list
);
4692 if (c_parser_next_token_is (parser
, CPP_COMMA
))
4693 c_parser_consume_token (parser
);
4695 return nreverse (list
);
4699 /* Parse an expression other than a compound expression; that is, an
4700 assignment expression (C90 6.3.16, C99 6.5.16). If AFTER is not
4701 NULL then it is an Objective-C message expression which is the
4702 primary-expression starting the expression as an initializer.
4704 assignment-expression:
4705 conditional-expression
4706 unary-expression assignment-operator assignment-expression
4708 assignment-operator: one of
4709 = *= /= %= += -= <<= >>= &= ^= |=
4711 In GNU C we accept any conditional expression on the LHS and
4712 diagnose the invalid lvalue rather than producing a syntax
4715 static struct c_expr
4716 c_parser_expr_no_commas (c_parser
*parser
, struct c_expr
*after
)
4718 struct c_expr lhs
, rhs
, ret
;
4719 enum tree_code code
;
4720 location_t op_location
, exp_location
;
4721 gcc_assert (!after
|| c_dialect_objc ());
4722 lhs
= c_parser_conditional_expression (parser
, after
);
4723 op_location
= c_parser_peek_token (parser
)->location
;
4724 switch (c_parser_peek_token (parser
)->type
)
4733 code
= TRUNC_DIV_EXPR
;
4736 code
= TRUNC_MOD_EXPR
;
4751 code
= BIT_AND_EXPR
;
4754 code
= BIT_XOR_EXPR
;
4757 code
= BIT_IOR_EXPR
;
4762 c_parser_consume_token (parser
);
4763 exp_location
= c_parser_peek_token (parser
)->location
;
4764 rhs
= c_parser_expr_no_commas (parser
, NULL
);
4765 rhs
= default_function_array_read_conversion (exp_location
, rhs
);
4766 ret
.value
= build_modify_expr (op_location
, lhs
.value
, lhs
.original_type
,
4767 code
, exp_location
, rhs
.value
,
4769 if (code
== NOP_EXPR
)
4770 ret
.original_code
= MODIFY_EXPR
;
4773 TREE_NO_WARNING (ret
.value
) = 1;
4774 ret
.original_code
= ERROR_MARK
;
4776 ret
.original_type
= NULL
;
4780 /* Parse a conditional expression (C90 6.3.15, C99 6.5.15). If AFTER
4781 is not NULL then it is an Objective-C message expression which is
4782 the primary-expression starting the expression as an initializer.
4784 conditional-expression:
4785 logical-OR-expression
4786 logical-OR-expression ? expression : conditional-expression
4790 conditional-expression:
4791 logical-OR-expression ? : conditional-expression
4794 static struct c_expr
4795 c_parser_conditional_expression (c_parser
*parser
, struct c_expr
*after
)
4797 struct c_expr cond
, exp1
, exp2
, ret
;
4798 location_t cond_loc
, colon_loc
;
4800 gcc_assert (!after
|| c_dialect_objc ());
4802 cond
= c_parser_binary_expression (parser
, after
);
4804 if (c_parser_next_token_is_not (parser
, CPP_QUERY
))
4806 cond_loc
= c_parser_peek_token (parser
)->location
;
4807 cond
= default_function_array_read_conversion (cond_loc
, cond
);
4808 c_parser_consume_token (parser
);
4809 if (c_parser_next_token_is (parser
, CPP_COLON
))
4811 tree eptype
= NULL_TREE
;
4812 pedwarn (c_parser_peek_token (parser
)->location
, OPT_pedantic
,
4813 "ISO C forbids omitting the middle term of a ?: expression");
4814 if (TREE_CODE (cond
.value
) == EXCESS_PRECISION_EXPR
)
4816 eptype
= TREE_TYPE (cond
.value
);
4817 cond
.value
= TREE_OPERAND (cond
.value
, 0);
4819 /* Make sure first operand is calculated only once. */
4820 exp1
.value
= c_save_expr (default_conversion (cond
.value
));
4822 exp1
.value
= build1 (EXCESS_PRECISION_EXPR
, eptype
, exp1
.value
);
4823 exp1
.original_type
= NULL
;
4824 cond
.value
= c_objc_common_truthvalue_conversion (cond_loc
, exp1
.value
);
4825 c_inhibit_evaluation_warnings
+= cond
.value
== truthvalue_true_node
;
4830 = c_objc_common_truthvalue_conversion
4831 (cond_loc
, default_conversion (cond
.value
));
4832 c_inhibit_evaluation_warnings
+= cond
.value
== truthvalue_false_node
;
4833 exp1
= c_parser_expression_conv (parser
);
4834 mark_exp_read (exp1
.value
);
4835 c_inhibit_evaluation_warnings
+=
4836 ((cond
.value
== truthvalue_true_node
)
4837 - (cond
.value
== truthvalue_false_node
));
4840 colon_loc
= c_parser_peek_token (parser
)->location
;
4841 if (!c_parser_require (parser
, CPP_COLON
, "expected %<:%>"))
4843 c_inhibit_evaluation_warnings
-= cond
.value
== truthvalue_true_node
;
4844 ret
.value
= error_mark_node
;
4845 ret
.original_code
= ERROR_MARK
;
4846 ret
.original_type
= NULL
;
4850 location_t exp2_loc
= c_parser_peek_token (parser
)->location
;
4851 exp2
= c_parser_conditional_expression (parser
, NULL
);
4852 exp2
= default_function_array_read_conversion (exp2_loc
, exp2
);
4854 c_inhibit_evaluation_warnings
-= cond
.value
== truthvalue_true_node
;
4855 ret
.value
= build_conditional_expr (colon_loc
, cond
.value
,
4856 cond
.original_code
== C_MAYBE_CONST_EXPR
,
4857 exp1
.value
, exp1
.original_type
,
4858 exp2
.value
, exp2
.original_type
);
4859 ret
.original_code
= ERROR_MARK
;
4860 if (exp1
.value
== error_mark_node
|| exp2
.value
== error_mark_node
)
4861 ret
.original_type
= NULL
;
4866 /* If both sides are enum type, the default conversion will have
4867 made the type of the result be an integer type. We want to
4868 remember the enum types we started with. */
4869 t1
= exp1
.original_type
? exp1
.original_type
: TREE_TYPE (exp1
.value
);
4870 t2
= exp2
.original_type
? exp2
.original_type
: TREE_TYPE (exp2
.value
);
4871 ret
.original_type
= ((t1
!= error_mark_node
4872 && t2
!= error_mark_node
4873 && (TYPE_MAIN_VARIANT (t1
)
4874 == TYPE_MAIN_VARIANT (t2
)))
4881 /* Parse a binary expression; that is, a logical-OR-expression (C90
4882 6.3.5-6.3.14, C99 6.5.5-6.5.14). If AFTER is not NULL then it is
4883 an Objective-C message expression which is the primary-expression
4884 starting the expression as an initializer.
4886 multiplicative-expression:
4888 multiplicative-expression * cast-expression
4889 multiplicative-expression / cast-expression
4890 multiplicative-expression % cast-expression
4892 additive-expression:
4893 multiplicative-expression
4894 additive-expression + multiplicative-expression
4895 additive-expression - multiplicative-expression
4899 shift-expression << additive-expression
4900 shift-expression >> additive-expression
4902 relational-expression:
4904 relational-expression < shift-expression
4905 relational-expression > shift-expression
4906 relational-expression <= shift-expression
4907 relational-expression >= shift-expression
4909 equality-expression:
4910 relational-expression
4911 equality-expression == relational-expression
4912 equality-expression != relational-expression
4916 AND-expression & equality-expression
4918 exclusive-OR-expression:
4920 exclusive-OR-expression ^ AND-expression
4922 inclusive-OR-expression:
4923 exclusive-OR-expression
4924 inclusive-OR-expression | exclusive-OR-expression
4926 logical-AND-expression:
4927 inclusive-OR-expression
4928 logical-AND-expression && inclusive-OR-expression
4930 logical-OR-expression:
4931 logical-AND-expression
4932 logical-OR-expression || logical-AND-expression
4935 static struct c_expr
4936 c_parser_binary_expression (c_parser
*parser
, struct c_expr
*after
)
4938 /* A binary expression is parsed using operator-precedence parsing,
4939 with the operands being cast expressions. All the binary
4940 operators are left-associative. Thus a binary expression is of
4943 E0 op1 E1 op2 E2 ...
4945 which we represent on a stack. On the stack, the precedence
4946 levels are strictly increasing. When a new operator is
4947 encountered of higher precedence than that at the top of the
4948 stack, it is pushed; its LHS is the top expression, and its RHS
4949 is everything parsed until it is popped. When a new operator is
4950 encountered with precedence less than or equal to that at the top
4951 of the stack, triples E[i-1] op[i] E[i] are popped and replaced
4952 by the result of the operation until the operator at the top of
4953 the stack has lower precedence than the new operator or there is
4954 only one element on the stack; then the top expression is the LHS
4955 of the new operator. In the case of logical AND and OR
4956 expressions, we also need to adjust c_inhibit_evaluation_warnings
4957 as appropriate when the operators are pushed and popped. */
4959 /* The precedence levels, where 0 is a dummy lowest level used for
4960 the bottom of the stack. */
4976 /* The expression at this stack level. */
4978 /* The precedence of the operator on its left, PREC_NONE at the
4979 bottom of the stack. */
4981 /* The operation on its left. */
4983 /* The source location of this operation. */
4987 /* Location of the binary operator. */
4988 location_t binary_loc
= UNKNOWN_LOCATION
; /* Quiet warning. */
4991 switch (stack[sp].op) \
4993 case TRUTH_ANDIF_EXPR: \
4994 c_inhibit_evaluation_warnings -= (stack[sp - 1].expr.value \
4995 == truthvalue_false_node); \
4997 case TRUTH_ORIF_EXPR: \
4998 c_inhibit_evaluation_warnings -= (stack[sp - 1].expr.value \
4999 == truthvalue_true_node); \
5004 stack[sp - 1].expr \
5005 = default_function_array_read_conversion (stack[sp - 1].loc, \
5006 stack[sp - 1].expr); \
5008 = default_function_array_read_conversion (stack[sp].loc, \
5010 stack[sp - 1].expr = parser_build_binary_op (stack[sp].loc, \
5012 stack[sp - 1].expr, \
5016 gcc_assert (!after
|| c_dialect_objc ());
5017 stack
[0].loc
= c_parser_peek_token (parser
)->location
;
5018 stack
[0].expr
= c_parser_cast_expression (parser
, after
);
5019 stack
[0].prec
= PREC_NONE
;
5024 enum tree_code ocode
;
5027 switch (c_parser_peek_token (parser
)->type
)
5035 ocode
= TRUNC_DIV_EXPR
;
5039 ocode
= TRUNC_MOD_EXPR
;
5051 ocode
= LSHIFT_EXPR
;
5055 ocode
= RSHIFT_EXPR
;
5069 case CPP_GREATER_EQ
:
5082 oprec
= PREC_BITAND
;
5083 ocode
= BIT_AND_EXPR
;
5086 oprec
= PREC_BITXOR
;
5087 ocode
= BIT_XOR_EXPR
;
5091 ocode
= BIT_IOR_EXPR
;
5094 oprec
= PREC_LOGAND
;
5095 ocode
= TRUTH_ANDIF_EXPR
;
5099 ocode
= TRUTH_ORIF_EXPR
;
5102 /* Not a binary operator, so end of the binary
5106 binary_loc
= c_parser_peek_token (parser
)->location
;
5107 c_parser_consume_token (parser
);
5108 while (oprec
<= stack
[sp
].prec
)
5112 case TRUTH_ANDIF_EXPR
:
5114 = default_function_array_read_conversion (stack
[sp
].loc
,
5116 stack
[sp
].expr
.value
= c_objc_common_truthvalue_conversion
5117 (stack
[sp
].loc
, default_conversion (stack
[sp
].expr
.value
));
5118 c_inhibit_evaluation_warnings
+= (stack
[sp
].expr
.value
5119 == truthvalue_false_node
);
5121 case TRUTH_ORIF_EXPR
:
5123 = default_function_array_read_conversion (stack
[sp
].loc
,
5125 stack
[sp
].expr
.value
= c_objc_common_truthvalue_conversion
5126 (stack
[sp
].loc
, default_conversion (stack
[sp
].expr
.value
));
5127 c_inhibit_evaluation_warnings
+= (stack
[sp
].expr
.value
5128 == truthvalue_true_node
);
5134 stack
[sp
].loc
= binary_loc
;
5135 stack
[sp
].expr
= c_parser_cast_expression (parser
, NULL
);
5136 stack
[sp
].prec
= oprec
;
5137 stack
[sp
].op
= ocode
;
5138 stack
[sp
].loc
= binary_loc
;
5143 return stack
[0].expr
;
5147 /* Parse a cast expression (C90 6.3.4, C99 6.5.4). If AFTER is not
5148 NULL then it is an Objective-C message expression which is the
5149 primary-expression starting the expression as an initializer.
5153 ( type-name ) unary-expression
5156 static struct c_expr
5157 c_parser_cast_expression (c_parser
*parser
, struct c_expr
*after
)
5159 location_t cast_loc
= c_parser_peek_token (parser
)->location
;
5160 gcc_assert (!after
|| c_dialect_objc ());
5162 return c_parser_postfix_expression_after_primary (parser
,
5164 /* If the expression begins with a parenthesized type name, it may
5165 be either a cast or a compound literal; we need to see whether
5166 the next character is '{' to tell the difference. If not, it is
5167 an unary expression. */
5168 if (c_parser_next_token_is (parser
, CPP_OPEN_PAREN
)
5169 && c_token_starts_typename (c_parser_peek_2nd_token (parser
)))
5171 struct c_type_name
*type_name
;
5174 c_parser_consume_token (parser
);
5175 type_name
= c_parser_type_name (parser
);
5176 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, "expected %<)%>");
5177 if (type_name
== NULL
)
5179 ret
.value
= error_mark_node
;
5180 ret
.original_code
= ERROR_MARK
;
5181 ret
.original_type
= NULL
;
5185 /* Save casted types in the function's used types hash table. */
5186 used_types_insert (type_name
->specs
->type
);
5188 if (c_parser_next_token_is (parser
, CPP_OPEN_BRACE
))
5189 return c_parser_postfix_expression_after_paren_type (parser
, type_name
,
5192 location_t expr_loc
= c_parser_peek_token (parser
)->location
;
5193 expr
= c_parser_cast_expression (parser
, NULL
);
5194 expr
= default_function_array_read_conversion (expr_loc
, expr
);
5196 ret
.value
= c_cast_expr (cast_loc
, type_name
, expr
.value
);
5197 ret
.original_code
= ERROR_MARK
;
5198 ret
.original_type
= NULL
;
5202 return c_parser_unary_expression (parser
);
5205 /* Parse an unary expression (C90 6.3.3, C99 6.5.3).
5211 unary-operator cast-expression
5212 sizeof unary-expression
5213 sizeof ( type-name )
5215 unary-operator: one of
5221 __alignof__ unary-expression
5222 __alignof__ ( type-name )
5225 unary-operator: one of
5226 __extension__ __real__ __imag__
5228 In addition, the GNU syntax treats ++ and -- as unary operators, so
5229 they may be applied to cast expressions with errors for non-lvalues
5232 static struct c_expr
5233 c_parser_unary_expression (c_parser
*parser
)
5236 struct c_expr ret
, op
;
5237 location_t op_loc
= c_parser_peek_token (parser
)->location
;
5239 ret
.original_code
= ERROR_MARK
;
5240 ret
.original_type
= NULL
;
5241 switch (c_parser_peek_token (parser
)->type
)
5244 c_parser_consume_token (parser
);
5245 exp_loc
= c_parser_peek_token (parser
)->location
;
5246 op
= c_parser_cast_expression (parser
, NULL
);
5247 op
= default_function_array_read_conversion (exp_loc
, op
);
5248 return parser_build_unary_op (op_loc
, PREINCREMENT_EXPR
, op
);
5249 case CPP_MINUS_MINUS
:
5250 c_parser_consume_token (parser
);
5251 exp_loc
= c_parser_peek_token (parser
)->location
;
5252 op
= c_parser_cast_expression (parser
, NULL
);
5253 op
= default_function_array_read_conversion (exp_loc
, op
);
5254 return parser_build_unary_op (op_loc
, PREDECREMENT_EXPR
, op
);
5256 c_parser_consume_token (parser
);
5257 op
= c_parser_cast_expression (parser
, NULL
);
5258 mark_exp_read (op
.value
);
5259 return parser_build_unary_op (op_loc
, ADDR_EXPR
, op
);
5261 c_parser_consume_token (parser
);
5262 exp_loc
= c_parser_peek_token (parser
)->location
;
5263 op
= c_parser_cast_expression (parser
, NULL
);
5264 op
= default_function_array_read_conversion (exp_loc
, op
);
5265 ret
.value
= build_indirect_ref (op_loc
, op
.value
, RO_UNARY_STAR
);
5268 if (!c_dialect_objc () && !in_system_header
)
5271 "traditional C rejects the unary plus operator");
5272 c_parser_consume_token (parser
);
5273 exp_loc
= c_parser_peek_token (parser
)->location
;
5274 op
= c_parser_cast_expression (parser
, NULL
);
5275 op
= default_function_array_read_conversion (exp_loc
, op
);
5276 return parser_build_unary_op (op_loc
, CONVERT_EXPR
, op
);
5278 c_parser_consume_token (parser
);
5279 exp_loc
= c_parser_peek_token (parser
)->location
;
5280 op
= c_parser_cast_expression (parser
, NULL
);
5281 op
= default_function_array_read_conversion (exp_loc
, op
);
5282 return parser_build_unary_op (op_loc
, NEGATE_EXPR
, op
);
5284 c_parser_consume_token (parser
);
5285 exp_loc
= c_parser_peek_token (parser
)->location
;
5286 op
= c_parser_cast_expression (parser
, NULL
);
5287 op
= default_function_array_read_conversion (exp_loc
, op
);
5288 return parser_build_unary_op (op_loc
, BIT_NOT_EXPR
, op
);
5290 c_parser_consume_token (parser
);
5291 exp_loc
= c_parser_peek_token (parser
)->location
;
5292 op
= c_parser_cast_expression (parser
, NULL
);
5293 op
= default_function_array_read_conversion (exp_loc
, op
);
5294 return parser_build_unary_op (op_loc
, TRUTH_NOT_EXPR
, op
);
5296 /* Refer to the address of a label as a pointer. */
5297 c_parser_consume_token (parser
);
5298 if (c_parser_next_token_is (parser
, CPP_NAME
))
5300 ret
.value
= finish_label_address_expr
5301 (c_parser_peek_token (parser
)->value
, op_loc
);
5302 c_parser_consume_token (parser
);
5306 c_parser_error (parser
, "expected identifier");
5307 ret
.value
= error_mark_node
;
5311 switch (c_parser_peek_token (parser
)->keyword
)
5314 return c_parser_sizeof_expression (parser
);
5316 return c_parser_alignof_expression (parser
);
5318 c_parser_consume_token (parser
);
5319 ext
= disable_extension_diagnostics ();
5320 ret
= c_parser_cast_expression (parser
, NULL
);
5321 restore_extension_diagnostics (ext
);
5324 c_parser_consume_token (parser
);
5325 exp_loc
= c_parser_peek_token (parser
)->location
;
5326 op
= c_parser_cast_expression (parser
, NULL
);
5327 op
= default_function_array_conversion (exp_loc
, op
);
5328 return parser_build_unary_op (op_loc
, REALPART_EXPR
, op
);
5330 c_parser_consume_token (parser
);
5331 exp_loc
= c_parser_peek_token (parser
)->location
;
5332 op
= c_parser_cast_expression (parser
, NULL
);
5333 op
= default_function_array_conversion (exp_loc
, op
);
5334 return parser_build_unary_op (op_loc
, IMAGPART_EXPR
, op
);
5336 return c_parser_postfix_expression (parser
);
5339 return c_parser_postfix_expression (parser
);
5343 /* Parse a sizeof expression. */
5345 static struct c_expr
5346 c_parser_sizeof_expression (c_parser
*parser
)
5349 location_t expr_loc
;
5350 gcc_assert (c_parser_next_token_is_keyword (parser
, RID_SIZEOF
));
5351 c_parser_consume_token (parser
);
5352 c_inhibit_evaluation_warnings
++;
5354 if (c_parser_next_token_is (parser
, CPP_OPEN_PAREN
)
5355 && c_token_starts_typename (c_parser_peek_2nd_token (parser
)))
5357 /* Either sizeof ( type-name ) or sizeof unary-expression
5358 starting with a compound literal. */
5359 struct c_type_name
*type_name
;
5360 c_parser_consume_token (parser
);
5361 expr_loc
= c_parser_peek_token (parser
)->location
;
5362 type_name
= c_parser_type_name (parser
);
5363 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, "expected %<)%>");
5364 if (type_name
== NULL
)
5367 c_inhibit_evaluation_warnings
--;
5369 ret
.value
= error_mark_node
;
5370 ret
.original_code
= ERROR_MARK
;
5371 ret
.original_type
= NULL
;
5374 if (c_parser_next_token_is (parser
, CPP_OPEN_BRACE
))
5376 expr
= c_parser_postfix_expression_after_paren_type (parser
,
5381 /* sizeof ( type-name ). */
5382 c_inhibit_evaluation_warnings
--;
5384 return c_expr_sizeof_type (expr_loc
, type_name
);
5388 expr_loc
= c_parser_peek_token (parser
)->location
;
5389 expr
= c_parser_unary_expression (parser
);
5391 c_inhibit_evaluation_warnings
--;
5393 mark_exp_read (expr
.value
);
5394 if (TREE_CODE (expr
.value
) == COMPONENT_REF
5395 && DECL_C_BIT_FIELD (TREE_OPERAND (expr
.value
, 1)))
5396 error_at (expr_loc
, "%<sizeof%> applied to a bit-field");
5397 return c_expr_sizeof_expr (expr_loc
, expr
);
5401 /* Parse an alignof expression. */
5403 static struct c_expr
5404 c_parser_alignof_expression (c_parser
*parser
)
5407 location_t loc
= c_parser_peek_token (parser
)->location
;
5408 gcc_assert (c_parser_next_token_is_keyword (parser
, RID_ALIGNOF
));
5409 c_parser_consume_token (parser
);
5410 c_inhibit_evaluation_warnings
++;
5412 if (c_parser_next_token_is (parser
, CPP_OPEN_PAREN
)
5413 && c_token_starts_typename (c_parser_peek_2nd_token (parser
)))
5415 /* Either __alignof__ ( type-name ) or __alignof__
5416 unary-expression starting with a compound literal. */
5418 struct c_type_name
*type_name
;
5420 c_parser_consume_token (parser
);
5421 loc
= c_parser_peek_token (parser
)->location
;
5422 type_name
= c_parser_type_name (parser
);
5423 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, "expected %<)%>");
5424 if (type_name
== NULL
)
5427 c_inhibit_evaluation_warnings
--;
5429 ret
.value
= error_mark_node
;
5430 ret
.original_code
= ERROR_MARK
;
5431 ret
.original_type
= NULL
;
5434 if (c_parser_next_token_is (parser
, CPP_OPEN_BRACE
))
5436 expr
= c_parser_postfix_expression_after_paren_type (parser
,
5441 /* alignof ( type-name ). */
5442 c_inhibit_evaluation_warnings
--;
5444 ret
.value
= c_alignof (loc
, groktypename (type_name
, NULL
, NULL
));
5445 ret
.original_code
= ERROR_MARK
;
5446 ret
.original_type
= NULL
;
5452 expr
= c_parser_unary_expression (parser
);
5454 mark_exp_read (expr
.value
);
5455 c_inhibit_evaluation_warnings
--;
5457 ret
.value
= c_alignof_expr (loc
, expr
.value
);
5458 ret
.original_code
= ERROR_MARK
;
5459 ret
.original_type
= NULL
;
5464 /* Parse a postfix expression (C90 6.3.1-6.3.2, C99 6.5.1-6.5.2).
5468 postfix-expression [ expression ]
5469 postfix-expression ( argument-expression-list[opt] )
5470 postfix-expression . identifier
5471 postfix-expression -> identifier
5472 postfix-expression ++
5473 postfix-expression --
5474 ( type-name ) { initializer-list }
5475 ( type-name ) { initializer-list , }
5477 argument-expression-list:
5479 argument-expression-list , argument-expression
5491 (treated as a keyword in GNU C)
5494 ( compound-statement )
5495 __builtin_va_arg ( assignment-expression , type-name )
5496 __builtin_offsetof ( type-name , offsetof-member-designator )
5497 __builtin_choose_expr ( assignment-expression ,
5498 assignment-expression ,
5499 assignment-expression )
5500 __builtin_types_compatible_p ( type-name , type-name )
5502 offsetof-member-designator:
5504 offsetof-member-designator . identifier
5505 offsetof-member-designator [ expression ]
5510 [ objc-receiver objc-message-args ]
5511 @selector ( objc-selector-arg )
5512 @protocol ( identifier )
5513 @encode ( type-name )
5517 static struct c_expr
5518 c_parser_postfix_expression (c_parser
*parser
)
5520 struct c_expr expr
, e1
, e2
, e3
;
5521 struct c_type_name
*t1
, *t2
;
5522 location_t loc
= c_parser_peek_token (parser
)->location
;;
5523 expr
.original_code
= ERROR_MARK
;
5524 expr
.original_type
= NULL
;
5525 switch (c_parser_peek_token (parser
)->type
)
5528 expr
.value
= c_parser_peek_token (parser
)->value
;
5529 loc
= c_parser_peek_token (parser
)->location
;
5530 c_parser_consume_token (parser
);
5531 if (TREE_CODE (expr
.value
) == FIXED_CST
5532 && !targetm
.fixed_point_supported_p ())
5534 error_at (loc
, "fixed-point types not supported for this target");
5535 expr
.value
= error_mark_node
;
5542 expr
.value
= c_parser_peek_token (parser
)->value
;
5543 c_parser_consume_token (parser
);
5549 case CPP_UTF8STRING
:
5550 expr
.value
= c_parser_peek_token (parser
)->value
;
5551 expr
.original_code
= STRING_CST
;
5552 c_parser_consume_token (parser
);
5554 case CPP_OBJC_STRING
:
5555 gcc_assert (c_dialect_objc ());
5557 = objc_build_string_object (c_parser_peek_token (parser
)->value
);
5558 c_parser_consume_token (parser
);
5561 if (c_parser_peek_token (parser
)->id_kind
!= C_ID_ID
)
5563 c_parser_error (parser
, "expected expression");
5564 expr
.value
= error_mark_node
;
5568 tree id
= c_parser_peek_token (parser
)->value
;
5569 c_parser_consume_token (parser
);
5570 expr
.value
= build_external_ref (loc
, id
,
5571 (c_parser_peek_token (parser
)->type
5573 &expr
.original_type
);
5576 case CPP_OPEN_PAREN
:
5577 /* A parenthesized expression, statement expression or compound
5579 if (c_parser_peek_2nd_token (parser
)->type
== CPP_OPEN_BRACE
)
5581 /* A statement expression. */
5583 location_t brace_loc
;
5584 c_parser_consume_token (parser
);
5585 brace_loc
= c_parser_peek_token (parser
)->location
;
5586 c_parser_consume_token (parser
);
5587 if (cur_stmt_list
== NULL
)
5589 error_at (loc
, "braced-group within expression allowed "
5590 "only inside a function");
5591 parser
->error
= true;
5592 c_parser_skip_until_found (parser
, CPP_CLOSE_BRACE
, NULL
);
5593 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, NULL
);
5594 expr
.value
= error_mark_node
;
5597 stmt
= c_begin_stmt_expr ();
5598 c_parser_compound_statement_nostart (parser
);
5599 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
,
5601 pedwarn (loc
, OPT_pedantic
,
5602 "ISO C forbids braced-groups within expressions");
5603 expr
.value
= c_finish_stmt_expr (brace_loc
, stmt
);
5605 else if (c_token_starts_typename (c_parser_peek_2nd_token (parser
)))
5607 /* A compound literal. ??? Can we actually get here rather
5608 than going directly to
5609 c_parser_postfix_expression_after_paren_type from
5612 struct c_type_name
*type_name
;
5613 c_parser_consume_token (parser
);
5614 loc
= c_parser_peek_token (parser
)->location
;
5615 type_name
= c_parser_type_name (parser
);
5616 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
,
5618 if (type_name
== NULL
)
5620 expr
.value
= error_mark_node
;
5623 expr
= c_parser_postfix_expression_after_paren_type (parser
,
5629 /* A parenthesized expression. */
5630 c_parser_consume_token (parser
);
5631 expr
= c_parser_expression (parser
);
5632 if (TREE_CODE (expr
.value
) == MODIFY_EXPR
)
5633 TREE_NO_WARNING (expr
.value
) = 1;
5634 if (expr
.original_code
!= C_MAYBE_CONST_EXPR
)
5635 expr
.original_code
= ERROR_MARK
;
5636 /* Don't change EXPR.ORIGINAL_TYPE. */
5637 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
,
5642 switch (c_parser_peek_token (parser
)->keyword
)
5644 case RID_FUNCTION_NAME
:
5645 case RID_PRETTY_FUNCTION_NAME
:
5646 case RID_C99_FUNCTION_NAME
:
5647 expr
.value
= fname_decl (loc
,
5648 c_parser_peek_token (parser
)->keyword
,
5649 c_parser_peek_token (parser
)->value
);
5650 c_parser_consume_token (parser
);
5653 c_parser_consume_token (parser
);
5654 if (!c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
5656 expr
.value
= error_mark_node
;
5659 e1
= c_parser_expr_no_commas (parser
, NULL
);
5660 mark_exp_read (e1
.value
);
5661 e1
.value
= c_fully_fold (e1
.value
, false, NULL
);
5662 if (!c_parser_require (parser
, CPP_COMMA
, "expected %<,%>"))
5664 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, NULL
);
5665 expr
.value
= error_mark_node
;
5668 loc
= c_parser_peek_token (parser
)->location
;
5669 t1
= c_parser_type_name (parser
);
5670 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
,
5674 expr
.value
= error_mark_node
;
5678 tree type_expr
= NULL_TREE
;
5679 expr
.value
= c_build_va_arg (loc
, e1
.value
,
5680 groktypename (t1
, &type_expr
, NULL
));
5683 expr
.value
= build2 (C_MAYBE_CONST_EXPR
,
5684 TREE_TYPE (expr
.value
), type_expr
,
5686 C_MAYBE_CONST_EXPR_NON_CONST (expr
.value
) = true;
5691 c_parser_consume_token (parser
);
5692 if (!c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
5694 expr
.value
= error_mark_node
;
5697 t1
= c_parser_type_name (parser
);
5700 expr
.value
= error_mark_node
;
5703 if (!c_parser_require (parser
, CPP_COMMA
, "expected %<,%>"))
5705 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, NULL
);
5706 expr
.value
= error_mark_node
;
5710 tree type
= groktypename (t1
, NULL
, NULL
);
5712 if (type
== error_mark_node
)
5713 offsetof_ref
= error_mark_node
;
5716 offsetof_ref
= build1 (INDIRECT_REF
, type
, null_pointer_node
);
5717 SET_EXPR_LOCATION (offsetof_ref
, loc
);
5719 /* Parse the second argument to __builtin_offsetof. We
5720 must have one identifier, and beyond that we want to
5721 accept sub structure and sub array references. */
5722 if (c_parser_next_token_is (parser
, CPP_NAME
))
5724 offsetof_ref
= build_component_ref
5725 (loc
, offsetof_ref
, c_parser_peek_token (parser
)->value
);
5726 c_parser_consume_token (parser
);
5727 while (c_parser_next_token_is (parser
, CPP_DOT
)
5728 || c_parser_next_token_is (parser
,
5730 || c_parser_next_token_is (parser
,
5733 if (c_parser_next_token_is (parser
, CPP_DEREF
))
5735 loc
= c_parser_peek_token (parser
)->location
;
5736 offsetof_ref
= build_array_ref (loc
,
5741 else if (c_parser_next_token_is (parser
, CPP_DOT
))
5744 c_parser_consume_token (parser
);
5745 if (c_parser_next_token_is_not (parser
,
5748 c_parser_error (parser
, "expected identifier");
5751 offsetof_ref
= build_component_ref
5753 c_parser_peek_token (parser
)->value
);
5754 c_parser_consume_token (parser
);
5759 loc
= c_parser_peek_token (parser
)->location
;
5760 c_parser_consume_token (parser
);
5761 idx
= c_parser_expression (parser
).value
;
5762 idx
= c_fully_fold (idx
, false, NULL
);
5763 c_parser_skip_until_found (parser
, CPP_CLOSE_SQUARE
,
5765 offsetof_ref
= build_array_ref (loc
, offsetof_ref
, idx
);
5770 c_parser_error (parser
, "expected identifier");
5771 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
,
5773 expr
.value
= fold_offsetof (offsetof_ref
, NULL_TREE
);
5776 case RID_CHOOSE_EXPR
:
5777 c_parser_consume_token (parser
);
5778 if (!c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
5780 expr
.value
= error_mark_node
;
5783 loc
= c_parser_peek_token (parser
)->location
;
5784 e1
= c_parser_expr_no_commas (parser
, NULL
);
5785 if (!c_parser_require (parser
, CPP_COMMA
, "expected %<,%>"))
5787 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, NULL
);
5788 expr
.value
= error_mark_node
;
5791 e2
= c_parser_expr_no_commas (parser
, NULL
);
5792 if (!c_parser_require (parser
, CPP_COMMA
, "expected %<,%>"))
5794 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, NULL
);
5795 expr
.value
= error_mark_node
;
5798 e3
= c_parser_expr_no_commas (parser
, NULL
);
5799 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
,
5805 mark_exp_read (e2
.value
);
5806 mark_exp_read (e3
.value
);
5807 if (TREE_CODE (c
) != INTEGER_CST
5808 || !INTEGRAL_TYPE_P (TREE_TYPE (c
)))
5810 "first argument to %<__builtin_choose_expr%> not"
5812 constant_expression_warning (c
);
5813 expr
= integer_zerop (c
) ? e3
: e2
;
5816 case RID_TYPES_COMPATIBLE_P
:
5817 c_parser_consume_token (parser
);
5818 if (!c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
5820 expr
.value
= error_mark_node
;
5823 t1
= c_parser_type_name (parser
);
5826 expr
.value
= error_mark_node
;
5829 if (!c_parser_require (parser
, CPP_COMMA
, "expected %<,%>"))
5831 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, NULL
);
5832 expr
.value
= error_mark_node
;
5835 t2
= c_parser_type_name (parser
);
5838 expr
.value
= error_mark_node
;
5841 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
,
5846 e1
= TYPE_MAIN_VARIANT (groktypename (t1
, NULL
, NULL
));
5847 e2
= TYPE_MAIN_VARIANT (groktypename (t2
, NULL
, NULL
));
5849 expr
.value
= comptypes (e1
, e2
)
5850 ? build_int_cst (NULL_TREE
, 1)
5851 : build_int_cst (NULL_TREE
, 0);
5854 case RID_AT_SELECTOR
:
5855 gcc_assert (c_dialect_objc ());
5856 c_parser_consume_token (parser
);
5857 if (!c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
5859 expr
.value
= error_mark_node
;
5863 tree sel
= c_parser_objc_selector_arg (parser
);
5864 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
,
5866 expr
.value
= objc_build_selector_expr (loc
, sel
);
5869 case RID_AT_PROTOCOL
:
5870 gcc_assert (c_dialect_objc ());
5871 c_parser_consume_token (parser
);
5872 if (!c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
5874 expr
.value
= error_mark_node
;
5877 if (c_parser_next_token_is_not (parser
, CPP_NAME
))
5879 c_parser_error (parser
, "expected identifier");
5880 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, NULL
);
5881 expr
.value
= error_mark_node
;
5885 tree id
= c_parser_peek_token (parser
)->value
;
5886 c_parser_consume_token (parser
);
5887 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
,
5889 expr
.value
= objc_build_protocol_expr (id
);
5893 /* Extension to support C-structures in the archiver. */
5894 gcc_assert (c_dialect_objc ());
5895 c_parser_consume_token (parser
);
5896 if (!c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
5898 expr
.value
= error_mark_node
;
5901 t1
= c_parser_type_name (parser
);
5904 expr
.value
= error_mark_node
;
5905 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, NULL
);
5908 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
,
5911 tree type
= groktypename (t1
, NULL
, NULL
);
5912 expr
.value
= objc_build_encode_expr (type
);
5916 c_parser_error (parser
, "expected expression");
5917 expr
.value
= error_mark_node
;
5921 case CPP_OPEN_SQUARE
:
5922 if (c_dialect_objc ())
5924 tree receiver
, args
;
5925 c_parser_consume_token (parser
);
5926 receiver
= c_parser_objc_receiver (parser
);
5927 args
= c_parser_objc_message_args (parser
);
5928 c_parser_skip_until_found (parser
, CPP_CLOSE_SQUARE
,
5930 expr
.value
= objc_build_message_expr (build_tree_list (receiver
,
5934 /* Else fall through to report error. */
5936 c_parser_error (parser
, "expected expression");
5937 expr
.value
= error_mark_node
;
5940 return c_parser_postfix_expression_after_primary (parser
, loc
, expr
);
5943 /* Parse a postfix expression after a parenthesized type name: the
5944 brace-enclosed initializer of a compound literal, possibly followed
5945 by some postfix operators. This is separate because it is not
5946 possible to tell until after the type name whether a cast
5947 expression has a cast or a compound literal, or whether the operand
5948 of sizeof is a parenthesized type name or starts with a compound
5949 literal. TYPE_LOC is the location where TYPE_NAME starts--the
5950 location of the first token after the parentheses around the type
5953 static struct c_expr
5954 c_parser_postfix_expression_after_paren_type (c_parser
*parser
,
5955 struct c_type_name
*type_name
,
5956 location_t type_loc
)
5962 location_t start_loc
;
5963 tree type_expr
= NULL_TREE
;
5964 bool type_expr_const
= true;
5965 check_compound_literal_type (type_loc
, type_name
);
5966 start_init (NULL_TREE
, NULL
, 0);
5967 type
= groktypename (type_name
, &type_expr
, &type_expr_const
);
5968 start_loc
= c_parser_peek_token (parser
)->location
;
5969 if (type
!= error_mark_node
&& C_TYPE_VARIABLE_SIZE (type
))
5971 error_at (type_loc
, "compound literal has variable size");
5972 type
= error_mark_node
;
5974 init
= c_parser_braced_init (parser
, type
, false);
5976 maybe_warn_string_init (type
, init
);
5978 if (type
!= error_mark_node
5979 && !ADDR_SPACE_GENERIC_P (TYPE_ADDR_SPACE (type
))
5980 && current_function_decl
)
5982 error ("compound literal qualified by address-space qualifier");
5983 type
= error_mark_node
;
5987 pedwarn (start_loc
, OPT_pedantic
, "ISO C90 forbids compound literals");
5988 non_const
= ((init
.value
&& TREE_CODE (init
.value
) == CONSTRUCTOR
)
5989 ? CONSTRUCTOR_NON_CONST (init
.value
)
5990 : init
.original_code
== C_MAYBE_CONST_EXPR
);
5991 non_const
|= !type_expr_const
;
5992 expr
.value
= build_compound_literal (start_loc
, type
, init
.value
, non_const
);
5993 expr
.original_code
= ERROR_MARK
;
5994 expr
.original_type
= NULL
;
5997 if (TREE_CODE (expr
.value
) == C_MAYBE_CONST_EXPR
)
5999 gcc_assert (C_MAYBE_CONST_EXPR_PRE (expr
.value
) == NULL_TREE
);
6000 C_MAYBE_CONST_EXPR_PRE (expr
.value
) = type_expr
;
6004 gcc_assert (!non_const
);
6005 expr
.value
= build2 (C_MAYBE_CONST_EXPR
, type
,
6006 type_expr
, expr
.value
);
6009 return c_parser_postfix_expression_after_primary (parser
, start_loc
, expr
);
6012 /* Parse a postfix expression after the initial primary or compound
6013 literal; that is, parse a series of postfix operators.
6015 EXPR_LOC is the location of the primary expression. */
6017 static struct c_expr
6018 c_parser_postfix_expression_after_primary (c_parser
*parser
,
6019 location_t expr_loc
,
6022 struct c_expr orig_expr
;
6024 VEC(tree
,gc
) *exprlist
;
6025 VEC(tree
,gc
) *origtypes
;
6028 location_t op_loc
= c_parser_peek_token (parser
)->location
;
6029 switch (c_parser_peek_token (parser
)->type
)
6031 case CPP_OPEN_SQUARE
:
6032 /* Array reference. */
6033 c_parser_consume_token (parser
);
6034 idx
= c_parser_expression (parser
).value
;
6035 c_parser_skip_until_found (parser
, CPP_CLOSE_SQUARE
,
6037 expr
.value
= build_array_ref (op_loc
, expr
.value
, idx
);
6038 expr
.original_code
= ERROR_MARK
;
6039 expr
.original_type
= NULL
;
6041 case CPP_OPEN_PAREN
:
6042 /* Function call. */
6043 c_parser_consume_token (parser
);
6044 if (c_parser_next_token_is (parser
, CPP_CLOSE_PAREN
))
6047 exprlist
= c_parser_expr_list (parser
, true, false, &origtypes
);
6048 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
,
6051 mark_exp_read (expr
.value
);
6052 /* FIXME diagnostics: Ideally we want the FUNCNAME, not the
6053 "(" after the FUNCNAME, which is what we have now. */
6054 expr
.value
= build_function_call_vec (op_loc
, expr
.value
, exprlist
,
6056 expr
.original_code
= ERROR_MARK
;
6057 if (TREE_CODE (expr
.value
) == INTEGER_CST
6058 && TREE_CODE (orig_expr
.value
) == FUNCTION_DECL
6059 && DECL_BUILT_IN_CLASS (orig_expr
.value
) == BUILT_IN_NORMAL
6060 && DECL_FUNCTION_CODE (orig_expr
.value
) == BUILT_IN_CONSTANT_P
)
6061 expr
.original_code
= C_MAYBE_CONST_EXPR
;
6062 expr
.original_type
= NULL
;
6063 if (exprlist
!= NULL
)
6065 release_tree_vector (exprlist
);
6066 release_tree_vector (origtypes
);
6070 /* Structure element reference. */
6071 c_parser_consume_token (parser
);
6072 expr
= default_function_array_conversion (expr_loc
, expr
);
6073 if (c_parser_next_token_is (parser
, CPP_NAME
))
6074 ident
= c_parser_peek_token (parser
)->value
;
6077 c_parser_error (parser
, "expected identifier");
6078 expr
.value
= error_mark_node
;
6079 expr
.original_code
= ERROR_MARK
;
6080 expr
.original_type
= NULL
;
6083 c_parser_consume_token (parser
);
6084 expr
.value
= build_component_ref (op_loc
, expr
.value
, ident
);
6085 expr
.original_code
= ERROR_MARK
;
6086 if (TREE_CODE (expr
.value
) != COMPONENT_REF
)
6087 expr
.original_type
= NULL
;
6090 /* Remember the original type of a bitfield. */
6091 tree field
= TREE_OPERAND (expr
.value
, 1);
6092 if (TREE_CODE (field
) != FIELD_DECL
)
6093 expr
.original_type
= NULL
;
6095 expr
.original_type
= DECL_BIT_FIELD_TYPE (field
);
6099 /* Structure element reference. */
6100 c_parser_consume_token (parser
);
6101 expr
= default_function_array_conversion (expr_loc
, expr
);
6102 if (c_parser_next_token_is (parser
, CPP_NAME
))
6103 ident
= c_parser_peek_token (parser
)->value
;
6106 c_parser_error (parser
, "expected identifier");
6107 expr
.value
= error_mark_node
;
6108 expr
.original_code
= ERROR_MARK
;
6109 expr
.original_type
= NULL
;
6112 c_parser_consume_token (parser
);
6113 expr
.value
= build_component_ref (op_loc
,
6114 build_indirect_ref (op_loc
,
6118 expr
.original_code
= ERROR_MARK
;
6119 if (TREE_CODE (expr
.value
) != COMPONENT_REF
)
6120 expr
.original_type
= NULL
;
6123 /* Remember the original type of a bitfield. */
6124 tree field
= TREE_OPERAND (expr
.value
, 1);
6125 if (TREE_CODE (field
) != FIELD_DECL
)
6126 expr
.original_type
= NULL
;
6128 expr
.original_type
= DECL_BIT_FIELD_TYPE (field
);
6132 /* Postincrement. */
6133 c_parser_consume_token (parser
);
6134 expr
= default_function_array_read_conversion (expr_loc
, expr
);
6135 expr
.value
= build_unary_op (op_loc
,
6136 POSTINCREMENT_EXPR
, expr
.value
, 0);
6137 expr
.original_code
= ERROR_MARK
;
6138 expr
.original_type
= NULL
;
6140 case CPP_MINUS_MINUS
:
6141 /* Postdecrement. */
6142 c_parser_consume_token (parser
);
6143 expr
= default_function_array_read_conversion (expr_loc
, expr
);
6144 expr
.value
= build_unary_op (op_loc
,
6145 POSTDECREMENT_EXPR
, expr
.value
, 0);
6146 expr
.original_code
= ERROR_MARK
;
6147 expr
.original_type
= NULL
;
6155 /* Parse an expression (C90 6.3.17, C99 6.5.17).
6158 assignment-expression
6159 expression , assignment-expression
6162 static struct c_expr
6163 c_parser_expression (c_parser
*parser
)
6166 expr
= c_parser_expr_no_commas (parser
, NULL
);
6167 while (c_parser_next_token_is (parser
, CPP_COMMA
))
6171 location_t loc
= c_parser_peek_token (parser
)->location
;
6172 location_t expr_loc
;
6173 c_parser_consume_token (parser
);
6174 expr_loc
= c_parser_peek_token (parser
)->location
;
6175 lhsval
= expr
.value
;
6176 while (TREE_CODE (lhsval
) == COMPOUND_EXPR
)
6177 lhsval
= TREE_OPERAND (lhsval
, 1);
6178 if (DECL_P (lhsval
) || handled_component_p (lhsval
))
6179 mark_exp_read (lhsval
);
6180 next
= c_parser_expr_no_commas (parser
, NULL
);
6181 next
= default_function_array_conversion (expr_loc
, next
);
6182 expr
.value
= build_compound_expr (loc
, expr
.value
, next
.value
);
6183 expr
.original_code
= COMPOUND_EXPR
;
6184 expr
.original_type
= next
.original_type
;
6189 /* Parse an expression and convert functions or arrays to
6192 static struct c_expr
6193 c_parser_expression_conv (c_parser
*parser
)
6196 location_t loc
= c_parser_peek_token (parser
)->location
;
6197 expr
= c_parser_expression (parser
);
6198 expr
= default_function_array_conversion (loc
, expr
);
6202 /* Parse a non-empty list of expressions. If CONVERT_P, convert
6203 functions and arrays to pointers. If FOLD_P, fold the expressions.
6206 assignment-expression
6207 nonempty-expr-list , assignment-expression
6210 static VEC(tree
,gc
) *
6211 c_parser_expr_list (c_parser
*parser
, bool convert_p
, bool fold_p
,
6212 VEC(tree
,gc
) **p_orig_types
)
6215 VEC(tree
,gc
) *orig_types
;
6217 location_t loc
= c_parser_peek_token (parser
)->location
;
6219 ret
= make_tree_vector ();
6220 if (p_orig_types
== NULL
)
6223 orig_types
= make_tree_vector ();
6225 expr
= c_parser_expr_no_commas (parser
, NULL
);
6227 expr
= default_function_array_read_conversion (loc
, expr
);
6229 expr
.value
= c_fully_fold (expr
.value
, false, NULL
);
6230 VEC_quick_push (tree
, ret
, expr
.value
);
6231 if (orig_types
!= NULL
)
6232 VEC_quick_push (tree
, orig_types
, expr
.original_type
);
6233 while (c_parser_next_token_is (parser
, CPP_COMMA
))
6235 c_parser_consume_token (parser
);
6236 loc
= c_parser_peek_token (parser
)->location
;
6237 expr
= c_parser_expr_no_commas (parser
, NULL
);
6239 expr
= default_function_array_read_conversion (loc
, expr
);
6241 expr
.value
= c_fully_fold (expr
.value
, false, NULL
);
6242 VEC_safe_push (tree
, gc
, ret
, expr
.value
);
6243 if (orig_types
!= NULL
)
6244 VEC_safe_push (tree
, gc
, orig_types
, expr
.original_type
);
6246 if (orig_types
!= NULL
)
6247 *p_orig_types
= orig_types
;
6251 /* Parse Objective-C-specific constructs. */
6253 /* Parse an objc-class-definition.
6255 objc-class-definition:
6256 @interface identifier objc-superclass[opt] objc-protocol-refs[opt]
6257 objc-class-instance-variables[opt] objc-methodprotolist @end
6258 @implementation identifier objc-superclass[opt]
6259 objc-class-instance-variables[opt]
6260 @interface identifier ( identifier ) objc-protocol-refs[opt]
6261 objc-methodprotolist @end
6262 @implementation identifier ( identifier )
6267 "@interface identifier (" must start "@interface identifier (
6268 identifier ) ...": objc-methodprotolist in the first production may
6269 not start with a parenthesized identifier as a declarator of a data
6270 definition with no declaration specifiers if the objc-superclass,
6271 objc-protocol-refs and objc-class-instance-variables are omitted. */
6274 c_parser_objc_class_definition (c_parser
*parser
)
6279 if (c_parser_next_token_is_keyword (parser
, RID_AT_INTERFACE
))
6281 else if (c_parser_next_token_is_keyword (parser
, RID_AT_IMPLEMENTATION
))
6285 c_parser_consume_token (parser
);
6286 if (c_parser_next_token_is_not (parser
, CPP_NAME
))
6288 c_parser_error (parser
, "expected identifier");
6291 id1
= c_parser_peek_token (parser
)->value
;
6292 c_parser_consume_token (parser
);
6293 if (c_parser_next_token_is (parser
, CPP_OPEN_PAREN
))
6296 tree proto
= NULL_TREE
;
6297 c_parser_consume_token (parser
);
6298 if (c_parser_next_token_is_not (parser
, CPP_NAME
))
6300 c_parser_error (parser
, "expected identifier");
6301 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, NULL
);
6304 id2
= c_parser_peek_token (parser
)->value
;
6305 c_parser_consume_token (parser
);
6306 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, "expected %<)%>");
6309 objc_start_category_implementation (id1
, id2
);
6312 if (c_parser_next_token_is (parser
, CPP_LESS
))
6313 proto
= c_parser_objc_protocol_refs (parser
);
6314 objc_start_category_interface (id1
, id2
, proto
);
6315 c_parser_objc_methodprotolist (parser
);
6316 c_parser_require_keyword (parser
, RID_AT_END
, "expected %<@end%>");
6317 objc_finish_interface ();
6320 if (c_parser_next_token_is (parser
, CPP_COLON
))
6322 c_parser_consume_token (parser
);
6323 if (c_parser_next_token_is_not (parser
, CPP_NAME
))
6325 c_parser_error (parser
, "expected identifier");
6328 superclass
= c_parser_peek_token (parser
)->value
;
6329 c_parser_consume_token (parser
);
6332 superclass
= NULL_TREE
;
6335 tree proto
= NULL_TREE
;
6336 if (c_parser_next_token_is (parser
, CPP_LESS
))
6337 proto
= c_parser_objc_protocol_refs (parser
);
6338 objc_start_class_interface (id1
, superclass
, proto
);
6341 objc_start_class_implementation (id1
, superclass
);
6342 if (c_parser_next_token_is (parser
, CPP_OPEN_BRACE
))
6343 c_parser_objc_class_instance_variables (parser
);
6346 objc_continue_interface ();
6347 c_parser_objc_methodprotolist (parser
);
6348 c_parser_require_keyword (parser
, RID_AT_END
, "expected %<@end%>");
6349 objc_finish_interface ();
6353 objc_continue_implementation ();
6358 /* Parse objc-class-instance-variables.
6360 objc-class-instance-variables:
6361 { objc-instance-variable-decl-list[opt] }
6363 objc-instance-variable-decl-list:
6364 objc-visibility-spec
6365 objc-instance-variable-decl ;
6367 objc-instance-variable-decl-list objc-visibility-spec
6368 objc-instance-variable-decl-list objc-instance-variable-decl ;
6369 objc-instance-variable-decl-list ;
6371 objc-visibility-spec:
6376 objc-instance-variable-decl:
6381 c_parser_objc_class_instance_variables (c_parser
*parser
)
6383 gcc_assert (c_parser_next_token_is (parser
, CPP_OPEN_BRACE
));
6384 c_parser_consume_token (parser
);
6385 while (c_parser_next_token_is_not (parser
, CPP_EOF
))
6388 /* Parse any stray semicolon. */
6389 if (c_parser_next_token_is (parser
, CPP_SEMICOLON
))
6391 pedwarn (c_parser_peek_token (parser
)->location
, OPT_pedantic
,
6392 "extra semicolon in struct or union specified");
6393 c_parser_consume_token (parser
);
6396 /* Stop if at the end of the instance variables. */
6397 if (c_parser_next_token_is (parser
, CPP_CLOSE_BRACE
))
6399 c_parser_consume_token (parser
);
6402 /* Parse any objc-visibility-spec. */
6403 if (c_parser_next_token_is_keyword (parser
, RID_PRIVATE
))
6405 c_parser_consume_token (parser
);
6406 objc_set_visibility (2);
6409 else if (c_parser_next_token_is_keyword (parser
, RID_PROTECTED
))
6411 c_parser_consume_token (parser
);
6412 objc_set_visibility (0);
6415 else if (c_parser_next_token_is_keyword (parser
, RID_PUBLIC
))
6417 c_parser_consume_token (parser
);
6418 objc_set_visibility (1);
6421 else if (c_parser_next_token_is (parser
, CPP_PRAGMA
))
6423 c_parser_pragma (parser
, pragma_external
);
6427 /* Parse some comma-separated declarations. */
6428 decls
= c_parser_struct_declaration (parser
);
6430 /* Comma-separated instance variables are chained together in
6431 reverse order; add them one by one. */
6432 tree ivar
= nreverse (decls
);
6433 for (; ivar
; ivar
= TREE_CHAIN (ivar
))
6434 objc_add_instance_variable (copy_node (ivar
));
6436 c_parser_skip_until_found (parser
, CPP_SEMICOLON
, "expected %<;%>");
6440 /* Parse an objc-class-declaration.
6442 objc-class-declaration:
6443 @class identifier-list ;
6447 c_parser_objc_class_declaration (c_parser
*parser
)
6449 tree list
= NULL_TREE
;
6450 gcc_assert (c_parser_next_token_is_keyword (parser
, RID_CLASS
));
6451 c_parser_consume_token (parser
);
6452 /* Any identifiers, including those declared as type names, are OK
6457 if (c_parser_next_token_is_not (parser
, CPP_NAME
))
6459 c_parser_error (parser
, "expected identifier");
6462 id
= c_parser_peek_token (parser
)->value
;
6463 list
= chainon (list
, build_tree_list (NULL_TREE
, id
));
6464 c_parser_consume_token (parser
);
6465 if (c_parser_next_token_is (parser
, CPP_COMMA
))
6466 c_parser_consume_token (parser
);
6470 c_parser_skip_until_found (parser
, CPP_SEMICOLON
, "expected %<;%>");
6471 objc_declare_class (list
);
6474 /* Parse an objc-alias-declaration.
6476 objc-alias-declaration:
6477 @compatibility_alias identifier identifier ;
6481 c_parser_objc_alias_declaration (c_parser
*parser
)
6484 gcc_assert (c_parser_next_token_is_keyword (parser
, RID_AT_ALIAS
));
6485 c_parser_consume_token (parser
);
6486 if (c_parser_next_token_is_not (parser
, CPP_NAME
))
6488 c_parser_error (parser
, "expected identifier");
6489 c_parser_skip_until_found (parser
, CPP_SEMICOLON
, NULL
);
6492 id1
= c_parser_peek_token (parser
)->value
;
6493 c_parser_consume_token (parser
);
6494 if (c_parser_next_token_is_not (parser
, CPP_NAME
))
6496 c_parser_error (parser
, "expected identifier");
6497 c_parser_skip_until_found (parser
, CPP_SEMICOLON
, NULL
);
6500 id2
= c_parser_peek_token (parser
)->value
;
6501 c_parser_consume_token (parser
);
6502 c_parser_skip_until_found (parser
, CPP_SEMICOLON
, "expected %<;%>");
6503 objc_declare_alias (id1
, id2
);
6506 /* Parse an objc-protocol-definition.
6508 objc-protocol-definition:
6509 @protocol identifier objc-protocol-refs[opt] objc-methodprotolist @end
6510 @protocol identifier-list ;
6512 "@protocol identifier ;" should be resolved as "@protocol
6513 identifier-list ;": objc-methodprotolist may not start with a
6514 semicolon in the first alternative if objc-protocol-refs are
6518 c_parser_objc_protocol_definition (c_parser
*parser
)
6520 gcc_assert (c_parser_next_token_is_keyword (parser
, RID_AT_PROTOCOL
));
6521 c_parser_consume_token (parser
);
6522 if (c_parser_next_token_is_not (parser
, CPP_NAME
))
6524 c_parser_error (parser
, "expected identifier");
6527 if (c_parser_peek_2nd_token (parser
)->type
== CPP_COMMA
6528 || c_parser_peek_2nd_token (parser
)->type
== CPP_SEMICOLON
)
6530 tree list
= NULL_TREE
;
6531 /* Any identifiers, including those declared as type names, are
6536 if (c_parser_next_token_is_not (parser
, CPP_NAME
))
6538 c_parser_error (parser
, "expected identifier");
6541 id
= c_parser_peek_token (parser
)->value
;
6542 list
= chainon (list
, build_tree_list (NULL_TREE
, id
));
6543 c_parser_consume_token (parser
);
6544 if (c_parser_next_token_is (parser
, CPP_COMMA
))
6545 c_parser_consume_token (parser
);
6549 c_parser_skip_until_found (parser
, CPP_SEMICOLON
, "expected %<;%>");
6550 objc_declare_protocols (list
);
6554 tree id
= c_parser_peek_token (parser
)->value
;
6555 tree proto
= NULL_TREE
;
6556 c_parser_consume_token (parser
);
6557 if (c_parser_next_token_is (parser
, CPP_LESS
))
6558 proto
= c_parser_objc_protocol_refs (parser
);
6559 parser
->objc_pq_context
= true;
6560 objc_start_protocol (id
, proto
);
6561 c_parser_objc_methodprotolist (parser
);
6562 c_parser_require_keyword (parser
, RID_AT_END
, "expected %<@end%>");
6563 parser
->objc_pq_context
= false;
6564 objc_finish_interface ();
6568 /* Parse an objc-method-type.
6575 static enum tree_code
6576 c_parser_objc_method_type (c_parser
*parser
)
6578 switch (c_parser_peek_token (parser
)->type
)
6581 c_parser_consume_token (parser
);
6584 c_parser_consume_token (parser
);
6591 /* Parse an objc-method-definition.
6593 objc-method-definition:
6594 objc-method-type objc-method-decl ;[opt] compound-statement
6598 c_parser_objc_method_definition (c_parser
*parser
)
6600 enum tree_code type
= c_parser_objc_method_type (parser
);
6602 objc_set_method_type (type
);
6603 parser
->objc_pq_context
= true;
6604 decl
= c_parser_objc_method_decl (parser
);
6605 if (c_parser_next_token_is (parser
, CPP_SEMICOLON
))
6607 c_parser_consume_token (parser
);
6608 pedwarn (c_parser_peek_token (parser
)->location
, OPT_pedantic
,
6609 "extra semicolon in method definition specified");
6611 if (!c_parser_next_token_is (parser
, CPP_OPEN_BRACE
))
6613 c_parser_error (parser
, "expected %<{%>");
6616 parser
->objc_pq_context
= false;
6617 objc_start_method_definition (decl
);
6618 add_stmt (c_parser_compound_statement (parser
));
6619 objc_finish_method_definition (current_function_decl
);
6622 /* Parse an objc-methodprotolist.
6624 objc-methodprotolist:
6626 objc-methodprotolist objc-methodproto
6627 objc-methodprotolist declaration
6628 objc-methodprotolist ;
6630 The declaration is a data definition, which may be missing
6631 declaration specifiers under the same rules and diagnostics as
6632 other data definitions outside functions, and the stray semicolon
6633 is diagnosed the same way as a stray semicolon outside a
6637 c_parser_objc_methodprotolist (c_parser
*parser
)
6641 /* The list is terminated by @end. */
6642 switch (c_parser_peek_token (parser
)->type
)
6645 pedwarn (c_parser_peek_token (parser
)->location
, OPT_pedantic
,
6646 "ISO C does not allow extra %<;%> outside of a function");
6647 c_parser_consume_token (parser
);
6651 c_parser_objc_methodproto (parser
);
6654 c_parser_pragma (parser
, pragma_external
);
6659 if (c_parser_next_token_is_keyword (parser
, RID_AT_END
))
6661 c_parser_declaration_or_fndef (parser
, false, false, true,
6668 /* Parse an objc-methodproto.
6671 objc-method-type objc-method-decl ;
6675 c_parser_objc_methodproto (c_parser
*parser
)
6677 enum tree_code type
= c_parser_objc_method_type (parser
);
6679 objc_set_method_type (type
);
6680 /* Remember protocol qualifiers in prototypes. */
6681 parser
->objc_pq_context
= true;
6682 decl
= c_parser_objc_method_decl (parser
);
6683 /* Forget protocol qualifiers here. */
6684 parser
->objc_pq_context
= false;
6685 objc_add_method_declaration (decl
);
6686 c_parser_skip_until_found (parser
, CPP_SEMICOLON
, "expected %<;%>");
6689 /* Parse an objc-method-decl.
6692 ( objc-type-name ) objc-selector
6694 ( objc-type-name ) objc-keyword-selector objc-optparmlist
6695 objc-keyword-selector objc-optparmlist
6697 objc-keyword-selector:
6699 objc-keyword-selector objc-keyword-decl
6702 objc-selector : ( objc-type-name ) identifier
6703 objc-selector : identifier
6704 : ( objc-type-name ) identifier
6708 objc-optparms objc-optellipsis
6712 objc-opt-parms , parameter-declaration
6720 c_parser_objc_method_decl (c_parser
*parser
)
6722 tree type
= NULL_TREE
;
6724 tree parms
= NULL_TREE
;
6725 bool ellipsis
= false;
6727 if (c_parser_next_token_is (parser
, CPP_OPEN_PAREN
))
6729 c_parser_consume_token (parser
);
6730 type
= c_parser_objc_type_name (parser
);
6731 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, "expected %<)%>");
6733 sel
= c_parser_objc_selector (parser
);
6734 /* If there is no selector, or a colon follows, we have an
6735 objc-keyword-selector. If there is a selector, and a colon does
6736 not follow, that selector ends the objc-method-decl. */
6737 if (!sel
|| c_parser_next_token_is (parser
, CPP_COLON
))
6740 tree list
= NULL_TREE
;
6743 tree atype
= NULL_TREE
, id
, keyworddecl
;
6744 if (!c_parser_require (parser
, CPP_COLON
, "expected %<:%>"))
6746 if (c_parser_next_token_is (parser
, CPP_OPEN_PAREN
))
6748 c_parser_consume_token (parser
);
6749 atype
= c_parser_objc_type_name (parser
);
6750 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
,
6753 if (c_parser_next_token_is_not (parser
, CPP_NAME
))
6755 c_parser_error (parser
, "expected identifier");
6756 return error_mark_node
;
6758 id
= c_parser_peek_token (parser
)->value
;
6759 c_parser_consume_token (parser
);
6760 keyworddecl
= objc_build_keyword_decl (tsel
, atype
, id
);
6761 list
= chainon (list
, keyworddecl
);
6762 tsel
= c_parser_objc_selector (parser
);
6763 if (!tsel
&& c_parser_next_token_is_not (parser
, CPP_COLON
))
6766 /* Parse the optional parameter list. Optional Objective-C
6767 method parameters follow the C syntax, and may include '...'
6768 to denote a variable number of arguments. */
6769 parms
= make_node (TREE_LIST
);
6770 while (c_parser_next_token_is (parser
, CPP_COMMA
))
6772 struct c_parm
*parm
;
6773 c_parser_consume_token (parser
);
6774 if (c_parser_next_token_is (parser
, CPP_ELLIPSIS
))
6777 c_parser_consume_token (parser
);
6780 parm
= c_parser_parameter_declaration (parser
, NULL_TREE
);
6783 parms
= chainon (parms
,
6784 build_tree_list (NULL_TREE
, grokparm (parm
)));
6788 return objc_build_method_signature (type
, sel
, parms
, ellipsis
);
6791 /* Parse an objc-type-name.
6794 objc-type-qualifiers[opt] type-name
6795 objc-type-qualifiers[opt]
6797 objc-type-qualifiers:
6799 objc-type-qualifiers objc-type-qualifier
6801 objc-type-qualifier: one of
6802 in out inout bycopy byref oneway
6806 c_parser_objc_type_name (c_parser
*parser
)
6808 tree quals
= NULL_TREE
;
6809 struct c_type_name
*type_name
= NULL
;
6810 tree type
= NULL_TREE
;
6813 c_token
*token
= c_parser_peek_token (parser
);
6814 if (token
->type
== CPP_KEYWORD
6815 && (token
->keyword
== RID_IN
6816 || token
->keyword
== RID_OUT
6817 || token
->keyword
== RID_INOUT
6818 || token
->keyword
== RID_BYCOPY
6819 || token
->keyword
== RID_BYREF
6820 || token
->keyword
== RID_ONEWAY
))
6822 quals
= chainon (quals
, build_tree_list (NULL_TREE
, token
->value
));
6823 c_parser_consume_token (parser
);
6828 if (c_parser_next_token_starts_typename (parser
))
6829 type_name
= c_parser_type_name (parser
);
6831 type
= groktypename (type_name
, NULL
, NULL
);
6832 return build_tree_list (quals
, type
);
6835 /* Parse objc-protocol-refs.
6842 c_parser_objc_protocol_refs (c_parser
*parser
)
6844 tree list
= NULL_TREE
;
6845 gcc_assert (c_parser_next_token_is (parser
, CPP_LESS
));
6846 c_parser_consume_token (parser
);
6847 /* Any identifiers, including those declared as type names, are OK
6852 if (c_parser_next_token_is_not (parser
, CPP_NAME
))
6854 c_parser_error (parser
, "expected identifier");
6857 id
= c_parser_peek_token (parser
)->value
;
6858 list
= chainon (list
, build_tree_list (NULL_TREE
, id
));
6859 c_parser_consume_token (parser
);
6860 if (c_parser_next_token_is (parser
, CPP_COMMA
))
6861 c_parser_consume_token (parser
);
6865 c_parser_require (parser
, CPP_GREATER
, "expected %<>%>");
6869 /* Parse an objc-try-catch-statement.
6871 objc-try-catch-statement:
6872 @try compound-statement objc-catch-list[opt]
6873 @try compound-statement objc-catch-list[opt] @finally compound-statement
6876 @catch ( parameter-declaration ) compound-statement
6877 objc-catch-list @catch ( parameter-declaration ) compound-statement
6881 c_parser_objc_try_catch_statement (c_parser
*parser
)
6885 gcc_assert (c_parser_next_token_is_keyword (parser
, RID_TRY
));
6886 c_parser_consume_token (parser
);
6887 loc
= c_parser_peek_token (parser
)->location
;
6888 stmt
= c_parser_compound_statement (parser
);
6889 objc_begin_try_stmt (loc
, stmt
);
6890 while (c_parser_next_token_is_keyword (parser
, RID_CATCH
))
6892 struct c_parm
*parm
;
6893 c_parser_consume_token (parser
);
6894 if (!c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
6896 parm
= c_parser_parameter_declaration (parser
, NULL_TREE
);
6899 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, NULL
);
6902 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, "expected %<)%>");
6903 objc_begin_catch_clause (grokparm (parm
));
6904 if (c_parser_require (parser
, CPP_OPEN_BRACE
, "expected %<{%>"))
6905 c_parser_compound_statement_nostart (parser
);
6906 objc_finish_catch_clause ();
6908 if (c_parser_next_token_is_keyword (parser
, RID_AT_FINALLY
))
6912 c_parser_consume_token (parser
);
6913 finloc
= c_parser_peek_token (parser
)->location
;
6914 finstmt
= c_parser_compound_statement (parser
);
6915 objc_build_finally_clause (finloc
, finstmt
);
6917 objc_finish_try_stmt ();
6920 /* Parse an objc-synchronized-statement.
6922 objc-synchronized-statement:
6923 @synchronized ( expression ) compound-statement
6927 c_parser_objc_synchronized_statement (c_parser
*parser
)
6931 gcc_assert (c_parser_next_token_is_keyword (parser
, RID_AT_SYNCHRONIZED
));
6932 c_parser_consume_token (parser
);
6933 loc
= c_parser_peek_token (parser
)->location
;
6934 if (c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
6936 expr
= c_parser_expression (parser
).value
;
6937 expr
= c_fully_fold (expr
, false, NULL
);
6938 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, "expected %<)%>");
6941 expr
= error_mark_node
;
6942 stmt
= c_parser_compound_statement (parser
);
6943 objc_build_synchronized (loc
, expr
, stmt
);
6946 /* Parse an objc-selector; return NULL_TREE without an error if the
6947 next token is not an objc-selector.
6952 enum struct union if else while do for switch case default
6953 break continue return goto asm sizeof typeof __alignof
6954 unsigned long const short volatile signed restrict _Complex
6955 in out inout bycopy byref oneway int char float double void _Bool
6957 ??? Why this selection of keywords but not, for example, storage
6958 class specifiers? */
6961 c_parser_objc_selector (c_parser
*parser
)
6963 c_token
*token
= c_parser_peek_token (parser
);
6964 tree value
= token
->value
;
6965 if (token
->type
== CPP_NAME
)
6967 c_parser_consume_token (parser
);
6970 if (token
->type
!= CPP_KEYWORD
)
6972 switch (token
->keyword
)
7014 c_parser_consume_token (parser
);
7021 /* Parse an objc-selector-arg.
7025 objc-keywordname-list
7027 objc-keywordname-list:
7029 objc-keywordname-list objc-keywordname
7037 c_parser_objc_selector_arg (c_parser
*parser
)
7039 tree sel
= c_parser_objc_selector (parser
);
7040 tree list
= NULL_TREE
;
7041 if (sel
&& c_parser_next_token_is_not (parser
, CPP_COLON
))
7045 if (!c_parser_require (parser
, CPP_COLON
, "expected %<:%>"))
7047 list
= chainon (list
, build_tree_list (sel
, NULL_TREE
));
7048 sel
= c_parser_objc_selector (parser
);
7049 if (!sel
&& c_parser_next_token_is_not (parser
, CPP_COLON
))
7055 /* Parse an objc-receiver.
7064 c_parser_objc_receiver (c_parser
*parser
)
7066 if (c_parser_peek_token (parser
)->type
== CPP_NAME
7067 && (c_parser_peek_token (parser
)->id_kind
== C_ID_TYPENAME
7068 || c_parser_peek_token (parser
)->id_kind
== C_ID_CLASSNAME
))
7070 tree id
= c_parser_peek_token (parser
)->value
;
7071 c_parser_consume_token (parser
);
7072 return objc_get_class_reference (id
);
7074 return c_fully_fold (c_parser_expression (parser
).value
, false, NULL
);
7077 /* Parse objc-message-args.
7081 objc-keywordarg-list
7083 objc-keywordarg-list:
7085 objc-keywordarg-list objc-keywordarg
7088 objc-selector : objc-keywordexpr
7093 c_parser_objc_message_args (c_parser
*parser
)
7095 tree sel
= c_parser_objc_selector (parser
);
7096 tree list
= NULL_TREE
;
7097 if (sel
&& c_parser_next_token_is_not (parser
, CPP_COLON
))
7102 if (!c_parser_require (parser
, CPP_COLON
, "expected %<:%>"))
7103 return error_mark_node
;
7104 keywordexpr
= c_parser_objc_keywordexpr (parser
);
7105 list
= chainon (list
, build_tree_list (sel
, keywordexpr
));
7106 sel
= c_parser_objc_selector (parser
);
7107 if (!sel
&& c_parser_next_token_is_not (parser
, CPP_COLON
))
7113 /* Parse an objc-keywordexpr.
7120 c_parser_objc_keywordexpr (c_parser
*parser
)
7123 VEC(tree
,gc
) *expr_list
= c_parser_expr_list (parser
, true, true, NULL
);
7124 if (VEC_length (tree
, expr_list
) == 1)
7126 /* Just return the expression, remove a level of
7128 ret
= VEC_index (tree
, expr_list
, 0);
7132 /* We have a comma expression, we will collapse later. */
7133 ret
= build_tree_list_vec (expr_list
);
7135 release_tree_vector (expr_list
);
7140 /* Handle pragmas. Some OpenMP pragmas are associated with, and therefore
7141 should be considered, statements. ALLOW_STMT is true if we're within
7142 the context of a function and such pragmas are to be allowed. Returns
7143 true if we actually parsed such a pragma. */
7146 c_parser_pragma (c_parser
*parser
, enum pragma_context context
)
7150 id
= c_parser_peek_token (parser
)->pragma_kind
;
7151 gcc_assert (id
!= PRAGMA_NONE
);
7155 case PRAGMA_OMP_BARRIER
:
7156 if (context
!= pragma_compound
)
7158 if (context
== pragma_stmt
)
7159 c_parser_error (parser
, "%<#pragma omp barrier%> may only be "
7160 "used in compound statements");
7163 c_parser_omp_barrier (parser
);
7166 case PRAGMA_OMP_FLUSH
:
7167 if (context
!= pragma_compound
)
7169 if (context
== pragma_stmt
)
7170 c_parser_error (parser
, "%<#pragma omp flush%> may only be "
7171 "used in compound statements");
7174 c_parser_omp_flush (parser
);
7177 case PRAGMA_OMP_TASKWAIT
:
7178 if (context
!= pragma_compound
)
7180 if (context
== pragma_stmt
)
7181 c_parser_error (parser
, "%<#pragma omp taskwait%> may only be "
7182 "used in compound statements");
7185 c_parser_omp_taskwait (parser
);
7188 case PRAGMA_OMP_THREADPRIVATE
:
7189 c_parser_omp_threadprivate (parser
);
7192 case PRAGMA_OMP_SECTION
:
7193 error_at (c_parser_peek_token (parser
)->location
,
7194 "%<#pragma omp section%> may only be used in "
7195 "%<#pragma omp sections%> construct");
7196 c_parser_skip_until_found (parser
, CPP_PRAGMA_EOL
, NULL
);
7199 case PRAGMA_GCC_PCH_PREPROCESS
:
7200 c_parser_error (parser
, "%<#pragma GCC pch_preprocess%> must be first");
7201 c_parser_skip_until_found (parser
, CPP_PRAGMA_EOL
, NULL
);
7205 if (id
< PRAGMA_FIRST_EXTERNAL
)
7207 if (context
== pragma_external
)
7210 c_parser_error (parser
, "expected declaration specifiers");
7211 c_parser_skip_until_found (parser
, CPP_PRAGMA_EOL
, NULL
);
7214 c_parser_omp_construct (parser
);
7220 c_parser_consume_pragma (parser
);
7221 c_invoke_pragma_handler (id
);
7223 /* Skip to EOL, but suppress any error message. Those will have been
7224 generated by the handler routine through calling error, as opposed
7225 to calling c_parser_error. */
7226 parser
->error
= true;
7227 c_parser_skip_to_pragma_eol (parser
);
7232 /* The interface the pragma parsers have to the lexer. */
7235 pragma_lex (tree
*value
)
7237 c_token
*tok
= c_parser_peek_token (the_parser
);
7238 enum cpp_ttype ret
= tok
->type
;
7240 *value
= tok
->value
;
7241 if (ret
== CPP_PRAGMA_EOL
|| ret
== CPP_EOF
)
7245 if (ret
== CPP_KEYWORD
)
7247 c_parser_consume_token (the_parser
);
7254 c_parser_pragma_pch_preprocess (c_parser
*parser
)
7258 c_parser_consume_pragma (parser
);
7259 if (c_parser_next_token_is (parser
, CPP_STRING
))
7261 name
= c_parser_peek_token (parser
)->value
;
7262 c_parser_consume_token (parser
);
7265 c_parser_error (parser
, "expected string literal");
7266 c_parser_skip_to_pragma_eol (parser
);
7269 c_common_pch_pragma (parse_in
, TREE_STRING_POINTER (name
));
7272 /* OpenMP 2.5 parsing routines. */
7274 /* Returns name of the next clause.
7275 If the clause is not recognized PRAGMA_OMP_CLAUSE_NONE is returned and
7276 the token is not consumed. Otherwise appropriate pragma_omp_clause is
7277 returned and the token is consumed. */
7279 static pragma_omp_clause
7280 c_parser_omp_clause_name (c_parser
*parser
)
7282 pragma_omp_clause result
= PRAGMA_OMP_CLAUSE_NONE
;
7284 if (c_parser_next_token_is_keyword (parser
, RID_IF
))
7285 result
= PRAGMA_OMP_CLAUSE_IF
;
7286 else if (c_parser_next_token_is_keyword (parser
, RID_DEFAULT
))
7287 result
= PRAGMA_OMP_CLAUSE_DEFAULT
;
7288 else if (c_parser_next_token_is (parser
, CPP_NAME
))
7290 const char *p
= IDENTIFIER_POINTER (c_parser_peek_token (parser
)->value
);
7295 if (!strcmp ("collapse", p
))
7296 result
= PRAGMA_OMP_CLAUSE_COLLAPSE
;
7297 else if (!strcmp ("copyin", p
))
7298 result
= PRAGMA_OMP_CLAUSE_COPYIN
;
7299 else if (!strcmp ("copyprivate", p
))
7300 result
= PRAGMA_OMP_CLAUSE_COPYPRIVATE
;
7303 if (!strcmp ("firstprivate", p
))
7304 result
= PRAGMA_OMP_CLAUSE_FIRSTPRIVATE
;
7307 if (!strcmp ("lastprivate", p
))
7308 result
= PRAGMA_OMP_CLAUSE_LASTPRIVATE
;
7311 if (!strcmp ("nowait", p
))
7312 result
= PRAGMA_OMP_CLAUSE_NOWAIT
;
7313 else if (!strcmp ("num_threads", p
))
7314 result
= PRAGMA_OMP_CLAUSE_NUM_THREADS
;
7317 if (!strcmp ("ordered", p
))
7318 result
= PRAGMA_OMP_CLAUSE_ORDERED
;
7321 if (!strcmp ("private", p
))
7322 result
= PRAGMA_OMP_CLAUSE_PRIVATE
;
7325 if (!strcmp ("reduction", p
))
7326 result
= PRAGMA_OMP_CLAUSE_REDUCTION
;
7329 if (!strcmp ("schedule", p
))
7330 result
= PRAGMA_OMP_CLAUSE_SCHEDULE
;
7331 else if (!strcmp ("shared", p
))
7332 result
= PRAGMA_OMP_CLAUSE_SHARED
;
7335 if (!strcmp ("untied", p
))
7336 result
= PRAGMA_OMP_CLAUSE_UNTIED
;
7341 if (result
!= PRAGMA_OMP_CLAUSE_NONE
)
7342 c_parser_consume_token (parser
);
7347 /* Validate that a clause of the given type does not already exist. */
7350 check_no_duplicate_clause (tree clauses
, enum omp_clause_code code
,
7355 for (c
= clauses
; c
; c
= OMP_CLAUSE_CHAIN (c
))
7356 if (OMP_CLAUSE_CODE (c
) == code
)
7358 location_t loc
= OMP_CLAUSE_LOCATION (c
);
7359 error_at (loc
, "too many %qs clauses", name
);
7367 variable-list , identifier
7369 If KIND is nonzero, create the appropriate node and install the
7370 decl in OMP_CLAUSE_DECL and add the node to the head of the list.
7371 If KIND is nonzero, CLAUSE_LOC is the location of the clause.
7373 If KIND is zero, create a TREE_LIST with the decl in TREE_PURPOSE;
7374 return the list created. */
7377 c_parser_omp_variable_list (c_parser
*parser
,
7378 location_t clause_loc
,
7379 enum omp_clause_code kind
,
7382 if (c_parser_next_token_is_not (parser
, CPP_NAME
)
7383 || c_parser_peek_token (parser
)->id_kind
!= C_ID_ID
)
7384 c_parser_error (parser
, "expected identifier");
7386 while (c_parser_next_token_is (parser
, CPP_NAME
)
7387 && c_parser_peek_token (parser
)->id_kind
== C_ID_ID
)
7389 tree t
= lookup_name (c_parser_peek_token (parser
)->value
);
7392 undeclared_variable (c_parser_peek_token (parser
)->location
,
7393 c_parser_peek_token (parser
)->value
);
7394 else if (t
== error_mark_node
)
7398 tree u
= build_omp_clause (clause_loc
, kind
);
7399 OMP_CLAUSE_DECL (u
) = t
;
7400 OMP_CLAUSE_CHAIN (u
) = list
;
7404 list
= tree_cons (t
, NULL_TREE
, list
);
7406 c_parser_consume_token (parser
);
7408 if (c_parser_next_token_is_not (parser
, CPP_COMMA
))
7411 c_parser_consume_token (parser
);
7417 /* Similarly, but expect leading and trailing parenthesis. This is a very
7418 common case for omp clauses. */
7421 c_parser_omp_var_list_parens (c_parser
*parser
, enum omp_clause_code kind
,
7424 /* The clauses location. */
7425 location_t loc
= c_parser_peek_token (parser
)->location
;
7427 if (c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
7429 list
= c_parser_omp_variable_list (parser
, loc
, kind
, list
);
7430 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, "expected %<)%>");
7436 collapse ( constant-expression ) */
7439 c_parser_omp_clause_collapse (c_parser
*parser
, tree list
)
7441 tree c
, num
= error_mark_node
;
7445 check_no_duplicate_clause (list
, OMP_CLAUSE_COLLAPSE
, "collapse");
7447 loc
= c_parser_peek_token (parser
)->location
;
7448 if (c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
7450 num
= c_parser_expr_no_commas (parser
, NULL
).value
;
7451 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, "expected %<)%>");
7453 if (num
== error_mark_node
)
7455 if (!INTEGRAL_TYPE_P (TREE_TYPE (num
))
7456 || !host_integerp (num
, 0)
7457 || (n
= tree_low_cst (num
, 0)) <= 0
7461 "collapse argument needs positive constant integer expression");
7464 c
= build_omp_clause (loc
, OMP_CLAUSE_COLLAPSE
);
7465 OMP_CLAUSE_COLLAPSE_EXPR (c
) = num
;
7466 OMP_CLAUSE_CHAIN (c
) = list
;
7471 copyin ( variable-list ) */
7474 c_parser_omp_clause_copyin (c_parser
*parser
, tree list
)
7476 return c_parser_omp_var_list_parens (parser
, OMP_CLAUSE_COPYIN
, list
);
7480 copyprivate ( variable-list ) */
7483 c_parser_omp_clause_copyprivate (c_parser
*parser
, tree list
)
7485 return c_parser_omp_var_list_parens (parser
, OMP_CLAUSE_COPYPRIVATE
, list
);
7489 default ( shared | none ) */
7492 c_parser_omp_clause_default (c_parser
*parser
, tree list
)
7494 enum omp_clause_default_kind kind
= OMP_CLAUSE_DEFAULT_UNSPECIFIED
;
7495 location_t loc
= c_parser_peek_token (parser
)->location
;
7498 if (!c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
7500 if (c_parser_next_token_is (parser
, CPP_NAME
))
7502 const char *p
= IDENTIFIER_POINTER (c_parser_peek_token (parser
)->value
);
7507 if (strcmp ("none", p
) != 0)
7509 kind
= OMP_CLAUSE_DEFAULT_NONE
;
7513 if (strcmp ("shared", p
) != 0)
7515 kind
= OMP_CLAUSE_DEFAULT_SHARED
;
7522 c_parser_consume_token (parser
);
7527 c_parser_error (parser
, "expected %<none%> or %<shared%>");
7529 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, "expected %<)%>");
7531 if (kind
== OMP_CLAUSE_DEFAULT_UNSPECIFIED
)
7534 check_no_duplicate_clause (list
, OMP_CLAUSE_DEFAULT
, "default");
7535 c
= build_omp_clause (loc
, OMP_CLAUSE_DEFAULT
);
7536 OMP_CLAUSE_CHAIN (c
) = list
;
7537 OMP_CLAUSE_DEFAULT_KIND (c
) = kind
;
7543 firstprivate ( variable-list ) */
7546 c_parser_omp_clause_firstprivate (c_parser
*parser
, tree list
)
7548 return c_parser_omp_var_list_parens (parser
, OMP_CLAUSE_FIRSTPRIVATE
, list
);
7552 if ( expression ) */
7555 c_parser_omp_clause_if (c_parser
*parser
, tree list
)
7557 location_t loc
= c_parser_peek_token (parser
)->location
;
7558 if (c_parser_next_token_is (parser
, CPP_OPEN_PAREN
))
7560 tree t
= c_parser_paren_condition (parser
);
7563 check_no_duplicate_clause (list
, OMP_CLAUSE_IF
, "if");
7565 c
= build_omp_clause (loc
, OMP_CLAUSE_IF
);
7566 OMP_CLAUSE_IF_EXPR (c
) = t
;
7567 OMP_CLAUSE_CHAIN (c
) = list
;
7571 c_parser_error (parser
, "expected %<(%>");
7577 lastprivate ( variable-list ) */
7580 c_parser_omp_clause_lastprivate (c_parser
*parser
, tree list
)
7582 return c_parser_omp_var_list_parens (parser
, OMP_CLAUSE_LASTPRIVATE
, list
);
7589 c_parser_omp_clause_nowait (c_parser
*parser ATTRIBUTE_UNUSED
, tree list
)
7592 location_t loc
= c_parser_peek_token (parser
)->location
;
7594 check_no_duplicate_clause (list
, OMP_CLAUSE_NOWAIT
, "nowait");
7596 c
= build_omp_clause (loc
, OMP_CLAUSE_NOWAIT
);
7597 OMP_CLAUSE_CHAIN (c
) = list
;
7602 num_threads ( expression ) */
7605 c_parser_omp_clause_num_threads (c_parser
*parser
, tree list
)
7607 location_t num_threads_loc
= c_parser_peek_token (parser
)->location
;
7608 if (c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
7610 location_t expr_loc
= c_parser_peek_token (parser
)->location
;
7611 tree c
, t
= c_parser_expression (parser
).value
;
7612 t
= c_fully_fold (t
, false, NULL
);
7614 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, "expected %<)%>");
7616 if (!INTEGRAL_TYPE_P (TREE_TYPE (t
)))
7618 c_parser_error (parser
, "expected integer expression");
7622 /* Attempt to statically determine when the number isn't positive. */
7623 c
= fold_build2_loc (expr_loc
, LE_EXPR
, boolean_type_node
, t
,
7624 build_int_cst (TREE_TYPE (t
), 0));
7625 if (CAN_HAVE_LOCATION_P (c
))
7626 SET_EXPR_LOCATION (c
, expr_loc
);
7627 if (c
== boolean_true_node
)
7629 warning_at (expr_loc
, 0,
7630 "%<num_threads%> value must be positive");
7631 t
= integer_one_node
;
7634 check_no_duplicate_clause (list
, OMP_CLAUSE_NUM_THREADS
, "num_threads");
7636 c
= build_omp_clause (num_threads_loc
, OMP_CLAUSE_NUM_THREADS
);
7637 OMP_CLAUSE_NUM_THREADS_EXPR (c
) = t
;
7638 OMP_CLAUSE_CHAIN (c
) = list
;
7649 c_parser_omp_clause_ordered (c_parser
*parser
, tree list
)
7653 check_no_duplicate_clause (list
, OMP_CLAUSE_ORDERED
, "ordered");
7655 c
= build_omp_clause (c_parser_peek_token (parser
)->location
,
7656 OMP_CLAUSE_ORDERED
);
7657 OMP_CLAUSE_CHAIN (c
) = list
;
7663 private ( variable-list ) */
7666 c_parser_omp_clause_private (c_parser
*parser
, tree list
)
7668 return c_parser_omp_var_list_parens (parser
, OMP_CLAUSE_PRIVATE
, list
);
7672 reduction ( reduction-operator : variable-list )
7675 One of: + * - & ^ | && || */
7678 c_parser_omp_clause_reduction (c_parser
*parser
, tree list
)
7680 location_t clause_loc
= c_parser_peek_token (parser
)->location
;
7681 if (c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
7683 enum tree_code code
;
7685 switch (c_parser_peek_token (parser
)->type
)
7697 code
= BIT_AND_EXPR
;
7700 code
= BIT_XOR_EXPR
;
7703 code
= BIT_IOR_EXPR
;
7706 code
= TRUTH_ANDIF_EXPR
;
7709 code
= TRUTH_ORIF_EXPR
;
7712 c_parser_error (parser
,
7713 "expected %<+%>, %<*%>, %<-%>, %<&%>, "
7714 "%<^%>, %<|%>, %<&&%>, or %<||%>");
7715 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, 0);
7718 c_parser_consume_token (parser
);
7719 if (c_parser_require (parser
, CPP_COLON
, "expected %<:%>"))
7723 nl
= c_parser_omp_variable_list (parser
, clause_loc
,
7724 OMP_CLAUSE_REDUCTION
, list
);
7725 for (c
= nl
; c
!= list
; c
= OMP_CLAUSE_CHAIN (c
))
7726 OMP_CLAUSE_REDUCTION_CODE (c
) = code
;
7730 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, "expected %<)%>");
7736 schedule ( schedule-kind )
7737 schedule ( schedule-kind , expression )
7740 static | dynamic | guided | runtime | auto
7744 c_parser_omp_clause_schedule (c_parser
*parser
, tree list
)
7747 location_t loc
= c_parser_peek_token (parser
)->location
;
7749 if (!c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
7752 c
= build_omp_clause (loc
, OMP_CLAUSE_SCHEDULE
);
7754 if (c_parser_next_token_is (parser
, CPP_NAME
))
7756 tree kind
= c_parser_peek_token (parser
)->value
;
7757 const char *p
= IDENTIFIER_POINTER (kind
);
7762 if (strcmp ("dynamic", p
) != 0)
7764 OMP_CLAUSE_SCHEDULE_KIND (c
) = OMP_CLAUSE_SCHEDULE_DYNAMIC
;
7768 if (strcmp ("guided", p
) != 0)
7770 OMP_CLAUSE_SCHEDULE_KIND (c
) = OMP_CLAUSE_SCHEDULE_GUIDED
;
7774 if (strcmp ("runtime", p
) != 0)
7776 OMP_CLAUSE_SCHEDULE_KIND (c
) = OMP_CLAUSE_SCHEDULE_RUNTIME
;
7783 else if (c_parser_next_token_is_keyword (parser
, RID_STATIC
))
7784 OMP_CLAUSE_SCHEDULE_KIND (c
) = OMP_CLAUSE_SCHEDULE_STATIC
;
7785 else if (c_parser_next_token_is_keyword (parser
, RID_AUTO
))
7786 OMP_CLAUSE_SCHEDULE_KIND (c
) = OMP_CLAUSE_SCHEDULE_AUTO
;
7790 c_parser_consume_token (parser
);
7791 if (c_parser_next_token_is (parser
, CPP_COMMA
))
7794 c_parser_consume_token (parser
);
7796 here
= c_parser_peek_token (parser
)->location
;
7797 t
= c_parser_expr_no_commas (parser
, NULL
).value
;
7798 t
= c_fully_fold (t
, false, NULL
);
7800 if (OMP_CLAUSE_SCHEDULE_KIND (c
) == OMP_CLAUSE_SCHEDULE_RUNTIME
)
7801 error_at (here
, "schedule %<runtime%> does not take "
7802 "a %<chunk_size%> parameter");
7803 else if (OMP_CLAUSE_SCHEDULE_KIND (c
) == OMP_CLAUSE_SCHEDULE_AUTO
)
7805 "schedule %<auto%> does not take "
7806 "a %<chunk_size%> parameter");
7807 else if (TREE_CODE (TREE_TYPE (t
)) == INTEGER_TYPE
)
7808 OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c
) = t
;
7810 c_parser_error (parser
, "expected integer expression");
7812 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, "expected %<)%>");
7815 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
,
7816 "expected %<,%> or %<)%>");
7818 check_no_duplicate_clause (list
, OMP_CLAUSE_SCHEDULE
, "schedule");
7819 OMP_CLAUSE_CHAIN (c
) = list
;
7823 c_parser_error (parser
, "invalid schedule kind");
7824 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, 0);
7829 shared ( variable-list ) */
7832 c_parser_omp_clause_shared (c_parser
*parser
, tree list
)
7834 return c_parser_omp_var_list_parens (parser
, OMP_CLAUSE_SHARED
, list
);
7841 c_parser_omp_clause_untied (c_parser
*parser ATTRIBUTE_UNUSED
, tree list
)
7845 /* FIXME: Should we allow duplicates? */
7846 check_no_duplicate_clause (list
, OMP_CLAUSE_UNTIED
, "untied");
7848 c
= build_omp_clause (c_parser_peek_token (parser
)->location
,
7850 OMP_CLAUSE_CHAIN (c
) = list
;
7855 /* Parse all OpenMP clauses. The set clauses allowed by the directive
7856 is a bitmask in MASK. Return the list of clauses found; the result
7857 of clause default goes in *pdefault. */
7860 c_parser_omp_all_clauses (c_parser
*parser
, unsigned int mask
,
7863 tree clauses
= NULL
;
7866 while (c_parser_next_token_is_not (parser
, CPP_PRAGMA_EOL
))
7869 pragma_omp_clause c_kind
;
7871 tree prev
= clauses
;
7873 if (!first
&& c_parser_next_token_is (parser
, CPP_COMMA
))
7874 c_parser_consume_token (parser
);
7877 here
= c_parser_peek_token (parser
)->location
;
7878 c_kind
= c_parser_omp_clause_name (parser
);
7882 case PRAGMA_OMP_CLAUSE_COLLAPSE
:
7883 clauses
= c_parser_omp_clause_collapse (parser
, clauses
);
7884 c_name
= "collapse";
7886 case PRAGMA_OMP_CLAUSE_COPYIN
:
7887 clauses
= c_parser_omp_clause_copyin (parser
, clauses
);
7890 case PRAGMA_OMP_CLAUSE_COPYPRIVATE
:
7891 clauses
= c_parser_omp_clause_copyprivate (parser
, clauses
);
7892 c_name
= "copyprivate";
7894 case PRAGMA_OMP_CLAUSE_DEFAULT
:
7895 clauses
= c_parser_omp_clause_default (parser
, clauses
);
7898 case PRAGMA_OMP_CLAUSE_FIRSTPRIVATE
:
7899 clauses
= c_parser_omp_clause_firstprivate (parser
, clauses
);
7900 c_name
= "firstprivate";
7902 case PRAGMA_OMP_CLAUSE_IF
:
7903 clauses
= c_parser_omp_clause_if (parser
, clauses
);
7906 case PRAGMA_OMP_CLAUSE_LASTPRIVATE
:
7907 clauses
= c_parser_omp_clause_lastprivate (parser
, clauses
);
7908 c_name
= "lastprivate";
7910 case PRAGMA_OMP_CLAUSE_NOWAIT
:
7911 clauses
= c_parser_omp_clause_nowait (parser
, clauses
);
7914 case PRAGMA_OMP_CLAUSE_NUM_THREADS
:
7915 clauses
= c_parser_omp_clause_num_threads (parser
, clauses
);
7916 c_name
= "num_threads";
7918 case PRAGMA_OMP_CLAUSE_ORDERED
:
7919 clauses
= c_parser_omp_clause_ordered (parser
, clauses
);
7922 case PRAGMA_OMP_CLAUSE_PRIVATE
:
7923 clauses
= c_parser_omp_clause_private (parser
, clauses
);
7926 case PRAGMA_OMP_CLAUSE_REDUCTION
:
7927 clauses
= c_parser_omp_clause_reduction (parser
, clauses
);
7928 c_name
= "reduction";
7930 case PRAGMA_OMP_CLAUSE_SCHEDULE
:
7931 clauses
= c_parser_omp_clause_schedule (parser
, clauses
);
7932 c_name
= "schedule";
7934 case PRAGMA_OMP_CLAUSE_SHARED
:
7935 clauses
= c_parser_omp_clause_shared (parser
, clauses
);
7938 case PRAGMA_OMP_CLAUSE_UNTIED
:
7939 clauses
= c_parser_omp_clause_untied (parser
, clauses
);
7943 c_parser_error (parser
, "expected %<#pragma omp%> clause");
7947 if (((mask
>> c_kind
) & 1) == 0 && !parser
->error
)
7949 /* Remove the invalid clause(s) from the list to avoid
7950 confusing the rest of the compiler. */
7952 error_at (here
, "%qs is not valid for %qs", c_name
, where
);
7957 c_parser_skip_to_pragma_eol (parser
);
7959 return c_finish_omp_clauses (clauses
);
7966 In practice, we're also interested in adding the statement to an
7967 outer node. So it is convenient if we work around the fact that
7968 c_parser_statement calls add_stmt. */
7971 c_parser_omp_structured_block (c_parser
*parser
)
7973 tree stmt
= push_stmt_list ();
7974 c_parser_statement (parser
);
7975 return pop_stmt_list (stmt
);
7979 # pragma omp atomic new-line
7983 x binop= expr | x++ | ++x | x-- | --x
7985 +, *, -, /, &, ^, |, <<, >>
7987 where x is an lvalue expression with scalar type.
7989 LOC is the location of the #pragma token. */
7992 c_parser_omp_atomic (location_t loc
, c_parser
*parser
)
7996 enum tree_code code
;
7997 struct c_expr rhs_expr
;
7999 c_parser_skip_to_pragma_eol (parser
);
8001 lhs
= c_parser_unary_expression (parser
).value
;
8002 lhs
= c_fully_fold (lhs
, false, NULL
);
8003 switch (TREE_CODE (lhs
))
8007 c_parser_skip_to_end_of_block_or_statement (parser
);
8010 case PREINCREMENT_EXPR
:
8011 case POSTINCREMENT_EXPR
:
8012 lhs
= TREE_OPERAND (lhs
, 0);
8014 rhs
= integer_one_node
;
8017 case PREDECREMENT_EXPR
:
8018 case POSTDECREMENT_EXPR
:
8019 lhs
= TREE_OPERAND (lhs
, 0);
8021 rhs
= integer_one_node
;
8025 switch (c_parser_peek_token (parser
)->type
)
8031 code
= TRUNC_DIV_EXPR
;
8046 code
= BIT_AND_EXPR
;
8049 code
= BIT_IOR_EXPR
;
8052 code
= BIT_XOR_EXPR
;
8055 c_parser_error (parser
,
8056 "invalid operator for %<#pragma omp atomic%>");
8060 c_parser_consume_token (parser
);
8062 location_t rhs_loc
= c_parser_peek_token (parser
)->location
;
8063 rhs_expr
= c_parser_expression (parser
);
8064 rhs_expr
= default_function_array_read_conversion (rhs_loc
, rhs_expr
);
8066 rhs
= rhs_expr
.value
;
8067 rhs
= c_fully_fold (rhs
, false, NULL
);
8070 stmt
= c_finish_omp_atomic (loc
, code
, lhs
, rhs
);
8071 if (stmt
!= error_mark_node
)
8073 c_parser_skip_until_found (parser
, CPP_SEMICOLON
, "expected %<;%>");
8078 # pragma omp barrier new-line
8082 c_parser_omp_barrier (c_parser
*parser
)
8084 location_t loc
= c_parser_peek_token (parser
)->location
;
8085 c_parser_consume_pragma (parser
);
8086 c_parser_skip_to_pragma_eol (parser
);
8088 c_finish_omp_barrier (loc
);
8092 # pragma omp critical [(name)] new-line
8095 LOC is the location of the #pragma itself. */
8098 c_parser_omp_critical (location_t loc
, c_parser
*parser
)
8100 tree stmt
, name
= NULL
;
8102 if (c_parser_next_token_is (parser
, CPP_OPEN_PAREN
))
8104 c_parser_consume_token (parser
);
8105 if (c_parser_next_token_is (parser
, CPP_NAME
))
8107 name
= c_parser_peek_token (parser
)->value
;
8108 c_parser_consume_token (parser
);
8109 c_parser_require (parser
, CPP_CLOSE_PAREN
, "expected %<)%>");
8112 c_parser_error (parser
, "expected identifier");
8114 else if (c_parser_next_token_is_not (parser
, CPP_PRAGMA_EOL
))
8115 c_parser_error (parser
, "expected %<(%> or end of line");
8116 c_parser_skip_to_pragma_eol (parser
);
8118 stmt
= c_parser_omp_structured_block (parser
);
8119 return c_finish_omp_critical (loc
, stmt
, name
);
8123 # pragma omp flush flush-vars[opt] new-line
8126 ( variable-list ) */
8129 c_parser_omp_flush (c_parser
*parser
)
8131 location_t loc
= c_parser_peek_token (parser
)->location
;
8132 c_parser_consume_pragma (parser
);
8133 if (c_parser_next_token_is (parser
, CPP_OPEN_PAREN
))
8134 c_parser_omp_var_list_parens (parser
, OMP_CLAUSE_ERROR
, NULL
);
8135 else if (c_parser_next_token_is_not (parser
, CPP_PRAGMA_EOL
))
8136 c_parser_error (parser
, "expected %<(%> or end of line");
8137 c_parser_skip_to_pragma_eol (parser
);
8139 c_finish_omp_flush (loc
);
8142 /* Parse the restricted form of the for statement allowed by OpenMP.
8143 The real trick here is to determine the loop control variable early
8144 so that we can push a new decl if necessary to make it private.
8145 LOC is the location of the OMP in "#pragma omp". */
8148 c_parser_omp_for_loop (location_t loc
,
8149 c_parser
*parser
, tree clauses
, tree
*par_clauses
)
8151 tree decl
, cond
, incr
, save_break
, save_cont
, body
, init
, stmt
, cl
;
8152 tree declv
, condv
, incrv
, initv
, for_block
= NULL
, ret
= NULL
;
8153 bool fail
= false, open_brace_parsed
= false;
8154 int i
, collapse
= 1, nbraces
= 0;
8157 for (cl
= clauses
; cl
; cl
= OMP_CLAUSE_CHAIN (cl
))
8158 if (OMP_CLAUSE_CODE (cl
) == OMP_CLAUSE_COLLAPSE
)
8159 collapse
= tree_low_cst (OMP_CLAUSE_COLLAPSE_EXPR (cl
), 0);
8161 gcc_assert (collapse
>= 1);
8163 declv
= make_tree_vec (collapse
);
8164 initv
= make_tree_vec (collapse
);
8165 condv
= make_tree_vec (collapse
);
8166 incrv
= make_tree_vec (collapse
);
8168 if (!c_parser_next_token_is_keyword (parser
, RID_FOR
))
8170 c_parser_error (parser
, "for statement expected");
8173 for_loc
= c_parser_peek_token (parser
)->location
;
8174 c_parser_consume_token (parser
);
8176 for (i
= 0; i
< collapse
; i
++)
8180 if (!c_parser_require (parser
, CPP_OPEN_PAREN
, "expected %<(%>"))
8183 /* Parse the initialization declaration or expression. */
8184 if (c_parser_next_token_starts_declaration (parser
))
8188 = tree_cons (NULL
, c_begin_compound_stmt (true), for_block
);
8189 c_parser_declaration_or_fndef (parser
, true, true, true, true, true);
8190 decl
= check_for_loop_decls (for_loc
);
8193 if (DECL_INITIAL (decl
) == error_mark_node
)
8194 decl
= error_mark_node
;
8197 else if (c_parser_next_token_is (parser
, CPP_NAME
)
8198 && c_parser_peek_2nd_token (parser
)->type
== CPP_EQ
)
8200 struct c_expr decl_exp
;
8201 struct c_expr init_exp
;
8202 location_t init_loc
;
8204 decl_exp
= c_parser_postfix_expression (parser
);
8205 decl
= decl_exp
.value
;
8207 c_parser_require (parser
, CPP_EQ
, "expected %<=%>");
8209 init_loc
= c_parser_peek_token (parser
)->location
;
8210 init_exp
= c_parser_expr_no_commas (parser
, NULL
);
8211 init_exp
= default_function_array_read_conversion (init_loc
,
8213 init
= build_modify_expr (init_loc
, decl
, decl_exp
.original_type
,
8214 NOP_EXPR
, init_loc
, init_exp
.value
,
8215 init_exp
.original_type
);
8216 init
= c_process_expr_stmt (init_loc
, init
);
8218 c_parser_skip_until_found (parser
, CPP_SEMICOLON
, "expected %<;%>");
8223 c_parser_error (parser
,
8224 "expected iteration declaration or initialization");
8225 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
,
8231 /* Parse the loop condition. */
8233 if (c_parser_next_token_is_not (parser
, CPP_SEMICOLON
))
8235 location_t cond_loc
= c_parser_peek_token (parser
)->location
;
8236 struct c_expr cond_expr
= c_parser_binary_expression (parser
, NULL
);
8238 cond
= cond_expr
.value
;
8239 cond
= c_objc_common_truthvalue_conversion (cond_loc
, cond
);
8240 cond
= c_fully_fold (cond
, false, NULL
);
8241 switch (cond_expr
.original_code
)
8249 /* Can't be cond = error_mark_node, because we want to preserve
8250 the location until c_finish_omp_for. */
8251 cond
= build1 (NOP_EXPR
, boolean_type_node
, error_mark_node
);
8254 protected_set_expr_location (cond
, cond_loc
);
8256 c_parser_skip_until_found (parser
, CPP_SEMICOLON
, "expected %<;%>");
8258 /* Parse the increment expression. */
8260 if (c_parser_next_token_is_not (parser
, CPP_CLOSE_PAREN
))
8262 location_t incr_loc
= c_parser_peek_token (parser
)->location
;
8264 incr
= c_process_expr_stmt (incr_loc
,
8265 c_parser_expression (parser
).value
);
8267 c_parser_skip_until_found (parser
, CPP_CLOSE_PAREN
, "expected %<)%>");
8269 if (decl
== NULL
|| decl
== error_mark_node
|| init
== error_mark_node
)
8273 TREE_VEC_ELT (declv
, i
) = decl
;
8274 TREE_VEC_ELT (initv
, i
) = init
;
8275 TREE_VEC_ELT (condv
, i
) = cond
;
8276 TREE_VEC_ELT (incrv
, i
) = incr
;
8280 if (i
== collapse
- 1)
8283 /* FIXME: OpenMP 3.0 draft isn't very clear on what exactly is allowed
8284 in between the collapsed for loops to be still considered perfectly
8285 nested. Hopefully the final version clarifies this.
8286 For now handle (multiple) {'s and empty statements. */
8289 if (c_parser_next_token_is_keyword (parser
, RID_FOR
))
8291 c_parser_consume_token (parser
);
8294 else if (c_parser_next_token_is (parser
, CPP_OPEN_BRACE
))
8296 c_parser_consume_token (parser
);
8300 && c_parser_next_token_is (parser
, CPP_SEMICOLON
))
8301 c_parser_consume_token (parser
);
8304 c_parser_error (parser
, "not enough perfectly nested loops");
8307 open_brace_parsed
= true;
8317 nbraces
+= bracecount
;
8320 save_break
= c_break_label
;
8321 c_break_label
= size_one_node
;
8322 save_cont
= c_cont_label
;
8323 c_cont_label
= NULL_TREE
;
8324 body
= push_stmt_list ();
8326 if (open_brace_parsed
)
8328 location_t here
= c_parser_peek_token (parser
)->location
;
8329 stmt
= c_begin_compound_stmt (true);
8330 c_parser_compound_statement_nostart (parser
);
8331 add_stmt (c_end_compound_stmt (here
, stmt
, true));
8334 add_stmt (c_parser_c99_block_statement (parser
));
8337 tree t
= build1 (LABEL_EXPR
, void_type_node
, c_cont_label
);
8338 SET_EXPR_LOCATION (t
, loc
);
8342 body
= pop_stmt_list (body
);
8343 c_break_label
= save_break
;
8344 c_cont_label
= save_cont
;
8348 if (c_parser_next_token_is (parser
, CPP_CLOSE_BRACE
))
8350 c_parser_consume_token (parser
);
8353 else if (c_parser_next_token_is (parser
, CPP_SEMICOLON
))
8354 c_parser_consume_token (parser
);
8357 c_parser_error (parser
, "collapsed loops not perfectly nested");
8360 location_t here
= c_parser_peek_token (parser
)->location
;
8361 stmt
= c_begin_compound_stmt (true);
8363 c_parser_compound_statement_nostart (parser
);
8364 body
= c_end_compound_stmt (here
, stmt
, true);
8371 /* Only bother calling c_finish_omp_for if we haven't already generated
8372 an error from the initialization parsing. */
8375 stmt
= c_finish_omp_for (loc
, declv
, initv
, condv
, incrv
, body
, NULL
);
8378 if (par_clauses
!= NULL
)
8381 for (c
= par_clauses
; *c
; )
8382 if (OMP_CLAUSE_CODE (*c
) != OMP_CLAUSE_FIRSTPRIVATE
8383 && OMP_CLAUSE_CODE (*c
) != OMP_CLAUSE_LASTPRIVATE
)
8384 c
= &OMP_CLAUSE_CHAIN (*c
);
8387 for (i
= 0; i
< collapse
; i
++)
8388 if (TREE_VEC_ELT (declv
, i
) == OMP_CLAUSE_DECL (*c
))
8391 c
= &OMP_CLAUSE_CHAIN (*c
);
8392 else if (OMP_CLAUSE_CODE (*c
) == OMP_CLAUSE_FIRSTPRIVATE
)
8395 "iteration variable %qD should not be firstprivate",
8396 OMP_CLAUSE_DECL (*c
));
8397 *c
= OMP_CLAUSE_CHAIN (*c
);
8401 /* Copy lastprivate (decl) clause to OMP_FOR_CLAUSES,
8402 change it to shared (decl) in
8403 OMP_PARALLEL_CLAUSES. */
8404 tree l
= build_omp_clause (OMP_CLAUSE_LOCATION (*c
),
8405 OMP_CLAUSE_LASTPRIVATE
);
8406 OMP_CLAUSE_DECL (l
) = OMP_CLAUSE_DECL (*c
);
8407 OMP_CLAUSE_CHAIN (l
) = clauses
;
8409 OMP_CLAUSE_SET_CODE (*c
, OMP_CLAUSE_SHARED
);
8413 OMP_FOR_CLAUSES (stmt
) = clauses
;
8420 /* FIXME diagnostics: LOC below should be the actual location of
8421 this particular for block. We need to build a list of
8422 locations to go along with FOR_BLOCK. */
8423 stmt
= c_end_compound_stmt (loc
, TREE_VALUE (for_block
), true);
8425 for_block
= TREE_CHAIN (for_block
);
8431 #pragma omp for for-clause[optseq] new-line
8434 LOC is the location of the #pragma token.
8437 #define OMP_FOR_CLAUSE_MASK \
8438 ( (1u << PRAGMA_OMP_CLAUSE_PRIVATE) \
8439 | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
8440 | (1u << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
8441 | (1u << PRAGMA_OMP_CLAUSE_REDUCTION) \
8442 | (1u << PRAGMA_OMP_CLAUSE_ORDERED) \
8443 | (1u << PRAGMA_OMP_CLAUSE_SCHEDULE) \
8444 | (1u << PRAGMA_OMP_CLAUSE_COLLAPSE) \
8445 | (1u << PRAGMA_OMP_CLAUSE_NOWAIT))
8448 c_parser_omp_for (location_t loc
, c_parser
*parser
)
8450 tree block
, clauses
, ret
;
8452 clauses
= c_parser_omp_all_clauses (parser
, OMP_FOR_CLAUSE_MASK
,
8455 block
= c_begin_compound_stmt (true);
8456 ret
= c_parser_omp_for_loop (loc
, parser
, clauses
, NULL
);
8457 block
= c_end_compound_stmt (loc
, block
, true);
8464 # pragma omp master new-line
8467 LOC is the location of the #pragma token.
8471 c_parser_omp_master (location_t loc
, c_parser
*parser
)
8473 c_parser_skip_to_pragma_eol (parser
);
8474 return c_finish_omp_master (loc
, c_parser_omp_structured_block (parser
));
8478 # pragma omp ordered new-line
8481 LOC is the location of the #pragma itself.
8485 c_parser_omp_ordered (location_t loc
, c_parser
*parser
)
8487 c_parser_skip_to_pragma_eol (parser
);
8488 return c_finish_omp_ordered (loc
, c_parser_omp_structured_block (parser
));
8494 { section-sequence }
8497 section-directive[opt] structured-block
8498 section-sequence section-directive structured-block
8500 SECTIONS_LOC is the location of the #pragma omp sections. */
8503 c_parser_omp_sections_scope (location_t sections_loc
, c_parser
*parser
)
8506 bool error_suppress
= false;
8509 loc
= c_parser_peek_token (parser
)->location
;
8510 if (!c_parser_require (parser
, CPP_OPEN_BRACE
, "expected %<{%>"))
8512 /* Avoid skipping until the end of the block. */
8513 parser
->error
= false;
8517 stmt
= push_stmt_list ();
8519 if (c_parser_peek_token (parser
)->pragma_kind
!= PRAGMA_OMP_SECTION
)
8521 substmt
= push_stmt_list ();
8525 c_parser_statement (parser
);
8527 if (c_parser_peek_token (parser
)->pragma_kind
== PRAGMA_OMP_SECTION
)
8529 if (c_parser_next_token_is (parser
, CPP_CLOSE_BRACE
))
8531 if (c_parser_next_token_is (parser
, CPP_EOF
))
8535 substmt
= pop_stmt_list (substmt
);
8536 substmt
= build1 (OMP_SECTION
, void_type_node
, substmt
);
8537 SET_EXPR_LOCATION (substmt
, loc
);
8543 if (c_parser_next_token_is (parser
, CPP_CLOSE_BRACE
))
8545 if (c_parser_next_token_is (parser
, CPP_EOF
))
8548 loc
= c_parser_peek_token (parser
)->location
;
8549 if (c_parser_peek_token (parser
)->pragma_kind
== PRAGMA_OMP_SECTION
)
8551 c_parser_consume_pragma (parser
);
8552 c_parser_skip_to_pragma_eol (parser
);
8553 error_suppress
= false;
8555 else if (!error_suppress
)
8557 error_at (loc
, "expected %<#pragma omp section%> or %<}%>");
8558 error_suppress
= true;
8561 substmt
= c_parser_omp_structured_block (parser
);
8562 substmt
= build1 (OMP_SECTION
, void_type_node
, substmt
);
8563 SET_EXPR_LOCATION (substmt
, loc
);
8566 c_parser_skip_until_found (parser
, CPP_CLOSE_BRACE
,
8567 "expected %<#pragma omp section%> or %<}%>");
8569 substmt
= pop_stmt_list (stmt
);
8571 stmt
= make_node (OMP_SECTIONS
);
8572 SET_EXPR_LOCATION (stmt
, sections_loc
);
8573 TREE_TYPE (stmt
) = void_type_node
;
8574 OMP_SECTIONS_BODY (stmt
) = substmt
;
8576 return add_stmt (stmt
);
8580 # pragma omp sections sections-clause[optseq] newline
8583 LOC is the location of the #pragma token.
8586 #define OMP_SECTIONS_CLAUSE_MASK \
8587 ( (1u << PRAGMA_OMP_CLAUSE_PRIVATE) \
8588 | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
8589 | (1u << PRAGMA_OMP_CLAUSE_LASTPRIVATE) \
8590 | (1u << PRAGMA_OMP_CLAUSE_REDUCTION) \
8591 | (1u << PRAGMA_OMP_CLAUSE_NOWAIT))
8594 c_parser_omp_sections (location_t loc
, c_parser
*parser
)
8596 tree block
, clauses
, ret
;
8598 clauses
= c_parser_omp_all_clauses (parser
, OMP_SECTIONS_CLAUSE_MASK
,
8599 "#pragma omp sections");
8601 block
= c_begin_compound_stmt (true);
8602 ret
= c_parser_omp_sections_scope (loc
, parser
);
8604 OMP_SECTIONS_CLAUSES (ret
) = clauses
;
8605 block
= c_end_compound_stmt (loc
, block
, true);
8612 # pragma parallel parallel-clause new-line
8613 # pragma parallel for parallel-for-clause new-line
8614 # pragma parallel sections parallel-sections-clause new-line
8616 LOC is the location of the #pragma token.
8619 #define OMP_PARALLEL_CLAUSE_MASK \
8620 ( (1u << PRAGMA_OMP_CLAUSE_IF) \
8621 | (1u << PRAGMA_OMP_CLAUSE_PRIVATE) \
8622 | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
8623 | (1u << PRAGMA_OMP_CLAUSE_DEFAULT) \
8624 | (1u << PRAGMA_OMP_CLAUSE_SHARED) \
8625 | (1u << PRAGMA_OMP_CLAUSE_COPYIN) \
8626 | (1u << PRAGMA_OMP_CLAUSE_REDUCTION) \
8627 | (1u << PRAGMA_OMP_CLAUSE_NUM_THREADS))
8630 c_parser_omp_parallel (location_t loc
, c_parser
*parser
)
8632 enum pragma_kind p_kind
= PRAGMA_OMP_PARALLEL
;
8633 const char *p_name
= "#pragma omp parallel";
8634 tree stmt
, clauses
, par_clause
, ws_clause
, block
;
8635 unsigned int mask
= OMP_PARALLEL_CLAUSE_MASK
;
8637 if (c_parser_next_token_is_keyword (parser
, RID_FOR
))
8639 c_parser_consume_token (parser
);
8640 p_kind
= PRAGMA_OMP_PARALLEL_FOR
;
8641 p_name
= "#pragma omp parallel for";
8642 mask
|= OMP_FOR_CLAUSE_MASK
;
8643 mask
&= ~(1u << PRAGMA_OMP_CLAUSE_NOWAIT
);
8645 else if (c_parser_next_token_is (parser
, CPP_NAME
))
8647 const char *p
= IDENTIFIER_POINTER (c_parser_peek_token (parser
)->value
);
8648 if (strcmp (p
, "sections") == 0)
8650 c_parser_consume_token (parser
);
8651 p_kind
= PRAGMA_OMP_PARALLEL_SECTIONS
;
8652 p_name
= "#pragma omp parallel sections";
8653 mask
|= OMP_SECTIONS_CLAUSE_MASK
;
8654 mask
&= ~(1u << PRAGMA_OMP_CLAUSE_NOWAIT
);
8658 clauses
= c_parser_omp_all_clauses (parser
, mask
, p_name
);
8662 case PRAGMA_OMP_PARALLEL
:
8663 block
= c_begin_omp_parallel ();
8664 c_parser_statement (parser
);
8665 stmt
= c_finish_omp_parallel (loc
, clauses
, block
);
8668 case PRAGMA_OMP_PARALLEL_FOR
:
8669 block
= c_begin_omp_parallel ();
8670 c_split_parallel_clauses (loc
, clauses
, &par_clause
, &ws_clause
);
8671 c_parser_omp_for_loop (loc
, parser
, ws_clause
, &par_clause
);
8672 stmt
= c_finish_omp_parallel (loc
, par_clause
, block
);
8673 OMP_PARALLEL_COMBINED (stmt
) = 1;
8676 case PRAGMA_OMP_PARALLEL_SECTIONS
:
8677 block
= c_begin_omp_parallel ();
8678 c_split_parallel_clauses (loc
, clauses
, &par_clause
, &ws_clause
);
8679 stmt
= c_parser_omp_sections_scope (loc
, parser
);
8681 OMP_SECTIONS_CLAUSES (stmt
) = ws_clause
;
8682 stmt
= c_finish_omp_parallel (loc
, par_clause
, block
);
8683 OMP_PARALLEL_COMBINED (stmt
) = 1;
8694 # pragma omp single single-clause[optseq] new-line
8697 LOC is the location of the #pragma.
8700 #define OMP_SINGLE_CLAUSE_MASK \
8701 ( (1u << PRAGMA_OMP_CLAUSE_PRIVATE) \
8702 | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
8703 | (1u << PRAGMA_OMP_CLAUSE_COPYPRIVATE) \
8704 | (1u << PRAGMA_OMP_CLAUSE_NOWAIT))
8707 c_parser_omp_single (location_t loc
, c_parser
*parser
)
8709 tree stmt
= make_node (OMP_SINGLE
);
8710 SET_EXPR_LOCATION (stmt
, loc
);
8711 TREE_TYPE (stmt
) = void_type_node
;
8713 OMP_SINGLE_CLAUSES (stmt
)
8714 = c_parser_omp_all_clauses (parser
, OMP_SINGLE_CLAUSE_MASK
,
8715 "#pragma omp single");
8716 OMP_SINGLE_BODY (stmt
) = c_parser_omp_structured_block (parser
);
8718 return add_stmt (stmt
);
8722 # pragma omp task task-clause[optseq] new-line
8724 LOC is the location of the #pragma.
8727 #define OMP_TASK_CLAUSE_MASK \
8728 ( (1u << PRAGMA_OMP_CLAUSE_IF) \
8729 | (1u << PRAGMA_OMP_CLAUSE_UNTIED) \
8730 | (1u << PRAGMA_OMP_CLAUSE_DEFAULT) \
8731 | (1u << PRAGMA_OMP_CLAUSE_PRIVATE) \
8732 | (1u << PRAGMA_OMP_CLAUSE_FIRSTPRIVATE) \
8733 | (1u << PRAGMA_OMP_CLAUSE_SHARED))
8736 c_parser_omp_task (location_t loc
, c_parser
*parser
)
8738 tree clauses
, block
;
8740 clauses
= c_parser_omp_all_clauses (parser
, OMP_TASK_CLAUSE_MASK
,
8741 "#pragma omp task");
8743 block
= c_begin_omp_task ();
8744 c_parser_statement (parser
);
8745 return c_finish_omp_task (loc
, clauses
, block
);
8749 # pragma omp taskwait new-line
8753 c_parser_omp_taskwait (c_parser
*parser
)
8755 location_t loc
= c_parser_peek_token (parser
)->location
;
8756 c_parser_consume_pragma (parser
);
8757 c_parser_skip_to_pragma_eol (parser
);
8759 c_finish_omp_taskwait (loc
);
8762 /* Main entry point to parsing most OpenMP pragmas. */
8765 c_parser_omp_construct (c_parser
*parser
)
8767 enum pragma_kind p_kind
;
8771 loc
= c_parser_peek_token (parser
)->location
;
8772 p_kind
= c_parser_peek_token (parser
)->pragma_kind
;
8773 c_parser_consume_pragma (parser
);
8777 case PRAGMA_OMP_ATOMIC
:
8778 c_parser_omp_atomic (loc
, parser
);
8780 case PRAGMA_OMP_CRITICAL
:
8781 stmt
= c_parser_omp_critical (loc
, parser
);
8783 case PRAGMA_OMP_FOR
:
8784 stmt
= c_parser_omp_for (loc
, parser
);
8786 case PRAGMA_OMP_MASTER
:
8787 stmt
= c_parser_omp_master (loc
, parser
);
8789 case PRAGMA_OMP_ORDERED
:
8790 stmt
= c_parser_omp_ordered (loc
, parser
);
8792 case PRAGMA_OMP_PARALLEL
:
8793 stmt
= c_parser_omp_parallel (loc
, parser
);
8795 case PRAGMA_OMP_SECTIONS
:
8796 stmt
= c_parser_omp_sections (loc
, parser
);
8798 case PRAGMA_OMP_SINGLE
:
8799 stmt
= c_parser_omp_single (loc
, parser
);
8801 case PRAGMA_OMP_TASK
:
8802 stmt
= c_parser_omp_task (loc
, parser
);
8809 gcc_assert (EXPR_LOCATION (stmt
) != UNKNOWN_LOCATION
);
8814 # pragma omp threadprivate (variable-list) */
8817 c_parser_omp_threadprivate (c_parser
*parser
)
8822 c_parser_consume_pragma (parser
);
8823 loc
= c_parser_peek_token (parser
)->location
;
8824 vars
= c_parser_omp_var_list_parens (parser
, OMP_CLAUSE_ERROR
, NULL
);
8826 /* Mark every variable in VARS to be assigned thread local storage. */
8827 for (t
= vars
; t
; t
= TREE_CHAIN (t
))
8829 tree v
= TREE_PURPOSE (t
);
8831 /* FIXME diagnostics: Ideally we should keep individual
8832 locations for all the variables in the var list to make the
8833 following errors more precise. Perhaps
8834 c_parser_omp_var_list_parens() should construct a list of
8835 locations to go along with the var list. */
8837 /* If V had already been marked threadprivate, it doesn't matter
8838 whether it had been used prior to this point. */
8839 if (TREE_CODE (v
) != VAR_DECL
)
8840 error_at (loc
, "%qD is not a variable", v
);
8841 else if (TREE_USED (v
) && !C_DECL_THREADPRIVATE_P (v
))
8842 error_at (loc
, "%qE declared %<threadprivate%> after first use", v
);
8843 else if (! TREE_STATIC (v
) && ! DECL_EXTERNAL (v
))
8844 error_at (loc
, "automatic variable %qE cannot be %<threadprivate%>", v
);
8845 else if (TREE_TYPE (v
) == error_mark_node
)
8847 else if (! COMPLETE_TYPE_P (TREE_TYPE (v
)))
8848 error_at (loc
, "%<threadprivate%> %qE has incomplete type", v
);
8851 if (! DECL_THREAD_LOCAL_P (v
))
8853 DECL_TLS_MODEL (v
) = decl_default_tls_model (v
);
8854 /* If rtl has been already set for this var, call
8855 make_decl_rtl once again, so that encode_section_info
8856 has a chance to look at the new decl flags. */
8857 if (DECL_RTL_SET_P (v
))
8860 C_DECL_THREADPRIVATE_P (v
) = 1;
8864 c_parser_skip_to_pragma_eol (parser
);
8868 /* Parse a single source file. */
8873 /* Use local storage to begin. If the first token is a pragma, parse it.
8874 If it is #pragma GCC pch_preprocess, then this will load a PCH file
8875 which will cause garbage collection. */
8878 memset (&tparser
, 0, sizeof tparser
);
8879 the_parser
= &tparser
;
8881 if (c_parser_peek_token (&tparser
)->pragma_kind
== PRAGMA_GCC_PCH_PREPROCESS
)
8882 c_parser_pragma_pch_preprocess (&tparser
);
8884 the_parser
= GGC_NEW (c_parser
);
8885 *the_parser
= tparser
;
8887 /* Initialize EH, if we've been told to do so. */
8888 if (flag_exceptions
)
8889 using_eh_for_cleanups ();
8891 c_parser_translation_unit (the_parser
);
8895 #include "gt-c-parser.h"