source: src/Parser/parser.yy

Revision Log Mode:


Legend:

Added
Modified
Copied or renamed
Diff Rev Age Author Log Message
(edit) @d96f7c4   7 weeks pabuhr expunge fallthru keyword and replace its usages with fallthrough
(edit) @a16f2b6   3 months pabuhr update SuperfluousDecl? warning, update field_declaring rules, comment …
(edit) @ecf3812   4 months ajbeach CastExpr? reorganization and clean-up in Lvalue. I kept these from a …
(edit) @dd54139   4 months pabuhr empty tuple prints a syntax error, first attempt at tuple arrays with …
(edit) @1a8b17a   5 months pabuhr add C23 attributes, require comma terminator for nullary and unary …
(edit) @917f67dd   5 months pabuhr remove what appear to be superfluous push/pop in grammar rules
(edit) @569b118   5 months pabuhr push missing file
(edit) @c5f69fd   6 months pabuhr clean up naming of float-point types, and start to add new ARM …
(edit) @b6f2e7ab   6 months ajbeach Removed SizeofExpr::expr and AlignofExpr::expr, expressions that would …
(edit) @db19e1d   6 months ajbeach Changed the interpritation of () to be no parameters instead of any …
(edit) @45ee172   7 months ajbeach Corrected handling of va_args in the parser. It still does not get …
(edit) @4941716   7 months pabuhr preclude aggregate/enumeration type declaration in trait body
(edit) @206ecae   7 months pabuhr remove spurious push/pop from grammar contexts where type declarations …
(edit) @2ca7fc2   7 months pabuhr add better error message for an empty enumeration, i.e., no enumerators.
(edit) @daa4cc1   7 months pabuhr temporary hack to allow parsing of default/named parameters/calls
(edit) @c1b0b8f   7 months pabuhr parse keyword parameter and argument using '?' syntax
(edit) @151c8db   7 months pabuhr parse keyword parameter and argument using '@' syntax
(edit) @0c327ce   8 months j82liang 1. Add bound check to Serial function: now compiler generates the …
(edit) @b9f6791f   8 months pabuhr allow empty global declaration ';', adjust semi-colon rules after …
(edit) @6d2b3dc   8 months j82liang Change (enum) range loop so that it works on any type that define …
(edit) @4117761   8 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @01afd8d   8 months pabuhr add +~ and +~= for-control operators to match with -~ and -~= operators
(edit) @7552fde   8 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @d3aa55e9   8 months j82liang 1. Disallow implicit conversion from cfa enum to int during on the …
(edit) @55ba259e   8 months pabuhr clarify for-control for enumerations
(edit) @089b39e1   8 months pabuhr clean up, prepare for downto enumerating
(edit) @253d0b4   8 months pabuhr change error message header, simplify forCtrl to have only identifier …
(edit) @a8ced63   9 months pabuhr parse countof pseduo-function, update for-loop for enumeration
(edit) @57e43cd   9 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @525f7ad   9 months j82liang 1. Add count_e( enum_name ), a pseudo function that return the …
(edit) @f678c53b   9 months pabuhr formatting
(edit) @12f1156   9 months pabuhr simplify grammar in a few places
(edit) @2ab31fd   9 months pabuhr parse tuple-element declarations but unimplemented
(edit) @85855b0   9 months j82liang 1. Implement enum cast; 2. Change valueE so that opague enum returns …
(edit) @c92bdcc   10 months ajbeach Updated the rest of the names in src/ (except for the generated files).
(edit) @e78966e   10 months pabuhr add parsing support for enum type in 'with' statement
(edit) @89da3a9   11 months pabuhr fix parsing bug in field declaring list with empty declarator
(edit) @7a780ad   11 months ajbeach Moved ast::BasicType::Kind to ast::BasicKind? in its own hearder. This …
(edit) @d9bad51   11 months ajbeach Fixed memory leak in the parser.
(edit) @67467a3   11 months ajbeach Fused TypeData::Enum and TypeData::Aggregate, an enumeration is a kind …
(edit) @42422fb   12 months pabuhr more reorganized enum_type rule in parser
(edit) @30aab55   12 months pabuhr reorganized enum_type rule in parser and add missing call to makeTypedef
(edit) @446740a   12 months pabuhr update for-control for iterating over enumeration type
(edit) @e048ece   12 months ajbeach Moved the DeclarationNode? enums over to TypeData? where they are …
(edit) @b93c544   12 months ajbeach Removed casts no longer needed on the result of set_last.
(edit) @6cef439   12 months ajbeach Return 'TypeData? *' from some parse rules. Moved TypeData? construction …
(edit) @7e13b11   12 months pabuhr documentations, support CFA declaration syntax in sizeof/alignof
(edit) @44adf1b   12 months ajbeach Removed casts around get_next (also replaced with direct field access) …
(edit) @647e2ea   12 months pabuhr try @@(...) for attributes, rename and reorder grammar rules, remove …
(edit) @dc3fbe5   12 months ajbeach Factored out the ParseNode?'s next field into a new child type. This is …
(edit) @a4da45e   12 months j82liang Resolve conflict
(edit) @0522ebe   12 months j82liang Add EnumPosType? to type system
(edit) @46aa60e   13 months pabuhr Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @4eb3a7c5   13 months pabuhr first attempt at correct distribution of attributes for aggregates
(edit) @2beaf9b   13 months ajbeach Forgot to update comments from the last commit.
(edit) @2810700   13 months ajbeach The two argument form of the conditional operator now only has two …
(edit) @5bf685f   14 months ajbeach Replayed maybeClone with maybeCopy, removed unused helppers in …
(edit) @b1f2007   15 months pabuhr first attempt at simplifying SemanticError? and its usage
(edit) @c6b4432   16 months ajbeach Remove BaseSyntaxNode? and clean-up.
(edit) @3d9d017   16 months caparson added cofor implementation
(edit) @36e6f10   16 months ajbeach Parser now uses constants from the new ast types.
(edit) @eb779d5   17 months caparson Implemented corun statement
(edit) @11ab0b4a   17 months pabuhr add corun/cofor statement, update old cofor
(edit) @0ac8d07   18 months pabuhr remove empty rule in cfa_abstract_parameter_declaration to remove conflicts
(edit) @2a301ff   18 months j82liang Resolve conflict
(edit) @92355883   18 months j82liang Array can use enum instance with explicit initializer as designator. …
(edit) @f259682   19 months pabuhr remove timeout clause from waituntil statement
(edit) @c25f16b   20 months ajbeach Repeat "remove push/pop from KR_parameter_list and …
(edit) @402a1e7   20 months ajbeach Revert "remove push/pop from KR_parameter_list and …
(edit) @09e400e   20 months pabuhr remove push/pop from KR_parameter_list and typedef_declaration
(edit) @71a422a   20 months pabuhr add additional debug printing, remove push/pop associated with …
(edit) @d7874052   20 months pabuhr print proper error for hiding enumerator names of an anonymous …
(edit) @65ef0cd   21 months pabuhr fix comments
(edit) @c84dd61   21 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @0b0a285   21 months j82liang Basic change for enable enumerated array syntax
(edit) @a983cbf   21 months pabuhr fix bug in gcc conditional expression by cloning omitted operand
(edit) @62d62db   21 months caparson Merge branch 'master' into ast-experimental ast-experimental
(edit) @24d6572   21 months f37yu Merge branch 'master' into ast-experimental ast-experimental
(edit) @8a930c03   21 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @0442f93f   21 months pabuhr update comments for special invalid syntax rules ast-experimental
(edit) @55266c7   21 months pabuhr harmonize semantic error messages with yacc error messages ast-experimental
(edit) @3982384   22 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc ADT
(edit) @46da46b   22 months f37yu current progress ast-experimental
(edit) @6e1e2d0   22 months caparson resolved merge conflicts ADTast-experimental
(edit) @c86b08d   22 months caparson added support for the waituntil statement in the compiler ADTast-experimental
(edit) @6e4c44d   23 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc ADT
(edit) @04c78215   23 months pabuhr change waituntil expression from cast_expression to comma_expression ADTast-experimental
(edit) @b110bcc   23 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc ADT
(edit) @32d6fdc   23 months ajbeach Clean-up in the parser %union. ADTast-experimental
(edit) @6611177   2 years ajbeach Clean-up in parser. ClauseNode? rework, plus internal adjustments to … ADTast-experimental
(edit) @c468150   2 years ajbeach Split up ParseNode?.h so that headers match implementation. May have a … ADTast-experimental
(edit) @bb7422a   2 years ajbeach Translated parser to the new ast. This incuded a small fix in the … ADTast-experimental
(edit) @70056ed   2 years pabuhr clean up waituntil grammar ADTast-experimental
(edit) @ac235a8   2 years pabuhr deprecated qualifiers/specifiers before TYPEDEF ADTast-experimental
(edit) @9fd9d015   2 years pabuhr formatting, add new waituntil grammar, rewrite waitfor grammar, … ADTast-experimental
(edit) @9feb34b   2 years ajbeach Moved toString and toCString to a new header. Updated includes. … ADTast-experimental
(edit) @d63aeba   2 years pabuhr print unimplemented error for forall in typedef ADTast-experimental
(edit) @1f771fc   2 years mganesan Removed list initialization and simple assignment expression rules for … ADTast-experimental
(edit) @9fa61f5   2 years pabuhr remove unnecessary code, add action to not duplicate aggregate (work … ADTast-experimental
(edit) @1cdc052   2 years ajbeach Preventing NullStmts? from being added into ForCtrl? ended up being a … ADTast-experimental
Note: See TracRevisionLog for help on using the revision log.