Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | make case-object transitions explicit, make unknownLineInfo a const, replace ↵ | Jasper Jenkins | 2020-01-17 | 1 | -3/+3 |
| | | | | a few magic numbers with consts (#13170) | ||||
* | ARC: cycle detector (#12823) | Andreas Rumpf | 2019-12-17 | 1 | -0/+1 |
| | | | | | | | | | | | | | * first implementation of the =trace and =dispose hooks for the cycle collector * a cycle collector for ARC: progress * manual: the .acyclic pragma is a thing once again * gcbench: adaptations for --gc:arc * enable valgrind tests for the strutils tests * testament: better valgrind support * ARC refactoring: growable jumpstacks * ARC cycle detector: non-recursive algorithm * moved and renamed core/ files back to system/ * refactoring: --gc:arc vs --gc:orc since 'orc' is even more experimental and we want to ship --gc:arc soonish | ||||
* | ARC: implemented a simple cycle detector | Araq | 2019-11-28 | 1 | -4/+6 |
| | |||||
* | Cosmetic compiler cleanup (#12718) | Clyybber | 2019-11-28 | 1 | -41/+40 |
| | | | | | | | | | | | | | | | | | | * Cleanup compiler code base * Unify add calls * Unify len invocations * Unify range operators * Fix oversight * Remove {.procvar.} pragma * initCandidate -> newCandidate where reasonable * Unify safeLen calls | ||||
* | ARC: closure bugfixes (#12677) | Andreas Rumpf | 2019-11-18 | 1 | -2/+9 |
| | | | | | | | | * ARC: closure bugfixes * progress * ARC closures: create =hooks for captured parameters * ARC: always destroy constructions like tuples, arrays properly, even in edge cases * fixes a regression | ||||
* | ARC: fixes leaking new() statement (#12665) | Andreas Rumpf | 2019-11-15 | 1 | -6/+9 |
| | |||||
* | ARC: solves phase ordering problems (#12654) | Andreas Rumpf | 2019-11-14 | 1 | -7/+4 |
| | |||||
* | ARC: use the new .cursor annotation for 'up' pointers | Araq | 2019-11-13 | 1 | -2/+6 |
| | |||||
* | fixes #12577 [backport] (#12584) | Andreas Rumpf | 2019-11-03 | 1 | -8/+4 |
| | |||||
* | --gc:destructors: simple closures work | Andreas Rumpf | 2019-11-02 | 1 | -9/+13 |
| | |||||
* | --gc:destructors now means Nim uses pure refcounting (#12557) | Andreas Rumpf | 2019-10-30 | 1 | -1/+2 |
| | |||||
* | proof that refcounting can handle Nim's async (#12533) | Andreas Rumpf | 2019-10-28 | 1 | -18/+18 |
| | |||||
* | some progress on bug #12443 | Andreas Rumpf | 2019-10-27 | 1 | -1/+1 |
| | |||||
* | refactoring: use the new strings and seqs when optSeqDestructors is active | Araq | 2019-10-20 | 1 | -3/+3 |
| | |||||
* | refactoring: --newruntime consists of 3 different switches | Araq | 2019-10-20 | 1 | -10/+10 |
| | |||||
* | fixes #12323 [backport] | Andreas Rumpf | 2019-10-07 | 1 | -1/+3 |
| | |||||
* | int128 on firstOrd, lastOrd and lengthOrd (#11701) | Arne Döring | 2019-08-07 | 1 | -1/+1 |
| | | | | * fixes #11847 | ||||
* | [refactoring] remove unused imports in the compiler and in some stdlib modules | Araq | 2019-07-18 | 1 | -1/+1 |
| | |||||
* | newruntime: progress to make 'async' work with --newruntime | Araq | 2019-07-15 | 1 | -1/+1 |
| | |||||
* | styleCheck: make the compiler and large parts of the stdlib compatible with ↵ | Araq | 2019-07-10 | 1 | -4/+4 |
| | | | | --styleCheck:error | ||||
* | fixes #11523 | Andreas Rumpf | 2019-06-26 | 1 | -1/+2 |
| | |||||
* | [bugfix] newruntime: trivial closure iterator works | Araq | 2019-06-20 | 1 | -0/+7 |
| | |||||
* | [bugfix] owned closures (#11544) | Andreas Rumpf | 2019-06-20 | 1 | -15/+47 |
| | |||||
* | [refactoring] liftdestructors.nim is callable from lambdalifting; refs #11217 | Araq | 2019-06-12 | 1 | -1/+6 |
| | |||||
* | make fullpaths the default in error messages and stack traces for mor… ↵ | Andreas Rumpf | 2019-06-05 | 1 | -3/+1 |
| | | | | | | | | | | | | (#11385) * make fullpaths the default in error messages and stack traces for more convenient development * split up -d:release into -d:release and -d:danger flags * workaround a Nim config parser bug * fixes an old nim config parser bug * make megatest green again * make nimpretty tests work again * make nimsuggest green | ||||
* | make twidgets example green (#11135) | Andreas Rumpf | 2019-04-28 | 1 | -19/+27 |
| | |||||
* | make strscans module work with --newruntime | Andreas Rumpf | 2019-04-14 | 1 | -3/+6 |
| | |||||
* | ignore nkCommentStmt in lambda lifting | Andreas Rumpf | 2019-02-06 | 1 | -1/+1 |
| | |||||
* | fixes silly typo causing tons of async regressions | Araq | 2019-01-30 | 1 | -1/+1 |
| | |||||
* | destructors: do not produce strong backrefs in closure environments so that ↵ | Araq | 2019-01-30 | 1 | -4/+17 |
| | | | | refcounting works | ||||
* | fixes nested gensym'ed parameters; fixes #9476 | Araq | 2018-12-08 | 1 | -4/+1 |
| | |||||
* | fixes #9441 | Araq | 2018-12-06 | 1 | -2/+20 |
| | |||||
* | lambdalifting: be consistent in its handling for 'func' | Araq | 2018-12-05 | 1 | -9/+7 |
| | |||||
* | Change the order of compilation passes, transformation is made lazy at code ↵ | cooldome | 2018-10-18 | 1 | -6/+11 |
| | | | | | | | | | | | | | | | gen (#8489) * Ast no transformation * Add getImplNoTransform to the macros module * progress on delaying transf * Fix methods tranformation * Fix lazy lambdalifting * fix create thread wrapper * transform for lambda lifting * improve getImplTransformed * Fix destructor tests * try to fix nimprof for linux | ||||
* | improve error message, closes #2361 (#9387) | Miran | 2018-10-17 | 1 | -2/+3 |
| | | | | | | * improve error message * use single % operation | ||||
* | Access implicit `result` trough envP in closures (#8471) | LemonBoy | 2018-07-30 | 1 | -1/+13 |
| | | | | | | | Reuse the existing machinery, most of the changes are only needed to handle the `result = result` node in nkReturnStmt produced by the closure iterator transform. Fixes #338 | ||||
* | fixes yet another merge conflict | Araq | 2018-06-11 | 1 | -86/+2 |
|\ | |||||
| * | Removed oldIterTranf feature | Yuriy Glukhov | 2018-06-10 | 1 | -86/+2 |
| | | |||||
* | | fixex merge conflicts | Araq | 2018-06-08 | 1 | -21/+41 |
|\| | |||||
| * | Merge branch 'devel' into yield-in-try | Yuriy Glukhov | 2018-05-15 | 1 | -102/+101 |
| |\ | |||||
| * | | Cosmetics | Yuriy Glukhov | 2018-05-09 | 1 | -2/+2 |
| | | | |||||
| * | | Small fix and cosmetics | Yuriy Glukhov | 2018-05-09 | 1 | -2/+1 |
| | | | |||||
| * | | Closure iter transformation | Yuriy Glukhov | 2018-05-09 | 1 | -18/+42 |
| | | | |||||
* | | | 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 | -20/+20 |
| | | | | | | | | | | | | around explicitly | ||||
* | | | remove more global variables in the Nim compiler | Andreas Rumpf | 2018-05-27 | 1 | -1/+1 |
| | | | |||||
* | | | make tests green again | Andreas Rumpf | 2018-05-18 | 1 | -1/+1 |
| | | | |||||
* | | | remove ast.emptyNode global; cleanup configuration.nim | Araq | 2018-05-16 | 1 | -2/+2 |
| |/ |/| | |||||
* | | options.nim: no global variables anymore | Andreas Rumpf | 2018-05-13 | 1 | -13/+10 |
| | | |||||
* | | lambda lifting compiles again | Andreas Rumpf | 2018-05-12 | 1 | -85/+90 |
|/ |