source: src/Parser

Revision Log Mode:


Legend:

Added
Modified
Copied or renamed
Diff Rev Age Author Log Message
(edit) @90e683b   11 months ajbeach I set out to do a enum rework. It ended up being much the same and I …
(edit) @857b5f9   12 months ajbeach CountExpr -> CountofExpr. Actually the main fix was making countof use …
(edit) @d96f7c4   12 months pabuhr expunge fallthru keyword and replace its usages with fallthrough
(edit) @f6f7b52   12 months lseo fixed a parser bug to generate correct ast for waitfor. added a test …
(edit) @f9a0dd0   13 months pabuhr fix length for juxtaposed strings: "ABC" "DEF"
(edit) @a16f2b6   13 months pabuhr update SuperfluousDecl warning, update field_declaring rules, comment …
(edit) @5786403   13 months pabuhr update semantic warnings
(edit) @fc276f3   13 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @eae8b37   13 months j82liang Move enum.hfa/enum.cfa to prelude
(edit) @4175659   13 months pabuhr remove BadQualifiersZeroOne warning message
(edit) @ecf3812   14 months ajbeach CastExpr reorganization and clean-up in Lvalue. I kept these from a …
(edit) @dd54139   14 months pabuhr empty tuple prints a syntax error, first attempt at tuple arrays with …
(edit) @4e0168a   15 months pabuhr documentation, update C23 attribute lexing
(edit) @1a8b17a   15 months pabuhr add C23 attributes, require comma terminator for nullary and unary …
(edit) @16ba4897   15 months ajbeach Replaced SemanticErrorException::isEmpty with ...::throwIfNonEmpty. …
(edit) @917f67dd   15 months pabuhr remove what appear to be superfluous push/pop in grammar rules
(edit) @62afe08   16 months ajbeach Missing rename in comment.
(edit) @569b118   16 months pabuhr push missing file
(edit) @738a9b4   16 months pabuhr fformatting, make names consistent
(edit) @fca78f1   16 months ajbeach Added ForeachStmt (felt better than ForEachStmt). This new node is a …
(edit) @152944e   16 months ajbeach PULL BEFORE YOU PUSH! This fix has already applied, but they were …
(edit) @5ef4008   16 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @c494b84   16 months j82liang The fix about build enum type (I thought I have pushed it)
(edit) @2ac78a1   16 months pabuhr switch to isxdigit and floating point changes
(edit) @c5f69fd   16 months pabuhr clean up naming of float-point types, and start to add new ARM …
(edit) @23fb819   16 months pabuhr formatting
(edit) @5b95e67   16 months pabuhr fix spelling
(edit) @20c2ade   16 months ajbeach Parse string literals to get their length, taking into account escape …
(edit) @b6f2e7ab   16 months ajbeach Removed SizeofExpr::expr and AlignofExpr::expr, expressions that would …
(edit) @5c6d439   16 months ajbeach Order of evaluation between arguments of a function is not …
(edit) @d3b33d5   16 months pabuhr fix dangling reference after delete
(edit) @db19e1d   16 months ajbeach Changed the interpritation of () to be no parameters instead of any …
(edit) @b965774   17 months ajbeach Isolated the logic to decide if a function is a var-args function or not.
(edit) @d1fbc56e   17 months ajbeach Removed two lingering set_extension functions from ast. There was one …
(edit) @45ee172   17 months ajbeach Corrected handling of va_args in the parser. It still does not get …
(edit) @cc0aa8c   17 months pabuhr formatting
(edit) @790f251   17 months pabuhr update error message for parameter default-initialization in …
(edit) @afb15cf   17 months ajbeach Added a check to make sure that optional parameters to not appear on …
(edit) @4941716   17 months pabuhr preclude aggregate/enumeration type declaration in trait body
(edit) @206ecae   17 months pabuhr remove spurious push/pop from grammar contexts where type declarations …
(edit) @2ca7fc2   17 months pabuhr add better error message for an empty enumeration, i.e., no enumerators.
(edit) @0e6cf54c   17 months j82liang Revert change: enumerator cannot be implicitly const
(edit) @830edc6   17 months j82liang 1. Add implicit const to enum base type; 2. change auto initializer to …
(edit) @7f18438   17 months j82liang Add "implicit case to base type" to enumerator
(edit) @daa4cc1   18 months pabuhr temporary hack to allow parsing of default/named parameters/calls
(edit) @c1b0b8f   18 months pabuhr parse keyword parameter and argument using '?' syntax
(edit) @151c8db   18 months pabuhr parse keyword parameter and argument using '@' syntax
(edit) @0c327ce   18 months j82liang 1. Add bound check to Serial function: now compiler generates the …
(edit) @9d5eacb   18 months j82liang Fix the bug with typed anomynous enum got incorrect forward declaration
(edit) @b9f6791f   18 months pabuhr allow empty global declaration ';', adjust semi-colon rules after …
(edit) @5a2b0b7   18 months ajbeach Reverted the change to the compiler. The other changes are both …
(edit) @550afde2   18 months ajbeach Constant strings on input. The previous changes only effected …
(edit) @8c55d34   18 months ajbeach Fixed spelling mistake. (I'm 99% sure.)
(edit) @99f7f37   18 months j82liang Fix the bug that enum {} var syntax cannot be recognized as cfa enum
(edit) @6d2b3dc   18 months j82liang Change (enum) range loop so that it works on any type that define …
(edit) @4117761   19 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @5ccc733   19 months j82liang Fix the bug that C style enum cannot to use as an lvalue
(edit) @01afd8d   19 months pabuhr add +~ and +~= for-control operators to match with -~ and -~= operators
(edit) @7552fde   19 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @d3aa55e9   19 months j82liang 1. Disallow implicit conversion from cfa enum to int during on the …
(edit) @55ba259e   19 months pabuhr clarify for-control for enumerations
(edit) @089b39e1   19 months pabuhr clean up, prepare for downto enumerating
(edit) @253d0b4   19 months pabuhr change error message header, simplify forCtrl to have only identifier …
(edit) @a8ced63   19 months pabuhr parse countof pseduo-function, update for-loop for enumeration
(edit) @07771bc   19 months pabuhr lex countof pseudo-function
(edit) @57e43cd   19 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @525f7ad   19 months j82liang 1. Add count_e( enum_name ), a pseudo function that return the …
(edit) @f678c53b   19 months pabuhr formatting
(edit) @12f1156   19 months pabuhr simplify grammar in a few places
(edit) @2ab31fd   19 months pabuhr parse tuple-element declarations but unimplemented
(edit) @85855b0   19 months j82liang 1. Implement enum cast; 2. Change valueE so that opague enum returns …
(edit) @0f612d2   20 months ajbeach Shoot, the non-extension renamings did not get caught in some corners.
(edit) @c92bdcc   20 months ajbeach Updated the rest of the names in src/ (except for the generated files).
(edit) @e78966e   21 months pabuhr add parsing support for enum type in 'with' statement
(edit) @89da3a9   21 months pabuhr fix parsing bug in field declaring list with empty declarator
(edit) @7a780ad   21 months ajbeach Moved ast::BasicType::Kind to ast::BasicKind in its own hearder. This …
(edit) @ab780e6   21 months ajbeach notZeroExpr (in the parser) has become createCondExpr (in the …
(edit) @d9bad51   21 months ajbeach Fixed memory leak in the parser.
(edit) @1cfe640   21 months ajbeach One more bit of clean-up, improving some names.
(edit) @4a72fef   21 months ajbeach General clean-up in the parser. Removed the commented …
(edit) @67467a3   22 months ajbeach Fused TypeData::Enum and TypeData::Aggregate, an enumeration is a kind …
(edit) @bf050c5   22 months ajbeach Removed unused field from TypeData.
(edit) @057608a   22 months ajbeach Parser clean-up: Removed an unused field, added a comment, fixed a …
(edit) @42422fb   22 months pabuhr more reorganized enum_type rule in parser
(edit) @30aab55   22 months pabuhr reorganized enum_type rule in parser and add missing call to makeTypedef
(edit) @2583407   22 months ajbeach Handle typedef wrapped declarations before buildList in addTypedef. …
(edit) @a3525c4   22 months ajbeach Some Parser clean-up I did while investigating.
(edit) @446740a   22 months pabuhr update for-control for iterating over enumeration type
(edit) @e048ece   22 months ajbeach Moved the DeclarationNode enums over to TypeData where they are …
(edit) @b93c544   22 months ajbeach Removed casts no longer needed on the result of set_last.
(edit) @6cef439   22 months ajbeach Return 'TypeData *' from some parse rules. Moved TypeData construction …
(edit) @7e13b11   22 months pabuhr documentations, support CFA declaration syntax in sizeof/alignof
(edit) @af60383   22 months ajbeach Moved a field and functions from DeclarationNode to TypeData. Trying …
(edit) @44adf1b   22 months ajbeach Removed casts around get_next (also replaced with direct field access) …
(edit) @647e2ea   22 months pabuhr try @@(...) for attributes, rename and reorder grammar rules, remove …
(edit) @dc3fbe5   23 months ajbeach Factored out the ParseNode's next field into a new child type. This is …
(edit) @4c0b674   23 months ajbeach Moved ParseNode's name field down to DeclarationNode, it is not used …
(edit) @a4da45e   23 months j82liang Resolve conflict
(edit) @0522ebe   23 months j82liang Add EnumPosType to type system
(edit) @46aa60e   23 months pabuhr Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
Note: See TracRevisionLog for help on using the revision log.