summary refs log tree commit diff stats
path: root/lib/system/gc2.nim
Commit message (Expand)AuthorAgeFilesLines
* styleCheck: make the compiler and large parts of the stdlib compatible with -...Araq2019-07-101-6/+6
* gc: removed dead codeAndreas Rumpf2019-03-141-3/+0
* code cleanup: there is no tyOptRefAndreas Rumpf2019-02-221-4/+4
* Remove dead code (#9777)Jacek Sieka2018-11-261-35/+6
* Mark&Sweep GC: introduce nimTracing define for debuggingAndreas Rumpf2018-01-191-1/+4
* GC: enable precise global/thread local storage tracingAraq2018-01-151-33/+26
* GC improvements; distinguish between thread local and globals in the marking ...Araq2018-01-141-16/+8
* Fixed mutex usage in SharedList and SharedTable. Closes #6988 (#6990)Yuriy Glukhov2017-12-311-1/+1
* Trim remaining expr/stmt from stdlib (#6742)Lynn C. Rees2017-11-151-1/+1
* more replacements for the deprecated '<'Andreas Rumpf2017-10-291-3/+3
* GC v2 works sometimesAndreas Rumpf2017-09-281-370/+122
* first steps of making 'opt' a first class type for NimAndreas Rumpf2017-09-251-5/+5
* make gc:v2 compile againAndreas Rumpf2017-09-221-14/+6
* Cleanup of gc codeRokas Kupstys2017-02-201-28/+38
* Make gc v2 compile with --threads:onYuriy Glukhov2016-10-051-3/+9
* clean up a few stray c_stdout's in gc debug codeJacek Sieka2016-07-311-9/+9
* GC v2 compiles againAndreas Rumpf2016-05-231-0/+8
* Replaced ignoreStackAndRegisters with stackSize in GC_stepRuslan Mustakov2016-05-111-14/+24
* Added ignoreStackAndRegisters parameter to GC_stepRuslan Mustakov2016-05-101-11/+13
* further progress on --gc:v2Andreas Rumpf2016-02-171-48/+142
* some progress on GC v2Andreas Rumpf2016-02-031-6/+10
* removes 'x is iterator' special casing in the languageAraq2015-12-031-0/+2
* proper color flippingAraq2015-12-011-34/+27
* next steps for the GCAraq2015-12-011-5/+22
* only mark roots when markingAraq2015-12-011-4/+5
* first compiling version of the new GCAraq2015-12-011-18/+45
* first version of the new hard realtime GCAraq2015-12-011-1005/+478
* lib: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-70/+70
* lib/system/g-w - Dropped 'T' from typespdw2015-06-041-73/+78
* Clean up GCs a bitdef2015-03-101-6/+12
* Only zero strings when necessary.def2015-03-041-1/+1
* Merge pull request #2150 from def-/gc2-compilingAndreas Rumpf2015-02-161-70/+72
|\
| * Clean up some more deprecation warningsdef2015-02-161-6/+6
| * Make gc2 compile againdef2015-02-161-64/+66
* | Fix typosFederico Ceratto2015-02-151-2/+2
|/
* Some GC renames to get rid of deprecation warningsdef2015-01-061-1/+1
* the big renamefest: first stepsAraq2014-08-221-1/+1
* distinguish between 'defined' and 'declared'Araq2014-08-111-1/+1
* support for multiple test variables and var qualifiers in user-defined type c...Zahary Karadjov2013-11-131-2/+1
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* revert to old GC; use --gc:v2 to activate the new GCAraq2013-01-311-0/+1386
ref='#n481'>481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 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