Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fixes #6255, add `system.ashr` arithmetic right shift (#8547) | andri lim | 2018-08-07 | 1 | -0/+1 |
| | |||||
* | fixes #5617, 'copyLineInfo' addition (#8523) | andri lim | 2018-08-05 | 1 | -8/+8 |
| | |||||
* | fixes #7827, bindSym enhancement (#8499) | andri lim | 2018-08-02 | 1 | -7/+38 |
| | | | | | | | | | | | | | | | | * bindSym power up, working prototype * update bindSym doc * add bindSym test * fix some typo * fix bindSym doc * get rid of specialops field from vm * add experimental: dynamicBindSym | ||||
* | Fix ref bug in vmgen (#8424) | Oscar Nihlgård | 2018-07-30 | 1 | -45/+43 |
| | |||||
* | Fixed uncaught exception in vm gen | Yuriy Glukhov | 2018-06-13 | 1 | -1/+1 |
| | |||||
* | bugfix: allow 'export' in the VM | Andreas Rumpf | 2018-06-12 | 1 | -1/+1 |
| | |||||
* | fixex merge conflicts | Araq | 2018-06-08 | 1 | -1/+2 |
|\ | |||||
| * | Fix for newStringOfCap in VM (#7901) | Oscar Nihlgård | 2018-06-04 | 1 | -1/+2 |
| | | |||||
* | | completed VM support for incremental compilations | Andreas Rumpf | 2018-06-04 | 1 | -6/+6 |
| | | |||||
* | | WIP: an API for VM replay global state support | Andreas Rumpf | 2018-06-03 | 1 | -10/+28 |
| | | |||||
* | | baby steps for incremental compilation | Andreas Rumpf | 2018-05-30 | 1 | -1/+1 |
| | | |||||
* | | refactoring: remove idents.legacy global variable and pass the IdentCache ↵ | Andreas Rumpf | 2018-05-27 | 1 | -1/+1 |
| | | | | | | | | around explicitly | ||||
* | | remove more global variables in the Nim compiler | Andreas Rumpf | 2018-05-27 | 1 | -1/+1 |
| | | |||||
* | | platform.nim doesn't use globals anymore; prepare msgs.nim for not using globals | Andreas Rumpf | 2018-05-18 | 1 | -5/+5 |
| | | |||||
* | | preparations of making compiler/msgs.nim free of global variables | Andreas Rumpf | 2018-05-17 | 1 | -3/+3 |
| | | |||||
* | | remove ast.emptyNode global; cleanup configuration.nim | Araq | 2018-05-16 | 1 | -2/+2 |
|/ | |||||
* | transf and vmgen compile again | Andreas Rumpf | 2018-05-12 | 1 | -102/+102 |
| | |||||
* | fixes #7774 (#7783) | alaviss | 2018-05-06 | 1 | -1/+3 |
| | |||||
* | warn about inconsistent spacing around binary operators; fixes #7582 | Andreas Rumpf | 2018-05-05 | 1 | -1/+1 |
| | |||||
* | correct comparisons for nil strings/seqs | Andreas Rumpf | 2018-04-28 | 1 | -0/+1 |
| | |||||
* | introduce nkTupleConstr AST node for unary tuple construction; breaking change | Andreas Rumpf | 2018-04-13 | 1 | -3/+3 |
| | |||||
* | Cleanups 20180401 (#7458) | Jacek Sieka | 2018-04-12 | 1 | -0/+3 |
| | |||||
* | Get symbol kind (#7491) | Arne Döring | 2018-04-11 | 1 | -1/+1 |
| | |||||
* | Fixes #7407 (#7427) | cooldome | 2018-04-06 | 1 | -2/+1 |
| | |||||
* | some progress on #7261; VM does not support the new backwards indexing | Araq | 2018-02-28 | 1 | -1/+1 |
| | |||||
* | preparations for language extensions: 'sink' and 'lent' types | Andreas Rumpf | 2018-01-07 | 1 | -3/+3 |
| | |||||
* | add support cast[integer] in VM | Parashurama | 2017-12-30 | 1 | -2/+45 |
| | |||||
* | first steps in adding template/macro calls to stack traces | Araq | 2017-12-21 | 1 | -0/+2 |
| | |||||
* | fixes crash related to runnableExamples in Nim doc that yet uses the VM | Andreas Rumpf | 2017-12-09 | 1 | -0/+2 |
| | |||||
* | bugfix: make 'macros' module available for nimscript | Andreas Rumpf | 2017-11-14 | 1 | -3/+3 |
| | |||||
* | deprecated unary '<' | Andreas Rumpf | 2017-10-29 | 1 | -11/+11 |
| | |||||
* | first steps of making 'opt' a first class type for Nim | Andreas Rumpf | 2017-09-25 | 1 | -0/+2 |
| | |||||
* | first implementation of the 'func' keyword | Andreas Rumpf | 2017-09-23 | 1 | -2/+2 |
| | |||||
* | Fix operations on string as openarray in VM. (#6257) | Parashurama | 2017-09-15 | 1 | -3/+3 |
| | | | | | | | | | | * 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 VM intsize for 32bits and smaller targetOS. (#6211) | Parashurama | 2017-08-10 | 1 | -3/+4 |
| | | | | | | | This commit change the default behaviour of VM int/uint always being 64bits and make int/uint on VM behave identically to compiled code. This insert 'opcNarrowU' or 'opcNarrow' opcode on Int/Uint operations when needed to simulate smaller Int/Uint on VM. | ||||
* | Vm fix zero extend proc ze/ze64 && toU32/toU16/toU8 (#5988) | Parashurama | 2017-08-03 | 1 | -2/+16 |
| | | | | | | * 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 | -1/+10 |
| | |||||
* | fix logical right shift in VM. (#5916) | Parashurama | 2017-06-05 | 1 | -1/+17 |
| | |||||
* | Working test cases for the sophisticated matrix library example from the manual | Zahary Karadjov | 2017-03-24 | 1 | -1/+2 |
| | | | | | Fixed the dot operator when used within return types (see tgenericdotrettype) Fixed the matching of generic concepts aliases used with the implicit generics style | ||||
* | fixes #5221 | Andreas Rumpf | 2017-02-05 | 1 | -1/+1 |
| | |||||
* | fixes #5269 | Andreas Rumpf | 2017-02-05 | 1 | -6/+10 |
| | |||||
* | make vmgen more robust in the context of 'nim check' | Araq | 2016-12-31 | 1 | -2/+3 |
| | |||||
* | removed tyArrayConstr completely from the compiler; introduced tyAlias ↵ | Araq | 2016-11-14 | 1 | -1/+1 |
| | | | | instead in preparation for further bugfixes | ||||
* | fixes #4915 | andri lim | 2016-10-27 | 1 | -1/+1 |
| | |||||
* | fixes regression | Andreas Rumpf | 2016-08-26 | 1 | -1/+1 |
| | |||||
* | remove unused stuff | Jacek Sieka | 2016-08-09 | 1 | -14/+0 |
| | |||||
* | attempt to fix #4065 | Andreas Rumpf | 2016-08-04 | 1 | -2/+1 |
| | |||||
* | compiler almost free of deprecated expr/stmt names | Andreas Rumpf | 2016-07-30 | 1 | -2/+2 |
| | |||||
* | stdlib and compiler don't use .immediate anymore | Andreas Rumpf | 2016-07-29 | 1 | -2/+2 |
| | |||||
* | added system.newSeqOfCap for improved efficiency | Andreas Rumpf | 2016-07-15 | 1 | -2/+14 |
| |