Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | VM: accessing the string terminator is not allowed anymore; cleanup ↵ | Andreas Rumpf | 2018-07-17 | 1 | -1/+3 |
| | | | | tests/system/tostring.nim | ||||
* | Fix vm regression (#8163) | Oscar Nihlgård | 2018-06-30 | 1 | -0/+7 |
| | |||||
* | Fixes #6689 (#8135) | Oscar Nihlgård | 2018-06-30 | 1 | -2/+8 |
| | |||||
* | VM regression fixes (#8146) | Oscar Nihlgård | 2018-06-29 | 1 | -1/+3 |
| | |||||
* | Improve vm support for ref types | Oscar Nihlgård | 2018-06-26 | 1 | -21/+26 |
| | |||||
* | completed VM support for incremental compilations | Andreas Rumpf | 2018-06-04 | 1 | -26/+38 |
| | |||||
* | WIP: an API for VM replay global state support | Andreas Rumpf | 2018-06-03 | 1 | -1/+90 |
| | |||||
* | incremental compilation: implemented basic replay logic | Andreas Rumpf | 2018-06-02 | 1 | -17/+17 |
| | |||||
* | compiler API: final cleanups; improve security by diabling 'gorge' and friends | Andreas Rumpf | 2018-05-29 | 1 | -9/+12 |
| | |||||
* | vm now free of global variables | Andreas Rumpf | 2018-05-28 | 1 | -14/+8 |
| | |||||
* | vm.nim: evalMacroCounter is not a global variable anymore | Andreas Rumpf | 2018-05-28 | 1 | -6/+5 |
| | |||||
* | refactoring: remove idents.legacy global variable and pass the IdentCache ↵ | Andreas Rumpf | 2018-05-27 | 1 | -6/+6 |
| | | | | around explicitly | ||||
* | remove more global variables in the Nim compiler | Andreas Rumpf | 2018-05-27 | 1 | -1/+1 |
| | |||||
* | Merge branch 'devel' into araq-big-refactoring | Andreas Rumpf | 2018-05-21 | 1 | -1/+1 |
|\ | |||||
| * | Fix typo in "out of bounds" error message | coffeepots | 2018-05-18 | 1 | -1/+1 |
| | | |||||
* | | platform.nim doesn't use globals anymore; prepare msgs.nim for not using globals | Andreas Rumpf | 2018-05-18 | 1 | -10/+10 |
| | | |||||
* | | preparations of making compiler/msgs.nim free of global variables | Andreas Rumpf | 2018-05-17 | 1 | -4/+4 |
| | | |||||
* | | remove ast.emptyNode global; cleanup configuration.nim | Araq | 2018-05-16 | 1 | -3/+3 |
|/ | |||||
* | fixes testament compilation | Araq | 2018-05-14 | 1 | -2/+8 |
|\ | |||||
| * | VM fix for refs | Oscar Nihlgård | 2018-05-08 | 1 | -2/+8 |
| | | |||||
* | | move more globals into the config object | Andreas Rumpf | 2018-05-13 | 1 | -9/+9 |
| | | |||||
* | | more modules compile again | Andreas Rumpf | 2018-05-12 | 1 | -1/+1 |
| | | |||||
* | | more modules compile again | Andreas Rumpf | 2018-05-12 | 1 | -100/+110 |
|/ | |||||
* | compiler refactoring, pass config around explicitly | Andreas Rumpf | 2018-05-05 | 1 | -20/+21 |
| | |||||
* | make tests green again | Andreas Rumpf | 2018-04-21 | 1 | -1/+1 |
| | |||||
* | refactoring: make FileIndex a distinct type; make line information an ↵ | Andreas Rumpf | 2018-04-21 | 1 | -3/+3 |
| | | | | uint16; fixes #7654 | ||||
* | allow setting template/macro recursive evaluation limits (#7652) | jcosborn | 2018-04-19 | 1 | -2/+4 |
| | | | | | | | * allow setting template/macro recursive evaluation limits * revert setting template/macro eval limits set them to 1000 | ||||
* | eqIdent new returns false on non identifier types (#7629) | Arne Döring | 2018-04-17 | 1 | -5/+13 |
| | |||||
* | move eqIdent to vm.nim (#7585) | Arne Döring | 2018-04-15 | 1 | -3/+29 |
| | | | | | | * Strutils comment changes. * fix typo | ||||
* | introduce nkTupleConstr AST node for unary tuple construction; breaking change | Andreas Rumpf | 2018-04-13 | 1 | -9/+9 |
| | |||||
* | Get symbol kind (#7491) | Arne Döring | 2018-04-11 | 1 | -15/+20 |
| | |||||
* | reuse default ident in opcNNewNimNode (performance regression) (#7330) | jcosborn | 2018-03-14 | 1 | -1/+1 |
| | | | | | | * reuse default ident in opcNNewNimNode (performance regression) * use emptyIdent as default | ||||
* | some progress on #7261; VM does not support the new backwards indexing | Araq | 2018-02-28 | 1 | -3/+15 |
| | |||||
* | fixes #7215 | Andreas Rumpf | 2018-02-14 | 1 | -2/+5 |
| | |||||
* | deprecated unary '<' | Andreas Rumpf | 2017-10-29 | 1 | -12/+11 |
| | |||||
* | implemented new experimental scriptable import mechanism | Andreas Rumpf | 2017-10-01 | 1 | -1/+1 |
| | |||||
* | workaround a GC/codegen issue that proves nasty to fix | Andreas Rumpf | 2017-09-26 | 1 | -1/+4 |
| | |||||
* | breaking change: getAst strips away pointless nnkStmtList nodes; node ↵ | Andreas Rumpf | 2017-09-26 | 1 | -1/+2 |
| | | | | rendering of nnkStmtList without wrong indentation | ||||
* | Fix operations on string as openarray in VM. (#6257) | Parashurama | 2017-09-15 | 1 | -5/+23 |
| | | | | | | | | | | * fix openarray.len for string as openArray in VM. * fix openarray[idx] for string as openArray in VM. * fix openarray[idx]=val for string as openArray in VM. * add tests for passing string as openArray in VM. * fix issue with NimNode.len NimNode.len was also returning len for string literals. also fix logic bug in if/elif chain. | ||||
* | Fix seq.setLen initialisation in VM (#6224) | Parashurama | 2017-09-02 | 1 | -8/+23 |
| | |||||
* | Vm fix zero extend proc ze/ze64 && toU32/toU16/toU8 (#5988) | Parashurama | 2017-08-03 | 1 | -0/+11 |
| | | | | | | * fixes ze/ze64 procs in VM. * fixes toU8/toU16/toU32. * add tests for ze/ze64 toU32/toU16/toU8 procs | ||||
* | Lineinfo change (#6084) | Arne Döring | 2017-07-17 | 1 | -4/+16 |
| | |||||
* | improved comment satement support in macros (#5904) | Arne Döring | 2017-06-02 | 1 | -1/+1 |
| | |||||
* | Creating and setting comment nodes in macros (#5850) | Fredrik Høisæther Rasch | 2017-05-31 | 1 | -0/+2 |
| | | | | | | | * strVal assingnable comment statement ast nodes * Set comment instead of strVal for comment nodes * Added test code for creating and setting comment nodes * Modified the AST spec documentation for documentation comments | ||||
* | Merge branch 'zahary' into araq2 | Andreas Rumpf | 2017-05-17 | 1 | -2/+3 |
|\ | |||||
| * | fix affecting templates with explicit generic params | Zahary Karadjov | 2017-05-13 | 1 | -2/+3 |
| | | |||||
* | | Merge branch 'zahary' into araq2 | Andreas Rumpf | 2017-05-16 | 1 | -0/+6 |
|\| | |||||
| * | lift parameter-less do block to lambdas | Zahary Karadjov | 2017-04-10 | 1 | -2/+1 |
| | | |||||
| * | fix the do notation when used with procs | Zahary Karadjov | 2017-04-09 | 1 | -1/+2 |
| | | |||||
| * | Restore the Nim's 0.14 proper handling of generic aliases | Zahary Karadjov | 2017-04-08 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | | | | | | | | A more efficient implementation is possible by restoring the old lifting ot tyGenericInvocation to tyGenericInst in liftTypeParam, but this fix will suffice for now. fixes #5087 fixes #5602 fixes #5641 fixes #5570 |