summary refs log tree commit diff stats
path: root/compiler
Commit message (Collapse)AuthorAgeFilesLines
* render lent types properlyAraq2019-04-061-1/+1
|
* fixes unowned->owned conversion ruleAndreas Rumpf2019-04-061-1/+1
|
* Fix astdef typ deref (#10245)Alexander Ivanov2019-04-051-1/+1
|
* fixes #10943 (#10947)cooldome2019-04-051-1/+4
|
* destructors: progressAndreas Rumpf2019-04-053-10/+27
|
* newruntime: codegen fixAndreas Rumpf2019-04-051-5/+4
|
* relax warning about inconsistent spacing (#10968)Miran2019-04-051-1/+1
| | | | | | Now the warning is raised only in the cases when there is an inconsistency in the style (spacing vs no spacing): * if a> b --> warning * if a > b --> no warning
* fixes destructor tuple regression #10940 (#10941)cooldome2019-04-043-3/+8
| | | | | | | | * fixes #10940 * bug fixes * fix spacing
* newruntime: fixes codegen for closuresAraq2019-04-041-0/+2
|
* fixes #10200 (#10950)tofu2019-04-041-1/+2
| | | | | | | | | | | | * fixes #10200 * add rule for other comparison operators * add rule for '!=' * add test * fixed to pass the test
* Pure ref object; fixes #10721 (#10955)Arne Döring2019-04-041-0/+2
|
* add alias for --debugger:native (#10957)Arne Döring2019-04-041-0/+5
|
* fixes #10942. Lent T bug (#10946)cooldome2019-04-034-16/+29
| | | | | | | | * fixes #10942 * add test * bug build
* fixes #10948 (#10949)cooldome2019-04-031-1/+1
|
* make tests green againAndreas Rumpf2019-04-021-1/+1
|
* try to make travis greenAraq2019-04-021-1/+1
|
* simple program works with --newruntimeAraq2019-04-022-1/+3
|
* make megatest work againAraq2019-04-021-1/+2
|
* newruntime: progressAraq2019-04-022-6/+13
|
* newruntime: progressAraq2019-04-015-23/+38
|
* fixes #10934Araq2019-03-312-0/+2
|
* fixes #10930Andreas Rumpf2019-03-301-0/+1
|
* remove check for better error message (#10926)Arne Döring2019-03-291-3/+0
|
* code cleanup (#10874)Arne Döring2019-03-281-11/+2
|
* fixes #10904Araq2019-03-261-3/+6
|
* fixes 'nimble install nimble' problemsAndreas Rumpf2019-03-261-2/+3
|
* fixes #10896 (#10903)Andreas Rumpf2019-03-251-1/+3
|
* newruntime: bugfixesAndreas Rumpf2019-03-253-2/+8
|
* fixes #8202 (#10888)Andreas Rumpf2019-03-231-1/+9
| | | | | | * fixes #8202 * make tests green
* improvements on the hot code reloading support (#10892)Viktor Kirilov2019-03-234-7/+26
| | | | | | | | * calling the "_actual" versions of functions when defined within the same module - slowdown for the snappy compression is now down from x6 to x4-x5 when HCR is ON * dynamically linking to the runtime for VS when HCR is on - binaries are smaller * compilerProcs are also called using the _actual direct version within the module they are defined (system)! * updated comments & goals * handling VS-compatible compilers on Windows in a cleaner way * now the .dll/.so files end up in the nimcache even when --nimcache isn't explicitly stated
* fixes #10886 [backport] (#10897)Andreas Rumpf2019-03-231-7/+16
|
* more destructor based changes (#10885)Andreas Rumpf2019-03-2333-234/+401
| | | | | | | | | | | * mark user defined destructors with sfOverriden to simplify the logic * refactoring in preparation to merge liftings and generic instantiations for destructors * ast: introduce nkHiddenTryStmt for destructor generation in order to be able to optimize better the code later on * renamed 'patterns' switch to 'trmacros' as it was totally misleading before * destructors: introduce tfCheckedForDestructor flag in preparation of strict =destroy checking * test for invalid/too late destructor introductions * liftdestructors: make code robust for nimsuggest * --newruntime works for hello world again * newruntime: code generation for closures
* Add OpenMP overload with stepping (#10891)Mamy Ratsimbazafy2019-03-221-5/+15
|
* fixes #10884 (#10887)Andreas Rumpf2019-03-221-1/+1
|
* add condition for szUnknown (#10869)Arne Döring2019-03-211-2/+2
|
* Lineinfo fix (#10871)Arne Döring2019-03-212-1/+2
|
* fixes #10861 (#10877)cooldome2019-03-211-2/+3
|
* REVERT "optPar"Andrii Riabushenko2019-03-211-3/+2
| | | | This reverts commit 5f1a59216bb79684a5c708978cded1c5d5140574.
* optParAndrii Riabushenko2019-03-211-2/+3
|
* increase VM limit (#10870)cooldome2019-03-201-1/+1
|
* docgen: add links for var, let and const (refs #10487) (#10868)Miran2019-03-201-3/+3
| | | | | | * docgen: add links for var, let and const (refs #10487) * change the expected html
* docgen: generate pragma after generic, fixes #10792 (#10865)Miran2019-03-191-2/+8
|
* mark user defined destructors with sfOverriden to simplify the logicAndreas Rumpf2019-03-191-0/+3
|
* sizeof alignof offsetof macros api (#10855)Arne Döring2019-03-195-1/+30
|
* Fix nightlies :test: snippet issue (#10862)genotrance2019-03-191-1/+1
|
* Size ptr tuple (#10846)Arne Döring2019-03-184-10/+25
| | | | | | * fixes #10117 * Add support for recursive tuples * detect in generics
* Support for stmtListExpr in parser after major keywords. Scaled down ↵cooldome2019-03-181-10/+21
| | | | | | | version. (#10852) * Support for stmtListExpr in parser after major keywords * fixes #4035
* fixes #10838 (#10841)cooldome2019-03-181-0/+2
| | | | | | * fixes #10838 * reject func in types instead * trigger tests
* multi-methods need to be explicitly enabled (#10856)Miran2019-03-183-0/+6
| | | | | | * multi-methods need to be explicitly enabled * update changelog, manual and tutorial
* newruntime: progressAndreas Rumpf2019-03-152-12/+10
|