source: src

Revision Log Mode:


Legend:

Added
Modified
Copied or renamed
Diff Rev Age Author Log Message
(edit) @d1fbc56e   6 weeks ajbeach Removed two lingering set_extension functions from ast. There was one …
(edit) @45ee172   6 weeks ajbeach Corrected handling of va_args in the parser. It still does not get …
(edit) @cc0aa8c   6 weeks pabuhr formatting
(edit) @790f251   6 weeks pabuhr update error message for parameter default-initialization in …
(edit) @afb15cf   7 weeks ajbeach Added a check to make sure that optional parameters to not appear on …
(edit) @2f31773   7 weeks mlbrooks Improve inability to declare a struct member having a managed type via …
(edit) @f9ad69d   7 weeks mlbrooks Fix #175
(edit) @2870cb6   7 weeks f37yu update cast expression cost rule
(edit) @661e7b0   7 weeks ajbeach After a years (or at least half a year) the CodeLocation? optimization …
(edit) @4941716   7 weeks pabuhr preclude aggregate/enumeration type declaration in trait body
(edit) @97f8f0f   7 weeks ajbeach Implemented special case of sizeof/alignof, where reference types are …
(edit) @8492b85   7 weeks pabuhr Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @206ecae   7 weeks pabuhr remove spurious push/pop from grammar contexts where type declarations …
(edit) @0e6aba06   7 weeks pabuhr formatting
(edit) @6abb6dc   8 weeks pabuhr Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @2ca7fc2   8 weeks pabuhr add better error message for an empty enumeration, i.e., no enumerators.
(edit) @63d5b9c8   8 weeks j82liang Merge changes
(edit) @0e6cf54c   2 months j82liang Revert change: enumerator cannot be implicitly const
(edit) @830edc6   2 months j82liang 1. Add implicit const to enum base type; 2. change auto initializer to …
(edit) @7f18438   2 months j82liang Add "implicit case to base type" to enumerator
(edit) @5f210c0   2 months j82liang Change enum pos to signed int to avoid underflow; operator on enum …
(edit) @06ecda9   2 months j82liang define enum to value cost as implicit cost
(edit) @1571e4d   2 months j82liang reinterpret loop start for enum type as the first enumerator
(edit) @a9ae5ca   2 months j82liang remove unused addInitType
(edit) @82d5816   2 months ajbeach Bit of clean-up to the box pass. Mostly just wrapping a new common set …
(edit) @daa4cc1   2 months pabuhr temporary hack to allow parsing of default/named parameters/calls
(edit) @fd4df379   2 months mlbrooks Implement boxing for arrays. The added test is things that did not …
(edit) @c1b0b8f   2 months pabuhr parse keyword parameter and argument using '?' syntax
(edit) @151c8db   2 months pabuhr parse keyword parameter and argument using '@' syntax
(edit) @b6923b17   2 months ajbeach Fixed goto labelled loop. I had to reorder some passes. Updated …
(edit) @d68a3f7   3 months j82liang Update makeEnumOffsetCast to not report error for cast to non-parent …
(edit) @c248b39   3 months ajbeach Unlabelled breaks were not targetting the correct enclosing control …
(edit) @a758169   3 months ajbeach In main: cleaned up a macro and updated some names.
(edit) @88bc876   3 months ajbeach Breaks (and some other control flow) in a loop else clause now work. I …
(edit) @bfa7bf0   3 months ajbeach Silenced a warning.
(edit) @8315947   3 months j82liang Remove automatic conversion from Enum type name to its len; change …
(edit) @76b507d   3 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @0c327ce   3 months j82liang 1. Add bound check to Serial function: now compiler generates the …
(edit) @3e135c8   3 months ajbeach Not sure why we copy in the return values all the time, but we do. …
(edit) @9c447e2   3 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @236f133   3 months j82liang Remove quasi_void for enums. The idea of quasi_void from Mike was to …
(edit) @358e3481   3 months ajbeach Visit the else_ children of loops. I don't know how things worked this …
(edit) @9d5eacb   3 months j82liang Fix the bug with typed anomynous enum got incorrect forward declaration
(edit) @725f777f   3 months j82liang Add attribute functions back after the bug fix
(edit) @dbff8ec   3 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @bb336a6   3 months j82liang Fixed the problem when enum use another enumerator as initializer
(edit) @b9f6791f   3 months pabuhr allow empty global declaration ';', adjust semi-colon rules after …
(edit) @5a2b0b7   3 months ajbeach Reverted the change to the compiler. The other changes are both …
(edit) @550afde2   3 months ajbeach Constant strings on input. The previous changes only effected …
(edit) @c2cf2d0   3 months ajbeach Made string literals constants. Preformed required updates. Resisted …
(edit) @8c55d34   3 months ajbeach Fixed spelling mistake. (I'm 99% sure.)
(edit) @99f7f37   3 months j82liang Fix the bug that enum {} var syntax cannot be recognized as cfa enum
(edit) @f8f298c   3 months j82liang replace decl->base with isTyped()
(edit) @39cf5cc   3 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @6d2b3dc   3 months j82liang Change (enum) range loop so that it works on any type that define …
(edit) @793eb2f   3 months ajbeach One extra whitespace line removed. I do not believe that represented …
(edit) @7fe4adbb   3 months ajbeach Added some code near the end of main to improve some internal …
(edit) @597f284   3 months pabuhr update 'Too many recursive assertions' error message with possible cause
(edit) @73d0e3f4   3 months j82liang Current enum has bug when use as a reference as in ?++. Change …
(edit) @115ac1ce   3 months j82liang Allow explict conversion from cfa enum to int (while disallow implicit)
(edit) @4117761   3 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @5ccc733   3 months j82liang Fix the bug that C style enum cannot to use as an lvalue
(edit) @3c55fcd   3 months ajbeach Added some notes about how to enable heap statistics. Reformated some …
(edit) @01afd8d   3 months pabuhr add +~ and +~= for-control operators to match with -~ and -~= operators
(edit) @7552fde   3 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @d3aa55e9   3 months j82liang 1. Disallow implicit conversion from cfa enum to int during on the …
(edit) @55ba259e   3 months pabuhr clarify for-control for enumerations
(edit) @089b39e1   3 months pabuhr clean up, prepare for downto enumerating
(edit) @5eb3f65   3 months pabuhr change enumeration function names labelE, valueE, posE to label, …
(edit) @253d0b4   3 months pabuhr change error message header, simplify forCtrl to have only identifier …
(edit) @d66a43b   3 months pabuhr fix spelling mistake in file src/ControlStruct/TrasnlateEnumRange.hpp …
(edit) @a8ced63   3 months pabuhr parse countof pseduo-function, update for-loop for enumeration
(edit) @07771bc   3 months pabuhr lex countof pseudo-function
(edit) @567c775   4 months j82liang Missing files from the last commit
(edit) @57e43cd   4 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @525f7ad   4 months j82liang 1. Add count_e( enum_name ), a pseudo function that return the …
(edit) @f678c53b   4 months pabuhr formatting
(edit) @12f1156   4 months pabuhr simplify grammar in a few places
(edit) @2ab31fd   4 months pabuhr parse tuple-element declarations but unimplemented
(edit) @42cdd07d   4 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @85855b0   4 months j82liang 1. Implement enum cast; 2. Change valueE so that opague enum returns …
(edit) @405dbb3   4 months ajbeach Noticing that a function could have an early exit to save a level of …
(edit) @83b2fb5e   4 months ajbeach Removed an extra include.
(edit) @0f5e8cd   4 months f37yu attempt to fix #286
(edit) @822332e   4 months ajbeach It seems clang uses different scoping rules for the trailing return of …
(edit) @96c04e4   4 months ajbeach Simplified the visit children guard to use a ValueGuardPtr?. For …
(edit) @bfcd3af   4 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @2c8946b   4 months ajbeach Various whitespace and intentation updates.
(edit) @31f4837   5 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @acb33f15   5 months j82liang Change enum conversion steps
(edit) @5f225f5   5 months ajbeach Perhaps only src/Makefile.am needed to change, but I did a text search …
(edit) @c778ef1   5 months ajbeach Apparently the source file lists aren't used until distribution. I …
(edit) @0f612d2   5 months ajbeach Shoot, the non-extension renamings did not get caught in some corners.
(edit) @c92bdcc   5 months ajbeach Updated the rest of the names in src/ (except for the generated files).
(edit) @e542b02   5 months ajbeach Update last reference to BasicTypes?-gen.cc. I don't know if it needs …
(edit) @6d9aa79   5 months j82liang Missing produceDecl in the last commit
(edit) @0b6c1c9   5 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @c333ed2   5 months j82liang Remove intermeidate type (enum attribute type); remove …
(edit) @083e637   5 months pabuhr Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @195d1d8   5 months pabuhr update search strings to raw strings for python 3.12
Note: See TracRevisionLog for help on using the revision log.