summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* fixed a regression in `nimrod i`Zahary Karadjov2013-01-272-3/+4
|
* Disabled mark-and-sweep in the compiler itselfZahary Karadjov2013-01-222-8/+34
| | | | | This also adds "cycle roots trimming": a light-weight collection of the cycle roots performed in CollectZCT for candidates that are recently allocated and provably dead.
* minor bug fixes to make some tests greenZahary Karadjov2013-01-213-4/+8
|
* fixed a regression: compiling projects not residing in the current directoryZahary Karadjov2013-01-204-19/+18
|
* cleaned up some debugging codeZahary Karadjov2013-01-208-111/+67
|
* fixes the recently discovered GC memory leaksZahary Karadjov2012-12-2012-357/+1932
| | | | | | This revision is intended as comparison point between the old and the new GC The used GC can be switched in mmdisp and various statistics will be gathered during execution (these will be removed/disabled in later revisions)
* adds an option to interleave the generated code with snippets from the ↵Zahary Karadjov2012-12-029-85/+149
| | | | | | | | | | | | | | | original source Lines from the original source are outputted as comments next to line directives. Hopefully, this will make debugging codegen problems easier. Other changes: The frame setup code now uses a single-line C macro. My motivation was to reduce the noise in the generated output and make it easier to step over the boiler-plate code, but counter-intuitively this also improved the overall compilation speed a little bit so I applied the same treatment to line tracking too (this reduces the size of the generated files and the explanation is that probably the I/O overhead dominates the macro expansion costs).
* track the "owner" heap object in the ref write barrierZahary Karadjov2012-12-014-8/+98
| | | | See the papers for reference counting with heap sliding views for details:
* temporary debugging code for the memory leak investigationZahary Karadjov2012-11-2810-25/+125
|
* disables the compile-time rope formatting during bootstrappingZahary Karadjov2012-11-287-212/+227
|
* first batch of rope code converted to `rfmt`Zahary Karadjov2012-11-285-95/+91
| | | | | | The results so far are inconclusive: The rope cache tries have been reduced by more than 125K (nearly 20%), but the bootstrap time seems to be ever slightly increasing (0.01s).
* experimental compile-time rope formatting codeZahary Karadjov2012-11-283-4/+102
|
* store the instantiation cache in the generic symbolZahary Karadjov2012-11-287-71/+95
|
* [caas] first version that actually works (still has a lot of logical memory ↵Zahary Karadjov2012-11-289-63/+260
| | | | leaks on recompilation)
* CaaS in-memory cachingZahary Karadjov2012-11-2823-215/+299
| | | | | removed some redundant filepath params and variables and switched to canonical paths in most places
* caas is now drivable through stdinZahary Karadjov2012-11-2818-137/+176
| | | | | * added idetools --eval * streams.readLine recognises and applies the backspace character
* fixed recently introduced parser bugsAraq2012-11-261-2/+2
|
* 'return' for first class iteratorsAraq2012-11-266-21/+80
|
* next steps for first class iteratorsAraq2012-11-267-7/+16
|
* parser support for 'not nil' annotationAraq2012-11-252-52/+63
|
* Merge branch 'master' of github.com:Araq/NimrodAraq2012-11-253-13/+21
|\
| * Merge pull request #262 from gradha/pr_adds_some_documentation_to_db_modulesAraq2012-11-243-13/+21
| |\ | | | | | | Documents NULL to "" db_* transformation and return values.
| | * Documents NULL to "" db_* transformation and return values.Grzegorz Adam Hankiewicz2012-11-243-13/+21
| | |
* | | first steps for 'not nil' annotationAraq2012-11-257-69/+127
|/ /
* | added missing type flagsAraq2012-11-234-14/+24
| |
* | Merge branch 'master' of github.com:Araq/NimrodAraq2012-11-222-0/+75
|\ \
| * | added 2 GC leak test casesZahary Karadjov2012-11-222-0/+75
| | |
* | | 'iterator' as type descriptionAraq2012-11-222-3/+9
| | |
* | | sockets: proper bugfix for solarisAraq2012-11-221-1/+1
| | |
* | | made 'shared' a keywordAraq2012-11-226-7/+25
|/ /
* | bugfixes for thread analysisAraq2012-11-221-5/+9
| |
* | Merge pull request #260 from exhu/masterAraq2012-11-211-0/+7
|\ \ | | | | | | base() proc for typeinfo module
| * | Added base() proc to typeinfo.Yury Benesh2012-11-211-0/+7
| | |
* | | fixes #261Araq2012-11-211-1/+1
| | |
* | | fixes 259Araq2012-11-211-2/+2
| | |
* | | added 2 necessary node kindsAraq2012-11-213-2/+8
|/ /
* | almost every pragma is allowed in a 'push' pragmaAraq2012-11-207-231/+259
| |
* | bugfix: sockets with SSL supportAraq2012-11-201-4/+5
| |
* | sockets.nim: bugfix for solarisAraq2012-11-201-0/+2
| |
* | fixes #256 (I hope)Araq2012-11-201-1/+1
| |
* | docs should build under doc2; unittests of times.nim compile under 32bit; ↵Araq2012-11-202-6/+9
| | | | | | | | small bugfix for the tester
* | doc2 improvements; small lexer bugfix: backslashes in commentsAraq2012-11-2014-75/+108
| |
* | Merge branch 'master' of github.com:Araq/NimrodAraq2012-11-192-82/+66
|\|
| * Merge pull request #253 from gradha/pr_reduce_todo_code_repetitionAraq2012-11-181-79/+63
| |\ | | | | | | Reduces code repetition through helper procs and templates.
| | * Reduces code repetition through helper procs and templates.Grzegorz Adam Hankiewicz2012-11-151-79/+63
| | |
| * | Merge pull request #252 from gradha/pr_correct_todo_object_inheritanceAraq2012-11-182-3/+3
| |\ \ | | | | | | | | Removes 'of TObject' to finalize objects not meant for inheritance.
| | * | Removes 'of TObject' to finalize objects not meant for inheritance.Grzegorz Adam Hankiewicz2012-11-152-3/+3
| | | |
* | | | fixes #250Araq2012-11-1911-22/+62
|/ / /
* | | Merge branch 'master' of github.com:Araq/NimrodAraq2012-11-181-1/+2
|\ \ \
| * | | Fixes bug in scgi module: client socket was not initialised properly.Dominik Picheta2012-11-181-1/+2
| | | |