source: src/Parser/parser.yy@ b64d0f4

Last change on this file since b64d0f4 was b93c544, checked in by Andrew Beach <ajbeach@…>, 23 months ago

Removed casts no longer needed on the result of set_last.

  • Property mode set to 100644
File size: 177.4 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
[04c78215]11// Last Modified By : Peter A. Buhr
[7e13b11]12// Last Modified On : Wed Mar 6 10:51:55 2024
13// Update Count : 6588
[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//
[9380add]28// designation with '=' (use ':' instead)
[c11e31c]29//
[9380add]30// This incompatibility is discussed in detail before the "designation" grammar rule. Most of the syntactic extensions
31// from ANSI90 to ANSI11 C are marked with the comment "C99/C11".
[f9c3100]32
[e16eb460]33// This grammar also has two levels of extensions. The first extensions cover most of the GCC C extensions. All of the
[9380add]34// syntactic extensions for GCC C are marked with the comment "GCC". The second extensions are for Cforall (CFA), which
35// fixes several of C's outstanding problems and extends C with many modern language concepts. All of the syntactic
36// extensions for CFA C are marked with the comment "CFA".
[51b73452]37
38%{
[ec3f9c8]39#define YYDEBUG_LEXER_TEXT( yylval ) // lexer loads this up each time
[b87a5ed]40#define YYDEBUG 1 // get the pretty debugging code to compile
[201aeb9]41#define YYERROR_VERBOSE // more information in syntax errors
[51b73452]42
43#undef __GNUC_MINOR__
44
45#include <cstdio>
[9feb34b]46#include <sstream>
[51b73452]47#include <stack>
[9ed4f94]48using namespace std;
49
[c468150]50#include "DeclarationNode.h" // for DeclarationNode, ...
51#include "ExpressionNode.h" // for ExpressionNode, ...
52#include "InitializerNode.h" // for InitializerNode, ...
53#include "ParserTypes.h"
54#include "StatementNode.h" // for build_...
[984dce6]55#include "TypedefTable.h"
[1db21619]56#include "TypeData.h"
[9ed4f94]57#include "Common/SemanticError.h" // error_str
[513e165]58#include "Common/utility.h" // for maybeMoveBuild, maybeBuild, CodeLo...
[51b73452]59
[ae2f2ae]60// lex uses __null in a boolean context, it's fine.
[0bd46fd]61#ifdef __clang__
[09f34a84]62#pragma GCC diagnostic ignored "-Wparentheses-equality"
[0bd46fd]63#endif
[ae2f2ae]64
[cbaee0d]65extern DeclarationNode * parseTree;
[bb7422a]66extern ast::Linkage::Spec linkage;
[0da3e2c]67extern TypedefTable typedefTable;
68
[bb7422a]69stack<ast::Linkage::Spec> linkageStack;
[7bf7fb9]70
[15697ff]71bool appendStr( string & to, string & from ) {
72 // 1. Multiple strings are concatenated into a single string but not combined internally. The reason is that
[ea0c5e3]73 // "\x12" "3" is treated as 2 characters versus 1 because "escape sequences are converted into single members of
[15697ff]74 // the execution character set just prior to adjacent string literal concatenation" (C11, Section 6.4.5-8). It is
75 // easier to let the C compiler handle this case.
76 //
77 // 2. String encodings are transformed into canonical form (one encoding at start) so the encoding can be found
78 // without searching the string, e.g.: "abc" L"def" L"ghi" => L"abc" "def" "ghi". Multiple encodings must match,
[efc8f3e]79 // e.g., u"a" U"b" L"c" is disallowed.
[15697ff]80
81 if ( from[0] != '"' ) { // encoding ?
82 if ( to[0] != '"' ) { // encoding ?
[ea0c5e3]83 if ( to[0] != from[0] || to[1] != from[1] ) { // different encodings ?
[15697ff]84 yyerror( "non-matching string encodings for string-literal concatenation" );
85 return false; // parse error, must call YYERROR in action
[ea0c5e3]86 } else if ( from[1] == '8' ) {
87 from.erase( 0, 1 ); // remove 2nd encoding
[15697ff]88 } // if
89 } else {
[ea0c5e3]90 if ( from[1] == '8' ) { // move encoding to start
91 to = "u8" + to;
92 from.erase( 0, 1 ); // remove 2nd encoding
93 } else {
94 to = from[0] + to;
95 } // if
[15697ff]96 } // if
97 from.erase( 0, 1 ); // remove 2nd encoding
98 } // if
99 to += " " + from; // concatenated into single string
100 return true;
[7bf7fb9]101} // appendStr
[c0aa336]102
[d8454b9]103DeclarationNode * distAttr( DeclarationNode * typeSpec, DeclarationNode * declList ) {
[4eb3a7c5]104 // Distribute type specifier across all declared variables, e.g., static, const, __attribute__.
[d8454b9]105 assert( declList );
106
[4eb3a7c5]107 // Do not distribute attributes for aggregates because the attributes surrounding the aggregate belong it not the
108 // variables in the declaration list, e.g.,
109 //
110 // struct __attribute__(( aligned(128) )) S { ...
111 // } v1 __attribute__(( aligned(64) )), v2 __attribute__(( aligned(32) )), v3;
112 // struct S v4;
113 //
114 // v1 => 64, v2 =>32, v3 => 128, v2 => 128
115 //
116 // Anonymous aggregates are a special case because there is no aggregate to bind the attribute to; hence it floats
117 // to the declaration list.
118 //
119 // struct __attribute__(( aligned(128) )) /*anonymous */ { ... } v1;
120 //
121 // v1 => 128
122
123 bool copyattr = ! (typeSpec->type && typeSpec->type->kind == TypeData::Aggregate && ! typeSpec->type->aggregate.anon );
124
125 // addType copies the type information for the aggregate instances from typeSpec into cl's aggInst.aggregate.
126 DeclarationNode * cl = (new DeclarationNode)->addType( typeSpec ); // typeSpec IS DELETED!!!
127
[647e2ea]128 // Start at second variable in declaration list and clone the type specifiers for each variable.
[44adf1b]129 for ( DeclarationNode * cur = declList->next ; cur != nullptr; cur = cur->next ) {
[4eb3a7c5]130 cl->cloneBaseType( cur, copyattr ); // cur is modified
[c0aa336]131 } // for
[4eb3a7c5]132
133 // Add first variable in declaration list with hidden type information in aggInst.aggregate, which is used by
134 // extractType to recover the type for the aggregate instances.
135 declList->addType( cl, copyattr ); // cl IS DELETED!!!
[c0aa336]136 return declList;
137} // distAttr
138
139void distExt( DeclarationNode * declaration ) {
140 // distribute EXTENSION across all declarations
[44adf1b]141 for ( DeclarationNode *iter = declaration ; iter != nullptr ; iter = iter->next ) {
[c0aa336]142 iter->set_extension( true );
143 } // for
144} // distExt
[fdca7c6]145
[e07caa2]146void distInl( DeclarationNode * declaration ) {
[5695645]147 // distribute INLINE across all declarations
[44adf1b]148 for ( DeclarationNode *iter = declaration ; iter != nullptr ; iter = iter->next ) {
[e07caa2]149 iter->set_inLine( true );
150 } // for
151} // distInl
152
[4c3ee8d]153void distQual( DeclarationNode * declaration, DeclarationNode * qualifiers ) {
[284da8c]154 // distribute qualifiers across all non-variable declarations in a distribution statemement
[44adf1b]155 for ( DeclarationNode * iter = declaration ; iter != nullptr ; iter = iter->next ) {
[284da8c]156 // SKULLDUGGERY: Distributions are parsed inside out, so qualifiers are added to declarations inside out. Since
157 // addQualifiers appends to the back of the list, the forall clauses are in the wrong order (right to left). To
158 // get the qualifiers in the correct order and still use addQualifiers (otherwise, 90% of addQualifiers has to
159 // be copied to add to front), the appropriate forall pointers are interchanged before calling addQualifiers.
160 DeclarationNode * clone = qualifiers->clone();
161 if ( qualifiers->type ) { // forall clause ? (handles SC)
162 if ( iter->type->kind == TypeData::Aggregate ) { // struct/union ?
163 swap( clone->type->forall, iter->type->aggregate.params );
164 iter->addQualifiers( clone );
165 } else if ( iter->type->kind == TypeData::AggregateInst && iter->type->aggInst.aggregate->aggregate.body ) { // struct/union ?
166 // Create temporary node to hold aggregate, call addQualifiers as above, then put nodes back together.
167 DeclarationNode newnode;
168 swap( newnode.type, iter->type->aggInst.aggregate );
169 swap( clone->type->forall, newnode.type->aggregate.params );
170 newnode.addQualifiers( clone );
171 swap( newnode.type, iter->type->aggInst.aggregate );
172 } else if ( iter->type->kind == TypeData::Function ) { // routines ?
173 swap( clone->type->forall, iter->type->forall );
174 iter->addQualifiers( clone );
175 } // if
176 } else { // just SC qualifiers
177 iter->addQualifiers( clone );
178 } // if
[4c3ee8d]179 } // for
[284da8c]180 delete qualifiers;
181} // distQual
[4c3ee8d]182
[c38ae92]183// There is an ambiguity for inline generic-routine return-types and generic routines.
184// forall( otype T ) struct S { int i; } bar( T ) {}
185// Does the forall bind to the struct or the routine, and how would it be possible to explicitly specify the binding.
186// forall( otype T ) struct S { int T; } forall( otype W ) bar( W ) {}
[7fdb94e1]187// Currently, the forall is associated with the routine, and the generic type has to be separately defined:
188// forall( otype T ) struct S { int T; };
189// forall( otype W ) bar( W ) {}
[c38ae92]190
191void rebindForall( DeclarationNode * declSpec, DeclarationNode * funcDecl ) {
[7fdb94e1]192 if ( declSpec->type->kind == TypeData::Aggregate ) { // ignore aggregate definition
[c38ae92]193 funcDecl->type->forall = declSpec->type->aggregate.params; // move forall from aggregate to function type
194 declSpec->type->aggregate.params = nullptr;
195 } // if
196} // rebindForall
197
[60a8062]198string * build_postfix_name( string * name ) {
199 *name = string("__postfix_func_") + *name;
200 return name;
[dc7db63]201} // build_postfix_name
202
[f7e4db27]203DeclarationNode * fieldDecl( DeclarationNode * typeSpec, DeclarationNode * fieldList ) {
204 if ( ! fieldList ) { // field declarator ?
[553772b]205 if ( ! ( typeSpec->type && (typeSpec->type->kind == TypeData::Aggregate || typeSpec->type->kind == TypeData::Enum) ) ) {
[f7e4db27]206 stringstream ss;
[d8454b9]207 // printf( "fieldDecl1 typeSpec %p\n", typeSpec ); typeSpec->type->print( std::cout );
[f7e4db27]208 SemanticWarning( yylloc, Warning::SuperfluousDecl, ss.str().c_str() );
209 return nullptr;
210 } // if
[d8454b9]211 // printf( "fieldDecl2 typeSpec %p\n", typeSpec ); typeSpec->type->print( std::cout );
[f7e4db27]212 fieldList = DeclarationNode::newName( nullptr );
213 } // if
[d8454b9]214
215 // printf( "fieldDecl3 typeSpec %p\n", typeSpec ); typeSpec->print( std::cout, 0 );
[4eb3a7c5]216 DeclarationNode * temp = distAttr( typeSpec, fieldList ); // mark all fields in list
[d8454b9]217 // printf( "fieldDecl4 temp %p\n", temp ); temp->print( std::cout, 0 );
218 return temp;
[f7e4db27]219} // fieldDecl
220
[bb7422a]221#define NEW_ZERO new ExpressionNode( build_constantInteger( yylloc, *new string( "0" ) ) )
222#define NEW_ONE new ExpressionNode( build_constantInteger( yylloc, *new string( "1" ) ) )
[52be5948]223#define UPDOWN( compop, left, right ) (compop == OperKinds::LThan || compop == OperKinds::LEThan ? left : right)
[55266c7]224#define MISSING_ANON_FIELD "syntax error, missing loop fields with an anonymous loop index is meaningless as loop index is unavailable in loop body."
225#define MISSING_LOW "syntax error, missing low value for up-to range so index is uninitialized."
226#define MISSING_HIGH "syntax error, missing high value for down-to range so index is uninitialized."
[d78c238]227
[1cdc052]228static ForCtrl * makeForCtrl(
[bb7422a]229 const CodeLocation & location,
[1cdc052]230 DeclarationNode * init,
231 enum OperKinds compop,
232 ExpressionNode * comp,
233 ExpressionNode * inc ) {
234 // Wrap both comp/inc if they are non-null.
[bb7422a]235 if ( comp ) comp = new ExpressionNode( build_binary_val( location,
[1cdc052]236 compop,
[bb7422a]237 new ExpressionNode( build_varref( location, new string( *init->name ) ) ),
[1cdc052]238 comp ) );
[bb7422a]239 if ( inc ) inc = new ExpressionNode( build_binary_val( location,
[1cdc052]240 // choose += or -= for upto/downto
241 compop == OperKinds::LThan || compop == OperKinds::LEThan ? OperKinds::PlusAssn : OperKinds::MinusAssn,
[bb7422a]242 new ExpressionNode( build_varref( location, new string( *init->name ) ) ),
[1cdc052]243 inc ) );
244 // The StatementNode call frees init->name, it must happen later.
245 return new ForCtrl( new StatementNode( init ), comp, inc );
246}
247
[bb7422a]248ForCtrl * forCtrl( const CodeLocation & location, DeclarationNode * index, ExpressionNode * start, enum OperKinds compop, ExpressionNode * comp, ExpressionNode * inc ) {
[d78c238]249 if ( index->initializer ) {
[55266c7]250 SemanticError( yylloc, "syntax error, direct initialization disallowed. Use instead: type var; initialization ~ comparison ~ increment." );
[d78c238]251 } // if
252 if ( index->next ) {
[55266c7]253 SemanticError( yylloc, "syntax error, multiple loop indexes disallowed in for-loop declaration." );
[d78c238]254 } // if
[1cdc052]255 DeclarationNode * initDecl = index->addInitializer( new InitializerNode( start ) );
[bb7422a]256 return makeForCtrl( location, initDecl, compop, comp, inc );
[d78c238]257} // forCtrl
258
[bb7422a]259ForCtrl * forCtrl( const CodeLocation & location, ExpressionNode * type, string * index, ExpressionNode * start, enum OperKinds compop, ExpressionNode * comp, ExpressionNode * inc ) {
260 ast::ConstantExpr * constant = dynamic_cast<ast::ConstantExpr *>(type->expr.get());
261 if ( constant && (constant->rep == "0" || constant->rep == "1") ) {
262 type = new ExpressionNode( new ast::CastExpr( location, maybeMoveBuild(type), new ast::BasicType( ast::BasicType::SignedInt ) ) );
[0982a05]263 } // if
[1cdc052]264 DeclarationNode * initDecl = distAttr(
265 DeclarationNode::newTypeof( type, true ),
266 DeclarationNode::newName( index )->addInitializer( new InitializerNode( start ) )
267 );
[bb7422a]268 return makeForCtrl( location, initDecl, compop, comp, inc );
[f271bdd]269} // forCtrl
270
[bb7422a]271ForCtrl * forCtrl( const CodeLocation & location, ExpressionNode * type, ExpressionNode * index, ExpressionNode * start, enum OperKinds compop, ExpressionNode * comp, ExpressionNode * inc ) {
272 if ( auto identifier = dynamic_cast<ast::NameExpr *>(index->expr.get()) ) {
273 return forCtrl( location, type, new string( identifier->name ), start, compop, comp, inc );
274 } else if ( auto commaExpr = dynamic_cast<ast::CommaExpr *>( index->expr.get() ) ) {
275 if ( auto identifier = commaExpr->arg1.as<ast::NameExpr>() ) {
276 return forCtrl( location, type, new string( identifier->name ), start, compop, comp, inc );
[6d01d89]277 } else {
[55266c7]278 SemanticError( yylloc, "syntax error, loop-index name missing. Expression disallowed." ); return nullptr;
[6d01d89]279 } // if
[f1aeede]280 } else {
[b1f2007d]281 SemanticError( yylloc, "syntax error, loop-index name missing. Expression disallowed." ); return nullptr;
[f1aeede]282 } // if
[f271bdd]283} // forCtrl
284
[996c8ed]285static void IdentifierBeforeIdentifier( string & identifier1, string & identifier2, const char * kind ) {
[b1f2007d]286 SemanticError( yylloc, "syntax error, adjacent identifiers \"%s\" and \"%s\" are not meaningful in an %s.\n"
287 "Possible cause is misspelled type name or missing generic parameter.",
288 identifier1.c_str(), identifier2.c_str(), kind );
[996c8ed]289} // IdentifierBeforeIdentifier
290
291static void IdentifierBeforeType( string & identifier, const char * kind ) {
[b1f2007d]292 SemanticError( yylloc, "syntax error, identifier \"%s\" cannot appear before a %s.\n"
293 "Possible cause is misspelled storage/CV qualifier, misspelled typename, or missing generic parameter.",
294 identifier.c_str(), kind );
[996c8ed]295} // IdentifierBeforeType
296
[24711a3]297bool forall = false; // aggregate have one or more forall qualifiers ?
[d48e529]298
[201aeb9]299// https://www.gnu.org/software/bison/manual/bison.html#Location-Type
300#define YYLLOC_DEFAULT(Cur, Rhs, N) \
301if ( N ) { \
302 (Cur).first_line = YYRHSLOC( Rhs, 1 ).first_line; \
303 (Cur).first_column = YYRHSLOC( Rhs, 1 ).first_column; \
304 (Cur).last_line = YYRHSLOC( Rhs, N ).last_line; \
305 (Cur).last_column = YYRHSLOC( Rhs, N ).last_column; \
306 (Cur).filename = YYRHSLOC( Rhs, 1 ).filename; \
307} else { \
308 (Cur).first_line = (Cur).last_line = YYRHSLOC( Rhs, 0 ).last_line; \
309 (Cur).first_column = (Cur).last_column = YYRHSLOC( Rhs, 0 ).last_column; \
310 (Cur).filename = YYRHSLOC( Rhs, 0 ).filename; \
311}
[51b73452]312%}
313
[15697ff]314%define parse.error verbose
315
[201aeb9]316// Types declaration for productions
[7cf8006]317
[0982a05]318%union {
[6cef439]319 // A raw token can be used.
[a67b60e]320 Token tok;
[6cef439]321
322 // The general node types hold some generic node or list of nodes.
[a67b60e]323 DeclarationNode * decl;
[6cef439]324 InitializerNode * init;
325 ExpressionNode * expr;
[32d6fdc]326 StatementNode * stmt;
[6611177]327 ClauseNode * clause;
[6cef439]328 TypeData * type;
329
330 // Special "nodes" containing compound information.
[473d1da0]331 CondCtl * ifctl;
[32d6fdc]332 ForCtrl * forctl;
333 LabelNode * labels;
[6cef439]334
335 // Various flags and single values that become fields later.
336 ast::AggregateDecl::Aggregate aggKey;
337 ast::TypeDecl::Kind tclass;
[32d6fdc]338 OperKinds oper;
339 bool is_volatile;
340 EnumHiding enum_hiding;
341 ast::ExceptionKind except_kind;
[6cef439]342 // String passes ownership with it.
343 std::string * str;
344
345 // Narrower node types are used to avoid constant unwrapping.
346 ast::WaitForStmt * wfs;
347 ast::WaitUntilStmt::ClauseNode * wucn;
[bb7422a]348 ast::GenericExpr * genexpr;
[a67b60e]349}
350
[bb7422a]351// ************************ TERMINAL TOKENS ********************************
[51b73452]352
[c11e31c]353// keywords
[51b73452]354%token TYPEDEF
[a7c90d4]355%token EXTERN STATIC AUTO REGISTER
[59c7e3e]356%token THREADLOCALGCC THREADLOCALC11 // GCC, C11
[a7c90d4]357%token INLINE FORTRAN // C99, extension ISO/IEC 9899:1999 Section J.5.9(1)
358%token NORETURN // C11
[51b73452]359%token CONST VOLATILE
[b87a5ed]360%token RESTRICT // C99
[a7c90d4]361%token ATOMIC // C11
[1f652a7]362%token FORALL MUTEX VIRTUAL VTABLE COERCE // CFA
[72457b6]363%token VOID CHAR SHORT INT LONG FLOAT DOUBLE SIGNED UNSIGNED
[b87a5ed]364%token BOOL COMPLEX IMAGINARY // C99
[f1da02c]365%token INT128 UINT128 uuFLOAT80 uuFLOAT128 // GCC
[e15853c]366%token uFLOAT16 uFLOAT32 uFLOAT32X uFLOAT64 uFLOAT64X uFLOAT128 // GCC
[15f769c]367%token DECIMAL32 DECIMAL64 DECIMAL128 // GCC
[72457b6]368%token ZERO_T ONE_T // CFA
[59c7e3e]369%token SIZEOF TYPEOF VA_LIST VA_ARG AUTO_TYPE // GCC
[1f652a7]370%token OFFSETOF BASETYPEOF TYPEID // CFA
[51b73452]371%token ENUM STRUCT UNION
[c27fb59]372%token EXCEPTION // CFA
[553772b]373%token GENERATOR COROUTINE MONITOR THREAD // CFA
[a7c90d4]374%token OTYPE FTYPE DTYPE TTYPE TRAIT // CFA
[25744d2]375// %token RESUME // CFA
[1f652a7]376%token LABEL // GCC
[25744d2]377%token SUSPEND // CFA
[b87a5ed]378%token ATTRIBUTE EXTENSION // GCC
[51b73452]379%token IF ELSE SWITCH CASE DEFAULT DO WHILE FOR BREAK CONTINUE GOTO RETURN
[466787a]380%token CHOOSE FALLTHRU FALLTHROUGH WITH WHEN WAITFOR WAITUNTIL // CFA
[11ab0b4a]381%token CORUN COFOR
[4744074]382%token DISABLE ENABLE TRY THROW THROWRESUME AT // CFA
[b87a5ed]383%token ASM // C99, extension ISO/IEC 9899:1999 Section J.5.10(1)
[a7c90d4]384%token ALIGNAS ALIGNOF GENERIC STATICASSERT // C11
[51b73452]385
[c11e31c]386// names and constants: lexer differentiates between identifier and typedef names
[9fd9d015]387%token<tok> IDENTIFIER TYPEDIMname TYPEDEFname TYPEGENname
388%token<tok> TIMEOUT WAND WOR CATCH RECOVER CATCHRESUME FIXUP FINALLY // CFA
[9fb1367]389%token<tok> INTEGERconstant CHARACTERconstant STRINGliteral
[61fc4f6]390%token<tok> DIRECTIVE
[1b29996]391// Floating point constant is broken into three kinds of tokens because of the ambiguity with tuple indexing and
392// overloading constants 0/1, e.g., x.1 is lexed as (x)(.1), where (.1) is a factional constant, but is semantically
393// converted into the tuple index (.)(1). e.g., 3.x
[930f69e]394%token<tok> FLOATING_DECIMALconstant FLOATING_FRACTIONconstant FLOATINGconstant
[51b73452]395
[c11e31c]396// multi-character operators
[b87a5ed]397%token ARROW // ->
398%token ICR DECR // ++ --
399%token LS RS // << >>
400%token LE GE EQ NE // <= >= == !=
401%token ANDAND OROR // && ||
[647e2ea]402%token ATTR ELLIPSIS // @@ ...
[b87a5ed]403
[e5f2a67]404%token EXPassign MULTassign DIVassign MODassign // \= *= /= %=
[b87a5ed]405%token PLUSassign MINUSassign // += -=
406%token LSassign RSassign // <<= >>=
407%token ANDassign ERassign ORassign // &= ^= |=
[51b73452]408
[d69f4bb4]409%token ErangeUpEq ErangeDown ErangeDownEq // ~= -~ -~=
[e7aed49]410%token ATassign // @=
[097e2b0]411
[e16eb460]412%type<tok> identifier identifier_at identifier_or_type_name attr_name
[5b2edbc]413%type<tok> quasi_keyword
[32d6fdc]414%type<expr> string_literal
[ab57786]415%type<str> string_literal_list
[51b73452]416
[71a422a]417%type<enum_hiding> hide_opt visible_hide_opt
[7cf8006]418
[c11e31c]419// expressions
[32d6fdc]420%type<expr> constant
[71a422a]421%type<expr> tuple tuple_expression_list
[32d6fdc]422%type<oper> ptrref_operator unary_operator assignment_operator simple_assignment_operator compound_assignment_operator
423%type<expr> primary_expression postfix_expression unary_expression
[71a422a]424%type<expr> cast_expression_list cast_expression exponential_expression multiplicative_expression additive_expression
425%type<expr> shift_expression relational_expression equality_expression
[32d6fdc]426%type<expr> AND_expression exclusive_OR_expression inclusive_OR_expression
427%type<expr> logical_AND_expression logical_OR_expression
428%type<expr> conditional_expression constant_expression assignment_expression assignment_expression_opt
[71a422a]429%type<expr> comma_expression comma_expression_opt
430%type<expr> argument_expression_list_opt argument_expression_list argument_expression default_initializer_opt
[473d1da0]431%type<ifctl> conditional_declaration
[71a422a]432%type<forctl> for_control_expression for_control_expression_list
[32d6fdc]433%type<oper> upupeq updown updowneq downupdowneq
434%type<expr> subrange
[c0aa336]435%type<decl> asm_name_opt
[71a422a]436%type<expr> asm_operands_opt asm_operands_list asm_operand
[32d6fdc]437%type<labels> label_list
438%type<expr> asm_clobbers_list_opt
439%type<is_volatile> asm_volatile_opt
440%type<expr> handler_predicate_opt
[67d4e37]441%type<genexpr> generic_association generic_assoc_list
[51b73452]442
[c11e31c]443// statements
[71a422a]444%type<stmt> statement labeled_statement compound_statement
[32d6fdc]445%type<stmt> statement_decl statement_decl_list statement_list_nodecl
[647e2ea]446%type<stmt> selection_statement
[71a422a]447%type<clause> switch_clause_list_opt switch_clause_list
[32d6fdc]448%type<expr> case_value
[71a422a]449%type<clause> case_clause case_value_list case_label case_label_list
[32d6fdc]450%type<stmt> iteration_statement jump_statement
[71a422a]451%type<stmt> expression_statement asm_statement
[32d6fdc]452%type<stmt> with_statement
453%type<expr> with_clause_opt
[11ab0b4a]454%type<stmt> corun_statement cofor_statement
[32d6fdc]455%type<stmt> exception_statement
[6611177]456%type<clause> handler_clause finally_clause
[32d6fdc]457%type<except_kind> handler_key
458%type<stmt> mutex_statement
459%type<expr> when_clause when_clause_opt waitfor waituntil timeout
[71a422a]460%type<stmt> waitfor_statement waituntil_statement
[c86b08d]461%type<wfs> wor_waitfor_clause
[6e1e2d0]462%type<wucn> waituntil_clause wand_waituntil_clause wor_waituntil_clause
[51b73452]463
[c11e31c]464// declarations
[c0aa336]465%type<decl> abstract_declarator abstract_ptr abstract_array abstract_function array_dimension multi_array_dimension
[59c7e3e]466%type<decl> abstract_parameter_declarator_opt abstract_parameter_declarator abstract_parameter_ptr abstract_parameter_array abstract_parameter_function array_parameter_dimension array_parameter_1st_dimension
[c0aa336]467%type<decl> abstract_parameter_declaration
[51b73452]468
[e307e12]469%type<aggKey> aggregate_key aggregate_data aggregate_control
[d0ffed1]470%type<decl> aggregate_type aggregate_type_nobody
[51b73452]471
[9997fee]472%type<decl> assertion assertion_list assertion_list_opt
[51b73452]473
[32d6fdc]474%type<expr> bit_subrange_size_opt bit_subrange_size
[51b73452]475
[84d58c5]476%type<decl> basic_declaration_specifier basic_type_name basic_type_specifier direct_type indirect_type
[6cef439]477%type<type> basic_type_name_type
478%type<type> vtable vtable_opt default_opt
[51b73452]479
[4040425]480%type<decl> trait_declaration trait_declaration_list trait_declaring_list trait_specifier
[51b73452]481
482%type<decl> declaration declaration_list declaration_list_opt declaration_qualifier_list
[d0ffed1]483%type<decl> declaration_specifier declaration_specifier_nobody declarator declaring_list
[51b73452]484
[d0ffed1]485%type<decl> elaborated_type elaborated_type_nobody
[51b73452]486
[d0ffed1]487%type<decl> enumerator_list enum_type enum_type_nobody
[32d6fdc]488%type<init> enumerator_value_opt
[51b73452]489
[3d56d15b]490%type<decl> external_definition external_definition_list external_definition_list_opt
491
492%type<decl> exception_declaration
[51b73452]493
[e07caa2]494%type<decl> field_declaration_list_opt field_declaration field_declaring_list_opt field_declarator field_abstract_list_opt field_abstract
[32d6fdc]495%type<expr> field field_name_list field_name fraction_constants_opt
[51b73452]496
[4d51835]497%type<decl> external_function_definition function_definition function_array function_declarator function_no_ptr function_ptr
[51b73452]498
[d3bc0ad]499%type<decl> identifier_parameter_declarator identifier_parameter_ptr identifier_parameter_array identifier_parameter_function
500%type<decl> identifier_list
[51b73452]501
[c0aa336]502%type<decl> cfa_abstract_array cfa_abstract_declarator_no_tuple cfa_abstract_declarator_tuple
503%type<decl> cfa_abstract_function cfa_abstract_parameter_declaration cfa_abstract_parameter_list
504%type<decl> cfa_abstract_ptr cfa_abstract_tuple
[51b73452]505
[c0aa336]506%type<decl> cfa_array_parameter_1st_dimension
[51b73452]507
[679e644]508%type<decl> cfa_trait_declaring_list cfa_declaration cfa_field_declaring_list cfa_field_abstract_list
[c0aa336]509%type<decl> cfa_function_declaration cfa_function_return cfa_function_specifier
[51b73452]510
[c0aa336]511%type<decl> cfa_identifier_parameter_array cfa_identifier_parameter_declarator_no_tuple
512%type<decl> cfa_identifier_parameter_declarator_tuple cfa_identifier_parameter_ptr
[51b73452]513
[647e2ea]514%type<decl> cfa_parameter_declaration cfa_parameter_list cfa_parameter_list_ellipsis_opt
[51b73452]515
[c0aa336]516%type<decl> cfa_typedef_declaration cfa_variable_declaration cfa_variable_specifier
[51b73452]517
[b9be000b]518%type<decl> c_declaration static_assert
[c0aa336]519%type<decl> KR_function_declarator KR_function_no_ptr KR_function_ptr KR_function_array
[35718a9]520%type<decl> KR_parameter_list KR_parameter_list_opt
[51b73452]521
[647e2ea]522%type<decl> parameter_declaration parameter_list parameter_list_ellipsis_opt
[51b73452]523
[2871210]524%type<decl> paren_identifier paren_type
[51b73452]525
[0da3e2c]526%type<decl> storage_class storage_class_list
[51b73452]527
[d0ffed1]528%type<decl> sue_declaration_specifier sue_declaration_specifier_nobody sue_type_specifier sue_type_specifier_nobody
[51b73452]529
[5a51798]530%type<tclass> type_class new_type_class
[51b73452]531%type<decl> type_declarator type_declarator_name type_declaring_list
532
[6cef439]533%type<decl> type_declaration_specifier type_type_specifier
534%type<type> type_name typegen_name
[f9c3100]535%type<decl> typedef_name typedef_declaration typedef_expression
[c0aa336]536
[1f771fc]537%type<decl> variable_type_redeclarator variable_type_ptr variable_type_array variable_type_function
538%type<decl> general_function_declarator function_type_redeclarator function_type_array function_type_no_ptr function_type_ptr
[c0aa336]539
540%type<decl> type_parameter_redeclarator type_parameter_ptr type_parameter_array type_parameter_function
[51b73452]541
[84d58c5]542%type<decl> type type_no_function
543%type<decl> type_parameter type_parameter_list type_initializer_opt
[51b73452]544
[647e2ea]545%type<expr> type_parameters_opt type_list array_type_list // array_dimension_list
[51b73452]546
[6cef439]547%type<decl> type_qualifier forall type_qualifier_list_opt type_qualifier_list
548%type<type> type_qualifier_name
[f9c3100]549%type<decl> type_specifier type_specifier_nobody
[51b73452]550
[c0aa336]551%type<decl> variable_declarator variable_ptr variable_array variable_function
552%type<decl> variable_abstract_declarator variable_abstract_ptr variable_abstract_array variable_abstract_function
[51b73452]553
[f9c3100]554%type<decl> attribute_list_opt attribute_list attribute attribute_name_list attribute_name
[1db21619]555
[c11e31c]556// initializers
[32d6fdc]557%type<init> initializer initializer_list_opt initializer_opt
[51b73452]558
[c11e31c]559// designators
[32d6fdc]560%type<expr> designator designator_list designation
[51b73452]561
562
[65d6de4]563// Handle shift/reduce conflict for dangling else by shifting the ELSE token. For example, this string is ambiguous:
564// .---------. matches IF '(' comma_expression ')' statement . (reduce)
565// if ( C ) S1 else S2
566// `-----------------' matches IF '(' comma_expression ')' statement . (shift) ELSE statement */
[5b2edbc]567// Similar issues exit with the waitfor statement.
[51b73452]568
[9fd9d015]569// Order of these lines matters (low-to-high precedence). THEN is left associative over WAND/WOR/TIMEOUT/ELSE, WAND/WOR
570// is left associative over TIMEOUT/ELSE, and TIMEOUT is left associative over ELSE.
[9fb1367]571%precedence THEN // rule precedence for IF/WAITFOR statement
[9fd9d015]572%precedence ANDAND // token precedence for start of WAND in WAITFOR statement
573%precedence WAND // token precedence for start of WAND in WAITFOR statement
574%precedence OROR // token precedence for start of WOR in WAITFOR statement
[9fb1367]575%precedence WOR // token precedence for start of WOR in WAITFOR statement
576%precedence TIMEOUT // token precedence for start of TIMEOUT in WAITFOR statement
577%precedence CATCH // token precedence for start of TIMEOUT in WAITFOR statement
578%precedence RECOVER // token precedence for start of TIMEOUT in WAITFOR statement
579%precedence CATCHRESUME // token precedence for start of TIMEOUT in WAITFOR statement
580%precedence FIXUP // token precedence for start of TIMEOUT in WAITFOR statement
581%precedence FINALLY // token precedence for start of TIMEOUT in WAITFOR statement
582%precedence ELSE // token precedence for start of else clause in IF/WAITFOR statement
583
[51b73452]584
[65d6de4]585// Handle shift/reduce conflict for generic type by shifting the '(' token. For example, this string is ambiguous:
586// forall( otype T ) struct Foo { T v; };
587// .-----. matches pointer to function returning a generic (which is impossible without a type)
588// Foo ( *fp )( int );
589// `---' matches start of TYPEGENname '('
[fc20514]590// must be:
[a16a7ec]591// Foo( int ) ( *fp )( int );
[fc20514]592// The same problem occurs here:
593// forall( otype T ) struct Foo { T v; } ( *fp )( int );
594// must be:
595// forall( otype T ) struct Foo { T v; } ( int ) ( *fp )( int );
[65d6de4]596
597// Order of these lines matters (low-to-high precedence).
598%precedence TYPEGENname
[284da8c]599%precedence '}'
[65d6de4]600%precedence '('
601
[c786e1d]602// %precedence RESUME
603// %precedence '{'
604// %precedence ')'
605
[f38e7d7]606%locations // support location tracking for error messages
[930f69e]607
[b87a5ed]608%start translation_unit // parse-tree root
[51b73452]609
610%%
[e1d66c84]611// ************************ Namespace Management ********************************
[c11e31c]612
[3d26610]613// The C grammar is not context free because it relies on the distinct terminal symbols "identifier" and "TYPEDEFname",
614// which are lexically identical.
[c11e31c]615//
[3d26610]616// typedef int foo; // identifier foo must now be scanned as TYPEDEFname
617// foo f; // to allow it to appear in this context
[c11e31c]618//
[3d26610]619// While it may be possible to write a purely context-free grammar, such a grammar would obscure the relationship
620// between syntactic and semantic constructs. Cforall compounds this problem by introducing type names local to the
621// scope of a declaration (for instance, those introduced through "forall" qualifiers), and by introducing "type
622// generators" -- parameterized types. This latter type name creates a third class of identifiers, "TYPEGENname", which
623// must be distinguished by the lexical scanner.
[c11e31c]624//
[3d26610]625// Since the scanner cannot distinguish among the different classes of identifiers without some context information,
626// there is a type table (typedefTable), which holds type names and identifiers that override type names, for each named
627// scope. During parsing, semantic actions update the type table by adding new identifiers in the current scope. For
628// each context that introduces a name scope, a new level is created in the type table and that level is popped on
629// exiting the scope. Since type names can be local to a particular declaration, each declaration is itself a scope.
630// This requires distinguishing between type names that are local to the current declaration scope and those that
631// persist past the end of the declaration (i.e., names defined in "typedef" or "otype" declarations).
[c11e31c]632//
[3d26610]633// The non-terminals "push" and "pop" denote the opening and closing of named scopes. Every push has a matching pop in
634// the production rule. There are multiple lists of declarations, where each declaration is a named scope, so pop/push
635// around the list separator.
636//
[71a422a]637// XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
[3d26610]638// push pop push pop
[51b73452]639
640push:
[ab57786]641 { typedefTable.enterScope(); }
[4d51835]642 ;
[51b73452]643
644pop:
[ab57786]645 { typedefTable.leaveScope(); }
[4d51835]646 ;
[51b73452]647
[e1d66c84]648// ************************ CONSTANTS ********************************
[51b73452]649
650constant:
[de62360d]651 // ENUMERATIONconstant is not included here; it is treated as a variable with type "enumeration constant".
[bb7422a]652 INTEGERconstant { $$ = new ExpressionNode( build_constantInteger( yylloc, *$1 ) ); }
653 | FLOATING_DECIMALconstant { $$ = new ExpressionNode( build_constantFloat( yylloc, *$1 ) ); }
654 | FLOATING_FRACTIONconstant { $$ = new ExpressionNode( build_constantFloat( yylloc, *$1 ) ); }
655 | FLOATINGconstant { $$ = new ExpressionNode( build_constantFloat( yylloc, *$1 ) ); }
656 | CHARACTERconstant { $$ = new ExpressionNode( build_constantChar( yylloc, *$1 ) ); }
[4d51835]657 ;
[51b73452]658
[5b2edbc]659quasi_keyword: // CFA
660 TIMEOUT
[9fd9d015]661 | WAND
[5b2edbc]662 | WOR
[9fb1367]663 | CATCH
664 | RECOVER
665 | CATCHRESUME
666 | FIXUP
667 | FINALLY
[5b2edbc]668 ;
669
[033ff37]670identifier:
[4d51835]671 IDENTIFIER
[5b2edbc]672 | quasi_keyword
[e16eb460]673 ;
674
675identifier_at:
676 identifier
[679e644]677 | '@' // CFA
678 { Token tok = { new string( DeclarationNode::anonymous.newName() ), yylval.tok.loc }; $$ = tok; }
[4d51835]679 ;
[51b73452]680
[ab57786]681string_literal:
[32d6fdc]682 string_literal_list { $$ = new ExpressionNode( build_constantStr( yylloc, *$1 ) ); }
[ab57786]683 ;
684
[b87a5ed]685string_literal_list: // juxtaposed strings are concatenated
[ab57786]686 STRINGliteral { $$ = $1; } // conversion from tok to str
[7bf7fb9]687 | string_literal_list STRINGliteral
688 {
[15697ff]689 if ( ! appendStr( *$1, *$2 ) ) YYERROR; // append 2nd juxtaposed string to 1st
[7bf7fb9]690 delete $2; // allocated by lexer
[ab57786]691 $$ = $1; // conversion from tok to str
[7bf7fb9]692 }
[4d51835]693 ;
[51b73452]694
[e1d66c84]695// ************************ EXPRESSIONS ********************************
[51b73452]696
697primary_expression:
[4d51835]698 IDENTIFIER // typedef name cannot be used as a variable name
[bb7422a]699 { $$ = new ExpressionNode( build_varref( yylloc, $1 ) ); }
[5b2edbc]700 | quasi_keyword
[bb7422a]701 { $$ = new ExpressionNode( build_varref( yylloc, $1 ) ); }
[6e50a6b]702 | TYPEDIMname // CFA, generic length argument
[bb7422a]703 { $$ = new ExpressionNode( build_dimensionref( yylloc, $1 ) ); }
[1b29996]704 | tuple
[4d51835]705 | '(' comma_expression ')'
706 { $$ = $2; }
707 | '(' compound_statement ')' // GCC, lambda expression
[bb7422a]708 { $$ = new ExpressionNode( new ast::StmtExpr( yylloc, dynamic_cast<ast::CompoundStmt *>( maybeMoveBuild( $2 ) ) ) ); }
[033ff37]709 | type_name '.' identifier // CFA, nested type
[6cef439]710 { $$ = new ExpressionNode( build_qualified_expr( yylloc, DeclarationNode::newFromTypeData( $1 ), build_varref( yylloc, $3 ) ) ); }
[679e644]711 | type_name '.' '[' field_name_list ']' // CFA, nested type / tuple field selector
[203c667]712 { SemanticError( yylloc, "Qualified name is currently unimplemented." ); $$ = nullptr; }
[24c3b67]713 | GENERIC '(' assignment_expression ',' generic_assoc_list ')' // C11
[d807ca28]714 {
715 // add the missing control expression to the GenericExpr and return it
[702e826]716 $5->control = maybeMoveBuild( $3 );
[d807ca28]717 $$ = new ExpressionNode( $5 );
718 }
[c786e1d]719 // | RESUME '(' comma_expression ')'
720 // { SemanticError( yylloc, "Resume expression is currently unimplemented." ); $$ = nullptr; }
721 // | RESUME '(' comma_expression ')' compound_statement
722 // { SemanticError( yylloc, "Resume expression is currently unimplemented." ); $$ = nullptr; }
[65ef0cd]723 | IDENTIFIER IDENTIFIER // invalid syntax rule
[b1f2007d]724 { IdentifierBeforeIdentifier( *$1.str, *$2.str, "expression" ); $$ = nullptr; }
[65ef0cd]725 | IDENTIFIER type_qualifier // invalid syntax rule
[996c8ed]726 { IdentifierBeforeType( *$1.str, "type qualifier" ); $$ = nullptr; }
[65ef0cd]727 | IDENTIFIER storage_class // invalid syntax rule
[996c8ed]728 { IdentifierBeforeType( *$1.str, "storage class" ); $$ = nullptr; }
[65ef0cd]729 | IDENTIFIER basic_type_name // invalid syntax rule
[996c8ed]730 { IdentifierBeforeType( *$1.str, "type" ); $$ = nullptr; }
[65ef0cd]731 | IDENTIFIER TYPEDEFname // invalid syntax rule
[996c8ed]732 { IdentifierBeforeType( *$1.str, "type" ); $$ = nullptr; }
[65ef0cd]733 | IDENTIFIER TYPEGENname // invalid syntax rule
[996c8ed]734 { IdentifierBeforeType( *$1.str, "type" ); $$ = nullptr; }
[24c3b67]735 ;
736
737generic_assoc_list: // C11
[d807ca28]738 generic_association
[24c3b67]739 | generic_assoc_list ',' generic_association
[d807ca28]740 {
741 // steal the association node from the singleton and delete the wrapper
[bb7422a]742 assert( 1 == $3->associations.size() );
743 $1->associations.push_back( $3->associations.front() );
[d807ca28]744 delete $3;
745 $$ = $1;
746 }
[24c3b67]747 ;
748
749generic_association: // C11
750 type_no_function ':' assignment_expression
[d807ca28]751 {
752 // create a GenericExpr wrapper with one association pair
[bb7422a]753 $$ = new ast::GenericExpr( yylloc, nullptr, { { maybeMoveBuildType( $1 ), maybeMoveBuild( $3 ) } } );
[d807ca28]754 }
[24c3b67]755 | DEFAULT ':' assignment_expression
[bb7422a]756 { $$ = new ast::GenericExpr( yylloc, nullptr, { { maybeMoveBuild( $3 ) } } ); }
[4d51835]757 ;
[51b73452]758
759postfix_expression:
[4d51835]760 primary_expression
[1d71208]761 | postfix_expression '[' assignment_expression ',' tuple_expression_list ']'
[59c7e3e]762 // Historic, transitional: Disallow commas in subscripts.
763 // Switching to this behaviour may help check if a C compatibilty case uses comma-exprs in subscripts.
764 // Current: Commas in subscripts make tuples.
[b93c544]765 { $$ = new ExpressionNode( build_binary_val( yylloc, OperKinds::Index, $1, new ExpressionNode( build_tuple( yylloc, $3->set_last( $5 ) ) ) ) ); }
[7fdb94e1]766 | postfix_expression '[' assignment_expression ']'
[c6b1105]767 // CFA, comma_expression disallowed in this context because it results in a common user error: subscripting a
[de62360d]768 // matrix with x[i,j] instead of x[i][j]. While this change is not backwards compatible, there seems to be
769 // little advantage to this feature and many disadvantages. It is possible to write x[(i,j)] in CFA, which is
770 // equivalent to the old x[i,j].
[bb7422a]771 { $$ = new ExpressionNode( build_binary_val( yylloc, OperKinds::Index, $1, $3 ) ); }
[d824715]772 | constant '[' assignment_expression ']' // 3[a], 'a'[a], 3.5[a]
[bb7422a]773 { $$ = new ExpressionNode( build_binary_val( yylloc, OperKinds::Index, $1, $3 ) ); }
[d824715]774 | string_literal '[' assignment_expression ']' // "abc"[3], 3["abc"]
[32d6fdc]775 { $$ = new ExpressionNode( build_binary_val( yylloc, OperKinds::Index, $1, $3 ) ); }
[cbbd8fd7]776 | postfix_expression '{' argument_expression_list_opt '}' // CFA, constructor call
[bd3d9e4]777 {
778 Token fn;
779 fn.str = new std::string( "?{}" ); // location undefined - use location of '{'?
[b93c544]780 $$ = new ExpressionNode( new ast::ConstructorExpr( yylloc, build_func( yylloc, new ExpressionNode( build_varref( yylloc, fn ) ), $1->set_last( $3 ) ) ) );
[bd3d9e4]781 }
[cbbd8fd7]782 | postfix_expression '(' argument_expression_list_opt ')'
[bb7422a]783 { $$ = new ExpressionNode( build_func( yylloc, $1, $3 ) ); }
[59c7e3e]784 | VA_ARG '(' primary_expression ',' declaration_specifier_nobody abstract_parameter_declarator_opt ')'
785 // { SemanticError( yylloc, "va_arg is currently unimplemented." ); $$ = nullptr; }
[b93c544]786 { $$ = new ExpressionNode( build_func( yylloc, new ExpressionNode( build_varref( yylloc, new string( "__builtin_va_arg" ) ) ),
787 $3->set_last( (ExpressionNode *)($6 ? $6->addType( $5 ) : $5) ) ) ); }
[948fdef]788 | postfix_expression '`' identifier // CFA, postfix call
[bb7422a]789 { $$ = new ExpressionNode( build_func( yylloc, new ExpressionNode( build_varref( yylloc, build_postfix_name( $3 ) ) ), $1 ) ); }
[948fdef]790 | constant '`' identifier // CFA, postfix call
[bb7422a]791 { $$ = new ExpressionNode( build_func( yylloc, new ExpressionNode( build_varref( yylloc, build_postfix_name( $3 ) ) ), $1 ) ); }
[948fdef]792 | string_literal '`' identifier // CFA, postfix call
[32d6fdc]793 { $$ = new ExpressionNode( build_func( yylloc, new ExpressionNode( build_varref( yylloc, build_postfix_name( $3 ) ) ), $1 ) ); }
[4eb3a7c5]794
795 // SKULLDUGGERY: The typedef table used for parsing does not store fields in structures. To parse a qualified
796 // name, it is assumed all name-tokens after the first are identifiers, regardless of how the lexer identifies
797 // them. For example:
798 //
799 // struct S;
800 // forall(T) struct T;
801 // union U;
802 // enum E { S, T, E };
803 // struct Z { int S, T, Z, E, U; };
804 // void fred () {
805 // Z z;
806 // z.S; // lexer returns S is TYPEDEFname
807 // z.T; // lexer returns T is TYPEGENname
808 // z.Z; // lexer returns Z is TYPEDEFname
809 // z.U; // lexer returns U is TYPEDEFname
810 // z.E; // lexer returns E is TYPEDEFname
811 // }
[033ff37]812 | postfix_expression '.' identifier
[bb7422a]813 { $$ = new ExpressionNode( build_fieldSel( yylloc, $1, build_varref( yylloc, $3 ) ) ); }
[4eb3a7c5]814 | postfix_expression '.' TYPEDEFname // CFA, SKULLDUGGERY
815 { $$ = new ExpressionNode( build_fieldSel( yylloc, $1, build_varref( yylloc, $3 ) ) ); }
816 | postfix_expression '.' TYPEGENname // CFA, SKULLDUGGERY
817 { $$ = new ExpressionNode( build_fieldSel( yylloc, $1, build_varref( yylloc, $3 ) ) ); }
818
[df22130]819 | postfix_expression '.' INTEGERconstant // CFA, tuple index
[bb7422a]820 { $$ = new ExpressionNode( build_fieldSel( yylloc, $1, build_constantInteger( yylloc, *$3 ) ) ); }
[930f69e]821 | postfix_expression FLOATING_FRACTIONconstant // CFA, tuple index
[bb7422a]822 { $$ = new ExpressionNode( build_fieldSel( yylloc, $1, build_field_name_FLOATING_FRACTIONconstant( yylloc, *$2 ) ) ); }
[679e644]823 | postfix_expression '.' '[' field_name_list ']' // CFA, tuple field selector
[bb7422a]824 { $$ = new ExpressionNode( build_fieldSel( yylloc, $1, build_tuple( yylloc, $4 ) ) ); }
[e307e12]825 | postfix_expression '.' aggregate_control
[bb7422a]826 { $$ = new ExpressionNode( build_keyword_cast( yylloc, $3, $1 ) ); }
[033ff37]827 | postfix_expression ARROW identifier
[bb7422a]828 { $$ = new ExpressionNode( build_pfieldSel( yylloc, $1, build_varref( yylloc, $3 ) ) ); }
[861799c7]829 | postfix_expression ARROW INTEGERconstant // CFA, tuple index
[bb7422a]830 { $$ = new ExpressionNode( build_pfieldSel( yylloc, $1, build_constantInteger( yylloc, *$3 ) ) ); }
[679e644]831 | postfix_expression ARROW '[' field_name_list ']' // CFA, tuple field selector
[bb7422a]832 { $$ = new ExpressionNode( build_pfieldSel( yylloc, $1, build_tuple( yylloc, $4 ) ) ); }
[4d51835]833 | postfix_expression ICR
[bb7422a]834 { $$ = new ExpressionNode( build_unary_val( yylloc, OperKinds::IncrPost, $1 ) ); }
[4d51835]835 | postfix_expression DECR
[bb7422a]836 { $$ = new ExpressionNode( build_unary_val( yylloc, OperKinds::DecrPost, $1 ) ); }
[7fdb94e1]837 | '(' type_no_function ')' '{' initializer_list_opt comma_opt '}' // C99, compound-literal
[bb7422a]838 { $$ = new ExpressionNode( build_compoundLiteral( yylloc, $2, new InitializerNode( $5, true ) ) ); }
[7fdb94e1]839 | '(' type_no_function ')' '@' '{' initializer_list_opt comma_opt '}' // CFA, explicit C compound-literal
[bb7422a]840 { $$ = new ExpressionNode( build_compoundLiteral( yylloc, $2, (new InitializerNode( $6, true ))->set_maybeConstructed( false ) ) ); }
[cbbd8fd7]841 | '^' primary_expression '{' argument_expression_list_opt '}' // CFA, destructor call
[097e2b0]842 {
[9706554]843 Token fn;
[ecb27a7]844 fn.str = new string( "^?{}" ); // location undefined
[b93c544]845 $$ = new ExpressionNode( build_func( yylloc, new ExpressionNode( build_varref( yylloc, fn ) ), $2->set_last( $4 ) ) );
[097e2b0]846 }
[4d51835]847 ;
[51b73452]848
[cbbd8fd7]849argument_expression_list_opt:
[757ffed]850 // empty
851 { $$ = nullptr; }
[e16eb460]852 | argument_expression_list
853 ;
854
855argument_expression_list:
856 argument_expression
[cbbd8fd7]857 | argument_expression_list_opt ',' argument_expression
[b93c544]858 { $$ = $1->set_last( $3 ); }
[4d51835]859 ;
[51b73452]860
861argument_expression:
[757ffed]862 '@' // CFA, default parameter
[679e644]863 { SemanticError( yylloc, "Default parameter for argument is currently unimplemented." ); $$ = nullptr; }
[9fd9d015]864 // { $$ = new ExpressionNode( build_constantInteger( *new string( "2" ) ) ); }
[4d51835]865 | assignment_expression
866 ;
[b87a5ed]867
[679e644]868field_name_list: // CFA, tuple field selector
[4d51835]869 field
[b93c544]870 | field_name_list ',' field { $$ = $1->set_last( $3 ); }
[4d51835]871 ;
[b87a5ed]872
873field: // CFA, tuple field selector
[faddbd8]874 field_name
[930f69e]875 | FLOATING_DECIMALconstant field
[bb7422a]876 { $$ = new ExpressionNode( build_fieldSel( yylloc, new ExpressionNode( build_field_name_FLOATING_DECIMALconstant( yylloc, *$1 ) ), maybeMoveBuild( $2 ) ) ); }
[679e644]877 | FLOATING_DECIMALconstant '[' field_name_list ']'
[bb7422a]878 { $$ = new ExpressionNode( build_fieldSel( yylloc, new ExpressionNode( build_field_name_FLOATING_DECIMALconstant( yylloc, *$1 ) ), build_tuple( yylloc, $3 ) ) ); }
[faddbd8]879 | field_name '.' field
[bb7422a]880 { $$ = new ExpressionNode( build_fieldSel( yylloc, $1, maybeMoveBuild( $3 ) ) ); }
[679e644]881 | field_name '.' '[' field_name_list ']'
[bb7422a]882 { $$ = new ExpressionNode( build_fieldSel( yylloc, $1, build_tuple( yylloc, $4 ) ) ); }
[faddbd8]883 | field_name ARROW field
[bb7422a]884 { $$ = new ExpressionNode( build_pfieldSel( yylloc, $1, maybeMoveBuild( $3 ) ) ); }
[679e644]885 | field_name ARROW '[' field_name_list ']'
[bb7422a]886 { $$ = new ExpressionNode( build_pfieldSel( yylloc, $1, build_tuple( yylloc, $4 ) ) ); }
[4d51835]887 ;
[51b73452]888
[faddbd8]889field_name:
[df22130]890 INTEGERconstant fraction_constants_opt
[bb7422a]891 { $$ = new ExpressionNode( build_field_name_fraction_constants( yylloc, build_constantInteger( yylloc, *$1 ), $2 ) ); }
[df22130]892 | FLOATINGconstant fraction_constants_opt
[bb7422a]893 { $$ = new ExpressionNode( build_field_name_fraction_constants( yylloc, build_field_name_FLOATINGconstant( yylloc, *$1 ), $2 ) ); }
[e16eb460]894 | identifier_at fraction_constants_opt // CFA, allow anonymous fields
[4cb935e]895 {
[bb7422a]896 $$ = new ExpressionNode( build_field_name_fraction_constants( yylloc, build_varref( yylloc, $1 ), $2 ) );
[84d58c5]897 }
[1b29996]898 ;
899
[df22130]900fraction_constants_opt:
[1b29996]901 // empty
[8780e30]902 { $$ = nullptr; }
[df22130]903 | fraction_constants_opt FLOATING_FRACTIONconstant
[8780e30]904 {
[bb7422a]905 ast::Expr * constant = build_field_name_FLOATING_FRACTIONconstant( yylloc, *$2 );
906 $$ = $1 != nullptr ? new ExpressionNode( build_fieldSel( yylloc, $1, constant ) ) : new ExpressionNode( constant );
[8780e30]907 }
[faddbd8]908 ;
909
[51b73452]910unary_expression:
[4d51835]911 postfix_expression
[c6b1105]912 // first location where constant/string can have operator applied: sizeof 3/sizeof "abc" still requires
913 // semantics checks, e.g., ++3, 3--, *3, &&3
[51b1202]914 | constant
[ab57786]915 | string_literal
[32d6fdc]916 { $$ = $1; }
[4d51835]917 | EXTENSION cast_expression // GCC
[e04ef3a]918 { $$ = $2->set_extension( true ); }
[c6b1105]919 // '*' ('&') is separated from unary_operator because of shift/reduce conflict in:
920 // { * X; } // dereference X
921 // { * int X; } // CFA declaration of pointer to int
[51e076e]922 | ptrref_operator cast_expression // CFA
[9706554]923 {
924 switch ( $1 ) {
[bb7422a]925 case OperKinds::AddressOf:
926 $$ = new ExpressionNode( new ast::AddressExpr( maybeMoveBuild( $2 ) ) );
[9706554]927 break;
[bb7422a]928 case OperKinds::PointTo:
929 $$ = new ExpressionNode( build_unary_val( yylloc, $1, $2 ) );
[9706554]930 break;
[bb7422a]931 case OperKinds::And:
932 $$ = new ExpressionNode( new ast::AddressExpr( new ast::AddressExpr( maybeMoveBuild( $2 ) ) ) );
[5809461]933 break;
[bb7422a]934 default:
[9706554]935 assert( false );
936 }
937 }
[4d51835]938 | unary_operator cast_expression
[bb7422a]939 { $$ = new ExpressionNode( build_unary_val( yylloc, $1, $2 ) ); }
[dd51906]940 | ICR unary_expression
[bb7422a]941 { $$ = new ExpressionNode( build_unary_val( yylloc, OperKinds::Incr, $2 ) ); }
[dd51906]942 | DECR unary_expression
[bb7422a]943 { $$ = new ExpressionNode( build_unary_val( yylloc, OperKinds::Decr, $2 ) ); }
[4d51835]944 | SIZEOF unary_expression
[bb7422a]945 { $$ = new ExpressionNode( new ast::SizeofExpr( yylloc, maybeMoveBuild( $2 ) ) ); }
[84d58c5]946 | SIZEOF '(' type_no_function ')'
[bb7422a]947 { $$ = new ExpressionNode( new ast::SizeofExpr( yylloc, maybeMoveBuildType( $3 ) ) ); }
[d1625f8]948 | ALIGNOF unary_expression // GCC, variable alignment
[bb7422a]949 { $$ = new ExpressionNode( new ast::AlignofExpr( yylloc, maybeMoveBuild( $2 ) ) ); }
[a2e0687]950 | ALIGNOF '(' type_no_function ')' // GCC, type alignment
[bb7422a]951 { $$ = new ExpressionNode( new ast::AlignofExpr( yylloc, maybeMoveBuildType( $3 ) ) ); }
[7e13b11]952
953 // Cannot use rule "type", which includes cfa_abstract_function, for sizeof/alignof, because of S/R problems on
954 // look ahead, so the cfa_abstract_function is factored out.
955 | SIZEOF '(' cfa_abstract_function ')'
956 { $$ = new ExpressionNode( new ast::SizeofExpr( yylloc, maybeMoveBuildType( $3 ) ) ); }
957 | ALIGNOF '(' cfa_abstract_function ')' // GCC, type alignment
958 { $$ = new ExpressionNode( new ast::AlignofExpr( yylloc, maybeMoveBuildType( $3 ) ) ); }
959
[033ff37]960 | OFFSETOF '(' type_no_function ',' identifier ')'
[bb7422a]961 { $$ = new ExpressionNode( build_offsetOf( yylloc, $3, build_varref( yylloc, $5 ) ) ); }
[7e13b11]962 | TYPEID '(' type ')'
[1f652a7]963 {
964 SemanticError( yylloc, "typeid name is currently unimplemented." ); $$ = nullptr;
965 // $$ = new ExpressionNode( build_offsetOf( $3, build_varref( $5 ) ) );
966 }
[4d51835]967 ;
[51b73452]968
[dd51906]969ptrref_operator:
[d9e2280]970 '*' { $$ = OperKinds::PointTo; }
971 | '&' { $$ = OperKinds::AddressOf; }
[c6b1105]972 // GCC, address of label must be handled by semantic check for ref,ref,label
[9f07232]973 | ANDAND { $$ = OperKinds::And; }
[dd51906]974 ;
975
[51b73452]976unary_operator:
[d9e2280]977 '+' { $$ = OperKinds::UnPlus; }
978 | '-' { $$ = OperKinds::UnMinus; }
979 | '!' { $$ = OperKinds::Neg; }
980 | '~' { $$ = OperKinds::BitNeg; }
[4d51835]981 ;
[51b73452]982
983cast_expression:
[4d51835]984 unary_expression
[84d58c5]985 | '(' type_no_function ')' cast_expression
[bb7422a]986 { $$ = new ExpressionNode( build_cast( yylloc, $2, $4 ) ); }
[e307e12]987 | '(' aggregate_control '&' ')' cast_expression // CFA
[bb7422a]988 { $$ = new ExpressionNode( build_keyword_cast( yylloc, $2, $5 ) ); }
[24711a3]989 | '(' aggregate_control '*' ')' cast_expression // CFA
[bb7422a]990 { $$ = new ExpressionNode( build_keyword_cast( yylloc, $2, $5 ) ); }
[fae90d5f]991 | '(' VIRTUAL ')' cast_expression // CFA
[6cef439]992 { $$ = new ExpressionNode( new ast::VirtualCastExpr( yylloc, maybeMoveBuild( $4 ), nullptr ) ); }
[fae90d5f]993 | '(' VIRTUAL type_no_function ')' cast_expression // CFA
[bb7422a]994 { $$ = new ExpressionNode( new ast::VirtualCastExpr( yylloc, maybeMoveBuild( $5 ), maybeMoveBuildType( $3 ) ) ); }
[1528a2c]995 | '(' RETURN type_no_function ')' cast_expression // CFA
[24d6572]996 { $$ = new ExpressionNode( build_cast( yylloc, $3, $5, ast::CastExpr::Return ) ); }
[1528a2c]997 | '(' COERCE type_no_function ')' cast_expression // CFA
998 { SemanticError( yylloc, "Coerce cast is currently unimplemented." ); $$ = nullptr; }
999 | '(' qualifier_cast_list ')' cast_expression // CFA
1000 { SemanticError( yylloc, "Qualifier cast is currently unimplemented." ); $$ = nullptr; }
[84d58c5]1001// | '(' type_no_function ')' tuple
[bb7422a]1002// { $$ = new ast::ExpressionNode( build_cast( yylloc, $2, $4 ) ); }
[4d51835]1003 ;
[51b73452]1004
[1528a2c]1005qualifier_cast_list:
1006 cast_modifier type_qualifier_name
1007 | cast_modifier MUTEX
1008 | qualifier_cast_list cast_modifier type_qualifier_name
1009 | qualifier_cast_list cast_modifier MUTEX
1010 ;
1011
1012cast_modifier:
1013 '-'
1014 | '+'
1015 ;
1016
[994d080]1017exponential_expression:
[4d51835]1018 cast_expression
[994d080]1019 | exponential_expression '\\' cast_expression
[bb7422a]1020 { $$ = new ExpressionNode( build_binary_val( yylloc, OperKinds::Exp, $1, $3 ) ); }
[994d080]1021 ;
1022
1023multiplicative_expression:
1024 exponential_expression
1025 | multiplicative_expression '*' exponential_expression
[bb7422a]1026 { $$ = new ExpressionNode( build_binary_val( yylloc, OperKinds::Mul, $1, $3 ) ); }
[994d080]1027 | multiplicative_expression '/' exponential_expression
[bb7422a]1028 { $$ = new ExpressionNode( build_binary_val( yylloc, OperKinds::Div, $1, $3 ) ); }
[994d080]1029 | multiplicative_expression '%' exponential_expression
[bb7422a]1030 { $$ = new ExpressionNode( build_binary_val( yylloc, OperKinds::Mod, $1, $3 ) ); }
[4d51835]1031 ;
[51b73452]1032
1033additive_expression:
[4d51835]1034 multiplicative_expression
1035 | additive_expression '+' multiplicative_expression
[bb7422a]1036 { $$ = new ExpressionNode( build_binary_val( yylloc, OperKinds::Plus, $1, $3 ) ); }
[4d51835]1037 | additive_expression '-' multiplicative_expression
[bb7422a]1038 { $$ = new ExpressionNode( build_binary_val( yylloc, OperKinds::Minus, $1, $3 ) ); }
[4d51835]1039 ;
[51b73452]1040
1041shift_expression:
[4d51835]1042 additive_expression
1043 | shift_expression LS additive_expression
[bb7422a]1044 { $$ = new ExpressionNode( build_binary_val( yylloc, OperKinds::LShift, $1, $3 ) ); }
[4d51835]1045 | shift_expression RS additive_expression
[bb7422a]1046 { $$ = new ExpressionNode( build_binary_val( yylloc, OperKinds::RShift, $1, $3 ) ); }
[4d51835]1047 ;
[51b73452]1048
1049relational_expression:
[4d51835]1050 shift_expression
1051 | relational_expression '<' shift_expression
[bb7422a]1052 { $$ = new ExpressionNode( build_binary_val( yylloc, OperKinds::LThan, $1, $3 ) ); }
[4d51835]1053 | relational_expression '>' shift_expression
[bb7422a]1054 { $$ = new ExpressionNode( build_binary_val( yylloc, OperKinds::GThan, $1, $3 ) ); }
[4d51835]1055 | relational_expression LE shift_expression
[bb7422a]1056 { $$ = new ExpressionNode( build_binary_val( yylloc, OperKinds::LEThan, $1, $3 ) ); }
[4d51835]1057 | relational_expression GE shift_expression
[bb7422a]1058 { $$ = new ExpressionNode( build_binary_val( yylloc, OperKinds::GEThan, $1, $3 ) ); }
[4d51835]1059 ;
[51b73452]1060
1061equality_expression:
[4d51835]1062 relational_expression
1063 | equality_expression EQ relational_expression
[bb7422a]1064 { $$ = new ExpressionNode( build_binary_val( yylloc, OperKinds::Eq, $1, $3 ) ); }
[4d51835]1065 | equality_expression NE relational_expression
[bb7422a]1066 { $$ = new ExpressionNode( build_binary_val( yylloc, OperKinds::Neq, $1, $3 ) ); }
[4d51835]1067 ;
[51b73452]1068
1069AND_expression:
[4d51835]1070 equality_expression
1071 | AND_expression '&' equality_expression
[bb7422a]1072 { $$ = new ExpressionNode( build_binary_val( yylloc, OperKinds::BitAnd, $1, $3 ) ); }
[4d51835]1073 ;
[51b73452]1074
1075exclusive_OR_expression:
[4d51835]1076 AND_expression
1077 | exclusive_OR_expression '^' AND_expression
[bb7422a]1078 { $$ = new ExpressionNode( build_binary_val( yylloc, OperKinds::Xor, $1, $3 ) ); }
[4d51835]1079 ;
[51b73452]1080
1081inclusive_OR_expression:
[4d51835]1082 exclusive_OR_expression
1083 | inclusive_OR_expression '|' exclusive_OR_expression
[bb7422a]1084 { $$ = new ExpressionNode( build_binary_val( yylloc, OperKinds::BitOr, $1, $3 ) ); }
[4d51835]1085 ;
[51b73452]1086
1087logical_AND_expression:
[4d51835]1088 inclusive_OR_expression
1089 | logical_AND_expression ANDAND inclusive_OR_expression
[bb7422a]1090 { $$ = new ExpressionNode( build_and_or( yylloc, $1, $3, ast::AndExpr ) ); }
[4d51835]1091 ;
[51b73452]1092
1093logical_OR_expression:
[4d51835]1094 logical_AND_expression
1095 | logical_OR_expression OROR logical_AND_expression
[bb7422a]1096 { $$ = new ExpressionNode( build_and_or( yylloc, $1, $3, ast::OrExpr ) ); }
[4d51835]1097 ;
[51b73452]1098
1099conditional_expression:
[4d51835]1100 logical_OR_expression
1101 | logical_OR_expression '?' comma_expression ':' conditional_expression
[bb7422a]1102 { $$ = new ExpressionNode( build_cond( yylloc, $1, $3, $5 ) ); }
[4d51835]1103 | logical_OR_expression '?' /* empty */ ':' conditional_expression // GCC, omitted first operand
[2810700]1104 { $$ = new ExpressionNode( build_cond( yylloc, $1, nullptr, $4 ) ); }
[4d51835]1105 ;
[51b73452]1106
1107constant_expression:
[4d51835]1108 conditional_expression
1109 ;
[51b73452]1110
1111assignment_expression:
[4d51835]1112 // CFA, assignment is separated from assignment_operator to ensure no assignment operations for tuples
1113 conditional_expression
1114 | unary_expression assignment_operator assignment_expression
[9867cdb]1115 {
[25744d2]1116// if ( $2 == OperKinds::AtAssn ) {
1117// SemanticError( yylloc, "C @= assignment is currently unimplemented." ); $$ = nullptr;
1118// } else {
[bb7422a]1119 $$ = new ExpressionNode( build_binary_val( yylloc, $2, $1, $3 ) );
[25744d2]1120// } // if
[9867cdb]1121 }
[7fdb94e1]1122 | unary_expression '=' '{' initializer_list_opt comma_opt '}'
[fae90d5f]1123 { SemanticError( yylloc, "Initializer assignment is currently unimplemented." ); $$ = nullptr; }
[4d51835]1124 ;
[51b73452]1125
1126assignment_expression_opt:
[4d51835]1127 // empty
[d1625f8]1128 { $$ = nullptr; }
[4d51835]1129 | assignment_expression
1130 ;
[b87a5ed]1131
[9706554]1132assignment_operator:
[f9c3100]1133 simple_assignment_operator
1134 | compound_assignment_operator
1135 ;
1136
1137simple_assignment_operator:
[d9e2280]1138 '=' { $$ = OperKinds::Assign; }
[f9c3100]1139 | ATassign { $$ = OperKinds::AtAssn; } // CFA
1140 ;
1141
1142compound_assignment_operator:
1143 EXPassign { $$ = OperKinds::ExpAssn; }
[d9e2280]1144 | MULTassign { $$ = OperKinds::MulAssn; }
1145 | DIVassign { $$ = OperKinds::DivAssn; }
1146 | MODassign { $$ = OperKinds::ModAssn; }
1147 | PLUSassign { $$ = OperKinds::PlusAssn; }
1148 | MINUSassign { $$ = OperKinds::MinusAssn; }
1149 | LSassign { $$ = OperKinds::LSAssn; }
1150 | RSassign { $$ = OperKinds::RSAssn; }
1151 | ANDassign { $$ = OperKinds::AndAssn; }
1152 | ERassign { $$ = OperKinds::ERAssn; }
1153 | ORassign { $$ = OperKinds::OrAssn; }
[413ad05]1154 ;
[9706554]1155
[b87a5ed]1156tuple: // CFA, tuple
[de62360d]1157 // CFA, one assignment_expression is factored out of comma_expression to eliminate a shift/reduce conflict with
[c0aa336]1158 // comma_expression in cfa_identifier_parameter_array and cfa_abstract_array
[1b29996]1159// '[' ']'
1160// { $$ = new ExpressionNode( build_tuple() ); }
[13e8427]1161// | '[' push assignment_expression pop ']'
[1b29996]1162// { $$ = new ExpressionNode( build_tuple( $3 ) ); }
[17238fd]1163 '[' ',' tuple_expression_list ']'
[b93c544]1164 { $$ = new ExpressionNode( build_tuple( yylloc, (new ExpressionNode( nullptr ))->set_last( $3 ) ) ); }
[17238fd]1165 | '[' push assignment_expression pop ',' tuple_expression_list ']'
[b93c544]1166 { $$ = new ExpressionNode( build_tuple( yylloc, $3->set_last( $6 ) ) ); }
[4d51835]1167 ;
[51b73452]1168
1169tuple_expression_list:
[0a6d8204]1170 assignment_expression
1171 | '@' // CFA
1172 { SemanticError( yylloc, "Eliding tuple element with '@' is currently unimplemented." ); $$ = nullptr; }
1173 | tuple_expression_list ',' assignment_expression
[b93c544]1174 { $$ = $1->set_last( $3 ); }
[0a6d8204]1175 | tuple_expression_list ',' '@'
1176 { SemanticError( yylloc, "Eliding tuple element with '@' is currently unimplemented." ); $$ = nullptr; }
[4d51835]1177 ;
[51b73452]1178
1179comma_expression:
[4d51835]1180 assignment_expression
[9706554]1181 | comma_expression ',' assignment_expression
[bb7422a]1182 { $$ = new ExpressionNode( new ast::CommaExpr( yylloc, maybeMoveBuild( $1 ), maybeMoveBuild( $3 ) ) ); }
[4d51835]1183 ;
[51b73452]1184
1185comma_expression_opt:
[4d51835]1186 // empty
[58dd019]1187 { $$ = nullptr; }
[4d51835]1188 | comma_expression
1189 ;
[51b73452]1190
[e1d66c84]1191// ************************** STATEMENTS *******************************
[51b73452]1192
1193statement:
[4d51835]1194 labeled_statement
1195 | compound_statement
[c0a33d2]1196 | expression_statement
[4d51835]1197 | selection_statement
1198 | iteration_statement
1199 | jump_statement
[8b47e50]1200 | with_statement
[b6b3c42]1201 | mutex_statement
[5b2edbc]1202 | waitfor_statement
[9fd9d015]1203 | waituntil_statement
[11ab0b4a]1204 | corun_statement
1205 | cofor_statement
[4d51835]1206 | exception_statement
[2a8427c6]1207 | enable_disable_statement
[fae90d5f]1208 { SemanticError( yylloc, "enable/disable statement is currently unimplemented." ); $$ = nullptr; }
[4d51835]1209 | asm_statement
[61fc4f6]1210 | DIRECTIVE
[bb7422a]1211 { $$ = new StatementNode( build_directive( yylloc, $1 ) ); }
[b9be000b]1212 ;
[51b73452]1213
1214labeled_statement:
[033ff37]1215 // labels cannot be identifiers 0 or 1
[44a81853]1216 identifier_or_type_name ':' attribute_list_opt statement
[bb7422a]1217 { $$ = $4->add_label( yylloc, $1, $3 ); }
[0442f93f]1218 | identifier_or_type_name ':' attribute_list_opt error // invalid syntax rule
[afe9e45]1219 {
[b1f2007d]1220 SemanticError( yylloc, "syntx error, label \"%s\" must be associated with a statement, "
1221 "where a declaration, case, or default is not a statement.\n"
1222 "Move the label or terminate with a semicolon.", $1.str->c_str() );
[afe9e45]1223 $$ = nullptr;
1224 }
[4d51835]1225 ;
[51b73452]1226
1227compound_statement:
[4d51835]1228 '{' '}'
[bb7422a]1229 { $$ = new StatementNode( build_compound( yylloc, (StatementNode *)0 ) ); }
[35718a9]1230 | '{' push
[5e25953]1231 local_label_declaration_opt // GCC, local labels appear at start of block
[9bd6105]1232 statement_decl_list // C99, intermix declarations and statements
[c0aa336]1233 pop '}'
[bb7422a]1234 { $$ = new StatementNode( build_compound( yylloc, $4 ) ); }
[4d51835]1235 ;
[b87a5ed]1236
[9bd6105]1237statement_decl_list: // C99
1238 statement_decl
[35718a9]1239 | statement_decl_list statement_decl
[6d01d89]1240 { assert( $1 ); $1->set_last( $2 ); $$ = $1; }
[4d51835]1241 ;
[51b73452]1242
[9bd6105]1243statement_decl:
[4d51835]1244 declaration // CFA, new & old style declarations
[e82aa9df]1245 { $$ = new StatementNode( $1 ); }
[4d51835]1246 | EXTENSION declaration // GCC
[6d01d89]1247 { distExt( $2 ); $$ = new StatementNode( $2 ); }
[4d51835]1248 | function_definition
[e82aa9df]1249 { $$ = new StatementNode( $1 ); }
[c0aa336]1250 | EXTENSION function_definition // GCC
[6d01d89]1251 { distExt( $2 ); $$ = new StatementNode( $2 ); }
[35718a9]1252 | statement
[4d51835]1253 ;
[51b73452]1254
[9bd6105]1255statement_list_nodecl:
[4d51835]1256 statement
[9bd6105]1257 | statement_list_nodecl statement
[6d01d89]1258 { assert( $1 ); $1->set_last( $2 ); $$ = $1; }
[0442f93f]1259 | statement_list_nodecl error // invalid syntax rule
[7e13b11]1260 { SemanticError( yylloc, "syntax error, declarations only allowed at the start of the switch body,"
1261 " i.e., after the '{'." ); $$ = nullptr; }
[4d51835]1262 ;
[51b73452]1263
1264expression_statement:
[4d51835]1265 comma_expression_opt ';'
[bb7422a]1266 { $$ = new StatementNode( build_expr( yylloc, $1 ) ); }
[4d51835]1267 ;
[51b73452]1268
[7e13b11]1269// "if", "switch", and "choose" require parenthesis around the conditional. See the following ambiguities without
1270// parenthesis:
1271//
1272// if x + y + z; => "if ( x + y ) + z" or "if ( x ) + y + z"
[647e2ea]1273//
[7e13b11]1274// switch O { }
1275//
1276// O{} => object-constructor for conditional, switch body ???
1277// O{} => O for conditional followed by switch body
1278//
1279// C++ has this problem, as it has the same constructor syntax.
1280//
1281// switch sizeof ( T ) { }
1282//
1283// sizeof ( T ) => sizeof of T for conditional followed by switch body
1284// sizeof ( T ) => sizeof of compound literal (T){ }, closing parenthesis ???
1285//
1286// Note the two grammar rules for sizeof (alignof)
1287//
1288// | SIZEOF unary_expression
1289// | SIZEOF '(' type_no_function ')'
1290//
1291// where the first DOES NOT require parenthesis! And C++ inherits this problem from C.
[647e2ea]1292
[51b73452]1293selection_statement:
[647e2ea]1294 IF '(' conditional_declaration ')' statement %prec THEN
1295 // explicitly deal with the shift/reduce conflict on if/else
1296 { $$ = new StatementNode( build_if( yylloc, $3, maybe_build_compound( yylloc, $5 ), nullptr ) ); }
1297 | IF '(' conditional_declaration ')' statement ELSE statement
1298 { $$ = new StatementNode( build_if( yylloc, $3, maybe_build_compound( yylloc, $5 ), maybe_build_compound( yylloc, $7 ) ) ); }
[4cc585b]1299 | SWITCH '(' comma_expression ')' case_clause
[bb7422a]1300 { $$ = new StatementNode( build_switch( yylloc, true, $3, $5 ) ); }
[35718a9]1301 | SWITCH '(' comma_expression ')' '{' push declaration_list_opt switch_clause_list_opt pop '}' // CFA
[4e06c1e]1302 {
[bb7422a]1303 StatementNode *sw = new StatementNode( build_switch( yylloc, true, $3, $8 ) );
[4e06c1e]1304 // The semantics of the declaration list is changed to include associated initialization, which is performed
1305 // *before* the transfer to the appropriate case clause by hoisting the declarations into a compound
1306 // statement around the switch. Statements after the initial declaration list can never be executed, and
[8688ce1]1307 // therefore, are removed from the grammar even though C allows it. The change also applies to choose
1308 // statement.
[b93c544]1309 $$ = $7 ? new StatementNode( build_compound( yylloc, (new StatementNode( $7 ))->set_last( sw ) ) ) : sw;
[4e06c1e]1310 }
[0442f93f]1311 | SWITCH '(' comma_expression ')' '{' error '}' // CFA, invalid syntax rule error
[55266c7]1312 { SemanticError( yylloc, "synatx error, declarations can only appear before the list of case clauses." ); $$ = nullptr; }
[4d51835]1313 | CHOOSE '(' comma_expression ')' case_clause // CFA
[bb7422a]1314 { $$ = new StatementNode( build_switch( yylloc, false, $3, $5 ) ); }
[35718a9]1315 | CHOOSE '(' comma_expression ')' '{' push declaration_list_opt switch_clause_list_opt pop '}' // CFA
[4e06c1e]1316 {
[bb7422a]1317 StatementNode *sw = new StatementNode( build_switch( yylloc, false, $3, $8 ) );
[b93c544]1318 $$ = $7 ? new StatementNode( build_compound( yylloc, (new StatementNode( $7 ))->set_last( sw ) ) ) : sw;
[4e06c1e]1319 }
[0442f93f]1320 | CHOOSE '(' comma_expression ')' '{' error '}' // CFA, invalid syntax rule
[55266c7]1321 { SemanticError( yylloc, "syntax error, declarations can only appear before the list of case clauses." ); $$ = nullptr; }
[4d51835]1322 ;
[b87a5ed]1323
[473d1da0]1324conditional_declaration:
[35718a9]1325 comma_expression
[473d1da0]1326 { $$ = new CondCtl( nullptr, $1 ); }
[35718a9]1327 | c_declaration // no semi-colon
[473d1da0]1328 { $$ = new CondCtl( $1, nullptr ); }
[35718a9]1329 | cfa_declaration // no semi-colon
[473d1da0]1330 { $$ = new CondCtl( $1, nullptr ); }
[6d49ea3]1331 | declaration comma_expression // semi-colon separated
[473d1da0]1332 { $$ = new CondCtl( $1, $2 ); }
[9fd9d015]1333 ;
[936e9f4]1334
[de62360d]1335// CASE and DEFAULT clauses are only allowed in the SWITCH statement, precluding Duff's device. In addition, a case
1336// clause allows a list of values and subranges.
[b87a5ed]1337
1338case_value: // CFA
[4d51835]1339 constant_expression { $$ = $1; }
1340 | constant_expression ELLIPSIS constant_expression // GCC, subrange
[bb7422a]1341 { $$ = new ExpressionNode( new ast::RangeExpr( yylloc, maybeMoveBuild( $1 ), maybeMoveBuild( $3 ) ) ); }
[4d51835]1342 | subrange // CFA, subrange
1343 ;
[b87a5ed]1344
1345case_value_list: // CFA
[6611177]1346 case_value { $$ = new ClauseNode( build_case( yylloc, $1 ) ); }
[064e3ff]1347 // convert case list, e.g., "case 1, 3, 5:" into "case 1: case 3: case 5"
[6611177]1348 | case_value_list ',' case_value { $$ = $1->set_last( new ClauseNode( build_case( yylloc, $3 ) ) ); }
[4d51835]1349 ;
[b87a5ed]1350
1351case_label: // CFA
[0442f93f]1352 CASE error // invalid syntax rule
[55266c7]1353 { SemanticError( yylloc, "syntax error, case list missing after case." ); $$ = nullptr; }
[5c216b4]1354 | CASE case_value_list ':' { $$ = $2; }
[0442f93f]1355 | CASE case_value_list error // invalid syntax rule
[55266c7]1356 { SemanticError( yylloc, "syntax error, colon missing after case list." ); $$ = nullptr; }
[6611177]1357 | DEFAULT ':' { $$ = new ClauseNode( build_default( yylloc ) ); }
[4d51835]1358 // A semantic check is required to ensure only one default clause per switch/choose statement.
[65ef0cd]1359 | DEFAULT error // invalid syntax rule
[55266c7]1360 { SemanticError( yylloc, "syntax error, colon missing after default." ); $$ = nullptr; }
[4d51835]1361 ;
[b87a5ed]1362
1363case_label_list: // CFA
[4d51835]1364 case_label
[6611177]1365 | case_label_list case_label { $$ = $1->set_last( $2 ); }
[4d51835]1366 ;
[b87a5ed]1367
1368case_clause: // CFA
[bb7422a]1369 case_label_list statement { $$ = $1->append_last_case( maybe_build_compound( yylloc, $2 ) ); }
[4d51835]1370 ;
[b87a5ed]1371
1372switch_clause_list_opt: // CFA
[4d51835]1373 // empty
[58dd019]1374 { $$ = nullptr; }
[4d51835]1375 | switch_clause_list
1376 ;
[b87a5ed]1377
1378switch_clause_list: // CFA
[9bd6105]1379 case_label_list statement_list_nodecl
[bb7422a]1380 { $$ = $1->append_last_case( new StatementNode( build_compound( yylloc, $2 ) ) ); }
[9bd6105]1381 | switch_clause_list case_label_list statement_list_nodecl
[6611177]1382 { $$ = $1->set_last( $2->append_last_case( new StatementNode( build_compound( yylloc, $3 ) ) ) ); }
[4d51835]1383 ;
[b87a5ed]1384
[51b73452]1385iteration_statement:
[5695645]1386 WHILE '(' ')' statement %prec THEN // CFA => while ( 1 )
[bb7422a]1387 { $$ = new StatementNode( build_while( yylloc, new CondCtl( nullptr, NEW_ONE ), maybe_build_compound( yylloc, $4 ) ) ); }
[5695645]1388 | WHILE '(' ')' statement ELSE statement // CFA
[86b8d16]1389 {
[bb7422a]1390 $$ = new StatementNode( build_while( yylloc, new CondCtl( nullptr, NEW_ONE ), maybe_build_compound( yylloc, $4 ) ) );
[3d937e2]1391 SemanticWarning( yylloc, Warning::SuperfluousElse );
[86b8d16]1392 }
[473d1da0]1393 | WHILE '(' conditional_declaration ')' statement %prec THEN
[bb7422a]1394 { $$ = new StatementNode( build_while( yylloc, $3, maybe_build_compound( yylloc, $5 ) ) ); }
[473d1da0]1395 | WHILE '(' conditional_declaration ')' statement ELSE statement // CFA
[bb7422a]1396 { $$ = new StatementNode( build_while( yylloc, $3, maybe_build_compound( yylloc, $5 ), $7 ) ); }
[f271bdd]1397 | DO statement WHILE '(' ')' ';' // CFA => do while( 1 )
[bb7422a]1398 { $$ = new StatementNode( build_do_while( yylloc, NEW_ONE, maybe_build_compound( yylloc, $2 ) ) ); }
[5695645]1399 | DO statement WHILE '(' ')' ELSE statement // CFA
[86b8d16]1400 {
[bb7422a]1401 $$ = new StatementNode( build_do_while( yylloc, NEW_ONE, maybe_build_compound( yylloc, $2 ) ) );
[3d937e2]1402 SemanticWarning( yylloc, Warning::SuperfluousElse );
[86b8d16]1403 }
1404 | DO statement WHILE '(' comma_expression ')' ';'
[bb7422a]1405 { $$ = new StatementNode( build_do_while( yylloc, $5, maybe_build_compound( yylloc, $2 ) ) ); }
[efc8f3e]1406 | DO statement WHILE '(' comma_expression ')' ELSE statement // CFA
[bb7422a]1407 { $$ = new StatementNode( build_do_while( yylloc, $5, maybe_build_compound( yylloc, $2 ), $8 ) ); }
[86b8d16]1408 | FOR '(' ')' statement %prec THEN // CFA => for ( ;; )
[bb7422a]1409 { $$ = new StatementNode( build_for( yylloc, new ForCtrl( nullptr, nullptr, nullptr ), maybe_build_compound( yylloc, $4 ) ) ); }
[86b8d16]1410 | FOR '(' ')' statement ELSE statement // CFA
1411 {
[bb7422a]1412 $$ = new StatementNode( build_for( yylloc, new ForCtrl( nullptr, nullptr, nullptr ), maybe_build_compound( yylloc, $4 ) ) );
[3d937e2]1413 SemanticWarning( yylloc, Warning::SuperfluousElse );
[86b8d16]1414 }
[efc8f3e]1415 | FOR '(' for_control_expression_list ')' statement %prec THEN
[bb7422a]1416 { $$ = new StatementNode( build_for( yylloc, $3, maybe_build_compound( yylloc, $5 ) ) ); }
[efc8f3e]1417 | FOR '(' for_control_expression_list ')' statement ELSE statement // CFA
[bb7422a]1418 { $$ = new StatementNode( build_for( yylloc, $3, maybe_build_compound( yylloc, $5 ), $7 ) ); }
[a73c16e]1419 ;
1420
[6d01d89]1421for_control_expression_list:
1422 for_control_expression
1423 | for_control_expression_list ':' for_control_expression
[67d4e37]1424 // ForCtrl + ForCtrl:
1425 // init + init => multiple declaration statements that are hoisted
1426 // condition + condition => (expression) && (expression)
1427 // change + change => (expression), (expression)
1428 {
1429 $1->init->set_last( $3->init );
1430 if ( $1->condition ) {
1431 if ( $3->condition ) {
[bb7422a]1432 $1->condition->expr.reset( new ast::LogicalExpr( yylloc, $1->condition->expr.release(), $3->condition->expr.release(), ast::AndExpr ) );
[67d4e37]1433 } // if
1434 } else $1->condition = $3->condition;
1435 if ( $1->change ) {
1436 if ( $3->change ) {
[bb7422a]1437 $1->change->expr.reset( new ast::CommaExpr( yylloc, $1->change->expr.release(), $3->change->expr.release() ) );
[67d4e37]1438 } // if
1439 } else $1->change = $3->change;
1440 $$ = $1;
1441 }
[6d01d89]1442 ;
1443
[51b73452]1444for_control_expression:
[6d01d89]1445 ';' comma_expression_opt ';' comma_expression_opt
[1cdc052]1446 { $$ = new ForCtrl( nullptr, $2, $4 ); }
[6d01d89]1447 | comma_expression ';' comma_expression_opt ';' comma_expression_opt
[1cdc052]1448 {
[bb7422a]1449 StatementNode * init = $1 ? new StatementNode( new ast::ExprStmt( yylloc, maybeMoveBuild( $1 ) ) ) : nullptr;
[1cdc052]1450 $$ = new ForCtrl( init, $3, $5 );
1451 }
[6d01d89]1452 | declaration comma_expression_opt ';' comma_expression_opt // C99, declaration has ';'
[1cdc052]1453 { $$ = new ForCtrl( new StatementNode( $1 ), $2, $4 ); }
[67d4e37]1454
[aa122e9]1455 | '@' ';' comma_expression // CFA, empty loop-index
[1cdc052]1456 { $$ = new ForCtrl( nullptr, $3, nullptr ); }
[aa122e9]1457 | '@' ';' comma_expression ';' comma_expression // CFA, empty loop-index
[1cdc052]1458 { $$ = new ForCtrl( nullptr, $3, $5 ); }
[51fbba5]1459
[aa122e9]1460 | comma_expression // CFA, anonymous loop-index
[bb7422a]1461 { $$ = forCtrl( yylloc, $1, new string( DeclarationNode::anonymous.newName() ), NEW_ZERO, OperKinds::LThan, $1->clone(), NEW_ONE ); }
[aa122e9]1462 | downupdowneq comma_expression // CFA, anonymous loop-index
[bb7422a]1463 { $$ = forCtrl( yylloc, $2, new string( DeclarationNode::anonymous.newName() ), UPDOWN( $1, NEW_ZERO, $2->clone() ), $1, UPDOWN( $1, $2->clone(), NEW_ZERO ), NEW_ONE ); }
[52be5948]1464
[aa122e9]1465 | comma_expression updowneq comma_expression // CFA, anonymous loop-index
[bb7422a]1466 { $$ = forCtrl( yylloc, $1, new string( DeclarationNode::anonymous.newName() ), UPDOWN( $2, $1->clone(), $3 ), $2, UPDOWN( $2, $3->clone(), $1->clone() ), NEW_ONE ); }
[aa122e9]1467 | '@' updowneq comma_expression // CFA, anonymous loop-index
[dbedd71]1468 {
[4fee301]1469 if ( $2 == OperKinds::LThan || $2 == OperKinds::LEThan ) { SemanticError( yylloc, MISSING_LOW ); $$ = nullptr; }
[bb7422a]1470 else $$ = forCtrl( yylloc, $3, new string( DeclarationNode::anonymous.newName() ), $3->clone(), $2, nullptr, NEW_ONE );
[dbedd71]1471 }
[aa122e9]1472 | comma_expression updowneq '@' // CFA, anonymous loop-index
[dbedd71]1473 {
[4fee301]1474 if ( $2 == OperKinds::LThan || $2 == OperKinds::LEThan ) { SemanticError( yylloc, MISSING_ANON_FIELD ); $$ = nullptr; }
[ed9a1ae]1475 else { SemanticError( yylloc, MISSING_HIGH ); $$ = nullptr; }
[dbedd71]1476 }
[aa122e9]1477 | comma_expression updowneq comma_expression '~' comma_expression // CFA, anonymous loop-index
[bb7422a]1478 { $$ = forCtrl( yylloc, $1, new string( DeclarationNode::anonymous.newName() ), UPDOWN( $2, $1->clone(), $3 ), $2, UPDOWN( $2, $3->clone(), $1->clone() ), $5 ); }
[aa122e9]1479 | '@' updowneq comma_expression '~' comma_expression // CFA, anonymous loop-index
[dbedd71]1480 {
[4fee301]1481 if ( $2 == OperKinds::LThan || $2 == OperKinds::LEThan ) { SemanticError( yylloc, MISSING_LOW ); $$ = nullptr; }
[bb7422a]1482 else $$ = forCtrl( yylloc, $3, new string( DeclarationNode::anonymous.newName() ), $3->clone(), $2, nullptr, $5 );
[dbedd71]1483 }
[aa122e9]1484 | comma_expression updowneq '@' '~' comma_expression // CFA, anonymous loop-index
[dbedd71]1485 {
[4fee301]1486 if ( $2 == OperKinds::LThan || $2 == OperKinds::LEThan ) { SemanticError( yylloc, MISSING_ANON_FIELD ); $$ = nullptr; }
[ed9a1ae]1487 else { SemanticError( yylloc, MISSING_HIGH ); $$ = nullptr; }
[dbedd71]1488 }
[65ef0cd]1489 | comma_expression updowneq comma_expression '~' '@' // CFA, invalid syntax rule
[4fee301]1490 { SemanticError( yylloc, MISSING_ANON_FIELD ); $$ = nullptr; }
[65ef0cd]1491 | '@' updowneq '@' // CFA, invalid syntax rule
[4fee301]1492 { SemanticError( yylloc, MISSING_ANON_FIELD ); $$ = nullptr; }
[65ef0cd]1493 | '@' updowneq comma_expression '~' '@' // CFA, invalid syntax rule
[4fee301]1494 { SemanticError( yylloc, MISSING_ANON_FIELD ); $$ = nullptr; }
[65ef0cd]1495 | comma_expression updowneq '@' '~' '@' // CFA, invalid syntax rule
[4fee301]1496 { SemanticError( yylloc, MISSING_ANON_FIELD ); $$ = nullptr; }
[65ef0cd]1497 | '@' updowneq '@' '~' '@' // CFA, invalid syntax rule
[4fee301]1498 { SemanticError( yylloc, MISSING_ANON_FIELD ); $$ = nullptr; }
[52be5948]1499
[f1aeede]1500 | comma_expression ';' comma_expression // CFA
[bb7422a]1501 { $$ = forCtrl( yylloc, $3, $1, NEW_ZERO, OperKinds::LThan, $3->clone(), NEW_ONE ); }
[d78c238]1502 | comma_expression ';' downupdowneq comma_expression // CFA
[bb7422a]1503 { $$ = forCtrl( yylloc, $4, $1, UPDOWN( $3, NEW_ZERO, $4->clone() ), $3, UPDOWN( $3, $4->clone(), NEW_ZERO ), NEW_ONE ); }
[52be5948]1504
[d78c238]1505 | comma_expression ';' comma_expression updowneq comma_expression // CFA
[bb7422a]1506 { $$ = forCtrl( yylloc, $3, $1, UPDOWN( $4, $3->clone(), $5 ), $4, UPDOWN( $4, $5->clone(), $3->clone() ), NEW_ONE ); }
[dbedd71]1507 | comma_expression ';' '@' updowneq comma_expression // CFA
1508 {
[4fee301]1509 if ( $4 == OperKinds::LThan || $4 == OperKinds::LEThan ) { SemanticError( yylloc, MISSING_LOW ); $$ = nullptr; }
[bb7422a]1510 else $$ = forCtrl( yylloc, $5, $1, $5->clone(), $4, nullptr, NEW_ONE );
[dbedd71]1511 }
[52be5948]1512 | comma_expression ';' comma_expression updowneq '@' // CFA
1513 {
[4fee301]1514 if ( $4 == OperKinds::GThan || $4 == OperKinds::GEThan ) { SemanticError( yylloc, MISSING_HIGH ); $$ = nullptr; }
[55266c7]1515 else if ( $4 == OperKinds::LEThan ) { SemanticError( yylloc, "syntax error, equality with missing high value is meaningless. Use \"~\"." ); $$ = nullptr; }
[bb7422a]1516 else $$ = forCtrl( yylloc, $3, $1, $3->clone(), $4, nullptr, NEW_ONE );
[52be5948]1517 }
[65ef0cd]1518 | comma_expression ';' '@' updowneq '@' // CFA, invalid syntax rule
[55266c7]1519 { SemanticError( yylloc, "syntax error, missing low/high value for up/down-to range so index is uninitialized." ); $$ = nullptr; }
[d78c238]1520
1521 | comma_expression ';' comma_expression updowneq comma_expression '~' comma_expression // CFA
[bb7422a]1522 { $$ = forCtrl( yylloc, $3, $1, UPDOWN( $4, $3->clone(), $5 ), $4, UPDOWN( $4, $5->clone(), $3->clone() ), $7 ); }
[65ef0cd]1523 | comma_expression ';' '@' updowneq comma_expression '~' comma_expression // CFA, invalid syntax rule
[dbedd71]1524 {
[4fee301]1525 if ( $4 == OperKinds::LThan || $4 == OperKinds::LEThan ) { SemanticError( yylloc, MISSING_LOW ); $$ = nullptr; }
[bb7422a]1526 else $$ = forCtrl( yylloc, $5, $1, $5->clone(), $4, nullptr, $7 );
[dbedd71]1527 }
[52be5948]1528 | comma_expression ';' comma_expression updowneq '@' '~' comma_expression // CFA
1529 {
[4fee301]1530 if ( $4 == OperKinds::GThan || $4 == OperKinds::GEThan ) { SemanticError( yylloc, MISSING_HIGH ); $$ = nullptr; }
[55266c7]1531 else if ( $4 == OperKinds::LEThan ) { SemanticError( yylloc, "syntax error, equality with missing high value is meaningless. Use \"~\"." ); $$ = nullptr; }
[bb7422a]1532 else $$ = forCtrl( yylloc, $3, $1, $3->clone(), $4, nullptr, $7 );
[52be5948]1533 }
1534 | comma_expression ';' comma_expression updowneq comma_expression '~' '@' // CFA
[bb7422a]1535 { $$ = forCtrl( yylloc, $3, $1, UPDOWN( $4, $3->clone(), $5 ), $4, UPDOWN( $4, $5->clone(), $3->clone() ), nullptr ); }
[65ef0cd]1536 | comma_expression ';' '@' updowneq comma_expression '~' '@' // CFA, invalid syntax rule
[dbedd71]1537 {
[4fee301]1538 if ( $4 == OperKinds::LThan || $4 == OperKinds::LEThan ) { SemanticError( yylloc, MISSING_LOW ); $$ = nullptr; }
[bb7422a]1539 else $$ = forCtrl( yylloc, $5, $1, $5->clone(), $4, nullptr, nullptr );
[dbedd71]1540 }
[52be5948]1541 | comma_expression ';' comma_expression updowneq '@' '~' '@' // CFA
[d78c238]1542 {
[4fee301]1543 if ( $4 == OperKinds::GThan || $4 == OperKinds::GEThan ) { SemanticError( yylloc, MISSING_HIGH ); $$ = nullptr; }
[55266c7]1544 else if ( $4 == OperKinds::LEThan ) { SemanticError( yylloc, "syntax error, equality with missing high value is meaningless. Use \"~\"." ); $$ = nullptr; }
[bb7422a]1545 else $$ = forCtrl( yylloc, $3, $1, $3->clone(), $4, nullptr, nullptr );
[d78c238]1546 }
[dbedd71]1547 | comma_expression ';' '@' updowneq '@' '~' '@' // CFA
[55266c7]1548 { SemanticError( yylloc, "syntax error, missing low/high value for up/down-to range so index is uninitialized." ); $$ = nullptr; }
[d78c238]1549
1550 | declaration comma_expression // CFA
[bb7422a]1551 { $$ = forCtrl( yylloc, $1, NEW_ZERO, OperKinds::LThan, $2, NEW_ONE ); }
[d78c238]1552 | declaration downupdowneq comma_expression // CFA
[bb7422a]1553 { $$ = forCtrl( yylloc, $1, UPDOWN( $2, NEW_ZERO, $3 ), $2, UPDOWN( $2, $3->clone(), NEW_ZERO ), NEW_ONE ); }
[52be5948]1554
[d78c238]1555 | declaration comma_expression updowneq comma_expression // CFA
[bb7422a]1556 { $$ = forCtrl( yylloc, $1, UPDOWN( $3, $2->clone(), $4 ), $3, UPDOWN( $3, $4->clone(), $2->clone() ), NEW_ONE ); }
[dbedd71]1557 | declaration '@' updowneq comma_expression // CFA
1558 {
[4fee301]1559 if ( $3 == OperKinds::LThan || $3 == OperKinds::LEThan ) { SemanticError( yylloc, MISSING_LOW ); $$ = nullptr; }
[bb7422a]1560 else $$ = forCtrl( yylloc, $1, $4, $3, nullptr, NEW_ONE );
[dbedd71]1561 }
[52be5948]1562 | declaration comma_expression updowneq '@' // CFA
1563 {
[4fee301]1564 if ( $3 == OperKinds::GThan || $3 == OperKinds::GEThan ) { SemanticError( yylloc, MISSING_HIGH ); $$ = nullptr; }
[55266c7]1565 else if ( $3 == OperKinds::LEThan ) { SemanticError( yylloc, "syntax error, equality with missing high value is meaningless. Use \"~\"." ); $$ = nullptr; }
[bb7422a]1566 else $$ = forCtrl( yylloc, $1, $2, $3, nullptr, NEW_ONE );
[52be5948]1567 }
[d78c238]1568
1569 | declaration comma_expression updowneq comma_expression '~' comma_expression // CFA
[bb7422a]1570 { $$ = forCtrl( yylloc, $1, UPDOWN( $3, $2, $4 ), $3, UPDOWN( $3, $4->clone(), $2->clone() ), $6 ); }
[dbedd71]1571 | declaration '@' updowneq comma_expression '~' comma_expression // CFA
1572 {
[4fee301]1573 if ( $3 == OperKinds::LThan || $3 == OperKinds::LEThan ) { SemanticError( yylloc, MISSING_LOW ); $$ = nullptr; }
[bb7422a]1574 else $$ = forCtrl( yylloc, $1, $4, $3, nullptr, $6 );
[dbedd71]1575 }
[52be5948]1576 | declaration comma_expression updowneq '@' '~' comma_expression // CFA
1577 {
[4fee301]1578 if ( $3 == OperKinds::GThan || $3 == OperKinds::GEThan ) { SemanticError( yylloc, MISSING_HIGH ); $$ = nullptr; }
[55266c7]1579 else if ( $3 == OperKinds::LEThan ) { SemanticError( yylloc, "syntax error, equality with missing high value is meaningless. Use \"~\"." ); $$ = nullptr; }
[bb7422a]1580 else $$ = forCtrl( yylloc, $1, $2, $3, nullptr, $6 );
[52be5948]1581 }
1582 | declaration comma_expression updowneq comma_expression '~' '@' // CFA
[bb7422a]1583 { $$ = forCtrl( yylloc, $1, UPDOWN( $3, $2, $4 ), $3, UPDOWN( $3, $4->clone(), $2->clone() ), nullptr ); }
[dbedd71]1584 | declaration '@' updowneq comma_expression '~' '@' // CFA
1585 {
[4fee301]1586 if ( $3 == OperKinds::LThan || $3 == OperKinds::LEThan ) { SemanticError( yylloc, MISSING_LOW ); $$ = nullptr; }
[bb7422a]1587 else $$ = forCtrl( yylloc, $1, $4, $3, nullptr, nullptr );
[dbedd71]1588 }
[52be5948]1589 | declaration comma_expression updowneq '@' '~' '@' // CFA
[d78c238]1590 {
[4fee301]1591 if ( $3 == OperKinds::GThan || $3 == OperKinds::GEThan ) { SemanticError( yylloc, MISSING_HIGH ); $$ = nullptr; }
[55266c7]1592 else if ( $3 == OperKinds::LEThan ) { SemanticError( yylloc, "syntax error, equality with missing high value is meaningless. Use \"~\"." ); $$ = nullptr; }
[bb7422a]1593 else $$ = forCtrl( yylloc, $1, $2, $3, nullptr, nullptr );
[d78c238]1594 }
[65ef0cd]1595 | declaration '@' updowneq '@' '~' '@' // CFA, invalid syntax rule
[55266c7]1596 { SemanticError( yylloc, "syntax error, missing low/high value for up/down-to range so index is uninitialized." ); $$ = nullptr; }
[67d4e37]1597
[ca33b15]1598 | comma_expression ';' TYPEDEFname // CFA, array type
1599 {
[d78c238]1600 SemanticError( yylloc, "Type iterator is currently unimplemented." ); $$ = nullptr;
1601 //$$ = forCtrl( new ExpressionNode( build_varref( $3 ) ), $1, nullptr, OperKinds::Range, nullptr, nullptr );
[ca33b15]1602 }
[d78c238]1603 | comma_expression ';' downupdowneq TYPEDEFname // CFA, array type
1604 {
[55266c7]1605 if ( $3 == OperKinds::LEThan || $3 == OperKinds::GEThan ) {
[0442f93f]1606 SemanticError( yylloc, "syntax error, all enumeration ranges are equal (all values). Remove \"=~\"." ); $$ = nullptr;
[55266c7]1607 }
[d78c238]1608 SemanticError( yylloc, "Type iterator is currently unimplemented." ); $$ = nullptr;
1609 }
[9fd9d015]1610 ;
[98337569]1611
[d78c238]1612downupdowneq:
1613 ErangeDown
1614 { $$ = OperKinds::GThan; }
1615 | ErangeUpEq
1616 { $$ = OperKinds::LEThan; }
1617 | ErangeDownEq
1618 { $$ = OperKinds::GEThan; }
[9fd9d015]1619 ;
[51b73452]1620
[d78c238]1621updown:
[cc22003]1622 '~'
1623 { $$ = OperKinds::LThan; }
[d69f4bb4]1624 | ErangeDown
1625 { $$ = OperKinds::GThan; }
[9fd9d015]1626 ;
[d78c238]1627
1628updowneq:
1629 updown
1630 | ErangeUpEq
1631 { $$ = OperKinds::LEThan; }
[d69f4bb4]1632 | ErangeDownEq
1633 { $$ = OperKinds::GEThan; }
[9fd9d015]1634 ;
[cc22003]1635
[51b73452]1636jump_statement:
[44a81853]1637 GOTO identifier_or_type_name ';'
[bb7422a]1638 { $$ = new StatementNode( build_branch( yylloc, $2, ast::BranchStmt::Goto ) ); }
[4d51835]1639 | GOTO '*' comma_expression ';' // GCC, computed goto
[4e06c1e]1640 // The syntax for the GCC computed goto violates normal expression precedence, e.g., goto *i+3; => goto *(i+3);
[de62360d]1641 // whereas normal operator precedence yields goto (*i)+3;
[e82aa9df]1642 { $$ = new StatementNode( build_computedgoto( $3 ) ); }
[6a276a0]1643 // A semantic check is required to ensure fallthru appears only in the body of a choose statement.
[ec3f9c8]1644 | fall_through_name ';' // CFA
[bb7422a]1645 { $$ = new StatementNode( build_branch( yylloc, ast::BranchStmt::FallThrough ) ); }
[ec3f9c8]1646 | fall_through_name identifier_or_type_name ';' // CFA
[bb7422a]1647 { $$ = new StatementNode( build_branch( yylloc, $2, ast::BranchStmt::FallThrough ) ); }
[6a276a0]1648 | fall_through_name DEFAULT ';' // CFA
[bb7422a]1649 { $$ = new StatementNode( build_branch( yylloc, ast::BranchStmt::FallThroughDefault ) ); }
[4d51835]1650 | CONTINUE ';'
[de62360d]1651 // A semantic check is required to ensure this statement appears only in the body of an iteration statement.
[bb7422a]1652 { $$ = new StatementNode( build_branch( yylloc, ast::BranchStmt::Continue ) ); }
[44a81853]1653 | CONTINUE identifier_or_type_name ';' // CFA, multi-level continue
[de62360d]1654 // A semantic check is required to ensure this statement appears only in the body of an iteration statement, and
1655 // the target of the transfer appears only at the start of an iteration statement.
[bb7422a]1656 { $$ = new StatementNode( build_branch( yylloc, $2, ast::BranchStmt::Continue ) ); }
[4d51835]1657 | BREAK ';'
[de62360d]1658 // A semantic check is required to ensure this statement appears only in the body of an iteration statement.
[bb7422a]1659 { $$ = new StatementNode( build_branch( yylloc, ast::BranchStmt::Break ) ); }
[44a81853]1660 | BREAK identifier_or_type_name ';' // CFA, multi-level exit
[de62360d]1661 // A semantic check is required to ensure this statement appears only in the body of an iteration statement, and
1662 // the target of the transfer appears only at the start of an iteration statement.
[bb7422a]1663 { $$ = new StatementNode( build_branch( yylloc, $2, ast::BranchStmt::Break ) ); }
[4d51835]1664 | RETURN comma_expression_opt ';'
[bb7422a]1665 { $$ = new StatementNode( build_return( yylloc, $2 ) ); }
[c786e1d]1666 | RETURN '{' initializer_list_opt comma_opt '}' ';'
[fae90d5f]1667 { SemanticError( yylloc, "Initializer return is currently unimplemented." ); $$ = nullptr; }
[37cdd97]1668 | SUSPEND ';'
[bb7422a]1669 { $$ = new StatementNode( build_suspend( yylloc, nullptr, ast::SuspendStmt::None ) ); }
[9306559f]1670 | SUSPEND compound_statement
[bb7422a]1671 { $$ = new StatementNode( build_suspend( yylloc, $2, ast::SuspendStmt::None ) ); }
[37cdd97]1672 | SUSPEND COROUTINE ';'
[bb7422a]1673 { $$ = new StatementNode( build_suspend( yylloc, nullptr, ast::SuspendStmt::Coroutine ) ); }
[37cdd97]1674 | SUSPEND COROUTINE compound_statement
[bb7422a]1675 { $$ = new StatementNode( build_suspend( yylloc, $3, ast::SuspendStmt::Coroutine ) ); }
[37cdd97]1676 | SUSPEND GENERATOR ';'
[bb7422a]1677 { $$ = new StatementNode( build_suspend( yylloc, nullptr, ast::SuspendStmt::Generator ) ); }
[37cdd97]1678 | SUSPEND GENERATOR compound_statement
[bb7422a]1679 { $$ = new StatementNode( build_suspend( yylloc, $3, ast::SuspendStmt::Generator ) ); }
[8cc5cb0]1680 | THROW assignment_expression_opt ';' // handles rethrow
[bb7422a]1681 { $$ = new StatementNode( build_throw( yylloc, $2 ) ); }
[8cc5cb0]1682 | THROWRESUME assignment_expression_opt ';' // handles reresume
[bb7422a]1683 { $$ = new StatementNode( build_resume( yylloc, $2 ) ); }
[8cc5cb0]1684 | THROWRESUME assignment_expression_opt AT assignment_expression ';' // handles reresume
[daf1af8]1685 { $$ = new StatementNode( build_resume_at( $2, $4 ) ); }
[4d51835]1686 ;
[51b73452]1687
[6a276a0]1688fall_through_name: // CFA
1689 FALLTHRU
1690 | FALLTHROUGH
1691 ;
1692
[8b47e50]1693with_statement:
[5b2edbc]1694 WITH '(' tuple_expression_list ')' statement
[bb7422a]1695 { $$ = new StatementNode( build_with( yylloc, $3, $5 ) ); }
[5b2edbc]1696 ;
1697
[bf20567]1698// If MUTEX becomes a general qualifier, there are shift/reduce conflicts, so possibly change syntax to "with mutex".
[b6b3c42]1699mutex_statement:
[bf20567]1700 MUTEX '(' argument_expression_list_opt ')' statement
1701 {
[55266c7]1702 if ( ! $3 ) { SemanticError( yylloc, "syntax error, mutex argument list cannot be empty." ); $$ = nullptr; }
[bb7422a]1703 $$ = new StatementNode( build_mutex( yylloc, $3, $5 ) );
[bf20567]1704 }
[b6b3c42]1705 ;
1706
[51d6d6a]1707when_clause:
[6a276a0]1708 WHEN '(' comma_expression ')' { $$ = $3; }
[51d6d6a]1709 ;
1710
[5b2edbc]1711when_clause_opt:
1712 // empty
[135b431]1713 { $$ = nullptr; }
[51d6d6a]1714 | when_clause
[5b2edbc]1715 ;
1716
[4a063df]1717cast_expression_list:
1718 cast_expression
1719 | cast_expression_list ',' cast_expression
[a491a3c]1720 { SemanticError( yylloc, "List of mutex member is currently unimplemented." ); $$ = nullptr; }
[5b2edbc]1721 ;
1722
1723timeout:
[9fd9d015]1724 TIMEOUT '(' comma_expression ')' { $$ = $3; }
[5b2edbc]1725 ;
1726
[9fd9d015]1727wor:
1728 OROR
1729 | WOR
1730
1731waitfor:
1732 WAITFOR '(' cast_expression ')'
1733 { $$ = $3; }
1734 | WAITFOR '(' cast_expression_list ':' argument_expression_list_opt ')'
[b93c544]1735 { $$ = $3->set_last( $5 ); }
[5b2edbc]1736 ;
1737
[9fd9d015]1738wor_waitfor_clause:
[51d6d6a]1739 when_clause_opt waitfor statement %prec THEN
[9fd9d015]1740 // Called first: create header for WaitForStmt.
[bb7422a]1741 { $$ = build_waitfor( yylloc, new ast::WaitForStmt( yylloc ), $1, $2, maybe_build_compound( yylloc, $3 ) ); }
[70056ed]1742 | wor_waitfor_clause wor when_clause_opt waitfor statement
[bb7422a]1743 { $$ = build_waitfor( yylloc, $1, $3, $4, maybe_build_compound( yylloc, $5 ) ); }
[9fd9d015]1744 | wor_waitfor_clause wor when_clause_opt ELSE statement
[bb7422a]1745 { $$ = build_waitfor_else( yylloc, $1, $3, maybe_build_compound( yylloc, $5 ) ); }
[9fd9d015]1746 | wor_waitfor_clause wor when_clause_opt timeout statement %prec THEN
[bb7422a]1747 { $$ = build_waitfor_timeout( yylloc, $1, $3, $4, maybe_build_compound( yylloc, $5 ) ); }
[afe9e45]1748 // "else" must be conditional after timeout or timeout is never triggered (i.e., it is meaningless)
[65ef0cd]1749 | wor_waitfor_clause wor when_clause_opt timeout statement wor ELSE statement // invalid syntax rule
[55266c7]1750 { SemanticError( yylloc, "syntax error, else clause must be conditional after timeout or timeout never triggered." ); $$ = nullptr; }
[9fd9d015]1751 | wor_waitfor_clause wor when_clause_opt timeout statement wor when_clause ELSE statement
[bb7422a]1752 { $$ = build_waitfor_else( yylloc, build_waitfor_timeout( yylloc, $1, $3, $4, maybe_build_compound( yylloc, $5 ) ), $7, maybe_build_compound( yylloc, $9 ) ); }
[5b2edbc]1753 ;
1754
1755waitfor_statement:
[9fd9d015]1756 wor_waitfor_clause %prec THEN
1757 { $$ = new StatementNode( $1 ); }
1758 ;
1759
1760wand:
1761 ANDAND
1762 | WAND
1763 ;
1764
1765waituntil:
[04c78215]1766 WAITUNTIL '(' comma_expression ')'
[9fd9d015]1767 { $$ = $3; }
1768 ;
1769
1770waituntil_clause:
1771 when_clause_opt waituntil statement
[c86b08d]1772 { $$ = build_waituntil_clause( yylloc, $1, $2, maybe_build_compound( yylloc, $3 ) ); }
[9fd9d015]1773 | '(' wor_waituntil_clause ')'
[c86b08d]1774 { $$ = $2; }
[9fd9d015]1775 ;
1776
1777wand_waituntil_clause:
1778 waituntil_clause %prec THEN
[c86b08d]1779 { $$ = $1; }
[9fd9d015]1780 | waituntil_clause wand wand_waituntil_clause
[c86b08d]1781 { $$ = new ast::WaitUntilStmt::ClauseNode( ast::WaitUntilStmt::ClauseNode::Op::AND, $1, $3 ); }
[9fd9d015]1782 ;
1783
1784wor_waituntil_clause:
1785 wand_waituntil_clause
[c86b08d]1786 { $$ = $1; }
[70056ed]1787 | wor_waituntil_clause wor wand_waituntil_clause
[c86b08d]1788 { $$ = new ast::WaitUntilStmt::ClauseNode( ast::WaitUntilStmt::ClauseNode::Op::OR, $1, $3 ); }
[9fd9d015]1789 | wor_waituntil_clause wor when_clause_opt ELSE statement
[c86b08d]1790 { $$ = new ast::WaitUntilStmt::ClauseNode( ast::WaitUntilStmt::ClauseNode::Op::LEFT_OR, $1, build_waituntil_else( yylloc, $3, maybe_build_compound( yylloc, $5 ) ) ); }
[9fd9d015]1791 ;
1792
1793waituntil_statement:
1794 wor_waituntil_clause %prec THEN
[f259682]1795 { $$ = new StatementNode( build_waituntil_stmt( yylloc, $1 ) ); }
[8b47e50]1796 ;
1797
[11ab0b4a]1798corun_statement:
1799 CORUN statement
[eb779d5]1800 { $$ = new StatementNode( build_corun( yylloc, $2 ) ); }
[11ab0b4a]1801 ;
1802
1803cofor_statement:
1804 COFOR '(' for_control_expression_list ')' statement
[3d9d017]1805 { $$ = new StatementNode( build_cofor( yylloc, $3, maybe_build_compound( yylloc, $5 ) ) ); }
[11ab0b4a]1806 ;
1807
[51b73452]1808exception_statement:
[bb7422a]1809 TRY compound_statement handler_clause %prec THEN
1810 { $$ = new StatementNode( build_try( yylloc, $2, $3, nullptr ) ); }
[4d51835]1811 | TRY compound_statement finally_clause
[bb7422a]1812 { $$ = new StatementNode( build_try( yylloc, $2, nullptr, $3 ) ); }
[cfaabe2c]1813 | TRY compound_statement handler_clause finally_clause
[bb7422a]1814 { $$ = new StatementNode( build_try( yylloc, $2, $3, $4 ) ); }
[4d51835]1815 ;
[51b73452]1816
1817handler_clause:
[098f7ff]1818 handler_key '(' push exception_declaration pop handler_predicate_opt ')' compound_statement
[6611177]1819 { $$ = new ClauseNode( build_catch( yylloc, $1, $4, $6, $8 ) ); }
[098f7ff]1820 | handler_clause handler_key '(' push exception_declaration pop handler_predicate_opt ')' compound_statement
[6611177]1821 { $$ = $1->set_last( new ClauseNode( build_catch( yylloc, $2, $5, $7, $9 ) ) ); }
[994d080]1822 ;
1823
1824handler_predicate_opt:
[7fdb94e1]1825 // empty
[cbce272]1826 { $$ = nullptr; }
[6a276a0]1827 | ';' conditional_expression { $$ = $2; }
[307a732]1828 ;
1829
1830handler_key:
[bb7422a]1831 CATCH { $$ = ast::Terminate; }
1832 | RECOVER { $$ = ast::Terminate; }
1833 | CATCHRESUME { $$ = ast::Resume; }
1834 | FIXUP { $$ = ast::Resume; }
[4d51835]1835 ;
[51b73452]1836
1837finally_clause:
[6611177]1838 FINALLY compound_statement { $$ = new ClauseNode( build_finally( yylloc, $2 ) ); }
[4d51835]1839 ;
[51b73452]1840
1841exception_declaration:
[d0ffed1]1842 // No SUE declaration in parameter list.
1843 type_specifier_nobody
1844 | type_specifier_nobody declarator
[c0a33d2]1845 { $$ = $2->addType( $1 ); }
[d0ffed1]1846 | type_specifier_nobody variable_abstract_declarator
[4d51835]1847 { $$ = $2->addType( $1 ); }
[033ff37]1848 | cfa_abstract_declarator_tuple identifier // CFA
[c0a33d2]1849 { $$ = $1->addName( $2 ); }
[c0aa336]1850 | cfa_abstract_declarator_tuple // CFA
[4d51835]1851 ;
[51b73452]1852
[2a8427c6]1853enable_disable_statement:
1854 enable_disable_key identifier_list compound_statement
1855 ;
1856
1857enable_disable_key:
1858 ENABLE
1859 | DISABLE
1860 ;
1861
[51b73452]1862asm_statement:
[ab57786]1863 ASM asm_volatile_opt '(' string_literal ')' ';'
[bb7422a]1864 { $$ = new StatementNode( build_asm( yylloc, $2, $4, nullptr ) ); }
[ab57786]1865 | ASM asm_volatile_opt '(' string_literal ':' asm_operands_opt ')' ';' // remaining GCC
[bb7422a]1866 { $$ = new StatementNode( build_asm( yylloc, $2, $4, $6 ) ); }
[ab57786]1867 | ASM asm_volatile_opt '(' string_literal ':' asm_operands_opt ':' asm_operands_opt ')' ';'
[bb7422a]1868 { $$ = new StatementNode( build_asm( yylloc, $2, $4, $6, $8 ) ); }
[ab57786]1869 | ASM asm_volatile_opt '(' string_literal ':' asm_operands_opt ':' asm_operands_opt ':' asm_clobbers_list_opt ')' ';'
[bb7422a]1870 { $$ = new StatementNode( build_asm( yylloc, $2, $4, $6, $8, $10 ) ); }
[ab57786]1871 | ASM asm_volatile_opt GOTO '(' string_literal ':' ':' asm_operands_opt ':' asm_clobbers_list_opt ':' label_list ')' ';'
[bb7422a]1872 { $$ = new StatementNode( build_asm( yylloc, $2, $5, nullptr, $8, $10, $12 ) ); }
[7f5566b]1873 ;
1874
1875asm_volatile_opt: // GCC
1876 // empty
1877 { $$ = false; }
1878 | VOLATILE
1879 { $$ = true; }
[4d51835]1880 ;
[b87a5ed]1881
1882asm_operands_opt: // GCC
[4d51835]1883 // empty
[58dd019]1884 { $$ = nullptr; } // use default argument
[4d51835]1885 | asm_operands_list
1886 ;
[b87a5ed]1887
1888asm_operands_list: // GCC
[4d51835]1889 asm_operand
1890 | asm_operands_list ',' asm_operand
[b93c544]1891 { $$ = $1->set_last( $3 ); }
[4d51835]1892 ;
[b87a5ed]1893
1894asm_operand: // GCC
[ab57786]1895 string_literal '(' constant_expression ')'
[32d6fdc]1896 { $$ = new ExpressionNode( new ast::AsmExpr( yylloc, "", maybeMoveBuild( $1 ), maybeMoveBuild( $3 ) ) ); }
[665f432]1897 | '[' IDENTIFIER ']' string_literal '(' constant_expression ')'
[bb7422a]1898 {
[32d6fdc]1899 $$ = new ExpressionNode( new ast::AsmExpr( yylloc, *$2.str, maybeMoveBuild( $4 ), maybeMoveBuild( $6 ) ) );
[bb7422a]1900 delete $2.str;
1901 }
[7f5566b]1902 ;
1903
[4e06c1e]1904asm_clobbers_list_opt: // GCC
[7f5566b]1905 // empty
[58dd019]1906 { $$ = nullptr; } // use default argument
[ab57786]1907 | string_literal
[32d6fdc]1908 { $$ = $1; }
[ab57786]1909 | asm_clobbers_list_opt ',' string_literal
[b93c544]1910 { $$ = $1->set_last( $3 ); }
[4d51835]1911 ;
[b87a5ed]1912
[7f5566b]1913label_list:
[033ff37]1914 identifier
[ab57786]1915 {
[bb7422a]1916 $$ = new LabelNode(); $$->labels.emplace_back( yylloc, *$1 );
[ab57786]1917 delete $1; // allocated by lexer
1918 }
[033ff37]1919 | label_list ',' identifier
[ab57786]1920 {
[bb7422a]1921 $$ = $1; $1->labels.emplace_back( yylloc, *$3 );
[ab57786]1922 delete $3; // allocated by lexer
1923 }
[4d51835]1924 ;
[51b73452]1925
[e1d66c84]1926// ****************************** DECLARATIONS *********************************
[51b73452]1927
[b87a5ed]1928declaration_list_opt: // used at beginning of switch statement
[35718a9]1929 // empty
[58dd019]1930 { $$ = nullptr; }
[4d51835]1931 | declaration_list
1932 ;
[51b73452]1933
1934declaration_list:
[4d51835]1935 declaration
[647e2ea]1936 | declaration_list declaration
1937 { $$ = $1->set_last( $2 ); }
[4d51835]1938 ;
[51b73452]1939
[407bde5]1940KR_parameter_list_opt: // used to declare parameter types in K&R style functions
[4cc585b]1941 // empty
[58dd019]1942 { $$ = nullptr; }
[35718a9]1943 | KR_parameter_list
[4d51835]1944 ;
[51b73452]1945
[35718a9]1946KR_parameter_list:
[c25f16b]1947 c_declaration ';'
1948 { $$ = $1; }
1949 | KR_parameter_list c_declaration ';'
[dc3fbe5]1950 { $$ = $1->set_last( $2 ); }
[4d51835]1951 ;
[b87a5ed]1952
[51b1202]1953local_label_declaration_opt: // GCC, local label
[4d51835]1954 // empty
[51b1202]1955 | local_label_declaration_list
[4d51835]1956 ;
[b87a5ed]1957
[51b1202]1958local_label_declaration_list: // GCC, local label
1959 LABEL local_label_list ';'
1960 | local_label_declaration_list LABEL local_label_list ';'
[4d51835]1961 ;
[b87a5ed]1962
[51b1202]1963local_label_list: // GCC, local label
[033ff37]1964 identifier_or_type_name
1965 | local_label_list ',' identifier_or_type_name
[4d51835]1966 ;
[b87a5ed]1967
[936e9f4]1968declaration: // old & new style declarations
[35718a9]1969 c_declaration ';'
1970 | cfa_declaration ';' // CFA
[b47b827]1971 | static_assert // C11
[4d51835]1972 ;
[b87a5ed]1973
[b9be000b]1974static_assert:
1975 STATICASSERT '(' constant_expression ',' string_literal ')' ';' // C11
[32d6fdc]1976 { $$ = DeclarationNode::newStaticAssert( $3, maybeMoveBuild( $5 ) ); }
[b47b827]1977 | STATICASSERT '(' constant_expression ')' ';' // CFA
[bb7422a]1978 { $$ = DeclarationNode::newStaticAssert( $3, build_constantStr( yylloc, *new string( "\"\"" ) ) ); }
[b9be000b]1979
[de62360d]1980// C declaration syntax is notoriously confusing and error prone. Cforall provides its own type, variable and function
1981// declarations. CFA declarations use the same declaration tokens as in C; however, CFA places declaration modifiers to
1982// the left of the base type, while C declarations place modifiers to the right of the base type. CFA declaration
1983// modifiers are interpreted from left to right and the entire type specification is distributed across all variables in
1984// the declaration list (as in Pascal). ANSI C and the new CFA declarations may appear together in the same program
1985// block, but cannot be mixed within a specific declaration.
[c11e31c]1986//
[b87a5ed]1987// CFA C
1988// [10] int x; int x[10]; // array of 10 integers
1989// [10] * char y; char *y[10]; // array of 10 pointers to char
1990
[c0aa336]1991cfa_declaration: // CFA
[4cc585b]1992 cfa_variable_declaration
1993 | cfa_typedef_declaration
1994 | cfa_function_declaration
1995 | type_declaring_list
[2501ae5]1996 { SemanticError( yylloc, "otype declaration is currently unimplemented." ); $$ = nullptr; }
[4cc585b]1997 | trait_specifier
[4d51835]1998 ;
[b87a5ed]1999
[c0aa336]2000cfa_variable_declaration: // CFA
2001 cfa_variable_specifier initializer_opt
[7fdb94e1]2002 { $$ = $1->addInitializer( $2 ); }
[c0aa336]2003 | declaration_qualifier_list cfa_variable_specifier initializer_opt
[de62360d]2004 // declaration_qualifier_list also includes type_qualifier_list, so a semantic check is necessary to preclude
2005 // them as a type_qualifier cannot appear in that context.
[7fdb94e1]2006 { $$ = $2->addQualifiers( $1 )->addInitializer( $3 ); }
[c0aa336]2007 | cfa_variable_declaration pop ',' push identifier_or_type_name initializer_opt
[dc3fbe5]2008 { $$ = $1->set_last( $1->cloneType( $5 )->addInitializer( $6 ) ); }
[4d51835]2009 ;
[b87a5ed]2010
[c0aa336]2011cfa_variable_specifier: // CFA
[de62360d]2012 // A semantic check is required to ensure asm_name only appears on declarations with implicit or explicit static
2013 // storage-class
[c0aa336]2014 cfa_abstract_declarator_no_tuple identifier_or_type_name asm_name_opt
[7fdb94e1]2015 { $$ = $1->addName( $2 )->addAsmName( $3 ); }
[c0aa336]2016 | cfa_abstract_tuple identifier_or_type_name asm_name_opt
[7fdb94e1]2017 { $$ = $1->addName( $2 )->addAsmName( $3 ); }
[c0aa336]2018 | type_qualifier_list cfa_abstract_tuple identifier_or_type_name asm_name_opt
[7fdb94e1]2019 { $$ = $2->addQualifiers( $1 )->addName( $3 )->addAsmName( $4 ); }
[4d51835]2020 ;
[b87a5ed]2021
[c0aa336]2022cfa_function_declaration: // CFA
2023 cfa_function_specifier
2024 | type_qualifier_list cfa_function_specifier
[7fdb94e1]2025 { $$ = $2->addQualifiers( $1 ); }
[c0aa336]2026 | declaration_qualifier_list cfa_function_specifier
[7fdb94e1]2027 { $$ = $2->addQualifiers( $1 ); }
[c0aa336]2028 | declaration_qualifier_list type_qualifier_list cfa_function_specifier
[7fdb94e1]2029 { $$ = $3->addQualifiers( $1 )->addQualifiers( $2 ); }
[647e2ea]2030 | cfa_function_declaration ',' identifier_or_type_name '(' push cfa_parameter_list_ellipsis_opt pop ')'
[4d51835]2031 {
[481115f]2032 // Append the return type at the start (left-hand-side) to each identifier in the list.
2033 DeclarationNode * ret = new DeclarationNode;
[5bf685f]2034 ret->type = maybeCopy( $1->type->base );
[dc3fbe5]2035 $$ = $1->set_last( DeclarationNode::newFunction( $3, ret, $6, nullptr ) );
[4d51835]2036 }
2037 ;
[b87a5ed]2038
[c0aa336]2039cfa_function_specifier: // CFA
[647e2ea]2040 '[' ']' identifier '(' push cfa_parameter_list_ellipsis_opt pop ')' attribute_list_opt
2041 { $$ = DeclarationNode::newFunction( $3, DeclarationNode::newTuple( nullptr ), $6, nullptr )->addQualifiers( $9 ); }
2042 | '[' ']' TYPEDEFname '(' push cfa_parameter_list_ellipsis_opt pop ')' attribute_list_opt
2043 { $$ = DeclarationNode::newFunction( $3, DeclarationNode::newTuple( nullptr ), $6, nullptr )->addQualifiers( $9 ); }
2044 // | '[' ']' TYPEGENname '(' push cfa_parameter_list_ellipsis_opt pop ')' attribute_list_opt
2045 // { $$ = DeclarationNode::newFunction( $3, DeclarationNode::newTuple( nullptr ), $6, nullptr )->addQualifiers( $9 ); }
2046
[2871210]2047 // identifier_or_type_name must be broken apart because of the sequence:
[4d51835]2048 //
[647e2ea]2049 // '[' ']' identifier_or_type_name '(' cfa_parameter_list_ellipsis_opt ')'
[4d51835]2050 // '[' ']' type_specifier
2051 //
[2871210]2052 // type_specifier can resolve to just TYPEDEFname (e.g., typedef int T; int f( T );). Therefore this must be
2053 // flattened to allow lookahead to the '(' without having to reduce identifier_or_type_name.
[647e2ea]2054 | cfa_abstract_tuple identifier_or_type_name '(' push cfa_parameter_list_ellipsis_opt pop ')' attribute_list_opt
[c0aa336]2055 // To obtain LR(1 ), this rule must be factored out from function return type (see cfa_abstract_declarator).
[a5f9444]2056 { $$ = DeclarationNode::newFunction( $2, $1, $5, nullptr )->addQualifiers( $8 ); }
[647e2ea]2057 | cfa_function_return identifier_or_type_name '(' push cfa_parameter_list_ellipsis_opt pop ')' attribute_list_opt
[a5f9444]2058 { $$ = DeclarationNode::newFunction( $2, $1, $5, nullptr )->addQualifiers( $8 ); }
[4d51835]2059 ;
[b87a5ed]2060
[c0aa336]2061cfa_function_return: // CFA
[c0a33d2]2062 '[' push cfa_parameter_list pop ']'
2063 { $$ = DeclarationNode::newTuple( $3 ); }
[647e2ea]2064 | '[' push cfa_parameter_list ',' cfa_abstract_parameter_list pop ']'
[b048dc3]2065 // To obtain LR(1 ), the last cfa_abstract_parameter_list is added into this flattened rule to lookahead to the ']'.
[647e2ea]2066 { $$ = DeclarationNode::newTuple( $3->set_last( $5 ) ); }
[4d51835]2067 ;
[b87a5ed]2068
[c0aa336]2069cfa_typedef_declaration: // CFA
2070 TYPEDEF cfa_variable_specifier
[4d51835]2071 {
[71a422a]2072 typedefTable.addToEnclosingScope( *$2->name, TYPEDEFname, "cfa_typedef_declaration 1" );
[4d51835]2073 $$ = $2->addTypedef();
2074 }
[c0aa336]2075 | TYPEDEF cfa_function_specifier
[4d51835]2076 {
[71a422a]2077 typedefTable.addToEnclosingScope( *$2->name, TYPEDEFname, "cfa_typedef_declaration 2" );
[4d51835]2078 $$ = $2->addTypedef();
2079 }
[647e2ea]2080 | cfa_typedef_declaration ',' identifier
[4d51835]2081 {
[647e2ea]2082 typedefTable.addToEnclosingScope( *$3, TYPEDEFname, "cfa_typedef_declaration 3" );
2083 $$ = $1->set_last( $1->cloneType( $3 ) );
[4d51835]2084 }
2085 ;
[b87a5ed]2086
[de62360d]2087// Traditionally typedef is part of storage-class specifier for syntactic convenience only. Here, it is factored out as
2088// a separate form of declaration, which syntactically precludes storage-class specifiers and initialization.
[51b73452]2089
2090typedef_declaration:
[4d51835]2091 TYPEDEF type_specifier declarator
2092 {
[71a422a]2093 typedefTable.addToEnclosingScope( *$3->name, TYPEDEFname, "typedef_declaration 1" );
[ac235a8]2094 if ( $2->type->forall || ($2->type->kind == TypeData::Aggregate && $2->type->aggregate.params) ) {
2095 SemanticError( yylloc, "forall qualifier in typedef is currently unimplemented." ); $$ = nullptr;
2096 } else $$ = $3->addType( $2 )->addTypedef(); // watchout frees $2 and $3
[4d51835]2097 }
[c25f16b]2098 | typedef_declaration ',' declarator
[4d51835]2099 {
[c25f16b]2100 typedefTable.addToEnclosingScope( *$3->name, TYPEDEFname, "typedef_declaration 2" );
[dc3fbe5]2101 $$ = $1->set_last( $1->cloneBaseType( $3 )->addTypedef() );
[4d51835]2102 }
[de62360d]2103 | type_qualifier_list TYPEDEF type_specifier declarator // remaining OBSOLESCENT (see 2 )
[ac235a8]2104 { SemanticError( yylloc, "Type qualifiers/specifiers before TYPEDEF is deprecated, move after TYPEDEF." ); $$ = nullptr; }
[4d51835]2105 | type_specifier TYPEDEF declarator
[ac235a8]2106 { SemanticError( yylloc, "Type qualifiers/specifiers before TYPEDEF is deprecated, move after TYPEDEF." ); $$ = nullptr; }
[4d51835]2107 | type_specifier TYPEDEF type_qualifier_list declarator
[ac235a8]2108 { SemanticError( yylloc, "Type qualifiers/specifiers before TYPEDEF is deprecated, move after TYPEDEF." ); $$ = nullptr; }
[4d51835]2109 ;
[b87a5ed]2110
[721f17a]2111typedef_expression:
[25744d2]2112 // deprecated GCC, naming expression type: typedef name = exp; gives a name to the type of an expression
[033ff37]2113 TYPEDEF identifier '=' assignment_expression
[4d51835]2114 {
[ac235a8]2115 SemanticError( yylloc, "TYPEDEF expression is deprecated, use typeof(...) instead." ); $$ = nullptr;
[4d51835]2116 }
[c25f16b]2117 | typedef_expression ',' identifier '=' assignment_expression
[4d51835]2118 {
[ac235a8]2119 SemanticError( yylloc, "TYPEDEF expression is deprecated, use typeof(...) instead." ); $$ = nullptr;
[4d51835]2120 }
2121 ;
[51b73452]2122
[c0aa336]2123c_declaration:
[4cc585b]2124 declaration_specifier declaring_list
[7fdb94e1]2125 { $$ = distAttr( $1, $2 ); }
[4cc585b]2126 | typedef_declaration
[25744d2]2127 | typedef_expression // deprecated GCC, naming expression type
[4cc585b]2128 | sue_declaration_specifier
[0bcd707]2129 {
2130 assert( $1->type );
[1a73dbb]2131 if ( $1->type->qualifiers.any() ) { // CV qualifiers ?
[55266c7]2132 SemanticError( yylloc, "syntax error, useless type qualifier(s) in empty declaration." ); $$ = nullptr;
[1a73dbb]2133 }
2134 // enums are never empty declarations because there must have at least one enumeration.
2135 if ( $1->type->kind == TypeData::AggregateInst && $1->storageClasses.any() ) { // storage class ?
[55266c7]2136 SemanticError( yylloc, "syntax error, useless storage qualifier(s) in empty aggregate declaration." ); $$ = nullptr;
[0bcd707]2137 }
2138 }
[4d51835]2139 ;
[51b73452]2140
2141declaring_list:
[de62360d]2142 // A semantic check is required to ensure asm_name only appears on declarations with implicit or explicit static
2143 // storage-class
[1f771fc]2144 variable_declarator asm_name_opt initializer_opt
[7fdb94e1]2145 { $$ = $1->addAsmName( $2 )->addInitializer( $3 ); }
[1f771fc]2146 | variable_type_redeclarator asm_name_opt initializer_opt
[7fdb94e1]2147 { $$ = $1->addAsmName( $2 )->addInitializer( $3 ); }
[1f771fc]2148
2149 | general_function_declarator asm_name_opt
2150 { $$ = $1->addAsmName( $2 )->addInitializer( nullptr ); }
2151 | general_function_declarator asm_name_opt '=' VOID
2152 { $$ = $1->addAsmName( $2 )->addInitializer( new InitializerNode( true ) ); }
2153
[4d51835]2154 | declaring_list ',' attribute_list_opt declarator asm_name_opt initializer_opt
[dc3fbe5]2155 { $$ = $1->set_last( $4->addQualifiers( $3 )->addAsmName( $5 )->addInitializer( $6 ) ); }
[4d51835]2156 ;
[b87a5ed]2157
[1f771fc]2158general_function_declarator:
2159 function_type_redeclarator
2160 | function_declarator
2161 ;
2162
[b87a5ed]2163declaration_specifier: // type specifier + storage class
[4d51835]2164 basic_declaration_specifier
[84d58c5]2165 | type_declaration_specifier
[79a6b17]2166 | sue_declaration_specifier
[0442f93f]2167 | sue_declaration_specifier invalid_types // invalid syntax rule
[79a6b17]2168 {
[b1f2007d]2169 SemanticError( yylloc, "syntax error, expecting ';' at end of \"%s\" declaration.",
2170 $1->type->enumeration.name ? "enum" : ast::AggregateDecl::aggrString( $1->type->aggregate.kind ) );
[79a6b17]2171 $$ = nullptr;
2172 }
2173 ;
2174
2175invalid_types:
2176 aggregate_key
2177 | basic_type_name
2178 | indirect_type
[4d51835]2179 ;
[b87a5ed]2180
[d0ffed1]2181declaration_specifier_nobody: // type specifier + storage class - {...}
2182 // Preclude SUE declarations in restricted scopes:
2183 //
2184 // int f( struct S { int i; } s1, Struct S s2 ) { struct S s3; ... }
2185 //
2186 // because it is impossible to call f due to name equivalence.
2187 basic_declaration_specifier
2188 | sue_declaration_specifier_nobody
[84d58c5]2189 | type_declaration_specifier
[d0ffed1]2190 ;
2191
2192type_specifier: // type specifier
[4d51835]2193 basic_type_specifier
2194 | sue_type_specifier
[84d58c5]2195 | type_type_specifier
[4d51835]2196 ;
[b87a5ed]2197
[d0ffed1]2198type_specifier_nobody: // type specifier - {...}
2199 // Preclude SUE declarations in restricted scopes:
2200 //
2201 // int f( struct S { int i; } s1, Struct S s2 ) { struct S s3; ... }
2202 //
2203 // because it is impossible to call f due to name equivalence.
2204 basic_type_specifier
2205 | sue_type_specifier_nobody
[84d58c5]2206 | type_type_specifier
[d0ffed1]2207 ;
2208
[b87a5ed]2209type_qualifier_list_opt: // GCC, used in asm_statement
[4d51835]2210 // empty
[58dd019]2211 { $$ = nullptr; }
[4d51835]2212 | type_qualifier_list
2213 ;
[51b73452]2214
2215type_qualifier_list:
[de62360d]2216 // A semantic check is necessary to ensure a type qualifier is appropriate for the kind of declaration.
[4d51835]2217 //
[de62360d]2218 // ISO/IEC 9899:1999 Section 6.7.3(4 ) : If the same qualifier appears more than once in the same
2219 // specifier-qualifier-list, either directly or via one or more typedefs, the behavior is the same as if it
2220 // appeared only once.
[4d51835]2221 type_qualifier
2222 | type_qualifier_list type_qualifier
2223 { $$ = $1->addQualifiers( $2 ); }
2224 ;
[51b73452]2225
2226type_qualifier:
[4d51835]2227 type_qualifier_name
[6cef439]2228 { $$ = DeclarationNode::newFromTypeData( $1 ); }
[b1f2007d]2229 | attribute // trick handles most attribute locations
[4d51835]2230 ;
[51b73452]2231
2232type_qualifier_name:
[4d51835]2233 CONST
[6cef439]2234 { $$ = build_type_qualifier( ast::CV::Const ); }
[4d51835]2235 | RESTRICT
[6cef439]2236 { $$ = build_type_qualifier( ast::CV::Restrict ); }
[4d51835]2237 | VOLATILE
[6cef439]2238 { $$ = build_type_qualifier( ast::CV::Volatile ); }
[4d51835]2239 | ATOMIC
[6cef439]2240 { $$ = build_type_qualifier( ast::CV::Atomic ); }
[7e13b11]2241
2242 // forall must be a CV qualifier because it can appear in places where SC qualifiers are disallowed.
2243 //
2244 // void foo( forall( T ) T (*)( T ) ); // forward declaration
2245 // void bar( static int ); // static disallowed (gcc/CFA)
[a16a7ec]2246 | forall
[6cef439]2247 { $$ = build_forall( $1 ); }
[a16a7ec]2248 ;
2249
2250forall:
[35718a9]2251 FORALL '(' type_parameter_list ')' // CFA
[7a24d76]2252 { $$ = $3; }
[4d51835]2253 ;
[51b73452]2254
2255declaration_qualifier_list:
[4d51835]2256 storage_class_list
[de62360d]2257 | type_qualifier_list storage_class_list // remaining OBSOLESCENT (see 2 )
[4d51835]2258 { $$ = $1->addQualifiers( $2 ); }
2259 | declaration_qualifier_list type_qualifier_list storage_class_list
2260 { $$ = $1->addQualifiers( $2 )->addQualifiers( $3 ); }
2261 ;
[51b73452]2262
2263storage_class_list:
[de62360d]2264 // A semantic check is necessary to ensure a storage class is appropriate for the kind of declaration and that
2265 // only one of each is specified, except for inline, which can appear with the others.
[4d51835]2266 //
[de62360d]2267 // ISO/IEC 9899:1999 Section 6.7.1(2) : At most, one storage-class specifier may be given in the declaration
2268 // specifiers in a declaration.
[4d51835]2269 storage_class
2270 | storage_class_list storage_class
2271 { $$ = $1->addQualifiers( $2 ); }
2272 ;
[51b73452]2273
2274storage_class:
[4d51835]2275 EXTERN
[36e6f10]2276 { $$ = DeclarationNode::newStorageClass( ast::Storage::Extern ); }
[4d51835]2277 | STATIC
[36e6f10]2278 { $$ = DeclarationNode::newStorageClass( ast::Storage::Static ); }
[4d51835]2279 | AUTO
[36e6f10]2280 { $$ = DeclarationNode::newStorageClass( ast::Storage::Auto ); }
[4d51835]2281 | REGISTER
[36e6f10]2282 { $$ = DeclarationNode::newStorageClass( ast::Storage::Register ); }
[ed9a1ae]2283 | THREADLOCALGCC // GCC
[36e6f10]2284 { $$ = DeclarationNode::newStorageClass( ast::Storage::ThreadLocalGcc ); }
[ed9a1ae]2285 | THREADLOCALC11 // C11
[36e6f10]2286 { $$ = DeclarationNode::newStorageClass( ast::Storage::ThreadLocalC11 ); }
[dd020c0]2287 // Put function specifiers here to simplify parsing rules, but separate them semantically.
[4d51835]2288 | INLINE // C99
[36e6f10]2289 { $$ = DeclarationNode::newFuncSpecifier( ast::Function::Inline ); }
[4d51835]2290 | FORTRAN // C99
[36e6f10]2291 { $$ = DeclarationNode::newFuncSpecifier( ast::Function::Fortran ); }
[68cd1ce]2292 | NORETURN // C11
[36e6f10]2293 { $$ = DeclarationNode::newFuncSpecifier( ast::Function::Noreturn ); }
[4d51835]2294 ;
[51b73452]2295
2296basic_type_name:
[6cef439]2297 basic_type_name_type
2298 { $$ = DeclarationNode::newFromTypeData( $1 ); }
2299 ;
2300
2301// Just an intermediate value for conversion.
2302basic_type_name_type:
[201aeb9]2303 VOID
[6cef439]2304 { $$ = build_basic_type( DeclarationNode::Void ); }
[4d51835]2305 | BOOL // C99
[6cef439]2306 { $$ = build_basic_type( DeclarationNode::Bool ); }
[201aeb9]2307 | CHAR
[6cef439]2308 { $$ = build_basic_type( DeclarationNode::Char ); }
[201aeb9]2309 | INT
[6cef439]2310 { $$ = build_basic_type( DeclarationNode::Int ); }
[201aeb9]2311 | INT128
[6cef439]2312 { $$ = build_basic_type( DeclarationNode::Int128 ); }
[f1da02c]2313 | UINT128
[6cef439]2314 { $$ = addType( build_basic_type( DeclarationNode::Int128 ), build_signedness( DeclarationNode::Unsigned ) ); }
[201aeb9]2315 | FLOAT
[6cef439]2316 { $$ = build_basic_type( DeclarationNode::Float ); }
[201aeb9]2317 | DOUBLE
[6cef439]2318 { $$ = build_basic_type( DeclarationNode::Double ); }
[e15853c]2319 | uuFLOAT80
[6cef439]2320 { $$ = build_basic_type( DeclarationNode::uuFloat80 ); }
[e15853c]2321 | uuFLOAT128
[6cef439]2322 { $$ = build_basic_type( DeclarationNode::uuFloat128 ); }
[e15853c]2323 | uFLOAT16
[6cef439]2324 { $$ = build_basic_type( DeclarationNode::uFloat16 ); }
[e15853c]2325 | uFLOAT32
[6cef439]2326 { $$ = build_basic_type( DeclarationNode::uFloat32 ); }
[e15853c]2327 | uFLOAT32X
[6cef439]2328 { $$ = build_basic_type( DeclarationNode::uFloat32x ); }
[e15853c]2329 | uFLOAT64
[6cef439]2330 { $$ = build_basic_type( DeclarationNode::uFloat64 ); }
[e15853c]2331 | uFLOAT64X
[6cef439]2332 { $$ = build_basic_type( DeclarationNode::uFloat64x ); }
[e15853c]2333 | uFLOAT128
[6cef439]2334 { $$ = build_basic_type( DeclarationNode::uFloat128 ); }
[15f769c]2335 | DECIMAL32
2336 { SemanticError( yylloc, "_Decimal32 is currently unimplemented." ); $$ = nullptr; }
2337 | DECIMAL64
2338 { SemanticError( yylloc, "_Decimal64 is currently unimplemented." ); $$ = nullptr; }
2339 | DECIMAL128
2340 { SemanticError( yylloc, "_Decimal128 is currently unimplemented." ); $$ = nullptr; }
[4d51835]2341 | COMPLEX // C99
[6cef439]2342 { $$ = build_complex_type( DeclarationNode::Complex ); }
[4d51835]2343 | IMAGINARY // C99
[6cef439]2344 { $$ = build_complex_type( DeclarationNode::Imaginary ); }
[201aeb9]2345 | SIGNED
[6cef439]2346 { $$ = build_signedness( DeclarationNode::Signed ); }
[201aeb9]2347 | UNSIGNED
[6cef439]2348 { $$ = build_signedness( DeclarationNode::Unsigned ); }
[201aeb9]2349 | SHORT
[6cef439]2350 { $$ = build_length( DeclarationNode::Short ); }
[201aeb9]2351 | LONG
[6cef439]2352 { $$ = build_length( DeclarationNode::Long ); }
[59c7e3e]2353 | VA_LIST // GCC, __builtin_va_list
[6cef439]2354 { $$ = build_builtin_type( DeclarationNode::Valist ); }
[f673c13c]2355 | AUTO_TYPE
[6cef439]2356 { $$ = build_builtin_type( DeclarationNode::AutoType ); }
[1f652a7]2357 | vtable
2358 ;
2359
2360vtable_opt:
2361 // empty
2362 { $$ = nullptr; }
[9380add]2363 | vtable
[1f652a7]2364 ;
2365
2366vtable:
[8f6f3729]2367 VTABLE '(' type_name ')' default_opt
[6cef439]2368 { $$ = build_vtable_type( $3 ); }
[1f652a7]2369 ;
2370
2371default_opt:
2372 // empty
2373 { $$ = nullptr; }
2374 | DEFAULT
2375 { SemanticError( yylloc, "vtable default is currently unimplemented." ); $$ = nullptr; }
[4d51835]2376 ;
[51b73452]2377
2378basic_declaration_specifier:
[4d51835]2379 // A semantic check is necessary for conflicting storage classes.
2380 basic_type_specifier
2381 | declaration_qualifier_list basic_type_specifier
2382 { $$ = $2->addQualifiers( $1 ); }
2383 | basic_declaration_specifier storage_class // remaining OBSOLESCENT (see 2)
2384 { $$ = $1->addQualifiers( $2 ); }
2385 | basic_declaration_specifier storage_class type_qualifier_list
2386 { $$ = $1->addQualifiers( $2 )->addQualifiers( $3 ); }
2387 | basic_declaration_specifier storage_class basic_type_specifier
2388 { $$ = $3->addQualifiers( $2 )->addType( $1 ); }
2389 ;
[51b73452]2390
2391basic_type_specifier:
[84d58c5]2392 direct_type
[f38e7d7]2393 // Cannot have type modifiers, e.g., short, long, etc.
[84d58c5]2394 | type_qualifier_list_opt indirect_type type_qualifier_list_opt
[4d51835]2395 { $$ = $2->addQualifiers( $1 )->addQualifiers( $3 ); }
2396 ;
[51b73452]2397
[84d58c5]2398direct_type:
[4d51835]2399 basic_type_name
2400 | type_qualifier_list basic_type_name
2401 { $$ = $2->addQualifiers( $1 ); }
[84d58c5]2402 | direct_type type_qualifier
[4d51835]2403 { $$ = $1->addQualifiers( $2 ); }
[84d58c5]2404 | direct_type basic_type_name
[4d51835]2405 { $$ = $1->addType( $2 ); }
2406 ;
[51b73452]2407
[84d58c5]2408indirect_type:
[b6ad601]2409 TYPEOF '(' type ')' // GCC: typeof( x ) y;
[4d51835]2410 { $$ = $3; }
[b6ad601]2411 | TYPEOF '(' comma_expression ')' // GCC: typeof( a+b ) y;
[4d51835]2412 { $$ = DeclarationNode::newTypeof( $3 ); }
[b6ad601]2413 | BASETYPEOF '(' type ')' // CFA: basetypeof( x ) y;
[bb7422a]2414 { $$ = DeclarationNode::newTypeof( new ExpressionNode( new ast::TypeExpr( yylloc, maybeMoveBuildType( $3 ) ) ), true ); }
[b6ad601]2415 | BASETYPEOF '(' comma_expression ')' // CFA: basetypeof( a+b ) y;
2416 { $$ = DeclarationNode::newTypeof( $3, true ); }
[f38e7d7]2417 | ZERO_T // CFA
[6cef439]2418 { $$ = DeclarationNode::newFromTypeData( build_builtin_type( DeclarationNode::Zero ) ); }
[f38e7d7]2419 | ONE_T // CFA
[6cef439]2420 { $$ = DeclarationNode::newFromTypeData( build_builtin_type( DeclarationNode::One ) ); }
[4d51835]2421 ;
[51b73452]2422
[d0ffed1]2423sue_declaration_specifier: // struct, union, enum + storage class + type specifier
[4d51835]2424 sue_type_specifier
2425 | declaration_qualifier_list sue_type_specifier
2426 { $$ = $2->addQualifiers( $1 ); }
2427 | sue_declaration_specifier storage_class // remaining OBSOLESCENT (see 2)
2428 { $$ = $1->addQualifiers( $2 ); }
2429 | sue_declaration_specifier storage_class type_qualifier_list
2430 { $$ = $1->addQualifiers( $2 )->addQualifiers( $3 ); }
2431 ;
[51b73452]2432
[d0ffed1]2433sue_type_specifier: // struct, union, enum + type specifier
2434 elaborated_type
[fdca7c6]2435 | type_qualifier_list
2436 { if ( $1->type != nullptr && $1->type->forall ) forall = true; } // remember generic type
2437 elaborated_type
2438 { $$ = $3->addQualifiers( $1 ); }
[4d51835]2439 | sue_type_specifier type_qualifier
[284da8c]2440 {
2441 if ( $2->type != nullptr && $2->type->forall ) forall = true; // remember generic type
2442 $$ = $1->addQualifiers( $2 );
2443 }
[4d51835]2444 ;
[51b73452]2445
[d0ffed1]2446sue_declaration_specifier_nobody: // struct, union, enum - {...} + storage class + type specifier
2447 sue_type_specifier_nobody
2448 | declaration_qualifier_list sue_type_specifier_nobody
2449 { $$ = $2->addQualifiers( $1 ); }
2450 | sue_declaration_specifier_nobody storage_class // remaining OBSOLESCENT (see 2)
2451 { $$ = $1->addQualifiers( $2 ); }
2452 | sue_declaration_specifier_nobody storage_class type_qualifier_list
2453 { $$ = $1->addQualifiers( $2 )->addQualifiers( $3 ); }
2454 ;
2455
2456sue_type_specifier_nobody: // struct, union, enum - {...} + type specifier
2457 elaborated_type_nobody
2458 | type_qualifier_list elaborated_type_nobody
2459 { $$ = $2->addQualifiers( $1 ); }
2460 | sue_type_specifier_nobody type_qualifier
2461 { $$ = $1->addQualifiers( $2 ); }
2462 ;
2463
[84d58c5]2464type_declaration_specifier:
2465 type_type_specifier
2466 | declaration_qualifier_list type_type_specifier
[4d51835]2467 { $$ = $2->addQualifiers( $1 ); }
[84d58c5]2468 | type_declaration_specifier storage_class // remaining OBSOLESCENT (see 2)
[4d51835]2469 { $$ = $1->addQualifiers( $2 ); }
[84d58c5]2470 | type_declaration_specifier storage_class type_qualifier_list
[4d51835]2471 { $$ = $1->addQualifiers( $2 )->addQualifiers( $3 ); }
2472 ;
[b87a5ed]2473
[84d58c5]2474type_type_specifier: // typedef types
2475 type_name
[6cef439]2476 { $$ = DeclarationNode::newFromTypeData( $1 ); }
[84d58c5]2477 | type_qualifier_list type_name
[6cef439]2478 { $$ = DeclarationNode::newFromTypeData( $2 )->addQualifiers( $1 ); }
[84d58c5]2479 | type_type_specifier type_qualifier
2480 { $$ = $1->addQualifiers( $2 ); }
2481 ;
2482
2483type_name:
[4d51835]2484 TYPEDEFname
[6cef439]2485 { $$ = build_typedef( $1 ); }
[84d58c5]2486 | '.' TYPEDEFname
[6cef439]2487 { $$ = build_qualified_type( build_global_scope(), build_typedef( $2 ) ); }
[84d58c5]2488 | type_name '.' TYPEDEFname
[6cef439]2489 { $$ = build_qualified_type( $1, build_typedef( $3 ) ); }
[84d58c5]2490 | typegen_name
2491 | '.' typegen_name
[6cef439]2492 { $$ = build_qualified_type( build_global_scope(), $2 ); }
[84d58c5]2493 | type_name '.' typegen_name
[6cef439]2494 { $$ = build_qualified_type( $1, $3 ); }
[84d58c5]2495 ;
2496
2497typegen_name: // CFA
[65d6de4]2498 TYPEGENname
[6cef439]2499 { $$ = build_type_gen( $1, nullptr ); }
[65d6de4]2500 | TYPEGENname '(' ')'
[6cef439]2501 { $$ = build_type_gen( $1, nullptr ); }
[67cf18c]2502 | TYPEGENname '(' type_list ')'
[6cef439]2503 { $$ = build_type_gen( $1, $3 ); }
[4d51835]2504 ;
[51b73452]2505
[d0ffed1]2506elaborated_type: // struct, union, enum
[c0aa336]2507 aggregate_type
2508 | enum_type
[4d51835]2509 ;
[51b73452]2510
[d0ffed1]2511elaborated_type_nobody: // struct, union, enum - {...}
2512 aggregate_type_nobody
2513 | enum_type_nobody
2514 ;
2515
[7e13b11]2516// ************************** AGGREGATE *******************************
2517
[d0ffed1]2518aggregate_type: // struct, union
[fc20514]2519 aggregate_key attribute_list_opt
2520 { forall = false; } // reset
2521 '{' field_declaration_list_opt '}' type_parameters_opt
[777ed2b]2522 { $$ = DeclarationNode::newAggregate( $1, nullptr, $7, $5, true )->addQualifiers( $2 ); }
[73f04fd]2523 | aggregate_key attribute_list_opt identifier
[fdca7c6]2524 {
[71a422a]2525 typedefTable.makeTypedef( *$3, forall || typedefTable.getEnclForall() ? TYPEGENname : TYPEDEFname, "aggregate_type: 1" );
[fdca7c6]2526 forall = false; // reset
2527 }
[284da8c]2528 '{' field_declaration_list_opt '}' type_parameters_opt
[d8454b9]2529 {
2530 $$ = DeclarationNode::newAggregate( $1, $3, $8, $6, true )->addQualifiers( $2 );
2531 }
[f9c3100]2532 | aggregate_key attribute_list_opt TYPEDEFname // unqualified type name
[407bde5]2533 {
[71a422a]2534 typedefTable.makeTypedef( *$3, forall || typedefTable.getEnclForall() ? TYPEGENname : TYPEDEFname, "aggregate_type: 2" );
[407bde5]2535 forall = false; // reset
2536 }
[284da8c]2537 '{' field_declaration_list_opt '}' type_parameters_opt
[f9c3100]2538 {
[6cef439]2539 DeclarationNode::newFromTypeData( build_typedef( $3 ) );
[f9c3100]2540 $$ = DeclarationNode::newAggregate( $1, $3, $8, $6, true )->addQualifiers( $2 );
2541 }
2542 | aggregate_key attribute_list_opt TYPEGENname // unqualified type name
2543 {
[71a422a]2544 typedefTable.makeTypedef( *$3, forall || typedefTable.getEnclForall() ? TYPEGENname : TYPEDEFname, "aggregate_type: 3" );
[f9c3100]2545 forall = false; // reset
2546 }
2547 '{' field_declaration_list_opt '}' type_parameters_opt
2548 {
[6cef439]2549 DeclarationNode::newFromTypeData( build_type_gen( $3, nullptr ) );
[f9c3100]2550 $$ = DeclarationNode::newAggregate( $1, $3, $8, $6, true )->addQualifiers( $2 );
2551 }
[d0ffed1]2552 | aggregate_type_nobody
2553 ;
2554
[284da8c]2555type_parameters_opt:
2556 // empty
2557 { $$ = nullptr; } %prec '}'
2558 | '(' type_list ')'
2559 { $$ = $2; }
2560 ;
2561
[d0ffed1]2562aggregate_type_nobody: // struct, union - {...}
[73f04fd]2563 aggregate_key attribute_list_opt identifier
[84d58c5]2564 {
[71a422a]2565 typedefTable.makeTypedef( *$3, forall || typedefTable.getEnclForall() ? TYPEGENname : TYPEDEFname, "aggregate_type_nobody" );
[9997fee]2566 forall = false; // reset
[84d58c5]2567 $$ = DeclarationNode::newAggregate( $1, $3, nullptr, nullptr, false )->addQualifiers( $2 );
2568 }
[73f04fd]2569 | aggregate_key attribute_list_opt type_name
[65d6de4]2570 {
[fc20514]2571 forall = false; // reset
[65d6de4]2572 // Create new generic declaration with same name as previous forward declaration, where the IDENTIFIER is
2573 // switched to a TYPEGENname. Link any generic arguments from typegen_name to new generic declaration and
[6cef439]2574 if ( $3->kind == TypeData::SymbolicInst && ! $3->symbolic.isTypedef ) {
2575 $$ = DeclarationNode::newFromTypeData( $3 )->addQualifiers( $2 );
[9fa61f5]2576 } else {
[6cef439]2577 $$ = DeclarationNode::newAggregate( $1, $3->symbolic.name, $3->symbolic.actuals, nullptr, false )->addQualifiers( $2 );
2578 $3->symbolic.name = nullptr; // copied to $$
2579 $3->symbolic.actuals = nullptr;
[9fa61f5]2580 delete $3;
2581 }
[65d6de4]2582 }
[4d51835]2583 ;
[51b73452]2584
2585aggregate_key:
[e307e12]2586 aggregate_data
2587 | aggregate_control
2588 ;
2589
2590aggregate_data:
[1f652a7]2591 STRUCT vtable_opt
[bb7422a]2592 { $$ = ast::AggregateDecl::Struct; }
[c0aa336]2593 | UNION
[bb7422a]2594 { $$ = ast::AggregateDecl::Union; }
[e307e12]2595 | EXCEPTION // CFA
[bb7422a]2596 { $$ = ast::AggregateDecl::Exception; }
[e307e12]2597 ;
2598
2599aggregate_control: // CFA
[cbbd8fd7]2600 MONITOR
[bb7422a]2601 { $$ = ast::AggregateDecl::Monitor; }
[cbbd8fd7]2602 | MUTEX STRUCT
[bb7422a]2603 { $$ = ast::AggregateDecl::Monitor; }
[cbbd8fd7]2604 | GENERATOR
[bb7422a]2605 { $$ = ast::AggregateDecl::Generator; }
[cbbd8fd7]2606 | MUTEX GENERATOR
[bb7422a]2607 {
2608 SemanticError( yylloc, "monitor generator is currently unimplemented." );
2609 $$ = ast::AggregateDecl::NoAggregate;
2610 }
[d3bc0ad]2611 | COROUTINE
[bb7422a]2612 { $$ = ast::AggregateDecl::Coroutine; }
[cbbd8fd7]2613 | MUTEX COROUTINE
[bb7422a]2614 {
2615 SemanticError( yylloc, "monitor coroutine is currently unimplemented." );
2616 $$ = ast::AggregateDecl::NoAggregate;
2617 }
[d3bc0ad]2618 | THREAD
[bb7422a]2619 { $$ = ast::AggregateDecl::Thread; }
[cbbd8fd7]2620 | MUTEX THREAD
[bb7422a]2621 {
2622 SemanticError( yylloc, "monitor thread is currently unimplemented." );
2623 $$ = ast::AggregateDecl::NoAggregate;
2624 }
[4d51835]2625 ;
[51b73452]2626
[7fdb94e1]2627field_declaration_list_opt:
[5d125e4]2628 // empty
[58dd019]2629 { $$ = nullptr; }
[7fdb94e1]2630 | field_declaration_list_opt field_declaration
[dc3fbe5]2631 { $$ = $1 ? $1->set_last( $2 ) : $2; }
[4d51835]2632 ;
[51b73452]2633
2634field_declaration:
[679e644]2635 type_specifier field_declaring_list_opt ';'
[d8454b9]2636 {
2637 // printf( "type_specifier1 %p %s\n", $$, $$->type->aggregate.name ? $$->type->aggregate.name->c_str() : "(nil)" );
2638 $$ = fieldDecl( $1, $2 );
2639 // printf( "type_specifier2 %p %s\n", $$, $$->type->aggregate.name ? $$->type->aggregate.name->c_str() : "(nil)" );
[9fd9d015]2640 // for ( Attribute * attr: reverseIterate( $$->attributes ) ) {
[d8454b9]2641 // printf( "\tattr %s\n", attr->name.c_str() );
2642 // } // for
2643 }
[0442f93f]2644 | type_specifier field_declaring_list_opt '}' // invalid syntax rule
[55266c7]2645 {
[b1f2007d]2646 SemanticError( yylloc, "syntax error, expecting ';' at end of previous declaration." );
[55266c7]2647 $$ = nullptr;
2648 }
[679e644]2649 | EXTENSION type_specifier field_declaring_list_opt ';' // GCC
[f7e4db27]2650 { $$ = fieldDecl( $2, $3 ); distExt( $$ ); }
[466787a]2651 | STATIC type_specifier field_declaring_list_opt ';' // CFA
[9fd9d015]2652 { SemanticError( yylloc, "STATIC aggregate field qualifier currently unimplemented." ); $$ = nullptr; }
[e07caa2]2653 | INLINE type_specifier field_abstract_list_opt ';' // CFA
[679e644]2654 {
[dea36ee]2655 if ( ! $3 ) { // field declarator ?
2656 $3 = DeclarationNode::newName( nullptr );
2657 } // if
[679a260]2658 $3->inLine = true;
[679e644]2659 $$ = distAttr( $2, $3 ); // mark all fields in list
[e07caa2]2660 distInl( $3 );
[8f91c9ae]2661 }
[e307e12]2662 | INLINE aggregate_control ';' // CFA
[9fd9d015]2663 { SemanticError( yylloc, "INLINE aggregate control currently unimplemented." ); $$ = nullptr; }
[46fa473]2664 | typedef_declaration ';' // CFA
2665 | cfa_field_declaring_list ';' // CFA, new style field declaration
2666 | EXTENSION cfa_field_declaring_list ';' // GCC
2667 { distExt( $2 ); $$ = $2; } // mark all fields in list
[679e644]2668 | INLINE cfa_field_abstract_list ';' // CFA, new style field declaration
2669 { $$ = $2; } // mark all fields in list
[46fa473]2670 | cfa_typedef_declaration ';' // CFA
[b47b827]2671 | static_assert // C11
[4d51835]2672 ;
[b87a5ed]2673
[679e644]2674field_declaring_list_opt:
2675 // empty
2676 { $$ = nullptr; }
2677 | field_declarator
2678 | field_declaring_list_opt ',' attribute_list_opt field_declarator
[dc3fbe5]2679 { $$ = $1->set_last( $4->addQualifiers( $3 ) ); }
[4d51835]2680 ;
[51b73452]2681
[679e644]2682field_declarator:
[e07caa2]2683 bit_subrange_size // C special case, no field name
[4d51835]2684 { $$ = DeclarationNode::newBitfield( $1 ); }
2685 | variable_declarator bit_subrange_size_opt
[679e644]2686 // A semantic check is required to ensure bit_subrange only appears on integral types.
[4d51835]2687 { $$ = $1->addBitfield( $2 ); }
[c6b1105]2688 | variable_type_redeclarator bit_subrange_size_opt
[679e644]2689 // A semantic check is required to ensure bit_subrange only appears on integral types.
[4d51835]2690 { $$ = $1->addBitfield( $2 ); }
[1f771fc]2691 | function_type_redeclarator bit_subrange_size_opt
2692 // A semantic check is required to ensure bit_subrange only appears on integral types.
2693 { $$ = $1->addBitfield( $2 ); }
[679e644]2694 ;
2695
[e07caa2]2696field_abstract_list_opt:
2697 // empty
[dea36ee]2698 { $$ = nullptr; }
[e07caa2]2699 | field_abstract
2700 | field_abstract_list_opt ',' attribute_list_opt field_abstract
[dc3fbe5]2701 { $$ = $1->set_last( $4->addQualifiers( $3 ) ); }
[679e644]2702 ;
2703
[e07caa2]2704field_abstract:
[f7e4db27]2705 // no bit fields
[e07caa2]2706 variable_abstract_declarator
[679e644]2707 ;
2708
2709cfa_field_declaring_list: // CFA, new style field declaration
[f7e4db27]2710 // bit-fields are handled by C declarations
[033ff37]2711 cfa_abstract_declarator_tuple identifier_or_type_name
[679e644]2712 { $$ = $1->addName( $2 ); }
[033ff37]2713 | cfa_field_declaring_list ',' identifier_or_type_name
[dc3fbe5]2714 { $$ = $1->set_last( $1->cloneType( $3 ) ); }
[679e644]2715 ;
2716
2717cfa_field_abstract_list: // CFA, new style field declaration
[f7e4db27]2718 // bit-fields are handled by C declarations
[679e644]2719 cfa_abstract_declarator_tuple
2720 | cfa_field_abstract_list ','
[dc3fbe5]2721 { $$ = $1->set_last( $1->cloneType( 0 ) ); }
[4d51835]2722 ;
[51b73452]2723
2724bit_subrange_size_opt:
[4d51835]2725 // empty
[58dd019]2726 { $$ = nullptr; }
[4d51835]2727 | bit_subrange_size
2728 ;
[51b73452]2729
2730bit_subrange_size:
[c786e1d]2731 ':' assignment_expression
[4d51835]2732 { $$ = $2; }
2733 ;
[51b73452]2734
[7e13b11]2735// ************************** ENUMERATION *******************************
[647e2ea]2736
[9e7236f4]2737enum_type:
[f9c3100]2738 ENUM attribute_list_opt '{' enumerator_list comma_opt '}'
[b0d9ff7]2739 { $$ = DeclarationNode::newEnum( nullptr, $4, true, false )->addQualifiers( $2 ); }
[d7874052]2740 | ENUM attribute_list_opt '!' '{' enumerator_list comma_opt '}' // invalid syntax rule
[4eb3a7c5]2741 { SemanticError( yylloc, "syntax error, hiding ('!') the enumerator names of an anonymous enumeration means the names are inaccessible." ); $$ = nullptr; }
[f9c3100]2742 | ENUM attribute_list_opt identifier
[71a422a]2743 { typedefTable.makeTypedef( *$3, "enum_type 1" ); }
[c7f12a4]2744 hide_opt '{' enumerator_list comma_opt '}'
[910e1d0]2745 { $$ = DeclarationNode::newEnum( $3, $7, true, false, nullptr, $5 )->addQualifiers( $2 ); }
[d7874052]2746 | ENUM attribute_list_opt typedef_name hide_opt '{' enumerator_list comma_opt '}' // unqualified type name
[e4d7c1c]2747 { $$ = DeclarationNode::newEnum( $3->name, $6, true, false, nullptr, $4 )->addQualifiers( $2 ); }
[f9c3100]2748 | ENUM '(' cfa_abstract_parameter_declaration ')' attribute_list_opt '{' enumerator_list comma_opt '}'
[9fd9d015]2749 {
[55266c7]2750 if ( $3->storageClasses.val != 0 || $3->type->qualifiers.any() ) {
2751 SemanticError( yylloc, "syntax error, storage-class and CV qualifiers are not meaningful for enumeration constants, which are const." );
2752 }
[b0d9ff7]2753 $$ = DeclarationNode::newEnum( nullptr, $7, true, true, $3 )->addQualifiers( $5 );
2754 }
[d7874052]2755 | ENUM '(' cfa_abstract_parameter_declaration ')' attribute_list_opt '!' '{' enumerator_list comma_opt '}' // unqualified type name
[4eb3a7c5]2756 { SemanticError( yylloc, "syntax error, hiding ('!') the enumerator names of an anonymous enumeration means the names are inaccessible." ); $$ = nullptr; }
[b0d9ff7]2757 | ENUM '(' ')' attribute_list_opt '{' enumerator_list comma_opt '}'
2758 {
2759 $$ = DeclarationNode::newEnum( nullptr, $6, true, true )->addQualifiers( $4 );
[8bea701]2760 }
[d7874052]2761 | ENUM '(' ')' attribute_list_opt '!' '{' enumerator_list comma_opt '}' // invalid syntax rule
[4eb3a7c5]2762 { SemanticError( yylloc, "syntax error, hiding ('!') the enumerator names of an anonymous enumeration means the names are inaccessible." ); $$ = nullptr; }
[9e7236f4]2763 | ENUM '(' cfa_abstract_parameter_declaration ')' attribute_list_opt identifier attribute_list_opt
[8bea701]2764 {
[647e2ea]2765 if ( $3 && ($3->storageClasses.any() || $3->type->qualifiers.val != 0) ) {
[55266c7]2766 SemanticError( yylloc, "syntax error, storage-class and CV qualifiers are not meaningful for enumeration constants, which are const." );
2767 }
[71a422a]2768 typedefTable.makeTypedef( *$6, "enum_type 2" );
[8bea701]2769 }
[c7f12a4]2770 hide_opt '{' enumerator_list comma_opt '}'
[8bea701]2771 {
[e4d7c1c]2772 $$ = DeclarationNode::newEnum( $6, $11, true, true, $3, $9 )->addQualifiers( $5 )->addQualifiers( $7 );
[8bea701]2773 }
[d7874052]2774 | ENUM '(' ')' attribute_list_opt identifier attribute_list_opt hide_opt '{' enumerator_list comma_opt '}'
[b0d9ff7]2775 {
[e4d7c1c]2776 $$ = DeclarationNode::newEnum( $5, $9, true, true, nullptr, $7 )->addQualifiers( $4 )->addQualifiers( $6 );
[0bd46fd]2777 }
[d7874052]2778 | ENUM '(' cfa_abstract_parameter_declaration ')' attribute_list_opt typedef_name attribute_list_opt hide_opt '{' enumerator_list comma_opt '}'
[8bea701]2779 {
[e4d7c1c]2780 $$ = DeclarationNode::newEnum( $6->name, $10, true, true, $3, $8 )->addQualifiers( $5 )->addQualifiers( $7 );
[b0d9ff7]2781 }
[d7874052]2782 | ENUM '(' ')' attribute_list_opt typedef_name attribute_list_opt hide_opt '{' enumerator_list comma_opt '}'
[b0d9ff7]2783 {
[e4d7c1c]2784 $$ = DeclarationNode::newEnum( $5->name, $9, true, true, nullptr, $7 )->addQualifiers( $4 )->addQualifiers( $6 );
[8bea701]2785 }
[d0ffed1]2786 | enum_type_nobody
2787 ;
2788
[c7f12a4]2789hide_opt:
2790 // empty
[7cf8006]2791 { $$ = EnumHiding::Visible; }
[c7f12a4]2792 | '!'
[7cf8006]2793 { $$ = EnumHiding::Hide; }
[c7f12a4]2794 ;
2795
[d0ffed1]2796enum_type_nobody: // enum - {...}
[f9c3100]2797 ENUM attribute_list_opt identifier
[71a422a]2798 {
2799 typedefTable.makeTypedef( *$3, "enum_type_nobody 1" );
2800 $$ = DeclarationNode::newEnum( $3, nullptr, false, false )->addQualifiers( $2 );
2801 }
[0bd46fd]2802 | ENUM attribute_list_opt type_name
[71a422a]2803 {
[6cef439]2804 typedefTable.makeTypedef( *$3->symbolic.name, "enum_type_nobody 2" );
2805 $$ = DeclarationNode::newEnum( $3->symbolic.name, nullptr, false, false )->addQualifiers( $2 );
[71a422a]2806 }
[4d51835]2807 ;
[51b73452]2808
2809enumerator_list:
[7cf8006]2810 visible_hide_opt identifier_or_type_name enumerator_value_opt
[c7f12a4]2811 { $$ = DeclarationNode::newEnumValueGeneric( $2, $3 ); }
[f9c3100]2812 | INLINE type_name
[6cef439]2813 { $$ = DeclarationNode::newEnumInLine( *$2->symbolic.name ); }
[7cf8006]2814 | enumerator_list ',' visible_hide_opt identifier_or_type_name enumerator_value_opt
[dc3fbe5]2815 { $$ = $1->set_last( DeclarationNode::newEnumValueGeneric( $4, $5 ) ); }
[f9c3100]2816 | enumerator_list ',' INLINE type_name enumerator_value_opt
[dc3fbe5]2817 { $$ = $1->set_last( DeclarationNode::newEnumValueGeneric( new string("inline"), nullptr ) ); }
[4d51835]2818 ;
[51b73452]2819
[7cf8006]2820visible_hide_opt:
[c7f12a4]2821 hide_opt
2822 | '^'
[7cf8006]2823 { $$ = EnumHiding::Visible; }
[c7f12a4]2824 ;
2825
[51b73452]2826enumerator_value_opt:
[4d51835]2827 // empty
[58dd019]2828 { $$ = nullptr; }
[7991c7d]2829 | '=' constant_expression { $$ = new InitializerNode( $2 ); }
2830 | '=' '{' initializer_list_opt comma_opt '}' { $$ = new InitializerNode( $3, true ); }
2831 // | simple_assignment_operator initializer
2832 // { $$ = $1 == OperKinds::Assign ? $2 : $2->set_maybeConstructed( false ); }
[4d51835]2833 ;
[51b73452]2834
[7e13b11]2835// ************************** FUNCTION PARAMETERS *******************************
[647e2ea]2836
2837parameter_list_ellipsis_opt:
2838 // empty
2839 { $$ = nullptr; }
2840 | ELLIPSIS
2841 { $$ = nullptr; }
2842 | parameter_list
2843 | parameter_list ',' ELLIPSIS
2844 { $$ = $1->addVarArgs(); }
2845 ;
2846
2847parameter_list: // abstract + real
2848 parameter_declaration
2849 | abstract_parameter_declaration
2850 | parameter_list ',' parameter_declaration
2851 { $$ = $1->set_last( $3 ); }
2852 | parameter_list ',' abstract_parameter_declaration
2853 { $$ = $1->set_last( $3 ); }
2854 ;
2855
2856cfa_parameter_list_ellipsis_opt: // CFA, abstract + real
[4d51835]2857 // empty
[6cef439]2858 { $$ = DeclarationNode::newFromTypeData( build_basic_type( DeclarationNode::Void ) ); }
[2a8427c6]2859 | ELLIPSIS
[58dd019]2860 { $$ = nullptr; }
[c0aa336]2861 | cfa_parameter_list
[647e2ea]2862 | cfa_abstract_parameter_list
2863 | cfa_parameter_list ',' cfa_abstract_parameter_list
2864 { $$ = $1->set_last( $3 ); }
2865 | cfa_parameter_list ',' ELLIPSIS
[4d51835]2866 { $$ = $1->addVarArgs(); }
[647e2ea]2867 | cfa_abstract_parameter_list ',' ELLIPSIS
[4d51835]2868 { $$ = $1->addVarArgs(); }
2869 ;
[b87a5ed]2870
[c0aa336]2871cfa_parameter_list: // CFA
2872 // To obtain LR(1) between cfa_parameter_list and cfa_abstract_tuple, the last cfa_abstract_parameter_list is
2873 // factored out from cfa_parameter_list, flattening the rules to get lookahead to the ']'.
2874 cfa_parameter_declaration
[647e2ea]2875 | cfa_abstract_parameter_list ',' cfa_parameter_declaration
2876 { $$ = $1->set_last( $3 ); }
2877 | cfa_parameter_list ',' cfa_parameter_declaration
2878 { $$ = $1->set_last( $3 ); }
2879 | cfa_parameter_list ',' cfa_abstract_parameter_list ',' cfa_parameter_declaration
2880 { $$ = $1->set_last( $3 )->set_last( $5 ); }
[4d51835]2881 ;
[b87a5ed]2882
[c0aa336]2883cfa_abstract_parameter_list: // CFA, new & old style abstract
2884 cfa_abstract_parameter_declaration
[647e2ea]2885 | cfa_abstract_parameter_list ',' cfa_abstract_parameter_declaration
[dc3fbe5]2886 { $$ = $1->set_last( $3 ); }
[4d51835]2887 ;
[51b73452]2888
[de62360d]2889// Provides optional identifier names (abstract_declarator/variable_declarator), no initialization, different semantics
[2871210]2890// for typedef name by using type_parameter_redeclarator instead of typedef_redeclarator, and function prototypes.
[51b73452]2891
[647e2ea]2892parameter_declaration:
2893 // No SUE declaration in parameter list.
2894 declaration_specifier_nobody identifier_parameter_declarator default_initializer_opt
2895 { $$ = $2->addType( $1 )->addInitializer( $3 ? new InitializerNode( $3 ) : nullptr ); }
2896 | declaration_specifier_nobody type_parameter_redeclarator default_initializer_opt
2897 { $$ = $2->addType( $1 )->addInitializer( $3 ? new InitializerNode( $3 ) : nullptr ); }
2898 ;
2899
2900abstract_parameter_declaration:
2901 declaration_specifier_nobody default_initializer_opt
2902 { $$ = $1->addInitializer( $2 ? new InitializerNode( $2 ) : nullptr ); }
2903 | declaration_specifier_nobody abstract_parameter_declarator default_initializer_opt
2904 { $$ = $2->addType( $1 )->addInitializer( $3 ? new InitializerNode( $3 ) : nullptr ); }
2905 ;
2906
[c0aa336]2907cfa_parameter_declaration: // CFA, new & old style parameter declaration
[4d51835]2908 parameter_declaration
[5a51798]2909 | cfa_identifier_parameter_declarator_no_tuple identifier_or_type_name default_initializer_opt
[4d51835]2910 { $$ = $1->addName( $2 ); }
[5a51798]2911 | cfa_abstract_tuple identifier_or_type_name default_initializer_opt
[c0aa336]2912 // To obtain LR(1), these rules must be duplicated here (see cfa_abstract_declarator).
[4d51835]2913 { $$ = $1->addName( $2 ); }
[5a51798]2914 | type_qualifier_list cfa_abstract_tuple identifier_or_type_name default_initializer_opt
[4d51835]2915 { $$ = $2->addName( $3 )->addQualifiers( $1 ); }
[7e13b11]2916 | cfa_function_specifier // int f( "int fp()" );
[4d51835]2917 ;
[b87a5ed]2918
[c0aa336]2919cfa_abstract_parameter_declaration: // CFA, new & old style parameter declaration
[0ac8d07]2920 abstract_parameter_declaration
[c0aa336]2921 | cfa_identifier_parameter_declarator_no_tuple
2922 | cfa_abstract_tuple
2923 // To obtain LR(1), these rules must be duplicated here (see cfa_abstract_declarator).
2924 | type_qualifier_list cfa_abstract_tuple
[4d51835]2925 { $$ = $2->addQualifiers( $1 ); }
[7e13b11]2926 | cfa_abstract_function // int f( "int ()" );
[4d51835]2927 ;
[51b73452]2928
[c11e31c]2929// ISO/IEC 9899:1999 Section 6.9.1(6) : "An identifier declared as a typedef name shall not be redeclared as a
[de62360d]2930// parameter." Because the scope of the K&R-style parameter-list sees the typedef first, the following is based only on
2931// identifiers. The ANSI-style parameter-list can redefine a typedef name.
[51b73452]2932
[b87a5ed]2933identifier_list: // K&R-style parameter list => no types
[033ff37]2934 identifier
[4d51835]2935 { $$ = DeclarationNode::newName( $1 ); }
[033ff37]2936 | identifier_list ',' identifier
[dc3fbe5]2937 { $$ = $1->set_last( DeclarationNode::newName( $3 ) ); }
[4d51835]2938 ;
[51b73452]2939
[2871210]2940identifier_or_type_name:
[4d51835]2941 identifier
2942 | TYPEDEFname
2943 | TYPEGENname
2944 ;
[51b73452]2945
[84d58c5]2946type_no_function: // sizeof, alignof, cast (constructor)
[c0aa336]2947 cfa_abstract_declarator_tuple // CFA
[9fa61f5]2948 | type_specifier // cannot be type_specifier_nobody, e.g., (struct S {}){} is a thing
[c0aa336]2949 | type_specifier abstract_declarator
[4d51835]2950 { $$ = $2->addType( $1 ); }
2951 ;
[b87a5ed]2952
[84d58c5]2953type: // typeof, assertion
2954 type_no_function
[c0aa336]2955 | cfa_abstract_function // CFA
[4d51835]2956 ;
[51b73452]2957
2958initializer_opt:
[4d51835]2959 // empty
[58dd019]2960 { $$ = nullptr; }
[f9c3100]2961 | simple_assignment_operator initializer { $$ = $1 == OperKinds::Assign ? $2 : $2->set_maybeConstructed( false ); }
2962 | '=' VOID { $$ = new InitializerNode( true ); }
[63b3279e]2963 | '{' initializer_list_opt comma_opt '}' { $$ = new InitializerNode( $2, true ); }
[4d51835]2964 ;
[51b73452]2965
2966initializer:
[de62360d]2967 assignment_expression { $$ = new InitializerNode( $1 ); }
[7fdb94e1]2968 | '{' initializer_list_opt comma_opt '}' { $$ = new InitializerNode( $2, true ); }
[4d51835]2969 ;
[51b73452]2970
[7fdb94e1]2971initializer_list_opt:
[097e2b0]2972 // empty
[58dd019]2973 { $$ = nullptr; }
[097e2b0]2974 | initializer
[4d51835]2975 | designation initializer { $$ = $2->set_designators( $1 ); }
[b93c544]2976 | initializer_list_opt ',' initializer { $$ = $1->set_last( $3 ); }
2977 | initializer_list_opt ',' designation initializer { $$ = $1->set_last( $4->set_designators( $3 ) ); }
[4d51835]2978 ;
[b87a5ed]2979
[de62360d]2980// There is an unreconcileable parsing problem between C99 and CFA with respect to designators. The problem is use of
2981// '=' to separator the designator from the initializer value, as in:
[c11e31c]2982//
[b87a5ed]2983// int x[10] = { [1] = 3 };
[c11e31c]2984//
[de62360d]2985// The string "[1] = 3" can be parsed as a designator assignment or a tuple assignment. To disambiguate this case, CFA
2986// changes the syntax from "=" to ":" as the separator between the designator and initializer. GCC does uses ":" for
2987// field selection. The optional use of the "=" in GCC, or in this case ":", cannot be supported either due to
2988// shift/reduce conflicts
[51b73452]2989
2990designation:
[4d51835]2991 designator_list ':' // C99, CFA uses ":" instead of "="
[e16eb460]2992 | identifier_at ':' // GCC, field name
[bb7422a]2993 { $$ = new ExpressionNode( build_varref( yylloc, $1 ) ); }
[4d51835]2994 ;
[51b73452]2995
[b87a5ed]2996designator_list: // C99
[4d51835]2997 designator
[2871210]2998 | designator_list designator
[b93c544]2999 { $$ = $1->set_last( $2 ); }
[d1625f8]3000 //| designator_list designator { $$ = new ExpressionNode( $1, $2 ); }
[4d51835]3001 ;
[51b73452]3002
3003designator:
[e16eb460]3004 '.' identifier_at // C99, field name
[bb7422a]3005 { $$ = new ExpressionNode( build_varref( yylloc, $2 ) ); }
[c0a33d2]3006 | '[' push assignment_expression pop ']' // C99, single array element
[de62360d]3007 // assignment_expression used instead of constant_expression because of shift/reduce conflicts with tuple.
[d1625f8]3008 { $$ = $3; }
[c0a33d2]3009 | '[' push subrange pop ']' // CFA, multiple array elements
3010 { $$ = $3; }
3011 | '[' push constant_expression ELLIPSIS constant_expression pop ']' // GCC, multiple array elements
[bb7422a]3012 { $$ = new ExpressionNode( new ast::RangeExpr( yylloc, maybeMoveBuild( $3 ), maybeMoveBuild( $5 ) ) ); }
[679e644]3013 | '.' '[' push field_name_list pop ']' // CFA, tuple field selector
[c0a33d2]3014 { $$ = $4; }
[4d51835]3015 ;
[51b73452]3016
[de62360d]3017// The CFA type system is based on parametric polymorphism, the ability to declare functions with type parameters,
3018// rather than an object-oriented type system. This required four groups of extensions:
[c11e31c]3019//
3020// Overloading: function, data, and operator identifiers may be overloaded.
3021//
[3ca7ef3]3022// Type declarations: "otype" is used to generate new types for declaring objects. Similarly, "dtype" is used for object
[de62360d]3023// and incomplete types, and "ftype" is used for function types. Type declarations with initializers provide
3024// definitions of new types. Type declarations with storage class "extern" provide opaque types.
[c11e31c]3025//
[de62360d]3026// Polymorphic functions: A forall clause declares a type parameter. The corresponding argument is inferred at the call
3027// site. A polymorphic function is not a template; it is a function, with an address and a type.
[c11e31c]3028//
3029// Specifications and Assertions: Specifications are collections of declarations parameterized by one or more
[de62360d]3030// types. They serve many of the purposes of abstract classes, and specification hierarchies resemble subclass
3031// hierarchies. Unlike classes, they can define relationships between types. Assertions declare that a type or
3032// types provide the operations declared by a specification. Assertions are normally used to declare requirements
3033// on type arguments of polymorphic functions.
[c11e31c]3034
[b87a5ed]3035type_parameter_list: // CFA
[67cf18c]3036 type_parameter
3037 | type_parameter_list ',' type_parameter
[dc3fbe5]3038 { $$ = $1->set_last( $3 ); }
[4d51835]3039 ;
[b87a5ed]3040
[84d58c5]3041type_initializer_opt: // CFA
3042 // empty
3043 { $$ = nullptr; }
3044 | '=' type
3045 { $$ = $2; }
3046 ;
3047
[b87a5ed]3048type_parameter: // CFA
[033ff37]3049 type_class identifier_or_type_name
[408ab79]3050 {
[71a422a]3051 typedefTable.addToScope( *$2, TYPEDEFname, "type_parameter 1" );
[bb7422a]3052 if ( $1 == ast::TypeDecl::Otype ) { SemanticError( yylloc, "otype keyword is deprecated, use T " ); }
3053 if ( $1 == ast::TypeDecl::Dtype ) { SemanticError( yylloc, "dtype keyword is deprecated, use T &" ); }
3054 if ( $1 == ast::TypeDecl::Ttype ) { SemanticError( yylloc, "ttype keyword is deprecated, use T ..." ); }
[fd54fef]3055 }
[5a51798]3056 type_initializer_opt assertion_list_opt
[67cf18c]3057 { $$ = DeclarationNode::newTypeParam( $1, $2 )->addTypeInitializer( $4 )->addAssertions( $5 ); }
[5a51798]3058 | identifier_or_type_name new_type_class
[71a422a]3059 { typedefTable.addToScope( *$1, TYPEDEFname, "type_parameter 2" ); }
[5a51798]3060 type_initializer_opt assertion_list_opt
3061 { $$ = DeclarationNode::newTypeParam( $2, $1 )->addTypeInitializer( $4 )->addAssertions( $5 ); }
3062 | '[' identifier_or_type_name ']'
[b66d14a]3063 {
[71a422a]3064 typedefTable.addToScope( *$2, TYPEDIMname, "type_parameter 3" );
[bb7422a]3065 $$ = DeclarationNode::newTypeParam( ast::TypeDecl::Dimension, $2 );
[b66d14a]3066 }
[5a51798]3067 // | type_specifier identifier_parameter_declarator
[9997fee]3068 | assertion_list
[bb7422a]3069 { $$ = DeclarationNode::newTypeParam( ast::TypeDecl::Dtype, new string( DeclarationNode::anonymous.newName() ) )->addAssertions( $1 ); }
[0522ebe]3070 | ENUM '(' identifier_or_type_name ')' identifier_or_type_name new_type_class type_initializer_opt assertion_list_opt
3071 {
3072 typedefTable.addToScope( *$3, TYPEDIMname, "type_parameter 4" );
3073 typedefTable.addToScope( *$5, TYPEDIMname, "type_parameter 5" );
3074 $$ = DeclarationNode::newTypeParam( $6, $5 )->addTypeInitializer( $7 )->addAssertions( $8 );
3075 }
[4d51835]3076 ;
[b87a5ed]3077
[5a51798]3078new_type_class: // CFA
3079 // empty
[bb7422a]3080 { $$ = ast::TypeDecl::Otype; }
[5a51798]3081 | '&'
[bb7422a]3082 { $$ = ast::TypeDecl::Dtype; }
[5a51798]3083 | '*'
[7e13b11]3084 { $$ = ast::TypeDecl::DStype; } // Dtype + sized
3085 // | '(' '*' ')' // Gregor made me do it
3086 // { $$ = ast::TypeDecl::Ftype; }
[5a51798]3087 | ELLIPSIS
[bb7422a]3088 { $$ = ast::TypeDecl::Ttype; }
[5a51798]3089 ;
3090
[b87a5ed]3091type_class: // CFA
[4040425]3092 OTYPE
[bb7422a]3093 { $$ = ast::TypeDecl::Otype; }
[4d51835]3094 | DTYPE
[bb7422a]3095 { $$ = ast::TypeDecl::Dtype; }
[8f60f0b]3096 | FTYPE
[bb7422a]3097 { $$ = ast::TypeDecl::Ftype; }
[8f60f0b]3098 | TTYPE
[bb7422a]3099 { $$ = ast::TypeDecl::Ttype; }
[4d51835]3100 ;
[b87a5ed]3101
3102assertion_list_opt: // CFA
[4d51835]3103 // empty
[58dd019]3104 { $$ = nullptr; }
[9997fee]3105 | assertion_list
3106 ;
3107
3108assertion_list: // CFA
3109 assertion
3110 | assertion_list assertion
[dc3fbe5]3111 { $$ = $1->set_last( $2 ); }
[4d51835]3112 ;
[b87a5ed]3113
3114assertion: // CFA
[033ff37]3115 '|' identifier_or_type_name '(' type_list ')'
[7fdb94e1]3116 { $$ = DeclarationNode::newTraitUse( $2, $4 ); }
[13e8427]3117 | '|' '{' push trait_declaration_list pop '}'
[4d51835]3118 { $$ = $4; }
[35718a9]3119 // | '|' '(' push type_parameter_list pop ')' '{' push trait_declaration_list pop '}' '(' type_list ')'
3120 // { SemanticError( yylloc, "Generic data-type assertion is currently unimplemented." ); $$ = nullptr; }
[4d51835]3121 ;
[b87a5ed]3122
[84d58c5]3123type_list: // CFA
3124 type
[bb7422a]3125 { $$ = new ExpressionNode( new ast::TypeExpr( yylloc, maybeMoveBuildType( $1 ) ) ); }
[4d51835]3126 | assignment_expression
[84d58c5]3127 | type_list ',' type
[b93c544]3128 { $$ = $1->set_last( new ExpressionNode( new ast::TypeExpr( yylloc, maybeMoveBuildType( $3 ) ) ) ); }
[84d58c5]3129 | type_list ',' assignment_expression
[b93c544]3130 { $$ = $1->set_last( $3 ); }
[4d51835]3131 ;
[b87a5ed]3132
3133type_declaring_list: // CFA
[4040425]3134 OTYPE type_declarator
[4d51835]3135 { $$ = $2; }
[4040425]3136 | storage_class_list OTYPE type_declarator
[4d51835]3137 { $$ = $3->addQualifiers( $1 ); }
3138 | type_declaring_list ',' type_declarator
[dc3fbe5]3139 { $$ = $1->set_last( $3->copySpecifiers( $1 ) ); }
[4d51835]3140 ;
[b87a5ed]3141
3142type_declarator: // CFA
[4d51835]3143 type_declarator_name assertion_list_opt
3144 { $$ = $1->addAssertions( $2 ); }
[84d58c5]3145 | type_declarator_name assertion_list_opt '=' type
[4d51835]3146 { $$ = $1->addAssertions( $2 )->addType( $4 ); }
3147 ;
[b87a5ed]3148
3149type_declarator_name: // CFA
[033ff37]3150 identifier_or_type_name
[4d51835]3151 {
[71a422a]3152 typedefTable.addToEnclosingScope( *$1, TYPEDEFname, "type_declarator_name 1" );
[a5f9444]3153 $$ = DeclarationNode::newTypeDecl( $1, nullptr );
[4d51835]3154 }
[033ff37]3155 | identifier_or_type_name '(' type_parameter_list ')'
[4d51835]3156 {
[71a422a]3157 typedefTable.addToEnclosingScope( *$1, TYPEGENname, "type_declarator_name 2" );
[35718a9]3158 $$ = DeclarationNode::newTypeDecl( $1, $3 );
[4d51835]3159 }
3160 ;
[b87a5ed]3161
[4040425]3162trait_specifier: // CFA
[033ff37]3163 TRAIT identifier_or_type_name '(' type_parameter_list ')' '{' '}'
[8a97248]3164 {
[3d937e2]3165 SemanticWarning( yylloc, Warning::DeprecTraitSyntax );
[8a97248]3166 $$ = DeclarationNode::newTrait( $2, $4, nullptr );
3167 }
3168 | forall TRAIT identifier_or_type_name '{' '}' // alternate
[7a24d76]3169 { $$ = DeclarationNode::newTrait( $3, $1, nullptr ); }
[033ff37]3170 | TRAIT identifier_or_type_name '(' type_parameter_list ')' '{' push trait_declaration_list pop '}'
[8a97248]3171 {
[3d937e2]3172 SemanticWarning( yylloc, Warning::DeprecTraitSyntax );
[8a97248]3173 $$ = DeclarationNode::newTrait( $2, $4, $8 );
3174 }
[7a24d76]3175 | forall TRAIT identifier_or_type_name '{' push trait_declaration_list pop '}' // alternate
3176 { $$ = DeclarationNode::newTrait( $3, $1, $6 ); }
[4d51835]3177 ;
[b87a5ed]3178
[84d58c5]3179trait_declaration_list: // CFA
[4040425]3180 trait_declaration
[13e8427]3181 | trait_declaration_list pop push trait_declaration
[dc3fbe5]3182 { $$ = $1->set_last( $4 ); }
[4d51835]3183 ;
[b87a5ed]3184
[84d58c5]3185trait_declaration: // CFA
[13e8427]3186 cfa_trait_declaring_list ';'
3187 | trait_declaring_list ';'
[4d51835]3188 ;
[b87a5ed]3189
[c0aa336]3190cfa_trait_declaring_list: // CFA
3191 cfa_variable_specifier
3192 | cfa_function_specifier
3193 | cfa_trait_declaring_list pop ',' push identifier_or_type_name
[dc3fbe5]3194 { $$ = $1->set_last( $1->cloneType( $5 ) ); }
[4d51835]3195 ;
[b87a5ed]3196
[4040425]3197trait_declaring_list: // CFA
[4d51835]3198 type_specifier declarator
[7fdb94e1]3199 { $$ = $2->addType( $1 ); }
[4040425]3200 | trait_declaring_list pop ',' push declarator
[dc3fbe5]3201 { $$ = $1->set_last( $1->cloneBaseType( $5 ) ); }
[4d51835]3202 ;
[51b73452]3203
[e1d66c84]3204// **************************** EXTERNAL DEFINITIONS *****************************
[51b73452]3205
3206translation_unit:
[3d56d15b]3207 // empty, input file
[4d51835]3208 | external_definition_list
[dc3fbe5]3209 { parseTree = parseTree ? parseTree->set_last( $1 ) : $1; }
[4d51835]3210 ;
[51b73452]3211
3212external_definition_list:
[35718a9]3213 push external_definition pop
3214 { $$ = $2; }
[fc20514]3215 | external_definition_list push external_definition pop
[dc3fbe5]3216 { $$ = $1 ? $1->set_last( $3 ) : $3; }
[4d51835]3217 ;
[51b73452]3218
3219external_definition_list_opt:
[4d51835]3220 // empty
[58dd019]3221 { $$ = nullptr; }
[3d56d15b]3222 | external_definition_list
3223 ;
3224
3225up:
[fc20514]3226 { typedefTable.up( forall ); forall = false; }
[3d56d15b]3227 ;
3228
3229down:
3230 { typedefTable.down(); }
[4d51835]3231 ;
[51b73452]3232
3233external_definition:
[2d019af]3234 DIRECTIVE
[bb7422a]3235 { $$ = DeclarationNode::newDirectiveStmt( new StatementNode( build_directive( yylloc, $1 ) ) ); }
[2d019af]3236 | declaration
[1a73dbb]3237 {
3238 // Variable declarations of anonymous types requires creating a unique type-name across multiple translation
3239 // unit, which is a dubious task, especially because C uses name rather than structural typing; hence it is
3240 // disallowed at the moment.
[4eb3a7c5]3241 if ( $1->linkage == ast::Linkage::Cforall && ! $1->storageClasses.is_static &&
3242 $1->type && $1->type->kind == TypeData::AggregateInst ) {
[1a73dbb]3243 if ( $1->type->aggInst.aggregate->kind == TypeData::Enum && $1->type->aggInst.aggregate->enumeration.anon ) {
3244 SemanticError( yylloc, "extern anonymous enumeration is currently unimplemented." ); $$ = nullptr;
3245 } else if ( $1->type->aggInst.aggregate->aggregate.anon ) { // handles struct or union
3246 SemanticError( yylloc, "extern anonymous struct/union is currently unimplemented." ); $$ = nullptr;
3247 }
3248 }
3249 }
[996c8ed]3250 | IDENTIFIER IDENTIFIER
3251 { IdentifierBeforeIdentifier( *$1.str, *$2.str, " declaration" ); $$ = nullptr; }
[65ef0cd]3252 | IDENTIFIER type_qualifier // invalid syntax rule
[996c8ed]3253 { IdentifierBeforeType( *$1.str, "type qualifier" ); $$ = nullptr; }
[65ef0cd]3254 | IDENTIFIER storage_class // invalid syntax rule
[996c8ed]3255 { IdentifierBeforeType( *$1.str, "storage class" ); $$ = nullptr; }
[65ef0cd]3256 | IDENTIFIER basic_type_name // invalid syntax rule
[996c8ed]3257 { IdentifierBeforeType( *$1.str, "type" ); $$ = nullptr; }
[65ef0cd]3258 | IDENTIFIER TYPEDEFname // invalid syntax rule
[996c8ed]3259 { IdentifierBeforeType( *$1.str, "type" ); $$ = nullptr; }
[65ef0cd]3260 | IDENTIFIER TYPEGENname // invalid syntax rule
[996c8ed]3261 { IdentifierBeforeType( *$1.str, "type" ); $$ = nullptr; }
[4d51835]3262 | external_function_definition
[ecae5860]3263 | EXTENSION external_definition // GCC, multiple __extension__ allowed, meaning unknown
3264 {
3265 distExt( $2 ); // mark all fields in list
3266 $$ = $2;
3267 }
[e994912]3268 | ASM '(' string_literal ')' ';' // GCC, global assembler statement
[bb7422a]3269 { $$ = DeclarationNode::newAsmStmt( new StatementNode( build_asm( yylloc, false, $3, nullptr ) ) ); }
[aac37fa]3270 | EXTERN STRINGliteral
3271 {
3272 linkageStack.push( linkage ); // handle nested extern "C"/"Cforall"
[bb7422a]3273 linkage = ast::Linkage::update( yylloc, linkage, $2 );
[aac37fa]3274 }
[ae2f2ae]3275 up external_definition down
[aac37fa]3276 {
3277 linkage = linkageStack.top();
3278 linkageStack.pop();
3279 $$ = $5;
3280 }
[c0aa336]3281 | EXTERN STRINGliteral // C++-style linkage specifier
[4d51835]3282 {
[3b8e52c]3283 linkageStack.push( linkage ); // handle nested extern "C"/"Cforall"
[bb7422a]3284 linkage = ast::Linkage::update( yylloc, linkage, $2 );
[4d51835]3285 }
[3d56d15b]3286 '{' up external_definition_list_opt down '}'
[4d51835]3287 {
3288 linkage = linkageStack.top();
3289 linkageStack.pop();
[3d56d15b]3290 $$ = $6;
[8e9cbb2]3291 }
[7e13b11]3292 // global distribution
[9997fee]3293 | type_qualifier_list
3294 {
[55266c7]3295 if ( $1->type->qualifiers.any() ) {
3296 SemanticError( yylloc, "syntax error, CV qualifiers cannot be distributed; only storage-class and forall qualifiers." );
3297 }
[fc20514]3298 if ( $1->type->forall ) forall = true; // remember generic type
[3d56d15b]3299 }
3300 '{' up external_definition_list_opt down '}' // CFA, namespace
3301 {
[4c3ee8d]3302 distQual( $5, $1 );
[9fd9d015]3303 forall = false;
[3d56d15b]3304 $$ = $5;
[9997fee]3305 }
3306 | declaration_qualifier_list
3307 {
[55266c7]3308 if ( $1->type && $1->type->qualifiers.any() ) {
3309 SemanticError( yylloc, "syntax error, CV qualifiers cannot be distributed; only storage-class and forall qualifiers." );
3310 }
[fc20514]3311 if ( $1->type && $1->type->forall ) forall = true; // remember generic type
[3d56d15b]3312 }
3313 '{' up external_definition_list_opt down '}' // CFA, namespace
3314 {
[4c3ee8d]3315 distQual( $5, $1 );
[9fd9d015]3316 forall = false;
[3d56d15b]3317 $$ = $5;
[9997fee]3318 }
3319 | declaration_qualifier_list type_qualifier_list
3320 {
[55266c7]3321 if ( ($1->type && $1->type->qualifiers.any()) || ($2->type && $2->type->qualifiers.any()) ) {
3322 SemanticError( yylloc, "syntax error, CV qualifiers cannot be distributed; only storage-class and forall qualifiers." );
3323 }
[b2ddaf3]3324 if ( ($1->type && $1->type->forall) || ($2->type && $2->type->forall) ) forall = true; // remember generic type
[9997fee]3325 }
[3d56d15b]3326 '{' up external_definition_list_opt down '}' // CFA, namespace
[9997fee]3327 {
[284da8c]3328 distQual( $6, $1->addQualifiers( $2 ) );
[9fd9d015]3329 forall = false;
[3d56d15b]3330 $$ = $6;
[9997fee]3331 }
[4d51835]3332 ;
3333
3334external_function_definition:
3335 function_definition
[de62360d]3336 // These rules are a concession to the "implicit int" type_specifier because there is a significant amount of
[c6b1105]3337 // legacy code with global functions missing the type-specifier for the return type, and assuming "int".
3338 // Parsing is possible because function_definition does not appear in the context of an expression (nested
3339 // functions preclude this concession, i.e., all nested function must have a return type). A function prototype
3340 // declaration must still have a type_specifier. OBSOLESCENT (see 1)
[4d51835]3341 | function_declarator compound_statement
[c0a33d2]3342 { $$ = $1->addFunctionBody( $2 ); }
[35718a9]3343 | KR_function_declarator KR_parameter_list_opt compound_statement
[c0a33d2]3344 { $$ = $1->addOldDeclList( $2 )->addFunctionBody( $3 ); }
[4d51835]3345 ;
[51b73452]3346
[8b47e50]3347with_clause_opt:
3348 // empty
[9997fee]3349 { $$ = nullptr; forall = false; }
[d8454b9]3350 | WITH '(' tuple_expression_list ')' attribute_list_opt
3351 {
3352 $$ = $3; forall = false;
3353 if ( $5 ) {
[55266c7]3354 SemanticError( yylloc, "syntax error, attributes cannot be associated with function body. Move attribute(s) before \"with\" clause." );
[d8454b9]3355 $$ = nullptr;
3356 } // if
3357 }
[8b47e50]3358 ;
3359
[51b73452]3360function_definition:
[8b47e50]3361 cfa_function_declaration with_clause_opt compound_statement // CFA
[4d51835]3362 {
[481115f]3363 // Add the function body to the last identifier in the function definition list, i.e., foo3:
3364 // [const double] foo1(), foo2( int ), foo3( double ) { return 3.0; }
[5fcba14]3365 $1->get_last()->addFunctionBody( $3, $2 );
[481115f]3366 $$ = $1;
[4d51835]3367 }
[8b47e50]3368 | declaration_specifier function_declarator with_clause_opt compound_statement
[4d51835]3369 {
[c38ae92]3370 rebindForall( $1, $2 );
[7fdb94e1]3371 $$ = $2->addFunctionBody( $4, $3 )->addType( $1 );
3372 }
[1f771fc]3373 | declaration_specifier function_type_redeclarator with_clause_opt compound_statement
[7fdb94e1]3374 {
3375 rebindForall( $1, $2 );
[5fcba14]3376 $$ = $2->addFunctionBody( $4, $3 )->addType( $1 );
[4d51835]3377 }
[a16a7ec]3378 // handles default int return type, OBSOLESCENT (see 1)
[8b47e50]3379 | type_qualifier_list function_declarator with_clause_opt compound_statement
[c0a33d2]3380 { $$ = $2->addFunctionBody( $4, $3 )->addQualifiers( $1 ); }
[a16a7ec]3381 // handles default int return type, OBSOLESCENT (see 1)
[8b47e50]3382 | declaration_qualifier_list function_declarator with_clause_opt compound_statement
[c0a33d2]3383 { $$ = $2->addFunctionBody( $4, $3 )->addQualifiers( $1 ); }
[a16a7ec]3384 // handles default int return type, OBSOLESCENT (see 1)
[8b47e50]3385 | declaration_qualifier_list type_qualifier_list function_declarator with_clause_opt compound_statement
[c0a33d2]3386 { $$ = $3->addFunctionBody( $5, $4 )->addQualifiers( $2 )->addQualifiers( $1 ); }
[4d51835]3387
3388 // Old-style K&R function definition, OBSOLESCENT (see 4)
[35718a9]3389 | declaration_specifier KR_function_declarator KR_parameter_list_opt with_clause_opt compound_statement
[4d51835]3390 {
[c38ae92]3391 rebindForall( $1, $2 );
[5fcba14]3392 $$ = $2->addOldDeclList( $3 )->addFunctionBody( $5, $4 )->addType( $1 );
[4d51835]3393 }
[a16a7ec]3394 // handles default int return type, OBSOLESCENT (see 1)
[35718a9]3395 | type_qualifier_list KR_function_declarator KR_parameter_list_opt with_clause_opt compound_statement
[c0a33d2]3396 { $$ = $2->addOldDeclList( $3 )->addFunctionBody( $5, $4 )->addQualifiers( $1 ); }
[a16a7ec]3397 // handles default int return type, OBSOLESCENT (see 1)
[35718a9]3398 | declaration_qualifier_list KR_function_declarator KR_parameter_list_opt with_clause_opt compound_statement
[c0a33d2]3399 { $$ = $2->addOldDeclList( $3 )->addFunctionBody( $5, $4 )->addQualifiers( $1 ); }
[a16a7ec]3400 // handles default int return type, OBSOLESCENT (see 1)
[35718a9]3401 | declaration_qualifier_list type_qualifier_list KR_function_declarator KR_parameter_list_opt with_clause_opt compound_statement
[c0a33d2]3402 { $$ = $3->addOldDeclList( $4 )->addFunctionBody( $6, $5 )->addQualifiers( $2 )->addQualifiers( $1 ); }
[4d51835]3403 ;
[51b73452]3404
3405declarator:
[4d51835]3406 variable_declarator
[c6b1105]3407 | variable_type_redeclarator
[4d51835]3408 | function_declarator
[1f771fc]3409 | function_type_redeclarator
[4d51835]3410 ;
[51b73452]3411
3412subrange:
[4d51835]3413 constant_expression '~' constant_expression // CFA, integer subrange
[bb7422a]3414 { $$ = new ExpressionNode( new ast::RangeExpr( yylloc, maybeMoveBuild( $1 ), maybeMoveBuild( $3 ) ) ); }
[4d51835]3415 ;
[b87a5ed]3416
[7e13b11]3417// **************************** ASM *****************************
3418
[b87a5ed]3419asm_name_opt: // GCC
[4d51835]3420 // empty
[58dd019]3421 { $$ = nullptr; }
3422 | ASM '(' string_literal ')' attribute_list_opt
[c0aa336]3423 {
3424 DeclarationNode * name = new DeclarationNode();
[32d6fdc]3425 name->asmName = maybeMoveBuild( $3 );
[c0aa336]3426 $$ = name->addQualifiers( $5 );
3427 }
[4d51835]3428 ;
[b87a5ed]3429
[7e13b11]3430// **************************** ATTRIBUTE *****************************
3431
[b87a5ed]3432attribute_list_opt: // GCC
[4d51835]3433 // empty
[58dd019]3434 { $$ = nullptr; }
[4d51835]3435 | attribute_list
3436 ;
[b87a5ed]3437
3438attribute_list: // GCC
[4d51835]3439 attribute
3440 | attribute_list attribute
[1db21619]3441 { $$ = $2->addQualifiers( $1 ); }
[4d51835]3442 ;
[b87a5ed]3443
3444attribute: // GCC
[44a81853]3445 ATTRIBUTE '(' '(' attribute_name_list ')' ')'
3446 { $$ = $4; }
[647e2ea]3447 | ATTRIBUTE '(' attribute_name_list ')' // CFA
3448 { $$ = $3; }
3449 | ATTR '(' attribute_name_list ')' // CFA
3450 { $$ = $3; }
[4d51835]3451 ;
[b87a5ed]3452
[44a81853]3453attribute_name_list: // GCC
3454 attribute_name
3455 | attribute_name_list ',' attribute_name
[c0aa336]3456 { $$ = $3->addQualifiers( $1 ); }
[4d51835]3457 ;
[b87a5ed]3458
[44a81853]3459attribute_name: // GCC
[4d51835]3460 // empty
[44a81853]3461 { $$ = nullptr; }
3462 | attr_name
3463 { $$ = DeclarationNode::newAttribute( $1 ); }
[cbbd8fd7]3464 | attr_name '(' argument_expression_list_opt ')'
[44a81853]3465 { $$ = DeclarationNode::newAttribute( $1, $3 ); }
[4d51835]3466 ;
[b87a5ed]3467
[44a81853]3468attr_name: // GCC
3469 IDENTIFIER
[5b2edbc]3470 | quasi_keyword
[44a81853]3471 | TYPEDEFname
3472 | TYPEGENname
[114014c]3473 | FALLTHROUGH
3474 { $$ = Token{ new string( "fallthrough" ), { nullptr, -1 } }; }
[44a81853]3475 | CONST
[9ff56e7]3476 { $$ = Token{ new string( "__const__" ), { nullptr, -1 } }; }
[4d51835]3477 ;
[51b73452]3478
[c11e31c]3479// ============================================================================
[de62360d]3480// The following sections are a series of grammar patterns used to parse declarators. Multiple patterns are necessary
3481// because the type of an identifier in wrapped around the identifier in the same form as its usage in an expression, as
3482// in:
[c11e31c]3483//
[b87a5ed]3484// int (*f())[10] { ... };
3485// ... (*f())[3] += 1; // definition mimics usage
[c11e31c]3486//
[de62360d]3487// Because these patterns are highly recursive, changes at a lower level in the recursion require copying some or all of
3488// the pattern. Each of these patterns has some subtle variation to ensure correct syntax in a particular context.
[c11e31c]3489// ============================================================================
3490
3491// ----------------------------------------------------------------------------
[de62360d]3492// The set of valid declarators before a compound statement for defining a function is less than the set of declarators
3493// to define a variable or function prototype, e.g.:
[c11e31c]3494//
[b87a5ed]3495// valid declaration invalid definition
3496// ----------------- ------------------
[4d51835]3497// int f; int f {}
3498// int *f; int *f {}
[b87a5ed]3499// int f[10]; int f[10] {}
[4d51835]3500// int (*f)(int); int (*f)(int) {}
[c11e31c]3501//
[de62360d]3502// To preclude this syntactic anomaly requires separating the grammar rules for variable and function declarators, hence
3503// variable_declarator and function_declarator.
[c11e31c]3504// ----------------------------------------------------------------------------
3505
[de62360d]3506// This pattern parses a declaration of a variable that is not redefining a typedef name. The pattern precludes
3507// declaring an array of functions versus a pointer to an array of functions.
[51b73452]3508
[5e25953]3509paren_identifier:
[e16eb460]3510 identifier_at
[5e25953]3511 { $$ = DeclarationNode::newName( $1 ); }
3512 | '(' paren_identifier ')' // redundant parenthesis
3513 { $$ = $2; }
3514 ;
3515
[51b73452]3516variable_declarator:
[4d51835]3517 paren_identifier attribute_list_opt
[1db21619]3518 { $$ = $1->addQualifiers( $2 ); }
[4d51835]3519 | variable_ptr
3520 | variable_array attribute_list_opt
[1db21619]3521 { $$ = $1->addQualifiers( $2 ); }
[4d51835]3522 | variable_function attribute_list_opt
[1db21619]3523 { $$ = $1->addQualifiers( $2 ); }
[4d51835]3524 ;
[51b73452]3525
3526variable_ptr:
[dd51906]3527 ptrref_operator variable_declarator
[a5f9444]3528 { $$ = $2->addPointer( DeclarationNode::newPointer( nullptr, $1 ) ); }
[dd51906]3529 | ptrref_operator type_qualifier_list variable_declarator
[ce8c12f]3530 { $$ = $3->addPointer( DeclarationNode::newPointer( $2, $1 ) ); }
[5e25953]3531 | '(' variable_ptr ')' attribute_list_opt // redundant parenthesis
3532 { $$ = $2->addQualifiers( $4 ); }
3533 | '(' attribute_list variable_ptr ')' attribute_list_opt // redundant parenthesis
3534 { $$ = $3->addQualifiers( $2 )->addQualifiers( $5 ); }
[4d51835]3535 ;
[51b73452]3536
3537variable_array:
[4d51835]3538 paren_identifier array_dimension
3539 { $$ = $1->addArray( $2 ); }
3540 | '(' variable_ptr ')' array_dimension
3541 { $$ = $2->addArray( $4 ); }
[5e25953]3542 | '(' attribute_list variable_ptr ')' array_dimension
3543 { $$ = $3->addQualifiers( $2 )->addArray( $5 ); }
[9fd9d015]3544 | '(' variable_array ')' multi_array_dimension // redundant parenthesis
[4d51835]3545 { $$ = $2->addArray( $4 ); }
[5e25953]3546 | '(' attribute_list variable_array ')' multi_array_dimension // redundant parenthesis
3547 { $$ = $3->addQualifiers( $2 )->addArray( $5 ); }
[4d51835]3548 | '(' variable_array ')' // redundant parenthesis
3549 { $$ = $2; }
[5e25953]3550 | '(' attribute_list variable_array ')' // redundant parenthesis
3551 { $$ = $3->addQualifiers( $2 ); }
[4d51835]3552 ;
[51b73452]3553
3554variable_function:
[647e2ea]3555 '(' variable_ptr ')' '(' parameter_list_ellipsis_opt ')' // empty parameter list OBSOLESCENT (see 3)
[71a422a]3556 { $$ = $2->addParamList( $5 ); }
[647e2ea]3557 | '(' attribute_list variable_ptr ')' '(' parameter_list_ellipsis_opt ')' // empty parameter list OBSOLESCENT (see 3)
[71a422a]3558 { $$ = $3->addQualifiers( $2 )->addParamList( $6 ); }
[4d51835]3559 | '(' variable_function ')' // redundant parenthesis
3560 { $$ = $2; }
[5e25953]3561 | '(' attribute_list variable_function ')' // redundant parenthesis
3562 { $$ = $3->addQualifiers( $2 ); }
[4d51835]3563 ;
[51b73452]3564
[c6b1105]3565// This pattern parses a function declarator that is not redefining a typedef name. For non-nested functions, there is
3566// no context where a function definition can redefine a typedef name, i.e., the typedef and function name cannot exist
3567// is the same scope. The pattern precludes returning arrays and functions versus pointers to arrays and functions.
[51b73452]3568
3569function_declarator:
[4d51835]3570 function_no_ptr attribute_list_opt
[1db21619]3571 { $$ = $1->addQualifiers( $2 ); }
[4d51835]3572 | function_ptr
3573 | function_array attribute_list_opt
[1db21619]3574 { $$ = $1->addQualifiers( $2 ); }
[4d51835]3575 ;
[51b73452]3576
3577function_no_ptr:
[647e2ea]3578 paren_identifier '(' parameter_list_ellipsis_opt ')' // empty parameter list OBSOLESCENT (see 3)
[71a422a]3579 { $$ = $1->addParamList( $3 ); }
[647e2ea]3580 | '(' function_ptr ')' '(' parameter_list_ellipsis_opt ')'
[71a422a]3581 { $$ = $2->addParamList( $5 ); }
[647e2ea]3582 | '(' attribute_list function_ptr ')' '(' parameter_list_ellipsis_opt ')'
[71a422a]3583 { $$ = $3->addQualifiers( $2 )->addParamList( $6 ); }
[4d51835]3584 | '(' function_no_ptr ')' // redundant parenthesis
3585 { $$ = $2; }
[5e25953]3586 | '(' attribute_list function_no_ptr ')' // redundant parenthesis
3587 { $$ = $3->addQualifiers( $2 ); }
[4d51835]3588 ;
[51b73452]3589
3590function_ptr:
[dd51906]3591 ptrref_operator function_declarator
[a5f9444]3592 { $$ = $2->addPointer( DeclarationNode::newPointer( nullptr, $1 ) ); }
[dd51906]3593 | ptrref_operator type_qualifier_list function_declarator
[ce8c12f]3594 { $$ = $3->addPointer( DeclarationNode::newPointer( $2, $1 ) ); }
[5e25953]3595 | '(' function_ptr ')' attribute_list_opt
3596 { $$ = $2->addQualifiers( $4 ); }
3597 | '(' attribute_list function_ptr ')' attribute_list_opt
3598 { $$ = $3->addQualifiers( $2 )->addQualifiers( $5 ); }
[4d51835]3599 ;
[51b73452]3600
3601function_array:
[4d51835]3602 '(' function_ptr ')' array_dimension
3603 { $$ = $2->addArray( $4 ); }
[5e25953]3604 | '(' attribute_list function_ptr ')' array_dimension
3605 { $$ = $3->addQualifiers( $2 )->addArray( $5 ); }
[4d51835]3606 | '(' function_array ')' multi_array_dimension // redundant parenthesis
3607 { $$ = $2->addArray( $4 ); }
[5e25953]3608 | '(' attribute_list function_array ')' multi_array_dimension // redundant parenthesis
3609 { $$ = $3->addQualifiers( $2 )->addArray( $5 ); }
[4d51835]3610 | '(' function_array ')' // redundant parenthesis
3611 { $$ = $2; }
[5e25953]3612 | '(' attribute_list function_array ')' // redundant parenthesis
3613 { $$ = $3->addQualifiers( $2 ); }
[4d51835]3614 ;
[51b73452]3615
[c0aa336]3616// This pattern parses an old-style K&R function declarator (OBSOLESCENT, see 4)
3617//
3618// f( a, b, c ) int a, *b, c[]; {}
3619//
3620// that is not redefining a typedef name (see function_declarator for additional comments). The pattern precludes
3621// returning arrays and functions versus pointers to arrays and functions.
[51b73452]3622
[c0aa336]3623KR_function_declarator:
3624 KR_function_no_ptr
3625 | KR_function_ptr
3626 | KR_function_array
[4d51835]3627 ;
[51b73452]3628
[c0aa336]3629KR_function_no_ptr:
[4d51835]3630 paren_identifier '(' identifier_list ')' // function_declarator handles empty parameter
3631 { $$ = $1->addIdList( $3 ); }
[647e2ea]3632 | '(' KR_function_ptr ')' '(' parameter_list_ellipsis_opt ')'
[71a422a]3633 { $$ = $2->addParamList( $5 ); }
[647e2ea]3634 | '(' attribute_list KR_function_ptr ')' '(' parameter_list_ellipsis_opt ')'
[71a422a]3635 { $$ = $3->addQualifiers( $2 )->addParamList( $6 ); }
[c0aa336]3636 | '(' KR_function_no_ptr ')' // redundant parenthesis
[4d51835]3637 { $$ = $2; }
[5e25953]3638 | '(' attribute_list KR_function_no_ptr ')' // redundant parenthesis
3639 { $$ = $3->addQualifiers( $2 ); }
[4d51835]3640 ;
[51b73452]3641
[c0aa336]3642KR_function_ptr:
3643 ptrref_operator KR_function_declarator
[a5f9444]3644 { $$ = $2->addPointer( DeclarationNode::newPointer( nullptr, $1 ) ); }
[c0aa336]3645 | ptrref_operator type_qualifier_list KR_function_declarator
[ce8c12f]3646 { $$ = $3->addPointer( DeclarationNode::newPointer( $2, $1 ) ); }
[c0aa336]3647 | '(' KR_function_ptr ')'
[4d51835]3648 { $$ = $2; }
[5e25953]3649 | '(' attribute_list KR_function_ptr ')'
3650 { $$ = $3->addQualifiers( $2 ); }
[4d51835]3651 ;
[51b73452]3652
[c0aa336]3653KR_function_array:
3654 '(' KR_function_ptr ')' array_dimension
[4d51835]3655 { $$ = $2->addArray( $4 ); }
[5e25953]3656 | '(' attribute_list KR_function_ptr ')' array_dimension
3657 { $$ = $3->addQualifiers( $2 )->addArray( $5 ); }
[c0aa336]3658 | '(' KR_function_array ')' multi_array_dimension // redundant parenthesis
[4d51835]3659 { $$ = $2->addArray( $4 ); }
[5e25953]3660 | '(' attribute_list KR_function_array ')' multi_array_dimension // redundant parenthesis
3661 { $$ = $3->addQualifiers( $2 )->addArray( $5 ); }
[c0aa336]3662 | '(' KR_function_array ')' // redundant parenthesis
[4d51835]3663 { $$ = $2; }
[5e25953]3664 | '(' attribute_list KR_function_array ')' // redundant parenthesis
3665 { $$ = $3->addQualifiers( $2 ); }
[4d51835]3666 ;
[51b73452]3667
[1f771fc]3668// This pattern parses a declaration for a variable that redefines a type name, e.g.:
[c11e31c]3669//
[b87a5ed]3670// typedef int foo;
3671// {
3672// int foo; // redefine typedef name in new scope
3673// }
[51b73452]3674
[2871210]3675paren_type:
[f9c3100]3676 typedef_name
[c4f68dc]3677 {
[f9c3100]3678 // hide type name in enclosing scope by variable name
[71a422a]3679 typedefTable.addToEnclosingScope( *$1->name, IDENTIFIER, "paren_type" );
[c4f68dc]3680 }
[2871210]3681 | '(' paren_type ')'
[4d51835]3682 { $$ = $2; }
3683 ;
[51b73452]3684
[5e25953]3685variable_type_redeclarator:
3686 paren_type attribute_list_opt
3687 { $$ = $1->addQualifiers( $2 ); }
[1f771fc]3688 | variable_type_ptr
3689 | variable_type_array attribute_list_opt
[5e25953]3690 { $$ = $1->addQualifiers( $2 ); }
[1f771fc]3691 | variable_type_function attribute_list_opt
[5e25953]3692 { $$ = $1->addQualifiers( $2 ); }
3693 ;
3694
[1f771fc]3695variable_type_ptr:
[c6b1105]3696 ptrref_operator variable_type_redeclarator
[a5f9444]3697 { $$ = $2->addPointer( DeclarationNode::newPointer( nullptr, $1 ) ); }
[c6b1105]3698 | ptrref_operator type_qualifier_list variable_type_redeclarator
[ce8c12f]3699 { $$ = $3->addPointer( DeclarationNode::newPointer( $2, $1 ) ); }
[1f771fc]3700 | '(' variable_type_ptr ')' attribute_list_opt // redundant parenthesis
[5e25953]3701 { $$ = $2->addQualifiers( $4 ); }
[1f771fc]3702 | '(' attribute_list variable_type_ptr ')' attribute_list_opt // redundant parenthesis
[5e25953]3703 { $$ = $3->addQualifiers( $2 )->addQualifiers( $5 ); }
[4d51835]3704 ;
[51b73452]3705
[1f771fc]3706variable_type_array:
[2871210]3707 paren_type array_dimension
[4d51835]3708 { $$ = $1->addArray( $2 ); }
[1f771fc]3709 | '(' variable_type_ptr ')' array_dimension
[4d51835]3710 { $$ = $2->addArray( $4 ); }
[1f771fc]3711 | '(' attribute_list variable_type_ptr ')' array_dimension
[5e25953]3712 { $$ = $3->addQualifiers( $2 )->addArray( $5 ); }
[1f771fc]3713 | '(' variable_type_array ')' multi_array_dimension // redundant parenthesis
[4d51835]3714 { $$ = $2->addArray( $4 ); }
[1f771fc]3715 | '(' attribute_list variable_type_array ')' multi_array_dimension // redundant parenthesis
[5e25953]3716 { $$ = $3->addQualifiers( $2 )->addArray( $5 ); }
[1f771fc]3717 | '(' variable_type_array ')' // redundant parenthesis
[4d51835]3718 { $$ = $2; }
[1f771fc]3719 | '(' attribute_list variable_type_array ')' // redundant parenthesis
[5e25953]3720 { $$ = $3->addQualifiers( $2 ); }
[4d51835]3721 ;
[51b73452]3722
[1f771fc]3723variable_type_function:
[647e2ea]3724 '(' variable_type_ptr ')' '(' parameter_list_ellipsis_opt ')' // empty parameter list OBSOLESCENT (see 3)
[71a422a]3725 { $$ = $2->addParamList( $5 ); }
[647e2ea]3726 | '(' attribute_list variable_type_ptr ')' '(' parameter_list_ellipsis_opt ')' // empty parameter list OBSOLESCENT (see 3)
[71a422a]3727 { $$ = $3->addQualifiers( $2 )->addParamList( $6 ); }
[1f771fc]3728 | '(' variable_type_function ')' // redundant parenthesis
3729 { $$ = $2; }
3730 | '(' attribute_list variable_type_function ')' // redundant parenthesis
3731 { $$ = $3->addQualifiers( $2 ); }
3732 ;
3733
3734// This pattern parses a declaration for a function prototype that redefines a type name. It precludes declaring an
3735// array of functions versus a pointer to an array of functions, and returning arrays and functions versus pointers to
3736// arrays and functions.
3737
3738function_type_redeclarator:
3739 function_type_no_ptr attribute_list_opt
3740 { $$ = $1->addQualifiers( $2 ); }
3741 | function_type_ptr
3742 | function_type_array attribute_list_opt
3743 { $$ = $1->addQualifiers( $2 ); }
3744 ;
3745
3746function_type_no_ptr:
[647e2ea]3747 paren_type '(' parameter_list_ellipsis_opt ')' // empty parameter list OBSOLESCENT (see 3)
[71a422a]3748 { $$ = $1->addParamList( $3 ); }
[647e2ea]3749 | '(' function_type_ptr ')' '(' parameter_list_ellipsis_opt ')'
[71a422a]3750 { $$ = $2->addParamList( $5 ); }
[647e2ea]3751 | '(' attribute_list function_type_ptr ')' '(' parameter_list_ellipsis_opt ')'
[71a422a]3752 { $$ = $3->addQualifiers( $2 )->addParamList( $6 ); }
[1f771fc]3753 | '(' function_type_no_ptr ')' // redundant parenthesis
[4d51835]3754 { $$ = $2; }
[1f771fc]3755 | '(' attribute_list function_type_no_ptr ')' // redundant parenthesis
3756 { $$ = $3->addQualifiers( $2 ); }
3757 ;
3758
3759function_type_ptr:
3760 ptrref_operator function_type_redeclarator
3761 { $$ = $2->addPointer( DeclarationNode::newPointer( nullptr, $1 ) ); }
3762 | ptrref_operator type_qualifier_list function_type_redeclarator
3763 { $$ = $3->addPointer( DeclarationNode::newPointer( $2, $1 ) ); }
3764 | '(' function_type_ptr ')' attribute_list_opt
3765 { $$ = $2->addQualifiers( $4 ); }
3766 | '(' attribute_list function_type_ptr ')' attribute_list_opt
3767 { $$ = $3->addQualifiers( $2 )->addQualifiers( $5 ); }
3768 ;
3769
3770function_type_array:
3771 '(' function_type_ptr ')' array_dimension
3772 { $$ = $2->addArray( $4 ); }
3773 | '(' attribute_list function_type_ptr ')' array_dimension
3774 { $$ = $3->addQualifiers( $2 )->addArray( $5 ); }
3775 | '(' function_type_array ')' multi_array_dimension // redundant parenthesis
3776 { $$ = $2->addArray( $4 ); }
3777 | '(' attribute_list function_type_array ')' multi_array_dimension // redundant parenthesis
3778 { $$ = $3->addQualifiers( $2 )->addArray( $5 ); }
3779 | '(' function_type_array ')' // redundant parenthesis
[4d51835]3780 { $$ = $2; }
[1f771fc]3781 | '(' attribute_list function_type_array ')' // redundant parenthesis
[5e25953]3782 { $$ = $3->addQualifiers( $2 ); }
[4d51835]3783 ;
[51b73452]3784
[c0aa336]3785// This pattern parses a declaration for a parameter variable of a function prototype or actual that is not redefining a
3786// typedef name and allows the C99 array options, which can only appear in a parameter list. The pattern precludes
3787// declaring an array of functions versus a pointer to an array of functions, and returning arrays and functions versus
3788// pointers to arrays and functions.
[51b73452]3789
3790identifier_parameter_declarator:
[4d51835]3791 paren_identifier attribute_list_opt
[1db21619]3792 { $$ = $1->addQualifiers( $2 ); }
[b6b3c42]3793 | '&' MUTEX paren_identifier attribute_list_opt
[6cef439]3794 { $$ = $3->addPointer( DeclarationNode::newPointer( DeclarationNode::newFromTypeData( build_type_qualifier( ast::CV::Mutex ) ),
[647e2ea]3795 OperKinds::AddressOf ) )->addQualifiers( $4 ); }
[4d51835]3796 | identifier_parameter_ptr
3797 | identifier_parameter_array attribute_list_opt
[1db21619]3798 { $$ = $1->addQualifiers( $2 ); }
[4d51835]3799 | identifier_parameter_function attribute_list_opt
[1db21619]3800 { $$ = $1->addQualifiers( $2 ); }
[4d51835]3801 ;
[51b73452]3802
3803identifier_parameter_ptr:
[dd51906]3804 ptrref_operator identifier_parameter_declarator
[a5f9444]3805 { $$ = $2->addPointer( DeclarationNode::newPointer( nullptr, $1 ) ); }
[dd51906]3806 | ptrref_operator type_qualifier_list identifier_parameter_declarator
[ce8c12f]3807 { $$ = $3->addPointer( DeclarationNode::newPointer( $2, $1 ) ); }
[5e25953]3808 | '(' identifier_parameter_ptr ')' attribute_list_opt // redundant parenthesis
[c0aa336]3809 { $$ = $2->addQualifiers( $4 ); }
[4d51835]3810 ;
[51b73452]3811
3812identifier_parameter_array:
[4d51835]3813 paren_identifier array_parameter_dimension
3814 { $$ = $1->addArray( $2 ); }
3815 | '(' identifier_parameter_ptr ')' array_dimension
3816 { $$ = $2->addArray( $4 ); }
3817 | '(' identifier_parameter_array ')' multi_array_dimension // redundant parenthesis
3818 { $$ = $2->addArray( $4 ); }
3819 | '(' identifier_parameter_array ')' // redundant parenthesis
3820 { $$ = $2; }
3821 ;
[51b73452]3822
3823identifier_parameter_function:
[647e2ea]3824 paren_identifier '(' parameter_list_ellipsis_opt ')' // empty parameter list OBSOLESCENT (see 3)
[71a422a]3825 { $$ = $1->addParamList( $3 ); }
[647e2ea]3826 | '(' identifier_parameter_ptr ')' '(' parameter_list_ellipsis_opt ')' // empty parameter list OBSOLESCENT (see 3)
[71a422a]3827 { $$ = $2->addParamList( $5 ); }
[4d51835]3828 | '(' identifier_parameter_function ')' // redundant parenthesis
3829 { $$ = $2; }
3830 ;
[b87a5ed]3831
[de62360d]3832// This pattern parses a declaration for a parameter variable or function prototype that is redefining a typedef name,
3833// e.g.:
[c11e31c]3834//
[b87a5ed]3835// typedef int foo;
[114014c]3836// forall( otype T ) struct foo;
[b87a5ed]3837// int f( int foo ); // redefine typedef name in new scope
[c11e31c]3838//
[c0aa336]3839// and allows the C99 array options, which can only appear in a parameter list.
[51b73452]3840
[2871210]3841type_parameter_redeclarator:
[f9c3100]3842 typedef_name attribute_list_opt
[1db21619]3843 { $$ = $1->addQualifiers( $2 ); }
[f9c3100]3844 | '&' MUTEX typedef_name attribute_list_opt
[6cef439]3845 { $$ = $3->addPointer( DeclarationNode::newPointer( DeclarationNode::newFromTypeData( build_type_qualifier( ast::CV::Mutex ) ),
[647e2ea]3846 OperKinds::AddressOf ) )->addQualifiers( $4 ); }
[2871210]3847 | type_parameter_ptr
3848 | type_parameter_array attribute_list_opt
[1db21619]3849 { $$ = $1->addQualifiers( $2 ); }
[2871210]3850 | type_parameter_function attribute_list_opt
[1db21619]3851 { $$ = $1->addQualifiers( $2 ); }
[4d51835]3852 ;
[51b73452]3853
[f9c3100]3854typedef_name:
[4d51835]3855 TYPEDEFname
[7fdb94e1]3856 { $$ = DeclarationNode::newName( $1 ); }
[2871210]3857 | TYPEGENname
[7fdb94e1]3858 { $$ = DeclarationNode::newName( $1 ); }
[4d51835]3859 ;
[51b73452]3860
[2871210]3861type_parameter_ptr:
[dd51906]3862 ptrref_operator type_parameter_redeclarator
[a5f9444]3863 { $$ = $2->addPointer( DeclarationNode::newPointer( nullptr, $1 ) ); }
[dd51906]3864 | ptrref_operator type_qualifier_list type_parameter_redeclarator
[ce8c12f]3865 { $$ = $3->addPointer( DeclarationNode::newPointer( $2, $1 ) ); }
[5e25953]3866 | '(' type_parameter_ptr ')' attribute_list_opt // redundant parenthesis
[c0aa336]3867 { $$ = $2->addQualifiers( $4 ); }
[4d51835]3868 ;
[51b73452]3869
[2871210]3870type_parameter_array:
[f9c3100]3871 typedef_name array_parameter_dimension
[4d51835]3872 { $$ = $1->addArray( $2 ); }
[2871210]3873 | '(' type_parameter_ptr ')' array_parameter_dimension
[4d51835]3874 { $$ = $2->addArray( $4 ); }
3875 ;
[51b73452]3876
[2871210]3877type_parameter_function:
[7e13b11]3878 typedef_name '(' parameter_list_ellipsis_opt ')' // empty parameter list OBSOLESCENT (see 3)
[71a422a]3879 { $$ = $1->addParamList( $3 ); }
[647e2ea]3880 | '(' type_parameter_ptr ')' '(' parameter_list_ellipsis_opt ')' // empty parameter list OBSOLESCENT (see 3)
[71a422a]3881 { $$ = $2->addParamList( $5 ); }
[4d51835]3882 ;
[b87a5ed]3883
[de62360d]3884// This pattern parses a declaration of an abstract variable or function prototype, i.e., there is no identifier to
3885// which the type applies, e.g.:
[c11e31c]3886//
[b87a5ed]3887// sizeof( int );
[c0aa336]3888// sizeof( int * );
[b87a5ed]3889// sizeof( int [10] );
[c0aa336]3890// sizeof( int (*)() );
3891// sizeof( int () );
[c11e31c]3892//
[de62360d]3893// The pattern precludes declaring an array of functions versus a pointer to an array of functions, and returning arrays
3894// and functions versus pointers to arrays and functions.
[51b73452]3895
3896abstract_declarator:
[4d51835]3897 abstract_ptr
3898 | abstract_array attribute_list_opt
[1db21619]3899 { $$ = $1->addQualifiers( $2 ); }
[4d51835]3900 | abstract_function attribute_list_opt
[1db21619]3901 { $$ = $1->addQualifiers( $2 ); }
[4d51835]3902 ;
[51b73452]3903
3904abstract_ptr:
[dd51906]3905 ptrref_operator
[a5f9444]3906 { $$ = DeclarationNode::newPointer( nullptr, $1 ); }
[dd51906]3907 | ptrref_operator type_qualifier_list
[ce8c12f]3908 { $$ = DeclarationNode::newPointer( $2, $1 ); }
[dd51906]3909 | ptrref_operator abstract_declarator
[a5f9444]3910 { $$ = $2->addPointer( DeclarationNode::newPointer( nullptr, $1 ) ); }
[dd51906]3911 | ptrref_operator type_qualifier_list abstract_declarator
[ce8c12f]3912 { $$ = $3->addPointer( DeclarationNode::newPointer( $2, $1 ) ); }
[c0aa336]3913 | '(' abstract_ptr ')' attribute_list_opt
3914 { $$ = $2->addQualifiers( $4 ); }
[4d51835]3915 ;
[51b73452]3916
3917abstract_array:
[4d51835]3918 array_dimension
3919 | '(' abstract_ptr ')' array_dimension
3920 { $$ = $2->addArray( $4 ); }
3921 | '(' abstract_array ')' multi_array_dimension // redundant parenthesis
3922 { $$ = $2->addArray( $4 ); }
3923 | '(' abstract_array ')' // redundant parenthesis
3924 { $$ = $2; }
3925 ;
[51b73452]3926
3927abstract_function:
[7e13b11]3928 '(' parameter_list_ellipsis_opt ')' // empty parameter list OBSOLESCENT (see 3)
[71a422a]3929 { $$ = DeclarationNode::newFunction( nullptr, nullptr, $2, nullptr ); }
[647e2ea]3930 | '(' abstract_ptr ')' '(' parameter_list_ellipsis_opt ')' // empty parameter list OBSOLESCENT (see 3)
[71a422a]3931 { $$ = $2->addParamList( $5 ); }
[4d51835]3932 | '(' abstract_function ')' // redundant parenthesis
3933 { $$ = $2; }
3934 ;
[51b73452]3935
3936array_dimension:
[4d51835]3937 // Only the first dimension can be empty.
[2871210]3938 '[' ']'
[a5f9444]3939 { $$ = DeclarationNode::newArray( nullptr, nullptr, false ); }
[2871210]3940 | '[' ']' multi_array_dimension
[a5f9444]3941 { $$ = DeclarationNode::newArray( nullptr, nullptr, false )->addArray( $3 ); }
[910e1d0]3942 // Cannot use constant_expression because of tuples => semantic check
[d41735a]3943 | '[' push assignment_expression pop ',' comma_expression ']' // CFA
[a5f9444]3944 { $$ = DeclarationNode::newArray( $3, nullptr, false )->addArray( DeclarationNode::newArray( $6, nullptr, false ) ); }
[6a99803]3945 // { SemanticError( yylloc, "New array dimension is currently unimplemented." ); $$ = nullptr; }
[647e2ea]3946
3947 // If needed, the following parses and does not use comma_expression, so the array structure can be built.
3948 // | '[' push assignment_expression pop ',' push array_dimension_list pop ']' // CFA
3949
[d41735a]3950 | '[' push array_type_list pop ']' // CFA
[0b0a285]3951 { $$ = DeclarationNode::newArray( $3, nullptr, false ); }
[4d51835]3952 | multi_array_dimension
3953 ;
[51b73452]3954
[647e2ea]3955// array_dimension_list:
3956// assignment_expression
3957// | array_dimension_list ',' assignment_expression
3958// ;
3959
[d41735a]3960array_type_list:
3961 basic_type_name
[bb7422a]3962 { $$ = new ExpressionNode( new ast::TypeExpr( yylloc, maybeMoveBuildType( $1 ) ) ); }
[d41735a]3963 | type_name
[bb7422a]3964 { $$ = new ExpressionNode( new ast::TypeExpr( yylloc, maybeMoveBuildType( $1 ) ) ); }
[d41735a]3965 | assignment_expression upupeq assignment_expression
3966 | array_type_list ',' basic_type_name
[b93c544]3967 { $$ = $1->set_last( new ExpressionNode( new ast::TypeExpr( yylloc, maybeMoveBuildType( $3 ) ) ) ); }
[bb7422a]3968 | array_type_list ',' type_name
[b93c544]3969 { $$ = $1->set_last( new ExpressionNode( new ast::TypeExpr( yylloc, maybeMoveBuildType( $3 ) ) ) ); }
[d41735a]3970 | array_type_list ',' assignment_expression upupeq assignment_expression
3971 ;
3972
3973upupeq:
3974 '~'
3975 { $$ = OperKinds::LThan; }
3976 | ErangeUpEq
3977 { $$ = OperKinds::LEThan; }
[9fd9d015]3978 ;
[d41735a]3979
[51b73452]3980multi_array_dimension:
[c0a33d2]3981 '[' push assignment_expression pop ']'
[a5f9444]3982 { $$ = DeclarationNode::newArray( $3, nullptr, false ); }
[c0a33d2]3983 | '[' push '*' pop ']' // C99
[4d51835]3984 { $$ = DeclarationNode::newVarArray( 0 ); }
[c0a33d2]3985 | multi_array_dimension '[' push assignment_expression pop ']'
[a5f9444]3986 { $$ = $1->addArray( DeclarationNode::newArray( $4, nullptr, false ) ); }
[c0a33d2]3987 | multi_array_dimension '[' push '*' pop ']' // C99
[4d51835]3988 { $$ = $1->addArray( DeclarationNode::newVarArray( 0 ) ); }
3989 ;
[51b73452]3990
[c11e31c]3991// This pattern parses a declaration of a parameter abstract variable or function prototype, i.e., there is no
3992// identifier to which the type applies, e.g.:
3993//
[c0aa336]3994// int f( int ); // not handled here
3995// int f( int * ); // abstract function-prototype parameter; no parameter name specified
3996// int f( int (*)() ); // abstract function-prototype parameter; no parameter name specified
[b87a5ed]3997// int f( int (int) ); // abstract function-prototype parameter; no parameter name specified
[c11e31c]3998//
[de62360d]3999// The pattern precludes declaring an array of functions versus a pointer to an array of functions, and returning arrays
[c0aa336]4000// and functions versus pointers to arrays and functions. In addition, the pattern handles the
4001// special meaning of parenthesis around a typedef name:
4002//
4003// ISO/IEC 9899:1999 Section 6.7.5.3(11) : "In a parameter declaration, a single typedef name in
4004// parentheses is taken to be an abstract declarator that specifies a function with a single parameter,
4005// not as redundant parentheses around the identifier."
4006//
4007// For example:
4008//
4009// typedef float T;
4010// int f( int ( T [5] ) ); // see abstract_parameter_declarator
4011// int g( int ( T ( int ) ) ); // see abstract_parameter_declarator
4012// int f( int f1( T a[5] ) ); // see identifier_parameter_declarator
4013// int g( int g1( T g2( int p ) ) ); // see identifier_parameter_declarator
4014//
4015// In essence, a '(' immediately to the left of typedef name, T, is interpreted as starting a parameter type list, and
4016// not as redundant parentheses around a redeclaration of T. Finally, the pattern also precludes declaring an array of
4017// functions versus a pointer to an array of functions, and returning arrays and functions versus pointers to arrays and
4018// functions.
[51b73452]4019
[59c7e3e]4020abstract_parameter_declarator_opt:
4021 // empty
4022 { $$ = nullptr; }
4023 | abstract_parameter_declarator
4024 ;
4025
[51b73452]4026abstract_parameter_declarator:
[4d51835]4027 abstract_parameter_ptr
[b6b3c42]4028 | '&' MUTEX attribute_list_opt
[6cef439]4029 { $$ = DeclarationNode::newPointer( DeclarationNode::newFromTypeData( build_type_qualifier( ast::CV::Mutex ) ), OperKinds::AddressOf )->addQualifiers( $3 ); }
[4d51835]4030 | abstract_parameter_array attribute_list_opt
[1db21619]4031 { $$ = $1->addQualifiers( $2 ); }
[4d51835]4032 | abstract_parameter_function attribute_list_opt
[1db21619]4033 { $$ = $1->addQualifiers( $2 ); }
[4d51835]4034 ;
[51b73452]4035
4036abstract_parameter_ptr:
[dd51906]4037 ptrref_operator
[ce8c12f]4038 { $$ = DeclarationNode::newPointer( nullptr, $1 ); }
[dd51906]4039 | ptrref_operator type_qualifier_list
[ce8c12f]4040 { $$ = DeclarationNode::newPointer( $2, $1 ); }
[dd51906]4041 | ptrref_operator abstract_parameter_declarator
[ce8c12f]4042 { $$ = $2->addPointer( DeclarationNode::newPointer( nullptr, $1 ) ); }
[dd51906]4043 | ptrref_operator type_qualifier_list abstract_parameter_declarator
[ce8c12f]4044 { $$ = $3->addPointer( DeclarationNode::newPointer( $2, $1 ) ); }
[5e25953]4045 | '(' abstract_parameter_ptr ')' attribute_list_opt // redundant parenthesis
[c0aa336]4046 { $$ = $2->addQualifiers( $4 ); }
[4d51835]4047 ;
[51b73452]4048
4049abstract_parameter_array:
[4d51835]4050 array_parameter_dimension
4051 | '(' abstract_parameter_ptr ')' array_parameter_dimension
4052 { $$ = $2->addArray( $4 ); }
4053 | '(' abstract_parameter_array ')' multi_array_dimension // redundant parenthesis
4054 { $$ = $2->addArray( $4 ); }
4055 | '(' abstract_parameter_array ')' // redundant parenthesis
4056 { $$ = $2; }
4057 ;
[51b73452]4058
4059abstract_parameter_function:
[7e13b11]4060 '(' parameter_list_ellipsis_opt ')' // empty parameter list OBSOLESCENT (see 3)
[71a422a]4061 { $$ = DeclarationNode::newFunction( nullptr, nullptr, $2, nullptr ); }
[647e2ea]4062 | '(' abstract_parameter_ptr ')' '(' parameter_list_ellipsis_opt ')' // empty parameter list OBSOLESCENT (see 3)
[71a422a]4063 { $$ = $2->addParamList( $5 ); }
[4d51835]4064 | '(' abstract_parameter_function ')' // redundant parenthesis
4065 { $$ = $2; }
4066 ;
[51b73452]4067
4068array_parameter_dimension:
[4d51835]4069 // Only the first dimension can be empty or have qualifiers.
4070 array_parameter_1st_dimension
4071 | array_parameter_1st_dimension multi_array_dimension
4072 { $$ = $1->addArray( $2 ); }
4073 | multi_array_dimension
4074 ;
[51b73452]4075
[c11e31c]4076// The declaration of an array parameter has additional syntax over arrays in normal variable declarations:
4077//
[de62360d]4078// ISO/IEC 9899:1999 Section 6.7.5.2(1) : "The optional type qualifiers and the keyword static shall appear only in
4079// a declaration of a function parameter with an array type, and then only in the outermost array type derivation."
[51b73452]4080
4081array_parameter_1st_dimension:
[2871210]4082 '[' ']'
[a5f9444]4083 { $$ = DeclarationNode::newArray( nullptr, nullptr, false ); }
[13e8427]4084 // multi_array_dimension handles the '[' '*' ']' case
[c0a33d2]4085 | '[' push type_qualifier_list '*' pop ']' // remaining C99
4086 { $$ = DeclarationNode::newVarArray( $3 ); }
4087 | '[' push type_qualifier_list pop ']'
[a5f9444]4088 { $$ = DeclarationNode::newArray( nullptr, $3, false ); }
[13e8427]4089 // multi_array_dimension handles the '[' assignment_expression ']' case
[c0a33d2]4090 | '[' push type_qualifier_list assignment_expression pop ']'
4091 { $$ = DeclarationNode::newArray( $4, $3, false ); }
4092 | '[' push STATIC type_qualifier_list_opt assignment_expression pop ']'
4093 { $$ = DeclarationNode::newArray( $5, $4, true ); }
4094 | '[' push type_qualifier_list STATIC assignment_expression pop ']'
4095 { $$ = DeclarationNode::newArray( $5, $3, true ); }
[4d51835]4096 ;
[b87a5ed]4097
[c0aa336]4098// This pattern parses a declaration of an abstract variable, but does not allow "int ()" for a function pointer.
[c11e31c]4099//
[71a422a]4100// struct S {
4101// int;
4102// int *;
4103// int [10];
4104// int (*)();
4105// };
[51b73452]4106
4107variable_abstract_declarator:
[4d51835]4108 variable_abstract_ptr
4109 | variable_abstract_array attribute_list_opt
[1db21619]4110 { $$ = $1->addQualifiers( $2 ); }
[4d51835]4111 | variable_abstract_function attribute_list_opt
[1db21619]4112 { $$ = $1->addQualifiers( $2 ); }
[4d51835]4113 ;
[51b73452]4114
4115variable_abstract_ptr:
[dd51906]4116 ptrref_operator
[a5f9444]4117 { $$ = DeclarationNode::newPointer( nullptr, $1 ); }
[dd51906]4118 | ptrref_operator type_qualifier_list
[ce8c12f]4119 { $$ = DeclarationNode::newPointer( $2, $1 ); }
[dd51906]4120 | ptrref_operator variable_abstract_declarator
[a5f9444]4121 { $$ = $2->addPointer( DeclarationNode::newPointer( nullptr, $1 ) ); }
[dd51906]4122 | ptrref_operator type_qualifier_list variable_abstract_declarator
[ce8c12f]4123 { $$ = $3->addPointer( DeclarationNode::newPointer( $2, $1 ) ); }
[5e25953]4124 | '(' variable_abstract_ptr ')' attribute_list_opt // redundant parenthesis
[c0aa336]4125 { $$ = $2->addQualifiers( $4 ); }
[4d51835]4126 ;
[51b73452]4127
4128variable_abstract_array:
[4d51835]4129 array_dimension
4130 | '(' variable_abstract_ptr ')' array_dimension
4131 { $$ = $2->addArray( $4 ); }
4132 | '(' variable_abstract_array ')' multi_array_dimension // redundant parenthesis
4133 { $$ = $2->addArray( $4 ); }
4134 | '(' variable_abstract_array ')' // redundant parenthesis
4135 { $$ = $2; }
4136 ;
[51b73452]4137
4138variable_abstract_function:
[647e2ea]4139 '(' variable_abstract_ptr ')' '(' parameter_list_ellipsis_opt ')' // empty parameter list OBSOLESCENT (see 3)
[71a422a]4140 { $$ = $2->addParamList( $5 ); }
[4d51835]4141 | '(' variable_abstract_function ')' // redundant parenthesis
4142 { $$ = $2; }
4143 ;
[b87a5ed]4144
[de62360d]4145// This pattern parses a new-style declaration for a parameter variable or function prototype that is either an
4146// identifier or typedef name and allows the C99 array options, which can only appear in a parameter list.
[b87a5ed]4147
[c0aa336]4148cfa_identifier_parameter_declarator_tuple: // CFA
4149 cfa_identifier_parameter_declarator_no_tuple
4150 | cfa_abstract_tuple
4151 | type_qualifier_list cfa_abstract_tuple
[4d51835]4152 { $$ = $2->addQualifiers( $1 ); }
4153 ;
[b87a5ed]4154
[c0aa336]4155cfa_identifier_parameter_declarator_no_tuple: // CFA
4156 cfa_identifier_parameter_ptr
4157 | cfa_identifier_parameter_array
[4d51835]4158 ;
[b87a5ed]4159
[c0aa336]4160cfa_identifier_parameter_ptr: // CFA
[d0ffed1]4161 // No SUE declaration in parameter list.
4162 ptrref_operator type_specifier_nobody
[a5f9444]4163 { $$ = $2->addNewPointer( DeclarationNode::newPointer( nullptr, $1 ) ); }
[d0ffed1]4164 | type_qualifier_list ptrref_operator type_specifier_nobody
[ce8c12f]4165 { $$ = $3->addNewPointer( DeclarationNode::newPointer( $1, $2 ) ); }
[c0aa336]4166 | ptrref_operator cfa_abstract_function
[a5f9444]4167 { $$ = $2->addNewPointer( DeclarationNode::newPointer( nullptr, $1 ) ); }
[c0aa336]4168 | type_qualifier_list ptrref_operator cfa_abstract_function
[ce8c12f]4169 { $$ = $3->addNewPointer( DeclarationNode::newPointer( $1, $2 ) ); }
[c0aa336]4170 | ptrref_operator cfa_identifier_parameter_declarator_tuple
[a5f9444]4171 { $$ = $2->addNewPointer( DeclarationNode::newPointer( nullptr, $1 ) ); }
[c0aa336]4172 | type_qualifier_list ptrref_operator cfa_identifier_parameter_declarator_tuple
[ce8c12f]4173 { $$ = $3->addNewPointer( DeclarationNode::newPointer( $1, $2 ) ); }
[4d51835]4174 ;
[b87a5ed]4175
[c0aa336]4176cfa_identifier_parameter_array: // CFA
[de62360d]4177 // Only the first dimension can be empty or have qualifiers. Empty dimension must be factored out due to
4178 // shift/reduce conflict with new-style empty (void) function return type.
[d0ffed1]4179 '[' ']' type_specifier_nobody
[a5f9444]4180 { $$ = $3->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); }
[d0ffed1]4181 | cfa_array_parameter_1st_dimension type_specifier_nobody
[4d51835]4182 { $$ = $2->addNewArray( $1 ); }
[d0ffed1]4183 | '[' ']' multi_array_dimension type_specifier_nobody
[a5f9444]4184 { $$ = $4->addNewArray( $3 )->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); }
[d0ffed1]4185 | cfa_array_parameter_1st_dimension multi_array_dimension type_specifier_nobody
[4d51835]4186 { $$ = $3->addNewArray( $2 )->addNewArray( $1 ); }
[d0ffed1]4187 | multi_array_dimension type_specifier_nobody
[4d51835]4188 { $$ = $2->addNewArray( $1 ); }
[9059213]4189
[c0aa336]4190 | '[' ']' cfa_identifier_parameter_ptr
[a5f9444]4191 { $$ = $3->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); }
[c0aa336]4192 | cfa_array_parameter_1st_dimension cfa_identifier_parameter_ptr
[4d51835]4193 { $$ = $2->addNewArray( $1 ); }
[c0aa336]4194 | '[' ']' multi_array_dimension cfa_identifier_parameter_ptr
[a5f9444]4195 { $$ = $4->addNewArray( $3 )->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); }
[c0aa336]4196 | cfa_array_parameter_1st_dimension multi_array_dimension cfa_identifier_parameter_ptr
[4d51835]4197 { $$ = $3->addNewArray( $2 )->addNewArray( $1 ); }
[c0aa336]4198 | multi_array_dimension cfa_identifier_parameter_ptr
[4d51835]4199 { $$ = $2->addNewArray( $1 ); }
4200 ;
[51b73452]4201
[c0aa336]4202cfa_array_parameter_1st_dimension:
[c0a33d2]4203 '[' push type_qualifier_list '*' pop ']' // remaining C99
4204 { $$ = DeclarationNode::newVarArray( $3 ); }
4205 | '[' push type_qualifier_list assignment_expression pop ']'
4206 { $$ = DeclarationNode::newArray( $4, $3, false ); }
4207 | '[' push declaration_qualifier_list assignment_expression pop ']'
[4d51835]4208 // declaration_qualifier_list must be used because of shift/reduce conflict with
4209 // assignment_expression, so a semantic check is necessary to preclude them as a type_qualifier cannot
4210 // appear in this context.
[c0a33d2]4211 { $$ = DeclarationNode::newArray( $4, $3, true ); }
4212 | '[' push declaration_qualifier_list type_qualifier_list assignment_expression pop ']'
4213 { $$ = DeclarationNode::newArray( $5, $4->addQualifiers( $3 ), true ); }
[4d51835]4214 ;
[b87a5ed]4215
[de62360d]4216// This pattern parses a new-style declaration of an abstract variable or function prototype, i.e., there is no
4217// identifier to which the type applies, e.g.:
[c11e31c]4218//
[b87a5ed]4219// [int] f( int ); // abstract variable parameter; no parameter name specified
4220// [int] f( [int] (int) ); // abstract function-prototype parameter; no parameter name specified
[c11e31c]4221//
4222// These rules need LR(3):
4223//
[c0aa336]4224// cfa_abstract_tuple identifier_or_type_name
[647e2ea]4225// '[' cfa_parameter_list ']' identifier_or_type_name '(' cfa_parameter_list_ellipsis_opt ')'
[c11e31c]4226//
4227// since a function return type can be syntactically identical to a tuple type:
4228//
[b87a5ed]4229// [int, int] t;
4230// [int, int] f( int );
[c11e31c]4231//
[2871210]4232// Therefore, it is necessary to look at the token after identifier_or_type_name to know when to reduce
[c0aa336]4233// cfa_abstract_tuple. To make this LR(1), several rules have to be flattened (lengthened) to allow the necessary
4234// lookahead. To accomplish this, cfa_abstract_declarator has an entry point without tuple, and tuple declarations are
4235// duplicated when appearing with cfa_function_specifier.
[b87a5ed]4236
[c0aa336]4237cfa_abstract_declarator_tuple: // CFA
4238 cfa_abstract_tuple
4239 | type_qualifier_list cfa_abstract_tuple
[4d51835]4240 { $$ = $2->addQualifiers( $1 ); }
[c0aa336]4241 | cfa_abstract_declarator_no_tuple
[4d51835]4242 ;
[b87a5ed]4243
[c0aa336]4244cfa_abstract_declarator_no_tuple: // CFA
4245 cfa_abstract_ptr
4246 | cfa_abstract_array
[4d51835]4247 ;
[b87a5ed]4248
[c0aa336]4249cfa_abstract_ptr: // CFA
[dd51906]4250 ptrref_operator type_specifier
[a5f9444]4251 { $$ = $2->addNewPointer( DeclarationNode::newPointer( nullptr, $1 ) ); }
[dd51906]4252 | type_qualifier_list ptrref_operator type_specifier
[ce8c12f]4253 { $$ = $3->addNewPointer( DeclarationNode::newPointer( $1, $2 ) ); }
[c0aa336]4254 | ptrref_operator cfa_abstract_function
[a5f9444]4255 { $$ = $2->addNewPointer( DeclarationNode::newPointer( nullptr, $1 ) ); }
[c0aa336]4256 | type_qualifier_list ptrref_operator cfa_abstract_function
[ce8c12f]4257 { $$ = $3->addNewPointer( DeclarationNode::newPointer( $1, $2 ) ); }
[c0aa336]4258 | ptrref_operator cfa_abstract_declarator_tuple
[a5f9444]4259 { $$ = $2->addNewPointer( DeclarationNode::newPointer( nullptr, $1 ) ); }
[c0aa336]4260 | type_qualifier_list ptrref_operator cfa_abstract_declarator_tuple
[ce8c12f]4261 { $$ = $3->addNewPointer( DeclarationNode::newPointer( $1, $2 ) ); }
[4d51835]4262 ;
[b87a5ed]4263
[c0aa336]4264cfa_abstract_array: // CFA
[de62360d]4265 // Only the first dimension can be empty. Empty dimension must be factored out due to shift/reduce conflict with
4266 // empty (void) function return type.
[2871210]4267 '[' ']' type_specifier
[2298f728]4268 { $$ = $3->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); }
[2871210]4269 | '[' ']' multi_array_dimension type_specifier
[2298f728]4270 { $$ = $4->addNewArray( $3 )->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); }
[4d51835]4271 | multi_array_dimension type_specifier
4272 { $$ = $2->addNewArray( $1 ); }
[c0aa336]4273 | '[' ']' cfa_abstract_ptr
[2298f728]4274 { $$ = $3->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); }
[c0aa336]4275 | '[' ']' multi_array_dimension cfa_abstract_ptr
[2298f728]4276 { $$ = $4->addNewArray( $3 )->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); }
[c0aa336]4277 | multi_array_dimension cfa_abstract_ptr
[4d51835]4278 { $$ = $2->addNewArray( $1 ); }
4279 ;
[b87a5ed]4280
[c0aa336]4281cfa_abstract_tuple: // CFA
[c0a33d2]4282 '[' push cfa_abstract_parameter_list pop ']'
4283 { $$ = DeclarationNode::newTuple( $3 ); }
[35718a9]4284 | '[' push type_specifier_nobody ELLIPSIS pop ']'
[13e8427]4285 { SemanticError( yylloc, "Tuple array currently unimplemented." ); $$ = nullptr; }
[35718a9]4286 | '[' push type_specifier_nobody ELLIPSIS constant_expression pop ']'
[13e8427]4287 { SemanticError( yylloc, "Tuple array currently unimplemented." ); $$ = nullptr; }
[4d51835]4288 ;
[b87a5ed]4289
[c0aa336]4290cfa_abstract_function: // CFA
[647e2ea]4291 '[' ']' '(' cfa_parameter_list_ellipsis_opt ')'
4292 { $$ = DeclarationNode::newFunction( nullptr, DeclarationNode::newTuple( nullptr ), $4, nullptr ); }
4293 | cfa_abstract_tuple '(' push cfa_parameter_list_ellipsis_opt pop ')'
[c0a33d2]4294 { $$ = DeclarationNode::newFunction( nullptr, $1, $4, nullptr ); }
[647e2ea]4295 | cfa_function_return '(' push cfa_parameter_list_ellipsis_opt pop ')'
[c0a33d2]4296 { $$ = DeclarationNode::newFunction( nullptr, $1, $4, nullptr ); }
[4d51835]4297 ;
[b87a5ed]4298
[de62360d]4299// 1) ISO/IEC 9899:1999 Section 6.7.2(2) : "At least one type specifier shall be given in the declaration specifiers in
4300// each declaration, and in the specifier-qualifier list in each structure declaration and type name."
[c11e31c]4301//
[de62360d]4302// 2) ISO/IEC 9899:1999 Section 6.11.5(1) : "The placement of a storage-class specifier other than at the beginning of
4303// the declaration specifiers in a declaration is an obsolescent feature."
[c11e31c]4304//
4305// 3) ISO/IEC 9899:1999 Section 6.11.6(1) : "The use of function declarators with empty parentheses (not
4306// prototype-format parameter type declarators) is an obsolescent feature."
4307//
[de62360d]4308// 4) ISO/IEC 9899:1999 Section 6.11.7(1) : "The use of function definitions with separate parameter identifier and
4309// declaration lists (not prototype-format parameter type and identifier declarators) is an obsolescent feature.
[51b73452]4310
[e1d66c84]4311// ************************ MISCELLANEOUS ********************************
[51b73452]4312
[b87a5ed]4313comma_opt: // redundant comma
[4d51835]4314 // empty
4315 | ','
4316 ;
[51b73452]4317
[5a51798]4318default_initializer_opt:
[4d51835]4319 // empty
[58dd019]4320 { $$ = nullptr; }
[4d51835]4321 | '=' assignment_expression
4322 { $$ = $2; }
4323 ;
[51b73452]4324
4325%%
[a1c9ddd]4326
[c11e31c]4327// ----end of grammar----
[51b73452]4328
[c11e31c]4329// Local Variables: //
[b87a5ed]4330// mode: c++ //
[de62360d]4331// tab-width: 4 //
[7e13b11]4332// compile-command: "bison -Wcounterexamples parser.yy" //
[c11e31c]4333// End: //
Note: See TracBrowser for help on using the repository browser.