source: src/Parser/parser.yy @ 07ca4dd

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 07ca4dd was 6054b18, checked in by Peter A. Buhr <pabuhr@…>, 5 years ago

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

  • Property mode set to 100644
File size: 136.1 KB
RevLine 
[b87a5ed]1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
[9335ecc]7// parser.yy --
[974906e2]8//
[c11e31c]9// Author           : Peter A. Buhr
10// Created On       : Sat Sep  1 20:22:55 2001
[936e9f4]11// Last Modified By : Peter A. Buhr
[c786e1d]12// Last Modified On : Tue May 28 17:06:37 2019
13// Update Count     : 4354
[974906e2]14//
[c11e31c]15
[de62360d]16// This grammar is based on the ANSI99/11 C grammar, specifically parts of EXPRESSION and STATEMENTS, and on the C
17// grammar by James A. Roskind, specifically parts of DECLARATIONS and EXTERNAL DEFINITIONS.  While parts have been
18// copied, important changes have been made in all sections; these changes are sufficient to constitute a new grammar.
19// In particular, this grammar attempts to be more syntactically precise, i.e., it parses less incorrect language syntax
20// that must be subsequently rejected by semantic checks.  Nevertheless, there are still several semantic checks
21// required and many are noted in the grammar. Finally, the grammar is extended with GCC and CFA language extensions.
[c11e31c]22
[de62360d]23// Acknowledgments to Richard Bilson, Glen Ditchfield, and Rodolfo Gabriel Esteves who all helped when I got stuck with
24// the grammar.
[c11e31c]25
26// The root language for this grammar is ANSI99/11 C. All of ANSI99/11 is parsed, except for:
27//
28// 1. designation with '=' (use ':' instead)
29//
[de62360d]30// Most of the syntactic extensions from ANSI90 to ANSI11 C are marked with the comment "C99/C11". This grammar also has
31// two levels of extensions. The first extensions cover most of the GCC C extensions, except for:
[c11e31c]32//
[e7aed49]33// 1. designation with and without '=' (use ':' instead)
[c0aa336]34// 2. attributes not allowed in parenthesis of declarator
[c11e31c]35//
[de62360d]36// All of the syntactic extensions for GCC C are marked with the comment "GCC". The second extensions are for Cforall
37// (CFA), which fixes several of C's outstanding problems and extends C with many modern language concepts. All of the
38// syntactic extensions for CFA C are marked with the comment "CFA". As noted above, there is one unreconcileable
39// parsing problem between C99 and CFA with respect to designators; this is discussed in detail before the "designation"
40// grammar rule.
[51b7345]41
42%{
[b87a5ed]43#define YYDEBUG_LEXER_TEXT (yylval)                                             // lexer loads this up each time
44#define YYDEBUG 1                                                                               // get the pretty debugging code to compile
[201aeb9]45#define YYERROR_VERBOSE                                                                 // more information in syntax errors
[51b7345]46
47#undef __GNUC_MINOR__
48
49#include <cstdio>
50#include <stack>
[9ed4f94]51using namespace std;
52
[51b7345]53#include "ParseNode.h"
[984dce6]54#include "TypedefTable.h"
[1db21619]55#include "TypeData.h"
[51b7345]56#include "LinkageSpec.h"
[9ed4f94]57#include "Common/SemanticError.h"                                               // error_str
[513e165]58#include "Common/utility.h"                                                             // for maybeMoveBuild, maybeBuild, CodeLo...
[51b7345]59
[cbaee0d]60extern DeclarationNode * parseTree;
[8b7ee09]61extern LinkageSpec::Spec linkage;
[0da3e2c]62extern TypedefTable typedefTable;
63
[2298f728]64stack< LinkageSpec::Spec > linkageStack;
[7bf7fb9]65
[15697ff]66bool appendStr( string & to, string & from ) {
67        // 1. Multiple strings are concatenated into a single string but not combined internally. The reason is that
[ea0c5e3]68        //    "\x12" "3" is treated as 2 characters versus 1 because "escape sequences are converted into single members of
[15697ff]69        //    the execution character set just prior to adjacent string literal concatenation" (C11, Section 6.4.5-8). It is
70        //    easier to let the C compiler handle this case.
71        //
72        // 2. String encodings are transformed into canonical form (one encoding at start) so the encoding can be found
73        //    without searching the string, e.g.: "abc" L"def" L"ghi" => L"abc" "def" "ghi". Multiple encodings must match,
74        //    i.e., u"a" U"b" L"c" is disallowed.
75
76        if ( from[0] != '"' ) {                                                         // encoding ?
77                if ( to[0] != '"' ) {                                                   // encoding ?
[ea0c5e3]78                        if ( to[0] != from[0] || to[1] != from[1] ) { // different encodings ?
[15697ff]79                                yyerror( "non-matching string encodings for string-literal concatenation" );
80                                return false;                                                   // parse error, must call YYERROR in action
[ea0c5e3]81                        } else if ( from[1] == '8' ) {
82                                from.erase( 0, 1 );                                             // remove 2nd encoding
[15697ff]83                        } // if
84                } else {
[ea0c5e3]85                        if ( from[1] == '8' ) {                                         // move encoding to start
86                                to = "u8" + to;
87                                from.erase( 0, 1 );                                             // remove 2nd encoding
88                        } else {
89                                to = from[0] + to;
90                        } // if
[15697ff]91                } // if
92                from.erase( 0, 1 );                                                             // remove 2nd encoding
93        } // if
94        to += " " + from;                                                                       // concatenated into single string
95        return true;
[7bf7fb9]96} // appendStr
[c0aa336]97
98DeclarationNode * distAttr( DeclarationNode * specifier, DeclarationNode * declList ) {
99        // distribute declaration_specifier across all declared variables, e.g., static, const, __attribute__.
100        DeclarationNode * cur = declList, * cl = (new DeclarationNode)->addType( specifier );
[6d01d89]101        for ( cur = dynamic_cast<DeclarationNode *>( cur->get_next() ); cur != nullptr; cur = dynamic_cast<DeclarationNode *>( cur->get_next() ) ) {
[c0aa336]102                cl->cloneBaseType( cur );
103        } // for
104        declList->addType( cl );
105        return declList;
106} // distAttr
107
108void distExt( DeclarationNode * declaration ) {
109        // distribute EXTENSION across all declarations
110        for ( DeclarationNode *iter = declaration; iter != nullptr; iter = (DeclarationNode *)iter->get_next() ) {
111                iter->set_extension( true );
112        } // for
113} // distExt
[fdca7c6]114
[e07caa2]115void distInl( DeclarationNode * declaration ) {
116        // distribute EXTENSION across all declarations
117        for ( DeclarationNode *iter = declaration; iter != nullptr; iter = (DeclarationNode *)iter->get_next() ) {
118                iter->set_inLine( true );
119        } // for
120} // distInl
121
[4c3ee8d]122void distQual( DeclarationNode * declaration, DeclarationNode * qualifiers ) {
[284da8c]123        // distribute qualifiers across all non-variable declarations in a distribution statemement
[4c3ee8d]124        for ( DeclarationNode * iter = declaration; iter != nullptr; iter = (DeclarationNode *)iter->get_next() ) {
[284da8c]125                // SKULLDUGGERY: Distributions are parsed inside out, so qualifiers are added to declarations inside out. Since
126                // addQualifiers appends to the back of the list, the forall clauses are in the wrong order (right to left). To
127                // get the qualifiers in the correct order and still use addQualifiers (otherwise, 90% of addQualifiers has to
128                // be copied to add to front), the appropriate forall pointers are interchanged before calling addQualifiers.
129                DeclarationNode * clone = qualifiers->clone();
130                if ( qualifiers->type ) {                                               // forall clause ? (handles SC)
131                        if ( iter->type->kind == TypeData::Aggregate ) { // struct/union ?
132                                swap( clone->type->forall, iter->type->aggregate.params );
133                                iter->addQualifiers( clone );
134                        } else if ( iter->type->kind == TypeData::AggregateInst && iter->type->aggInst.aggregate->aggregate.body ) { // struct/union ?
135                                // Create temporary node to hold aggregate, call addQualifiers as above, then put nodes back together.
136                                DeclarationNode newnode;
137                                swap( newnode.type, iter->type->aggInst.aggregate );
138                                swap( clone->type->forall, newnode.type->aggregate.params );
139                                newnode.addQualifiers( clone );
140                                swap( newnode.type, iter->type->aggInst.aggregate );
141                        } else if ( iter->type->kind == TypeData::Function ) { // routines ?
142                                swap( clone->type->forall, iter->type->forall );
143                                iter->addQualifiers( clone );
144                        } // if
145                } else {                                                                                // just SC qualifiers
146                        iter->addQualifiers( clone );
147                } // if
[4c3ee8d]148        } // for
[284da8c]149        delete qualifiers;
150} // distQual
[4c3ee8d]151
[c38ae92]152// There is an ambiguity for inline generic-routine return-types and generic routines.
153//   forall( otype T ) struct S { int i; } bar( T ) {}
154// Does the forall bind to the struct or the routine, and how would it be possible to explicitly specify the binding.
155//   forall( otype T ) struct S { int T; } forall( otype W ) bar( W ) {}
[7fdb94e]156// Currently, the forall is associated with the routine, and the generic type has to be separately defined:
157//   forall( otype T ) struct S { int T; };
158//   forall( otype W ) bar( W ) {}
[c38ae92]159
160void rebindForall( DeclarationNode * declSpec, DeclarationNode * funcDecl ) {
[7fdb94e]161        if ( declSpec->type->kind == TypeData::Aggregate ) { // ignore aggregate definition
[c38ae92]162                funcDecl->type->forall = declSpec->type->aggregate.params; // move forall from aggregate to function type
163                declSpec->type->aggregate.params = nullptr;
164        } // if
165} // rebindForall
166
[dc7db63]167NameExpr * build_postfix_name( const string * name ) {
168        NameExpr * new_name = build_varref( new string( "?`" + *name ) );
169        delete name;
170        return new_name;
171} // build_postfix_name
172
[f7e4db27]173DeclarationNode * fieldDecl( DeclarationNode * typeSpec, DeclarationNode * fieldList ) {
174        if ( ! fieldList ) {                                                            // field declarator ?
[553772b]175                if ( ! ( typeSpec->type && (typeSpec->type->kind == TypeData::Aggregate || typeSpec->type->kind == TypeData::Enum) ) ) {
[f7e4db27]176                        stringstream ss;
177                        typeSpec->type->print( ss );
178                        SemanticWarning( yylloc, Warning::SuperfluousDecl, ss.str().c_str() );
179                        return nullptr;
180                } // if
181                fieldList = DeclarationNode::newName( nullptr );
182        } // if
183        return distAttr( typeSpec, fieldList );                         // mark all fields in list
184} // fieldDecl
185
[cc22003]186ForCtrl * forCtrl( ExpressionNode * type, string * index, ExpressionNode * start, enum OperKinds compop, ExpressionNode * comp, ExpressionNode * inc ) {
[1dda8de]187        ConstantExpr * constant = dynamic_cast<ConstantExpr *>(type->expr.get());
[0982a05]188        if ( constant && (constant->get_constant()->get_value() == "0" || constant->get_constant()->get_value() == "1") ) {
189        type = new ExpressionNode( new CastExpr( maybeMoveBuild< Expression >(type), new BasicType( Type::Qualifiers(), BasicType::SignedInt ) ) );
190        } // if
[f271bdd]191        return new ForCtrl(
[5753b33]192                distAttr( DeclarationNode::newTypeof( type, true ), DeclarationNode::newName( index )->addInitializer( new InitializerNode( start ) ) ),
[2d2df9f]193                // NULL comp/inc => leave blank
194                comp ? new ExpressionNode( build_binary_val( compop, new ExpressionNode( build_varref( new string( *index ) ) ), comp ) ) : 0,
195                inc ? new ExpressionNode( build_binary_val( compop == OperKinds::LThan || compop == OperKinds::LEThan ? // choose += or -= for upto/downto
196                                                        OperKinds::PlusAssn : OperKinds::MinusAssn, new ExpressionNode( build_varref( new string( *index ) ) ), inc ) ) : 0 );
[f271bdd]197} // forCtrl
198
[f1aeede]199ForCtrl * forCtrl( ExpressionNode * type, ExpressionNode * index, ExpressionNode * start, enum OperKinds compop, ExpressionNode * comp, ExpressionNode * inc ) {
[1dda8de]200        if ( NameExpr * identifier = dynamic_cast<NameExpr *>(index->expr.get()) ) {
[f1aeede]201                return forCtrl( type, new string( identifier->name ), start, compop, comp, inc );
[1dda8de]202        } else if ( CommaExpr * commaExpr = dynamic_cast<CommaExpr *>(index->expr.get()) ) {
[6d01d89]203                if ( NameExpr * identifier = dynamic_cast<NameExpr *>(commaExpr->arg1 ) ) {
204                        return forCtrl( type, new string( identifier->name ), start, compop, comp, inc );
205                } else {
206                        SemanticError( yylloc, "Expression disallowed. Only loop-index name allowed" ); return nullptr;
207                } // if
[f1aeede]208        } else {
209                SemanticError( yylloc, "Expression disallowed. Only loop-index name allowed" ); return nullptr;
210        } // if
[f271bdd]211} // forCtrl
212
213
[fc20514]214bool forall = false, yyy = false;                                               // aggregate have one or more forall qualifiers ?
[d48e529]215
[201aeb9]216// https://www.gnu.org/software/bison/manual/bison.html#Location-Type
217#define YYLLOC_DEFAULT(Cur, Rhs, N)                                                                                             \
218if ( N ) {                                                                                                                                              \
219        (Cur).first_line   = YYRHSLOC( Rhs, 1 ).first_line;                                                     \
220        (Cur).first_column = YYRHSLOC( Rhs, 1 ).first_column;                                           \
221        (Cur).last_line    = YYRHSLOC( Rhs, N ).last_line;                                                      \
222        (Cur).last_column  = YYRHSLOC( Rhs, N ).last_column;                                            \
223        (Cur).filename     = YYRHSLOC( Rhs, 1 ).filename;                                                       \
224} else {                                                                                                                                                \
225        (Cur).first_line   = (Cur).last_line = YYRHSLOC( Rhs, 0 ).last_line;            \
226        (Cur).first_column = (Cur).last_column = YYRHSLOC( Rhs, 0 ).last_column;        \
227        (Cur).filename     = YYRHSLOC( Rhs, 0 ).filename;                                                       \
228}
[51b7345]229%}
230
[15697ff]231%define parse.error verbose
232
[201aeb9]233// Types declaration for productions
[0982a05]234%union {
[a67b60e]235        Token tok;
236        ParseNode * pn;
237        ExpressionNode * en;
238        DeclarationNode * decl;
239        DeclarationNode::Aggregate aggKey;
240        DeclarationNode::TypeClass tclass;
241        StatementNode * sn;
[135b431]242        WaitForStmt * wfs;
[e612146c]243        Expression * constant;
[f271bdd]244        IfCtrl * ifctl;
245        ForCtrl * fctl;
[cc22003]246        enum OperKinds compop;
[a67b60e]247        LabelNode * label;
248        InitializerNode * in;
249        OperKinds op;
250        std::string * str;
251        bool flag;
[307a732]252        CatchStmt::Kind catch_kind;
[d807ca28]253        GenericExpr * genexpr;
[a67b60e]254}
255
[c11e31c]256//************************* TERMINAL TOKENS ********************************
[51b7345]257
[c11e31c]258// keywords
[51b7345]259%token TYPEDEF
[a7c90d4]260%token EXTERN STATIC AUTO REGISTER
261%token THREADLOCAL                                                                              // C11
262%token INLINE FORTRAN                                                                   // C99, extension ISO/IEC 9899:1999 Section J.5.9(1)
263%token NORETURN                                                                                 // C11
[51b7345]264%token CONST VOLATILE
[b87a5ed]265%token RESTRICT                                                                                 // C99
[a7c90d4]266%token ATOMIC                                                                                   // C11
[1528a2c]267%token FORALL MUTEX VIRTUAL COERCE                                              // CFA
[72457b6]268%token VOID CHAR SHORT INT LONG FLOAT DOUBLE SIGNED UNSIGNED
[b87a5ed]269%token BOOL COMPLEX IMAGINARY                                                   // C99
[e15853c]270%token INT128 uuFLOAT80 uuFLOAT128                                              // GCC
271%token uFLOAT16 uFLOAT32 uFLOAT32X uFLOAT64 uFLOAT64X uFLOAT128 // GCC
[72457b6]272%token ZERO_T ONE_T                                                                             // CFA
273%token VALIST                                                                                   // GCC
[ee27df2]274%token TYPEOF BASETYPEOF LABEL                                                  // GCC
[51b7345]275%token ENUM STRUCT UNION
[c27fb59]276%token EXCEPTION                                                                                // CFA
[553772b]277%token GENERATOR COROUTINE MONITOR THREAD                               // CFA
[a7c90d4]278%token OTYPE FTYPE DTYPE TTYPE TRAIT                                    // CFA
[5721a6d]279%token SIZEOF OFFSETOF
[c786e1d]280// %token SUSPEND RESUME                                                                        // CFA
[b87a5ed]281%token ATTRIBUTE EXTENSION                                                              // GCC
[51b7345]282%token IF ELSE SWITCH CASE DEFAULT DO WHILE FOR BREAK CONTINUE GOTO RETURN
[114014c]283%token CHOOSE DISABLE ENABLE FALLTHRU FALLTHROUGH TRY CATCH CATCHRESUME FINALLY THROW THROWRESUME AT WITH WHEN WAITFOR // CFA
[b87a5ed]284%token ASM                                                                                              // C99, extension ISO/IEC 9899:1999 Section J.5.10(1)
[a7c90d4]285%token ALIGNAS ALIGNOF GENERIC STATICASSERT                             // C11
[51b7345]286
[c11e31c]287// names and constants: lexer differentiates between identifier and typedef names
[b87a5ed]288%token<tok> IDENTIFIER                  QUOTED_IDENTIFIER               TYPEDEFname                             TYPEGENname
[5b2edbc]289%token<tok> TIMEOUT                             WOR
[b87a5ed]290%token<tok> ATTR_IDENTIFIER             ATTR_TYPEDEFname                ATTR_TYPEGENname
[1b29996]291%token<tok> INTEGERconstant             CHARACTERconstant               STRINGliteral
[61fc4f6]292%token<tok> DIRECTIVE
[1b29996]293// Floating point constant is broken into three kinds of tokens because of the ambiguity with tuple indexing and
294// overloading constants 0/1, e.g., x.1 is lexed as (x)(.1), where (.1) is a factional constant, but is semantically
295// converted into the tuple index (.)(1). e.g., 3.x
[930f69e]296%token<tok>     FLOATING_DECIMALconstant        FLOATING_FRACTIONconstant       FLOATINGconstant
[51b7345]297
[c11e31c]298// multi-character operators
[b87a5ed]299%token ARROW                                                                                    // ->
300%token ICR DECR                                                                                 // ++   --
301%token LS RS                                                                                    // <<   >>
302%token LE GE EQ NE                                                                              // <=   >=      ==      !=
303%token ANDAND OROR                                                                              // &&   ||
304%token ELLIPSIS                                                                                 // ...
305
[e5f2a67]306%token EXPassign        MULTassign      DIVassign       MODassign       // \=   *=      /=      %=
[b87a5ed]307%token PLUSassign       MINUSassign                                                     // +=   -=
308%token LSassign         RSassign                                                        // <<=  >>=
309%token ANDassign        ERassign        ORassign                                // &=   ^=      |=
[51b7345]310
[d69f4bb4]311%token ErangeUpEq       ErangeDown      ErangeDownEq                    // ~=   -~      -~=
[e7aed49]312%token ATassign                                                                                 // @=
[097e2b0]313
[6165ce7]314%type<tok> identifier  no_attr_identifier
[84d58c5]315%type<tok> identifier_or_type_name  no_attr_identifier_or_type_name  attr_name
[5b2edbc]316%type<tok> quasi_keyword
[ab57786]317%type<constant> string_literal
318%type<str> string_literal_list
[51b7345]319
[c11e31c]320// expressions
[d1625f8]321%type<en> constant
[b87a5ed]322%type<en> tuple                                                 tuple_expression_list
[9706554]323%type<op> ptrref_operator                               unary_operator                          assignment_operator
[b87a5ed]324%type<en> primary_expression                    postfix_expression                      unary_expression
[994d080]325%type<en> cast_expression                               exponential_expression          multiplicative_expression       additive_expression
326%type<en> shift_expression                              relational_expression           equality_expression
327%type<en> AND_expression                                exclusive_OR_expression         inclusive_OR_expression
328%type<en> logical_AND_expression                logical_OR_expression
329%type<en> conditional_expression                constant_expression                     assignment_expression           assignment_expression_opt
[b87a5ed]330%type<en> comma_expression                              comma_expression_opt
[994d080]331%type<en> argument_expression_list              argument_expression                     default_initialize_opt
[936e9f4]332%type<ifctl> if_control_expression
[6d01d89]333%type<fctl> for_control_expression              for_control_expression_list
[cc22003]334%type<compop> inclexcl
[51b7345]335%type<en> subrange
[c0aa336]336%type<decl> asm_name_opt
[67d4e37]337%type<en> asm_operands_opt                              asm_operands_list                       asm_operand
[7f5566b]338%type<label> label_list
[d1625f8]339%type<en> asm_clobbers_list_opt
[7f5566b]340%type<flag> asm_volatile_opt
[cbce272]341%type<en> handler_predicate_opt
[67d4e37]342%type<genexpr> generic_association              generic_assoc_list
[51b7345]343
[c11e31c]344// statements
[9bd6105]345%type<sn> statement                                             labeled_statement                       compound_statement
346%type<sn> statement_decl                                statement_decl_list                     statement_list_nodecl
[3d26610]347%type<sn> selection_statement                   if_statement
[6a276a0]348%type<sn> switch_clause_list_opt                switch_clause_list
[9bd6105]349%type<en> case_value
350%type<sn> case_clause                                   case_value_list                         case_label                                      case_label_list
[8b47e50]351%type<sn> iteration_statement                   jump_statement
[9bd6105]352%type<sn> expression_statement                  asm_statement
[c453ac4]353%type<sn> with_statement
354%type<en> with_clause_opt
[51d6d6a]355%type<sn> exception_statement                   handler_clause                          finally_clause
356%type<catch_kind> handler_key
[b6b3c42]357%type<sn> mutex_statement
[9bd6105]358%type<en> when_clause                                   when_clause_opt                         waitfor                                         timeout
[135b431]359%type<sn> waitfor_statement
[51d6d6a]360%type<wfs> waitfor_clause
[51b7345]361
[c11e31c]362// declarations
[c0aa336]363%type<decl> abstract_declarator abstract_ptr abstract_array abstract_function array_dimension multi_array_dimension
364%type<decl> abstract_parameter_declarator abstract_parameter_ptr abstract_parameter_array abstract_parameter_function array_parameter_dimension array_parameter_1st_dimension
365%type<decl> abstract_parameter_declaration
[51b7345]366
367%type<aggKey> aggregate_key
[d0ffed1]368%type<decl> aggregate_type aggregate_type_nobody
[51b7345]369
[9997fee]370%type<decl> assertion assertion_list assertion_list_opt
[51b7345]371
372%type<en>   bit_subrange_size_opt bit_subrange_size
373
[84d58c5]374%type<decl> basic_declaration_specifier basic_type_name basic_type_specifier direct_type indirect_type
[51b7345]375
[4040425]376%type<decl> trait_declaration trait_declaration_list trait_declaring_list trait_specifier
[51b7345]377
378%type<decl> declaration declaration_list declaration_list_opt declaration_qualifier_list
[d0ffed1]379%type<decl> declaration_specifier declaration_specifier_nobody declarator declaring_list
[51b7345]380
[d0ffed1]381%type<decl> elaborated_type elaborated_type_nobody
[51b7345]382
[d0ffed1]383%type<decl> enumerator_list enum_type enum_type_nobody
[51b7345]384%type<en> enumerator_value_opt
385
[3d56d15b]386%type<decl> external_definition external_definition_list external_definition_list_opt
387
388%type<decl> exception_declaration
[51b7345]389
[e07caa2]390%type<decl> field_declaration_list_opt field_declaration field_declaring_list_opt field_declarator field_abstract_list_opt field_abstract
[679e644]391%type<en> field field_name_list field_name fraction_constants_opt
[51b7345]392
[4d51835]393%type<decl> external_function_definition function_definition function_array function_declarator function_no_ptr function_ptr
[51b7345]394
[d3bc0ad]395%type<decl> identifier_parameter_declarator identifier_parameter_ptr identifier_parameter_array identifier_parameter_function
396%type<decl> identifier_list
[51b7345]397
[c0aa336]398%type<decl> cfa_abstract_array cfa_abstract_declarator_no_tuple cfa_abstract_declarator_tuple
399%type<decl> cfa_abstract_function cfa_abstract_parameter_declaration cfa_abstract_parameter_list
400%type<decl> cfa_abstract_ptr cfa_abstract_tuple
[51b7345]401
[c0aa336]402%type<decl> cfa_array_parameter_1st_dimension
[51b7345]403
[679e644]404%type<decl> cfa_trait_declaring_list cfa_declaration cfa_field_declaring_list cfa_field_abstract_list
[c0aa336]405%type<decl> cfa_function_declaration cfa_function_return cfa_function_specifier
[51b7345]406
[c0aa336]407%type<decl> cfa_identifier_parameter_array cfa_identifier_parameter_declarator_no_tuple
408%type<decl> cfa_identifier_parameter_declarator_tuple cfa_identifier_parameter_ptr
[51b7345]409
[40de461]410%type<decl> cfa_parameter_declaration cfa_parameter_list cfa_parameter_ellipsis_list_opt
[51b7345]411
[c0aa336]412%type<decl> cfa_typedef_declaration cfa_variable_declaration cfa_variable_specifier
[51b7345]413
[b9be000b]414%type<decl> c_declaration static_assert
[c0aa336]415%type<decl> KR_function_declarator KR_function_no_ptr KR_function_ptr KR_function_array
[35718a9]416%type<decl> KR_parameter_list KR_parameter_list_opt
[51b7345]417
[2a8427c6]418%type<decl> parameter_declaration parameter_list parameter_type_list_opt
[51b7345]419
[2871210]420%type<decl> paren_identifier paren_type
[51b7345]421
[0da3e2c]422%type<decl> storage_class storage_class_list
[51b7345]423
[d0ffed1]424%type<decl> sue_declaration_specifier sue_declaration_specifier_nobody sue_type_specifier sue_type_specifier_nobody
[51b7345]425
426%type<tclass> type_class
427%type<decl> type_declarator type_declarator_name type_declaring_list
428
[84d58c5]429%type<decl> type_declaration_specifier type_type_specifier type_name typegen_name
430%type<decl> typedef typedef_declaration typedef_expression
[c0aa336]431
432%type<decl> variable_type_redeclarator type_ptr type_array type_function
433
434%type<decl> type_parameter_redeclarator type_parameter_ptr type_parameter_array type_parameter_function
[51b7345]435
[84d58c5]436%type<decl> type type_no_function
437%type<decl> type_parameter type_parameter_list type_initializer_opt
[51b7345]438
[284da8c]439%type<en> type_parameters_opt type_list
[51b7345]440
[a16a7ec]441%type<decl> type_qualifier type_qualifier_name forall type_qualifier_list_opt type_qualifier_list
[d3bc0ad]442%type<decl> type_specifier type_specifier_nobody
[51b7345]443
[c0aa336]444%type<decl> variable_declarator variable_ptr variable_array variable_function
445%type<decl> variable_abstract_declarator variable_abstract_ptr variable_abstract_array variable_abstract_function
[51b7345]446
[44a81853]447%type<decl> attribute_list_opt attribute_list attribute_name_list attribute attribute_name
[1db21619]448
[c11e31c]449// initializers
[7fdb94e]450%type<in>  initializer initializer_list_opt initializer_opt
[51b7345]451
[c11e31c]452// designators
[51b7345]453%type<en>  designator designator_list designation
454
455
[65d6de4]456// Handle shift/reduce conflict for dangling else by shifting the ELSE token. For example, this string is ambiguous:
457//   .---------.                                matches IF '(' comma_expression ')' statement . (reduce)
458//   if ( C ) S1 else S2
459//   `-----------------'                matches IF '(' comma_expression ')' statement . (shift) ELSE statement */
[5b2edbc]460// Similar issues exit with the waitfor statement.
[51b7345]461
[1efa1e1]462// Order of these lines matters (low-to-high precedence). THEN is left associative over WOR/TIMEOUT/ELSE, WOR is left
463// associative over TIMEOUT/ELSE, and TIMEOUT is left associative over ELSE.
[5b2edbc]464%precedence THEN        // rule precedence for IF/WAITFOR statement
465%precedence WOR         // token precedence for start of WOR in WAITFOR statement
466%precedence TIMEOUT     // token precedence for start of TIMEOUT in WAITFOR statement
467%precedence ELSE        // token precedence for start of else clause in IF/WAITFOR statement
[51b7345]468
[65d6de4]469// Handle shift/reduce conflict for generic type by shifting the '(' token. For example, this string is ambiguous:
470//   forall( otype T ) struct Foo { T v; };
471//       .-----.                                matches pointer to function returning a generic (which is impossible without a type)
472//   Foo ( *fp )( int );
473//   `---'                                              matches start of TYPEGENname '('
[fc20514]474// must be:
[a16a7ec]475//   Foo( int ) ( *fp )( int );
[fc20514]476// The same problem occurs here:
477//   forall( otype T ) struct Foo { T v; } ( *fp )( int );
478// must be:
479//   forall( otype T ) struct Foo { T v; } ( int ) ( *fp )( int );
[65d6de4]480
481// Order of these lines matters (low-to-high precedence).
482%precedence TYPEGENname
[284da8c]483%precedence '}'
[65d6de4]484%precedence '('
485
[c786e1d]486// %precedence RESUME
487// %precedence '{'
488// %precedence ')'
489
[f38e7d7]490%locations                                                                                              // support location tracking for error messages
[930f69e]491
[b87a5ed]492%start translation_unit                                                                 // parse-tree root
[51b7345]493
494%%
[c11e31c]495//************************* Namespace Management ********************************
496
[3d26610]497// The C grammar is not context free because it relies on the distinct terminal symbols "identifier" and "TYPEDEFname",
498// which are lexically identical.
[c11e31c]499//
[3d26610]500//   typedef int foo; // identifier foo must now be scanned as TYPEDEFname
501//   foo f;           // to allow it to appear in this context
[c11e31c]502//
[3d26610]503// While it may be possible to write a purely context-free grammar, such a grammar would obscure the relationship
504// between syntactic and semantic constructs.  Cforall compounds this problem by introducing type names local to the
505// scope of a declaration (for instance, those introduced through "forall" qualifiers), and by introducing "type
506// generators" -- parameterized types.  This latter type name creates a third class of identifiers, "TYPEGENname", which
507// must be distinguished by the lexical scanner.
[c11e31c]508//
[3d26610]509// Since the scanner cannot distinguish among the different classes of identifiers without some context information,
510// there is a type table (typedefTable), which holds type names and identifiers that override type names, for each named
511// scope. During parsing, semantic actions update the type table by adding new identifiers in the current scope. For
512// each context that introduces a name scope, a new level is created in the type table and that level is popped on
513// exiting the scope.  Since type names can be local to a particular declaration, each declaration is itself a scope.
514// This requires distinguishing between type names that are local to the current declaration scope and those that
515// persist past the end of the declaration (i.e., names defined in "typedef" or "otype" declarations).
[c11e31c]516//
[3d26610]517// The non-terminals "push" and "pop" denote the opening and closing of named scopes. Every push has a matching pop in
518// the production rule. There are multiple lists of declarations, where each declaration is a named scope, so pop/push
519// around the list separator.
520//
521//  int f( forall(T) T (*f1) T , forall( S ) S (*f2)( S ) );
522//      push               pop   push                   pop
[51b7345]523
524push:
[ab57786]525                { typedefTable.enterScope(); }
[4d51835]526        ;
[51b7345]527
528pop:
[ab57786]529                { typedefTable.leaveScope(); }
[4d51835]530        ;
[51b7345]531
[c11e31c]532//************************* CONSTANTS ********************************
[51b7345]533
534constant:
[de62360d]535                // ENUMERATIONconstant is not included here; it is treated as a variable with type "enumeration constant".
[ab57786]536        INTEGERconstant                                                         { $$ = new ExpressionNode( build_constantInteger( *$1 ) ); }
[930f69e]537        | FLOATING_DECIMALconstant                                      { $$ = new ExpressionNode( build_constantFloat( *$1 ) ); }
538        | FLOATING_FRACTIONconstant                                     { $$ = new ExpressionNode( build_constantFloat( *$1 ) ); }
[ab57786]539        | FLOATINGconstant                                                      { $$ = new ExpressionNode( build_constantFloat( *$1 ) ); }
540        | CHARACTERconstant                                                     { $$ = new ExpressionNode( build_constantChar( *$1 ) ); }
[4d51835]541        ;
[51b7345]542
[5b2edbc]543quasi_keyword:                                                                                  // CFA
544        TIMEOUT
545        | WOR
546        ;
547
[679e644]548no_attr_identifier:
[4d51835]549        IDENTIFIER
[5b2edbc]550        | quasi_keyword
[679e644]551        | '@'                                                                                           // CFA
552                { Token tok = { new string( DeclarationNode::anonymous.newName() ), yylval.tok.loc }; $$ = tok; }
[4d51835]553        ;
[51b7345]554
[679e644]555identifier:
556        no_attr_identifier
557        | ATTR_IDENTIFIER                                                                       // CFA
[4d51835]558        ;
[51b7345]559
[ab57786]560string_literal:
561        string_literal_list                                                     { $$ = build_constantStr( *$1 ); }
562        ;
563
[b87a5ed]564string_literal_list:                                                                    // juxtaposed strings are concatenated
[ab57786]565        STRINGliteral                                                           { $$ = $1; } // conversion from tok to str
[7bf7fb9]566        | string_literal_list STRINGliteral
567                {
[15697ff]568                        if ( ! appendStr( *$1, *$2 ) ) YYERROR;         // append 2nd juxtaposed string to 1st
[7bf7fb9]569                        delete $2;                                                                      // allocated by lexer
[ab57786]570                        $$ = $1;                                                                        // conversion from tok to str
[7bf7fb9]571                }
[4d51835]572        ;
[51b7345]573
[c11e31c]574//************************* EXPRESSIONS ********************************
[51b7345]575
576primary_expression:
[4d51835]577        IDENTIFIER                                                                                      // typedef name cannot be used as a variable name
[d1625f8]578                { $$ = new ExpressionNode( build_varref( $1 ) ); }
[5b2edbc]579        | quasi_keyword
580                { $$ = new ExpressionNode( build_varref( $1 ) ); }
[1b29996]581        | tuple
[4d51835]582        | '(' comma_expression ')'
583                { $$ = $2; }
584        | '(' compound_statement ')'                                            // GCC, lambda expression
[513e165]585                { $$ = new ExpressionNode( new StmtExpr( dynamic_cast< CompoundStmt * >(maybeMoveBuild< Statement >($2) ) ) ); }
[7e419e7]586        | constant '`' IDENTIFIER                                                       // CFA, postfix call
[dc7db63]587                { $$ = new ExpressionNode( build_func( new ExpressionNode( build_postfix_name( $3 ) ), $1 ) ); }
[7e419e7]588        | string_literal '`' IDENTIFIER                                         // CFA, postfix call
[dc7db63]589                { $$ = new ExpressionNode( build_func( new ExpressionNode( build_postfix_name( $3 ) ), new ExpressionNode( $1 ) ) ); }
[7e419e7]590        | IDENTIFIER '`' IDENTIFIER                                                     // CFA, postfix call
[dc7db63]591                { $$ = new ExpressionNode( build_func( new ExpressionNode( build_postfix_name( $3 ) ), new ExpressionNode( build_varref( $1 ) ) ) ); }
[7e419e7]592        | tuple '`' IDENTIFIER                                                          // CFA, postfix call
[dc7db63]593                { $$ = new ExpressionNode( build_func( new ExpressionNode( build_postfix_name( $3 ) ), $1 ) ); }
[7e419e7]594        | '(' comma_expression ')' '`' IDENTIFIER                       // CFA, postfix call
[dc7db63]595                { $$ = new ExpressionNode( build_func( new ExpressionNode( build_postfix_name( $5 ) ), $2 ) ); }
[84d58c5]596        | type_name '.' no_attr_identifier                                      // CFA, nested type
[203c667]597                { SemanticError( yylloc, "Qualified name is currently unimplemented." ); $$ = nullptr; }
[679e644]598        | type_name '.' '[' field_name_list ']'                         // CFA, nested type / tuple field selector
[203c667]599                { SemanticError( yylloc, "Qualified name is currently unimplemented." ); $$ = nullptr; }
[24c3b67]600        | GENERIC '(' assignment_expression ',' generic_assoc_list ')' // C11
[d807ca28]601                {
602                        // add the missing control expression to the GenericExpr and return it
603                        $5->control = maybeMoveBuild<Expression>( $3 );
604                        $$ = new ExpressionNode( $5 );
605                }
[c786e1d]606        // | RESUME '(' comma_expression ')'
607        //      { SemanticError( yylloc, "Resume expression is currently unimplemented." ); $$ = nullptr; }
608        // | RESUME '(' comma_expression ')' compound_statement
609        //      { SemanticError( yylloc, "Resume expression is currently unimplemented." ); $$ = nullptr; }
[24c3b67]610        ;
611
612generic_assoc_list:                                                                             // C11
[d807ca28]613        generic_association
[24c3b67]614        | generic_assoc_list ',' generic_association
[d807ca28]615                {
616                        // steal the association node from the singleton and delete the wrapper
617                        $1->associations.splice($1->associations.end(), $3->associations);
618                        delete $3;
619                        $$ = $1;
620                }
[24c3b67]621        ;
622
623generic_association:                                                                    // C11
624        type_no_function ':' assignment_expression
[d807ca28]625                {
626                        // create a GenericExpr wrapper with one association pair
627                        $$ = new GenericExpr( nullptr, { { maybeMoveBuildType($1), maybeMoveBuild<Expression>($3) } } );
628                }
[24c3b67]629        | DEFAULT ':' assignment_expression
[d807ca28]630                { $$ = new GenericExpr( nullptr, { { maybeMoveBuild<Expression>($3) } } ); }
[4d51835]631        ;
[51b7345]632
633postfix_expression:
[4d51835]634        primary_expression
[7fdb94e]635        | postfix_expression '[' assignment_expression ']'
[c6b1105]636                // CFA, comma_expression disallowed in this context because it results in a common user error: subscripting a
[de62360d]637                // matrix with x[i,j] instead of x[i][j]. While this change is not backwards compatible, there seems to be
638                // little advantage to this feature and many disadvantages. It is possible to write x[(i,j)] in CFA, which is
639                // equivalent to the old x[i,j].
[7fdb94e]640                { $$ = new ExpressionNode( build_binary_val( OperKinds::Index, $1, $3 ) ); }
[bd3d9e4]641        | postfix_expression '{' argument_expression_list '}' // CFA, constructor call
642                {
643                        Token fn;
644                        fn.str = new std::string( "?{}" );                      // location undefined - use location of '{'?
645                        $$ = new ExpressionNode( new ConstructorExpr( build_func( new ExpressionNode( build_varref( fn ) ), (ExpressionNode *)( $1 )->set_last( $3 ) ) ) );
646                }
[4d51835]647        | postfix_expression '(' argument_expression_list ')'
[d1625f8]648                { $$ = new ExpressionNode( build_func( $1, $3 ) ); }
[4d51835]649        | postfix_expression '.' no_attr_identifier
[d1625f8]650                { $$ = new ExpressionNode( build_fieldSel( $1, build_varref( $3 ) ) ); }
[df22130]651        | postfix_expression '.' INTEGERconstant                        // CFA, tuple index
652                { $$ = new ExpressionNode( build_fieldSel( $1, build_constantInteger( *$3 ) ) ); }
[930f69e]653        | postfix_expression FLOATING_FRACTIONconstant          // CFA, tuple index
654                { $$ = new ExpressionNode( build_fieldSel( $1, build_field_name_FLOATING_FRACTIONconstant( *$2 ) ) ); }
[679e644]655        | postfix_expression '.' '[' field_name_list ']'        // CFA, tuple field selector
[7fdb94e]656                { $$ = new ExpressionNode( build_fieldSel( $1, build_tuple( $4 ) ) ); }
[4d51835]657        | postfix_expression ARROW no_attr_identifier
[ee27df2]658                { $$ = new ExpressionNode( build_pfieldSel( $1, build_varref( $3 ) ) ); }
[861799c]659        | postfix_expression ARROW INTEGERconstant                      // CFA, tuple index
660                { $$ = new ExpressionNode( build_pfieldSel( $1, build_constantInteger( *$3 ) ) ); }
[679e644]661        | postfix_expression ARROW '[' field_name_list ']'      // CFA, tuple field selector
[7fdb94e]662                { $$ = new ExpressionNode( build_pfieldSel( $1, build_tuple( $4 ) ) ); }
[4d51835]663        | postfix_expression ICR
[d1625f8]664                { $$ = new ExpressionNode( build_unary_ptr( OperKinds::IncrPost, $1 ) ); }
[4d51835]665        | postfix_expression DECR
[d1625f8]666                { $$ = new ExpressionNode( build_unary_ptr( OperKinds::DecrPost, $1 ) ); }
[7fdb94e]667        | '(' type_no_function ')' '{' initializer_list_opt comma_opt '}' // C99, compound-literal
[d1625f8]668                { $$ = new ExpressionNode( build_compoundLiteral( $2, new InitializerNode( $5, true ) ) ); }
[7fdb94e]669        | '(' type_no_function ')' '@' '{' initializer_list_opt comma_opt '}' // CFA, explicit C compound-literal
[f810e09]670                { $$ = new ExpressionNode( build_compoundLiteral( $2, (new InitializerNode( $6, true ))->set_maybeConstructed( false ) ) ); }
[ecb27a7]671        | '^' primary_expression '{' argument_expression_list '}' // CFA
[097e2b0]672                {
[9706554]673                        Token fn;
[ecb27a7]674                        fn.str = new string( "^?{}" );                          // location undefined
675                        $$ = new ExpressionNode( build_func( new ExpressionNode( build_varref( fn ) ), (ExpressionNode *)( $2 )->set_last( $4 ) ) );
[097e2b0]676                }
[4d51835]677        ;
[51b7345]678
679argument_expression_list:
[4d51835]680        argument_expression
681        | argument_expression_list ',' argument_expression
[1d4580a]682                { $$ = (ExpressionNode *)( $1->set_last( $3 )); }
[4d51835]683        ;
[51b7345]684
685argument_expression:
[4d51835]686        // empty
[738e304]687                { $$ = nullptr; }
[553772b]688        | '@'                                                                                           // CFA, default parameter
[679e644]689                { SemanticError( yylloc, "Default parameter for argument is currently unimplemented." ); $$ = nullptr; }
690                // { $$ = new ExpressionNode( build_constantInteger( *new string( "2" ) ) ); }
[4d51835]691        | assignment_expression
692        ;
[b87a5ed]693
[679e644]694field_name_list:                                                                                // CFA, tuple field selector
[4d51835]695        field
[679e644]696        | field_name_list ',' field                                     { $$ = (ExpressionNode *)$1->set_last( $3 ); }
[4d51835]697        ;
[b87a5ed]698
699field:                                                                                                  // CFA, tuple field selector
[faddbd8]700        field_name
[930f69e]701        | FLOATING_DECIMALconstant field
702                { $$ = new ExpressionNode( build_fieldSel( new ExpressionNode( build_field_name_FLOATING_DECIMALconstant( *$1 ) ), maybeMoveBuild<Expression>( $2 ) ) ); }
[679e644]703        | FLOATING_DECIMALconstant '[' field_name_list ']'
[7fdb94e]704                { $$ = new ExpressionNode( build_fieldSel( new ExpressionNode( build_field_name_FLOATING_DECIMALconstant( *$1 ) ), build_tuple( $3 ) ) ); }
[faddbd8]705        | field_name '.' field
[bf32bb8]706                { $$ = new ExpressionNode( build_fieldSel( $1, maybeMoveBuild<Expression>( $3 ) ) ); }
[679e644]707        | field_name '.' '[' field_name_list ']'
[7fdb94e]708                { $$ = new ExpressionNode( build_fieldSel( $1, build_tuple( $4 ) ) ); }
[faddbd8]709        | field_name ARROW field
[bf32bb8]710                { $$ = new ExpressionNode( build_pfieldSel( $1, maybeMoveBuild<Expression>( $3 ) ) ); }
[679e644]711        | field_name ARROW '[' field_name_list ']'
[7fdb94e]712                { $$ = new ExpressionNode( build_pfieldSel( $1, build_tuple( $4 ) ) ); }
[4d51835]713        ;
[51b7345]714
[faddbd8]715field_name:
[df22130]716        INTEGERconstant fraction_constants_opt
[8780e30]717                { $$ = new ExpressionNode( build_field_name_fraction_constants( build_constantInteger( *$1 ), $2 ) ); }
[df22130]718        | FLOATINGconstant fraction_constants_opt
[8780e30]719                { $$ = new ExpressionNode( build_field_name_fraction_constants( build_field_name_FLOATINGconstant( *$1 ), $2 ) ); }
[df22130]720        | no_attr_identifier fraction_constants_opt
[4cb935e]721                {
[84d58c5]722                        $$ = new ExpressionNode( build_field_name_fraction_constants( build_varref( $1 ), $2 ) );
723                }
[1b29996]724        ;
725
[df22130]726fraction_constants_opt:
[1b29996]727        // empty
[8780e30]728                { $$ = nullptr; }
[df22130]729        | fraction_constants_opt FLOATING_FRACTIONconstant
[8780e30]730                {
[930f69e]731                        Expression * constant = build_field_name_FLOATING_FRACTIONconstant( *$2 );
[8780e30]732                        $$ = $1 != nullptr ? new ExpressionNode( build_fieldSel( $1,  constant ) ) : new ExpressionNode( constant );
733                }
[faddbd8]734        ;
735
[51b7345]736unary_expression:
[4d51835]737        postfix_expression
[c6b1105]738                // first location where constant/string can have operator applied: sizeof 3/sizeof "abc" still requires
739                // semantics checks, e.g., ++3, 3--, *3, &&3
[51b1202]740        | constant
[ab57786]741        | string_literal
[d1625f8]742                { $$ = new ExpressionNode( $1 ); }
[4d51835]743        | EXTENSION cast_expression                                                     // GCC
[e04ef3a]744                { $$ = $2->set_extension( true ); }
[c6b1105]745                // '*' ('&') is separated from unary_operator because of shift/reduce conflict in:
746                //              { * X; }         // dereference X
747                //              { * int X; } // CFA declaration of pointer to int
[51e076e]748        | ptrref_operator cast_expression                                       // CFA
[9706554]749                {
750                        switch ( $1 ) {
[d9e2280]751                          case OperKinds::AddressOf:
[db70fe4]752                                $$ = new ExpressionNode( new AddressExpr( maybeMoveBuild< Expression >( $2 ) ) );
[9706554]753                                break;
[d9e2280]754                          case OperKinds::PointTo:
[d1625f8]755                                $$ = new ExpressionNode( build_unary_val( $1, $2 ) );
[9706554]756                                break;
[5809461]757                          case OperKinds::And:
[db70fe4]758                                $$ = new ExpressionNode( new AddressExpr( new AddressExpr( maybeMoveBuild< Expression >( $2 ) ) ) );
[5809461]759                                break;
[9706554]760                          default:
761                                assert( false );
762                        }
763                }
[4d51835]764        | unary_operator cast_expression
[d1625f8]765                { $$ = new ExpressionNode( build_unary_val( $1, $2 ) ); }
[dd51906]766        | ICR unary_expression
[d1625f8]767                { $$ = new ExpressionNode( build_unary_ptr( OperKinds::Incr, $2 ) ); }
[dd51906]768        | DECR unary_expression
[d1625f8]769                { $$ = new ExpressionNode( build_unary_ptr( OperKinds::Decr, $2 ) ); }
[4d51835]770        | SIZEOF unary_expression
[db70fe4]771                { $$ = new ExpressionNode( new SizeofExpr( maybeMoveBuild< Expression >( $2 ) ) ); }
[84d58c5]772        | SIZEOF '(' type_no_function ')'
[db70fe4]773                { $$ = new ExpressionNode( new SizeofExpr( maybeMoveBuildType( $3 ) ) ); }
[d1625f8]774        | ALIGNOF unary_expression                                                      // GCC, variable alignment
[db70fe4]775                { $$ = new ExpressionNode( new AlignofExpr( maybeMoveBuild< Expression >( $2 ) ) ); }
[a2e0687]776        | ALIGNOF '(' type_no_function ')'                                      // GCC, type alignment
[db70fe4]777                { $$ = new ExpressionNode( new AlignofExpr( maybeMoveBuildType( $3 ) ) ); }
[84d58c5]778        | OFFSETOF '(' type_no_function ',' no_attr_identifier ')'
[d1625f8]779                { $$ = new ExpressionNode( build_offsetOf( $3, build_varref( $5 ) ) ); }
[4d51835]780        | ATTR_IDENTIFIER
[db70fe4]781                { $$ = new ExpressionNode( new AttrExpr( build_varref( $1 ), maybeMoveBuild< Expression >( (ExpressionNode *)nullptr ) ) ); }
[4d51835]782        | ATTR_IDENTIFIER '(' argument_expression ')'
[db70fe4]783                { $$ = new ExpressionNode( new AttrExpr( build_varref( $1 ), maybeMoveBuild< Expression >( $3 ) ) ); }
[84d58c5]784        | ATTR_IDENTIFIER '(' type ')'
[db70fe4]785                { $$ = new ExpressionNode( new AttrExpr( build_varref( $1 ), maybeMoveBuildType( $3 ) ) ); }
[4d51835]786        ;
[51b7345]787
[dd51906]788ptrref_operator:
[d9e2280]789        '*'                                                                                     { $$ = OperKinds::PointTo; }
790        | '&'                                                                           { $$ = OperKinds::AddressOf; }
[c6b1105]791                // GCC, address of label must be handled by semantic check for ref,ref,label
[9f07232]792        | ANDAND                                                                        { $$ = OperKinds::And; }
[dd51906]793        ;
794
[51b7345]795unary_operator:
[d9e2280]796        '+'                                                                                     { $$ = OperKinds::UnPlus; }
797        | '-'                                                                           { $$ = OperKinds::UnMinus; }
798        | '!'                                                                           { $$ = OperKinds::Neg; }
799        | '~'                                                                           { $$ = OperKinds::BitNeg; }
[4d51835]800        ;
[51b7345]801
802cast_expression:
[4d51835]803        unary_expression
[84d58c5]804        | '(' type_no_function ')' cast_expression
[d1625f8]805                { $$ = new ExpressionNode( build_cast( $2, $4 ) ); }
[1528a2c]806                // keyword cast cannot be grouped because of reduction in aggregate_key
[553772b]807        | '(' GENERATOR '&' ')' cast_expression                         // CFA
808                { $$ = new ExpressionNode( build_keyword_cast( KeywordCastExpr::Coroutine, $5 ) ); }
[fae90d5]809        | '(' COROUTINE '&' ')' cast_expression                         // CFA
[9a705dc8]810                { $$ = new ExpressionNode( build_keyword_cast( KeywordCastExpr::Coroutine, $5 ) ); }
[fae90d5]811        | '(' THREAD '&' ')' cast_expression                            // CFA
[9a705dc8]812                { $$ = new ExpressionNode( build_keyword_cast( KeywordCastExpr::Thread, $5 ) ); }
[fae90d5]813        | '(' MONITOR '&' ')' cast_expression                           // CFA
[9a705dc8]814                { $$ = new ExpressionNode( build_keyword_cast( KeywordCastExpr::Monitor, $5 ) ); }
[72457b6]815                // VIRTUAL cannot be opt because of look ahead issues
[fae90d5]816        | '(' VIRTUAL ')' cast_expression                                       // CFA
[513e165]817                { $$ = new ExpressionNode( new VirtualCastExpr( maybeMoveBuild< Expression >( $4 ), maybeMoveBuildType( nullptr ) ) ); }
[fae90d5]818        | '(' VIRTUAL type_no_function ')' cast_expression      // CFA
[513e165]819                { $$ = new ExpressionNode( new VirtualCastExpr( maybeMoveBuild< Expression >( $5 ), maybeMoveBuildType( $3 ) ) ); }
[1528a2c]820        | '(' RETURN type_no_function ')' cast_expression       // CFA
821                { SemanticError( yylloc, "Return cast is currently unimplemented." ); $$ = nullptr; }
822        | '(' COERCE type_no_function ')' cast_expression       // CFA
823                { SemanticError( yylloc, "Coerce cast is currently unimplemented." ); $$ = nullptr; }
824        | '(' qualifier_cast_list ')' cast_expression           // CFA
825                { SemanticError( yylloc, "Qualifier cast is currently unimplemented." ); $$ = nullptr; }
[84d58c5]826//      | '(' type_no_function ')' tuple
[1b29996]827//              { $$ = new ExpressionNode( build_cast( $2, $4 ) ); }
[4d51835]828        ;
[51b7345]829
[1528a2c]830qualifier_cast_list:
831        cast_modifier type_qualifier_name
832        | cast_modifier MUTEX
833        | qualifier_cast_list cast_modifier type_qualifier_name
834        | qualifier_cast_list cast_modifier MUTEX
835        ;
836
837cast_modifier:
838        '-'
839        | '+'
840        ;
841
[994d080]842exponential_expression:
[4d51835]843        cast_expression
[994d080]844        | exponential_expression '\\' cast_expression
[e5f2a67]845                { $$ = new ExpressionNode( build_binary_val( OperKinds::Exp, $1, $3 ) ); }
[994d080]846        ;
847
848multiplicative_expression:
849        exponential_expression
850        | multiplicative_expression '*' exponential_expression
[d1625f8]851                { $$ = new ExpressionNode( build_binary_val( OperKinds::Mul, $1, $3 ) ); }
[994d080]852        | multiplicative_expression '/' exponential_expression
[d1625f8]853                { $$ = new ExpressionNode( build_binary_val( OperKinds::Div, $1, $3 ) ); }
[994d080]854        | multiplicative_expression '%' exponential_expression
[d1625f8]855                { $$ = new ExpressionNode( build_binary_val( OperKinds::Mod, $1, $3 ) ); }
[4d51835]856        ;
[51b7345]857
858additive_expression:
[4d51835]859        multiplicative_expression
860        | additive_expression '+' multiplicative_expression
[d1625f8]861                { $$ = new ExpressionNode( build_binary_val( OperKinds::Plus, $1, $3 ) ); }
[4d51835]862        | additive_expression '-' multiplicative_expression
[d1625f8]863                { $$ = new ExpressionNode( build_binary_val( OperKinds::Minus, $1, $3 ) ); }
[4d51835]864        ;
[51b7345]865
866shift_expression:
[4d51835]867        additive_expression
868        | shift_expression LS additive_expression
[d1625f8]869                { $$ = new ExpressionNode( build_binary_val( OperKinds::LShift, $1, $3 ) ); }
[4d51835]870        | shift_expression RS additive_expression
[d1625f8]871                { $$ = new ExpressionNode( build_binary_val( OperKinds::RShift, $1, $3 ) ); }
[4d51835]872        ;
[51b7345]873
874relational_expression:
[4d51835]875        shift_expression
876        | relational_expression '<' shift_expression
[d1625f8]877                { $$ = new ExpressionNode( build_binary_val( OperKinds::LThan, $1, $3 ) ); }
[4d51835]878        | relational_expression '>' shift_expression
[d1625f8]879                { $$ = new ExpressionNode( build_binary_val( OperKinds::GThan, $1, $3 ) ); }
[4d51835]880        | relational_expression LE shift_expression
[d1625f8]881                { $$ = new ExpressionNode( build_binary_val( OperKinds::LEThan, $1, $3 ) ); }
[4d51835]882        | relational_expression GE shift_expression
[d1625f8]883                { $$ = new ExpressionNode( build_binary_val( OperKinds::GEThan, $1, $3 ) ); }
[4d51835]884        ;
[51b7345]885
886equality_expression:
[4d51835]887        relational_expression
888        | equality_expression EQ relational_expression
[d1625f8]889                { $$ = new ExpressionNode( build_binary_val( OperKinds::Eq, $1, $3 ) ); }
[4d51835]890        | equality_expression NE relational_expression
[d1625f8]891                { $$ = new ExpressionNode( build_binary_val( OperKinds::Neq, $1, $3 ) ); }
[4d51835]892        ;
[51b7345]893
894AND_expression:
[4d51835]895        equality_expression
896        | AND_expression '&' equality_expression
[d1625f8]897                { $$ = new ExpressionNode( build_binary_val( OperKinds::BitAnd, $1, $3 ) ); }
[4d51835]898        ;
[51b7345]899
900exclusive_OR_expression:
[4d51835]901        AND_expression
902        | exclusive_OR_expression '^' AND_expression
[d1625f8]903                { $$ = new ExpressionNode( build_binary_val( OperKinds::Xor, $1, $3 ) ); }
[4d51835]904        ;
[51b7345]905
906inclusive_OR_expression:
[4d51835]907        exclusive_OR_expression
908        | inclusive_OR_expression '|' exclusive_OR_expression
[d1625f8]909                { $$ = new ExpressionNode( build_binary_val( OperKinds::BitOr, $1, $3 ) ); }
[4d51835]910        ;
[51b7345]911
912logical_AND_expression:
[4d51835]913        inclusive_OR_expression
914        | logical_AND_expression ANDAND inclusive_OR_expression
[d1625f8]915                { $$ = new ExpressionNode( build_and_or( $1, $3, true ) ); }
[4d51835]916        ;
[51b7345]917
918logical_OR_expression:
[4d51835]919        logical_AND_expression
920        | logical_OR_expression OROR logical_AND_expression
[d1625f8]921                { $$ = new ExpressionNode( build_and_or( $1, $3, false ) ); }
[4d51835]922        ;
[51b7345]923
924conditional_expression:
[4d51835]925        logical_OR_expression
926        | logical_OR_expression '?' comma_expression ':' conditional_expression
[d1625f8]927                { $$ = new ExpressionNode( build_cond( $1, $3, $5 ) ); }
[fae90d5]928                // FIX ME: computes $1 twice
[4d51835]929        | logical_OR_expression '?' /* empty */ ':' conditional_expression // GCC, omitted first operand
[d1625f8]930                { $$ = new ExpressionNode( build_cond( $1, $1, $4 ) ); }
[4d51835]931        ;
[51b7345]932
933constant_expression:
[4d51835]934        conditional_expression
935        ;
[51b7345]936
937assignment_expression:
[4d51835]938                // CFA, assignment is separated from assignment_operator to ensure no assignment operations for tuples
939        conditional_expression
940        | unary_expression assignment_operator assignment_expression
[cda7889]941                { $$ = new ExpressionNode( build_binary_val( $2, $1, $3 ) ); }
[7fdb94e]942        | unary_expression '=' '{' initializer_list_opt comma_opt '}'
[fae90d5]943                { SemanticError( yylloc, "Initializer assignment is currently unimplemented." ); $$ = nullptr; }
[4d51835]944        ;
[51b7345]945
946assignment_expression_opt:
[4d51835]947        // empty
[d1625f8]948                { $$ = nullptr; }
[4d51835]949        | assignment_expression
950        ;
[b87a5ed]951
[9706554]952assignment_operator:
[d9e2280]953        '='                                                                                     { $$ = OperKinds::Assign; }
[a839867]954        | ATassign                                                                      { $$ = OperKinds::AtAssn; }
[e5f2a67]955        | EXPassign                                                                     { $$ = OperKinds::ExpAssn; }
[d9e2280]956        | MULTassign                                                            { $$ = OperKinds::MulAssn; }
957        | DIVassign                                                                     { $$ = OperKinds::DivAssn; }
958        | MODassign                                                                     { $$ = OperKinds::ModAssn; }
959        | PLUSassign                                                            { $$ = OperKinds::PlusAssn; }
960        | MINUSassign                                                           { $$ = OperKinds::MinusAssn; }
961        | LSassign                                                                      { $$ = OperKinds::LSAssn; }
962        | RSassign                                                                      { $$ = OperKinds::RSAssn; }
963        | ANDassign                                                                     { $$ = OperKinds::AndAssn; }
964        | ERassign                                                                      { $$ = OperKinds::ERAssn; }
965        | ORassign                                                                      { $$ = OperKinds::OrAssn; }
[413ad05]966        ;
[9706554]967
[b87a5ed]968tuple:                                                                                                  // CFA, tuple
[de62360d]969                // CFA, one assignment_expression is factored out of comma_expression to eliminate a shift/reduce conflict with
[c0aa336]970                // comma_expression in cfa_identifier_parameter_array and cfa_abstract_array
[1b29996]971//      '[' ']'
972//              { $$ = new ExpressionNode( build_tuple() ); }
[13e8427]973//      | '[' push assignment_expression pop ']'
[1b29996]974//              { $$ = new ExpressionNode( build_tuple( $3 ) ); }
[17238fd]975        '[' ',' tuple_expression_list ']'
976                { $$ = new ExpressionNode( build_tuple( (ExpressionNode *)(new ExpressionNode( nullptr ) )->set_last( $3 ) ) ); }
977        | '[' push assignment_expression pop ',' tuple_expression_list ']'
978                { $$ = new ExpressionNode( build_tuple( (ExpressionNode *)$3->set_last( $6 ) ) ); }
[4d51835]979        ;
[51b7345]980
981tuple_expression_list:
[4d51835]982        assignment_expression_opt
983        | tuple_expression_list ',' assignment_expression_opt
[1d4580a]984                { $$ = (ExpressionNode *)$1->set_last( $3 ); }
[4d51835]985        ;
[51b7345]986
987comma_expression:
[4d51835]988        assignment_expression
[9706554]989        | comma_expression ',' assignment_expression
[513e165]990                { $$ = new ExpressionNode( new CommaExpr( maybeMoveBuild< Expression >( $1 ), maybeMoveBuild< Expression >( $3 ) ) ); }
[4d51835]991        ;
[51b7345]992
993comma_expression_opt:
[4d51835]994        // empty
[58dd019]995                { $$ = nullptr; }
[4d51835]996        | comma_expression
997        ;
[51b7345]998
[c11e31c]999//*************************** STATEMENTS *******************************
[51b7345]1000
1001statement:
[4d51835]1002        labeled_statement
1003        | compound_statement
[c0a33d2]1004        | expression_statement
[4d51835]1005        | selection_statement
1006        | iteration_statement
1007        | jump_statement
[8b47e50]1008        | with_statement
[b6b3c42]1009        | mutex_statement
[5b2edbc]1010        | waitfor_statement
[4d51835]1011        | exception_statement
[2a8427c6]1012        | enable_disable_statement
[fae90d5]1013                { SemanticError( yylloc, "enable/disable statement is currently unimplemented." ); $$ = nullptr; }
[4d51835]1014        | asm_statement
[61fc4f6]1015        | DIRECTIVE
[6d539f83]1016                { $$ = new StatementNode( build_directive( $1 ) ); }
[b9be000b]1017        ;
[51b7345]1018
1019labeled_statement:
[44a81853]1020                // labels cannot be identifiers 0 or 1 or ATTR_IDENTIFIER
1021        identifier_or_type_name ':' attribute_list_opt statement
[6d01d89]1022                { $$ = $4->add_label( $1, $3 ); }
[4d51835]1023        ;
[51b7345]1024
1025compound_statement:
[4d51835]1026        '{' '}'
[e82aa9df]1027                { $$ = new StatementNode( build_compound( (StatementNode *)0 ) ); }
[35718a9]1028        | '{' push
[51b1202]1029          local_label_declaration_opt                                           // GCC, local labels
[9bd6105]1030          statement_decl_list                                                           // C99, intermix declarations and statements
[c0aa336]1031          pop '}'
[35718a9]1032                { $$ = new StatementNode( build_compound( $4 ) ); }
[4d51835]1033        ;
[b87a5ed]1034
[9bd6105]1035statement_decl_list:                                                                    // C99
1036        statement_decl
[35718a9]1037        | statement_decl_list statement_decl
[6d01d89]1038                { assert( $1 ); $1->set_last( $2 ); $$ = $1; }
[4d51835]1039        ;
[51b7345]1040
[9bd6105]1041statement_decl:
[4d51835]1042        declaration                                                                                     // CFA, new & old style declarations
[e82aa9df]1043                { $$ = new StatementNode( $1 ); }
[4d51835]1044        | EXTENSION declaration                                                         // GCC
[6d01d89]1045                { distExt( $2 ); $$ = new StatementNode( $2 ); }
[4d51835]1046        | function_definition
[e82aa9df]1047                { $$ = new StatementNode( $1 ); }
[c0aa336]1048        | EXTENSION function_definition                                         // GCC
[6d01d89]1049                { distExt( $2 ); $$ = new StatementNode( $2 ); }
[35718a9]1050        | statement
[4d51835]1051        ;
[51b7345]1052
[9bd6105]1053statement_list_nodecl:
[4d51835]1054        statement
[9bd6105]1055        | statement_list_nodecl statement
[6d01d89]1056                { assert( $1 ); $1->set_last( $2 ); $$ = $1; }
[4d51835]1057        ;
[51b7345]1058
1059expression_statement:
[4d51835]1060        comma_expression_opt ';'
[e82aa9df]1061                { $$ = new StatementNode( build_expr( $1 ) ); }
[4d51835]1062        ;
[51b7345]1063
1064selection_statement:
[3d26610]1065                        // pop causes a S/R conflict without separating the IF statement into a non-terminal even after resolving
1066                        // the inherent S/R conflict with THEN/ELSE.
1067        push if_statement pop
1068                { $$ = $2; }
[4cc585b]1069        | SWITCH '(' comma_expression ')' case_clause
[6a276a0]1070                { $$ = new StatementNode( build_switch( true, $3, $5 ) ); }
[35718a9]1071        | SWITCH '(' comma_expression ')' '{' push declaration_list_opt switch_clause_list_opt pop '}' // CFA
[4e06c1e]1072                {
[6a276a0]1073                        StatementNode *sw = new StatementNode( build_switch( true, $3, $8 ) );
[4e06c1e]1074                        // The semantics of the declaration list is changed to include associated initialization, which is performed
1075                        // *before* the transfer to the appropriate case clause by hoisting the declarations into a compound
1076                        // statement around the switch.  Statements after the initial declaration list can never be executed, and
[8688ce1]1077                        // therefore, are removed from the grammar even though C allows it. The change also applies to choose
1078                        // statement.
[a7741435]1079                        $$ = $7 ? new StatementNode( build_compound( (StatementNode *)((new StatementNode( $7 ))->set_last( sw )) ) ) : sw;
[4e06c1e]1080                }
[4d51835]1081        | CHOOSE '(' comma_expression ')' case_clause           // CFA
[6a276a0]1082                { $$ = new StatementNode( build_switch( false, $3, $5 ) ); }
[35718a9]1083        | CHOOSE '(' comma_expression ')' '{' push declaration_list_opt switch_clause_list_opt pop '}' // CFA
[4e06c1e]1084                {
[6a276a0]1085                        StatementNode *sw = new StatementNode( build_switch( false, $3, $8 ) );
[a7741435]1086                        $$ = $7 ? new StatementNode( build_compound( (StatementNode *)((new StatementNode( $7 ))->set_last( sw )) ) ) : sw;
[4e06c1e]1087                }
[4d51835]1088        ;
[b87a5ed]1089
[3d26610]1090if_statement:
1091        IF '(' if_control_expression ')' statement                      %prec THEN
1092                // explicitly deal with the shift/reduce conflict on if/else
1093                { $$ = new StatementNode( build_if( $3, $5, nullptr ) ); }
1094        | IF '(' if_control_expression ')' statement ELSE statement
1095                { $$ = new StatementNode( build_if( $3, $5, $7 ) ); }
1096        ;
1097
[936e9f4]1098if_control_expression:
[35718a9]1099        comma_expression
[f271bdd]1100                { $$ = new IfCtrl( nullptr, $1 ); }
[35718a9]1101        | c_declaration                                                                         // no semi-colon
[f271bdd]1102                { $$ = new IfCtrl( $1, nullptr ); }
[35718a9]1103        | cfa_declaration                                                                       // no semi-colon
[f271bdd]1104                { $$ = new IfCtrl( $1, nullptr ); }
[6d49ea3]1105        | declaration comma_expression                                          // semi-colon separated
[f271bdd]1106                { $$ = new IfCtrl( $1, $2 ); }
[936e9f4]1107        ;
1108
[de62360d]1109// CASE and DEFAULT clauses are only allowed in the SWITCH statement, precluding Duff's device. In addition, a case
1110// clause allows a list of values and subranges.
[b87a5ed]1111
1112case_value:                                                                                             // CFA
[4d51835]1113        constant_expression                                                     { $$ = $1; }
1114        | constant_expression ELLIPSIS constant_expression      // GCC, subrange
[db70fe4]1115                { $$ = new ExpressionNode( new RangeExpr( maybeMoveBuild< Expression >( $1 ), maybeMoveBuild< Expression >( $3 ) ) ); }
[4d51835]1116        | subrange                                                                                      // CFA, subrange
1117        ;
[b87a5ed]1118
1119case_value_list:                                                                                // CFA
[e82aa9df]1120        case_value                                                                      { $$ = new StatementNode( build_case( $1 ) ); }
[064e3ff]1121                // convert case list, e.g., "case 1, 3, 5:" into "case 1: case 3: case 5"
[e82aa9df]1122        | case_value_list ',' case_value                        { $$ = (StatementNode *)($1->set_last( new StatementNode( build_case( $3 ) ) ) ); }
[4d51835]1123        ;
[b87a5ed]1124
1125case_label:                                                                                             // CFA
[8688ce1]1126        CASE case_value_list ':'                                        { $$ = $2; }
[e82aa9df]1127        | DEFAULT ':'                                                           { $$ = new StatementNode( build_default() ); }
[4d51835]1128                // A semantic check is required to ensure only one default clause per switch/choose statement.
1129        ;
[b87a5ed]1130
[6a276a0]1131//label_list_opt:
1132//      // empty
1133//      | identifier_or_type_name ':'
1134//      | label_list_opt identifier_or_type_name ':'
1135//      ;
1136
[b87a5ed]1137case_label_list:                                                                                // CFA
[4d51835]1138        case_label
[1d4580a]1139        | case_label_list case_label                            { $$ = (StatementNode *)( $1->set_last( $2 )); }
[4d51835]1140        ;
[b87a5ed]1141
1142case_clause:                                                                                    // CFA
[e82aa9df]1143        case_label_list statement                                       { $$ = $1->append_last_case( new StatementNode( build_compound( $2 ) ) ); }
[4d51835]1144        ;
[b87a5ed]1145
1146switch_clause_list_opt:                                                                 // CFA
[4d51835]1147        // empty
[58dd019]1148                { $$ = nullptr; }
[4d51835]1149        | switch_clause_list
1150        ;
[b87a5ed]1151
1152switch_clause_list:                                                                             // CFA
[9bd6105]1153        case_label_list statement_list_nodecl
[e82aa9df]1154                { $$ = $1->append_last_case( new StatementNode( build_compound( $2 ) ) ); }
[9bd6105]1155        | switch_clause_list case_label_list statement_list_nodecl
[e82aa9df]1156                { $$ = (StatementNode *)( $1->set_last( $2->append_last_case( new StatementNode( build_compound( $3 ) ) ) ) ); }
[4d51835]1157        ;
[b87a5ed]1158
[51b7345]1159iteration_statement:
[401e61f]1160        WHILE '(' push if_control_expression ')' statement pop
1161                { $$ = new StatementNode( build_while( $4, $6 ) ); }
[f271bdd]1162        | WHILE '(' ')' statement                                                       // CFA => while ( 1 )
1163                { $$ = new StatementNode( build_while( new IfCtrl( nullptr, new ExpressionNode( build_constantInteger( *new string( "1" ) ) ) ), $4 ) ); }
[4d51835]1164        | DO statement WHILE '(' comma_expression ')' ';'
[401e61f]1165                { $$ = new StatementNode( build_do_while( $5, $2 ) ); }
[f271bdd]1166        | DO statement WHILE '(' ')' ';'                                        // CFA => do while( 1 )
1167                { $$ = new StatementNode( build_do_while( new ExpressionNode( build_constantInteger( *new string( "1" ) ) ), $2 ) ); }
[6d01d89]1168        | FOR '(' push for_control_expression_list ')' statement pop
[e82aa9df]1169                { $$ = new StatementNode( build_for( $4, $6 ) ); }
[f1aeede]1170        | FOR '(' ')' statement                                                         // CFA => for ( ;; )
1171                { $$ = new StatementNode( build_for( new ForCtrl( (ExpressionNode * )nullptr, (ExpressionNode * )nullptr, (ExpressionNode * )nullptr ), $4 ) ); }
[4d51835]1172        ;
[51b7345]1173
[6d01d89]1174for_control_expression_list:
1175        for_control_expression
1176        | for_control_expression_list ':' for_control_expression
[67d4e37]1177                // ForCtrl + ForCtrl:
1178                //    init + init => multiple declaration statements that are hoisted
1179                //    condition + condition => (expression) && (expression)
1180                //    change + change => (expression), (expression)
1181                {
1182                        $1->init->set_last( $3->init );
1183                        if ( $1->condition ) {
1184                                if ( $3->condition ) {
1185                                        $1->condition->expr.reset( new LogicalExpr( $1->condition->expr.release(), $3->condition->expr.release(), true ) );
1186                                } // if
1187                        } else $1->condition = $3->condition;
1188                        if ( $1->change ) {
1189                                if ( $3->change ) {
1190                                        $1->change->expr.reset( new CommaExpr( $1->change->expr.release(), $3->change->expr.release() ) );
1191                                } // if
1192                        } else $1->change = $3->change;
1193                        $$ = $1;
1194                }
[6d01d89]1195        ;
1196
[51b7345]1197for_control_expression:
[6d01d89]1198        ';' comma_expression_opt ';' comma_expression_opt
1199                { $$ = new ForCtrl( (ExpressionNode * )nullptr, $2, $4 ); }
1200        | comma_expression ';' comma_expression_opt ';' comma_expression_opt
1201                { $$ = new ForCtrl( $1, $3, $5 ); }
1202        | declaration comma_expression_opt ';' comma_expression_opt // C99, declaration has ';'
1203                { $$ = new ForCtrl( $1, $2, $4 ); }
[67d4e37]1204
[6d01d89]1205        | comma_expression                                                                      // CFA
[f1aeede]1206                { $$ = forCtrl( $1, new string( DeclarationNode::anonymous.newName() ), new ExpressionNode( build_constantInteger( *new string( "0" ) ) ),
1207                                                OperKinds::LThan, $1->clone(), new ExpressionNode( build_constantInteger( *new string( "1" ) ) ) ); }
[6d01d89]1208        | comma_expression inclexcl comma_expression            // CFA
[ee27df2]1209                { $$ = forCtrl( $1, new string( DeclarationNode::anonymous.newName() ), $1->clone(), $2, $3, new ExpressionNode( build_constantInteger( *new string( "1" ) ) ) ); }
[6d01d89]1210        | comma_expression inclexcl comma_expression '~' comma_expression // CFA
[cc22003]1211                { $$ = forCtrl( $1, new string( DeclarationNode::anonymous.newName() ), $1->clone(), $2, $3, $5 ); }
[f1aeede]1212        | comma_expression ';' comma_expression                         // CFA
1213                { $$ = forCtrl( $3, $1, new ExpressionNode( build_constantInteger( *new string( "0" ) ) ),
1214                                                OperKinds::LThan, $3->clone(), new ExpressionNode( build_constantInteger( *new string( "1" ) ) ) ); }
[6d01d89]1215        | comma_expression ';' comma_expression inclexcl comma_expression // CFA
[f1aeede]1216                { $$ = forCtrl( $3, $1, $3->clone(), $4, $5, new ExpressionNode( build_constantInteger( *new string( "1" ) ) ) ); }
[6d01d89]1217        | comma_expression ';' comma_expression inclexcl comma_expression '~' comma_expression // CFA
[f1aeede]1218                { $$ = forCtrl( $3, $1, $3->clone(), $4, $5, $7 ); }
[67d4e37]1219
1220                // There is a S/R conflicit if ~ and -~ are factored out.
1221        | comma_expression ';' comma_expression '~' '@'         // CFA
1222                { $$ = forCtrl( $3, $1, $3->clone(), OperKinds::LThan, nullptr, new ExpressionNode( build_constantInteger( *new string( "1" ) ) ) ); }
1223        | comma_expression ';' comma_expression ErangeDown '@' // CFA
1224                { $$ = forCtrl( $3, $1, $3->clone(), OperKinds::GThan, nullptr, new ExpressionNode( build_constantInteger( *new string( "1" ) ) ) ); }
[2d2df9f]1225        | comma_expression ';' comma_expression '~' '@' '~' comma_expression // CFA
1226                { $$ = forCtrl( $3, $1, $3->clone(), OperKinds::LThan, nullptr, $7 ); }
[1b54b54]1227        | comma_expression ';' comma_expression ErangeDown '@' '~' comma_expression // CFA
1228                { $$ = forCtrl( $3, $1, $3->clone(), OperKinds::GThan, nullptr, $7 ); }
[2d2df9f]1229        | comma_expression ';' comma_expression '~' '@' '~' '@' // CFA
1230                { $$ = forCtrl( $3, $1, $3->clone(), OperKinds::LThan, nullptr, nullptr ); }
[d1625f8]1231        ;
[51b7345]1232
[cc22003]1233inclexcl:
1234        '~'
1235                { $$ = OperKinds::LThan; }
[d69f4bb4]1236        | ErangeUpEq
[cc22003]1237                { $$ = OperKinds::LEThan; }
[d69f4bb4]1238        | ErangeDown
1239                { $$ = OperKinds::GThan; }
1240        | ErangeDownEq
1241                { $$ = OperKinds::GEThan; }
[cc22003]1242        ;
1243
[51b7345]1244jump_statement:
[44a81853]1245        GOTO identifier_or_type_name ';'
[ab57786]1246                { $$ = new StatementNode( build_branch( $2, BranchStmt::Goto ) ); }
[4d51835]1247        | GOTO '*' comma_expression ';'                                         // GCC, computed goto
[4e06c1e]1248                // The syntax for the GCC computed goto violates normal expression precedence, e.g., goto *i+3; => goto *(i+3);
[de62360d]1249                // whereas normal operator precedence yields goto (*i)+3;
[e82aa9df]1250                { $$ = new StatementNode( build_computedgoto( $3 ) ); }
[6a276a0]1251                // A semantic check is required to ensure fallthru appears only in the body of a choose statement.
1252    | fall_through_name ';'                                                             // CFA
1253                { $$ = new StatementNode( build_branch( BranchStmt::FallThrough ) ); }
1254    | fall_through_name identifier_or_type_name ';'             // CFA
1255                { $$ = new StatementNode( build_branch( $2, BranchStmt::FallThrough ) ); }
1256        | fall_through_name DEFAULT ';'                                         // CFA
1257                { $$ = new StatementNode( build_branch( BranchStmt::FallThroughDefault ) ); }
[4d51835]1258        | CONTINUE ';'
[de62360d]1259                // A semantic check is required to ensure this statement appears only in the body of an iteration statement.
[ab57786]1260                { $$ = new StatementNode( build_branch( BranchStmt::Continue ) ); }
[44a81853]1261        | CONTINUE identifier_or_type_name ';'                          // CFA, multi-level continue
[de62360d]1262                // A semantic check is required to ensure this statement appears only in the body of an iteration statement, and
1263                // the target of the transfer appears only at the start of an iteration statement.
[ab57786]1264                { $$ = new StatementNode( build_branch( $2, BranchStmt::Continue ) ); }
[4d51835]1265        | BREAK ';'
[de62360d]1266                // A semantic check is required to ensure this statement appears only in the body of an iteration statement.
[ab57786]1267                { $$ = new StatementNode( build_branch( BranchStmt::Break ) ); }
[44a81853]1268        | BREAK identifier_or_type_name ';'                                     // CFA, multi-level exit
[de62360d]1269                // A semantic check is required to ensure this statement appears only in the body of an iteration statement, and
1270                // the target of the transfer appears only at the start of an iteration statement.
[ab57786]1271                { $$ = new StatementNode( build_branch( $2, BranchStmt::Break ) ); }
[4d51835]1272        | RETURN comma_expression_opt ';'
[e82aa9df]1273                { $$ = new StatementNode( build_return( $2 ) ); }
[c786e1d]1274        | RETURN '{' initializer_list_opt comma_opt '}' ';'
[fae90d5]1275                { SemanticError( yylloc, "Initializer return is currently unimplemented." ); $$ = nullptr; }
[c786e1d]1276        // | SUSPEND ';'
1277        //      { SemanticError( yylloc, "Suspend expression is currently unimplemented." ); $$ = nullptr; }
1278        // | SUSPEND compound_statement ';'
1279        //      { SemanticError( yylloc, "Suspend expression is currently unimplemented." ); $$ = nullptr; }
[8cc5cb0]1280        | THROW assignment_expression_opt ';'                           // handles rethrow
[e82aa9df]1281                { $$ = new StatementNode( build_throw( $2 ) ); }
[8cc5cb0]1282        | THROWRESUME assignment_expression_opt ';'                     // handles reresume
[daf1af8]1283                { $$ = new StatementNode( build_resume( $2 ) ); }
[8cc5cb0]1284        | THROWRESUME assignment_expression_opt AT assignment_expression ';' // handles reresume
[daf1af8]1285                { $$ = new StatementNode( build_resume_at( $2, $4 ) ); }
[4d51835]1286        ;
[51b7345]1287
[6a276a0]1288fall_through_name:                                                                              // CFA
1289        FALLTHRU
1290        | FALLTHROUGH
1291        ;
1292
[8b47e50]1293with_statement:
[5b2edbc]1294        WITH '(' tuple_expression_list ')' statement
[a378ca7]1295                {
1296                        $$ = new StatementNode( build_with( $3, $5 ) );
1297                }
[5b2edbc]1298        ;
1299
[b6b3c42]1300// If MUTEX becomes a general qualifier, there are shift/reduce conflicts, so change syntax to "with mutex".
1301mutex_statement:
1302        MUTEX '(' argument_expression_list ')' statement
[fae90d5]1303                { SemanticError( yylloc, "Mutex statement is currently unimplemented." ); $$ = nullptr; }
[b6b3c42]1304        ;
1305
[51d6d6a]1306when_clause:
[6a276a0]1307        WHEN '(' comma_expression ')'                           { $$ = $3; }
[51d6d6a]1308        ;
1309
[5b2edbc]1310when_clause_opt:
1311        // empty
[135b431]1312                { $$ = nullptr; }
[51d6d6a]1313        | when_clause
[5b2edbc]1314        ;
1315
1316waitfor:
[713926ca]1317        WAITFOR '(' cast_expression ')'
1318                { $$ = $3; }
1319        | WAITFOR '(' cast_expression ',' argument_expression_list ')'
1320                { $$ = (ExpressionNode *)$3->set_last( $5 ); }
[5b2edbc]1321        ;
1322
1323timeout:
[6a276a0]1324        TIMEOUT '(' comma_expression ')'                        { $$ = $3; }
[5b2edbc]1325        ;
1326
1327waitfor_clause:
[51d6d6a]1328        when_clause_opt waitfor statement                                       %prec THEN
[135b431]1329                { $$ = build_waitfor( $2, $3, $1 ); }
[5b2edbc]1330        | when_clause_opt waitfor statement WOR waitfor_clause
[135b431]1331                { $$ = build_waitfor( $2, $3, $1, $5 ); }
[51d6d6a]1332        | when_clause_opt timeout statement                                     %prec THEN
[135b431]1333                { $$ = build_waitfor_timeout( $2, $3, $1 ); }
[5b2edbc]1334        | when_clause_opt ELSE statement
[135b431]1335                { $$ = build_waitfor_timeout( nullptr, $3, $1 ); }
[51d6d6a]1336                // "else" must be conditional after timeout or timeout is never triggered (i.e., it is meaningless)
[713926ca]1337        | when_clause_opt timeout statement WOR ELSE statement
1338                { SemanticError( yylloc, "else clause must be conditional after timeout or timeout never triggered." ); $$ = nullptr; }
[51d6d6a]1339        | when_clause_opt timeout statement WOR when_clause ELSE statement
[135b431]1340                { $$ = build_waitfor_timeout( $2, $3, $1, $7, $5 ); }
[5b2edbc]1341        ;
1342
1343waitfor_statement:
[51d6d6a]1344        when_clause_opt waitfor statement                                       %prec THEN
[135b431]1345                { $$ = new StatementNode( build_waitfor( $2, $3, $1 ) ); }
[5b2edbc]1346        | when_clause_opt waitfor statement WOR waitfor_clause
[135b431]1347                { $$ = new StatementNode( build_waitfor( $2, $3, $1, $5 ) ); }
[8b47e50]1348        ;
1349
[51b7345]1350exception_statement:
[cfaabe2c]1351        TRY compound_statement handler_clause
[e82aa9df]1352                { $$ = new StatementNode( build_try( $2, $3, 0 ) ); }
[4d51835]1353        | TRY compound_statement finally_clause
[e82aa9df]1354                { $$ = new StatementNode( build_try( $2, 0, $3 ) ); }
[cfaabe2c]1355        | TRY compound_statement handler_clause finally_clause
[e82aa9df]1356                { $$ = new StatementNode( build_try( $2, $3, $4 ) ); }
[4d51835]1357        ;
[51b7345]1358
1359handler_clause:
[098f7ff]1360        handler_key '(' push exception_declaration pop handler_predicate_opt ')' compound_statement
[3d26610]1361                { $$ = new StatementNode( build_catch( $1, $4, $6, $8 ) ); }
[098f7ff]1362        | handler_clause handler_key '(' push exception_declaration pop handler_predicate_opt ')' compound_statement
[3d26610]1363                { $$ = (StatementNode *)$1->set_last( new StatementNode( build_catch( $2, $5, $7, $9 ) ) ); }
[994d080]1364        ;
1365
1366handler_predicate_opt:
[7fdb94e]1367        // empty
[cbce272]1368                { $$ = nullptr; }
[6a276a0]1369        | ';' conditional_expression                            { $$ = $2; }
[307a732]1370        ;
1371
1372handler_key:
[6a276a0]1373        CATCH                                                                           { $$ = CatchStmt::Terminate; }
1374        | CATCHRESUME                                                           { $$ = CatchStmt::Resume; }
[4d51835]1375        ;
[51b7345]1376
1377finally_clause:
[6a276a0]1378        FINALLY compound_statement                                      { $$ = new StatementNode( build_finally( $2 ) ); }
[4d51835]1379        ;
[51b7345]1380
1381exception_declaration:
[d0ffed1]1382                // No SUE declaration in parameter list.
1383        type_specifier_nobody
1384        | type_specifier_nobody declarator
[c0a33d2]1385                { $$ = $2->addType( $1 ); }
[d0ffed1]1386        | type_specifier_nobody variable_abstract_declarator
[4d51835]1387                { $$ = $2->addType( $1 ); }
[c0aa336]1388        | cfa_abstract_declarator_tuple no_attr_identifier      // CFA
[c0a33d2]1389                { $$ = $1->addName( $2 ); }
[c0aa336]1390        | cfa_abstract_declarator_tuple                                         // CFA
[4d51835]1391        ;
[51b7345]1392
[2a8427c6]1393enable_disable_statement:
1394        enable_disable_key identifier_list compound_statement
1395        ;
1396
1397enable_disable_key:
1398        ENABLE
1399        | DISABLE
1400        ;
1401
[51b7345]1402asm_statement:
[ab57786]1403        ASM asm_volatile_opt '(' string_literal ')' ';'
[6d539f83]1404                { $$ = new StatementNode( build_asm( $2, $4, 0 ) ); }
[ab57786]1405        | ASM asm_volatile_opt '(' string_literal ':' asm_operands_opt ')' ';' // remaining GCC
[6d539f83]1406                { $$ = new StatementNode( build_asm( $2, $4, $6 ) ); }
[ab57786]1407        | ASM asm_volatile_opt '(' string_literal ':' asm_operands_opt ':' asm_operands_opt ')' ';'
[6d539f83]1408                { $$ = new StatementNode( build_asm( $2, $4, $6, $8 ) ); }
[ab57786]1409        | ASM asm_volatile_opt '(' string_literal ':' asm_operands_opt ':' asm_operands_opt ':' asm_clobbers_list_opt ')' ';'
[6d539f83]1410                { $$ = new StatementNode( build_asm( $2, $4, $6, $8, $10 ) ); }
[ab57786]1411        | ASM asm_volatile_opt GOTO '(' string_literal ':' ':' asm_operands_opt ':' asm_clobbers_list_opt ':' label_list ')' ';'
[6d539f83]1412                { $$ = new StatementNode( build_asm( $2, $5, 0, $8, $10, $12 ) ); }
[7f5566b]1413        ;
1414
1415asm_volatile_opt:                                                                               // GCC
1416        // empty
1417                { $$ = false; }
1418        | VOLATILE
1419                { $$ = true; }
[4d51835]1420        ;
[b87a5ed]1421
1422asm_operands_opt:                                                                               // GCC
[4d51835]1423        // empty
[58dd019]1424                { $$ = nullptr; }                                                               // use default argument
[4d51835]1425        | asm_operands_list
1426        ;
[b87a5ed]1427
1428asm_operands_list:                                                                              // GCC
[4d51835]1429        asm_operand
1430        | asm_operands_list ',' asm_operand
[1d4580a]1431                { $$ = (ExpressionNode *)$1->set_last( $3 ); }
[4d51835]1432        ;
[b87a5ed]1433
1434asm_operand:                                                                                    // GCC
[ab57786]1435        string_literal '(' constant_expression ')'
[513e165]1436                { $$ = new ExpressionNode( new AsmExpr( maybeMoveBuild< Expression >( (ExpressionNode *)nullptr ), $1, maybeMoveBuild< Expression >( $3 ) ) ); }
[ab57786]1437        | '[' constant_expression ']' string_literal '(' constant_expression ')'
[513e165]1438                { $$ = new ExpressionNode( new AsmExpr( maybeMoveBuild< Expression >( $2 ), $4, maybeMoveBuild< Expression >( $6 ) ) ); }
[7f5566b]1439        ;
1440
[4e06c1e]1441asm_clobbers_list_opt:                                                                  // GCC
[7f5566b]1442        // empty
[58dd019]1443                { $$ = nullptr; }                                                               // use default argument
[ab57786]1444        | string_literal
[d1625f8]1445                { $$ = new ExpressionNode( $1 ); }
[ab57786]1446        | asm_clobbers_list_opt ',' string_literal
[513e165]1447                // set_last returns ParseNode *
[e82aa9df]1448                { $$ = (ExpressionNode *)$1->set_last( new ExpressionNode( $3 ) ); }
[4d51835]1449        ;
[b87a5ed]1450
[7f5566b]1451label_list:
1452        no_attr_identifier
[ab57786]1453                {
1454                        $$ = new LabelNode(); $$->labels.push_back( *$1 );
1455                        delete $1;                                                                      // allocated by lexer
1456                }
[7f5566b]1457        | label_list ',' no_attr_identifier
[ab57786]1458                {
1459                        $$ = $1; $1->labels.push_back( *$3 );
1460                        delete $3;                                                                      // allocated by lexer
1461                }
[4d51835]1462        ;
[51b7345]1463
[c11e31c]1464//******************************* DECLARATIONS *********************************
[51b7345]1465
[b87a5ed]1466declaration_list_opt:                                                                   // used at beginning of switch statement
[35718a9]1467        // empty
[58dd019]1468                { $$ = nullptr; }
[4d51835]1469        | declaration_list
1470        ;
[51b7345]1471
1472declaration_list:
[4d51835]1473        declaration
[35718a9]1474        | declaration_list declaration
1475                { $$ = $1->appendList( $2 ); }
[4d51835]1476        ;
[51b7345]1477
[407bde5]1478KR_parameter_list_opt:                                                                  // used to declare parameter types in K&R style functions
[4cc585b]1479        // empty
[58dd019]1480                { $$ = nullptr; }
[35718a9]1481        | KR_parameter_list
[4d51835]1482        ;
[51b7345]1483
[35718a9]1484KR_parameter_list:
[4cc585b]1485        push c_declaration pop ';'
1486                { $$ = $2; }
[35718a9]1487        | KR_parameter_list push c_declaration pop ';'
[4d51835]1488                { $$ = $1->appendList( $3 ); }
1489        ;
[b87a5ed]1490
[51b1202]1491local_label_declaration_opt:                                                    // GCC, local label
[4d51835]1492        // empty
[51b1202]1493        | local_label_declaration_list
[4d51835]1494        ;
[b87a5ed]1495
[51b1202]1496local_label_declaration_list:                                                   // GCC, local label
1497        LABEL local_label_list ';'
1498        | local_label_declaration_list LABEL local_label_list ';'
[4d51835]1499        ;
[b87a5ed]1500
[51b1202]1501local_label_list:                                                                               // GCC, local label
[c0a33d2]1502        no_attr_identifier_or_type_name
1503        | local_label_list ',' no_attr_identifier_or_type_name
[4d51835]1504        ;
[b87a5ed]1505
[936e9f4]1506declaration:                                                                                    // old & new style declarations
[35718a9]1507        c_declaration ';'
1508        | cfa_declaration ';'                                                           // CFA
[b47b827]1509        | static_assert                                                                         // C11
[4d51835]1510        ;
[b87a5ed]1511
[b9be000b]1512static_assert:
1513        STATICASSERT '(' constant_expression ',' string_literal ')' ';' // C11
[f6e3e34]1514                { $$ = DeclarationNode::newStaticAssert( $3, $5 ); }
[b47b827]1515        | STATICASSERT '(' constant_expression ')' ';'          // CFA
[6e3eaa57]1516                { $$ = DeclarationNode::newStaticAssert( $3, build_constantStr( *new string( "\"\"" ) ) ); }
[b9be000b]1517
[de62360d]1518// C declaration syntax is notoriously confusing and error prone. Cforall provides its own type, variable and function
1519// declarations. CFA declarations use the same declaration tokens as in C; however, CFA places declaration modifiers to
1520// the left of the base type, while C declarations place modifiers to the right of the base type. CFA declaration
1521// modifiers are interpreted from left to right and the entire type specification is distributed across all variables in
1522// the declaration list (as in Pascal).  ANSI C and the new CFA declarations may appear together in the same program
1523// block, but cannot be mixed within a specific declaration.
[c11e31c]1524//
[b87a5ed]1525//                      CFA                                     C
1526//              [10] int x;                     int x[10];              // array of 10 integers
1527//              [10] * char y;          char *y[10];    // array of 10 pointers to char
1528
[c0aa336]1529cfa_declaration:                                                                                // CFA
[4cc585b]1530        cfa_variable_declaration
1531        | cfa_typedef_declaration
1532        | cfa_function_declaration
1533        | type_declaring_list
1534        | trait_specifier
[4d51835]1535        ;
[b87a5ed]1536
[c0aa336]1537cfa_variable_declaration:                                                               // CFA
1538        cfa_variable_specifier initializer_opt
[7fdb94e]1539                { $$ = $1->addInitializer( $2 ); }
[c0aa336]1540        | declaration_qualifier_list cfa_variable_specifier initializer_opt
[de62360d]1541                // declaration_qualifier_list also includes type_qualifier_list, so a semantic check is necessary to preclude
1542                // them as a type_qualifier cannot appear in that context.
[7fdb94e]1543                { $$ = $2->addQualifiers( $1 )->addInitializer( $3 ); }
[c0aa336]1544        | cfa_variable_declaration pop ',' push identifier_or_type_name initializer_opt
[7fdb94e]1545                { $$ = $1->appendList( $1->cloneType( $5 )->addInitializer( $6 ) ); }
[4d51835]1546        ;
[b87a5ed]1547
[c0aa336]1548cfa_variable_specifier:                                                                 // CFA
[de62360d]1549                // A semantic check is required to ensure asm_name only appears on declarations with implicit or explicit static
1550                // storage-class
[c0aa336]1551        cfa_abstract_declarator_no_tuple identifier_or_type_name asm_name_opt
[7fdb94e]1552                { $$ = $1->addName( $2 )->addAsmName( $3 ); }
[c0aa336]1553        | cfa_abstract_tuple identifier_or_type_name asm_name_opt
[7fdb94e]1554                { $$ = $1->addName( $2 )->addAsmName( $3 ); }
[c0aa336]1555        | type_qualifier_list cfa_abstract_tuple identifier_or_type_name asm_name_opt
[7fdb94e]1556                { $$ = $2->addQualifiers( $1 )->addName( $3 )->addAsmName( $4 ); }
[4d51835]1557        ;
[b87a5ed]1558
[c0aa336]1559cfa_function_declaration:                                                               // CFA
1560        cfa_function_specifier
1561        | type_qualifier_list cfa_function_specifier
[7fdb94e]1562                { $$ = $2->addQualifiers( $1 ); }
[c0aa336]1563        | declaration_qualifier_list cfa_function_specifier
[7fdb94e]1564                { $$ = $2->addQualifiers( $1 ); }
[c0aa336]1565        | declaration_qualifier_list type_qualifier_list cfa_function_specifier
[7fdb94e]1566                { $$ = $3->addQualifiers( $1 )->addQualifiers( $2 ); }
[40de461]1567        | cfa_function_declaration ',' identifier_or_type_name '(' push cfa_parameter_ellipsis_list_opt pop ')'
[4d51835]1568                {
[481115f]1569                        // Append the return type at the start (left-hand-side) to each identifier in the list.
1570                        DeclarationNode * ret = new DeclarationNode;
1571                        ret->type = maybeClone( $1->type->base );
[40de461]1572                        $$ = $1->appendList( DeclarationNode::newFunction( $3, ret, $6, nullptr ) );
[4d51835]1573                }
1574        ;
[b87a5ed]1575
[c0aa336]1576cfa_function_specifier:                                                                 // CFA
[40de461]1577//      '[' ']' identifier_or_type_name '(' push cfa_parameter_ellipsis_list_opt pop ')' // S/R conflict
[1b29996]1578//              {
1579//                      $$ = DeclarationNode::newFunction( $3, DeclarationNode::newTuple( 0 ), $6, 0, true );
1580//              }
[40de461]1581//      '[' ']' identifier '(' push cfa_parameter_ellipsis_list_opt pop ')'
[2871210]1582//              {
1583//                      typedefTable.setNextIdentifier( *$5 );
1584//                      $$ = DeclarationNode::newFunction( $5, DeclarationNode::newTuple( 0 ), $8, 0, true );
1585//              }
[40de461]1586//      | '[' ']' TYPEDEFname '(' push cfa_parameter_ellipsis_list_opt pop ')'
[2871210]1587//              {
1588//                      typedefTable.setNextIdentifier( *$5 );
1589//                      $$ = DeclarationNode::newFunction( $5, DeclarationNode::newTuple( 0 ), $8, 0, true );
1590//              }
1591//      | '[' ']' typegen_name
1592                // identifier_or_type_name must be broken apart because of the sequence:
[4d51835]1593                //
[40de461]1594                //   '[' ']' identifier_or_type_name '(' cfa_parameter_ellipsis_list_opt ')'
[4d51835]1595                //   '[' ']' type_specifier
1596                //
[2871210]1597                // type_specifier can resolve to just TYPEDEFname (e.g., typedef int T; int f( T );). Therefore this must be
1598                // flattened to allow lookahead to the '(' without having to reduce identifier_or_type_name.
[40de461]1599        cfa_abstract_tuple identifier_or_type_name '(' push cfa_parameter_ellipsis_list_opt pop ')'
[c0aa336]1600                // To obtain LR(1 ), this rule must be factored out from function return type (see cfa_abstract_declarator).
[c0a33d2]1601                { $$ = DeclarationNode::newFunction( $2, $1, $5, 0 ); }
[40de461]1602        | cfa_function_return identifier_or_type_name '(' push cfa_parameter_ellipsis_list_opt pop ')'
[c0a33d2]1603                { $$ = DeclarationNode::newFunction( $2, $1, $5, 0 ); }
[4d51835]1604        ;
[b87a5ed]1605
[c0aa336]1606cfa_function_return:                                                                    // CFA
[c0a33d2]1607        '[' push cfa_parameter_list pop ']'
1608                { $$ = DeclarationNode::newTuple( $3 ); }
1609        | '[' push cfa_parameter_list pop ',' push cfa_abstract_parameter_list pop ']'
[b048dc3]1610                // To obtain LR(1 ), the last cfa_abstract_parameter_list is added into this flattened rule to lookahead to the ']'.
[c0a33d2]1611                { $$ = DeclarationNode::newTuple( $3->appendList( $7 ) ); }
[4d51835]1612        ;
[b87a5ed]1613
[c0aa336]1614cfa_typedef_declaration:                                                                // CFA
1615        TYPEDEF cfa_variable_specifier
[4d51835]1616                {
[ecae5860]1617                        typedefTable.addToEnclosingScope( *$2->name, TYPEDEFname, "1" );
[4d51835]1618                        $$ = $2->addTypedef();
1619                }
[c0aa336]1620        | TYPEDEF cfa_function_specifier
[4d51835]1621                {
[ecae5860]1622                        typedefTable.addToEnclosingScope( *$2->name, TYPEDEFname, "2" );
[4d51835]1623                        $$ = $2->addTypedef();
1624                }
[c0aa336]1625        | cfa_typedef_declaration pop ',' push no_attr_identifier
[4d51835]1626                {
[ecae5860]1627                        typedefTable.addToEnclosingScope( *$5, TYPEDEFname, "3" );
[4d51835]1628                        $$ = $1->appendList( $1->cloneType( $5 ) );
1629                }
1630        ;
[b87a5ed]1631
[de62360d]1632// Traditionally typedef is part of storage-class specifier for syntactic convenience only. Here, it is factored out as
1633// a separate form of declaration, which syntactically precludes storage-class specifiers and initialization.
[51b7345]1634
1635typedef_declaration:
[4d51835]1636        TYPEDEF type_specifier declarator
1637                {
[ecae5860]1638                        typedefTable.addToEnclosingScope( *$3->name, TYPEDEFname, "4" );
[4d51835]1639                        $$ = $3->addType( $2 )->addTypedef();
1640                }
1641        | typedef_declaration pop ',' push declarator
1642                {
[ecae5860]1643                        typedefTable.addToEnclosingScope( *$5->name, TYPEDEFname, "5" );
[4d51835]1644                        $$ = $1->appendList( $1->cloneBaseType( $5 )->addTypedef() );
1645                }
[de62360d]1646        | type_qualifier_list TYPEDEF type_specifier declarator // remaining OBSOLESCENT (see 2 )
[4d51835]1647                {
[ecae5860]1648                        typedefTable.addToEnclosingScope( *$4->name, TYPEDEFname, "6" );
[4d51835]1649                        $$ = $4->addType( $3 )->addQualifiers( $1 )->addTypedef();
1650                }
1651        | type_specifier TYPEDEF declarator
1652                {
[ecae5860]1653                        typedefTable.addToEnclosingScope( *$3->name, TYPEDEFname, "7" );
[4d51835]1654                        $$ = $3->addType( $1 )->addTypedef();
1655                }
1656        | type_specifier TYPEDEF type_qualifier_list declarator
1657                {
[ecae5860]1658                        typedefTable.addToEnclosingScope( *$4->name, TYPEDEFname, "8" );
[de62360d]1659                        $$ = $4->addQualifiers( $1 )->addTypedef()->addType( $1 );
[4d51835]1660                }
1661        ;
[b87a5ed]1662
[721f17a]1663typedef_expression:
1664                // GCC, naming expression type: typedef name = exp; gives a name to the type of an expression
[4d51835]1665        TYPEDEF no_attr_identifier '=' assignment_expression
1666                {
[7fdb94e]1667                        // $$ = DeclarationNode::newName( 0 );                  // unimplemented
1668                        SemanticError( yylloc, "Typedef expression is currently unimplemented." ); $$ = nullptr;
[4d51835]1669                }
1670        | typedef_expression pop ',' push no_attr_identifier '=' assignment_expression
1671                {
[7fdb94e]1672                        // $$ = DeclarationNode::newName( 0 );                  // unimplemented
1673                        SemanticError( yylloc, "Typedef expression is currently unimplemented." ); $$ = nullptr;
[4d51835]1674                }
1675        ;
[51b7345]1676
[c0aa336]1677//c_declaration:
1678//      declaring_list pop ';'
1679//      | typedef_declaration pop ';'
1680//      | typedef_expression pop ';'                                            // GCC, naming expression type
1681//      | sue_declaration_specifier pop ';'
1682//      ;
1683//
1684//declaring_list:
1685//              // A semantic check is required to ensure asm_name only appears on declarations with implicit or explicit static
1686//              // storage-class
1687//       declarator asm_name_opt initializer_opt
1688//              {
[2f0a0678]1689//                      typedefTable.addToEnclosingScope( IDENTIFIER );
[c0aa336]1690//                      $$ = ( $2->addType( $1 ))->addAsmName( $3 )->addInitializer( $4 );
1691//              }
1692//      | declaring_list ',' attribute_list_opt declarator asm_name_opt initializer_opt
1693//              {
[2f0a0678]1694//                      typedefTable.addToEnclosingScope( IDENTIFIER );
[c0aa336]1695//                      $$ = $1->appendList( $1->cloneBaseType( $4->addAsmName( $5 )->addInitializer( $6 ) ) );
1696//              }
1697//      ;
1698
1699c_declaration:
[4cc585b]1700        declaration_specifier declaring_list
[7fdb94e]1701                { $$ = distAttr( $1, $2 ); }
[4cc585b]1702        | typedef_declaration
1703        | typedef_expression                                                            // GCC, naming expression type
1704        | sue_declaration_specifier
[4d51835]1705        ;
[51b7345]1706
1707declaring_list:
[de62360d]1708                // A semantic check is required to ensure asm_name only appears on declarations with implicit or explicit static
1709                // storage-class
[c0aa336]1710        declarator asm_name_opt initializer_opt
[7fdb94e]1711                { $$ = $1->addAsmName( $2 )->addInitializer( $3 ); }
[4d51835]1712        | declaring_list ',' attribute_list_opt declarator asm_name_opt initializer_opt
[7fdb94e]1713                { $$ = $1->appendList( $4->addQualifiers( $3 )->addAsmName( $5 )->addInitializer( $6 ) ); }
[4d51835]1714        ;
[b87a5ed]1715
1716declaration_specifier:                                                                  // type specifier + storage class
[4d51835]1717        basic_declaration_specifier
1718        | sue_declaration_specifier
[84d58c5]1719        | type_declaration_specifier
[4d51835]1720        ;
[b87a5ed]1721
[d0ffed1]1722declaration_specifier_nobody:                                                   // type specifier + storage class - {...}
1723                // Preclude SUE declarations in restricted scopes:
1724                //
1725                //    int f( struct S { int i; } s1, Struct S s2 ) { struct S s3; ... }
1726                //
1727                // because it is impossible to call f due to name equivalence.
1728        basic_declaration_specifier
1729        | sue_declaration_specifier_nobody
[84d58c5]1730        | type_declaration_specifier
[d0ffed1]1731        ;
1732
1733type_specifier:                                                                                 // type specifier
[4d51835]1734        basic_type_specifier
1735        | sue_type_specifier
[84d58c5]1736        | type_type_specifier
[4d51835]1737        ;
[b87a5ed]1738
[d0ffed1]1739type_specifier_nobody:                                                                  // type specifier - {...}
1740                // Preclude SUE declarations in restricted scopes:
1741                //
1742                //    int f( struct S { int i; } s1, Struct S s2 ) { struct S s3; ... }
1743                //
1744                // because it is impossible to call f due to name equivalence.
1745        basic_type_specifier
1746        | sue_type_specifier_nobody
[84d58c5]1747        | type_type_specifier
[d0ffed1]1748        ;
1749
[b87a5ed]1750type_qualifier_list_opt:                                                                // GCC, used in asm_statement
[4d51835]1751        // empty
[58dd019]1752                { $$ = nullptr; }
[4d51835]1753        | type_qualifier_list
1754        ;
[51b7345]1755
1756type_qualifier_list:
[de62360d]1757                // A semantic check is necessary to ensure a type qualifier is appropriate for the kind of declaration.
[4d51835]1758                //
[de62360d]1759                // ISO/IEC 9899:1999 Section 6.7.3(4 ) : If the same qualifier appears more than once in the same
1760                // specifier-qualifier-list, either directly or via one or more typedefs, the behavior is the same as if it
1761                // appeared only once.
[4d51835]1762        type_qualifier
1763        | type_qualifier_list type_qualifier
1764                { $$ = $1->addQualifiers( $2 ); }
1765        ;
[51b7345]1766
1767type_qualifier:
[4d51835]1768        type_qualifier_name
1769        | attribute
1770        ;
[51b7345]1771
1772type_qualifier_name:
[4d51835]1773        CONST
[738e304]1774                { $$ = DeclarationNode::newTypeQualifier( Type::Const ); }
[4d51835]1775        | RESTRICT
[738e304]1776                { $$ = DeclarationNode::newTypeQualifier( Type::Restrict ); }
[4d51835]1777        | VOLATILE
[738e304]1778                { $$ = DeclarationNode::newTypeQualifier( Type::Volatile ); }
[4d51835]1779        | ATOMIC
[738e304]1780                { $$ = DeclarationNode::newTypeQualifier( Type::Atomic ); }
[a16a7ec]1781        | forall
1782        ;
1783
1784forall:
[35718a9]1785        FORALL '(' type_parameter_list ')'                                      // CFA
1786                { $$ = DeclarationNode::newForall( $3 ); }
[4d51835]1787        ;
[51b7345]1788
1789declaration_qualifier_list:
[4d51835]1790        storage_class_list
[de62360d]1791        | type_qualifier_list storage_class_list                        // remaining OBSOLESCENT (see 2 )
[4d51835]1792                { $$ = $1->addQualifiers( $2 ); }
1793        | declaration_qualifier_list type_qualifier_list storage_class_list
1794                { $$ = $1->addQualifiers( $2 )->addQualifiers( $3 ); }
1795        ;
[51b7345]1796
1797storage_class_list:
[de62360d]1798                // A semantic check is necessary to ensure a storage class is appropriate for the kind of declaration and that
1799                // only one of each is specified, except for inline, which can appear with the others.
[4d51835]1800                //
[de62360d]1801                // ISO/IEC 9899:1999 Section 6.7.1(2) : At most, one storage-class specifier may be given in the declaration
1802                // specifiers in a declaration.
[4d51835]1803        storage_class
1804        | storage_class_list storage_class
1805                { $$ = $1->addQualifiers( $2 ); }
1806        ;
[51b7345]1807
1808storage_class:
[4d51835]1809        EXTERN
[68fe077a]1810                { $$ = DeclarationNode::newStorageClass( Type::Extern ); }
[4d51835]1811        | STATIC
[68fe077a]1812                { $$ = DeclarationNode::newStorageClass( Type::Static ); }
[4d51835]1813        | AUTO
[68fe077a]1814                { $$ = DeclarationNode::newStorageClass( Type::Auto ); }
[4d51835]1815        | REGISTER
[68fe077a]1816                { $$ = DeclarationNode::newStorageClass( Type::Register ); }
[dd020c0]1817        | THREADLOCAL                                                                           // C11
[68fe077a]1818                { $$ = DeclarationNode::newStorageClass( Type::Threadlocal ); }
[dd020c0]1819                // Put function specifiers here to simplify parsing rules, but separate them semantically.
[4d51835]1820        | INLINE                                                                                        // C99
[ddfd945]1821                { $$ = DeclarationNode::newFuncSpecifier( Type::Inline ); }
[4d51835]1822        | FORTRAN                                                                                       // C99
[ddfd945]1823                { $$ = DeclarationNode::newFuncSpecifier( Type::Fortran ); }
[68cd1ce]1824        | NORETURN                                                                                      // C11
[ddfd945]1825                { $$ = DeclarationNode::newFuncSpecifier( Type::Noreturn ); }
[4d51835]1826        ;
[51b7345]1827
1828basic_type_name:
[201aeb9]1829        VOID
[4d51835]1830                { $$ = DeclarationNode::newBasicType( DeclarationNode::Void ); }
1831        | BOOL                                                                                          // C99
1832                { $$ = DeclarationNode::newBasicType( DeclarationNode::Bool ); }
[201aeb9]1833        | CHAR
1834                { $$ = DeclarationNode::newBasicType( DeclarationNode::Char ); }
1835        | INT
1836                { $$ = DeclarationNode::newBasicType( DeclarationNode::Int ); }
1837        | INT128
1838                { $$ = DeclarationNode::newBasicType( DeclarationNode::Int128 ); }
1839        | FLOAT
1840                { $$ = DeclarationNode::newBasicType( DeclarationNode::Float ); }
1841        | DOUBLE
1842                { $$ = DeclarationNode::newBasicType( DeclarationNode::Double ); }
[e15853c]1843        | uuFLOAT80
1844                { $$ = DeclarationNode::newBasicType( DeclarationNode::uuFloat80 ); }
1845        | uuFLOAT128
1846                { $$ = DeclarationNode::newBasicType( DeclarationNode::uuFloat128 ); }
1847        | uFLOAT16
1848                { $$ = DeclarationNode::newBasicType( DeclarationNode::uFloat16 ); }
1849        | uFLOAT32
1850                { $$ = DeclarationNode::newBasicType( DeclarationNode::uFloat32 ); }
1851        | uFLOAT32X
1852                { $$ = DeclarationNode::newBasicType( DeclarationNode::uFloat32x ); }
1853        | uFLOAT64
1854                { $$ = DeclarationNode::newBasicType( DeclarationNode::uFloat64 ); }
1855        | uFLOAT64X
1856                { $$ = DeclarationNode::newBasicType( DeclarationNode::uFloat64x ); }
1857        | uFLOAT128
1858                { $$ = DeclarationNode::newBasicType( DeclarationNode::uFloat128 ); }
[4d51835]1859        | COMPLEX                                                                                       // C99
[5b639ee]1860                { $$ = DeclarationNode::newComplexType( DeclarationNode::Complex ); }
[4d51835]1861        | IMAGINARY                                                                                     // C99
[5b639ee]1862                { $$ = DeclarationNode::newComplexType( DeclarationNode::Imaginary ); }
[201aeb9]1863        | SIGNED
1864                { $$ = DeclarationNode::newSignedNess( DeclarationNode::Signed ); }
1865        | UNSIGNED
1866                { $$ = DeclarationNode::newSignedNess( DeclarationNode::Unsigned ); }
1867        | SHORT
1868                { $$ = DeclarationNode::newLength( DeclarationNode::Short ); }
1869        | LONG
1870                { $$ = DeclarationNode::newLength( DeclarationNode::Long ); }
[72457b6]1871        | VALIST                                                                                        // GCC, __builtin_va_list
1872                { $$ = DeclarationNode::newBuiltinType( DeclarationNode::Valist ); }
[4d51835]1873        ;
[51b7345]1874
1875basic_declaration_specifier:
[4d51835]1876                // A semantic check is necessary for conflicting storage classes.
1877        basic_type_specifier
1878        | declaration_qualifier_list basic_type_specifier
1879                { $$ = $2->addQualifiers( $1 ); }
1880        | basic_declaration_specifier storage_class                     // remaining OBSOLESCENT (see 2)
1881                { $$ = $1->addQualifiers( $2 ); }
1882        | basic_declaration_specifier storage_class type_qualifier_list
1883                { $$ = $1->addQualifiers( $2 )->addQualifiers( $3 ); }
1884        | basic_declaration_specifier storage_class basic_type_specifier
1885                { $$ = $3->addQualifiers( $2 )->addType( $1 ); }
1886        ;
[51b7345]1887
1888basic_type_specifier:
[84d58c5]1889        direct_type
[f38e7d7]1890                // Cannot have type modifiers, e.g., short, long, etc.
[84d58c5]1891        | type_qualifier_list_opt indirect_type type_qualifier_list_opt
[4d51835]1892                { $$ = $2->addQualifiers( $1 )->addQualifiers( $3 ); }
1893        ;
[51b7345]1894
[84d58c5]1895direct_type:
[4d51835]1896        basic_type_name
1897        | type_qualifier_list basic_type_name
1898                { $$ = $2->addQualifiers( $1 ); }
[84d58c5]1899        | direct_type type_qualifier
[4d51835]1900                { $$ = $1->addQualifiers( $2 ); }
[84d58c5]1901        | direct_type basic_type_name
[4d51835]1902                { $$ = $1->addType( $2 ); }
1903        ;
[51b7345]1904
[84d58c5]1905indirect_type:
[b6ad601]1906        TYPEOF '(' type ')'                                                                     // GCC: typeof( x ) y;
[4d51835]1907                { $$ = $3; }
[b6ad601]1908        | TYPEOF '(' comma_expression ')'                                       // GCC: typeof( a+b ) y;
[4d51835]1909                { $$ = DeclarationNode::newTypeof( $3 ); }
[b6ad601]1910        | BASETYPEOF '(' type ')'                                                       // CFA: basetypeof( x ) y;
1911                { $$ = DeclarationNode::newTypeof( new ExpressionNode( new TypeExpr( maybeMoveBuildType( $3 ) ) ), true ); }
1912        | BASETYPEOF '(' comma_expression ')'                           // CFA: basetypeof( a+b ) y;
1913                { $$ = DeclarationNode::newTypeof( $3, true ); }
1914        | ATTR_TYPEGENname '(' type ')'                                         // CFA: e.g., @type( x ) y;
[4d51835]1915                { $$ = DeclarationNode::newAttr( $1, $3 ); }
[b6ad601]1916        | ATTR_TYPEGENname '(' comma_expression ')'                     // CFA: e.g., @type( a+b ) y;
[4d51835]1917                { $$ = DeclarationNode::newAttr( $1, $3 ); }
[f38e7d7]1918        | ZERO_T                                                                                        // CFA
1919                { $$ = DeclarationNode::newBuiltinType( DeclarationNode::Zero ); }
1920        | ONE_T                                                                                         // CFA
1921                { $$ = DeclarationNode::newBuiltinType( DeclarationNode::One ); }
[4d51835]1922        ;
[51b7345]1923
[d0ffed1]1924sue_declaration_specifier:                                                              // struct, union, enum + storage class + type specifier
[4d51835]1925        sue_type_specifier
1926        | declaration_qualifier_list sue_type_specifier
1927                { $$ = $2->addQualifiers( $1 ); }
1928        | sue_declaration_specifier storage_class                       // remaining OBSOLESCENT (see 2)
1929                { $$ = $1->addQualifiers( $2 ); }
1930        | sue_declaration_specifier storage_class type_qualifier_list
1931                { $$ = $1->addQualifiers( $2 )->addQualifiers( $3 ); }
1932        ;
[51b7345]1933
[d0ffed1]1934sue_type_specifier:                                                                             // struct, union, enum + type specifier
1935        elaborated_type
[fdca7c6]1936        | type_qualifier_list
1937                { if ( $1->type != nullptr && $1->type->forall ) forall = true; } // remember generic type
1938          elaborated_type
1939                { $$ = $3->addQualifiers( $1 ); }
[4d51835]1940        | sue_type_specifier type_qualifier
[284da8c]1941                {
1942                        if ( $2->type != nullptr && $2->type->forall ) forall = true; // remember generic type
1943                        $$ = $1->addQualifiers( $2 );
1944                }
[4d51835]1945        ;
[51b7345]1946
[d0ffed1]1947sue_declaration_specifier_nobody:                                               // struct, union, enum - {...} + storage class + type specifier
1948        sue_type_specifier_nobody
1949        | declaration_qualifier_list sue_type_specifier_nobody
1950                { $$ = $2->addQualifiers( $1 ); }
1951        | sue_declaration_specifier_nobody storage_class        // remaining OBSOLESCENT (see 2)
1952                { $$ = $1->addQualifiers( $2 ); }
1953        | sue_declaration_specifier_nobody storage_class type_qualifier_list
1954                { $$ = $1->addQualifiers( $2 )->addQualifiers( $3 ); }
1955        ;
1956
1957sue_type_specifier_nobody:                                                              // struct, union, enum - {...} + type specifier
1958        elaborated_type_nobody
1959        | type_qualifier_list elaborated_type_nobody
1960                { $$ = $2->addQualifiers( $1 ); }
1961        | sue_type_specifier_nobody type_qualifier
1962                { $$ = $1->addQualifiers( $2 ); }
1963        ;
1964
[84d58c5]1965type_declaration_specifier:
1966        type_type_specifier
1967        | declaration_qualifier_list type_type_specifier
[4d51835]1968                { $$ = $2->addQualifiers( $1 ); }
[84d58c5]1969        | type_declaration_specifier storage_class                      // remaining OBSOLESCENT (see 2)
[4d51835]1970                { $$ = $1->addQualifiers( $2 ); }
[84d58c5]1971        | type_declaration_specifier storage_class type_qualifier_list
[4d51835]1972                { $$ = $1->addQualifiers( $2 )->addQualifiers( $3 ); }
1973        ;
[b87a5ed]1974
[84d58c5]1975type_type_specifier:                                                                    // typedef types
1976        type_name
1977        | type_qualifier_list type_name
1978                { $$ = $2->addQualifiers( $1 ); }
1979        | type_type_specifier type_qualifier
1980                { $$ = $1->addQualifiers( $2 ); }
1981        ;
1982
1983type_name:
[4d51835]1984        TYPEDEFname
1985                { $$ = DeclarationNode::newFromTypedef( $1 ); }
[84d58c5]1986        | '.' TYPEDEFname
[47498bd]1987                { $$ = DeclarationNode::newQualifiedType( DeclarationNode::newFromGlobalScope(), DeclarationNode::newFromTypedef( $2 ) ); }
[84d58c5]1988        | type_name '.' TYPEDEFname
[c5d7701]1989                { $$ = DeclarationNode::newQualifiedType( $1, DeclarationNode::newFromTypedef( $3 ) ); }
[84d58c5]1990        | typegen_name
1991        | '.' typegen_name
[47498bd]1992                { $$ = DeclarationNode::newQualifiedType( DeclarationNode::newFromGlobalScope(), $2 ); }
[84d58c5]1993        | type_name '.' typegen_name
[c5d7701]1994                { $$ = DeclarationNode::newQualifiedType( $1, $3 ); }
[84d58c5]1995        ;
1996
1997typegen_name:                                                                                   // CFA
[65d6de4]1998        TYPEGENname
1999                { $$ = DeclarationNode::newFromTypeGen( $1, nullptr ); }
2000        | TYPEGENname '(' ')'
[67cf18c]2001                { $$ = DeclarationNode::newFromTypeGen( $1, nullptr ); }
2002        | TYPEGENname '(' type_list ')'
[84d58c5]2003                { $$ = DeclarationNode::newFromTypeGen( $1, $3 ); }
[4d51835]2004        ;
[51b7345]2005
[d0ffed1]2006elaborated_type:                                                                                // struct, union, enum
[c0aa336]2007        aggregate_type
2008        | enum_type
[4d51835]2009        ;
[51b7345]2010
[d0ffed1]2011elaborated_type_nobody:                                                                 // struct, union, enum - {...}
2012        aggregate_type_nobody
2013        | enum_type_nobody
2014        ;
2015
[3d56d15b]2016fred:
2017        // empty
2018                { yyy = false; }
2019        ;
2020
[d0ffed1]2021aggregate_type:                                                                                 // struct, union
[fc20514]2022        aggregate_key attribute_list_opt
2023                { forall = false; }                                                             // reset
2024          '{' field_declaration_list_opt '}' type_parameters_opt
[777ed2b]2025                { $$ = DeclarationNode::newAggregate( $1, nullptr, $7, $5, true )->addQualifiers( $2 ); }
[3d56d15b]2026        | aggregate_key attribute_list_opt no_attr_identifier fred
[fdca7c6]2027                {
[26ef3b2]2028                        typedefTable.makeTypedef( *$3, forall || typedefTable.getEnclForall() ? TYPEGENname : TYPEDEFname ); // create typedef
[fdca7c6]2029                        forall = false;                                                         // reset
2030                }
[284da8c]2031          '{' field_declaration_list_opt '}' type_parameters_opt
2032                { $$ = DeclarationNode::newAggregate( $1, $3, $9, $7, true )->addQualifiers( $2 ); }
[3d56d15b]2033        | aggregate_key attribute_list_opt type_name fred
[407bde5]2034                {
[7de22b28]2035                        // for type_name can be a qualified type name S.T, in which case only the last name in the chain needs a typedef (other names in the chain should already have one)
[26ef3b2]2036                        typedefTable.makeTypedef( *$3->type->leafName(), forall || typedefTable.getEnclForall() ? TYPEGENname : TYPEDEFname ); // create typedef
[407bde5]2037                        forall = false;                                                         // reset
2038                }
[284da8c]2039          '{' field_declaration_list_opt '}' type_parameters_opt
2040                { $$ = DeclarationNode::newAggregate( $1, $3->type->symbolic.name, $9, $7, true )->addQualifiers( $2 ); }
[d0ffed1]2041        | aggregate_type_nobody
2042        ;
2043
[284da8c]2044type_parameters_opt:
2045        // empty
2046                { $$ = nullptr; }                                                               %prec '}'
2047        | '(' type_list ')'
2048                { $$ = $2; }
2049        ;
2050
[d0ffed1]2051aggregate_type_nobody:                                                                  // struct, union - {...}
[3d56d15b]2052        aggregate_key attribute_list_opt no_attr_identifier fred
[84d58c5]2053                {
[26ef3b2]2054                        typedefTable.makeTypedef( *$3, forall || typedefTable.getEnclForall() ? TYPEGENname : TYPEDEFname );
[9997fee]2055                        forall = false;                                                         // reset
[84d58c5]2056                        $$ = DeclarationNode::newAggregate( $1, $3, nullptr, nullptr, false )->addQualifiers( $2 );
2057                }
[3d56d15b]2058        | aggregate_key attribute_list_opt type_name fred
[65d6de4]2059                {
[fc20514]2060                        forall = false;                                                         // reset
[65d6de4]2061                        // Create new generic declaration with same name as previous forward declaration, where the IDENTIFIER is
2062                        // switched to a TYPEGENname. Link any generic arguments from typegen_name to new generic declaration and
2063                        // delete newFromTypeGen.
2064                        $$ = DeclarationNode::newAggregate( $1, $3->type->symbolic.name, $3->type->symbolic.actuals, nullptr, false )->addQualifiers( $2 );
2065                        $3->type->symbolic.name = nullptr;
2066                        $3->type->symbolic.actuals = nullptr;
2067                        delete $3;
2068                }
[4d51835]2069        ;
[51b7345]2070
2071aggregate_key:
[c0aa336]2072        STRUCT
[3d56d15b]2073                { yyy = true; $$ = DeclarationNode::Struct; }
[c0aa336]2074        | UNION
[3d56d15b]2075                { yyy = true; $$ = DeclarationNode::Union; }
[c27fb59]2076        | EXCEPTION
[3d56d15b]2077                { yyy = true; $$ = DeclarationNode::Exception; }
[553772b]2078        | GENERATOR
2079                { yyy = true; $$ = DeclarationNode::Coroutine; }
[d3bc0ad]2080        | COROUTINE
[3d56d15b]2081                { yyy = true; $$ = DeclarationNode::Coroutine; }
[d3bc0ad]2082        | MONITOR
[3d56d15b]2083                { yyy = true; $$ = DeclarationNode::Monitor; }
[d3bc0ad]2084        | THREAD
[3d56d15b]2085                { yyy = true; $$ = DeclarationNode::Thread; }
[4d51835]2086        ;
[51b7345]2087
[7fdb94e]2088field_declaration_list_opt:
[5d125e4]2089        // empty
[58dd019]2090                { $$ = nullptr; }
[7fdb94e]2091        | field_declaration_list_opt field_declaration
[a7741435]2092                { $$ = $1 ? $1->appendList( $2 ) : $2; }
[4d51835]2093        ;
[51b7345]2094
2095field_declaration:
[679e644]2096        type_specifier field_declaring_list_opt ';'
[f7e4db27]2097                { $$ = fieldDecl( $1, $2 ); }
[679e644]2098        | EXTENSION type_specifier field_declaring_list_opt ';' // GCC
[f7e4db27]2099                { $$ = fieldDecl( $2, $3 ); distExt( $$ ); }
[e07caa2]2100        | INLINE type_specifier field_abstract_list_opt ';'     // CFA
[679e644]2101                {
[dea36ee]2102                        if ( ! $3 ) {                                                           // field declarator ?
2103                                $3 = DeclarationNode::newName( nullptr );
2104                        } // if
[679a260]2105                        $3->inLine = true;
[679e644]2106                        $$ = distAttr( $2, $3 );                                        // mark all fields in list
[e07caa2]2107                        distInl( $3 );
[8f91c9ae]2108                }
[46fa473]2109        | typedef_declaration ';'                                                       // CFA
2110        | cfa_field_declaring_list ';'                                          // CFA, new style field declaration
2111        | EXTENSION cfa_field_declaring_list ';'                        // GCC
2112                { distExt( $2 ); $$ = $2; }                                             // mark all fields in list
[679e644]2113        | INLINE cfa_field_abstract_list ';'                            // CFA, new style field declaration
2114                { $$ = $2; }                                                                    // mark all fields in list
[46fa473]2115        | cfa_typedef_declaration ';'                                           // CFA
[b47b827]2116        | static_assert                                                                         // C11
[4d51835]2117        ;
[b87a5ed]2118
[679e644]2119field_declaring_list_opt:
2120        // empty
2121                { $$ = nullptr; }
2122        | field_declarator
2123        | field_declaring_list_opt ',' attribute_list_opt field_declarator
[c0aa336]2124                { $$ = $1->appendList( $4->addQualifiers( $3 ) ); }
[4d51835]2125        ;
[51b7345]2126
[679e644]2127field_declarator:
[e07caa2]2128        bit_subrange_size                                                                       // C special case, no field name
[4d51835]2129                { $$ = DeclarationNode::newBitfield( $1 ); }
2130        | variable_declarator bit_subrange_size_opt
[679e644]2131                // A semantic check is required to ensure bit_subrange only appears on integral types.
[4d51835]2132                { $$ = $1->addBitfield( $2 ); }
[c6b1105]2133        | variable_type_redeclarator bit_subrange_size_opt
[679e644]2134                // A semantic check is required to ensure bit_subrange only appears on integral types.
[4d51835]2135                { $$ = $1->addBitfield( $2 ); }
[679e644]2136        ;
2137
[e07caa2]2138field_abstract_list_opt:
2139        // empty
[dea36ee]2140                { $$ = nullptr; }
[e07caa2]2141        | field_abstract
2142        | field_abstract_list_opt ',' attribute_list_opt field_abstract
[679e644]2143                { $$ = $1->appendList( $4->addQualifiers( $3 ) ); }
2144        ;
2145
[e07caa2]2146field_abstract:
[f7e4db27]2147                //      no bit fields
[e07caa2]2148        variable_abstract_declarator
[679e644]2149        ;
2150
2151cfa_field_declaring_list:                                                               // CFA, new style field declaration
[f7e4db27]2152        // bit-fields are handled by C declarations
[679e644]2153        cfa_abstract_declarator_tuple no_attr_identifier_or_type_name
2154                { $$ = $1->addName( $2 ); }
2155        | cfa_field_declaring_list ',' no_attr_identifier_or_type_name
2156                { $$ = $1->appendList( $1->cloneType( $3 ) ); }
2157        ;
2158
2159cfa_field_abstract_list:                                                                // CFA, new style field declaration
[f7e4db27]2160        // bit-fields are handled by C declarations
[679e644]2161        cfa_abstract_declarator_tuple
2162        | cfa_field_abstract_list ','
2163                { $$ = $1->appendList( $1->cloneType( 0 ) ); }
[4d51835]2164        ;
[51b7345]2165
2166bit_subrange_size_opt:
[4d51835]2167        // empty
[58dd019]2168                { $$ = nullptr; }
[4d51835]2169        | bit_subrange_size
2170        ;
[51b7345]2171
2172bit_subrange_size:
[c786e1d]2173        ':' assignment_expression
[4d51835]2174                { $$ = $2; }
2175        ;
[51b7345]2176
[d0ffed1]2177enum_type:                                                                                              // enum
[c0aa336]2178        ENUM attribute_list_opt '{' enumerator_list comma_opt '}'
[3d7e53b]2179                { $$ = DeclarationNode::newEnum( nullptr, $4, true )->addQualifiers( $2 ); }
[407bde5]2180        | ENUM attribute_list_opt no_attr_identifier
[d0ffed1]2181                { typedefTable.makeTypedef( *$3 ); }
2182          '{' enumerator_list comma_opt '}'
2183                { $$ = DeclarationNode::newEnum( $3, $6, true )->addQualifiers( $2 ); }
[407bde5]2184        | ENUM attribute_list_opt type_name
2185          '{' enumerator_list comma_opt '}'
2186                { $$ = DeclarationNode::newEnum( $3->type->symbolic.name, $5, true )->addQualifiers( $2 ); }
[d0ffed1]2187        | enum_type_nobody
2188        ;
2189
2190enum_type_nobody:                                                                               // enum - {...}
[407bde5]2191        ENUM attribute_list_opt no_attr_identifier
[45161b4d]2192                {
[c0aa336]2193                        typedefTable.makeTypedef( *$3 );
[ca1a547]2194                        $$ = DeclarationNode::newEnum( $3, 0, false )->addQualifiers( $2 );
[45161b4d]2195                }
[407bde5]2196        | ENUM attribute_list_opt type_name
2197                {
2198                        typedefTable.makeTypedef( *$3->type->symbolic.name );
2199                        $$ = DeclarationNode::newEnum( $3->type->symbolic.name, 0, false )->addQualifiers( $2 );
2200                }
[4d51835]2201        ;
[51b7345]2202
2203enumerator_list:
[2871210]2204        no_attr_identifier_or_type_name enumerator_value_opt
[4d51835]2205                { $$ = DeclarationNode::newEnumConstant( $1, $2 ); }
[2871210]2206        | enumerator_list ',' no_attr_identifier_or_type_name enumerator_value_opt
[4d51835]2207                { $$ = $1->appendList( DeclarationNode::newEnumConstant( $3, $4 ) ); }
2208        ;
[51b7345]2209
2210enumerator_value_opt:
[4d51835]2211        // empty
[58dd019]2212                { $$ = nullptr; }
[4d51835]2213        | '=' constant_expression
2214                { $$ = $2; }
2215        ;
[51b7345]2216
[40de461]2217cfa_parameter_ellipsis_list_opt:                                                        // CFA, abstract + real
[4d51835]2218        // empty
[2a8427c6]2219                { $$ = DeclarationNode::newBasicType( DeclarationNode::Void ); }
2220        | ELLIPSIS
[58dd019]2221                { $$ = nullptr; }
[2a8427c6]2222        | cfa_abstract_parameter_list
[c0aa336]2223        | cfa_parameter_list
[c0a33d2]2224        | cfa_parameter_list pop ',' push cfa_abstract_parameter_list
2225                { $$ = $1->appendList( $5 ); }
2226        | cfa_abstract_parameter_list pop ',' push ELLIPSIS
[4d51835]2227                { $$ = $1->addVarArgs(); }
[c0a33d2]2228        | cfa_parameter_list pop ',' push ELLIPSIS
[4d51835]2229                { $$ = $1->addVarArgs(); }
2230        ;
[b87a5ed]2231
[c0aa336]2232cfa_parameter_list:                                                                             // CFA
2233                // To obtain LR(1) between cfa_parameter_list and cfa_abstract_tuple, the last cfa_abstract_parameter_list is
2234                // factored out from cfa_parameter_list, flattening the rules to get lookahead to the ']'.
2235        cfa_parameter_declaration
[c0a33d2]2236        | cfa_abstract_parameter_list pop ',' push cfa_parameter_declaration
2237                { $$ = $1->appendList( $5 ); }
2238        | cfa_parameter_list pop ',' push cfa_parameter_declaration
2239                { $$ = $1->appendList( $5 ); }
2240        | cfa_parameter_list pop ',' push cfa_abstract_parameter_list pop ',' push cfa_parameter_declaration
2241                { $$ = $1->appendList( $5 )->appendList( $9 ); }
[4d51835]2242        ;
[b87a5ed]2243
[c0aa336]2244cfa_abstract_parameter_list:                                                    // CFA, new & old style abstract
2245        cfa_abstract_parameter_declaration
[c0a33d2]2246        | cfa_abstract_parameter_list pop ',' push cfa_abstract_parameter_declaration
2247                { $$ = $1->appendList( $5 ); }
[4d51835]2248        ;
[51b7345]2249
2250parameter_type_list_opt:
[4d51835]2251        // empty
[58dd019]2252                { $$ = nullptr; }
[2a8427c6]2253        | ELLIPSIS
2254                { $$ = nullptr; }
2255        | parameter_list
[4d51835]2256        | parameter_list pop ',' push ELLIPSIS
2257                { $$ = $1->addVarArgs(); }
2258        ;
[b87a5ed]2259
2260parameter_list:                                                                                 // abstract + real
[4d51835]2261        abstract_parameter_declaration
2262        | parameter_declaration
2263        | parameter_list pop ',' push abstract_parameter_declaration
2264                { $$ = $1->appendList( $5 ); }
2265        | parameter_list pop ',' push parameter_declaration
2266                { $$ = $1->appendList( $5 ); }
2267        ;
[51b7345]2268
[de62360d]2269// Provides optional identifier names (abstract_declarator/variable_declarator), no initialization, different semantics
[2871210]2270// for typedef name by using type_parameter_redeclarator instead of typedef_redeclarator, and function prototypes.
[51b7345]2271
[c0aa336]2272cfa_parameter_declaration:                                                              // CFA, new & old style parameter declaration
[4d51835]2273        parameter_declaration
[994d080]2274        | cfa_identifier_parameter_declarator_no_tuple identifier_or_type_name default_initialize_opt
[4d51835]2275                { $$ = $1->addName( $2 ); }
[994d080]2276        | cfa_abstract_tuple identifier_or_type_name default_initialize_opt
[c0aa336]2277                // To obtain LR(1), these rules must be duplicated here (see cfa_abstract_declarator).
[4d51835]2278                { $$ = $1->addName( $2 ); }
[994d080]2279        | type_qualifier_list cfa_abstract_tuple identifier_or_type_name default_initialize_opt
[4d51835]2280                { $$ = $2->addName( $3 )->addQualifiers( $1 ); }
[c0aa336]2281        | cfa_function_specifier
[4d51835]2282        ;
[b87a5ed]2283
[c0aa336]2284cfa_abstract_parameter_declaration:                                             // CFA, new & old style parameter declaration
[4d51835]2285        abstract_parameter_declaration
[c0aa336]2286        | cfa_identifier_parameter_declarator_no_tuple
2287        | cfa_abstract_tuple
2288                // To obtain LR(1), these rules must be duplicated here (see cfa_abstract_declarator).
2289        | type_qualifier_list cfa_abstract_tuple
[4d51835]2290                { $$ = $2->addQualifiers( $1 ); }
[c0aa336]2291        | cfa_abstract_function
[4d51835]2292        ;
[51b7345]2293
2294parameter_declaration:
[d0ffed1]2295                // No SUE declaration in parameter list.
[994d080]2296        declaration_specifier_nobody identifier_parameter_declarator default_initialize_opt
[7fdb94e]2297                { $$ = $2->addType( $1 )->addInitializer( $3 ? new InitializerNode( $3 ) : nullptr ); }
[994d080]2298        | declaration_specifier_nobody type_parameter_redeclarator default_initialize_opt
[7fdb94e]2299                { $$ = $2->addType( $1 )->addInitializer( $3 ? new InitializerNode( $3 ) : nullptr ); }
[4d51835]2300        ;
[51b7345]2301
2302abstract_parameter_declaration:
[994d080]2303        declaration_specifier_nobody default_initialize_opt
[e7cc8cb]2304                { $$ = $1->addInitializer( $2 ? new InitializerNode( $2 ) : nullptr ); }
[994d080]2305        | declaration_specifier_nobody abstract_parameter_declarator default_initialize_opt
[e7cc8cb]2306                { $$ = $2->addType( $1 )->addInitializer( $3 ? new InitializerNode( $3 ) : nullptr ); }
[4d51835]2307        ;
[51b7345]2308
[c11e31c]2309// ISO/IEC 9899:1999 Section 6.9.1(6) : "An identifier declared as a typedef name shall not be redeclared as a
[de62360d]2310// parameter." Because the scope of the K&R-style parameter-list sees the typedef first, the following is based only on
2311// identifiers.  The ANSI-style parameter-list can redefine a typedef name.
[51b7345]2312
[b87a5ed]2313identifier_list:                                                                                // K&R-style parameter list => no types
[4d51835]2314        no_attr_identifier
2315                { $$ = DeclarationNode::newName( $1 ); }
2316        | identifier_list ',' no_attr_identifier
2317                { $$ = $1->appendList( DeclarationNode::newName( $3 ) ); }
2318        ;
[51b7345]2319
[2871210]2320identifier_or_type_name:
[4d51835]2321        identifier
2322        | TYPEDEFname
2323        | TYPEGENname
2324        ;
[51b7345]2325
[2871210]2326no_attr_identifier_or_type_name:
[4d51835]2327        no_attr_identifier
2328        | TYPEDEFname
[721f17a]2329        | TYPEGENname
[4d51835]2330        ;
[b87a5ed]2331
[84d58c5]2332type_no_function:                                                                               // sizeof, alignof, cast (constructor)
[c0aa336]2333        cfa_abstract_declarator_tuple                                           // CFA
[4d51835]2334        | type_specifier
[c0aa336]2335        | type_specifier abstract_declarator
[4d51835]2336                { $$ = $2->addType( $1 ); }
2337        ;
[b87a5ed]2338
[84d58c5]2339type:                                                                                                   // typeof, assertion
2340        type_no_function
[c0aa336]2341        | cfa_abstract_function                                                         // CFA
[4d51835]2342        ;
[51b7345]2343
2344initializer_opt:
[4d51835]2345        // empty
[58dd019]2346                { $$ = nullptr; }
[2871210]2347        | '=' initializer
2348                { $$ = $2; }
[641c3d0]2349        | '=' VOID
[3ed994e]2350                { $$ = new InitializerNode( true ); }
[097e2b0]2351        | ATassign initializer
[974906e2]2352                { $$ = $2->set_maybeConstructed( false ); }
[4d51835]2353        ;
[51b7345]2354
2355initializer:
[de62360d]2356        assignment_expression                                           { $$ = new InitializerNode( $1 ); }
[7fdb94e]2357        | '{' initializer_list_opt comma_opt '}'        { $$ = new InitializerNode( $2, true ); }
[4d51835]2358        ;
[51b7345]2359
[7fdb94e]2360initializer_list_opt:
[097e2b0]2361        // empty
[58dd019]2362                { $$ = nullptr; }
[097e2b0]2363        | initializer
[4d51835]2364        | designation initializer                                       { $$ = $2->set_designators( $1 ); }
[7fdb94e]2365        | initializer_list_opt ',' initializer          { $$ = (InitializerNode *)( $1->set_last( $3 ) ); }
2366        | initializer_list_opt ',' designation initializer
[1d4580a]2367                { $$ = (InitializerNode *)( $1->set_last( $4->set_designators( $3 ) ) ); }
[4d51835]2368        ;
[b87a5ed]2369
[de62360d]2370// There is an unreconcileable parsing problem between C99 and CFA with respect to designators. The problem is use of
2371// '=' to separator the designator from the initializer value, as in:
[c11e31c]2372//
[b87a5ed]2373//              int x[10] = { [1] = 3 };
[c11e31c]2374//
[de62360d]2375// The string "[1] = 3" can be parsed as a designator assignment or a tuple assignment.  To disambiguate this case, CFA
2376// changes the syntax from "=" to ":" as the separator between the designator and initializer. GCC does uses ":" for
2377// field selection. The optional use of the "=" in GCC, or in this case ":", cannot be supported either due to
2378// shift/reduce conflicts
[51b7345]2379
2380designation:
[4d51835]2381        designator_list ':'                                                                     // C99, CFA uses ":" instead of "="
[84d58c5]2382        | no_attr_identifier ':'                                                        // GCC, field name
[d1625f8]2383                { $$ = new ExpressionNode( build_varref( $1 ) ); }
[4d51835]2384        ;
[51b7345]2385
[b87a5ed]2386designator_list:                                                                                // C99
[4d51835]2387        designator
[2871210]2388        | designator_list designator
[1d4580a]2389                { $$ = (ExpressionNode *)( $1->set_last( $2 ) ); }
[d1625f8]2390        //| designator_list designator                                          { $$ = new ExpressionNode( $1, $2 ); }
[4d51835]2391        ;
[51b7345]2392
2393designator:
[84d58c5]2394        '.' no_attr_identifier                                                          // C99, field name
[d1625f8]2395                { $$ = new ExpressionNode( build_varref( $2 ) ); }
[c0a33d2]2396        | '[' push assignment_expression pop ']'                        // C99, single array element
[de62360d]2397                // assignment_expression used instead of constant_expression because of shift/reduce conflicts with tuple.
[d1625f8]2398                { $$ = $3; }
[c0a33d2]2399        | '[' push subrange pop ']'                                                     // CFA, multiple array elements
2400                { $$ = $3; }
2401        | '[' push constant_expression ELLIPSIS constant_expression pop ']' // GCC, multiple array elements
2402                { $$ = new ExpressionNode( new RangeExpr( maybeMoveBuild< Expression >( $3 ), maybeMoveBuild< Expression >( $5 ) ) ); }
[679e644]2403        | '.' '[' push field_name_list pop ']'                          // CFA, tuple field selector
[c0a33d2]2404                { $$ = $4; }
[4d51835]2405        ;
[51b7345]2406
[de62360d]2407// The CFA type system is based on parametric polymorphism, the ability to declare functions with type parameters,
2408// rather than an object-oriented type system. This required four groups of extensions:
[c11e31c]2409//
2410// Overloading: function, data, and operator identifiers may be overloaded.
2411//
[de62360d]2412// Type declarations: "type" is used to generate new types for declaring objects. Similarly, "dtype" is used for object
2413//     and incomplete types, and "ftype" is used for function types. Type declarations with initializers provide
2414//     definitions of new types. Type declarations with storage class "extern" provide opaque types.
[c11e31c]2415//
[de62360d]2416// Polymorphic functions: A forall clause declares a type parameter. The corresponding argument is inferred at the call
2417//     site. A polymorphic function is not a template; it is a function, with an address and a type.
[c11e31c]2418//
2419// Specifications and Assertions: Specifications are collections of declarations parameterized by one or more
[de62360d]2420//     types. They serve many of the purposes of abstract classes, and specification hierarchies resemble subclass
2421//     hierarchies. Unlike classes, they can define relationships between types.  Assertions declare that a type or
2422//     types provide the operations declared by a specification.  Assertions are normally used to declare requirements
2423//     on type arguments of polymorphic functions.
[c11e31c]2424
[b87a5ed]2425type_parameter_list:                                                                    // CFA
[67cf18c]2426        type_parameter
2427        | type_parameter_list ',' type_parameter
[4d51835]2428                { $$ = $1->appendList( $3 ); }
2429        ;
[b87a5ed]2430
[84d58c5]2431type_initializer_opt:                                                                   // CFA
2432        // empty
2433                { $$ = nullptr; }
2434        | '=' type
2435                { $$ = $2; }
2436        ;
2437
[b87a5ed]2438type_parameter:                                                                                 // CFA
[2871210]2439        type_class no_attr_identifier_or_type_name
[ecae5860]2440                { typedefTable.addToScope( *$2, TYPEDEFname, "9" ); }
[67cf18c]2441          type_initializer_opt assertion_list_opt
2442                { $$ = DeclarationNode::newTypeParam( $1, $2 )->addTypeInitializer( $4 )->addAssertions( $5 ); }
[4d51835]2443        | type_specifier identifier_parameter_declarator
[9997fee]2444        | assertion_list
2445                { $$ = DeclarationNode::newTypeParam( DeclarationNode::Dtype, new string( DeclarationNode::anonymous.newName() ) )->addAssertions( $1 ); }
[4d51835]2446        ;
[b87a5ed]2447
2448type_class:                                                                                             // CFA
[4040425]2449        OTYPE
[5b639ee]2450                { $$ = DeclarationNode::Otype; }
[4d51835]2451        | DTYPE
2452                { $$ = DeclarationNode::Dtype; }
[8f60f0b]2453        | FTYPE
2454                { $$ = DeclarationNode::Ftype; }
2455        | TTYPE
2456                { $$ = DeclarationNode::Ttype; }
[4d51835]2457        ;
[b87a5ed]2458
2459assertion_list_opt:                                                                             // CFA
[4d51835]2460        // empty
[58dd019]2461                { $$ = nullptr; }
[9997fee]2462        | assertion_list
2463        ;
2464
2465assertion_list:                                                                                 // CFA
2466        assertion
2467        | assertion_list assertion
[a7741435]2468                { $$ = $1 ? $1->appendList( $2 ) : $2; }
[4d51835]2469        ;
[b87a5ed]2470
2471assertion:                                                                                              // CFA
[84d58c5]2472        '|' no_attr_identifier_or_type_name '(' type_list ')'
[7fdb94e]2473                { $$ = DeclarationNode::newTraitUse( $2, $4 ); }
[13e8427]2474        | '|' '{' push trait_declaration_list pop '}'
[4d51835]2475                { $$ = $4; }
[35718a9]2476        // | '|' '(' push type_parameter_list pop ')' '{' push trait_declaration_list pop '}' '(' type_list ')'
2477        //      { SemanticError( yylloc, "Generic data-type assertion is currently unimplemented." ); $$ = nullptr; }
[4d51835]2478        ;
[b87a5ed]2479
[84d58c5]2480type_list:                                                                                              // CFA
2481        type
[513e165]2482                { $$ = new ExpressionNode( new TypeExpr( maybeMoveBuildType( $1 ) ) ); }
[4d51835]2483        | assignment_expression
[3007c0b]2484                { SemanticError( yylloc, toString("Expression generic parameters are currently unimplemented: ", $1->build()) ); $$ = nullptr; }
[84d58c5]2485        | type_list ',' type
[513e165]2486                { $$ = (ExpressionNode *)( $1->set_last( new ExpressionNode( new TypeExpr( maybeMoveBuildType( $3 ) ) ) ) ); }
[84d58c5]2487        | type_list ',' assignment_expression
[3007c0b]2488                { SemanticError( yylloc, toString("Expression generic parameters are currently unimplemented: ", $3->build()) ); $$ = nullptr; }
2489                // { $$ = (ExpressionNode *)( $1->set_last( $3 )); }
[4d51835]2490        ;
[b87a5ed]2491
2492type_declaring_list:                                                                    // CFA
[4040425]2493        OTYPE type_declarator
[4d51835]2494                { $$ = $2; }
[4040425]2495        | storage_class_list OTYPE type_declarator
[4d51835]2496                { $$ = $3->addQualifiers( $1 ); }
2497        | type_declaring_list ',' type_declarator
[a7c90d4]2498                { $$ = $1->appendList( $3->copySpecifiers( $1 ) ); }
[4d51835]2499        ;
[b87a5ed]2500
2501type_declarator:                                                                                // CFA
[4d51835]2502        type_declarator_name assertion_list_opt
2503                { $$ = $1->addAssertions( $2 ); }
[84d58c5]2504        | type_declarator_name assertion_list_opt '=' type
[4d51835]2505                { $$ = $1->addAssertions( $2 )->addType( $4 ); }
2506        ;
[b87a5ed]2507
2508type_declarator_name:                                                                   // CFA
[2871210]2509        no_attr_identifier_or_type_name
[4d51835]2510                {
[ecae5860]2511                        typedefTable.addToEnclosingScope( *$1, TYPEDEFname, "10" );
[4d51835]2512                        $$ = DeclarationNode::newTypeDecl( $1, 0 );
2513                }
[35718a9]2514        | no_attr_identifier_or_type_name '(' type_parameter_list ')'
[4d51835]2515                {
[ecae5860]2516                        typedefTable.addToEnclosingScope( *$1, TYPEGENname, "11" );
[35718a9]2517                        $$ = DeclarationNode::newTypeDecl( $1, $3 );
[4d51835]2518                }
2519        ;
[b87a5ed]2520
[4040425]2521trait_specifier:                                                                                // CFA
[35718a9]2522        TRAIT no_attr_identifier_or_type_name '(' type_parameter_list ')' '{' '}'
2523                { $$ = DeclarationNode::newTrait( $2, $4, 0 ); }
2524        | TRAIT no_attr_identifier_or_type_name '(' type_parameter_list ')' '{' push trait_declaration_list pop '}'
2525                { $$ = DeclarationNode::newTrait( $2, $4, $8 ); }
[4d51835]2526        ;
[b87a5ed]2527
[84d58c5]2528trait_declaration_list:                                                                 // CFA
[4040425]2529        trait_declaration
[13e8427]2530        | trait_declaration_list pop push trait_declaration
2531                { $$ = $1->appendList( $4 ); }
[4d51835]2532        ;
[b87a5ed]2533
[84d58c5]2534trait_declaration:                                                                              // CFA
[13e8427]2535        cfa_trait_declaring_list ';'
2536        | trait_declaring_list ';'
[4d51835]2537        ;
[b87a5ed]2538
[c0aa336]2539cfa_trait_declaring_list:                                                               // CFA
2540        cfa_variable_specifier
2541        | cfa_function_specifier
2542        | cfa_trait_declaring_list pop ',' push identifier_or_type_name
[7fdb94e]2543                { $$ = $1->appendList( $1->cloneType( $5 ) ); }
[4d51835]2544        ;
[b87a5ed]2545
[4040425]2546trait_declaring_list:                                                                   // CFA
[4d51835]2547        type_specifier declarator
[7fdb94e]2548                { $$ = $2->addType( $1 ); }
[4040425]2549        | trait_declaring_list pop ',' push declarator
[7fdb94e]2550                { $$ = $1->appendList( $1->cloneBaseType( $5 ) ); }
[4d51835]2551        ;
[51b7345]2552
[c11e31c]2553//***************************** EXTERNAL DEFINITIONS *****************************
[51b7345]2554
2555translation_unit:
[3d56d15b]2556        // empty, input file
[4d51835]2557        | external_definition_list
[a7741435]2558                { parseTree = parseTree ? parseTree->appendList( $1 ) : $1;     }
[4d51835]2559        ;
[51b7345]2560
2561external_definition_list:
[35718a9]2562        push external_definition pop
2563                { $$ = $2; }
[fc20514]2564        | external_definition_list push external_definition pop
2565                { $$ = $1 ? $1->appendList( $3 ) : $3; }
[4d51835]2566        ;
[51b7345]2567
2568external_definition_list_opt:
[4d51835]2569        // empty
[58dd019]2570                { $$ = nullptr; }
[3d56d15b]2571        | external_definition_list
2572        ;
2573
2574up:
[fc20514]2575                { typedefTable.up( forall ); forall = false; }
[3d56d15b]2576        ;
2577
2578down:
2579                { typedefTable.down(); }
[4d51835]2580        ;
[51b7345]2581
2582external_definition:
[4d51835]2583        declaration
2584        | external_function_definition
[ecae5860]2585        | EXTENSION external_definition                                         // GCC, multiple __extension__ allowed, meaning unknown
2586                {
2587                        distExt( $2 );                                                          // mark all fields in list
2588                        $$ = $2;
2589                }
[e994912]2590        | ASM '(' string_literal ')' ';'                                        // GCC, global assembler statement
2591                {
[6d539f83]2592                        $$ = DeclarationNode::newAsmStmt( new StatementNode( build_asm( false, $3, 0 ) ) );
[e994912]2593                }
[c0aa336]2594        | EXTERN STRINGliteral                                                          // C++-style linkage specifier
[4d51835]2595                {
[3b8e52c]2596                        linkageStack.push( linkage );                           // handle nested extern "C"/"Cforall"
[d55d7a6]2597                        linkage = LinkageSpec::linkageUpdate( yylloc, linkage, $2 );
[4d51835]2598                }
[3d56d15b]2599          '{' up external_definition_list_opt down '}'
[4d51835]2600                {
2601                        linkage = linkageStack.top();
2602                        linkageStack.pop();
[3d56d15b]2603                        $$ = $6;
[8e9cbb2]2604                }
[9997fee]2605        | type_qualifier_list
2606                {
[3d56d15b]2607                        if ( $1->type->qualifiers.val ) { SemanticError( yylloc, "CV qualifiers cannot be distributed; only storage-class and forall qualifiers." ); }
[fc20514]2608                        if ( $1->type->forall ) forall = true;          // remember generic type
[3d56d15b]2609                }
2610          '{' up external_definition_list_opt down '}'          // CFA, namespace
2611                {
[4c3ee8d]2612                        distQual( $5, $1 );
[fc20514]2613                        forall = false;
[3d56d15b]2614                        $$ = $5;
[9997fee]2615                }
2616        | declaration_qualifier_list
2617                {
[4c3ee8d]2618                        if ( $1->type && $1->type->qualifiers.val ) { SemanticError( yylloc, "CV qualifiers cannot be distributed; only storage-class and forall qualifiers." ); }
[fc20514]2619                        if ( $1->type && $1->type->forall ) forall = true; // remember generic type
[3d56d15b]2620                }
2621          '{' up external_definition_list_opt down '}'          // CFA, namespace
2622                {
[4c3ee8d]2623                        distQual( $5, $1 );
[fc20514]2624                        forall = false;
[3d56d15b]2625                        $$ = $5;
[9997fee]2626                }
2627        | declaration_qualifier_list type_qualifier_list
2628                {
[3d56d15b]2629                        if ( ($1->type && $1->type->qualifiers.val) || $2->type->qualifiers.val ) { SemanticError( yylloc, "CV qualifiers cannot be distributed; only storage-class and forall qualifiers." ); }
[fc20514]2630                        if ( ($1->type && $1->type->forall) || $2->type->forall ) forall = true; // remember generic type
[9997fee]2631                }
[3d56d15b]2632          '{' up external_definition_list_opt down '}'          // CFA, namespace
[9997fee]2633                {
[284da8c]2634                        distQual( $6, $1->addQualifiers( $2 ) );
[fc20514]2635                        forall = false;
[3d56d15b]2636                        $$ = $6;
[9997fee]2637                }
[4d51835]2638        ;
2639
2640external_function_definition:
2641        function_definition
[de62360d]2642                // These rules are a concession to the "implicit int" type_specifier because there is a significant amount of
[c6b1105]2643                // legacy code with global functions missing the type-specifier for the return type, and assuming "int".
2644                // Parsing is possible because function_definition does not appear in the context of an expression (nested
2645                // functions preclude this concession, i.e., all nested function must have a return type). A function prototype
2646                // declaration must still have a type_specifier.  OBSOLESCENT (see 1)
[4d51835]2647        | function_declarator compound_statement
[c0a33d2]2648                { $$ = $1->addFunctionBody( $2 ); }
[35718a9]2649        | KR_function_declarator KR_parameter_list_opt compound_statement
[c0a33d2]2650                { $$ = $1->addOldDeclList( $2 )->addFunctionBody( $3 ); }
[4d51835]2651        ;
[51b7345]2652
[8b47e50]2653with_clause_opt:
2654        // empty
[9997fee]2655                { $$ = nullptr; forall = false; }
[578e6037]2656        | WITH '(' tuple_expression_list ')'
[9997fee]2657                { $$ = $3; forall = false; }
[8b47e50]2658        ;
2659
[51b7345]2660function_definition:
[8b47e50]2661        cfa_function_declaration with_clause_opt compound_statement     // CFA
[4d51835]2662                {
[481115f]2663                        // Add the function body to the last identifier in the function definition list, i.e., foo3:
2664                        //   [const double] foo1(), foo2( int ), foo3( double ) { return 3.0; }
[5fcba14]2665                        $1->get_last()->addFunctionBody( $3, $2 );
[481115f]2666                        $$ = $1;
[4d51835]2667                }
[8b47e50]2668        | declaration_specifier function_declarator with_clause_opt compound_statement
[4d51835]2669                {
[c38ae92]2670                        rebindForall( $1, $2 );
[7fdb94e]2671                        $$ = $2->addFunctionBody( $4, $3 )->addType( $1 );
2672                }
2673        | declaration_specifier variable_type_redeclarator with_clause_opt compound_statement
2674                {
2675                        rebindForall( $1, $2 );
[5fcba14]2676                        $$ = $2->addFunctionBody( $4, $3 )->addType( $1 );
[4d51835]2677                }
[a16a7ec]2678                // handles default int return type, OBSOLESCENT (see 1)
[8b47e50]2679        | type_qualifier_list function_declarator with_clause_opt compound_statement
[c0a33d2]2680                { $$ = $2->addFunctionBody( $4, $3 )->addQualifiers( $1 ); }
[a16a7ec]2681                // handles default int return type, OBSOLESCENT (see 1)
[8b47e50]2682        | declaration_qualifier_list function_declarator with_clause_opt compound_statement
[c0a33d2]2683                { $$ = $2->addFunctionBody( $4, $3 )->addQualifiers( $1 ); }
[a16a7ec]2684                // handles default int return type, OBSOLESCENT (see 1)
[8b47e50]2685        | declaration_qualifier_list type_qualifier_list function_declarator with_clause_opt compound_statement
[c0a33d2]2686                { $$ = $3->addFunctionBody( $5, $4 )->addQualifiers( $2 )->addQualifiers( $1 ); }
[4d51835]2687
2688                // Old-style K&R function definition, OBSOLESCENT (see 4)
[35718a9]2689        | declaration_specifier KR_function_declarator KR_parameter_list_opt with_clause_opt compound_statement
[4d51835]2690                {
[c38ae92]2691                        rebindForall( $1, $2 );
[5fcba14]2692                        $$ = $2->addOldDeclList( $3 )->addFunctionBody( $5, $4 )->addType( $1 );
[4d51835]2693                }
[a16a7ec]2694                // handles default int return type, OBSOLESCENT (see 1)
[35718a9]2695        | type_qualifier_list KR_function_declarator KR_parameter_list_opt with_clause_opt compound_statement
[c0a33d2]2696                { $$ = $2->addOldDeclList( $3 )->addFunctionBody( $5, $4 )->addQualifiers( $1 ); }
[a16a7ec]2697                // handles default int return type, OBSOLESCENT (see 1)
[35718a9]2698        | declaration_qualifier_list KR_function_declarator KR_parameter_list_opt with_clause_opt compound_statement
[c0a33d2]2699                { $$ = $2->addOldDeclList( $3 )->addFunctionBody( $5, $4 )->addQualifiers( $1 ); }
[a16a7ec]2700                // handles default int return type, OBSOLESCENT (see 1)
[35718a9]2701        | declaration_qualifier_list type_qualifier_list KR_function_declarator KR_parameter_list_opt with_clause_opt compound_statement
[c0a33d2]2702                { $$ = $3->addOldDeclList( $4 )->addFunctionBody( $6, $5 )->addQualifiers( $2 )->addQualifiers( $1 ); }
[4d51835]2703        ;
[51b7345]2704
2705declarator:
[4d51835]2706        variable_declarator
[c6b1105]2707        | variable_type_redeclarator
[4d51835]2708        | function_declarator
2709        ;
[51b7345]2710
2711subrange:
[4d51835]2712        constant_expression '~' constant_expression                     // CFA, integer subrange
[db70fe4]2713                { $$ = new ExpressionNode( new RangeExpr( maybeMoveBuild< Expression >( $1 ), maybeMoveBuild< Expression >( $3 ) ) ); }
[4d51835]2714        ;
[b87a5ed]2715
2716asm_name_opt:                                                                                   // GCC
[4d51835]2717        // empty
[58dd019]2718                { $$ = nullptr; }
2719        | ASM '(' string_literal ')' attribute_list_opt
[c0aa336]2720                {
2721                        DeclarationNode * name = new DeclarationNode();
2722                        name->asmName = $3;
2723                        $$ = name->addQualifiers( $5 );
2724                }
[4d51835]2725        ;
[b87a5ed]2726
2727attribute_list_opt:                                                                             // GCC
[4d51835]2728        // empty
[58dd019]2729                { $$ = nullptr; }
[4d51835]2730        | attribute_list
2731        ;
[b87a5ed]2732
2733attribute_list:                                                                                 // GCC
[4d51835]2734        attribute
2735        | attribute_list attribute
[1db21619]2736                { $$ = $2->addQualifiers( $1 ); }
[4d51835]2737        ;
[b87a5ed]2738
2739attribute:                                                                                              // GCC
[44a81853]2740        ATTRIBUTE '(' '(' attribute_name_list ')' ')'
2741                { $$ = $4; }
[4d51835]2742        ;
[b87a5ed]2743
[44a81853]2744attribute_name_list:                                                                    // GCC
2745        attribute_name
2746        | attribute_name_list ',' attribute_name
[c0aa336]2747                { $$ = $3->addQualifiers( $1 ); }
[4d51835]2748        ;
[b87a5ed]2749
[44a81853]2750attribute_name:                                                                                 // GCC
[4d51835]2751        // empty
[44a81853]2752                { $$ = nullptr; }
2753        | attr_name
2754                { $$ = DeclarationNode::newAttribute( $1 ); }
2755        | attr_name '(' argument_expression_list ')'
2756                { $$ = DeclarationNode::newAttribute( $1, $3 ); }
[4d51835]2757        ;
[b87a5ed]2758
[44a81853]2759attr_name:                                                                                              // GCC
2760        IDENTIFIER
[5b2edbc]2761        | quasi_keyword
[44a81853]2762        | TYPEDEFname
2763        | TYPEGENname
[114014c]2764        | FALLTHROUGH
2765                { $$ = Token{ new string( "fallthrough" ), { nullptr, -1 } }; }
[44a81853]2766        | CONST
[9ff56e7]2767                { $$ = Token{ new string( "__const__" ), { nullptr, -1 } }; }
[4d51835]2768        ;
[51b7345]2769
[c11e31c]2770// ============================================================================
[de62360d]2771// The following sections are a series of grammar patterns used to parse declarators. Multiple patterns are necessary
2772// because the type of an identifier in wrapped around the identifier in the same form as its usage in an expression, as
2773// in:
[c11e31c]2774//
[b87a5ed]2775//              int (*f())[10] { ... };
2776//              ... (*f())[3] += 1;             // definition mimics usage
[c11e31c]2777//
[de62360d]2778// Because these patterns are highly recursive, changes at a lower level in the recursion require copying some or all of
2779// the pattern. Each of these patterns has some subtle variation to ensure correct syntax in a particular context.
[c11e31c]2780// ============================================================================
2781
2782// ----------------------------------------------------------------------------
[de62360d]2783// The set of valid declarators before a compound statement for defining a function is less than the set of declarators
2784// to define a variable or function prototype, e.g.:
[c11e31c]2785//
[b87a5ed]2786//              valid declaration               invalid definition
2787//              -----------------               ------------------
[4d51835]2788//              int f;                                  int f {}
2789//              int *f;                                 int *f {}
[b87a5ed]2790//              int f[10];                              int f[10] {}
[4d51835]2791//              int (*f)(int);                  int (*f)(int) {}
[c11e31c]2792//
[de62360d]2793// To preclude this syntactic anomaly requires separating the grammar rules for variable and function declarators, hence
2794// variable_declarator and function_declarator.
[c11e31c]2795// ----------------------------------------------------------------------------
2796
[de62360d]2797// This pattern parses a declaration of a variable that is not redefining a typedef name. The pattern precludes
2798// declaring an array of functions versus a pointer to an array of functions.
[51b7345]2799
2800variable_declarator:
[4d51835]2801        paren_identifier attribute_list_opt
[1db21619]2802                { $$ = $1->addQualifiers( $2 ); }
[4d51835]2803        | variable_ptr
2804        | variable_array attribute_list_opt
[1db21619]2805                { $$ = $1->addQualifiers( $2 ); }
[4d51835]2806        | variable_function attribute_list_opt
[1db21619]2807                { $$ = $1->addQualifiers( $2 ); }
[4d51835]2808        ;
[51b7345]2809
2810paren_identifier:
[4d51835]2811        identifier
[7fdb94e]2812                { $$ = DeclarationNode::newName( $1 ); }
[4d51835]2813        | '(' paren_identifier ')'                                                      // redundant parenthesis
2814                { $$ = $2; }
2815        ;
[51b7345]2816
2817variable_ptr:
[dd51906]2818        ptrref_operator variable_declarator
[ce8c12f]2819                { $$ = $2->addPointer( DeclarationNode::newPointer( 0, $1 ) ); }
[dd51906]2820        | ptrref_operator type_qualifier_list variable_declarator
[ce8c12f]2821                { $$ = $3->addPointer( DeclarationNode::newPointer( $2, $1 ) ); }
[c0aa336]2822        | '(' variable_ptr ')' attribute_list_opt
2823                { $$ = $2->addQualifiers( $4 ); }                               // redundant parenthesis
[4d51835]2824        ;
[51b7345]2825
2826variable_array:
[4d51835]2827        paren_identifier array_dimension
2828                { $$ = $1->addArray( $2 ); }
2829        | '(' variable_ptr ')' array_dimension
2830                { $$ = $2->addArray( $4 ); }
2831        | '(' variable_array ')' multi_array_dimension          // redundant parenthesis
2832                { $$ = $2->addArray( $4 ); }
2833        | '(' variable_array ')'                                                        // redundant parenthesis
2834                { $$ = $2; }
2835        ;
[51b7345]2836
2837variable_function:
[4d51835]2838        '(' variable_ptr ')' '(' push parameter_type_list_opt pop ')' // empty parameter list OBSOLESCENT (see 3)
2839                { $$ = $2->addParamList( $6 ); }
2840        | '(' variable_function ')'                                                     // redundant parenthesis
2841                { $$ = $2; }
2842        ;
[51b7345]2843
[c6b1105]2844// This pattern parses a function declarator that is not redefining a typedef name. For non-nested functions, there is
2845// no context where a function definition can redefine a typedef name, i.e., the typedef and function name cannot exist
2846// is the same scope.  The pattern precludes returning arrays and functions versus pointers to arrays and functions.
[51b7345]2847
2848function_declarator:
[4d51835]2849        function_no_ptr attribute_list_opt
[1db21619]2850                { $$ = $1->addQualifiers( $2 ); }
[4d51835]2851        | function_ptr
2852        | function_array attribute_list_opt
[1db21619]2853                { $$ = $1->addQualifiers( $2 ); }
[4d51835]2854        ;
[51b7345]2855
2856function_no_ptr:
[4d51835]2857        paren_identifier '(' push parameter_type_list_opt pop ')' // empty parameter list OBSOLESCENT (see 3)
2858                { $$ = $1->addParamList( $4 ); }
2859        | '(' function_ptr ')' '(' push parameter_type_list_opt pop ')'
2860                { $$ = $2->addParamList( $6 ); }
2861        | '(' function_no_ptr ')'                                                       // redundant parenthesis
2862                { $$ = $2; }
2863        ;
[51b7345]2864
2865function_ptr:
[dd51906]2866        ptrref_operator function_declarator
[ce8c12f]2867                { $$ = $2->addPointer( DeclarationNode::newPointer( 0, $1 ) ); }
[dd51906]2868        | ptrref_operator type_qualifier_list function_declarator
[ce8c12f]2869                { $$ = $3->addPointer( DeclarationNode::newPointer( $2, $1 ) ); }
[4d51835]2870        | '(' function_ptr ')'
2871                { $$ = $2; }
2872        ;
[51b7345]2873
2874function_array:
[4d51835]2875        '(' function_ptr ')' array_dimension
2876                { $$ = $2->addArray( $4 ); }
2877        | '(' function_array ')' multi_array_dimension          // redundant parenthesis
2878                { $$ = $2->addArray( $4 ); }
2879        | '(' function_array ')'                                                        // redundant parenthesis
2880                { $$ = $2; }
2881        ;
[51b7345]2882
[c0aa336]2883// This pattern parses an old-style K&R function declarator (OBSOLESCENT, see 4)
2884//
2885//   f( a, b, c ) int a, *b, c[]; {}
2886//
2887// that is not redefining a typedef name (see function_declarator for additional comments). The pattern precludes
2888// returning arrays and functions versus pointers to arrays and functions.
[51b7345]2889
[c0aa336]2890KR_function_declarator:
2891        KR_function_no_ptr
2892        | KR_function_ptr
2893        | KR_function_array
[4d51835]2894        ;
[51b7345]2895
[c0aa336]2896KR_function_no_ptr:
[4d51835]2897        paren_identifier '(' identifier_list ')'                        // function_declarator handles empty parameter
2898                { $$ = $1->addIdList( $3 ); }
[c0a33d2]2899        | '(' KR_function_ptr ')' '(' push parameter_type_list_opt pop ')'
2900                { $$ = $2->addParamList( $6 ); }
[c0aa336]2901        | '(' KR_function_no_ptr ')'                                            // redundant parenthesis
[4d51835]2902                { $$ = $2; }
2903        ;
[51b7345]2904
[c0aa336]2905KR_function_ptr:
2906        ptrref_operator KR_function_declarator
[ce8c12f]2907                { $$ = $2->addPointer( DeclarationNode::newPointer( 0, $1 ) ); }
[c0aa336]2908        | ptrref_operator type_qualifier_list KR_function_declarator
[ce8c12f]2909                { $$ = $3->addPointer( DeclarationNode::newPointer( $2, $1 ) ); }
[c0aa336]2910        | '(' KR_function_ptr ')'
[4d51835]2911                { $$ = $2; }
2912        ;
[51b7345]2913
[c0aa336]2914KR_function_array:
2915        '(' KR_function_ptr ')' array_dimension
[4d51835]2916                { $$ = $2->addArray( $4 ); }
[c0aa336]2917        | '(' KR_function_array ')' multi_array_dimension       // redundant parenthesis
[4d51835]2918                { $$ = $2->addArray( $4 ); }
[c0aa336]2919        | '(' KR_function_array ')'                                                     // redundant parenthesis
[4d51835]2920                { $$ = $2; }
2921        ;
[51b7345]2922
[2871210]2923// This pattern parses a declaration for a variable or function prototype that redefines a type name, e.g.:
[c11e31c]2924//
[b87a5ed]2925//              typedef int foo;
2926//              {
2927//                 int foo; // redefine typedef name in new scope
2928//              }
[c11e31c]2929//
[de62360d]2930// The pattern precludes declaring an array of functions versus a pointer to an array of functions, and returning arrays
2931// and functions versus pointers to arrays and functions.
[51b7345]2932
[c6b1105]2933variable_type_redeclarator:
[2871210]2934        paren_type attribute_list_opt
[1db21619]2935                { $$ = $1->addQualifiers( $2 ); }
[2871210]2936        | type_ptr
2937        | type_array attribute_list_opt
[1db21619]2938                { $$ = $1->addQualifiers( $2 ); }
[2871210]2939        | type_function attribute_list_opt
[1db21619]2940                { $$ = $1->addQualifiers( $2 ); }
[4d51835]2941        ;
[51b7345]2942
[2871210]2943paren_type:
2944        typedef
[2f0a0678]2945                // hide type name in enclosing scope by variable name
[c4f68dc]2946                {
2947                        // if ( ! typedefTable.existsCurr( *$1->name ) ) {
2948                                typedefTable.addToEnclosingScope( *$1->name, IDENTIFIER, "ID" );
2949                        // } else {
2950                        //      SemanticError( yylloc, string("'") + *$1->name + "' redeclared as different kind of symbol." ); $$ = nullptr;
2951                        // } // if
2952                }
[2871210]2953        | '(' paren_type ')'
[4d51835]2954                { $$ = $2; }
2955        ;
[51b7345]2956
[2871210]2957type_ptr:
[c6b1105]2958        ptrref_operator variable_type_redeclarator
[ce8c12f]2959                { $$ = $2->addPointer( DeclarationNode::newPointer( 0, $1 ) ); }
[c6b1105]2960        | ptrref_operator type_qualifier_list variable_type_redeclarator
[ce8c12f]2961                { $$ = $3->addPointer( DeclarationNode::newPointer( $2, $1 ) ); }
[c0aa336]2962        | '(' type_ptr ')' attribute_list_opt
[c4f68dc]2963                { $$ = $2->addQualifiers( $4 ); }                               // redundant parenthesis
[4d51835]2964        ;
[51b7345]2965
[2871210]2966type_array:
2967        paren_type array_dimension
[4d51835]2968                { $$ = $1->addArray( $2 ); }
[2871210]2969        | '(' type_ptr ')' array_dimension
[4d51835]2970                { $$ = $2->addArray( $4 ); }
[2871210]2971        | '(' type_array ')' multi_array_dimension                      // redundant parenthesis
[4d51835]2972                { $$ = $2->addArray( $4 ); }
[2871210]2973        | '(' type_array ')'                                                            // redundant parenthesis
[4d51835]2974                { $$ = $2; }
2975        ;
[51b7345]2976
[2871210]2977type_function:
2978        paren_type '(' push parameter_type_list_opt pop ')' // empty parameter list OBSOLESCENT (see 3)
[4d51835]2979                { $$ = $1->addParamList( $4 ); }
[2871210]2980        | '(' type_ptr ')' '(' push parameter_type_list_opt pop ')' // empty parameter list OBSOLESCENT (see 3)
[4d51835]2981                { $$ = $2->addParamList( $6 ); }
[2871210]2982        | '(' type_function ')'                                                         // redundant parenthesis
[4d51835]2983                { $$ = $2; }
2984        ;
[51b7345]2985
[c0aa336]2986// This pattern parses a declaration for a parameter variable of a function prototype or actual that is not redefining a
2987// typedef name and allows the C99 array options, which can only appear in a parameter list.  The pattern precludes
2988// declaring an array of functions versus a pointer to an array of functions, and returning arrays and functions versus
2989// pointers to arrays and functions.
[51b7345]2990
2991identifier_parameter_declarator:
[4d51835]2992        paren_identifier attribute_list_opt
[1db21619]2993                { $$ = $1->addQualifiers( $2 ); }
[b6b3c42]2994        | '&' MUTEX paren_identifier attribute_list_opt
2995                { $$ = $3->addPointer( DeclarationNode::newPointer( DeclarationNode::newTypeQualifier( Type::Mutex ), OperKinds::AddressOf ) )->addQualifiers( $4 ); }
[4d51835]2996        | identifier_parameter_ptr
2997        | identifier_parameter_array attribute_list_opt
[1db21619]2998                { $$ = $1->addQualifiers( $2 ); }
[4d51835]2999        | identifier_parameter_function attribute_list_opt
[1db21619]3000                { $$ = $1->addQualifiers( $2 ); }
[4d51835]3001        ;
[51b7345]3002
3003identifier_parameter_ptr:
[dd51906]3004        ptrref_operator identifier_parameter_declarator
[ce8c12f]3005                { $$ = $2->addPointer( DeclarationNode::newPointer( 0, $1 ) ); }
[dd51906]3006        | ptrref_operator type_qualifier_list identifier_parameter_declarator
[ce8c12f]3007                { $$ = $3->addPointer( DeclarationNode::newPointer( $2, $1 ) ); }
[c0aa336]3008        | '(' identifier_parameter_ptr ')' attribute_list_opt
3009                { $$ = $2->addQualifiers( $4 ); }
[4d51835]3010        ;
[51b7345]3011
3012identifier_parameter_array:
[4d51835]3013        paren_identifier array_parameter_dimension
3014                { $$ = $1->addArray( $2 ); }
3015        | '(' identifier_parameter_ptr ')' array_dimension
3016                { $$ = $2->addArray( $4 ); }
3017        | '(' identifier_parameter_array ')' multi_array_dimension // redundant parenthesis
3018                { $$ = $2->addArray( $4 ); }
3019        | '(' identifier_parameter_array ')'                            // redundant parenthesis
3020                { $$ = $2; }
3021        ;
[51b7345]3022
3023identifier_parameter_function:
[c0a33d2]3024        paren_identifier '(' push parameter_type_list_opt pop ')' // empty parameter list OBSOLESCENT (see 3)
3025                { $$ = $1->addParamList( $4 ); }
3026        | '(' identifier_parameter_ptr ')' '(' push parameter_type_list_opt pop ')' // empty parameter list OBSOLESCENT (see 3)
3027                { $$ = $2->addParamList( $6 ); }
[4d51835]3028        | '(' identifier_parameter_function ')'                         // redundant parenthesis
3029                { $$ = $2; }
3030        ;
[b87a5ed]3031
[de62360d]3032// This pattern parses a declaration for a parameter variable or function prototype that is redefining a typedef name,
3033// e.g.:
[c11e31c]3034//
[b87a5ed]3035//              typedef int foo;
[114014c]3036//              forall( otype T ) struct foo;
[b87a5ed]3037//              int f( int foo ); // redefine typedef name in new scope
[c11e31c]3038//
[c0aa336]3039// and allows the C99 array options, which can only appear in a parameter list.
[51b7345]3040
[2871210]3041type_parameter_redeclarator:
[4d51835]3042        typedef attribute_list_opt
[1db21619]3043                { $$ = $1->addQualifiers( $2 ); }
[b6b3c42]3044        | '&' MUTEX typedef attribute_list_opt
3045                { $$ = $3->addPointer( DeclarationNode::newPointer( DeclarationNode::newTypeQualifier( Type::Mutex ), OperKinds::AddressOf ) )->addQualifiers( $4 ); }
[2871210]3046        | type_parameter_ptr
3047        | type_parameter_array attribute_list_opt
[1db21619]3048                { $$ = $1->addQualifiers( $2 ); }
[2871210]3049        | type_parameter_function attribute_list_opt
[1db21619]3050                { $$ = $1->addQualifiers( $2 ); }
[4d51835]3051        ;
[51b7345]3052
3053typedef:
[4d51835]3054        TYPEDEFname
[7fdb94e]3055                { $$ = DeclarationNode::newName( $1 ); }
[2871210]3056        | TYPEGENname
[7fdb94e]3057                { $$ = DeclarationNode::newName( $1 ); }
[4d51835]3058        ;
[51b7345]3059
[2871210]3060type_parameter_ptr:
[dd51906]3061        ptrref_operator type_parameter_redeclarator
[ce8c12f]3062                { $$ = $2->addPointer( DeclarationNode::newPointer( 0, $1 ) ); }
[dd51906]3063        | ptrref_operator type_qualifier_list type_parameter_redeclarator
[ce8c12f]3064                { $$ = $3->addPointer( DeclarationNode::newPointer( $2, $1 ) ); }
[c0aa336]3065        | '(' type_parameter_ptr ')' attribute_list_opt
3066                { $$ = $2->addQualifiers( $4 ); }
[4d51835]3067        ;
[51b7345]3068
[2871210]3069type_parameter_array:
[4d51835]3070        typedef array_parameter_dimension
3071                { $$ = $1->addArray( $2 ); }
[2871210]3072        | '(' type_parameter_ptr ')' array_parameter_dimension
[4d51835]3073                { $$ = $2->addArray( $4 ); }
3074        ;
[51b7345]3075
[2871210]3076type_parameter_function:
[c0a33d2]3077        typedef '(' push parameter_type_list_opt pop ')'        // empty parameter list OBSOLESCENT (see 3)
3078                { $$ = $1->addParamList( $4 ); }
3079        | '(' type_parameter_ptr ')' '(' push parameter_type_list_opt pop ')' // empty parameter list OBSOLESCENT (see 3)
3080                { $$ = $2->addParamList( $6 ); }
[4d51835]3081        ;
[b87a5ed]3082
[de62360d]3083// This pattern parses a declaration of an abstract variable or function prototype, i.e., there is no identifier to
3084// which the type applies, e.g.:
[c11e31c]3085//
[b87a5ed]3086//              sizeof( int );
[c0aa336]3087//              sizeof( int * );
[b87a5ed]3088//              sizeof( int [10] );
[c0aa336]3089//              sizeof( int (*)() );
3090//              sizeof( int () );
[c11e31c]3091//
[de62360d]3092// The pattern precludes declaring an array of functions versus a pointer to an array of functions, and returning arrays
3093// and functions versus pointers to arrays and functions.
[51b7345]3094
3095abstract_declarator:
[4d51835]3096        abstract_ptr
3097        | abstract_array attribute_list_opt
[1db21619]3098                { $$ = $1->addQualifiers( $2 ); }
[4d51835]3099        | abstract_function attribute_list_opt
[1db21619]3100                { $$ = $1->addQualifiers( $2 ); }
[4d51835]3101        ;
[51b7345]3102
3103abstract_ptr:
[dd51906]3104        ptrref_operator
[ce8c12f]3105                { $$ = DeclarationNode::newPointer( 0, $1 ); }
[dd51906]3106        | ptrref_operator type_qualifier_list
[ce8c12f]3107                { $$ = DeclarationNode::newPointer( $2, $1 ); }
[dd51906]3108        | ptrref_operator abstract_declarator
[ce8c12f]3109                { $$ = $2->addPointer( DeclarationNode::newPointer( 0, $1 ) ); }
[dd51906]3110        | ptrref_operator type_qualifier_list abstract_declarator
[ce8c12f]3111                { $$ = $3->addPointer( DeclarationNode::newPointer( $2, $1 ) ); }
[c0aa336]3112        | '(' abstract_ptr ')' attribute_list_opt
3113                { $$ = $2->addQualifiers( $4 ); }
[4d51835]3114        ;
[51b7345]3115
3116abstract_array:
[4d51835]3117        array_dimension
3118        | '(' abstract_ptr ')' array_dimension
3119                { $$ = $2->addArray( $4 ); }
3120        | '(' abstract_array ')' multi_array_dimension          // redundant parenthesis
3121                { $$ = $2->addArray( $4 ); }
3122        | '(' abstract_array ')'                                                        // redundant parenthesis
3123                { $$ = $2; }
3124        ;
[51b7345]3125
3126abstract_function:
[c0a33d2]3127        '(' push parameter_type_list_opt pop ')'                        // empty parameter list OBSOLESCENT (see 3)
3128                { $$ = DeclarationNode::newFunction( nullptr, nullptr, $3, nullptr ); }
3129        | '(' abstract_ptr ')' '(' push parameter_type_list_opt pop ')' // empty parameter list OBSOLESCENT (see 3)
3130                { $$ = $2->addParamList( $6 ); }
[4d51835]3131        | '(' abstract_function ')'                                                     // redundant parenthesis
3132                { $$ = $2; }
3133        ;
[51b7345]3134
3135array_dimension:
[4d51835]3136                // Only the first dimension can be empty.
[2871210]3137        '[' ']'
[4d51835]3138                { $$ = DeclarationNode::newArray( 0, 0, false ); }
[2871210]3139        | '[' ']' multi_array_dimension
3140                { $$ = DeclarationNode::newArray( 0, 0, false )->addArray( $3 ); }
[4d51835]3141        | multi_array_dimension
3142        ;
[51b7345]3143
3144multi_array_dimension:
[c0a33d2]3145        '[' push assignment_expression pop ']'
3146                { $$ = DeclarationNode::newArray( $3, 0, false ); }
3147        | '[' push '*' pop ']'                                                          // C99
[4d51835]3148                { $$ = DeclarationNode::newVarArray( 0 ); }
[c0a33d2]3149        | multi_array_dimension '[' push assignment_expression pop ']'
3150                { $$ = $1->addArray( DeclarationNode::newArray( $4, 0, false ) ); }
3151        | multi_array_dimension '[' push '*' pop ']'            // C99
[4d51835]3152                { $$ = $1->addArray( DeclarationNode::newVarArray( 0 ) ); }
3153        ;
[51b7345]3154
[c11e31c]3155// This pattern parses a declaration of a parameter abstract variable or function prototype, i.e., there is no
3156// identifier to which the type applies, e.g.:
3157//
[c0aa336]3158//              int f( int );                   // not handled here
3159//              int f( int * );                 // abstract function-prototype parameter; no parameter name specified
3160//              int f( int (*)() );             // abstract function-prototype parameter; no parameter name specified
[b87a5ed]3161//              int f( int (int) );             // abstract function-prototype parameter; no parameter name specified
[c11e31c]3162//
[de62360d]3163// The pattern precludes declaring an array of functions versus a pointer to an array of functions, and returning arrays
[c0aa336]3164// and functions versus pointers to arrays and functions. In addition, the pattern handles the
3165// special meaning of parenthesis around a typedef name:
3166//
3167//              ISO/IEC 9899:1999 Section 6.7.5.3(11) : "In a parameter declaration, a single typedef name in
3168//              parentheses is taken to be an abstract declarator that specifies a function with a single parameter,
3169//              not as redundant parentheses around the identifier."
3170//
3171// For example:
3172//
3173//              typedef float T;
3174//              int f( int ( T [5] ) );                                 // see abstract_parameter_declarator
3175//              int g( int ( T ( int ) ) );                             // see abstract_parameter_declarator
3176//              int f( int f1( T a[5] ) );                              // see identifier_parameter_declarator
3177//              int g( int g1( T g2( int p ) ) );               // see identifier_parameter_declarator
3178//
3179// In essence, a '(' immediately to the left of typedef name, T, is interpreted as starting a parameter type list, and
3180// not as redundant parentheses around a redeclaration of T. Finally, the pattern also precludes declaring an array of
3181// functions versus a pointer to an array of functions, and returning arrays and functions versus pointers to arrays and
3182// functions.
[51b7345]3183
3184abstract_parameter_declarator:
[4d51835]3185        abstract_parameter_ptr
[b6b3c42]3186        | '&' MUTEX attribute_list_opt
3187                { $$ = DeclarationNode::newPointer( DeclarationNode::newTypeQualifier( Type::Mutex ), OperKinds::AddressOf )->addQualifiers( $3 ); }
[4d51835]3188        | abstract_parameter_array attribute_list_opt
[1db21619]3189                { $$ = $1->addQualifiers( $2 ); }
[4d51835]3190        | abstract_parameter_function attribute_list_opt
[1db21619]3191                { $$ = $1->addQualifiers( $2 ); }
[4d51835]3192        ;
[51b7345]3193
3194abstract_parameter_ptr:
[dd51906]3195        ptrref_operator
[ce8c12f]3196                { $$ = DeclarationNode::newPointer( nullptr, $1 ); }
[dd51906]3197        | ptrref_operator type_qualifier_list
[ce8c12f]3198                { $$ = DeclarationNode::newPointer( $2, $1 ); }
[dd51906]3199        | ptrref_operator abstract_parameter_declarator
[ce8c12f]3200                { $$ = $2->addPointer( DeclarationNode::newPointer( nullptr, $1 ) ); }
[dd51906]3201        | ptrref_operator type_qualifier_list abstract_parameter_declarator
[ce8c12f]3202                { $$ = $3->addPointer( DeclarationNode::newPointer( $2, $1 ) ); }
[c0aa336]3203        | '(' abstract_parameter_ptr ')' attribute_list_opt
3204                { $$ = $2->addQualifiers( $4 ); }
[4d51835]3205        ;
[51b7345]3206
3207abstract_parameter_array:
[4d51835]3208        array_parameter_dimension
3209        | '(' abstract_parameter_ptr ')' array_parameter_dimension
3210                { $$ = $2->addArray( $4 ); }
3211        | '(' abstract_parameter_array ')' multi_array_dimension // redundant parenthesis
3212                { $$ = $2->addArray( $4 ); }
3213        | '(' abstract_parameter_array ')'                                      // redundant parenthesis
3214                { $$ = $2; }
3215        ;
[51b7345]3216
3217abstract_parameter_function:
[c0a33d2]3218        '(' push parameter_type_list_opt pop ')'                        // empty parameter list OBSOLESCENT (see 3)
3219                { $$ = DeclarationNode::newFunction( nullptr, nullptr, $3, nullptr ); }
3220        | '(' abstract_parameter_ptr ')' '(' push parameter_type_list_opt pop ')' // empty parameter list OBSOLESCENT (see 3)
3221                { $$ = $2->addParamList( $6 ); }
[4d51835]3222        | '(' abstract_parameter_function ')'                           // redundant parenthesis
3223                { $$ = $2; }
3224        ;
[51b7345]3225
3226array_parameter_dimension:
[4d51835]3227                // Only the first dimension can be empty or have qualifiers.
3228        array_parameter_1st_dimension
3229        | array_parameter_1st_dimension multi_array_dimension
3230                { $$ = $1->addArray( $2 ); }
3231        | multi_array_dimension
3232        ;
[51b7345]3233
[c11e31c]3234// The declaration of an array parameter has additional syntax over arrays in normal variable declarations:
3235//
[de62360d]3236//              ISO/IEC 9899:1999 Section 6.7.5.2(1) : "The optional type qualifiers and the keyword static shall appear only in
3237//              a declaration of a function parameter with an array type, and then only in the outermost array type derivation."
[51b7345]3238
3239array_parameter_1st_dimension:
[2871210]3240        '[' ']'
[4d51835]3241                { $$ = DeclarationNode::newArray( 0, 0, false ); }
[13e8427]3242                // multi_array_dimension handles the '[' '*' ']' case
[c0a33d2]3243        | '[' push type_qualifier_list '*' pop ']'                      // remaining C99
3244                { $$ = DeclarationNode::newVarArray( $3 ); }
3245        | '[' push type_qualifier_list pop ']'
3246                { $$ = DeclarationNode::newArray( 0, $3, false ); }
[13e8427]3247                // multi_array_dimension handles the '[' assignment_expression ']' case
[c0a33d2]3248        | '[' push type_qualifier_list assignment_expression pop ']'
3249                { $$ = DeclarationNode::newArray( $4, $3, false ); }
3250        | '[' push STATIC type_qualifier_list_opt assignment_expression pop ']'
3251                { $$ = DeclarationNode::newArray( $5, $4, true ); }
3252        | '[' push type_qualifier_list STATIC assignment_expression pop ']'
3253                { $$ = DeclarationNode::newArray( $5, $3, true ); }
[4d51835]3254        ;
[b87a5ed]3255
[c0aa336]3256// This pattern parses a declaration of an abstract variable, but does not allow "int ()" for a function pointer.
[c11e31c]3257//
[c0aa336]3258//              struct S {
3259//          int;
3260//          int *;
3261//          int [10];
3262//          int (*)();
3263//      };
[51b7345]3264
3265variable_abstract_declarator:
[4d51835]3266        variable_abstract_ptr
3267        | variable_abstract_array attribute_list_opt
[1db21619]3268                { $$ = $1->addQualifiers( $2 ); }
[4d51835]3269        | variable_abstract_function attribute_list_opt
[1db21619]3270                { $$ = $1->addQualifiers( $2 ); }
[4d51835]3271        ;
[51b7345]3272
3273variable_abstract_ptr:
[dd51906]3274        ptrref_operator
[ce8c12f]3275                { $$ = DeclarationNode::newPointer( 0, $1 ); }
[dd51906]3276        | ptrref_operator type_qualifier_list
[ce8c12f]3277                { $$ = DeclarationNode::newPointer( $2, $1 ); }
[dd51906]3278        | ptrref_operator variable_abstract_declarator
[ce8c12f]3279                { $$ = $2->addPointer( DeclarationNode::newPointer( 0, $1 ) ); }
[dd51906]3280        | ptrref_operator type_qualifier_list variable_abstract_declarator
[ce8c12f]3281                { $$ = $3->addPointer( DeclarationNode::newPointer( $2, $1 ) ); }
[c0aa336]3282        | '(' variable_abstract_ptr ')' attribute_list_opt
3283                { $$ = $2->addQualifiers( $4 ); }
[4d51835]3284        ;
[51b7345]3285
3286variable_abstract_array:
[4d51835]3287        array_dimension
3288        | '(' variable_abstract_ptr ')' array_dimension
3289                { $$ = $2->addArray( $4 ); }
3290        | '(' variable_abstract_array ')' multi_array_dimension // redundant parenthesis
3291                { $$ = $2->addArray( $4 ); }
3292        | '(' variable_abstract_array ')'                                       // redundant parenthesis
3293                { $$ = $2; }
3294        ;
[51b7345]3295
3296variable_abstract_function:
[c0a33d2]3297        '(' variable_abstract_ptr ')' '(' push parameter_type_list_opt pop ')' // empty parameter list OBSOLESCENT (see 3)
3298                { $$ = $2->addParamList( $6 ); }
[4d51835]3299        | '(' variable_abstract_function ')'                            // redundant parenthesis
3300                { $$ = $2; }
3301        ;
[b87a5ed]3302
[de62360d]3303// This pattern parses a new-style declaration for a parameter variable or function prototype that is either an
3304// identifier or typedef name and allows the C99 array options, which can only appear in a parameter list.
[b87a5ed]3305
[c0aa336]3306cfa_identifier_parameter_declarator_tuple:                              // CFA
3307        cfa_identifier_parameter_declarator_no_tuple
3308        | cfa_abstract_tuple
3309        | type_qualifier_list cfa_abstract_tuple
[4d51835]3310                { $$ = $2->addQualifiers( $1 ); }
3311        ;
[b87a5ed]3312
[c0aa336]3313cfa_identifier_parameter_declarator_no_tuple:                   // CFA
3314        cfa_identifier_parameter_ptr
3315        | cfa_identifier_parameter_array
[4d51835]3316        ;
[b87a5ed]3317
[c0aa336]3318cfa_identifier_parameter_ptr:                                                   // CFA
[d0ffed1]3319                // No SUE declaration in parameter list.
3320        ptrref_operator type_specifier_nobody
[ce8c12f]3321                { $$ = $2->addNewPointer( DeclarationNode::newPointer( 0, $1 ) ); }
[d0ffed1]3322        | type_qualifier_list ptrref_operator type_specifier_nobody
[ce8c12f]3323                { $$ = $3->addNewPointer( DeclarationNode::newPointer( $1, $2 ) ); }
[c0aa336]3324        | ptrref_operator cfa_abstract_function
[ce8c12f]3325                { $$ = $2->addNewPointer( DeclarationNode::newPointer( 0, $1 ) ); }
[c0aa336]3326        | type_qualifier_list ptrref_operator cfa_abstract_function
[ce8c12f]3327                { $$ = $3->addNewPointer( DeclarationNode::newPointer( $1, $2 ) ); }
[c0aa336]3328        | ptrref_operator cfa_identifier_parameter_declarator_tuple
[ce8c12f]3329                { $$ = $2->addNewPointer( DeclarationNode::newPointer( 0, $1 ) ); }
[c0aa336]3330        | type_qualifier_list ptrref_operator cfa_identifier_parameter_declarator_tuple
[ce8c12f]3331                { $$ = $3->addNewPointer( DeclarationNode::newPointer( $1, $2 ) ); }
[4d51835]3332        ;
[b87a5ed]3333
[c0aa336]3334cfa_identifier_parameter_array:                                                 // CFA
[de62360d]3335                // Only the first dimension can be empty or have qualifiers. Empty dimension must be factored out due to
3336                // shift/reduce conflict with new-style empty (void) function return type.
[d0ffed1]3337        '[' ']' type_specifier_nobody
[2871210]3338                { $$ = $3->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); }
[d0ffed1]3339        | cfa_array_parameter_1st_dimension type_specifier_nobody
[4d51835]3340                { $$ = $2->addNewArray( $1 ); }
[d0ffed1]3341        | '[' ']' multi_array_dimension type_specifier_nobody
[2871210]3342                { $$ = $4->addNewArray( $3 )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); }
[d0ffed1]3343        | cfa_array_parameter_1st_dimension multi_array_dimension type_specifier_nobody
[4d51835]3344                { $$ = $3->addNewArray( $2 )->addNewArray( $1 ); }
[d0ffed1]3345        | multi_array_dimension type_specifier_nobody
[4d51835]3346                { $$ = $2->addNewArray( $1 ); }
[9059213]3347
[c0aa336]3348        | '[' ']' cfa_identifier_parameter_ptr
[2871210]3349                { $$ = $3->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); }
[c0aa336]3350        | cfa_array_parameter_1st_dimension cfa_identifier_parameter_ptr
[4d51835]3351                { $$ = $2->addNewArray( $1 ); }
[c0aa336]3352        | '[' ']' multi_array_dimension cfa_identifier_parameter_ptr
[2871210]3353                { $$ = $4->addNewArray( $3 )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); }
[c0aa336]3354        | cfa_array_parameter_1st_dimension multi_array_dimension cfa_identifier_parameter_ptr
[4d51835]3355                { $$ = $3->addNewArray( $2 )->addNewArray( $1 ); }
[c0aa336]3356        | multi_array_dimension cfa_identifier_parameter_ptr
[4d51835]3357                { $$ = $2->addNewArray( $1 ); }
3358        ;
[51b7345]3359
[c0aa336]3360cfa_array_parameter_1st_dimension:
[c0a33d2]3361        '[' push type_qualifier_list '*' pop ']'                        // remaining C99
3362                { $$ = DeclarationNode::newVarArray( $3 ); }
3363        | '[' push type_qualifier_list assignment_expression pop ']'
3364                { $$ = DeclarationNode::newArray( $4, $3, false ); }
3365        | '[' push declaration_qualifier_list assignment_expression pop ']'
[4d51835]3366                // declaration_qualifier_list must be used because of shift/reduce conflict with
3367                // assignment_expression, so a semantic check is necessary to preclude them as a type_qualifier cannot
3368                // appear in this context.
[c0a33d2]3369                { $$ = DeclarationNode::newArray( $4, $3, true ); }
3370        | '[' push declaration_qualifier_list type_qualifier_list assignment_expression pop ']'
3371                { $$ = DeclarationNode::newArray( $5, $4->addQualifiers( $3 ), true ); }
[4d51835]3372        ;
[b87a5ed]3373
[de62360d]3374// This pattern parses a new-style declaration of an abstract variable or function prototype, i.e., there is no
3375// identifier to which the type applies, e.g.:
[c11e31c]3376//
[b87a5ed]3377//              [int] f( int );                         // abstract variable parameter; no parameter name specified
3378//              [int] f( [int] (int) );         // abstract function-prototype parameter; no parameter name specified
[c11e31c]3379//
3380// These rules need LR(3):
3381//
[c0aa336]3382//              cfa_abstract_tuple identifier_or_type_name
[40de461]3383//              '[' cfa_parameter_list ']' identifier_or_type_name '(' cfa_parameter_ellipsis_list_opt ')'
[c11e31c]3384//
3385// since a function return type can be syntactically identical to a tuple type:
3386//
[b87a5ed]3387//              [int, int] t;
3388//              [int, int] f( int );
[c11e31c]3389//
[2871210]3390// Therefore, it is necessary to look at the token after identifier_or_type_name to know when to reduce
[c0aa336]3391// cfa_abstract_tuple. To make this LR(1), several rules have to be flattened (lengthened) to allow the necessary
3392// lookahead. To accomplish this, cfa_abstract_declarator has an entry point without tuple, and tuple declarations are
3393// duplicated when appearing with cfa_function_specifier.
[b87a5ed]3394
[c0aa336]3395cfa_abstract_declarator_tuple:                                                  // CFA
3396        cfa_abstract_tuple
3397        | type_qualifier_list cfa_abstract_tuple
[4d51835]3398                { $$ = $2->addQualifiers( $1 ); }
[c0aa336]3399        | cfa_abstract_declarator_no_tuple
[4d51835]3400        ;
[b87a5ed]3401
[c0aa336]3402cfa_abstract_declarator_no_tuple:                                               // CFA
3403        cfa_abstract_ptr
3404        | cfa_abstract_array
[4d51835]3405        ;
[b87a5ed]3406
[c0aa336]3407cfa_abstract_ptr:                                                                               // CFA
[dd51906]3408        ptrref_operator type_specifier
[ce8c12f]3409                { $$ = $2->addNewPointer( DeclarationNode::newPointer( 0, $1 ) ); }
[dd51906]3410        | type_qualifier_list ptrref_operator type_specifier
[ce8c12f]3411                { $$ = $3->addNewPointer( DeclarationNode::newPointer( $1, $2 ) ); }
[c0aa336]3412        | ptrref_operator cfa_abstract_function
[ce8c12f]3413                { $$ = $2->addNewPointer( DeclarationNode::newPointer( 0, $1 ) ); }
[c0aa336]3414        | type_qualifier_list ptrref_operator cfa_abstract_function
[ce8c12f]3415                { $$ = $3->addNewPointer( DeclarationNode::newPointer( $1, $2 ) ); }
[c0aa336]3416        | ptrref_operator cfa_abstract_declarator_tuple
[ce8c12f]3417                { $$ = $2->addNewPointer( DeclarationNode::newPointer( 0, $1 ) ); }
[c0aa336]3418        | type_qualifier_list ptrref_operator cfa_abstract_declarator_tuple
[ce8c12f]3419                { $$ = $3->addNewPointer( DeclarationNode::newPointer( $1, $2 ) ); }
[4d51835]3420        ;
[b87a5ed]3421
[c0aa336]3422cfa_abstract_array:                                                                             // CFA
[de62360d]3423                // Only the first dimension can be empty. Empty dimension must be factored out due to shift/reduce conflict with
3424                // empty (void) function return type.
[2871210]3425        '[' ']' type_specifier
[2298f728]3426                { $$ = $3->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); }
[2871210]3427        | '[' ']' multi_array_dimension type_specifier
[2298f728]3428                { $$ = $4->addNewArray( $3 )->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); }
[4d51835]3429        | multi_array_dimension type_specifier
3430                { $$ = $2->addNewArray( $1 ); }
[c0aa336]3431        | '[' ']' cfa_abstract_ptr
[2298f728]3432                { $$ = $3->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); }
[c0aa336]3433        | '[' ']' multi_array_dimension cfa_abstract_ptr
[2298f728]3434                { $$ = $4->addNewArray( $3 )->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); }
[c0aa336]3435        | multi_array_dimension cfa_abstract_ptr
[4d51835]3436                { $$ = $2->addNewArray( $1 ); }
3437        ;
[b87a5ed]3438
[c0aa336]3439cfa_abstract_tuple:                                                                             // CFA
[c0a33d2]3440        '[' push cfa_abstract_parameter_list pop ']'
3441                { $$ = DeclarationNode::newTuple( $3 ); }
[35718a9]3442        | '[' push type_specifier_nobody ELLIPSIS pop ']'
[13e8427]3443                { SemanticError( yylloc, "Tuple array currently unimplemented." ); $$ = nullptr; }
[35718a9]3444        | '[' push type_specifier_nobody ELLIPSIS constant_expression pop ']'
[13e8427]3445                { SemanticError( yylloc, "Tuple array currently unimplemented." ); $$ = nullptr; }
[4d51835]3446        ;
[b87a5ed]3447
[c0aa336]3448cfa_abstract_function:                                                                  // CFA
[40de461]3449//      '[' ']' '(' cfa_parameter_ellipsis_list_opt ')'
[1b29996]3450//              { $$ = DeclarationNode::newFunction( nullptr, DeclarationNode::newTuple( nullptr ), $4, nullptr ); }
[40de461]3451        cfa_abstract_tuple '(' push cfa_parameter_ellipsis_list_opt pop ')'
[c0a33d2]3452                { $$ = DeclarationNode::newFunction( nullptr, $1, $4, nullptr ); }
[40de461]3453        | cfa_function_return '(' push cfa_parameter_ellipsis_list_opt pop ')'
[c0a33d2]3454                { $$ = DeclarationNode::newFunction( nullptr, $1, $4, nullptr ); }
[4d51835]3455        ;
[b87a5ed]3456
[de62360d]3457// 1) ISO/IEC 9899:1999 Section 6.7.2(2) : "At least one type specifier shall be given in the declaration specifiers in
3458//    each declaration, and in the specifier-qualifier list in each structure declaration and type name."
[c11e31c]3459//
[de62360d]3460// 2) ISO/IEC 9899:1999 Section 6.11.5(1) : "The placement of a storage-class specifier other than at the beginning of
3461//    the declaration specifiers in a declaration is an obsolescent feature."
[c11e31c]3462//
3463// 3) ISO/IEC 9899:1999 Section 6.11.6(1) : "The use of function declarators with empty parentheses (not
3464//    prototype-format parameter type declarators) is an obsolescent feature."
3465//
[de62360d]3466// 4) ISO/IEC 9899:1999 Section 6.11.7(1) : "The use of function definitions with separate parameter identifier and
3467//    declaration lists (not prototype-format parameter type and identifier declarators) is an obsolescent feature.
[51b7345]3468
[c11e31c]3469//************************* MISCELLANEOUS ********************************
[51b7345]3470
[b87a5ed]3471comma_opt:                                                                                              // redundant comma
[4d51835]3472        // empty
3473        | ','
3474        ;
[51b7345]3475
[994d080]3476default_initialize_opt:
[4d51835]3477        // empty
[58dd019]3478                { $$ = nullptr; }
[4d51835]3479        | '=' assignment_expression
3480                { $$ = $2; }
3481        ;
[51b7345]3482
3483%%
[a1c9ddd]3484
[c11e31c]3485// ----end of grammar----
[51b7345]3486
[c11e31c]3487// Local Variables: //
[b87a5ed]3488// mode: c++ //
[de62360d]3489// tab-width: 4 //
[c11e31c]3490// compile-command: "make install" //
3491// End: //
Note: See TracBrowser for help on using the repository browser.