summary refs log tree commit diff stats
path: root/lib/system/gc_common.nim
Commit message (Expand)AuthorAgeFilesLines
* styleCheck: make the compiler and large parts of the stdlib compatible with -...Araq2019-07-101-2/+2
* [feature] Add dynlib (required on windows/cpp) to nimCoroutines related gc_co...Giovanni Petrantoni2019-06-231-3/+3
* [bugfix] gc_common: export foreign thread gc docs (#11536)alaviss2019-06-191-6/+12
* use atomicInc/atomicDec (#10906)Miran2019-03-271-6/+5
* fixes -d:nimTypeNames leak detection regressionAndreas Rumpf2019-03-211-4/+4
* --newruntime: progressAndreas Rumpf2019-03-141-1/+0
* Initial version of the hot-code reloading support for native targets (#10729)zah2019-02-261-4/+4
* system refactorings (#10559)Andreas Rumpf2019-02-061-2/+2
* make the stdlib work with the changed docgenAraq2019-01-111-1/+1
* make testament compile again with -d:nimCoroutinesAraq2018-11-151-21/+21
* gc_common: fixes a typoAndreas Rumpf2018-11-151-19/+19
* No setjump in GC for emscripten/wasm (#9386)Yuriy Glukhov2018-10-171-14/+21
* Iterator over heap instances (#8548)Emery Hemingway2018-08-071-8/+14
* Implements alloc/dealloc counters for better leak debugging. (#8384)Dominik Picheta2018-07-211-0/+3
* gc_common: minor reformatingAndreas Rumpf2018-07-011-2/+2
* Expose GC_setStackBottom (#7885)Yuriy Glukhov2018-06-041-2/+2
* GC: also report total GC'ed heap size ignoring losses due to fragmentationAndreas Rumpf2018-01-211-1/+3
* GC: fixes size computation for leak detectionAndreas Rumpf2018-01-211-4/+4
* GC add 'string' to dumpNumberOfInstancesAndreas Rumpf2018-01-211-0/+5
* fixes size computations for 'dumpNumberOfInstances'Andreas Rumpf2018-01-191-1/+1
* leak detector: sort type based entries by total used bytesAndreas Rumpf2018-01-181-2/+28
* GC: enable precise global/thread local storage tracingAraq2018-01-151-0/+1
* GC improvements; distinguish between thread local and globals in the marking ...Araq2018-01-141-0/+24
* make gc:v2 compile againAndreas Rumpf2017-09-221-5/+15
* added system.deallocHeap feature for Nim's native GCsAndreas Rumpf2017-07-221-0/+32
* added logic to the M&S GC to detect logical leaksAraq2017-06-161-0/+7
* Fixed compilation error (#5462)Yuriy Glukhov2017-03-021-3/+0
* Use constant nimCoroutines instead of defined(nimCoroutines)Rokas Kupstys2017-02-201-5/+5
* Cleanup of gc codeRokas Kupstys2017-02-201-146/+133
* Reworked gc support for coroutines. Nim now bootstraps with -d:nimCoroutinesRokas Kupstys2017-02-201-97/+97
* Delete fiber context when it exits (memleak fix)Rokas Kupstys2017-02-201-2/+18
* Coroutine rework.Rokas Kupstys2017-02-201-5/+2
* Add ``tearDownForeignThreadGc`` function (#5369)Anatoly Galiulin2017-02-131-9/+20
* system.nim: don't use deprecated symbols/constructsAraq2017-02-081-5/+5
* Mark setupForeignThreadGc and initGC as gcsafe (#5353)Anatoly Galiulin2017-02-081-1/+1
* docs for the heap dump featureAndreas Rumpf2017-01-161-0/+1
* M&S GC gets the heap dump featureAndreas Rumpf2017-01-151-0/+24
* call initAllocator in foreign threadJez Kabanov2016-10-051-0/+1
* clean up a few stray c_stdout's in gc debug codeJacek Sieka2016-07-311-3/+3
* prepare Nim codebase for upcoming parser changesAndreas Rumpf2016-07-151-2/+2
* GCs support ForeignCellsAndreas Rumpf2016-03-051-0/+25
* SpellcheckFederico Ceratto2016-02-291-2/+2
* Remove system.setupForeignThreadGc if `threads` option is off or TLSAnatoly Galiulin2016-01-281-12/+22
* Use ByteAddress instead of deprecated TAddressdef2016-01-241-4/+4
* Change TAddress to ByteAddressAndrey Sobolev2015-09-141-3/+3
* Support for GC working in Emscripten environmentAndrey Sobolev2015-09-111-5/+7
* lib: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-2/+2
* Coroutine support for i386/amd64 platforms unix/windows OSes markAndSweep/ref...rku2015-07-311-0/+275
562' href='#n562'>562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750