summary refs log tree commit diff stats
path: root/compiler/semfold.nim
Commit message (Collapse)AuthorAgeFilesLines
* fixes #2599Araq2015-09-131-8/+1
|
* fixes #3230Araq2015-09-091-1/+1
|
* Fixed nimvm in generics.Yuriy Glukhov2015-09-071-2/+0
|
* nimvm is magicYuriy Glukhov2015-09-041-0/+2
|
* fixes #3140Araq2015-08-031-8/+8
|
* fixes #3099Araq2015-07-211-1/+1
|
* fixes #1463Araq2015-07-011-1/+1
|
* fixes #2985Araq2015-06-251-0/+3
|
* Removed magics: mAbsI64rku2015-06-101-2/+2
|
* Removed magics: mBitnotI64rku2015-06-101-1/+1
|
* Removed magics: mEqI64 mLtI64 mLeI64rku2015-06-101-3/+3
|
* Removed magics: mShrI64, mShlI64, mBitandI64, mBitorI64, mBitxorI64rku2015-06-101-8/+8
| | | | Author: rku <rokups@zoho.com>
* Removed magics: mAddI64, mSubI64, mMulI64, mDivI64, mModI64rku2015-06-101-10/+10
| | | | Author: rku <rokups@zoho.com>
* fixes #2629, fixes #2641, fixes #2632, fixes #2630Araq2015-05-031-1/+1
|
* minor bugfixes to the new 'len(nil)==0' featureAraq2015-05-031-2/+5
|
* compiler\ccgexprs.nimAraq2015-05-031-1/+1
| | | | fixes 'nil' literal echoing
* fixes #2470, fixes #1354Araq2015-04-281-2/+3
|
* fixes #2589Araq2015-04-231-1/+1
|
* added '..^' and '..<' operators; 'nil' is allowed for 'len'; added plugin ↵Araq2015-04-221-2/+3
| | | | system to the compiler
* fixes #2550Araq2015-04-221-9/+13
|
* fixes #2448Araq2015-04-101-4/+10
|
* disallow negative indexingAraq2015-03-271-133/+133
|
* Fixes #2030Simon Hafner2015-01-291-2/+2
|
* Happy new year!Guillaume Gelin2015-01-061-1/+1
|
* fixes #1638Araq2014-12-171-3/+5
|
* implemented procCall builtinAraq2014-11-281-4/+0
|
* fixes #939Araq2014-11-201-4/+16
|
* fixes #916Araq2014-11-201-1/+1
|
* bugfix: 'T = ref T' is an illegal recursive typeAraq2014-10-021-0/+1
|
* Nimrod renamed to NimAraq2014-08-281-1/+1
|
* renamefestAraq2014-08-231-2/+2
|
* fixes constant array indexing bugAraq2014-06-301-6/+7
|
* attempt to fix the bootstrappingAraq2014-05-061-3/+1
|
* minor tweaks; updated todo.txtAraq2014-04-251-0/+1
|
* Fix spawn ICE on invalid argument.EXetoC2014-04-201-1/+1
|
* fixes yet another option typeAraq2014-04-031-6/+12
|
* vm2: new representation of registersAraq2014-02-211-1/+1
|
* implements #766;Zahary Karadjov2014-01-241-2/+1
| | | | | | expressions such as Type.field are now recognised by the compiler. This also fixes a bug, preventing the user-defined to check for the presence of regular fields in addition to procs
* 'nil' as a statement is deprecated, use an empty 'discard' insteadAraq2014-01-191-2/+2
|
* Merge branch 'upstream' into develZahary Karadjov2013-12-291-4/+6
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: compiler/ccgutils.nim compiler/msgs.nim compiler/sem.nim compiler/semexprs.nim compiler/seminst.nim compiler/semmagic.nim compiler/semstmts.nim compiler/semtypes.nim compiler/semtypinst.nim compiler/sigmatch.nim compiler/types.nim compiler/vmgen.nim lib/core/macros.nim lib/system.nim tests/reject/tenummix.nim web/news.txt
| * make more tests greenZahary Karadjov2013-12-291-2/+3
| |
| * static params: expr[T] is now static[T]Zahary Karadjov2013-12-191-1/+1
| | | | | | | | | | | | | | This introduces tyStatic and successfully bootstraps and handles few simple test cases. Static params within macros are no longer treated as PNimrodNodes - they are now equivalent to constants of the designated type.
* | case consistency part 4Araq2013-12-271-29/+29
| |
* | more tests are greenAraq2013-12-081-8/+38
|/
* Merge branch 'master' of github.com:Araq/NimrodAraq2013-08-301-4/+12
|\
| * Experimental support for delayed instantiation of genericsZahary Karadjov2013-08-231-4/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This postpones the semantic pass over the generic's body until the generic is instantiated. There are several pros and cons for this method and the capabilities that it enables may still be possible in the old framework if we teach it a few new trick. Such an attempt will follow in the next commits. pros: 1) It allows macros to be expanded during generic instantiation that will provide the body of the generic. See ``tmacrogenerics``. 2) The instantiation code is dramatically simplified. Dealing with unknown types in the generic's body pre-pass requires a lot of hacky code and error silencing in semTypeNode. See ``tgenericshardcases``. cons: 1) There is a performance penalty of roughly 5% when bootstrapping. 2) Certain errors that used to be detected in the previous pre-pass won't be detected with the new scheme until instantiation.
* | float64 is now an alias to 'float'; fixes #545Araq2013-08-301-2/+5
|/
* new VM: implemented constructors and jump optimizerAraq2013-08-071-1/+1
|
* bugfix: gensymAraq2013-07-251-1/+1
|
* fixes #544Araq2013-07-241-0/+4
|