Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | GC: enable precise global/thread local storage tracing | Araq | 2018-01-15 | 1 | -19/+14 |
| | |||||
* | GC improvements; distinguish between thread local and globals in the marking ↵ | Araq | 2018-01-14 | 1 | -72/+49 |
| | | | | step | ||||
* | gc.nim: Add a gcAssert to enforce the no heap sharing restrictions | Araq | 2018-01-12 | 1 | -0/+1 |
| | |||||
* | Fixed mutex usage in SharedList and SharedTable. Closes #6988 (#6990) | Yuriy Glukhov | 2017-12-31 | 1 | -1/+1 |
| | |||||
* | more replacements for the deprecated '<' | Andreas Rumpf | 2017-10-29 | 1 | -3/+3 |
| | |||||
* | fixes #3558 | Araq | 2017-10-16 | 1 | -8/+9 |
| | |||||
* | GCs: use add instead of & | Andreas Rumpf | 2017-09-29 | 1 | -3/+3 |
| | |||||
* | first steps of making 'opt' a first class type for Nim | Andreas Rumpf | 2017-09-25 | 1 | -6/+6 |
| | |||||
* | fixes #6234 | Andreas Rumpf | 2017-08-11 | 1 | -0/+3 |
| | |||||
* | added system.deallocHeap feature for Nim's native GCs | Andreas Rumpf | 2017-07-22 | 1 | -15/+0 |
| | |||||
* | make the GCs more robust | Andreas Rumpf | 2017-07-20 | 1 | -9/+9 |
| | |||||
* | decTypeSize on growObj (#5465) | Yuriy Glukhov | 2017-03-15 | 1 | -0/+1 |
| | |||||
* | adding support for using llvm ASAN (#5536) | Samantha Marshall | 2017-03-14 | 1 | -1/+7 |
| | |||||
* | Use constant nimCoroutines instead of defined(nimCoroutines) | Rokas Kupstys | 2017-02-20 | 1 | -5/+5 |
| | | | | Variable | ||||
* | Cleanup of gc code | Rokas Kupstys | 2017-02-20 | 1 | -87/+27 |
| | | | | Cleanups | ||||
* | Coroutines realtime support | Rokas Kupstys | 2017-02-20 | 1 | -13/+36 |
| | |||||
* | Reworked gc support for coroutines. Nim now bootstraps with -d:nimCoroutines | Rokas Kupstys | 2017-02-20 | 1 | -15/+57 |
| | | | | | Added gc test to coro.nim Lots of misc improvements and comments in coro.nim | ||||
* | Delete fiber context when it exits (memleak fix) | Rokas Kupstys | 2017-02-20 | 1 | -2/+5 |
| | | | | Few correctness changes to gc stack management. | ||||
* | Coroutine rework. | Rokas Kupstys | 2017-02-20 | 1 | -3/+0 |
| | | | | | | | | | | | | | | | * ucontext backend (default on unix) * setjmp backend * fibers backend (default and required on windows) * Fixed coroutine loop timing issues * Fixed saving of xmm registers on x64 windows * Fixed alignment issues * Updated coroutine sample with cooperative fibonacci calculation. * Disable glibc security features only when platform jump functions are used * Removed dependency on fasm. * Using fiber api on windows. * Other platforms and compilers will use built in assembler and .S files or API provided by platform libc. * Replaced stack switching procs with `coroExecWithStack()` which never returns. This makes compiler always generate proper code. | ||||
* | system.nim: don't use deprecated symbols/constructs | Araq | 2017-02-08 | 1 | -7/+7 |
| | |||||
* | added test case; threadex example crashes now | Araq | 2017-01-30 | 1 | -1/+1 |
| | |||||
* | M&S GC gets the heap dump feature | Andreas Rumpf | 2017-01-15 | 1 | -55/+35 |
| | |||||
* | default GC can do a sort of heap dump via -d:nimTypeNames and ↵ | Andreas Rumpf | 2017-01-14 | 1 | -2/+27 |
| | | | | dumpNumberOfInstances() | ||||
* | Merge branch 'devel' into sighashes | Andreas Rumpf | 2016-12-06 | 1 | -5/+11 |
|\ | |||||
| * | Show cell type name in writeCell | Yuriy Glukhov | 2016-12-06 | 1 | -5/+11 |
| | | |||||
* | | more fixes | Araq | 2016-12-02 | 1 | -1/+1 |
| | | |||||
* | | further progress; more tests are green | Araq | 2016-11-28 | 1 | -0/+1 |
|/ | |||||
* | Merge pull request #4878 from yglukhov/gc-frameinfo | Andreas Rumpf | 2016-11-28 | 1 | -14/+11 |
|\ | | | | | Cosmetics | ||||
| * | DRY frame info setting out to a template. | Yuriy Glukhov | 2016-11-03 | 1 | -14/+11 |
| | | |||||
* | | further memtracking improvements | Andreas Rumpf | 2016-11-24 | 1 | -0/+7 |
|/ | |||||
* | fixes #4764, fixes #4731, fixes #4724 | Araq | 2016-09-14 | 1 | -0/+2 |
| | |||||
* | clean up a few stray c_stdout's in gc debug code | Jacek Sieka | 2016-07-31 | 1 | -3/+4 |
| | |||||
* | Fixed crash with leakDetector and threads enabled. | Yuriy Glukhov | 2016-07-11 | 1 | -8/+14 |
| | |||||
* | fix types of ansi_c/sysio to more closely match C ABI | Jacek Sieka | 2016-06-05 | 1 | -2/+2 |
| | | | | | also fixes some instances of using C library functions when there are nim alternatives available | ||||
* | new GC listens to GC_ref/GC_unref | Andreas Rumpf | 2016-05-23 | 1 | -2/+21 |
| | |||||
* | fixes #3184 | Andreas Rumpf | 2016-05-22 | 1 | -24/+13 |
| | |||||
* | fixes #3793 | Andreas Rumpf | 2016-05-16 | 1 | -1/+1 |
| | |||||
* | GC with primitive MS | Andreas Rumpf | 2016-05-16 | 1 | -131/+5 |
| | |||||
* | Replaced ignoreStackAndRegisters with stackSize in GC_step | Ruslan Mustakov | 2016-05-11 | 1 | -14/+24 |
| | |||||
* | Added ignoreStackAndRegisters parameter to GC_step | Ruslan Mustakov | 2016-05-10 | 1 | -12/+14 |
| | |||||
* | GCs support ForeignCells | Andreas Rumpf | 2016-03-05 | 1 | -0/+11 |
| | |||||
* | fixes #1895 | Andreas Rumpf | 2016-01-30 | 1 | -3/+6 |
| | |||||
* | Use ByteAddress instead of deprecated TAddress | def | 2016-01-24 | 1 | -3/+3 |
| | |||||
* | fixes typo | Araq | 2015-12-01 | 1 | -1/+1 |
| | |||||
* | fixes #3245 | Araq | 2015-08-25 | 1 | -1/+2 |
| | |||||
* | Coroutine support for i386/amd64 platforms unix/windows OSes ↵ | rku | 2015-07-31 | 1 | -154/+30 |
| | | | | markAndSweep/refCounting GCs. | ||||
* | lib/system/g-w - Dropped 'T' from types | pdw | 2015-06-04 | 1 | -68/+70 |
| | |||||
* | Fix GC scanning of registers on x86_64 architectures. | Reimer Behrends | 2015-05-07 | 1 | -0/+9 |
| | | | | | | | It is possible for jmp_buf to not be word-aligned or addresses in the register dump to not be word-aligned. This can result in either addresses in registers being missed or even addresses on the stack past the register area not being scanned properly. | ||||
* | Clean up GCs a bit | def | 2015-03-10 | 1 | -0/+1 |
| | |||||
* | fixes --gc:none regression; made some tests green | Araq | 2015-03-10 | 1 | -0/+3 |
| |