summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* logging: better documentation (#10895)Jjp1372019-03-241-94/+572
|
* stats.nim: bugfix: use min in '+' [backport]Andreas Rumpf2019-03-231-1/+1
|
* fixes #8202 (#10888)Andreas Rumpf2019-03-232-1/+27
| | | | | | * fixes #8202 * make tests green
* improvements on the hot code reloading support (#10892)Viktor Kirilov2019-03-237-16/+42
| | | | | | | | * 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-232-7/+34
|
* system.nim: documentation improvementsAndreas Rumpf2019-03-232-20/+22
|
* add short overview of the system module (#10883)Miran2019-03-232-24/+223
|
* more destructor based changes (#10885)Andreas Rumpf2019-03-2339-244/+445
| | | | | | | | | | | * 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-223-5/+35
|
* fixes #10884 (#10887)Andreas Rumpf2019-03-221-1/+1
|
* Merge branch 'devel' of github.com:nim-lang/Nim into develAndreas Rumpf2019-03-2116-25/+75
|\
| * add condition for szUnknown (#10869)Arne Döring2019-03-211-2/+2
| |
| * Lineinfo fix (#10871)Arne Döring2019-03-213-1/+20
| |
| * use abort instead of quit (#10872)Arne Döring2019-03-212-5/+9
| |
| * fixes #10861 (#10877)cooldome2019-03-212-3/+18
| |
| * 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-202-4/+4
| | | | | | | | | | | | * docgen: add links for var, let and const (refs #10487) * change the expected html
| * improve docs for os.joinPath, fixes #10836 (#10866)Miran2019-03-201-2/+7
| |
| * live with the hacks, PCRE's design is crapAraq2019-03-193-5/+6
| |
| * docgen: generate pragma after generic, fixes #10792 (#10865)Miran2019-03-191-2/+8
| |
* | fixes -d:nimTypeNames leak detection regressionAndreas Rumpf2019-03-211-4/+4
|/
* pcre.nim: added pcre_free and removed hacks in nre and re.nimAndreas Rumpf2019-03-193-6/+5
|
* mark user defined destructors with sfOverriden to simplify the logicAndreas Rumpf2019-03-191-0/+3
|
* add tastspec (and ast_pattern_matching) (#10863)Arne Döring2019-03-192-0/+1600
|
* fixes #10857 invisible span had width (#10860)Anthon van der Neut2019-03-194-13/+29
|
* sizeof alignof offsetof macros api (#10855)Arne Döring2019-03-197-1/+93
|
* Fix nightlies :test: snippet issue (#10862)genotrance2019-03-191-1/+1
|
* Size ptr tuple (#10846)Arne Döring2019-03-188-10/+153
| | | | | | * fixes #10117 * Add support for recursive tuples * detect in generics
* correct argument name, (#10813)Anthon van der Neut2019-03-181-1/+2
| | | | | | | | | | * correct argument name, updated using poUsePath, based on feedback from c-blake * Update osproc.nim * explicit args parameter
* Support for stmtListExpr in parser after major keywords. Scaled down ↵cooldome2019-03-184-12/+54
| | | | | | | version. (#10852) * Support for stmtListExpr in parser after major keywords * fixes #4035
* fixes #10838 (#10841)cooldome2019-03-182-0/+16
| | | | | | * fixes #10838 * reject func in types instead * trigger tests
* multi-methods need to be explicitly enabled (#10856)Miran2019-03-188-7/+36
| | | | | | * multi-methods need to be explicitly enabled * update changelog, manual and tutorial
* Merge pull request #10850 from FedericoCeratto/egress-ipaddrDominik Picheta2019-03-173-0/+44
|\ | | | | Detect local "egress" IP address
| * Detect local "primary" IP addressFederico Ceratto2019-03-173-0/+44
|/
* make DLLs tests green againAndreas Rumpf2019-03-151-1/+1
|
* newruntime: progressAndreas Rumpf2019-03-152-12/+10
|
* fixes #10845Andreas Rumpf2019-03-151-15/+20
|
* rename for code clarityAndreas Rumpf2019-03-151-5/+5
|
* newruntime: make dynamic destructors compatible with C++Andreas Rumpf2019-03-152-3/+4
|
* revert discard in destroyer (#10840)cooldome2019-03-153-27/+1
| | | | | | * revert discard in destroyer * disable test
* --newruntime: progressAndreas Rumpf2019-03-1415-110/+112
|
* bring back `typetraits.$` for backward compatibilitynarimiran2019-03-141-0/+2
| | | | | Some packages are still using ``from typetraits import `$` `` which is now available from system (no need to import it).
* Revert "put extracted modules behind the switch, to enable doc generation"narimiran2019-03-146-17/+11
| | | | This reverts commit 71bff7d2df428896d3395d18b09c6f0c9c2fea4d.
* put extracted modules behind the switch, to enable doc generationnarimiran2019-03-146-11/+17
|
* multi-methods: remove hack, make tmethod_various compile under strict C++ ↵Andreas Rumpf2019-03-142-12/+12
| | | | [backport]
* --newruntime: work in progressAndreas Rumpf2019-03-1413-241/+574
|
* gc: removed dead codeAndreas Rumpf2019-03-142-6/+0
|
* added lowerings.genLen helper procAndreas Rumpf2019-03-141-0/+9
|