source: src/ResolvExpr

Revision Log Mode:


Legend:

Added
Modified
Copied or renamed
Diff Rev Age Author Log Message
(edit) @6b95feb   2 months f37yu implement return cast for other types of expressions
(edit) @64f3b9f   3 months mlbrooks Fix support for partial autogen. Partial autogen means that some …
(edit) @81e768d   3 months mlbrooks Fix #276; add support for c-array parameters using dependent lengths. …
(edit) @ecf3812   4 months ajbeach CastExpr? reorganization and clean-up in Lvalue. I kept these from a …
(edit) @ed96731   4 months ajbeach With{Stmts,Decls}ToAdd? how has an -X version like WithSymbolTableX. …
(edit) @00f89a6   4 months f37yu attempt to fix const reference conversion
(edit) @2ae845e9   4 months ajbeach Removed debug output from resolver. Also made the early decision …
(edit) @d031f7f   4 months ajbeach Renamed CurrentObject?'s MemberIterator::operator* to getOptions …
(edit) @90be0cf   4 months ajbeach Moved some methods out of EnumDecl?. These were calculations and the …
(edit) @16ba4897   5 months ajbeach Replaced SemanticErrorException::isEmpty with ...::throwIfNonEmpty. …
(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) @a7efc96   6 months ajbeach Made sure a variable is always initialized and removed some trailing …
(edit) @02101a4   6 months pabuhr comment out unused variable declaration
(edit) @2f31773   7 months mlbrooks Improve inability to declare a struct member having a managed type via …
(edit) @2870cb6   7 months f37yu update cast expression cost rule
(edit) @06ecda9   7 months j82liang define enum to value cost as implicit cost
(edit) @1571e4d   7 months j82liang reinterpret loop start for enum type as the first enumerator
(edit) @d68a3f7   8 months j82liang Update makeEnumOffsetCast to not report error for cast to non-parent …
(edit) @bfa7bf0   8 months ajbeach Silenced a warning.
(edit) @8315947   8 months j82liang Remove automatic conversion from Enum type name to its len; change …
(edit) @0c327ce   8 months j82liang 1. Add bound check to Serial function: now compiler generates the …
(edit) @9d5eacb   8 months j82liang Fix the bug with typed anomynous enum got incorrect forward declaration
(edit) @bb336a6   8 months j82liang Fixed the problem when enum use another enumerator as initializer
(edit) @597f284   8 months pabuhr update 'Too many recursive assertions' error message with possible cause
(edit) @115ac1ce   8 months j82liang Allow explict conversion from cfa enum to int (while disallow implicit)
(edit) @5ccc733   8 months j82liang Fix the bug that C style enum cannot to use as an lvalue
(edit) @d3aa55e9   8 months j82liang 1. Disallow implicit conversion from cfa enum to int during on the …
(edit) @5eb3f65   8 months pabuhr change enumeration function names labelE, valueE, posE to label, …
(edit) @525f7ad   9 months j82liang 1. Add count_e( enum_name ), a pseudo function that return the …
(edit) @85855b0   9 months j82liang 1. Implement enum cast; 2. Change valueE so that opague enum returns …
(edit) @0f5e8cd   9 months f37yu attempt to fix #286
(edit) @822332e   9 months ajbeach It seems clang uses different scoping rules for the trailing return of …
(edit) @31f4837   10 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @acb33f15   10 months j82liang Change enum conversion steps
(edit) @5f225f5   10 months ajbeach Perhaps only src/Makefile.am needed to change, but I did a text search …
(edit) @0f612d2   10 months ajbeach Shoot, the non-extension renamings did not get caught in some corners.
(edit) @c92bdcc   10 months ajbeach Updated the rest of the names in src/ (except for the generated files).
(edit) @0b6c1c9   10 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @c333ed2   10 months j82liang Remove intermeidate type (enum attribute type); remove …
(edit) @083e637   10 months pabuhr Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @195d1d8   10 months pabuhr update search strings to raw strings for python 3.12
(edit) @b2ea0cd   10 months ajbeach First wave of file renaming. Rename files in src/ and update all …
(edit) @eb7586e   10 months j82liang 1. Change return value of typed Enum in null context: they now return …
(edit) @13de4478   11 months ajbeach Updated files in ResolvExpr? to the new indentation style. It seems the …
(edit) @ba97ebf   11 months ajbeach The polyCost function was just a bit more complicated than it needed to be.
(edit) @fc1a3e2   11 months ajbeach Style update. Focused on indentation and trailing whitespace.
(edit) @38093ae   11 months j82liang Resolve conflict
(edit) @748c751   11 months j82liang Remove unnecessary implicit enum type conversion
(edit) @7a780ad   11 months ajbeach Moved ast::BasicType::Kind to ast::BasicKind? in its own hearder. This …
(edit) @cdb4eaa   11 months j82liang Fix succ(Enum) error and resolution ambiguity of enum with inheritance
(edit) @7aa209e7   11 months ajbeach Fixing some whitespace around a recent merge. That lead to some …
(edit) @fb2e916   11 months j82liang Fix some warning
(edit) @dc58e5d   11 months j82liang Small cleanup
(edit) @af746cc   11 months j82liang Reimplement the resolution of Enum instance type
(edit) @ab780e6   11 months ajbeach notZeroExpr (in the parser) has become createCondExpr (in the …
(edit) @06601401   12 months j82liang Change the common type interpretation of EnumPos?
(edit) @76fe046   12 months j82liang Remove conversion part of the EnumPosType?. It can be resolved by the …
(edit) @647d633   12 months j82liang Remove unused variables
(edit) @f6e8c67   12 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @bbf2cb1   12 months j82liang Add the Working support to succ() and pred() pseudo function to Enum
(edit) @00eaeb8   12 months j82liang Add prototype of succ function
(edit) @bc61563   12 months ajbeach Factored out a very complex condition into a helper function and …
(edit) @f1149ac   12 months j82liang Remove unused variables
(edit) @a4da45e   12 months j82liang Resolve conflict
(edit) @0522ebe   12 months j82liang Add EnumPosType? to type system
(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) @f431ab26   13 months ajbeach Fixed whitespace ResolveTypeof?.cc.
(edit) @14755e5   13 months ajbeach Updated indentation in Resolver. Removed trailing whitespace.
(edit) @a55ebcc   13 months j82liang 1. Add debug print option for replacePseudoFunc; 2. Change resolver …
(edit) @9ddcee1   13 months j82liang Remove EnumPosExpr?, an early design that no longer used. The …
(edit) @496ffc17   13 months j82liang Fix dangling reference to posE function
(edit) @32490deb   13 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @c75b30a   13 months j82liang Introduce posE, valueE, labelE pseudo language to the language. Rework …
(edit) @7329b0a   13 months ajbeach advance_to_mutex has been replaced nextMutex.
(edit) @61e362f   14 months ajbeach Changed notZeroExpr so that expressions with conditional contexts are …
(edit) @59c8dff   14 months j82liang Draft Implementation for enum position pesudo function (posE). …
(edit) @ca9d65e   15 months pabuhr second attempt at simplifying SemanticError? messages
(edit) @4c2fe47   15 months pabuhr formatting
(edit) @b1f2007   15 months pabuhr first attempt at simplifying SemanticError? and its usage
(edit) @2345ab3   15 months ajbeach Clean-up of the chain mutator. Seems like it is underused.
(edit) @4a89b52   15 months ajbeach Renamed ResolvMode? to ResolveMode?. This is less consistent with the …
(edit) @da5ac2e   15 months ajbeach Removed unused case in CurrentObject::findNext. Did a bit of clean-up …
(edit) @2908f08   16 months ajbeach Most of ResolvExpr? was written before the new style standard. Some …
(edit) @5625427   16 months ajbeach Remove the warning directive from SpecCost?, you can't actually use the …
(edit) @0bd3faf   16 months ajbeach Removed forward declarations missed in the BaseSyntaxNode? removal. …
(edit) @c6b4432   16 months ajbeach Remove BaseSyntaxNode? and clean-up.
(edit) @fa761c2   16 months ajbeach Changed some new uses of UniqueId? to the ast version. Changed where …
(edit) @58c64323   16 months ajbeach Hang on, eval doesn't have any side effects.
(edit) @4ac402d   16 months ajbeach Added a missing include (not sure how that slipped through) and did …
(edit) @7d55e4d   16 months ajbeach Simple rework to BasicTypes?-gen.cc to avoid refering to the old ast. …
(edit) @8cbe732   17 months j82liang Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc
(edit) @d3652df   17 months ajbeach Took the new EraseWith? pass out of the box pass. It might be able to …
(edit) @f033d01   18 months j82liang Fix typo{
(edit) @c7616dd   18 months j82liang Fix designation value error
(edit) @62c6cfa   18 months j82liang Revert "Fix designator value in enumerated array and implemented …
(edit) @c1e66d9   18 months j82liang Fix designator value in enumerated array and implemented enumerated …
(edit) @4894239   18 months j82liang Allow uninitialized enum value as designators
(edit) @1fc111c   18 months j82liang Bug fix
Note: See TracRevisionLog for help on using the revision log.